Codebase list golang-github-ulikunitz-xz / ed4318b
Import upstream version 0.5.11 Debian Janitor 1 year, 2 months ago
93 changed file(s) with 117094 addition(s) and 315 deletion(s). Raw diff Collapse all Expand all
0 # For most projects, this workflow file will not need changing; you simply need
1 # to commit it to your repository.
2 #
3 # You may wish to alter this file to override the set of languages analyzed,
4 # or to provide custom queries or build logic.
5 #
6 # ******** NOTE ********
7 # We have attempted to detect the languages in your repository. Please check
8 # the `language` matrix defined below to confirm you have the correct set of
9 # supported CodeQL languages.
10 #
11 name: "CodeQL"
12
13 on:
14 push:
15 branches: [ master ]
16 pull_request:
17 # The branches below must be a subset of the branches above
18 branches: [ master ]
19 schedule:
20 - cron: '32 6 * * 4'
21
22 jobs:
23 analyze:
24 name: Analyze
25 runs-on: ubuntu-latest
26 permissions:
27 actions: read
28 contents: read
29 security-events: write
30
31 strategy:
32 fail-fast: false
33 matrix:
34 language: [ 'go' ]
35 # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
36 # Learn more about CodeQL language support at https://git.io/codeql-language-support
37
38 steps:
39 - name: Checkout repository
40 uses: actions/checkout@v2
41
42 # Initializes the CodeQL tools for scanning.
43 - name: Initialize CodeQL
44 uses: github/codeql-action/init@v1
45 with:
46 languages: ${{ matrix.language }}
47 # If you wish to specify custom queries, you can do so here or in a config file.
48 # By default, queries listed here will override any specified in a config file.
49 # Prefix the list here with "+" to use these queries and those in the config file.
50 # queries: ./path/to/local/query, your-org/your-repo/queries@main
51
52 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
53 # If this step fails, then you should remove it and run the build manually (see below)
54 - name: Autobuild
55 uses: github/codeql-action/autobuild@v1
56
57 # ℹī¸ Command-line programs to run using the OS shell.
58 # 📚 https://git.io/JvXDl
59
60 # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
61 # and modify them (or add more) to build your code if your project
62 # uses a compiled language
63
64 #- run: |
65 # make bootstrap
66 # make release
67
68 - name: Perform CodeQL Analysis
69 uses: github/codeql-action/analyze@v1
2222
2323 # default compression test file
2424 enwik8*
25
26 # file generated by example
27 example.xz⏎
0 Copyright (c) 2014-2016 Ulrich Kunitz
0 Copyright (c) 2014-2022 Ulrich Kunitz
11 All rights reserved.
22
33 Redistribution and use in source and binary forms, with or without
5252 }
5353 ```
5454
55 ## Documentation
56
57 You can find the full documentation at [pkg.go.dev](https://pkg.go.dev/github.com/ulikunitz/xz).
58
5559 ## Using the gxz compression tool
5660
5761 The package includes a gxz command line utility for compression and
0 # Security Policy
1
2 ## Supported Versions
3
4 Currently the last minor version v0.5.x is supported.
5
6 ## Reporting a Vulnerability
7
8 Report a vulnerability by creating a Github issue at
9 <https://github.com/ulikunitz/xz/issues>. Expect a response in a week.
00 # TODO list
1
2 ## Release v0.5.x
3
4 1. Support check flag in gxz command.
15
26 ## Release v0.6
37
48 1. Review encoder and check for lzma improvements under xz.
59 2. Fix binary tree matcher.
6 3. Compare compression ratio with xz tool using comparable parameters
7 and optimize parameters
8 4. Do some optimizations
9 - rename operation action and make it a simple type of size 8
10 - make maxMatches, wordSize parameters
11 - stop searching after a certain length is found (parameter sweetLen)
10 3. Compare compression ratio with xz tool using comparable parameters and optimize parameters
11 4. rename operation action and make it a simple type of size 8
12 5. make maxMatches, wordSize parameters
13 6. stop searching after a certain length is found (parameter sweetLen)
1214
1315 ## Release v0.7
1416
1517 1. Optimize code
1618 2. Do statistical analysis to get linear presets.
1719 3. Test sync.Pool compatability for xz and lzma Writer and Reader
18 3. Fuzz optimized code.
20 4. Fuzz optimized code.
1921
2022 ## Release v0.8
2123
3941
4042 ## Package lzma
4143
42 ### Release v0.6
43
44 - Rewrite Encoder into a simple greedy one-op-at-a-time encoder
45 including
46 + simple scan at the dictionary head for the same byte
47 + use the killer byte (requiring matches to get longer, the first
48 test should be the byte that would make the match longer)
49
44 ### v0.6
45
46 * Rewrite Encoder into a simple greedy one-op-at-a-time encoder including
47 * simple scan at the dictionary head for the same byte
48 * use the killer byte (requiring matches to get longer, the first test should be the byte that would make the match longer)
5049
5150 ## Optimizations
5251
53 - There may be a lot of false sharing in lzma.State; check whether this
54 can be improved by reorganizing the internal structure of it.
55 - Check whether batching encoding and decoding improves speed.
52 * There may be a lot of false sharing in lzma. State; check whether this can be improved by reorganizing the internal structure of it.
53
54 * Check whether batching encoding and decoding improves speed.
5655
5756 ### DAG optimizations
5857
59 - Use full buffer to create minimal bit-length above range encoder.
60 - Might be too slow (see v0.4)
58 * Use full buffer to create minimal bit-length above range encoder.
59 * Might be too slow (see v0.4)
6160
6261 ### Different match finders
6362
64 - hashes with 2, 3 characters additional to 4 characters
65 - binary trees with 2-7 characters (uint64 as key, use uint32 as
63 * hashes with 2, 3 characters additional to 4 characters
64 * binary trees with 2-7 characters (uint64 as key, use uint32 as
65
6666 pointers into a an array)
67 - rb-trees with 2-7 characters (uint64 as key, use uint32 as pointers
67
68 * rb-trees with 2-7 characters (uint64 as key, use uint32 as pointers
69
6870 into an array with bit-steeling for the colors)
6971
7072 ## Release Procedure
7173
72 - execute goch -l for all packages; probably with lower param like 0.5.
73 - check orthography with gospell
74 - Write release notes in doc/relnotes.
75 - Update README.md
76 - xb copyright . in xz directory to ensure all new files have Copyright
77 header
78 - VERSION=<version> go generate github.com/ulikunitz/xz/... to update
79 version files
80 - Execute test for Linux/amd64, Linux/x86 and Windows/amd64.
81 - Update TODO.md - write short log entry
82 - git checkout master && git merge dev
83 - git tag -a <version>
84 - git push
74 * execute goch -l for all packages; probably with lower param like 0.5.
75 * check orthography with gospell
76 * Write release notes in doc/relnotes.
77 * Update README.md
78 * xb copyright . in xz directory to ensure all new files have Copyright header
79 * `VERSION=<version> go generate github.com/ulikunitz/xz/...` to update version files
80 * Execute test for Linux/amd64, Linux/x86 and Windows/amd64.
81 * Update TODO.md - write short log entry
82 * `git checkout master && git merge dev`
83 * `git tag -a <version>`
84 * `git push`
8585
8686 ## Log
87
88 ### 2022-12-12
89
90 Matt Dantay (@bodgit) reported an issue with the LZMA reader. The implementation
91 returned an error if the dictionary size was less than 4096 byte, but the
92 recommendation stated the actual used window size should be set to 4096 byte in
93 that case. It actually was the pull request
94 [#52](https://github.com/ulikunitz/xz/pull/52). The new patch v0.5.11 will fix
95 it.
96
97 ### 2021-02-02
98
99 Mituo Heijo has fuzzed xz and found a bug in the function readIndexBody. The
100 function allocated a slice of records immediately after reading the value
101 without further checks. Sincex the number has been too large the make function
102 did panic. The fix is to check the number against the expected number of records
103 before allocating the records.
104
105 ### 2020-12-17
106
107 Release v0.5.9 fixes warnings, a typo and adds SECURITY.md.
108
109 One fix is interesting.
110
111 ```go
112 const (
113 a byte = 0x1
114 b = 0x2
115 )
116 ```
117
118 The constants a and b don't have the same type. Correct is
119
120 ```go
121 const (
122 a byte = 0x1
123 b byte = 0x2
124 )
125 ```
126
127 ### 2020-08-19
128
129 Release v0.5.8 fixes issue
130 [issue #35](https://github.com/ulikunitz/xz/issues/35).
131
132 ### 2020-02-24
133
134 Release v0.5.7 supports the check-ID None and fixes
135 [issue #27](https://github.com/ulikunitz/xz/issues/27).
87136
88137 ### 2019-02-20
89138
193242
194243 ### 2015-06-04
195244
196 It has been a productive day. I improved the interface of lzma.Reader
197 and lzma.Writer and fixed the error handling.
245 It has been a productive day. I improved the interface of lzma. Reader
246 and lzma. Writer and fixed the error handling.
198247
199248 ### 2015-06-01
200249
245294
246295 However I will implement a ReaderState and WriterState type to use
247296 static typing to ensure the right State object is combined with the
248 right lzbase.Reader and lzbase.Writer.
297 right lzbase. Reader and lzbase. Writer.
249298
250299 As a start I have implemented ReaderState and WriterState to ensure
251300 that the state for reading is only used by readers and WriterState only
267316
268317 ### 2015-04-05
269318
270 Implemented lzma.Reader and tested it.
319 Implemented lzma. Reader and tested it.
271320
272321 ### 2015-04-04
273322
274 Implemented baseReader by adapting code form lzma.Reader.
323 Implemented baseReader by adapting code form lzma. Reader.
275324
276325 ### 2015-04-03
277326
287336 (Javaïstes?)" is the the idea that using an embedded field E, all the
288337 methods of E will be defined on T. If E is an interface T satisfies E.
289338
290 https://talks.golang.org/2014/go4java.slide#51
339 <https://talks.golang.org/2014/go4java.slide#51>
291340
292341 I have never used this, but it seems to be a cool idea.
293342
312361
313362 1. Implemented simple lzmago tool
314363 2. Tested tool against large 4.4G file
315 - compression worked correctly; tested decompression with lzma
316 - decompression hits a full buffer condition
364 * compression worked correctly; tested decompression with lzma
365 * decompression hits a full buffer condition
317366 3. Fixed a bug in the compressor and wrote a test for it
318367 4. Executed full cycle for 4.4 GB file; performance can be improved ;-)
319368
320369 ### 2015-01-11
321370
322 - Release v0.2 because of the working LZMA encoder and decoder
371 * Release v0.2 because of the working LZMA encoder and decoder
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
5353
5454 // readUvarint reads a uvarint from the given byte reader.
5555 func readUvarint(r io.ByteReader) (x uint64, n int, err error) {
56 const maxUvarintLen = 10
57
5658 var s uint
5759 i := 0
5860 for {
6163 return x, i, err
6264 }
6365 i++
66 if i > maxUvarintLen {
67 return x, i, errOverflowU64
68 }
6469 if b < 0x80 {
65 if i > 10 || i == 10 && b > 1 {
70 if i == maxUvarintLen && b > 1 {
6671 return x, i, errOverflowU64
6772 }
6873 return x | uint64(b)<<s, i, nil
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
3030 }
3131 }
3232 }
33
34 func TestUvarIntCVE_2020_16845(t *testing.T) {
35 var a = []byte{0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
36 0x88, 0x89, 0x8a, 0x8b}
37
38 r := bytes.NewReader(a)
39 _, _, err := readUvarint(r)
40 if err != errOverflowU64 {
41 t.Fatalf("readUvarint overflow not detected")
42 }
43 }
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
2727 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2828 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929 `
30 const xzLicense = `Copyright (c) 2014-2019 Ulrich Kunitz
30 const xzLicense = `Copyright (c) 2014-2022 Ulrich Kunitz
3131 All rights reserved.
3232
3333 Redistribution and use in source and binary forms, with or without
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
00 package main
11
2 const version = "v0.5.6"
2 const version = "v0.5.11"
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
2727 }
2828
2929 const copyrightText = `
30 Copyright 2014-2019 Ulrich Kunitz. All rights reserved.
30 Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
3131 Use of this source code is governed by a BSD-style
3232 license that can be found in the LICENSE file.
3333 `
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
00 package main
11
2 const version = "v0.5.6"
2 const version = "v0.5.11"
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 # Release Notes v0.5.10
1
2 This release fixes issue #40. Many thanks to Github user Misuo Heijo for fuzzing
3 the xz module.
0 # Release Notes v0.5.11
1
2 This release addresses an issues reported by Matty Dainty (@bodgit) as pull
3 request [#52](https://github.com/ulikunitz/xz/pull/52).
0 # Release Notes v0.5.7
1
2 This release fixes issue #27 "Checksum None is valid" by supporting the
3 check-ID None.
4
5 Many thanks to [blacktop](https://github.com/blacktop) for reporting the
6 bug.
0 # Release Notes v0.5.8
1
2 This release fixes the security issue #35. The readUvarint function
3 would run infinitely given specific input. The function is now
4 terminating if more than 10 bytes of input have been read. The behavior
5 is tested.
6
7 Many thanks to Github user 0xdecaf for reporting the issue.
0 # Release Notes v0.5.9
1
2 This release fixes:
3
4 - all staticcheck issues in the public repositories.
5 - fixes wrong const type definitions; thanks Matt LaPlante
6 - fixes a typo; Michael Vetter
7 - adds a SECURITY.md file
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
4 //go:build ignore
45 // +build ignore
56
67 package main
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
1 // Use of this source code is governed by a BSD-style
2 // license that can be found in the LICENSE file.
3
4 package xz_test
5
6 import (
7 "bufio"
8 "fmt"
9 "io"
10 "log"
11 "os"
12
13 "github.com/ulikunitz/xz"
14 )
15
16 func ExampleReader() {
17 f, err := os.Open("fox.xz")
18 if err != nil {
19 log.Fatalf("os.Open(%q) error %s", "fox.xz", err)
20 }
21 defer f.Close()
22 r, err := xz.NewReader(bufio.NewReader(f))
23 if err != nil {
24 log.Fatalf("xz.NewReader(f) error %s", err)
25 }
26 if _, err = io.Copy(os.Stdout, r); err != nil {
27 log.Fatalf("io.Copy error %s", err)
28 }
29 // Output:
30 // The quick brown fox jumps over the lazy dog.
31 }
32
33 func ExampleWriter() {
34 f, err := os.Create("example.xz")
35 if err != nil {
36 log.Fatalf("os.Open(%q) error %s", "example.xz", err)
37 }
38 defer f.Close()
39 w, err := xz.NewWriter(f)
40 if err != nil {
41 log.Fatalf("xz.NewWriter(f) error %s", err)
42 }
43 defer w.Close()
44 _, err = fmt.Fprintln(w, "The brown fox jumps over the lazy dog.")
45 if err != nil {
46 log.Fatalf("fmt.Fprintln error %s", err)
47 }
48 if err = w.Close(); err != nil {
49 log.Fatalf("w.Close() error %s", err)
50 }
51 // Output:
52 }
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
4545
4646 // Constants for the checksum methods supported by xz.
4747 const (
48 None byte = 0x0
4849 CRC32 byte = 0x1
49 CRC64 = 0x4
50 SHA256 = 0xa
50 CRC64 byte = 0x4
51 SHA256 byte = 0xa
5152 )
5253
5354 // errInvalidFlags indicates that flags are invalid.
5758 // invalid.
5859 func verifyFlags(flags byte) error {
5960 switch flags {
60 case CRC32, CRC64, SHA256:
61 case None, CRC32, CRC64, SHA256:
6162 return nil
6263 default:
6364 return errInvalidFlags
6667
6768 // flagstrings maps flag values to strings.
6869 var flagstrings = map[byte]string{
70 None: "None",
6971 CRC32: "CRC-32",
7072 CRC64: "CRC-64",
7173 SHA256: "SHA-256",
8486 // hash method encoded in flags.
8587 func newHashFunc(flags byte) (newHash func() hash.Hash, err error) {
8688 switch flags {
89 case None:
90 newHash = newNoneHash
8791 case CRC32:
8892 newHash = newCRC32
8993 case CRC64:
564568 return []filter{f}, err
565569 }
566570
567 // writeFilters writes the filters.
568 func writeFilters(w io.Writer, filters []filter) (n int, err error) {
569 for _, f := range filters {
570 p, err := f.MarshalBinary()
571 if err != nil {
572 return n, err
573 }
574 k, err := w.Write(p)
575 n += k
576 if err != nil {
577 return n, err
578 }
579 }
580 return n, nil
581 }
582
583571 /*** Index ***/
584572
585573 // record describes a block in the xz file index.
673661
674662 // readIndexBody reads the index from the reader. It assumes that the
675663 // index indicator has already been read.
676 func readIndexBody(r io.Reader) (records []record, n int64, err error) {
664 func readIndexBody(r io.Reader, expectedRecordLen int) (records []record, n int64, err error) {
677665 crc := crc32.NewIEEE()
678666 // index indicator
679667 crc.Write([]byte{0})
689677 recLen := int(u)
690678 if recLen < 0 || uint64(recLen) != u {
691679 return nil, n, errors.New("xz: record number overflow")
680 }
681 if recLen != expectedRecordLen {
682 return nil, n, fmt.Errorf(
683 "xz: index length is %d; want %d",
684 recLen, expectedRecordLen)
692685 }
693686
694687 // list of records
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
8484 t.Fatalf("indicator %d; want %d", c, 0)
8585 }
8686
87 g, m, err := readIndexBody(&buf)
87 g, m, err := readIndexBody(&buf, len(records))
8888 if err != nil {
8989 for i, r := range g {
9090 t.Logf("records[%d] %v", i, r)
Binary diff not shown
00 module github.com/ulikunitz/xz
1
2 go 1.12
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
1111
1212 The typical use case looks like this:
1313
14 b := Bool("flag-b", "b", false, "boolean flag")
15 h := Bool("help", "h", false, "prints this message")
16
17 Parse()
18
19 if *h {
20 gflag.Usage()
21 }
14 b := Bool("flag-b", "b", false, "boolean flag")
15 h := Bool("help", "h", false, "prints this message")
16
17 Parse()
18
19 if *h {
20 gflag.Usage()
21 }
2222 */
2323 package gflag
2424
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
4 //go:build darwin || dragonfly || freebsd || netbsd || openbsd
45 // +build darwin dragonfly freebsd netbsd openbsd
56
67 package term
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
4 //go:build darwin || dragonfly || freebsd || (linux && !appengine) || netbsd || openbsd
45 // +build darwin dragonfly freebsd linux,!appengine netbsd openbsd
56
67 // Package term provides the IsTerminal function.
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
3030 // printed. There is no control over the order of the items printed and
3131 // the format. The full format is:
3232 //
33 // 2009-01-23 01:23:23.123123 /a/b/c/d.go:23: message
34 //
33 // 2009-01-23 01:23:23.123123 /a/b/c/d.go:23: message
3534 const (
3635 Ldate = 1 << iota // the date: 2009-01-23
3736 Ltime // the time: 01:23:23
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
44 package lzma
55
66 import (
7 "bufio"
87 "errors"
9 "fmt"
10 "io"
118 "unicode"
129 )
1310
348345 return string(a)
349346 }
350347
348 /*
351349 // dumpNode writes a representation of the node v into the io.Writer.
352350 func (t *binTree) dumpNode(w io.Writer, v uint32, indent int) {
353351 if v == null {
376374 t.dumpNode(bw, t.root, 0)
377375 return bw.Flush()
378376 }
377 */
379378
380379 func (t *binTree) distance(v uint32) int {
381380 dist := int(t.front) - int(v)
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
1717 30, 17, 8, 14, 29, 13, 28, 27,
1818 }
1919
20 /*
2021 // ntz32 computes the number of trailing zeros for an unsigned 32-bit integer.
2122 func ntz32(x uint32) int {
2223 if x == 0 {
2526 x = (x & -x) * ntz32Const
2627 return int(ntz32Table[x>>27])
2728 }
29 */
2830
2931 // nlz32 computes the number of leading zeros for an unsigned 32-bit integer.
3032 func nlz32(x uint32) int {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
199199 op, err := d.readOp()
200200 switch err {
201201 case nil:
202 break
202 // break
203203 case errEOS:
204204 d.eos = true
205205 if !d.rd.possiblyAtEnd() {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
125125
126126 // Read reads data from the buffer contained in the decoder dictionary.
127127 func (d *decoderDict) Read(p []byte) (n int, err error) { return d.buf.Read(p) }
128
129 // Buffered returns the number of bytes currently buffered in the
130 // decoder dictionary.
131 func (d *decoderDict) buffered() int { return d.buf.Buffered() }
132
133 // Peek gets data from the buffer without advancing the rear index.
134 func (d *decoderDict) peek(p []byte) (n int, err error) { return d.buf.Peek(p) }
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
44 package lzma
55
66 import (
7 "fmt"
87 "testing"
98 )
10
11 func peek(d *decoderDict) []byte {
12 p := make([]byte, d.buffered())
13 k, err := d.peek(p)
14 if err != nil {
15 panic(fmt.Errorf("peek: "+
16 "Read returned unexpected error %s", err))
17 }
18 if k != len(p) {
19 panic(fmt.Errorf("peek: "+
20 "Read returned %d; wanted %d", k, len(p)))
21 }
22 return p
23 }
249
2510 func TestNewDecoderDict(t *testing.T) {
2611 if _, err := newDecoderDict(0); err == nil {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
44 package lzma
55
6 import "fmt"
7
86 // directCodec allows the encoding and decoding of values with a fixed number
97 // of bits. The number of bits must be in the range [1,32].
108 type directCodec byte
11
12 // makeDirectCodec creates a directCodec. The function panics if the number of
13 // bits is not in the range [1,32].
14 func makeDirectCodec(bits int) directCodec {
15 if !(1 <= bits && bits <= 32) {
16 panic(fmt.Errorf("bits=%d out of range", bits))
17 }
18 return directCodec(bits)
19 }
209
2110 // Bits returns the number of bits supported by this codec.
2211 func (dc directCodec) Bits() int {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
1919 posSlotBits = 6
2020 // number of align bits
2121 alignBits = 4
22 // maximum position slot
23 maxPosSlot = 63
2422 )
2523
2624 // distCodec provides encoding and decoding of distance values.
4240 dc.posModel[i].deepcopy(&src.posModel[i])
4341 }
4442 dc.alignCodec.deepcopy(&src.alignCodec)
45 }
46
47 // distBits returns the number of bits required to encode dist.
48 func distBits(dist uint32) int {
49 if dist < startPosModel {
50 return 6
51 }
52 // slot s > 3, dist d
53 // s = 2(bits(d)-1) + bit(d, bits(d)-2)
54 // s>>1 = bits(d)-1
55 // bits(d) = 32-nlz32(d)
56 // s>>1=31-nlz32(d)
57 // n = 5 + (s>>1) = 36 - nlz32(d)
58 return 36 - nlz32(dist)
5943 }
6044
6145 // newDistCodec creates a new distance codec.
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
1818 }
1919
2020 // encoderDict provides the dictionary of the encoder. It includes an
21 // addtional buffer atop of the actual dictionary.
21 // additional buffer atop of the actual dictionary.
2222 type encoderDict struct {
2323 buf buffer
2424 m matcher
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
263263 // state
264264 const (
265265 start chunkState = 'S'
266 stop = 'T'
266 stop chunkState = 'T'
267267 )
268268
269269 // errors for the chunk state handling
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
5555 lc.high = makeTreeCodec(8)
5656 }
5757
58 // lBits gives the number of bits used for the encoding of the l value
59 // provided to the range encoder.
60 func lBits(l uint32) int {
61 switch {
62 case l < 8:
63 return 4
64 case l < 16:
65 return 5
66 default:
67 return 10
68 }
69 }
70
7158 // Encode encodes the length offset. The length offset l can be compute by
7259 // subtracting minMatchLen (2) from the actual length.
7360 //
74 // l = length - minMatchLen
75 //
61 // l = length - minMatchLen
7662 func (lc *lengthCodec) Encode(e *rangeEncoder, l uint32, posState uint32,
7763 ) (err error) {
7864 if l > maxMatchLen-minMatchLen {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
122122 minLP = 0
123123 maxLP = 4
124124 )
125
126 // minState and maxState define a range for the state values stored in
127 // the State values.
128 const (
129 minState = 0
130 maxState = 11
131 )
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
44 package lzma
55
66 import (
7 "errors"
87 "fmt"
98 "unicode"
109 )
2120 distance int64
2221 // length
2322 n int
24 }
25
26 // verify checks whether the match is valid. If that is not the case an
27 // error is returned.
28 func (m match) verify() error {
29 if !(minDistance <= m.distance && m.distance <= maxDistance) {
30 return errors.New("distance out of range")
31 }
32 if !(1 <= m.n && m.n <= maxMatchLen) {
33 return errors.New("length out of range")
34 }
35 return nil
36 }
37
38 // l return the l-value for the match, which is the difference of length
39 // n and 2.
40 func (m match) l() uint32 {
41 return uint32(m.n - minMatchLen)
42 }
43
44 // dist returns the dist value for the match, which is one less of the
45 // distance stored in the match.
46 func (m match) dist() uint32 {
47 return uint32(m.distance - minDistance)
4823 }
4924
5025 // Len returns the number of bytes matched.
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
130130 code uint32
131131 }
132132
133 // init initializes the range decoder, by reading from the byte reader.
134 func (d *rangeDecoder) init() error {
135 d.nrange = 0xffffffff
136 d.code = 0
137
138 b, err := d.br.ReadByte()
139 if err != nil {
140 return err
141 }
142 if b != 0 {
143 return errors.New("newRangeDecoder: first byte not zero")
144 }
145
146 for i := 0; i < 4; i++ {
147 if err = d.updateCode(); err != nil {
148 return err
149 }
150 }
151
152 if d.code >= d.nrange {
153 return errors.New("newRangeDecoder: d.code >= d.nrange")
154 }
155
156 return nil
157 }
158
159133 // newRangeDecoder initializes a range decoder. It reads five bytes from the
160134 // reader and therefore may return an error.
161135 func newRangeDecoder(br io.ByteReader) (d *rangeDecoder, err error) {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
6969 return nil, err
7070 }
7171 if r.h.dictCap < MinDictCap {
72 return nil, errors.New("lzma: dictionary capacity too small")
72 r.h.dictCap = MinDictCap
7373 }
7474 dictCap := r.h.dictCap
7575 if c.DictCap > dictCap {
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
4747 chunkReader io.Reader
4848
4949 cstate chunkState
50 ctype chunkType
5150 }
5251
5352 // NewReader2 creates a reader for an LZMA2 chunk sequence.
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
111111 }
112112 }
113113
114 //
115114 func Example_reader() {
116115 f, err := os.Open("fox.lzma")
117116 if err != nil {
309308 }
310309 }
311310 }
311
312 func TestMinDictSize(t *testing.T) {
313 const file = "examples/a.txt"
314 uncompressed, err := os.ReadFile(file)
315 if err != nil {
316 t.Fatalf("os.ReadFile(%q) error %s", file, err)
317 }
318 f := bytes.NewReader(uncompressed)
319
320 buf := new(bytes.Buffer)
321 cfg := WriterConfig{DictCap: 4096}
322 w, err := cfg.NewWriter(buf)
323 if err != nil {
324 t.Fatalf("WriterConfig(%+v).NewWriter(buf) error %s", cfg, err)
325 }
326 defer w.Close()
327 if _, err = io.Copy(w, f); err != nil {
328 t.Fatalf("io.Copy(w, f) error %s", err)
329 }
330 if err = w.Close(); err != nil {
331 t.Fatalf("w.Close() error %s", err)
332 }
333
334 compressed := buf.Bytes()
335 putUint32LE(compressed[1:5], 0)
336
337 z := bytes.NewReader(compressed)
338 r, err := NewReader(z)
339 if err != nil {
340 t.Fatalf("NewReader(z) error %s", err)
341 }
342 u, err := io.ReadAll(r)
343 if err != nil {
344 t.Fatalf("io.ReadAll(r) error %s", err)
345 }
346
347 if !bytes.Equal(u, uncompressed) {
348 t.Fatalf("got %q; want %q", u, uncompressed)
349 }
350 }
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
5050 s.lenCodec.init()
5151 s.repLenCodec.init()
5252 s.distCodec.init()
53 }
54
55 // initState initializes the state.
56 func initState(s *state, p Properties) {
57 *s = state{Properties: p}
58 s.Reset()
5953 }
6054
6155 // newState creates a new state from the give Properties.
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
1 // Use of this source code is governed by a BSD-style
2 // license that can be found in the LICENSE file.
3
4 package xz
5
6 import "hash"
7
8 type noneHash struct{}
9
10 func (h noneHash) Write(p []byte) (n int, err error) { return len(p), nil }
11
12 func (h noneHash) Sum(b []byte) []byte { return b }
13
14 func (h noneHash) Reset() {}
15
16 func (h noneHash) Size() int { return 0 }
17
18 func (h noneHash) BlockSize() int { return 0 }
19
20 func newNoneHash() hash.Hash {
21 return &noneHash{}
22 }
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
1 // Use of this source code is governed by a BSD-style
2 // license that can be found in the LICENSE file.
3
4 package xz
5
6 import (
7 "bytes"
8 "testing"
9 )
10
11 func TestNoneHash(t *testing.T) {
12 h := newNoneHash()
13
14 p := []byte("foo")
15 q := h.Sum(p)
16
17 if !bytes.Equal(q, p) {
18 t.Fatalf("h.Sum: got %q; want %q", q, p)
19 }
20
21 }
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
2323 type ReaderConfig struct {
2424 DictCap int
2525 SingleStream bool
26 }
27
28 // fill replaces all zero values with their default values.
29 func (c *ReaderConfig) fill() {
30 if c.DictCap == 0 {
31 c.DictCap = 8 * 1024 * 1024
32 }
3326 }
3427
3528 // Verify checks the reader parameters for Validity. Zero values will be
164157 return r, nil
165158 }
166159
167 // errIndex indicates an error with the xz file index.
168 var errIndex = errors.New("xz: error in xz file index")
169
170160 // readTail reads the index body and the xz footer.
171161 func (r *streamReader) readTail() error {
172 index, n, err := readIndexBody(r.xz)
162 index, n, err := readIndexBody(r.xz, len(r.index))
173163 if err != nil {
174164 if err == io.EOF {
175165 err = io.ErrUnexpectedEOF
176166 }
177167 return err
178168 }
179 if len(index) != len(r.index) {
180 return fmt.Errorf("xz: index length is %d; want %d",
181 len(index), len(r.index))
182 }
169
183170 for i, rec := range r.index {
184171 if rec != index[i] {
185172 return fmt.Errorf("xz: record %d is %v; want %v",
264251 n int64
265252 hash hash.Hash
266253 r io.Reader
267 err error
268254 }
269255
270256 // newBlockReader creates a new block reader.
282268 if err != nil {
283269 return nil, err
284270 }
285 br.r = io.TeeReader(fr, br.hash)
271 if br.hash.Size() != 0 {
272 br.r = io.TeeReader(fr, br.hash)
273 } else {
274 br.r = fr
275 }
286276
287277 return br, nil
288278 }
310300 return record{br.unpaddedSize(), br.uncompressedSize()}
311301 }
312302
313 // errBlockSize indicates that the size of the block in the block header
314 // is wrong.
315 var errBlockSize = errors.New("xz: wrong uncompressed size for block")
316
317303 // Read reads data from the block.
318304 func (br *blockReader) Read(p []byte) (n int, err error) {
319305 n, err = br.r.Read(p)
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
5454 }
5555 }
5656
57 func TestReaaderMultipleStreams(t *testing.T) {
57 func TestReaderMultipleStreams(t *testing.T) {
5858 data, err := ioutil.ReadFile("fox.xz")
5959 if err != nil {
6060 t.Fatalf("ReadFile error %s", err)
7878 t.Fatalf("io.Copy error %s", err)
7979 }
8080 }
81
82 func TestCheckNone(t *testing.T) {
83 const file = "fox-check-none.xz"
84 xz, err := os.Open(file)
85 if err != nil {
86 t.Fatalf("os.Open(%q) error %s", file, err)
87 }
88 r, err := NewReader(xz)
89 if err != nil {
90 t.Fatalf("NewReader error %s", err)
91 }
92 var buf bytes.Buffer
93 if _, err = io.Copy(&buf, r); err != nil {
94 t.Fatalf("io.Copy error %s", err)
95 }
96 }
97
98 func BenchmarkReader(b *testing.B) {
99 const testFile = "testdata/enwik7"
100 data, err := os.ReadFile(testFile)
101 if err != nil {
102 b.Fatalf("os.ReadFile(%q) error %s", testFile, err)
103 }
104 buf := new(bytes.Buffer)
105 uncompressedLen := int64(len(data))
106 b.SetBytes(int64(uncompressedLen))
107 b.ReportAllocs()
108 buf.Reset()
109 w, err := NewWriter(buf)
110 if err != nil {
111 b.Fatalf("NewWriter(buf) error %s", err)
112 }
113 if _, err = w.Write(data); err != nil {
114 b.Fatalf("w.Write(data) error %s", err)
115 }
116 if err = w.Close(); err != nil {
117 b.Fatalf("w.Write(data)")
118 }
119 data = make([]byte, buf.Len())
120 copy(data, buf.Bytes())
121 b.ResetTimer()
122 for i := 0; i < b.N; i++ {
123 buf.Reset()
124 r, err := NewReader(bytes.NewReader(data))
125 if err != nil {
126 b.Fatalf("NewReader(data) error %s", err)
127 }
128 n, err := io.Copy(buf, r)
129 if err != nil {
130 b.Fatalf("io.Copy(buf, r) error %s", err)
131 }
132 if n != uncompressedLen {
133 b.Fatalf("io.Copy got %d; want %d", n, uncompressedLen)
134 }
135 }
136 }
0 <mediawiki xmlns="http://www.mediawiki.org/xml/export-0.3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.3/ http://www.mediawiki.org/xml/export-0.3.xsd" version="0.3" xml:lang="en">
1 <siteinfo>
2 <sitename>Wikipedia</sitename>
3 <base>http://en.wikipedia.org/wiki/Main_Page</base>
4 <generator>MediaWiki 1.6alpha</generator>
5 <case>first-letter</case>
6 <namespaces>
7 <namespace key="-2">Media</namespace>
8 <namespace key="-1">Special</namespace>
9 <namespace key="0" />
10 <namespace key="1">Talk</namespace>
11 <namespace key="2">User</namespace>
12 <namespace key="3">User talk</namespace>
13 <namespace key="4">Wikipedia</namespace>
14 <namespace key="5">Wikipedia talk</namespace>
15 <namespace key="6">Image</namespace>
16 <namespace key="7">Image talk</namespace>
17 <namespace key="8">MediaWiki</namespace>
18 <namespace key="9">MediaWiki talk</namespace>
19 <namespace key="10">Template</namespace>
20 <namespace key="11">Template talk</namespace>
21 <namespace key="12">Help</namespace>
22 <namespace key="13">Help talk</namespace>
23 <namespace key="14">Category</namespace>
24 <namespace key="15">Category talk</namespace>
25 <namespace key="100">Portal</namespace>
26 <namespace key="101">Portal talk</namespace>
27 </namespaces>
28 </siteinfo>
29 <page>
30 <title>AaA</title>
31 <id>1</id>
32 <revision>
33 <id>32899315</id>
34 <timestamp>2005-12-27T18:46:47Z</timestamp>
35 <contributor>
36 <username>Jsmethers</username>
37 <id>614213</id>
38 </contributor>
39 <text xml:space="preserve">#REDIRECT [[AAA]]</text>
40 </revision>
41 </page>
42 <page>
43 <title>AlgeriA</title>
44 <id>5</id>
45 <revision>
46 <id>18063769</id>
47 <timestamp>2005-07-03T11:13:13Z</timestamp>
48 <contributor>
49 <username>Docu</username>
50 <id>8029</id>
51 </contributor>
52 <minor />
53 <comment>adding cur_id=5: {{R from CamelCase}}</comment>
54 <text xml:space="preserve">#REDIRECT [[Algeria]]{{R from CamelCase}}</text>
55 </revision>
56 </page>
57 <page>
58 <title>AmericanSamoa</title>
59 <id>6</id>
60 <revision>
61 <id>18063795</id>
62 <timestamp>2005-07-03T11:14:17Z</timestamp>
63 <contributor>
64 <username>Docu</username>
65 <id>8029</id>
66 </contributor>
67 <minor />
68 <comment>adding to cur_id=6 {{R from CamelCase}}</comment>
69 <text xml:space="preserve">#REDIRECT [[American Samoa]]{{R from CamelCase}}</text>
70 </revision>
71 </page>
72 <page>
73 <title>AppliedEthics</title>
74 <id>8</id>
75 <revision>
76 <id>15898943</id>
77 <timestamp>2002-02-25T15:43:11Z</timestamp>
78 <contributor>
79 <ip>Conversion script</ip>
80 </contributor>
81 <minor />
82 <comment>Automated conversion</comment>
83 <text xml:space="preserve">#REDIRECT [[Applied ethics]]
84 </text>
85 </revision>
86 </page>
87 <page>
88 <title>AccessibleComputing</title>
89 <id>10</id>
90 <revision>
91 <id>15898945</id>
92 <timestamp>2003-04-25T22:18:38Z</timestamp>
93 <contributor>
94 <username>Ams80</username>
95 <id>7543</id>
96 </contributor>
97 <minor />
98 <comment>Fixing redirect</comment>
99 <text xml:space="preserve">#REDIRECT [[Accessible_computing]]</text>
100 </revision>
101 </page>
102 <page>
103 <title>AdA</title>
104 <id>11</id>
105 <revision>
106 <id>15898946</id>
107 <timestamp>2002-09-22T16:02:58Z</timestamp>
108 <contributor>
109 <username>Andre Engels</username>
110 <id>300</id>
111 </contributor>
112 <minor />
113 <text xml:space="preserve">#REDIRECT [[Ada programming language]]</text>
114 </revision>
115 </page>
116 <page>
117 <title>Anarchism</title>
118 <id>12</id>
119 <revision>
120 <id>42136831</id>
121 <timestamp>2006-03-04T01:41:25Z</timestamp>
122 <contributor>
123 <username>CJames745</username>
124 <id>832382</id>
125 </contributor>
126 <minor />
127 <comment>/* Anarchist Communism */ too many brackets</comment>
128 <text xml:space="preserve">{{Anarchism}}
129 '''Anarchism''' originated as a term of abuse first used against early [[working class]] [[radical]]s including the [[Diggers]] of the [[English Revolution]] and the [[sans-culotte|''sans-culottes'']] of the [[French Revolution]].[http://uk.encarta.msn.com/encyclopedia_761568770/Anarchism.html] Whilst the term is still used in a pejorative way to describe ''&quot;any act that used violent means to destroy the organization of society&quot;''&lt;ref&gt;[http://www.cas.sc.edu/socy/faculty/deflem/zhistorintpolency.html History of International Police Cooperation], from the final protocols of the &quot;International Conference of Rome for the Social Defense Against Anarchists&quot;, 1898&lt;/ref&gt;, it has also been taken up as a positive label by self-defined anarchists.
130
131 The word '''anarchism''' is [[etymology|derived from]] the [[Greek language|Greek]] ''[[Wiktionary:&amp;#945;&amp;#957;&amp;#945;&amp;#961;&amp;#967;&amp;#943;&amp;#945;|&amp;#945;&amp;#957;&amp;#945;&amp;#961;&amp;#967;&amp;#943;&amp;#945;]]'' (&quot;without [[archon]]s (ruler, chief, king)&quot;). Anarchism as a [[political philosophy]], is the belief that ''rulers'' are unnecessary and should be abolished, although there are differing interpretations of what this means. Anarchism also refers to related [[social movement]]s) that advocate the elimination of authoritarian institutions, particularly the [[state]].&lt;ref&gt;[http://en.wikiquote.org/wiki/Definitions_of_anarchism Definitions of anarchism] on Wikiquote, accessed 2006&lt;/ref&gt; The word &quot;[[anarchy]],&quot; as most anarchists use it, does not imply [[chaos]], [[nihilism]], or [[anomie]], but rather a harmonious [[anti-authoritarian]] society. In place of what are regarded as authoritarian political structures and coercive economic institutions, anarchists advocate social relations based upon [[voluntary association]] of autonomous individuals, [[mutual aid]], and [[self-governance]].
132
133 While anarchism is most easily defined by what it is against, anarchists also offer positive visions of what they believe to be a truly free society. However, ideas about how an anarchist society might work vary considerably, especially with respect to economics; there is also disagreement about how a free society might be brought about.
134
135 == Origins and predecessors ==
136
137 [[Peter Kropotkin|Kropotkin]], and others, argue that before recorded [[history]], human society was organized on anarchist principles.&lt;ref&gt;[[Peter Kropotkin|Kropotkin]], Peter. ''&quot;[[Mutual Aid: A Factor of Evolution]]&quot;'', 1902.&lt;/ref&gt; Most anthropologists follow Kropotkin and Engels in believing that hunter-gatherer bands were egalitarian and lacked division of labour, accumulated wealth, or decreed law, and had equal access to resources.&lt;ref&gt;[[Friedrich Engels|Engels]], Freidrich. ''&quot;[http://www.marxists.org/archive/marx/works/1884/origin-family/index.htm Origins of the Family, Private Property, and the State]&quot;'', 1884.&lt;/ref&gt;
138 [[Image:WilliamGodwin.jpg|thumb|right|150px|William Godwin]]
139
140 Anarchists including the [[The Anarchy Organisation]] and [[Murray Rothbard|Rothbard]] find anarchist attitudes in [[Taoism]] from [[History of China|Ancient China]].&lt;ref&gt;The Anarchy Organization (Toronto). ''Taoism and Anarchy.'' [[April 14]] [[2002]] [http://www.toxicpop.co.uk/library/taoism.htm Toxicpop mirror] [http://www.geocities.com/SoHo/5705/taoan.html Vanity site mirror]&lt;/ref&gt;&lt;ref&gt;[[Murray Rothbard|Rothbard]], Murray. ''&quot;[http://www.lewrockwell.com/rothbard/ancient-chinese.html The Ancient Chinese Libertarian Tradition]&quot;'', an extract from ''&quot;[http://www.mises.org/journals/jls/9_2/9_2_3.pdf Concepts of the Role of Intellectuals in Social Change Toward Laissez Faire]&quot;'', The Journal of Libertarian Studies, 9 (2) Fall 1990.&lt;/ref&gt; [[Peter Kropotkin|Kropotkin]] found similar ideas in [[stoicism|stoic]] [[Zeno of Citium]]. According to Kropotkin, Zeno &quot;repudiated the omnipotence of the state, its intervention and regimentation, and proclaimed the sovereignty of the moral law of the individual&quot;. &lt;ref&gt;[http://www.blackcrayon.com/page.jsp/library/britt1910.html Anarchism], written by Peter Kropotkin, from Encyclopaedia Britannica, 1910]&lt;/ref&gt;
141
142 The [[Anabaptist]]s of 16th century Europe are sometimes considered to be religious forerunners of modern anarchism. [[Bertrand Russell]], in his ''History of Western Philosophy'', writes that the Anabaptists &quot;repudiated all law, since they held that the good man will be guided at every moment by [[the Holy Spirit]]...[f]rom this premise they arrive at [[communism]]....&quot;&lt;ref&gt;[[Bertrand Russell|Russell]], Bertrand. ''&quot;Ancient philosophy&quot;'' in ''A History of Western Philosophy, and its connection with political and social circumstances from the earliest times to the present day'', 1945.&lt;/ref&gt; [[Diggers (True Levellers)|The Diggers]] or &quot;True Levellers&quot; were an early communistic movement during the time of the [[English Civil War]], and are considered by some as forerunners of modern anarchism.&lt;ref&gt;[http://www.zpub.com/notes/aan-hist.html An Anarchist Timeline], from Encyclopaedia Britannica, 1994.&lt;/ref&gt;
143
144 In the [[modern era]], the first to use the term to mean something other than chaos was [[Louis-Armand de Lom d'Arce de Lahontan, Baron de Lahontan|Louis-Armand, Baron de Lahontan]] in his ''Nouveaux voyages dans l'AmÊrique septentrionale'', (1703), where he described the [[Native Americans in the United States|indigenous American]] society, which had no state, laws, prisons, priests, or private property, as being in anarchy&lt;ref&gt;[http://etext.lib.virginia.edu/cgi-local/DHI/dhi.cgi?id=dv1-12 Dictionary of the History of Ideas - ANARCHISM]&lt;/ref&gt;. [[Russell Means]], a [[libertarian]] and leader in the [[American Indian Movement]], has repeatedly stated that he is &quot;an anarchist, and so are all [his] ancestors.&quot;
145
146 In 1793, in the thick of the [[French Revolution]], [[William Godwin]] published ''An Enquiry Concerning Political Justice'' [http://web.bilkent.edu.tr/Online/www.english.upenn.edu/jlynch/Frank/Godwin/pjtp.html]. Although Godwin did not use the word ''anarchism'', many later anarchists have regarded this book as the first major anarchist text, and Godwin as the &quot;founder of philosophical anarchism.&quot; But at this point no anarchist movement yet existed, and the term ''anarchiste'' was known mainly as an insult hurled by the [[bourgeois]] [[Girondins]] at more radical elements in the [[French revolution]].
147
148 ==The first self-labelled anarchist==
149 [[Image:Pierre_Joseph_Proudhon.jpg|110px|thumb|left|Pierre Joseph Proudhon]]
150 {{main articles|[[Pierre-Joseph Proudhon]] and [[Mutualism (economic theory)]]}}
151
152 It is commonly held that it wasn't until [[Pierre-Joseph Proudhon]] published ''[[What is Property?]]'' in 1840 that the term &quot;anarchist&quot; was adopted as a self-description. It is for this reason that some claim Proudhon as the founder of modern anarchist theory. In [[What is Property?]] Proudhon answers with the famous accusation &quot;[[Property is theft]].&quot; In this work he opposed the institution of decreed &quot;property&quot; (propriÊtÊ), where owners have complete rights to &quot;use and abuse&quot; their property as they wish, such as exploiting workers for profit.&lt;ref name=&quot;proudhon-prop&quot;&gt;[[Pierre-Joseph Proudhon|Proudhon]], Pierre-Joseph. ''&quot;[http://www.marxists.org/reference/subject/economics/proudhon/property/ch03.htm Chapter 3. Labour as the efficient cause of the domain of property]&quot;'' from ''&quot;[[What is Property?]]&quot;'', 1840&lt;/ref&gt; In its place Proudhon supported what he called 'possession' - individuals can have limited rights to use resources, capital and goods in accordance with principles of equality and justice.
153
154 Proudhon's vision of anarchy, which he called [[mutualism]] (mutuellisme), involved an exchange economy where individuals and groups could trade the products of their labor using ''labor notes'' which represented the amount of working time involved in production. This would ensure that no one would profit from the labor of others. Workers could freely join together in co-operative workshops. An interest-free bank would be set up to provide everyone with access to the means of production. Proudhon's ideas were influential within French working class movements, and his followers were active in the [[Revolution of 1848]] in France.
155
156 Proudhon's philosophy of property is complex: it was developed in a number of works over his lifetime, and there are differing interpretations of some of his ideas. ''For more detailed discussion see [[Pierre-Joseph Proudhon|here]].''
157
158 ==Max Stirner's Egoism==
159 {{main articles|[[Max Stirner]] and [[Egoism]]}}
160
161 In his ''The Ego and Its Own'' Stirner argued that most commonly accepted social institutions - including the notion of State, property as a right, natural rights in general, and the very notion of society - were mere illusions or ''ghosts'' in the mind, saying of society that &quot;the individuals are its reality.&quot; He advocated egoism and a form of amoralism, in which individuals would unite in 'associations of egoists' only when it was in their self interest to do so. For him, property simply comes about through might: &quot;Whoever knows how to take, to defend, the thing, to him belongs property.&quot; And, &quot;What I have in my power, that is my own. So long as I assert myself as holder, I am the proprietor of the thing.&quot;
162
163 Stirner never called himself an anarchist - he accepted only the label 'egoist'. Nevertheless, his ideas were influential on many individualistically-inclined anarchists, although interpretations of his thought are diverse.
164
165 ==American individualist anarchism==
166 [[Image:BenjaminTucker.jpg|thumb|150px|left|[[Benjamin Tucker]]]]
167 {{main articles|[[Individualist anarchism]] and [[American individualist anarchism]]}}
168
169 In 1825 [[Josiah Warren]] had participated in a [[communitarian]] experiment headed by [[Robert Owen]] called [[New Harmony]], which failed in a few years amidst much internal conflict. Warren blamed the community's failure on a lack of [[individual sovereignty]] and a lack of private property. Warren proceeded to organise experimenal anarchist communities which respected what he called &quot;the sovereignty of the individual&quot; at [[Utopia (anarchist community)|Utopia]] and [[Modern Times]]. In 1833 Warren wrote and published ''The Peaceful Revolutionist'', which some have noted to be the first anarchist periodical ever published. Benjamin Tucker says that Warren &quot;was the first man to expound and formulate the doctrine now known as Anarchism.&quot; (''Liberty'' XIV (December, 1900):1)
170
171 [[Benjamin Tucker]] became interested in anarchism through meeting Josiah Warren and [[William B. Greene]]. He edited and published ''Liberty'' from August 1881 to April 1908; it is widely considered to be the finest individualist-anarchist periodical ever issued in the English language. Tucker's conception of individualist anarchism incorporated the ideas of a variety of theorists: Greene's ideas on [[mutualism|mutual banking]]; Warren's ideas on [[cost the limit of price|cost as the limit of price]] (a [[heterodox economics|heterodox]] variety of [[labour theory of value]]); [[Proudhon]]'s market anarchism; [[Max Stirner]]'s [[egoism]]; and, [[Herbert Spencer]]'s &quot;law of equal freedom&quot;. Tucker strongly supported the individual's right to own the product of his or her labour as &quot;[[private property]]&quot;, and believed in a &lt;ref name=&quot;tucker-pay&quot;&gt;[[Benjamin Tucker|Tucker]], Benjamin. ''&quot;[http://www.blackcrayon.com/page.jsp/library/tucker/tucker37.htm Labor and Its Pay]&quot;'' Individual Liberty: Selections From the Writings of Benjamin R. Tucker, Vanguard Press, New York, 1926, Kraus Reprint Co., Millwood, NY, 1973.&lt;/ref&gt;[[market economy]] for trading this property. He argued that in a truly free market system without the state, the abundance of competition would eliminate profits and ensure that all workers received the full value of their labor.
172
173 Other 19th century individualists included [[Lysander Spooner]], [[Stephen Pearl Andrews]], and [[Victor Yarros]].
174
175 ==The First International==
176 [[Image:Bakuninfull.jpg|thumb|150px|right|[[Bakunin|Mikhail Bakunin 1814-1876]]]]
177 {{main articles|[[International Workingmen's Association]], [[Anarchism and Marxism]]}}
178
179 In Europe, harsh reaction followed the revolutions of 1848. Twenty years later in 1864 the [[International Workingmen's Association]], sometimes called the 'First International', united some diverse European revolutionary currents including anarchism. Due to its genuine links to active workers movements the International became signficiant.
180
181 From the start [[Karl Marx]] was a leading figure in the International: he was elected to every succeeding General Council of the association. The first objections to Marx came from the [[Mutualism|Mutualists]] who opposed communism and statism. Shortly after [[Mikhail Bakunin]] and his followers joined in 1868, the First International became polarised into two camps, with Marx and Bakunin as their respective figureheads. The clearest difference between the camps was over strategy. The anarchists around Bakunin favoured (in Kropotkin's words) &quot;direct economical struggle against capitalism, without interfering in the political parliamentary agitation.&quot; At that time Marx and his followers focused on parliamentary activity.
182
183 Bakunin characterised Marx's ideas as [[authoritarian]], and predicted that if a Marxist party gained to power its leaders would end up as bad as the [[ruling class]] they had fought against.&lt;ref&gt;[[Mikhail Bakunin|Bakunin]], Mikhail. ''&quot;[http://www.litencyc.com/php/adpage.php?id=1969 Statism and Anarchy]&quot;''&lt;/ref&gt; In 1872 the conflict climaxed with a final split between the two groups at the [[Hague Congress (1872)|Hague Congress]]. This is often cited as the origin of the [[Anarchist_objections_to_marxism|conflict between anarchists and Marxists]]. From this moment the ''[[Social democracy|social democratic]]'' and ''[[Libertarian socialism|libertarian]]'' currents of socialism had distinct organisations including rival [[List of left-wing internationals|'internationals'.]]
184
185 ==Anarchist Communism==
186 {{main|Anarchist communism}}
187 [[Image:PeterKropotkin.jpg|thumb|150px|right|Peter Kropotkin]]
188
189 Proudhon and Bakunin both opposed [[communism]], associating it with statism. However, in the 1870s many anarchists moved away from Bakunin's economic thinking (called &quot;collectivism&quot;) and embraced communist concepts. Communists believed the means of production should be owned collectively, and that goods be distributed by need, not labor. [http://nefac.net/node/157]
190
191 An early anarchist communist was Joseph DÊjacque, the first person to describe himself as &quot;[[libertarian socialism|libertarian]]&quot;.[http://recollectionbooks.com/bleed/Encyclopedia/DejacqueJoseph.htm]&lt;ref&gt;[http://joseph.dejacque.free.fr/ecrits/lettreapjp.htm De l'ÃĒtre-humain mÃĸle et femelle - Lettre à P.J. Proudhon par Joseph DÊjacque] (in [[French language|French]])&lt;/ref&gt; Unlike Proudhon, he argued that &quot;it is not the product of his or her labor that the worker has a right to, but to the satisfaction of his or her needs, whatever may be their nature.&quot; He announced his ideas in his US published journal Le Libertaire (1858-1861).
192
193 Peter Kropotkin, often seen as the most important theorist, outlined his economic ideas in The Conquest of Bread and Fields, Factories and Workshops. He felt co-operation is more beneficial than competition, illustrated in nature in Mutual Aid: A Factor of Evolution (1897). Subsequent anarchist communists include Emma Goldman and Alexander Berkman. Many in the anarcho-syndicalist movements (see below) saw anarchist communism as their objective. Isaac Puente's 1932 Comunismo Libertario was adopted by the Spanish CNT as its manifesto for a post-revolutionary society.
194
195 Some anarchists disliked merging communism with anarchism. Several individualist anarchists maintained that abolition of private property was not consistent with liberty. For example, Benjamin Tucker, whilst professing respect for Kropotkin and publishing his work[http://www.zetetics.com/mac/libdebates/apx1pubs.html], described communist anarchism as &quot;pseudo-anarchism&quot;.&lt;ref name=&quot;tucker-pay&quot;/&gt;
196
197 ==Propaganda of the deed==
198 [[Image:JohannMost.jpg|left|150px|thumb|[[Johann Most]] was an outspoken advocate of violence]]
199 {{main|Propaganda of the deed}}
200
201 Anarchists have often been portrayed as dangerous and violent, due mainly to a number of high-profile violent acts, including [[riot]]s, [[assassination]]s, [[insurrection]]s, and [[terrorism]] by some anarchists. Some [[revolution]]aries of the late 19th century encouraged acts of political violence, such as [[bomb]]ings and the [[assassination]]s of [[head of state|heads of state]] to further anarchism. Such actions have sometimes been called '[[propaganda by the deed]]'.
202
203 One of the more outspoken advocates of this strategy was [[Johann Most]], who said &quot;the existing system will be quickest and most radically overthrown by the annihilation of its exponents. Therefore, massacres of the enemies of the people must be set in motion.&quot;{{fact}} Most's preferred method of terrorism, dynamite, earned him the moniker &quot;Dynamost.&quot;
204
205 However, there is no [[consensus]] on the legitimacy or utility of violence in general. [[Mikhail Bakunin]] and [[Errico Malatesta]], for example, wrote of violence as a necessary and sometimes desirable force in revolutionary settings. But at the same time, they denounced acts of individual terrorism. (Malatesta in &quot;On Violence&quot; and Bakunin when he refuted Nechaev).
206
207 Other anarchists, sometimes identified as [[anarcho-pacifists|pacifist anarchists]], advocated complete [[nonviolence]]. [[Leo Tolstoy]], whose philosophy is often viewed as a form of [[Christian anarchism|Christian anarchism]] ''(see below)'', was a notable exponent of [[nonviolent resistance]].
208
209 ==Anarchism in the labour movement==
210 {{seealso|Anarcho-syndicalism}}
211
212 [[Image:Flag of Anarcho syndicalism.svg|thumb|175px|The red-and-black flag, coming from the experience of anarchists in the labour movement, is particularly associated with anarcho-syndicalism.]]
213
214 [[Anarcho-syndicalism]] was an early 20th century working class movement seeking to overthrow capitalism and the state to institute a worker controlled society. The movement pursued [[industrial action]]s, such as [[general strike]], as a primary strategy. Many anarcho-syndicalists believed in [[anarchist communism]], though not all communists believed in syndicalism.
215
216 After the [[Paris Commune|1871 repression]] French anarchism reemerged, influencing the ''Bourses de Travails'' of autonomous workers groups and trade unions. From this movement the [[ConfÊdÊration GÊnÊrale du Travail]] (General Confederation of Work, CGT) was formed in 1895 as the first major anarcho-syndicalist movement. [[Emile Pataud]] and [[Emile Pouget]]'s writing for the CGT saw [[libertarian communism]] developing from a [[general strike]]. After 1914 the CGT moved away from anarcho-syndicalism due to the appeal of [[Bolshevism]]. French-style syndicalism was a significant movement in Europe prior to 1921, and remained a significant movement in Spain until the mid 1940s.
217
218 The [[Industrial Workers of the World]] (IWW), founded in 1905 in the US, espoused [[industrial unionism|unionism]] and sought a [[general strike]] to usher in a stateless society. In 1923 100,000 members existed, with the support of up to 300,000. Though not explicitly anarchist, they organized by rank and file democracy, embodying a spirit of resistance that has inspired many Anglophone syndicalists.
219
220 [[Image:CNT_tu_votar_y_ellos_deciden.jpg|thumb|175px|CNT propaganda from April 2004. Reads: Don't let the politicians rule our lives/ You vote and they decide/ Don't allow it/ Unity, Action, Self-management.]]
221
222 Spanish anarchist trade union federations were formed in the 1870's, 1900 and 1910. The most successful was the [[ConfederaciÃŗn Nacional del Trabajo]] (National Confederation of Labour: CNT), founded in 1910. Prior to the 1940s the CNT was the major force in Spanish working class politics. With a membership of 1.58 million in 1934, the CNT played a major role in the [[Spanish Civil War]]. ''See also:'' [[Anarchism in Spain]].
223
224 Syndicalists like [[Ricardo Flores MagÃŗn]] were key figures in the [[Mexican Revolution]]. [[Latin America|Latin American]] anarchism was strongly influenced, extending to the [[Zapatista Army of National Liberation|Zapatista]] rebellion and the [[factory occupation movements]] in Argentina. In Berlin in 1922 the CNT was joined with the [[International Workers Association]], an anarcho-syndicalist successor to the [[First International]].
225
226 Contemporary anarcho-syndicalism continues as a minor force in many socities; much smaller than in the 1910s, 20s and 30s.
227
228 The largest organised anarchist movement today is in Spain, in the form of the [[ConfederaciÃŗn General del Trabajo]] and the [[CNT]]. The CGT claims a paid-up membership of 60,000, and received over a million votes in Spanish [[syndical]] elections. Other active syndicalist movements include the US [[Workers Solidarity Alliance]], and the UK [[Solidarity Federation]]. The revolutionary industrial unionist [[Industrial Workers of the World]] also exists, claiming 2,000 paid members. Contemporary critics of anarcho-syndicalism and revolutionary industrial unionism claim that they are [[workerist]] and fail to deal with economic life outside work. Post-leftist critics such as [[Bob Black]] claim anarcho-syndicalism advocates oppressive social structures, such as [[Manual labour|work]] and the [[workplace]].
229
230 Anarcho-syndicalists in general uphold principles of workers solidarity, [[direct action]], and self-management.
231
232 ==The Russian Revolution==
233 {{main|Russian Revolution of 1917}}
234
235 The [[Russian Revolution of 1917]] was a seismic event in the development of anarchism as a movement and as a philosophy.
236
237 Anarchists participated alongside the [[Bolsheviks]] in both February and October revolutions, many anarchists initially supporting the Bolshevik coup. However the Bolsheviks soon turned against the anarchists and other left-wing opposition, a conflict which culminated in the 1918 [[Kronstadt rebellion]]. Anarchists in central Russia were imprisoned or driven underground, or joined the victorious Bolsheviks. In [[Ukraine]] anarchists fought in the [[Russian Civil War|civil war]] against both Whites and Bolsheviks within the Makhnovshchina peasant army led by [[Nestor Makhno]]).
238
239 Expelled American anarchists [[Emma Goldman]] and [[Alexander Berkman]] before leaving Russia were amongst those agitating in response to Bolshevik policy and the suppression of the Kronstadt uprising. Both wrote classic accounts of their experiences in Russia, aiming to expose the reality of Bolshevik control. For them, [[Bakunin]]'s predictions about the consequences of Marxist rule had proved all too true.
240
241 The victory of the Bolsheviks in the October Revolution and the resulting Russian Civil War did serious damage to anarchist movements internationally. Many workers and activists saw Bolshevik success as setting an example; Communist parties grew at the expense of anarchism and other socialist movements. In France and the US for example, the major syndicalist movements of the [[CGT]] and [[IWW]] began to realign themselves away from anarchism and towards the [[Comintern|Communist International]].
242
243 In Paris, the [[Dielo Truda]] group of Russian anarchist exiles which included [[Nestor Makhno]] concluded that anarchists needed to develop new forms of organisation in response to the structures of Bolshevism. Their 1926 manifesto, known as the [[Platformism|Organisational Platform of the Libertarian Communists]], was supported by some communist anarchists, though opposed by many others.
244
245 The ''Platform'' continues to inspire some contemporary anarchist groups who believe in an anarchist movement organised around its principles of 'theoretical unity', 'tactical unity', 'collective responsibility' and 'federalism'. Platformist groups today include the [[Workers Solidarity Movement]] in Ireland, the UK's [[Anarchist Federation]], and the late [[North Eastern Federation of Anarchist Communists]] in the northeastern United States and bordering Canada.
246
247 ==The fight against fascism==
248 {{main articles|[[Anti-fascism]] and [[Anarchism in Spain]]}}
249 [[Image:CNT-armoured-car-factory.jpg|right|thumb|270px|[[Spain]], [[1936]]. Members of the [[CNT]] construct [[armoured car]]s to fight against the [[fascist]]s in one of the [[collectivisation|collectivised]] factories.]]
250 In the 1920s and 1930s the familiar dynamics of anarchism's conflict with the state were transformed by the rise of [[fascism]] in Europe. In many cases, European anarchists faced difficult choices - should they join in [[popular front]]s with reformist democrats and Soviet-led [[Communists]] against a common fascist enemy? Luigi Fabbri, an exile from Italian fascism, was amongst those arguing that fascism was something different:
251
252 :&quot;Fascism is not just another form of government which, like all others, uses violence. It is the most authoritarian and the most violent form of government imaginable. It represents the utmost glorification of the theory and practice of the principle of authority.&quot; {{fact}}
253
254 In France, where the fascists came close to insurrection in the February 1934 riots, anarchists divided over a 'united front' policy. [http://melior.univ-montp3.fr/ra_forum/en/people/berry_david/fascism_or_revolution.html] In Spain, the [[CNT]] initially refused to join a popular front electoral alliance, and abstention by CNT supporters led to a right wing election victory. But in 1936, the CNT changed its policy and anarchist votes helped bring the popular front back to power. Months later, the ruling class responded with an attempted coup, and the [[Spanish Civil War]] (1936-39) was underway.
255
256 In reponse to the army rebellion [[Anarchism in Spain|an anarchist-inspired]] movement of peasants and workers, supported by armed militias, took control of the major [[city]] of [[Barcelona]] and of large areas of rural Spain where they [[collectivization|collectivized]] the land. But even before the eventual fascist victory in 1939, the anarchists were losing ground in a bitter struggle with the [[Stalinists]]. The CNT leadership often appeared confused and divided, with some members controversially entering the government. Stalinist-led troops suppressed the collectives, and persecuted both [[POUM|dissident marxists]] and anarchists.
257
258 Since the late 1970s anarchists have been involved in fighting the rise of [[neo-fascism|neo-fascist]] groups. In Germany and the United Kingdom some anarchists worked within [[militant]] [[anti-fascism|anti-fascist]] groups alongside members of the [[Marxist]] left. They advocated directly combating fascists with physical force rather than relying on the state. Since the late 1990s, a similar tendency has developed within US anarchism. ''See also: [[Anti-Racist Action]] (US), [[Anti-Fascist Action]] (UK), [[Antifa]]''
259
260 ==Religious anarchism==
261 [[Image:LeoTolstoy.jpg|thumb|150px|[[Leo Tolstoy|Leo Tolstoy]] 1828-1910]]
262 {{main articles|[[Christian anarchism]] and [[Anarchism and religion]]}}
263
264 Most anarchist culture tends to be [[secular]] if not outright [[militant athiesm|anti-religious]]. However, the combination of religious social conscience, historical religiousity amongst oppressed social classes, and the compatibility of some interpretations of religious traditions with anarchism has resulted in religious anarchism.
265
266 [[Christian anarchism|Christian anarchists]] believe that there is no higher authority than [[God]], and oppose earthly authority such as [[government]] and established churches. They believe that Jesus' teachings were clearly anarchistic, but were corrupted when &quot;Christianity&quot; was declared the official religion of Rome. Christian anarchists, who follow Jesus' directive to &quot;turn the other cheek&quot;, are strict [[pacifism|pacifists]]. The most famous advocate of Christian anarchism was [[Leo Tolstoy]], author of ''[[The Kingdom of God is Within You]]'', who called for a society based on compassion, nonviolent principles and freedom. Christian anarchists tend to form [[experimental communities]]. They also occasionally [[tax resistance|resist taxation]]. Many Christian anarchists are [[vegetarianism|vegetarian]] or [[veganism|vegan]]{{fact}}.
267
268 Christian anarchy can be said to have roots as old as the religion's birth, as the [[early church]] exhibits many anarchistic tendencies, such as communal goods and wealth. By aiming to obey utterly certain of the Bible's teachings certain [[anabaptism|anabaptist]] groups of sixteenth century Europe attempted to emulate the early church's social-economic organisation and philosophy by regarding it as the only social structure capable of true obediance to Jesus' teachings, and utterly rejected (in theory) all earthly hierarchies and authority (and indeed non-anabaptists in general) and violence as ungodly. Such groups, for example the [[Hutterites]], typically went from initially anarchistic beginnings to, as their movements stabalised, more authoritarian social models.
269
270 [[Chinese Anarchism]] was most influential in the 1920s. Strands of Chinese anarchism included [[Tai-Xu]]'s [[Buddhist Anarchism]] which was influenced by Tolstoy and the [[well-field system]].
271
272 [[Neopaganism]], with its focus on the environment and equality, along with its often decentralized nature, has lead to a number of neopagan anarchists. One of the most prominent is [[Starhawk]], who writes extensively about both [[spirituality]] and [[activism]].
273
274 ==Anarchism and feminism==
275 [[Image:Goldman-4.jpg|thumb|left|150px|[[Emma Goldman]]]]
276 {{main|Anarcha-Feminism}}
277
278 Early [[French feminism|French feminists]] such as [[Jenny d'HÊricourt]] and [[Juliette Adam]] criticised the [[mysogyny]] in the anarchism of [[Proudhon]] during the 1850s.
279
280 Anarcha-feminism is a kind of [[radical feminism]] that espouses the belief that [[patriarchy]] is a fundamental problem in society. While anarchist feminism has existed for more than a hundred years, its explicit formulation as ''anarcha-feminism'' dates back to the early 70s&lt;ref&gt;[http://www.anarcha.org/sallydarity/Anarcho-FeminismTwoStatements.htm Anarcho-Feminism - Two Statements - Who we are: An Anarcho-Feminist Manifesto]&lt;/ref&gt;, during the [[second-wave feminism|second-wave]] feminist movement. Anarcha-feminism, views [[patriarchy]] as the first manifestation of hierarchy in human history; thus, the first form of oppression occurred in the dominance of male over female. Anarcha-feminists then conclude that if feminists are against patriarchy, they must also be against all forms of [[hierarchy]], and therefore must reject the authoritarian nature of the state and capitalism. {{fact}}
281
282 Anarcho-primitivists see the creation of gender roles and patriarchy a creation of the start of [[civilization]], and therefore consider primitivism to also be an anarchist school of thought that addresses feminist concerns. [[Eco-feminism]] is often considered a feminist variant of green anarchist feminist thought.
283
284 Anarcha-feminism is most often associated with early 20th-century authors and theorists such as [[Emma Goldman]] and [[Voltairine de Cleyre]], although even early first-wave feminist [[Mary Wollstonecraft]] held proto-anarchist views, and William Godwin is often considered a feminist anarchist precursor. It should be noted that Goldman and de Cleyre, though they both opposed the state, had opposing philosophies, as de Cleyre explains: &quot;Miss Goldman is a communist; I am an individualist. She wishes to destroy the right of property, I wish to assert it. I make my war upon privilege and authority, whereby the right of property, the true right in that which is proper to the individual, is annihilated. She believes that co-operation would entirely supplant competition; I hold that competition in one form or another will always exist, and that it is highly desirable it should.&quot; In the [[Spanish Civil War]], an anarcha-feminist group, &quot;Free Women&quot;, organized to defend both anarchist and feminist ideas.
285
286 In the modern day anarchist movement, many anarchists, male or female, consider themselves feminists, and anarcha-feminist ideas are growing. The publishing of Quiet Rumors, an anarcha-feminist reader, has helped to spread various kinds of anti-authoritarian and anarchist feminist ideas to the broader movement. Wendy McElroy has popularized an individualist-anarchism take on feminism in her books, articles, and individualist feminist website.&lt;ref&gt;[http://www.ifeminists.net I-feminists.net]&lt;/ref&gt;
287
288 ==Anarcho-capitalism==
289 [[Image:Murray Rothbard Smile.JPG|thumb|left|150px|[[Murray Rothbard]] (1926-1995)]]
290 {{main|Anarcho-capitalism}}
291 Anarcho-capitalism is a predominantly United States-based theoretical tradition that desires a stateless society with the economic system of [[free market]] [[capitalism]]. Unlike other branches of anarchism, it does not oppose [[profit]] or capitalism. Consequently, most anarchists do not recognise anarcho-capitalism as a form of anarchism.
292
293 [[Murray Rothbard]]'s synthesis of [[classical liberalism]] and [[Austrian economics]] was germinal for the development of contemporary anarcho-capitalist theory. He defines anarcho-capitalism in terms of the [[non-aggression principle]], based on the concept of [[Natural Law]]. Competiting theorists use egoism, [[utilitarianism]] (used by [[David Friedman]]), or [[contractarianism]] (used by [[Jan Narveson]]). Some [[minarchism|minarchists]], such as [[Ayn Rand]], [[Robert Nozick]], and [[Robert A. Heinlein]], have influenced anarcho-capitalism.
294
295 Some anarcho-capitalists, along with some right-wing libertarian historians such as David Hart and [[Ralph Raico]], considered similar philosophies existing prior to Rothbard to be anarcho-capitalist, such as those of [[Gustave de Molinari]] and [[Auberon Herbert]] &lt;ref&gt;[[Gustave de Molinari|Molinari]], Gustave de. ''[http://praxeology.net/MR-GM-PS.htm Preface to &quot;The Production of Security&quot;]'', translated by J. Huston McCulloch, Occasional Papers Series #2 (Richard M. Ebeling, Editor), New York: The Center for Libertarian Studies, May 1977.&lt;/ref&gt;&lt;ref name=&quot;david-hart&quot;/&gt;&lt;ref&gt;[[Ralph Raico|Raico]], Ralph [http://www.mises.org/story/1787 ''Authentic German Liberalism of the 19th Century''] Ecole Polytechnique, Centre de Recherce en Epistemologie Appliquee, UnitÊ associÊe au CNRS (2004).&lt;/ref&gt; Opponents of anarcho-capitalists dispute these claims.&lt;ref&gt;McKay, Iain; Elkin, Gary; Neal, Dave ''et al'' [http://www.infoshop.org/faq/append11.html Replies to Some Errors and Distortions in Bryan Caplan's &quot;Anarchist Theory FAQ&quot; version 5.2] ''An Anarchist FAQ Version 11.2'' Accessed February 20, 2006.&lt;/ref&gt;
296
297 The place of anarcho-capitalism within anarchism, and indeed whether it is a form of anarchism at all, is highly controversial. For more on this debate see ''[[Anarchism and anarcho-capitalism]]''.
298
299 ==Anarchism and the environment==
300 {{seealso|Anarcho-primitivism|Green anarchism|Eco-anarchism|Ecofeminism}}
301
302 Since the late 1970s anarchists in Anglophone and European countries have been taking action for the natural environment. [[Eco-anarchism|Eco-anarchists]] or [[Green anarchism|Green anarchists]] believe in [[deep ecology]]. This is a worldview that embraces [[biodiversity]] and [[sustainability]]. Eco-anarchists often use [[direct action]] against what they see as earth-destroying institutions. Of particular importance is the [[Earth First!]] movement, that takes action such as [[tree sitting]]. Another important component is [[ecofeminism]], which sees the domination of nature as a metaphor for the domination of women. Green anarchism also involves a critique of industrial capitalism, and, for some green anarchists, civilization itself.{{fact}}
303
304 Primitivism is a predominantly Western philosophy that advocates a return to a pre-industrial and usually pre-agricultural society. It develops a critique of industrial civilization. In this critique [[technology]] and [[development]] have [[alienation|alienated]] people from the natural world. This philosophy develops themes present in the political action of the [[Luddites]] and the writings of [[Jean-Jacques Rousseau]]. Primitivism developed in the context of the [[Reclaim the Streets]], Earth First! and the [[Earth Liberation Front]] movements. [[John Zerzan]] wrote that [[civilization]] &amp;mdash; not just the state &amp;mdash; would need to fall for anarchy to be achieved.{{fact}} Anarcho-primitivists point to the anti-authoritarian nature of many 'primitive' or hunter-gatherer societies throughout the world's history, as examples of anarchist societies.
305
306 ==Other branches and offshoots==
307 Anarchism generates many eclectic and syncretic philosophies and movements. Since the Western social formet in the 1960s and 1970s a number new of movements and schools have appeared. Most of these stances are limited to even smaller numbers than the schools and movements listed above.
308
309 [[Image:Hakim Bey.jpeg|thumb|right|[[Hakim Bey]]]]
310 *'''Post-left anarchy''' - Post-left anarchy (also called egoist-anarchism) seeks to distance itself from the traditional &quot;left&quot; - communists, liberals, social democrats, etc. - and to escape the confines of [[ideology]] in general. Post-leftists argue that anarchism has been weakened by its long attachment to contrary &quot;leftist&quot; movements and single issue causes ([[anti-war]], [[anti-nuclear]], etc.). It calls for a synthesis of anarchist thought and a specifically anti-authoritarian revolutionary movement outside of the leftist milieu. It often focuses on the individual rather than speaking in terms of class or other broad generalizations and shuns organizational tendencies in favor of the complete absence of explicit hierarchy. Important groups and individuals associated with Post-left anarchy include: [[CrimethInc]], the magazine [[Anarchy: A Journal of Desire Armed]] and its editor [[Jason McQuinn]], [[Bob Black]], [[Hakim Bey]] and others. For more information, see [[Infoshop.org]]'s ''Anarchy After Leftism''&lt;ref&gt;[http://www.infoshop.org/afterleftism.html Infoshop.org - Anarchy After Leftism]&lt;/ref&gt; section, and the [http://anarchism.ws/postleft.html Post-left section] on [http://anarchism.ws/ anarchism.ws.] ''See also:'' [[Post-left anarchy]]
311
312 *'''Post-structuralism''' - The term postanarchism was originated by [[Saul Newman]], first receiving popular attention in his book ''[[From Bakunin to Lacan]]'' to refer to a theoretical move towards a synthesis of classical anarchist theory and [[poststructuralist]] thought. Subsequent to Newman's use of the term, however, it has taken on a life of its own and a wide range of ideas including [[autonomism]], [[post-left anarchy]], [[situationism]], [[post-colonialism]] and Zapatismo. By its very nature post-anarchism rejects the idea that it should be a coherent set of doctrines and beliefs. As such it is difficult, if not impossible, to state with any degree of certainty who should or shouldn't be grouped under the rubric. Nonetheless key thinkers associated with post-anarchism include [[Saul Newman]], [[Todd May]], [[Gilles Deleuze]] and [[FÊlix Guattari]]. ''External reference: Postanarchism Clearinghouse''&lt;ref&gt;[http://www.postanarchism.org/ Post anarchist clearing house]&lt;/ref&gt; ''See also'' [[Post-anarchism]]
313
314 *'''Insurrectionary anarchism''' - Insurrectionary anarchism is a form of revolutionary anarchism critical of formal anarchist labor unions and federations. Insurrectionary anarchists advocate informal organization, including small affinity groups, carrying out acts of resistance in various struggles, and mass organizations called base structures, which can include exploited individuals who are not anarchists. Proponents include [[Wolfi Landstreicher]] and [[Alfredo M. Bonanno]], author of works including &quot;Armed Joy&quot; and &quot;The Anarchist Tension&quot;. This tendency is represented in the US in magazines such as [[Willful Disobedience]] and [[Killing King Abacus]]. ''See also:'' [[Insurrectionary anarchism]]
315
316 *'''Small 'a' anarchism''' - '''Small 'a' anarchism''' is a term used in two different, but not unconnected contexts. Dave Neal posited the term in opposition to big 'A' Anarchism in the article [http://www.spunk.org/library/intro/practice/sp001689.html Anarchism: Ideology or Methodology?]. While big 'A' Anarchism referred to ideological Anarchists, small 'a' anarchism was applied to their methodological counterparts; those who viewed anarchism as &quot;a way of acting, or a historical tendency against illegitimate authority.&quot; As an anti-ideological position, small 'a' anarchism shares some similarities with [[post-left anarchy]]. [[David Graeber]] and [[Andrej Grubacic]] offer an alternative use of the term, applying it to groups and movements organising according to or acting in a manner consistent with anarchist principles of decentralisation, voluntary association, mutual aid, the network model, and crucially, &quot;the rejection of any idea that the end justifies the means, let alone that the business of a revolutionary is to seize state power and then begin imposing one's vision at the point of a gun.&quot;[http://www.zmag.org/content/showarticle.cfm?SectionID=41&amp;ItemID=4796]
317
318 ==Other issues==
319 *'''Conceptions of an anarchist society''' - Many political philosophers justify support of the state as a means of regulating violence, so that the destruction caused by human conflict is minimized and fair relationships are established. Anarchists argue that pursuit of these ends does not justify the establishment of a state; many argue that the state is incompatible with those goals and the ''cause'' of chaos, violence, and war. Anarchists argue that the state helps to create a [[Monopoly on the legitimate use of physical force|monopoly on violence]], and uses violence to advance elite interests. Much effort has been dedicated to explaining how anarchist societies would handle criminality.''See also:'' [[Anarchism and Society]]
320
321 *'''Civil rights and cultural sovereignty''' - [[Black anarchism]] opposes the existence of a state, capitalism, and subjugation and domination of people of color, and favors a non-hierarchical organization of society. Theorists include [[Ashanti Alston]], [[Lorenzo Komboa Ervin]], and [[Sam Mbah]]. [[Anarchist People of Color]] was created as a forum for non-caucasian anarchists to express their thoughts about racial issues within the anarchist movement, particularly within the United States. [[National anarchism]] is a political view which seeks to unite cultural or ethnic preservation with anarchist views. Its adherents propose that those preventing ethnic groups (or [[races]]) from living in separate autonomous groupings should be resisted. [[Anti-Racist Action]] is not an anarchist group, but many anarchists are involved. It focuses on publicly confronting racist agitators. The [[Zapatista]] movement of Chiapas, Mexico is a cultural sovereignty group with some anarchist proclivities.
322
323 *'''Neocolonialism and Globalization''' - Nearly all anarchists oppose [[neocolonialism]] as an attempt to use economic coercion on a global scale, carried out through state institutions such as the [[World Bank]], [[World Trade Organization]], [[G8|Group of Eight]], and the [[World Economic Forum]]. [[Globalization]] is an ambiguous term that has different meanings to different anarchist factions. Most anarchists use the term to mean neocolonialism and/or [[cultural imperialism]] (which they may see as related). Many are active in the [[anti-globalization]] movement. Others, particularly anarcho-capitalists, use &quot;globalization&quot; to mean the worldwide expansion of the division of labor and trade, which they see as beneficial so long as governments do not intervene.
324
325 *'''Parallel structures''' - Many anarchists try to set up alternatives to state-supported institutions and &quot;outposts,&quot; such as [[Food Not Bombs]], [[infoshop]]s, educational systems such as home-schooling, neighborhood mediation/arbitration groups, and so on. The idea is to create the structures for a new anti-authoritarian society in the shell of the old, authoritarian one.
326
327 *'''Technology''' - Recent technological developments have made the anarchist cause both easier to advance and more conceivable to people. Many people use the Internet to form on-line communities. [[Intellectual property]] is undermined and a gift-culture supported by [[file sharing|sharing music files]], [[open source]] programming, and the [[free software movement]]. These cyber-communities include the [[GNU]], [[Linux]], [[Indymedia]], and [[Wiki]]. &lt;!-- ***NEEDS SOURCE THAT E-GOLD IS USED BY ANARCHISTS*** [[Public key cryptography]] has made anonymous digital currencies such as [[e-gold]] and [[Local Exchange Trading Systems]] an alternative to statist [[fiat money]]. --&gt; Some anarchists see [[information technology]] as the best weapon to defeat authoritarianism. Some even think the information age makes eventual anarchy inevitable.&lt;ref&gt;[http://www.modulaware.com/a/?m=select&amp;id=0684832720 The Sovereign Individual -- Mastering the transition to the information age]&lt;/ref&gt; ''See also'': [[Crypto-anarchism]] and [[Cypherpunk]].
328
329 *'''Pacifism''' - Some anarchists consider [[Pacifism]] (opposition to [[war]]) to be inherent in their philosophy. [[Anarcho-pacifism|anarcho-pacifists]] take it further and follow [[Leo Tolstoy]]'s belief in [[Nonviolence|non-violence]]. Anarchists see war as an activity in which the state seeks to gain and consolidate power, both domestically and in foreign lands, and subscribe to [[Randolph Bourne]]'s view that &quot;war is the health of the state&quot;&lt;ref&gt;[http://struggle.ws/hist_texts/warhealthstate1918.html War is the Health of the State]&lt;/ref&gt;. A lot of anarchist activity has been [[anti-war]] based.
330
331 *'''Parliamentarianism''' - In general terms, the anarchist ethos opposes voting in elections, because voting amounts to condoning the state.&lt;ref&gt;[http://members.aol.com/vlntryst/hitler.html The Voluntaryist - Why I would not vote against Hitler]&lt;/ref&gt;. [[Voluntaryism]] is an anarchist school of thought which emphasizes &quot;tending your own garden&quot; and &quot;neither ballots nor bullets.&quot; The anarchist case against voting is explained in ''The Ethics of Voting''&lt;ref&gt;[http://www.voluntaryist.com/nonvoting/ethics_of_voting.php Voluntaryist - The ethics of voting]&lt;/ref&gt; by [[George H. Smith]]. (Also see &quot;Voting Anarchists: An Oxymoron or What?&quot; by [[Joe Peacott]], and writings by [[Fred Woodworth]]).
332
333 *'''Sectarianism''' - Most anarchist schools of thought are, to some degree, [[sectarian]]. There is often a difference of opinion ''within'' each school about how to react to, or interact with, other schools. Some, such as [[panarchy|panarchists]], believe that it is possible for a variety of modes of social life to coexist and compete. Some anarchists view opposing schools as a social impossibility and resist interaction; others see opportunities for coalition-building, or at least temporary alliances for specific purposes. ''See [[anarchism without adjectives]].''
334
335 ==Criticisms of anarchism==
336 :''Main article:'' [[Criticisms of anarchism]]
337
338 '''Violence.''' Since anarchism has often been associated with violence and destruction, some people have seen it as being too violent. On the other hand hand, [[Frederick Engels]] criticsed anarchists for not being violent enough:
339 :''&quot;A revolution is certainly the most authoritarian thing there is; it is the act whereby one part of the population imposes its will upon the other part by means of rifles, bayonets and cannon — authoritarian means, if such there be at all; and if the victorious party does not want to have fought in vain, it must maintain this rule by means of the terror which its arms inspire in the reactionists. Would the Paris Commune have lasted a single day if it had not made use of this authority of the armed people against the bourgeois?&quot;&lt;ref&gt;[http://www.marxists.org/archive/marx/works/1872/10/authority.htm ''On Authority'']&lt;/ref&gt;
340
341 '''Utopianism.''' Anarchism is often criticised as unfeasible, or plain [[utopian]], even by many who agree that it's a nice idea in principle. For example, Carl Landauer in his book ''European Socialism'' criticizes anarchism as being unrealistically utopian, and holds that government is a &quot;lesser evil&quot; than a society without &quot;repressive force.&quot; He holds that the belief that &quot;ill intentions will cease if repressive force disappears&quot; is an &quot;absurdity.&quot;&lt;ref&gt;[[Carl Landauer|Landauer]], Carl. ''European Socialism: A History of Ideas and Movements'' (1959) (retrieved from &quot;Anarchist Theory FAQ&quot; by [[Bryan Caplan]] on [[January 27]] [[2006]]&lt;/ref&gt; However, it must be noted that not all anarchists have such a utopian view of anarchism. For example, some, such as Benjamin Tucker, advocate privately-funded institutions that defend individual liberty and property. However, other anarchists, such as Sir [[Herbert Read]], proudly accept the characterization &quot;utopian.&quot;
342
343 '''[[Social class|Class]] character.''' [[Marxists]] have characterised anarchism as an expression of the class interests of the [[petite bourgeoisie]] or perhaps the [[lumpenproletariat]]. See e.g. Plekhanov&lt;ref&gt;[[G. V. Plekhanov]] ''&quot;[http://www.marxists.org/archive/plekhanov/1895/anarch/index.htm Anarchism and Socialism]&quot;''&lt;/ref&gt; for a Marxist critique of 1895. Anarchists have also been characterised as spoilt [[middle-class]] [[dilettante]]s, most recently in relation to [[anti-capitalism|anti-capitalist]] protesters.
344
345 '''Tacit authoritarianism.''' In recent decades anarchism has been criticised by 'situationists', 'post-anarchists' and others of preserving 'tacitly statist', authoritarian or bureaucratic tendencies behind a dogmatic facade.&lt;ref&gt;[http://library.nothingness.org/articles/SI/en/display/20 ''Society of the Spectacle] Paragraph 91&lt;/ref&gt;
346
347 '''Hypocrisy.''' Some critics point to the [[sexist]]&lt;ref&gt;[[Jenny P. d'Hericourt]], ''&quot;[http://www.pinn.net/~sunshine/whm2003/hericourt2.html Contemporary feminist critic of Proudhon]&quot;''&lt;/ref&gt; and [[racist]] views of some prominent anarchists, notably [[Pierre-Joseph Proudhon|Proudhon]] and [[Mikhail Bakunin|Bakunin]], as examples of [[hypocrisy]] inherent within anarchism. While many anarchists, however, dismiss that the personal prejudices of 19th century theorists influence the beliefs of present-day anarchists, others criticise modern anarchism for continuing to be [[eurocentric]] and reference the impact of anarchist thinkers like Proudhon on [[fascism]] through groups like [[Cercle Proudhon]].&lt;ref&gt;[http://www.stewarthomesociety.org/ai.htm ''Anarchist Integralism]&lt;/ref&gt; Anarcho-capitalist [[Bryan Caplan]] argues that the treatment of fascists and suspected fascist sympathizers by Spanish Anarchists in the Spanish Civil War was a form of illegitimate coercion, making the proffessed anarchists &quot;ultimately just a third faction of totalitarians,&quot; alongside the communists and fascists. He also criticizes the willingness of the CNT to join the (statist) Republican government during the civil war, and references [[Stanley G. Payne]]'s book on the Franco regime which claims that the CNT entered negotiations with the fascist government six years after the war.&lt;ref&gt;[[Bryan Caplan|Caplan]], Bryan. ''&quot;[http://www.gmu.edu/departments/economics/bcaplan/spain.htm The Anarcho-Statists of Spain]&quot;''&lt;/ref&gt;
348
349 ==Cultural phenomena==
350 [[Image:Noam_chomsky.jpg|thumb|150px|right| [[Noam Chomsky]] (1928–)]]
351 The kind of anarchism that is most easily encountered in popular culture is represented by celebrities who publicly identify themselves as anarchists. Although some anarchists reject any focus on such famous living individuals as inherently Êlitist, the following figures are examples of prominent publicly self-avowed anarchists:
352
353 * the [[MIT]] professor of [[Linguistics]] [[Noam Chomsky]]
354 * the [[science fiction]] author [[Ursula K. Le Guin]]
355 * the social historian [[Howard Zinn]]
356 * entertainer and author [[Hans Alfredsson]]
357 * the [[Avant-garde]] artist [[NicolÃĄs RossellÃŗ]]
358
359 In [[Denmark]], the [[Freetown Christiania]] was created in downtown [[Copenhagen]]. The housing and employment crisis in most of [[Western Europe]] led to the formation of [[commune (intentional community)|communes]] and squatter movements like the one still thriving in [[Barcelona]], in [[Catalonia]]. Militant [[antifa|resistance to neo-Nazi groups]] in places like Germany, and the uprisings of [[autonomous Marxism]], [[situationist]], and [[Autonomist]] groups in France and Italy also helped to give popularity to anti-authoritarian, non-capitalist ideas.
360
361 In various musical styles, anarchism rose in popularity. Most famous for the linking of anarchist ideas and music has been punk rock, although in the modern age, hip hop, and folk music are also becoming important mediums for the spreading of the anarchist message. In the [[United Kingdom|UK]] this was associated with the [[punk rock]] movement; the band [[Crass]] is celebrated for its anarchist and [[pacifism|pacifist]] ideas. The [[Dutch people|Dutch]] punk band [[The Ex]] further exemplifies this expression.
362 ''For further details, see [[anarcho-punk]]''
363
364 ==See also==
365 &lt;!-- (Please take care in adding to this list that it not grow excessively large, consider adding to the list of anarchist concepts page) --&gt;
366 There are many concepts relevant to the topic of anarchism, this is a brief summary. There is also a more extensive [[list of anarchist concepts]].
367
368 * [[individualist anarchism]], [[anarcho-communism]], [[anarcho-syndicalism]], [[anarcho-capitalism]], [[mutualism]], [[Christian anarchism]], [[anarcha-feminism]], [[green anarchism]], [[nihilist anarchism]], [[anarcho-nationalism]], [[black anarchism]], [[national anarchism]]. [[post-anarchism]], [[post-left anarchism]]
369 * [[Libertarian Socialism]]
370 * [[Anarchist symbolism]]
371 * [[Anarchism/Links|List of anarchism links]]
372 * [[List of anarchists]]
373 * [[List of anarchist organizations]]
374 * [[Major conflicts within anarchist thought]]
375 * [[Past and present anarchist communities]]
376
377 ===Historical events===
378 *[[Paris Commune]] (1871)
379 *[[Haymarket Riot]] (1886)
380 *[[The Makhnovschina]] (1917 &amp;mdash; 1921)
381 *[[Kronstadt rebellion]] (1921)
382 *[[Spanish Revolution]] (1936) (see [[Anarchism in Spain]] and [[Spanish Revolution]])
383 *May 1968, France (1968)
384 *[[WTO Ministerial Conference of 1999|WTO Meeting in Seattle]] (1999)
385
386 ===Books===
387 {{main|List of anarchist books}}
388
389 The following is a sample of books that have been referenced in this page, a more complete list can be found at the [[list of anarchist books]].
390
391 *[[Mikhail Bakunin]], ''[[God and the State]]'' [http://dwardmac.pitzer.edu/Anarchist_Archives/bakunin/godandstate/godandstate_ch1.html]
392 *[[Emma Goldman]], ''[[Anarchism &amp; Other Essays]]'' [http://dwardmac.pitzer.edu/Anarchist_Archives/goldman/GoldmanCW.html]
393 *[[Peter Kropotkin]], ''[[Mutual Aid: A Factor of Evolution|Mutual Aid]]'' [http://www.gutenberg.org/etext/4341]
394 *[[Pierre-Joseph Proudhon]], ''[[What is Property?]]'' [http://www.gutenberg.org/etext/360]
395 *[[Rudolf Rocker]], ''[[Anarcho-Syndicalism (book)|Anarcho-Syndicalism]]''
396 *[[Murray Rothbard]] ''[[The Ethics of Liberty]]'' [http://www.mises.org/rothbard/ethics/ethics.asp]
397 *[[Max Stirner]], ''[[The Ego And Its Own]]'' [http://www.df.lth.se/~triad/stirner/]
398 *[[Leo Tolstoy]], ''[[The Kingdom of God is Within You]]'' [http://www.kingdomnow.org/withinyou.html]
399
400 ===Anarchism by region/culture===
401 * [[African Anarchism]]
402 * [[Anarchism in Spain]]
403 * [[Anarchism in the English tradition]]
404 * [[Chinese anarchism]]
405
406 ==References==
407 &lt;div style=&quot;font-size: 85%&quot;&gt;
408 &lt;references/&gt;
409 &lt;/div&gt;
410
411 '''These notes have no corresponding reference in the article. They might be re-used.'''
412 # {{note|bill}} [http://ns52.super-hosts.com/~vaz1net/bill/anarchism/library/thelaw.html]
413 # {{note|praxeology}} [http://praxeology.net/GM-PS.htm]
414 # {{note|platform}} [http://flag.blackened.net/revolt/platform/plat_preface.html]
415 # {{note|appleton}} [http://www.againstpolitics.com/market_anarchism/appleton_boston.htm Against Politics - Appleton - Boston Anarchists]
416 # {{note|Yarros-NotUtopian}} [[Victor Yarros|Yarros, Victor]] ''Liberty'' VII, [[January 2]] [[1892]].
417 # {{note|totse}} [http://www.totse.com/en/politics/anarchism/161594.html Noam Chomsky on Anarchism by Noam Chomsky]
418
419 ==External links==
420 The overwhelming diversity and number of links relating to anarchism is extensively covered on the [[List of anarchism web resources|links subpage]].
421 {{wikiquote|Definitions of anarchism}}
422 *[http://anarchoblogs.protest.net/ Anarchoblogs] Blogs by Anarchists.
423 *[http://dwardmac.pitzer.edu/Anarchist_Archives/ Anarchy Archives] extensively archives information relating to famous anarchists. This includes many of their books and other publications.
424 *Hundreds of anarchists are listed, with short bios, links &amp; dedicated pages [http://recollectionbooks.com/bleed/gallery/galleryindex.htm at the Daily Bleed's Anarchist Encyclopedia]
425 *[http://www.infoshop.org/ Infoshop.org] ([[Infoshop.org|wikipedia page]])
426 *[http://www.iww.org/ Industrial Workers of the World]
427
428 &lt;!-- Attention! The external link portion of this article regularly grows far beyond manageable size. Please only list an outside link if it applies to anarchism in general and is somewhat noteworthy. Links to lesser known sites or submovements will be routinely moved to the list page to keep this article free of clutter --&gt;
429
430
431 [[Category:Anarchism|*]]
432 [[Category:Forms of government|Anarchism]]
433 [[Category:Political ideology entry points|Anarchism]]
434 [[Category:Political theories|Anarchism]]
435 [[Category:Social philosophy|Anarchism]]
436
437 [[ar:Ų„اØŗŲ„ØˇŲˆŲŠØŠ]]
438 [[ast:Anarquismu]]
439 [[bg:АĐŊĐ°Ņ€Ņ…иСŅŠĐŧ]]
440 [[bs:Anarhizam]]
441 [[ca:Anarquisme]]
442 [[cs:Anarchismus]]
443 [[da:Anarkisme]]
444 [[de:Anarchismus]]
445 [[eo:Anarkiismo]]
446 [[es:Anarquismo]]
447 [[et:Anarhism]]
448 [[eu:Anarkismo]]
449 [[fa:دŲˆŲ„ØĒâ€ŒØ˛Ø¯Ø§ØĻی]]
450 [[fi:Anarkismi]]
451 [[fr:Anarchisme]]
452 [[gl:Anarquismo]]
453 [[he:אנרכיזם]]
454 [[hu:Anarchizmus]]
455 [[id:Anarkisme]]
456 [[is:StjÃŗrnleysisstefna]]
457 [[it:Anarchismo]]
458 [[ja:ã‚ĸナキã‚ēム]]
459 [[ko:ė•„나키ėĻ˜]]
460 [[lt:Anarchizmas]]
461 [[nl:Anarchisme]]
462 [[nn:Anarkisme]]
463 [[no:Anarkisme]]
464 [[pl:Anarchizm]]
465 [[pt:Anarquismo]]
466 [[ro:Anarhism]]
467 [[ru:АĐŊĐ°Ņ€Ņ…иСĐŧ]]
468 [[sco:Anarchism]]
469 [[simple:Anarchism]]
470 [[sk:Anarchizmus]]
471 [[sl:Anarhizem]]
472 [[sr:АĐŊĐ°Ņ€Ņ…иСаĐŧ]]
473 [[sv:Anarkism]]
474 [[th:ā¸Ĩā¸ąā¸—ā¸˜ā¸´ā¸­ā¸™ā¸˛ā¸˜ā¸´ā¸›āš„ā¸•ā¸ĸ]]
475 [[tr:Anarşizm]]
476 [[zh:无æ”ŋåēœä¸ģ义]]
477 [[zh-min-nan:Hui-thÃŗng-tÄĢ-chÃē-gÄĢ]]</text>
478 </revision>
479 </page>
480 <page>
481 <title>AfghanistanHistory</title>
482 <id>13</id>
483 <revision>
484 <id>15898948</id>
485 <timestamp>2002-08-27T03:07:44Z</timestamp>
486 <contributor>
487 <username>Magnus Manske</username>
488 <id>4</id>
489 </contributor>
490 <minor />
491 <comment>whoops</comment>
492 <text xml:space="preserve">#REDIRECT [[History of Afghanistan]]</text>
493 </revision>
494 </page>
495 <page>
496 <title>AfghanistanGeography</title>
497 <id>14</id>
498 <revision>
499 <id>15898949</id>
500 <timestamp>2002-02-25T15:43:11Z</timestamp>
501 <contributor>
502 <ip>Conversion script</ip>
503 </contributor>
504 <minor />
505 <comment>Automated conversion</comment>
506 <text xml:space="preserve">#REDIRECT [[Geography of Afghanistan]]
507 </text>
508 </revision>
509 </page>
510 <page>
511 <title>AfghanistanPeople</title>
512 <id>15</id>
513 <revision>
514 <id>15898950</id>
515 <timestamp>2002-08-21T10:42:35Z</timestamp>
516 <contributor>
517 <username>-- April</username>
518 <id>166</id>
519 </contributor>
520 <minor />
521 <comment>fix link</comment>
522 <text xml:space="preserve">#REDIRECT [[Demographics of Afghanistan]]</text>
523 </revision>
524 </page>
525 <page>
526 <title>AfghanistanEconomy</title>
527 <id>17</id>
528 <revision>
529 <id>15898951</id>
530 <timestamp>2002-05-17T15:30:05Z</timestamp>
531 <contributor>
532 <username>AxelBoldt</username>
533 <id>2</id>
534 </contributor>
535 <comment>fix redirect</comment>
536 <text xml:space="preserve">#REDIRECT [[Economy of Afghanistan]]
537 </text>
538 </revision>
539 </page>
540 <page>
541 <title>AfghanistanCommunications</title>
542 <id>18</id>
543 <revision>
544 <id>15898952</id>
545 <timestamp>2002-09-13T13:39:26Z</timestamp>
546 <contributor>
547 <username>Andre Engels</username>
548 <id>300</id>
549 </contributor>
550 <minor />
551 <comment>indirect redirect</comment>
552 <text xml:space="preserve">#REDIRECT [[Communications in Afghanistan]]</text>
553 </revision>
554 </page>
555 <page>
556 <title>AfghanistanTransportations</title>
557 <id>19</id>
558 <revision>
559 <id>15898953</id>
560 <timestamp>2002-10-09T13:36:44Z</timestamp>
561 <contributor>
562 <username>Magnus Manske</username>
563 <id>4</id>
564 </contributor>
565 <minor />
566 <comment>#REDIRECT [[Transportation in Afghanistan]]</comment>
567 <text xml:space="preserve">#REDIRECT [[Transportation in Afghanistan]]</text>
568 </revision>
569 </page>
570 <page>
571 <title>AfghanistanMilitary</title>
572 <id>20</id>
573 <revision>
574 <id>15898954</id>
575 <timestamp>2002-09-03T01:14:20Z</timestamp>
576 <contributor>
577 <username>Andre Engels</username>
578 <id>300</id>
579 </contributor>
580 <minor />
581 <comment>short-circuiting two-step redirect</comment>
582 <text xml:space="preserve">#REDIRECT [[Military of Afghanistan]]</text>
583 </revision>
584 </page>
585 <page>
586 <title>AfghanistanTransnationalIssues</title>
587 <id>21</id>
588 <revision>
589 <id>15898955</id>
590 <timestamp>2002-10-09T13:37:01Z</timestamp>
591 <contributor>
592 <username>Magnus Manske</username>
593 <id>4</id>
594 </contributor>
595 <minor />
596 <comment>#REDIRECT [[Foreign relations of Afghanistan]]</comment>
597 <text xml:space="preserve">#REDIRECT [[Foreign relations of Afghanistan]]</text>
598 </revision>
599 </page>
600 <page>
601 <title>AlTruism</title>
602 <id>22</id>
603 <revision>
604 <id>15898956</id>
605 <timestamp>2002-02-25T15:43:11Z</timestamp>
606 <contributor>
607 <ip>Conversion script</ip>
608 </contributor>
609 <minor />
610 <comment>Automated conversion</comment>
611 <text xml:space="preserve">#REDIRECT [[Altruism]]
612 </text>
613 </revision>
614 </page>
615 <page>
616 <title>AssistiveTechnology</title>
617 <id>23</id>
618 <revision>
619 <id>15898957</id>
620 <timestamp>2003-04-25T22:20:03Z</timestamp>
621 <contributor>
622 <username>Ams80</username>
623 <id>7543</id>
624 </contributor>
625 <minor />
626 <comment>Fixing redirect</comment>
627 <text xml:space="preserve">#REDIRECT [[Assistive_technology]]</text>
628 </revision>
629 </page>
630 <page>
631 <title>AmoeboidTaxa</title>
632 <id>24</id>
633 <revision>
634 <id>15898958</id>
635 <timestamp>2002-02-25T15:43:11Z</timestamp>
636 <contributor>
637 <ip>Conversion script</ip>
638 </contributor>
639 <minor />
640 <comment>Automated conversion</comment>
641 <text xml:space="preserve">#REDIRECT [[Amoeboid]]
642 </text>
643 </revision>
644 </page>
645 <page>
646 <title>Autism</title>
647 <id>25</id>
648 <revision>
649 <id>42019020</id>
650 <timestamp>2006-03-03T06:39:21Z</timestamp>
651 <contributor>
652 <username>Ohnoitsjamie</username>
653 <id>507787</id>
654 </contributor>
655 <comment>rv difficult-to-follow paragraph</comment>
656 <text xml:space="preserve">&lt;!-- NOTES:
657
658 1) Please do not convert the bullets to subheadings here as the table of contents would be too large in that case (for example, see the FAC).
659 2) Use ref/note combos for all links and explicitly cited references
660 3) Reference anything you put here with notable references, as this subject tends to attract a lot of controversy.
661
662 --&gt;{{DiseaseDisorder infobox |
663 Name = Childhood autism |
664 ICD10 = F84.0 |
665 ICD9 = {{ICD9|299.0}} |
666 }}
667 '''Autism''' is classified as a neurodevelopmental disorder that manifests itself in markedly abnormal social interaction, communication ability, patterns of interests, and patterns of behavior.
668
669 Although the specific [[etiology]] of autism is unknown, many researchers suspect that autism results from genetically mediated vulnerabilities to environmental triggers. And while there is disagreement about the magnitude, nature, and mechanisms for such environmental factors, researchers have found at least seven major genes prevalent among individuals diagnosed as autistic. Some estimate that autism occurs in as many as one [[United States]] child in 166, however the [[National Institute of Mental Health]] gives a more conservative estimate of one in 1000{{ref|NihAutismov2005}}. For families that already have one autistic child, the odds of a second autistic child may be as high as one in twenty. Diagnosis is based on a list of [[Psychiatry|psychiatric]] criteria, and a series of standardized clinical tests may also be used.
670
671 Autism may not be [[Physiology|physiologically]] obvious. A complete physical and [[neurological]] evaluation will typically be part of diagnosing autism. Some now speculate that autism is not a single condition but a group of several distinct conditions that manifest in similar ways.
672
673 By definition, autism must manifest delays in &quot;social interaction, language as used in social communication, or symbolic or imaginative play,&quot; with &quot;onset prior to age 3 years&quot;, according to the [[Diagnostic and Statistical Manual of Mental Disorders]]. The [[ICD-10]] also says that symptoms must &quot;manifest before the age of three years.&quot; There have been large increases in the reported [[Autism epidemic|incidence of autism]], for reasons that are heavily debated by [[research]]ers in [[psychology]] and related fields within the [[scientific community]].
674
675 Some children with autism have improved their social and other skills to the point where they can fully participate in mainstream education and social events, but there are lingering concerns that an absolute cure from autism is impossible with current technology. However, many autistic children and adults who are able to communicate (at least in writing) are opposed to attempts to cure their conditions, and see such conditions as part of who they are.
676
677 ==History==
678 [[image:Asperger_kl2.jpg|frame|right|Dr. [[Hans Asperger]] described a form of autism in the 1940s that later became known as [[Asperger's syndrome]].]]
679
680 The word ''autism'' was first used in the [[English language]] by Swiss psychiatrist [[Eugene Bleuler]] in a 1912 number of the ''American Journal of Insanity''. It comes from the Greek word for &quot;self&quot;.
681
682 However, the [[Medical classification|classification]] of autism did not occur until the middle of the [[twentieth century]], when in 1943 psychiatrist Dr. [[Leo Kanner]] of the [[Johns Hopkins Hospital]] in Baltimore reported on 11 child patients with striking behavioral similarities, and introduced the label ''early infantile autism''. He suggested &quot;autism&quot; from the [[Greek language|Greek]] &amp;alpha;&amp;upsilon;&amp;tau;&amp;omicron;&amp;sigmaf; (''autos''), meaning &quot;self&quot;, to describe the fact that the children seemed to lack interest in other people. Although Kanner's first paper on the subject was published in a (now defunct) journal, ''The Nervous Child'', almost every characteristic he originally described is still regarded as typical of the autistic spectrum of disorders.
683
684 At the same time an [[Austria|Austrian]] scientist, Dr. [[Hans Asperger]], described a different form of autism that became known as [[Asperger's syndrome]]&amp;mdash;but the widespread recognition of Asperger's work was delayed by [[World War II]] in [[Germany]], and by the fact that his seminal paper wasn't translated into English for almost 50 years. The majority of his work wasn't widely read until 1997.
685
686 Thus these two conditions were described and are today listed in the [[Diagnostic and Statistical Manual of Mental Disorders]] DSM-IV-TR (fourth edition, text revision 1) as two of the five [[Pervasive developmental disorder|pervasive developmental disorders]] (PDD), more often referred to today as [[Autistic spectrum|autism spectrum disorders]] (ASD). All of these conditions are characterized by varying degrees of difference in [[communication skill]]s, social interactions, and restricted, repetitive and stereotyped patterns of [[Human behavior|behavior]].
687
688 Few clinicians today solely use the DSM-IV criteria for determining a diagnosis of autism, which are based on the absence or delay of certain developmental milestones. Many clinicians instead use an alternate means (or a combination thereof) to more accurately determine a [[diagnosis]].
689
690 ==Terminology==
691 {{wiktionarypar2|autism|autistic}}
692 When referring to someone diagnosed with autism, the term ''autistic'' is often used. However, the term ''person with autism'' can be used instead. This is referred to as ''[[person-first terminology]]''. The [[autistic community]] generally prefers the term ''autistic'' for reasons that are fairly controversial. This article uses the term ''autistic'' (see [[Talk:Autism|talk page]]).
693
694 ==Characteristics==
695 [[Image:kanner_kl2.jpg|frame|right|Dr. [[Leo Kanner]] introduced the label ''early infantile autism'' in 1943.]]
696 There is a great diversity in the skills and behaviors of individuals diagnosed as autistic, and physicians will often arrive at different conclusions about the appropriate diagnosis. Much of this is due to the [[sensory system]] of an autistic which is quite different from the sensory system of other people, since certain [[stimulus|stimulations]] can affect an autistic differently than a non-autistic, and the degree to which the sensory system is affected varies wildly from one autistic person to another.
697
698 Nevertheless, professionals within [[pediatric]] care and development often look for early indicators of autism in order to initiate treatment as early as possible. However, some people do not believe in treatment for autism, either because they do not believe autism is a disorder or because they believe treatment can do more harm than good.
699
700 ===Social development===
701 Typically, developing infants are social beings&amp;mdash;early in life they do such things as gaze at people, turn toward voices, grasp a finger, and even smile. In contrast, most autistic children prefer objects to faces and seem to have tremendous difficulty learning to engage in the give-and-take of everyday human interaction. Even in the first few months of life, many seem indifferent to other people because they avoid eye contact and do not interact with them as often as non-autistic children.
702
703 Children with autism often appear to prefer being alone to the company of others and may passively accept such things as hugs and cuddling without reciprocating, or resist attention altogether. Later, they seldom seek comfort from others or respond to parents' displays of [[anger]] or [[affection]] in a typical way. Research has suggested that although autistic children are attached to their [[parent]]s, their expression of this attachment is unusual and difficult to interpret. Parents who looked forward to the joys of cuddling, [[teaching]], and playing with their child may feel crushed by this lack of expected [[attachment theory|attachment]] behavior.
704
705 Children with autism appear to lack &quot;[[Theory of mind|theory of mind]]&quot;, the ability to see things from another person's perspective, a behavior cited as exclusive to human beings above the age of five and, possibly, other higher [[primate]]s such as adult [[gorilla]]s, [[Common chimpanzee|chimpanzee]]s and [[bonobos]]. Typical 5-year-olds can develop insights into other people's different knowledge, feelings, and intentions, interpretations based upon social cues (e.g., gestures, facial expressions). An individual with autism seems to lack these interpretation skills, an inability that leaves them unable to predict or understand other people's actions. The [[social alienation]] of autistic and Asperger's people is so intense from childhood that many of them have [[imaginary friend]]s as companionship. However, having an imaginary friend is not necessarily a sign of autism and also occurs in non-autistic children.
706
707 Although not universal, it is common for autistic people to not regulate their behavior. This can take the form of crying or verbal outbursts that may seem out of proportion to the situation. Individuals with autism generally prefer consistent routines and environments; they may react negatively to changes in them. It is not uncommon for these individuals to exhibit aggression, increased levels of self-stimulatory behavior, self-injury or extensive withdrawal in overwhelming situations.
708
709 ===Sensory system===
710 A key indicator to clinicians making a proper assessment for autism would include looking for symptoms much like those found in [[Sensory Integration Dysfunction|sensory integration dysfunction]]. Children will exhibit problems coping with the normal sensory input. Indicators of this disorder include oversensitivity or underreactivity to touch, movement, sights, or sounds; physical clumsiness or carelessness; poor body awareness; a tendency to be easily distracted; impulsive physical or verbal behavior; an activity level that is unusually high or low; not unwinding or calming oneself; difficulty learning new movements; difficulty in making transitions from one situation to another; social and/or emotional problems; delays in [[Speech delay|speech]], [[Language delay|language]] or [[motor skills]]; specific learning difficulties/delays in academic achievement.
711
712 One common example is an individual with autism [[Hearing (sense)|hearing]]. A person with Autism may have trouble hearing certain people while other people are louder than usual. Or the person with autism may be unable to filter out sounds in certain situations, such as in a large crowd of people (see [[cocktail party effect]]). However, this is perhaps the part of the autism that tends to vary the most from person to person, so these examples may not apply to every autistic.
713
714 It should be noted that sensory difficulties, although reportedly common in autistics, are not part of the [[DSM-IV]] diagnostic criteria for ''autistic disorder''.
715
716 ===Communication difficulties===
717 By age 3, typical children have passed predictable language learning milestones; one of the earliest is babbling. By the first birthday, a typical toddler says words, turns when he or she hears his or her name, points when he or she wants a toy, and when offered something distasteful, makes it clear that the answer is &quot;no.&quot; Speech development in people with autism takes different paths. Some remain [[mute]] throughout their lives while being fully [[literacy|literate]] and able to communicate in other ways&amp;mdash;images, [[sign language]], and [[typing]] are far more natural to them. Some infants who later show signs of autism coo and babble during the first few months of life, but stop soon afterwards. Others may be delayed, developing language as late as the [[adolescence|teenage]] years. Still, inability to speak does not mean that people with autism are unintelligent or unaware. Once given appropriate accommodations, many will happily converse for hours, and can often be found in online [[chat room]]s, discussion boards or [[website]]s and even using communication devices at autism-community social events such as [[Autreat]].
718
719 Those who do speak often use [[language]] in unusual ways, retaining features of earlier stages of language development for long periods or throughout their lives. Some speak only single words, while others repeat the same phrase over and over. Some repeat what they hear, a condition called [[echolalia]]. Sing-song repetitions in particular are a calming, joyous activity that many autistic adults engage in. Many people with autism have a strong [[tonality|tonal]] sense, and can often understand spoken language.
720 Some children may exhibit only slight delays in language, or even seem to have precocious language and unusually large [[vocabulary|vocabularies]], but have great difficulty in sustaining typical [[conversation]]s. The &quot;give and take&quot; of non-autistic conversation is hard for them, although they often carry on a [[monologue]] on a favorite subject, giving no one else an opportunity to comment. When given the chance to converse with other autistics, they comfortably do so in &quot;parallel monologue&quot;&amp;mdash;taking turns expressing views and information. Just as &quot;[[neurotypical]]s&quot; (people without autism) have trouble understanding autistic [[body language]]s, vocal tones, or phraseology, people with autism similarly have trouble with such things in people without autism. In particular, autistic language abilities tend to be highly literal; people without autism often inappropriately attribute hidden meaning to what people with autism say or expect the person with autism to sense such unstated meaning in their own words.
721
722 The body language of people with autism can be difficult for other people to understand. Facial expressions, movements, and gestures may be easily understood by some other people with autism, but do not match those used by other people. Also, their tone of voice has a much more subtle inflection in reflecting their feelings, and the [[auditory system]] of a person without autism often cannot sense the fluctuations. What seems to non-autistic people like a high-pitched, sing-song, or flat, [[robot]]-like voice is common in autistic children. Some autistic children with relatively good language skills speak like little adults, rather than communicating at their current age level, which is one of the things that can lead to problems.
723
724 Since non-autistic people are often unfamiliar with the autistic [[body language]], and since autistic natural language may not tend towards speech, autistic people often struggle to let other people know what they need. As anybody might do in such a situation, they may scream in frustration or resort to grabbing what they want. While waiting for non-autistic people to learn to communicate with them, people with autism do whatever they can to get through to them. Communication difficulties may contribute to autistic people becoming socially anxious or depressed.
725
726 ===Repetitive behaviors===
727 Although people with autism usually appear physically normal and have good muscle control, unusual repetitive motions, known as self-stimulation or &quot;stimming,&quot; may set them apart. These behaviors might be extreme and highly apparent or more subtle. Some children and older individuals spend a lot of time repeatedly flapping their arms or wiggling their toes, others suddenly freeze in position. As [[child]]ren, they might spend hours lining up their cars and trains in a certain way, not using them for pretend play. If someone accidentally moves one of these toys, the child may be tremendously upset. Autistic children often need, and demand, absolute consistency in their environment. A slight change in any routine&amp;mdash;in mealtimes, dressing, taking a bath, or going to school at a certain time and by the same route&amp;mdash;can be extremely disturbing. People with autism sometimes have a persistent, intense preoccupation. For example, the child might be obsessed with learning all about [[vacuum cleaners]], [[train]] schedules or [[lighthouses]]. Often they show great interest in different languages, numbers, symbols or [[science]] topics. Repetitive behaviors can also extend into the spoken word as well. Perseveration of a single word or phrase, even for a specific number of times can also become a part of the child's daily routine.
728
729 ===Effects in education===
730 Children with autism are affected with these symptoms every day. These unusual characteristics set them apart from the everyday normal student. Because they have trouble understanding people’s thoughts and feelings, they have trouble understanding what their teacher may be telling them. They do not understand that facial expressions and vocal variations hold meanings and may misinterpret what emotion their instructor is displaying. This inability to fully decipher the world around them makes education stressful. Teachers need to be aware of a student's disorder so that they are able to help the student get the best out of the lessons being taught.
731
732 Some students learn better with visual aids as they are better able to understand material presented this way. Because of this, many teachers create “visual schedules” for their autistic students. This allows the student to know what is going on throughout the day, so they know what to prepare for and what activity they will be doing next. Some autistic children have trouble going from one activity to the next, so this visual schedule can help to reduce stress.
733
734 Research has shown that working in pairs may be beneficial to autistic children. &lt;!-- cite a source here, please! --&gt; Autistic students have problems in schools not only with language and communication, but with socialization as well. They feel self-conscious about themselves and many feel that they will always be outcasts. By allowing them to work with peers they can make friends, which in turn can help them cope with the problems that arise. By doing so they can become more integrated into the mainstream environment of the classroom.
735
736 A teacher's aide can also be useful to the student. The aide is able to give more elaborate directions that the teacher may not have time to explain to the autistic child. The aide can also facilitate the autistic child in such a way as to allow them to stay at a similar level to the rest of the class. This allows a partially one-on-one lesson structure so that the child is still able to stay in a normal classroom but be given the extra help that they need.
737
738 There are many different techniques that teachers can use to assist their students. A teacher needs to become familiar with the child’s disorder to know what will work best with that particular child. Every child is going to be different and teachers have to be able to adjust with every one of them.
739
740 Students with Autism Spectrum Disorders typically have high levels of anxiety and stress, particularly in social environments like school. If a student exhibits aggressive or explosive behavior, it is important for educational teams to recognize the impact of stress and anxiety. Preparing students for new situations by writing Social Stories can lower anxiety. Teaching social and emotional concepts using systematic teaching approaches such as The Incredible 5-Point Scale or other Cognitive Behavioral strategies can increase a student's ability to control excessive behavioral reactions.
741
742 == DSM definition ==
743 Autism is defined in section 299.00 of the [[Diagnostic and Statistical Manual of Mental Disorders]] (DSM-IV) as:
744 #A total of six (or more) items from (1), (2) and (3), with at least two from (1), and one each from (2) and (3):
745 ##qualitative impairment in social interaction, as manifested by at least two of the following:
746 ###marked impairment in the use of multiple nonverbal behaviors such as eye-to-eye gaze, facial expression, body postures, and gestures to regulate social interaction
747 ###failure to develop peer relationships appropriate to developmental level
748 ###a lack of spontaneous seeking to share enjoyment, interests, or achievements with other people (e.g., by a lack of showing, bringing, or pointing out objects of interest)
749 ###lack of social or emotional reciprocity
750 ##qualitative impairments in communication as manifested by at least one of the following:
751 ###delay in, or total lack of, the development of spoken language (not accompanied by an attempt to compensate through alternative modes of communication such as gesture or mime)
752 ###in individuals with adequate speech, marked impairment in the ability to initiate or sustain a conversation with others
753 ###stereotyped and repetitive use of language or idiosyncratic language
754 ###lack of varied, spontaneous make-believe play or social imitative play appropriate to developmental level
755 ##restricted repetitive and stereotyped patterns of behavior, interests, and activities, as manifested by at least one of the following:
756 ###encompassing preoccupation with one or more stereotyped and restricted patterns of interest that is abnormal either in intensity or focus
757 ###apparently inflexible adherence to specific, nonfunctional routines or rituals
758 ###stereotyped and repetitive motor mannerisms (e.g., hand or finger flapping or twisting, or complex whole-body movements)
759 ###persistent preoccupation with parts of objects
760 #Delays or abnormal functioning in at least one of the following areas, with onset prior to age 3 years: (1) social interaction, (2) language as used in social communication, or (3) symbolic or imaginative play.
761 #The disturbance is not better accounted for by [[Rett syndrome|Rett's Disorder]] or [[Childhood disintegrative disorder|Childhood Disintegrative Disorder]].
762
763 The ''Diagnostic and Statistical Manual''&lt;!-- --&gt;'s diagnostic criteria in general is controversial for being vague and subjective. (See the [[DSM cautionary statement]].) The criteria for autism is much more controversial and some clinicians today may ignore it completely, instead solely relying on other methods for determining the diagnosis.
764
765 == Types of autism ==
766 Autism presents in a wide degree, from those who are nearly [[dysfunctional]] and apparently [[Developmental Disability|mentally handicapped]] to those whose symptoms are mild or remedied enough to appear unexceptional (&quot;normal&quot;) to the general public. In terms of both classification and therapy, autistic individuals are often divided into those with an [[Intelligence Quotient|IQ]]&amp;lt;80 referred to as having &quot;low-functioning autism&quot; (LFA), while those with IQ&amp;gt;80 are referred to as having &quot;high-functioning autism&quot; (HFA). Low and high functioning are more generally applied to how well an individual can accomplish activities of daily living, rather than to [[IQ]]. The terms low and high functioning are controversial and not all autistics accept these labels. Further, these two labels are not currently used or accepted in autism literature.
767
768 This discrepancy can lead to confusion among service providers who equate IQ with functioning and may refuse to serve high-IQ autistic people who are severely compromised in their ability to perform daily living tasks, or may fail to recognize the intellectual potential of many autistic people who are considered LFA. For example, some professionals refuse to recognize autistics who can speak or write as being autistic at all, because they still think of autism as a communication disorder so severe that no speech or writing is possible.
769
770 As a consequence, many &quot;high-functioning&quot; autistic persons, and autistic people with a relatively high [[IQ]], are underdiagnosed, thus making the claim that &quot;autism implies retardation&quot; self-fulfilling. The number of people diagnosed with LFA is not rising quite as sharply as HFA, indicating that at least part of the explanation for the apparent rise is probably better diagnostics.
771
772 === Asperger's and Kanner's syndrome ===
773 [[Image:Hans Asperger.jpg|thumb|right|160px|Asperger described his patients as &quot;little professors&quot;.]]
774 In the current [[Diagnostic and Statistical Manual of Mental Disorders]] (DSM-IV-TR), the most significant difference between Autistic Disorder (Kanner's) and Asperger's syndrome is that a diagnosis of the former includes the observation of &quot;[d]elays or abnormal functioning in at least one of the following areas, with onset prior to age 3 years: (1) social interaction, (2) language as used in social communication, or (3) symbolic or imaginative play[,]&quot; {{ref|bnat}} while a diagnosis of Asperger's syndrome observes &quot;no clinically significant delay&quot; in these areas. {{ref|bnas}}
775
776 The DSM makes no mention of level of intellectual functioning, but the fact that Asperger's autistics as a group tend to perform better than those with Kanner's autism has produced a popular conception that ''[[Asperger's syndrome]]'' is synonymous with &quot;higher-functioning autism,&quot; or that it is a lesser [[disorder]] than ''autism''. There is also a popular but not necessarily true conception that all autistic individuals with a high level of intellectual functioning have Asperger's autism or that both types are merely [[geek]]s with a medical label attached. Also, autism has evolved in the public understanding, but the popular identification of autism with relatively severe cases as accurately depicted in ''[[Rain Man]]'' has encouraged relatives of family members diagnosed in the autistic spectrum to speak of their loved ones as having Asperger's syndrome rather than autism.
777
778 ===Autism as a spectrum disorder===
779 {{details|Autistic spectrum}}
780
781 Another view of these disorders is that they are on a continuum known as [[autistic spectrum]] disorders. A related continuum is [[Sensory Integration Dysfunction]], which is about how well we integrate the information we receive from our senses. Autism, Asperger's syndrome, and Sensory Integration Dysfunction are all closely related and overlap.
782
783 There are two main manifestations of classical autism, [[regressive autism]] and [[early infantile autism]]. Early infantile autism is present at birth while regressive autism begins before the age of 3 and often around 18 months. Although this causes some controversy over when the neurological differences involved in autism truly begin, some believe that it is only a matter of when an environmental toxin triggers the disorder. This triggering could occur during gestation due to a toxin that enters the mother's body and is transfered to the fetus. The triggering could also occur after birth during the crucial early nervous system development of the child due to a toxin directly entering the child's body.
784
785 == Increase in diagnoses of autism ==
786 {{details|Autism epidemic}}
787
788 [[Image:autismnocgraph.png|right|thumb|400px|The number of reported cases of autism has increased dramatically over the past decade. Statistics in graph from the [[National Center for Health Statistics]].]]
789 There has been an explosion worldwide in reported cases of autism over the last ten years, which is largely reminiscent of increases in the diagnosis of [[schizophrenia]] and [[multiple personality disorder]] in the twentieth century. This has brought rise to a number of different theories as to the nature of the sudden increase.
790
791 Epidemiologists argue that the rise in diagnoses in the United States is partly or entirely attributable to changes in diagnostic criteria, reclassifications, public awareness, and the incentive to receive federally mandated services. A widely cited study from the [[M.I.N.D. Institute]] in California ([[17 October]] [[2002]]), claimed that the increase in autism is real, even after those complicating factors are accounted for (see reference in this section below).
792
793 Other researchers remain unconvinced (see references below), including Dr. Chris Johnson, a professor of pediatrics at the University of Texas Health Sciences Center at [[San Antonio]] and cochair of the [[American Academy of Pediatrics]] Autism Expert Panel, who says, &quot;There is a chance we're seeing a true rise, but right now I don't think anybody can answer that question for sure.&quot; ([[Newsweek]] reference below).
794
795 The answer to this question has significant ramifications on the direction of research, since a ''real increase'' would focus more attention (and research funding) on the search for environmental factors, while ''little or no real increase'' would focus more attention to genetics. On the other hand, it is conceivable that certain environmental factors (vaccination, diet, societal changes) may have a particular impact on people with a specific genetic constitution. There is little public research on the effects of [[in vitro fertilization]] on the number of incidences of autism.
796
797 One of the more popular theories is that there is a connection between &quot;geekdom&quot; and autism. This is hinted, for instance, by a ''Wired Magazine'' article in 2001 entitled &quot;The [[Geek]] Syndrome&quot;, which is a point argued by many in the autism rights movement{{ref|Wired}}. This article, many professionals assert, is just one example of the media's application of mental disease labels to what is actually variant normal behavior&amp;mdash;they argue that shyness, lack of athletic ability or social skills, and intellectual interests, even when they seem unusual to others, are not in themselves signs of autism or Asperger's syndrome. Others assert that it is actually the medical profession which is applying mental disease labels to children who in the past would have simply been accepted as a little different or even labeled 'gifted'. See [[clinomorphism]] for further discussion of this issue.
798
799 Due to the recent publicity surrounding autism and autistic spectrum disorders, an increasing number of adults are choosing to seek diagnoses of high-functioning autism or Asperger's syndrome in light of symptoms they currently experience or experienced during childhood. Since the cause of autism is thought to be at least partly genetic, a proportion of these adults seek their own diagnosis specifically as follow-up to their children's diagnoses. Because autism falls into the [[pervasive developmental disorder]] category, strictly speaking, symptoms must have been present in a given patient before age seven in order to make a [[differential diagnosis]].
800
801 == Therapies ==
802 {{details|Autism therapies}}
803
804 ==Sociology==
805 Due to the complexity of autism, there are many facets of [[sociology]] that need to be considered when discussing it, such as the culture which has evolved from autistic persons connecting and communicating with one another. In addition, there are several subgroups forming within the autistic community, sometimes in strong opposition to one another.
806
807 ===Community and politics===
808 {{details|Autistic community}}
809 {{details|Autism rights movement}}
810
811 Much like many other controversies in the world, the autistic community itself has splintered off into several groups. Essentially, these groups are those who seek a cure for autism, dubbed ''pro-cure'', those who do not desire a cure for autism and as such resist it, dubbed ''anti-cure'', and the many people caught in the middle of the two. In recent history, with scientists learning more about autism and possibly coming closer to a cure, some members of the &quot;anti-cure&quot; movement [[Autistic community#Declaration from the autism community|sent a letter to the United Nations]] demanding to be treated as a minority group rather than a group with a [[mental disability]] or disease. Websites such as autistics.org{{ref|refbot.770}} present the view of the anti-cure group.
812
813 There are numerous resources available for autistics from many groups. Due to the fact that many autistics find it easier to communicate online than in person, many of these resources are available online. In addition, sometimes successful autistic adults in a local community will help out children with autism, much in the way a master would help out an apprentice, for example.
814
815 2002 was declared [[Autism Awareness Year]] in the [[United Kingdom]]&amp;mdash;this idea was initiated by [[Ivan and Charika Corea]], parents of an autistic child, Charin. Autism Awareness Year was led by the [[British Institute of Brain Injured Children]], [[Disabilities Trust]], [[National Autistic Society]], [[Autism London]] and 800 organizations in the United Kingdom. It had the personal backing of [[United Kingdom|British]] Prime Minister [[Tony Blair]] and parliamentarians of all parties in the [[Palace of Westminster]].
816
817 ===Culture===
818 {{details|Autistic culture}}
819 With the recent increases in autism recognition and new approaches to educating and socializing autistics, an ''autistic culture'' has begun to develop. Similar to [[deaf culture]], autistic culture is based in a belief that autism is a unique way of being and not a disorder to be cured. There are some commonalities which are specific to autism in general as a culture, not just &quot;autistic culture&quot;.
820
821 It is a common misperception that people with autism do not marry; many do get married. Often, they marry another person with autism, although this is not always the case. Many times autistics are attracted to other autistics due to shared interests or obsessions, but more often than not the attraction is due to simple compatibility with personality types, the same as is true for non-autistics. Autistics who communicate have explained that companionship is as important to autistics as it is to anyone else. Multigenerational autistic families have also recently become a bit more common.
822
823 The interests of autistic people and so-called &quot;[[geeks]]&quot; or &quot;[[Nerd|nerds]]&quot; can often overlap as autistic people can sometimes become preoccupied with certain subjects, much like the variant normal behavior geeks experience. However, in practice many autistic people have difficulty with working in groups, which impairs them even in the most &quot;technical&quot; of situations.
824
825 ===Autistic adults===
826 [[image:Grandin2.jpg|thumb|right|[[Temple Grandin]], one of the more successful adults with autism.
827 &lt;small&gt;Photograph courtesy Joshua Nathaniel Pritikin and William Lawrence Jarrold.&lt;/small&gt;]]
828
829 Some autistic adults are able to work successfully in mainstream jobs, usually those with high-functioning autism or Asperger's syndrome. Nevertheless, communication and social problems often cause difficulties in many areas of the autistic's life. Other autistics are capable of employment in sheltered workshops under the supervision of managers trained in working with persons with disabilities. A nurturing environment at home, at school, and later in job training and at work, helps autistic people continue to learn and to develop throughout their lives. Some argue that the internet allows autistic individuals to communicate and form online communities, in addition to being able to find occupations such as independent consulting, which does generally not require much human interaction offline.
830
831 In the [[United States]], the public schools' responsibility for providing services ends when the autistic person is in their 20s, depending on each state. The family is then faced with the challenge of finding living arrangements and employment to match the particular needs of their adult child, as well as the programs and facilities that can provide support services to achieve these goals.
832
833 === Autistic savants ===
834 {{Main|autistic savant}}
835 The autistic savant phenomenon is sometimes seen in autistic people. The term is used to describe a person who is autistic and has extreme talent in a certain area of study. Although there is a common association between savants and autism (an association created by the 1988 film ''[[Rain Man]]''), most autistic people are not [[savants]]. [[Mental calculator]]s and fast [[programming]] skills are the most common form. The famous example is [[Daniel Tammet]], the subject of the [[documentary film]] ''[[The Brain Man]]'' {{ref|guardianbrainman}} ([[Kim Peek]], one of the inspirations for [[Dustin Hoffman]]'s character in the film ''[[Rain Man]]'', is not autistic). &quot;Bright Splinters of the Mind&quot; is a book that explores this issue further.
836
837 == Other pervasive developmental disorders ==
838 Autism and Asperger's syndrome are just two of the five pervasive developmental disorders (PDDs). The three other pervasive developmental disorders are [[Rett syndrome]], [[Childhood disintegrative disorder]], and [[PDD not otherwise specified|Pervasive developmental disorder not otherwise specified]]. Some of these are related to autism, while some of them are entirely separate conditions.
839
840 === Rett syndrome ===
841 [[Rett syndrome]] is relatively rare, affecting almost exclusively females, one out of 10,000 to 15,000. After a period of normal development, sometime between 6 and 18 months, autism-like symptoms begin to appear. The little girl's mental and social development regresses; she no longer responds to her parents and pulls away from any social contact. If she has been talking, she stops; she cannot control her feet; she wrings her hands. Some of these early symptoms may be confused for autism. Some of the problems associated with Rett syndrome can be treated. [[Physical therapy|Physical]], [[Occupational therapy|occupational]], and [[Speech therapy|speech]] therapy can help with problems of coordination, movement, and [[speech]].
842
843 Scientists sponsored by the National Institute of Child Health and Human Development have discovered that a mutation in the sequence of a single gene causes Rett syndrome, and can physically test for it with a 80% accuracy rate {{ref|nihrett}}. Rett syndrome in the past was sometimes classified as an autistic spectrum disorder, however most scientists agree that Rett syndrome is a separate developmental disorder and not part of the autistic spectrum {{ref|brighttotsrett}}.
844
845 ===Childhood disintegrative disorder===
846 [[Childhood disintegrative disorder]] (CDD, and sometimes abbreviated as CHDD also) is a condition appearing in 3 or 4 year old children who have developed normally until age 2. Over several months, the child will deteriorate in intellectual, social, and language functioning from previously normal behaviour. This long period of normal development before regression helps differentiate CDD from Rett syndrome (and in fact it must be differentiated from autism in testing). The cause for CDD is unknown (thus it may be a spectrum disorder) but current evidence suggests it has something to do with the central nervous system {{ref|yalecdd}} {{ref|nihcdd}}.
847
848 === Pervasive developmental disorder not otherwise specified ===
849 [[PDD not otherwise specified|Pervasive developmental disorder not otherwise specified]], or PDD-NOS, is referred to as a ''subthreshold'' condition because it is a classification which is given to someone who suffers from impairments in social interaction, communication, and/or stereotyped behaviour but does not meet the criteria for one of the other four pervasive developmental disorders. Unlike the other four pervasive developmental disorders, PDD-NOS has no specific guidelines for diagnosis, so the person may have a lot of characteristics of an autistic person, or few to none at all. Note that pervasive developmental disorder is not a diagnosis, just a term to refer to the five mentioned conditions, while PDD-NOS is an official diagnosis {{ref|yalepddnos}}.
850
851 ==See also==
852 * '''General'''
853 :* [[Autism therapies]]
854 :* [[Causes of autism]]
855 :* [[Conditions comorbid to autism spectrum disorders]]
856 :* [[Early Childhood Autism]]
857 :* [[Heritability of autism]]
858
859 * '''Groups'''
860 :* [[Aspies For Freedom]]
861 :* [[National Alliance for Autism Research]]
862
863 * '''Controversy'''
864 :* [[Controversies about functioning labels in the autism spectrum]]
865 :* [[Controversies in autism]]
866 :* [[Ethical challenges to autism treatment]]
867
868 * '''Lists'''
869 :* [[List of autism-related topics]]
870 :* [[List of fictional characters on the autistic spectrum]]
871 :* [[List of autistic people]]
872
873 ==References==
874 * {{cite web | author= | title=Rett syndrome (NIH Publication No. 01-4960) | publisher=Rockville, MD: National Institute of Child Health and Human Development | year=2001 | work=Rett syndrome | url=http://www.nichd.nih.gov/publications/pubskey.cfm?from=autism | accessdate=July 30 | accessyear= 2005 }}
875 * {{cite journal | author=Frombonne E. | title=Prevalence of childhood disintegrative disorder | journal=Autism | year=2002 | volume=6 | issue=2 | pages=149-157}}
876 * {{cite journal | author=Volkmar RM and Rutter M. | title=Childhood disintegrative disorder: Results of the DSM-IV autism field trial | journal=Journal of the American Academy of Child and Adolescent Psychiatry | year=1995 | volume=34 | pages=1092-1095}}
877 * {{Citenewsauthor | surname=Ewald | given=Paul | title=Plague Time | date=April 2001 | org=Popular Science | url=http://www.centurytel.net/tjs11/bug/ewald1.htm}}
878 * {{cite web | title=PANDAS (Paediatric Autoimmune Neuropsychiatric Disorders Associated with Streptococci) and PITAND (Paediatric Infection-triggered Autoimmune Neuropsychiatric Disorders) | work=PANDAS &amp; PITAND Syndromes | url=http://www.webpediatrics.com/pandas.html | accessdate=July 30 | accessyear=2005 }}
879 * {{cite web | title=Closer to Truth: PBS, with Paul Ewald | work=Microbes -- Friend or Foe? | url=http://www.pbs.org/kcet/closertotruth/explore/show_05.html | accessdate=July 30 | accessyear=2005 }}
880 * {{cite web | title=M.I.N.D. Institute Study Confirms Autism Increase | work=U.C. Davis| url=http://www.ucdmc.ucdavis.edu/news/MINDepi_study.html | accessdate=March 6| accessyear=2005 }}
881 * {{Citenews | surname=Stenson | given=Jacqueline | title=As autism cases soar, a search for clues | date=[[24 February]] [[2005]] | org=Newsweek | url=http://www.msnbc.msn.com/id/6947652/}}
882 * {{Citenews | surname=Goode | given=Erica | title=Autism Statistics: More and More Autism Cases | date=[[26 January]] [[2004]] | org=New York Times | url=http://www.autisticsociety.org/article262.html}}
883 * {{cite journal | author=Wing L, Potter D. | title=The epidemiology of autistic spectrum disorders: is the prevalence rising? | journal=Mental Retardation and Developmental Disabilities Research Reviews | volume=8 | issue=3 | year=2002 | pages=151&amp;#8211;61}} ([http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=12216059&amp;dopt=Abstract abstract])
884 * {{cite journal | author=Croen LA, Grether JK, Hoogstrate J, Selvin S. | title=The changing prevalence of autism in California | journal=Journal of Autism and Developmental Disorders| volume=32| issue=3 | year=2002 Jun | pages=207-15}} ([http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;dopt=Abstract&amp;list_uids=12108622 abstract])
885 * Manev R, Manev H. Aminoglycoside antibiotics and autism: a speculative hypothesis. BMC Psychiatry. 2001;1:5. Epub 2001 [[10 October]].[http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=11696245&amp;query_hl=60]
886 * Strock, Margaret (2004). Autism Spectrum Disorders (Pervasive Developmental Disorders). NIH Publication No. NIH-04-5511, National Institute of Mental Health, National Institutes of Health, U.S. Department of Health and Human Services, Bethesda, MD, 40 pp. http://www.nimh.nih.gov/publicat/autism.cfm
887
888 ==Footnotes==
889 # {{note|NihAutismov2005}} {{cite web | title=NIH Autism Overview 2005 | url=http://www.nichd.nih.gov/publications/pubs/autism_overview_2005.pdf | accessdate=February 5 | accessyear=2006 }}
890 # {{note|bnat}} {{cite web | title=BehaveNet autism description | url=http://www.behavenet.com/capsules/disorders/autistic.htm | accessdate=July 30 | accessyear=2005 }}
891 # {{note|bnas}} {{cite web | title=BehaveNet aspergers description | url=http://www.behavenet.com/capsules/disorders/asperger.htm | accessdate=July 30 | accessyear=2005 }}
892 # {{note|Wired}} {{Citenewsauthor | surname=Silberman | given=Steve | title=The Geek Syndrome | date=December 2001 | org=Wired | url=http://www.wired.com/wired/archive/9.12/aspergers_pr.html}}
893 # {{note|refbot.770}} {{cite web | title=autistics.org: The REAL Voice of Autism (See above) | url=http://www.autistics.org | accessdate=December 11 | accessyear=2005 }}
894 # {{note|guardianbrainman}} {{cite web | title=Guardian &quot;Brain Man&quot; article | url=http://www.guardian.co.uk/weekend/story/0,3605,1409903,00.html | accessdate=July 30 | accessyear=2005 }}
895 # {{note|nihrett}} {{cite web | title=NIH Rett description | url=http://www.ninds.nih.gov/disorders/rett/detail_rett.htm | accessdate=July 30 | accessyear=2005 }}
896 # {{note|brighttotsrett}} {{cite web | title=Bright Tots Rett description | url=http://www.brighttots.com/Rett_Syndrome.html | accessdate=July 30 | accessyear=2005 }}
897 # {{note|yalecdd}} {{cite web | title=Yale CDD description | url=http://info.med.yale.edu/chldstdy/autism/cdd.html | accessdate=July 30 | accessyear=2005 }}
898 # {{note|nihcdd}} {{cite web | title=NIH CDD description | url=http://www.nlm.nih.gov/medlineplus/ency/article/001535.html | accessdate=July 30 | accessyear=2005 }}
899 # {{note|yalepddnos}} {{cite web | title=PDD-NOS at Yale | url=http://info.med.yale.edu/chldstdy/autism/pddnos.html | accessdate=August 22 | accessyear=2005 }}
900
901 ==External links==
902 * '''General'''
903 :[http://www.wrongplanet.net WrongPlanet.net - The Community and Resource for Autism]
904 : [http://www.autism-spectrum-disorder.com Autism-Spectrum-Disorder.com] - Autism Spectrum Disorder
905 : [http://www.colour-se7en.co.uk Colour-se7en]- a website created to bring awareness of spectrum related disorders and forums for NT and ASD interaction.
906 : [http://www.ericdigests.org/2000-3/autism.htm EricDigests.org] - 'Teaching Students with Autism', Glen Dunlap, Lise Fox, ERIC Digest (October, 1999)
907 : [http://observer.guardian.co.uk/magazine/story/0,11913,1639392,00.html Autistic and Proud] Describes new discoveries about autism, autistics speaking for themselves.
908 : [http://www.weirdnotstupid.com Weird Not Stupid] - A website created from the perspective of a person who has two siblings who are on the Autism Spectrum with the goal of giving information to anybody who is seeking it.
909 * ''Blogs''
910 : [http://autism.about.com/ Autism/Pervasive Developmental Disorders] By Adelle Jameson Tilton, [[About.com]]
911 : [http://aboutautism.blogspot.com/ Autism News and More]
912 : [http://www.adventuresinautism.blogspot.com/ Adventures In Autism] By a health professional who is the mother of an autistic boy.
913 : [http://www.autismsymptoms.blogspot.com Autism Symptoms]
914 : [http://www.gettingthetruthout.org Getting The Truth Out] By Argues that there are common misconceptions about autism.
915 : [http://www.autismtreatment.info/reality+aba.aspx?rssid=1 Reality ABA, An Autism Diary] By Katherine Lee, mother of an autistic son.
916 * ''Organizations''
917 :* [http://www.onthespectrum.com On The Spectrum] A web community for those on the autism spectrum with an emphasis on support and advocacy
918 : [http://www.autismwebsite.com/ari/index.htm autismwebsite.com Autism Research Institute] Clearinghouse for information relating to autism, particularly the biomedical treatment approach
919 : [http://www.autism-society.org/site/PageServer Autism-Society.org] - [[Autism Society of America]]
920 : [http://www.autistics.org autistics.org] - Clearinghouse for information related to autism, from a non-cure standpoint. Many articles by autistics.
921 : [http://www.autism.org/contents.html Center for the Study of Autism], Autism Research Institute (founded by [[Bernard Rimland]])
922 * ''Resources''
923 : [http://www.geocities.com/growingjoel/index.html A Way Of Life] Resources and information for parents.
924 :[http://www.autismtreatment.info Autism Treatment Info] Treatment Tips for Children with Autism, PDD &amp; Asperger's Syndrome.
925 : [http://rsaffran.tripod.com/aba.html ABA Resources for Recovery from Autism] - Information about and resource guide for behavioral intervention for autism
926 : [http://www.autism-resources.com/ Autism-Resources.com] - Offering information and links regarding the developmental disabilities autism and Asperger's Syndrome.
927 : [http://www.autismtalk.net Autism Talk] Parents &amp; educators discuss all views.
928 : [http://www.autismtoday.com/ AutismToday.com] - 'everything you need to know about autism', Autism Today
929 : [http://www.teachers.tv/autism Focus on Autism] Selection of documentaries, interviews, etc.
930 : [http://www.info.autism.org.uk/ Autism.org.uk] - 'PARIS: Public Autism Resource &amp; Information Service' (directory of UK autism services)
931 : [http://glennrowe.net/BaronCohen/AutismSpectrumQuotient/AutismSpectrumQuotient.aspx Autism Spectrum Quotient] - Measure Your Autism Spectrum Quotient
932 : [http://www.rdos.net/eng/Aspie-quiz.php Aspie-quiz] - Quiz that measures autistic traits
933
934 {{Pervasive developmental disorders}}
935
936 {{featured article}}
937
938 [[Category:Autism]]
939 [[Category:Childhood psychiatric disorders]]
940 [[Category:Disability]]
941 [[Category:Communication disorders]]
942 [[Category:Mental illness diagnosis by DSM and ISCDRHP]]
943 [[Category:Neurological disorders]]
944
945 [[de:Autismus]]
946 [[es:Autismo]]
947 [[eo:AÅ­tismo]]
948 [[fr:Autisme]]
949 [[ko:ėžíėĻ]]
950 [[ia:Autismo]]
951 [[it:Autismo]]
952 [[he:אוטיזם]]
953 [[ka:აáƒŖáƒĸიზმი]]
954 [[hu:Autizmus]]
955 [[ms:Autisme]]
956 [[nl:Autisme]]
957 [[ja:č‡Ē閉į—‡]]
958 [[no:Autisme]]
959 [[pl:Autyzm wczesnodziecięcy]]
960 [[pt:Autismo]]
961 [[simple:Autism]]
962 [[sk:Autizmus (uzavretosÅĨ)]]
963 [[sr:АŅƒŅ‚иСаĐŧ]]
964 [[fi:Autismi]]
965 [[sv:Autism]]
966 [[ta:āŽŽāŽ¤āŽŋāŽ¯āŽŋāŽąā¯āŽ•ā¯āŽ•āŽŽā¯]]
967 [[tr:Otizm]]
968 [[zh:č‡Ē閉į—‡]]</text>
969 </revision>
970 </page>
971 <page>
972 <title>AlbaniaHistory</title>
973 <id>27</id>
974 <revision>
975 <id>15898960</id>
976 <timestamp>2002-10-09T13:37:21Z</timestamp>
977 <contributor>
978 <username>Magnus Manske</username>
979 <id>4</id>
980 </contributor>
981 <minor />
982 <comment>#REDIRECT [[History of Albania]]</comment>
983 <text xml:space="preserve">#REDIRECT [[History of Albania]]</text>
984 </revision>
985 </page>
986 <page>
987 <title>AlbaniaGeography</title>
988 <id>28</id>
989 <revision>
990 <id>15898961</id>
991 <timestamp>2002-10-09T13:37:41Z</timestamp>
992 <contributor>
993 <username>Magnus Manske</username>
994 <id>4</id>
995 </contributor>
996 <minor />
997 <comment>#REDIRECT [[Geography of Albania]]</comment>
998 <text xml:space="preserve">#REDIRECT [[Geography of Albania]]</text>
999 </revision>
1000 </page>
1001 <page>
1002 <title>AlbaniaPeople</title>
1003 <id>29</id>
1004 <revision>
1005 <id>15898962</id>
1006 <timestamp>2002-10-09T13:38:05Z</timestamp>
1007 <contributor>
1008 <username>Magnus Manske</username>
1009 <id>4</id>
1010 </contributor>
1011 <minor />
1012 <comment>#REDIRECT [[Demographics of Albania]]</comment>
1013 <text xml:space="preserve">#REDIRECT [[Demographics of Albania]]</text>
1014 </revision>
1015 </page>
1016 <page>
1017 <title>AsWeMayThink</title>
1018 <id>30</id>
1019 <revision>
1020 <id>15898963</id>
1021 <timestamp>2002-08-07T17:29:40Z</timestamp>
1022 <contributor>
1023 <username>Lee Daniel Crocker</username>
1024 <id>43</id>
1025 </contributor>
1026 <text xml:space="preserve">#REDIRECT [[As_We_May_Think]]</text>
1027 </revision>
1028 </page>
1029 <page>
1030 <title>AllSaints</title>
1031 <id>33</id>
1032 <revision>
1033 <id>15898964</id>
1034 <timestamp>2002-02-25T15:43:11Z</timestamp>
1035 <contributor>
1036 <ip>Conversion script</ip>
1037 </contributor>
1038 <minor />
1039 <comment>Automated conversion</comment>
1040 <text xml:space="preserve">#REDIRECT [[All Saints]]
1041 </text>
1042 </revision>
1043 </page>
1044 <page>
1045 <title>AlbaniaGovernment</title>
1046 <id>35</id>
1047 <revision>
1048 <id>15898965</id>
1049 <timestamp>2002-10-09T13:38:25Z</timestamp>
1050 <contributor>
1051 <username>Magnus Manske</username>
1052 <id>4</id>
1053 </contributor>
1054 <minor />
1055 <comment>#REDIRECT [[Politics of Albania]]</comment>
1056 <text xml:space="preserve">#REDIRECT [[Politics of Albania]]</text>
1057 </revision>
1058 </page>
1059 <page>
1060 <title>AlbaniaEconomy</title>
1061 <id>36</id>
1062 <revision>
1063 <id>15898966</id>
1064 <timestamp>2002-10-09T13:39:00Z</timestamp>
1065 <contributor>
1066 <username>Magnus Manske</username>
1067 <id>4</id>
1068 </contributor>
1069 <minor />
1070 <comment>#REDIRECT [[Economy of Albania]]</comment>
1071 <text xml:space="preserve">#REDIRECT [[Economy of Albania]]</text>
1072 </revision>
1073 </page>
1074 <page>
1075 <title>AlchemY</title>
1076 <id>38</id>
1077 <revision>
1078 <id>15898967</id>
1079 <timestamp>2002-02-25T15:43:11Z</timestamp>
1080 <contributor>
1081 <ip>Conversion script</ip>
1082 </contributor>
1083 <minor />
1084 <comment>Automated conversion</comment>
1085 <text xml:space="preserve">#REDIRECT [[Alchemy]]
1086 </text>
1087 </revision>
1088 </page>
1089 <page>
1090 <title>Albedo</title>
1091 <id>39</id>
1092 <revision>
1093 <id>41496222</id>
1094 <timestamp>2006-02-27T19:32:46Z</timestamp>
1095 <contributor>
1096 <ip>24.119.3.44</ip>
1097 </contributor>
1098 <text xml:space="preserve">{{otheruses}}
1099
1100 '''Albedo''' is the measure of [[reflectivity]] of a surface or body. It is the ratio of [[electromagnetic radiation]] (EM radiation) reflected to the amount incident upon it. The fraction, usually expressed as a percentage from 0% to 100%, is an important concept in [[climatology]] and [[astronomy]]. This ratio depends on the [[frequency]] of the radiation considered: unqualified, it refers to an average across the spectrum of [[visible light]]. It also depends on the [[angle of incidence]] of the radiation: unqualified, normal incidence. Fresh snow albedos are high: up to 90%. The ocean surface has a low albedo. The average albedo of [[Earth]] is about 30% whereas the albedo of the [[Moon]] is about 7%. In astronomy, the albedo of satellites and asteroids can be used to infer surface composition, most notably ice content. [[Enceladus_(moon)|Enceladus]], a moon of Saturn, has the highest known albedo of any body in the solar system, with 99% of EM radiation reflected.
1101
1102 Human activities have changed the albedo (via forest clearance and farming, for example) of various areas around the globe. However, quantification of this effect is difficult on the global scale: it is not clear whether the changes have tended to increase or decrease [[global warming]].
1103
1104 The &quot;classical&quot; example of albedo effect is the snow-temperature feedback. If a snow covered area warms and the snow melts, the albedo decreases, more sunlight is absorbed, and the temperature tends to increase. The converse is true: if snow forms, a cooling cycle happens. The intensity of the albedo effect depends on the size of the change in albedo and the amount of [[insolation]]; for this reason it can be potentially very large in the tropics.
1105
1106 == Some examples of albedo effects ==
1107
1108 === Fairbanks, Alaska ===
1109
1110 According to the [[National Climatic Data Center]]'s GHCN 2 data, which is composed of 30-year smoothed climatic means for thousands of weather stations across the world, the college weather station at [[Fairbanks]], [[Alaska]], is about 3 °C (5 °F) warmer than the airport at Fairbanks, partly because of drainage patterns but also largely because of the lower albedo at the college resulting from a higher concentration of [[pine]] [[tree]]s and therefore less open snowy ground to reflect the heat back into space. Neunke and Kukla have shown that this difference is especially marked during the late [[winter]] months, when [[solar radiation]] is greater.
1111
1112 === The tropics ===
1113
1114 Although the albedo-temperature effect is most famous in colder regions of Earth, because more [[snow]] falls there, it is actually much stronger in tropical regions because in the tropics there is consistently more sunlight. When [[Brazil]]ian ranchers cut down dark, tropical [[rainforest]] trees to replace them with even darker soil in order to grow crops, the average temperature of the area appears to increase by an average of about 3 °C (5 °F) year-round, which is a significant amount.
1115
1116 === Small scale effects ===
1117
1118 Albedo works on a smaller scale, too. People who wear dark clothes in the summertime put themselves at a greater risk of [[heatstroke]] than those who wear white clothes.
1119
1120 === Pine forests ===
1121
1122 The albedo of a [[pine]] forest at 45°N in the winter in which the trees cover the land surface completely is only about 9%, among the lowest of any naturally occurring land environment. This is partly due to the color of the pines, and partly due to multiple scattering of sunlight within the trees which lowers the overall reflected light level. Due to light penetration, the ocean's albedo is even lower at about 3.5%, though this depends strongly on the angle of the incident radiation. Dense [[swamp]]land averages between 9% and 14%. [[Deciduous tree]]s average about 13%. A [[grass]]y field usually comes in at about 20%. A barren field will depend on the color of the soil, and can be as low as 5% or as high as 40%, with 15% being about the average for farmland. A [[desert]] or large [[beach]] usually averages around 25% but varies depending on the color of the sand. [Reference: Edward Walker's study in the Great Plains in the winter around 45°N].
1123
1124 === Urban areas ===
1125
1126 Urban areas in particular have very unnatural values for albedo because of the many human-built structures which absorb light before the light can reach the surface. In the northern part of the world, cities are relatively dark, and Walker has shown that their average albedo is about 7%, with only a slight increase during the summer. In most tropical countries, cities average around 12%. This is similar to the values found in northern suburban transitional zones. Part of the reason for this is the different natural environment of cities in tropical regions, e.g., there are more very dark trees around; another reason is that portions of the tropics are very poor, and city buildings must be built with different materials. Warmer regions may also choose lighter colored building materials so the structures will remain cooler.
1127
1128 === Trees ===
1129
1130 Because trees tend to have a low albedo, removing forests would tend to increase albedo and thereby cool the planet. Cloud feedbacks further complicate the issue. In seasonally snow-covered zones, winter albedos of treeless areas are 10% to 50% higher than nearby forested areas because snow does not cover the trees as readily.
1131
1132 Studies by the [[Hadley Centre]] have investigated the relative (generally warming) effect of albedo change and (cooling) effect of [[carbon sequestration]] on planting forests. They found that new forests in tropical and midlatitude areas tended to cool; new forests in high latitudes (e.g. Siberia) were neutral or perhaps warming [http://66.102.11.104/search?q=cache:o7LD-owSkNgJ:www.ulapland.fi/home/arktinen/feed_pdf/Betts_revised.pdf+hadley+albedo+forest&amp;hl=en].
1133
1134 === Snow ===
1135
1136 Snow albedos can be as high as 90%. This is for the ideal example, however: fresh deep snow over a featureless landscape. Over [[Antarctica]] they average a little more than 80%.
1137
1138 If a marginally snow-covered area warms, snow tends to melt, lowering the albedo, and hence leading to more snowmelt (the ice-albedo [[feedback]]). This is the basis for predictions of enhanced warming in the polar and seasonally snow covered regions as a result of [[global warming]].
1139
1140 === Clouds ===
1141
1142 Clouds are another source of albedo that play into the global warming equation. Different types of clouds have different albedo values, theoretically ranging from a minimum of near 0% to a maximum in the high 70s. [[Climate model]]s have shown that if the whole Earth were to be suddenly covered by white clouds, the surface temperatures would drop to a value of about -150 °C (-240 °F). This model, though it is far from perfect, also predicts that to offset a 5 °C (9 °F) temperature change due to an increase in the magnitude of the [[greenhouse effect]], &quot;all&quot; we would need to do is increase the Earth's overall albedo by about 12% by adding more white clouds.
1143
1144 Albedo and climate in some areas are already affected by artificial clouds, such as those created by the [[contrail]]s of heavy commercial airliner traffic. A study following the [[September 11, 2001 attacks|September 11 attacks]], after which all major airlines in the U.S. shut down for three days, showed a local 1 &amp;deg;C increase in the daily temperature range (the difference of day and night temperatures) (''see: [[contrail]]'').
1145
1146 === Aerosol effects ===
1147
1148 [[Particulate|Aerosol]] (very fine particles/droplets in the atmosphere) has two effects, direct and indirect. The direct (albedo) effect is generally to cool the planet; the indirect effect (the particles act as [[Cloud condensation nuclei|CCN]]s and thereby change [[cloud properties]]) is less certain [http://www.grida.no/climate/ipcc_tar/wg1/231.htm#671].
1149
1150 === Black carbon ===
1151
1152 Another albedo-related effect on the climate is from black carbon particles. The size of this effect is difficult to quantify: the [[IPCC]] say that their &quot;estimate of the global mean radiative forcing for BC aerosols from fossil fuels is ... +0.2 W m&lt;sup&gt;-2&lt;/sup&gt; (from +0.1 W m&lt;sup&gt;-2&lt;/sup&gt; in the [[SAR_(IPCC)|SAR)]]) with a range +0.1 to +0.4 W m&lt;sup&gt;-2&lt;/sup&gt;&quot;. [http://www.grida.no/climate/ipcc_tar/wg1/233.htm].
1153
1154 [[Category:Electromagnetic radiation]]
1155 [[Category:Climatology]]
1156 [[Category:Climate forcing]]
1157 [[Category:Astrophysics]]
1158
1159 [[als:Albedo]]
1160 [[bg:АĐģĐąĐĩĐ´Đž]]
1161 [[bs:Albedo]]
1162 [[ca:Albedo]]
1163 [[cs:Albedo]]
1164 [[da:Albedo]]
1165 [[de:Albedo]]
1166 [[et:Albeedo]]
1167 [[es:Albedo]]
1168 [[eo:Albedo]]
1169 [[fr:AlbÊdo]]
1170 [[gl:Albedo]]
1171 [[ko:반ė‚Ŧėœ¨]]
1172 [[hr:Albedo]]
1173 [[it:Albedo]]
1174 [[he:אלבדו]]
1175 [[hu:AlbedÃŗ]]
1176 [[nl:Weerkaatsingsvermogen]]
1177 [[ja:ã‚ĸãƒĢベド]]
1178 [[no:Albedo]]
1179 [[nn:Albedo]]
1180 [[pl:Albedo]]
1181 [[pt:Albedo]]
1182 [[ru:АĐģŅŒĐąĐĩĐ´Đž]]
1183 [[sk:Albedo]]
1184 [[sr:АĐģĐąĐĩĐ´Đž]]
1185 [[fi:Albedo]]
1186 [[sv:Albedo]]
1187 [[uk:АĐģŅŒĐąĐĩĐ´Đž]]</text>
1188 </revision>
1189 </page>
1190 <page>
1191 <title>AfroAsiaticLanguages</title>
1192 <id>40</id>
1193 <revision>
1194 <id>15898969</id>
1195 <timestamp>2002-10-09T13:39:18Z</timestamp>
1196 <contributor>
1197 <username>Magnus Manske</username>
1198 <id>4</id>
1199 </contributor>
1200 <minor />
1201 <comment>#REDIRECT [[Afro-Asiatic languages]]</comment>
1202 <text xml:space="preserve">#REDIRECT [[Afro-Asiatic languages]]</text>
1203 </revision>
1204 </page>
1205 <page>
1206 <title>ArtificalLanguages</title>
1207 <id>42</id>
1208 <revision>
1209 <id>39218545</id>
1210 <timestamp>2006-02-11T16:19:55Z</timestamp>
1211 <contributor>
1212 <username>Nikai</username>
1213 <id>9759</id>
1214 </contributor>
1215 <comment>R from misspelling</comment>
1216 <text xml:space="preserve">#REDIRECT [[Constructed language]] {{R from misspelling}}</text>
1217 </revision>
1218 </page>
1219 <page>
1220 <title>Abu Dhabi</title>
1221 <id>43</id>
1222 <revision>
1223 <id>41580021</id>
1224 <timestamp>2006-02-28T07:19:07Z</timestamp>
1225 <contributor>
1226 <username>El C</username>
1227 <id>92203</id>
1228 </contributor>
1229 <minor />
1230 <comment>Reverted edits by [[Special:Contributions/71.193.1.105|71.193.1.105]] ([[User talk:71.193.1.105|talk]]) to last version by Bloodshedder</comment>
1231 <text xml:space="preserve">[[Image:AbuDhabi02.JPG|thumb|View of Abu Dhabi|right|300px]]
1232 [[Image:Abu Dhabi from Space-ISS006-E-32079-March 2003.JPG|thumb|right|300px|Satellite image of Abu Dhabi (March 2003)]]
1233 [[Image:Emirates_Palace_Hotel_Abu_Dhabi_front.jpg|thumb|Emirates Palace Hotel Front|right|300px]]
1234 [[Image:Emirates_Palace_Hotel_Abu_Dhabi_side.jpg|thumb|Emirates Palace Hotel from the side|right|300px]]
1235 '''Abu Dhabi''' ([[Arabic language|Arabic]]: &amp;#1571;&amp;#1576;&amp;#1608; &amp;#1592;&amp;#1576;&amp;#1610; ''&amp;#700;Ab&amp;#363; &amp;#7826;aby'') is the largest of the seven [[emirate]]s that comprise the [[United Arab Emirates]] and was also the largest of the former [[Trucial States]]. '''Abu Dhabi''' is also a city of the same name within the Emirate that is the [[capital city|capital]] of the country, in north central UAE. The city lies on a T-shaped island jutting into the [[Persian Gulf]] from the central western coast. An estimated 1,000,000 lived there in 2000, with about an 80% [[expatriate]] population. Abu Dhabi city is located at {{coor d|24.4667|N|54.3667|E}}. [[Al Ain]] is Abu Dhabi's second largest urban area with a population of 348,000 ([[2003]] census estimate) and is located 150 kilometres inland.
1236
1237 ==History==
1238 Parts of Abu Dhabi were settled as far back as the [[3rd millennium BC]] and its early history fits the nomadic, herding and fishing pattern typical of the broader region. Modern Abu Dhabi traces its origins to the rise of an important tribal confederation the Bani Yas in the late 18th century, who also assumed control of [[Dubai]]. In the 19th century the Dubai and Abu Dhabi branches parted ways.
1239
1240 Into the mid-20th century, the economy of Abu Dhabi continued to be sustained mainly by camel herding, production of dates and vegetables at the inland oases of [[Al Ain]] and Liwa, and fishing and pearl diving off the coast of Abu Dhabi city, which was occupied mainly during the summer months. Most dwellings in Abu Dhabi city were, at this time constructed of palm fronds (barasti), with the better-off families occupying mud huts. The growth of the cultured pearl industry in the first half of the 20th century created hardship for residents of Abu Dhabi as pearls represented the largest export and main source of cash earnings.
1241
1242 In 1939, Sheikh [[Shakhbut Bin-Sultan Al Nahyan]] granted [[Petroleum]] concessions, and oil was first found in 1958. At first, oil money had a marginal impact. A few lowrise concete buildings were erected, and the first paved road was completed in 1961, but Sheikh Shakbut, uncertain whether the new oil royalties would last, took a cautious approach, prefering to save the revenue rather than investing it in development. His brother, [[Zayed bin Sultan Al Nahayan]], saw that oil wealth had the potential to transform Abu Dhabi. The ruling Al Nahayan family decided that Sheikh Zayed should replace his brother as Ruler and carry out his vision of developing the country. On [[August 6]], [[1966]], with the assistance of the British, Sheikh Zayed became the new ruler. See generally, Al-Fahim, M, ''From Rags to Riches: A Story of Abu Dhabi'', Chapter Six (London Centre of Arab Studies, 1995), ISBN 1 900404 00 1.
1243
1244 With the announcement by Britain in 1968 that it would withdraw from the Gulf area by 1971, Sheikh Zayed became the main driving force behind the formation of the [[United Arab Emirates]].
1245
1246 After the Emirates gained independence in 1971, oil wealth continued to flow to the area and traditional [[Mudbrick|mud-brick]] [[hut]]s were rapidly replaced with [[banks]], boutiques and modern [[highrise]]s.
1247
1248 ==Current ruler==
1249 His Highness Sheikh [[Khalifa bin Zayed Al Nahayan]] is the hereditary [[Emir|emir]] and ruler of Abu Dhabi, as well as the current president of the [[United Arab Emirates]] (UAE).
1250
1251 ==Postal History==
1252 [[Image:Stamp_Abu_1967_40f-170px.jpg|right|170px|thumb|[[Shaikh]] [[Zayed bin Sultan Al Nahayan|Zaid]], [[1967]].]]
1253 Now part of the [[United Arab Emirates]], '''Abu Dhabi''' was formerly the largest of the seven sheikdoms which made up the [[Trucial States]] on the so-called [[Pirate Coast]] of eastern [[Arabia]] between [[Oman]] and [[Qatar]]. The [[Trucial States]] as a whole had an area of some 32,000 square miles of which Abu Dhabi alone had 26,000. The capital was the town of Abu Dhabi which is on an offshore island and was first settled in 1761.
1254
1255 The name [[Trucial States]] arose from [[treaties]] made with [[Great Britain]] in 1820 which ensured a condition of [[truce]] in the area and the suppression of [[piracy]] and [[slavery]]. The [[treaty]] expired on [[31 December]] [[1966]]. The decision to form the [[UAE]] was made on [[18 July]] [[1971]] and the [[federation]] was founded on [[1 August]] [[1972]], although the inaugural [[UAE]] stamps were not issued until [[1 January]] [[1973]].
1256
1257 [[petroleum|Oil]] production began on [[Das Island]] after [[prospecting]] during 1956-1960. [[Das Island]] is part of Abu Dhabi but lies well [[offshore]], about 100 miles north of the mainland. [[petroleum|Oil]] production on the [[mainland]] began in 1962. As a major [[petroleum|oil]] producer, Abu Dhabi soon acquired massive [[financial]] wealth. [[Investment]] in long-term [[construction]] projects and the establishment of a [[finance]] sector has led to the area becoming a centre of [[commerce]] which may well secure its lasting importance when the [[petroleum|oil]] resources are exhausted.
1258
1259 In December 1960, [[postage stamps]] of [[Compendium of postage stamp issuers (Brit - British)#British Postal Agencies in Eastern Arabia|British Postal Agencies in Eastern Arabia]] were supplied to the [[construction]] workers on [[Das Island]] but the [[postal service]] was administered via the agency office in [[Bahrain]]. The [[mail]] was also [[postmark]]ed [[Bahrain]] so there was no clear indication that a [[letter]] had come from [[Das Island]].
1260
1261 On [[30 March]] [[1963]], a British agency was opened in Abu Dhabi and issued the agency stamps after the sheik objected to the use of the [[Trucial States]] [[definitive]]s. [[Mail]] from [[Das Island]] continued to be administered by [[Bahrain]] but was now cancelled by an Abu Dhabi [[Trucial States]] [[postmark]].
1262
1263 The first Abu Dhabi stamps were a [[definitive series]] of [[30 March]] [[1964]] depicting [[Shaikh]] [[Shakhbut Bin-Sultan Al Nahyan]]. There were eleven values under the [[India|Indian]] [[currency]] that was used of 100 [[paisa|naye paise]] = 1 [[rupee]]. The range of values was 5 np to 10 [[rupee]]s. Despite the introduction of these [[definitive]]s, the British agency stamps remained valid in both Abu Dhabi and [[Das Island]] until the end of 1966 when they were withdrawn.
1264
1265 A [[post office]] was opened on [[Das Island]] on [[6 January]] [[1966]] and this ended the [[Bahrain]] service. [[Mail]] from [[Das Island]] was now handled within Abu Dhabi.
1266
1267 When the [[treaty]] with [[Great Britain]] expired at the end of 1966, Abu Dhabi introduced a new [[currency]] of 1000 [[fils]] = 1 [[dinar]] and took over its own postal administration, including the [[Das Island]] office. The earlier issues were subject to [[surcharge]]s in this [[currency]] and replacement [[definitive]]s were released depicting the new ruler [[Shaikh]] [[Zayed bin Sultan Al Nahayan|Zaid]]. Issues continued until introduction of [[UAE]] stamps in 1973.
1268
1269 In all, Abu Dhabi issued 95 stamps from 1964 to 1972, the final set being three views of the [[Dome of the Rock]] in [[Jerusalem]].
1270
1271 '''Source''': [http://www.jl.sl.btinternet.co.uk/stampsite/alpha/a/abudhabi.html Encyclopaedia of Postal History]
1272
1273 ==Climate==
1274 Sunny/blue skies can be expected through-out the year. The months June through September are generally hot and humid with temperatures averaging above 40ÂēC(110ÂēF). The weather is usually pleasant from October to May. January to February is cooler and may require the use of a light jacket. The oasis city of [[Al Ain]] enjoys cooler temperatures even through summer due to [[sporadic]] rainfall.
1275
1276 ==Transport==
1277 [[Abu Dhabi International Airport]] serves this city. The local time is [[GMT]] + 4 hours.
1278
1279 ==Trivia==
1280 * The cartoon cat [[Garfield]] would often put the kitten [[Nermal]] in a box and ship him to Abu Dhabi. A common phrase from Garfield is &quot;Abu Dhabi is where all the cute kittens go.&quot; The reason is that the author of Garfield found out through over-seas relations that the city of Abu Dhabi, and the majority of UAE, has a large amount of cats that roam wild. Many live around the suburbs.
1281
1282 == See also ==
1283 * [[Mina' Zayid]], the port of Abu Dhabi.
1284 * [[Al Ain]]
1285 * [[Marawah]]
1286 * [[Postal Authorities]]
1287 * [[Saudi Arabia]]
1288 * [[Transportation in the United Arab Emirates]]
1289
1290 ==External links==
1291 {{Wiktionary}}
1292 {{commons|Abu Dhabi}}
1293 * [http://www.jl.sl.btinternet.co.uk/stampsite/alpha/a/abudhabi.html Encyclopaedia of Postal History]
1294 * [http://www.thepersiangulf.org/cities/abudhabi.html Abu Dhabi, The Persian Gulf]
1295 * [http://www.abudhabi.com/ abudhabi.com]
1296 * [http://www.adcci-uae.com/ Abu Dhabi Chamber of Commerce and Industry]
1297 * [http://www.adnoc.com/ Abu Dhabi National Oil Company]
1298 * [http://www.spe.org/society/abudhabi/AbuDhabi-info.htm SPE history, with oil details]
1299 * [http://www.angelfire.com/ok/ABUDHABISTAMPS/ Abu Dhabi postal history]
1300 * [http://www.adias-uae.com ADIAS], Abu Dhabi Islands Archaeological Survey
1301 * [http://www.alloexpat.com/abu_dhabi_expat_forum/ Expatriates Forums in Abu Dhabi]
1302 * [http://www.timeoutabudhabi.com/ Time Out Abu Dhabi], Guide to life in Abu Dhabi
1303 *[http://www.careeruae.net/ Career UAE - Useful web site for the job seekers in Abu dabi/United Arab Emirates]
1304
1305 ===Non-Government Organisations===
1306 * [http://www.ansarburney.org/ Ansar Burney Trust] - human rights and anti-slavery organisation
1307 {{UAE}}
1308
1309 [[Category:Capitals in Asia]]
1310 [[Category:Cities in the United Arab Emirates]]
1311 [[Category:Emirates]]
1312 [[Category:Coastal cities]]
1313 [[Category:Philately by country]]
1314
1315 [[ar:ØŖبŲˆØ¸Ø¨ŲŠ]]
1316 [[bg:АйŅƒ Даби]]
1317 [[bs:Abu Dhabi]]
1318 [[ca:Abu Dhabi]]
1319 [[da:Abu Dhabi]]
1320 [[de:Abu Dhabi]]
1321 [[et:Abu Dhabi emiraat]]
1322 [[es:Abu Dhabi]]
1323 [[eo:Abu-Dabio]]
1324 [[fr:Abu Dhabi]]
1325 [[gl:Emirato de Abu Dabi]]
1326 [[ko:ė•„ëļ€ë‹¤ëš„]]
1327 [[io:Abu Dhabi]]
1328 [[id:Abu Dhabi]]
1329 [[is:AbÃē Dabí]]
1330 [[it:Abu Dhabi]]
1331 [[he:אבו דאבי]]
1332 [[lt:Abu Dabis]]
1333 [[nl:Abu Dhabi]]
1334 [[ja:ã‚ĸブダビ]]
1335 [[no:Abu Dhabi]]
1336 [[nn:Abu Dhabi]]
1337 [[pl:Abu Zabi]]
1338 [[pt:Abu Dhabi]]
1339 [[ru:АйŅƒ-Даби]]
1340 [[simple:Abu Dhabi]]
1341 [[sk:AbÃē Zabí (mesto)]]
1342 [[fi:Abu Dhabi]]
1343 [[sv:Abu Dhabi]]
1344 [[uk:АйŅƒ-ДабŅ–]]
1345 [[zh:é˜ŋ布扎比]]</text>
1346 </revision>
1347 </page>
1348 <page>
1349 <title>AardvarK</title>
1350 <id>44</id>
1351 <revision>
1352 <id>15898972</id>
1353 <timestamp>2002-02-25T15:43:11Z</timestamp>
1354 <contributor>
1355 <ip>Conversion script</ip>
1356 </contributor>
1357 <minor />
1358 <comment>Automated conversion</comment>
1359 <text xml:space="preserve">#REDIRECT [[Aardvark]]
1360 </text>
1361 </revision>
1362 </page>
1363 <page>
1364 <title>AbacuS</title>
1365 <id>46</id>
1366 <revision>
1367 <id>15898973</id>
1368 <timestamp>2002-02-25T15:43:11Z</timestamp>
1369 <contributor>
1370 <ip>Conversion script</ip>
1371 </contributor>
1372 <minor />
1373 <comment>Automated conversion</comment>
1374 <text xml:space="preserve">#REDIRECT [[Abacus]]
1375 </text>
1376 </revision>
1377 </page>
1378 <page>
1379 <title>AbalonE</title>
1380 <id>47</id>
1381 <revision>
1382 <id>15898974</id>
1383 <timestamp>2002-02-25T15:43:11Z</timestamp>
1384 <contributor>
1385 <ip>Conversion script</ip>
1386 </contributor>
1387 <minor />
1388 <comment>Automated conversion</comment>
1389 <text xml:space="preserve">#REDIRECT [[Abalone]]
1390 </text>
1391 </revision>
1392 </page>
1393 <page>
1394 <title>AbbadideS</title>
1395 <id>48</id>
1396 <revision>
1397 <id>15898975</id>
1398 <timestamp>2002-10-09T13:39:34Z</timestamp>
1399 <contributor>
1400 <username>Magnus Manske</username>
1401 <id>4</id>
1402 </contributor>
1403 <minor />
1404 <comment>#REDIRECT [[Abbadid]]</comment>
1405 <text xml:space="preserve">#REDIRECT [[Abbadid]]</text>
1406 </revision>
1407 </page>
1408 <page>
1409 <title>AbbesS</title>
1410 <id>49</id>
1411 <revision>
1412 <id>15898976</id>
1413 <timestamp>2002-02-25T15:43:11Z</timestamp>
1414 <contributor>
1415 <ip>Conversion script</ip>
1416 </contributor>
1417 <minor />
1418 <comment>Automated conversion</comment>
1419 <text xml:space="preserve">#REDIRECT [[Abbess]]
1420 </text>
1421 </revision>
1422 </page>
1423 <page>
1424 <title>AbbevilleFrance</title>
1425 <id>50</id>
1426 <revision>
1427 <id>15898977</id>
1428 <timestamp>2003-05-15T03:16:46Z</timestamp>
1429 <contributor>
1430 <username>Minesweeper</username>
1431 <id>7279</id>
1432 </contributor>
1433 <minor />
1434 <comment>fix double redir</comment>
1435 <text xml:space="preserve">#REDIRECT [[Abbeville]]</text>
1436 </revision>
1437 </page>
1438 <page>
1439 <title>AbbeY</title>
1440 <id>51</id>
1441 <revision>
1442 <id>15898978</id>
1443 <timestamp>2002-05-19T16:35:31Z</timestamp>
1444 <contributor>
1445 <username>AxelBoldt</username>
1446 <id>2</id>
1447 </contributor>
1448 <comment>*fixing redirect</comment>
1449 <text xml:space="preserve">#REDIRECT [[Abbey]]
1450 </text>
1451 </revision>
1452 </page>
1453 <page>
1454 <title>AbboT</title>
1455 <id>52</id>
1456 <revision>
1457 <id>15898979</id>
1458 <timestamp>2002-02-25T15:43:11Z</timestamp>
1459 <contributor>
1460 <ip>Conversion script</ip>
1461 </contributor>
1462 <minor />
1463 <comment>Automated conversion</comment>
1464 <text xml:space="preserve">#REDIRECT [[Abbot]]
1465 </text>
1466 </revision>
1467 </page>
1468 <page>
1469 <title>Abbreviations</title>
1470 <id>53</id>
1471 <revision>
1472 <id>15898980</id>
1473 <timestamp>2002-02-25T15:43:11Z</timestamp>
1474 <contributor>
1475 <ip>Conversion script</ip>
1476 </contributor>
1477 <minor />
1478 <comment>Automated conversion</comment>
1479 <text xml:space="preserve">#REDIRECT [[Abbreviation]]
1480 </text>
1481 </revision>
1482 </page>
1483 <page>
1484 <title>AtlasShrugged</title>
1485 <id>54</id>
1486 <revision>
1487 <id>15898981</id>
1488 <timestamp>2002-04-01T06:26:22Z</timestamp>
1489 <contributor>
1490 <username>Magnus Manske</username>
1491 <id>4</id>
1492 </contributor>
1493 <comment>No edit; Are all the subpages moved to &amp;quot;Atlas shrugged&amp;quot; (with space)? If they are, the old ones should be deleted (see orphans)!</comment>
1494 <text xml:space="preserve">#REDIRECT [[Atlas Shrugged]]
1495 </text>
1496 </revision>
1497 </page>
1498 <page>
1499 <title>AchillEus</title>
1500 <id>55</id>
1501 <revision>
1502 <id>15898982</id>
1503 <timestamp>2002-02-25T15:43:11Z</timestamp>
1504 <contributor>
1505 <ip>Conversion script</ip>
1506 </contributor>
1507 <minor />
1508 <comment>Automated conversion</comment>
1509 <text xml:space="preserve">#REDIRECT [[Achilles]]
1510 </text>
1511 </revision>
1512 </page>
1513 <page>
1514 <title>ArtificialLanguages</title>
1515 <id>56</id>
1516 <revision>
1517 <id>39218442</id>
1518 <timestamp>2006-02-11T16:18:58Z</timestamp>
1519 <contributor>
1520 <username>Nikai</username>
1521 <id>9759</id>
1522 </contributor>
1523 <comment>R CamelCase</comment>
1524 <text xml:space="preserve">#REDIRECT [[Constructed language]] {{R CamelCase}}</text>
1525 </revision>
1526 </page>
1527 <page>
1528 <title>AtlasShruggedCharacters</title>
1529 <id>58</id>
1530 <revision>
1531 <id>15898984</id>
1532 <timestamp>2003-03-13T02:57:44Z</timestamp>
1533 <contributor>
1534 <username>CatherineMunro</username>
1535 <id>8316</id>
1536 </contributor>
1537 <minor />
1538 <comment>#REDIRECT [[Characters in Atlas Shrugged]]</comment>
1539 <text xml:space="preserve">#REDIRECT [[Characters in Atlas Shrugged]]</text>
1540 </revision>
1541 </page>
1542 <page>
1543 <title>AtlasShruggedCompanies</title>
1544 <id>59</id>
1545 <revision>
1546 <id>15898985</id>
1547 <timestamp>2003-03-13T23:05:33Z</timestamp>
1548 <contributor>
1549 <username>Ams80</username>
1550 <id>7543</id>
1551 </contributor>
1552 <minor />
1553 <comment>Redirecting</comment>
1554 <text xml:space="preserve">#REDIRECT [[Companies in Atlas Shrugged]]</text>
1555 </revision>
1556 </page>
1557 <page>
1558 <title>AyersMusicPublishingCompany</title>
1559 <id>60</id>
1560 <revision>
1561 <id>15898986</id>
1562 <timestamp>2003-03-19T13:36:26Z</timestamp>
1563 <contributor>
1564 <username>Ams80</username>
1565 <id>7543</id>
1566 </contributor>
1567 <minor />
1568 <comment>#REDIRECT [[Companies in Atlas Shrugged]]</comment>
1569 <text xml:space="preserve">#REDIRECT [[Companies in Atlas Shrugged]]</text>
1570 </revision>
1571 </page>
1572 <page>
1573 <title>AtlasShruggedPlaces</title>
1574 <id>61</id>
1575 <revision>
1576 <id>15898987</id>
1577 <timestamp>2003-03-13T15:07:10Z</timestamp>
1578 <contributor>
1579 <username>Ams80</username>
1580 <id>7543</id>
1581 </contributor>
1582 <minor />
1583 <comment>Redirecting redirect</comment>
1584 <text xml:space="preserve">#REDIRECT [[Places in Atlas Shrugged]]</text>
1585 </revision>
1586 </page>
1587 <page>
1588 <title>AtlasShruggedThings</title>
1589 <id>62</id>
1590 <revision>
1591 <id>15898988</id>
1592 <timestamp>2003-03-20T12:54:37Z</timestamp>
1593 <contributor>
1594 <username>Ams80</username>
1595 <id>7543</id>
1596 </contributor>
1597 <minor />
1598 <comment>#REDIRECT [[Things in Atlas Shrugged]]</comment>
1599 <text xml:space="preserve">#REDIRECT [[Things in Atlas Shrugged]]</text>
1600 </revision>
1601 </page>
1602 <page>
1603 <title>AfricanAmericanPeople</title>
1604 <id>241</id>
1605 <revision>
1606 <id>37661965</id>
1607 <timestamp>2006-02-01T11:35:06Z</timestamp>
1608 <contributor>
1609 <username>Eskimbot</username>
1610 <id>477460</id>
1611 </contributor>
1612 <minor />
1613 <comment>Robot: Fixing double redirect</comment>
1614 <text xml:space="preserve">#REDIRECT [[African American]]</text>
1615 </revision>
1616 </page>
1617 <page>
1618 <title>AdolfHitler</title>
1619 <id>242</id>
1620 <revision>
1621 <id>15898991</id>
1622 <timestamp>2002-02-25T15:43:11Z</timestamp>
1623 <contributor>
1624 <ip>Conversion script</ip>
1625 </contributor>
1626 <minor />
1627 <comment>Automated conversion</comment>
1628 <text xml:space="preserve">#REDIRECT [[Adolf Hitler]]
1629 </text>
1630 </revision>
1631 </page>
1632 <page>
1633 <title>AbdomeN</title>
1634 <id>244</id>
1635 <revision>
1636 <id>15898992</id>
1637 <timestamp>2002-02-25T15:43:11Z</timestamp>
1638 <contributor>
1639 <ip>Conversion script</ip>
1640 </contributor>
1641 <minor />
1642 <comment>Automated conversion</comment>
1643 <text xml:space="preserve">#REDIRECT [[Abdomen]]
1644 </text>
1645 </revision>
1646 </page>
1647 <page>
1648 <title>AbdominalSurgery</title>
1649 <id>246</id>
1650 <revision>
1651 <id>15898993</id>
1652 <timestamp>2002-02-25T15:43:11Z</timestamp>
1653 <contributor>
1654 <ip>Conversion script</ip>
1655 </contributor>
1656 <minor />
1657 <comment>Automated conversion</comment>
1658 <text xml:space="preserve">#REDIRECT [[Abdominal surgery]]
1659 </text>
1660 </revision>
1661 </page>
1662 <page>
1663 <title>AbeceDarians</title>
1664 <id>247</id>
1665 <revision>
1666 <id>15898994</id>
1667 <timestamp>2002-02-25T15:43:11Z</timestamp>
1668 <contributor>
1669 <ip>Conversion script</ip>
1670 </contributor>
1671 <minor />
1672 <comment>Automated conversion</comment>
1673 <text xml:space="preserve">#REDIRECT [[Abecedarian]]
1674 </text>
1675 </revision>
1676 </page>
1677 <page>
1678 <title>AbeL</title>
1679 <id>248</id>
1680 <revision>
1681 <id>30807934</id>
1682 <timestamp>2005-12-10T09:01:43Z</timestamp>
1683 <contributor>
1684 <username>Spiffy sperry</username>
1685 <id>79741</id>
1686 </contributor>
1687 <comment>fix double redirect - [[Special:DoubleRedirects|click here to help]]</comment>
1688 <text xml:space="preserve">#REDIRECT [[Cain and Abel]]</text>
1689 </revision>
1690 </page>
1691 <page>
1692 <title>AbensbergGermany</title>
1693 <id>249</id>
1694 <revision>
1695 <id>15898996</id>
1696 <timestamp>2002-02-25T15:43:11Z</timestamp>
1697 <contributor>
1698 <ip>Conversion script</ip>
1699 </contributor>
1700 <minor />
1701 <comment>Automated conversion</comment>
1702 <text xml:space="preserve">#REDIRECT [[Abensberg]]
1703 </text>
1704 </revision>
1705 </page>
1706 <page>
1707 <title>AberdeenSouthDakota</title>
1708 <id>251</id>
1709 <revision>
1710 <id>15898997</id>
1711 <timestamp>2002-08-17T11:23:12Z</timestamp>
1712 <contributor>
1713 <username>DavidLevinson</username>
1714 <id>1689</id>
1715 </contributor>
1716 <comment>fix link</comment>
1717 <text xml:space="preserve">#REDIRECT [[Aberdeen, South Dakota]]</text>
1718 </revision>
1719 </page>
1720 <page>
1721 <title>AardwolF</title>
1722 <id>252</id>
1723 <revision>
1724 <id>15898998</id>
1725 <timestamp>2002-02-25T15:43:11Z</timestamp>
1726 <contributor>
1727 <ip>Conversion script</ip>
1728 </contributor>
1729 <minor />
1730 <comment>Automated conversion</comment>
1731 <text xml:space="preserve">#REDIRECT [[Aardwolf]]
1732 </text>
1733 </revision>
1734 </page>
1735 <page>
1736 <title>AbadanIran</title>
1737 <id>253</id>
1738 <revision>
1739 <id>15898999</id>
1740 <timestamp>2003-11-08T12:12:19Z</timestamp>
1741 <contributor>
1742 <username>Minesweeper</username>
1743 <id>7279</id>
1744 </contributor>
1745 <minor />
1746 <comment>fix double redir</comment>
1747 <text xml:space="preserve">#REDIRECT [[Abadan]]</text>
1748 </revision>
1749 </page>
1750 <page>
1751 <title>ArthurKoestler</title>
1752 <id>254</id>
1753 <revision>
1754 <id>15899000</id>
1755 <timestamp>2002-02-25T15:43:11Z</timestamp>
1756 <contributor>
1757 <ip>Conversion script</ip>
1758 </contributor>
1759 <minor />
1760 <comment>Automated conversion</comment>
1761 <text xml:space="preserve">#REDIRECT [[Arthur Koestler]]
1762 </text>
1763 </revision>
1764 </page>
1765 <page>
1766 <title>AynRand</title>
1767 <id>255</id>
1768 <revision>
1769 <id>15899001</id>
1770 <timestamp>2002-02-25T15:43:11Z</timestamp>
1771 <contributor>
1772 <ip>Conversion script</ip>
1773 </contributor>
1774 <minor />
1775 <comment>Automated conversion</comment>
1776 <text xml:space="preserve">#REDIRECT [[Ayn Rand]]
1777 </text>
1778 </revision>
1779 </page>
1780 <page>
1781 <title>AlexanderTheGreat</title>
1782 <id>256</id>
1783 <revision>
1784 <id>15899002</id>
1785 <timestamp>2002-02-25T15:43:11Z</timestamp>
1786 <contributor>
1787 <ip>Conversion script</ip>
1788 </contributor>
1789 <minor />
1790 <comment>Automated conversion</comment>
1791 <text xml:space="preserve">#REDIRECT [[Alexander the Great]]
1792 </text>
1793 </revision>
1794 </page>
1795 <page>
1796 <title>AnchorageAlaska</title>
1797 <id>258</id>
1798 <revision>
1799 <id>15899003</id>
1800 <timestamp>2002-02-25T15:43:11Z</timestamp>
1801 <contributor>
1802 <ip>Conversion script</ip>
1803 </contributor>
1804 <minor />
1805 <comment>Automated conversion</comment>
1806 <text xml:space="preserve">#REDIRECT [[Anchorage, Alaska]]
1807 </text>
1808 </revision>
1809 </page>
1810 <page>
1811 <title>ArgumentForms</title>
1812 <id>259</id>
1813 <revision>
1814 <id>15899004</id>
1815 <timestamp>2002-04-07T01:40:05Z</timestamp>
1816 <contributor>
1817 <username>The Anome</username>
1818 <id>76</id>
1819 </contributor>
1820 <comment>#redirect [[Argument form]]</comment>
1821 <text xml:space="preserve">#redirect [[Argument form]]</text>
1822 </revision>
1823 </page>
1824 <page>
1825 <title>ArgumentsForTheExistenceOfGod</title>
1826 <id>260</id>
1827 <revision>
1828 <id>24813178</id>
1829 <timestamp>2005-10-05T14:22:00Z</timestamp>
1830 <contributor>
1831 <username>Kbdank71</username>
1832 <id>197953</id>
1833 </contributor>
1834 <comment>fix double redirect</comment>
1835 <text xml:space="preserve">#REDIRECT [[Existence of God]]</text>
1836 </revision>
1837 </page>
1838 <page>
1839 <title>APrioriAndAPosteriorKnowledge</title>
1840 <id>261</id>
1841 <revision>
1842 <id>17822768</id>
1843 <timestamp>2005-06-29T11:11:17Z</timestamp>
1844 <contributor>
1845 <username>Jni</username>
1846 <id>23999</id>
1847 </contributor>
1848 <minor />
1849 <comment>fix redir</comment>
1850 <text xml:space="preserve">#REDIRECT [[knowledge]]</text>
1851 </revision>
1852 </page>
1853 <page>
1854 <title>AnarchY</title>
1855 <id>263</id>
1856 <revision>
1857 <id>15899007</id>
1858 <timestamp>2002-11-05T13:28:51Z</timestamp>
1859 <contributor>
1860 <username>Tzartzam</username>
1861 <id>3624</id>
1862 </contributor>
1863 <minor />
1864 <comment>#REDIRECT [[Anarchy]]</comment>
1865 <text xml:space="preserve">#REDIRECT [[Anarchy]]</text>
1866 </revision>
1867 </page>
1868 <page>
1869 <title>AsciiArt</title>
1870 <id>264</id>
1871 <revision>
1872 <id>15899008</id>
1873 <timestamp>2002-10-09T13:40:04Z</timestamp>
1874 <contributor>
1875 <username>Magnus Manske</username>
1876 <id>4</id>
1877 </contributor>
1878 <minor />
1879 <comment>#REDIRECT [[ASCII art]]</comment>
1880 <text xml:space="preserve">#REDIRECT [[ASCII art]]</text>
1881 </revision>
1882 </page>
1883 <page>
1884 <title>AndreAgassi</title>
1885 <id>268</id>
1886 <revision>
1887 <id>15899010</id>
1888 <timestamp>2002-02-25T15:43:11Z</timestamp>
1889 <contributor>
1890 <ip>Conversion script</ip>
1891 </contributor>
1892 <minor />
1893 <comment>Automated conversion</comment>
1894 <text xml:space="preserve">#REDIRECT [[Andre Agassi]]
1895 </text>
1896 </revision>
1897 </page>
1898 <page>
1899 <title>AcademyAwards</title>
1900 <id>269</id>
1901 <revision>
1902 <id>41555330</id>
1903 <timestamp>2006-02-28T03:06:14Z</timestamp>
1904 <contributor>
1905 <username>Rdsmith4</username>
1906 <id>61329</id>
1907 </contributor>
1908 <comment>fix</comment>
1909 <text xml:space="preserve">#REDIRECT [[Academy Awards]]</text>
1910 </revision>
1911 </page>
1912 <page>
1913 <title>AcademyAwards/BestPicture</title>
1914 <id>270</id>
1915 <revision>
1916 <id>15899012</id>
1917 <timestamp>2002-07-12T20:44:53Z</timestamp>
1918 <contributor>
1919 <username>Koyaanis Qatsi</username>
1920 <id>90</id>
1921 </contributor>
1922 <comment>fix redirect</comment>
1923 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Picture]]</text>
1924 </revision>
1925 </page>
1926 <page>
1927 <title>AustriaLanguage</title>
1928 <id>271</id>
1929 <revision>
1930 <id>19178967</id>
1931 <timestamp>2005-07-19T21:19:49Z</timestamp>
1932 <contributor>
1933 <username>Jnc</username>
1934 <id>18024</id>
1935 </contributor>
1936 <minor />
1937 <comment>Why are people too lazy to fix dbl redirs when they move a page?</comment>
1938 <text xml:space="preserve">#REDIRECT [[Austrian German]]</text>
1939 </revision>
1940 </page>
1941 <page>
1942 <title>AcademicElitism</title>
1943 <id>272</id>
1944 <revision>
1945 <id>15899014</id>
1946 <timestamp>2002-02-25T15:43:11Z</timestamp>
1947 <contributor>
1948 <ip>Conversion script</ip>
1949 </contributor>
1950 <minor />
1951 <comment>Automated conversion</comment>
1952 <text xml:space="preserve">#REDIRECT [[Academic elitism]]
1953 </text>
1954 </revision>
1955 </page>
1956 <page>
1957 <title>AxiomOfChoice</title>
1958 <id>274</id>
1959 <revision>
1960 <id>15899015</id>
1961 <timestamp>2002-02-25T15:43:11Z</timestamp>
1962 <contributor>
1963 <ip>Conversion script</ip>
1964 </contributor>
1965 <minor />
1966 <comment>Automated conversion</comment>
1967 <text xml:space="preserve">#REDIRECT [[Axiom of choice]]
1968 </text>
1969 </revision>
1970 </page>
1971 <page>
1972 <title>AmericanFootball</title>
1973 <id>276</id>
1974 <revision>
1975 <id>15899016</id>
1976 <timestamp>2002-02-25T15:43:11Z</timestamp>
1977 <contributor>
1978 <ip>Conversion script</ip>
1979 </contributor>
1980 <minor />
1981 <comment>Automated conversion</comment>
1982 <text xml:space="preserve">#REDIRECT [[American football]]
1983 </text>
1984 </revision>
1985 </page>
1986 <page>
1987 <title>AmericA</title>
1988 <id>278</id>
1989 <revision>
1990 <id>19987901</id>
1991 <timestamp>2005-07-31T16:10:07Z</timestamp>
1992 <contributor>
1993 <username>Paddu</username>
1994 <id>6949</id>
1995 </contributor>
1996 <minor />
1997 <comment>{{R from CamelCase}}</comment>
1998 <text xml:space="preserve">#REDIRECT [[America]] {{R from CamelCase}}</text>
1999 </revision>
2000 </page>
2001 <page>
2002 <title>AnnaKournikova</title>
2003 <id>279</id>
2004 <revision>
2005 <id>15899018</id>
2006 <timestamp>2002-02-25T15:43:11Z</timestamp>
2007 <contributor>
2008 <ip>Conversion script</ip>
2009 </contributor>
2010 <minor />
2011 <comment>Automated conversion</comment>
2012 <text xml:space="preserve">#REDIRECT [[Anna Kournikova]]
2013 </text>
2014 </revision>
2015 </page>
2016 <page>
2017 <title>AndorrA</title>
2018 <id>280</id>
2019 <revision>
2020 <id>15899019</id>
2021 <timestamp>2002-02-25T15:43:11Z</timestamp>
2022 <contributor>
2023 <ip>Conversion script</ip>
2024 </contributor>
2025 <minor />
2026 <comment>Automated conversion</comment>
2027 <text xml:space="preserve">#REDIRECT [[Andorra]]
2028 </text>
2029 </revision>
2030 </page>
2031 <page>
2032 <title>AndorrA/History</title>
2033 <id>281</id>
2034 <revision>
2035 <id>15899020</id>
2036 <timestamp>2002-02-25T15:43:11Z</timestamp>
2037 <contributor>
2038 <username>LA2</username>
2039 <id>445</id>
2040 </contributor>
2041 <comment>*</comment>
2042 <text xml:space="preserve">#REDIRECT [[History of Andorra]]
2043
2044 </text>
2045 </revision>
2046 </page>
2047 <page>
2048 <title>AndorrA/People</title>
2049 <id>283</id>
2050 <revision>
2051 <id>15899021</id>
2052 <timestamp>2002-08-20T15:38:36Z</timestamp>
2053 <contributor>
2054 <username>Koyaanis Qatsi</username>
2055 <id>90</id>
2056 </contributor>
2057 <text xml:space="preserve">#REDIRECT [[Demographics of Andorra]]</text>
2058 </revision>
2059 </page>
2060 <page>
2061 <title>AndorrA/Government</title>
2062 <id>284</id>
2063 <revision>
2064 <id>15899022</id>
2065 <timestamp>2002-10-09T13:41:32Z</timestamp>
2066 <contributor>
2067 <username>Magnus Manske</username>
2068 <id>4</id>
2069 </contributor>
2070 <minor />
2071 <comment>#REDIRECT [[Politics of Andorra]]</comment>
2072 <text xml:space="preserve">#REDIRECT [[Politics of Andorra]]</text>
2073 </revision>
2074 </page>
2075 <page>
2076 <title>AndorrA/Economy</title>
2077 <id>285</id>
2078 <revision>
2079 <id>15899023</id>
2080 <timestamp>2002-10-09T13:41:53Z</timestamp>
2081 <contributor>
2082 <username>Magnus Manske</username>
2083 <id>4</id>
2084 </contributor>
2085 <minor />
2086 <comment>#REDIRECT [[Economy of Andorra]]</comment>
2087 <text xml:space="preserve">#REDIRECT [[Economy of Andorra]]</text>
2088 </revision>
2089 </page>
2090 <page>
2091 <title>AustroAsiaticLanguages</title>
2092 <id>287</id>
2093 <revision>
2094 <id>15899025</id>
2095 <timestamp>2005-05-01T07:12:45Z</timestamp>
2096 <contributor>
2097 <ip>212.100.250.225</ip>
2098 </contributor>
2099 <comment>[[WP:WS|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
2100 <text xml:space="preserve">#REDIRECT [[Austro-Asiatic languages]]</text>
2101 </revision>
2102 </page>
2103 <page>
2104 <title>ActorS</title>
2105 <id>288</id>
2106 <revision>
2107 <id>15899026</id>
2108 <timestamp>2002-09-01T17:22:32Z</timestamp>
2109 <contributor>
2110 <username>Bryan Derksen</username>
2111 <id>66</id>
2112 </contributor>
2113 <minor />
2114 <comment>bypassing double redirect</comment>
2115 <text xml:space="preserve">#REDIRECT [[Actor]]</text>
2116 </revision>
2117 </page>
2118 <page>
2119 <title>ActresseS</title>
2120 <id>289</id>
2121 <revision>
2122 <id>15899027</id>
2123 <timestamp>2003-11-08T12:13:11Z</timestamp>
2124 <contributor>
2125 <username>Minesweeper</username>
2126 <id>7279</id>
2127 </contributor>
2128 <minor />
2129 <comment>fix double redir</comment>
2130 <text xml:space="preserve">#REDIRECT [[List of female movie actors]]</text>
2131 </revision>
2132 </page>
2133 <page>
2134 <title>A</title>
2135 <id>290</id>
2136 <revision>
2137 <id>42119076</id>
2138 <timestamp>2006-03-03T23:14:28Z</timestamp>
2139 <contributor>
2140 <username>Waggers</username>
2141 <id>878293</id>
2142 </contributor>
2143 <minor />
2144 <comment>Revert to revision 41533857 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
2145 <text xml:space="preserve">{{AZ|uc=A|lc=a}}
2146 {{wiktionarypar2|A|a}}
2147 The letter '''A''' is the first letter in the [[Latin alphabet]]. Its name in [[English language|English]] is ''a'', plural ''aes,'' ''a's,'' or ''as''.
2148
2149 ==History==
2150 The letter A probably started as a [[pictogram]] of an [[ox]] head in [[Egyptian hieroglyph]]s or the [[Proto-semitic alphabet]].
2151
2152 {| align=&quot;center&quot; cellspacing=&quot;10&quot;
2153 |- align=&quot;center&quot;
2154 |[[Image:EgyptianA-01.png|Egyptian hieroglyphic ox head]]&lt;br /&gt;Egyptian hieroglyph&lt;br /&gt;ox head
2155 |[[Image:Proto-semiticA-01.png|Proto-semitic ox head]]&lt;br /&gt;Proto-semitic&lt;br /&gt;ox head
2156 |[[Image:PhoenicianA-01.png|Phoenician aleph]]&lt;br /&gt;Phoenician ''aleph''
2157 |[[Image:GreekA-01.png|Greek alpha]]&lt;br /&gt;Greek ''alpha''
2158 |[[Image:EtruscanA-01.png|Etruscan A]]&lt;br /&gt;Etruscan A
2159 |[[Image:RomanA-01.png|Roman A]]&lt;br /&gt;Roman A
2160 |}
2161
2162 By [[1600 BC]], the [[Phoenician alphabet]]'s letter had a linear form that served as the basis for all later forms. Its name must have corresponded closely to the [[Hebrew alphabet|Hebrew]] [[Aleph (letter)|aleph]]. The name is also similar to the Arabic [[Alif|alif.]]
2163
2164 When the [[Ancient Greece|Ancient Greeks]] adopted the alphabet, they had no use for the [[glottal stop]] that the letter had denoted in Phoenician and other [[Semitic languages]], so they used the sign for the vowel {{IPA|/&amp;#593;/}}, and changed its name to [[alpha (letter)|alpha]]. In the earliest Greek inscriptions, dating to the [[8th century BC]], the letter rests upon its side, but in the [[Greek alphabet]] of later times it generally resembles the modern capital letter, although many local varieties can be distinguished by the shortening of one leg, or by the angle at which the cross line is set.
2165
2166 The [[Etruscans]] brought the Greek alphabet to what was [[Italy]] and left the letter unchanged. The Romans later adopted the [[Old Italic alphabet|Etruscan alphabet]] to write [[Latin]], and the resulting letter was preserved in the modern [[Latin alphabet]] used to write many languages, including [[English language|English]].
2167
2168 The letter has two [[minuscule]] (lower-case) forms. The form used in most current handwriting consists of a circle and vertical stroke. Most printed material uses a form consisting of a small loop with an arc over it. Both derive from the majuscule (capital) form. In Greek handwriting, it was common to join the left leg and horizontal stroke into a single loop, as demonstrated by the Uncial version below. Many fonts then made the right leg vertical. In some of these, the [[serif]] that began the right leg stroke developed into an arc, resulting in the printed form, while in others it was dropped, resulting in the modern handwritten form.
2169
2170 {| align=&quot;center&quot; cellspacing=&quot;10&quot;
2171 |- align=&quot;center&quot;
2172 |[[Image:BlackletterA-01.png|Blackletter A]]&lt;br /&gt;[[Blackletter]] A
2173 |[[Image:UncialA-01.png|Uncial A]]&lt;br /&gt;[[Uncial]] A
2174 |[[Image:Acap.png|Another Capital A]]
2175 |- align=&quot;center&quot;
2176 |[[Image:ModernRomanA-01.png|Modern Roman A]]&lt;br /&gt;Modern Roman A
2177 |[[Image:ModernItalicA-01.png|Modern Italic A]]&lt;br /&gt;Modern Italic A
2178 |[[Image:ModernScriptA-01.png|Modern Script A]]&lt;br /&gt;Modern Script A
2179 |}
2180
2181 ==Usage==
2182 In [[English language|English]], the letter A by itself usually denotes the [[lax open front unrounded vowel]] ({{IPA2|ÃĻ}}) as in ''pad'', the [[open back unrounded vowel]] ({{IPA2|ɑ}}) as in ''father'', or, in concert with a later orthographic [[e]], the diphthong {{IPA2|eʲ}} (though the pronunciation varies with the dialect) as in ''ace'', due to effects of the [[Great vowel shift]].
2183
2184 In most other languages that use the Latin alphabet, the letter A denotes either an [[open back unrounded vowel]] ({{IPA2|ɑ}}), or an [[open central unrounded vowel]] ({{IPA2|a}}).
2185
2186 In the [[International Phonetic Alphabet]], variants of the letter A denote various [[vowel]]s. In [[X-SAMPA]], capital A denotes the [[open back unrounded vowel]] and lowercase a denotes the [[open front unrounded vowel]].
2187
2188 A also is the English [[indefinite article]], extended to [[an]] before a vowel.
2189
2190 ==Codes for computing==
2191 {{Letter
2192 |NATO=Alpha
2193 |Morse=·–
2194 |B1=●
2195 |B2=○
2196 |B3=○
2197 |B4=○
2198 |B5=○
2199 |B6=○
2200 }}
2201 In [[Unicode]] the [[majuscule|capital]] A is codepoint U+0041 and the [[minuscule|lowercase]] a is U+0061.
2202
2203 In [[Hexadecimal|Hex]], A is the character used to represent decimal 10, or in [[Binary numeral system|binary]], 01010
2204
2205 The [[ASCII]] code for capital A is 65 and for lowercase a is 97; or in [[Binary numeral system|binary]] 01000001 and 01100001, correspondingly.
2206
2207 The [[EBCDIC]] code for capital A is 193 and for lowercase a is 129.
2208
2209 The [[numeric character reference]]s in [[HTML]] and [[XML]] are &quot;&lt;tt&gt;&amp;amp;#65;&lt;/tt&gt;&quot; and &quot;&lt;tt&gt;&amp;amp;#97;&lt;/tt&gt;&quot; for upper and lower case respectively.
2210
2211 ==Meanings for '''A'''==
2212 * As a word; see [[A, an]]
2213 * In [[United States|American]] [[Major League Baseball]], the [[Oakland Athletics]] are often simply referred to as the &quot;'''A's'''.&quot;
2214 * In [[astronomy]],
2215 ** A stands for a January 1 through 15 discovery, in the provisional designation of a comet (e.g. [[C/1760 A1]], the Great Comet of 1760) or asteroid (e.g. {{mpl|(4099) 1988 AB|5}})
2216 ** ''a'' is often used to denote the [[semi-major axis]] of an orbit
2217 * In [[biochemistry]], A is the symbol for [[alanine]] and [[adenosine]].
2218 * Brassiere [[cup size]] '''A'''
2219 * In [[calendar]]s, A is often an abbreviation for the [[month]]s [[April]] and [[August]].
2220 * In [[computing]],
2221 ** &lt;tt&gt;&amp;lt;a&amp;gt;&lt;/tt&gt; is the [[HTML element#links and anchors|HTML element for an anchor tag]].
2222 ** In Windows, Ctrl-A, and Mac OS, Command-A, selects all the text in the document, or all the pixels of an image.
2223 ** A sometimes represents the set of all alphabetic characters within [[character string (computer science)|string]] patterns.
2224 ** A:\ is the conventional address of the first floppy disk drive in [[CP/M]]-based [[operating system]]s such as [[DOS]].
2225 ** A is a security division (&quot;Verified Protection&quot;) in the [[TCSEC]].
2226 * In [[education]], a [[Grade (education)|grade]] of '''A''' typically represents the highest score that students can achieve. This is sometimes coupled with a [[plus]]/[[minus]] sign, as in '''A+''' or '''A-''', or a number, as in '''A1'''. It is occasionally a grade one level below '''A*''' (pronounced &quot;A Star&quot;).
2227 * In [[electronics]],
2228 ** [[A battery|A]] is a standard size of [[battery (electricity)|battery]].
2229 ** A refers to the Anode, or filament, component of a [[vacuum tube]].
2230 * In [[English language|English]], the word ''a'' is an indefinite [[article (grammar)|article]], see [[A, an]]
2231 * In [[Esperanto#Grammar|Esperanto]], -a is the adjectival/attributive ending; A is commonly an abbreviation meaning English (language).
2232 * In [[fiction]], the letter worn by Hester Prynne marking her as an adultress in the [[Nathaniel Hawthorne]] novel ''[[The Scarlet Letter]]'' was an ''A''.
2233 * In [[film]], ''A'' is an Italian film made in [[1969]]; see ''[[A (film)]]''.
2234 * In [[finance]], A is the U.S. [[ticker symbol]] for [[Agilent Technologies]].
2235 * In [[game]]s, the letter A is used to mark each of the [[Ace]]s in a deck of [[playing card]]s.
2236 * In [[Greek language|Greek]], a- is a [[prefix]] (''alpha privativum'') meaning &quot;not&quot; or &quot;devoid of,&quot; used in many borrowed words in [[English language|English]], [[German language|German]] and [[Romance languages]].
2237 * In [[India]] ''A'' is movie rating, given to those intended to be seen only by adults.
2238 * In [[List of international license plate codes|international licence plate codes]], A stands for [[Austria]].
2239 * In [[paper size|international paper sizes]], A is a series of sizes with an [[Paper size|aspect ratio]] of roughly 70% width to height, with A4 being an example popular size.
2240 * In [[logic]],
2241 **the letter A is used as a symbol for the universal affirmative proposition in the general form &quot;all x is y.&quot; The letters I, E, and O are used respectively for the particular affirmative &quot;some x is y,&quot; the universal negative &quot;no x is y,&quot; and the particular negative &quot;some x is not y.&quot; The use of these letters is generally derived from the vowels of the two [[Latin]] [[verb]]s ''affirmo'' (or AIo), &quot;I assert,&quot; and ''nego'', &quot;I deny.&quot; The use of the symbols dates from the [[13th century]], though some authorities trace their origin to the Greek logicians.
2242 **In [[symbolic logic]], the symbol &amp;forall; (an inverted letter A) is the [[universal quantifier]].
2243 * In [[mathematics]],
2244 **A is often used as a [[numerical digit|digit]] meaning ''[[10 (number)|ten]]'' in [[hexadecimal]] and other positional [[numeral system]]s with a [[radix]] of 11 or greater,
2245 **[[blackboard bold]] &lt;math&gt;\mathbb{A}&lt;/math&gt; (&amp;#x1D504; in [[Unicode]]) sometimes represents the [[algebraic numbers]].
2246 **In the [[On-Line Encyclopedia of Integer Sequences]], each sequence has an ID consisting of the letter A and six base 10 digits.
2247 * In [[medicine]], '''A''' (also, '''A+''' or '''A-''') is one of the human [[blood type]]s.
2248 * In [[music]],
2249 ** A is a [[Pitch class]] or [[note]], see [[A (musical note)]].
2250 ** A, or &quot;side A,&quot; refers to the top or first side of a [[vinyl record]].
2251 ** ''A'' is a [[British rock]] band; see ''[[A (band)]]''.
2252 ** ''A'' is an album by [[Jethro Tull (band)|Jethro Tull]]; see ''[[A (album)]]''.
2253 * In [[nutrition]], A is a [[vitamin]].
2254 * In [[photography]], most SLR cameras use A to signify aperture priority mode, where the user sets the aperture and the camera determines the shutter speed.
2255 * In [[poetry]], [[A (poem)|A]] is the major work of influential 20th century author [[Louis Zukofsky]].
2256 * In [[political science|political theory]], a circumscribed &quot;A&quot; is an [[anarchist symbolism|anarchist symbol]].
2257 * As the first letter of a [[postal code]],
2258 ** In [[Canada]], A stands for [[Newfoundland and Labrador]].
2259 * On the serial numbers of [[United States dollar]]s, A identifies the [[Federal Reserve Bank of Boston]].
2260 * In the [[SI]] system of units,
2261 ** A is the symbol for the [[ampere]] or amp, the [[SI base unit]] of [[electric current]].
2262 ** a, [[atto]], is the [[SI prefix]] meaning 10&lt;sup&gt;-18&lt;/sup&gt;
2263 ** a is the symbol for the [[are]], a unit of surface area equal to 100 [[square metre]]s.
2264 * As a [[timezone]], A is the military designation for [[Coordinated Universal Time]]+1, also known as CET or [[Central European Time]].
2265
2266 ==See also==
2267 {{Wikisource1911Enc|A}}
2268 {{Commons|A}}
2269 * [[Alpha (letter)|Alpha]]
2270 * [[A (Cyrillic)|Cyrillic A]]
2271 * &lt;big&gt;[[ÂĒ]]&lt;/big&gt;
2272 * [[À]]
2273 * [[Á]]
2274 * [[Â]]
2275 * [[Ã]]
2276 * [[Ä]] (Ae)
2277 * [[Å]] (Aa)
2278 * [[Æ]]
2279 * [[A-breve|&amp;#258;]]
2280 * [[A-ogonek|&amp;#260;]]
2281 * [[∀]]
2282 &lt;br clear=&quot;all&quot; /&gt;
2283
2284 {{AZsubnav}}
2285
2286
2287 [[Category:Latin letters]]
2288 [[Category:Vowels]]
2289
2290 [[als:A]]
2291 [[ar:A]]
2292 [[bs:A]]
2293 [[ca:A]]
2294 [[cs:A]]
2295 [[da:A]]
2296 [[de:A]]
2297 [[et:A]]
2298 [[el:A]]
2299 [[es:A]]
2300 [[eo:A]]
2301 [[fr:A]]
2302 [[gl:A]]
2303 [[ko:A]]
2304 [[hr:A]]
2305 [[io:A]]
2306 [[id:A]]
2307 [[it:A]]
2308 [[he:A]]
2309 [[kw:A]]
2310 [[la:A]]
2311 [[hu:A]]
2312 [[nl:A]]
2313 [[ja:A]]
2314 [[no:A]]
2315 [[nn:A]]
2316 [[pl:A]]
2317 [[pt:A]]
2318 [[ro:A]]
2319 [[ru:А (ĐąŅƒĐēва)]]
2320 [[sq:A]]
2321 [[scn:A]]
2322 [[simple:A]]
2323 [[sl:A]]
2324 [[sr:A (ĐģĐ°Ņ‚иĐŊиŅ‡ĐēĐž)]]
2325 [[fi:A]]
2326 [[sv:A]]
2327 [[tl:A]]
2328 [[vi:A]]
2329 [[tr:A]]
2330 [[yo:A]]
2331 [[zh:A]]</text>
2332 </revision>
2333 </page>
2334 <page>
2335 <title>AnarchoCapitalism</title>
2336 <id>291</id>
2337 <revision>
2338 <id>15899029</id>
2339 <timestamp>2002-02-25T15:43:11Z</timestamp>
2340 <contributor>
2341 <ip>Conversion script</ip>
2342 </contributor>
2343 <minor />
2344 <comment>Automated conversion</comment>
2345 <text xml:space="preserve">#REDIRECT [[Anarcho-capitalism]]
2346 </text>
2347 </revision>
2348 </page>
2349 <page>
2350 <title>AnarchoCapitalists</title>
2351 <id>293</id>
2352 <revision>
2353 <id>15899031</id>
2354 <timestamp>2002-10-09T13:47:21Z</timestamp>
2355 <contributor>
2356 <username>Magnus Manske</username>
2357 <id>4</id>
2358 </contributor>
2359 <minor />
2360 <comment>#REDIRECT [[anarcho-capitalism]]</comment>
2361 <text xml:space="preserve">#REDIRECT [[anarcho-capitalism]]</text>
2362 </revision>
2363 </page>
2364 <page>
2365 <title>ActressesS</title>
2366 <id>296</id>
2367 <revision>
2368 <id>15899034</id>
2369 <timestamp>2003-11-08T12:13:18Z</timestamp>
2370 <contributor>
2371 <username>Minesweeper</username>
2372 <id>7279</id>
2373 </contributor>
2374 <minor />
2375 <comment>fix double redir</comment>
2376 <text xml:space="preserve">#REDIRECT [[List of female movie actors]]</text>
2377 </revision>
2378 </page>
2379 <page>
2380 <title>AnarchisM/AnarchyTalk</title>
2381 <id>298</id>
2382 <revision>
2383 <id>15899036</id>
2384 <timestamp>2002-10-09T13:47:51Z</timestamp>
2385 <contributor>
2386 <username>Magnus Manske</username>
2387 <id>4</id>
2388 </contributor>
2389 <minor />
2390 <comment>#REDIRECT [[talk:Anarchism]]</comment>
2391 <text xml:space="preserve">#REDIRECT [[talk:Anarchism]]</text>
2392 </revision>
2393 </page>
2394 <page>
2395 <title>AnAmericanInParis</title>
2396 <id>299</id>
2397 <revision>
2398 <id>15899037</id>
2399 <timestamp>2002-05-19T16:44:20Z</timestamp>
2400 <contributor>
2401 <username>AxelBoldt</username>
2402 <id>2</id>
2403 </contributor>
2404 <comment>fix redir</comment>
2405 <text xml:space="preserve">#REDIRECT [[An American in Paris]]
2406 </text>
2407 </revision>
2408 </page>
2409 <page>
2410 <title>AutoMorphism</title>
2411 <id>301</id>
2412 <revision>
2413 <id>15899038</id>
2414 <timestamp>2002-02-25T15:43:11Z</timestamp>
2415 <contributor>
2416 <ip>Conversion script</ip>
2417 </contributor>
2418 <minor />
2419 <comment>Automated conversion</comment>
2420 <text xml:space="preserve">#REDIRECT [[Automorphism]]
2421
2422 </text>
2423 </revision>
2424 </page>
2425 <page>
2426 <title>ActionFilm</title>
2427 <id>302</id>
2428 <revision>
2429 <id>15899039</id>
2430 <timestamp>2002-08-04T00:46:33Z</timestamp>
2431 <contributor>
2432 <username>Maveric149</username>
2433 <id>62</id>
2434 </contributor>
2435 <minor />
2436 <text xml:space="preserve">#REDIRECT [[Action movie]]</text>
2437 </revision>
2438 </page>
2439 <page>
2440 <title>Alabama</title>
2441 <id>303</id>
2442 <revision>
2443 <id>42140365</id>
2444 <timestamp>2006-03-04T02:12:43Z</timestamp>
2445 <contributor>
2446 <username>Gregski711</username>
2447 <id>704911</id>
2448 </contributor>
2449 <comment>/* Political Climate */</comment>
2450 <text xml:space="preserve">{{Otheruses1|the U.S. State}}
2451 &lt;div style=&quot;float:right; clear:right; width:300px; margin-left: 1em;&quot;&gt;
2452 {{US Confederate state |
2453 Name = Alabama |
2454 Fullname = State of Alabama |
2455 Flag = Flag of Alabama.svg |
2456 Flaglink = [[Flag of Alabama]] |
2457 Seal = Alabama state seal.png|
2458 Map = Map_of_USA_highlighting_Alabama.png |
2459 Nickname = Camellia State, The Heart of Dixie[[#Notes|&amp;sup1;]], Yellowhammer State|
2460 Capital = [[Montgomery, Alabama|Montgomery]] |
2461 OfficialLang = [[English language|English]] |
2462 Languages = [[English language|English]] 96.7%, [[Spanish language|Spanish]] 2.2% |
2463 LargestCity = [[Birmingham, Alabama|Birmingham]] |
2464 Governor = [[Bob Riley (Alabama)|Bob Riley]] (R)|
2465 Senators = [[Richard Shelby]] (R)
2466 [[Jeff Sessions]] (R) |
2467 PostalAbbreviation = AL |
2468 AreaRank = 30&lt;sup&gt;th&lt;/sup&gt; |
2469 TotalArea = 52,423 mi²/135,775 |
2470 LandArea = 50,750 mi²/131,442 |
2471 WaterArea = 1,673 mi²/4,333 |
2472 PCWater = 3.19 |
2473 PopRank = 23&lt;sup&gt;rd&lt;/sup&gt; |
2474 2000Pop = 4,447,100 |
2475 DensityRank = 26&lt;sup&gt;th&lt;/sup&gt; |
2476 2000Density = 33.84 |
2477 AdmittanceOrder = 22&lt;sup&gt;nd&lt;/sup&gt; |
2478 AdmittanceDate = [[December 14]], [[1819]] |
2479 SecessionDate = [[January 11]], [[1861]] |
2480 ReadmittanceDate = [[July 14]], [[1868]] |
2481 TimeZone = [[Central Standard Time Zone|Central]]: [[Coordinated Universal Time|UTC]]-6/[[Daylight saving time|DST]]-5 |
2482 Latitude = 30°13'N to 35°N |
2483 Longitude = 84°51'W to 88°28'W |
2484 Width = 190 mi/306 |
2485 Length = 330 mi/531 |
2486 HighestElev = [[Mount Cheaha]] 2,408 ft/734 |
2487 MeanElev = 499 ft/152 |
2488 LowestElev = 0 ft/0 |
2489 ISOCode = US-AL |
2490 Website = www.alabama.gov
2491 }}
2492 [[[[image:AlaUrb.gif |thumb|center|250px|Alabama Cities and Urban Areas/Sprawl]]
2493 {| cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; style=&quot;float:right; clear:right; width:300px; margin:0 0 1em 1em;&quot; class=&quot;toccolours&quot;
2494 |'''[[List of U.S. state mottos|State motto]]'''||''[[Audemus jura nostra defendere]]''
2495 |-
2496 |'''[[List of U.S. state birds|State bird]]'''||[[Northern Flicker|Yellowhammer]]
2497 |-
2498 |'''[[List of U.S. state flowers|State flower]]'''||[[Camellia]]
2499 |-
2500 |'''[[List of U.S. state songs|State song]]'''||&quot;[[Alabama (song)|Alabama]]&quot;
2501 |-
2502 |'''[[List of U.S. state trees|State tree]]'''||[[Longleaf Pine]]
2503 |-
2504 |'''[[List of U.S. state spirits|State spirit]]'''||[[Conecuh Ridge Whiskey|Conecuh Ridge]]
2505 |-
2506 |'''[[List of U.S. state reptiles|State reptile]]'''||[[Red-bellied turtle]]
2507 |}
2508 &lt;/div&gt;
2509 '''Alabama''' is a [[U.S. state|state]] located in the [[Southern United States|Southern]] [[United States]].
2510
2511 ==History==
2512 ''Main article: [[History of Alabama]]''
2513
2514 The memory of the [[Native Americans in the United States|Native American]] presence is particularly strong in Alabama. Among Native American people once living in present Alabama were [[Alabama (people)|Alabama]] (Alibamu), [[Cherokee]], [[Chickasaw]], [[Choctaw]], [[Creek people|Creek]], [[Koasati]], and [[Mobile (people)|Mobile]]. Trade with the Northeast via the [[Ohio River]] began during the Burial Mound Period ([[1000 BC]]-A.D. [[700]]) and continued until European contact. Meso-American influence is evident in the agrarian Mississippian culture that followed.
2515
2516 The [[France|French]] established the first [[Europe]]an settlement in the state with the establishment of [[Mobile, Alabama|Mobile]] in [[1702]]. Southern Alabama was French from [[1702]]&amp;ndash;[[1763]], part of British West Florida from [[1763]]&amp;ndash;[[1780]], and part of Spanish West Florida from [[1780]]&amp;ndash;[[1814]]. Northern and central Alabama was part of British Georgia from [[1763]]&amp;ndash;[[1783]] and part of the American Mississippi territory thereafter. Its statehood delayed by the lack of a coastline (rectified when Andrew Jackson captured Spanish Mobile in [[1814]]), Alabama became the 22nd state in [[1819]].
2517
2518 The state of Alabama seceded from the Union on [[January 11]], [[1861]] and became the [[Alabama Republic]] and on [[February 18]] [[1861]] became a [[Confederate States of America|Confederate state]]. While not many battles were fought in the state, it contributed about 120,000 soldiers to the [[United States Civil War|Civil War]]. After the war a provisional government was set up in [[1865]] and Alabama was officially readmitted to the Union on July 14 [[1868]].
2519
2520 The cradle of the Confederacy during the [[United States Civil War|Civil War]], Alabama was at stage center in the [[American Civil Rights Movement (1955-1968)|civil rights movement]] of the [[1950s]] and [[1960s]].
2521
2522 ==Law and government==
2523 ''Main article: [[Law and Government of Alabama]]''
2524 ===Local &amp; County Government===
2525 Alabama has 67 [[county|counties]], each having its own elected legislative branch, usually called the Board of Commissioners, which usually also has executive authority in the county. Due to the restraints placed in the [[Alabama Constitution]], all but 7 counties (Jefferson, Lee, Mobile, Madison, Montgomery, Shelby, and Tuscaloosa) in the state have little to no [[home rule]]. Instead, most counties in the state have to lobby to the Local Legislation Committee the state legislature to get simple local policies such as waste disposal to land use zoning.
2526
2527 Alabama is an alcohol monopoly or [[Alcoholic beverage control state]].
2528
2529 ===Political Climate===
2530 The current governor of the state is [[Bob Riley (Alabama)|Bob Riley]] and the two U.S. senators are [[Jeff Sessions|Jefferson B. Sessions III]] and [[Richard Shelby|Richard C. Shelby]] (all three from the [[United States Republican Party|Republican Party]]). The current [[Alabama Constitution]] was adopted in [[1901]].
2531
2532 During [[Reconstruction]] following the [[American Civil War]], Alabama was occupied by federal troops of the [[Third Military District]] under [[John Pope (military officer)|General John Pope]]. In [[1877]], the Reconstruction period ended with the recognition of [[Rutherford B. Hayes]] as President-elect. [[White people|White]] Southerners assumed control of the government and passed laws to [[racial segregation|segregate]] and disenfranchise black residents. The state became part of the &quot;[[Solid South]],&quot; a one-party system in which the [[Democratic Party (United States)|Democratic Party]] became essentially the only political party in every Southern state. For nearly 100 years, local and state elections in Alabama were decided in the Democratic Party primary, with generally no Republican challenger running.
2533
2534 From [[1876]] through [[1956]], Alabama supported only Democratic presidential candidates, by margins as high as 73 percentage points. In [[1960]], Alabama gave most of its electoral votes to [[Harry F. Byrd]] as a protest. In [[1964]], the national [[Republican Party (United States)|Republican Party]] began to win more votes in the South by following a &quot;[[Southern Strategy]]&quot; which emphasized &quot;[[States' rights|states' rights]]&quot; and the increasing liberalism of the national Democratic Party. The first such candidate was conservative [[Barry Goldwater]], who became the first Republican candidate supported by Alabama. In [[1968]], Alabama supported native son and [[American Independent Party]] candidate [[George Wallace]].
2535
2536 The last Democratic candidate to win Alabama's votes in a presidential election was Southerner [[Jimmy Carter]] in [[1976]]. Today, the Republican party has become increasingly dominant in conservative Alabama politics. However, in local politics, Democrats still control many offices, including majorities in both houses of the Legislature, and registered Democrats outnumber Republicans in the state. In 2004, [[George W. Bush]] won Alabama's nine electoral votes by a margin of 25 percentage points with 62.5% of the vote. The only 11 counties voting Democratic were [[Black Belt (region of Alabama)|Black Belt]] counties, where [[African American]]s are in the majority.
2537
2538 Alabama is located in the [[Bible Belt]], and its educational policies reflect this. According to the [[Alan Guttmacher Institute]], Alabama requires sex education classes to emphasize &quot;that [[homosexuality]] is not an acceptable lifestyle to the general public and that homosexual conduct is a criminal offense under the laws of the state.&quot; While the mandate is not typically enforced in Alabama classrooms, it is unclear whether or not the official requirements have changed since the Supreme Court's ruling in [[Lawrence v. Texas]]. According to the [[United States Census Bureau]], in 2000, Alabama was home to 4,561 same-sex male couples and 4,167 same-sex female couples.
2539
2540 *[[U.S. presidential election, 2004, in Alabama]]
2541
2542 ==Geography==
2543 ''Main article: [[Geography of Alabama]]''
2544
2545 {{ussm|alabama.PNG|al}}
2546 Alabama is the 30&lt;sup&gt;th&lt;/sup&gt; largest state in the United States with 135,775 km&lt;sup&gt;2&lt;/sup&gt; (52,423 mi&lt;sup&gt;2&lt;/sup&gt;) of total area. 3.19% of that is water, making Alabama 23&lt;sup&gt;rd&lt;/sup&gt; in the amount of surface water, also giving it the second largest inland waterway system in the [[United States]]. About three-fifths of the land area is a gentle [[plain]] with a general incline towards the [[Mississippi River]] and the [[Gulf of Mexico]]. The [[North Alabama]] region is mostly mountainous, with the [[Tennessee River]] cutting a large valley creating numerous creeks, streams, rivers, mountains, and lakes. The lowest point east of the [[Mississippi River]] lies in [[Dekalb County]] along a creek cutting tower ridges, and creating [[Buck's Pocket State Park]]. Another natural wonder is &quot;Land Bridge&quot; the longest natural bridge span east of the [[Mississippi River]]. Alabama generally ranges in [[elevation]] from [[sea level]] at [[Mobile Bay]], to a little more than 1800 [[foot (unit)|feet]] or 550 [[metre|meters]] in the Appalachian mountains in the northeast. The highest point is [[Mount Cheaha]].
2547
2548 ==Economy==
2549 [[Image:wiki_alabama.jpg|thumb|275px|Greetings from Alabama]]
2550 According to the [[Bureau of Economic Analysis]], the [[2003]] total [[gross state product]] was $132 billion. The [[per capita income]] for the state was $26,505 in 2003. Alabama's [[agricultural]] outputs include [[poultry]] and [[Egg (food)|eggs]], [[cattle]], plant nursery items, [[peanut]]s, [[cotton]], [[grains]] such as [[maize|corn]] and [[sorgum]], [[vegetables]], [[milk]], [[soybeans]], and [[peaches]]. Even though neighboring [[Georgia (U.S. state)|Georgia]] is called the [[Peach State]], Alabama produces twice as many peaches annually. Its [[Industry|industrial]] outputs include [[iron]] and [[steel]] products, including cast-iron and steel pipe, [[paper]], [[lumber]], and [[wood]] products, [[mining]] (mostly coal), and [[plastic]] products, cars and trucks, and [[apparel]]. Also, Alabama produces [[aerospace]] and [[electronic]] products, mostly in the [[Huntsville, Alabama|Huntsville]] area, home of the [[NASA]] [[George C. Marshall Space Flight Center]] and the [[United States Army Aviation and Missile Command|US Army Missile Command]], headquartered at [[Redstone Arsenal]].
2551
2552 Also, the city of [[Mobile, Alabama|Mobile]] is a busy seaport on the [[Gulf of Mexico]], and with inland waterway access to the Midwest via the [[Tennessee-Tombigbee Waterway]].
2553
2554 ==Demographics==
2555 {{seesubarticle|Demographics of Alabama}}
2556
2557 {| class=&quot;toccolours&quot; align=&quot;right&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin:0 0 1em 1em; font-size: 95%;&quot;
2558 |-
2559 ! colspan=2 bgcolor=&quot;#ccccff&quot; align=&quot;center&quot;| Historical populations
2560 |-
2561 ! align=&quot;center&quot;| Census&lt;br&gt;year !! align=&quot;right&quot;| Population
2562 |-
2563 | colspan=2|&lt;hr&gt;
2564 |-
2565 | align=&quot;center&quot;| 1800 || align=&quot;right&quot;| 1,250
2566 |-
2567 | align=&quot;center&quot;| 1810 || align=&quot;right&quot;| 9,046
2568 |-
2569 | align=&quot;center&quot;| 1820 || align=&quot;right&quot;| 127,901
2570 |-
2571 | align=&quot;center&quot;| 1830 || align=&quot;right&quot;| 309,527
2572 |-
2573 | align=&quot;center&quot;| 1840 || align=&quot;right&quot;| 590,756
2574 |-
2575 | align=&quot;center&quot;| 1850 || align=&quot;right&quot;| 771,623
2576 |-
2577 | align=&quot;center&quot;| 1860 || align=&quot;right&quot;| 964,201
2578 |-
2579 | align=&quot;center&quot;| 1870 || align=&quot;right&quot;| 996,992
2580 |-
2581 | align=&quot;center&quot;| 1880 || align=&quot;right&quot;| 1,262,505
2582 |-
2583 | align=&quot;center&quot;| 1890 || align=&quot;right&quot;| 1,513,401
2584 |-
2585 | align=&quot;center&quot;| 1900 || align=&quot;right&quot;| 1,828,697
2586 |-
2587 | align=&quot;center&quot;| 1910 || align=&quot;right&quot;| 2,138,093
2588 |-
2589 | align=&quot;center&quot;| 1920 || align=&quot;right&quot;| 2,348,174
2590 |-
2591 | align=&quot;center&quot;| 1930 || align=&quot;right&quot;| 2,646,248
2592 |-
2593 | align=&quot;center&quot;| 1940 || align=&quot;right&quot;| 2,832,961
2594 |-
2595 | align=&quot;center&quot;| 1950 || align=&quot;right&quot;| 3,061,743
2596 |-
2597 | align=&quot;center&quot;| 1960 || align=&quot;right&quot;| 3,266,740
2598 |-
2599 | align=&quot;center&quot;| 1970 || align=&quot;right&quot;| 3,444,165
2600 |-
2601 | align=&quot;center&quot;| 1980 || align=&quot;right&quot;| 3,893,888
2602 |-
2603 | align=&quot;center&quot;| 1990 || align=&quot;right&quot;| 4,040,587
2604 |-
2605 | align=&quot;center&quot;| [[United States 2000 Census|2000]] || align=&quot;right&quot;| 4,447,100
2606 |}
2607
2608 {|
2609 |-
2610 As of 2005, Alabama has an estimated population of 4,557,808, which is an increase of 32,433, or 0.7%, from the prior year and an increase of 110,457, or 2.5%, since the year 2000. This includes a natural increase since the last census of 77,418 people (that is 319,544 births minus 242,126 deaths) and an increase due to net migration of 36,457 people into the state. Immigration from outside the United States resulted in a net increase of 25,936 people, and migration within the country produced a net increase of 10,521 people.
2611
2612 The state had 108,000 foreign-born (2.4% of the state population), of which an estimated 22.2% were illegal aliens (24,000).
2613 |}
2614 |[[Image:Alabama_population_map.png|thumb|right|300px|Alabama Population Density map]]
2615 ===Race and ancestry===
2616 The racial makeup of the state and comparison to the prior census:
2617 {{Racial_demographics_begin | year1=2000 | year2=1990 }}
2618 {{Racial_demographics_White | year1=71.1% | year2=73.6% }}
2619 {{Racial_demographics_Black | year1=26.0% | year2=25.3% }}
2620 {{Racial_demographics_Asian | year1=0.7% | year2=0.5% }}
2621 {{Racial_demographics_Amerindian | year1=0.5% | year2=0.4% }}
2622 {{Racial_demographics_Other | race=Other race | year1=0.7% | year2=0.1% }}
2623 {{Racial_demographics_Mixed | year1=1.0% | year2=&lt;center&gt;*&lt;/center&gt; }}
2624 {{Racial_demographics_Hispanic | year1White=70.3% | year2White=73.3% | year1Hispanic=1.7% | year2Hispanic=0.6% }}
2625 {{Racial_demographics_end}}
2626
2627 The largest reported ancestry groups in Alabama: American (17.0%), [[British American|English]] (7.8%), [[Irish American|Irish]] (7.7%), [[German American|German]] (5.7%), and [[Scots-Irish American|Scotch-Irish]] (2.0%). 'American' includes those reported as Native American or [[African American]].
2628
2629 ===Religion===
2630 The major religions of Alabama:
2631
2632 *[[Christian]] &amp;#8211; 92%
2633 **[[Protestant]] &amp;#8211; 79%
2634 ***[[Baptist]] &amp;#8211; 49%
2635 ***[[Methodist]] &amp;#8211; 10%
2636 ***[[Presbyterian]] &amp;#8211; 3%
2637 ***[[Episcopalian]] &amp;#8211; 2%
2638 ***[[Church of God]] &amp;#8211; 2%
2639 ***[[Church of Christ]] &amp;#8211; 2%
2640 ***[[Pentecostal]] &amp;#8211; 2%
2641 ***[[Lutheran]] &amp;#8211; 2%
2642 ***Other Protestant &amp;#8211; 7%
2643 **[[Catholic]] &amp;#8211; 13%
2644 *Other religions &amp;#8211; 1%
2645 *Non-religious &amp;#8211; 7%
2646 ==Colleges and Universities (incomplete)==
2647 {{main|List of colleges and universities in Alabama}}
2648 {|
2649 |-
2650 | valign=&quot;top&quot; |
2651 *[http://www.au.af.mil/ Air University]
2652 *[[Alabama A&amp;M University]]
2653 *[[Alabama State University]]
2654 *[[Andrew Jackson University]]
2655 *[[Athens State University]]
2656 *[[Auburn University]]
2657 *[[Auburn University Montgomery]]
2658 *[[Birmingham-Southern College]]
2659 *[[Bishop State Community College]]
2660 *[[Calhoun Community College|Calhoun Community College System]]
2661 ** [[Calhoun Community College at Decatur|Decatur-Main Campus]]
2662 ** [[Calhoun Community College at Cummings Research Park|Huntsville/Cummings Research Park]]
2663 ** [[Calhoun Community College at Redstone Arsenal|Redstone Arsenal]]
2664 *[[Capps College]]
2665 *[[Concordia College-Selma]]
2666 *[[Faulkner University]]
2667 *[[Heritage Christian University]]
2668 *[[Huntingdon College]]
2669 *[[Jacksonville State University]]
2670 *[[Judson College]]
2671 *[[Miles College]]
2672 *[[Oakwood College]]
2673 *[[Remington College]]
2674 *[[Samford University]]
2675 *[[Selma University]]
2676 *[[Southeastern Bible College]]
2677 *[[Southern Christian University]]
2678 | valign=&quot;top&quot; |
2679 *[[Spring Hill College]]
2680 *[[Stillman College]]
2681 *[[Talladega College]]
2682 *[[Troy University System]] (formerly &quot;Troy State University System&quot;)
2683 **[[Troy University|Main Campus (Troy)]]
2684 **[[Troy University at Dothan]]
2685 **[[Troy University at Montgomery]]
2686 **[[Troy University at Phenix City]]
2687 *[[Tuskegee University]]
2688 *[[United States Sports Academy]]
2689 *[[University of Alabama System]]
2690 **[[University of Alabama|Main Campus (Tuscaloosa)]]
2691 **[[University of Alabama at Birmingham|Birmingham]]
2692 **[[University of Alabama at Huntsville|Huntsville]]
2693 *[[University of Mobile]]
2694 *[[University of Montevallo]]
2695 *[[University of North Alabama]]
2696 *[[University of South Alabama]]
2697 *[[University of West Alabama]]
2698 *[[Virginia College]]
2699 |}
2700
2701 ==Culture and interests==
2702 &lt;small&gt;
2703 *[[Famous Alabamians]]
2704 *[[Alabama Jubilee Hot Air Balloon Classic]]
2705 *[[Music of Alabama]]
2706 *[[Alabama Public Television]], state wide public TV network
2707 *[[List of television stations in Alabama]]
2708 *[[Alabama Shakespeare Festival]]
2709 *[[Alabama Sports Festival]]
2710 *[[Spirit of America Festival]]
2711 *[[U.S. Space &amp; Rocket Center]]/[[U.S. Space Camp]]
2712 *[[USS Alabama (BB-60)|USS Alabama]]
2713 *[[Rickwood Field]]
2714 *[[Robert Trent Jones Golf Trail]]
2715 *[[Visionland Theme Park]]
2716 *[[Old State Bank]]
2717 *[[Vulcan statue]]
2718 *[[Mobile Bay jubilee]]
2719 *[[Point Mallard Aquatic Center]]
2720 *[[Noccalula Falls Park]]
2721 &lt;/small&gt;
2722
2723 ==References==
2724 * Atkins, Leah Rawls, Wayne Flynt, William Warren Rogers, and David Ward. ''[http://www.questia.com/PM.qst?a=o&amp;d=29166058 Alabama: The History of a Deep South State]'' (1994)
2725 * Flynt, Wayne. ''Alabama in the Twentieth Century'' (2004)
2726 * Owen Thomas M. ''History of Alabama and Dictionary of Alabama Biography'' 4 vols. 1921.
2727 * Jackson, Harvey H. ''Inside Alabama: A Personal History of My State'' (2004)
2728 * [http://www.questia.com/PM.qst?a=o&amp;d=52694010 Peirce, Neal R. ''The Deep South States of America: People, Politics, and Power in the Seven Deep South States'' (1974)] solid reporting on politics and economics 1960-72
2729 * Williams, Benjamin Buford. ''A Literary History of Alabama: The Nineteenth Century'' 1979.
2730 * WPA. ''Guide to Alabama'' (1939)
2731 * for a detailed bibliography see [[History of Alabama]]
2732
2733 ==External links==
2734 {{sisterlinks|Alabama}}
2735 *[http://alabama.gov/ Alabama.gov] - Official website.
2736 *[http://www.alarc.org/ Alabama Association of Regional Councils]
2737 *[http://www.touralabama.org/ TourAlabama.org] - Alabama Department of Tourism and Travel
2738 *[http://www.archives.state.al.us/ Archives.state.al.us] - Alabama Department of Archives and History
2739 **[http://www.archives.state.al.us/aaa.html All About Alabama] at the Archives Department site
2740 *[http://alguard.state.al.us Alabama National Guard] - Alabama National Guard
2741 *[http://www.legislature.state.al.us/CodeofAlabama/1975/coatoc.htm Code of Alabama 1975] - at the Alabama Legislature site
2742 *[http://quickfacts.census.gov/qfd/states/01000.html Alabama QuickFacts] from the U.S. Census Bureau
2743 *[http://www.countymapsofalabama.com/ County Maps of Alabama] - Full color maps. List of cities, towns and county seats
2744 *[http://www.southernlitreview.com/states/alabama Alabama Literature] from the Southern Literary Review
2745
2746 ==Notes==
2747 &amp;sup1; The phrase ''The Heart of Dixie'' is required by state law to be included on standard state vehicle license plates, but has recently been reduced to a very small size and eclipsed by the phrase ''Stars Fell on Alabama''.
2748
2749 {{Alabama}}
2750 {{USPoliticalDivisions}}
2751 [[Category:Alabama| ]]
2752 [[Category:States of the United States]]
2753 [[Category:1819 establishments]]
2754 [[ang:Alabama]]
2755 [[ar:ØŖŲ„اباŲ…ا]]
2756 [[ast:Alabama]]
2757 [[bg:АĐģайаĐŧĐ°]]
2758 [[zh-min-nan:Alabama]]
2759 [[bs:Alabama]]
2760 [[ca:Alabama]]
2761 [[cs:Alabama]]
2762 [[cy:Alabama]]
2763 [[da:Alabama]]
2764 [[de:Alabama (Bundesstaat)]]
2765 [[et:Alabama]]
2766 [[es:Alabama]]
2767 [[eo:Alabamo]]
2768 [[fr:Alabama]]
2769 [[ga:Alabama]]
2770 [[gd:Alabama]]
2771 [[gl:Alabama]]
2772 [[ko:ė•¨ëŧ배마 ėŖŧ]]
2773 [[hr:Alabama]]
2774 [[io:Alabama]]
2775 [[id:Alabama]]
2776 [[is:Alabama]]
2777 [[it:Alabama]]
2778 [[he:אלבמה]]
2779 [[ka:ალაბამა (შáƒĸაáƒĸი)]]
2780 [[la:Alabama]]
2781 [[lv:Alabama]]
2782 [[lt:Alabama]]
2783 [[lb:Alabama (Bundesstaat)]]
2784 [[jbo:alybamys]]
2785 [[hu:Alabama]]
2786 [[mk:АĐģайаĐŧĐ°]]
2787 [[ms:Alabama]]
2788 [[mo:АĐģайаĐŧĐ°]]
2789 [[nl:Alabama]]
2790 [[ja:ã‚ĸãƒŠãƒãƒžåˇž]]
2791 [[no:Alabama]]
2792 [[nn:Alabama]]
2793 [[os:АĐģайаĐŧÃĻ (ŅˆŅ‚Đ°Ņ‚)]]
2794 [[pl:Alabama]]
2795 [[pt:Alabama]]
2796 [[ro:Alabama]]
2797 [[ru:АĐģайаĐŧĐ° (ŅˆŅ‚Đ°Ņ‚)]]
2798 [[sq:Alabama]]
2799 [[simple:Alabama]]
2800 [[sk:Alabama]]
2801 [[sl:Alabama]]
2802 [[sr:АĐģайаĐŧĐ°]]
2803 [[fi:Alabama]]
2804 [[sv:Alabama]]
2805 [[th:ā¸Ąā¸Ĩā¸Ŗā¸ąā¸āšā¸­ā¸Ĩā¸°āšā¸šā¸Ąā¸˛]]
2806 [[tr:Alabama]]
2807 [[uk:АĐģайаĐŧĐ° (ŅˆŅ‚Đ°Ņ‚)]]
2808 [[zh:é˜ŋæ‹‰åˇ´éĻŦåˇž]]</text>
2809 </revision>
2810 </page>
2811 <page>
2812 <title>AfricA</title>
2813 <id>304</id>
2814 <revision>
2815 <id>15899041</id>
2816 <timestamp>2002-02-25T15:43:11Z</timestamp>
2817 <contributor>
2818 <ip>Conversion script</ip>
2819 </contributor>
2820 <minor />
2821 <comment>Automated conversion</comment>
2822 <text xml:space="preserve">#REDIRECT [[Africa]]
2823 </text>
2824 </revision>
2825 </page>
2826 <page>
2827 <title>Achilles</title>
2828 <id>305</id>
2829 <revision>
2830 <id>41915510</id>
2831 <timestamp>2006-03-02T16:19:19Z</timestamp>
2832 <contributor>
2833 <username>Josiah Rowe</username>
2834 <id>210455</id>
2835 </contributor>
2836 <minor />
2837 <comment>/* Other stories about Achilles */ grammar</comment>
2838 <text xml:space="preserve">:''For other uses, see [[Achilles (disambiguation)]].''
2839
2840 [[Image:The_wrath_of_Achilles.jpg|220px|thumb|right|The wrath of Achilles, by LÊon Benouville]]{{Greek myth}}In [[Greek mythology]], '''{{polytonic|&amp;#7944;Ī‡ÎšÎģÎģÎĩĪĪ‚}}''', transliterated to '''Akhilleus''' or '''Achilleus'' in Roman letters, Latinized from this ancient Greek to '''Achilles''', appearing in Etruscan as '''Achle''', was a [[hero]] (ancient Greek heros, &quot;defender&quot;) of the [[Trojan War]], the greatest and the most [[central character]] of [[Homer]]'s ''[[Iliad]]''.
2841
2842 ==Name==
2843 The very first two lines of the ''Iliad'' read:
2844 :{{Polytonic|Îŧáŋ†ÎŊΚÎŊ áŧ„ÎĩΚδÎĩ θÎĩáŊ° ΠΡÎģΡĪŠÎŦδÎĩĪ‰ áŧˆĪ‡ÎšÎģáŋ†ÎŋĪ‚}}
2845 :{{Polytonic|ÎŋáŊÎģÎŋÎŧέÎŊΡÎŊ, áŧŖ ÎŧĪ…ĪÎ¯' áŧˆĪ‡ÎąÎšÎŋáŋ–Ī‚ áŧ„ÎģÎŗÎĩ' áŧ”θΡÎēÎĩÎŊ,}}
2846 Transliterated:
2847 :Mēnin aeide thea, Pēlēiadeō Akhilēos
2848 :oulomenēn, hē muri' Akhaiois alge' ethēken,
2849 Translated:
2850 :Sing, Muse, the wrath of Achilles the son of Peleus,
2851 :the destructive wrath, that brought countless griefs upon the Achaeans,
2852 [[Image:G-achilles-trojan-wars-bb-l.jpg|thumb|left|Statue of Achilles]]In these lines, we see the name Akhilleus Peleides, which is a [[praenomen]] and a [[patronymic]], the latter being formed from Peleus with the suffix -ides producing ''Achilles the son of [[Peleus]]''. The system is similar to the names used by [[Scandinavians]] before modern times, such as Leif Erikson.
2853
2854
2855 Achilles' name can be analyzed as a combination of {{Polytonic|áŧ„Ī‡ÎŋĪ‚}} (''akhos'') &quot;grief&quot; and {{Polytonic|ÎģÎąĪŒĪ‚}} (''laos'') &quot;a people, tribe, nation, etc.&quot; [http://www.stanford.edu/group/shl/Crowds/hist/laos.htm] In other words, Achilles is an embodiment of the grief of the people, grief being a theme raised numerous times in the Iliad (frequently by Achilles). Achilles' role as the hero of grief forms an ironic juxtaposition with the conventional view of Achilles as the hero of ''kleos'' (glory, usually glory in war).
2856
2857 ''Laos'' has been construed by Gregory Nagy, following Leonard Palmer, to mean ''a corps of soldiers''. With this derivation, the name would have a double meaning in the poem: When the hero is functioning rightly, his men bring grief to the enemy, but when wrongly, his men get the grief. The poem is in part about the misdirection of anger on the part of leadership.
2858
2859 ==Birth==
2860 Achilles was the son of the mortal [[Peleus]], king of the [[Myrmidons]] in [[Phthia]] (southeast [[Thessaly]]), and the sea nymph [[Thetis]]. [[Zeus]] and [[Poseidon]] had been rivals for the hand of Thetis until [[Prometheus]] the fire-bringer prophesized that Thetis would bear a son greater than his father. For this reason, the two gods withdrew their pursuit, and had her wed to Peleus.
2861
2862 When Achilles was born, according to the most common version of the myth, Thetis tried to make him immortal by dipping him in the river [[Styx (mythology)|Styx]]. But she forgot to wet the heel she held him by, leaving him vulnerable at that spot. (See [[Achilles' tendon]].) In an earlier and less popular version of the story, Thetis anointed the boy in [[ambrosia]] and put him on top of a fire to burn away the mortal parts of his body. She was interrupted by Peleus and abandoned both father and son in a rage. Homer does not make reference to this invulnerability in the [[Iliad]]. To the contrary, he mentions Achilles being wounded, although not seriously.
2863
2864 Peleus gave him (together with his young friend or lover [[Patroclus]]) to [[Chiron]] the [[Centaur]], on Mt. [[Pelion]], to be raised.
2865
2866 ==Achilles in the Trojan War==
2867 ===Telephus===
2868 When the Greeks left for the Trojan War, they accidentally stopped in [[Mysia]], ruled by King [[Telephus]]. In the resulting battle, Achilles gave Telephus a wound that would not heal; Telephus consulted an oracle, who stated that &quot;he that wounded shall heal&quot;.
2869
2870 According to other reports in [[Euripides]]' lost play about Telephus, he went to [[Aulis]] pretending to be a beggar and asked Achilles to heal his wound. Achilles refused, claiming to have no medical knowledge. Alternatively, Telephus held [[Orestes (mythology)|Orestes]] for ransom, the ransom being Achilles' aid in healing the wound. [[Odysseus]] reasoned that the spear had inflicted the wound; therefore, the spear must be able to heal it. Pieces of the spear were scraped off onto the wound and Telephus was healed. This is an example of [[sympathetic magic]].
2871
2872 ===During the Trojan War===
2873 [[Image:The_Rage_of_Achilles_by_Giovanni_Battista_Tiepolo.jpeg|thumb|right|250px|“The Rage of Achilles” by [[Giovanni Battista Tiepolo]].]]
2874
2875 In Homer's Iliad, Achilles is the only mortal to experience consuming rage (''menon''). His anger is at some times wavering, at other times absolute. The humanization of Achilles by the events of the war is an important theme of the ''[[Iliad]]''.
2876
2877 Achilles' [[charioteer]]'s name was [[Automedon]].
2878
2879 ====Troilus====
2880 According to [[Dares Phrygius]]' ''Account of the Destruction of Troy'' [http://homepage.mac.com/cparada/GML/DaresTW.html], while [[Troilus]], the youngest son of [[Priam]] and [[Hecuba]] (whom some say was fathered by [[Apollo (god)|Apollo]]), was watering his horses at the Lion Fountain outside the walls of Troy, Achilles saw him and fell in love with his beauty (whose &quot;loveliness of form&quot; was described by [[Ibycus]] as being like &quot;gold thrice refined&quot;). The youth rejected his advances and took refuge inside the temple of Apollo. Achilles pursued him into the sanctuary and decapitated him on the god's own altar. ([[John Tzetzes|Tzetzes]], [[scholiast]] on [[Lycophron]]). At the time, Troilus was said to be a year short of his twentieth birthday, and the legend goes that if Troilus had lived to be twenty, Troy would have been invincible. ([[First Vatican Mythographer]])
2881
2882 ====Agamemnon and the death of Patroclus====
2883 [[Image:Patrocluspederastyscene.jpg|thumb|250px|left|[[Patroclus]] and Achilles. Achilles bandages the arm of his friend Patroclus. The latter turns his head aside to avoid the sight of blood and of Achilles noticing his pain grimaces. The scene has been interpreted as an act of welfare and comradeship, or as a scene with sexual overtones. Ancient Greek culture often held the two [[Iliad#The_relationship_of_Achilles_and_Patroclus|to be lovers]].]]
2884
2885 Achilles took 23 towns outside [[Troy]], including [[Lyrnessos]], where he captured [[Briseis]] to keep as a [[concubine]]. Meanwhile, [[Agamemnon]] took a woman named [[Chryseis]] and taunted her father, [[Chryses]], a priest of [[Apollo (god)|Apollo]], when he attempted to buy her back. Apollo sent a plague through the Greek armies, and Agamemnon was forced to give Chryseis back to her father; however, he took Briseis away from Achilles as compensation for his loss.
2886
2887 This action sparked the central plot of the [[Iliad]]: Achilles becomes enraged and refuses to fight for the Greeks any further. The war goes badly, through the influence of [[Zeus]], and the Greeks offer handsome reparations to their greatest warrior. After the Greeks are pushed back to the ships, which are just starting to be set on fire by the Trojan hero [[Hector]], Achilles is visited by [[Odysseus]], [[Telamonian Aias|Ajax]], and [[Phoenix (Iliad)|Phoenix]], who attempt to persuade him to return to battle.
2888
2889 Achilles still refuses to fight, but agrees to allow [[Patroclus]] to fight in his place, wearing his armor. The next day, [[Patroclus]] is killed and stripped of the armor by Hector, who mistakes him for Achilles. Achilles is overwhelmed with grief for his beloved friend, and the rage he once harbored toward Agamemnon begins shifting to Hector. Thetis, his mother, rises from the sea floor and sympathizes with his grief. She obtains magnificent new armor for him from [[Hephaestus]]. The goddess [[Athena]] provides him with the [[aegis]] of Zeus.
2890
2891 When he goes to the battlefield, the entire Trojan army flees behind the walls of Troy. Achilles' wrath is terrible, and he slays many Trojan warriors and allies, including Priam's son [[Lycaon]] (whom Achilles had previously captured and sold into slavery, but who had been returned to Troy). Eventually Hector comes out of the walls to defend the honour of Troy. He asked Achilles to agree that the body of the loser would be returned for proper burial by the winner. Achilles rejected this arrangement, saying, &quot;Though twenty ransoms and thy weight in gold were offered, I would refuse it all.&quot;
2892
2893 Stories tell that Hector ran about Troy seven times and Achilles followed him, however seeing that Achilles would not be outrun, Hector stood his ground and fought. Other versions of the tale say that Achilles chased after Hector two times, and one time he was delivered by the gods, however, on their second encounter, Achilles trapped Hector and challenged him. After a legendary fight, Achilles kills Hector.
2894
2895 Influenced by his anger, he drags the body of Hector behind his chariot round the walls of Troy three times, and refuses to allow it to receive [[funeral rites]]. Much to the dismay of Achilles, the body of Hector miraculously heals and will not decay as normally expected. [[Aphrodite]], the goddess of love who sided with Troy throughout the whole conflict, put a protective barrier over [[Hector]], which kept him looking like he did before he was viciously killed by Achilles. When [[Priam]], the king of Troy and Hector's father, comes secretly into the Greek camp to plead for the body, Achilles finally relents; in one of the most moving scenes of the ''Iliad'', he receives Priam graciously and allows him to take the body away. The scene is intensely moving because [[Priam]], the king of one of the greatest cities in the known world, kneels down, old and frail as he is, and kisses the hands of the man who killed his son.
2896
2897 The greatness of Achilles lies in not just being the greatest Greek fighter ever, but in knowing the choice provided to him by [[Destiny]]. His mother Thetis had prophesied to him that if he pulled out of the [[Trojan War]], he would enjoy a long and a happy life. If Achilles fought, however, he would die before the walls of [[Troy]] but assure an everlasting glory, surpassing that of all other heroes. He had made the choice, and coming face to face with it showed his greatness.
2898
2899 ====Xanthos====
2900 During the [[Trojan War]], [[Balius and Xanthos|Xanthos]], one of Achilles' horses, was rebuked by Achilles for allowing [[Patroclus]] to be killed. Xanthos responded by saying (Hera temporarily gave him voice to do so) that a god and a mortal had killed Patroclus and a god and a mortal would soon kill Achilles too.
2901
2902 ====Memnon, Cycnus, Penthesilea, and the death of Achilles====
2903 [[Image:TBanksThetis.jpg|thumb|right|300px|''Thetis rising from the sea to comfort Achilles'' (Book 18), by [[Thomas Banks]], English, [[1778]] [[Victoria and Albert Museum]].]]
2904 Shortly after the death of [[Hector]], Achilles defeated [[Memnon]] of [[Ethiopia]], [[Cycnus]] of [[Colonae]] and the [[Amazons|Amazonian]] warrior [[Penthesilia]] (with whom Achilles also had an affair in some versions). As predicted by [[Hector]] with his dying breath, Achilles was thereafter killed by [[Paris (mythology)|Paris]] &amp;mdash; either by an arrow to the heel (which may have subsequently become fatally infected, and is said to have been guided by [[Apollo]]), or in an older version by a knife to the back while visiting [[Polyxena]], a princess of Troy. Both versions conspicuously deny the killer any sort of valor, and Achilles remains undefeated on the battlefield (Paris was later killed by Philoctetes using the enormous bow of Heracles). His bones are mingled with those of [[Patroclus]], and funeral games are held. Like Ajax, he is represented (although not by [[Homer]]) as living after his death in the island of [[Leuke]] at the mouth of the [[Danube]].
2905
2906 ====The fate of Achilles' armor====
2907 Achilles' armor was the object of a feud between [[Odysseus]] and [[Telamonian Aias|Ajax the Greater]] (Achilles' older cousin). They competed for it and Odysseus won. Ajax went mad with grief and vowed to kill his comrades; he started killing cattle (thinking they were Greek soldiers), and then himself.
2908
2909 ==Other stories about Achilles==
2910 Some post-Homeric sources claim that in order to keep Achilles safe from the war, Thetis (or, in some versions, Peleus) hid the young man at the court of [[Lycomedes]], king of [[Skyros]]. There, Achilles was disguised as a girl and lived among Lycomedes' daughters under the name &quot;Pyrrha&quot; (the red-haired girl). With Lycomedes' daughter [[Deidamea|Deidamia]], Achilles fathered a son, [[Neoptolemus]] (also called Pyrrhus, after his father's alias). According to this story, Odysseus learned from the prophet [[Calchas]] that the Achaeans would be unable to capture Troy without Achilles' aid. He went to Skyros in the guise of a peddler selling women's clothes and jewelry, but placed a shield and spear among his goods. When Achilles instantly took up the spear, Odysseus saw through his disguise and convinced him to join the Trojan campaign. In another version of the story, Odysseus arranged for a trumpet alarm to be sounded while he was with Lycomedes' women; while the women fled in panic, Achilles prepared to defend the court, thus giving his identity away. The story about Achilles in [[drag (clothing)|drag]] is not found in Homer.
2911
2912 In Homer's ''[[Odyssey]]'', there is a passage in which Odysseus sails to the underworld and converses with the shades. One of these is Achilles, who when greeted as &quot;blessed in life, blessed in death&quot;, responds that he would rather be a slave than be dead. This has been interpreted as a rejection of his warrior life, but also as indignity to his martyrdom being slighted.
2913
2914 The kings of [[Despotate of Epirus|Epirus]] claimed to be descended from Achilles through his son. [[Alexander the Great]], son of the Epiran princess [[Olympias]], could therefore also claim this descent, and in many ways strove to be like his great ancestor; he is said to have visited his tomb while passing Troy. Achilles was worshipped as a sea-god in many of the [[Greek colonies]] on the [[Black Sea]].
2915
2916 The [[homosexual]] [[Achilles and Patroclus|relationship between Achilles and Patroclus]] is something much explored in post-[[Homeric]] literature. By the fifth and fourth centuries, the deep — and arguably ambiguous — friendship portrayed in Homer blossomed into an unequivocal love affair in the works of [[Aeschylus]], [[Plato]], and [[Aeschines]], and seems to have inspired the enigmatic verses in [[Lycophron]]'s third century ''Alexandra'' that claim Achilles slayed Troilus in a matter of unrequited love.
2917
2918 Achilles fought and killed the [[Amazons|Amazon]] [[Helene (mythology)|Helene]].
2919
2920 Some also said he married [[Medea]], and that after both their deaths they were united in the Elysian Fields of Hades - as Hera promised Thetis in Apollonius' [[Argonautica]].
2921
2922 ==Achilles in lost plays==
2923 In the early [[1990]]s a lost play by [[Aeschylus]] was discovered in the wrappings of a [[mummy]] in [[Egypt]]. The play, ''[[Achilles (play)|Achilles]]'', was part of a [[trilogy]] about the [[Trojan War]]. It was known to exist due to mentions in ancient sources, but had been lost for over 2,000 years. Another lost play by Aeschylus, ''The Myrmidons'', focussed on the relationship between Achilles and Patroclus; only a few lines survive today.
2924
2925 There is another lost play with Achilles as the main character, ''The Lovers of Achilles'', by [[Sophocles]].
2926
2927 ==Spoken-word myths (audio)==
2928 {| border=&quot;1&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot;
2929 |-
2930 ! style=&quot;background:#ffdead;&quot; | Achilles myths as told by story tellers
2931 |-
2932 |[[Media:Achilles and Patroclus wiki.ogg|'''1. Achilles and Patroclus,''' read by Timothy Carter]]
2933 |-
2934 |Bibliography of reconstruction: [[Homer]] ''Iliad,'' 9.308, 16.2, 11.780, 23.54 ([[700 BC]]); [[Pindar]] ''[[Olympian Odes]],'' IX ([[476 BC]]); [[Aeschylus]] ''Myrmidons,'' F135-36 ([[495 BC]]); [[Euripides]] ''Iphigenia in Aulis,'' ([[405 BC]]); [[Plato]] ''Symposium,'' 179e ([[388 BC]]-[[367 BC]]); [[Statius]] ''Achilleid,'' 161, 174, 182 ([[96]] CE)
2935 |-
2936 |}
2937
2938 ==Achilles in music==
2939 Achilles has frequently been mentioned in music.
2940
2941 *&quot;Achilles, Agony &amp; Ecstasy In Eight Parts&quot;, by [[Manowar]]; from the album ''The Triumph of Steel'', [[1992]], [[Atlantic Records]].
2942 *&quot;[[Achilles Last Stand]]&quot;, by [[Led Zeppelin]]; from the album ''Presence'', [[1976]], Atlantic Records.
2943 *&quot;Achilles' Revenge&quot; is a song by [[Warlord (band)|Warlord]].
2944 *Achilles' Heel is an album by the indie rock band [[Pedro the Lion]].
2945 *Achilles and his heel are referenced in the song &quot;Special K&quot; by the rock band [[Placebo (band)|Placebo]].
2946 *Achilles is referred to in [[Bob Dylan]]'s song, &quot;Temporary Like Achilles&quot;.
2947 *&quot;Achilles' Heel&quot; is a song by the UK band [[Toploader]].
2948 *&quot;Achilles&quot; is a song by the Colorado-based power metal band [[Jag Panzer]], from the album ''Casting the Stones''.
2949 *Achilles is referenced in the [[Indigo Girls]] song &quot;Ghost&quot;.
2950
2951 ==Achilles in film==
2952 The role of Achilles has been played by:
2953 * [[Stanley Baker]] in ''[[Helen of Troy (movie)|Helen of Troy]]'' ([[1956]])
2954 * [[Arturo Dominici]] in ''[[La Guerra di Troia (movie)|La Guerra di Troia]]'' ([[1962]])
2955 * [[Derek Jacobi]] [voice] in Achilles (Channel Four Television) ([[1995]])
2956 * [[Steve Davislim]] in ''[[La Belle HÊlène (TV movie)|La Belle HÊlène]]'' (TV, [[1996]])
2957 * [[Joe Montana (actor)|Joe Montana]] in ''[[Helen of Troy (TV movie)|Helen of Troy]]'' (TV, [[2003]])
2958 * [[Brad Pitt]] in ''[[Troy (movie)|Troy]]'' (2004)
2959
2960 ==Namesakes==
2961 * The [[Royal New Zealand Navy]] gave the name [[HMNZS Achilles (70)|HMNZS ''Achilles'']] to an [[British A class destroyer|''A'' class]] [[destroyer]] which served in [[World War II]].
2962
2963 ==References==
2964 *[[Homer]], ''[[Iliad]]''
2965 *[[Homer]], [[Odyssey|''Odyssey'' XI]], 467-540
2966 *[[Apollodorus]], ''[[Bibliotheca (Pseudo-Apollodorus)|Bibliotheca]]'' III, xiii, 5-8
2967 *[[Apollodorus]], [[Epitome III|''Epitome'' III]], 14-V, 7
2968 *[[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'' XI, 217-265; XII, 580-XIII, 398
2969 *[[Ovid]], [[Heroides|''Heroides'' III]]
2970 *[[Apollonius Rhodius]], [[Argonautica|''Argonautica'' IV]], 783-879
2971 *[[Dante]], ''[[The Divine Comedy]]'', Inferno, V.
2972
2973 ==Bibliography==
2974 * Ileana Chirassi Colombo, “Heros Achilleus— Theos Apollon.” In ''Il Mito Greco'', Êd. Bruno Gentili &amp; Giuseppe Paione, Rome, 1977;
2975 * Anthony Edwards:
2976 ** “Achilles in the Underworld: Iliad, Odyssey, and Æthiopis”, ''Greek, Roman, and Byzantine Studies'', 26 (1985): pp. 215-227 ;
2977 ** “Achilles in the Odyssey: Ideologies of Heroism in the Homeric Epic”, ''Beitrage zur klassischen Philologie'', 171, Meisenheim, 1985 ;
2978 ** “Kleos Aphthiton and Oral Theory,” ''Classical Quarterly'', 38 (1988): pp. 25-30 ;
2979 * HÊlène MonsacrÊ, ''Les larmes d'Achille. Le hÊros, la femme et la souffrance dans la poÊsie d'Homère'', Paris, Albin Michel, 1984;
2980 * [[Gregory Nagy]]:
2981 ** ''The Best of The Acheans: Concepts of the Hero in Archaic Greek Poetry'', Johns Hopkins University, 1999 (rev. edition);
2982 ** ''The Name of Achilles: Questions of Etymology and 'Folk Etymology''', ''Illinois Classical Studies'', 19, 1994;
2983 * Dale S. Sinos, ''The Entry of Achilles into Greek Epic'', Ph.D. thesis, Johns Hopkins University;
2984 * Johansson, Warren. ''Achilles.'' [http://williamapercy.com/pub-EncyHom.htm '''Encyclopedia of Homosexuality.'''] Dynes, Wayne R. (ed.), Garland Publishing, 1990. p. 8
2985
2986 ==External links==
2987 {{commons|Category:Achilles}}
2988 * [http://www.androphile.org/preview/Library/Mythology/Greek/ The Story of Achilles and Patroclus]
2989 * [http://www.historyguide.org/ancient/troy.html Trojan War Resources]
2990
2991 [[Category:People who fought in the Trojan War]]
2992 [[Category:Anti-heroes|Achilles]]
2993 [[Category:Pederastic heroes and deities]]
2994
2995 &lt;!-- interwiki --&gt;
2996
2997 {{Link FA|fr}}
2998
2999 [[ar:ØŖØŽŲŠŲ„]]
3000 [[bg:АŅ…иĐģ]]
3001 [[ca:Aquil¡les]]
3002 [[da:Achilleus]]
3003 [[de:Achilleus]]
3004 [[et:Achilleus]]
3005 [[el:ΑĪ‡ÎšÎģÎģέιĪ‚]]
3006 [[es:Aquiles]]
3007 [[eo:AÄĨilo]]
3008 [[fa:ØĸشیŲ„]]
3009 [[fr:Achille]]
3010 [[gl:Aquiles]]
3011 [[ko:ė•„í‚Ŧ레ėš°ėŠ¤]]
3012 [[hr:Ahilej]]
3013 [[it:Achille]]
3014 [[he:אכילס]]
3015 [[la:Achilles]]
3016 [[lt:Achilas]]
3017 [[lb:Achilleus]]
3018 [[hu:Akhilleusz]]
3019 [[nl:Achilles]]
3020 [[ja:ã‚ĸキãƒŦã‚Ļã‚š]]
3021 [[no:Akilles]]
3022 [[pl:Achilles (mitologia)]]
3023 [[pt:Aquiles]]
3024 [[ru:АŅ…иĐģĐģĐĩŅ]]
3025 [[sk:Achilles]]
3026 [[sl:Ahil]]
3027 [[fi:Akhilleus]]
3028 [[sv:Akilles]]
3029 [[uk:АŅ…Ņ–ĐģĐģĐĩŅ]]
3030 [[zh:é˜ŋåŸēį‰æ–¯]]</text>
3031 </revision>
3032 </page>
3033 <page>
3034 <title>AppliedStatistics</title>
3035 <id>306</id>
3036 <revision>
3037 <id>15899043</id>
3038 <timestamp>2002-02-25T15:43:11Z</timestamp>
3039 <contributor>
3040 <ip>Conversion script</ip>
3041 </contributor>
3042 <minor />
3043 <comment>Automated conversion</comment>
3044 <text xml:space="preserve">#REDIRECT [[Applied statistics]]
3045 </text>
3046 </revision>
3047 </page>
3048 <page>
3049 <title>Abraham Lincoln</title>
3050 <id>307</id>
3051 <revision>
3052 <id>42155236</id>
3053 <timestamp>2006-03-04T04:35:40Z</timestamp>
3054 <contributor>
3055 <username>Naconkantari</username>
3056 <id>676502</id>
3057 </contributor>
3058 <minor />
3059 <comment>Reverted edits by [[Special:Contributions/Bennettsnider|Bennettsnider]] ([[User talk:Bennettsnider|talk]]) to last version by Naconkantari</comment>
3060 <text xml:space="preserve">:''For other uses of the name Abraham Lincoln, see [[Abraham Lincoln (disambiguation)]]''
3061 {{Infobox_President | name=Abraham Lincoln
3062 | nationality=American
3063 | image=Abraham Lincoln head on shoulders photo portrait.jpg
3064 | order=16th President
3065 | term_start=[[March 4]], [[1861]]
3066 | term_end=[[April 15]], [[1865]]
3067 | predecessor=[[James Buchanan]]
3068 | successor=[[Andrew Johnson]]
3069 | birth_date=[[February 12]], [[1809]]
3070 | birth_place=[[Hardin County, Kentucky]] (now in [[LaRue County, Kentucky|LaRue County]])
3071 | death_date=[[April 15]], [[1865]]
3072 | death_place=[[Washington, D.C.]]
3073 | spouse=[[Mary Todd Lincoln]]
3074 | party=[[Republican Party (United States)|Republican]]
3075 | vicepresident=[[Hannibal Hamlin]] (1861 to 1865); [[Andrew Johnson]] (March - April 1865)
3076 }}
3077 '''Abraham Lincoln''' ([[February 12]], [[1809]] – [[April 15]], [[1865]]), sometimes called '''Abe Lincoln''' and nicknamed '''Honest Abe''', the '''Rail Splitter''', and the '''Great Emancipator''', was the 16th [[President of the United States]] (1861 to 1865), and the first president from the [[History of United States Republican Party|Republican Party]]. Lincoln opposed the expansion of slavery and oversaw the Union war effort during the [[American Civil War]]. He selected the generals and approved their strategy; selected senior civilian officials; supervised diplomacy, patronage and party affairs; rallied public opinion through messages and speeches such as the [[Gettysburg Address]]; and took personal charge of plans for the [[Emancipation Proclamation|abolition of slavery]] and the [[Reconstruction]] of the Union. He was assassinated as the war ended by [[John Wilkes Booth]].
3078
3079 ==Role in history==
3080 President Lincoln was opposed to what he saw as the [[Slave Power]] and staunchly opposed its efforts to expand [[history of slavery in the United States|slavery]] into federal territories. His victory in the [[U.S. presidential election, 1860|1860 presidential election]] further polarized an already divided nation. Before his inauguration in March of 1861, seven [[Southern United States|Southern]] states [[secession|seceded]] from the [[United States]], formed the [[Confederate States of America]], and took control of U.S. forts and other properties within their boundaries. These events soon led to the [[American Civil War]].
3081
3082 Lincoln is often praised for his work as a wartime leader who proved adept at balancing competing considerations and at getting rival groups to work together toward a common goal. Lincoln had to negotiate between [[Radical Republican|Radical]] and Moderate Republican leaders, who were often far apart on the issues, while attempting to win support from [[War Democrats]] and loyalists in the seceding states. He personally directed the war effort, in close cooperation (1864-65) with General [[Ulysses S. Grant]] which ultimately led the Union forces to victory over the [[Confederate States of America|Confederacy]].
3083
3084 His leadership qualities were evident in his diplomatic handling of the border slave states at the beginning of the fighting, in his defeat of a congressional attempt to reorganize his cabinet in 1862, in his many speeches and writings which helped mobilize and inspire the North, and in his defusing of the peace issue in the [[U.S. presidential election, 1864|1864 presidential campaign]]. [[Copperheads (politics)|Copperheads]] vehemently criticized him for violating the Constitution, overstepping the bounds of executive power, refusing to compromise on slavery, declaring [[martial law]], suspending [[habeas corpus]], ordering the arrest of thousands of public officials and a number of newspaper publishers, and killing hundreds of thousands of young men. [[Radical Republicans]] criticized him for going too slow on abolition of slavery, and not being ruthless enough toward the conquered South.
3085
3086 Lincoln is most famous for his roles in preserving the Union and ending [[slavery]] in the United States with the [[Emancipation Proclamation]] and the [[Thirteenth Amendment to the United States Constitution]]. However, some abolitionists criticized him for only freeing the slaves under the Confederacy in 1863, and waiting until 1865 to free slaves held in the Union.
3087
3088 Historians have argued that Lincoln had a lasting influence on U.S. political and social institutions, importantly setting a precedent for greater centralization of powers in the federal government and the weakening of the powers of the individual [[state government]]s.
3089
3090 Lincoln spent most of his attention on military matters and politics but with his strong support his administration established the current system of [[national bank]]s with the [[National Bank Act]]. He increased the [[Morrill tariff|tariff]] to raise revenue and encourage factories, imposed the first [[Income tax in the United States|income tax]], issued hundreds of millions of dollars of bonds and Greenbacks, encouraged immigration from Europe, built the [[First Transcontinental Railroad|transcontinental railroad]], set up the [[United States Department of Agriculture|Department of Agriculture]], encouraged farm ownership with the [[Homestead Act]] of 1862, and set up the modern system of state universities with the [[Morrill Land-Grant Colleges Act]]. During the war his Treasury department effectively controlled all cotton trade in the occupied South--the most dramatic incursion of federal controls on the economy. During his administration [[West Virginia]] and [[Nevada]] were admitted as states.
3091
3092 Lincoln is usually [[historical rankings of U.S. Presidents|ranked as one of the greatest presidents]]. Because of his roles in destroying slavery, redefining national values, and saving the Union, his [[assassination]] made him a [[martyr]] to millions of Americans. However, others considered him an unconstitutional tyrant for declaring martial law, suspending civil liberties, habeas corpus, and the First Amendment, and ordering the arrest of thousands of public officials and newspaper publishers.
3093
3094 ==Early life==
3095 Abraham Lincoln was born on [[February 12]], [[1809]], in a one-room [[log cabin]] on the 348 acre (1.4 km&amp;sup2;) Sinking Spring Farm in the Southeast part of [[Hardin County, Kentucky]], then considered the [[frontier]] (now part of [[LaRue County, Kentucky|LaRue Co.]], in Nolin Creek, three miles (5 km) south of [[Hodgenville, Kentucky|Hodgenville]]), to [[Thomas Lincoln]] and [[Nancy Hanks]]. Lincoln was named after his deceased grandfather, who was [[scalping|scalped]] in 1786 in an Indian raid. He had no middle name. Lincoln's parents were uneducated, illiterate farmers. When Lincoln became famous, reporters and storytellers often exaggerated the poverty and obscurity of his birth. However Lincoln's father Thomas was a respected and relatively affluent citizen of the Kentucky backcountry. He had purchased the [[Abraham Lincoln Birthplace National Historic Site|Sinking Spring Farm]] in December 1808 for $200 cash and assumption of a debt. His parents belonged to a Baptist church that had pulled away from a larger church because they refused to support slavery. From a very young age, Lincoln was exposed to anti-slavery sentiment. However he never joined his parents' church, or any other church, and as a youth ridiculed religion.
3096
3097 Three years after purchasing the property, a prior land claim filed in Hardin Circuit Court forced the Lincolns to move. Thomas continued legal action until he lost the case in 1815. Legal expenses contributed to family difficulties. In 1811, they were able to lease 30 acres (0.1 km&amp;sup2;) of a 230 acre (0.9 km&amp;sup2;) farm on Knob Creek a few miles away, where they then moved. In a valley of the [[Rolling Fork River]], this was some of the best farmland in the area. At this time, Lincoln's father was a respected community member and a successful farmer and carpenter. Lincoln's earliest recollections are from this farm. In 1815, another claimant sought to eject the family from the [[Abraham Lincoln Birthplace National Historic Site|Knob Creek farm]]. Frustrated with litigation and lack of security provided by Kentucky courts, Thomas decided to move to [[Indiana]], which had been surveyed by the federal government, making land titles more secure. It is possible that these episodes motivated Abraham to later learn surveying and become an attorney.
3098
3099 In 1816, when Lincoln was seven years old, he and his parents moved to [[Spencer County, Indiana]], he would state &quot;partly on account of slavery&quot; and partly because of economic difficulties in Kentucky. In 1818, Lincoln's mother died of &quot;[[milk sickness]]&quot; at age thirty four, when Abe was nine. Soon afterwards, Lincoln's father remarried to Sarah Bush Johnston. Sarah Lincoln raised young Lincoln like one of her own children. Years later she compared Lincoln to her own son, saying &quot;Both were good boys, but I must say — both now being dead that Abe was the best boy I ever saw or ever expect to see.&quot; (''Lincoln'', by David Herbert Donald, 1995)
3100
3101 In 1830, after more economic and land-title difficulties in Indiana, the family settled on government land on a site selected by Lincoln's father in [[Macon County, Illinois]]. The following winter was especially brutal, and the family nearly moved back to Indiana. When his father relocated the family to a nearby site the following year, the 22-year-old Lincoln struck out on his own, [[canoe]]ing down the Sangamon to [[Sangamon County, Illinois]] (now in [[Menard County, Illinois|Menard County]]), in the village of [[New Salem (Menard County), Illinois|New Salem]]. Later that year, hired by New Salem businessman [[Denton Offutt]] and accompanied by friends, he took goods from New Salem to [[New Orleans, Louisiana|New Orleans]] via [[flatboat]] on the Sangamon, [[Illinois River|Illinois]] and [[Mississippi River|Mississippi]] [[river]]s. While in New Orleans, he may have witnessed a slave auction that left an indelible impression on him for the rest of his life. Whether he actually witnessed a slave auction at that time or not, living in a country with a considerable slave presence, he probably saw similar atrocities from time to time.
3102
3103 His formal education consisted of perhaps 18 months of schooling from itinerant teachers. In effect he was self-educated, studying every book he could borrow. He mastered the Bible, Shakespeare, English history and American history, and developed a plain style that puzzled audiences more used to orotund oratory. He avoided hunting and fishing because he did not like killing animals even for food and, though unusually tall and strong, spent so much time reading that some neighbors thought he must be doing it to avoid strenuous manual labor. He was skilled with an axe—they called him the &quot;rail splitter&quot;—and a good wrestler.
3104
3105 [[Image:Abe_Lincoln_young.jpg|thumb|200px|left|Young Abraham Lincoln]]
3106
3107 ==Early career==
3108 Lincoln began his political career in 1832 at the age of 23 with a campaign for the [[Illinois General Assembly]] as a member of the [[Whig Party (United States)|Whig Party]]. The centerpiece of his platform was the undertaking of navigational improvements on the [[Sangamon River]] in the hopes of attracting [[steamboat]] traffic to the river, which would allow sparsely populated, poor areas along and near the river to grow and prosper. He served as a captain in a company of the [[Illinois]] [[militia]] drawn from New Salem during the [[Black Hawk War]], although he never saw combat. He wrote after being elected by his peers that he had not had &quot;any such success in life which gave him so much satisfaction.&quot;
3109
3110 He later tried and failed at several small-time business ventures. He held an Illinois state [[liquor]] license and sold whiskey. Finally, after coming across the second volume of [[Sir William Blackstone]]'s four-volume ''[[Commentaries on the Laws of England]]'', he taught himself the [[law]], and was admitted to the [[Illinois State Bar Association|Illinois Bar]] in 1837. That same year, he moved to [[Springfield, Illinois]] and began to practice law with [[Stephen T. Logan]]. He became one of the most respected and successful lawyers in the prairie state, and grew steadily more prosperous. Lincoln served four successive terms in the [[Illinois House of Representatives]], as a representative from [[Sangamon County, Illinois|Sangamon County]], beginning in 1834. He became a leader of the Whig party in the legislature. In 1837 he made his first protest against slavery in the Illinois House, stating that the institution was &quot;founded on both injustice and bad policy.&quot; [http://www.hti.umich.edu/l/lincoln/]
3111
3112 Lincoln shared a bed with [[Joshua Fry Speed]] from 1837 to 1841 in Springfield. While many historians claim it was not uncommon in the mid-19th century for men to share a bed (just as two men today may share a house or an apartment), gay activist [[C. A. Tripp]] generated controversy with his 2005 book ''[[The Intimate World of Abraham Lincoln]]'', which suggested their relationship may also have been sexual.
3113
3114 In 1841, Lincoln entered law practice with [[William Herndon (lawyer)|William Herndon]], a fellow Whig. In 1856, both men joined the fledgling [[Republican Party (United States)|Republican Party]]. Following Lincoln's assassination, Herndon began collecting stories about Lincoln from those who knew him in central Illinois, eventually publishing a book, ''Herndon's Lincoln''. Lincoln never joined an antislavery society and denied he supported the abolitionists. He married into a prominent slave-owning family from Kentucky, and allowed his children to spend time there surrounded by slaves. Several of his in-laws became Confederate officers. He greatly admired the science that flourished in New England, and was perhaps the only father in Illinois at the time to send his son, [[Robert Todd Lincoln]], to elite eastern schools, [[Phillips Exeter Academy]] and [[Harvard College]].
3115
3116 ==Marriage==
3117 On [[November 4]], [[1842]], at the age of 33, Lincoln married [[Mary Todd Lincoln|Mary Todd]]. The couple had four sons.
3118 *[[Robert Todd Lincoln]]: b. [[August 1]], [[1843]], in Springfield, Illinois; d. [[July 26]], [[1926]], in [[Manchester, Vermont]].
3119 *[[Edward Baker Lincoln]]: b. [[March 10]], [[1846]], in Springfield, Illinois; d. [[February 1]], [[1850]], in Springfield, Illinois.
3120 *[[William Wallace Lincoln]]: b. [[December 21]], [[1850]], in Springfield, Illinois; d. [[February 20]], [[1862]], in Washington, D.C.
3121 *[[Thomas (Tad) Lincoln]]: b. [[April 4]], [[1853]], in Springfield, Illinois; d. [[July 16]], [[1871]], in [[Chicago, Illinois]].
3122
3123 Only Robert survived into adulthood. Of Robert's three children, only [[Jessie Harlan Lincoln|Jessie Lincoln]] had any children (two: Mary Lincoln Beckwith and Robert Todd Lincoln Beckwith). Neither Robert Beckwith nor Mary Beckwith had any children, so Abraham Lincoln's bloodline ended when Robert Beckwith (Lincoln's great-grandson) died on [[December 24]], [[1985]].
3124 [http://members.aol.com/beaufait/biography/geneology.htm]
3125
3126 ==Illinois politics==
3127 [[Image:Abelincoln1846.jpeg|thumb|Lincoln in 1846 or 1847]]
3128 In 1846, Lincoln was elected to one term in the [[United States House of Representatives|U.S. House of Representatives]]. A staunch Whig, Lincoln often referred to party leader [[Henry Clay]] as his political idol. As a freshman House member, Lincoln was not a particularly powerful or influential figure in Congress. He used his office as an opportunity to speak out against the [[Mexican-American War|war]] with [[Mexico]], which he attributed to [[James Knox Polk|President Polk]]'s desire for &quot;military glory — that attractive rainbow, that rises in showers of blood.&quot;
3129
3130 Lincoln was a key early supporter of [[Zachary Taylor]]'s candidacy for the [[U.S. presidential election, 1848|1848 '''Whig Presidential nomination]]. When Lincoln's term ended, the incoming Taylor administration offered him the governorship of remote [[Oregon Territory]]. Acceptance would end his career in the fast-growing state of Illinois, so he declined. Returning instead to [[Springfield, Illinois]] he turned''' most of his energies to making a living at the [[bar (law)|bar]], which involved extensive travel on horseback from county to county.
3131
3132 ==Prairie lawyer==
3133 By the mid-1850s, Lincoln faced competing transportation interests — both the river [[barge]]s and the [[railroad]]s. In 1849, he received a patent related to buoying vessels. Lincoln represented the [[Alton &amp; Sangamon Railroad]] in an 1851 dispute with one of its shareholders, [[James A. Barret]]. Barret had refused to pay the balance on his pledge to that corporation on the grounds that it had changed its originally planned route. Lincoln argued that as a matter of law a corporation is not bound by its original charter when that charter can be amended in the public interest, that the newer proposed Alton &amp; Sangamon route was superior and less expensive, and that accordingly the corporation had a right to sue Mr. Barret for his delinquent payment. He won this case, and the decision by the [[Illinois Supreme Court]] was eventually cited by several other courts throughout the United States.
3134
3135 Another important example of Lincoln's skills as a railroad lawyer was a lawsuit over a tax exemption that the state granted to the [[Illinois Central Railroad]]. [[McLean County, Illinois|McLean County]] argued that the state had no authority to grant such an exemption, and it sought to impose taxes on the railroad notwithstanding. In January 1856, the Illinois Supreme Court delivered its opinion upholding the tax exemption, accepting Lincoln's arguments.
3136
3137 Lincoln's most notable criminal trial came in 1858 when he defended [[William &quot;Duff&quot; Armstrong]], who was on trial for the murder of [[James Preston Metzker]]. The case is famous for Lincoln's use of [[judicial notice]], a rare tactic at that time, to show an eyewitness had lied on the stand, claiming he witnessed the crime in the moonlight. Lincoln produced a [[Farmer's Almanac]] to show that the moon on that date was at such a low angle it could not have produced enough illumination to see anything clearly. Based upon this evidence, Armstrong was acquitted.
3138
3139 ==Republican politics 1854-1860==
3140 The [[Kansas-Nebraska Act]] of 1854, which expressly repealed the limits on slavery's spread that had been part of the [[Missouri Compromise]] of 1820, drew Lincoln back into politics.
3141
3142 Illinois Democrat [[Stephen A. Douglas]], the most powerful man in the Senate, proposed [[popular sovereignty]] as the solution to the slavery impasse, incorporating it into the Kansas-Nebraska Act. Douglas argued that in a democracy the people of a territory should decide whether to allow slavery or not, and not have a decision imposed on them by Congress.
3143
3144 It was a speech against Kansas-Nebraska, on [[October 16]], [[1854]] in [[Peoria, Illinois|Peoria]], that caused Lincoln to stand out among the other [[free soil]] orators of the day. He helped form the new Republican party, drawing on remnants of the old Whig, [[Free Soil Party|Free Soil]], Liberty and Democratic parties.
3145 In a stirring campaign, the Republicans carried Illinois in 1854, and elected a senator. Lincoln was the obvious choice, but to keep party unity he allowed the election to go to his colleague [[Lyman Trumbull]].
3146
3147 In 1857-58 Douglas broke with President [[James Buchanan|Buchanan]], leading to a terrific fight for control of the Democratic party. Some eastern Republicans even favored the reelection of Douglas in 1858, since he led the opposition to the administration's push for the [[Lecompton Constitution]] which would have admitted Kansas as a [[slave state]]. Accepting the Republican nomination for the Senate in 1858, Lincoln delivered a famous speech [http://www.nationalcenter.org/HouseDivided.html] in which he stated, &quot;A house divided against itself cannot stand. I believe this government cannot endure permanently half slave and half free. I do not expect the Union to be dissolved — I do not expect the house to fall — but I do expect it will cease to be divided. It will become all one thing, or all the other.&quot; The speech created a lasting image of the danger of disunion due to slavery, and rallied Republicans across the north.
3148
3149 The 1858 campaign featured the [[Lincoln-Douglas Debates of 1858|Lincoln-Douglas debates]], a nationally noticed discussion on the issues that threatened to split the nation in two. Lincoln forced Douglas to propose his [[Freeport Doctrine]], which lost him further support among slave-holders and speeded the division of the Democratic Party. Though the Republican legislative candidates won more popular votes, the Democrats won more seats and the legislature reelected Douglas to the Senate. Nevertheless, Lincoln's eloquence transformed him into a national political star.
3150
3151 During the debates of 1858 the issue of race was often discussed. During a time period when racial egalitarianism was considered politically incorrect, Stephen Douglas would inform the crowds, “If you desire negro citizenshipâ€Ļif you desire them to vote on an equality with yourselvesâ€Ļ then support Mr. Lincoln and the Black Republican party, who are in favor of the citizenship of the negro.” [http://www.nps.gov/liho/debate1.htm (Official Records of Debate)] On the defensive Lincoln countered that he was “not in favor of bringing about in any way the social and political equality of the white and black races.” [http://www.nps.gov/liho/debate4.htm (Official Records of Debate)] Historians generally remained mixed on what Lincoln’s actual views were on race. However, many tend to doubt that the highly political nature of these debates offer reliable evidence about his personal views. (Team of Rivals, by Doris Kearns Goodwin, 2005) (Lincoln: In Text and Context, by Donald Fehrenbacher, 1987) As Fredrick Douglass observed, “[Lincoln was] the first great man that I talked with in the United States freely who in no single instance reminded me of the difference between himself and myself, of the difference of color.” (Life and Times of Fredrick Douglass, by Fredrick Douglass, 1895)
3152
3153 Lincoln's opposition to slavery was opposition to the [[Slave Power]], and he was not an abolitionist in 1858. But the Civil War changed everything, and changed Lincoln's beliefs in race relations as well.
3154
3155 ==Election of 1860==
3156 [[Image:The Rail Candidate.jpg|thumb|&quot;The Rail Candidate&quot;, political cartoon, 1860]]
3157 Entering the presidential nomination process as a distinct underdog, Lincoln was eventually chosen as the Republican candidate for the [[U.S. presidential election, 1860|1860 election]] for several reasons. His expressed views on slavery were seen as more moderate than rivals [[William H. Seward]] and [[Salmon Chase]]. His &quot;western&quot; origins also appealed to the newer states. Other contenders, especially those with more governmental experience, had acquired enemies within the party, specifically Seward, who had run afoul of newspaperman [[Horace Greeley]]. During the campaign, Lincoln was dubbed &quot;The Rail Splitter&quot; by Republicans to emphasize the power of &quot;free labor,&quot; whereby a common farm boy could work his way to the top by his own efforts.
3158
3159 On [[November 6]], [[1860]], Lincoln was elected the 16th President of the United States, beating Democrat Douglas, [[John C. Breckenridge]] of the Southern Democrats, and [[John C. Bell]] of the new [[Constitutional Union Party (United States)|Constitutional Union Party]]. Lincoln was the first Republican president. He won entirely on the strength of his support in the North: he was not even on the ballot in nine states in the South — and won only 2 of 996 counties there. Lincoln gained 1,865,908 votes (39.9% of the total,) for 180 electoral votes, Douglas 1,380,202 (29.5%) for 12 electoral votes, Breckenridge 848,019 (18.1%) for 72 electoral votes, and Bell 590,901 (12.5%) for 39 electoral votes. There were fusion tickets in some states, but even if his opponents had combined in every state, Lincoln had a majority vote in all but two of the states in which he won the electoral votes, and would still have won the electoral college and the election.
3160
3161 ==Secession winter 1860-61==
3162 As Lincoln's election became more and more probable, secessionists made it clear that their states would leave the Union. South Carolina took the lead followed by six other [[cotton]]-growing states: Georgia, Florida, Alabama, Mississippi, Louisiana, and Texas. The upper South (Delaware, Maryland, Virginia, North Carolina, Tennessee, Kentucky, Missouri, and Arkansas) listened to and rejected the secessionist appeal. They decided to stay in the Union, though warning Lincoln they would not support an invasion through their territory. The seven Confederate states seceded before Lincoln took office, declaring themselves an entirely new nation, the [[Confederate States of America]]. President Buchanan and president-elect Lincoln refused to recognize the Confederacy.
3163
3164 President-elect Lincoln survived an [[assassination]] threat in Baltimore, and on [[February 23]], [[1861]] arrived in disguise in Washington. At Lincoln's inauguration on [[March 4]], [[1861]], the [[Turners]] formed Lincoln's bodyguard; and a sizable garrison of federal troops was also present, ready to protect the capital from Confederate invasion or insurrection from Confederates in the capital city.
3165
3166 [[Image:Abraham lincoln inauguration 1861.jpg|thumb|left|175px|Photograph showing [[March 4]], [[1861]] inauguration of Abraham Lincoln in front of U.S. Capitol]]
3167 In his [[Lincoln's First Inaugural|First Inaugural]] Address, Lincoln declared, &quot;I hold that in contemplation of universal law and of the Constitution the Union of these States is perpetual. Perpetuity is implied, if not expressed, in the fundamental law of all national governments&quot;, arguing further that the purpose of the [[United States Constitution]] was &quot;to form a more perfect union&quot; than the [[Articles of Confederation]] which were ''explicitly'' perpetual, and thus the Constitution too was perpetual. He asked rhetorically that even were the Constitution a simple contract, would it not require the agreement of all parties to rescind it?
3168
3169 Also in his inaugural address, in a final attempt to unite the Union and prevent the looming war, Lincoln supported the proposed [[Corwin amendment|Corwin Amendment]] to the constitution, of which he had been a driving force. It would have explicitly protected slavery in those states in which it already existed, and had already passed both houses. Lincoln adamantly opposed the [[Crittenden Compromise]], however, which would have permitted slavery in the territories, renewing the boundary set by the [[Missouri Compromise]] and extending it to [[California]]. Despite support for this compromise among some Republicans, Lincoln declared that were the Crittenden Compromise accepted, it &quot;would amount to a perpetual covenant of war against every people, tribe, and state owning a foot of land between here and [[Tierra del Fuego]].&quot;
3170
3171 Because opposition to slavery expansion was the key issue uniting the Republican Party at the time, Lincoln is sometimes criticized for putting politics ahead of the national interest in refusing any compromise allowing the expansion of slavery. Supporters of Lincoln, however, point out that he did not oppose slavery because he was a Republican, but became a Republican because of his opposition to the expansion of slavery, that he opposed several other Republicans who were in favor of compromise, and that he clearly thought his course of action was in the national interest. By the time Lincoln took office the Confederacy was an established fact and not a single leader of that country ever proposed rejoining the Union on any terms. No compromise was found because no compromise was possible. Lincoln perhaps could have allowed the southern states to secede, and some Republicans recommended that. However conservative Democratic nationalists, such as [[Jeremiah S. Black]], [[Joseph Holt]], and [[Edwin M. Stanton]] had taken control of Buchanan's cabinet around January 1, 1861, and refused to accept secession. Lincoln, and nearly all Republican leaders, adopted this nationalistic position by March, 1861: the Union could not be broken.
3172
3173 ==War begins: 1861-1862==
3174 {{main|American Civil War}}
3175 After Union troops at [[Battle of Fort Sumter|Fort Sumter]] were fired on and forced to surrender in April, Lincoln called on governors of every state to send 75,000 troops to recapture forts, protect the capital, and &quot;preserve the Union,&quot; which in his view still existed intact despite the actions of the seceding states. Virginia, which had repeatedly warned Lincoln it would not allow an invasion of its territory or join an attack on another state, then seceded, along with North Carolina, Tennessee and Arkansas.
3176
3177 The slave states of Missouri, Kentucky, Maryland, and Delaware did not secede, and Lincoln urgently negotiated with state leaders there, promising not to interfere with slavery in loyal states.
3178
3179 ==Emancipation Proclamation==
3180 [[Image:Emancipation_proclamation.jpg|thumb|300px|right|Lincoln met with his Cabinet for the first reading of the [[Emancipation Proclamation]] draft on [[July 22]], [[1862]].]]
3181 {{main articles|[[Abraham Lincoln on slavery]] and [[Emancipation Proclamation]]}}
3182 Congress in July 1862 moved to free the slaves by passing the Second Confiscation Act. It provided:
3183 :That if any person shall hereafter incite, set on foot, assist, or engage in any rebellion or insurrection against the authority of the United States, or the laws thereof, or shall give aid or comfort thereto, or shall engage in, or give aid and comfort to, any such existing rebellion or insurrection, and be convicted thereof, such person shall be punished by imprisonment for a period not exceeding ten years, or by a fine not exceeding ten thousand dollars, and by the liberation of all his slaves, if any he have; or by both of said punishments, at the discretion of the court.
3184 :....
3185 :SEC. 9. And be it further enacted, That all slaves of persons who shall hereafter be engaged in rebellion against the government of the United States, or who shall in any way give aid or comfort thereto, escaping from such persons and taking refuge within the lines of the army; and all slaves captured from such persons or deserted by them and coming under the control of the government of the United States; and all slaves of such person found on [or] being within any place occupied by rebel forces and afterwards occupied by the forces of the United States, shall be deemed captives of war, and shall be forever free of their servitude, and not again held as slaves.
3186
3187 Thus everyone who 60 days after [[July 17]], [[1862]] supported the rebellion was to be punished by having all their slaves freed. The goal was to weaken the rebellion, which was led and controlled by slave owners. This did not abolish the legal institution of slavery (the XIII Amendment did that), but it shows Lincoln had the support of (and was even somewhat pushed by) Congress in liberating the slaves owned by rebels. Lincoln implemented the new law by his &quot;Emancipation Proclamation.&quot;
3188
3189 Lincoln is well known for ending slavery in the United States and he personally opposed slavery as a profound moral evil not in accord with the principle of equality asserted in the [[Declaration of Independence (United States)|Declaration of Independence]]. Yet, Lincoln's views of the role of the federal government on the subject of slavery are more complicated. Before the Confederate states seceded, Lincoln had campaigned against the expansion of slavery into the [[Historic regions of the United States|territories]], where Congress did have authority. However, he maintained that the federal government could not constitutionally bar slavery in states where it already existed. During his presidency, Lincoln made it clear that the North was fighting the war to preserve the Union, not to abolish slavery. Freeing the slaves was a war measure to weaken the rebellion by destroying the economic base of its leadership class. Lincoln was criticized both at home and abroad for his refusal to take a stand for the complete abolition of slavery. On [[August 22]], [[1862]], a few weeks before signing the Proclamation, and after it had already been drafted, Lincoln responded by letter to an editorial by [[Horace Greeley]] of the ''[[New York Tribune]]'' which had urged abolition:
3190 :I would save the Union. I would save it the shortest way under the Constitution. The sooner the national authority can be restored; the nearer the Union will be &quot;the Union as it was.&quot; If there be those who would not save the Union, unless they could at the same time save slavery, I do not agree with them. If there be those who would not save the Union unless they could at the same time destroy slavery, I do not agree with them. My paramount object in this struggle is to save the Union, and is not either to save or to destroy slavery. If I could save the Union without freeing any slave I would do it, and if I could save it by freeing all the slaves I would do it; and if I could save it by freeing some and leaving others alone I would also do that. What I do about slavery, and the colored race, I do because I believe it helps to save the Union; and what I forbear, I forbear because I do not believe it would help to save the Union. I shall do less whenever I shall believe what I am doing hurts the cause, and I shall do more whenever I shall believe doing more will help the cause. I shall try to correct errors when shown to be errors; and I shall adopt new views so fast as they shall appear to be true views.
3191 :I have here stated my purpose according to my view of official duty; and I intend no modification of my oft-expressed personal wish that all men everywhere could be free.[http://showcase.netins.net/web/creative/lincoln/speeches/greeley.htm]
3192
3193 With the [[Emancipation Proclamation]] issued in two parts on [[September 22]], [[1862]] and [[January 1]], [[1863]], Lincoln made the abolition of slavery a goal of the war. Lincoln addresses the issue of his consistency (or lack thereof) between his earlier position and his later position on emancipation in an 1864 letter to [[Albert G. Hodges]][http://showcase.netins.net/web/creative/lincoln/speeches/hodges.htm]
3194
3195 Lincoln is often credited with freeing enslaved [[African Americans]] with the [[Emancipation Proclamation]]. However, border states that still allowed slavery but were under Union control were exempt from the emancipation because they were not covered under any war measures. The proclamation on its first day, [[January 1]], [[1863]], freed only a few escaped slaves, but as Union armies advanced south more and more slaves were liberated until hundreds of thousands were freed (exactly how many is unknown). Lincoln signed the Proclamation as a wartime measure, insisting that only the outbreak of war gave constitutional power to the President to free slaves in states where it already existed. He later said: &quot;I never, in my life, felt more certain that I was doing right, than I do in signing this paper.&quot; The proclamation made abolishing slavery in the rebel states an official war goal and it became the impetus for the enactment of the [[Thirteenth Amendment to the United States Constitution|13th Amendment]] to the [[United States Constitution]] which abolished slavery; Lincoln was one of the main promoters of that amendment.
3196
3197 Although some Northern conservatives recoiled at the notion that the war was now being fought for the slaves instead of for preserving the Union, in the end the Emancipation Proclamation did much to help the Northern cause politically. Lincoln's strong [[abolitionist]] stand finally convinced the [[United Kingdom of Great Britain and Ireland]] and other foreign countries that they could not support the [[Confederate States of America]]. This move remains one of the great seizures of private property by the federal government, restoring the ownership of the blacks to themselves,
3198
3199 Lincoln had for some time been working on plans to set up [[Abraham Lincoln on slavery#Colonization|colonies]] in Africa and South America for the nearly 4 million newly freed slaves. He remarked upon colonization favorably in the Emancipation Proclamation, but all attempts at such a massive undertaking failed.
3200
3201 ==Important domestic measures of Lincoln's first term==
3202 [[Image:Lincoln.png|thumb|right|While Lincoln is usually portrayed bearded, he first grew a beard in 1861 at the suggestion of 11-year-old [[Grace Bedell]].]]
3203
3204 Lincoln believed in the Whig theory of the presidency, which left Congress to write the laws. He was anti-vescovian. He signed them, vetoing only bills that threatened his war powers. Thus he signed the [[Homestead Act]] in 1862, making available millions of acres of government-held land in the west for purchase at very low cost. The [[Morrill Land-Grant Colleges Act]], also signed in 1862, provided government grants for [[agricultural universities]] in each state. Lincoln also signed the Pacific Railway Acts of 1862 and 1864, which granted federal support to the construction of the United States' first transcontinental railroad, which was completed in 1869. The most important legislation involved money matters, including the first income tax and higher tariffs. Most important was the creation of the system of national banks by the [[National Banking Act]]s of 1863, 1864 and 1865 which allowed the creation of a strong national financial system.
3205
3206 Lincoln sent a senior general to put down the &quot;[[Sioux Uprising |Sioux Uprising]]&quot; of August 1862 in [[Minnesota]]. Presented with 303 death warrants for convicted [[Santee Dakota]] who had massacred innocent farmers, Lincoln affirmed 39 of these for execution (one was later reprieved).
3207
3208 ==1864 election and second inauguration==
3209 After Union victories at [[Battle of Gettysburg|Gettysburg]], [[Battle of Vicksburg|Vicksburg]] and [[Battle of Chattanooga|Chattanooga]] in 1863, many in the North believed that victory was soon to come after Lincoln appointed [[Ulysses S. Grant|U.S. Grant]] General-in-Chief on [[March 12]], [[1864]]. Although no president since [[Andrew Jackson]] had been elected to a second term (and none since [[Martin Van Buren|Van Buren]] had been re-nominated), Lincoln's re-election was considered a certainty.
3210
3211 However, when the spring campaigns, east and west, all turned into bloody stalemates, Northern morale dipped and Lincoln seemed less likely to be re-nominated. [[U.S. Treasury Secretary|Treasury Secretary]] [[Salmon P. Chase]] strongly desired the Republican nomination and was working hard to win it, while [[John Fremont]] was nominated by a breakoff group of radical Republicans, potentially taking away crucial votes in the November elections.
3212
3213 Fearing he might lose the election, Lincoln wrote out and signed the following pledge, but did not show it to his cabinet, asking them each to sign the sealed envelope. Lincoln wrote:
3214
3215 :This morning, as for some days past, it seems exceedingly probable that this Administration will not be re-elected. Then it will be my duty to so co-operate with the President elect, as to save the Union between the election and the inauguration; as he will have secured his election on such ground that he can not possibly save it afterwards.
3216
3217 The Democrats, hoping to make setbacks in the war a top campaign issue, waited until late summer to nominate a candidate. Their platform was heavily influenced by the [[Copperheads (politics)|Peace wing]] of the party, calling the war a &quot;failure,&quot; but their candidate, former General [[George McClellan]], was a [[War Democrats|War Democrat]], determined to prosecute the war until the Union was restored, although willing to compromise on all other issues, including slavery.
3218
3219 McClellan's candidacy was soon undercut as on [[September 1]], just two days after the [[1864 Democratic National Convention|convention]], [[Battle of Atlanta|Atlanta]] was abandoned by the Confederate army. Coming on the heels of [[David Farragut|David Farragut's]] capture of [[Battle of Mobile Bay|Mobile Bay]] and followed by [[Phil Sheridan|Phil Sheridan's]] crushing victory over [[Jubal Anderson Early|Jubal Early's]] army at [[Battle of Cedar Creek|Cedar Creek]], it was now apparent that the tide had turned in favor of the Union and that Lincoln may be reelected despite the costs of the war.
3220
3221 Still, Lincoln believed that he would win the [[U.S. Electoral College|electoral vote]] by only a slim margin, failing to give him the [[Mandate (politics)|mandate]] he'd need if he was to push his lenient [[reconstruction]] plan. To his surprise, Lincoln ended up winning all but two states, capturing 212 of 233 electoral votes.
3222
3223 After Lincoln's election, on [[March 4]], [[1865]], he delivered his [[Lincoln's second inaugural address|second inaugural address]], which was his favorite of all his speeches. At this time, a victory over the rebels was within sight, [[slavery]] had effectively ended, and Lincoln was looking to the future.
3224
3225 :Fondly do we hope--fervently do we pray--that this mighty scourge of war may speedily pass away. Yet, if God wills that it continue, until all the wealth piled by the bond-man's two hundred and fifty years of unrequited toil shall be sunk, and until every drop of blood drawn with the lash, shall be paid by another drawn with the sword, as was said three thousand years ago, so still it must be said &quot;the judgments of the Lord, are true and righteous altogether&quot;
3226 :With malice toward none; with charity for all; with firmness in the right, as God gives us to see the right, let us strive on to finish the work we are in; to bind up the nation's wounds; to care for him who shall have borne the battle, and for his widow, and his orphan--to do all which may achieve and cherish a just and lasting peace, among ourselves, and with all nations.
3227
3228 ==Civil War and reconstruction==
3229 ===Conducting the war effort===
3230 The war was a source of constant frustration for the president, and it occupied nearly all of his time. Lincoln had a contentious relationship with General [[George B. McClellan]], who became general-in-chief of all the Union armies in the wake of the embarrassing Union defeat at the [[First Battle of Bull Run]] and after the retirement of [[Winfield Scott]] in late 1861. Lincoln wished to take an active part in planning the war strategy despite his inexperience in military affairs. Lincoln's strategic priorities were two-fold: first, to ensure that Washington, D.C., was well-defended; and second, to conduct an aggressive war effort in hopes of ending the war quickly and appeasing the Northern public and press, who pushed for an offensive war. McClellan, a youthful [[United States Military Academy|West Point]] graduate and railroad executive called back to military service, took a more cautious approach. McClellan took several months to plan and execute his [[Peninsula Campaign]], which involved capturing [[Richmond, Virginia|Richmond]] by moving the [[Army of the Potomac]] by boat to the [[Virginia Peninsula|peninsula]] between the [[James River (Virginia)|James]] and [[York River (Virginia)|York Rivers]]. McClellan's delay irritated Lincoln, as did McClellan's insistence that no troops were needed to defend Washington, D.C. Lincoln insisted on holding some of McClellan's troops to defend the capital, a decision McClellan blamed for the ultimate failure of his Peninsula Campaign.
3231
3232 McClellan, a lifelong [[Democratic Party (United States)|Democrat]] who was temperamentally conservative, was relieved as general-in-chief after releasing his ''[[Harrison's Landing Letter]]'', where he offered unsolicited political advice to Lincoln urging caution in the war effort. McClellan's letter incensed Radical Republicans, who successfully pressured Lincoln to appoint fellow Republican [[John Pope (military officer)|John Pope]] as head of the new [[Army of Virginia]]. Pope complied with Lincoln's strategic desire for the Union to move towards Richmond from the north, thus guarding Washington, D.C. However, Pope was soundly defeated at the [[Second Battle of Bull Run]] during the summer of 1862, forcing the Army of the Potomac back into the defenses of Washington for a second time. Pope was sent to Minnesota to fight the [[Sioux]].
3233
3234 Panicked by Confederate General [[Robert E. Lee]]'s invasion of [[Maryland]], Lincoln restored McClellan to command of all forces around Washington in time for the [[Battle of Antietam]] in September 1862. It was the Union victory in that battle that allowed Lincoln to release his Emancipation Proclamation. Lincoln relieved McClellan of command shortly after the 1862 midterm elections and appointed Republican [[Ambrose Burnside]] to head the Army of the Potomac, who promised to follow through on Lincoln's strategic vision for an aggressive offensive against Lee and Richmond. After Burnside was stunningly defeated at [[Battle of Fredericksburg|Fredericksburg]], [[Joseph Hooker]] was given command, despite his idle talk about becoming a military strong man. Hooker was routed by Lee at [[Battle of Chancellorsville|Chancellorsville]] in May 1863 and also relieved of command.
3235
3236 After the Union victory at [[Battle of Gettysburg|Gettysburg]], [[George G. Meade | Meade's]] failure to pursue Lee, and months of inactivity for the Army of the Potomac, Lincoln decided to bring in a western general: General [[Ulysses S. Grant]]. He had a solid string of victories in the Western Theater, including [[Battle of Vicksburg|Vicksburg]] and [[Battle of Chattanooga III|Chattanooga]]. Earlier, reacting to criticism of Grant, Lincoln was quoted as saying, &quot;I cannot spare this man. He fights.&quot; Grant waged his bloody [[Overland Campaign]] in 1864, using a strategy of a [[war of attrition]], characterized by high Union losses at battles such as the [[Battle of the Wilderness|Wilderness]] and [[Battle of Cold Harbor|Cold Harbor]], but by proportionately higher losses in the Confederate army. Grant's aggressive campaign would eventually bottle up Lee in the [[Siege of Petersburg]] and result in the Union taking Richmond and bringing the war to a close in the spring of 1865.
3237
3238 Lincoln authorized Grant to use a [[scorched earth]] approach to destroy the South's morale and economic ability to continue the war. This allowed Generals [[William Tecumseh Sherman]] and [[Philip Sheridan]] to destroy farms and towns in the [[Shenandoah Valley]], [[Georgia (U.S. state)|Georgia]], and [[South Carolina]]. The damage in [[Sherman's March to the Sea]] through Georgia totaled in excess of $100 million.
3239
3240 Lincoln had a star-crossed record as a military leader, possessing a keen understanding of strategic points (such as the [[Mississippi River]] and the fortress city of Vicksburg) and the importance of defeating the enemy's army, rather than simply capturing cities. However, he had little success in his efforts to motivate his generals to adopt his strategies. Eventually, he found in Grant a man who shared his vision of the war and was able to bring that vision to reality with his relentless pursuit of coordinated offensives in multiple theaters of war.
3241
3242 Lincoln, perhaps reflecting his lack of military experience, developed a keen curiosity with military campaigning during the war. He spent hours at the [[United States War Department|War Department]] [[Telegraphy|telegraph]] office, reading dispatches from his generals through many a night. He frequently visited battle sites and seemed fascinated by watching scenes of war. During [[Jubal A. Early]]'s [[Battle of Fort Stevens|raid into Washington, D.C.]], in 1864, Lincoln had to be told to duck his head to avoid being shot while observing the scenes of battle.
3243
3244 ===Homefront===
3245 Lincoln was more successful in giving the war meaning to Northern civilians through his oratorical skills. Despite his meager education and &amp;#8220;backwoods&amp;#8221; upbringing, Lincoln possessed an extraordinary command of the English language, as evidenced by the [[Gettysburg Address]], a speech dedicating a cemetery of Union soldiers from the [[Battle of Gettysburg]] that he delivered on November 19, 1863. While the featured speaker, orator [[Edward Everett]], spoke for two hours, Lincoln's few choice words resonated across the nation and across history, defying Lincoln's own prediction that &quot;the world will little note, nor long remember what we say here.&quot; Lincoln's [[Lincoln's second inaugural address|second inaugural address]] is also greatly admired and often quoted. In these speeches, Lincoln articulated better than any of his contemporaries the rationale behind the Union effort.
3246
3247 During the Civil War, Lincoln exercised powers no previous president had wielded; he proclaimed a [[blockade]], suspended the writ of [[habeas corpus]], spent money without [[Congress of the United States|congressional]] authorization, and imprisoned thousands of accused Confederate sympathizers without trial. There is a fragment of uncorraborated evidence that Lincoln made contingency plans to arrest [[Chief Justice]] [[Roger Brooke Taney]], though the allegation remains unresolved and controversial (see the [[Taney Arrest Warrant]] controversy).
3248
3249 The long war and the issue of emancipation appeared to be severely hampering his prospects and pessimists warned that defeat appeared likely. Lincoln ran under the Union party banner, composed of War Democrats and Republicans. General Grant was facing severe criticism for his conduct of the bloody [[Overland Campaign]] that summer and the seemingly endless [[Siege of Petersburg]]. However, the Union capture of the key railroad center of [[Atlanta, Georgia|Atlanta]] by Sherman's forces in September changed the situation dramatically and Lincoln was reelected.
3250
3251 ===Reconstruction===
3252 The [[reconstruction]] of the Union weighed heavy on the President's mind throughout the war effort. He was determined to take a course that would not permanently alienate the former Confederate states, and throughout the war Lincoln urged speedy elections under generous terms in areas behind Union lines. This irritated congressional Republicans, who urged a more stringent Reconstruction policy. One of Lincoln's few vetoes during his term was of the [[Wade-Davis Bil]]l, an effort by congressional Republicans to impose harsher Reconstruction terms on the Confederate areas. Republicans in Congress retaliated by refusing to seat representatives elected from [[Louisiana]], [[Arkansas]], and [[Tennessee]] during the war under Lincoln's generous terms.
3253
3254 &quot;Let 'em up easy,&quot; he told his assembled military leaders [[Ulysses S. Grant|Gen. Ulysses S. Grant]] (a future president), [[William Tecumseh Sherman|Gen. William T. Sherman]] and [[David Dixon Porter|Adm. David Dixon Porter]] in an 1865 meeting on the steamer ''River Queen''. When [[Richmond, Virginia|Richmond]], the Confederate capital, was at long last captured, Lincoln went there to make a public gesture of sitting at [[Jefferson Davis]]'s own desk, symbolically saying to the nation that the President of the United States held authority over the entire land. He was greeted at the city as a conquering hero by freed slaves, whose sentiments were epitomized by one admirer's quote, &quot;I know I am free for I have seen the face of Father Abraham and have felt him.&quot;
3255
3256 On [[April 9]], [[1865]], Confederate General [[Robert E. Lee]] surrendered at [[Appomattox Court House]] in [[Virginia]]. This left only [[Joseph Johnston]]'s forces in the East to deal with. Weeks later Johnston would defy Jefferson Davis and surrender his forces to Sherman. Of course, Lincoln would not survive to see the surrender of all Confederate forces; just five days after Lee surrendered, Lincoln was [[assassination|assassinated]]. He was the first President to be assassinated, and the third to die in office.
3257
3258 ==Assassination==
3259 [[Image:Lincolnassassination.jpg|right|thumbnail|250px|The assassination of Abraham Lincoln. From left to right: [[Henry Rathbone]], [[Clara Harris]], Mary Todd Lincoln, Lincoln, and Booth.]]
3260
3261 Lincoln had met frequently with Lt. Gen. [[Ulysses S. Grant]] as the war drew to a close. The two men planned matters of reconstruction, and it was evident to all that they held each other in high regard. During their last meeting, on [[April 14]], [[1865]] ([[Good Friday]]), Lincoln invited Grant to a social engagement that evening. Grant declined (Grant's wife, [[Julia Dent Grant]], is said to have strongly disliked [[Mary Todd Lincoln]]). The President's eldest son, [[Robert Todd Lincoln]], also turned down the invitation.
3262
3263 [[John Wilkes Booth]], a well-known actor and Southern sympathizer from [[Maryland]], heard that the president and Mrs. Lincoln, along with the Grants, would be attending [[Ford's Theatre]]. Having failed in a plot to kidnap Lincoln earlier, Booth informed his co-conspirators of his intention to kill Lincoln. Others were assigned to assassinate [[Vice-President]] [[Andrew Johnson]] and [[Secretary of State]] [[William Seward]].
3264
3265 Without his [[bodyguard]] [[Ward Hill Lamon]], to whom he related his famous [[dream]] of his own assassination, the Lincolns left to attend the play at Ford's Theater. The play, ''[[Our American Cousin]]'', was a musical comedy by the British writer [[Tom Taylor]]. As Lincoln sat in his state box in the balcony, Booth crept up behind the President's box and waited for the funniest line of the play, hoping the laughter would cover the gunshot noise. On stage, actor Harry Hawk said the last words Lincoln would ever hear &quot;Well, I guess I know enough to turn you inside out, old gal—you sockdologizing old man-trap...&quot;. When the laughter came Booth jumped into the box the president was in and aimed a single-shot, round-slug .44 [[caliber]] [[Deringer]] at his head, firing at point-blank range. The bullet entered behind Lincoln's left ear and lodged behind his right eyeball. Major [[Henry Rathbone]], who was present in the Presidential Box, momentarily grappled with Booth but was severely stabbed and slashed by the assassin. It was believed that Booth then shouted &quot;''[[Sic semper tyrannis]]!''&quot; (Latin: &quot;Thus always to tyrants,&quot; the state motto of Virginia; some accounts say he added &quot;The South is avenged!&quot;) and jumped from the balcony to the stage below, breaking his leg. Despite his injury, Booth managed to limp to his horse and make his escape.
3266
3267 As Booth fled from the theater, a young physician, Dr. [[Charles Leale]], made his way through the audience to Lincoln's box. Leale quickly assessed the wound as mortal. The President was taken across the street from the theater to the [[Petersen House]], where he lay in a coma for nine hours before he expired. Several physicians attended Lincoln, including U.S. Army Surgeon General Joseph K. Barnes of the Army Medical Museum. Using a probe, Barnes located some fragments of Lincoln's skull and the ball lodged 6 inches inside his brain. Lincoln, who never regained consciousness, was officially pronounced dead at 7:22 A.M. the next morning, April 15, 1865. Upon his death, Secretary of War [[Edwin Stanton]] lamented &quot;now he belongs to the ages.&quot; After Lincoln's body was returned to the [[White House]], his body was prepared for his &quot;lying in state&quot; in the [[East Room]].
3268
3269 The Army Medical Museum, now named the National Museum of Health and Medicine, has retained in its collection since the time of Lincoln's death, several artifacts relating to the assassination. Currently on display in the museum are the bullet that was fired from the Deringer pistol, ending Lincoln's life, the probe used by Barnes, pieces of his skull and hair and the surgeon's cuff, stained with Lincoln's blood. The museum can be found at [http://www.nmhm.washingtondc.museum/exhibits/nationswounds/lincoln.html www.hmhm.washingtondc.museum]
3270
3271 [[Image:LincolnTrain.jpeg|right|thumbnail|250px|Lincoln's funeral train carried his remains, as well as 300 mourners and the casket of his son William, 1,654 miles to Illinois.]]
3272 Lincoln's body was carried by train in a grand funeral procession through several states on its way back to Illinois. The nation mourned a man whom many viewed as the savior of the United States. He was buried in [[Oak Ridge Cemetery]] in Springfield, where a 177 foot (54 m) tall granite tomb surmounted with several bronze statues of Lincoln was constructed by 1874. To prevent repeated attempts to steal Lincoln's body and hold it for ransom, Robert Todd Lincoln had Lincoln exhumed and reinterred in concrete several feet thick on [[September 26]], [[1901]].
3273 {{further|[[Abraham Lincoln's burial and exhumation]]}}
3274
3275 ==Presidential appointments==
3276 ===Administration and Cabinet===
3277 Lincoln was known for appointing his enemies and political rivals to high positions in his Cabinet. Not only did he use great political skill in reducing potential political opposition, but he felt he was appointing the best qualified person for the good of the country.
3278 {| class=&quot;wikitable&quot;
3279 |-
3280 ! Office !! Name !! Term
3281 |-
3282 | [[President of the United States|President]] || '''Abraham Lincoln''' || 1861–1865
3283 |-
3284 | [[Vice President of the United States|Vice President]] || '''[[Hannibal Hamlin]]''' || 1861–1865
3285 |-
3286 | &amp;nbsp; || '''[[Andrew Johnson]]''' || 1865
3287 |-
3288 | [[United States Secretary of State|Secretary of State]] || '''[[William H. Seward]]''' || 1861–1865
3289 |-
3290 | [[United States Secretary of the Treasury|Secretary of the Treasury]] || '''[[Salmon P. Chase]]''' || 1861–1864
3291 |-
3292 | &amp;nbsp; || '''[[William P. Fessenden]]''' || 1864–1865
3293 |-
3294 | &amp;nbsp; || '''[[Hugh McCulloch]]''' || 1865
3295 |-
3296 | [[United States Secretary of War|Secretary of War]] || '''[[Simon Cameron]]''' || 1861–1862
3297 |-
3298 | &amp;nbsp; || '''[[Edwin M. Stanton]]''' || 1862–1865
3299 |-
3300 | [[Attorney General of the United States|Attorney General]] || '''[[Edward Bates]]''' || 1861–1864
3301 |-
3302 | &amp;nbsp; || '''[[James Speed]]'''||align=&quot;left&quot;|1864–1865
3303 |-
3304 | [[Postmaster General of the United States|Postmaster General]] || '''[[Horatio King]]''' || 1861
3305 |-
3306 | &amp;nbsp; || '''[[Montgomery Blair]]''' || 1861–1864
3307 |-
3308 | &amp;nbsp; || '''[[William Dennison (Ohio governor)|William Dennison]]''' || 1864–1865
3309 |-
3310 | [[United States Secretary of the Navy|Secretary of the Navy]] || '''[[Gideon Welles]]''' || 1861–1865
3311 |-
3312 | [[United States Secretary of the Interior|Secretary of the Interior]] || '''[[Caleb B. Smith]]''' || 1861–1863
3313 |-
3314 | &amp;nbsp; || '''[[John P. Usher]]''' || 1863–1865
3315 |}
3316 &lt;br clear=&quot;all&quot;&gt;
3317
3318 ===Supreme Court===
3319 Lincoln appointed the following Justices to the [[Supreme Court of the United States]]:
3320 *[[Noah Haynes Swayne]] - 1862
3321 *[[Samuel Freeman Miller]] - 1862
3322 *[[David Davis (senator)|David Davis]] - 1862
3323 *[[Stephen Johnson Field]] - 1863
3324 *[[Salmon P. Chase]] - [[Chief Justice of the United States|Chief Justice]] - 1864
3325
3326 ==Major presidential acts==
3327 ===Involvement as President-elect===
3328 *[[Morrill tariff|Morrill Tariff of 1861]]
3329 *[[Corwin amendment|Corwin Amendment]]
3330 ===Enacted as President===
3331 *Signed [[Revenue Act of 1861]]
3332 *Signed [[Homestead Act]]
3333 *Signed [[Morrill Act|Morill Land-Grant College Act]]
3334 *Signed [[Internal Revenue Act of 1862]]
3335 *Signed Pacific Railway Acts of 1862 and 1864
3336 *Established [[Department of Agriculture]] (1862)
3337 *Signed [[National Banking Act|National Banking Act of 1863]]
3338 *Signed [[Internal Revenue Act of 1864]]
3339
3340 ==States admitted to the Union==
3341 *[[West Virginia]] – 1863
3342 *[[Nevada]] – 1864
3343
3344 ==Legacy and memorials==
3345 Lincoln's death made the President a [[martyr]] to many. Today he is perhaps America's second most famous and beloved President after [[George Washington]]. Repeated polls of historians have ranked Lincoln as among the [[historical rankings of U.S. Presidents|greatest presidents in U.S. history]]. Among contemporary admirers, Lincoln is usually seen as a figure who personifies [[Image:Lincoln_statue.jpg|thumbnail|200px|[[Daniel Chester French]]'s seated ''Lincoln'' faces the [[National Mall]] to the east.]]
3346 [[Image:MtRushmore Abe close.JPG|thumbnail|100px|Lincoln's bust on Mt. Rushmore.]]classical values of honesty, integrity, as well as respect for individual and minority rights, and human freedom in general. Many American organizations of all purposes and agendas continue to cite his name and image, with interests ranging from the [[gay rights]] group [[Log Cabin Republicans]] to the [[insurance]] corporation [[Lincoln Financial Group|Lincoln Financial]]. The [[Lincoln automobile]] is also named after him.
3347
3348 Over the years Lincoln has been memorialized in many city names, notably the [[Lincoln, Nebraska|capital of Nebraska]]; with the [[Lincoln Memorial]] in [[Washington, D.C.]] (''pictured, right''); on the U.S. [[U.S. five dollar bill|$5 bill]] and the [[Penny (U.S. coin)|1 cent coin]] (Illinois is the primary opponent to the removal of the penny from circulation); and as part of the [[Mount Rushmore National Memorial]]. [[Lincoln's Tomb]], [[Lincoln Home National Historic Site]] in [[Springfield, Illinois|Springfield]], [[New Salem (Menard County), Illinois|New Salem, Illinois]] (a reconstruction of Lincoln's early adult hometown), [[Ford's Theater]] and Petersen House are all preserved as museums. The [[List of U.S. state nicknames|state nickname]] for [[Illinois]] is ''Land of Lincoln''.
3349
3350 [[Counties of the United States|Counties]] in 18 [[U.S. state]]s ([[Lincoln County, Arkansas|Arkansas]], [[Lincoln County, Colorado|Colorado]], [[Lincoln County, Idaho|Idaho]], [[Lincoln County, Kansas|Kansas]], [[Lincoln County, Minnesota|Minnesota]], [[Lincoln County, Mississippi|Mississippi]], [[Lincoln County, Montana|Montana]], [[Lincoln County, Nebraska|Nebraska]], [[Lincoln County, Nevada|Nevada]], [[Lincoln County, New Mexico|New Mexico]], [[Lincoln County, Oklahoma|Oklahoma]], [[Lincoln County, Oregon|Oregon]], [[Lincoln County, South Dakota|South Dakota]], [[Lincoln County, Tennessee|Tennessee]], [[Lincoln County, West Virginia|West Virginia]], [[Lincoln County, Washington|Washington]], [[Lincoln County, Wisconsin|Wisconsin]], and [[Lincoln County, Wyoming|Wyoming]]) are named after Lincoln.
3351
3352 On [[February 12]], [[1892]], Abraham Lincoln's birthday was declared to be a federal [[holiday]] in the United States, although in 1971 it was combined with Washington's birthday in the form of [[President's Day]]. February 12 is still observed as a separate legal holiday in many states, including Illinois.
3353
3354 Lincoln's birthplace and family home are national historic memorials: [[Abraham Lincoln Birthplace National Historic Site]] in [[Hodgenville, Kentucky]] and [[Lincoln Home National Historic Site]] in [[Springfield, Illinois]]. The [[Abraham Lincoln Presidential Library and Museum]] is also in Springfield. The [[Abraham Lincoln National Cemetery]] is located in [[Elwood, Illinois]].
3355
3356 Statues of Lincoln can be found in other countries. In [[Ciudad JuÃĄrez]], [[Chihuahua]], [[Mexico]], is a 13-foot high bronze statue, a gift from the United States, dedicated in 1966 by President [[Lyndon B. Johnson]]. The U.S. received a statue of [[Benito JuÃĄrez]] in exchange, which is in Washington, D.C. JuÃĄrez and Lincoln exchanged friendly letters, and Mexico remembers Lincoln's opposition to the [[Mexican-American War]]. There is also a statue in [[Tijuana]], Mexico, showing Lincoln standing and destroying the chains of slavery. There are at least three statues of Lincoln in the [[United Kingdom]]—one in [[London]] by [[Augustus St. Gaudens]], one in [[Manchester]] by [[George Grey Barnard]] and another in [[Edinburgh]] by [[George Bissell (industrialist)|George Bissell]].
3357
3358 The [[ballistic missile]] [[submarine]] [[USS Abraham Lincoln (SSBN-602)|''Abraham Lincoln'' (SSBN-602)]] and the [[aircraft carrier]] [[USS Abraham Lincoln (CVN-72)|''Abraham Lincoln'' (CVN-72)]] were named in his honor. Also, the [[Liberty ship]], [[SS Nancy Hanks|SS ''Nancy Hanks'']] was named to honor his mother.
3359
3360 In a recent public vote entitled &quot;[[The Greatest American]],&quot; Lincoln placed second (placing first was [[Ronald Reagan]]).
3361
3362 ==Lincoln in popular culture==
3363 {{see|Lincoln in popular culture}}
3364
3365 ==Trivia==
3366 * Lincoln stood 6'3 3/4&quot; (192.4 cm) tall and thus was the tallest president in U.S. history, just edging out [[Lyndon Johnson]] at 6'3 1/2&quot; (191.8 cm).
3367 * He was born on the same day as [[Charles Darwin]].
3368 * The last surviving self-described witness to Lincoln's assassination was [[Samuel J. Seymour]] (~1860–[[April 14]], [[1956]]), who appeared two months before his death at age 96 on the [[CBS]]-TV [[quiz show]] ''[[I've Got a Secret]]''. He said that as a five-year-old he had thought at first that he, himself, had been shot because his nurse, trying to fix a torn place in his blouse, stuck him with a pin at the moment of the gun's discharge.
3369 * According to legend, Lincoln was referred to as &quot;two-faced&quot; by his opponent in the 1858 [[Senate]] election, [[Stephen A. Douglas|Stephen Douglas]]. Upon hearing about this Lincoln jokingly replied, &quot;If I had another face to wear, do you really think I would be wearing this one?&quot;
3370 * According to legend, Lincoln also said, as a young man, on his appearance one day when looking in the mirror: &quot;It's a fact, Abe! You are the ugliest man in the world. If ever I see a man uglier than you, I'm going to shoot him on the spot!&quot; It would no doubt, he thought, be an act of mercy.
3371 * Based on written descriptions of Lincoln, including the observations that he was much taller than most men of his day and had long limbs, an abnormally-shaped chest, and loose or lax joints, it has been conjectured since the 1960s that Lincoln may have suffered from [[Marfan syndrome]].
3372 *Lincoln was known to have a case of [[depression]]. During his time in New Salem, Illinois, his fiancee died, and that triggered his depression. His close friends watched over him to make sure he did not commit suicide. He also suffered from nightmares during his term in the [[White House]]. His depression got so severe, he had to hold a cabinet meeting from his bed.
3373 *He once mentioned one of his haunting nightmares to his friend. Lincoln mentioned that he was standing in a mourning crowd surrounding a train, and when he asked a grieving woman what had happened, she replied, &quot;The President has been shot, and he has died.&quot;
3374 *Lincoln is the only American president to hold a [[patent]]. The patent is for a device that lifts [[boat|boats]] over [[shoal|shoals]].
3375
3376 ==See also==
3377 *[[Origins of the American Civil War]]
3378 *[[American System (economics)|American System]], Lincoln's economic beliefs.
3379 *[[Lincoln-Kennedy coincidences]]
3380 *[[List of U.S. Presidential religious affiliations]]
3381 * Movies: ''[[D.W. Griffith's 'Abraham Lincoln']]'', ''[[The Dramatic Life of Abraham Lincoln]]''
3382 *[[Abraham Lincoln Presidential Library and Museum]]
3383
3384 ==References==
3385 ===Biographies===
3386 *''Lincoln'' by [[David Herbert Donald]] (1999) ISBN 068482535X, very well reviewed by scholars; Donald has won two Pulitzer prizes for biography
3387 *''Abraham Lincoln and Civil War America: A Biography'' by William E. Gienapp ISBN 0195150996 (2002), short
3388 *''Team of Rivals: The Political Genius of Abraham Lincoln'' by [[Doris Kearns Goodwin]] ISBN 0684824906 (2005). reviewers report it is very well written
3389 *''Abraham Lincoln: Redeemer President'' by Allen C. Guelzo ISBN 0802838723 (1999)
3390 *''Abraham Lincoln: a History'' (1890) by [[John Hay]] &amp; [[John George Nicolay]]; online at [http://www.gutenberg.org/etext/6812 Volume 1] and [http://www.gutenberg.org/etext/11708 Volume 2] 10 volumes in all; written by Lincoln's top aides
3391 *''The Real Abraham Lincoln'' by Reinhard H Luthin (1960), well regarded by reviewers
3392 *''The Abraham Lincoln Encyclopedia'' by [[Mark E. Neely]] (1984), detailed articles on many men and movements associated with AL
3393 * ''The Last Best Hope of Earth: Abraham Lincoln and the Promise of America'' by Mark E. Neely (1993), Pulitzer prize winning author
3394 * ''With Malice Toward None: The Life of Abraham Lincoln'' by Stephen B. Oates (1994).
3395 *''Lincoln the President'' by James G. Randall (4 vol., 1945–55; reprint 2000.) by prize winning scholar
3396 **''Mr. Lincoln'' excerpts ed. by Richard N. Current (1957)
3397 *''Abraham Lincoln: The Prairie Years'' (2 vol 1926); ''The War Years'' (4 vol 1939) biography by [[Carl Sandburg]]. Pulitzer Prize winner by famous poet
3398 *''Abraham Lincoln: A Biography'' by Benjamin P. Thomas; (1952)
3399
3400 ===Specialty topics===
3401 *Baker, Jean H. ''Mary Todd Lincoln: A Biography'' (1987)
3402 *Belz, Herman. ''Abraham Lincoln, Constitutionalism, and Equal Rights in the Civil War Era'' (1998)
3403 *Boritt, Gabor S. ''Lincoln and the Economics of the American Dream'' (1994). Lincoln's economic theory and policies
3404 *Boritt, Gabor S. ''Lincoln the War President'' (1994).
3405 *Boritt, Gabor S., ed. ''The Historian's Lincoln.'' Urbana: University of Illinois Press, 1988, historiography
3406 *Bruce, Robert V. ''Lincoln and the Tools of War'' (1956) on weapons development during the war
3407 *Donald, David Herbert. ''Lincoln Reconsidered: Essays on the Civil War Era'' (1960).
3408 *Foner, Eric. ''Free Soil, Free Labor, Free Men: The Ideology of the Republican Party before the Civil War'' (1970) intellectual history of different prewar faction's in AL's party
3409 *Harris, William C. ''With Charity for All: Lincoln and the Restoration of the Union'' (1997). AL's plans for Reconstruction
3410 *Hendrick, Burton J. ''Lincoln's War Cabinet'' (1946)
3411 *Hofstadter, Richard. ''The American Political Tradition: And the Men Who Made It'' (1948) ch 5: &quot;Abraham Lincoln and the Self-MAde Myth&quot;.
3412 *Holzer, Harold. ''Lincoln at Cooper Union: The Speech That Made Abraham Lincoln President'' (2004).
3413 *McPherson, James M. ''Abraham Lincoln and the Second American Revolution'' (1992)
3414 *McPherson, James M. ''Battle Cry of Freedom: The Civil War Era'' (1988). Pulitzer Prize winner surveys all aspects of the war
3415 *Morgenthau, Hans J., and David Hein. ''Essays on Lincoln's Faith and Politics''. Lanham, MD: University Press of America for the White Burkett Miller Center of Public Affairs at the University of Virginia, 1983.
3416 *Neely, Mark E. ''The Fate of Liberty: Abraham Lincoln and Civil Liberties'' (1992). Pulitzer Prize winner.
3417 * Philip S. Paludan ''The Presidency of Abraham Lincoln'' (1994), reviewers call it the most thorough treatment of AL's administration
3418 *''Lincoln in American Memory'' by Merrill D. Peterson, (1994). how Lincoln was remembered after 1865
3419 *Randall, James G. ''Lincoln the Liberal Statesman'' (1947).
3420 * Richardson, Heather Cox. ''The Greatest Nation of the Earth: Republican Economic Policies during the Civil War'' (1997)
3421 * Shenk, Joshua Wolf. ''Lincoln's Melancholy: How Depression Challenged a President and Fueled His Greatness'' (2005). Named one of the best books of 2005 by The Washington Post, The New York Times, and The Atlanta Journal-Constitution. *''Lincoln'' by [[Gore Vidal]] ISBN 0375708766, a novel.
3422 *''Lincoln and His Generals'' by T. Harry Williams (1967).
3423 *''Lincoln at Gettysburg: The Words That Remade America'' by Garry Wills ISBN 0671867423
3424 *''Honor's Voice: The Transformation of Abraham Lincoln'' by Douglas L. Wilson (1999).
3425
3426 ===Lincoln in art and popular culture===
3427 * Bullard. F. Lauriston, ''Lincoln in Marble and Bronze'', Rutgers University Press, New Brunswick, New Jersey 1952
3428 * Mead, Fanklin B., ''Heroic Statues in Bronze of Abraham Lincoln: Introducing The Hoosier Youth by [[Paul Manship]]'', The Lincoln National Life Foundation, Fort Wayne, Indiana 1932
3429 * Moffatt, Frederick C., ''Errant Bronzes: [[George Grey Barnard]]'s Statues of Abraham Lincoln'', University of Deleware Press, Newark, DE 1998
3430 * Murry, Freeman Henry Morris, ''Emancipation anf the Freed in American Sculpture'', Books For Libraries Press, the Black Heritage Library Collection, Freeport, NY 1972 - originally published in 1916
3431 * Petz, Weldon, ''Michigan's Monumental Tributes to Abraham Lincoln'', Historical Society of Michigan 1987
3432 * Redway, Maurine Whorton and Dorothy Kendall Bracken, ''Marks of Lincoln on Our Land''. Hastings House, Publishers, New York 1957
3433 * Savage, Kirk, ''Standing Soldiers, Kneeling Slaves: Race War and Monument in Nineteenth Century America'', Princeton University Press, Princeton New Jersey 1997
3434 * Tice, George, ''Lincoln'', Rutgers University Press, New Brunswick, New Jersey 1984
3435 *''The Real Lincoln'' by [[Thomas DiLorenzo]] ISBN 0761526463, a stinging neo-Confederate attack on Lincoln as evil 2002
3436
3437 ===Primary Sources===
3438 * Basler, Roy P. ed. ''Collected Works of Abraham Lincoln'' 9 vols. (New Brunswick, NJ: Rutgers Univ. Press, 1953-55)
3439 * Basler, Roy P. ed. ''Abraham Lincoln: His Speeches and Writings'' (1946)
3440 * Lincoln, Abraham. ''Lincoln: Speeches and Writings'' 2 vol Library of America edition, (1989).
3441 * Lincoln, Abraham. ''The Life and Writings of Abraham Lincoln'' (Modern Library Classics ed by Philip Van Doren Stern) (2000).
3442
3443 ==External links==
3444 {{sisterlinks|Abraham Lincoln}}
3445 *{{CongBio|L000313}}
3446 *[http://www.whitehouse.gov/history/presidents/al16.html White House Biography]
3447 *[http://memory.loc.gov/ammem/alhtml/malhome.html Abraham Lincoln Papers at the Library of Congress] (1850-1865)
3448 *[http://commons.wikimedia.org/wiki/Image:Lincolnatpeace2.jpg The Controversial photograph of Lincoln in death]
3449 *[http://www.abrahamlincoln.org/ The Lincoln Institute]
3450 *[http://www.rootdig.com/abraham_lincoln.html Abraham Lincoln in United States Census Records]
3451 *[http://home.att.net/~rjnorton/Lincoln77.html Especially for Students: An Overview of Abraham Lincoln's Life]
3452 *[http://memory.loc.gov/ammem/alhtml/alhome.html Mr. Lincoln's Virtual Library]
3453 *[http://www.quotesandpoem.com/literature/ListofLiteraryWorks/Lincoln__Abraham Speeches and Quotes by Abraham Lincoln]
3454 *[http://www.loc.gov/rr/program/bib/prespoetry/al.html Poetry written by Abraham Lincoln]
3455 *[http://www.mybigadventure.com/index.php?action=Stats&amp;stat=Memorials&amp;date=20041027.3&amp;page=5 Lincoln Memorial Tour] - My Big Adventure (33 Images)
3456 *[http://members.aol.com/RVSNorton/Lincoln2.html Abraham Lincoln Research Site]
3457 *[http://www.abrahamlincolnonline.org Abraham Lincoln Online]
3458 *[http://www.hti.umich.edu/l/lincoln/ The Collected Works of Abraham Lincoln]
3459 *[http://deptorg.knox.edu/lincolnstudies/ Lincoln Studies Center at Knox College]
3460 *[http://lenbernstein.com/Pages/EgoJustice.html Discussion of John Drinkwater's play ''Abraham Lincoln'']
3461 *[http://www.sonofthesouth.net/prod01.htm Original 1860's Harper's Weekly Images and News on Abraham Lincoln]
3462 *[http://dev.stg.brown.edu/projects/lincoln/ The Lincoln Log: A Daily Chronology of the Life of Abraham Lincoln]
3463 *[http://www.nps.gov/linc/ Lincoln Memorial] Washington, DC
3464 *[http://www.thelincolnmuseum.org The Lincoln Museum] Fort Wayne, Indiana
3465 *[http://www.gilderlehrman.org/historians/fellowship2.html The Lincoln Prize] A national book award sponsored by The Gilder Lehrman Institute of American History and the Civil War Institute at Gettysburg College
3466 *[http://members.aol.com/RVSNorton/Lincoln.html Abraham Lincoln's Assassination]
3467 *[http://www.lincolnherald.com/1970articleSubstitute.html John Summerfield Staples, President Lincoln's &quot;Substitute&quot;]
3468 *[http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PALL&amp;p=1&amp;u=/netahtml/srchnum.htm&amp;r=1&amp;f=G&amp;l=50&amp;s1=6469.WKU.&amp;OS=PN/6469&amp;RS=PN/6469 US6469] Patent -- ''Manner of Buoying Vessels'' -- A. Lincoln -- 1849
3469 *[http://www.lewrockwell.com/orig2/lincoln-arch.html King Lincoln] (an archive of articles on Lincoln)
3470 *[http://www.nps.gov/abli/ National Park Service Abraham Lincoln birthplace] (includes good early history)
3471 *Hoard Historical Museum [http://www.hoardmuseum.org/] in [[Fort Atkinson, Wisconsin]] with Lincoln Library
3472 *[http://www.williamapercy.com/pub-LincolnIntimate.htm On the Question of Lincoln's Sexuality]
3473 *[http://www.doctorzebra.com/prez/g16.htm Medical and Health history of Abraham Lincoln]
3474 *[http://www.worldofbiography.com/9052%2DAbraham%20Lincoln/ Biography] (World of Biography)
3475
3476 ===Project Gutenberg eTexts===
3477 *List of {{gutenberg author| id=Abraham+Lincoln | name=Abraham Lincoln}}
3478 *[http://www.gutenberg.org/etext/12462 A Compilation of the Messages and Papers of the Presidents: Volume 6, part 1: Abraham Lincoln]
3479 *[http://www.gutenberg.org/etext/2517 Lincoln's Yarns and Stories]
3480 *[http://www.gutenberg.org/etext/6812 Volume 1] and [http://www.gutenberg.org/etext/11708 Volume 2] of ''Abraham Lincoln: a History'' (1890) by [[John Hay]] (1835 to 1905) &amp; [[John George Nicolay]] (1832 to 1901)
3481 *[http://www.gutenberg.org/etext/1815 ''The Boys' Life of Abraham Lincoln''] (1907) by Nicolay, Helen (1866 to 1954)
3482 *[http://www.gutenberg.org/etext/6811 ''The Life of Abraham Lincoln''] (1901) by Henry Ketcham
3483 *[http://www.gutenberg.org/etext/12800 Volume 1] and [http://www.gutenberg.org/etext/12801 Volume 2] of ''Abraham Lincoln'' (1899) by John T. Morse
3484 *[http://www.gutenberg.org/etext/14004 ''The Every-day Life of Abraham Lincoln''] (1913) by Francis Fisher Browne
3485 *[http://www.gutenberg.org/etext/11728 ''Abraham Lincoln: The People's Leader in the Struggle for National Existence''] (1909) by George Haven Putnam, Litt. D.
3486 *[http://www.gutenberg.org/etext/1713 ''Lincoln's Personal Life''] (1922) by Nathaniel W. Stephenson
3487
3488 {{start box}}
3489 {{succession box
3490 | title={{ushr|Illinois|7|Member of the U.S. House of Representatives from Illinois's 7th District}}
3491 | before=[[John Henry (Illinois politician)|John Henry]]
3492 | after=[[Thomas Langrell Harris]]
3493 | years=1847 – 1849}}
3494 {{succession box
3495 | before=[[John FrÊmont]]
3496 | title=[[List of United States Republican Party presidential tickets|Republican Party presidential nominee]]
3497 | after=[[Ulysses Grant]]
3498 | years=[[U.S. presidential election, 1860|1860]] (won), [[U.S. presidential election, 1864|1864]] (won)}}
3499 {{succession box
3500 | before=[[James Buchanan]]
3501 | title=[[President of the United States]]
3502 | after=[[Andrew Johnson]]
3503 | years=[[March 4]], [[1861]] – [[April 15]], [[1865]]}}
3504 {{end box}}
3505 {{USpresidents}}
3506 {{USRepPresNominees}}
3507 {{featured article}}
3508 [[Category:1809 births|Lincoln, Abraham]]
3509 [[Category:1865 deaths|Lincoln, Abraham]]
3510 [[Category:Abraham Lincoln| ]]
3511 [[Category:American Civil War people|Lincoln, Abraham]]
3512 [[Category:American lawyers|Lincoln, Abraham]]
3513 [[Category:Assassinated politicians|Lincoln, Abraham]]
3514 [[Category:Autodidacts|Lincoln, Abraham]]
3515 [[Category:Cat lovers|Lincoln, Abraham]]
3516 [[Category:Firearm deaths|Lincoln, Abraham]]
3517 [[Category:Humanists|Lincoln, Abraham]]
3518 [[Category:Humanitarians|Lincoln, Abraham]]
3519 [[Category:Members of the Illinois House of Representatives|Lincoln, Abraham]]
3520 [[Category:Members of the United States House of Representatives from Illinois|Lincoln, Abraham]]
3521 [[Category:Murder victims|Lincoln, Abraham]]
3522 [[Category:People from Kentucky|Lincoln, Abraham]]
3523 [[Category:Presidents of the United States|Lincoln, Abraham]]
3524 [[Category:Republican Party (United States) presidential nominees|Lincoln, Abraham]]
3525 [[Category:United States Army officers|Lincoln, Abraham]]
3526 [[Category:United States Senate candidates|Lincoln, Abraham]]
3527 [[Category:Welsh-Americans|Lincoln, Abraham]]
3528 {{Link FA|de}}
3529 [[ar:ØŖØ¨ØąØ§Ų‡Ø§Ų… Ų„ŲŠŲ†ŲƒŲˆŲ„Ų†]]
3530 [[bg:ЕйбŅ€Đ°Ņ…Đ°Đŧ ЛиĐŊĐēŅŠĐģĐŊ]]
3531 [[bs:Abraham Lincoln]]
3532 [[ca:Abraham Lincoln]]
3533 [[cs:Abraham Lincoln]]
3534 [[cy:Abraham Lincoln]]
3535 [[da:Abraham Lincoln]]
3536 [[de:Abraham Lincoln]]
3537 [[eo:Abraham LINCOLN]]
3538 [[es:Abraham Lincoln]]
3539 [[et:Abraham Lincoln]]
3540 [[eu:Abraham Lincoln]]
3541 [[fa:ØĸØ¨ØąØ§Ų‡Ø§Ų… Ų„ÛŒŲ†ÚŠŲ„Ų†]]
3542 [[fi:Abraham Lincoln]]
3543 [[fr:Abraham Lincoln]]
3544 [[ga:Abraham Lincoln]]
3545 [[gl:Abraham Lincoln]]
3546 [[he:אברהם לינקולן]]
3547 [[hr:Abraham Lincoln]]
3548 [[id:Abraham Lincoln]]
3549 [[it:Abramo Lincoln]]
3550 [[ja:エイブナハムãƒģãƒĒãƒŗã‚Ģãƒŧãƒŗ]]
3551 [[ko:ė—ė´ë¸ŒëŸŦ햄 링ėģ¨]]
3552 [[lt:Abraomas Linkolnas]]
3553 [[mk:АйŅ€Đ°Ņ…Đ°Đŧ ЛиĐŊĐēĐžĐģĐŊ]]
3554 [[nl:Abraham Lincoln]]
3555 [[nn:Abraham Lincoln]]
3556 [[no:Abraham Lincoln]]
3557 [[pl:Abraham Lincoln]]
3558 [[pt:Abraham Lincoln]]
3559 [[ru:ЛиĐŊĐēĐžĐģŅŒĐŊ, АвŅ€Đ°Đ°Đŧ]]
3560 [[scn:Abraham Lincoln]]
3561 [[sh:Abraham Lincoln]]
3562 [[simple:Abraham Lincoln]]
3563 [[sk:Abraham Lincoln]]
3564 [[sl:Abraham Lincoln]]
3565 [[sq:Abraham Lincoln]]
3566 [[sr:АйŅ€Đ°Ņ…Đ°Đŧ ЛиĐŊĐēĐžĐģĐŊ]]
3567 [[sv:Abraham Lincoln]]
3568 [[th:ā¸­ā¸ąā¸šā¸Ŗā¸˛ā¸Žā¸ąā¸Ą ā¸Ĩā¸´ā¸™ā¸„ā¸­ā¸ĨāšŒā¸™]]
3569 [[tr:Abraham Lincoln]]
3570 [[vi:Abraham Lincoln]]
3571 [[zh:äēšäŧ¯æ‹‰įŊ•Âˇæž—č‚¯]]</text>
3572 </revision>
3573 </page>
3574 <page>
3575 <title>Aristotle</title>
3576 <id>308</id>
3577 <revision>
3578 <id>42134476</id>
3579 <timestamp>2006-03-04T01:21:48Z</timestamp>
3580 <contributor>
3581 <username>Dpbsmith</username>
3582 <id>21036</id>
3583 </contributor>
3584 <comment>I don't think Ayn Rand has quite the same stature as Alexander the Great and Thomas Aquinas</comment>
3585 <text xml:space="preserve">{{Infobox_Philosopher |
3586 &lt;!-- Scroll down to edit this page --&gt;
3587 &lt;!-- Philosopher Category --&gt;
3588 region = Western philosophers |
3589 era = [[Ancient philosophy]] |
3590 color = #B0C4DE |
3591
3592 &lt;!-- Image and Caption --&gt;
3593 image_name = Aristoteles Louvre.jpg |
3594 image_caption = Aristotle, [[marble]] copy of [[bronze]] by [[Lysippos]] |
3595
3596 &lt;!-- Information --&gt;
3597 name = ΑĪÎšĪƒĪ„ÎŋĪ„έÎģΡĪ‚, Aristotelēs |
3598 birth = [[384 BC]] |
3599 death = [[March 7]] [[322 BC]] |
3600 school_tradition = [[Materialism]] and [[Empiricism]] |
3601 main_interests = [[Politics]], |
3602 influences = [[Plato]], |
3603 influenced = [[Alexander the Great]], [[Thomas Aquinas]] |
3604 notable_ideas = [[Golden mean (philosophy)|The Golden mean]], Rule of the Superior, Reason &gt; Passion, |
3605 }}
3606 '''Aristotle''' ({{lang-grc|{{{polytonic|ΑĪÎšĪƒĪ„ÎŋĪ„έÎģΡĪ‚}}}}} Aristotelēs [[384 BC]] &amp;ndash; [[March 7]], [[322 BC]]) was an [[ancient Greek]] [[philosopher]], who studied with [[Plato]] and taught [[Alexander the Great]]. He wrote books on many subjects, including [[physics]], [[poetry]], [[zoology]], [[logic]], [[rhetoric]], [[government]], and [[biology]].
3607
3608 Aristotle, along with Plato and [[Socrates]], is generally considered one of the most influential of [[Ancient philosophy|ancient Greek philosophers]]. They transformed [[Presocratic]] [[Greek philosophy]] into the foundations of [[Western philosophy]] as we know it. The writings of Plato and Aristotle founded two of the most important schools of [[Ancient philosophy]].
3609
3610 Aristotle valued knowledge gained from the senses and in modern terms would be classed among the modern [[empiricist]]s (see [[materialism]] and [[empiricism]]). He also achieved a &quot;grounding&quot; of dialectic in the Topics by allowing interlocutors to begin from commonly held beliefs (''[[Endoxa]]''); his goal being non-contradiction rather than [[Truth]]. He set the stage for what would eventually develop into the empiricist version of [[scientific method]] centuries later. Although he wrote dialogues early in his career, no more than fragments of these have survived. The works of Aristotle that still exist today are in [[treatise]] form and were, for the most part, unpublished texts. These were probably lecture notes or texts used by his students, and were almost certainly revised repeatedly over the course of years. As a result, these works tend to be eclectic, dense and difficult to read. Among the most important ones are ''[[Physics (Aristotle)|Physics]]'', ''[[Metaphysics]] (or [[Ontology]])'', ''[[Nicomachean Ethics]]'', ''[[Politics (Aristotle)|Politics]]'', ''[[De Anima]] (On the Soul)'' and ''[[Poetics]]''.
3611 These works, although connected in many fundamental ways, are very different in both style and substance.
3612
3613 Aristotle is known for being one of the few figures in history who studied almost every subject possible at the time. In science, Aristotle studied [[anatomy]], [[astronomy]], [[economics]], [[embryology]], [[geography]], [[geology]], [[meteorology]], [[physics]], and [[zoology]]. In philosophy, Aristotle wrote on [[aesthetics]], [[ethics]], [[government]], [[metaphysics]], [[politics]], [[psychology]], [[rhetoric]] and [[theology]]. He also dealt with [[education]], foreign customs, [[literature]] and [[poetry]]. His combined works practically constitute an [[encyclopedia]] of Greek knowledge.
3614
3615 == Biography ==
3616 ===Early life and studies at the Academy===
3617 [[Image:Bust of Aristotle.jpg|thumb|A [[bust (sculpture)|bust]] of Aristotle is a nearly ubiquitous ornament in places of high culture in the [[Western world|West]].]]
3618
3619 Aristotle was born at [[Stageira]], a [[apoikia|colony]] of [[Andros]] on the [[Macedon]]ian peninsula of [[Chalcidice]] in [[384 BC]]. His father, Nicomachus, was court physician to King [[Amyntas III of Macedon]]. It is believed that Aristotle's ancestors held this position under various kings of the Macedons. As such, Aristotle's early education would probably have consisted of instruction in [[medicine]] and [[biology]] from his father. About his mother, Phaestis, little is known. It is known that she died early in Aristotle's life. When Nicomachus also died, in Aristotle's tenth year, he was left an [[orphan]] and placed under the guardianship of his uncle, [[Proxenus of Atarneus]]. He taught Aristotle [[Greek language|Greek]], [[rhetoric]], and [[poetry]] (O'Connor ''et al.'', [[2004]]). Aristotle was probably influenced by his father's medical knowledge; when he went to [[Athens]] at the age of 18, he was likely already trained in the investigation of natural phenomena.
3620
3621 From the age of 18 to 37 Aristotle remained in Athens as a pupil of [[Plato]] and distinguished himself at the ''[[Academy]]''. The relations between Plato and Aristotle have formed the subject of various legends, many of which depict Aristotle unfavourably. No doubt there were divergences of opinion between Plato, who took his stand on sublime, idealistic principles, and Aristotle, who even at that time showed a preference for the investigation of the facts and laws of the physical world. It is also probable that Plato suggested that Aristotle needed restraining rather than encouragement, but not that there was an open breach of friendship. In fact, Aristotle's conduct after the death of Plato, his continued association with [[Xenocrates]] and other [[Platonists]], and his allusions in his writings to Plato's doctrines prove that while there were conflicts of opinion between Plato and Aristotle, there was no lack of cordial appreciation or mutual forbearance. Besides this, the legends that reflect Aristotle unfavourably are traceable to the [[Epicureans]], who were known as slanderers. If such legends were circulated widely by [[patristic]] writers such as [[Justin Martyr]] and [[Gregory Nazianzen]], the reason lies in the exaggerated esteem Aristotle was held in by the early [[Christianity|Christian]] [[heretic]]s, not in any well-grounded historical tradition.
3622
3623 ===Aristotle as philosopher and tutor===
3624 After the death of Plato ([[347 BC]]), Aristotle was considered as the next head of the Academy, a position that was eventually awarded to Plato's nephew. Aristotle then went with Xenocrates to the court of [[Hermias]], ruler of [[Atarneus]] in [[Asia Minor]], and married his niece and adopted daughter, Pythia. In [[344 BC]], Hermias was murdered in a rebellion, &lt;!--''(or a Persian attack?)''--&gt; and Aristotle went with his family to [[Mytilene]]. It is also reported that he stopped on [[Lesbos Island|Lesbos]] and briefly conducted biological research. Then, one or two years later, he was summoned to Pella, the Macedonian capital, by King [[Philip II of Macedon]] to become the tutor of [[Alexander the Great]], who was then 13.
3625
3626 [[Plutarch]] wrote that Aristotle not only imparted to Alexander a knowledge of ethics and politics, but also of the most profound secrets of philosophy. We have much proof that Alexander profited by contact with the philosopher, and that Aristotle made prudent and beneficial use of his influence over the young prince (although [[Bertrand Russell]] disputes this). Due to this influence, Alexander provided Aristotle with ample means for the acquisition of books and the pursuit of his scientific investigation.
3627
3628 It is possible that Aristotle also participated in the education of Alexander's boyhood friends, which may have included for example [[Hephaestion]] and [[Harpalus]]. Aristotle maintained a long correspondence with Hephaestion, eventually collected into a book, unfortunately now lost.
3629
3630 According to sources such as Plutarch and [[Diogenes]], Philip had Aristotle's hometown of Stageira burned during the [[340s BC]], and Aristotle successfully requested that Alexander rebuild it. During his tutorship of Alexander, Aristotle was reportedly considered a second time for leadership of the Academy; his companion Xenocrates was selected instead.
3631
3632 ===Founder and master of the Lyceum===
3633 In about [[335 BC]], Alexander departed for his Asiatic campaign, and Aristotle, who had served as an informal adviser (more or less) since Alexander ascended the Macedonian throne, returned to Athens and opened his own school of philosophy. He may, as [[Aulus Gellius]] says, have conducted a school of [[rhetoric]] during his former residence in Athens; but now, following Plato's example, he gave regular instruction in philosophy in a [[gymnasium (ancient Greece)|gymnasium]] dedicated to [[Apollo Lyceios]], from which his school has come to be known as the [[Lyceum]]. (It was also called the [[Peripatetic]] School because Aristotle preferred to discuss problems of philosophy with his pupils while walking up and down -- ''peripateo'' -- the shaded walks -- ''peripatoi'' -- around the gymnasium).
3634
3635 During the thirteen years ([[335 BC]]&amp;ndash;[[322 BC]]) which he spent as teacher of the Lyceum, Aristotle composed most of his writings. Imitating Plato, he wrote ''[[Dialogue]]s'' in which his doctrines were expounded in somewhat popular language. He also composed the several treatises (which will be mentioned below) on physics, metaphysics, and so forth, in which the exposition is more [[didactic]] and the language more technical than in the ''Dialogues''. These writings show to what good use he put the resources Alexander had provided for him. They show particularly how he succeeded in bringing together the works of his predecessors in Greek philosophy, and how he pursued, either personally or through others, his investigations in the realm of natural phenomena. [[Pliny the Elder|Pliny]] claimed that Alexander placed under Aristotle's orders all the hunters, fishermen, and fowlers of the royal kingdom and all the overseers of the royal forests, lakes, ponds and cattle-ranges, and Aristotle's works on zoology make this statement more believable. Aristotle was fully informed about the doctrines of his predecessors, and [[Strabo]] asserted that he was the first to accumulate a great library.
3636
3637 During the last years of Aristotle's life the relations between him and Alexander became very strained, owing to the disgrace and punishment of [[Callisthenes]], whom Aristotle had recommended to Alexander. Nevertheless, Aristotle continued to be regarded at Athens as a friend of Alexander and a representative of Macedonia. Consequently, when Alexander's death became known in Athens, and the outbreak occurred which led to the [[Lamian war]], Aristotle shared in the general unpopularity of the Macedonians. The charge of [[impiety]], which had been brought against [[Anaxagoras]] and [[Socrates]], was now, with even less reason, brought against Aristotle. He left the city, saying (according to many ancient authorities) that he would not give the Athenians a chance to sin a third time against philosophy. He took up residence at his country house at [[Chalcis]], in [[Euboea]], and there he died the following year, [[322 BC]]. His death was due to a disease, reportedly 'of the stomach', from which he had long suffered. The story that his death was due to [[hemlock]] poisoning, as well as the legend that he threw himself into the sea &quot;because he could not explain the [[tide]]s,&quot; is without historical foundation.
3638
3639 Very little is known about Aristotle's personal appearance except from hostile sources. The statues and busts of Aristotle, possibly from the first years of the Peripatetic School, represent him as sharp and keen of countenance, and somewhat below the average height. His character&amp;mdash;as revealed by his writings, his will (which is undoubtedly genuine), fragments of his letters and the allusions of his unprejudiced contemporaries&amp;mdash;was that of a high-minded, kind-hearted man, devoted to his family and his friends, kind to his slaves, fair to his enemies and rivals, grateful towards his benefactors. When [[Platonism]] ceased to dominate the world of [[Christianity|Christian]] speculation, and the works of Aristotle began to be studied without fear and prejudice, the personality of Aristotle appeared to the Christian writers of the [[13th century]], as it had to the unprejudiced pagan writers of his own day, as calm, majestic, untroubled by passion, and undimmed by any great moral defects, &quot;the master of those who know&quot;.
3640
3641 Aristotle's legacy also had a profound influence on Islamic thought and philosophy during the [[Middle Ages|middle ages]]. The likes of [[Avicenna]], [[Farabi]], and Yaqub ibn Ishaq al-Kindi&lt;small&gt;[http://www.ummah.net/history/scholars/KINDI.html 1]&lt;/small&gt; were a few of the major proponents of the Aristotelian school of thought during the ''[[Golden Age of Islam]]''.
3642
3643 == Methodology ==
3644 {{details|Aristotle's theory of universals}}
3645 Aristotle defines philosophy in terms of [[essence]], saying that philosophy is &quot;the science of the universal essence of that which is [[actual]]&quot;. Plato had defined it as the &quot;science of the [[idea]]&quot;, meaning by idea what we should call the unconditional basis of [[phenomena]]. Both pupil and master regard philosophy as concerned with the [[universal]]; Aristotle, however, finds the universal in [[particular]] things, and called it the essence of things, while Plato finds that the universal exists apart from particular things, and is related to them as their [[prototype]] or [[exemplar]]. For Aristotle, therefore, philosophic method implies the ascent from the study of particular phenomena to the knowledge of essences, while for Plato philosophic method means the descent from a knowledge of universal ideas to a contemplation of particular imitations of those ideas. In a certain sense, Aristotle's method is both [[Inductive reasoning|inductive]] and [[Deductive reasoning|deductive]], while Plato's is essentially deductive.
3646
3647 In Aristotle's terminology, the term ''natural philosophy'' corresponds to the phenomena of the natural world, which include: [[motion]], [[light]], and the [[laws of physics]]. Many centuries later these subjects would become the basis of modern science, as studied through the [[scientific method]]. In modern times the term ''philosophy'' has come to be more narrowly understood as metaphysics, distinct from empirical study of the natural world via the physical sciences. In contrast, in Aristotle's time and use [[philosophy]] was taken to encompass all facets of intellectual inquiry.
3648
3649 In the larger sense of the word, he makes philosophy coextensive with [[reasoning]], which he also called &quot;science&quot;. Note, however, that his use of the term ''science'' carries a different meaning than that which is covered by the scientific method. &quot;All science (''dianoia'') is either practical, poetical or theoretical.&quot; By practical science he understands ethics and politics; by poetical, he means the study of poetry and the other fine arts; while by theoretical philosophy he means physics, mathematics, and metaphysics.
3650
3651 The last, philosophy in the stricter sense, he defines as &quot;the knowledge of [[immaterial]] being,&quot; and calls it &quot;first philosophy&quot;, &quot;the theologic science&quot; or of &quot;being in the highest degree of abstraction.&quot; If logic, or, as Aristotle calls it, [[Analytic]], be regarded as a study preliminary to philosophy, we have as divisions of Aristotelian philosophy (1) [[Logic]]; (2) Theoretical Philosophy, including [[Metaphysics]], [[Physics]], [[Mathematics]], (3) Practical Philosophy; and (4) Poetical Philosophy.
3652
3653 ==Aristotle's epistemology==
3654 ===Logic===
3655 {{main|Aristotelian logic}}
3656 {{see details|Non-Aristotelian logic}}
3657 ==== History ====
3658 Aristotle &quot;says that 'on the subject of reasoning' he 'had nothing else on an earlier date to speak about'&quot; (Boche&amp;#324;ski, [[1951]]). However, Plato reports that [[syntax]] was thought of before him, by [[Prodikos of Keos]], who was concerned by the right use of words. Logic seems to have emerged from [[dialectics]]; the earlier philosophers used concepts like ''[[reductio ad absurdum]]'' as a rule when discussing, but never understood its logical implications. Even Plato had difficulties with logic. Although he had the idea of constructing a system for [[deduction]], he was never able to construct one. Instead, he relied on his [[dialectic]], which was a confusion between different sciences and methods (Boche&amp;#324;ski, [[1951]]). Plato thought that deduction would simply follow from [[premise]]s, so he focused on having good premises so that the [[conclusion]] would follow. Later on, Plato realised that a method for obtaining the conclusion would be beneficial. Plato never obtained such a method, but his best attempt was published in his book ''Sophist'', where he introduced his division method (Rose, [[1968]]).
3659
3660 ====Analytics and the ''Organon''====
3661 {{main|Organon}}
3662 What we call today Aristotelian logic, Aristotle himself would have labelled analytics. The term logic he reserved to mean dialectics. Most of Aristotle's work is probably not in its original form, since it was most likely edited by students and later lecturers. The logical works of Aristotle were compiled into six books at about the time of [[Christ]]:
3663 #''Categories''
3664 #''On Interpretation''
3665 #''Prior Analytics''
3666 #''Posterior Analytics''
3667 #''Topics''
3668 #''On Sophistical Refutations''
3669
3670 The order of the books (or the teachings from which they are composed) is not certain, but this list was derived from analysis of Aristotle's writings. There is one volume of Aristotle's concerning logic not found in the ''Organon'', namely the fourth book of ''Metaphysics.'' (Boche&amp;#324;ski, 1951).
3671
3672 ====Modal logic====
3673 Aristotle is also the creator of [[syllogism]]s with modalities ([[modal logic]]). The word modal refers to the word 'modes', explaining the fact that modal logic deals with the modes of [[truth]]. Aristotle introduced the qualification of 'necessary' and 'possible' premises. He constructed a logic which helped in the evaluation of truth but which was very difficult to interpret. (Rose, 1968).
3674
3675 ===Science===
3676 [[Image:Francesco Hayez 001.jpg|thumb|left|Aristotle, by Francesco Hayez]]
3677 Aristotelian discussions about science had only been qualitative, not quantitative. By the modern definition of the term, Aristotelian philosophy was not science, as this [[worldview]] did not attempt to probe how the world actually worked through [[experiment]]. For example, in his book ''[[History of Animals|The history of animals]]'' he claimed that human males have more teeth than females. Had he only made some observations, he would have discovered that this claim is false.
3678
3679 Rather, based on what one's senses told one, Aristotelian philosophy then depended upon the assumption that man's mind could elucidate all the laws of the universe, based on simple observation (without experimentation) through [[reason]] alone.
3680
3681 One of the reasons for this was that Aristotle held that physics was about changing objects with a reality of their own, whereas mathematics was about unchanging objects without a reality of their own. In this philosophy, he could not imagine that there was a relationship between them.
3682
3683 In contrast, today's &quot;science&quot; assumes that thinking alone often leads people astray, and therefore one must compare one's ideas to the actual world through experimentation; only then can one see if one's ideas are based in reality. This position is known as [[empiricism]] or the [[scientific method]].
3684
3685 Although Aristotle initiated an important step in the history of scientific method by founding logic as a formal science, he also left behind a trail of bankrupt cosmology that we may discern in selections of the metaphysics. His cosmology would gain much acceptance up until the 1500’s, where Copernicus and Galileo began to figure out that Europe is not the center of the universe. From the 3rd century to the 1500’s, the dominant view held that the earth was the center of the universe: at this late date it is uncontroversial that the earth is not even the center of our own solar system.
3686
3687 In spite of Aristotle’s bogus account of the planets and sun, he is a vital character in the history of metaphysics, both in terms of the etymology of the word, as well as a figure within metaphysics as a discipline. Dubbed “the stuff next to the physics.” by Andronicus of Rhodes, “metaphysics” became connected to the idea of “beyond the physical” by Simplicius, a commentator on Aristotle. Andronicus had published Aristotle’s works sometime around 43-20 BC; so initially the etymology of metaphysics was simply that which is “next to the physics.”
3688
3689 ==Aristotle's metaphysics==
3690
3691 ===[[Causality]]===
3692
3693 [[Aristole]] is the first who saw that &quot;All causes of things are beginnings; that we have scientific knowledge when we know the cause; that to know a thing's existence is to know the reason for its existence.&quot;{{fact}} Setting the guidelines for all the subsequent causal theories, by specifying the number, nature, principles, elements, varieties, order, and modes of causation, Aristotle's account of the causes of things is the most comprehensive theory up to now. According to Aristotle's theory, all the causes fall into several senses, the total number of which amounts to the ways the question 'why' may be answered; namely, by reference to the matter or the ''substratum''; the ''essence'', the pattern, the form, or the structure; to the primary moving ''change'' or the agent and its action; and to the goal, the plan, the ''end'', or the good. Consequently, the major kinds of causes come under the following divisions:
3694
3695 The [[Material Cause]] is that from which a thing comes into existence as from its parts, constituents, substratum or materials. This reduces the explanation of causes to the parts (factors, elements, constituents, ingredients) forming the whole (system, structure, compound, complex, composite, or combination) (the part-whole causation).
3696
3697 The [[Formal Cause]] tells us what a thing is, that any thing is determined by the definition, form, pattern, essence, whole, synthesis, or archetype. It embraces the account of causes in terms of fundamental principles or general laws, as the whole (macrostructure) is the cause of its parts (the whole-part causation).
3698
3699 The [[Efficient Cause]] is that from which the change or the ending of the change first starts. It identifies 'what makes of what is made and what causes change of what is changed' and so suggests all sorts of agents, nonliving or living, acting as the sources of change or movement or rest. Representing the current understanding of causality as the relation of cause and effect, this covers the modern definitions of &quot;cause&quot; as either the agent or agency or particular events or states of affairs.
3700
3701 The [[Final Cause]] is that for the sake of which a thing exists or is done, including both purposeful and instrumental actions and activities. The final cause or telos is the purpose or end that something is supposed to serve, or it is that from which and that to which the change is. This also covers modern ideas of mental causation involving such psychological causes as volition, need, motivation, or motives, rational, irrational, ethical, all that gives purpose to behavior.
3702
3703 Additionally, things can be causes of one another, causing each other reciprocally, as hard work causes fitness and vice versa, although not in the same way or function, the one is as the beginning of change, the other as the goal. [Thus Aristotle first suggested a reciprocal or circular causality as a relation of mutual dependence or action or influence of cause and effect.] Also, Aristotle indicated that the same thing can be the cause of contrary effects, its presence and absent may result in different outcomes.
3704
3705 Besides, Aristotle marked two modes of causation: proper (prior) causation and accidental (chance) causation. All causes, proper and incidental, can be spoken as potential or as actual, particular or generic. The same language refers to the effects of causes, so that generic effects assigned to generic causes, particular effects to particular causes, operating causes to actual effects. Essentiallly, causality does not suggest a temporal relation between the cause and the effect
3706
3707 All further investigations of causality will be consisting in imposing the favorite hierarchies on the order causes, like as final &gt; efficient&gt; material &gt; formal (Aquinas), or in restricting all causality to the material and efficient causes or to the efficient causality (deterministic or chance) or just to regular sequences and correlations of natural phenomena (the natural sciences describing how things happen instead of explaining the whys and wherefores).
3708
3709 ===Chance and Spontaneity===
3710 Spontaneity and chance are causes of effects. Chance as an incidental cause lies in the realm of accidental things. It is &quot;from what is spontaneous&quot; (but note that what is spontaneous does not come from chance). For a better understanding of Aristotle's conception of &quot;chance&quot; it might be better to think of &quot;coincidence&quot;: Something takes place by chance if a person sets out with the intent of having one thing take place, but with the result of another thing (not intended) taking place. For example: A person seeks donations. That person may find another person willing to donate a substantial sum. However, if the person seeking the donations met the person donating, not for the purpose of collecting donations, but for some other purpose, Aristotle would call the collecting of the donation by that particular donator a result of chance. It must be unusual that something happens by chance. In other words, if something happens all or most of the time, we cannot say that it is by chance.
3711
3712 However, chance can only apply to human beings, it is in the sphere of moral actions. According to Aristotle, chance must involve choice (and thus deliberation), and only humans are capable of deliberation and choice. &quot;What is not capable of action cannot do anything by chance&quot; (Physics, 2.6).
3713
3714 ===The Five Elements===
3715 *'''Fire''' which is hot and dry.
3716 *'''Earth''' which is cold and dry.
3717 *'''Air''' which is hot and wet.
3718 *'''Water''' which is cold and wet.
3719 *'''Aether''' which is the divine substance that makes up the heavens
3720
3721 These four elements interchange (i.e. Fire &amp;#x2194; Air &amp;#x2194; Water &amp;#x2194; Earth etc.), while aether is on its own. The Sun keeps this cycle going. God keeps the Sun going (and thus the Sun is eternal).
3722
3723 == Aristotle's ethics ==
3724 {{main|Aristotelian ethics}}
3725 Although Aristotle wrote several works on [[ethics]], the major one was the ''[[Nicomachean Ethics]]'', which is considered one of Aristotle's greatest works; it discusses [[virtue]]s. The ten books which comprise it are based on notes from his lectures at the [[Lyceum]] and were either edited by or dedicated to Aristotle's son, [[Nicomachus]].
3726
3727 Aristotle believed that ethical knowledge is not ''certain'' knowledge, like [[metaphysics]] and [[epistemology]], but ''general knowledge''. Also, as it is a practical discipline rather than a [[theory|theoretical]] one, he thought that in order to become &quot;good,&quot; one could not simply study what virtue ''is''; one must actually do virtuous deeds.
3728 In order to do this, Aristotle had first to establish what was virtuous. He began by determining that everything was done with some goal in mind and that goal is 'good.' The ultimate goal he called the ''Highest Good''.
3729
3730 Aristotle contested that happiness could not be found only in pleasure or only in fame and honor. He finally finds happiness &quot;by ascertaining the specific function of man.&quot; But what is this function that will bring happiness? To determine this, Aristotle analyzed the soul and found it to have three parts: the Nutritive Soul (plants, animals and humans), the Perceptive Soul (animals and humans) and the Rational Soul (humans only). Thus, a human's function is to do what makes it human, to be good at what sets it apart from everything else: the ability to reason or ''Nous''. A person that does this is the happiest because they are fulfilling their purpose or nature as found in the rational soul. Depending on how well they did this, Aristotle said people belonged to one of four categories: the Virtuous, the Continent, the Incontinent and the Vicious.
3731
3732 Aristotle believes that every ethical virtue is an intermediate condition between [[excess]] and [[deficiency]]. This does not mean Aristotle believed in moral relativism, however. He set certain emotions (e.g., hate, envy, jealousy, spite, etc.) and certain actions (e.g., adultery, theft, murder, etc.) as always wrong, regardless of the situation or the circumstances.
3733
3734 ===Nicomachean ethics===
3735 {{main|Nicomachean Ethics}}
3736 In ''Nicomachean Ethics'', Aristotle focuses on the importance of continually [[behavior|behaving]] virtuously and developing [[virtue]] rather than committing specific good actions. This can be contrasted with [[Immanuel Kant|Kantian]] ethics, in which the primary focus is on individual action. ''Nicomachean Ethics'' emphasizes the importance of context to ethical behaviour &amp;mdash; what might be right in one situation might be wrong in another. Aristotle believed that [[happiness]] is the end of life and that as long as a person is striving for [[Goodness and value theory|goodness]], good deeds will result from that struggle, making the person virtuous and therefore happy.
3737
3738 == Aristotle's critics ==
3739 [[Image:Sanzio 01 Plato Aristotle.jpg|thumb|left|[[Plato]] (left) and Aristotle (right), a detail of ''[[Raphael Rooms|The School of Athens]]'', a fresco by [[Raphael]]. Aristotle gestures to the earth, representing his belief in knowledge through empirical observation and experience, whilst Plato points up to the heavens showing his belief in the ultimate truth.]]
3740
3741 Aristotle has been criticised on several grounds.
3742
3743 * His analysis of procreation is frequently criticised on the grounds that it presupposes an active, ensouling masculine element bringing life to an inert, passive, lumpen female element; it is on these grounds that some feminist critics refer to Aristotle as a misogynist.
3744 *At times, the objections that Aristotle raises against the arguments of his own teacher, [[Plato]], appear to rely on faulty interpretations of those arguments.
3745 *Although Aristotle advised, against Plato, that knowledge of the world could only be obtained through experience, he frequently failed to take his own advice. Aristotle conducted projects of careful [[empirical]] investigation, but often drifted into [[Abstraction|abstract]] logical reasoning, with the result that his work was littered with conclusions that were not supported by empirical evidence: for example, his assertion that objects of different [[mass]] fall at different speeds under [[gravity]], which was later refuted by [[John Philoponus]] (credit is often given to [[Galileo Galilei|Galileo]], even though Philopinus lived centuries earlier).
3746 *In the [[Middle Ages]], roughly from the [[12th century]] to the [[15th century]], the philosophy of Aristotle became firmly established [[dogma]]. Although Aristotle himself was far from dogmatic in his approach to philosophical inquiry, two aspects of his philosophy might have assisted its transformation into dogma. His works were wide-ranging and [[systematic]] so that they could give the impression that no significant matter had been left unsettled. He was also much less inclined to employ the [[skeptic]]al methods of his predecessors, Socrates and Plato.
3747 *Some academics have suggested that Aristotle was unaware of much of the current science of his own time.
3748
3749 Aristotle was called not a great philosopher, but &quot;The Philosopher&quot; by [[Scholastic]] thinkers. These thinkers blended Aristotelian philosophy with Christianity, bringing the thought of Ancient Greece into the Middle Ages. It required a repudiation of some Aristotelian principles for the sciences and the arts to free themselves for the discovery of modern scientific laws and empirical methods.
3750
3751 == The loss of his works ==
3752 Though we know that Aristotle wrote many elegant treatises ([[Cicero]] described his literary style as &quot;a river of gold&quot;), the originals have been lost in time. All that we have now are the literary notes for his pupils, which are often difficult to read (the ''[[Nicomachean Ethics]]'' is a good example). It is now believed that we have about one fifth of his original works.
3753
3754 Aristotle underestimated the importance of his written work for humanity. He thus never published his books, except from his dialogues. The story of the original manuscripts of his treatises is described by [[Strabo]] in his Geography and [[Plutarch]] in his &quot;[[Parallel Lives]], Sulla&quot;: The manuscripts were left from Aristotle to [[Theophrastus]], from Theophrastus to [[Neleus of Scepsis]], from Neleus to his heirs. Their descendants sold them to [[Apellicon of Teos]]. When [[Lucius Cornelius Sulla|Sulla]] occupied Athens in [[86 BC]], he carried off the library of Appellicon to [[Rome]], where they were first published in [[60 BC]] from the grammarian [[Tyrranion of Amisus]] and then by philosopher [[Andronicus of Rhodes]].
3755
3756 == Bibliography ==
3757 ''Note: [[Bekker numbers]] are often used to uniquely identify passages of Aristotle. They are identified below where available.''
3758
3759 === Major works ===
3760 The extant works of Aristotle are broken down according to the five categories in the ''[[Corpus Aristotelicum]]''. Not all of these works are considered genuine, but differ with respect to their connection to Aristotle, his associates and his views. Some, such as the ''Athenaion Politeia'' or the fragments of other ''politeia'' are regarded by most scholars as products of Aristotle's &quot;school&quot; and compiled under his direction or supervision. Other works, such ''On Colours'' may have been products of Aristotle's successors at the Lyceum, e.g., [[Theophrastus]] and [[Straton]]. Still others acquired Aristotle's name through similarities in doctrine or content, such as the ''De Plantis,'' possibly by [[Nicolaus of Damascus]]. A final category, omitted here, includes medieval [[palmistries]], [[astrological]] and [[magical]] texts whose connection to Aristotle is purely fanciful and self-promotional. Those that are seriously disputed are marked with an asterisk.
3761
3762 ==== Logical writings ====
3763 * [[Organon]] (collected works on logic):
3764 ** (1a) [[Categories (Aristotle)|Categories]] (or ''Categoriae'')
3765 ** (16a) [[On Interpretation]] (or ''De Interpretatione'')
3766 ** (24a) [[Prior Analytics]] (or ''Analytica Priora'')
3767 ** (71a) [[Posterior Analytics]] (or ''Analytica Posteriora'')
3768 ** (100b) [[Topics (Aristotle)|Topics]] (or ''Topica'')
3769 ** (164a) [[On Sophistical Refutations]] (or ''De Sophisticis Elenchis'')
3770
3771 ==== Physical and scientific writings ====
3772 * (184a) [[Physics (Aristotle)|Physics]] (or ''Physica'')
3773 * (268a) [[On the Heavens]] (or ''De Caelo'')
3774 * (314a) [[On Generation and Corruption]] (or ''De Generatione et Corruptione'')
3775 * (338a) [[Meteorology (Aristotle)|Meteorology]] (or ''Meteorologica'')
3776 * (391a) [[On the Cosmos]] (or ''De Mundo'', or ''On the Universe'') *
3777 * (402a) [[On the Soul]] (or ''De Anima'')
3778 * (436a) [[Little Physical Treatises]] (or ''Parva Naturalia''):
3779 ** [[On Sense and the Sensible]] (or ''De Sensu et Sensibilibus'')
3780 ** [[On Memory and Reminiscence]] (or ''De Memoria et Reminiscentia'')
3781 ** [[On Sleep and Sleeplessness]] (or ''De Somno et Vigilia'')
3782 ** [[On Dreams]] (or ''De Insomniis'') *
3783 ** [[On Prophesying by Dreams]] (or ''De Divinatione per Somnum'')
3784 ** [[On Longevity and Shortness of Life]] (or ''De Longitudine et Brevitate Vitae'')
3785 ** [[On Youth and Old Age]] (On Life and Death) (or ''De Juventute et Senectute'', ''De Vita et Morte'')
3786 ** [[On Breathing]] (or ''De Respiratione'')
3787 * (481a) [[On Breath]] (or ''De Spiritu'') *
3788 * (486a) [[History of Animals]] (or ''Historia Animalium'', or ''On the History of Animals'', or ''Description of Animals'')
3789 * (639a) [[On the Parts of Animals]] (or ''De Partibus Animalium'')
3790 * (698a) [[On the Gait of Animals]] (or ''De Motu Animalium'', or ''On the Movement of Animals'')
3791 * (704a) [[On the Progression of Animals]] (or ''De Incessu Animalium'')
3792 * (715a) [[On the Generation of Animals]] (or ''De Generatione Animalium'')
3793 * (791a) [[On Colours]] (or ''De Coloribus'') *
3794 * (800a) ''[[De audibilibus]]''
3795 * (805a) [[Physiognomics]] (or ''Physiognomonica'') *
3796 * [[On Plants]] (or ''De Plantis'') *
3797 * (830a) [[On Marvellous Things Heard]] (or ''Mirabilibus Auscultationibus'', or ''On Things Heard'') *
3798 * (847a) [[Mechanical Problems]] (or ''Mechanica'') *
3799 * (859a) [[Problems (Aristotle)|Problems]] (or ''Problemata'') *
3800 * (968a) [[On Indivisible Lines]] (or ''De Lineis Insecabilibus'') *
3801 * (973a) [[Situations and Names of Winds]] (or ''Ventorum Situs'') *
3802 * (974a) [[On Melissus, Xenophanes and Gorgias]] (or ''MXG'') * The section On Xenophanes starts at 977a13, the section On Gorgias starts at 979a11.
3803
3804 ==== Metaphysical writings ====
3805 * (980a) [[Metaphysics (Aristotle)|Metaphysics]] (or ''Metaphysica'')
3806
3807 ==== Ethical writings ====
3808 * (1094a) [[Nicomachean Ethics]] (or ''Ethica Nicomachea'', or ''The Ethics'')
3809 * (1181a) [[Great Ethics]] (or ''Magna Moralia'') *
3810 * (1214a) [[Eudemian Ethics]] (or ''Ethica Eudemia'')
3811 * (1249a) [[Virtues and Vices]] (or ''De Virtutibus et Vitiis Libellus'', ''Libellus de virtutibus'') *
3812 * (1252a) [[Politics (Aristotle)|Politics]] (or ''Politica'')
3813 * (1343a) [[Economics (Aristotle)|Economics]] (or ''Oeconomica'')
3814
3815 ==== Aesthetic writings ====
3816 * (1354a) [[Rhetoric (Aristotle)|Rhetoric]] (or ''Ars Rhetorica'', or ''The Art of Rhetoric'' or ''Treatise on Rhetoric'')
3817 * [[Rhetoric to Alexander]] (or ''Rhetorica ad Alexandrum'') *
3818 * (1447a) [[Poetics]] (or ''Ars Poetica'')
3819
3820 ==== A work outside the ''Corpus Aristotelicum'' ====
3821 * The [[Constitution of the Athenians]] (or ''Athenaion Politeia'', or ''The Athenian Constitution'') *
3822
3823 === Specific editions===
3824 * [[Princeton University]] Press: ''The Complete Works of Aristotle: The Revised Oxford Translation'' (2 Volume Set; Bollingen Series, Vol. LXXI, No. 2), edited by [[Jonathan Barnes]] ISBN 0-691-09950-2 (The most complete recent translation of Aristotle's extant works)
3825 * [[University of Oxford|Oxford University]] Press: ''Clarendon Aristotle Series''. [http://www.oup.com/us/catalog/general/series/ClarendonAristotleSeries/?view=usa Scholarly edition]
3826 * [[Harvard University]] Press: ''[[Loeb Classical Library#Aristotle|Loeb Classical Library]]'' (hardbound; publishes in Greek, with English translations on facing pages)
3827 * [[Oxford Classical Texts]] (hardbound; Greek only)
3828
3829 ==Named for Aristotle==
3830 *[[Aristoteles (crater)|Aristoteles crater]] on the [[Moon]].
3831 *The [[Aristotle University of Thessaloniki]]
3832 *Aristotle's Cockney legacy - The name of Aristotle, like that of [[J. Arthur Rank]], became a common expression in [[Cockney rhyming slang]].
3833
3834 ==See also==
3835 *[[Aristotelian view of God]]
3836 *[[Aristotelian theory of gravity]]
3837 *[[Philia]]
3838 *[[Phronesis]]
3839 *[[Potentiality and actuality (Aristotle)|Aristotle's theory of potentialiy and actuality]]
3840
3841 ==References==
3842 Needless to say, the secondary literature on Aristotle is vast. The following references are only a small selection.
3843
3844 * {{cite book
3845 | last = Adler | first = Mortimer J.
3846 | authorlink = Mortimer Adler
3847 | title=[[Aristotle for Everybody]]
3848 | publisher=Macmillan
3849 | location = New York
3850 | year=1978
3851 }} A popular exposition for the general reader.
3852 * {{cite book
3853 | last = Bocheński | first = I. M.
3854 | authorlink = I. M. Bocheński
3855 | title=Ancient Formal Logic
3856 | publisher=North-Holland Publishing Company
3857 | location = Amsterdam
3858 | year=1951
3859 }}
3860 * {{cite book
3861 | last = Guthrie | first = W. K. C.
3862 | title=A History of Greek Philosophy, Vol. 6
3863 | publisher=[[Cambridge University Press]]
3864 | year=1981
3865 }} A detailed and scholarly work, but very readable.
3866 * {{cite book
3867 | last = Melchert | first = Norman
3868 | authorlink = Norman Melchert
3869 | title=The Great Conversation: A Historical Introduction to Philosophy
3870 | publisher=[[McGraw Hill]]
3871 | year=2002
3872 | id=ISBN 0195175107
3873 }}
3874 * {{cite book
3875 | last = Rose | first = Lynn E.
3876 | authorlink = Lynn E. Rose
3877 | title=Aristotle's Syllogistic
3878 | publisher=Charles C Thomas Publisher
3879 | location = Springfield
3880 | year=1968
3881 }}
3882 * {{cite book
3883 | last = Ross | first = Sir David
3884 | authorlink = Sir David Ross
3885 | title=Aristotle
3886 | publisher=Routledge
3887 | edition = 6&lt;sup&gt;th&lt;/sup&gt; ed.
3888 | location = London
3889 | year=1995
3890 }} An classic overview by one of Aristotle's most important English translators, in print since 1923.
3891 * {{cite book
3892 | last = Taylor | first = Henry Osborn
3893 | authorlink = Henry Osborn Taylor
3894 | url = http://www.ancientlibrary.com/medicine/index.html
3895 | title = Greek Biology and Medicine
3896 | year = 1922
3897 | chapter = Chapter 3: Aristotle's Biology
3898 | chapterurl = http://www.ancientlibrary.com/medicine/0051.html
3899 }}
3900 * {{cite book
3901 | last = Turner | first = William
3902 | authorlink = William Turner
3903 | others = Nihil Obstat Remy Lafort, S.T.D.; Censor Imprimatur + John Cardinal Farley, Abp. of New York
3904 | title = The Catholic Encyclopedia, Volume I: &quot;Aristotle&quot;
3905 | publisher = Robert Appleton Company
3906 | edition = 1907
3907 | year = 1907
3908 | location=New York
3909 }}
3910 * {{cite book
3911 | last = Veatch | first = Henry B.
3912 | authorlink = Henry Babcock Veatch
3913 | title=Aristotle: A Contemporary Appreciation
3914 | publisher=Indiana U. Press
3915 | location = Bloomington
3916 | year=1974
3917 }} For the general reader.
3918
3919 ==External links==
3920 {{Wikisource author}}
3921 {{wikiquote}}
3922 {{commons|Aristotelēs}}
3923
3924 *{{gutenberg author | id=Aristotle | name=Aristotle}}
3925 *[http://Aristotle.thefreelibrary.com/ A brief biography and e-texts presented one chapter at a time]
3926 *[http://www.utm.edu/research/iep/a/aristotl.htm The Internet Encyclopedia of Philosophy: Aristotle.], 2004.
3927 *[http://www.non-contradiction.com/ An extensive collection of Aristotle's philosophy and works, including lesser known texts]
3928 *[http://www.virtuescience.com/nicomachean-ethics.html Nicomachean Ethics by Aristotle.]
3929 *[http://uk.arxiv.org/abs/physics/0505172 Aristotle and Indian logic]
3930 *O'Connor, J. John &amp; Robertson, Edmund F., [http://www-history.mcs.st-andrews.ac.uk/Mathematicians/Aristotle.html Aristotle], 2004.
3931 *{{PerseusAuthor|Aristotle}}
3932 *{{planetmath|id=5840|title=Aristotle}}
3933 *[http://www.greektexts.com/library/Aristotle/index.html Large collection of Aristotle's texts, presented page by page]
3934 *[http://www.greek-literature-online.com/aristotle/ Read Aristotle's works online]
3935 *[http://www.newadvent.org/cathen/01713a.htm Source of most of the Biography and Methodology sections, as well as more overview]
3936 * {{MacTutor Biography|id=Aristotle}}
3937 *[http://www.shvoong.com/books/history/119724-constitution-athens/ a summary of &quot;The Constitution of Athens&quot;]
3938
3939 {{Philosophy navigation}}
3940
3941
3942 [[Category:322 BC deaths|Aristotle]]
3943 [[Category:384 BC births|Aristotle]]
3944 [[Category:Ancient Greek mathematicians]]
3945 [[Category:Ancient Greek philosophers]]
3946 [[Category:Aristotelian philosophers]]
3947 [[Category:Aristotle]]
3948 [[Category:Empiricists]]
3949 [[Category:Greek logicians]]
3950 [[Category:History of philosophy]]
3951 [[Category:History of science]]
3952 [[Category:Meteorologists]]
3953 [[Category:Rhetoric]]
3954 [[Category:Rhetoricians]]
3955
3956 {{Link FA|fi}}
3957
3958 [[ar:ØŖØąØŗØˇŲˆ]]
3959 [[bg:АŅ€Đ¸ŅŅ‚ĐžŅ‚ĐĩĐģ]]
3960 [[ba:АŅ€Đ¸ŅŅ‚ĐžŅ‚ĐĩĐģŅŒ]]
3961 [[bs:Aristotel]]
3962 [[ca:AristÃ˛til]]
3963 [[cs:AristotelÊs]]
3964 [[da:Aristoteles]]
3965 [[de:Aristoteles]]
3966 [[et:Aristoteles]]
3967 [[el:ΑĪÎšĪƒĪ„ÎŋĪ„έÎģΡĪ‚]]
3968 [[es:AristÃŗteles de Estagira]]
3969 [[eo:Aristotelo]]
3970 [[eu:Aristoteles]]
3971 [[fa:Ø§ØąØŗØˇŲˆ]]
3972 [[fr:Aristote]]
3973 [[ga:Arastotail]]
3974 [[gl:AristÃŗteles]]
3975 [[ko:ė•„ëĻŦėŠ¤í† í…”ë ˆėŠ¤]]
3976 [[hr:Aristotel]]
3977 [[io:Aristoteles]]
3978 [[id:Aristoteles]]
3979 [[is:AristÃŗteles]]
3980 [[it:Aristotele]]
3981 [[he:אריסטו]]
3982 [[jv:Aristoteles]]
3983 [[la:Aristoteles]]
3984 [[lv:Aristotelis]]
3985 [[lt:Aristotelis]]
3986 [[hu:ArisztotelÊsz]]
3987 [[mk:АŅ€Đ¸ŅŅ‚ĐžŅ‚ĐĩĐģ]]
3988 [[ms:Aristotle]]
3989 [[nl:Aristoteles]]
3990 [[nds:Aristoteles]]
3991 [[ja:ã‚ĸãƒĒ゚トテãƒŦã‚š]]
3992 [[no:Aristoteles]]
3993 [[nn:Aristoteles]]
3994 [[pl:Arystoteles]]
3995 [[pt:AristÃŗteles]]
3996 [[ro:Aristotel]]
3997 [[ru:АŅ€Đ¸ŅŅ‚ĐžŅ‚ĐĩĐģŅŒ]]
3998 [[sq:Aristoteli]]
3999 [[simple:Aristotle]]
4000 [[sk:Aristoteles]]
4001 [[sl:Aristotel]]
4002 [[sr:АŅ€Đ¸ŅŅ‚ĐžŅ‚ĐĩĐģ]]
4003 [[fi:Aristoteles]]
4004 [[sv:Aristoteles]]
4005 [[tl:Aristoteles]]
4006 [[ta:āŽ…āŽ°āŽŋāŽ¸ā¯āŽŸāŽžāŽŸā¯āŽŸāŽŋāŽ˛ā¯]]
4007 [[th:ā¸­ā¸Ŗā¸´ā¸Ēāš‚ā¸•āš€ā¸•ā¸´ā¸Ĩ]]
4008 [[vi:Aristotle]]
4009 [[tr:Aristoteles]]
4010 [[uk:АŅ€Ņ–ŅŅ‚ĐžŅ‚ĐĩĐģŅŒ]]
4011 [[zh:äēšé‡ŒåŖĢå¤šåžˇ]]</text>
4012 </revision>
4013 </page>
4014 <page>
4015 <title>An American in Paris</title>
4016 <id>309</id>
4017 <revision>
4018 <id>37835840</id>
4019 <timestamp>2006-02-02T12:39:22Z</timestamp>
4020 <contributor>
4021 <username>Japanese Searobin</username>
4022 <id>153340</id>
4023 </contributor>
4024 <minor />
4025 <comment>+ja:</comment>
4026 <text xml:space="preserve">: '' ''[[An American in Paris (film)|An American In Paris]]'' is also a 1951 film musical starring [[Gene Kelly]].''
4027
4028 '''''An American in Paris''''' is a [[European-influenced classical music|symphonic]] composition by [[United States|American]] composer [[George Gershwin]] which debuted in [[1928]]. Inspired by Gershwin's time in [[Paris]], it is in the form of an extended [[tone poem]] evoking the sights and energy of the [[France|French]] capital in the [[1920s]]. In addition to the standard instruments of the [[symphony orchestra]], the score features period automobile horns; Gershwin brought back some Parisian taxi-cab horns for the New York premiere of the composition.
4029
4030 * &quot;An American In Paris&quot; is second only to [[Rhapsody In Blue]] as a favorite of Gershwin's classical compositions.
4031
4032 * The score also features instruments rarely seen in the concert hall: [[celesta]] and [[saxophone]]s.
4033
4034 [[Category:Compositions by George Gershwin]]
4035 [[Category:Symphonic poems|American in Paris, An]]
4036
4037 [[ja:パãƒĒぎã‚ĸãƒĄãƒĒã‚Ģäēē]]
4038 [[pl:Amerykanin w Pary&amp;#380;u]]
4039 [[sv:An American in Paris (symfonisk dikt)]]</text>
4040 </revision>
4041 </page>
4042 <page>
4043 <title>Acresses</title>
4044 <id>310</id>
4045 <revision>
4046 <id>15899047</id>
4047 <timestamp>2002-09-01T17:22:59Z</timestamp>
4048 <contributor>
4049 <username>Bryan Derksen</username>
4050 <id>66</id>
4051 </contributor>
4052 <minor />
4053 <comment>bypassing double redirect</comment>
4054 <text xml:space="preserve">#REDIRECT [[Actor]]</text>
4055 </revision>
4056 </page>
4057 <page>
4058 <title>Academy Awards/Best Picture</title>
4059 <id>311</id>
4060 <revision>
4061 <id>15899048</id>
4062 <timestamp>2002-07-12T20:14:52Z</timestamp>
4063 <contributor>
4064 <username>Koyaanis Qatsi</username>
4065 <id>90</id>
4066 </contributor>
4067 <comment>REDIRECt</comment>
4068 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Picture]]</text>
4069 </revision>
4070 </page>
4071 <page>
4072 <title>Academy Awards/Best Actor</title>
4073 <id>312</id>
4074 <revision>
4075 <id>15899049</id>
4076 <timestamp>2002-05-30T07:56:01Z</timestamp>
4077 <contributor>
4078 <username>Ap</username>
4079 <id>122</id>
4080 </contributor>
4081 <comment>redirecting to [[Academy Award for Best Actor]]</comment>
4082 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Actor]]
4083 </text>
4084 </revision>
4085 </page>
4086 <page>
4087 <title>Academy Awards/Best Actress</title>
4088 <id>313</id>
4089 <revision>
4090 <id>15899050</id>
4091 <timestamp>2002-07-13T09:18:33Z</timestamp>
4092 <contributor>
4093 <username>Koyaanis Qatsi</username>
4094 <id>90</id>
4095 </contributor>
4096 <comment>REDIRECT to [[Academy Award for Best Actress]]</comment>
4097 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Actress]]</text>
4098 </revision>
4099 </page>
4100 <page>
4101 <title>Academy Awards/Best Supporting Actor</title>
4102 <id>314</id>
4103 <revision>
4104 <id>15899051</id>
4105 <timestamp>2002-07-13T10:44:18Z</timestamp>
4106 <contributor>
4107 <username>Koyaanis Qatsi</username>
4108 <id>90</id>
4109 </contributor>
4110 <comment>REDIRECT</comment>
4111 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Supporting Actor]]</text>
4112 </revision>
4113 </page>
4114 <page>
4115 <title>Academy Awards/Best Supporting Actress</title>
4116 <id>315</id>
4117 <revision>
4118 <id>15899052</id>
4119 <timestamp>2002-07-13T10:50:57Z</timestamp>
4120 <contributor>
4121 <username>Koyaanis Qatsi</username>
4122 <id>90</id>
4123 </contributor>
4124 <comment>REDIRECT</comment>
4125 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Supporting Actress]]</text>
4126 </revision>
4127 </page>
4128 <page>
4129 <title>Academy Awards/Art Direction</title>
4130 <id>316</id>
4131 <revision>
4132 <id>15899053</id>
4133 <timestamp>2002-07-13T11:13:39Z</timestamp>
4134 <contributor>
4135 <username>Koyaanis Qatsi</username>
4136 <id>90</id>
4137 </contributor>
4138 <comment>REDIRECT</comment>
4139 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Art Direction]]</text>
4140 </revision>
4141 </page>
4142 <page>
4143 <title>Academy Awards/Directing</title>
4144 <id>317</id>
4145 <revision>
4146 <id>15899054</id>
4147 <timestamp>2002-07-14T09:07:06Z</timestamp>
4148 <contributor>
4149 <username>Koyaanis Qatsi</username>
4150 <id>90</id>
4151 </contributor>
4152 <comment>*</comment>
4153 <text xml:space="preserve">#REDIRECT [[Academy Award for Directing]]</text>
4154 </revision>
4155 </page>
4156 <page>
4157 <title>Academy Awards/Foreign Language Film</title>
4158 <id>319</id>
4159 <revision>
4160 <id>15899055</id>
4161 <timestamp>2002-07-13T01:06:05Z</timestamp>
4162 <contributor>
4163 <username>Eclecticology</username>
4164 <id>372</id>
4165 </contributor>
4166 <comment>*</comment>
4167 <text xml:space="preserve">#redirect [[Academy Award for Best Foreign Language Film]]
4168 </text>
4169 </revision>
4170 </page>
4171 <page>
4172 <title>Academy Awards/Cinematography</title>
4173 <id>320</id>
4174 <revision>
4175 <id>15899056</id>
4176 <timestamp>2002-07-13T11:16:52Z</timestamp>
4177 <contributor>
4178 <username>Koyaanis Qatsi</username>
4179 <id>90</id>
4180 </contributor>
4181 <comment>REDIRECT</comment>
4182 <text xml:space="preserve">#REDIRECT [[Academy Award for Best Cinematography]]</text>
4183 </revision>
4184 </page>
4185 <page>
4186 <title>Academy Awards/Documentary Feature</title>
4187 <id>321</id>
4188 <revision>
4189 <id>15899057</id>
4190 <timestamp>2002-07-16T20:06:11Z</timestamp>
4191 <contributor>
4192 <username>Koyaanis Qatsi</username>
4193 <id>90</id>
4194 </contributor>
4195 <comment>REDIRECT</comment>
4196 <text xml:space="preserve">#REDIRECT [[Academy Award for Documentary Feature]]</text>
4197 </revision>
4198 </page>
4199 <page>
4200 <title>Academy Awards/Music Original Song</title>
4201 <id>322</id>
4202 <revision>
4203 <id>15899058</id>
4204 <timestamp>2002-07-13T11:00:26Z</timestamp>
4205 <contributor>
4206 <username>Eclecticology</username>
4207 <id>372</id>
4208 </contributor>
4209 <comment>de sub-paging</comment>
4210 <text xml:space="preserve">#redirect [[Academy Award for Best Song]]
4211 </text>
4212 </revision>
4213 </page>
4214 <page>
4215 <title>Academy Awards/Short Film Live Action</title>
4216 <id>323</id>
4217 <revision>
4218 <id>15899059</id>
4219 <timestamp>2002-07-13T11:14:18Z</timestamp>
4220 <contributor>
4221 <username>Eclecticology</username>
4222 <id>372</id>
4223 </contributor>
4224 <comment>de-subpage</comment>
4225 <text xml:space="preserve">#redirect [[Academy Award for Live Action Short Film]]</text>
4226 </revision>
4227 </page>
4228 <page>
4229 <title>Academy Awards</title>
4230 <id>324</id>
4231 <revision>
4232 <id>42155468</id>
4233 <timestamp>2006-03-04T04:37:49Z</timestamp>
4234 <contributor>
4235 <username>Wikipedical</username>
4236 <id>729854</id>
4237 </contributor>
4238 <comment>/* See also */</comment>
4239 <text xml:space="preserve">The '''Academy Awards''', popularly known as the '''Oscars''', are the most prominent [[film]] awards in the [[United States]] and arguably the world. The Awards are granted by the [[Academy of Motion Picture Arts and Sciences]], a professional honorary organization which, [[as of 2003]], had a voting membership of 5,816. Actors (with a membership of 1,311) make up the largest voting bloc. The votes have been tabulated and certified by auditing firm [[PricewaterhouseCoopers]] since close to the awards' inception. [http://www.pwc.com/extweb/newcolth.nsf/docid/540E0FBE1B2997EE85256E55005BE8FB]
4240
4241 The [[78th Academy Awards|next Oscars]] will take place on Sunday, [[March 5th]], [[2006]].
4242
4243 ==Oscar statuette==
4244 The official name of the Oscar [[statuette]] is the &quot;Academy Award of Merit.&quot; Made of [[gold]]-plated [[britannium]] on a black marble base, it is 13.5 inches (34 cm) tall, weighs 8.5 lbs (3.85 kg) and depicts a [[knight]] holding a [[crusade|crusader]]'s [[sword]] standing on a [[reel]] of film. The root of the name &quot;Oscar&quot; is contested. Some believe it comes from Academy librarian [[Margaret Herrick]], who saw it on a table and said, &quot;it looks just like my uncle Oscar!&quot; Others claim that [[Bette Davis]] named it after her first husband. However it became, the nickname stuck and is used almost as commonly as ''Academy Award'', even by the Academy itself. In fact, the Academy's domain name is ''oscars.org'' and the official website for the Academy Awards is at ''oscar.com''.
4245
4246 ==Awards night==
4247 The major awards are given out at a ceremony, most commonly in March following the relevant calendar year. This is an elaborate extravaganza, with the invited guests walking up the red carpet in the creations of the most prominent [[fashion]] designers of the day. The ceremony and extravagant afterparties, including the Academy's Governors Ball, are televised around the world.
4248
4249 The ceremony has consecutively aired on [[American Broadcasting Company|ABC]] since 1976.
4250
4251 ==Nominations==
4252 Today, according to Rules 2 and 3 of the official Academy Awards Rules, a film has to open in the previous calendar year (from [[midnight]] [[January 1]] to midnight [[December 31]]) in [[Los Angeles County, California]], to qualify. [http://www.oscars.org/78academyawards/rules/index.html] Rule 2 states that a film must be &quot;feature-length&quot; (defined as 40 minutes) to qualify for an award (except for Short Subject awards, of course). It must also exist either on a [[35 mm film|35mm]] or [[70 mm film|70mm]] film print OR on a 24fps or 48fps [[progressive scan]] [[digital film]] print with a native resolution no lower than [[SXGA|1280x1024]].
4253
4254 The members of the various branches nominate those in their respective fields (actors are nominated by the actors' branch, etc.) while all members may submit nominees for Best Picture. The winners are then determined by a second round of voting in which all members are now allowed to vote in all categories.
4255
4256 ==Membership==
4257 Academy membership may be obtained by one of two ways: a competitive nomination (however, the nominee must be invited to join) or a member may submit a name, seconded by at least two other members, then voted upon by the Board of Governors. The Academy does not publicly disclose its membership, although past press releases have announced the names of those who have been invited to join. If a person not yet a member is nominated in more than one category in a single year, he/she must choose which branch to join when he/she accepts membership.
4258
4259 ==Awards==
4260 [[Image:BobHopegettingOsca.jpg|thumb|Although he never won an Oscar for any of his movie performances, the comedian [[Bob Hope]] received five honorary Oscars for contributions to cinema and humanitarian work.]]
4261 ===Academy Award of Merit===
4262
4263 ====Current awards====
4264 *[[Academy Award for Best Picture|Best Picture]]&amp;nbsp;&amp;ndash; [[1928]] to present
4265 *[[Academy Award for Best Actor|Best Leading Actor]]&amp;nbsp;&amp;ndash; [[1928]] to present
4266 *[[Academy Award for Best Actress|Best Leading Actress]]&amp;nbsp;&amp;ndash; [[1928]] to present
4267 *[[Academy Award for Best Supporting Actor|Best Supporting Actor]]&amp;nbsp;&amp;ndash; [[1936]] to present
4268 *[[Academy Award for Best Supporting Actress|Best Supporting Actress]]&amp;nbsp;&amp;ndash; [[1936]] to present
4269 *[[Academy Award for Best Animated Feature|Best Animated Feature]]&amp;nbsp;&amp;ndash; [[2001]] to present
4270 *[[Academy Award for Best Art Direction|Best Art Direction]]&amp;nbsp;&amp;ndash; [[1928]] to present (also called Interior or Set Decoration)
4271 *[[Academy Award for Best Cinematography|Best Cinematography]]&amp;nbsp;&amp;ndash; [[1928]] to present
4272 *[[Academy Award for Costume Design|Best Costume Design]]&amp;nbsp;&amp;ndash; [[1948]] to present
4273 *[[Academy Award for Directing|Best Director]]&amp;nbsp;&amp;ndash; [[1928]] to present
4274 *[[Academy Award for Documentary Feature|Best Documentary Feature]]
4275 *[[Academy Award for Documentary Short Subject|Best Documentary Short Subject]]
4276 *[[Academy Award for Film Editing|Best Film Editing]]&amp;nbsp;&amp;ndash; [[1935]] to present
4277 *[[Academy Award for Best Foreign Language Film|Best Foreign Language Film]]&amp;nbsp;&amp;ndash; [[1947]] to present
4278 *[[Academy Award for Makeup|Best Makeup]]&amp;nbsp;&amp;ndash; [[1981]] to present
4279 *[[Academy Award for Original Music Score|Best Original Score]]; [[1934]] to present
4280 *[[Academy Award for Best Song|Best Original Song]]&amp;nbsp;&amp;ndash; [[1934]] to present
4281 *[[Academy Award for Best Song|Best Original Musical]]&amp;nbsp;&amp;ndash; [[1934]] to present
4282 *[[Academy Award for Animated Short Film|Best Animated Short Film]]&amp;nbsp;&amp;ndash; [[1931]] to present
4283 *[[Academy Award for Live Action Short Film|Best Live Action Short Film]]
4284 *[[Academy Award for Sound|Best Sound Mixing]]; [[1930]] to present
4285 *[[Academy Award for Sound Effects Editing|Best Sound Editing]]&amp;nbsp;&amp;ndash; [[1963]] to present
4286 *[[Academy Award for Visual Effects|Best Visual Effects]]&amp;nbsp;&amp;ndash; [[1939]] to present
4287 *[[Academy Award for Writing Adapted Screenplay|Best Adapted Screenplay]]&amp;nbsp;&amp;ndash; [[1928]] to present
4288 *[[Academy Award for Writing Original Screenplay|Best Original Screenplay]]&amp;nbsp;&amp;ndash; [[1940]] to present
4289
4290 ====Retired awards====
4291 *[[Academy Award for Best Assistant Director|Best Assistant Director]]&amp;nbsp;&amp;ndash; [[1933]] to [[1937]]
4292 *[[Academy Award for Best Dance Direction|Best Dance Direction]]&amp;nbsp;&amp;ndash; [[1935]] to [[1937]]
4293 *[[Academy Award for Engineering Effects|Best Engineering Effects]]&amp;nbsp;&amp;ndash; [[1928]] only
4294 *Best Score -- Adaptation or Treatment
4295 *[[Academy Award for Best Short Film - Color|Best Short Film - Color]]&amp;nbsp;&amp;ndash; [[1936]] and [[1937]]
4296 *[[Academy Award for Best Short Film - Live Action - 2 Reels|Best Short Film - Live Action - 2 Reels]]&amp;nbsp;&amp;ndash; [[1936]] to [[1956]]
4297 *[[Academy Award for Short Film - Novelty|Best Short Film - Novelty]]&amp;nbsp;&amp;ndash; [[1932]] to [[1935]]
4298 *[[Academy Award for Best Story|Best Original Story]]&amp;nbsp;&amp;ndash; [[1928]] to [[1956]]
4299 *[[Academy Award for Best Title Writing|Best Title Writing]]&amp;nbsp;&amp;ndash; [[1928]] only
4300 *[[Academy Award for Unique and Artistic Production|Best Unique and Artistic Quality of Production]]&amp;nbsp;&amp;ndash; [[1928]] only
4301
4302 In the first year of the awards, the Best Director category was split into separate Drama and Comedy categories. At times, the Best Original Score category has been split into separate Drama and Comedy/Musical categories. Today, the Best Original Score category is one category. From the 1930s through the 1960s, the Cinematography, Art Direction, and Costume Design awards were split into separate categories for black and white and color films.
4303
4304 ===Special awards===
4305 These awards are voted on by special committees, rather than by the Academy membership as a whole.
4306
4307 ====Current awards====
4308 *[[Academy Honorary Award]]&amp;nbsp;&amp;ndash; [[1928]] to present
4309 *[[Academy Special Achievement Award]]
4310 * [[Academy Award, Scientific or Technical]]&amp;nbsp;&amp;ndash; [[1931]] to present at three levels
4311 *[[The Irving G. Thalberg Memorial Award]]&amp;nbsp;&amp;ndash; [[1938]] to present
4312 *[[The Jean Hersholt Humanitarian Award]]
4313 *[[Gordon E. Sawyer Award]]
4314
4315 ====Retired awards ====
4316 *[[Academy Juvenile Award]]&amp;nbsp;&amp;ndash; [[1934]] to [[1960]]
4317
4318 ==Academy Award statistics==
4319 *[[Academy Award statistics: Films receiving 10 or more nominations]]
4320 *[[Academy Award statistics: Films receiving 8 or more awards]]
4321 *[[Academy Award statistics: Films receiving awards for Best Picture, Directing, Actor, Actress and Writing]]
4322 *[[Academy Award statistics: Films receiving 3 or more acting nominations]]
4323 *[[Academy Award statistics: Actors receiving 5 or more nominations]]
4324 *[[Academy Award statistics: Actors receiving 2 or more awards]]
4325 *[[Academy Award statistics: Directors receiving 3 or more nominations]]
4326
4327 ==See also==
4328 *[[List of Academy Awards ceremonies]]
4329 *[[List of movies that have won eight or more Academy Awards]]
4330 *[[List of Academy Award winning movies]]
4331 *[[78th Academy Awards]] ([[2006]])
4332
4333 ==References==
4334 Gail, K. &amp; Piazza, J. (2002) ''The Academy Awards the Complete History of Oscar.'' Black Dog &amp; Leventhal Publishers, Inc.
4335
4336 ==External links==
4337 {{Wiktionary}}
4338 * [http://www.oscars.org/ Oscars.org]
4339 * [http://www.oscars.org/awardsdatabase/index.html The Academy Awards Database]
4340 * [http://www.oscar.com Oscar.com]
4341 * [http://www.imdb.com/Sections/Awards/Academy_Awards_USA/ The Academy Awards] at [[The Internet Movie Database]]
4342
4343 [[Category:Academy Awards| ]]
4344 [[Category:Film awards]]
4345 [[ar:ØŦاØĻØ˛ØŠ اŲ„ØŖŲˆØŗŲƒØ§Øą]]
4346 [[af:Oscar]]
4347 [[bg:ОŅĐēĐ°Ņ€]]
4348 [[bs:Oskar]]
4349 [[ca:Premi Òscar]]
4350 [[cs:Oscar]]
4351 [[da:Oscar-uddeling]]
4352 [[de:Oscar]]
4353 [[et:Oscar]]
4354 [[es:Premios Oscar]]
4355 [[eo:Oskar-premio]]
4356 [[fa:اØŗÚŠØ§Øą]]
4357 [[fr:Oscar du cinÊma]]
4358 [[kn:ā˛†ā˛¸āŗā˛•ā˛°āŗ ā˛Ēāŗā˛°ā˛ļā˛¸āŗā˛¤ā˛ŋ]]
4359 [[ko:ė•„ėš´ë°ë¯¸ėƒ]]
4360 [[hr:Oscar]]
4361 [[id:Academy Award]]
4362 [[ilo:Pammadayaw nga Oscar]]
4363 [[it:Premio Oscar]]
4364 [[he:פרס האוסקר]]
4365 [[hu:Oscar-díj]]
4366 [[zh-min-nan:Oscar ChiÃŗng]]
4367 [[nl:Academy Award]]
4368 [[ja:ã‚ĸã‚Ģデミãƒŧčŗž]]
4369 [[nb:Oscar]]
4370 [[pl:Nagroda Akademii Filmowej]]
4371 [[pt:Óscar]]
4372 [[ro:Premiul Oscar]]
4373 [[fi:Oscar-palkinto]]
4374 [[sq:Academy Award]]
4375 [[simple:Academy Award]]
4376 [[sv:Oscar (filmpris)]]
4377 [[vi:GiáēŖi Oscar]]
4378 [[zh:åĨĨæ–¯åĄé‡‘åƒåĨ–]]</text>
4379 </revision>
4380 </page>
4381 <page>
4382 <title>Action Film</title>
4383 <id>325</id>
4384 <revision>
4385 <id>15899061</id>
4386 <timestamp>2002-08-04T00:46:46Z</timestamp>
4387 <contributor>
4388 <username>Maveric149</username>
4389 <id>62</id>
4390 </contributor>
4391 <minor />
4392 <text xml:space="preserve">#REDIRECT [[Action movie]]</text>
4393 </revision>
4394 </page>
4395 <page>
4396 <title>Actors</title>
4397 <id>326</id>
4398 <revision>
4399 <id>28000771</id>
4400 <timestamp>2005-11-11T06:10:02Z</timestamp>
4401 <contributor>
4402 <username>RoyBoy</username>
4403 <id>94806</id>
4404 </contributor>
4405 <minor />
4406 <comment>Reverted edits by [[Special:Contributions/202.56.253.183|202.56.253.183]] to last version by Maveric149</comment>
4407 <text xml:space="preserve">#REDIRECT [[Actor]]</text>
4408 </revision>
4409 </page>
4410 <page>
4411 <title>Actors/Male</title>
4412 <id>328</id>
4413 <revision>
4414 <id>15899064</id>
4415 <timestamp>2004-10-03T13:53:06Z</timestamp>
4416 <contributor>
4417 <username>Timwi</username>
4418 <id>13051</id>
4419 </contributor>
4420 <minor />
4421 <comment>fix double-redirect</comment>
4422 <text xml:space="preserve">#REDIRECT [[List of male movie actors (A-K)]]</text>
4423 </revision>
4424 </page>
4425 <page>
4426 <title>Actresses</title>
4427 <id>330</id>
4428 <revision>
4429 <id>15899066</id>
4430 <timestamp>2002-06-12T19:11:03Z</timestamp>
4431 <contributor>
4432 <username>Maveric149</username>
4433 <id>62</id>
4434 </contributor>
4435 <minor />
4436 <comment>opps</comment>
4437 <text xml:space="preserve">#REDIRECT [[actor]]</text>
4438 </revision>
4439 </page>
4440 <page>
4441 <title>Animalia (book)</title>
4442 <id>332</id>
4443 <revision>
4444 <id>41366701</id>
4445 <timestamp>2006-02-26T22:06:27Z</timestamp>
4446 <contributor>
4447 <username>Cherry blossom tree</username>
4448 <id>92624</id>
4449 </contributor>
4450 <comment>remove, er, just words, really. i suppose.</comment>
4451 <text xml:space="preserve">{{dablink|For the kingdom of life, see [[Animal]].}}
4452
4453 [[Image:Animalia.jpg|thumb|120px|Animalia Cover.]]'''Animalia''' is an illustrated [[Children's literature|children's book]] by [[Graeme Base]]. It was published in [[1986]].
4454
4455 Animalia is an alphabet book and contains twenty six illustrations, one for each letter of the alphabet. Each illustration features an animal from the animal kingdom (A is for [[alligator]], B is for [[butterfly]], etc). The illustrations contain dozens of small objects that the curious reader can try to identify.
4456
4457 Base also published a [[coloring book]] version [http://www.alibris.com/search/search.cfm?qwork=7937230&amp;wauth=Base%2C%20Graeme&amp;matches=16&amp;qsort=r&amp;cm_re=works*listing*title] for children to do their own coloring.
4458
4459 ==External links==
4460 * [http://www.tellapallet.com/animalia.htm A web site that contains a fairly comprehensive list of items hidden in Animalia's illustrations]
4461 * [http://www.amazon.com/gp/product/0810918684 Animalia on Amazon.com]
4462 * [https://www.graemebase.com/Home.cfm Graeme Base's Official website]
4463
4464 [[Category:Children's books]]
4465
4466 [[sk:ÅŊivočíchy]]</text>
4467 </revision>
4468 </page>
4469 <page>
4470 <title>Asymmetric Algorithms</title>
4471 <id>333</id>
4472 <revision>
4473 <id>23401668</id>
4474 <timestamp>2005-09-17T16:42:05Z</timestamp>
4475 <contributor>
4476 <username>Hurricane111</username>
4477 <id>99272</id>
4478 </contributor>
4479 <comment>Fixed double redirect; [[Wikipedia:Computer help desk/cleanup/double redirects/20050713|You can help!]].</comment>
4480 <text xml:space="preserve">#REDIRECT [[Public-key cryptography]]</text>
4481 </revision>
4482 </page>
4483 <page>
4484 <title>International Atomic Time</title>
4485 <id>334</id>
4486 <revision>
4487 <id>36597984</id>
4488 <timestamp>2006-01-25T04:14:11Z</timestamp>
4489 <contributor>
4490 <username>ShakataGaNai</username>
4491 <id>60232</id>
4492 </contributor>
4493 <minor />
4494 <comment>utc disambig</comment>
4495 <text xml:space="preserve">'''Temps Atomique International''' ('''TAI''') or '''International Atomic Time''' is a very accurate and stable [[time scale]]. It is a weighted average of the time kept by about 300 [[atomic clock]]s (including a large number of [[caesium]] atomic clocks) in over 50 national laboratories worldwide. It has been available since [[1955]], and became the international standard on which [[Coordinated Universal Time|UTC]] is based on [[January 1]], [[1972]], as decided by the 14th [[General Conference on Weights and Measures]] (CGPM). The [[International Bureau of Weights and Measures]] is in charge of the realization of TAI.
4496
4497 The highest precision realization of TAI times can only be determined retrospectively, as the timescale is defined by periodic comparisons among its participating atomic clocks. However, these corrections are usually only needed for applications that require nanosecond-scale accuracy. Most time service users use realtime estimates of TAI provided by atomic clocks that have been previously referenced to the composite timescale. [[Global Positioning System|GPS]] is a commonly-used realtime source of time traceable back to TAI.
4498
4499 [[Coordinated Universal Time]] (UTC) is the basis for legal time throughout much of the world, and always differs from TAI by an integral number of seconds. From [[1 January]] [[2006]], UTC was behind TAI by 33 seconds. The difference is due to an initial ten second offset on [[1 January]] [[1972]] when UTC was established and [[leap second]]s, which have been periodically inserted into UTC since the first on [[30 June]] [[1972]] due to slight irregularities in Earth's rate of rotation. While TAI is a continuous and stable timescale, UTC has intentional discontinuities to keep it from drifting more than 0.9 second from [[UT1]], a timescale defined by the Earth's rotation. Roughly speaking, solar noon (the time at which the sun is directly overhead) would drift away from 12:00:00 without leap second corrections. UT1 is computed by the [[International Earth Rotation and Reference Systems Service]] (IERS). TAI was defined such that TAI = [[UT2]] on [[January 1]] [[1958]].
4500
4501 Because UTC is a discontinuous timescale, it is not possible to compute the exact time interval elapsed between two UTC timestamps without consulting a table that describes how many leap seconds occurred during that interval. Therefore, many scientific applications that require precise measurement of long (multi-year) intervals use TAI instead. TAI is also commonly used by systems that can not handle leap seconds.
4502
4503 ==See also==
4504 * [[Terrestrial Time]]
4505 * [[Coordinated Universal Time]]
4506 * [[Universal Time]]
4507 * [[Sidereal Time]]
4508 * [[Time and frequency transfer]]
4509 * [[Clock synchronization]]
4510 * [[Network Time Protocol]]
4511
4512 ==External links==
4513 * [http://www.bipm.fr/enus/5_Scientific/c_time/time_1.html ''Bureau International des Poids et Mesures'']
4514 * [http://hpiers.obspm.fr IERS website]
4515 * [http://www.boulder.nist.gov/timefreq/general/faq.htm ''NIST Time and Frequency FAQs'']
4516
4517 &lt;!--Categories--&gt;
4518 [[Category:Time scales]]
4519
4520 &lt;!--Interwiki--&gt;
4521
4522 [[de:Internationale Atomzeit]]
4523 [[eo:TAI]]
4524 [[es:Tiempo atÃŗmico]]
4525 [[fr:Temps atomique international]]
4526 [[he:&amp;#1492;&amp;#1494;&amp;#1502;&amp;#1503; &amp;#1492;&amp;#1488;&amp;#1496;&amp;#1493;&amp;#1502;&amp;#1497; &amp;#1492;&amp;#1489;&amp;#1497;&amp;#1504;&amp;#1500;&amp;#1488;&amp;#1493;&amp;#1502;&amp;#1497;]]
4527 [[id:Waktu Atom Internasional]]
4528 [[ja:å›Ŋ際原子時]]
4529 [[pl:Mi&amp;#281;dzynarodowy czas atomowy]]
4530 [[ru:МĐĩĐļĐ´ŅƒĐŊĐ°Ņ€ĐžĐ´ĐŊĐžĐĩ Đ°Ņ‚ĐžĐŧĐŊĐžĐĩ вŅ€ĐĩĐŧŅ]]
4531 [[sk:Medzin&amp;#225;rodn&amp;#253; at&amp;#243;mov&amp;#253; &amp;#269;as]]
4532 [[zh:&amp;#21407;&amp;#23376;&amp;#26102;]]
4533 [[sv:TAI]]</text>
4534 </revision>
4535 </page>
4536 <page>
4537 <title>Altruism</title>
4538 <id>336</id>
4539 <revision>
4540 <id>41949335</id>
4541 <timestamp>2006-03-02T20:54:01Z</timestamp>
4542 <contributor>
4543 <ip>66.147.108.78</ip>
4544 </contributor>
4545 <comment>/* Altruism and religion */</comment>
4546 <text xml:space="preserve">'''Altruism''' is considered a belief, a practice, a habit, or an [[ethics|ethical doctrine]]. Many cultures and religious traditions judge altruism to be [[virtue|virtuous]]. In English, the idea was often described as [[Ethic of reciprocity|Golden rule of ethics]]. In [[Buddhism]] it is considered a fundamental property of [[human nature]].
4547
4548 ''Altruism'' can refer to:
4549
4550 * being helpful to other people with little or no interest in being rewarded for one's efforts (the colloquial definition). This is distinct from merely helping others.
4551
4552 * actions that benefit others with a net detrimental or neutral effect on the actor, regardless of the actor's own psychology, motivation, or the cause of his or her actions. This type of altruistic behavior is referred to in [[ecology]] as ''[[Commensalism]]''.
4553
4554 * an ethical doctrine that holds that individuals have a moral obligation to help others, if necessary to the exclusion of one's own interest or benefit. One who holds such a doctrine is known as an &quot;altruist.&quot;
4555
4556 The concepts have a long history in [[philosophical]] and [[ethical]] thought, and have more recently become a topic for [[psychologists]], [[sociologists]], [[evolution]]ary biologists, and [[ethology|ethologists]]. While ideas about altruism from one field can have an impact on the other fields, the different methods and focuses of these fields lead to different perspectives on altruism.
4557
4558 Altruism can be distinguished from a feeling of [[loyalty]] and [[duty]]. Altruism focuses on a moral obligation towards all [[humanity]], while duty focuses on a moral obligation towards a specific individual (e.g. a [[king]]), a specific organization (e.g. a [[government]]), or an abstract concept (e.g. [[God]], [[country]] etc). Some individuals may feel both altruism and duty, while others may not. As opposed to altruism, duty is much easier to enforce by an [[authority]].
4559
4560 ==Altruism in ethics==
4561 ''Main article: [[Altruism (ethical doctrine)]]''
4562
4563 The word &quot;altruism&quot; (''French, altruisme, from autrui: &quot;other people&quot;, derived from Latin alter: &quot;other&quot;'') was coined by [[Auguste Comte]], the French founder of [[positivism]], in order to describe the ethical doctrine he supported. He believed that individuals had a moral obligation to serve the interest of others or the &quot;greater good&quot; of humanity. Comte says, in his Catechisme Positiviste, that ''&quot;[the] social point of view cannot tolerate the notion of rights, for such notion rests on individualism. We are born under a load of obligations of every kind, to our predecessors, to our successors, to our contemporaries. After our birth these obligations increase or accumulate, for it is some time before we can return any service.... This [&quot;to live for others&quot;], the definitive formula of human morality, gives a direct sanction exclusively to our instincts of benevolence, the common source of happiness and duty. [Man must serve] Humanity, whose we are entirely.&quot;'' As the name of the ethical doctrine is &quot;altruism,&quot; doing what the ethical doctrine prescribes has also come to be referred to by the term &quot;altruism&quot; -- serving others through placing their interests above one's own.
4564
4565 However, the idea that one has a moral obligation to serve others is much older than Auguste Comte. For example, many of the world's oldest and most widespread [[religion]]s (particularly [[Buddhism]] and [[Christianity]]) advocate it. In the [[New Testament]] of the [[Christianity|Christian]] [[Bible]], it is explained as follows:
4566 :&quot;Jesus made answer and said, ''A certain man was going down from Jerusalem to Jericho; and he fell among robbers, who both stripped him and beat him, and departed, leaving him half dead. And by chance a certain priest was going down that way: and when he saw him, he passed by on the other side. And in like manner a Levite also, when he came to the place, and saw him, passed by on the other side. But a certain Samaritan, as he journeyed, came where he was: and when he saw him, he was moved with compassion, and came to him, and bound up his wounds, pouring on [them] oil and wine; and he set him on his own beast, and brought him to an inn, and took care of him. And on the morrow he took out two shillings, and gave them to the host, and said, Take care of him; and whatsoever thou spendest more, I, when I come back again, will repay thee.'' Which of these three, thinkest thou, proved neighbor unto him that fell among the robbers? And he said, He that showed mercy on him. And Jesus said unto him, '''Go, and do thou likewise.'''&quot; ''(Luke 10: 30-37)''
4567
4568 Philosophers who support [[ethical egoism|egoism]] have argued that altruism is demeaning to the individual and that no moral obligation to help others actually exists. [[Nietzsche]] asserts that altruism is predicated on the assumption that others are more important than one's self and that such a position is degrading and demeaning. He also claims that it was very uncommon for people in Europe to consider the sacrifice of one's own interests for others as virtuous until after the advent of Christianity. [[Ayn Rand]] argued that altruism is the willful sacrifice of one's values, and represents the reversal of morality because only a rationally selfish ethics allows one to pursue the values required for human life.
4569
4570 Advocates of altruism as an ethical doctrine maintain that one ought to act, or refrain from acting, so that benefit or [[good (economics)|good]] is bestowed on other people, if necessary to the exclusion of one's own interests (Note that refraining from murdering someone, for example, is not altruism since he is not receiving a benefit or being helped, as he already has his life; this would amount to the same thing as ignoring someone).
4571
4572 ==Altruism in ethology and evolutionary biology==
4573 In the science of [[ethology]] (the study of behavior), altruism refers to behavior by an individual that increases the [[fitness (biology)|fitness]] of another individual while decreasing the fitness of the actor. This would appear to be counter-intuitive if one presumes that [[natural selection]] acts on the individual. Natural selection, however, acts on the gene pool of the subjects, not on each subject individually. Recent developments in [[game theory]] have provided some explanations for apparent altruism, as have traditional evolutionary analyses. Among the proposed mechanisms are:
4574
4575 * [[Behavioral manipulation]] (e.g., by certain [[parasites]] that can alter the behavior of the host, see [http://news.yahoo.com/s/space/20060211/sc_space/mindcontrolbyparasites])
4576 * [[Bounded rationality]] (e.g., [[Herbert Simon]])
4577 * [[Conscience]]
4578 * [[Indirect reciprocity]] (e.g., [[reputation]])
4579 * [[Kin selection]] including [[eusociality]] (see also &quot;[[selfish gene]]&quot;)
4580 * [[Meme]]s (by influencing behavior to favour their own spread, e.g., [[religion]])
4581 * [[Reciprocal altruism]], mutual aid
4582 * [[Sexual selection]]
4583 * [[Strong reciprocity]]
4584
4585 The study of altruism was the initial impetus behind [[George R. Price]]'s development of the [[Price equation]] which is a mathematical equation used to study genetic evolution. An interesting example of altruism is found in the cellular [[slime mould]]s, such as ''[[Dictyostelid|Dictyostelium]] mucoroides''. These protists live as individual [[amoebae]] until starved, at which point they aggregate and form a multicellular fruiting body in which some cells sacrifice themselves to promote the survival of other cells in the fruiting body. Social behavior and altruism share many similaraties to the interactions between the many parts (cells, genes) of an organism, but are distinguished by the ability of each individual to reproduce indefinitely without an absolute requirement for its neighbors.
4586
4587 ==Altruism in psychology and sociology==
4588 If one performs an act beneficial to others with a view to gaining some personal benefit, then it is not an altruistically motivated act. There are several different perspectives on how &quot;benefit&quot; (or &quot;interest&quot;) should be defined. A material gain (e.g. money, a physical reward, etc.) is clearly a form of benefit, while others identify and include both material and immaterial gains (affection, respect, happiness, satisfaction etc.) as being philosophically identical benefits.
4589
4590 According to ''[[psychological egoism]]'', while people can exhibit altruistic ''behavior'', they cannot have altruistic ''motivations''. Psychological egoists would say that while they might very well spend their lives benefitting others with no material benefit (or a material net loss) to themselves, their most basic motive for doing so is always to further their own interests. For example, it would be alleged that the foundational motive behind a person acting this way is to advance their own psychological well-being (&quot;good feeling&quot;). Critics of this theory often reject it on the grounds that it is [[falsifiability|non-falsifiable]]; in other words, it is designed in such a way as to be impossible to prove or disprove - because immaterial gains such as a &quot;good feeling&quot; cannot be measured or proven to exist in all people performing altruistic acts. Psychological egoism has also been accused of using [[circular logic]]: &quot;If a person willingly performs an act, that means he derives personal enjoyment from it; therefore, people only perform acts that give them personal enjoyment&quot;. This statement is circular because its conclusion is identical to its hypothesis (it assumes that people only perform acts that give them personal enjoyment, and concludes that people only perform acts that give them personal enjoyment).
4591
4592 In contrast to psychological egoism, the ''[[empathy-altruism]]'' hypothesis states that when an individual experiences empathy towards someone in need, the individual will then be altruistically motivated to help that person; that is, the individual will be primarily concerned about that person's welfare, not his or her own.
4593
4594 In common parlance, altruism usually means helping another person without expecting material reward from that or other persons, although it may well entail the &quot;internal&quot; benefit of a &quot;good feeling,&quot; sense of satisfaction, self-esteem, fulfillment of duty (whether imposed by a religion or ideology or simply one's conscience), or the like. In this way one need not speculate on the motives of the altruist in question.
4595
4596 Humans are not exclusively altruistic towards family members, previous co-operators or potential future allies, but can be altruistic towards people they don't know and will never meet. For example, humans donate to international [[charity|charities]] and volunteer their time to help [[society]]'s less fortunate.
4597
4598 It strains plausibility to claim that these altruistic deeds are done in the hope of a return favor. The game theory analysis of this 'just in case' strategy, where the principle would be 'always help everyone in case you need to pull in a favor in return', is a decidedly ''non-optimal'' strategy, where the net expenditure of effort (tit) is far greater than the net profit when it occasionally pays off (tat).
4599
4600 According to some, it is difficult to believe that these behaviors are solely explained as indirect selfish [[rationality]], be it conscious or sub-conscious. Mathematical formulations of [[kin selection]], along the lines of the [[prisoner's dilemma]], are helpful as far as they go; but what a [[game theory|game-theoretic]] explanation glosses over is the fact that altruistic behavior can be attributed to that apparently mysterious phenomenon, the [[conscience]]. One recent suggestion, proposed by the philosopher [[Daniel Dennett]], was initially developed when considering the problem of so-called 'free riders' in the [[tragedy of the commons]], a larger-scale version of the [[prisoner's dilemma]].
4601
4602 In [[game theory]] terms, a free rider is an [[agent (grammar)|agent]] who draws benefits from a co-operative society without contributing. In a one-to-one situation, free riding can easily be discouraged by a tit-for-tat strategy. But in a larger-scale society, where contributions and benefits are pooled and shared, they can be incredibly difficult to shake off.
4603
4604 Imagine an elementary society of co-operative organisms. Co-operative agents interact with each other, each contributing resources and each drawing on the common good. Now imagine a [[rogue]] [[free rider]], an agent who draws a favor (&quot;you scratch my back&quot;) and later refuses to return it. The problem is that free riding is always going to be beneficial to individuals at cost to society. How can well-behaved co-operative agents avoid being cheated? Over many generations, one obvious solution is for co-operators to evolve the ability to spot potential free riders in advance and refuse to enter into [[reciprocal]] arrangements with them. Then, the canonical free rider response is to evolve a more convincing [[disguise]], fooling co-operators into co-operating after all. This can lead to an evolutionary [[arms race]]s, with ever-more-sophisticated disguises and ever-more-sophisticated detectors.
4605
4606 In this evolutionary arms race, how best might one convince comrades that one ''really is'' a genuine co-operator, not a free rider in disguise? One answer is by ''actually making oneself'' a genuine co-operator, by erecting [[psychological barriers]] to breaking promises, and by advertising this fact to everyone else. In other words, a good solution is for organisms to evolve things that everyone knows will force them to be co-operators - and to make it obvious that they've evolved these things. So evolution will produce organisms who are sincerely moral and who wear their hearts on their sleeves; in short, evolution will give rise to the phenomenon of conscience.
4607
4608 This theory, combined with ideas of [[kin selection]] and the one-to-one sharing of benefits, may explain how a blind and fundamentally selfish process can produce a genuinely non-cynical form of altruism that gives rise to the human conscience.
4609
4610 Critics of such technical game theory analysis point out that it appears to forget that human beings are rational and emotional. To presume an analysis of human behaviour without including human rationale or emotion is necessarily unrealistically narrow, and treats human beings as if they are mere machines, sometimes called [[Homo economicus]]. Another objection is that often people donate anonymously, so that it is impossible to determine if they really did the altruistic act.
4611
4612 Beginning with an understanding that rational human beings benefit from living in a benign universe, logically it follows that particular human beings may gain substantial emotional satisfaction from acts which they perceive to make the world a better place.
4613
4614 == Comparison of Altruism and Tit for Tat ==
4615 Studying the simple strategy &quot;[[Tit for tat]]&quot; in the
4616 [[iterated prisoner's dilemma]] problem, [[game theory|game theorists]] argue that
4617 &quot;Tit for tat&quot; is much more successful in establishing stable [[cooperation]] among
4618 individuals than altruism, defined as ''unconditional'' cooperation, can ever be.
4619
4620 &quot;Tit for tat&quot; starts with cooperation in the first
4621 step (as altruism does) and then just imitates the behaviour of the partner step by step. If the partner
4622 cooperates, then he ''rewards'' him with cooperation, if he doesn't, then he
4623 ''punishes'' him by not cooperating in the next step.
4624
4625 Confronted with many strategies that try to exploit or abuse cooperation of others, this
4626 simple strategy surprisingly proved to be the most successful (see [[The Evolution of Cooperation]]).
4627 It was even more successful than these abusing strategies, while unconditional cooperativity (altruism) was
4628 one of the most unsuccessful strategies.
4629 Confronted with altruistic behaviour, Tit for tat is indistinguishable from
4630 pure altruism. [[Robert Axelrod]] and [[Richard Dawkins]] also showed that
4631 altruism may be harmful to society by nourishing exploiters and abusers (and making them more and
4632 more powerful until they can force everyone to cooperate unconditionally), which
4633 is not the case for &quot;Tit for tat&quot;. (See also comparison of [[entrepreneur]] and [[entredonneur]])
4634
4635 In the context of [[biology]], the &quot;Tit for tat&quot; strategy is also called [[reciprocal altruism]].
4636
4637 ==Altruism in politics==
4638 &lt;table border&gt;
4639 &lt;tr&gt;
4640 &lt;td colspan='2' align='center'&gt;'''There is currently a [[WP:NPOV|POV]] [[WP:DR|dispute]] as to the wording of the section shown below.'''&lt;/td&gt;
4641 &lt;/tr&gt;
4642 &lt;tr&gt;
4643 &lt;td valign='top'&gt;
4644 If one is an adherent to the ''ethical doctrine'' called altruism (that people have an ethical obligation to help or further the welfare of others), then one will support the kind of politics that one believes to be most effective in furthering the welfare of others, regardless of the effect this may have on oneself. Since there is no general consensus on what kind of politics results in the greatest benefit for others, different altruists may have very different political views.
4645
4646 With regard to their political convictions, altruists may be divided in two broad groups: Those who believe altruism is a matter of personal choice (and therefore selfishness can and should be tolerated), and those who believe that altruism is a moral ideal which should be embraced, if possible, by all human beings.
4647
4648 A prominent example of the former branch of altruist political thought is [[Lysander Spooner]], who, in ''Natural Law'', writes: &quot;''Man, no doubt, owes many other moral duties to his fellow men; such as to feed the hungry, clothe the naked, shelter the homeless, care for the sick, protect the defenceless, assist the weak, and enlighten the ignorant. But these are simply moral duties, of which each man must be his own judge, in each particular case, as to whether, and how, and how far, he can, or will, perform them.''&quot;
4649
4650 The latter branch of altruist political thought, on the other hand, argues that [[egoism]] should be actively discouraged, and that altruists have a duty not only to help other people, but to teach those people to help each other as well. Thus, in politics, these altruists almost always take a [[left-wing]] stance, ranging from moderate [[social democracy]] to [[socialism]] or even [[communism]]. Moderate altruists of this branch may argue for the creation of [[tax|taxation-funded]] government programs aimed at benefiting the needy (for example [[transfer payments]], such as [[social welfare]], or [[public healthcare]] and [[public education]]). Less obvious things such as a law that motorists pull over to let emergency vehicles pass may also be justified by appealing to the altruism ethic. Finally, radical altruists of this branch may take things further and advocate some form of [[collectivism]] or [[communalism]].
4651
4652 On a somewhat related note, altruism is often held - even by non-altruists - to be the kind of ethic that should guide the actions of politicians and other people in positions of power. Such people are usually expected to set their own interests aside and serve the populace. When they do not, they may be criticized as defaulting on what is believed to be an ethical obligation to place the interests of others above their own.
4653 &lt;/td&gt;
4654 &lt;td valign='top'&gt;
4655 Politicians often speak of a moral obligation of individuals to help others. For example, [[George Bush]], speaking to the [[United Nations]] said: &quot;We have a moral obligation to help others -- and a moral duty to make sure our actions are effective.&quot;
4656
4657 If one is an adherent to the ''ethical doctrine'' called altruism (that people have an ethical obligation to help or further the welfare of others), it can become a moral justification for forcing, or advocating forcing individuals to help others. In the realm of politics, the altruist may employ an agent in the form of [[government]] to enforce this supposed moral obligation. This is not to say that an ethical altruist will ''necessarily'' force this on anyone. An altruist may allow others the freedom to behave in a manner they believe to be immoral or selfish. In other words, their ethical doctrine would not manifest itself politically.
4658
4659 With regard those who believe benevolence is a moral obligation, altruists may be divided in two broad groups: Those who believe helping others is a moral obligation but should not be enforced on individuals. And, those who believe that since helping others is a moral obligation, forcing individuals to help others if they are not willing on their own is justified.
4660
4661 A prominent example of the former branch of altruist political thought is [[Lysander Spooner]], who, in ''Natural Law'', writes: &quot;''Man, no doubt, owes many other moral duties to his fellow men; such as to feed the hungry, clothe the naked, shelter the homeless, care for the sick, protect the defenceless, assist the weak, and enlighten the ignorant. But these are simply moral duties, of which each man must be his own judge, in each particular case, as to whether, and how, and how far, he can, or will, perform them.''&quot;
4662
4663 The latter branch of altruist political thought, on the other hand, argues that [[egoism]] should be actively discouraged, and that individuals should be forced to help other people. Thus, in politics, these altruists almost always take a [[left-wing]] stance, ranging from moderate [[social democracy]] to [[socialism]] or even [[communism]]. Moderate altruists of this branch may argue for the creation of [[tax|taxation-funded]] government programs aimed at benefiting the needy (for example [[transfer payments]], such as [[social welfare]], or [[public healthcare]] and [[public education]]). Finally, radical altruists of this branch may take things to an extreme and advocate some form of state-enforced [[collectivism]], [[communalism]], or communism. This is in line with August Comte's philosophy (who coined the term altruism), which argues against individual rights.
4664
4665 Finally, many believe that helping others or serving society is not a moral obligation at all, but that altrusm is an arbitrary pronouncement not philosophically derivable. These oppose all government-enforced charity. [[Individualist anarchist]] [[Pierre-Joseph Proudhon]] in 1847 warns of enforcing charity: &quot;That is why charity, the prime virtue of the Christian, the legitimate hope of the socialist, the object of all the efforts of the economist, is a social vice the moment it is made a principle of constitution and a law; that is why certain economists have been able to say that legal charity had caused more evil in society than proprietary usurpation&quot; (''The Philosophy of Poverty'').
4666
4667 Comte asserts that individual rights are not compatible with the supposed obligation to serve others. Some argue that the ethical doctrine, if taken to its logical conclusion, leads to tyranny.
4668 &lt;/td&gt;
4669 &lt;/tr&gt;
4670 &lt;/table&gt;
4671
4672 ==Altruism and religion==
4673 {{sect-stub}}
4674 All the major world [[religion]]s promote altruism as a very important moral value. [[Christianity]] and [[Buddhism]] place particular emphasis on altruistic morality, as noted above, but [[Judaism]], [[Islam]] and [[Hinduism]] also promote altruistic behavior.
4675 The [[Good Samaritan]] is a famous [[New Testament]] parable appearing only in the [[Gospel of Luke]] (10:25-37). The parable is told by [[Jesus]] illustrating altruism.
4676 &lt;!-- This section should continue by quoting altruism-related verses from the holy books of the aforementioned religions --&gt;
4677
4678 ==See also==
4679 * [[Altruism (ethical doctrine)]]
4680 * [[Altruism in animals]]
4681 * [[Psychology]]
4682 * [[Euphemism]]
4683 * [[Will (law)]]
4684 * [[Trust (law)]]
4685 * [[Tit for tat]]
4686 * [[Reciprocal altruism]]
4687
4688 ==External links==
4689 *[http://www.altruists.org/about/altruism What is Altruism? (Altruists International)]
4690 *[http://plato.stanford.edu/entries/altruism-biological/ Biological Altruism ]
4691 *[http://www.humboldt.edu/~altruism/home.html The Altruistic Personality and Prosocial Behavior Institute at Humboldt State University]
4692 *[http://www.iipbaar.org International Institute for Prosocial Behavior and Altruism Research]
4693
4694 ==References==
4695 *Batson, C.D. (1991). ''The altruism question''. Hillsdale, NJ: Erlbaum.
4696 *Fehr, E. &amp; Fischbacher, U. ([[23 October]] [[2003]]). The nature of human altruism. In ''Nature, 425'', 785 &amp;ndash; 791.
4697 *[[August Comte]], ''Catechisme positiviste'' (1852) or ''Catechism of Positivism'', tr. R. Congreve, (London: Kegan Paul, 1891)
4698 * Oord, Thomas Jay, Science of Love (Philadelphia: Templeton Foundation Press, 2004).
4699 *[[Nietzsche, Friedrich]], ''[[Beyond Good and Evil]]''
4700 *[[Pierre-Joseph Proudhon]], ''The Philosophy of Poverty'' (1847)
4701 *[[Lysander Spooner]], ''Natural Law''
4702 *[[Ayn Rand]], ''[[The Virtue of Selfishness]]''
4703 *[[Matt Ridley]], ''[[The Origins Of Virtue]]''
4704 *Oliner, Samuel P. and Pearl M. Towards a Caring Society: Ideas into Action. West Port, CT: Praeger, 1995.
4705 * ''[[The Evolution of Cooperation]]'', [[Robert Axelrod]], Basic Books, ISBN 0465021212
4706 *''[[The Selfish Gene]]'', [[Richard Dawkins]] (1990), second edition -- includes two chapters about the evolution of cooperation, ISBN 0192860925
4707 *[[Robert Wright_(journalist)|Robert Wright]], ''The moral animal'', Vintage, 1995, ISBN 0679763996.
4708
4709 {{Philosophy navigation}}
4710
4711 [[Category:Ethics]]
4712 [[Category:Evolutionary biology]]
4713 [[Category:philanthropy]]
4714 [[Category:Social philosophy]]
4715 [[Category:Social psychology]]
4716 [[Category:Sociology]]
4717 [[Category:Virtues]]
4718 [[Category:Motivation]]
4719
4720 [[bg:АĐģŅ‚Ņ€ŅƒĐ¸ĐˇŅŠĐŧ]]
4721 [[de:Altruismus]]
4722 [[es:Altruismo]]
4723 [[fi:Altruismi]]
4724 [[fr:Altruisme]]
4725 [[he:זול×Ēנו×Ē]]
4726 [[it:Altruismo]]
4727 [[lt:Altruizmas]]
4728 [[nl:Altruïsme]]
4729 [[pl:Altruizm]]
4730 [[sv:Altruism]]</text>
4731 </revision>
4732 </page>
4733 <page>
4734 <title>Ang Lee</title>
4735 <id>337</id>
4736 <revision>
4737 <id>42100410</id>
4738 <timestamp>2006-03-03T21:00:09Z</timestamp>
4739 <contributor>
4740 <ip>209.167.177.36</ip>
4741 </contributor>
4742 <comment>/* Actor */</comment>
4743 <text xml:space="preserve">[[Image:Ang_lee.jpg|frame|Lee accepting the Best Foreign Film award for ''[[Crouching Tiger, Hidden Dragon]]'' at the 73rd Academy Awards]]
4744 '''Ang Lee''' (Chinese: 李厉; Pinyin: LĮ Ān ) (born [[October 23]], [[1954]]) is an [[Academy Award]]-winning [[film director]] from [[Taiwan]].
4745
4746 ==Early life==
4747 Ang Lee was born and raised in [[Pingtung County|Pingtung, Taiwan]] and educated in the [[United States]], where he found success as a [[Hollywood]] director, well-known for his [[wuxia]] film ''[[Crouching Tiger, Hidden Dragon]]'' (2000).
4748
4749 He completed his bachelor's degree in Theater from the [[University of Illinois]] and received his [[MFA]] from [[New York University]]'s [[Tisch School of the Arts]], where in 1984 he made a thesis film called ''Fine Line''. He was a classmate of [[Spike Lee]] and worked on the crew of the latter Lee's thesis film, ''Joe's Bed-Stuy Barbershop: We Cut Heads''.
4750
4751 ==Career==
4752 Many of his films have focused on the interactions between modernity and tradition. His films have also tended to have a light-hearted comic tone which marks a break from the tragic historical realism which characterized Taiwanese filmmaking after the end of the martial law period in 1987. Lee's films also tend to draw on deep secrets and internal torment that begin to come to the surface such as the gay-themed films ''[[The Wedding Banquet]]'' (1993), ''[[Brokeback Mountain]]'' (2005), the martial arts epic ''[[Crouching Tiger, Hidden Dragon]]'' (2000) and the comic book adaptation ''[[Hulk (film)|Hulk]]'' (2003)
4753
4754 He received the Dartmouth Film Award in 2002, along with [[Meryl Streep]].
4755
4756 Lee's film ''[[Brokeback Mountain]]'' (2005) won the best film award at the Venice International Film Festival and was named 2005's best film by the Los Angeles film critics. It also won the [[Golden Globe Award]] for Best Motion Picture — Drama, with Lee winning the [[Golden Globe Award]] for Best Director. Lee also won the Best Director award for the film at the 2006 British Academy Awards (BAFTAs). In January 2006, Brokeback scored a leading 8 [[Academy Award]] nominations including Lee for Best Director. The film is considered to be the frontrunner for the March 5, 2006 ceremony. He taught [[Meryl Streep]]'s son and [[Kai Christophe Wong]], initially scheduled for the lead in ''[[Dark Matter]]''.
4757
4758 ==Private life==
4759 His wife, Jane, is a microbiologist; they have two children, Haan and Mason.
4760 He is a huge fan of the [[Vancouver Canucks]] of the [[National Hockey League]]. He kept his directing aspirations a secret because his culture did not encourage ambitions in a non-practical career like film.
4761
4762 ==Films==
4763
4764 === Director ===
4765 * ''[[Hulk 2]]'' (2007)
4766 * ''[[Brokeback Mountain]]'' (2005)
4767 * ''[[Hulk (film)|Hulk]]'' (2003)
4768 * ''[[The Hire]]'' (BMW Short Movies) - Chosen (2002)
4769 * ''[[Crouching Tiger, Hidden Dragon]]'' (Chinese: č‡Ĩ虎藏龍) (2000)
4770 * ''[[Ride with the Devil]]'' (1999)
4771 * ''[[The Ice Storm]]'' (1997)
4772 * ''[[Sense and Sensibility (film)|Sense and Sensibility]]'' (1995)
4773 * ''[[Eat Drink Man Woman]]'' (Chinese: éŖ˛éŖŸį”ˇåĨŗ) (1994)
4774 * ''[[The Wedding Banquet]]'' (Chinese: 喜厴) (1993)
4775 * ''[[Pushing Hands (movie)|Pushing Hands]]'' (Chinese: 推手) (1992)
4776 * ''Fine Line'' (1984)
4777 * ''Shades of the lake'' (1982)
4778 * ''I Love Chinese Food'' (1981)
4779 * ''Beat the Artist'' (1981)
4780 * ''The Runner''' (1980)
4781 * ''One Day of Ma-Chuan Chen'' (Chinese: é™ŗåĒŊ勸įš„一夊)
4782 * ''Laziness in a Saturday Afternoon'' (Chinese: 星期六下午įš„æ‡ļæ•Ŗ)
4783 ''See Also:'' [[:Category:Films directed by Ang Lee|Films directed by Ang Lee]]
4784
4785 === Writer ===
4786 * ''[[Siao Yu]]'' (Chinese: 少åĨŗ小æŧ) (1995)
4787 * ''[[Eat Drink Man Woman]]'' (Chinese: éŖ˛éŖŸį”ˇåĨŗ) (1994)
4788 * ''[[The Wedding Banquet]]'' (Chinese: 喜厴) (1993)
4789 * ''[[Pushing Hands (movie)|Pushing Hands]]'' (Chinese: 推手) (1992)
4790
4791 === Actor ===
4792 * ''[[The Wedding Banquet]]'' (Chinese: 喜厴) (1993)
4793 * ''[[The Hulk]]''(2003)
4794
4795 === Editing ===
4796 * ''[[Eat Drink Man Woman]]'' (Chinese: éŖ˛éŖŸį”ˇåĨŗ) (1994)
4797 * ''[[Pushing Hands (movie)|Pushing Hands]]'' (Chinese: 推手) (1992)
4798
4799 === Producer ===
4800 * ''[[Crouching Tiger, Hidden Dragon]]'' (Chinese: č‡Ĩ虎藏龍) (2000)
4801 * ''[[Siao Yu]]'' (Chinese: 少åĨŗ小æŧ) (1995)
4802
4803 ==External links==
4804 * {{imdb name|id=0000487|name=Ang Lee}}
4805 * [http://www.thecheappop.com/heath.html Ang Lee on Brokeback]
4806 * [http://movie.cca.gov.tw/PEOPLE/people_inside.asp?rowid=70&amp;id=1 Ang Lee] (Chinese)
4807
4808 [[Category:1954 births|Lee, Ang]]
4809 [[Category:Living people|Lee, Ang]]
4810 [[Category:American film directors|Lee, Ang]]
4811 [[Category:Hulk|Lee, Ang]]
4812 [[Category:Taiwanese Americans|Lee, Ang]]
4813 [[Category:Taiwanese film directors|Lee, Ang]]
4814 [[Category:Best Director Golden Globe]]
4815 [[Category:Best Director Oscar nominees]]
4816 [[de:Ang Lee]]
4817 [[es:Ang Lee]]
4818 [[et:Ang Lee]]
4819 [[fi:Ang Lee]]
4820 [[fr:Ang Lee]]
4821 [[hr:Ang Lee]]
4822 [[it:Ang Lee]]
4823 [[ja:ã‚ĸãƒŗãƒģãƒĒãƒŧ]]
4824 [[ka:ანგ ლი]]
4825 [[nl:Ang Lee]]
4826 [[pt:Ang Lee]]
4827 [[zh:李厉]]</text>
4828 </revision>
4829 </page>
4830 <page>
4831 <title>AutoRacing</title>
4832 <id>338</id>
4833 <revision>
4834 <id>15899073</id>
4835 <timestamp>2002-02-25T15:43:11Z</timestamp>
4836 <contributor>
4837 <ip>Conversion script</ip>
4838 </contributor>
4839 <minor />
4840 <comment>Automated conversion</comment>
4841 <text xml:space="preserve">#REDIRECT [[Auto racing]]
4842 </text>
4843 </revision>
4844 </page>
4845 <page>
4846 <title>Ayn Rand</title>
4847 <id>339</id>
4848 <restrictions>edit=sysop:move=sysop</restrictions>
4849 <revision>
4850 <id>40260861</id>
4851 <timestamp>2006-02-19T08:35:36Z</timestamp>
4852 <contributor>
4853 <username>Woohookitty</username>
4854 <id>159678</id>
4855 </contributor>
4856 <text xml:space="preserve">{{protected}}
4857 {{Infobox_Philosopher |
4858 &lt;!-- Scroll down to edit this page --&gt;
4859 &lt;!-- Philosopher Category --&gt;
4860 region = Western Philosophy |
4861 era = [[Contemporary philosophy]], |
4862 color = #B0C4DE |
4863
4864 &lt;!-- Image and Caption --&gt;
4865 image_name = Ayn_Rand1.jpg|
4866 image_caption = Ayn Rand: novelist and philosopher|
4867
4868 &lt;!-- Information --&gt;
4869 name = Ayn Rand |
4870 birth = [[February 2]], [[1905]] |
4871 death = [[March 6]], [[1982]]|
4872 school_tradition = [[Objectivist philosophy]] |
4873 main_interests = [[Objectivist metaphysics]], [[Objectivist ethics]]|
4874 influences = [[Aristotle]], [[Thomas Aquinas]], [[Nietzsche]] |
4875 influenced = [[Leonard Peikoff]], [[Harry Binswanger]], [[John Ridpath]], [[Tara Smith]], [[David Kelley]], [[Dr. Frank R. Wallace]]|
4876 notable_ideas = |[[Rational self-interest]]}}
4877
4878 '''Ayn Rand''' ({{IPA2|ajn ÉšÃĻnd}}, {{OldStyleDate|February 2|1905|January 20}} &amp;ndash; [[March 6]] [[1982]]), born '''Alissa Zinovievna Rosenbaum''', was best known for her [[philosophy]] of [[Objectivist philosophy|Objectivism]] and her novels ''[[We the Living]]'', ''[[Anthem (novel)|Anthem]]'', ''[[The Fountainhead]]'', and ''[[Atlas Shrugged]]''. Her philosophy and her fiction both emphasize, above all, the concepts of [[individualism]], rational [[egoism]] (&quot;[[Objectivist ethics|rational self-interest]]&quot;), and [[capitalism]], which she believed should be implemented fully via ''[[Laissez-faire]]'' [[capitalism]]. Her politics has been described as [[minarchism]] and [[libertarianism]], though she never used the first term and detested the second.
4879
4880 Her novels were based upon the projection of the Randian [[hero]], a man whose ability and independence causes conflict with the masses, but who perseveres nevertheless to achieve his values. Rand viewed this hero as the ideal, and the express goal of her fiction was to showcase such heroes.
4881
4882 She believed:
4883 *That man must choose his values and actions by reason;
4884 *That the individual has a right to exist for his own sake, neither sacrificing self to others nor others to self; and
4885 *That no one has the right to seek values from others by physical force, or impose ideas on others by physical force.
4886
4887 ==Biography==
4888 ===Early life===
4889 Rand was born in [[Saint Petersburg]], [[Russia]], and was the eldest of three daughters of a [[Jew]]ish family. Her parents were [[agnostic]] and largely non-observant. From an early age, she displayed a strong interest in literature and films. She started writing screenplays and novels from the age of seven. Her mother taught her French and subscribed to a magazine featuring stories for boys, where Rand found her first childhood hero: Cyrus Paltons, an Indian army officer in a [[Rudyard Kipling]]-style story called &quot;The Mysterious Valley&quot;. Throughout her youth, she read the novels of [[Sir Walter Scott]], [[Alexandre Dumas]] and other Romantic writers, and expressed a passionate enthusiasm toward the Romantic movement as a whole. She discovered [[Victor Hugo]] at the age of thirteen, and fell deeply in love with his novels. Later, she cited him as her favorite novelist and the greatest novelist of world literature. She studied philosophy and history at the [[Saint Petersburg State University|University of Petrograd]]. Her major literary discoveries in university were the works of [[Edmond Rostand]], [[Friedrich Schiller]] and [[Fyodor Dostoevsky]]. She admired Rostand for his richly romantic imagination and Schiller for his grand, heroic scale. She admired Dostoevsky for his sense of drama and his intense moral judgments, but was deeply against his philosophy and his sense of life. She continued to write short stories and screenplays and wrote sporadically in her diary, which contained intensely anti-Soviet ideas. She also encountered the philosophical ideas of [[Nietzsche]], and loved his exaltation of the heroic and independent individual who embraced egoism and rejected altruism in ''[[Thus Spoke Zarathustra]]''. Though an early fan of Nietzsche, she eventually became critical, seeing his philosophy as emphasizing emotion over reason. Nevertheless, as Allan Gotthelf points out in book ''On Ayn Rand'', &quot;the influence was real.&quot; She did still retain an admiration for some of his ideas, and quoted Nietzsche in the introduction to the 25th aniversary edition of ''The Fountainhead'': &quot;''The noble soul has reverence for itself.''&quot; Her greatest influence by far is [[Aristotle]], especially ''Organon (Logic)''. Although Leonard Peikoff, promoter of her ideas, says she is the greatest philosopher who ever lived, she herself considered Aristotle the greatest philosopher ever, and stated that he was the only philosopher who had influenced her (this is probably because, as she has stated, she did not include her own work when analyzing the culture.) She then entered the State Institute for Cinema Arts in 1924 to study screenwriting; in late 1925, however, she was granted a [[Visa (document)|visa]] to visit American relatives. She arrived in the [[United States]] in February 1926, at the age of twenty-one. After a brief stay with her relatives in [[Chicago, Illinois|Chicago]], she resolved never to return to the [[Soviet Union]], and set out for [[Hollywood]] to become a [[screenwriter]]. She then changed her name to &quot;Ayn Rand&quot;. There is a story told that she named herself after the [[Remington Rand]] [[typewriter]], but she began using the name Ayn Rand before the typewriter was first sold. She stated that her first name, 'Ayn', was an adaptation of the name of a Finnish writer. This may have been the Finnish-Estonian author [[Aino Kallas]], but variations of this name are common in [[Finnish language|Finnish]]-speaking regions.
4890
4891 ===Major works===
4892 Initially, Rand struggled in [[Cinema of the United States|Hollywood]] and took odd jobs to pay her basic living expenses. While working as an [[extra (drama)|extra]] on [[Cecil B. DeMille]]'s ''[[The King of Kings|King of Kings]]'', she intentionally bumped into an aspiring young actor, [[Frank O'Connor (actor)|Frank O'Connor]], who caught her eye. The two married in 1929. In 1931, Rand became a [[naturalized citizen]] of the United States. Her first literary success came with the sale of her screenplay ''[[Red Pawn]]'' in 1932 to [[Universal Studios]]. Rand then wrote the play ''[[The Night of January 16th]]'' in 1934, which was highly successful, and published two novels, ''[[We the Living]]'' (1936), and ''[[Anthem (novella)|Anthem]]'' (1938). While ''We the Living'' met with mixed reviews in the U.S. and positive reviews in the U.K., ''Anthem'' received significiant and positive reviews only in England, due in part to its odd publication history. She was up against [[The Red Decade ]] in America, and ''Anthem'' did not even find a publisher in the United States; it was first published in England. Besides, Rand had still not perfected her literary style and these novels cannot be considered representative.
4893
4894 Without Rand's knowledge or permission, ''[[We The Living]]'' was made into a pair of films, ''Noi vivi'' and ''Addio, Kira'' in 1942 by Scalara Films, [[Rome]]. They were nearly censored by the [[Italy|Italian]] government under [[Benito Mussolini]], but they were permitted because the novel upon which they were based was anti-Soviet. The films were successful and the public easily realized that they were as much against Fascism as Communism, and the government banned them quickly thereafter. These films were re-edited into a new version which was approved by Rand and re-released as ''We the Living'' in 1986.
4895
4896 Rand's first major professional success came with her best-selling novel ''[[The Fountainhead]]'' (1943), which she wrote over a period of seven years. The novel was rejected by twelve publishers, who thought it was too intellectual and opposed to the mainstream of American thought. It was finally accepted by the [[Bobbs-Merrill Company]] publishing house, thanks mainly to a member of the editorial board, Archibald Ogden, who praised the book in the highest terms and finally prevailed. Eventually, ''The Fountainhead'' was a worldwide success, bringing Rand fame and financial security.
4897
4898 The theme of ''The Fountainhead'' is &quot;individualism and collectivism in man's soul&quot;. It features the lives of five main characters. The hero, Howard Roark, is Rand's ideal, a noble soul ''par excellence'', an architect who is firmly and serenely devoted to his own ideals and believes that no man should copy the style of another in any field, especially architecture. All the other characters in the novel demand that he renounce his values, but Roark maintains his integrity. Unlike traditional heroes who launch into long and passionate monologues about their integrity and the unfairness of the world; Roark, in contrast, does it with a disdainful, almost contemptuous taciturnity and laconicism.
4899
4900 Rand's [[magnum opus]], ''[[Atlas Shrugged]]'', was published in 1957, becoming an international bestseller. ''Atlas Shrugged'' is often seen as Rand's most complete statement of the [[Objectivist philosophy]] in any of her works of fiction. In its appendix, she offered this summary:
4901 :&quot;My philosophy, in essence, is the concept of man as a heroic being, with his own happiness as the moral purpose of his life, with productive achievement as his noblest activity, and reason as his only absolute.&quot;
4902
4903 The theme of ''Atlas Shrugged'' is &quot;The role of man's mind in society&quot;. Rand upheld the industrialist as one of the most admirable members of any society and fiercely opposed the popular resentment accorded to industrialists. This led her to envision a novel wherein the industrialists of America go on strike and retreat to a mountainous hideaway. The American economy and its society in general slowly start to collapse. The government responds by increasing the already stifling controls on industrial concerns. The novel deals with issues as complex and divergent as sex, music, medicine, politics, and human ability.
4904
4905 Along with [[Nathaniel Branden]], his wife [[Barbara Branden|Barbara]], and others including [[Alan Greenspan]] and [[Leonard Peikoff]], (jokingly designated &quot;[[The Ayn Rand Collective|The Collective]]&quot;), Rand launched the [[Objectivism|Objectivist]] movement to promote her philosophy.
4906
4907 ===The Objectivist movement===
4908 ''Main article: The [[Objectivist movement]]''
4909
4910 In 1950 Rand moved to [[New York City]], where in 1951 she met the young [[psychology]] student [[Nathaniel Branden]] [http://www.nathanielbranden.com], who had read her book, ''The Fountainhead'', at the age of 14. Branden, then 19, enjoyed discussing Rand's emerging Objectivist philosophy with her. Together, Branden and some of his other friends formed a group that they dubbed the [[Collective]], which included some participation by future Federal Reserve chairman [[Alan Greenspan]]. After several years, Rand and Branden's friendly relationship blossomed into a romantic affair, despite the fact that both were married at the time. Their spouses were both convinced to accept this affair but it eventually led to the separation and then divorce of [[Nathaniel Branden]] from his wife. Although one of Rand's most strident philosophical points was never to bow to societal pressure or norms, Ayn Rand abandoned her own name (see top of page), as did Branden (born Nathan Blumenthal).
4911
4912 Throughout the [[1960s]] and [[1970s]], Rand developed and promoted her Objectivist philosophy through both her fiction [http://www.aynrand.org/site/PageServer?pagename=objectivism_fiction] and non-fiction [http://www.aynrand.org/site/PageServer?pagename=objectivism_nonfiction] works, and by giving talks at several east-coast universities, largely through the [[Nathaniel Branden Institute]] (&quot;the NBI&quot;) which Branden established to promote her philosophy.
4913
4914 After a convoluted series of separations, Rand abruptly ended her relationship with both Nathaniel Branden and his wife, [[Barbara Branden]], in 1968 when she learned of Nathaniel Branden's affair with Patrecia Scott (this later affair did not overlap chronologically with the earlier Branden/Rand affair). Rand refused to have any further dealings with the NBI. She then published a letter in &quot;The Objectivist&quot; announcing her repudiation of Branden for various reasons, including dishonesty, but did not mention their affair or her role in the schism. The two never reconciled, and Branden remained a ''persona non grata'' in the Objectivist movement.
4915 [[Image:ayn rand stamp.jpg|222px|frame|left|1999 U.S. [[postage stamp]] honoring Rand. Art by [[Nick Gaetano]].]]
4916
4917 Barbara Branden presented an account of the breakup of the affair in her book, ''The Passion of Ayn Rand.'' She describes the encounter between Nathaniel and Rand, saying that Rand slapped him numerous times, and denounced him in these words: &quot;If you have an ounce of morality left in you, an ounce of psychological health — you'll be impotent for the next twenty years! And if you achieve any potency, you'll know it's a sign of still worse moral degradation!&quot;
4918
4919 Conflicts continued in the wake of the break with Branden and the subsequent collapse of the NBI. Many of her closest &quot;Collective&quot; friends began to part ways, and during the late 70's, her activities within the formal Objectivist movement began to decline, a situation which increased after the death of her husband in 1979. One of her final projects was work on a television adaptation of ''Atlas Shrugged''.
4920
4921 Rand died of heart failure on [[March 6]], [[1982]] in [[New York City]], years after having successfully battled cancer, and was interred in the [[Kensico Cemetery]], [[Valhalla, New York]].
4922
4923 [[Image:Ayn_Rand_Marker.jpg|thumb|right|324px|Grave marker of [[Frank O'Connor (actor)|Frank O'Connor]] and Ayn Rand.]]
4924
4925 ===Philosophical influences===
4926 Rand rejected virtually all other philosophical schools. She acknowledged a shared intellectual lineage with [[Aristotle]] and [[John Locke]], and more generally with the philosophies of the [[Age of Enlightenment]] and the [[Age of Reason]]. She occasionally remarked with approval on specific philosophical positions of, e.g., [[Baruch Spinoza]] and [[Thomas Aquinas]]. She seems also to have respected the American rationalist [[Brand Blanshard]]. However, she regarded most philosophers as at best incompetent and at worst downright evil. She singled out [[Immanuel Kant]] as the most influential of the latter sort.
4927
4928 Nonetheless, there are connections between Rand's views and those of other philosophers. She acknowledged that she had been influenced at an early age by the writings of [[Friedrich Nietzsche]]. Though she later repudiated his thought and reprinted her first novel, ''[[We The Living]]'', with some wording changes in 1959, her own thought grew out of critical interaction with it. Generally, her political thought is in the tradition of [[classical liberalism]]. She expressed qualified enthusiasm for the economic thought of [[Ludwig von Mises]] and [[Henry Hazlitt]]. Though not mentioned as an influence by her specifically, parallels between her works and [[Ralph Waldo Emerson]]'s essay [[Self-Reliance]] do exist. Later Objectivists, such as [[Richard Salsman]], have claimed that Rand's economic theories are implicitly more supportive of the doctrines of [[Jean-Baptiste Say]], though Rand herself was likely not acquainted with his work.
4929
4930 ===Politics and House Committee on Un-American Activities testimony===
4931 Rand's political views were radically pro-[[capitalist]], [[anti-statist]], and [[anti-Communist]]. Her writings praised above all the human individual and the creative genius of which one is capable. She exalted what she saw as the heroic [[American values]] of egoism and individualism. Rand also had a strong dislike for [[mysticism]], [[religion]], and compulsory [[charity]], all of which she believed helped foster a crippling culture of resentment towards individual human happiness and success. Rand detested many prominent [[liberalism|liberal]] and [[conservative]] politicians of her time, even including prominent anti-Communist crusaders like Presidents [[Harry S. Truman]] and [[Ronald Reagan]], and Senators [[Hubert H. Humphrey]] and [[Joseph McCarthy]] (although she argued that ''[[McCarthyism]]'' was a myth, and that the accusation of McCarthyism was used as an [[ad hominem]] argument to discredit anti-Communists).
4932
4933 In 1947, during the [[Red Scare]], Rand testified as a &quot;friendly witness&quot; before the [[House Committee on Un-American Activities]] (see [[http://www.noblesoul.com/orc/texts/huac.html]]). Rand's testimony involved analysis of the 1943 film ''[[Song of Russia]]''. While many believe that Ayn Rand disclosed the names of members of the Communist Party in the U.S., thus exposing them to [[blacklisting]], her testimony consisted entirely of comments regarding the disparity between her experiences in the [[Soviet Union]] and the fanciful portrayal of it in the film.
4934
4935 Rand argued that the movie grossly misrepresented the socioeconomic conditions in the Soviet Union. She told the committee that the film presented life in the USSR as being much better than it actually was. Apparently this 1943 film was intentional wartime [[propaganda]] by U.S. patriots, trying to put their Soviet allies in [[World War II]] under the best possible light. After the HUAC hearings, when Ayn Rand was asked about her feelings on the effectiveness of their investigations, she described the process as &quot;futile&quot;.
4936
4937 ==Legacy==
4938 Rand's funeral was attended by some of her prominent followers, including [[Alan Greenspan]]. A six-foot floral arrangement in the shape of a dollar sign was placed near her casket. [http://www.eckerd.edu/aspec/writers/atlas_shrugged.htm]
4939
4940 In 1985, [[Leonard Peikoff]], a surviving member of &quot;[[The Ayn Rand Collective|The Collective]]&quot; and Ayn Rand's designated heir, established &quot;The [[Ayn Rand Institute]]: The Center for the Advancement of Objectivism&quot; (ARI). The Institute has since registered the name ''Ayn Rand'' as a trademark, despite Rand's desire that her name never be used to promote the philosophy she developed. Rand expressed her wish to keep her name and the philosophy of Objectivism separate to ensure the survival of her ideas.
4941
4942 Another schism in the movement occurred in 1989, when Objectivist [[David Kelley]] wrote &quot;A Question of Sanction,&quot; [http://www.wetheliving.com/boston/sanction.html] in which he defended his choice to speak to non-Objectivist [[Libertarianism|libertarian]] groups. Kelley stated that Objectivism was not a &quot;closed system&quot; and should engage with other philosophies. Peikoff, in an article for ''[[The Intellectual Activist]]'' called &quot;Fact and Value&quot; [http://www.aynrand.org/site/PageServer?pagename=objectivism_f-v], argued that Objectivism is, indeed, a closed system, and that truth and moral goodness are directly related. Peikoff expelled Kelley from his movement, whereupon Kelley founded The Institute for Objectivist Studies (now known as &quot;[[The Objectivist Center]]&quot;).
4943
4944 Rand and Objectivism are less well known outside [[North America]], although there are pockets of interest in [[Europe]] and [[Australia]], and her novels are reported to be popular in [[India]] ([http://www.theatlasphere.com/metablog/000058.php]) and to be gaining an increasingly wider audience in [[Africa]]. Her work has had little effect on academic philosophy, for her followers are, with some notable exceptions, drawn from the non-academic world.
4945
4946 [[Neil Peart]], the drummer and lyricist with the Canadian progressive rock band [[Rush (band)|Rush]], was influenced by Rand philosophy during the early years of the band. The most notable instances of this are the track &quot;Anthem&quot; from the album ''[[Fly By Night]]'' ([[1975]]) and the title track from the album ''[[2112]]'' ([[1976]]).
4947
4948 ==Controversy==
4949 Rand's views are controversial. Religious and socially conservative thinkers have criticized her atheism. Many adherents and practitioners of [[continental philosophy]] criticize her celebration of rationality and self-interest. Within the dominant philosophical movement in the English-speaking world, [[analytic philosophy]], Rand's work has been mostly ignored. No leading research university in this tradition considers Rand or Objectivism to be an important philosophical specialty or research area, as is documented by [[Brian Leiter]]'s report [http://www.philosophicalgourmet.com/]. Some academics, however, are trying to bring Rand's work into the mainstream. For instance, the [http://www.aynrandsociety.org/ Ayn Rand Society], founded in 1987, is affiliated with the [[American Philosophical Association]]. In 2006, [[Cambridge University Press]] will publish a volume on Rand's ethical theory written by ARI-affiliated scholar [[Tara Smith]].
4950
4951 A notable exception to the general lack of attention paid to Rand is the essay &quot;On the Randian Argument&quot; by [[Harvard University]] philosopher [[Robert Nozick]], which appears in his collection ''Socratic Puzzles''. Nozick's own [[libertarian]] political conclusions are similar to Rand's, but his essay criticizes her foundational argument in ethics, which claims that one's own life is, for each individual, the only ultimate value because it makes all other values possible. To make this argument sound, Nozick argues that Rand still needs to explain why someone could not rationally prefer the state of eventually dying and having no values. Thus, he argues, her attempt to deduce the morality of selfishness is essentially an instance of assuming the conclusion or [[begging the question]] and that her solution to [[David Hume]]'s famous [[is-ought problem]] is unsatisfactory. Nevertheless, Nozick respected Rand as an author and noted that he found her books enjoyable and thought-provoking.
4952
4953 Rand has sometimes been viewed with suspicion for her practice of presenting her philosophy in fiction and non-fiction books aimed at a general audience rather than publishing in [[peer-review]]ed journals. Rand's defenders note that she is part of a long tradition of authors who wrote philosophically rich fiction — including [[Dante]], [[John Milton]], [[Fyodor Dostoevsky]], and [[Albert Camus]], and that other philosophers such as [[Jean-Paul Sartre]] presented their philosophies in both fictional and non-fictional forms.
4954
4955 Other critics argue that Rand’s idealistic philosophy and her [[Romantic]] literary style are not applicable to the inhabited world. In particular, these critics claim that Rand's novels are made up of unrealistic and one-dimensional characters. They criticize the portrayal of the Objectivist heroes as incredibly intelligent, unencumbered by doubt, wealthy, and free of flaws, in contrast to the frequent portrayal of the antagonists as weak, pathetic, full of uncertainty, and lacking in imagination and talent.
4956
4957 Defenders of Rand point out counterexamples to these criticisms: neither Eddie Willers nor Cherryl Taggart (both positive characters) is especially gifted or intelligent, but both are characters of dignity and respect; Leo Kovalensky suffers enormously due to his inability to cope with the brutality and banality of communism; Andrei Taganov dies after realizing his philosophical errors; Dominique Francon is initially bitterly unhappy because she believes evil is powerful; Hank Rearden is torn by inner emotional conflict brought on by a philosophical contradiction; and Dagny Taggart thinks that she alone is capable of saving the world. Two of her main protagonists, Howard Roark and John Galt, did not begin life wealthy. Though Rand believed that, under capitalism, valuable contributions will routinely be rewarded by wealth, she certainly did not think that wealth made a person virtuous. In fact, she presents many vicious bureaucrats and waspish elitists who use [[statism]] to accumulate money and power. Moreover, Hank Rearden is exploited because of his social naïvetÊ. As for the purportedly weak and pathetic villains, Rand's defenders point out that Ellsworth Toohey is represented as being a great strategist and communicator from an early age, and Dr. Robert Stadler is a brilliant scientist.
4958
4959 Rand herself replied to these literary criticisms (and in advance of much of them) with her essay &quot;The Goal of My Writing&quot; (1963). There, and in other essays collected in her book ''[[The Romantic Manifesto|The Romantic Manifesto: A Philosophy of Literature]]'' (2nd rev. ed. 1975), Rand makes it clear that her goal is to project her vision of an ideal man: not man as he is, but man as he might and ought to be.
4960
4961 Rand's views on sex have also led to some controversy. According to her, &quot;For a woman ''qua'' woman, the essence of femininity is hero-worship – the desire to look up to man.&quot; (1968) Some in the [[BDSM]] community see her work as relevant and supportive, particularly ''The Fountainhead'' [http://www.mistressmorgana.com/site04/read_rec.html].
4962
4963 Another source of controversy is Rand's view that homosexuality is &quot;immoral&quot; and &quot;disgusting&quot; [http://www.nyu.edu/projects/sciabarra/essays/homo/atlasphere.htm], as well as her support for the right of businesses to discriminate on the basis of homosexuality, such as in their hiring practices. Specifically, she stated that &quot;there is a psychological immorality at the root of homosexuality&quot; because &quot;it involves psychological flaws, corruptions, errors, or unfortunate premises&quot;.
4964
4965 On the topic of non-governmental discrimination, Rand's defenders argue that her support for its legality was motivated by holding property rights above civil or human rights (as she did not believe that human rights were distinct from property rights) so it did not constitute an endorsement of the morality of the prejudice itself. In support of this, they cite Rand's opposition to some prejudices &amp;mdash; though not homophobia &amp;mdash; on moral grounds, in essays like 'Racism' and 'Global Balkanization', while still arguing for the right of individuals and businesses to act on such prejudice without government intervention. [http://forum.objectivismonline.net/lofiversion/index.php/t2277.html].
4966
4967 ==Bibliography==
4968 ===Fiction===
4969 * ''[[Night of January 16th]]'' (1934)
4970 * ''[[We The Living]]'' (1936)
4971 * ''[[Anthem (novel)|Anthem]]'' (1938)
4972 * ''[[The Fountainhead]]'' (1943)
4973 * ''[[Atlas Shrugged]]'' (1957)
4974
4975 ====Posthumous fiction====
4976 * ''Three Plays'' (2005)
4977
4978 ===Nonfiction===
4979 * ''For the New Intellectual'' (1961)
4980 * ''The Virtue of Selfishness'' (with [[Nathaniel Branden]]) ([[1964]])
4981 * ''[[Capitalism: The Unknown Ideal]]'' (with [[Nathaniel Branden]], [[Alan Greenspan]], and [[Robert Hessen]]) ([[1966]])
4982 * ''[[Introduction to Objectivist Epistemology]]'' (1967)
4983 * ''[[The Romantic Manifesto]]'' (1969)
4984 * ''The New Left: The Anti-Industrial Revolution'' (1971)
4985 * ''Philosophy: Who Needs It'' (1982)
4986
4987 ====Posthumous nonfiction====
4988 * ''[[The Early Ayn Rand]]'' (edited and with commentary by [[Leonard Peikoff]]) ([[1984]])
4989 * ''The Voice of Reason: Essays in Objectivist Thought'' (edited by [[Leonard Peikoff]]; additional essays by [[Leonard Peikoff]] and [[Peter Schwartz]]) ([[1989]])
4990 * ''[[Introduction to Objectivist Epistemology]]'' second edition (edited by [[Harry Binswanger]]; additional material by [[Leonard Peikoff]]) ([[1990]])
4991 * ''Letters of Ayn Rand'' (edited by [[Michael S. Berliner]]) ([[1995]])
4992 * ''Journals of Ayn Rand'' (edited by [[David Harriman]]) ([[1997]])
4993 * ''Ayn Rand's Marginalia : Her Critical Comments on the Writings of over Twenty Authors'' (edited by [[Robert Mayhew]]) ([[1998]])
4994 * ''The Ayn Rand Column: Written for the Los Angeles Times'' (edited by [[Peter Schwartz]]) ([[1998]])
4995 * ''Russian Writings on Hollywood'' (edited by [[Michael S. Berliner]]) ([[1999]])
4996 * ''Return of the Primitive: The Anti-Industrial Revolution'' (expanded edition of ''The New Left''; edited and with additional essays by [[Peter Schwartz]]) ([[1999]])
4997 * ''The Art of Fiction'' (edited by [[Tore Boeckmann]]) ([[2000]])
4998 * ''The Art of Nonfiction'' (edited by [[Robert Mayhew]]) ([[2001]])
4999 * ''The Objectivism Research CD-ROM'' (collection of most of Rand's works in CD-ROM format) (2001)
5000 * ''Ayn Rand Answers'' (2005)
5001
5002 ==References==
5003 In addition to Rand's own works (listed above), the following references discuss Rand's life and/or literary work. References that discuss her philosophy can be found in the [[bibliography of work on Objectivism]].
5004 &lt;div style=&quot;font-size: 90%&quot;&gt;
5005 * {{cite book
5006 | last = Baker | first = James T.
5007 | authorlink = James T. Baker
5008 | title = Ayn Rand
5009 | publisher = Twayne
5010 | location = Boston
5011 | year = 1987
5012 | id = ISBN 0-8057-7497-1
5013 }}
5014 * {{cite book
5015 | last = Branden | first = Barbara
5016 | authorlink = Barbara Branden
5017 | title = The Passion of Ayn Rand
5018 | publisher = Doubleday &amp;amp; Company
5019 | location = Garden City, New York
5020 | year = 1986
5021 | id = ISBN 0-385-19171-5
5022 }}
5023 * {{cite book
5024 | last = Branden | first = Nathaniel
5025 | authorlink = Nathaniel Branden
5026 | title = My Years with Ayn Rand
5027 | publisher = Jossey Bass
5028 | location = San Francisco
5029 | year = 1998
5030 | id = ISBN 0-7879-4513-7
5031 }}
5032 * {{cite book
5033 | last = Branden | first = Nathaniel
5034 | authorlink = Nathaniel Branden
5035 | coauthors = [[Barbara Branden]]
5036 | title = Who Is Ayn Rand?
5037 | publisher = Random House
5038 | location = New York
5039 | year = 1962
5040 }}
5041 * {{cite book
5042 | last = Britting | first = Jeff
5043 | authorlink = Jeff Britting
5044 | title = Ayn Rand
5045 | publisher = Overlook Duckworth
5046 | location = New York
5047 | year = 2005
5048 | id = ISBN 1-58567-406-0
5049 }}
5050 * {{cite book
5051 | last = Gladstein | first = Mimi Reisel
5052 | authorlink = Mimi Reisel Gladstein
5053 | title = The New Ayn Rand Companion
5054 | publisher = Greenwood Press
5055 | location = Westport, Connecticut
5056 | year = 1999
5057 | id = ISBN 0-313-30321-5
5058 }}
5059 * {{cite book
5060 | author = [[Mimi Reisel Gladstein|Gladstein, Mimi Reisel]] and [[Chris Matthew Sciabarra|Sciabarra, Chris Matthew]] (editors)
5061 | title = Feminist Interpretations of Ayn Rand
5062 | publisher = The Pennsylvania State University Press
5063 | location = University Park, Pennsylvania
5064 | year = 1999
5065 | id = ISBN 0-271-01830-5
5066 }}
5067 * {{cite book
5068 | last = Hamel | first = Virginia L.L.
5069 | authorlink = Virginia L.L. Hamel
5070 | title = In Defense of Ayn Rand
5071 | publisher = New Beacon
5072 | location = Brookline, Massachusetts
5073 | year = 1990
5074 }}
5075 * {{cite book
5076 | last = Mayhew | first = Robert
5077 | authorlink = Robert Mayhew
5078 | title = Ayn Rand and Song of Russia
5079 | publisher = Rowman &amp;amp; Littlefield
5080 | location = Lanham, Maryland
5081 | year = 2004
5082 | id = ISBN 0-8108-5276-4
5083 }}
5084 * {{cite book
5085 | last = Mayhew | first = Robert
5086 | authorlink = Robert Mayhew
5087 | title = Essays on Ayn Rand's Anthem
5088 | publisher = Rowman &amp;amp; Littlefield
5089 | location = Lanham, Maryland
5090 | year = 2005
5091 | id = ISBN 0-7391-1031-4
5092 }}
5093 * {{cite book
5094 | last = Mayhew | first = Robert
5095 | authorlink = Robert Mayhew
5096 | title = Essays on Ayn Rand's We the Living
5097 | publisher = Rowman &amp;amp; Littlefield
5098 | location = Lanham, Maryland
5099 | year = 2004
5100 | id = ISBN 0-7391-0698-8
5101 }}
5102 * {{cite book
5103 | last = Paxton | first = Michael
5104 | authorlink = Michael Paxton
5105 | title = Ayn Rand: A Sense of Life (The Companion Book)
5106 | publisher = Gibbs Smith
5107 | location = Layton, Utah
5108 | year = 1998
5109 | id = ISBN 0-87905-845-5
5110 }}
5111 * {{cite journal
5112 | last = Peikoff | first = Leonard
5113 | authorlink = Leonard Peikoff
5114 | title = My Thirty Years with Ayn Rand: An Intellectual Memoir
5115 | journal = The Objectivist Forum
5116 | volume = 8
5117 | issue = 3
5118 | year = 1987
5119 | pages = 1–16
5120 }}
5121 * {{cite book
5122 | last = Rothbard | first = Murray N.
5123 | authorlink = Murray N. Rothbard
5124 | title = The Sociology of the Ayn Rand Cult
5125 | url = http://www.lewrockwell.com/rothbard/rothbard23.html
5126 | publisher = Liberty
5127 | location = Port Townsend, Washington
5128 | year = 1987
5129 }}
5130 * {{cite book
5131 | last = Sures | first = Mary Ann
5132 | authorlink = Mary Ann Sures
5133 | coauthors = [[Charles Sures]]
5134 | title = Facets of Ayn Rand
5135 | publisher = Ayn Rand Institute Press
5136 | location = Los Angeles
5137 | year = 2001
5138 | id = ISBN 0-9625336-5-3
5139 }}
5140 * {{cite book
5141 | last = Sciabarra | first = Chris Matthew
5142 | authorlink = Chris Matthew Sciabarra
5143 | title = Ayn Rand: The Russian Radical
5144 | location = University Park, Pennsylvania
5145 | publisher = The Pennsylvania State University Press
5146 | year = 1995
5147 | id = ISBN 0-271-01440-7
5148 }}
5149 * {{cite journal
5150 | last = Sciabarra | first = Chris Matthew
5151 | authorlink = Chris Matthew Sciabarra
5152 | title = The Rand Transcript
5153 | url = http://www.nyu.edu/projects/sciabarra/essays/randt2.htm
5154 | journal = The Journal of Ayn Rand Studies
5155 | volume = 1
5156 | issue = 1
5157 | year = 1999
5158 | pages = 1–26
5159 }}
5160 * {{cite journal
5161 | last = Shermer | first = Michael
5162 | authorlink = Michael Shermer
5163 | url = http://www.2think.org/02_2_she.shtml
5164 | title = The Unlikeliest Cult In History
5165 | journal = Skeptic
5166 | volume = 2
5167 | issue = 2
5168 | year = 1993
5169 | pages = 74–81
5170 }}
5171 * {{cite book
5172 | author = [[William Thomas|Thomas, William]] (editor)
5173 | title = The Literary Art of Ayn Rand
5174 | location = Poughkeepsie, New York
5175 | publisher = The Objectivist Center
5176 | year = 2005
5177 | id = ISBN 1-577240-70-7
5178 }}
5179 * {{cite book
5180 | last = Tuccile | first = Jerome
5181 | authorlink = Jerome Tuccille
5182 | title = It Usually Begins with Ayn Rand
5183 | location = New York
5184 | publisher = Fox &amp; Wilkes
5185 | year = 1997
5186 | id = ISBN 0930073258
5187 }}
5188 * {{cite book
5189 | last = Valliant | first = James S.
5190 | authorlink = James S. Valliant
5191 | title = The Passion of Ayn Rand's Critics
5192 | location = Dallas
5193 | publisher = Durban House
5194 | year = 2005
5195 | id = ISBN 1-930654-67-1
5196 }}
5197 * {{cite book
5198 | last = Walker | first = Jeff
5199 | authorlink = Jeff Walker
5200 | title = The Ayn Rand Cult
5201 | location = Chicago
5202 | publisher = Open Court
5203 | year = 1999
5204 | id = ISBN 0-8126-9390-6
5205 }}
5206 &lt;/div&gt;
5207
5208 ==External links==
5209 {{Philosophy portal}}
5210 {{sisterlinks|Ayn Rand}}
5211
5212 '''General information'''
5213 * [http://www.noblesoul.com/orc/bio/biofaq.html Ayn Rand FAQ]
5214 * [http://www.aynrand.org/site/PageServer?pagename=about_ayn_rand_faq_index2 Frequently Asked Questions on Ayn Rand]
5215 * [http://www.utm.edu/research/iep/r/rand.htm &quot;Ayn Rand&quot; entry from the Internet Encyclopedia of Philosophy]
5216
5217 '''Organizations promoting Ayn Rand's philosophy'''
5218 * [http://www.aynrand.org/ The Ayn Rand Institute]
5219 * [http://www.ariwatch.com/ ARI Watch] &amp;mdash; Argues that some positions of the Ayn Rand Institute differ from those of Ayn Rand. &lt;!-- Note that this link is routinely removed as an act of vandalism. It will be routinely reverted, until the vandals give up. If you disagree, take it to Talk. --&gt;
5220 * [http://www.objectivistcenter.org/ The Objectivist Center]
5221 * [http://www.capitalismcenter.org/ The Center for the Advancement of Capitalism]
5222
5223 '''Articles'''
5224 * [http://www.lrb.co.uk/v27/n23/turn03_.html ''As Astonishing as Elvis'' by Jenny Turner] &amp;mdash; Essay review of ''Ayn Rand'' by Jeff Britting
5225 * [http://www.starshipaurora.com/aynrand100.html Ayn Rand 100 Tribute] &amp;mdash; includes reference to a tribute album, &quot;Concerto of Deliverance&quot;, inspired by Rand's words describing such music.
5226 * [http://chronicle.com/colloquy/99/rand/background.htm ''Ayn Rand Has Finally Caught the Attention of Scholars''] by Jeff Sharlet
5227 * [http://www.jeffcomp.com/faq/index.html FAQ - What's REALLY Wrong With Objectivism?]
5228 * [http://www.mclemee.com/id39.html ''The Heirs of Ayn Rand'' by Scott McLemee] &amp;mdash; An article published in [[Lingua Franca]] which covers the arc of her publishing career, while alive and posthomous, as well as the continuing scholarship.
5229 * [http://www.americanwriters.org/writers/rand.asp Rand featured on C-Span's &quot;American Writers&quot;] &amp;mdash; RealVideo discussions on Rand's writing
5230
5231 '''Articles critical of Ayn Rand'''
5232 * [http://world.std.com/~mhuben/critobj.html Criticisms of Objectivism (or Ayn Rand)] &amp;mdash; from of the Critiques of Libertarianism site
5233 * [http://www.noblesoul.com/orc/critics/ Criticisms of Objectivism] &amp;mdash; from the Objectivism Reference Center site
5234 * [http://www.johannhari.com/archive/article.php?id=756 &quot;Don't give to tsunami victims - the message of the American right's philosopher-queen&quot;] &amp;mdash; A critical profile from the London Independent
5235 * [http://www.lewrockwell.com/rothbard/rothbard23.html ''The Sociology of the Ayn Rand Cult'' by Murray Rothbard] &amp;mdash; written in 1972, this was the first piece of Rand revisionism from the [[libertarian]] standpoint.
5236 * [http://www.2think.org/02_2_she.shtml &quot;The Unlikeliest Cult in History&quot; by Michael Shermer]
5237 {{see also|Bibliography of work on Objectivism}}
5238
5239 '''Rand's associates'''
5240 * [http://www.barbarabranden.com/ Barbara Branden's website]
5241 * [http://www.nathanielbranden.com/ Nathaniel Branden's website]
5242 * [http://www.leonardpeikoff.com/ Leonard Peikoff's website]
5243
5244 '''Online groups and blogs'''
5245 * [http://www.theatlasphere.com/ The Atlasphere] &amp;mdash; For admirers of Rand's novels, includes member directory, dating service, columns, and news
5246 * [http://www.theaynrandforum.com The Ayn Rand Forum] &amp;mdash; Online forum for discussion of Ayn Rand and Objectivism.
5247 * [http://community.livejournal.com/aynrandforum Ayn Rand LiveJournal Community] &amp;mdash; A large LiveJournal Community for Ayn Rand.
5248 * [http://www.capmag.com/shownews.asp Dollars &amp; Crosses] &amp;mdash; Commentary from a pro-capitalist perspective.
5249 * [http://www.DrHurd.com/ Dr. Michael J. Hurd, psychologist] &amp;mdash; The Daily Dose of Reason: psychology, life coaching and comments on cultural/political topics from an Objectivist perspective &amp;mdash; also, The Living Resources Newsletter and Dr. Hurd's publications
5250 * [http://forums.4aynrandfans.com The Forum for Ayn Rand Fans]
5251 * [http://www.hblist.com Harry Binswanger List] &amp;mdash; E-mail-based discussion group
5252 * [http://www.aynrandstudies.com The Journal of Ayn Rand Studies] &amp;mdash; Contains abstracts of articles, author bios, links to several articles, and submission guidelines.
5253 * [http://www.objectivism.net Objectivism.net] &amp;mdash; Ayn Rand on CD-ROM, and links
5254 * [http://www.objectivismonline.net/ ObjectivismOnline.Net] &amp;mdash; Contains [http://forum.objectivismonline.net/ forums], blogs, essays, chat room, and a [http://wiki.objectivismonline.net wiki on Objectivism]
5255 * [http://www.objectivistblogs.com Objectivist Blogs] &amp;mdash; A list of Rand-influenced bloggers
5256 * [http://randex.org/ Randex] &amp;mdash; Index of online media references to Ayn Rand and Objectivism
5257 * [http://www.solopassion.com Sense of Life Objectivists] &amp;mdash; Online columns and discussion, by and for Objectivists - hosted by Lindsay Perigo
5258 * [http://www.TIADaily.com/ TIA Daily] &amp;mdash; Daily news and commentary from the Objectivist perspective by e-mail
5259
5260 '''Imagery'''
5261 * [http://www.yoyita.com/Ayn_Rand.html Portrait of Ayn Rand]
5262
5263 '''Rand's writing and speeches'''
5264 * [http://www.noblesoul.com/orc/texts/anthem/complete.html ''Anthem''] &amp;mdash; The complete text of the novel, which has fallen into the public domain
5265 * [http://www.ayn-rand.com/ayn-rand-atlas-shrugged.asp ''Atlas Shrugged'' ] &amp;mdash; Book outline
5266 * [http://www.ayn-rand.com/ayn-rand-fountainhead.asp ''The Fountainhead''] &amp;mdash; Book outline
5267 * [http://www.ayn-rand.com/ayn-rand-we-the-living.asp ''We The Living''] &amp;mdash; Book outline
5268 * [http://www.tracyfineart.com/usmc/philosophy_who_needs_it.htm &quot;Philosophy: Who Needs It?&quot;] &amp;mdash; Address To The Graduating Class Of The United States Military Academy at West Point, New York - March 6, 1974
5269 * [http://www.noblesoul.com/orc/texts/huac.html Rand's HUAC testimony] &amp;mdash; Transcript
5270 * [http://www.libertyhaven.org/bookstore/B00004LC7UAMUS169912.shtml ''We the Living''] &amp;mdash; Video outline
5271 * {{gutenberg author| id=Ayn+Rand | name=Ayn Rand}}
5272 * [http://lcweb2.loc.gov/cgi-bin/faidfrquery/r?faid/faidfr:@field(SOURCE+@band(rand+ayn)) Rand's papers at The Library of Congress]
5273
5274 [[Category:1905 births|Rand, Ayn]]
5275 [[Category:1982 deaths|Rand, Ayn]]
5276 [[Category:20th century philosophers|Rand, Ayn]]
5277 [[Category:American literary critics|Rand, Ayn]]
5278 [[Category:American novelists|Rand, Ayn]]
5279 [[Category:American philosophers|Rand, Ayn]]
5280 [[Category:Anti-communism|Rand, Ayn]]
5281 [[Category:Anti-Vietnam War|Rand, Ayn]]
5282 [[Category:Aristotelian philosophers|Rand, Ayn]]
5283 [[Category:Atheists|Rand, Ayn]]
5284 [[Category:Atheist philosophers|Rand, Ayn]]
5285 [[Category:Atheist thinkers and activists|Rand, Ayn]]
5286 [[Category:Cat lovers|Rand, Ayn]]
5287 [[Category:Epistemologists|Rand, Ayn]]
5288 [[Category:Jewish American writers|Rand, Ayn]]
5289 [[Category:Minarchists|Rand, Ayn]]
5290 [[Category:Moral philosophers|Rand, Ayn]]
5291 [[Category:Natives of Saint Petersburg|Rand, Ayn]]
5292 [[Category:Naturalized citizens of the United States|Rand, Ayn]]
5293 [[Category:Novelists|Rand, Ayn]]
5294 [[Category:Objectivists|Rand, Ayn]]
5295 [[Category:Philosophers|Rand, Ayn]]
5296 [[Category:Political philosophers|Rand, Ayn]]
5297 [[Category:Political writers|Rand, Ayn]]
5298 [[Category:Pro-choice celebrities|Rand, Ayn]]
5299 [[Category:Women writers|Rand, Ayn]]
5300
5301 [[cs:Ayn RandovÃĄ]]
5302 [[da:Ayn Rand]]
5303 [[de:Ayn Rand]]
5304 [[es:Ayn Rand]]
5305 [[fi:Ayn Rand]]
5306 [[fr:Ayn Rand]]
5307 [[he:איין ראנד]]
5308 [[hu:Ayn Rand]]
5309 [[is:Ayn Rand]]
5310 [[ja:ã‚ĸイãƒŗãƒģナãƒŗド]]
5311 [[nl:Ayn Rand]]
5312 [[nn:Ayn Rand]]
5313 [[no:Ayn Rand]]
5314 [[pl:Ayn Rand]]
5315 [[pt:Ayn Rand]]
5316 [[sk:Ayn RandovÃĄ]]
5317 [[sv:Ayn Rand]]
5318 [[zh:艾čŒĩÂˇå…°åžˇ]]</text>
5319 </revision>
5320 </page>
5321 <page>
5322 <title>Alain Connes</title>
5323 <id>340</id>
5324 <revision>
5325 <id>41123331</id>
5326 <timestamp>2006-02-25T04:54:20Z</timestamp>
5327 <contributor>
5328 <ip>221.226.98.5</ip>
5329 </contributor>
5330 <text xml:space="preserve">'''Alain Connes''' (born [[April 1]], [[1947]]) is a [[France|French]] [[mathematician]], currently Professor at the [[College de France]] ([[Paris]], [[France]]), [[IHES]] ([[Bures-sur-Yvette]], [[France]]) and [[Vanderbilt University]] ([[Nashville]], [[Tennessee]]). He is a specialist of [[Von Neumann algebra]]s and succeeded in completing the classification of [[factor]]s of these objects. Although his work in physics was not very convincing he tried to connect the planckian scales with what he called a &quot;2-brane&quot; Universe, model which was largely rejected by string theorists so far.
5331
5332 The remarkable links between this subject, the tools he and others devised to tackle the problem and other subjects in [[theoretical physics]], [[particle physics]], and [[differential geometry]], made him emphasize [[Noncommutative geometry]] (which is also the title of his major book to date).
5333
5334 He was awarded the [[Fields Medal]] in [[1982]], the [[Crafoord Prize]] in [[2001]] and the gold medal of the [[CNRS]] in 2004.
5335
5336 ==See also==
5337 * [[cyclic homology]]
5338 * [[factor (functional analysis)]]
5339 * [[Higgs boson]]
5340 * [[C*-algebra]]
5341 * [[M Theory]]
5342 * [[Groupoid]]
5343 * [[Jean Louis Loday]]
5344
5345 ==External links==
5346
5347 * [http://www.alainconnes.org/ Alain Connes Official Web Site]
5348 * {{MacTutor Biography|id=Connes}}
5349
5350
5351 {{Fields medalists}}
5352
5353
5354 [[Category:1947 births|Connes, Alain]]
5355 [[Category:Living people|Connes, Alain]]
5356 [[Category:French mathematicians|Connes, Alain]]
5357 [[Category:Alumni of the École Normale SupÊrieure|Connes, Alain]]
5358 [[Category:Members and associates of the US National Academy of Sciences|Connes, Alain]]
5359
5360 [[ar:ØŖŲ„اŲ† ŲƒŲ†]]
5361 [[de:Alain Connes]]
5362 [[es:Alain Connes]]
5363 [[fr:Alain Connes]]
5364 [[ja:ã‚ĸナãƒŗãƒģã‚ŗãƒŗヌ]]
5365 [[ko:ė•Œëž­ ėŊ˜ëŠ]]
5366 [[pl:Alain Connes]]
5367 [[zh:é˜ŋå…°Âˇå­”]]</text>
5368 </revision>
5369 </page>
5370 <page>
5371 <title>Applied Statistics</title>
5372 <id>341</id>
5373 <revision>
5374 <id>15899076</id>
5375 <timestamp>2002-02-25T15:51:15Z</timestamp>
5376 <contributor>
5377 <ip>Conversion script</ip>
5378 </contributor>
5379 <minor />
5380 <comment>Automated conversion</comment>
5381 <text xml:space="preserve">#REDIRECT [[Applied statistics]]
5382 </text>
5383 </revision>
5384 </page>
5385 <page>
5386 <title>Arithmetic Mean</title>
5387 <id>343</id>
5388 <revision>
5389 <id>15899077</id>
5390 <timestamp>2002-02-25T15:51:15Z</timestamp>
5391 <contributor>
5392 <ip>Conversion script</ip>
5393 </contributor>
5394 <minor />
5395 <comment>Automated conversion</comment>
5396 <text xml:space="preserve">#REDIRECT [[Arithmetic mean]]
5397 </text>
5398 </revision>
5399 </page>
5400 <page>
5401 <title>Allan Dwan</title>
5402 <id>344</id>
5403 <revision>
5404 <id>40346482</id>
5405 <timestamp>2006-02-19T23:33:42Z</timestamp>
5406 <contributor>
5407 <username>Rich Farmbrough</username>
5408 <id>82835</id>
5409 </contributor>
5410 <minor />
5411 <text xml:space="preserve">'''Allan Dwan''' ([[April 3]], [[1885 in film|1885]] &amp;ndash; [[December 21]], [[1981 in film|1981]]) was a pioneering [[Canada|Canadian]]-born American [[film|motion picture]] [[film director|director]], producer and screenwriter.
5412
5413 Born '''Joseph Aloysius Dwan''' in [[Toronto, Ontario]], [[Canada]], his family moved to the [[United States]] when he was eleven years of age. At university, he trained as an engineer and began working for a lighting company in [[Chicago, Illinois]]. However, he had a strong interest in the fledgling motion picture industry and when [[Essanay Studios]] offered him the opportunity to become a scriptwriter, he took the job. At that time, some of the [[East Coast of the United States|East Coast]] movie makers began to spend winters in [[California]] where the climate allowed them to continue productions requiring warm weather. Soon, a number of movie companies worked there year-round and, in [[1911]], Dwan began working part time in [[Hollywood, California|Hollywood]]. While still in New York, in [[1917 in film|1917]] he was the founding president of the East Coast chapter of the [[Motion Picture Directors Association]].
5414
5415 Allan Dwan became a true innovator in the motion picture industry. After making a series of westerns and comedies, he directed fellow Canadian, [[Mary Pickford]] in several very successful movies as well as her husband, [[Douglas Fairbanks]], notably in the acclaimed [[1922 in film|1922]] ''[[Robin Hood]]''.
5416
5417 Following the introduction of the [[sound film|talkies]], in [[1937 in film|1937]] he directed child-star [[Shirley Temple]] in ''[[Heidi]]'' and ''Rebecca of Sunnybrook Farm'' the following year.
5418
5419 Over his long and successful career spanning over fifty years, he directed over 400 motion pictures, many of them highly acclaimed, such as the [[1949 in film|1949]] box office smash, ''[[The Sands of Iwo Jima]]''. His last movie was in [[1961]].
5420
5421 Dwan is one of the directors who spanned the silent to sound era. Most of the silent movies he directed are lost due to poor preservation. Little historical writing has been devoted to Dwan, but some believe that he will be the last &quot;discovered&quot; great director from the [[Classic Hollywood Era]].
5422
5423 He died in Los Angeles at the age of ninety-six, and is interred in the [[San Fernando Mission Cemetery]], [[Mission Hills, California]].
5424
5425 Allan Dwan has a star on the [[Hollywood Walk of Fame]] at 6263 Hollywood Boulevard in [[Hollywood, California|Hollywood]].
5426
5427 ==Selected films==
5428 As director:
5429 *''[[Manhattan Madness]]'' (1916)
5430 *''[[Fairbanks Fine Arts]]'' (1916)
5431 *''[[Fairbanks Fragments]]'' (1916-1918) also screenwriter
5432 *''[[Robin Hood (1922 film)|Robin Hood]]'' (1922)
5433 *''The Iron Mask'' (1929)
5434 *''[[Heidi]]'' (1937)
5435 *''[[Rebecca of Sunnybrook Farm/The Little Colonel]]'' (1938)
5436 *''Rebecca of Sunnybrook Farm'' (1938)
5437 *''[[The Three Musketeers (film)|The Three Musketeers]]'' (1939)
5438 *''The Gorilla'' (1939)
5439 *''[[Young People]]'' (1940)
5440 *''[[Look Who's Laughing]]'' (1941) also producer
5441 *''[[Friendly Enemies]]'' (1942)
5442 *''Around the World'' (1943) also producer
5443 *''[[Up in Mabel's Room]]'' (1944)
5444 *''[[Abroad With Two Yanks]]'' (1944)
5445 *''[[Getting Gertie's Garter]]'' (1945) also screenwriter
5446 *''[[Brewster's Millions]]'' (1945)
5447 *''Driftwood'' (1947)
5448 *''Calendar Girl'' (1947)
5449 *''[[Northwest Outpost]]'' (1947) also associate producer
5450 *''[[Sands of Iwo Jima]]'' (1949)
5451 *''[[Montana Belle]]'' (1952)
5452 *''[[Silver Lode (1954 film)|Silver Lode]]'' (1954)
5453 *''[[Passion (1954 movie)|Passion]]'' (1954)
5454 *''[[Cattle Queen of Montana]]'' (1954)
5455 *''[[Tennessee's Partner]]'' (1955)
5456 *''[[Pearl of the South Pacific]]'' (1955)
5457 *''[[Escape to Burma]]'' (1955)
5458 *''[[Slightly Scarlet]]'' (1956)
5459 *''[[The Restless Breed]]'' (1957)
5460 *''[[Enchanted Island]]'' (1958)
5461
5462
5463 See also: [[Canadian pioneers in early Hollywood]]
5464
5465 ==External links==
5466 *{{imdb name|id=0245385|name= Allan Dwan}}
5467
5468 [[Category:1885 births|Dwan, Allan]]
5469 [[Category:1981 deaths|Dwan, Allan]]
5470 [[Category:Roman Catholics|Dwan, Allan]]
5471 [[Category:American film directors|Dwan, Allan]]
5472 [[Category:American film producers|Dwan, Allan]]
5473 [[Category:American screenwriters|Dwan, Allan]]
5474 [[Category:Hollywood Walk of Fame|Dwan, Allan]]
5475 [[Category:Ontario writers|Dwan, Allan]]
5476 [[Category:Torontonians|Dwan, Allan]]
5477
5478 [[de:Allan Dwan]]</text>
5479 </revision>
5480 </page>
5481 <page>
5482 <title>Algeria/Background</title>
5483 <id>345</id>
5484 <revision>
5485 <id>15899079</id>
5486 <timestamp>2004-03-15T17:30:39Z</timestamp>
5487 <contributor>
5488 <username>Anthony DiPierro</username>
5489 <id>34793</id>
5490 </contributor>
5491 <text xml:space="preserve">#REDIRECT [[History of Algeria]]</text>
5492 </revision>
5493 </page>
5494 <page>
5495 <title>Algeria/Geography</title>
5496 <id>346</id>
5497 <revision>
5498 <id>15899080</id>
5499 <timestamp>2002-02-25T15:43:11Z</timestamp>
5500 <contributor>
5501 <ip>128.227.230.147</ip>
5502 </contributor>
5503 <comment>*</comment>
5504 <text xml:space="preserve">#REDIRECT [[Geography of Algeria]]</text>
5505 </revision>
5506 </page>
5507 <page>
5508 <title>Algeria/People</title>
5509 <id>347</id>
5510 <revision>
5511 <id>15899081</id>
5512 <timestamp>2002-08-20T15:34:45Z</timestamp>
5513 <contributor>
5514 <username>Koyaanis Qatsi</username>
5515 <id>90</id>
5516 </contributor>
5517 <text xml:space="preserve">#REDIRECT [[Demographics of Algeria]]</text>
5518 </revision>
5519 </page>
5520 <page>
5521 <title>Algeria/Government</title>
5522 <id>348</id>
5523 <revision>
5524 <id>15899082</id>
5525 <timestamp>2002-08-22T22:05:03Z</timestamp>
5526 <contributor>
5527 <username>Koyaanis Qatsi</username>
5528 <id>90</id>
5529 </contributor>
5530 <comment>more removals</comment>
5531 <text xml:space="preserve">#REDIRECT [[Politics of Algeria]]</text>
5532 </revision>
5533 </page>
5534 <page>
5535 <title>Economy of Algeria</title>
5536 <id>349</id>
5537 <revision>
5538 <id>40484200</id>
5539 <timestamp>2006-02-20T22:28:44Z</timestamp>
5540 <contributor>
5541 <username>Rich Farmbrough</username>
5542 <id>82835</id>
5543 </contributor>
5544 <minor />
5545 <text xml:space="preserve">{{update}}
5546 {{cleanup-date|December 2005}}
5547 {{Economy of Algeria table}}
5548 In the '''economy of Algeria''' the [[hydrocarbons]] sector is the backbone, accounting for roughly 52% of budget revenues, 25% of [[Gross domestic product|GDP]], and over 95% of export earnings. [[Algeria]] has the fifth-largest reserves of [[natural gas]] in the world and is the second largest gas exporter; it ranks fourteenth for oil reserves. Algiers' efforts to reform one of the most centrally planned economies in the Arab world stalled in [[1992]] as the country became embroiled in political turmoil.
5549
5550 Burdened with a heavy foreign debt, Algiers concluded a one-year standby arrangement with the [[International Monetary Fund]] in April [[1994]] and the following year signed onto a three-year extended fund facility which ended [[30 April]], [[1998]]. Some progress on economic reform, [[Paris Club]] [[debt rescheduling]]s in [[1995]] and [[1996]], and oil and gas sector expansion contributed to a recovery in growth since 1995, reducing inflation to approximately 1% and narrowing the budget deficit. Algeria's economy has grown at about 4% annually since [[1999]]. The country's foreign debt has fallen from a high of $28 billion in [[1999]] to its current level of $24 billion. The spike in oil prices in [[1999]]-[[2000]] and the government's tight fiscal policy, as well as a large increase in the trade surplus and the near tripling of foreign exchange reserves has helped the country's finances. However, an ongoing drought, the after effects of the [[November 10]], [[2001]] floods and an uncertain oil market make prospects for [[2002]]-[[2003|03]] more problematic. The government pledges to continue its efforts to diversify the economy by attracting foreign and domestic investment outside the energy sector. However, it has thus far had little success in reducing high unemployment, officially estimated at 30% and improving living standards.
5551
5552 [[President Bouteflika]] has announced sweeping economic reforms, which, if implemented, will significantly restructure the economy. Still, the economy remains heavily dependent on volatile oil and gas revenues. The government has continued efforts to diversify the economy by attracting foreign and domestic investment outside the energy sector, but has had little success in reducing high unemployment and improving living standards. Other priority areas include banking reform, improving the investment environment, and reducing government bureaucracy.
5553
5554 The government has announced plans to sell off state enterprises: sales of a national cement factory and steel plant have been completed and other industries are up for offer. In 2001, Algeria signed an Association Agreement with the [[European Union]]; it has started accession negotiations for entry into the [[World Trade Organization]].
5555
5556 ===[[Agriculture]]===
5557
5558 Since Roman times Algeria has been noted for the fertility of its soil. About a quarter of the inhabitants are engaged in agricultural pursuits. More than 7,500,000 acres (30,000 km&amp;sup2;) are devoted to the cultivation of [[cereal grain]]s. The Tell is the grain-growing land. During the time of [[France|French]] rule its productivity was increased substantially by the sinking of [[Artesian aquifer|artesian well]]s in districts which only required water to make them fertile. Of the crops raised, [[wheat]], [[barley]] and [[oat]]s are the principal cereals. A great variety of [[vegetable]]s and of [[fruit]]s, especially [[citrus]] products, is exported.
5559
5560 A considerable amount of [[cotton]] was grown at the time of the [[United States]]' [[American Civil War|Civil War]], but the industry declined afterwards. In the early years of the 20th century efforts to extend the cultivation of the plant were renewed. A small amount of [[cotton]] is also grown in the southern oases. Large quantities of [[crin vegetal]] (vegetable horse-hair) an excellent fibre, are made from the leaves of the dwarf palm. The [[olive]] (both for its fruit and [[Petroleum]]) and [[tobacco]] are cultivated with great success.
5561
5562 Algeria also exports [[fig]]s, [[date (fruit)|date]]s, [[esparto]] grass, and [[cork (material)|cork]].
5563
5564 ====Wine Production====
5565
5566 Throughout Algeria the soil favours the growth of vines. The country, in the words of an expert sent to report on the subject by the French government,
5567 :&quot;can produce an infinite variety of wines suitable to every constitution and to every caprice of taste.&quot;
5568
5569 The growing of vines was undertaken early by the colonists, but it was not until vineyards in [[France]] were attacked by [[phylloxera]] that the export of [[wine]] from Algeria became significant. In [[1883]], despite precautionary measures, Algerian [[vineyard]]s were also attacked but in the meantime the quality of their wines had been proved. In 1850 less than 2000 acres (8 km&amp;sup2;) were devoted to the grape, but in 1878 this had increased to over 42,000 acres (170 km&amp;sup2;), which yielded 7,436,000 gallons (28,000 m&amp;sup3;) of wine. Despite bad seasons and ravages of insects, cultivation extended, and in 1895 the vineyards covered 300,000 acres (1,200 km&amp;sup2;), the produce being 88,000,000 gallons (333,000 m&amp;sup3;). The area of cultivation in 1905 exceeded 400,000 acres (1,600 km&amp;sup2;), and in that year the amount of wine produced was 157,000,000 gallons (594,000 m&amp;sup3;). By that time the limits of profitable production had been reached in many parts of the country. Practically the only foreign market for Algerian wine is France, which in 1905 imported about 110,000,000 gallons (416,000 m&amp;sup3;).
5570
5571 ===Fishing===
5572
5573 Fishing is a flourishing but minor industry. Fish caught are principally [[sardine]]s, [[bonito]], [[smelt]] and [[sprat]]s. Fresh fish are exported to [[France]], dried and preserved fish to [[Spain]] and [[Italy]]. Coral [[fishery|fisheries]] are found along the coast from [[Bona]] to [[Tunis]].
5574
5575 ===Minerals===
5576
5577 Algeria is rich in minerals; the country has many [[iron]], [[lead]] and [[zinc]], [[copper]], [[calamine]], [[antimony]] and [[Mercury (element)|mercury]] mines. The most productive are those of iron and zinc. Lignite is found in Algiers; immense [[phosphate]] beds were discovered near [[Tebessa]] in 1891, yielding 313,500 tons in 1905. Phosphate beds are also worked near [[Setif]], [[Guelma]] and [[Ain Beida]]. There are more than 300 quarries which produce, amongst other stones, [[onyx]] and beautiful white and red [[marble]]s. Algerian onyx from Ain Tekbalet was used by the Romans, and many ancient quarries have been found near [[Kleber]], some being certainly those from which the long-lost Numidian marbles were taken. [[Salt]] is collected on the margins of the chotts.
5578
5579 ==Foreign trade==
5580
5581 Under French administration the commerce of Algeria developed greatly: the total imports and exports at the time of the French occupation (1830) did not exceed ÂŖ 175,000. In 1850 the figures had reached ÂŖ 5,000,000; in 1868, ÂŖ 12,000,000; in 1880, ÂŖ 17,000,000; and in 1890, ÂŖ 20,000,000. From this point progress was slower and the figures varied considerably year by year. In 1905 the total value of the foreign trade was ÂŖ 24,500,000. About five-sixths of the trade is with or via France, into which country several Algerian goods have been admitted duty-free since 1851, and all since 1867. French goods, except [[sugar]], have been admitted into Algeria without payment of duty since 1835. After the increase, in 1892, of the French minimum tariff, which applied to Algeria also, foreign trade greatly diminished.
5582
5583 By far Algeria's most significant exports, financially, are [[petroleum]] and [[natural gas]]. The reserves are mostly in the Eastern [[Sahara]]; the Algerian government curbed the exports in the 1980s to slow depletion; exports increased again somewhat in the [[1990|1990s]]. Other significant exports are [[domestic sheep|sheep]], [[ox]]en, and [[horse]]s; animal products, such as [[wool]] and skins; [[wine]], cereals ([[rye]], [[barley]], [[oat]]s), [[vegetable]]s, [[fruit]]s (chiefly [[fig]]s and [[grape]]s for the table) and [[seed]]s, [[esparto]] grass, oils and vegetable extracts (chiefly [[olive oil]]), [[iron]] ore, [[zinc]], natural [[phosphate]]s, [[timber]], [[Cork (material)|cork]], [[crin vegetal]] and [[tobacco]]. The import of [[wool]] exceeds the export. [[Sugar]], [[coffee]], machinery, metal work of all kinds, clothing and pottery are largely imported. Of these by far the greater part comes from France. The [[United Kingdom|British]] imports consist chiefly of [[coal]], cotton fabrics and machinery.
5584
5585 ===Exports===
5586
5587 Algeria trades most extensively with France and [[Italy]], in terms of both imports and exports, but also trades with the United States and [[Spain]].
5588
5589 ===Statistics===
5590
5591 ==Reference==
5592
5593 *[http://www.cia.gov/cia/publications/factbook/geos/ag.html CIA World Factbook]
5594
5595 :''See also :'' [[Algeria]]
5596
5597 {{OPEC}}
5598
5599 [[Category:Organization of the Petroleum Exporting Countries|Alegeria]]
5600 [[Category:Economies by country|Algeria]]
5601 [[Category:Economy of Algeria| ]]
5602 [[Category:African Union member economies|Algeria]]
5603 [[fr:Économie de l'AlgÊrie]]
5604 [[pt:Economia da ArgÊlia]]
5605 [[ru:Đ­ĐēĐžĐŊĐžĐŧиĐēĐ° АĐģĐļиŅ€Đ°]]</text>
5606 </revision>
5607 </page>
5608 <page>
5609 <title>Algeria/Communications</title>
5610 <id>350</id>
5611 <revision>
5612 <id>15899084</id>
5613 <timestamp>2002-06-16T16:23:09Z</timestamp>
5614 <contributor>
5615 <username>Danny</username>
5616 <id>584</id>
5617 </contributor>
5618 <comment>*</comment>
5619 <text xml:space="preserve">#REDIRECT [[Communications in Algeria]]</text>
5620 </revision>
5621 </page>
5622 <page>
5623 <title>Algeria/Transportation</title>
5624 <id>351</id>
5625 <revision>
5626 <id>39213634</id>
5627 <timestamp>2006-02-11T15:33:09Z</timestamp>
5628 <contributor>
5629 <username>Eskimbot</username>
5630 <id>477460</id>
5631 </contributor>
5632 <minor />
5633 <comment>Robot: Fixing double redirect</comment>
5634 <text xml:space="preserve">#REDIRECT [[Transport in Algeria]]</text>
5635 </revision>
5636 </page>
5637 <page>
5638 <title>Algeria/Military</title>
5639 <id>352</id>
5640 <revision>
5641 <id>15899086</id>
5642 <timestamp>2005-03-27T03:27:25Z</timestamp>
5643 <contributor>
5644 <username>Srs</username>
5645 <id>209316</id>
5646 </contributor>
5647 <text xml:space="preserve">#REDIRECT [[Military of Algeria]]</text>
5648 </revision>
5649 </page>
5650 <page>
5651 <title>Algeria/Transnational Issues</title>
5652 <id>353</id>
5653 <revision>
5654 <id>15899087</id>
5655 <timestamp>2002-06-16T16:27:14Z</timestamp>
5656 <contributor>
5657 <username>Danny</username>
5658 <id>584</id>
5659 </contributor>
5660 <comment>*</comment>
5661 <text xml:space="preserve">#REDIRECT [[Transnational issues of Algeria]]</text>
5662 </revision>
5663 </page>
5664 <page>
5665 <title>Algeria/Archaeology</title>
5666 <id>356</id>
5667 <revision>
5668 <id>15899089</id>
5669 <timestamp>2002-02-25T15:43:11Z</timestamp>
5670 <contributor>
5671 <ip>128.227.230.147</ip>
5672 </contributor>
5673 <comment>*</comment>
5674 <text xml:space="preserve">#REDIRECT [[Archeology of Algeria]]</text>
5675 </revision>
5676 </page>
5677 <page>
5678 <title>Algeria/History</title>
5679 <id>357</id>
5680 <revision>
5681 <id>15899090</id>
5682 <timestamp>2002-02-25T15:43:11Z</timestamp>
5683 <contributor>
5684 <ip>Conversion script</ip>
5685 </contributor>
5686 <minor />
5687 <comment>Automated conversion</comment>
5688 <text xml:space="preserve">#REDIRECT [[History of Algeria]]
5689
5690 :''See also :'' [[Algeria]]</text>
5691 </revision>
5692 </page>
5693 <page>
5694 <title>Algeria</title>
5695 <id>358</id>
5696 <restrictions>edit=sysop:move=sysop</restrictions>
5697 <revision>
5698 <id>40426750</id>
5699 <timestamp>2006-02-20T13:34:27Z</timestamp>
5700 <contributor>
5701 <username>Splash</username>
5702 <id>285145</id>
5703 </contributor>
5704 <comment>do not use semi in an editorial dispute, even if one side is anons, per [[WP:SEMI]]</comment>
5705 <text xml:space="preserve">{{protected}}
5706 {{Infobox_Country|
5707 native_name = اŲ„ØŦŲ…Ų‡ŲˆØąŲŠØŠ اŲ„ØŦØ˛Ø§ØĻØąŲŠØŠ اŲ„دŲŠŲ…Ų‚ØąØ§ØˇŲŠØŠ اŲ„شؚبŲŠØŠ&lt;br&gt;Al-JumhÅĢrÄĢyah al-Jazā’irÄĢyah&lt;br&gt;ad-DÄĢmuqrāÅŖÄĢyah ash-Sha’bÄĢyah|
5708 common_name = Algeria |
5709 image_flag = Flag of Algeria.svg |
5710 image_coat = Algeria coa.png |
5711 image_map = LocationAlgeria.png |
5712 national_motto = (translation): The Revolution by the people and for the people |
5713 national_anthem = ''[[Kassaman|Kassaman &lt;small&gt;(Qasaman Bin-Nāzilāt Il-Māá¸Ĩiqāt)]]''&lt;br&gt;(&lt;small&gt;[[Arabic language|Arabic]]: ''[[Kassaman|We Swear By The Lightning That Destroys]]'') |
5714 official_languages = [[Arabic language|Arabic]] |
5715 capital = [[Algiers]] |
5716 latd=36|latm=42|latNS=N|longd=3|longm=13|longEW=E|
5717 largest_city = [[Algiers]] |
5718 government_type= Democratic [[Republic]] |
5719 leader_titles = [[President of Algeria|President]]&lt;br&gt;[[Prime Minister of Algeria|Prime Minister]] |
5720 leader_names = [[Abdelaziz Bouteflika]]&lt;br&gt;[[Ahmed Ouyahia]] |
5721 area_rank = 11th |
5722 area_magnitude = 1 E12 |
5723 area = 2,381,740 |
5724 percent_water = negligible |
5725 population_estimate = 32,531,853 |
5726 population_estimate_year = 2005 |
5727 population_estimate_rank = 36th |
5728 population_census= |
5729 population_census_year= |
5730 population_density = 13 |
5731 population_density_rank= 168th|
5732 GDP_PPP_year= 2004 |
5733 GDP_PPP = $217,224,000,000 |
5734 GDP_PPP_rank = 38th |
5735 GDP_PPP_per_capita = $6,799 |
5736 GDP_PPP_per_capita_rank = 85th |
5737 HDI_year = 2003 |
5738 HDI = 0.722 |
5739 HDI_rank = 103rd |
5740 HDI_category = &lt;font color=&quot;#FFCC00&quot;&gt;medium&lt;/font&gt; |
5741 sovereignty_type = [[Independence]]|
5742 established_events = Declared |
5743 established_dates = From [[France]]&lt;br&gt;[[July 5]], [[1962]] |
5744 currency = [[Algerian dinar]] |
5745 currency_code = DA |
5746 time_zone= [[Central European Time|CET]] |
5747 utc_offset= +1 |
5748 time_zone_DST= [[Central European Time|CET]] |
5749 utc_offset_DST= +1 does not observe |
5750 cctld= [[.dz]] |
5751 calling_code = 213 |
5752 footnotes =
5753 }}
5754 The '''People's Democratic Republic of Algeria''' ([[Arabic language|Arabic]]: '''اŲ„ØŦŲ…Ų‡ŲˆØąŲŠØŠ اŲ„ØŦØ˛Ø§ØĻØąŲŠØŠ اŲ„دŲŠŲ…Ų‚ØąØ§ØˇŲŠØŠ اŲ„شؚبŲŠØŠ''') , or '''Algeria''' ([[Arabic language|Arabic]]: '''اŲ„ØŦØ˛Ø§ØĻØą'''), is a presidential state in [[north Africa]], and the second largest country on the [[Africa]]n continent, [[Sudan]] being the largest. It is bordered by [[Tunisia]] in the northeast, [[Libya]] in the east, [[Niger]] in the southeast, [[Mali]] and [[Mauritania]] in the southwest, and [[Morocco]] as well as a few kilometers of its annexed territory, [[Western Sahara]], in the west. [[Constitution of Algeria|Constitutionally]], it is defined as an [[Islam]]ic, [[Arab]], and [[Amazigh]] (Berber) country. The name Algeria is derived from the name of the city of [[Algiers]], from the [[Arabic language|Arabic]] word ''al-jazā’ir'', which translates as ''the islands'', referring to the four islands which lay off that city's coast until becoming part of the mainland in 1525.
5755
5756
5757
5758 ==History==
5759 {{main|History of Algeria}}
5760
5761 Algeria has been inhabited by [[Berber]]s (or Amazigh) since at least [[10,000 BC]]. From [[1000 BC]] on, the [[Carthage|Carthaginians]] became an influence on them, establishing settlements along the coast. Berber kingdoms began to emerge, most notably [[Numidia]], and seized the opportunity offered by the Punic Wars to become independent of Carthage, only to be taken over soon after by the [[Roman Republic]] in 200 BC. As the western [[Roman Empire]] collapsed, the Berbers became independent again in much of the area, while the [[Vandals]] took over parts until later expelled by the generals of the [[Byzantine Emperor]], [[Justinian I]]. The [[Byzantine Empire]] then retained a precarious grip on the east of the country until the coming of the [[Arab]]s in the [[8th century]].
5762
5763 [[Image:Roman Arch of Trajan at Thamugadi (Timgad), Algeria 04966r.jpg|thumb|left|Roman arch of Trajan at Thamugadi (Timgad), Algeria]]
5764 After some decades of fierce resistance under leaders such as [[Kusayla]] and [[Kahina]], the Berbers adopted [[Islam]] ''en masse'', but almost immediately expelled the [[Caliphate]] from Algeria, establishing an [[Ibadi]] state under the [[Rustamid]]s. Having converted the [[Kutama]] of [[Kabylie]] to its cause, the [[Shia]] [[Fatimid]]s overthrew the Rustamids, and conquered Egypt. They left Algeria and Tunisia to their [[Zirid]] vassals; when the latter rebelled and adopted [[Sunni]]sm, they sent in a populous [[Arab]] tribe, the [[Banu Hilal]], to weaken them, thus incidentally initiating the [[Arabization]] of the countryside. The [[Almoravid]]s and [[Almohad]]s, Berber dynasties from the west founded by religious reformers, brought a period of relative peace and development; however, with the Almohads' collapse, Algeria became a battleground for their three [[successor state]]s, the Algerian [[Zayyanid]]s, Tunisian [[Hafsid]]s, and Moroccan [[Merinid]]s. In the fifteenth and sixteenth centuries, [[Spain]] started attacking and taking over many coastal cities, prompting some to seek help from the [[Ottoman Empire]].
5765
5766 Algeria was brought into the Ottoman Empire by [[Khair ad Din|Khair ad-Din]] and his brother [[Aruj]], who established Algeria's modern boundaries in the north and made its coast a base for the [[Privateer|corsairs]]; their privateering peaked in Algiers in the 1600s. Piracy on American vessels in the Mediterranean resulted in the [[First Barbary War|First]] and [[Second Barbary War]] with the [[United States]]. On the pretext of a slight to their consul, the [[France|French]] invaded Algiers in 1830; however, intense resistance from such personalities as [[Emir Abdelkader]], [[Ahmed Bey]] and [[Lalla Fatma N'Soumer|Fatma N'Soumer]] made for a slow conquest of Algeria, not technically completed until the early 1900s when the last [[Tuareg]] were conquered.
5767 [[Image:Constantine Algerien 002.jpg|thumb|left|Constantine, Algeria 1840]]
5768
5769 Meanwhile, however, the French suppressed slavery and made Algeria an integral part of France, a status that would end only with the collapse of the [[French Fourth Republic|Fourth Republic]]. Tens of thousands of settlers from France, Italy, Spain, and Malta moved in to farm the Algerian coastal plain and occupy the most prized parts of Algeria's cities, benefiting from the French government's confiscation of communally held land. People of European descent in Algeria (the so-called ''[[pied-noir|pieds-noirs]]''), as well as the native Algerian Jews, were full French citizens starting from the end of the 19th century; by contrast, the vast majority of Muslim Algerians (even veterans of the French army) remained outside of French law, possessing neither French citizenship nor the right to vote. Algeria's social fabric was stretched to breaking point during this period: literacy dropped massively, while land confiscation uprooted much of the population.
5770
5771 In 1954, the [[National Liberation Front (Algeria)|National Liberation Front]] (FLN) launched the [[guerrilla warfare|guerrilla]] [[Algerian War of Independence]]; after nearly a decade of urban and rural warfare, they succeeded in pushing France out in 1962. Most of the 1,025,000 ''[[pied-noir|pieds-noirs]]'', as well as 91,000 ''[[harki]]s'' (pro-French Muslim Algerians serving in the French Army), together forming about 10% of the population of Algeria in 1962, fled Algeria for France in just a few months in the middle of that year.
5772
5773 [[Image:TheBattleofAlgiers.png|thumb|right|''[[The Battle of Algiers]]'' is a movie about the [[Algerian War of Independence]].]]
5774 Algeria's first president, the FLN leader [[Ahmed Ben Bella]], was overthrown by his former ally and defense minister, [[Houari BoumÊdiènne]] in 1965. Under Ben Bella the government had already become increasingly socialist and dictatorial, and this trend continued throughout Boumedienne's government; however, Boumedienne relied much more heavily on the army, and reduced the sole legal party to a merely symbolic role. Agriculture was collectivised, and a massive industrialization drive launched. Oil extraction facilities were nationalized and this increased the state's wealth, especially after the 1973 oil crisis, but the Algerian economy became increasingly dependent on oil, bringing hardship when the price collapsed in the 1980s. In foreign policy Algeria was a member and leader of the 'non-aligned' nations. A dispute with Morocco over the [[Western Sahara]] nearly led to war. Dissent was rarely tolerated, and the state's control over the media and the outlawing of political parties other than the FLN was cemented in the repressive constitution of 1976. BoumÊdienne died in 1978, but the rule of his successor, [[Chadli Bendjedid]], was little more open. The state took on a strongly bureaucratic character and corruption was widespread.
5775
5776 The modernization drive brought considerable demographic changes to Algeria. Village traditions underwent significant change as urbanization increased, new industries emerged, agriculture was substantially reduced, and education, a rarity in colonial times, was extended nationwide, raising the literacy rate from less than 10% to over 60%. Improvements in healthcare led to a dramatic increase in the birthrate (7-8 children per mother) which had two consequences: a very youthful population, and a housing crisis. The new generation struggled to relate to the cultural obsession with the war years and two conflicting protest movements developed: left-wingers, including Berber identity movements, and Islamic 'intÊgristes'. Both protested against one-party rule but also clashed with each other in universities and on the streets during the 1980s. Mass protests from both camps in autumn 1988 forced Benjedid to concede the end of one-party rule, and elections were announced for 1991.
5777
5778 In December 1991, the [[Islamic Salvation Front]] won the [[Algerian National Assembly elections, 1991|first round]] of the country's first multiparty elections. The military then canceled the second round, forced then-president Bendjedid to resign, and banned the Islamic Salvation Front. The ensuing conflict engulfed Algeria in the violent [[Algerian Civil War]]. More than 100,000 people were killed, often in unprovoked massacres of civilians. The question of who was responsible for these massacres remains controversial among academic observers; many were claimed by the [[Armed Islamic Group]]. After 1998, the war waned, and by 2002 the main guerrilla groups had either been destroyed or surrendered, taking advantage of an amnesty program, though sporadic fighting continued in some areas. Elections resumed in 1995, and in 1999, after a series of short-term leaders representing the military, [[Abdelaziz Bouteflika]], the current president, was elected. The issue of Berber language and identity increased in significance, particularly after the extensive [[Kabyle]] protests of 2001 and the near-total boycott of local elections in [[Kabylie]]; the government responded with concessions including naming of [[Tamazight]] (Berber) as a national language and teaching it in schools.
5779
5780 ==Politics==
5781 {{main|Politics of Algeria}}
5782
5783 The head of state is the [[President of Algeria|President of the republic]], who is elected to a 5-year term, renewable once. Algeria has [[universal suffrage]]. The President is the head of the Council of Ministers and of the High Security Council. He appoints the [[Prime Minister of Algeria|Prime Minister]] who is also the head of government. The Prime Minister appoints the Council of Ministers.
5784
5785 The Algerian [[parliament]] is bicameral, consisting of a lower chamber, the National People's Assembly (APN), with 380 members and an upper chamber, the Council of Nation, with 144 members. The APN is elected every 5 years.
5786
5787 Throughout the 1960's, Algeria supported many independence movements in sub-Saharan Africa, and was a leader in the [[Non-Aligned Movement]]. While it shares much of its history and cultural heritage with neighbouring [[Morocco]], the two countries have had somewhat hostile relations with each other since Algeria's independence. This is due to two reasons: Morocco's [[Greater Morocco|claim to portions of western Algeria]] (which led to the [[Sand war]] in 1963), and Algeria's support for the [[Polisario]], an armed group of [[Sahrawi]] [[refugee]]s seeking [[independence]] for the Moroccan-ruled [[Western Sahara]], which it hosts within its borders in the city of [[Tindouf]]. Tensions between Algeria and Morocco, as well as issues relating to the [[Algerian Civil War]], have put great obstacles in the way of tightening the [[Maghreb Arab Union]], nominally established in 1989 but with little practical weight, with its coastal neighbors.
5788
5789 ==Provinces==
5790 {{main|Provinces of Algeria}}
5791
5792 Algeria is divided into 48 ''[[Wilayah|wilayas]]'' ([[provinces]]):-
5793 {|
5794 |-
5795 |
5796 *&lt;small&gt;1&lt;/small&gt; [[Adrar (Algerian province)|Adrar]]
5797 *&lt;small&gt;2&lt;/small&gt; [[Aïn Defla]]
5798 *&lt;small&gt;3&lt;/small&gt; [[Aïn TÊmouchent]]
5799 *&lt;small&gt;4&lt;/small&gt; [[Algiers|Alger]]
5800 *&lt;small&gt;5&lt;/small&gt; [[Annaba (province)|Annaba]]
5801 *&lt;small&gt;6&lt;/small&gt; [[Batna (province)|Batna]]
5802 *&lt;small&gt;7&lt;/small&gt; [[BÊchar]]
5803 *&lt;small&gt;8&lt;/small&gt; [[BÊjaïa (province)|BÊjaïa]]
5804 *&lt;small&gt;9&lt;/small&gt; [[Biskra (province)|Biskra]]
5805 *&lt;small&gt;10&lt;/small&gt; [[Blida]]
5806 *&lt;small&gt;11&lt;/small&gt; [[Bordj Bou ArrÊridj (province)|Bordj Bou ArrÊridj]]
5807 *&lt;small&gt;12&lt;/small&gt; [[Bouira]]
5808 *&lt;small&gt;13&lt;/small&gt; [[Boumerdès]]
5809 *&lt;small&gt;14&lt;/small&gt; [[Chlef]]
5810 *&lt;small&gt;15&lt;/small&gt; [[Constantine, Algeria|Constantine]]
5811 *&lt;small&gt;16&lt;/small&gt; [[Djelfa (province)|Djelfa]]
5812 *&lt;small&gt;17&lt;/small&gt; [[El Bayadh]]
5813 |
5814 *&lt;small&gt;18&lt;/small&gt; [[El Oued (province)|El Oued]]
5815 *&lt;small&gt;19&lt;/small&gt; [[El Tarf]]
5816 *&lt;small&gt;20&lt;/small&gt; [[Ghardaïa]]
5817 *&lt;small&gt;21&lt;/small&gt; [[Guelma]]
5818 *&lt;small&gt;22&lt;/small&gt; [[Illizi]]
5819 *&lt;small&gt;23&lt;/small&gt; [[Jijel]]
5820 *&lt;small&gt;24&lt;/small&gt; [[Khenchela]]
5821 *&lt;small&gt;25&lt;/small&gt; [[Laghouat]]
5822 *&lt;small&gt;26&lt;/small&gt; [[Mila]]
5823 *&lt;small&gt;27&lt;/small&gt; [[Mostaganem (province)|Mostaganem]]
5824 *&lt;small&gt;28&lt;/small&gt; [[Medea]]
5825 *&lt;small&gt;29&lt;/small&gt; [[Muaskar]]
5826 *&lt;small&gt;30&lt;/small&gt; [[M'Sila]]
5827 *&lt;small&gt;31&lt;/small&gt; [[Naama]]
5828 *&lt;small&gt;32&lt;/small&gt; [[Oran]]
5829 *&lt;small&gt;33&lt;/small&gt; [[Ouargla]]
5830 |
5831 *&lt;small&gt;34&lt;/small&gt; [[Oum el-Bouaghi]]
5832 *&lt;small&gt;35&lt;/small&gt; [[Relizane]]
5833 *&lt;small&gt;36&lt;/small&gt; [[Saida (province)|Saida]]
5834 *&lt;small&gt;37&lt;/small&gt; [[SÊtif]]
5835 *&lt;small&gt;38&lt;/small&gt; [[Sidi Bel Abbes]]
5836 *&lt;small&gt;39&lt;/small&gt; [[Skikda]]
5837 *&lt;small&gt;40&lt;/small&gt; [[Souk Ahras]]
5838 *&lt;small&gt;41&lt;/small&gt; [[Tamanrasset]]
5839 *&lt;small&gt;42&lt;/small&gt; [[TÊbessa]]
5840 *&lt;small&gt;43&lt;/small&gt; [[Tiaret]]
5841 *&lt;small&gt;44&lt;/small&gt; [[Tindouf Province|Tindouf]]
5842 *&lt;small&gt;45&lt;/small&gt; [[Tipaza]]
5843 *&lt;small&gt;46&lt;/small&gt; [[Tissemsilt]]
5844 *&lt;small&gt;47&lt;/small&gt; [[Tizi Ouzou]]
5845 *&lt;small&gt;48&lt;/small&gt; [[Tlemcen]]
5846 |
5847 |[[Image:Algeria provinces.png|right|250px|Map of the provinces of [[Algeria]] in alphabetical order.]]
5848 |}
5849
5850 ==Geography==
5851 {{main|Geography of Algeria}}
5852
5853 [[Image:Algeria map.png|220px|right|Map of Algeria with cities]]
5854 [[Image:Hoggar3.jpg|thumb|left|The [[Ahaggar Mountains|Hoggar]] Mountains]]
5855
5856 Most of the coastal area is hilly, sometimes even mountainous, and there are few good harbours. The area just south of the coast, known as the [[Tell]], is fertile. Further south is the [[Atlas mountains|Atlas mountain]] range and the [[Sahara]] desert. [[Algiers]], [[Oran]] and [[Constantine, Algeria|Constantine]] are the main cities.
5857
5858 Algeria's [[climate]] is arid and hot, although the coastal climate is mild, and the winters in the mountainous areas can be severe. Algeria is prone to [[sirocco]], a hot dust- and sand-laden wind especially common in summer.
5859
5860 ''See also'': [[Extreme points of Algeria]]
5861
5862 ==Economy==
5863 {{main|Economy of Algeria}}
5864
5865 [[Image:Unknown origin coin2.JPG|thumb|left|150px|Algerian coins]]
5866 The fossil fuels energy sector is the backbone of the economy, accounting for roughly 60% of budget revenues, 30% of [[Gross domestic product|GDP]], and over 95% of export earnings. Algeria has the fifth-largest reserves of [[natural gas]] in the world and is the second largest gas exporter; it ranks 14th in [[Petroleum]] reserves.
5867
5868 Algeria’s financial and economic indicators improved during the mid-1990s, in part because of policy reforms supported by the IMF and debt rescheduling from the [[Paris Club]]. Algeria’s finances in 2000 and 2001 benefited from an increase in oil prices and the government’s tight fiscal policy, leading to a large increase in the trade surplus, record highs in foreign exchange reserves, and reduction in foreign debt. The government's continued efforts to diversify the economy by attracting foreign and domestic investment outside the energy sector has had little success in reducing high unemployment and improving living standards. In 2001, the government signed an Association Treaty with the [[European Union]] that will eventually lower tariffs and increase trade.
5869
5870 ==Demographics==
5871 [[Image:Algiers coast.jpg|thumb|[[Algiers]] coast]]
5872 {{main|Demographics of Algeria}}
5873
5874 About 90% of Algerians live in the northern, coastal area; the minority who inhabit the [[Sahara desert]] are mainly concentrated in [[oasis|oases]], although some 1.5 million remain [[nomad]]ic or partly nomadic.
5875
5876 Ninety-nine percent of the population is classified ethnically as [[Arab]]/[[Berber]], and religiously as [[Muslim]]; other religions are restricted to extremely small groups, mainly of foreigners. Europeans account for less than 1%.
5877
5878 Most Algerians are Arab by language and identity, and of mixed Berber-Arab ancestry. The Berbers inhabited Algeria before the arrival of Arab tribes during the expansion of Islam, in the 7th century. The issue of ethnicity and language is sensitive after many years of government marginalization of Berber (or [[Amazigh]], as some prefer) culture. Today, the Arab-Berber issue is often a case of self-identification or identification through language and culture, rather than a racial or ethnic distinction. The 20% or so of the population who self-identify as Berbers, and primarily speak Berber languages (such as [[Tamazight]]), are divided into several ethnic groups, notably [[Kabyle]] (the largest) in the mountainous north-central area, [[Chaoui]] in the eastern [[Atlas Mountains]], [[Mozabite]]s in the [[M'zab]] valley, and [[Tuareg]] in the far south.
5879
5880 ==Language==
5881 {{main|Languages of Algeria}}
5882
5883 The [[official language]] is [[Arabic language|Arabic]], spoken natively in dialectal form (&quot;[[Algerian Arabic|Darja]]&quot;) by some 80% of the population; the other 20% or so speak [[Berber]] ([[Tamazight]]), officially a [[national language]]. [[French language|French]] is the most widely studied foreign language (distantly followed by [[English language|English]]), but is very rare as a [[native language]]. Since independence, the government has pursued a policy of linguistic [[Arabization]] of education and bureaucracy, with some success, although many university courses continue to be taught in French.
5884
5885 ==Culture==
5886 [[Image:Algiers mosque.jpg|thumb|[[Mosque]] in Algiers]]
5887 {{main|Culture of Algeria}}
5888
5889 Modern Algerian literature, split between Arabic and French, has been strongly influenced by the country's recent history. [[List of Algerian writers|Famous novelists]] of the 20th century include [[Mohammed Dib]] and [[Kateb Yacine]], while [[Assia Djebar]] is widely translated. Important novelists of the 1980s included [[Rachid Mimouni]], later vice-president of Amnesty International, and [[Tahar Djaout]], murdered by an [[Islamist]] group in 1993 for his secularist views. As early as Roman times, [[Apuleius]], born in [[Mdaourouch]], was native to what would become Algeria.
5890
5891 In philosophy and the humanities, [[Malek Bennabi]] and [[Frantz Fanon]] are noted for their thoughts on [[decolonization]], while [[Augustine of Hippo]] was born in [[Tagaste]] (about 60 miles from the present day city of [[Annaba]]), and [[Ibn Khaldun]], though born in [[Tunis]], wrote the [[Muqaddima]] while staying in Algeria.
5892
5893 Algerian culture has been strongly influenced by [[Islam in Algeria|Islam]], the main religion. The works of the [[Sanusi]] family in precolonial times, and of Emir [[Abdelkader]] and Sheikh [[Ben Badis]] in colonial times, are widely noted.
5894
5895 The [[Music of Algeria|Algerian musical]] genre best known abroad is [[raï]], a pop-flavored, opinionated take on folk music, featuring international stars such as [[Khaled (musician)|Khaled]] and [[Cheb Mami]]. However, in Algeria itself the older, highly verbal [[chaabi]] style remains more popular, with such stars as [[El Hadj El Anka]] or [[Dahmane El Harrachi]], while the tuneful melodies of [[Kabyle]] music, exemplified by [[Idir]], [[Ait Menguellet]], or [[Lounès Matoub]], have a wide audience. For more classical tastes, [[Andalusian classical music|Andalusi music]], brought from [[Al-Andalus]] by [[Morisco]] refugees, is preserved in many older coastal towns.
5896
5897 In painting, [[Mohammed Khadda]] and [[M'hemed Issiakhem]] are notable in recent years.
5898
5899 == Picture gallery ==
5900
5901 &lt;gallery&gt;
5902 Image:Houbel.JPG|''The Monument of the Martyrs Algiers''
5903 Image:Algernuit.jpg|''Algiers by night''
5904 Image:Finace.jpg|''Minister of the finances''
5905 Image:Makam Echehid.jpg|''Algiers view by air''
5906 Image:Benyen.JPG|''the Forest Bainem in Algeria at (Bouzareah)''
5907 Image:Algierssnow.jpg|''Snow on Algiers''
5908 Image:Church Saintcharlesalgiers.jpg|''The church Saint charles at Algiers''
5909 Image:PE Algerie Sahara 0121.JPG|''Sahara of Algeria''
5910
5911
5912
5913 &lt;/gallery&gt;
5914
5915 == Miscellaneous topics ==
5916 * [[Archeology of Algeria]]
5917 * [[Communications in Algeria]]
5918 * [[Foreign relations of Algeria]]
5919 * [[List of Algeria-related topics]]
5920 * [[List of cities in Algeria]]
5921 * [[List of Algerians]]
5922 * [[List of sovereign states]]
5923 * [[Military of Algeria]]
5924 * [[Transportation in Algeria|Transportation in Algeria]]
5925 * ''[[The Battle of Algiers]]'' movie
5926 * [[Algerian War of Independence]] (1954-1962)
5927 * [[Algerian Civil War]] (1991-2002)
5928
5929 === Directories ===
5930 *[http://www.pagesjaunes-dz.com/index.php?lang=en Yellow Pages of Algeria]
5931
5932 ==External links==
5933 {{portal}}
5934 {{sisterlinks|Algeria}}
5935
5936 '''Government'''
5937 *[http://www.el-mouradia.dz El Mouradia] official presidential site (in French and Arabic)
5938 *[http://www.apn-dz.org/apn/english/index.htm National People's Assembly] official parliamentary site
5939 *[http://www.algeria-us.org/ The Embassy of Algeria in Washington, DC]
5940
5941 '''News'''
5942 *[http://allafrica.com/algeria/ allAfrica.com - ''Algeria''] news headline links
5943 *[http://www.elkhabar.com/FrEn/?idc=52 El Khabar]
5944 *[http://www.north-africa.com/one.htm The North Africa Journal] business news
5945
5946 '''Overviews'''
5947 * [http://www.cia.gov/cia/publications/factbook/geos/ag.html CIA World Factbook - ''Algeria'']
5948 * [http://lcweb2.loc.gov/frd/cs/dztoc.html Library of Congress - Country Study: ''Algeria''] data as of December 1993
5949 * [http://www.exile.ru/2003-February-20/war_nerd.html Algeria: The Psychos Will Inherit the Earth] - an irreverent look at Algeria's military situation
5950
5951 '''Tourism'''
5952 *{{wikitravel}}
5953
5954 '''Other'''
5955 * [http://www.algeria-watch.org/francais.htm Algeria Watch] human rights organization critical of widespread torture practiced by the rÊgime (in French)
5956 * [http://www.opendemocracy.net/globalization-institutions_government/algeria_2874.jsp Algeria’s past needs opening, not closing] Analysis on the public referendum held [[29 September]] [[2005]] by Veerle Opgenhaffen and Hanny Megally
5957 *[http://algerie.el-annabi.com all City of AlgÊria]
5958 *[http://www.dicodialna.com Algerian-English Online Dictionary]
5959
5960 {{Africa}}
5961 {{Mediterranean}}
5962
5963
5964 [[Category:African Union member states]]
5965 [[Category:Algeria| ]]
5966 [[Category:Arab League]]
5967 [[Category:Peace and Security Council]]
5968
5969 [[af:AlgeriÃĢ]]
5970 [[am:አልጄáˆĒá‹Ģ]]
5971 [[an:Alcheria]]
5972 [[ar:اŲ„ØŦØ˛Ø§ØĻØą]]
5973 [[ast:Arxelia]]
5974 [[bn:āĻ†āĻ˛āĻœā§‡āĻ°āĻŋāĻ¯āĻŧāĻž]]
5975 [[bs:AlÅžir]]
5976 [[ca:Algèria]]
5977 [[cs:AlŞírsko]]
5978 [[cy:Algeria]]
5979 [[da:Algeriet]]
5980 [[de:Algerien]]
5981 [[el:ΑÎģÎŗÎĩĪÎ¯Îą]]
5982 [[eo:Alĝerio]]
5983 [[es:Argelia]]
5984 [[et:AlÅžeeria]]
5985 [[fa:اŲ„ØŦØ˛Ø§ÛŒØą]]
5986 [[fi:Algeria]]
5987 [[fr:AlgÊrie]]
5988 [[gl:Alxeria - اŲ„ØŦØ˛Ø§ØĻØą]]
5989 [[ha:Aljeriya]]
5990 [[haw:ĘģAlekelia]]
5991 [[he:אלג'יריה]]
5992 [[hi:ā¤…ā¤˛āĨā¤œāĨ€ā¤°ā¤ŋā¤¯ā¤ž]]
5993 [[ht:Aljeri]]
5994 [[ia:Algeria]]
5995 [[id:Aljazair]]
5996 [[io:Aljeria]]
5997 [[is:Alsír]]
5998 [[it:Algeria]]
5999 [[ja:ã‚ĸãƒĢジェãƒĒã‚ĸ]]
6000 [[ko:ė•Œė œëĻŦ]]
6001 [[kw:Aljeri]]
6002 [[la:Algeria]]
6003 [[li:AlgerieÃĢ]]
6004 [[lt:AlÅžyras]]
6005 [[lv:AlÅžÄĢrija]]
6006 [[mk:АĐģĐļиŅ€]]
6007 [[ms:Algeria]]
6008 [[na:Algeria]]
6009 [[nds:Algerien]]
6010 [[nl:Algerije]]
6011 [[nn:Algerie]]
6012 [[no:Algerie]]
6013 [[pl:Algieria]]
6014 [[pt:ArgÊlia]]
6015 [[rm:Algeria]]
6016 [[ro:Algeria]]
6017 [[ru:АĐģĐļиŅ€]]
6018 [[sa:ā¤…ā¤˛āĨā¤œāĨ€ā¤°ā¤ŋā¤¯ā¤ž]]
6019 [[scn:Algiria]]
6020 [[simple:Algeria]]
6021 [[sk:AlŞírsko]]
6022 [[sl:AlÅžirija]]
6023 [[so:Aljeeriya]]
6024 [[sq:Algjeria]]
6025 [[sr:АĐģĐļиŅ€]]
6026 [[sv:Algeriet]]
6027 [[tg:АĐģŌˇĐ°ĐˇĐžĐ¸Ņ€]]
6028 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨āšā¸­ā¸Ĩā¸ˆā¸ĩāš€ā¸Ŗā¸ĩā¸ĸ]]
6029 [[tl:Algeria]]
6030 [[tr:Cezayir]]
6031 [[ur:اŲ„ØŦØ˛Ø§ØĻØą]]
6032 [[wa:Aldjereye]]
6033 [[yi:אַלזשיר]]
6034 [[zh:é˜ŋ尔及刊äēš]]
6035 [[zh-min-nan:Algeria]]</text>
6036 </revision>
6037 </page>
6038 <page>
6039 <title>Characters in Atlas Shrugged</title>
6040 <id>359</id>
6041 <revision>
6042 <id>41302556</id>
6043 <timestamp>2006-02-26T11:34:49Z</timestamp>
6044 <contributor>
6045 <username>Bchampion</username>
6046 <id>671891</id>
6047 </contributor>
6048 <comment>Removed inccorect info about etymology of &quot;mooch&quot; see discussion</comment>
6049 <text xml:space="preserve">'''Characters in [[Ayn Rand]]'s novel, [[Atlas Shrugged]].'''
6050
6051 {{spoiler}}
6052
6053 ==Balph Eubank==
6054 Called &quot;the literary leader of the age&quot;, despite the fact that he is incapable of writing anything that people actually want to read. What people ''want'' to read, he says, is irrelevant. He complains that it is disgraceful that artists are treated as peddlers, and that there should be a law limiting the sales of books to ten thousand copies. He is a member of the ''Looters''. Balph Eubank appears in [[Structure of Atlas Shrugged|section]] 161.
6055 ==Ben Nealy==
6056 A railroad contractor whom ''Dagny Taggart'' hires to replace the track on the [[Things in Atlas Shrugged#Rio Norte Line|Rio Norte Line]] with [[Technology in Atlas Shrugged#Rearden Metal|Rearden Metal]]. Nealy is incompetent, but Dagny can find no one better in all the country. Nealy believes that anything can get done with enough muscle power. He sees no role for intelligence in human achievement, and this is manifest in his inability to organize the project and to make decisions. He relies on Dagny and ''Ellis Wyatt'' to run things, and resents them for doing it, because it appears to him like they are just bossing people around. Ben Nealy appears in [[Structure of Atlas Shrugged|section]] 171.
6057
6058 ==Bertram Scudder==
6059 Editorial writer for the magazine ''The Future''. He typically bashes business and businessmen, but he never says anything specific in his articles, relying on innuendo, sneers, and denunciation. He wrote a hatchet job on ''Hank Rearden'' called ''The Octopus''. He is also vocal in support of the [[Things in Atlas Shrugged#Equalization of Opportunity Bill|Equalization of Opportunity Bill]]. Bertram Scudder appears in [[Structure of Atlas Shrugged|section]] 161.
6060
6061 ==Betty Pope==
6062 A wealthy socialite who is having a meaningless sexual affair with ''James Taggart'' that coincides with the overall meaninglessness of her life. She regrets having to wake up every morning because she has to face another empty day. She is deliberately crude in a way that casts ridicule on her high social position. Betty Pope appears in [[Structure of Atlas Shrugged|sections]] 142 and 161.
6063 ==Brakeman==
6064 An unnamed employee working on the [[Things in Atlas Shrugged#Taggart Comet|Taggart Comet]] train. ''Dagny Taggart'' hears Brakeman whistling the theme of a concerto. When she asks him what piece it is from, he says it is [[Things in Atlas Shrugged#Halley's Fifth Concerto|Halley's Fifth Concerto]]. When Dagny points out that ''Richard Halley'' only wrote four concertos, Brakeman claims he made a mistake and he doesn't recall where he heard the piece.
6065
6066 Later, after Dagny instructs the train crew how to proceed, he asks a co-worker who she is, and learns she is the one who runs [[Companies in Atlas Shrugged#Taggart Transcontinental|Taggart Transcontinental]].
6067
6068 It is later discovered that the unknown brakeman is one of the strikers, when Dagny meets him in the valley. Brakeman appears in [[Structure of Atlas Shrugged|sections]] 112 and 113.
6069
6070 ==Cherryl Brooks==
6071 Dime store shopgirl who marries James Taggart after a chance encounter in her store the night the John Galt Line was deemed his greatest success. She marries him thinking he is the heroic person behind Taggart Transcontinental. She is horrible to Dagny until the night before she commits suicide, when she confesses to Dagny that she married Jim, thinking she was marrying Dagny. Like Eddie Willers, Cherryl is one representation of a &quot;good&quot; person who lacks the extraordinary capacities of the primary heroes of the novel.
6072
6073 ==Claude Slagenhop==
6074 The president of political organization [[Characters in Atlas Shrugged|Friends of Global Progress]] (which is supported by ''Philip Rearden''), and one of ''Lillian Rearden's'' friends. He believes that ideas are just air, that this is no time for talk, but for action. He is not bothered by the fact that action unguided by ideas is random and pointless. Global Progress is a sponsor of the [[Things in Atlas Shrugged|Equalization of Opportunity Bill]]. Claude Slagenhop appears in [[Structure of Atlas Shrugged|section]] 161.
6075 ==Cuffy Meigs==
6076 A looter who's assigned by Wesley Mouch to keep watch over the workings of ''Taggart Transcontinental,'' and later assumes control over the company after Dagny Taggart leaves. He carries a pistol and a lucky rabbit's foot, he dresses in a military uniform. The &quot;intellectual heir&quot; of Dr. Robert Stadler, Meigs comes to a fitting end at the hands of ''Project X.''
6077
6078 ==Dagny Taggart==
6079 The main character in Atlas Shrugged (also the name of her namesake ''Mrs. Nathaniel Taggart''). Dagny is Vice-President in Charge of Operation at Taggart Transcontinental. She is the female hero, the counterpart to John Galt, her journey is the journey of the reader exploring and understanding Galts philosophy. Those in the know understand that she is the one who really runs the railroad. In the course of the novel, she forms romantic liaisons with three men of ability. Francisco, Hank Rearden and John Galt in order. John is the one who, because of the sum-total of his qualities, will become the choice of Dagny. Dagny appears in [[Structure of Atlas Shrugged|sections]] 112, 113, 114, 132, 133, 141, 145, 146, 147, 148, 151, 152, and 161.
6080
6081 ==Dan Conway==
6082 The middle-aged president of the [[Companies in Atlas Shrugged|Phoenix-Durango]] railroad. Running a railroad is just about the only thing he knows. When the [[Things in Atlas Shrugged|Anti-dog-eat-dog Rule]] is used to drive his business out of [[Places in Atlas Shrugged|Colorado]], he loses the will to fight, and resigns himself to a quiet life of books and fishing. He claims that somebody had to be sacrificed, it turned out to be him, and he has no right to complain, bowing to the will of the majority. When pressed he says he doesn't really believe this is right, but he can't understand why it is wrong and what the alternative might be. He is trapped by a moral code that makes him a willing victim, and rather than challenge that morality, he simply gives up. Dan Conway appears in [[Structure of Atlas Shrugged|sections]] 145 and 146, and is mentioned in section 148.
6083 ==Dick McNamara==
6084 A contractor who finished the [[Things in Atlas Shrugged|San Sebastian Line]] and who is hired to lay the new [[Technology in Atlas Shrugged|Rearden Metal]] track for the [[Things in Atlas Shrugged|Rio Norte Line]]. Before he gets a chance to do so, he mysteriously disappears. Dick McNamara is mentioned in [[Structure of Atlas Shrugged|sections]] 133 and 141.
6085 ==Eddie Willers==
6086 Special Assistant to the Vice-President in Charge of Operation at Taggart Transcontinental. He grew up with ''Dagny Taggart''. His father and grandfather worked for the Taggarts, and he followed in their footsteps. He is completely loyal to Dagny and to [[Companies in Atlas Shrugged|Taggart Transcontinental]]. He is also secretly in love with Dagny. Willers is generally assumed to represent the common man: someone who does not possess the promethian creative ability of The Strikers, but nevertheless matches them in moral courage and is capable of appreciating and making use of their creations. Eddie Willers appears in [[Structure of Atlas Shrugged|sections]] 111, 114, 117, 132, 133, 141, 151, and 152.
6087
6088 ==Ellis Wyatt==
6089 The head of [[Companies in Atlas Shrugged|Wyatt Oil]]. He has almost single-handedly revived the economy of [[Places in Atlas Shrugged|Colorado]] by discovering oil there. Of all the disappearances of industrialists in the novel, Wyatt's, involving the fiery destruction of his oil wells, is surely the most dramatic. Ellis Wyatt is mentioned or appears in [[Structure of Atlas Shrugged|sections]] 111, 114, 132, 146, 147, 148, and 152.
6090
6091 ==Francisco d'Anconia==
6092 One of the central characters in [[Atlas Shrugged]]. By all accounts, he is a worthless millionaire playboy, owner by inheritance of the world's largest copper mining empire, the man behind the [[Things in Atlas Shrugged|San Sebastian Mines]], and a childhood friend and first love of ''Dagny Taggart''.
6093
6094 Francisco began working on the sly as a teenager in order to learn all he could about business. While still a student at [[Things in Atlas Shrugged|Patrick Henry University]], he began working at a copper foundry, and investing in the stock market. By the time he was twenty he had made enough to purchase the foundry. He began working for [[Companies in Atlas Shrugged|d'Anconia Copper]] as assistant superintendent of a mine in Montana, but was quickly promoted to head of the New York office. He took over d'Anconia Copper at age 23, after the death of his father.
6095
6096 When he was 26, Francisco secretly joined the ''Strikers'' and began to slowly destroy the d'Anconia empire so the ''Looters'' could not get it. He adopted the persona of a worthless playboy, by which he is known to the world, as an effective cover.
6097
6098 His full name is Francisco Domingo Carlos Andres Sebastian d'Anconia.
6099
6100 ''According to [mailto:areed2@calstatela.edu Adam Reed] ([http://www.monmouth.com/~adamreed/Ayn_Rands_jewish_years/Who_is_Francisco_DAnconia.html Who is Francisco D'Anconia?]), d'Anconia is the only Hero-class character who is recognizably Jewish (not in the religious, but in the historical sense, like Ayn Rand herself).'' Francisco D'Anconia appears or is mentioned in [[Structure of Atlas Shrugged|sections]] 132, 141, 144, 151, and 152 - this last section includes a detailed history of his life.
6101 ==Hank Rearden==
6102 One of the central characters in [[Atlas Shrugged]]. He is the founder of [[Companies in Atlas Shrugged|Rearden Steel]] and the inventor of [[Technology in Atlas Shrugged|Rearden Metal]]. He lives in [[Places in Atlas Shrugged|Philadelphia]] with his wife ''Lillian'', his brother ''Philip'', and an elderly woman known only as ''Rearden's Mother'', all of whom he supports. [[Gwen Ives]] is his secretary.
6103
6104 The character of Hank Rearden has two important roles to play in the novel. First, he is in the same position as the reader in that he is aware that there is something wrong with the world but is not sure what it is. Rearden is guided toward an understanding of the solution through his friendship with ''Francisco d'Anconia'', who does know the secret, and by this mechanism the reader is also prepared to understand the secret when it is revealed explicitly in [[Atlas Shrugged/Galts Speech|Galt's Speech]].
6105
6106 Second, Rearden is used to illustrate Rand's [[Concepts in Atlas Shrugged|theory of sex]]. ''Lillian Rearden'' cannot appreciate Hank Rearden's virtues, and she is portrayed as being disgusted by sex. ''Dagny Taggart'' clearly does appreciate Rearden's virtues, and this appreciation evolves into a sexual desire. Rearden is torn by a contradiction because he accepts the premises of the traditional view of sex as a lower instinct, while responding sexually to Dagny, who represents his highest values. Rearden struggles to resolve this internal conflict and in doing so illustrates Rand's sexual theory. Rearden appears in [[Structure of Atlas Shrugged|sections]] 121, 132, 147, and 161, and is mentioned in sections 114 and 131.
6107
6108 ==Hugh Akston==
6109 Identified as &quot;One of the last great advocates of reason.&quot; He was a renowned philosopher and the head of the Department of Philosophy at [[Things in Atlas Shrugged|Patrick Henry University]], where he taught ''Francisco d'Anconia'', ''John Galt'', and ''Ragnar DanneskjÃļld''. He was, along with ''Robert Stadler'', a father figure to these three. Akston's name is so hallowed that a young lady, on hearing that Francisco had studied under him, is shocked. She thought he must have been one of those great names from an earlier century. Hugh Akston is mentioned in [[Structure of Atlas Shrugged|section]] 161.
6110 ==James Taggart==
6111 The President of [[Companies in Atlas Shrugged|Taggart Transcontinental]] and a leader of the ''Looters''. Taggart is an expert influence peddler who is incapable of making decisions on his own. He relies on his sister ''Dagny Taggart'' to actually run the railroad, but nonetheless opposes her in almost every endeavor. In a sense, he is the antithesis of Dagny.
6112
6113 As the novel progresses, the moral philosophy of the Looters is revealed: it is a code of [[nihilism]]. The goal of this code is to not exist, to become a zero. Taggart struggles to remain unaware that this is his goal. He maintains his pretence that he wants to live, and becomes horrified whenever his mind starts to grasp the truth about himself. This contradiction leads to the recurring absurdity of his life: the desire to destroy those on whom his life depends, and the horror that he will succeed at this. James Taggart appears in [[Structure of Atlas Shrugged|sections]] 111, 114, 131, 132, 143, 144, 152 and 161, and is mentioned in [[Structure of Atlas Shrugged|sections]] 146 and 148.
6114
6115 ==John Galt==
6116 *The question &quot;[[Who is John Galt?]]&quot; is asked repeatedly throughout [[Atlas Shrugged]]. Late into the book we learn that '''John Galt''' is the man who stopped the motor of the world and the leader of the ''Strikers''. He is also the same character as the '''Mystery Worker'''.
6117
6118 The son of an [[Ohio]] garage mechanic, Galt left home at age 12 and began college at [[Things in Atlas Shrugged#Patrick Henry University|Patrick Henry University]] at age 16. There he befriended [[#Francisco d'Anconia|Francisco d'Anconia]] and [[#Ragnar DanneskjÃļld|Ragnar DanneskjÃļld]], all three of whom double-majored in [[physics]] and [[philosophy]]. They were the cherished students of the brilliant scientist [[#Robert Stadler|Robert Stadler]] and the brilliant philosopher [[#Hugh Akston|Hugh Akston]].
6119
6120 After graduating, Galt became an [[engineer]] at the [[Companies in Atlas Shrugged|Twentieth Century Motor Works]] where he designed a revolutionary new motor powered by ambient static electricity with the potential to change the world. Like [[#Ellis Wyatt|Ellis Wyatt]], he has created what many had for years said was impossible. When the company owners decided to run the factory by the collectivist maxim, 'By each according to his ability, to each according to his need', Galt organized a successful [[labor strike]], proclaiming his promise to stop the motor of the world. He began traversing the globe, meeting the world's most successful businessmen, systematically convincing them to follow in his footsteps; one by one, they began abandoning their business empires (which, Galt convinced them, were doomed to failure anyhow, given the increased nationalization of industry by the government).
6121
6122 Secretly, these captains of industry, led by Galt and [[banker]] [[#Midas Mulligan|Midas Mulligan]], had created their own society &amp;mdash; a secret enclave of rational individualists living in &quot;[[Things in Atlas Shrugged#Galt's Gulch|Galt's Gulch]]&quot;, a town secluded high in a wilderness of mountains. [[#Dagny Taggert|Dagny]] accidentally finds the town &amp;mdash; and a shocked John Galt &amp;mdash; by crash-landing a light [[aircraft]] while pursuing [[#Quentin Daniels|Quentin Daniels]].
6123
6124 Since everyone across the country is repeating the phrase, &quot;Who is John Galt?&quot;, it is natural that many people have attempted to answer that question. The phrase becomes an expression of helplessness and despair at the current state of the world. ''Dagny Taggart'' hears a number of [[Things in Atlas Shrugged#John Galt Legends|John Galt Legends]] before finding the real John Galt and eventually joining his cause, and learning that all of the stories have an element of truth to them.
6125
6126 :''There is a clothing store in [[Vail, Colorado]] called John Galt Ltd. One presumes that, on occasion, a customer unknowingly walks in and asks, &quot;Who is John Galt?&quot;''
6127
6128 ==Lillian Rearden==
6129 The wildly unsupportive wife of ''Hank Rearden''. They have been married eight years as the novel begins.
6130
6131 Lillian is a frigid ''Moocher'' who seeks to destroy her husband. She compares being Rearden's wife with owning the world's most powerful horse. Since she cannot comfortably ride a horse that goes too fast, she must bridle it down to her level, even if that means it will never reach its full potential and its power will be greviously wasted.
6132
6133 Lillian also serves to illustrate Rand's [[Concepts in Atlas Shrugged|Theory of sex]]. She believes sex is a base animal instinct and that sexual indulgence is a sign of moral weakness. She is incapable of feeling this kind of desire, which she believes testifies to her moral superiority. However, according to the theory of sex Lillian's lack of sexual capacity results from her inability to experience value in herself; she is therefore unable to respond sexually when she experiences value in others.
6134
6135 Lillian tolerates sex with her husband only because she is 'realistic' enough to know he is just a brute who requires satisfaction of his brute instincts. In [[Structure of Atlas Shrugged|section]] 161 she indicates that she abhors ''Francisco d'Anconia'', because she believes he is a sexual adventurer. Lillian Rearden appears in [[Structure of Atlas Shrugged|sections]] 121 and 161.
6136
6137 ==The Looters==
6138 A group of evil characters sometimes referred to as &quot;James Taggart and his friends&quot;. They are similar to the Moochers. The Looters consist of men and women who use force to obtain value from those who produce it. They seek to destroy the producers despite the fact that they are dependent upon them. The Looters include: Mr. Thompson, Balph Eubank, Floyd Ferris, James Taggart, Orren Boyle, Paul Larkin, Robert Stadler, Simon Pritchett, Wesley Mouch, and Cuffy Miegs.
6139 ==Midas Mulligan==
6140 A wealthy banker who mysteriously disappears in protest after he is given a court order to loan money to an incompetent loan applicant. Midas Mulligan is responsible for the creation and distribution of the money that is exclusively used in Galt's Gulch, and is the original owner of the land where Galt's Gulch is located. He is also responsible for the production of the money used there.
6141 ==The Moochers==
6142 A group of characters, similar to the ''Looters'', who use guilt as a weapon against those who produce value. They seek to destroy the producers despite the fact that they are dependent upon them. The Moochers include ''Lillian Rearden'', ''Philip Rearden'', and Hank Rearden's ''mother''.
6143
6144 ==Mort Liddy==
6145 A [[hack writer|hack]] composer who writes trite scores for movies and modern symphonies that no one listens to. He believes melody is a primitive vulgarity. He is one of ''Lillian Rearden's'' friends and a member of the cultural elite. Mort Liddy appears in [[Structure of Atlas Shrugged|section]] 161.
6146
6147 ==Mr. Mowen==
6148 The president of the [[Companies in Atlas Shrugged|Amalgamated Switch and Signal Company, Inc.]] of Connecticut. He is a businessman who sees nothing wrong with the moral code that is destroying society and would never dream of saying he is in business for any reason other than the good of society. He is unable to grapple with abstract issues, and is frightened of anything controversial. Dagny Taggart hires Mr. Mowen to produce switches made of [[Technology in Atlas Shrugged|Rearden Metal]]. He is reluctant to build anything with this unproven technology, and has to be ridden and cajoled before he is willing to accept the contract. When pressured by public opinion, he discontinues production of the switches, forcing Dagny to find an alternative source. Mr. Mowen appears in [[Structure of Atlas Shrugged|section]] 171.
6149
6150 ==Mystery Worker==
6151 A menial worker for [[Companies in Atlas Shrugged|Taggart Transcontinental]] who often dines with ''Eddie Willers'' in the employee's cafeteria. Eddie finds him very easy to talk to, and Mystery Worker not-so-subtly leads him on so that Eddie reveals important information about ''Dagny Taggart'' and Taggart Transcontinental. Eddie tells him which suppliers and contractors Dagny is most dependent on, and with remarkable consistency, those are the next men to disappear mysteriously. Mystery Worker is actually John Galt. Mystery Worker appears in [[Structure of Atlas Shrugged|section]] 133.
6152
6153 ==The unnamed newsstand owner==
6154 He works in the Taggart Terminal. Twenty years ago he owned a cigarette factory but it went under, and he's been working at his newsstand ever since. He is a collector of cigarettes, and knows every brand ever made. He occasionally chats with ''Dagny Taggart'' when she comes by. On one occasion, in [[Structure of Atlas Shrugged|section]] 132, after Dagny asks him about his collection, he bemoans the fact that there are no new brands and the old brands are all disappearing. He examines a cigarette given to Dagny by ''Hugh Akston'', but it is a new brand that he has never seen before. It carries the sign of the dollar. In his first appearance, the Newsstand Owner likens the fire of a cigarette to the fire of the mind. This alludes to the Greek myth of Prometheus, who gave mankind the gift of fire, allowing it to raise itself up and become civilized. In [[Atlas Shrugged]], it is the mind of man that raises mankind. Thus the cigarettes become symbolic of the men of the mind. The disappearance of the old brands represents the disappearance of the men of the mind, and the Newsstand Owner's discovery of the new brand foreshadows Dagny's discovery of a new kind of men of the mind.
6155
6156 ==Orren Boyle==
6157 The head of [[Companies in Atlas Shrugged|Associated Steel]] and a friend of ''James Taggart''. He is one of the ''Looters''. He is an investor in the [[Things in Atlas Shrugged|San Sebastian Mines]]. Orren Boyle appears or is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 114, 131, 132, 144, and 152.
6158 ==Owen Kellogg==
6159 Assistant to the Manager of the Taggart Terminal in [[Places in Atlas Shrugged|New York]]. He catches ''Dagny Taggart's'' eye as one of the few competent men on staff. After seeing the sorry state of the Ohio Division she decides to make him to its new Superintendent. However, as soon as she returns to [[Places in Atlas Shrugged|New York]], Kellogg informs her that he is quitting his job. He admits that he loves his work, but that's not enough to keep him. He won't say why he is leaving or what he will do. Later, he is noticed working as transient labor by the unsuccessful/unmotivated businessman ''Mr. Mowen''. Owen Kellog eventually reaches, and settles in Atlantis. Owen Kellogg appears in [[Structure of Atlas Shrugged|sections]] 112 and 114.
6160
6161 ==Paul Larkin==
6162 An unsuccessful, middle-aged businessman, a friend of the Rearden family, and a member of the ''Looters''. In [[Structure of Atlas Shrugged|section]] 121 Larkin visits [[Places in Atlas Shrugged|Philadelphia]] to warn ''Hank Rearden'' of possible trouble from [[Places in Atlas Shrugged|Washington]]. In [[Structure of Atlas Shrugged|section]] 131 he meets with the other Looters to work out a plan to bring Rearden down. James Taggart knows he is friends with Hank Rearden and challenges his loyalty, and Larkin assures Taggart that he will go along with them. Paul Larkin appears in [[Structure of Atlas Shrugged|sections]] 121, 132, and 2A1.
6163 ==Philip Rearden==
6164 The younger brother of ''Hank Rearden'', and a ''Moocher''. He lives in his brother's home in [[Places in Atlas Shrugged|Philadelphia]] and is completely dependent on him. He believes that the source of his sustenance is evil and would love to see him destroyed. He has never had a career and spends his time perfunctorily working for various social groups.
6165 He becomes resentful of his brother's charity. He then requests that he be granted a job from his brother because he should not have to be burdened by the feeling of inadequacy of not earning his own livelihood. When confronted by his brother on how this job should be a mutually beneficial arrangement, Philip shrugs the argument off as irrelevant and that the job should be entitled to him solely based on his need for money and the fact of familial ties. Philip Rearden appears in [[Structure of Atlas Shrugged|sections]] 121 and 161.
6166
6167 ==Quentin Daniels==
6168 An enterprising engineer hired by ''Dagny Taggart'' to reconstruct ''John Galt's'' motor. Partway through this process, Quentin withdraws his effort for the same reasons John Galt himself had. Dagny sets out to meet Quentin in hopes of convincing him to resume his work. John Galt narrowly gets to him first. Dagny's pursuit of Quentin leads her to &quot;[[Things in Atlas Shrugged#Galt's Gulch|Galt's Gulch]]&quot;
6169
6170 ==Ragnar DanneskjÃļld==
6171 One of the original ''Strikers''. He is now world famous as a pirate. Ragnar was from [[Places in Atlas Shrugged|Norway]], the son of a bishop and the scion of one of Norway's most ancient, noble families. He attended [[Things in Atlas Shrugged|Patrick Henry University]] and became friends with ''John Galt'' and ''Francisco d'Anconia'', while studying under ''Hugh Akston'' and ''Robert Stadler''.
6172
6173 Ragnar seizes relief ships that are being sent from the [[Places in Atlas Shrugged|United States]] to [[Places in Atlas Shrugged|Europe]]. No one knows what he does with the goods he seizes. As the novel progresses, Ragnar begins, for the first time, to become active in American waters, and is even spotted in [[Places in Atlas Shrugged|Delaware Bay]]. Reportedly, his ship is better than any available in the fleets of the world's navies.
6174
6175 When he became a pirate, he was disowned and excommunicated. There is a price on his head in [[Places in Atlas Shrugged|Norway]], [[Places in Atlas Shrugged|Portugal]], [[Places in Atlas Shrugged|Turkey]].
6176
6177 According to Ayn Rand (verbal report), his name is a tribute to Victor Hugo. In Hugo's first novel, ''Hans of Iceland'', the hero becomes the first of the Counts of DanneskjÃļld. His name may be a pun on 'Dane's Gold', although &quot;skjÃļld&quot; means shield, not gold. Ragnar DanneskjÃļld appears in [[Structure of Atlas Shrugged|section]] 161.
6178
6179 ==Rearden's mother==
6180 Named Gertrude, she is a ''Moocher'' who lives with her son ''Hank Rearden'' at his home in [[Places in Atlas Shrugged|Philadelphia]]. She is involved in church-based charity work, and berates Rearden whenever she can. She insults him by saying he was always selfish, even as a child. She dotes on her weak son ''Philip Rearden''. Rearden's mother appears in [[Structure of Atlas Shrugged|section]] 121.
6181
6182 ==Richard Halley==
6183 Dagny Taggart's favorite composer, who mysteriously disappeared after the evening of his greatest triumph. In [[Structure of Atlas Shrugged|section]] 141 we learn that Richard Halley spent years as a struggling and unappreciated composer. At age 24 his opera ''Phaethon'' was performed for the first time, to an audience who booed and heckled it. (It was based on the [[Greek mythology|Greek myth]] in which [[Phaethon]] steals his father's chariot, and dies in an audacious attempt to drive the sun across the sky. Halley changed the story, though, into one of triumph, in which Phaethon succeeds.) For years Halley wrote in obscurity. After nineteen years, ''Phaethon'' was performed again, but this time it was received to the greatest ovation the opera house had ever heard. It appears his critics felt he had paid his dues long enough that he was at last worthy of their approval. The following day, Halley retired, sold the rights to his music, and disappeared. Richard Halley is mentioned in [[Structure of Atlas Shrugged|sections]] 112, 114, 133, and 141, and appears in [[Structure of Atlas Shrugged|section]] 152.
6184 ==Dr. Robert Stadler==
6185 A former professor at Patrick Henry University, mentor to ''Francisco d'Anconia'', ''John Galt'' and ''Ragnar DanneskjÃļld''. He has since become a sell-out, one who had great promise but squandered it for social approval, to the detriment of the free. He works at the State Science Institute where all his inventions are perverted for use by the military, including the instrument of his demise: ''Project X.''
6186 ==Dr. Simon Pritchett==
6187 The prestigious head of the Department of Philosophy at [[Things in Atlas Shrugged|Patrick Henry University]] and is considered the leading philosopher of the age. He is also a ''Looter''. He is certainly representative of the philosophy of the age - he is a crude reductionist who believes man is nothing but a collection of chemicals; he believes there are no standards, that definitions are fluid, reason is a superstition, that it is futile to seek meaning in life, and that the duty of a philosopher is to show that nothing can be understood. He explains all this in his book ''The Metaphysical Contradictions of the Universe'', and at cocktail parties. Dr. Pritchett appears in [[Structure of Atlas Shrugged|section]] 161.
6188 ==The Strikers==
6189 People of the mind who go on strike because they do not appreciate being exploited by ''the Looters'' and demonized by a society who depends on them for its very existence. The leader of the Strikers is ''John Galt''. Other Strikers include: Hugh Akston, Francisco d'Anconia, Ragnar DanneskjÃļld, Richard Halley, and the Brakeman. Characters who join the Strikers in the course of the book include: Dagny Taggart, Ellis Wyatt, Hank Rearden, Dick McNamara, and Owen Kellogg.
6190 ==Mr. Thompson==
6191 The &quot;[[Head of State|Head of the State]],&quot; which essentially means that he's the [[President of the United States]], though he's never specifically referred to as such. In the world of ''Atlas Shrugged'' all Presidents and Prime Ministers are referred to simply as &quot;Head of the State&quot; and &quot;Mr. ____.&quot; This is because countries have been standardized as &quot;People's States&quot; which seem to share a common form of government. Thomspon's title can thus be seen as reflecting the fact that the US is in the process of evolving into one of these &quot;People's States.&quot; One of the Looters, he's not particularly intelligent and has a very undistinguished look. He knows politics, however, and is a master of public relations and back-room deals. Rand's notes indicate that she modelled him on President [[Harry S. Truman]].
6192
6193 ==Wesley Mouch==
6194 A member of the ''Looters'' and, at the beginning of the storyline, the incompetent lobbyist whom ''Hank Rearden'' reluctantly employs in [[Places in Atlas Shrugged|Washington]]. Initially Wesley Mouch is the least powerful and least significant of the Looters - the other members of this group feel they can look down upon him with impunity. Eventually he becomes the most powerful Looter, and the [[Places in Atlas Shrugged|country's]] economic dictator, thereby illustrating Rand's belief that a government-run economy places too much power in the hands of incompetent bureaucrats who would never have positions of similar influence in a private sector business. Wesley Mouch appears in [[Structure of Atlas Shrugged|section]] 131 and is mentioned in section 161.
6195
6196 ==See also==
6197 *[[Minor characters in Atlas Shrugged]]
6198
6199 [[Category:Atlas Shrugged]]
6200 [[Category:Lists of fictional characters|Atlas Shrugged characters]]</text>
6201 </revision>
6202 </page>
6203 <page>
6204 <title>Technology in Atlas Shrugged</title>
6205 <id>362</id>
6206 <revision>
6207 <id>33289648</id>
6208 <timestamp>2005-12-30T20:28:28Z</timestamp>
6209 <contributor>
6210 <username>Brianhe</username>
6211 <id>82697</id>
6212 </contributor>
6213 <comment>/* Galt's Motor */ prototype</comment>
6214 <text xml:space="preserve">'''Technology in Atlas Shrugged''', [[Ayn Rand]]'s novel includes a variety of technological products and devices. In addition to real world technology ([[aircraft]], [[automobile]]s, [[diesel engine]]s, [[phonograph record]]s, [[radio]]s, [[telephone]]s, [[television]], and [[traffic signals]]) [[Atlas Shrugged]] also includes various fictional technologies or fictional variants on real inventions.
6215
6216 {{spoilers}}
6217
6218 ==Fictional technology==
6219 Fictional inventions mentioned in the book include refractor rays (Gulch mirage), Rearden Metal, a sonic [[death ray]] (&quot;Project X&quot;), voice activated door locks (Gulch power station), motors powered by [[static electricity]], palm-activated door locks (Galt's NY lab), shale-oil drilling, and a [[nerve]]-induction [[torture]] machine.
6220
6221 ===Traffic Signals===
6222 Early on, the book mentions the &quot;screech&quot; of a traffic signal as it changes. This implies the older technology of mechanical traffic signals, the kind which displayed a pennant or flag indicating stop or go, and the inverse indicator in the opposite direction. Traffic signals using lights have been around for over 40 years, so anything of this type is very old compared to today.
6223
6224 ===Project X===
6225 Project X is an invention of the scientists at the state science institute, requiring tons of Rearden Metal. Basically, it is a &quot;death ray&quot;, and is capable of destroying anything. The scientists claim that the project will be used to preserve peace and squash rebellion. It is destroyed towards the end of the book, and emits a pulse of radiation that destroys everything in the surrounding area, including Cuffy Meigs and Dr. Stadler, as well as the Taggart Bridge.
6226
6227 ===Rearden Metal===
6228 Rearden metal is a [[Fictional_chemical_substance#Fictional_compounds_and_alloys|fictitious metal]] alloy invented by [[Characters in Atlas_Shrugged|Hank Rearden]]. It is lighter than traditional [[steel]] but stronger, and is to steel what steel was to [[iron]]. It is described as greenish-blue. Among its ingredients are iron and [[copper]].
6229
6230 Initially no one is willing to use Rearden metal because no one wants to stick his neck out and be the first to try it. Finally, [[Characters in Atlas_Shrugged|Dagny Taggart]] places an order for Rearden Metal when she needs rails to rebuild the dying [[Things in Atlas_Shrugged|Rio Norte Line]].
6231
6232 The first thing made from Rearden metal is a [[Things in Atlas_Shrugged|bracelet]].
6233
6234 Rearden metal is mentioned in [[Structure of Atlas Shrugged|sections]] 114, 121, 131, 148 and 161.
6235
6236 ===Galt's Motor===
6237 John Galt invented a new type of electrical apparatus described in the book as a [[motor]]. However, it does not operate like a motor in the common use of the word today: it is capable of harnessing, transforming and applying energy in many ways other than mechanical. Galt's Motor was capable of [[Radio jamming|jamming]] all [[radio receiver]]s on Earth, and completely destroying the contents of Galt's [[booby-trap]]ped laboratory without causing [[collateral damage|collateral structural damage]].
6238
6239
6240 Though Rand describes it as turning [[static electricity ]] into useful [[mechanical work]], its operation is more reminiscent of modern speculation about [[zero-point energy]].
6241
6242 Dagny discovers a discarded prototype of the motor and it is superficially described in [[Structure of Atlas Shrugged|section]] Part 1, Chapter 9. Galt shows Dagny the motor and describes it in [[Structure of Atlas Shrugged|section]] Part 3, Chapter 1.
6243
6244
6245 [[Category:Atlas Shrugged]]
6246 [[Category:Fictional technology|Atlas Shrugged]]</text>
6247 </revision>
6248 </page>
6249 <page>
6250 <title>Companies in Atlas Shrugged</title>
6251 <id>364</id>
6252 <revision>
6253 <id>32287258</id>
6254 <timestamp>2005-12-21T22:16:51Z</timestamp>
6255 <contributor>
6256 <username>Topynate</username>
6257 <id>85137</id>
6258 </contributor>
6259 <comment>removed NPOV and irrelevant additions to Taggart Transcontinental</comment>
6260 <text xml:space="preserve">'''Companies in Atlas Shrugged''', the [[Ayn Rand]] [[novel]], generally, are divided into two groups, these that are operated by sympathetic characters are given the name of the owner, while companies operated by evil or incompetent characters are given generic names. In [[Atlas Shrugged]] men who give their names to their companies all become [[Characters in Atlas Shrugged|Strikers]] in due time.
6261
6262 ==Amalgamated Switch and Signal==
6263 A company run by [[Characters in Atlas Shrugged|Mr. Mowen]] and located in [[Places in Atlas_Shrugged|Connecticut]]. They have supplied Taggart Transcontinental for generations. [[Characters in Atlas_Shrugged|Dagny Taggart]] orders [[Technology in Atlas_Shrugged|Rearden Metal]] switches from them.
6264
6265 Amalgamated Switch and Signal appears in [[Structure of Atlas Shrugged|section]] 171.
6266
6267 ==Associated Steel==
6268 Associated Steel is the company owned by [[Characters in Atlas_Shrugged|Orren Boyle]]. The company was started with just a few hundred-thousand dollars of [[Characters in Atlas Shrugged|Boyle's]] own money, and hundreds of millions of dollars in government grants. Boyle used this money to buy out his competitors, and now relies on influence peddling and political favors to run his business.
6269
6270 Associated Steel is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 114, 131 and 171.
6271
6272 ==Ayers Music Publishing Company==
6273 Ayers Music Publishing Company is the publisher of the music of [[Characters in Atlas_Shrugged|Richard Halley]]. [[Characters in Atlas_Shrugged|Dagny Taggart]] contacts [[Characters in Atlas_Shrugged|Mr. Ayers]] to inquire as to the existence of [[Things in Atlas_Shrugged|Halley's Fifth Concerto]].
6274
6275 Ayers Music Publishing Company is mentioned in [[Structure of Atlas Shrugged|section]] 114.
6276
6277 ==Barton and Jones==
6278 The company, located in [[Places in Atlas_Shrugged|Denver]], that supplies food for the workers rebuilding the [[Things in Atlas_Shrugged|Rio Norte Line]]. They go bankrupt in the middle of the project.
6279
6280 Barton and James is mentioned in [[Structure of Atlas Shrugged|section]] 171.
6281
6282 ==d'Anconia Copper==
6283 A copper and mining company founded by [[Minor Characters in Atlas Shrugged|Sebastian d'Anconia]] in [[Places in Atlas_Shrugged|Argentina]] during the time of the Inquisition. Each man who ran the company saw it grow by 10% in his lifetime, so by the time [[Characters in Atlas Shrugged|Francisco d'Anconia]] heads the company it is the largest in the world. His dream, from childhood, is to increase the size of the company by 100%.
6284
6285 d'Anconia Copper is mentioned in [[Structure of Atlas Shrugged|sections]] 152 and 171.
6286
6287 ==Hammond Motors==
6288 A car company in Colorado. They make the best cars on the market until the founder disappears.
6289
6290 [[Characters in Atlas_Shrugged|Hank Rearden]] buys a Hammond on his trip to [[Places in Atlas_Shrugged|Colorado]] in [[Structure of Atlas Shrugged|section]] 171.
6291
6292 ==Incorporated Tool==
6293 A company that is contracted to deliver drill heads to Taggart Transcontinental but who fail to do this. It is mentioned in [[Structure of Atlas Shrugged|section]] 171.
6294
6295 ==Phoenix-Durango==
6296 The Phoenix-Durango is an old, small railroad located in the Southwest run by [[Characters in Atlas_Shrugged|Dan Conway]] that has been insignificant for most of its existence. However, the Phoenix-Durango grows rapidly when [[Characters in Atlas_Shrugged|Ellis Wyatt]] revives the economy of [[Places in Atlas_Shrugged|Colorado]] and Taggart Transcontinental's [[Things in Atlas_Shrugged|Rio Norte Line]] fails to service Wyatt adequately. Later, [[Characters in Atlas_Shrugged|James Taggart]] conspires to get the Phoenix-Durango driven out of [[Places in Atlas_Shrugged|Colorado]] with the [[Things in Atlas_Shrugged|Anti-dog-eat-dog Rule]].
6297
6298 The Phoenix-Durango is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 114, 131 (alluded to), 132, 145, 146, 147 and 152.
6299
6300 ==Rearden Coal==
6301 A business founded by [[Characters in Atlas_Shrugged|Hank Rearden]] prior to the founding of Rearden Steel. It is mentioned in [[Structure of Atlas Shrugged|section]] 121.
6302
6303 ==Rearden Limestone==
6304 A business founded by [[Characters in Atlas_Shrugged|Hank Rearden]] prior to the founding of Rearden Steel. It is mentioned in [[Structure of Atlas Shrugged|section]] 121.
6305
6306 ==Rearden Ore==
6307 The first business founded by [[Characters in Atlas_Shrugged|Hank Rearden]]. It is mentioned in [[Structure of Atlas Shrugged|section]] 121.
6308
6309 ==Rearden Steel==
6310 A company founded by [[Characters in Atlas_Shrugged|Hank Rearden]] about ten years prior to the start of the story in the novel. Rearden bought an abandoned steel mill in [[Places in Atlas_Shrugged|Philadelphia]] at a time when all the experts thought that such a venture would be hopeless. He turned it into the most reliable and profitable steel company in the country.
6311
6312 As [[Characters in Atlas_Shrugged|Dagny Taggart]] struggles to save Taggart Transcontinental, she becomes increasingly dependent on Rearden Steel.
6313
6314 Rearden Steel is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 114, 121, 131 (alluded to), 161 and 162.
6315
6316 ==Summit Casting==
6317 A company in [[Places in Atlas_Shrugged|Illinois]] under contract to deliver rail spikes to Taggart Transcontinental. They go bankrupt before they can deliver, prompting [[Characters in Atlas_Shrugged|Dagny Taggart]] to fly to [[Places in Atlas_Shrugged|Chicago]] and buy the company to get it started again.
6318
6319 Summit Casting is mentioned in [[Structure of Atlas Shrugged|section]] 171.
6320
6321 ==Taggart Transcontinental==
6322 The fictional [[railroad]] run by [[Characters in Atlas Shrugged|Dagny Taggart]]. Her commitment to the railroad creates one of the book's major conflicts.
6323
6324 Taggart Transcontinental was founded by [[Characters in Atlas Shrugged|Nathaniel Taggart]] who lived three generations (or so) prior to Dagny's generation. It was built without any grants, loans, or favors from the government, and was the last railroad that was still owned and controlled by its founder's descendants. Its motto is, ''From Ocean to Ocean''.
6325
6326 The 'flagship' of Taggart Transcontinental is the [[Things in Atlas_Shrugged|Taggart Comet]] which runs from [[Places in Atlas Shrugged|New York]] to [[Places in Atlas_Shrugged|San Francisco]], and which has never been late.
6327
6328 ==United Locomotive Works==
6329 An incompetent company that is supposed to deliver Diesel engines to Taggart Transcontinental. The order is delayed in perpetuity, and the [[Characters in Atlas_Shrugged|president]] of the company refuses to ever give a straight answer as to why this is so.
6330
6331 The United Locomotive Works is mentioned in [[Structure of Atlas Shrugged|sections]] 133 and 141.
6332
6333 ==Wyatt Oil==
6334 The oil company run by [[Characters in Atlas_Shrugged|Ellis Wyatt]]. Wyatt's father had squeezed a living out of the oil fields in [[Places in Atlas_Shrugged|Colorado]], but when Ellis Wyatt took over the business took off. He discovered a technique for extracting oil from wells that had been abandoned as dried up. The success of Wyatt Oil that followed this discovery suddenly and unexpectedly turned [[Places in Atlas_Shrugged|Colorado]] into the leading economy in the country.
6335
6336 Wyatt Oil traditionally relied on Taggart Transcontinental's [[Things in Atlas_Shrugged|Rio Norte Line]] to ship its oil. But when that company could not grow fast enough to keep up with the booming [[Places in Atlas_Shrugged|Colorado]] economy, Wyatt started using the small but well-managed Phoenix-Durango instead. This prompted [[Characters in Atlas_Shrugged|James Taggart]] to make deals with his friends to drive the Phoenix-Durango out of [[Places in Atlas_Shrugged|Colorado]]. Afterwards, [[Characters in Atlas_Shrugged|Dagny Taggart]] has to rebuild the [[Things in Atlas_Shrugged|Rio Norte Line]] so it can supply transportation to Wyatt Oil - if she fails, the economy of [[Places in Atlas_Shrugged|Colorado]], and of the whole country, could collapse.
6337
6338 Wyatt Oil is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 132 and 171.
6339
6340 [[Category:Atlas Shrugged]]
6341 [[Category:Fictional companies|Atlas Shrugged]]</text>
6342 </revision>
6343 </page>
6344 <page>
6345 <title>Concepts in Atlas Shrugged</title>
6346 <id>365</id>
6347 <revision>
6348 <id>28929793</id>
6349 <timestamp>2005-11-21T20:43:06Z</timestamp>
6350 <contributor>
6351 <username>Iceberg3k</username>
6352 <id>50063</id>
6353 </contributor>
6354 <text xml:space="preserve">Some of the important '''concepts''' discussed in [[Atlas Shrugged]] include the ''Sanction of the Victim'' and the ''Theory of Sex''.
6355
6356 ===Sanction of the Victim===
6357
6358 The Sanction of the Victim is defined as &quot;the willingness of the good to suffer at the hands of the [[evil]], to accept the role of sacrificial victim for the '[[sin]]' of creating values.&quot;
6359
6360 The entire story of Atlas Shrugged can be seen as an answer to the question, what would happen if this sanction was revoked? When Atlas shrugs, relieving himself of the burden of carrying the world, he is revoking his sanction.
6361
6362 The concept is supposedly original in the thinking of [[Ayn Rand]] and is foundational to her moral theory. She holds that evil is a parasite on the good and can only exist if the good tolerates it. To quote from [[Atlas_Shrugged/Galts Speech|Galt's Speech]]: &quot;Evil is impotent and has no power but that which we let it extort from us&quot;, and, &quot;I saw that evil was impotent...and the only weapon of its triumph was the willingness of the good to serve it.&quot; Morality requires that we do not sanction our own victimhood, Rand claims. In adhering to this concept, Rand assigns virtue to the trait of [[selfishness]].
6363
6364 Throughout Atlas Shrugged, numerous characters admit that there is something wrong with the world but they cannot put their finger on what it is. The concept they cannot grasp is the sanction of the victim. The first person to grasp the concept is [[Characters in Atlas Shrugged|John Galt]], who vows to stop the motor of the world by getting the creators of the world to withhold their sanction.
6365
6366 We first glimpse the concept in [[Structure of Atlas Shrugged|section]] 121 when [[Characters in Atlas Shrugged|Hank Rearden]] feels he is duty-bound to support his family, despite their hostility towards him.
6367
6368 In [[Structure of Atlas Shrugged|section]] 146 the principle is stated explicitly by [[Characters in Atlas Shrugged|Dan Conway]]: &quot;I suppose somebody's got to be sacrificed. If it turned out to be me, I have no right to complain.&quot;
6369
6370 ===Theory of Sex===
6371
6372 In rejecting the traditional [[Christianity|Christian]] altruist [[moral code]], Rand also rejects the sexual code that, in her view, is a [[logical implication]] of [[altruism]].
6373
6374 Rand introduces a theory of sex in ''Atlas Shrugged'' which is purportedly implied by her broader ethical and psychological theories. Far from being a debasing animal instinct, sex is the highest celebration of our greatest values. Sex is a physical response to intellectual and spiritual values&amp;mdash;a mechanism for giving concrete expression to values that could otherwise only be experienced in the abstract.
6375
6376 One is sexually attracted to those who embody one's values. Those who have base values will be attracted to baseness, to those who also have ignoble values. Those who lack any clear purpose will find sex devoid of meaning. People of high values will respond sexually to those who embody high values.
6377
6378 That our [[sexual desire]] is a response to the embodiment of our values in others is a radical and original theory. However, even those who are sympathetic to this theory have criticized it as being incomplete. For instance, since according to Rand the economy is also such an expression of values, and since it is always possible to encounter someone who embodies one's values more completely, this would seem to make [[family]] undesirable. (Indeed, Rand treats &quot;family&quot; as a sort of trap.) Furthermore, [[promiscuity]], [[prostitution]], and an endless [[round-robin]] of &quot;values-driven&quot; sexual relationships would become inevitable. From this viewpoint, one could say that [[Aldous Huxley]] portrayed the ideal sexual state: ''[[Brave New World]]'' features humans who are incapable of deviating from their caste-oriented &quot;values&quot;, which naturally include a code of sexual desirability.
6379
6380 Her sexual theory is illustrated in the contrasting relationships of [[Characters in Atlas Shrugged|Hank Rearden]] with [[Characters in Atlas Shrugged|Lillian Rearden]] and [[Characters in Atlas Shrugged|Dagny Taggart]], and later with Dagny Taggart and [[Characters in Atlas Shrugged|John Galt]].
6381
6382 Other important illustrations of this theory are found in:
6383
6384 [[Structure of Atlas Shrugged|Section]] 152 - recounts Dagny's relationship with [[Characters in Atlas Shrugged|Francisco d'Anconia]].
6385
6386 [[Structure of Atlas Shrugged|Section]] 161 - recounts Hank and Lillian Rearden's courtship, and Lillian's attitude towards sex.
6387
6388 [[Category:Atlas Shrugged]]</text>
6389 </revision>
6390 </page>
6391 <page>
6392 <title>Places In Atlas Shrugged</title>
6393 <id>366</id>
6394 <revision>
6395 <id>15899096</id>
6396 <timestamp>2003-03-13T15:37:38Z</timestamp>
6397 <contributor>
6398 <username>Ams80</username>
6399 <id>7543</id>
6400 </contributor>
6401 <minor />
6402 <comment>Making redirect</comment>
6403 <text xml:space="preserve">#REDIRECT [[Places in Atlas Shrugged]]</text>
6404 </revision>
6405 </page>
6406 <page>
6407 <title>Things in Atlas Shrugged</title>
6408 <id>368</id>
6409 <revision>
6410 <id>35151715</id>
6411 <timestamp>2006-01-14T15:11:15Z</timestamp>
6412 <contributor>
6413 <ip>80.177.190.150</ip>
6414 </contributor>
6415 <comment>/* John Galt Legends */</comment>
6416 <text xml:space="preserve">This is a list of general items in [[Ayn Rand]]'s ''[[Atlas Shrugged]]''.
6417
6418 {{spoiler}}
6419
6420 ==Anti-dog-eat-dog Rule==
6421
6422 The Anti-dog-eat-dog Rule is passed by the National Alliance of Railroads in [[Structure of Atlas Shrugged|section]] 145, allegedly to prevent &quot;destructive competition&quot; between [[railroad]]s. The rule gives the Alliance the authority to forbid competition between railroads in certain parts of the country. It was crafted by [[Characters in Atlas_Shrugged#Orren Boyle|Orren Boyle]] as a favor for [[Characters in Atlas_Shrugged#James Taggart|James Taggart]], with the purpose of driving the [[Companies in Atlas_Shrugged#Phoenix-Durango|Phoenix-Durango]] out of [[Places in Atlas_Shrugged#Colorado|Colorado]].
6423
6424 ==Bracelet==
6425
6426 The very first thing made from ''Rearden Metal'' is a bracelet. The bracelet is used to illustrate Rand's [[Concepts in Atlas Shrugged#Theory of Sex|Theory of Sex]].
6427
6428 The bracelet symbolizes the value created by [[Characters in Atlas_Shrugged#Hank Rearden|Hank Rearden's]] long struggle to invent Rearden Metal. When he gives it to [[Characters in Atlas_Shrugged#Lillian Rearden|Lillian Rearden]] as a present in section 121; she says, &quot;It's fully as valuable as a piece of railroad rails.&quot; However, Lillian fully grasps the significance of the gift; her snide remark is her way of denigrating her husband's ethos.
6429
6430 In section 161, Lillian wears this bracelet at a party thrown on her anniversary. She makes fun of it all night long, and when [[Characters in Atlas_Shrugged#Dagny Taggart|Dagny Taggart]] hears Lillian say she would gladly trade it for a common diamond bracelet, Dagny takes her up on it.
6431
6432 Lillian later asks for it back upon realizing her power over her husband was slowly diminishing. Dagny denies the offer.
6433
6434 The bracelet appears in [[Structure of Atlas Shrugged|sections]] 121 and 161.
6435
6436 ==Cub Club==
6437
6438 A night club in [[Places in Atlas_Shrugged|New York]]. When [[Characters in Atlas_Shrugged#Francisco d'Anconia|Francisco d'Anconia]] returns to New York in [[Structure of Atlas Shrugged|section]] 141, he explains he came because of a hat-check girl at the Cub Club and the liverwurst at Moe's Delicatessen on Third Avenue.
6439
6440 ==Equalization of Opportunity Bill==
6441
6442 A bill designed by the [[Characters in Atlas Shrugged#Looters|Looters]] that proposes to limit the number of businesses any one person can own to one. It is aimed primarily at [[Characters in Atlas Shrugged#Hank Rearden|Hank Rearden]], who uses [[Companies in Atlas_Shrugged#Rearden Ore|Rearden Ore]] to guarantee [[Companies in Atlas_Shrugged#Rearden Steel|Rearden Steel]] with a supply of iron ore. By passing this Bill, the Looters can seize Rearden's other businesses for themselves, and then deny him the iron he needs to run his steel mills.
6443
6444 The Looters claim the Bill is meant to give a chance to the little guy.
6445
6446 The Equalization of Opportunity Bill is appears in [[Structure of Atlas Shrugged|section]] 161.
6447
6448 ==Galt's Gulch==
6449
6450 A secluded refuge in a valley of Colorado where the men of ability have retreated after relinquishing participation in American society. Nicknamed &quot;Galt's Gulch&quot; by its inhabitants, it is in fact the property of &quot;Midas&quot; Mulligan, one of the early strikers to follow John Galt's call. This call was to the great men of mind and action to abandon the increasingly slave-state inclinations of a decaying United States - to go on strike - thereby withdrawing the only thing supporting the parasites and looters.
6451
6452 Sarcastically nicknamed Midas in the press because everything he seemed to touch turned to gold, Mulligan adopted the nickname during his explosive investment career before dropping out of sight. He had purchased this land among his far-ranging speculative endeavors, and subsequently retreated to it upon his disappearance. Other strikers soon followed him there, including John Galt, renting or buying land for summer retreats as a respite from continuing their search for fellow strikers among the increasingly collapsing American society. Eventually, a society develops in Galt's Gulch as more people live there year-round as the outside world becomes virtually unsafe to visit.
6453
6454 We are introduced to Galt's Gulch in the final section of the Novel, in the first chapter, entitled Atlantis. The people live with each other in completely free society and embody everything which is the thesis of the Novel, the appropriate values for a society of Mankind: philosophical, moral, economic, legal, aesthetic, and sexual, among others too numerous to mention.
6455
6456 We find industrious, ambitious, happy people continuing their chosen fields of endeavor without the yokes of any taxation or regulation. Conversely, there is a reverence for private property; everything transacted is paid for with the re-invented currency of solid gold coin struck from the reserves of Midas Mulligan's bank which now resides in the valley. The townspeople receive services from the various heroes we have met throughout the Novel, who all now reside and produce in the valley. They purchase power inexpensively from Galt and his invention of the static electricity motor, maintain their anonymity from the outside world via Galt's invention of the air-wave reflection device (giving the view from above the camouflage of reflected images of other mountainsides nearby), and some attend Galt's lectures on Physics, where he explains his discoveries on new fundamental laws and applied mathematics. The people purchase medical treatment from the care of Dr. Hendricks, who uses his invention of a portable [[X-ray]] machine to initially diagnose Dagny Taggart upon her crash landing into the valley, attend concerts of new musical compositions of Richard Halley who has continued to compose in the Valley, acquire raw materials from the efforts of Francisco D'Anconia's excavations around the valley, attend philosophy lectures from the now-retired pirate Ragnar DanneskjÃļld, receive loans from Midas Mulligan, etc.
6457
6458 Rand's description of Galt's Gulch was inspired by a visit she and her husband Frank O'Connor took to [[Ouray, Colorado]] while researching Colorado for the novel.
6459
6460 ==Halley's Fifth Concerto==
6461
6462 [[Characters in Atlas Shrugged#Richard Halley|Richard Halley]] disappeared after he had written only four concertos. In [[Structure of Atlas Shrugged|section]] 112, [[Characters in Atlas Shrugged#Dagny Taggart|Dagny Taggart]], an enthusiastic fan of Halley's music, hears an unfamiliar theme being whistled by a [[Characters in Atlas Shrugged#Brakeman|brakeman]] on the Taggart Comet. She asks him what it is; he responds Halley's Fifth Concerto. When Dagny says Halley only wrote four concertos, the brakeman says he made a mistake and denies knowing what the song was.
6463
6464 Later, Dagny calls [[Minor characters in Atlas Shrugged|Mr. Ayers]] to find out if Halley wrote a fifth concerto. Ayers says Halley did not.
6465
6466 Halley's Fifth Concerto is mentioned in [[Structure of Atlas Shrugged|sections]] 112, 114 and 152.
6467
6468 ==Halley's Fourth Concerto==
6469
6470 The last thing [[Characters in Atlas Shrugged#Richard Halley|Richard Halley]] wrote before he disappeared. It is a song of rebellion and defiance that seemed to say agony and suffering were not necessary. [[Characters in Atlas Shrugged#Dagny Taggart|Dagny Taggart]] listened to this piece in [[Structure of Atlas Shrugged|section]] 141.
6471
6472 It is mentioned in [[Structure of Atlas Shrugged|section]] 152.
6473
6474 ==''Heaven's In Your Backyard''==
6475
6476 A film. [[Characters in Atlas Shrugged#Mort Liddy|Mort Liddy]] wrote the score, using a bastardized version of ''Halley's Fourth Concerto''. It is mentioned in [[Structure of Atlas Shrugged|section]] 161.
6477
6478 ==John Galt Legends==
6479
6480 Since everyone across the country is asking, &quot;Who is John Galt?&quot;, it is not surprising that some people have come up with answers. A number of John Galt Legends are told, each of which, ironically, turns out to be true, at least symbolically.
6481
6482 '''''Legend 1''''' ([[Structure of Atlas Shrugged|section]] 161): A [[Minor characters in Atlas Shrugged|spinster]] at [[Characters in Atlas Shrugged#Lillian Rearden|Lillian Rearden's]] party tells [[Characters in Atlas Shrugged#Dagny Taggart|Dagny]] the story. John Galt was a man of inestimable wealth who found the sunken island of [[Atlantis]] while fighting the worst storm ever wreaked upon the world. The sight was so beautiful that, having seen it, he could never go back to the world, so he sank his ship and took his fortune down with him.
6483
6484 The actual John Galt was a man who created something of inestimable value, a new motor, and who discovered the secret to what was wrong with the world while fighting the most evil social philosophy ever put into practice. The world he envisioned was so beautiful that he refused to live in the world that was, and disappeared, taking the secret of motor with him.
6485
6486 Atlantis, the Isles of the Blessed, is a place where no one could enter except those who had the spirit of a hero. Described in these terms, it is the same as ''Galt's Gulch''.
6487
6488 ==Moe's Delicatessen==
6489
6490 A delicatessen in [[Places in Atlas Shrugged#New York|New York]]. When [[Characters in Atlas Shrugged#Francisco d'Anconia|Francisco d'Anconia]] returns to New York in [[Structure of Atlas Shrugged|section]] 141, he explains he came because of a hat-check girl at the ''Cub Club'' and the liverwurst at Moe's Delicatessen on Third Avenue.
6491
6492 ==National Alliance of Railroads==
6493
6494 An industry group formed to promote the welfare of the industry as a whole, requiring members to sacrifice their individual interests for the common good. [[Characters in Atlas_Shrugged#Orren Boyle|Orren Boyle]] has friends on the National Alliance of Railroads, and he gets them to support the Anti-dog-eat-dog Rule, which uses a string of pretenses to drive the [[Companies in Atlas_Shrugged#Phoenix-Durango|Phoenix-Durango]] out of [[Places in Atlas_Shrugged#Colorado|Colorado]].
6495
6496 The National Alliance of Railroads is mentioned in [[Structure of Atlas Shrugged|sections]] 131, 145 and 146.
6497
6498 ==National Council of Metal Industries==
6499
6500 An industry group that uses political pull to get its way. [[Characters in Atlas Shrugged#James Taggart|James Taggart]] has friends on the National Council of Metal Industries, and he gets them to support legislation that will hurt [[Companies in Atlas_Shrugged#Rearden Steel|Rearden Steel]] and help [[Companies in Atlas_Shrugged#Associated Steel|Associated Steel]].
6501
6502 The National Council of Metal Industries is mentioned in [[Structure of Atlas Shrugged|section]] 131.
6503
6504 ==Patrick Henry University==
6505
6506 The most prestigious university in the world. It was attended by [[Characters in Atlas Shrugged|John Galt]], [[Characters in Atlas Shrugged#Francisco d'Anconia|Francisco d'Anconia]], and [[Characters in Atlas Shrugged#Ragnar_Danneskj.F6ld|Ragnar Danneskjold]], where they met and became friends. [[Characters in Atlas Shrugged#Hugh Akston|Hugh Akston]] and [[Characters in Atlas Shrugged#Robert Stadler|Robert Stadler]] taught there. It is located in [[Places in Atlas_Shrugged|Cleveland]].
6507
6508 ==Rio Norte Line==
6509
6510 A branch of [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental]] that runs from [[Places in Atlas_Shrugged|Cheyenne, Wyoming]] to [[Places in Atlas_Shrugged|El Paso, Texas]].
6511
6512 It is mentioned in [[Structure of Atlas Shrugged|sections]] 111, 114, 131 (alluded to), 132, 133, 141, 146, 147 and 148.
6513
6514 ==Rockdale Station==
6515
6516 A station on the [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental]] line, located five miles from the Taggart estate and overlooking the [[Places in Atlas_Shrugged|Hudson River]]. It was the site of [[Characters in Atlas_Shrugged#Dagny Taggart|Dagny Taggart's]] first job with the railroad, night operator, at age 16.
6517
6518 It appears in [[Structure of Atlas Shrugged|section]] 152.
6519
6520 ==San Sebastian==
6521
6522 A community built to house the workers of the ''San Sebastian Mines'' and their families. As it turns out, the houses, roads, and everything of practical value is built so poorly that the community can be expected to fall apart within a year or two. Only the church was built to last.
6523
6524 It is mentioned in [[Structure of Atlas Shrugged|section]] 152.
6525
6526 ==San Sebastian Line==
6527
6528 A branch of [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental]] that serves the ''San Sebastian Mines'' in [[Places in Atlas_Shrugged|Mexico]].
6529
6530 The mines were developed by [[Characters in Atlas_Shrugged#Francisco d'Anconia|Francisco d'Anconia]] and attracted significant investments from [[Characters in Atlas_Shrugged#James Taggart|James Taggart]] and [[Characters in Atlas Shrugged#Orren Boyle|Orren Boyle]], who assumed Francisco could be counted on to deliver a winner.
6531
6532 The San Sebastian Line is nationalized by the Mexican government soon after completion.
6533
6534 When it is nationalized in [[Structure of Atlas Shrugged|section]] 142, it is referred to as the San Sebastian Railroad.
6535
6536 It is mentioned in [[Structure of Atlas Shrugged|sections]] 114, 131, 132, 133, 142, 143 and 152.
6537
6538 ==San Sebastian Mines==
6539
6540 San Sebastian Mines is a copper mining project in [[Places in Atlas_Shrugged|Mexico]] founded by [[Characters in Atlas_Shrugged#Francisco d'Anconia|Francisco d'Anconia]] and named after his ancestor [[Minor characters in Atlas_Shrugged|Sebastian d'Anconia]]. Francisco's reputation as a businessman is so great that investors flock to him, begging to invest money in the enterprise. Investors include [[Characters in Atlas_Shrugged#James Taggart|James Taggart]] and [[Characters in Atlas_Shrugged#Orren Boyle|Orren Boyle]]. Taggart goes so far as to build a new branch of [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental]], the ''San Sebastian Line'', to serve the mines, sinking $30 million into the project. When the development of the mines appears complete, the Mexican government nationalizes them as well as the ''San Sebastian Line'', only to discover there is no copper and there never was.
6541
6542 When Taggart tells Francisco he considers the Mines a rotten swindle ([[Structure of Atlas Shrugged|section]] 161), Francisco explains that Taggart should be pleased with the way he ran the mines. He says he put into practice those moral precepts that were accepted around the world. The world says it is evil to pursue a profit &amp;mdash; he got no profit from the worthless mines. The world says the purpose of an enterprise is not to produce, but to give a livelihood to its employees &amp;mdash; it produced nothing, but created jobs that would never have existed if one was only concerned with developing a real mine. The world says the owner is an exploiter and the workers do all the real work &amp;mdash; he left the enterprise entirely in the hands of the workers and did not burden anyone with his presence. The world says need is more important than ability &amp;mdash; he hired a mining specialist who needed a job very badly, but had no ability.
6543
6544 In short, the San Sebastian Mines were an illustration of what happens when this moral code is put into practice, and a warning of what will soon happen to the world as a whole.
6545
6546 The San Sebastian Mines appear in [[Structure of Atlas Shrugged|sections]] 111, 131, 132, 142, 151, 152 and 161.
6547
6548 ==Taggart Building==
6549
6550 A skyscraper in [[Places in Atlas_Shrugged|New York]], the headquarters of [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental]], and the location of the Taggart Terminal.
6551
6552 ==Taggart Comet==
6553
6554 The Taggart Comet is [[Companies in Atlas_Shrugged#Taggart Transcontinental|Taggart Transcontinental's]] flagship train. It runs from [[Places in Atlas_Shrugged|New York]] to [[Places in Atlas_Shrugged|San Francisco]], and has never been late.
6555
6556 The Taggart Comet appears in [[Structure of Atlas Shrugged|sections]] 112, 113 and 152.
6557
6558 ==The Future==
6559
6560 See [[Characters in Atlas Shrugged#Bertram Scudder|Bertram Scudder]].
6561
6562 ==''The Heart Is A Milkman''==
6563
6564 ''The Heart is a Milkman'' is a novel being written by [[Characters in Atlas Shrugged#Balph Eubank|Balph Eubank]]. It is about the central fact of human existence, frustration. Eubank says he will dedicate it to [[Characters in Atlas Shrugged#Lillian Rearden|Lillian Rearden]].
6565
6566 It is mentioned in [[Structure of Atlas Shrugged|section]] 161.
6567
6568 ==The Octopus==
6569
6570 See [[Characters in Atlas Shrugged#Bertram Scudder|Bertram Scudder]].
6571
6572 ==''The Vulture Is Molting''==
6573
6574 A best-selling novel that captures the spirit of the times, ''The Vulture Is Molting'' is &quot;A penetrating study of a businessman's greed. A fearless revelation of man's depravity.&quot; The book is mentioned in [[Structure of Atlas Shrugged|section]] 141 as one of the artifacts of [[popular culture]] that depresses [[Characters in Atlas_Shrugged#Dagny Taggart|Dagny Taggart]] with its baseness.
6575
6576 ==Wayne-Falkland Hotel==
6577
6578 A luxurious hotel in [[Places in Atlas_Shrugged|New York]], it is considered the best hotel left in the world. It is where [[Characters in Atlas_Shrugged#Francisco d'Anconia|Francisco d'Anconia]] stays when he is in town. It was also the scene of [[Characters in Atlas_Shrugged#Dagny Taggart|Dagny Taggart's]] debut ball when she was seventeen.
6579
6580 It may be based on the Waldorf-Astoria Hotel in New York City.
6581
6582 The Wayne-Falkland Hotel is mentioned in [[Structure of Atlas Shrugged|sections]] 141, 151 and 152.
6583
6584 ==Wyatt Oil Fields==
6585
6586 The Wyatt Oil Fields are in [[Places in Atlas_Shrugged|Colorado]]. They are a bunch of old, abandoned oil wells that were revived by a new technique invented by [[Characters in Atlas_Shrugged#Ellis Wyatt|Ellis Wyatt]]. This has almost single-handedly revitalized the economy of [[Places in Atlas_Shrugged|Colorado]].
6587
6588 The Wyatt Oil Fields appear in [[Structure of Atlas Shrugged|sections]] 111 and 161.
6589
6590 [[Category:Atlas Shrugged]]
6591 [[Category:Lists of fictional things]]</text>
6592 </revision>
6593 </page>
6594 <page>
6595 <title>Topics of note in Atlas Shrugged</title>
6596 <id>369</id>
6597 <revision>
6598 <id>38560634</id>
6599 <timestamp>2006-02-07T02:58:11Z</timestamp>
6600 <contributor>
6601 <username>Ds13</username>
6602 <id>43805</id>
6603 </contributor>
6604 <minor />
6605 <comment>reduce generalization about lack of lying</comment>
6606 <text xml:space="preserve">===Atlas===
6607 As told in ''[[Atlas Shrugged]]'', Atlas carried the world on his shoulders. But in the [[Greek Mythology|Greek Myths]], the Titan [[Atlas (mythology)|Atlas]] stands on the earth and holds up the sky. In the statues that represent Atlas, the big round thing on his back represents the heavens, which, because of the apparent circular motion of the planets around the earth, were conceived of as being round. Some tellings of the Atlas myth have him carrying both the earth and the heavens on his back, but this appears to be a modern retelling; further research might confirm this.
6608
6609 ===Character names===
6610 Some of the character names are, or appear to be, puns, or have some other significance. (See also [[Characters in Atlas Shrugged]].)
6611 When asked why so many of her names have syllables with many hard consonants like dag, tag, den, stad, Rand said that she just liked those sounds.
6612
6613 *'''Ragnar Danneskjold''' - sounds like 'Dane's Gold', a tribute paid by the medieval English to the Vikings to bribe them into being peaceful. (However, note &quot;skjold&quot; means shield, not gold.) However, the hero of [[Victor Hugo]]'s first novel, ''Hans of Iceland'' becomes the first of the Counts of DanneskjÃļld. In the 1970's, Rand told Marsha Familaro Enright that her use of this name was not plagiarism because there really were Counts of DanneskjÃļld.
6614 *'''Robert Stadler''' - sounds like the German word for state, Staat. Dr. Stadler is a statist, in that he believes it appropriate and necessary for the state to fund scientific research.
6615 *'''Francisco d'Anconia''' - Rand's husband was Frank O'Connor.
6616 *'''John Galt''' - the name of a 19th century Scottish novelist, though this is apparently coincidental. Galt is close to 'Geld' and 'gold'. The name was probably used because it had to be such that it could become proverbial&amp;mdash;this would not be possible with a long, awkward name.
6617 *'''Wesley Mouch''' - Mouch is exactly what his name sounds like, a mooch. He has no real virtue or skill, but somehow becomes a powerful figure.
6618
6619 ===Crime===
6620 Common street crime is conspicuously absent in ''Atlas Shrugged''. Characters walk the streets with no thought of being mugged or attacked.
6621
6622 ===Historical figures and events===
6623 ''Atlas Shrugged'' takes place in a world with a different history from our own, but there are some historical figures and events that are mentioned.
6624
6625 *[[Aristotle]] ([[Structure of Atlas Shrugged|section]] 152): Francisco d'Anconia wrote a thesis on the influence of Aristotle's theory of the Immovable Mover.
6626 *[[Dark Ages]] ([[Structure of Atlas Shrugged|section]] 161): Ragnar Danneskjold's piracy is likened to something out of the Dark Ages.
6627 *[[Inquisition]] ([[Structure of Atlas Shrugged|section]] 152): Sebastian d'Anconia flees Spain to escape persecution under the Inquisition.
6628 *[[Middle Ages]] ([[Structure of Atlas Shrugged|section]] 161): It is said that Ragnar Danneskjold hides in the Norwegian fjords as the Vikings did in the Middle Ages.
6629 *[[Nero]] ([[Structure of Atlas Shrugged|section]] 152): Francisco d'Anconia compares himself to the Emperor Nero.
6630 *[[Patrick Henry]] ([[Structure of Atlas Shrugged|section]] 152): The [[eponym]] of Patrick Henry University.
6631 *[[Vikings]] ([[Structure of Atlas Shrugged|section]] 161): It is said that Ragnar Danneskjold hides in the Norwegian fjords as the Vikings did in the Middle Ages.
6632
6633 ===Humor===
6634 In [[Structure of Atlas Shrugged|section]] 152, Francisco cracks that the Mexican government was promising a roast of pork every Sunday for every man, woman, child and abortion.
6635
6636 In [[Structure of Atlas Shrugged|section]] 152, Francisco lists the various buildings constructed for the workers of the San Sebastian Mines, and notes how they are all poorly built and can be expected to collapse, except for the church. &quot;The church, I think, will stand. They'll need it,&quot; he quips. Since the other things are things of value&amp;mdash;houses, roads, etc.&amp;mdash;it is ironic that only the church was built to last; to Rand and her heroes, a church is of no real value.
6637
6638 Almost every nation in the world except the United States is referred to as &quot;The People's State of...&quot;, and they are all, apparently, the recipients of relief supplies from the United States. In conversation, people casually refer to them as &quot;The People's State of...&quot; rather than just, say, France or Norway. It is obvious that people would not refer to countries by their formal names in casual conversation&amp;mdash;we don't call Canada &quot;The Dominion of Canada&quot; or Germany &quot;The Federal Republic of Germany&quot;&amp;mdash;so by having her characters do this Rand is exercising her dry wit.
6639
6640 ===Lying===
6641 The sympathetic characters of ''Atlas Shrugged'' generally do not tell lies. With the following exceptions, even when they are clearly trying to conceal something, they do not rely on overt falsehood, even when it is obvious that they could do so without being found out.
6642
6643 *In section 112 Brakeman tells Dagny Taggart he does not recall the name of the song he was whistling or where he heard it.
6644 *In section 141 Francisco d'Anconia tells the press he came to [[Places in Atlas_Shrugged|New York]] because of a hat check girl and the liverwurst at [[Things in Atlas_Shrugged|Moe's Delicatessen]].
6645 *In section 151 we learn Dagny Taggart once lied to her mother about a cut to her lip that Francisco had given her. This was the only lie she ever told.
6646 *In section 152 Dagny Taggart asks Francisco if Richard Halley has written a fifth concerto. He is evasive and tells her that Halley has stopped writing. Is this a lie?
6647 *In section 161, Hank Rearden tells Dagny that he was the one who invited Bertram Scudder to the Rearden's anniversary party. It was actually Lillian who invited him, and Rearden had been furious about it.
6648 *In part 2/chapter 9, Eddie Willers tells Dagny Taggart that his hesitation and uncertainty is caused by the illegality of her directions. In fact, Eddie was shocked by the evidence and thus realization of her affair with Hank Rearden.
6649
6650 ===People's States===
6651 Almost every nation that is mentioned, other than the [[Places in Atlas_Shrugged|United States]], is referred to as a &quot;People's State&quot;. These include:
6652
6653 * The People's State of [[Places in Atlas_Shrugged|England]]
6654 * The People's State of [[Places in Atlas_Shrugged|France]]
6655 * The People's State of [[Places in Atlas_Shrugged|India]]
6656 * The People's State of [[Places in Atlas_Shrugged|Mexico]]
6657 * The People's State of [[Places in Atlas_Shrugged|Norway]]
6658 * The People's State of [[Places in Atlas_Shrugged|Portugal]]
6659 * The People's State of [[Places in Atlas_Shrugged|Turkey]]
6660
6661 The leaders of these countries are given the title the &quot;Head of the People's State,&quot; and called &quot;Mr._____&quot; (or &quot;Senor&quot;____). The President of the United States is refered to as &quot;Mr. Thompson&quot; and called the &quot;Head of the State,&quot; which seems to imply the US is on its way to becoming a People's State as well.
6662
6663 ===Religion===
6664 In [[Structure of Atlas Shrugged|section]] 152 Francisco tells Dagny he named the [[Things in Atlas_Shrugged|San Sebastian Mines]] after his ancestor Sebastian d'Anconia, a man they both honor deeply. This, to Dagny, is blasphemy&amp;mdash;the only kind of blasphemy she understands.
6665
6666 ===Social classes===
6667 Rand is sometimes called an elitist. This claim is probably accurate if we allow for the fact that Rand had her own standard of eliteness&amp;mdash;throughout ''Atlas Shrugged'', virtue is equated with creative ability. It is, however, worth noting that in ''Atlas Shrugged'', there are no characters with creative ability which do not function as [[author surrogate]] characters (most notably Dagny Taggart); conversely, all of the [[Straw man|characters]] which disagree with the author are unintelligent and creatively bankrupt, and usually actively destructive. Compare to the real world, where scientists, inventors, artists and industrialists often have wildly varying and strongly conflicting desires and opinions.
6668
6669 Different social classes are represented among both the heroes and the villains of ''Atlas Shrugged''. Among the heroes, John Galt and Hank Rearden are from working class backgrounds, while Dagny Taggart and Francisco d'Anconia are from wealthy families. Among the villains, Fred Kinnan is from a working class background, while James Taggart and Betty Pope are from wealthy families.
6670
6671 [[Category:Atlas Shrugged]]</text>
6672 </revision>
6673 </page>
6674 <page>
6675 <title>Atlas Shrugged</title>
6676 <id>568</id>
6677 <revision>
6678 <id>42127150</id>
6679 <timestamp>2006-03-04T00:18:59Z</timestamp>
6680 <contributor>
6681 <ip>72.141.37.94</ip>
6682 </contributor>
6683 <text xml:space="preserve">[[Image:Atlas shrugged cover.jpg|thumbnail|200px|''Atlas Shrugged'' cover by [[Nick Gaetano]]. ]]
6684
6685 '''''Atlas Shrugged''''' is a novel by Russian-born writer and philosopher [[Ayn Rand]], first published in [[1957]] in the [[United States|USA]], and Rand's last work of fiction before concentrating her writings exclusively on philosophy. Most regard ''Atlas Shrugged'' as Rand's most famous work, her ''tour de force'', and most [[Objectivist philosophy|Objectivists]] hold it to be, objectively (as in factually), the greatest novel of all time. Its theme (as stated by Rand) is &quot;the importance of the individual's reasoning mind in human life.&quot;
6686
6687 It is a highly philosophical and [[allegory|allegorical]] story that deals with themes of Rand's own [[Objectivism]], though she was not yet known as a philosopher when it was written. Whether or not she had philosophical intentions, and to what extent or sense the novel is an allegory, are controversial subjects. In fact, the ideas behind the book, and their extremism, as well as its relative popularity have made it one of the most controversial novels of the [[20th century]]. It is also one of the [[List_of_longest_novels|longest novels]] ever written, totaling one-thousand pages or more (depending on the publication).
6688
6689 {{spoiler}}
6690
6691 ==Philosophy and writing==
6692
6693 The theme of ''Atlas Shrugged'' is that independent, rational thought is the motor that powers the world. In the book, &quot;men of the mind&quot; go on [[Strike action|strike]], allowing the collapse of what only they hold together &amp;#8212; a peaceful cohesiveness Rand claims that humans, particularly those whose productive work comes from mental effort, may create wherever forceful human interference is absent. Given no alternative, they remove themselves from the &quot;looters.&quot; The title is an analogy: the rational men, like the Greek God Atlas, hold the world on their shoulders; in the form of a strike, they have chosen to 'shrug.' The book is rooted in [[Objectivist philosophy|Objectivism]], the philosophical system founded by Rand.
6694
6695 Rand suggests that society stagnates when independence and individual achievement are discouraged or demonized, and that, inversely, a society will become more prosperous as it allows, encourages, and rewards independence and individual achievement. Rand believed that independence flourishes to the extent that people are free, and that achievement is rewarded best when [[private property]] is respected strictly. She advocated [[Laissez-faire|laissez-faire capitalism]] as the [[political system]] that is most consistent with these beliefs. These considerations make ''Atlas Shrugged'' a highly political book, especially in its portrayal of [[fascism]], [[socialism]] and [[communism]], or indeed any form of state intervention in societal affairs, as fatally flawed. However, Rand claimed that it is not a ''fundamentally'' political book, but that the politics portrayed in the novel are a result of her attempt to display her image of the ideal man and the position of the human mind in society.
6696
6697 Rand argues that independence and individual achievement drive the world, and should be embraced. Her worldview requires a &quot;[[rationality|rational]]&quot; [[moral code]]. She disputes the notion that [[self-sacrifice]] is a virtue, and is similarly dismissive of human faith in a [[divinity|god]] or higher being. The book positions itself against [[Christianity]] specifically, often directly within the characters' dialogue.
6698
6699 == Setting ==
6700
6701 Exactly when ''Atlas Shrugged'' is meant to take place is kept deliberately vague. In [[Wikibooks:Structure of Atlas Shrugged|section]] 152, the population of [[Places in Atlas_Shrugged|New York City]] is given as 7 [[million]]. The historical New York City reached 7 million people in the [[1930s]], which might place the novel sometime after that. There are many early [[20th century]] technologies available, but the political situation is clearly different from actual history. One interpretation is that the novel takes place a hundred (or perhaps ''hundreds'') of years in the future, implying that since the world lapsed into its socialistic morass, a global-wide stagnation has occurred in technological growth, population growth, and indeed growth of ''any'' kind; the wars, economic depressions, and other events of the 20th century would be a distant memory to all but [[scholar]]s and [[academician]]s. This would be in line with Rand's ideas and commentary on other novels depicting utopian and dystopian societies. Furthermore, this is also in line with an excerpt from a 1964 interview with ''Playboy'' magazine in which Rand states &quot;What we have today is not a capitalist society, but a mixed economy -- that is, a mixture of freedom and controls, which, by the presently dominant trend, is moving toward dictatorship. The action in ''Atlas Shrugged'' takes place at a time when society has reached the stage of dictatorship. When and if this happens, that will be the time to go on strike, but not until then.&quot;, thus implying that her novel takes place at some point in the future. The concept of societal stagnation in the wake of collectivist systems is central to the plot of another of Rand's works, ''[[Anthem (novella)|Anthem]]''.
6702
6703 All countries outside the US have become, or become during the novel, &quot;People's States&quot;. There are many examples of early 20th century [[Technology in Atlas_Shrugged|technology]] in ''Atlas Shrugged'', but no post-war advances such as [[nuclear weapon]]s, [[helicopter]]s, or [[computer]]s. [[Jet plane]]s are mentioned briefly as being a relatively new technology. [[Television]] is a novelty that has yet to assume any cultural significance, while [[radio]] broadcasts are prominent. Though Rand does not use in the book many of the technological innovations available while she was writing, she introduces some advanced, fictional inventions (e.g., sound-based [[weapons of mass destruction|weapons of mass destruction]], torture devices, as well as power plants).
6704
6705 Most of the action in ''Atlas Shrugged'' occurs in the [[Places in Atlas_Shrugged|United States]]. However, there are important events around the world, such as in the People's States of [[Mexico]], [[Chile]], and [[Argentina]], and [[piracy]] at sea.
6706
6707 ==Plot==
6708
6709 A section by section analysis of ''Atlas Shrugged'' is available on [[Wikibooks:Atlas Shrugged|Wikibooks]].
6710
6711 The novel’s plot, split into three sections (though the story is coherent apart from these,) is extremely complex. The first two sections, and to some extent the last, follow Dagny Taggart, a no-nonsense railroad executive, and her attempt to keep the company alive despite the fact that society is falling towards collectivism/altruism/statism. All throughout the novel people repeat a platitude Dagny greatly resents: ‘Who is John Galt?’ It is a reflection of their helplessness, as the saying means ‘Don’t ask important questions, because they don’t have answers.’
6712
6713 The geniuses of the world seem to be disappearing, and the apparent decline of civilization is making it more and more difficult for her to sustain her life-long aspirations of running the trans-continental railroad, which has been in her family for several generations. She deals with other characters such as Hank Rearden, a self-made businessman of great integrity whose career is hindered by his false feelings of obligation towards his wife. Francisco d'Anconia, Dagny’s childhood friend, first love, and king of the copper industry, appears to have become a worthless playboy who is purposely destroying his business.
6714
6715 As the novel progresses: the myths about the real John Galt, as well as Francisco d'Anconia’s actions, become more and more a reflection of the state of the culture, and seem to make more and more sense; and, Hank and Dagny begin to experience the futility of their attempts to survive in a society that hates them and those like them for their greatness.
6716
6717 During their plight, Dagny and Hank find the remnants of a motor that turns atmospheric energy into kinetic energy, an astounding feat; they also find evidence that the minds (the ‘Atlases’) of the world are disappearing because of one particular ‘destroyer’ taking them away. Dagny and Hank deal with the irrationalities and apparent contradictions of their atmosphere, and search for the creator of the motor as well as ‘the destroyer’ who is draining the world of its prime movers, in an effort to secure their ability to live rational lives.
6718
6719 All of this leads to an elaborate action-based explanation and eventual climax, presenting an understanding of all of the issues explored, and breaking everything down into one basic conflict. The final parts of the novel involve a speech by the story's true protagonist, and a resolution concerning the fate of society. The question 'Who is John Galt' is also answered.
6720
6721 * [[Characters in Atlas Shrugged|Characters]]
6722 ** [[Minor Characters in Atlas Shrugged|Minor Characters]]
6723 * [[Companies in Atlas Shrugged|Companies]]
6724 * [[Concepts in Atlas Shrugged|Concepts]]
6725 * [[Places in Atlas_Shrugged|Places]]
6726 * [[Technology in Atlas_Shrugged|Technology]]
6727 * [[Things in Atlas_Shrugged|Things]]
6728 * [[Topics of note in Atlas Shrugged|Topics of note]]
6729
6730 ==Film adaptation==
6731 Rights to the novel ''Atlas Shrugged'' were purchased by the Baldwin Entertainment Group in [[2003]] with the intent of producing a feature-length film. Company leader [[Howard Baldwin]] was quoted in September 2004 as saying &quot;...everything is on track and [the movie] hasn’t been held up one bit... I assure you that this will be a big movie and ''it will get made''.&quot; Two works of Rand's&amp;mdash;''[[The Fountainhead]]'' and ''[[We the Living]]''&amp;mdash;have been adapted into movies so far.
6732
6733 ==External links==
6734 * http://www.aynrand.org
6735 * http://www.atlassociety.org/news_atlas-movie-updated050304.asp
6736 * http://www.cordair.com/gaetano/index.htm
6737
6738 ==References and further reading==
6739
6740 ===Publications===
6741
6742 * ''Atlas Shrugged'', Ayn Rand; Signet; (September 1996) ISBN 0451191145
6743 * ''Atlas Shrugged (Cliffs Notes)'', Andrew Bernstein; [[Cliffs Notes]]; (June 5, 2000) ISBN 0764585568
6744 * ''The World of Atlas Shrugged'', Robert Bidinotto/The Objectivist Center; HighBridge Company; (April 19, 2001) ISBN 156511471X
6745 * ''Atlas Shrugged: Manifesto of the Mind (Twayne's Masterwork Studies, No. 174)'' Mimi Reisel Gladstein; Twayne Pub; (June 2000) ISBN 0805716386
6746 * ''The Moral Revolution in Atlas Shrugged'', [[Nathaniel Branden]]; The Objectivist Center; (July 1999) ISBN 1577240332
6747 * ''Odysseus, Jesus, and Dagny'', Susan McCloskey; The Objectivist Center; (August 1, 1998) ISBN 1577240251
6748
6749 === Foreign translations ===
6750
6751 * [[German language|German]]: ''Wer ist John Galt?'' (Hamburg, Germany: GEWIS Verlag), ISBN 3-932-56403-0.
6752 * [[Italian language|Italian]]: ''La rivolta di Atlante'', 2 vol. (Milano, Garzanti, 1958), Out of print. Translator: Laura Grimaldi
6753 * [[Japanese language|Japanese]]: ''č‚Šã‚’ã™ãã‚ã‚‹ã‚ĸトナ゚''  (ビジネ゚į¤ž), ISBN 4-8284-1149-6. Translator: č„‡å‚ あゆãŋ.
6754 * [[Norwegian language|Norwegian]]: ''De som beveger verden''. (Kagge Forlag, 2000), ISBN 8-248-90083-5 (hardcover), ISBN 8-248-90169-6 (paperback). Translator: John Erik Bøe Lindgren.
6755 * [[Polish language|Polish]]: ''Atlas Zbuntowany'' (Zysk i S-ka, 2004), ISBN 83-7150-969-3 (Twarda). Translator: Iwona Michałowska.
6756 * [[Spanish language|Spanish]]: ''La Rebelion de Atlas.'' (Editorial Grito Sagrado), ISBN 9-872-09510-8 (hardcover), ISBN 9-872-09511-6 (paperback).
6757 * [[Swedish language|Swedish]]: ''Och världen skälvde.'' ([http://www.timbro.se/rand/ Timbro FÃļrlag], 2005), ISBN 9-175-66556-5. Translator: Maud Freccero.
6758 * [[Turkish language|Turkish]]: ''Atlas Vazgeçti.'' (Plato Yay&amp;#305;nlar&amp;#305;, 2003), ISBN 9-759-67726-1. Translator: Belk&amp;#305;s Çorapç&amp;#305;.
6759
6760 ===Reviews===
6761
6762 *{{note|geoff}} [http://www.cix.co.uk/~morven/atlas.html Review] from a self-proclaimed non-Libertarian
6763 *{{note|weird-bookshelf}} [http://www.strangewords.com/archive/ayn.html Review] from the Weird Bookshelf (&quot;fine science fiction books&quot;).
6764 *{{note|Slade}} Slade, Robert M. [http://victoria.tc.ca/int-grps/books/techrev/bkatshrg.rvw Review] from the Internet Review Project (1998).
6765 *{{note|pierssen}} [http://www.pierssen.com/cfile/objectivist.htm A review] which, while attempting to address the environmentalist issues, claims that ''Atlas Shrugged'' is a sequel to ''[[The Lord of the Rings]].''
6766 *{{note|analysis}} [http://atlasshruggednovel.blogspot.com A Review] and in-depth Chapter-by-Chapter, Motif-by-Motif, etc. analysis.
6767
6768 ===Satires and parodies===
6769 *[http://kamita.com/misc/illuminatus/illuminatus.html &quot;Telemachus Sneezed&quot;] within Robert Anton Wilson's [[Illuminatus! Trilogy]] (Search for &quot;Taffy Rhinestone&quot; in the former link to read the spoof.)
6770 *[http://www.spudworks.com/article/66/2/ The Abridged ''Atlas Shrugged''] - a thousand pages distilled into about a thousand words.
6771 *[http://www.modernhumorist.com/mh/0101/rand/ Atlas Shr], a look at [[parallel universe (fiction)|parallel universe]]s wherein all of Ayn Rand's books are four hundred pages shorter
6772 *''Elvis Shrugged'', an early '90s comic book miniseries published by Revolutionary Comics in which popular entertainers [[Elvis Presley]], a cyborg [[Frank Sinatra]], [[Frank Zappa]], [[Madonna (entertainer)|Madonna]], [[Spike Lee]], and others take the place of various ''Atlas Shrugged'' counterparts.
6773 *[http://www.mskousen.com/Books/Articles/shrugged.html Oscar Shrugged], a depiction of the first film festival held in Galt's Gulch
6774 *[http://www.angryflower.com/atlass.gif ''Atlas Shrugged 2: One Hour Later''], starring Bob the Angry Flower
6775
6776
6777
6778 [[Category:1957 books]]
6779 [[Category:Atlas Shrugged]]
6780 [[Category:Novels]]
6781 [[Category:Philosophical novels]]
6782 [[Category:Books critical of Christianity]]
6783 [[Category:Books by Ayn Rand]]
6784
6785 [[de:Atlas wirft die Welt ab]]
6786 [[es:La Rebelion de Atlas]]
6787 [[he:מרד הנפילים]]
6788 [[sv:Och världen skälvde]]
6789 [[zh:é˜ŋį‰šæ‹‰æ–¯æ‘†č„ąé‡č´Ÿ]]</text>
6790 </revision>
6791 </page>
6792 <page>
6793 <title>Anthropology</title>
6794 <id>569</id>
6795 <revision>
6796 <id>41967527</id>
6797 <timestamp>2006-03-02T23:04:10Z</timestamp>
6798 <contributor>
6799 <ip>168.18.146.160</ip>
6800 </contributor>
6801 <text xml:space="preserve">'''Anthropology''' (from the [[Greek language|Greek]] word ''ÎŦÎŊθĪĪ‰Ī€ÎŋĪ‚'', &quot;human&quot; or &quot;person&quot;) consists of the study of [[humanity]] (see genus ''[[Homo (genus)|Homo]]''). It is [[holism|holistic]] in two senses: it is concerned with all humans at all times and with all dimensions of humanity. A primary trait that traditionally distinguished anthropology from other humanistic disciplines is an emphasis on cultural relativity, indepth examination of context, and cross cultural comparisons.
6802
6803 In [[North America]], &quot;anthropology&quot; is traditionally divided into four sub-disciplines:
6804 * [[physical anthropology]] or [[biological anthropology]], which studies [[primatology|primate behavior]], [[human evolution]], [[osteology]], [[forensics]] and [[population genetics]];
6805 * [[cultural anthropology]], (called [[social anthropology]] in the [[United Kingdom]] and now often known as [[socio-cultural anthropology]]). Areas studied by cultural anthropologists include social networks, [[diffusion (anthropology)|diffusion]], social behavior, [[kinship]] patterns, law, politics, [[ideology]], religion, beliefs, patterns in production and consumption, exchange, socialization, gender, and other expressions of culture, with strong emphasis on the importance of [[fieldwork]] or participant-observation (i.e living among the social group being studied for an extended period of time);
6806 * [[linguistic anthropology]], which studies variation in [[language]] across time and space, the social uses of language, and the relationship between language and culture; and
6807 * [[archaeology]], that studies the material remains of human [[society|societies]]. Archaeology itself is normally treated as a separate (but related) field in the rest of the world, although closely related to the anthropological field of [[material culture]], which deals with physical objects created or used within a living or past group as mediums of understanding its cultural values.
6808
6809 More recently, some anthropology programs began dividing the field into two, one emphasizing the [[humanities]] and [[critical theory]], the other emphasizing the [[natural science]]s and [[empiricism|empirical observation]].
6810
6811 ==Historical and institutional context==
6812 :''Main Article: [[History of anthropology]]''
6813 The anthropologist [[T J Brewer]] once characterized anthropology as the most scientific of the humanities, and the most humanistic of the sciences. Understanding how anthropology developed contributes to understanding how it fits into other academic disciplines.
6814
6815 Contemporary anthropologists claim a number of earlier thinkers as their forebearers and the discipline has several sources. However, anthropology can best be understood as an outgrowth of the [[Age of Enlightenment]]. It was during this period that Europeans attempted systematically to study human behavior. Traditions of [[jurisprudence]], [[history]], [[philology]] and [[sociology]] developed during this time and informed the development of the [[social sciences]] of which anthropology was a part. At the same time, the [[romanticism|romantic]] reaction to the Enlightenment produced thinkers such as [[Herder]] and later [[Wilhelm Dilthey]] whose work formed the basis for the culture concept which is central to the discipline.
6816
6817 Institutionally anthropology emerged from [[natural history]] (expounded by authors such as [[Georges-Louis Leclerc, Comte de Buffon|Buffon]]). This was the study of human beings - typically people living in European [[colonialism|colonies]]. Thus studying the language, culture, physiology, and artifacts of European colonies was more or less equivalent to studying the flora and fauna of those places. It was for this reason, for instance, that [[Lewis Henry Morgan]] could write monographs on both ''The League of the Iroquois'' and ''The American Beaver and His Works''. This is also why the material culture of 'civilized' nations such as China have historically been displayed in fine arts museums alongside European art while artifacts from Africa or Native North American cultures were displayed in Natural History Museums with dinosaur bones and nature dioramas. This being said, curatorial practice has changed dramatically in recent years, and it would be wrong to see anthropology as merely an extension of colonial rule and European [[chauvinism]], since its relationship to [[imperialism]] was and is complex.
6818
6819 Anthropology grew increasingly distinct from natural history and by the end of the nineteenth century the discipline began to crystallize into its modern form - by 1935, for example, it was possible for T.K. Penniman to write a history of the discipline entitled ''A Hundred Years of Anthropology''. Early anthropology was dominated by 'the comparative method'. It was assumed that all societies passed through a single evolutionary process from the most primitive to most advanced. Non-European societies were thus seen as evolutionary 'living fossils' that could be studied in order to understand the European past. Scholars wrote histories of prehistoric migrations which were sometimes valuable but often also fanciful. It was during this time that Europeans first accurately traced [[polynesia|Polynesian]] migrations across the [[Pacific Ocean]] for instance - although some of them believed it originated in [[Egypt]]. Finally, the concept of [[race]] was actively discussed as a way to classify - and rank - human beings based on inherent biological difference.
6820
6821 In the twentieth century academic disciplines began to organize around three main domains. The &quot;[[sciences]]&quot; seeks to derive natural laws through reproducible and falsifiable experiments. The &quot;[[humanities]]&quot; reflected an attempt to study different national traditions, in the form of [[history]] and the [[art]]s, as an attempt to provide people in emerging nation-states with a sense of coherence. The &quot;[[social sciences]]&quot; emerged at this time as an attempt to develop scientific methods to address social phenomena, in an attempt to provide a universal basis for social knowledge. Anthropology does not easily fit into one of these categories, and different branches of anthropology draw on one or more of these domains.
6822
6823 Drawing on the methods of the [[natural science]]s as well as developing new techniques involving not only structured interviews but unstructured &quot;participant-observation&quot; – and drawing on the new [[theory of evolution]] through [[natural selection]], they proposed the scientific study of a new object: &quot;humankind,&quot; conceived of as a whole. Crucial to this study is the concept &quot;culture,&quot; which anthropologists defined both as a universal capacity and propensity for social learning, thinking, and acting (which they see as a product of human evolution and something that distinguishes Homo sapiens – and perhaps all species of genus ''[[Hominoid|Homo]]'' – from other species), and as a particular adaptation to local conditions that takes the form of highly variable beliefs and practices. Thus, &quot;culture&quot; not only transcends the opposition between nature and nurture; it transcends and absorbs the peculiarly European distinction between politics, religion, kinship, and the economy as autonomous domains. Anthropology thus transcends the divisions between the natural sciences, social sciences, and humanities to explore the biological, linguistic, material, and symbolic dimensions of humankind in all forms.
6824
6825 ==Anthropology in the U.S.==
6826 Anthropology in the United States was pioneered by staff of the Bureau of Indian Affairs and the Smithsonian Institution's Bureau of American Ethnology, such as John Wesley Powell and Frank Hamilton Cushing. Academic Anthropology was established by [[Franz Boas]], who used his positions at [[Columbia University]] and the [[American Museum of Natural History]] to train and develop multiple generations of students. Boasian anthropology was politically active and suspicious of research dictated by the U.S. government or wealthy patrons. It was also rigorously empirical and skeptical of over-generalizations and attempts to establish universal laws. Boas studied immigrant children in order to demonstrate that biological race was not immutable and that human conduct and behavior was the result of nurture rather than nature.
6827
6828 Drawing on his German roots, he argued that the world was full of distinct 'cultures' rather than societies whose evolution could be measured by how much or how little 'civilization' they had. Boas felt that each culture has to be studied in its particularity, and argued that cross-cultural generalizations like those made in the [[natural science]]s were not possible. In doing so Boas fought discrimination against immigrants, African Americans, and Native North Americans. Many American anthropologists adopted Boas' agenda for social reform, and theories of race continue to be popular targets for anthropologists today.
6829
6830 Boas's first generation of students included [[Alfred Kroeber]], [[Robert Lowie]], [[Edward Sapir]] and [[Ruth Benedict]]. All of these scholars produced richly detailed studies which described Native North America. In doing so they provided a wealth of details used to attack the theory of a single evolutionary process. Kroeber and Sapir's focus on Native American languages also helped establish [[linguistics]] as a truly general science and free it from its historical focus on [[Indo-European languages]].
6831
6832 The publication of [[Alfred Kroeber]]'s textbook ''Anthropology'' marked a turning point in American anthropology. After three decades of amassing material the urge to generalize grew. This was most obvious in the 'Culture and Personality' studies carried out by younger Boasians such as [[Margaret Mead]] and [[Ruth Benedict]]. Influenced by psychoanalytic psychologists such as [[Sigmund Freud]] and [[Carl Jung]], these authors sought to understand the way that individual personalities were shaped by the wider cultural and social forces in which they grew up. While such works as ''Coming of Age in Samoa'' and ''The Chrysanthemum and the Sword'' remain popular with the American public, Mead and Benedict never had the impact on the discipline of anthropology that some expected. Boas had planned for Ruth Benedict to succeed him as chair of Columbia's anthropology department, but she was sidelined by [[Ralph Linton]] and Mead was limited to her offices at the [[American Museum of Natural History|AMNH]].
6833
6834 ==Anthropology in Britain==
6835 Whereas Boas picked his opponents to pieces through attention to detail, in Britain modern anthropology was formed by rejecting historical reconstruction in the name of a science of society that focused on analyzing how societies held together in the present.
6836
6837 The two most important names in this tradition were [[Alfred Reginald Radcliffe-Brown]] and [[Bronislaw Malinowski]], both of whom released seminal works in 1922. Radcliffe-Brown's initial fieldwork in the [[Andaman Islands]] was carried out in the old style, but after reading [[Émile Durkheim]] he published an account of his research (entitled simply ''The Andaman Islanders'') which drew heavily on the French sociologist. Over time he developed an approach known as structural-functionalism, which focused on how institutions in societies worked to balance out or create an equilibrium in the social system to keep it functioning harmoniously. [[Bronislaw Malinowski|Malinowski]], on the other hand, advocated an unhyphenated 'functionalism' which examined how society functioned to meet individual needs. Malinowski is best known not for his theory, however, but for his detailed [[ethnography]] and advances in methodology. His classic ''Argonauts of the Western Pacific'' advocated getting 'the native's point of view' and an approach to field work that became standard in the field.
6838
6839 Malinowski and Radcliffe-Brown's success stem from the fact that they, like Boas, actively trained students and aggressively built up institutions which furthered their programmatic ambitions. This was particularly the case with Radcliffe-Brown, who spread his agenda for 'Social Anthropology' by teaching at universities across the [[Commonwealth of Nations|Commonwealth]]. From the late 1930s until the post-war period a string of monographs and edited volumes appeared which cemented the paradigm of British Social Anthropology. Famous ethnographies include ''The Nuer'' by [[Edward Evan Evans-Pritchard]] and ''The Dynamics of Clanship Among the Tallensi'' by [[Meyer Fortes]], while well known edited volumes include ''African Systems of Kinship and Marriage'' and ''African Political Systems''.
6840
6841 ==Anthropology in France==
6842 Anthropology in France has a less clear genealogy than the British and American traditions. Most commentators consider [[Marcel Mauss]] to be the founder of the French anthropological tradition. Mauss was a member of [[Émile Durkheim|Durkheim's]] [[Annee Sociologique]] group, and while Durkheim and others examined the state of modern societies, Mauss and his collaborators (such as [[Henri Hubert]] and [[Robert Hertz]]) drew on ethnography and philology to analyze societies which were not as 'differentiated' as European nation states. In particular, Mauss's ''Essay on the Gift'' was to prove of enduring relevance in anthropological studies of [[trade|exchange]] and [[reciprocity (cultural anthropology)|reciprocity]].
6843
6844 Throughout the interwar years, French interest in anthropology often dovetailed with wider cultural movements such as [[surrealism]] and [[primitivism (art movement)|primitivism]] which drew on ethnography for inspiration. [[Marcel Griaule]] and [[Michel Leiris]] are examples of people who combined anthropology with the French avant-garde. During this time most of what is known as ''ethnologie'' was restricted to museums, and anthropology had a close relationship with studies of [[folklore]].
6845
6846 Above all, however, it was [[Claude LÊvi-Strauss]] who helped institutionalize anthropology in France. In addition to the enormous influence his [[structuralism]] exerted across multiple disciplines, LÊvi-Strauss established ties with American and British anthropologists. At the same time he established centers and laboratories within France to provide an institutional context within anthropology while training influential students such as [[Maurice Godelier]] and [[Francoise Heritier]] who would prove influential in the world of French anthropology. Much of the distinct character of France's anthropology today is a result of the fact that most anthropology is carried out in nationally-funded research laboratories rather than academic departments in universities.
6847
6848 ==Anthropology after World War Two==
6849 Before [[World War II|WWII]] British 'social anthropology' and American 'cultural anthropology' were still distinct traditions. It was after the war that the two would blend to create a 'sociocultural' anthropology.
6850
6851 In the 1950s and mid-1960s anthropology tended increasingly to model itself after the [[natural science]]s. Some, such as [[Lloyd Fallers]] and [[Clifford Geertz]], focused on processes of modernization by which newly independent states could develop. Others, such as [[Julian Steward]] and [[Leslie White]] focused on how societies evolve and fit their ecological niche - an approach popularized by [[Marvin Harris]]. [[Economic anthropology]] as influenced by [[Karl Polanyi]] and practiced by [[Marshall Sahlins]] and [[George Dalton]] focused on how traditional [[economics]] ignored cultural and social factors. In England, British Social Anthropology's paradigm began to fragment as [[Max Gluckman]] and [[Peter Worsley]] experimented with Marxism and authors such as [[Rodney Needham]] and [[Edmund Leach]] incorporated LÊvi-Strauss's structuralism into their work.
6852
6853 Structuralism also influenced a number of development in 1960s and 1970s, including [[cognitive anthropology]] and componential analysis. Authors such as [[David Schneider]], [[Clifford Geertz]], and [[Marshall Sahlins]] developed a more fleshed-out concept of culture as a web of meaning or signification, which proved very popular within and beyond the discipline. In keeping with the times, much of anthropology became politicized through the [[Algerian War of Independence]] and opposition to the [[Vietnam War]]; [[Marxism]] became a more and more popular theoretical approach in the discipline. By the 1970s the authors of volumes such as ''Reinventing Anthropology'' worried about anthropology's relevance.
6854
6855 In the 1980s issues of power, such as those examined in [[Eric Wolf]]'s ''Europe and the People Without History'' - were central to the discipline. Books like ''Anthropology and the Colonial Encounter'' pondered anthropology's ties to colonial inequality, while the immense popularity of theorists such as [[Antonio Gramsci]] and [[Michel Foucault]] moved issues of power and hegemony into the spotlight. Gender and sexuality became a popular topic, as did the relationship between history and anthropology, influenced by [[Marshall Sahlins]] (again) who drew on [[Claude LÊvi-Strauss|LÊvi-Strauss]] and [[Fernand Braudel]] to examine the relationship between social structure and individual agency.
6856
6857 In the late 1980s and 1990s authors such as [[George Marcus]] and [[James Clifford]] pondered ethnographic authority, particularly how and why anthropological knowledge was possible and authoritative. Ethnographies became more reflexive, explicitly addressing the author's methodology and cultural positioning, and its influence on their ethnographic analysis. This was part of a more general trend of [[postmodernism]] that was popular contemporaneously. Currently anthropologists have begun to pay attention to globalization, medicine and biotechnology, indigenous rights, and the anthropology of Europe.
6858
6859 ==Politics of anthropology==
6860 Anthropology's traditional involvement with nonwestern cultures has involved it in politics in many different ways.
6861
6862 Some political problems arise simply because anthropologists usually have more power than the people they study. Some have argued that the discipline is a form of colonialist theft in which the anthropologist gains power at the expense of subjects. The anthropologist, they argue, can gain yet more power by exploiting knowledge and artifacts of the people he studies while the people he studies gain nothing, or even lose, in the exchange. An example of this exploitative relationship can been seen in the collaboration in Africa prior to World War II of British anthropologists (such as Fortes) and colonial forces. More recently, there have been newfound concerns about bioprospecting, along with struggles for self-representation for native peoples and the repatriation of indigenous remains and material culture.
6863
6864 Other political controversies come from American anthropology's emphasis on cultural relativism and its long-standing antipathy to the concept of race. The development of [[sociobiology]] in the late 1960s was opposed by cultural anthropologists such as [[Marshall Sahlins]], who argued that these positions were reductive. While authors such John Randal Baker continued to develop the biological concept of race into the 1970s, the rise of genetics has proven to be central to developments on this front. Recently, [[Kevin B. MacDonald]] criticized Boasian anthropology as part of a &quot;Jewish strategy to facilitate mass immigration and to weaken the West&quot; ([[The Culture of Critique]],2002). As genetics continues to advance as a science some anthropologists such as Luca [[Cavalli-Sforza]] have continued to transform and advance notions of race through the use of recent developments in genetics, such as tracing past migrations of peoples through their mitcochondial and Y-chromosomal DNA, and [[ancestry-informative marker]]s.
6865
6866 Finally, anthropology has a history of entanglement with government intelligence agencies and anti-war politics. Boas publicly objected to US participation in [[World War I]] and the collaboration of some anthropologists with US intelligence. In contrast, many of Boas' anthropologist contemporaries were active in the war effort in some form, including dozens who served in the [[Office of Strategic Services]] and the Office of War Information. In the 1950s, the [[American Anthropological Association]] provided the [[CIA]] information on the area specialities of its members, and a number of anthropologists participated in the U.S. government's [[Operation Camelot]] during the war in Vietnam. At the same time, many other anthropologists were active in the antiwar movement and passed resolutions in the [[American Anthropological Association]] (AAA) condemning anthropological involvement in covert operations. Anthropologists were also vocal in their opposition to the war in Iraq, although there was no consensus amongst practitioners of the discipline.
6867
6868 Professional anthropological bodies often object to the use of anthropology for the benefit of the [[state]]. Their codes of ethics or statements may proscribe anthropologists from giving secret briefings. The British Association for Social Anthropology has called certain scholarships ethically dangerous. For example, the British Association for Social Anthropology has condemned the [[CIA]]'s Pat Roberts Intelligence Scholars Program[http://avenue.org/ngic/about_prisp.htm], which funds anthropology students at US universities in preparation for them to spy for the [[United States]] government. The AAA's current 'Statement of Professional Responsibility' clearly states that &quot;in relation with their own government and with host governments... no secret research, no secret reports or debriefings of any kind should be agreed to or given.&quot;
6869
6870
6871
6872
6873 Anthropology is the study of human diversity--diversity of body and behavior, in the past and present. Anthropology consists of four subfields or subdisciplines:
6874
6875 '''Physical anthropology'''--studies the diversity of the human body in the past and present. It includes how we acquired the structure of our body over time, that is human evolution, as well as differences and relationships between human populations today and their adaptations to their local environments. It also sometimes includes the evolution and diversity of our nearest relatives, the primates (apes and monkeys).
6876
6877 '''Cultural anthropology'''--studies the diversity of human behavior in the present. This is what most anthropologists do and what most of the public sees when they look at &quot;National Geographic&quot; magazine or the &quot;Discovery&quot; channel on TV. Cultural anthropologists travel to foreign societies (although it is possible to do anthropology on your own society!), live among the people there, and try as much as they can to understand how those people live.
6878
6879 '''Archaeology'''--studies the diversity of human behavior in the past. Since it studies how people lived in the past, these people are not available for us to visit and talk to...or at least, not people who are currently living in the same way that their ancestors did in the past. Therefore, archaeologists must depend on the artifacts and features that the people produced in the past and attempt to reconstruct their vanished way of life from the remnants of their culture.
6880
6881 '''Linguistic anthropology'''--studies the diversity of human language in the past and present. While language is naturally a part of culture, it is such a huge topic that anthropologists have separated it into its own area of study. Linguistic anthropologists are concerned about the development of languages, perhaps even back to the first forms of language, and how language changes over time. They are also interested in how different contemporary languages differ today, how they are related, and how we can learn about things like migration and diffusion from that data. They also ask how language is related to and reflects on other aspects of culture.
6882
6883 Other sciences study humans too, of course. History, economics, psychology, sociology, even biology and chemistry can study humans. How is anthropology different?
6884
6885 The answer is the anthropological perspective, that is, the way that anthropology approaches the subject and thinks about or studies humans and their behavior. The anthropological perspective has three components:
6886
6887 (1) Cross-cultural or comparative--anthropology investigates humans in every form that they take. We are interested to see the entire spectrum of human bodies and behaviors, trying to learn the range of humanity--all the ways that we can be human. By seeing humans in their every manifestation, and comparing those manifestations to each other, we can ask what is possible for humans and what is necessary for humans.
6888
6889 (2) Holistic--anthropology tries to relate every part of culture to every other part. It understands that the various parts of culture are connected to each other and that certain combinations tend to occur or not to occur (for example, there are no hunting and gathering cultures that traditionally lived in cities...that's just impossible!). We are also interested in how a people's cultures is connected to their environment; again, without high technology, you are not going to see farming or cities in the middle of the desert or the arctic.
6890
6891 (3) Relativistic--this is the most profound yet controversial part of the anthropological perspective. Relativism means that the rules or norms or values of a culture are relative to that specific culture. In other words, say, monogamy may be normal or preferred in one culture, but polygamy may be normal or preferred in another. The point is that different cultures believe different things or value different things or even mean different things with perhaps identical-looking behaviors or objects.
6892
6893 When you go to another culture, or even just interact with another culture (for example, when you are doing international business), you cannot assume that other people understand things the same way you do. In fact, you should assume that they don't! Anthropology counsels against hasty judgement of a new culture: aspects that a Western visitor may find strange or distasteful can be understood when situated within that culture's history and cosmology (understanding of the world). There will be a rationality for the phenomenon; it may be 'rational', however, according to a cultural logic that conflicts with Western understandings. Malinowski's primacy of seeking to understand &quot;the native point of view&quot; remains fundamental to socio-cultural anthropology today.
6894
6895 The point is that, if we want to understand other people properly, we must see what their behaviors or words or concepts mean to them, not what they would mean to us. Meaning is relative to the culture that creates that meaning. This is not to say that all things are true or even that all things are good - cultural relativism does not necessarily entail moral relativism. Indeed, the American Anthropological Association's qualified support (1948; 1997) for the Universal Declaration of Human Rights, as well as work by Sally Engle Merry, shows the latter is not a common anthropological point of view.
6896
6897 How does anthropology study culture?
6898
6899 One other way that anthropology is unique among the sciences that study humans is by its emphasis on 'fieldwork' You cannot get to know another culture just by reading about it or watching movies about it. At best, you could learn what other people have already discovered, but you could not learn anything new. So anthropology requires actually going to that society and living within their culture as much as possible. This is called [[Participant observation|participant observation]]. This depends crucially on finding (preferrably friendly) informants within the society, who will teach you their culture's rules of social behaviour, and include you in their activities. Then, as much as possible, you will try to eat their food, speak their language, and live their lives, often actually residing with a family in that society. It is not easy work, and it is not always fun, but there is no better way to learn.
6900
6901 ==Anthropological fields and subfields==
6902 *[[Biological anthropology]] (also [[Physical anthropology]])
6903 **[[Forensic anthropology]]
6904 **[[Paleoethnobotany]]
6905 *[[Cultural anthropology]] (also [[Social anthropology]])
6906 **[[Anthropology of art]]
6907 **[[Applied anthropology]]
6908 **[[Cross-Cultural Studies]]
6909 **[[Cyber anthropology]]
6910 **[[Development anthropology]]
6911 **[[Dual inheritance theory]]
6912 **[[Environmental anthropology]]
6913 **[[Economic anthropology]]
6914 **[[Ecological anthropology]]
6915 **[[Ethnography]]
6916 **[[Ethnomusicology]]
6917 **[[Feminist anthropology]]
6918 **[[Gender]]
6919 **[[Human behavioral ecology]]
6920 **[[Medical anthropology]]
6921 **[[Psychological anthropology]]
6922 **[[Political anthropology]]
6923 **[[Anthropology of religion]]
6924 **[[Public anthropology]]
6925 **[[Urban anthropology]]
6926 **[[Visual anthropology]]
6927
6928 *[[Anthropological linguistics|Linguistic anthropology]]
6929 **[[Descriptive linguistics|Synchronic linguistics]] (or Descriptive linguistics)
6930 **[[Diachronic linguistics]] (or [[Historical linguistics]])
6931 **[[Ethnolinguistics]]
6932 **[[Sociolinguistics]]
6933
6934 *[[Archaeology]]
6935
6936 ==External links==
6937 *[http://www.aaanet.org/ The American Anthropological Association Homepage] - the webpage of the largest professional organization of anthropologists in the world.
6938 *[http://www.worldcatlibraries.org/wcpa/ow/09dbb3346fc1c2a4.html Race] - a book by John Randal Baker discussing the origins of racial classification and oppositions to the concept.
6939 *[http://www.antropologi.info Anthropology.Info]
6940 *[http://www.thenation.com/doc.mhtml?i=20001120&amp;c=2&amp;s=price Anthropologists as Spies] - an article by David Price examining the relationship between American Anthropology and US intelligence services.
6941 *[http://news.bbc.co.uk/2/hi/uk_news/education/4603271.stm Pat Roberts Intelligence Program] - a BBC article on the program
6942 *[http://www.antropologi.info/blog/anthropology Social and Cultural Anthropology in the News] - (nearly) daily updated blog
6943 *[http://www.anthrobase.com Anthrobase.com] - Collection of anthropological texts
6944 *[http://www.cybercultura.it Cybercultura] - Collection of web resources about anthropology of cyberspace (in Italian)
6945 *[http://www.anthropology.net Anthropology.net] - A community orientated anthropology web portal with user run blogs, forums, tags, and a wiki.
6946 *[http://sscl.berkeley.edu/~afaweb/reviews/index.html Association for Feminist Anthropology]
6947
6948 ==See also==
6949 * [[List of anthropologists]]
6950 * [[List of publications in biology#Anthropology|Important publications in anthropology]]
6951 &lt;!--What are our priorities for writing in this area? To help develop a list of the most basic topics in Anthropology, please refer to [[Anthropology basic topics]].--&gt;
6952 [[Category:Anthropology|Anthropology]]
6953 [[Category:Mammalogy]]
6954 [[Category:Behavioural sciences]]
6955 {{Social sciences-footer}}
6956
6957 [[af:Antropologie]]
6958 [[an:Antropolochía]]
6959 [[ar: ØšŲ„Ų… اŲ„ØĨŲ†ØŗاŲ†]]
6960 [[ast:Antropoloxía]]
6961 [[bg:АĐŊŅ‚Ņ€ĐžĐŋĐžĐģĐžĐŗиŅ]]
6962 [[bm:Anthropologie]]
6963 [[bn:āĻ¨ā§ƒāĻ¤āĻ¤ā§āĻ¤ā§āĻŦāĻŦāĻŋāĻĻā§āĻ¯āĻž]]
6964 [[bs:Antropologija]]
6965 [[ca:Antropologia]]
6966 [[co:Antropologia]]
6967 [[cs:Antropologie]]
6968 [[da:Antropologi]]
6969 [[de:Anthropologie]]
6970 [[el:ΑÎŊθĪĪ‰Ī€ÎŋÎģÎŋÎŗÎ¯Îą]]
6971 [[eo:Antropologio]]
6972 [[es:Antropología]]
6973 [[et:Antropoloogia]]
6974 [[fa:Ų…ØąØ¯Ų…‌شŲ†Ø§Øŗی]]
6975 [[fi:Antropologia]]
6976 [[fr:Anthropologie]]
6977 [[fy:Antropology]]
6978 [[gl:Antropoloxía]]
6979 [[he:אנ×Ēרופולוגיה]]
6980 [[hi:ā¤Žā¤žā¤¨ā¤ĩ ā¤ļā¤žā¤¸āĨā¤¤āĨā¤°]]
6981 [[hr:Antropologija]]
6982 [[hu:AntropolÃŗgia]]
6983 [[ie:Antropologie]]
6984 [[io:Antropologio]]
6985 [[it:Antropologia]]
6986 [[ja:äēē類å­Ļ]]
6987 [[ko:ė¸ëĨ˜í•™]]
6988 [[ku:AntropolojÃŽ]]
6989 [[ky:АĐŊŅ‚Ņ€ĐžĐŋĐžĐģĐžĐŗиŅ]]
6990 [[lt:Antropologija]]
6991 [[lv:AntropoloÄŖija]]
6992 [[mk:АĐŊŅ‚Ņ€ĐžĐŋĐžĐģĐžĐŗиŅ˜Đ°]]
6993 [[ms:Antropologi]]
6994 [[nl:Antropologie]]
6995 [[no:Antropologi]]
6996 [[pl:Antropologia]]
6997 [[pt:Antropologia]]
6998 [[ro:Antropologie]]
6999 [[ru:АĐŊŅ‚Ņ€ĐžĐŋĐžĐģĐžĐŗиŅ]]
7000 [[sa:ā¤Žā¤žā¤¨ā¤ĩā¤ĩā¤ŋā¤œāĨā¤žā¤žā¤¨ā¤‚]]
7001 [[scn:Antropoluggia]]
7002 [[simple:Anthropology]]
7003 [[sk:AntropolÃŗgia]]
7004 [[sl:Antropologija]]
7005 [[su:Antropologi]]
7006 [[sv:Antropologi]]
7007 [[ta:āŽŽāŽŠāŽŋāŽ¤āŽĩāŽŋāŽ¯āŽ˛ā¯]]
7008 [[th:ā¸Ąā¸˛ā¸™ā¸¸ā¸Šā¸ĸā¸§ā¸´ā¸—ā¸ĸā¸˛]]
7009 [[tl:Antropolohiya]]
7010 [[tpi:Antropoloji]]
7011 [[tr:Antropoloji]]
7012 [[uk:АĐŊŅ‚Ņ€ĐžĐŋĐžĐģĐžĐŗŅ–Ņ]]
7013 [[zh-min-nan:JÃŽn-lÅĢi-haĖk]]
7014 [[zh:äēēįąģå­Ļ]]</text>
7015 </revision>
7016 </page>
7017 <page>
7018 <title>Archaeology</title>
7019 <id>570</id>
7020 <revision>
7021 <id>41925879</id>
7022 <timestamp>2006-03-02T17:45:33Z</timestamp>
7023 <contributor>
7024 <username>Edgar181</username>
7025 <id>491706</id>
7026 </contributor>
7027 <comment>Revert to revision 41925705 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
7028 <text xml:space="preserve">{{portal}}'''Archaeology''' or '''archeology''' (from the [[Greek language|Greek]] words ''ÎąĪĪ‡ÎąÎ¯ÎŋĪ‚'' = ancient and ''ÎģĪŒÎŗÎŋĪ‚'' = word/speech/discourse) is the study of [[Homo (genus)|human]] [[culture]]s through the recovery, documentation and analysis of material remains and environmental data, including [[architecture]], [[Artifact (archaeology)|artifact]]s, [[biofact]]s, human remains, and [[landscape]]s.
7029
7030 The goals of archaeology are to document and explain the origins and development of human [[culture]], understand [[culture history]], chronicle [[cultural evolution]], and study human [[behavior]] and [[ecology]], for both [[prehistory|prehistoric]] and [[history|historic]] societies. It is considered to be one of the four sub-fields of [[anthropology]].
7031
7032 ==Usage==
7033 As with words such as [[encyclopedia]] and [[gynaecology]], archaeology traditionally has an ''ae'' combination; however, unlike other words, the ''ae'' is all but universally retained. Contrary to popular belief in other parts of the world, the spelling ''archeology'' is not predominant in [[United States]] [[dictionary|dictionaries]] and would look quite odd to most Americans. Like the claim that ''theater'' refers to a building and ''[[theatre]]'' refers to the [[performing arts]], the belief that ''archeology'' is an [[Americanism]] is little more than an [[urban myth]]. The traditional spelling, ''archaeology'', continues to be used in everyday writing throughout the world, including the U.S., even more so than theatre (the alternate spelling of which, while considered acceptable, is preferred less often than not).
7034
7035 ==Ontology and definition==
7036
7037 In the [[Old World]], archaeology has tended to focus on the study of physical remains, the methods used in recovering them and the theoretical and philosophical underpinnings in achieving the subject's goals. The discipline's roots in [[antiquarian]]ism and the study of [[Latin]] and [[Ancient Greek]] provided it with a natural affinity with the field of [[history]]. In the [[New World]], archaeology is more commonly devoted to the study of human [[society|societies]] and is treated as one of the four subfields of [[Anthropology]]. The other subfields of [[anthropology]] supplement the findings of archaeology in a holistic manner. These subfields are [[cultural anthropology]], which studies behavioural, symbolic, and material dimensions of culture; [[linguistics]], which studies language, including the origins of language and language groups; and [[physical anthropology]], which includes the study of human evolution and physical and [[genetics|genetic]] characteristics. Other disciplines also supplement archaeology, such as [[paleontology]], [[paleozoology]], [[paleoethnobotany]], [[paleobotany]], [[geography]], [[geology]], [[art history]], and [[classics]].
7038
7039 Archaeology has been described as a [[craft]] that enlists the [[science|sciences]] to illuminate the [[humanities]]. Writing in 1948, the American archaeologist [[Walter Taylor]] asserted that &quot;Archaeology is neither history nor anthropology. As an autonomous discipline, it consists of a method and a set of specialised techniques for the gathering, or 'production' of cultural information&quot;.
7040
7041 Archaeology is an approach to understanding human culture through its material remains regardless of chronology. In [[England]], archaeologists have uncovered the long-lost layouts of medieval villages abandoned after the crises of the 14th century and the equally lost layouts of 17th century parterre gardens swept away by a change in fashion. In downtown [[New York City]] archaeologists have exhumed the 18th century remains of the Black burial ground. Traditional Archaeology is viewed as the study of pre-historical human cultures; that is cultures that existed before the development of [[writing]] for that culture. [[Historical archaeology]] is the study of post-[[writing]] cultures.
7042
7043 In the study of relatively recent cultures, which have been observed and studied by Western scholars, archaeology is closely allied with [[ethnography]]. This is the case in large parts of [[North America]], [[Oceania]], [[Siberia]], and other places where the study of archaeology mingles with the living traditions of the cultures being studied. [[Kennewick Man]] is an example of archaeology interacting with modern culture. In the study of cultures that were literate or had literate neighbours, [[history]] and archaeology supplement one another for broader understanding of the complete cultural context, as at [[Hadrian's Wall]].
7044
7045 ==Importance and applicability==
7046
7047 Most of human history is not described by any written records. [[Writing]] did not exist anywhere in the world until about 5000 years ago, and only spread among a relatively small number of technologically advanced [[civilisation]]s. In contrast [[Homo Sapiens|''Homo sapiens'']] have existed for at least 200,000 years, and other species of [[Homo (genus)|''Homo'']] for millions of years (see [[Human evolution]]). These civilisations are, not coincidentally, the best-known; they have been open to the inquiry of historians for centuries, while the study of pre-historic cultures has arisen only recently. Even within a civilisation that is literate at some levels, many important human practices are not officially recorded. Any knowledge of the formative early years of human civilisation - the development of [[agriculture]], cult practices of [[folk religion]], the rise of the first [[city|cities]] - must come from archaeology.
7048
7049 Even where written records do exist, they are invariably incomplete or biased to some extent. In many societies, literacy was restricted to the [[elite]] classes, such as the [[clergy]] or the [[bureaucracy]] of court or temple. The literacy even of an [[aristocracy]] has sometimes been restricted to deeds and contracts. The interests and world-view of elites are often quite different from the lives and interests of the rest of the populace. Writings that were produced by people more representative of the general population were unlikely to find their way into [[library|libraries]] and be preserved there for posterity. Thus, written records tend to reflect the biases of the literate classes, and cannot be trusted as a sole source. The material record is nearer to a fair representation of society, though it is subject to its own inaccuracies, such as [[sampling bias]] and [[differential preservation]].
7050
7051 In addition to their scientific importance, archaeological remains sometimes have political significance to descendants of the people who produced them, monetary value to collectors, or simply strong [[aesthetic]] appeal. Many people identify archaeology with the recovery of such aesthetic, religious, political, or economic treasures rather than with the reconstruction of past societies.
7052
7053 This view is often espoused in works of popular fiction, such as ''[[Raiders of the Lost Ark]]'', ''[[The Mummy (1999 movie)|The Mummy]]'', and ''[[King Solomon's Mines]]''. When such unrealistic subjects are treated more seriously, accusations of [[pseudoscience]] are invariably levelled at their proponents (see Pseudoarchaeology, below). However, these endeavours, real and fictional, are not representative of the modern state of archaeology.
7054
7055 ==Goals==
7056
7057 There is still a tremendous emphasis in the practice of archaeology on field techniques and methodologies. These include the tasks of surveying areas in order to find new sites, digging sites in order to unearth the cultural remains therein, and classification and preservation techniques in order to analyse and keep these remains. Every phase of this process can be a source of information.
7058
7059 The goals of archaeology are not always the same. There are at least three broad, distinct theories of exactly what archaeological research should do. (These are beyond the scope of the present discussion, and are discussed at length below.) Nevertheless, there is much common ground.
7060
7061 ===Academic sub-disciplines===
7062
7063 ''Main article: [[Archaeological sub-disciplines]]''
7064
7065 As with most [[academia|academic]] disciplines, there are a very large number of [[archaeological sub-disciplines]] characterised by a specific method or type of material (e.g. [[lithic analysis]], [[music (archaeology)|music]], [[archaeobotany]]), geographical or chronological focus (e.g. [[Near Eastern archaeology]], [[Medieval archaeology]]), other thematic concern (e.g. [[landscape archaeology]]), or a specific [[archaeological culture]] or [[civilisation]] (e.g. [[Egyptology]]).
7066
7067 ===Cultural resources management===
7068 ''[[Cultural resources management]]'' (CRM) (also called ''heritage management'' in Britain) is a branch of archaeology that accounts for most research done in the [[United States]] and much of that in [[western Europe]] as well. In the United States, CRM archaeology has been a growing concern since the passage of the [[National Historic Preservation Act]] of 1966 and most of the archaeology done in that country today proceeds from either direct or related requirements of that measure. In the United States, the vast majority of taxpayers, scholars, and politicians believe that CRM has helped to preserve much of that nation's history and prehistory that would have otherwise been lost in the expansion of cities, dams, and highways. Along with other statutes, this mandates that no construction project on [[public land]] or involving public funds may damage an unstudied [[archaeological site]].
7069
7070 The application of CRM in the United Kingdom is not limited to government-funded projects. Since 1990 [[PPG 16]] has required planners to consider archaeology as a [[material consideration]] in determining applications for new development. As a result, numerous archaeological organisations undertake mitigation work in advance of (or during) construction work in archaeologically sensitive areas, at the developer's expense.
7071
7072 Among the goals of CRM are the identification, preservation, and maintenance of [[cultural]] sites on public and private lands, and the removal of culturally valuable materials from areas where they would otherwise be destroyed by human activity, such as proposed construction. This study involves at least a cursory examination to determine whether or not any significant archaeological sites are present in the area affected by the proposed construction. If these do exist, time and money must be allotted for their excavation. If initial survey and/or test excavation indicates the presence of an extraordinarily valuable site, the construction may be prohibited entirely. CRM is a thriving entity, especially in the United States and Europe where archaeologists from private companies and all levels of government engage in the practice of their discipline.
7073
7074 Cultural resources management has, however, been criticized. CRM is conducted by private companies that bid for projects by submitting proposals outlining the work to be done and an expected budget. It is not unheard-of for the agency responsible for the construction to simply choose the proposal that asks for the least funding. CRM archaeologists face considerable time pressure, often being forced to complete their work in a fraction of the time that might be allotted for a purely scholarly endeavour.
7075
7076 ==Field methods==
7077 ===Survey===
7078 A modern archaeological project often begins with a [[archaeological survey|survey]]. ''Regional survey'' is the attempt to systematically locate previously unknown sites in a region. ''Site survey'' is the attempt to systematically locate features of interest, such as houses and [[midden|middens]], within a site. Each of these two goals may be accomplished with largely the same methods.
7079
7080 Survey was not widely practiced in the early days of archaeology. Cultural historians and prior researchers were usually content with discovering the locations of monumental sites from the local populace, and excavating only the plainly visible features there. [[Gordon Willey]] pioneered the technique of regional settlement pattern survey in 1949 in the [[Viru Valley]] of coastal [[Peru]], and survey of all levels became prominent with the rise of processual archaeology some years later.
7081
7082 Survey work has many benefits if performed as a preliminary exercise to, or even in place of, excavation. It requires relatively little time and expense, because it does not require processing large volumes of soil to search out artefacts. (Nevertheless, surveying a large region or site can be expensive, so archaeologists often employ [[sampling (statistics)|sampling]] methods.) It avoids ethical issues (of particular concern to descendant peoples) associated with destroying a site through excavation. It is the only way to gather some forms of information, such as [[settlement pattern|settlement patterns]] and settlement structure. Survey data are commonly assembled into [[map|maps]], which may show surface features and/or artefact distribution.
7083
7084 The simplest survey technique is ''surface survey''. It involves combing an area, usually on foot but sometimes with the use of mechanised transport, to search for features or artefacts visible on the surface. Surface survey cannot detect sites or features that are completely buried under earth, or overgrown with vegetation. Surface survey may also include mini-excavation techniques such as [[auger|augers]], [[corer|corers]], and [[shovel test]] pits.
7085
7086 ''[[Aerial survey]]'' is conducted using [[camera|cameras]] attached to [[aircraft]], [[balloon|balloons]], or even [[kite|kites]]. A bird's-eye view is useful for quick mapping of large or complex sites. Aerial imaging can also detect many things not visible from the surface. [[Plant|Plants]] growing above a stone structure, such as a wall, will develop more slowly, while those above other types of features (such as [[midden|middens]]) may develop more rapidly. Photographs of ripening [[cereal|grain]], which changes colour rapidly at maturation, have revealed buried structures with great precision. Aerial survey also employs [[infrared]], ground-penetrating [[radar]] wavelengths, and [[thermography]].
7087
7088 ''[[Geophysical survey]]'' is the most effective way to see beneath the ground. [[Magnetometer|Magnetometers]] detect minute deviations in the [[Earth's magnetic field]] caused by [[iron]] artefacts, [[kiln|kilns]], some types of [[stone structures]], and even ditches and middens. Devices that measure the [[electrical resistivity]] of the soil are also widely used. Most soils are [[moisture|moist]] below the surface, which gives them a relatively low resistivity. Features such as hard-packed floors or concentrations of stone have a higher resistivity.
7089
7090 Although some archaeologists consider the use of [[metal detector|metal detectors]] to be tantamount to treasure hunting, others deem them an effective tool in archaeological surveying. Examples of formal archaeological use of metal detectors include musketball distribution analysis on [[English Civil War]] battlefields, metal distribution analysis prior to excavation of a nineteenth century ship wreck, and service cable location during evaluation. Metal detectorists have also contributed to the archaeological record where they have made detailed records of their results and refrained from raising artifacts from their archaeological context. In the UK, metal detectorists have been solicited for involvement in the [[Portable Antiquities Scheme]].
7091
7092 Regional survey in maritime archaeology uses [[side-scan sonar]].
7093
7094 ===Excavation===
7095 [[Excavation|Archaeological excavation]] existed even when the field was still the domain of amateurs, and it remains the source of the majority of data recovered in most field projects. It can reveal several types of information usually not accessible to survey, such as stratigraphy, three-dimensional structure, and verifiably primary context.
7096
7097 Modern excavation techniques require that the precise locations of objects and features, known as their [[provenance]] or provenience, be recorded. This always involves determining their horizontal locations, and sometimes vertical position as well (also see [[Primary Laws of Archaeology]]). Similarly, their [[archaeological association|association]], or relationship with nearby objects and features, needs to be recorded for later analysis. This allows the archaeologist to deduce what artefacts and features were likely used together and which may be from different phases of activity. For example, excavation of a site reveals its [[stratigraphy]]; if a site was occupied by a succession of distinct [[culture|cultures]], artefacts from more recent cultures will lie above those from more ancient cultures.
7098
7099 Excavation is the most expensive phase of archaeological research. Also, as a destructive process, it carries [[ethics|ethical]] concerns. As a result, very few sites are excavated in their entirety. [[Sampling (statistics)|Sampling]] is even more important in excavation than in survey. It is common for large mechanical equipment, such as [[backhoe]]s ([[J. C. Bamford|JCBs]]), to be used in excavation, especially to remove the [[topsoil]] ([[overburden]]), though this method is increasingly used with great caution. Following this rather dramatic step, the exposed area is usually hand-cleaned with trowels or hoes to ensure that all features are apparent.
7100
7101 The next task is to form a [[Archaeological plan|site plan]] and then use it to help decide the method of excavation. Features dug into the natural [[subsoil]] are normally excavated in portions in order to produce a visible [[archaeological section]] for recording. Scaled plans and sections of individual features are all drawn on site, black and white and colour photographs of them are taken, and recording sheets are filled in describing the [[context]] of each. All this information serves as a permanent record of the now-destroyed archaeology and is used in describing and interpreting the site.
7102
7103 ==Post-excavation analysis==
7104 Once artefacts and structures have been excavated, or collected from surface surveys, it is necessary to properly study them, to gain as much data as possible. This process is known as post-excavation analysis, and is normally the most time-consuming part of the archaeological investigation. It is not uncommon for the final excavation reports on major sites to take years to be published.
7105
7106 At its most basic, the artefacts found are cleaned, catalogued and compared to published collections, in order to classify them [[typology|typologically]] and to identify other sites with similar artefact assemblages. However, a much more comprehensive range of analytical techniques are available through [[archaeological science]], meaning that artefacts can be dated and their compositions examined. The bones, plants and pollen collected from a site can all be analysed (using the techniques of [[zooarchaeology]], [[paleoethnobotany]], and [[palynology]]), while any texts can usually be [[Decipherment|deciphered]].
7107
7108 These techniques frequently provide information that would not otherwise be known and therefore contribute greatly to the understanding of a site.
7109
7110 ==History of archaeology==
7111 ''Main article: [[History of archaeology]]''
7112
7113 The history of archaeology has been one of increasing professionalisation, and the use of an increasing range of techniques, to obtain as much data on the site being examined as possible.
7114
7115 Excavations of ancient monuments and the collection of antiquities have been taking place for thousands of years, but these were mostly for the extraction of valuable or aesthetically pleasing artefacts.
7116
7117 It was only in the 19th century that the systematic study of the past through its physical remains began to be carried out. Archaeological methods were developed by both interested amateurs and professionals, including [[Augustus Pitt Rivers]] and [[William Flinders Petrie]].
7118
7119 This process was continued in the 20th century by such people as [[Mortimer Wheeler]], whose highly disciplined approach to excavation greatly improved the quality of evidence that could be obtained.
7120
7121 During the 20th century, the development of [[urban archaeology]] and then [[rescue archaeology]] have been important factors, as has the development of [[archaeological science]], which has greatly increased the amount of data that it is possible to obtain.
7122
7123 ==Archaeological theory==
7124 ''Main article: [[Archaeological theory]]''
7125
7126 There is no single theory of archaeology, and even definitions are disputed. Until the mid-20th century and the introduction of technology, there was a general consensus that archaeology was closely related to both history and anthropology. The first major phase in the history of archaeological theory is commonly referred to as '''[[Cultural-history archaeology|cultural, or culture, history]]''', which was developed during the late 19th and early 20th centuries.
7127
7128 In the 1960s, a number of young, primarily American archaeologists, such as [[Lewis Binford]], rebelled against the paradigms of cultural history. They proposed a &quot;New Archaeology&quot;, which would be more &quot;scientific&quot; and &quot;anthropological&quot;, with [[hypothesis]] testing and the [[scientific method]] very important parts of what became known as '''[[processual archaeology]]'''.
7129
7130 In the 1980s, a new movement arose led by the British archaeologists [[Michael Shanks (archaeologist)|Michael Shanks]], [[Christopher Tilley]], [[Daniel Miller]], and [[Ian Hodder]]. It questioned processualism's appeals to science and impartiality and emphasised the importance of relativism, becoming known as '''[[post-processual archaeology]]'''. However, this approach has been criticised by processualists as lacking scientific rigour. The validity of both processualism and post-procuessualism is still under debate.
7131
7132 Archaeological theory now borrows from a wide range of influences, including [[evolution|neo-Darwinian evolutionary thought]], [[phenomenology]], [[postmodernism]], [[Structure and agency|agency theory]], [[Cognitive archaeology|cognitive science]], [[Functionalism (sociology)|Functionalism]], [[Gender archaeology|gender-based]] and [[Feminist archaeology]], and [[Systems theory in archaeology|Systems theory]].
7133
7134 ==Public archaeology==
7135 Early archaeology was largely an attempt to uncover spectacular artifacts and features, or to explore vast and mysterious abandoned cities. Such pursuits continue to fascinate the public, portrayed in books (such as ''[[King Solomon's Mines]]'') and films (such as ''[[The Mummy (1999 movie)|The Mummy]]'' and ''[[Raiders of the Lost Ark]]'').
7136
7137 Much thorough and productive research has indeed been conducted in dramatic locales such as [[CopÃĄn]] and the [[Valley of the Kings]], but the stuff of modern archaeology is not so reliably sensational. In addition, archaeological adventure stories tend to ignore the painstaking work involved in modern [[archaeological survey|survey]], [[excavation]], and [[archaeological data processing|data processing]] techniques. Some archaeologists refer to such portrayals as &quot;[[pseudoarchaeology]]&quot;.
7138
7139 Nevertheless, archaeology has profited from its portrayal in the mainstream media. Many practitioners point to the childhood excitement of [[Indiana Jones]] films and [[Tomb Raider games]] as the inspiration for them to enter the field. Archaeologists are also very much reliant on public support, the question of exactly who they are doing their work for is often discussed. Without a strong public interest in the subject, often sparked by significant finds and celebrity archaeologists, it would be a great deal harder for archaeologists to gain the political and financial support they require.
7140
7141 In the UK, popular archaeology programmes such as ''[[Time Team]]'' and ''[[Meet the Ancestors]]'' have resulted in a huge upsurge in public interest. Where possible, archaeologists now make more provision for public involvement and outreach in larger projects than they once did. However, the move towards being more professional has meant that volunteer places are now relegated to unskilled labour, and even this is less freely available than before. Developer-funded excavation necessitates a well-trained staff that can work quickly and accurately, observing the necessary [[health and safety]] and indemnity insurance issues involved in working on a modern [[construction|building site]] with tight deadlines. Certain charities and [[local government]] bodies sometimes offer places on research projects either as part of academic work or as a defined community project. There is also a flourishing industry selling places on commercial [[training excavations]] and archaeological holiday tours.
7142
7143 Archaeologists prize local knowledge and often liaise with local historical and archaeological societies. Anyone looking to get involved in the field without having to pay to do so should contact a local group.
7144
7145 ===Pseudoarchaeology===
7146 ''Main article: [[Pseudoarchaeology]]''.
7147
7148 Pseudoarchaeology is an umbrella term for all activities that claim to be archaeological but in fact violate commonly accepted archaeological practices. It includes much fictional archaeological work (discussed above), as well as some actual activity. Many non-fiction authors have ignored the scientific methods of [[processual archaeology]], or the specific critiques of it contained in [[Post-processual archaeology|Post-processualism]].
7149
7150 An example of this type is the writing of [[Erich von Däniken]]. His ''[[Chariots of the Gods]]'' (1968), together with many subsequent lesser-known works, expounds a theory of ancient contacts between human civilisation on Earth and more technologically advanced extraterrestrial civilisations. This theory, known as [[palaeocontact theory]], is not exclusively Däniken's nor did the idea originate with him. Works of this nature are usually marked by the renunciation of well-established theories on the basis of limited evidence, and the interpretation of evidence with a preconceived theory in mind.
7151
7152 ===Looting===
7153 Looting of archaeological sites by people in search of [[hoard|hoards]] of buried treasure is an ancient problem. For instance, many of the tombs of the Egyptian [[pharaoh|pharaohs]] were looted in antiquity. The advent of archaeology has made ancient sites objects of great scientific and public interest, but it has also attracted unwelcome attention to the works of past peoples. A brisk commercial demand for artefacts encourages looting and the [[illicit antiquities]] trade, which smuggles items abroad to private collectors. Looters damage the integrity of a historic site, deny archaeologists valuable information that would be learnt from excavation, and are often deemed to be robbing local people of their heritage.
7154
7155 The popular consciousness often associates looting with poor [[Third World]] countries. Many are former homes to many well-known ancient civilizations but lack the financial resources or political will to protect even the most significant sites. Certainly, the high prices that intact objects can command relative to a poor farmer's income make looting a tempting financial proposition for some local people. However, looting has taken its toll in places as rich and populous as the United States and Western Europe as well. Abandoned towns of the ancient [[Sinagua]] people of [[Arizona]], clearly visible in the desert landscape, have been destroyed in large numbers by treasure hunters. Sites in more densely populated areas farther east have also been looted. Where looting is proscribed by law it takes place under cover of night, with the [[metal detector]] a common instrument used to identify profitable places to dig.
7156
7157 ===Public outreach===
7158 Motivated by a desire to halt '''looting''', curb '''pseudoarchaeology''', and to secure greater public funding and appreciation for their work, archaeologists are mounting '''public-outreach campaigns'''. They seek to stop looting by informing prospective artefact collectors of the provenance of these goods, and by alerting people who live near archaeological sites of the threat of looting and the danger that it poses to science and their own heritage. Common methods of public outreach include press releases and the encouragement of school field trips to sites under excavation.
7159
7160 The final audience for archaeologists' work is the public and it is increasingly realised that their work is ultimately being done to benefit and inform them. The putative social benefits of local heritage awareness are also being promoted with initiatives to increase civic and individual pride through projects such as community excavation projects and better interpretation and presentation of existing sites.
7161
7162 ===Descendant peoples===
7163 In the United States, examples such as the case of [[Kennewick Man]] have illustrated the tensions between [[Native Americans in the United States|Native American]]s and archaeologists which can be summarised as a conflict between a need to remain respectful towards burials sacred sites and the academic benefit from studying them. For years, American archaeologists dug on Indian burial grounds and other places considered sacred, removing artefacts and human remains to storage facilities for further study. In some cases human remains were not even thoroughly studied but instead archived rather than reburied. Furthermore, Western archaeologists' views of the past often differ from those of tribal peoples. The West views time as linear; for many natives, it is cyclic. From a Western perspective, the past is long-gone; from a native perspective, disturbing the past can have dire consequences in the present. To an archaeologist, the past is long-gone and must be reconstructed through its material remains; to indigenous peoples, it is often still alive.
7164
7165 As a consequence of this, American Indians attempted to prevent archaeological excavation of sites inhabited by their ancestors, while American archaeologists believed that the advancement of scientific knowledge was a valid reason to continue their studies. This contradictory situation was addressed by the [[Native American Graves Protection and Repatriation Act]] (NAGPRA, 1990), which sought to reach a compromise by limiting the right of research institutions to possess human remains. Due in part to the spirit of postprocessualism, some archaeologists have begun to actively enlist the assistance of [[indigenous peoples]] likely to be descended from those under study.
7166
7167 Archaeologists have also been obliged to re-examine what constitutes an archaeological site in view of what native peoples believe to constitute sacred space. To many native peoples, natural features such as lakes, mountains or even individual trees have cultural significance. Australian archaeologists especially have explored this issue and attempted to survey these sites in order to give them some protection from being developed. Such work requires close links and trust between archaeologists and the people they are trying to help and at the same time study.
7168
7169 While this cooperation presents a new set of challenges and hurdles to fieldwork, it has benefits for all parties involved. Tribal elders cooperating with archaeologists can prevent the excavation of areas of sites that they consider sacred, while the archaeologists gain the elders' aid in interpreting their finds. There have also been active efforts to recruit aboriginal peoples directly into the archaeological profession.
7170
7171 ====Repatriation====
7172 A new trend in the heated controversy between [[First Nations]] groups and scientists is the [[repatriation]] of native [[artifacts]] to the original descendants. An example of this occurred June 21, 2005, when a community members and elders from a number of the 10 [[Algonquian]] nations in the [[Ottawa]] area convened on the Kitigan Zibi reservation in [[Kanawagi, Quebec]], to inter ancestral human remains and burial goods — some dating back 6,000 years.
7173
7174 The ceremony marked the end of a journey spanning thousands of years and many miles. The remains and artifacts, including [[beads]], [[tools]] and [[weapons]], were originally excavated from various sites in the [[Ottawa Valley]], including [[Morrison]] and the [[Allumette Islands]]. They had been part of the [[Canadian Museum of Civilization]]’s research collection for decades, some since the late 1800s. Elders from various Algonquin communities conferred on an appropriate reburial, eventually deciding on traditional [[redcedar]] and [[birchbark]] boxes lined with redcedar chips, [[muskrat]] and [[beaver pelts]].
7175
7176 Now, an inconspicuous rock mound marks the reburial site where close to 90 boxes of various sizes are buried. Although negotiations were at times tense between the Kitigan Zibi community and museum, they were able to reach agreement (source: [http://www.canadiangeographic.ca/magazine/SO05/indepth/archaeology.asp Canadian Geographic Online]).
7177
7178 ==See also==
7179 *[[List of significant archaeological discoveries]]
7180 *[[List of archaeological sites sorted by country]]
7181 *[[List of archaeologists]]
7182 *[[Biblical archaeology]]
7183 *[[List of archaeological periods]]
7184 *[[Prehistory]]
7185
7186 ==External links==
7187 {{commonscat|Archaeology}}
7188
7189 * [http://www.archeologia.be Archeologia belga] The Alphabetical of Archaeology. French Archaeology.
7190 * [http://www.archaeologynews.org Archaeology News] Current News and Information pertaining to all areas of archaeology, plus free news feeds for webmasters.
7191 *[http://www.northpacificprehistory.com North Pacific Prehistory] is an academic journal specialising in Northeast Asian and North American archaeology.
7192 * [http://nefer-seba.net/Archaeological-Fieldwork.php Excavation Sites] Archaeological work and volunteer pages.
7193 * [http://wasteflake.com/tiki-index.php?page=PopularArchaeology Archaeology in Popular Culture]
7194 * [http://www.anthropology-resources.org/ Anthropology Resources on the Internet] - Anthropology Resources on the Internet : a web directory, part of the WWW Virtual Library, with over 4000 links grouped in specialised topics.
7195 * [http://www.archaeology.org/ ''Archaeology'' magazine] published by the Archaeological Institute of America
7196 * [http://www.archaeologydirectory.com/ Archaeology Directory] - Directory of archaeological topics on the web.
7197 * [http://cctr.umkc.edu/user/fdeblauwe/iraq.html The 2003- Iraq War &amp; Archaeology] Information about looting in Iraq.
7198 * [http://www.galilean-library.org/newarch.html Philosophy and the New Archaeology], an essay at the Galilean Library on the philosophical underpinnning of archaeology and the debate over the New Archaeology.
7199 * [http://www.african-archaeology.net/ WWW VL African Archaeology] - The african archaeology portal, part of the WWW Virtual Library : all the web sites relating to african archaeology are listed here.
7200
7201 ==Further reading==
7202 * Ashmore, W. and Sharer, R. J., ''Discovering Our Past: A Brief Introduction to Archaeology'' Mountain View: Mayfield Publishing Company. ISBN 076741196X. This has also been used as a source.
7203 * Neumann, Thomas W. and Robert M. Sanford, ''Practicing Archaeology: A Training Manual for Cultural Resources Archaeology'' [http://www.rowmanlittlefield.com/ Rowman and Littlefield Pub Inc], August, 2001, hardcover, 450 pages, ISBN 0759100942
7204 * Renfrew, Colin &amp; Bahn, Paul G., ''Archaeology: Theories, Methods and Practice'', Thames and Hudson, 4th edition, 2004. ISBN 0500284415
7205 * Sanford, Robert M. and Thomas W. Neumann, ''Cultural Resources Archaeology: An Introduction'', [http://www.rowmanlittlefield.com/ Rowman and Littlefield Pub Inc], December, 2001, trade paperback, 256 pages, ISBN 0759100950
7206 * Trigger, Bruce. 1990. &quot;A History of Archaeological Thought&quot;. Cambridge: Cambridge University Press. ISBN 0521338182
7207
7208 [[Category:Anthropology]]
7209 [[Category:Archaeology]]
7210 [[Category:Humanities occupations]]
7211 [[Category:Social sciences]]
7212
7213 [[af:Argeologie]]
7214 [[als:Archäologie]]
7215 [[ar:ØšŲ„Ų… اŲ„ØĸØĢØ§Øą]]
7216 [[an:Arquiolochía]]
7217 [[bg:АŅ€Ņ…ĐĩĐžĐģĐžĐŗиŅ]]
7218 [[bn:āĻĒā§āĻ°āĻ¤ā§āĻ¨āĻ¤āĻ¤ā§āĻ¤ā§āĻŦāĻŦāĻŋāĻĻā§āĻ¯āĻž]]
7219 [[bs:Arheologija]]
7220 [[ca:Arqueologia]]
7221 [[ceb:Arkeyolohiya]]
7222 [[cs:Archeologie]]
7223 [[cy:Archaeoleg]]
7224 [[da:ArkÃĻologi]]
7225 [[de:Archäologie]]
7226 [[et:Arheoloogia]]
7227 [[el:ΑĪĪ‡ÎąÎšÎŋÎģÎŋÎŗÎ¯Îą]]
7228 [[es:Arqueología]]
7229 [[eo:Arkeologio]]
7230 [[eu:Arkeologia]]
7231 [[fa:باØŗØĒاŲ†â€ŒØ´Ų†Ø§Øŗی]]
7232 [[fr:ArchÊologie]]
7233 [[fur:Archeologjie]]
7234 [[gl:Arqueoloxía]]
7235 [[ko:ęŗ ęŗ í•™]]
7236 [[hr:Arheologija]]
7237 [[io:Arkeologio]]
7238 [[id:Arkeologi]]
7239 [[ia:Archeologia]]
7240 [[is:FornleifafrÃĻði]]
7241 [[it:Archeologia]]
7242 [[he:ארכאולוגיה]]
7243 [[ka:არáƒĨეოლოგია]]
7244 [[csb:ArcheÃ˛logijô]]
7245 [[ky:АŅ€Ņ…ĐĩĐžĐģĐžĐŗиŅ]]
7246 [[sw:Akiolojia]]
7247 [[lad:Arkeolojiya]]
7248 [[la:Archaeologia]]
7249 [[lv:ArheoloÄŖija]]
7250 [[lt:Archeologija]]
7251 [[lb:Archeologie]]
7252 [[li:Archeologie]]
7253 [[hu:RÊgÊszet]]
7254 [[mk:АŅ€Ņ…ĐĩĐžĐģĐžĐŗиŅ˜Đ°]]
7255 [[ms:Arkeologi]]
7256 [[nl:Archeologie]]
7257 [[ja:č€ƒå¤å­Ļ]]
7258 [[no:Arkeologi]]
7259 [[nn:Arkeologi]]
7260 [[pl:Archeologia]]
7261 [[pt:Arqueologia]]
7262 [[ro:Arheologie]]
7263 [[ru:АŅ€Ņ…ĐĩĐžĐģĐžĐŗиŅ]]
7264 [[sco:Airchaeologie]]
7265 [[sq:Arkeologjia]]
7266 [[scn:ArchioluggÃŦa]]
7267 [[simple:Archaeology]]
7268 [[sk:ArcheolÃŗgia]]
7269 [[sl:Arheologija]]
7270 [[sr:АŅ€Ņ…ĐĩĐžĐģĐžĐŗиŅ˜Đ°]]
7271 [[su:ArkÊologi]]
7272 [[fi:Arkeologia]]
7273 [[sv:Arkeologi]]
7274 [[tl:Arkeolohiya]]
7275 [[ta:āŽ¤ā¯ŠāŽ˛ā¯āŽĒā¯ŠāŽ°ā¯āŽŗāŽŋāŽ¯āŽ˛ā¯]]
7276 [[th:āš‚ā¸šā¸Ŗā¸˛ā¸“ā¸„ā¸”ā¸ĩ]]
7277 [[vi:KháēŖo cáģ• háģc]]
7278 [[tr:KazÄąbilim]]
7279 [[uk:АŅ€Ņ…ĐĩĐžĐģĐžĐŗŅ–Ņ]]
7280 [[vo:VÃļnotav]]
7281 [[zh:č€ƒå¤å­Ļ]]</text>
7282 </revision>
7283 </page>
7284 <page>
7285 <title>Anomalous Phenomena</title>
7286 <id>571</id>
7287 <revision>
7288 <id>15899102</id>
7289 <timestamp>2003-04-03T17:08:05Z</timestamp>
7290 <contributor>
7291 <username>Michael Hardy</username>
7292 <id>4626</id>
7293 </contributor>
7294 <minor />
7295 <text xml:space="preserve">#REDIRECT [[Anomalous_phenomenon]]</text>
7296 </revision>
7297 </page>
7298 <page>
7299 <title>Agricultural science</title>
7300 <id>572</id>
7301 <revision>
7302 <id>40369957</id>
7303 <timestamp>2006-02-20T02:43:30Z</timestamp>
7304 <contributor>
7305 <username>Ceyockey</username>
7306 <id>150564</id>
7307 </contributor>
7308 <minor />
7309 <comment>Disambiguate [[GMO]] to [[Genetically modified organism]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
7310 <text xml:space="preserve">'''Agricultural science''' is a broad multidisciplinary field that encompasses the parts of exact, natural, economic, and [[social sciences]] that are used in the practice and understanding of [[agriculture]]. ([[veterinary medicine|Veterinary science]], but not [[animal science]], is often excluded from the definition.)
7311
7312 ==Agriculture and agricultural science ==
7313
7314 The two terms are often confused. However, they cover different concepts:
7315
7316 :Agriculture is the set of activities that transform the environment for the production of animals and plants for human use. Agriculture concerns techniques, including the application of agronomic research.
7317
7318 :Agronomy is [[research and development]] related to studying and improving plant-based agriculture.
7319
7320 Agricultural sciences include research and development on:
7321
7322 * Production techniques (e.g., [[irrigation]] management, recommended [[nitrogen]] inputs)
7323 * Improving [[agricultural productivity|production]] in terms of quantity and quality (e.g., selection of [[drought]]-resistant crops and animals, development of new [[pesticide]]s, yield-sensing technologies, simulation models of crop growth, in-vitro [[cell culture]] techniques)
7324 * Transformation of primary products into end-[[consumer]] products (e.g., production, preservation, and packaging of [[dairy product]]s)
7325 * Prevention and correction of adverse environmental effects (e.g., [[soils retrogression and degradation|soil degradation]], [[waste management]], [[bioremediation]])
7326 * [[Theoretical production ecology]], relating to crop production modeling
7327 * [[traditional agricultural systems]] such as which serve to feed most people in the world and which often retain integration with nature in a way that hs proven more sustainable than modern systems
7328 * Food production and demand on a global basis, with special attention paid to the major producers of China and India.
7329
7330 == Agricultural science: a local science ==
7331
7332 With the exception of [[theoretical production ecology|theoretical agronomy]], research in agronomy, more than in any other field, is strongly related to local areas. It can be considered a science of [[ecoregions]], because it is closely linked to soil properties and [[climate]], which are never exactly the same from one place to another. Many people think an agricultural production system relying on local weather, [[soil]] characteristics, and specific crops has to be studied locally. Others feel a need to know and understand production systems in as many areas as possible, and the human dimension of interation with nature.
7333
7334 == History of agricultural science ==
7335 ''Main Article: [[History of agricultural science]]''
7336
7337 Agricultural science is seen by some to have began with [[Mendel]]'s insightful genetc work, but in modern terms might be better dated from the [[chemical fertilizer]] outputs of [[plant physiological]] understanding in eighteenth century [[Germany]]. Today it is very different from what it was even in 1950. Intensification of agriculture since the 1960s in developed and [[developing countries]], often referred to as the [[Green Revolution]], was closely tied to progress made in selecting and improving crops and animals for high productivity, as well as to developing additional inputs such as artificial [[fertilizer]]s and [[pesticide|phytosanitary product]]s.
7338
7339 As the oldest and largest human intervention in nature, the environmental impact of agriculture in general and more recently [[intensive agriculture]], industrial development, and population growth have raised many questions among agricultural scientists and have led to the development and emergence of new fields. These include technological fields that assume the solution to technological problems lies in better technology, such as [[integrated pest management]], [[waste management|waste treatment]] technologies, [[landscape architecture]], [[genomics]], and [[agricultural philosophy]] fields that include references to food production as something essentially different from non-essential eeconomic 'goods'. In fact, the interaction between these two approaches provide a fertile field for deeper understanding in agricultural science.
7340
7341 New technologies, such as [[biotechnology]] and [[computer science]] (for data processing and storage), and technological advances have made it possible to develop new research fields, including [[genetic engineering]], [[agrophysics]], improved [[statistics|statistical analysis]], and [[precision farming]]. Balancing these, as above, are the natural and human sciences of agricultural science that seek to understand the human-nature interactions of [[traditional agriculture]], including interaction of [[religion and agriculture]], and the non-material components of agricultural production systems.
7342
7343 === Prominent agricultural scientists ===
7344
7345 * [[Norman Borlaug]]
7346 * [[Luther Burbank]]
7347 * [[Louis Pasteur]]
7348 * [[Gregor Mendel]]
7349 * [[Rene Dumont|RenÊ Dumont]]
7350 * [[George Washington Carver]]
7351
7352 == Agricultural science and agriculture crisis==
7353
7354 Agriculture sciences seek to feed the world's population while preventing [[biosafety]] problems that may affect human health and the [[Natural environment|environment]]. This requires promoting good management of [[natural resources]] and respect for the environment, and increasingly concern for the psychological wellbeing of all concerned in the food production and consumption system.
7355
7356 Economic, environmental, and social aspects of agriculture sciences are subjects of ongoing debate. Recent crises (such as Avian Flu, [[Bovine Spongiform Encephalopathy|mad cow disease]] and issues such as the use of [[genetically modified organism]]s) illustrate the complexity and importance of this debate.
7357
7358 == Fields of agricultural science ==
7359
7360 * [[Agricultural engineering]]
7361 * [[Agricultural philosophy]]
7362 * [[Biosystems engineering]]
7363 * [[Aquaculture]]
7364 * [[Agronomy]] and [[Horticulture]]
7365 * [[Agrophysics]]
7366 * [[Livestock|Animal science]]
7367 * Plant [[fertilizer|fertilization]], [[animal nutrition|animal]] and [[human nutrition]]
7368 * Plant protection and animal health
7369 * [[Soil science]], especially [[edaphology]].
7370 * [[hydrology|water science]]
7371 * [[Agricultural biotechnology|Biotechnology]], [[genetic engineering]], and [[microbiology]]
7372 * Farming equipment
7373 * [[Irrigation]] and [[water management]]
7374 * Agricultural [[economics]]
7375 * [[Food science]]
7376 * [[Environmental science]] and [[environmental engineering|engineering]]
7377 * [[Waste management]]
7378 * [[Ecology]] and [[Natural environment|environment]]
7379 * [[Theoretical production ecology]]
7380
7381 == See also ==
7382 *[[Agricultural sciences basic topics]]
7383 *[[Agrology]]
7384 *[[Agronomy]]
7385 *[[History of agricultural science]]
7386
7387 [[Category:Agriculture]]
7388 [[Category:Agronomy|*]]
7389 [[Category:Soil science]]
7390
7391 [[bg:АĐŗŅ€Đ°Ņ€ĐŊи ĐŊĐ°ŅƒĐēи]]
7392 [[da:Agronomi]]
7393 [[de:Agrarwissenschaft]]
7394 [[fr:Agronomie]]
7395 [[id:Agronomi]]
7396 [[it:Agronomia]]
7397 [[he:אגרונומיה]]
7398 [[nl:Landbouwkunde]]
7399 [[ja:螲å­Ļ]]
7400 [[pl:Agronomia]]
7401 [[fi:Maataloustiede]]
7402 [[sv:Agronomi]]
7403 [[th:āš€ā¸ā¸Šā¸•ā¸Ŗā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒ]]
7404 [[zh:农å­Ļ]]</text>
7405 </revision>
7406 </page>
7407 <page>
7408 <title>Alchemy</title>
7409 <id>573</id>
7410 <restrictions>move=:edit=</restrictions>
7411 <revision>
7412 <id>42147983</id>
7413 <timestamp>2006-03-04T03:23:08Z</timestamp>
7414 <contributor>
7415 <username>Silence</username>
7416 <id>84942</id>
7417 </contributor>
7418 <minor />
7419 <comment>/* Alchemy in Medieval Europe */</comment>
7420 <text xml:space="preserve">{{featured article}}
7421 {{Otheruses}}
7422
7423 [[Image:Alchemist's Laboratory, Heinrich Khunrath, Amphitheatrum sapientiae aeternae, 1595 c.jpg|thumb|right|300px|Alchemist's laboratory, by Hans Vredman de Vries, c 1595.]]
7424
7425 '''Alchemy''' is an early [[protoscience|protoscientific]] and [[philosophy|philosophical]] discipline combining elements of [[chemistry]], [[metallurgy]], [[physics]], [[medicine]], [[astrology]], [[semiotics]], [[mysticism]], [[spiritualism]], and [[art]]. Alchemy has been practiced in ancient [[Ancient Egypt|Egypt]], [[India]], and [[China]], in [[Classical Antiquity|Classical]] [[Greece]] and [[Rome]], in the [[Caliphate|Islamic empire]], and then in [[Europe]] up to the 19th century &amp;mdash; in a complex network of schools and philosophical systems spanning at least 2500 years.
7426
7427 Western alchemy has always been closely connected with [[Hermeticism]], a philosophical and spiritual system that traces its roots to [[Hermes Trismegistus]], a [[syncretism|syncretic]] Egyptian-Greek deity and legendary alchemist. These two disciplines influenced the birth of [[Rosicrucianism]], an important esoteric movement of the 17th century. In the 19th century, as mainstream alchemy evolved into modern chemistry, its mystic and Hermetic aspects became the focus of a modern [[spiritual alchemy]], where material manipulations are viewed as mere symbols of spiritual transformations.
7428
7429 The alchemists did not follow what is now known as the [[scientific method]], and much of the &quot;knowledge&quot; they produced was later found to be banal, limited, wrong, or meaningless. Today, the discipline is of interest mainly to [[history of science|historians of science]] and [[history of philosophy|philosophy]], and for its mystic, [[esoterism|esoteric]], and artistic aspects. Nevertheless, alchemy was one of the main precursors of modern [[science]]s, and we owe to the ancient alchemists the discovery of many substances and processes that are the mainstay of modern chemical and metallurgical industries.
7430
7431 ==Overview==
7432 [[Image:William Fettes Douglas - The Alchemist.jpg|thumb|right|250px|The alchemist - by Sir [[William Fettes Douglas]].]]
7433
7434 === Alchemy as a proto-science ===
7435 The common perception of alchemists is that they were [[pseudoscience|pseudo-scientists]], [[crackpot]]s and [[charlatans]], who attempted to turn [[lead]] into [[gold]], believed that the universe was composed of the [[classical element|four elements]] of earth, air, fire, and water, and spent most of their time concocting miraculous [[medication|remedies]], [[poison]]s, and [[magic (paranormal)|magic]] [[potion]]s.
7436
7437 This picture is rather unfair. Although many alchemists were indeed crackpots and charlatans, many were well-meaning and intelligent scholars, who were simply struggling to make sense of a subject which, as we now know, was far beyond the reach of their tools. These people were basically &quot;proto-scientists&quot;, who attempted to explore and investigate the nature of chemical substances and processes. They had to rely on unsystematic experimentation, traditional know-how, [[rule of thumb|rules of thumb]], &amp;mdash; and plenty of speculative thought to fill in the wide gaps in existing knowledge.
7438
7439 Given these conditions, the mystic character of alchemy is quite understandable: to the early alchemist, chemical transformations could only seem like magical phenomena governed by incomprehensible laws, whose potential and limitations he had no way of knowing. Having discovered that a specific procedure could turn an earth-like ore into glistening metal, it was only natural to speculate that some different procedure could turn a metal into another.
7440
7441 At the same time, it was clear to the alchemists that &quot;something&quot; was generally being conserved in chemical processes, even in the most dramatic changes of physical state and appearance; i.e. that substances contained some &quot;principles&quot; that could be hidden under many outer forms, and revealed by proper manipulation. Throughout the history of the discipline, alchemists struggled very hard to understand the nature of these principles, and find some order and sense in the results of their chemical experiments &amp;mdash; which were often undermined by impure or poorly characterized reagents, the lack of quantitative measurements, and confusing and inconsistent nomenclature.
7442
7443 In spite of those difficulties, and of many false turns and loops, the alchemists managed to make steady progress in the understanding of the natural world. To them we owe the discovery of many important substances and chemical processes, which paved the way for the modern science of chemistry, and are still the mainstay of today's chemical and metallurgical industries.
7444
7445 === Alchemy as a philosophical and spiritual discipline ===
7446 The best known goals of the [[alchemist]]s were the [[transmutation]] of common metals into [[gold]] or [[silver]], and the creation of a &quot;[[universal panacea|panacea]]&quot;, a remedy that supposedly would cure all diseases and prolong life indefinitely. Starting with the Middle Ages, European alchemists invested much effort on the search for the &quot;[[philosopher's stone]]&quot;, a mythical substance that was believed to be an essential ingredient for either or both of those goals. Alchemists enjoyed prestige and support through the centuries, though not for their pursuit of those unattainable goals, nor the mystic and philosophical speculation that dominates their literature. Rather it was for their mundane contributions to the &quot;chemical&quot; industries of the day &amp;mdash; ore testing and refining, metalworking, production of ink, dyes, paints, and cosmetics, leather tanning, ceramics and glass manufacture, preparation of extracts and liquors, and so on. (It seems that the preparation of ''[[aqua vitae]]'', the &quot;water of life&quot;, was a fairly popular &quot;experiment&quot; among European alchemists.)
7447
7448 On the other hand, alchemists never had the intellectual tools nor the motivation to separate the physical (chemical) aspects of their craft from the metaphysical interpretations. Indeed, from antiquity until well into the [[Modern Age]], a physics devoid of metaphysical insight would have been as unsatisfying as a metaphysics devoid of physical manifestation. For one thing, the lack of common words for chemical concepts and processes, as well as the need for secrecy, led alchemists to borrow the terms and symbols of [[Bible|biblical]] and [[Paganism|pagan]] [[mythology]], [[astrology]], [[kabbalah]], and other mystic and [[esoterism|esoteric]] fields; so that even the plainest chemical recipe ended up reading like an abstruse magic incantation. Moreover, alchemists sought in those fields the theoretical frameworks into which they could fit their growing collection of disjointed experimental facts.
7449
7450 Starting with the middle ages, some alchemists increasingly came to view these metaphysical aspects as the true foundation of alchemy; and chemical substances, physical states, and material processes as mere metaphors for spiritual entities, states and transformations. Thus, both the transmutation of common metals into gold and the universal panacea symbolized evolution from an imperfect, diseased, corruptible and ephemeral state towards a perfect, healthy, incorruptible and everlasting state; and the philosopher's stone then represented some mystic key that would make this evolution possible. Applied to the alchemist himself, the twin goal symbolized his evolution from ignorance to enlightenment, and the stone represented some hidden spiritual truth or power that would lead to that goal. In texts that are written according to this view, the cryptic [[alchemical symbol]]s, diagrams, and textual imagery of late alchemical works typically contain multiple layers of meanings, allegories, and references to other equally cryptic works; and must be laborously &quot;decoded&quot; in order to discover their true meaning.
7451
7452 Some humanistic scholars now see these spiritual and metaphysical allegories as the truest and most valuable aspect of alchemy, and even claim that the development of chemistry out of alchemy was a &quot;corruption&quot; of the original Hermetic tradition. This is the view espoused by contemporary practitioners of [[spiritual alchemy]]. Most scientists, on the other hand, tend to take quite the opposite view: to them, the path from the material side of alchemy to modern chemistry was the &quot;straight road&quot; in the evolution of the discipline, while the metaphysically oriented brand of alchemy was a &quot;wrong turn&quot; that led to nowhere. In either view, however, the naïve interpretations of some practitoners or the fraudulent hopes fostered by others should not diminish the contribution of the more sincere alchemists.
7453
7454 ===Alchemy and astrology===
7455 Since its earliest times, alchemy has been closely connected to [[astrology]] &amp;mdash; which, in Islam and Europe, generally meant the traditional [[Babylon]]ian-Greek school of astrology. Alchemical systems often postulated that each of the seven [[planet]]s known to the ancients &quot;[[astrological sign|ruled]]&quot; or was associated with a certain [[metal]]. See the separate article on [[astrology and alchemy]] for further details.
7456
7457 ===Alchemy in the age of science===
7458 Up to the 18th century, alchemy was actually considered serious science in Europe; for instance, [[Isaac Newton]] devoted considerably more of his time and writing to the study of alchemy than he did to either optics or physics, for which he is famous, (see [[Isaac Newton's occult studies]]). Other eminent alchemists of the Western world are [[Roger Bacon]], Saint [[Thomas Aquinas]], [[Tycho Brahe]], [[Thomas Browne]], and [[Parmigianino]]. The decline of alchemy began in the 18th century with the birth of modern chemistry, which provided a more precise and reliable framework for matter transmutations and medicine, within a new grand design of the universe based on rational materialism.
7459
7460 In the first half of the nineteenth century, one established chemist, Baron [[Carl Reichenbach]], researched on concepts similar to the old alchemy, such as the [[Odic force]], but his research did not enter the mainstream of scientific discussion.
7461
7462 Matter transmutation, the old goal of alchemy, enjoyed a moment in the sun in the 20th century when physicists were able to convert lead atoms into gold atoms via a [[nuclear reaction]]. However, the new gold atoms, being unstable [[isotope]]s, lasted for under five seconds before they broke apart. More recently, reports of table-top element transmutation — by means of [[electrolysis]] or [[sonic cavitation]] — were the pivot of the [[cold fusion]] controversy of 1989. None of those claims have yet been reliably duplicated.
7463
7464 Alchemical symbolism has been occasionally used in the 20th century by [[psychology|psychologists]] and philosophers. [[Carl Jung]] reexamined alchemical symbolism and theory and began to show the inner meaning of alchemical work as a [[spirituality|spiritual]] path. Alchemical philosophy, symbols and methods have enjoyed something of a renaissance in [[post-modernism|post-modern]] contexts, such as the [[New Age]] movement. Even some physicists have played with alchemical ideas in books such as ''[[The Tao of Physics]]'' and ''[[The Dancing Wu Li Masters]]''.
7465
7466 ===Alchemy as a subject of historical research ===
7467 The history of alchemy has become a vigorous academic field. As the obscure&amp;mdash;''hermetic'', of course&amp;mdash;language of the alchemists is gradually being &quot;deciphered&quot;, historians are becoming more aware of the intellectual connections between that discipline and other facets of Western cultural history, such as the sociology and psychology of the intellectual communities, [[kabbala|kabbalism]], [[spiritualism]], [[Rosicrucianism]], and other mystic movements, [[cryptography]], [[witchcraft]]&amp;mdash;and, of course, the evolution of [[science]] and [[philosophy]].
7468
7469 ==Etymology==
7470 {{Wiktionarypar|alchemy}}
7471 The word ''alchemy'' comes from the [[Arabic language|Arabic]] ''al-k&amp;#299;miya&amp;#704;'' or ''al-kh&amp;#299;miya&amp;#704;'' (&amp;#1575;&amp;#1604;&amp;#1603;&amp;#1610;&amp;#1605;&amp;#1610;&amp;#1575;&amp;#1569; or &amp;#1575;&amp;#1604;&amp;#1582;&amp;#1610;&amp;#1605;&amp;#1610;&amp;#1575;&amp;#1569;), which might be formed from the article ''al-'' and the [[Greek language|Greek]] word ''chumeia'' (&amp;chi;Ρ&amp;mu;&amp;epsilon;&amp;#943;&amp;alpha;) meaning &quot;cast together&quot;, &quot;pour together&quot;, &quot;weld&quot;, &quot;alloy&quot;, etc. (from ''khumatos'', &quot;that which is poured out, an ingot&quot;, or from Persian ''Kimia'' meaning &quot;gold.&quot; A decree of [[Diocletian]], written about 300 CE in Greek, speaks against &quot;the ancient writings of the Egyptians, which treat of the ''kh&amp;#275;mia'' [transmutation] of gold and silver&quot;.
7472
7473 It has been suggested that the Arabic word ''al-k&amp;#299;miya&amp;#704;'' actually means &quot;the Egyptian [science]&quot;, borrowing from the [[Coptic language|Coptic]] word for &quot;Egypt&quot;, ''k&amp;#275;me'' (or its equivalent in the Mediaeval [[Bohairic]] dialect of Coptic, ''kh&amp;#275;me''). The Coptic word derives from [[Demotic Egyptian|Demotic]] ''km&amp;#7881;'', itself from ancient [[Egyptian language|Egyptian]] ''kmt''. The ancient Egyptian word referred to both the country and the colour &quot;black&quot; (Egypt was the &quot;Black Land&quot;, by contrast with the &quot;Red Land&quot;, the surrounding desert); so this etymology could also explain the nickname &quot;Egyptian black arts&quot;. However, this theory may be just an example of [[folk etymology]].
7474
7475 ==History==
7476 [[Image:Alchemy-Digby-RareSecrets.png|thumb|right|300px|Extract and symbol key from a 17th century book on alchemy. The symbols used have a one-to-one correspondence with symbols used in [[astrology]] at the time.]]
7477 Alchemy encompasses several philosophical traditions spanning some four millennia and three continents. These traditions' general penchant for cryptic and symbolic language makes it hard to trace their mutual influences and &quot;genetic&quot; relationships.
7478
7479 One can distinguish at least two major strands, which appear to be largely independent, at least in their earlier stages: [[Chinese alchemy]], centered in [[China]] and its zone of cultural influence; and [[Western alchemy]], whose center has shifted over the millennia between [[Egypt]], [[Greece]] and [[Rome]], the [[Islam]]ic world, and finally back to [[Europe]]. Chinese alchemy was closely connected to [[Taoism]], whereas Western alchemy developed its own philosophical system, with only superficial connections to the major Western religions. It is still an open question whether these two strands share a common origin, or to what extent they influenced each other.
7480
7481 ===Alchemy in Ancient Egypt===
7482 The origin of western alchemy may generally be traced to [[Ancient Egypt|ancient (pharaonic) Egypt]]. [[Metallurgy]] and [[mysticism]] were inexorably tied together in the ancient world, as the transformation of drab ore into shining metal must have seemed to be an act of magic governed by mysterious rules. It is claimed therefore that Alchemy in ancient Egypt was the domain of the priestly class.
7483
7484 Egyptian alchemy is known mostly through the writings of ancient (Hellenic) [[Greece|Greek]] philosophers, which in turn have often survived only in Islamic translations. Practically no original Egyptian documents on alchemy have survived. Those writings, if they existed, were likely lost when the [[Roman Emperor|emperor]] [[Diocletian]] ordered the burning of alchemical books after suppressing a revolt in Alexandria (292), which had been a center of Egyptian alchemy.
7485
7486 Nevertheless [[archaeological]] expeditions in recent times have unearthed evidence of chemical analysis during the [[Naqada]] periods. For example, a [[copper]] tool dating to the [[Naqada]] era bears evidence of having been used in such a way (reference: artifact 5437 on display at [http://www.digitalegypt.ucl.ac.uk/naqada/tombs/finds7.html]). Also, the process of [[tanning]] [[animal]] [[Rawhide|skins]] was already known in [[Predynastic Egypt]] as early as the [[6th millennium BC]] [http://www.touregypt.net/ebph5.htm]; although it possibly was discovered haphazardly.
7487
7488 Other evidence indicates early alchemists in [[Ancient Egypt|ancient Egypt]] had invented [[Mortar (masonry)|mortar]] by [[4000 BC]] and [[glass]] by [[1500 BC]]. The chemical reaction involved in the production of [[Calcium Oxide]] is one of the oldest known (references: [[Calcium Oxide]], [[limekiln]]):
7489
7490 :CaCO&lt;sub&gt;3&lt;/sub&gt; + heat → CaO + CO&lt;sub&gt;2&lt;/sub&gt;.
7491
7492 [[Ancient Egypt]] additionally produced [[cosmetics]], [[cement]], [[faience]] and also [[Pitch (resin)|pitch]] for [[shipbuilding]]. [[Papyrus]] had also been invented by [[3000 BC]].
7493
7494 Legend has it that the founder of Egyptian alchemy was the [[deity|god]] [[Thoth]], called Hermes-Thoth or Thrice-Great Hermes (''[[Hermes Trismegistus]]'') by the Greek. According to legend, he wrote what were called the forty-two Books of Knowledge, covering all fields of knowledge—including alchemy. Hermes's symbol was the [[caduceus]] or serpent-staff, which became one of many of alchemy's principal symbols. The &quot;[[Emerald Tablet]]&quot; or ''[[Hermetica]]'' of Thrice-Great Hermes, which is known only through Greek and [[Arabic language|Arabic]] translations, is generally understood to form the basis for Western alchemical philosophy and practice, called the [[hermeticism|hermetic philosophy]] by its early practitioners.
7495
7496 The first point of the &quot;Emerald Tablet&quot; tells the purpose of hermetical science: &quot;in truth certainly and without doubt, whatever is below is like that which is above, and whatever is above is like that which is below, to accomplish the miracles of one thing.&quot; {{ref_harvard|Burkhardt|Burckhardt, p. 196-7|a}} This is the [[macrocosm]]-[[microcosm]] belief central to the hermetic philosophy. In other words, the human body (the microcosm) is affected by the exterior world (the macrocosm), which includes the heavens through [[astrology]], and the earth through the [[classical element|element]]s. {{ref_harvard|Burkhardt|Burckhardt,p. 34-42|b}}
7497
7498 It has been speculated that a riddle from the Emerald Tablet—&quot;it was carried in the womb by the wind&quot;—refers to the distillation of oxygen from [[sodium nitrate|saltpeter]]—a process that was unknown in Europe until its (re)discovery by Sendivogius in the 17th century.
7499
7500 In the 4th century BC, the Greek-speaking [[Macedon|Macedonia]]ns conquered Egypt and founded the city of Alexandria in 332. This brought them into contact with Egyptian ideas. See [[#Alchemy in the Greek world|Alchemy in the Greek World]] below.
7501
7502 ===Chinese alchemy===
7503 Whereas Western alchemy eventually centered on the transmutation of base metals into noble ones, Chinese alchemy had a more obvious connection to medicine. The [[philosopher's stone]] of European alchemists can be compared to the [[Elixir of life|Grand Elixir of Immortality]] sought by Chinese alchemists. However, in the hermetic view, these two goals were not unconnected, and the philosopher's stone was often equated with the [[universal panacea]]; therefore, the two traditions may have had more in common than it initially appears.
7504
7505 [[Black powder]] may have been an important invention of Chinese alchemists. Described in 9th century texts and used in [[fireworks]] by the 10th Century, it was used in [[cannon]]s by 1290. From China, the use of gunpowder spread to [[Japan]], the [[Mongol]]s, the Arab world and Europe. Gunpowder was used by the Mongols against the Hungarians in 1241, and in Europe starting with the 14th century.
7506
7507 Black powder was most likely invented in the middle east before it found its way
7508 to China. Saltpeter, the critical oxidising component, was found naturally in India and
7509 along the Salt trade routes in the Middle East.
7510
7511 Chinese alchemy was closely connected to Taoist forms of [[traditional Chinese medicine|medicine]], such as [[Acupuncture]] and [[Moxibustion]], and to [[martial arts]] such as [[Tai Chi Chuan]] and [[Kung Fu]] (although some Tai Chi schools believe that their art derives from the Hygienic or Philosophical branches of Taoism, not the Alchemical).
7512
7513 ===Indian alchemy===
7514 Little is known in the West about the character and history of [[India]]n alchemy. An 11th century [[Iran|Persia]]n alchemist named [[al-Biruni]] reported that they &quot;have a science similar to alchemy which is quite peculiar to them, which is called [[Rasavātam]]. It means the art which is restricted to certain operations, drugs, compounds, and medicines, most of which are taken from plants. Its principles restored the health of those who were ill beyond hope and gave back youth to fading old age.&quot; The best example of a text based on this science is ''The Vaishashik Darshana'' of [[Kanad]]a (fl. 600 BC), who described an atomic theory over a century before Democritus.
7515
7516 The texts of [[Ayurvedic]] Medicine and Science have aspects related to alchemy, such having cures for all known diseases. The similarities in [[Ayurveda]] and alchemy are that both had methods used to treat people by putting oils over them.
7517
7518 Some people have also noted certain similarities between the [[metaphysics]] of the [[Samkhya]] philosophical tradition of Hinduism and the metaphysics of alchemy. Whether there is any direct connection between the two systems is an open question.
7519
7520 The Rasavadam was understood by very few people at the time. Two famous examples were Nagarjunacharya and Nityanadhiya. Nagarjunacharya was a buddhist monk who, in ancient times, ran the great university of Nagarjuna Sagar. His famous book, Rasaratanakaram, is a famous example of early Indian medicine.
7521 In traditional Indian medicinal terminology 'rasa' translates as 'mercury' and Nagarjunacharya was said to have developed a method to convert the mercury into gold. Much of his original writings are lost to us, but his teachings still have strong influence on traditional Indian medicine (Ayureveda) to this day.
7522
7523 ===Alchemy in the Greek world===
7524 The Greek city of [[Alexandria]] in Egypt was a center of Greek alchemical knowledge, and retained its preeminence through most of the Greek and Roman periods. The Greeks appropriated the hermetical beliefs of the Egyptians and melded with them the philosophies of [[Pythagoras|Pythagoreanism]], [[ionianism]], and [[gnosticism]]. Pythagorean philosophy is, essentially, the belief that numbers rule the universe, originating from the observations of sound, stars, and geometric shapes like triangles, or anything from which a [[ratio]] could be derived. [[Ionia]]n thought was based on the belief that the universe could be explained through concentration on [[phenomenon|natural phenomena]]; this philosophy is believed to have originated with [[Thales]] and his pupil [[Anaximander]], and later developed by [[Plato]] and [[Aristotle]], whose works came to be an integral part of alchemy. According to this belief, the universe can be described by a few unified [[law (principle)|natural laws]] that can be determined only through careful, thorough, and exacting philosophical explorations. The third component introduced to hermetical philosophy by the Greeks was [[gnosticism]], a belief prevalent in the Christian and early post-Christian [[Roman empire]], that the world is imperfect because it was created in a flawed manner, and that learning about the nature of spiritual matter would lead to salvation. They further believed that [[god (monotheism)|God]] did not &quot;create&quot; the universe in the classic sense, but that the universe was created &quot;from&quot; him, but was corrupted in the process (rather than becoming corrupted by the transgressions of Adam and Eve, i.e. [[original sin]]). According to Gnostic belief, by worshipping the cosmos, nature, or the creatures of the world, one worships the True God. Gnostics do not seek salvation from sin, but instead seek to escape ignorance, believing that sin is merely a consequence of ignorance. Platonic and neo-Platonic theories about universals and the omnipotence of God were also absorbed.
7525
7526 One very important concept introduced at this time, originated by [[Empedocles]] and developed by Aristotle, was that all things in the universe were formed from only four elements: ''earth'', ''air'', ''water'', and ''fire''. According to Aristotle, each element had a sphere to which it belonged and to which it would return if left undisturbed. {{ref_harvard|Lindsay|Lindsay, p. 16|a}}
7527
7528 The four elements of the Greek were mostly qualitative aspects of matter, not quantitative, as our modern elements are. &quot;...True alchemy never regarded earth, air, water, and fire as corporeal or chemical substances in the present-day sense of the word. The four elements are simply the primary, and most general, qualities by means of which the amorphous and purely quantitative substance of all bodies first reveals itself in differentiated form.&quot; {{ref_harvard|Hitchcock|Hitchcock, p. 66|a}} Later alchemists (if Plato and Aristotle can be called alchemists) extensively developed the mystical aspects of this concept.
7529
7530 ===Alchemy in the Roman Empire===
7531 The [[Ancient Rome|Romans]] adopted Greek alchemy and metaphysics, just as they adopted much of Greek knowledge and philosophy. By the end of the [[Roman empire]] the Greek alchemical philosophy had been joined to the philosophies of the Egyptians to create the cult of Hermeticism. {{ref_harvard|Lindsay|Lindsay|b}}
7532
7533 However, the development of [[Christianity]] in the Empire brought a contrary line of thinking, stemming from [[Augustine of Hippo|Augustine]] (354-430 AD), an early Christian philosopher who wrote of his beliefs shortly before the [[fall of the Roman Empire]]. In essence, he felt that [[reason]] and [[faith]] could be used to understand God, but [[experimental philosophy]] was evil: &quot;There is also present in the soul, by means of these same bodily sense, a kind of empty longing and curiosity which aims not at taking pleasure in the flesh but at acquiring experience through the flesh, and this empty curiosity he is dignified by the names of learning and science.&quot; {{ref_harvard|Augustine|Augustine, p. 245|a}}
7534
7535 Augustinian ideas were decidedly anti-experimental, yet when Aristotelian experimental techniques were made available to the West they were not shunned. Still, Augustinian thought was well ingrained in [[medieval society]] and was used to show alchemy as being un-Godly.
7536
7537 Much of the Roman knowledge of Alchemy, like that of the Greeks and Egyptians, is now lost. In Alexandria, the centre of alchemical studies in the Roman Empire, the art was mainly oral and in the interests of secrecy little was committed to paper. (Whence the use of &quot;hermetic&quot; to mean &quot;secretive&quot;.) {{ref_harvard|Lindsay|Lindsay, p. 155|c}} It is possible that some writing was done in Alexandria, and that it was subsequently lost or destroyed in fires and the turbulent periods that followed.
7538
7539 ===Alchemy in the Islamic world===
7540 After the fall of the Roman Empire, the focus of alchemical development moved to the Middle East. Much more is known about [[Islam]]ic alchemy because it was better documented: indeed, most of the earlier writings that have come down through the years were preserved as Islamic translations. {{ref_harvard|Burkhardt|Burckhardt p. 46|c}}
7541
7542 The Islamic world was a melting pot for alchemy. [[Plato]]nic and [[Aristotle|Aristotelian]] thought, which had already been somewhat appropriated into hermetical science, continued to be assimilated. Islamic alchemists such as [[Abu Bakr Mohammad Ibn Zakariya al-Razi|al-Razi]] (Latin Rasis or Rhazes) contributed key chemical discoveries of their own, such as the technique of [[distillation]] (the words ''[[alembic]]'' and ''[[alcohol]]'' are of [[Arabic language|Arabic]] origin), the [[hydrochloric acid|muriatic]], [[sulfuric acid|sulfuric]], and [[nitric acid|nitric]] acids, [[sodium carbonate|soda]], [[potash]], and more. (From the Arabic names of the last two substances, ''al-natrun'' and ''al-qalÄĢy'', Latinized into ''Natrium'' and ''Kalium'', come the modern symbols for [[sodium]] and [[potassium]].) The discovery that [[aqua regia]], a mixture of nitric and muriatic acids, could dissolve the noblest metal; gold, was to fuel the imagination of alchemists for the next millennium.
7543
7544 Islamic philosophers also made great contributions to alchemical hermeticism.
7545 The most influential author in this regard was arguably [[Abu Musa Jabir Ibn Hayyan|Jabir Ibn Hayyan]] (Arabic &amp;#1580;&amp;#1575;&amp;#1576;&amp;#1585; &amp;#1573;&amp;#1576;&amp;#1606; &amp;#1581;&amp;#1610;&amp;#1575;&amp;#1606;, Latin Geberus; usually rendered in English as Geber). Jabir's ultimate goal was [[takwin]], the artificial creation of life in the alchemical laboratory, up to and including human life. He analyzed each Aristotelian element in terms of four basic qualities of ''hotness'', ''coldness'', ''dryness'', and ''moistness''. {{ref_harvard|Burkhardt|Burkhardt, p. 29|d}} According to Geber, in each metal two of these qualities were interior and two were exterior. For example, lead was externally cold and dry, while gold was hot and moist. Thus, Jabir theorized, by rearranging the qualities of one metal, a different metal would result. {{ref_harvard|Burkhardt|Burckhardt, p. 29|e}} By this reasoning, the search for the [[philosopher's stone]] was introduced to Western alchemy. Jabir developed an elaborate [[numerology]] whereby the root letters of a substance's name in Arabic, when treated with various transformations, held correspondences to the element's physical properties.
7546
7547 It is now commonly accepted that Chinese alchemy influenced Arabic alchemists {{ref_harvard|Edwardes|Edwardes pp. 33-59|a}}{{ref_harvard|Burkhardt|Burckhardt, p. 10-22|f}}, although the extent of that influence is still a matter of debate. Likewise, [[Hinduism|Hindu]] learning was assimilated into Islamic alchemy, but again the extent and effects of this are not well known.
7548
7549 ===Alchemy in Medieval Europe===
7550 [[Image:JosephWright-Alchemist-1.jpg|thumb|250px|right|''The Alchemist in Search of the Philosophers Stone''. By [[Joseph Wright of Derby]], [[1771]].]]
7551 Because of its strong connections to the Greek and Roman cultures, alchemy was rather easily accepted into Christian philosophy, and Medieval European alchemists extensively absorbed Islamic alchemical knowledge. [[Gerbert of Aurillac]], who was later to become [[Pope Silvester II]], (d. 1003) was among the first to bring Islamic science to Europe from [[Spain]]. Later men such as [[Adelard of Bath]], who lived in the 12th century, brought additional learning. But until the 13th century the moves were mainly assimilative. {{ref_harvard|Hollister|Hollister p. 124, 294|a}}
7552
7553 In this period there appeared some deviations from the [[Augustine of Hippo|Augustinian]] principles of earlier Christian thinkers. [[Anselm of Canterbury|Saint Anselm]] (1033–1109) was a Benedictine who believed faith must precede rationalism, as Augustine and most theologians prior to Anselm had believed, but Anselm put forth the opinion that faith and rationalism were compatible and encouraged rationalism in a Christian context. His views set the stage for the philosophical explosion to occur. [[Peter Abelard]] followed Anselm's work, laying the foundation for acceptance of Aristotelian thought before the first works of Aristotle reached the West. His major influence on alchemy was his belief that Platonic universals did not have a separate existence outside of man's [[consciousness]]. Abelard also systematized the analysis of philosophical contradictions. {{ref_harvard|Hollister|Hollister, p. 287-8|b}}
7554
7555 [[Robert Grosseteste]] (1170–1253) was a pioneer of the scientific theory that would later be used and refined by the alchemists. He took
7556 Abelard's methods of analysis and added the use of observations, experimentation, and conclusions in making scientific evaluations. Grosseteste also did much work to bridge Platonic and Aristotelian thinking. {{ref_harvard|Hollister|Hollister pp. 294-5|c}}
7557
7558 [[Albertus Magnus]] (1193–1280) and [[Thomas Aquinas]] (1225–1274) were both [[Dominican Order|Dominican]]s who studied Aristotle and worked at reconciling the differences between philosophy and Christianity. Aquinas also did a great deal of work in developing the [[scientific method]]. He even went as far as claiming that universals could be discovered only through [[logical reasoning]], and, since [[reason]] could not run in opposition to God, reason must be compatible with [[theology]]. {{ref_harvard|Hollister|Hollister p. 290-4, 355|d}}. This ran contrary to the commonly held Platonic belief that universals were found through [[divine illumination]] alone. Magnus and Aquinas were among the first to take up the examination of alchemical theory, and could be considered to be alchemists themselves, except that these two did little in the way of [[experimentation]].
7559
7560 The first true alchemist in Medieval Europe was [[Roger Bacon]]. His work did as much for alchemy as [[Robert Boyle]]'s was to do for [[chemistry]] and [[Galileo Galilei|Galileo]]'s for [[astronomy]] and [[physics]]. Bacon (1214–1294) was an Oxford [[Franciscan]] who explored [[optics]] and [[linguistics|languages]] in addition to alchemy. The Franciscan ideals of taking on the world rather than rejecting the world led to his conviction that experimentation was more important than reasoning: &quot;Of the three ways in which men think that they acquire [[knowledge]] of things: authority, [[reason|reasoning]], and [[experience]]; only the last is effective and able to bring peace to the intellect.&quot; (Bacon p. 367) &quot;[[Experimental Science]] controls the conclusions of all other sciences. It reveals truths which reasoning from [[law (principle)|general principles]] would never have discovered.&quot; {{ref_harvard|Hollister|Hollister p. 294-5|e}} Roger Bacon has also been attributed with originating the search for the philosopher's stone and the elixir of life: &quot;That medicine which will remove all impurities and corruptibilities from the lesser metals will also, in the opinion of the wise, take off so much of the corruptibility of the body that human life may be prolonged for many centuries.&quot; The idea of [[immortality]] was replaced with the notion of [[longevity|long life]]; after all, man's time on Earth was simply to wait and prepare for immortality in the world of God. Immortality on Earth did not mesh with Christian theology. {{ref_harvard|Edwardes|Edwardes p. 37-8|b}}
7561
7562 Bacon was not the only alchemist of the high middle ages, but he was the most significant. His works were used by countless alchemists of the fifteenth through nineteenth centuries. Other alchemists of Bacon's time shared several traits. First, and most obviously, nearly all were members of the clergy. This was simply because few people outside the parochial schools had the education to examine the Arabic-derived works. Also, alchemy at this time was sanctioned by the church as a good method of exploring and developing theology. Alchemy was interesting to the wide variety of churchmen because it offered a rationalistic view of the universe when men were just beginning to learn about rationalism. {{ref_harvard|Edwardes|Edwardes p. 24-7|c}}
7563
7564 So by the end of the thirteenth century, alchemy had developed into a fairly structured system of belief. Adepts believed in the macrocosm-microcosm theories of Hermes, that is to say, they believed that processes that affect minerals and other substances could have an effect on the human body (e.g., if one could learn the secret of purifying gold, one could use the technique to purify the [[soul|human soul]].) They believed in the four elements and the four qualities as described above, and they had a strong tradition of cloaking their written ideas in a labyrinth of coded [[jargon]] set with traps to mislead the uninitiated. Finally, the alchemists practiced their art: they actively experimented with chemicals and made [[observation]]s and [[theory|theories]] about how the universe operated. Their entire philosophy revolved around their belief that man's soul was divided within himself after the fall of Adam. By purifying the two parts of man's soul, man could be reunited with God. {{ref_harvard|Burkhardt|Burckhardt p. 149|g}}
7565
7566 In the fourteenth century, these views underwent a major change. [[William of Ockham]], an [[Oxford]] Franciscan who died in 1349, attacked the [[Thomist]] view of compatibility between faith and reason. His view, widely accepted today, was that God must be accepted on faith alone; He could not be limited by human reason. Of course this view was not incorrect if one accepted the postulate of a limitless God versus limited human reasoning capability, but it virtually erased alchemy from practice in the fourteenth and fifteenth centuries. {{ref_harvard|Hollister|Hollister p. 335|f}} [[Pope John XXII]] in the early 1300s issued an edict against alchemy, which effectively removed all church personnel from the practice of the Art. {{ref_harvard|Edwardes|Edwardes, p.49|d}} The climate changes, [[Black Death|Black plague]], and increase in [[war|warfare]] and [[famine]] that characterized this century no doubt also served to hamper philosophical pursuits in general.
7567
7568 [[Image:flamel-figures.png|thumb|250px|[[Nicholas Flamel]] had these mysterious alchemical symbols carved on his [[tomb]] in the Church of the [[Holy Innocents]] in Paris.]]
7569 Alchemy was kept alive by men such as [[Nicolas Flamel]], who was noteworthy only because he was one of the few alchemists writing in those troubled times. Flamel lived from 1330 to 1417 and would serve as the [[archetype]] for the next phase of alchemy. He was not a religious scholar as were many of his predecessors, and his entire interest in the subject revolved around the pursuit of the philosopher's stone, which he is reputed to have found; his work spends a great deal of time describing the processes and reactions, but never actually gives the formula for carrying out the transmutations. Most of his work was aimed at gathering alchemical knowledge that had existed before him, especially as regarded the philosophers' stone. {{ref_harvard|Burkhardt|Burckhardt pp.170-181|h}}
7570
7571 Through the [[high middle ages]] (1300-1500) alchemists were much like Flamel: they concentrated on looking for the philosophers' stone and the elixir of youth, now believed to be separate things. Their cryptic allusions and [[symbolism]] led to wide variations in interpretation of the art. For example, many alchemists during this period interpreted the purification of the soul to mean the [[transmutation]] of lead into gold (in which they believed elemental [[mercury (element)|mercury]], or 'quicksilver', played a crucial role). These men were viewed as [[magic (paranormal)|magicians and sorcerers]] by many, and were often persecuted for their practices. {{ref_harvard|Edwardes|Edwardes pp. 50-75|e}}{{ref_harvard|Norton|Norton pp lxiii-lxvii|a}}
7572
7573 One of these men who emerged at the beginning of the sixteenth century was named [[Heinrich Cornelius Agrippa]]. This alchemist believed himself to be a wizard and actually thought himself capable of summoning [[spiritual being|spirit]]s. His influence was negligible, but like Flamel, he produced writings which were referred to by alchemists of later years. Again like Flamel, he did much to change alchemy from a mystical philosophy to an [[occult]]ist magic. He did keep alive the philosophies of the earlier alchemists, including experimental science, numerology, etc., but he added magic theory, which reinforced the idea of alchemy as an occultist belief. In spite of all this, Agrippa still considered himself a Christian, though his views often came into conflict with the church. {{ref_harvard|Edwardes|Edwardes p.56-9|f}}{{ref_harvard|Wilson|Wilson p.23-9|a}}
7574
7575 ===Alchemy in the Modern Age and Renaissance===
7576 European alchemy continued in this way through the dawning of the [[Renaissance]]. The era also saw a flourishing of [[con artist]]s who would use chemical tricks and sleight of hand to &quot;demonstrate&quot; the transmutation of common metals into gold, or claim to possess secret knowledge that — with a &quot;small&quot; initial investment — would surely lead to that goal.
7577
7578 The most important name in this period is Philippus Aureolus [[Paracelsus]], (Theophrastus Bombastus von Hohenheim, 1493–1541) who cast alchemy into a new form, rejecting some of the occultism that had accumulated over the years and promoting the use of observations and experiments to learn about the human body. He rejected Gnostic traditions, but kept much of the Hermetical, neo-Platonic, and Pythagorean philosophies; however, Hermetical science had so much Aristotelian theory that his rejection of Gnosticism was practically meaningless. In particular, Paracelsus rejected the magic theories of Agrippa and Flamel. He did not think of himself as a magician, and scorned those who did. (Williams p.239-45)
7579
7580 Paracelsus pioneered the use of chemicals and minerals in medicine, and wrote &quot;Many have said of Alchemy, that it is for the making of gold and silver. For me such is not the aim, but to consider only what virtue and power may lie in medicines.&quot; {{ref_harvard|Edwardes|Edwardes, p.47|g}} His hermetical views were that sickness and health in the body relied on the harmony of man the microcosm and Nature the macrocosm. He took an approach different from those before him, using this analogy not in the manner of soul-purification but in the manner that humans must have certain balances of minerals in their bodies, and that certain illnesses of the body had chemical remedies that could cure them. {{ref_harvard|Debus|Debus &amp; Multhauf, p.6-12|a}} While his attempts of treating diseases with such remedies as Mercury might seem ill-advised from a modern point of view, his basic idea of chemically produced medicines has stood time surprisingly well.
7581
7582 [[Image:Alchemik Sedziwoj Matejko.JPG|thumb|left|400px|Alchemist Michal Sedziwoj|&quot;Alchemik Michał SędziwÃŗj&quot;, oil on board by [[Jan Matejko]], 73 x 130 cm, Museum of Arts in [[ŁÃŗdÅē]].]]
7583 In [[England]], the topic of alchemy in that time frame is often associated with Doctor [[John Dee]] ([[13 July]] [[1527]] – December, 1608), better known for his role as [[astrologer]], cryptographer, and general &quot;scientific consultant&quot; to [[Elizabeth I of England|Queen Elizabeth I]]. Dee was considered an authority on the works of [[Roger Bacon]], and was interested enough in alchemy to write a book on that subject (''Monas Hieroglyphica'', 1564) influenced by the [[Kabbala]]. Dee's associate [[Edward Kelley]] — who claimed to converse with [[angel]]s through a crystal ball and to own a powder that would turn [[mercury (element)|mercury]] into [[gold]] — may have been the source of the popular image of the alchemist-charlatan.
7584
7585 Another lesser known alchemist was [[Michał SędziwÃŗj|Michael Sendivogius]] (''Michał SędziwÃŗj'', 1566 - 1636), a [[Poland|Polish]] alchemist, philosopher, medical doctor and pioneer of chemistry. According to some accounts, he distilled [[oxygen]] in a lab sometime around 1600, 170 years before [[Karl Wilhelm Scheele|Scheele]] and [[Joseph Priestley|Priestley]], by warming nitre ([[saltpetre]]). He thought of the gas given off as &quot;the elixir of life&quot;. Shortly after discovering this method, it is believed that Sendivogious taught his technique to [[Cornelius Drebbel]]. In 1621, Drebbel practically applied this in a submarine.
7586
7587 [[Tycho Brahe]] (1546–1601), better known for his [[astronomical]] and [[astrological]] investigations, was also an alchemist. He had a laboratory built for that purpose at his [[Uraniborg]] observatory/research institute.
7588
7589 ===The decline of Western alchemy===
7590 The demise of Western alchemy was brought about by the rise of modern science with its emphasis on rigorous quantitative experimentation and its disdain for &quot;ancient wisdom&quot;. Although the seeds of these events were planted as early as the 17th century, alchemy still flourished for some two hundred years, and in fact may have reached its apogee in the 18th century.
7591
7592 [[Robert Boyle]] (1627–1691), better known for his studies of gases (cf. [[Boyle's law]]) pioneered the scientific method in chemical investigations. He assumed nothing in his experiments and compiled every piece of relevant data; in a typical experiment, Boyle would note the place in which the experiment was carried out, the wind characteristics, the position of the Sun and Moon, and the barometer reading, all just in case they proved to be relevant. {{ref_harvard|Pilkington|Pilkington p.11|a}} This approach eventually led to the founding of modern chemistry in the [[18th century|18th]] and [[19th century|19th]] centuries, based on revolutionary discoveries of [[Antoine Lavoisier|Lavoisier]] and [[John Dalton]] — which finally provided a logical, quantitative and reliable framework for understanding matter transmutations, and revealed the futility of longstanding alchemical goals such as the philospher's stone.
7593
7594 Meanwhile, Paracelsian alchemy led to the development of modern medicine. Experimentalists gradually uncovered the workings of the human body, such as blood circulation ([[William Harvey|Harvey]], [[1616]]), and eventually traced many diseases to infections with germs ([[Robert Koch|Koch]] and [[Louis Pasteur|Pasteur]], 19th century) or lack of ''natural'' nutrients and [[vitamin]]s ([[James Lind|Lind]], [[Christiaan Eijkman|Eijkman]], [[Casimir Funk|Funk]], et al.). Supported by parallel developments in organic chemistry, the new science easily displaced alchemy from its medical roles, interpretive and prescriptive, while deflating its hopes of miraculous elixirs and exposing the ineffectiveness or even toxicity of its remedies.
7595
7596 Thus, as science steadily continued to uncover and rationalize the clockwork of the universe, founded on its own materialistic metaphysics, Alchemy was left deprived of its chemical and medical connections — but still incurably burdened by them. Reduced to an arcane philosophical system, poorly connected to the material world, it suffered the common fate of other [[esoteric]] disciplines such as [[astrology]] and [[Kabbalah]]: excluded from [[university]] curricula, shunned by its former patrons, [[damned knowledge|ostracized]] by scientists, and commonly viewed as the epitome of [[charlatan]]ism and [[superstition]].
7597
7598 These developments could be interpreted as part of a broader reaction in European intellectualism against the [[Romanticism|Romantic]] movement of the preceding century. Be as it may, it is sobering to observe how a discipline that held so much intellectual and material prestige, for more than two thousand years, could disappear so easily from the universe of Western thought.
7599
7600 ===Modern 'alchemy'===
7601 In modern times, progress has been made toward achieving the goals of alchemy using scientific, rather than alchemic, means. These developments may on occasion be called &quot;alchemy&quot; for rhetorical reasons.
7602
7603 In 1919, [[Ernest Rutherford]] used [[artificial disintegration]] to convert nitrogen into oxygen. This process of bombarding the atomic nucleus with high energy particles is the principle behind modern [[particle accelerators]], in which transmutations of elements are common. Indeed, in 1980, [[Glenn Seaborg]] transmuted lead into gold, though the amount of energy used and the microscopic quantities created negated any possible financial benefit.
7604
7605 In 1964, [[George Ohsawa]] and [[Michio Kushi]], based on the claims of [[Louis Kervran]], reportedly successfully transmutated [[sodium]] into [[potassium]], by use of an electric arc, and later of [[carbon]] and [[oxygen]] into [[iron]]. In 1994, [[R. Sundaresan]] and [[J. Bockris]] reported that they had observed fusion reactions in electrical discharges between carbon rods immersed in water. However, none of these claims have been replicated by other scientists, and the idea is now thoroughly discredited.
7606
7607 As of 2006, a universal panacea remains elusive, though [[futurist]]s such as [[Ray Kurzweil]] believe sufficiently advanced [[nanotechnology]] may prolong life indefinitely. Some say the third goal of alchemy has been fulfilled by [[In vitro fertilization|IVF]] and the [[cloning]] of a human embryo, although these technologies fall far short of creating a human life from scratch.
7608
7609 The aim of [[artificial intelligence]] research could be said to be creating a life from scratch, and those philosophically opposed to the possibility of AI have compared it with alchemy, such as Herbert and Stuart Dreyfus in their 1960 paper ''Alchemy and AI''.
7610
7611 ==Alchemy in art and entertainment ==
7612 References to alchemy in art and entertainment are far too numerous to list. Here we give only a few indicative samples. More titles can be found in the [[philosopher's stone]] article.
7613
7614 ===Novels and plays===
7615 Many [[literature|writers]] lampooned alchemists and used them as the butt of [[satire|satirical]] attacks. Two early and well-known examples are
7616
7617 *[[Geoffrey Chaucer]], ''[[The Canon's Yeoman's Prologue and Tale|Canon's Yeoman's Tale]]'' (ca. 1380). The main character, an alchemist on the way to [[Canterbury]], claims that he will &quot;pave it all of silver and of gold&quot;.
7618 *[[Ben Jonson]], ''[[The Alchemist (play)|The Alchemist]]'' (ca 1610). In this five-act play, the characters set up an alchemy workshop to swindle people.
7619
7620 [[Image:Alchemical Laboratory - Project Gutenberg eText 14218.jpg|thumbnail|right|250px|An Alchemical Laboratory, from ''The Story of Alchemy and the Beginnings of Chemistry'']]
7621
7622 In more recent works, alchemists are generally presented in a more romatic or mystic light, and often little distinction is made between alchemy, magic, and witchcraft:
7623
7624 *[[Mary Wollstonecraft Shelley|Mary Shelley]], ''[[Frankenstein]]'' (1818). Victor Frankenstein uses both alchemy and modern science to create [[Frankenstein's monster]].
7625 *[[Johann Wolfgang von Goethe|Goethe]], ''[[Faust, Part 2]]'' (1832). Faust's servant Wagner uses alchemy to create a [[homunculus]].
7626 *[[Gabriel García MÃĄrquez]], ''[[One Hundred Years of Solitude]]'' (1967). An alchemist named Melquíades adds to the novel's surreal atmosphere.
7627 *[[Paulo Coelho]], ''[[The Alchemist (book)|The Alchemist]]'' (1988).
7628 *[[J. K. Rowling]], ''[[Harry Potter and the Philosopher's Stone]]'' (1997). Features [[Nicholas Flamel]] as a character.
7629 *[[Neal Stephenson]], ''[[The Baroque Cycle]]'' (2003–2004). Features real and imaginary alchemists such as [[Isaac Newton]], [[Nicolas Fatio de Duillier|de Duillier]], and [[Enoch Root]].
7630 *[[Martin Booth]], ''[[Doctor Illuminatus: The Alchemist's Son]]'' (2003).
7631 *[[Margaret Mahy]], ''[[Alchemy (Margaret Mahy book)|Alchemy]]'' (2004).
7632 *[[John Fasman]], ''[[The Geographer's Library]]''&lt;!--DATE??--&gt;, whose plot revolves around thirteen alchemical artifacts.
7633 *[[Gregory Keyes]], ''[[Age of Unreason]]''&lt;!--DATE??--&gt;. Features [[Isaac Newton]] and [[Nicolas Fatio de Duillier|de Duillier]].
7634 *[[Cornelia Funke]], ''[[Dragon Rider]]'' (2004). Twigleg the [[homonculus]] was created by an alchemist.
7635
7636 ===Comics, manga, and video games===
7637 *[[Stan Lee]] and [[Jack Kirby]], ''[[Fantastic Four]]'' comics (ca. 1962–). Villain [[Diablo (comics)|Diablo]] is an alchemist.
7638 *[[Darklands]] PC game (1992). Alchemy features prominently throughout the game.
7639 *[[Mike Mignola]]'s ''[[Hellboy]]'' comics (1993–). The character [[Roger the Homunculus]] was created by alchemy.
7640 *[[Nintendo]]'s [[Golden Sun]] video game (2001). Alchemy is an evil force that threatens the world.
7641 *[[Hiromu Arakawa]], ''[[Fullmetal Alchemist]]'' (2002–). 'Alchemists' can transform anything within the principle of [[Equivalent Exchange]].
7642 *[[Nobuhiro Watsuki]], ''[[Buso Renkin|Weapon Alchemist]]'' manga (2003?–).
7643 *[[Kazuki Takahashi]], ''[[Yu-Gi-Oh! GX]]'' anime (2004–). The character [[Lyman Banner|Daitokuji]] is an alchemist who preserved his soul within a homunculus.
7644 *Nintendo's [[Final Fantasy Tactics Advance]] video game (2003). Has a playable class called Alchemist.
7645 *[[Bethesda Softworks]]' [[The Elder Scrolls III: Morrowind]] prominently features alchemy as a method of creating various potions for use by the player.
7646 *[[Indiana Jones and the Emperor's Tomb]] computer game (2003). A large portion of the game is centered around a castle in Prague formerly owned by an alchemist king.
7647 *[[World of Warcraft]] computer game (2004). Alchemy is one of the [[Professions_(World_of_Warcraft)#Alchemy|professions]] the player can learn.
7648 &lt;!--Please provide dates --&gt;
7649
7650 ===Music===
7651 *[[Tool (band)]], album ''[[Lateralus]]'' (2001).
7652
7653 ==References==
7654 * {{note_label|Augustine|Augustine, p. 245|a}} {{cite book | author=Augustine | title=The Confessions | publisher=New York: Mentor Books | year=1963 | id= }} Trans. Rex Warner.
7655 * {{note_label|Burkhardt|Burckhardt, p. 196-7|a}}{{note_label|Burkhardt|Burckhardt,p. 34-42|b}}{{note_label|Burkhardt|Burckhardt p. 46|c}}{{note_label|Burkhardt|Burkhardt, p. 29|d}}{{note_label|Burkhardt|Burckhardt, p. 29|e}}{{note_label|Burkhardt|Burckhardt, p. 10-22|f}}{{note_label|Burkhardt|Burckhardt p. 149|g}}{{note_label|Burkhardt|Burckhardt pp.170-181|h}} {{cite book | first=Titus | last=Burckhardt | authorlink=Titus Burckhardt | title=Alchemy: Science of the Cosmos, Science of the Soul. | publisher=Baltimore:Penguin | year=1967 | id= }} Trans. William Stoddart.
7656 * Cavendish, Richard, The Black Arts, Perigee Books
7657 * {{note_label|Debus|Debus &amp; Multhauf, p.6-12|a}} {{cite book | author=Debus, Allen G. and Multhauf, Robert P. | title=Alchemy and Chemistry in the Seventeenth Century | publisher=Los Angeles: William Andrews Clark Memorial Library, University of California. | year=1966 | id= }}
7658 * {{note_label|Edwardes|Edwardes pp. 33-59|a}}{{note_label|Edwardes|Edwardes p. 37-8|b}}{{note_label|Edwardes|Edwardes p. 24-7|c}}{{note_label|Edwardes|Edwardes, p.49|d}}{{note_label|Edwardes|Edwardes pp. 50-75|e}}{{note_label|Edwardes|Edwardes p.56-9|f}}{{note_label|Edwardes|Edwardes, p.47|g}} {{cite book | author=Edwardes, Michael | title=The Dark Side of History | publisher=New York: Stein and Day | year=1977 | id= }}
7659 * {{cite book | author=Gettgins, Fred | title=Encyclopedia of the Occult | publisher=London: Rider | year=1986 | id= }}
7660 * {{note_label|Hitchcock|Hitchcock, p. 66|a}} {{cite book | author=Hitchcock, Ethan Allen | title=Remarks Upon Alchemy and the Alchemists | publisher=Boston: Crosby, Nichols | year=1857 | id= }}
7661 * {{note_label|Hollister|Hollister p. 124, 294|a}}{{note_label|Hollister|Hollister, p. 287-8|b}}{{note_label|Hollister|Hollister pp. 294-5|c}}{{note_label|Hollister|Hollister p. 290-4, 355|d}}{{note_label|Hollister|Hollister p. 294-5|e}}{{note_label|Hollister|Hollister p. 335|f}} {{cite book | author=Hollister, C. Warren | title=Medieval Europe: A Short History | publisher=Blacklick, Ohio: McGraw-Hill College | year=1990 | id=ISBN 0075571412 }} 6th ed.
7662 * {{note_label|Lindsay|Lindsay, p. 16|a}}{{note_label|Lindsay|Lindsay|b}}{{note_label|Lindsay|Lindsay, p. 155|c}} {{cite book | author=Lindsay, Jack | title=The Origins of Alchemy in Graeco-Roman Egypt | publisher=London: Muller. | year=1970 | id=ISBN 0389010065 }}
7663 * {{cite book | author=Marius | title=On the Elements | publisher=Berkeley: University of California Press | year=1976 | id=ISBN 0520028562 }} Trans. Richard Dales.
7664 * {{note_label|Norton|Norton pp lxiii-lxvii|a}} {{cite book | author=Norton, Thomas (Ed. John Reidy) | title=Ordinal of Alchemy | publisher=London: Early English Text Society | year=1975 | id=ISBN 0197222749 }}
7665 * {{note_label|Pilkington|Pilkington p.11|a}} {{cite book | author=Pilkington, Roger | title=Robert Boyle: Father of Chemistry | publisher=London: John Murray | year=1959 | id= }}
7666 * {{cite book | author=Weaver, Jefferson Hane | title=The World of Physics | publisher=New York: Simon &amp; Schuster | year=1987 | id= }}
7667 * {{note_label|Wilson|Wilson p.23-9|a}} {{cite book | author=Wilson, Colin | title=The Occult: A History | publisher=New York: Random House | year=1971 | id=ISBN 0394465555 }}
7668 * {{cite book | author=Zumdahl, Steven S. | title=Chemistry | publisher=Lexington, Maryland: D. C. Heath and Co. | year=1989 | id=ISBN 0669167088 }} 2nd ed.
7669 * {{cite book | author=Greenberg, Adele Droblas | title=Chemical History Tour, Picturing Chemistry from Alchemy to Modern Molecular Science | publisher=Wiley-Interscience | year=2000 | id=ISBN 0471354082 }}
7670
7671 ==See also==
7672 ===Other alchemical pages===
7673 {{commons|Alchemy}}
7674 *[[Vulcan of the alchemists]]
7675 *[[Philosopher's stone]]
7676 *[[Hermeticism]]
7677 *[[Astrology and alchemy]]
7678 *[[Transmutation]]
7679 *[[Duality]]
7680 *[[The four humours]]
7681 *[[Alkahest]], [[arcanum]], [[berith]], [[elixir]], [[quintessence]]
7682 *[[Alembic]]
7683 *[[Alchemical symbol]]&lt;!--
7684 *[[Circle with a point at its centre]]
7685 --&gt;
7686 *[[Goldwasser|Gold water]]
7687
7688 ===Related and alternative philosophies===
7689 *[[Western mystery tradition]]
7690 *[[Astrology]]
7691 *[[Necromancy]], [[magic (paranormal)|magic]],
7692 *[[Esotericism]], [[Rosicrucianism]], [[Illuminati]]
7693 *[[Taoism]] and the [[Five Elements]]
7694 *[[Kayaku-Jutsu]]
7695 *[[Acupuncture]], [[moxibustion]], [[ayurveda]], [[homeopathy]]
7696 *[[Anthroposophy]]
7697 *[[Psychology]] and [[Carl Jung]]
7698 *[[New Age]]
7699
7700 ===Scientific connections===
7701 *[[Chemistry]]
7702 *[[Physics]]
7703 *[[Scientific method]]
7704 *[[Protoscience]], [[Pseudoscience]], and [[Anti-science]]
7705 *[[Obsolete scientific theories]]
7706 *[[Historicism]]
7707
7708 ===Substances of the alchemists===
7709 *[[gold]] &amp;bull; [[silver]] &amp;bull; [[lead]] &amp;bull; [[copper]] &amp;bull; [[zinc]] &amp;bull; [[mercury (element)|mercury]]
7710 *[[phosphorus]] &amp;bull; [[sulfur]] &amp;bull; [[arsenic]] &amp;bull; [[antimony]]
7711 *[[vitriol]] &amp;bull; [[cinnabar]] &amp;bull; [[pyrites]] &amp;bull; [[orpiment]] &amp;bull; [[galena]]
7712 *[[magnesium oxide|magnesia]] &amp;bull; [[calcium oxide|lime]] &amp;bull; [[potash]] &amp;bull; [[natron]] &amp;bull; [[saltpetre]] &amp;bull; [[kohl (cosmetics)|kohl]]
7713 *[[ammonia]] &amp;bull; [[ammonium chloride]] &amp;bull; [[alcohol]] &amp;bull; [[camphor]]
7714 * Acids: [[sulfuric acid|sulfuric]] &amp;bull;[[hydrochloric acid|muriatic]] &amp;bull; [[nitric acid|nitric]] &amp;bull; [[acetic acid|acetic]] &amp;bull; [[formic acid|formic]] &amp;bull; [[citric acid|citric]]&amp;bull; [[tartaric acid|tartaric]]
7715 *[[aqua regia]] &amp;bull; [[gunpowder]]
7716
7717 ===Other resources===
7718 *[[List of alchemists]]
7719 *[[List of occultists]]
7720
7721 ==External links==
7722 Some websites discussing the original notion of alchemical transmutation:
7723 * [http://aras.org''Archive for Research in Archetypal Symbolism'':] A pictorial and written archive of mythological, ritualistic, and symbolic images from all over the world and from all epochs of human history.
7724 * [http://etext.lib.virginia.edu/cgi-local/DHI/dhi.cgi?id=dv1-04 ''Dictionary of the History of Ideas'':] Alchemy
7725 * [http://honolulu.hawaii.edu/distance/sci122/TVtext/24/MOD24.htm Skeptical Chemists]: from alchemy to chemistry, tracing the contributions of Paracelsus
7726 * [http://www.alchemy.cz The Alchemy Museum in Kutna Hora] : World's First Museum Dedicated to Alchemy in All Its Aspects
7727 * [http://antiquity.ac.uk/ProjGall/martinon/index.html A 16th century lab in a 21st century lab] : Analytical study of the archaeological remains of an alchemical laboratory
7728 * [http://www.gutenberg.org/etext/14218 The Story of Alchemy and the Beginnings of Chemistry], 1913, from [[Project Gutenberg]]
7729 * [http://www.levity.com/alchemy/ The Alchemy Website] : A collection of many alchemical texts and other alchemical information
7730
7731 Some websites which appear to espouse modern versions of alchemy:
7732 * [http://www.rexresearch.com/ Rex Research] (Robert Nelson).
7733 * [http://www.alchemicaltaoism.com/ Alchemical Taoism.com] Eases study of the complex Healing Tao qi gong (chi kung) system. Essays by experienced students and instructors.
7734
7735 [[Category:Alchemy]]
7736 [[Category:Ancient Egypt]]
7737 [[Category:Arabic words]]
7738 [[Category:Esoteric schools of thought]]
7739 [[Category:Gold]]
7740 [[Category:History of ideas]]
7741 [[Category:Obsolete scientific theories]]
7742
7743 {{Link FA|es}}
7744 {{Link FA|pt}}
7745
7746 [[af:Alchemie]]
7747 [[bg:АĐģŅ…иĐŧиŅ]]
7748 [[ca:Alquímia]]
7749 [[cs:Alchymie]]
7750 [[da:Alkymi]]
7751 [[de:Alchemie]]
7752 [[eo:Alkemio]]
7753 [[es:Alquimia]]
7754 [[et:Alkeemia]]
7755 [[fi:Alkemia]]
7756 [[fr:Alchimie]]
7757 [[he:אלכימיה]]
7758 [[hr:Alkemija]]
7759 [[id:Alkimia]]
7760 [[io:Alkemio]]
7761 [[it:Alchimia]]
7762 [[ja:éŒŦ金術]]
7763 [[la:Alchemia]]
7764 [[lt:Alchemija]]
7765 [[nl:Alchemie]]
7766 [[nn:Alkymi]]
7767 [[pl:Alchemia]]
7768 [[pt:Alquimia]]
7769 [[ru:АĐģŅ…иĐŧиŅ]]
7770 [[sk:AlchÃŊmia]]
7771 [[sl:Alkimija]]
7772 [[su:AlkÊmi]]
7773 [[sv:Alkemi]]
7774 [[th:ā¸ā¸˛ā¸Ŗāš€ā¸Ĩāšˆā¸™āšā¸Ŗāšˆāšā¸›ā¸Ŗā¸˜ā¸˛ā¸•ā¸¸]]
7775 [[tl:Alkimiya]]
7776 [[tr:Simya]]
7777 [[uk:АĐģŅ…Ņ–ĐŧŅ–Ņ]]
7778 [[zh:į‚ŧ金术]]</text>
7779 </revision>
7780 </page>
7781 <page>
7782 <title>Automatic Dependent Surveillance-Broadcast</title>
7783 <id>574</id>
7784 <revision>
7785 <id>39084664</id>
7786 <timestamp>2006-02-10T16:43:29Z</timestamp>
7787 <contributor>
7788 <ip>195.157.81.101</ip>
7789 </contributor>
7790 <comment>/* External links */</comment>
7791 <text xml:space="preserve">'''Automatic Dependent Surveillance-Broadcast''' (also called '''ADS-B''') is a system by which [[aircraft|airplanes]] constantly broadcast their current position and altitude, category of aircraft, [[airspeed]], [[identification]], and whether the aircraft is turning, climbing or descending over a dedicated radio [[datalink]]. This functionality is known as &quot;ADS-B out&quot; and is the basic level of ADS-B functionality.
7792
7793 The ADS-B system was developed in the 1990s. It relies on data from the [[Global Positioning System]], or any navigation system that provides an equivalent or better service. The maximum range of the system is line-of-sight, typically less than 200 [[nautical mile]]s (370 km).
7794
7795 The ADS-B transmissions are received by [[air traffic control]] stations, and all other ADS-B equipped aircraft within reception range. Reception by aircraft of ADS-B data is known as &quot;ADS-B in&quot;.
7796
7797 ==Usage==
7798 The initial use of ADS-B is expected to be by [[air traffic control]] and for surveillance purposes and for enhancing pilot situational awareness. ADS-B is lower cost than conventional radar and permits higher quality surveillance of airborne and surface movements. ADS-B is effective in remote areas or in mountainous terrain where there is no radar coverage, or where radar coverage is limited. The outback of Australia is one such area where ADS-B will provide surveillance where previously none existed. ADS-B also enhances surveillance on the airport surface, so it can also be used to monitor traffic on the taxiways and runways of an airport.
7799
7800 ADS-B equipped aircraft may also have a [[display]] unit in the cockpit picturing surrounding air traffic from ADS-B data (ADS-B in) and TIS-B (Traffic Information Service-Broadcast) data derived from air traffic radar. Both Pilots and [[air traffic controller]]s will then be able to &quot;see&quot; the positions of air traffic in the vicinity of the aircraft, and this may be used to provide an ASAS (Airborne Separation Assurance System).
7801
7802 Airborne Collision Avoidance Systems may in the future also make use of &quot;ADS-B in&quot;, supplementing the existing TCAS collision avoidance system by what is called 'hybrid surveillance'.
7803
7804 Airbus and Boeing are now expected to include ADS-B out (i.e. the transmitter of information) as standard on new-build aircraft from 2005 onwards. This is in part due to the European requirements for Mode S Elementary Surveillance (which uses 1090MHz Mode S transponder which now is normally capable of ADS-B via Extended Squitter), and some common functionality with ADS-B out.
7805
7806
7807
7808 ==Addressed and Broadcast ADS==
7809 The Radio Technical Commission for Aeronautics’ ([[RTCA]]) Free Flight Selection Committee defines surveillance as “detection, tracking, characterization and observation of aircraft, other vehicles and weather phenomena for the purpose of conducting flight operations in a safe and efficient manner.&quot;
7810
7811 Automatic Dependent Surveillance (ADS) is described as the process of creating and sending a message including the sender’s current position and other surveillance information, such as velocity, intent and flight identification. This information supports aircraft separation management by improving surveillance information at increased ranges, situational awareness and decision making. ADS data can be used in cooperation with data from current radar beacon systems, such as Air Traffic Control Radar Beacon Systems (ATCRBS), Mode S, Traffic Collision Avoidance Systems (TCAS) and primary Air Traffic Control (ATC) radar, and may also be used as a sole means of surveillance.
7812
7813 There are two commonly recognized types of ADS for aircraft applications:
7814 *ADS-Addressed (ADS-A), also known as ADS-Contract (ADS-C), and
7815 *ADS-Broadcast (ADS-B.
7816
7817 ADS-A provides a surveillance data report that is sent to a specific addressee. For example, ADS-A reports are employed in the Future Air Navigation System (FANS) using the Aircraft Communication Addressing and Reporting System ([[ACARS]]) as the communication protocol. During transoceanic flight, reports are periodically sent by an aircraft to the controlling air traffic region.
7818
7819 When ADS-B is used, aircraft and other vehicles continuously broadcast a message including position, heading, velocity and intent. Other uses may include obstacles transmitting a position message. Aircraft, ground-based stations, and other users monitoring the channels can receive the information and use it in a wide variety of applications. Because of this potential for broad utilization, a system using ADS-B is most often discussed as a replacement for or an augmentation to current methods of monitoring aeronautical traffic.
7820
7821 To understand the full capability of ADS-B, consider how the current Air Traffic Control system creates information. The radar measures the range and bearing of an aircraft. Bearing is measured by the position of the rotating radar antenna when it receives a response to its interrogation from the aircraft, and range is measured by the time it takes for the radar to receive the interrogation response.
7822
7823 The antenna beam becomes wider as the aircraft get farther away, making the position information less accurate. Additionally, detecting changes in aircraft velocity requires several radar sweeps that are spaced several seconds apart. In contrast, a system using ADS-B creates and listens for periodic position and intent reports from aircraft. These reports are generated and distributed using precise
7824 instruments, such as the global positioning system (GPS) and Mode S transponders, meaning integrity of the data is no longer susceptible to the range of the aircraft or the length of time between radar sweeps. The enhanced accuracy of the information will be used to improve safety, support a wide variety of applications and increase airport and airspace capacity.
7825
7826 Use of ADS-B for ground-based surveillance requires only ADS-B Out (transmit) capability on the aircraft. With the addition of ADS-B In (receive) capability, the potential for ADS-B applications grows significantly. Some of the equipment and services associated with ADS-B In capability include:
7827 *Cockpit Display of Traffic Information (CDTI), a display of proximate traffic based on ADS-B reports from other aircraft and ground-based facilities.
7828 *Traffic Information Services-Broadcast (TIS-B), a ground-based uplink report of proximate traffic that is under surveillance by ATC but is not ADS-B-equipped. This service would be available even with limited ADS-B implementation.
7829 *Flight Information Services-Broadcast (FIS-B), a ground-based uplink of flight information services and weather data.
7830
7831 ==ADS-B Physical Layer==
7832 Three link solutions are being proposed as the physical layer for relaying the ADS-B position reports:
7833 *1090 MHz Mode S Extended Squitter (ES),
7834 *Universal Access Transceiver (UAT) and
7835 *VHF Digital Link ([[VDL]]) Mode 4.
7836
7837 ===Mode S===
7838 The FAA has announced its selection of the 1090 MHz ES and UAT as the mediums for the ADS-B system in the United States. 1090 MHz ES will be the primary medium for air carrier and high-performance commercial aircraft while UAT will be the primary medium for general aviation aircraft.
7839
7840 Europe has also chosen 1090 MHz as the primary physical layer for ADS-B. However, the second medium has not yet been selected between UAT and VDL Mode 4.
7841
7842 With 1090 ES, the existing Mode S transponder (or a stand alone 1090 MHz transmitter) supports a message type known as the ES message. It is a periodic message that provides position, velocity, heading, time, and, in the future, intent. The basic ES does not offer intent since current flight management systems do not provide such data – called trajectory change points. To enable an aircraft to send an extended squitter message, the transponder is modified and aircraft position and other status information is routed to the transponder. ATC ground stations and TCAS-equipped aircraft already have the necessary 1090 MHz receivers to receive these signals, and would only require
7843 enhancements to accept and process the additional information. 1090 ES will not support FIS-B, due to regulatory requirements.
7844
7845 ===Universal Access Transceiver===
7846 The UAT system is specifically designed for ADS-B operation. A 1 MHz channel in the 900 MHz frequency range is dedicated for transmission of airborne ADS-B reports and for broadcast of ground-based aeronautical information. UAT users would have access to the additional ground-based aeronautical data and would receive reports from proximate traffic (FIS-B and TIS-B).
7847
7848 ===VDL Mode 4===
7849 The VDL Mode 4 system could utilize one or more of the existing aeronautical VHF frequencies as the radio frequency physical layer for ADS-B transmissions. VDL Mode 4 uses a protocol (STDMA) that allows it to be self-organizing, meaning no master ground station is required. This medium is best used for short message transmissions from a large number of users. VDL Mode 4 systems are capable of increased range in comparison to L Band Mode S (1090 MHz) or UAT systems.
7850
7851 ==Implementation Timetable==
7852 The timetable for airborne ADS-B equipage will be determined by ground and airborne facility implementation, equipment cost, perceived benefits of equipping and regulatory actions by the Civil Aviation Authorities (CAA). The cost to equip with ADS-B Out capability is relatively small and would benefit the airspace by enabling increased situational awareness. ADS-B In capability can provide additional benefits when ground stations and the critical mass of aircraft are also equipped. This data was taken into consideration when building the following estimated implementation timetable.
7853
7854 ===Near-term Implementation (2006-2008)===
7855 The next three years will see a continuation of ADS-B trials and some implementation in “pockets” where limited aircraft equipage can bring operational benefits. Some of these include:
7856 *'''Capstone'''. In Alaska, the FAA is conducting its Capstone program to improve surveillance in some of the more remote locations of Alaska and as a test bed for implementing elements of ADS-B into the ATC environment. Approximately 190 general aviation users have been equipped with GPS receivers, UAT transceivers and flight deck displays. In addition, 11 ground-based transceivers have been installed for radar-like services, and flight information services data (FIS-B), including weather information, is being uplinked from the ground. Phase II of the program will expand the coverage and add more than 250 additional users.
7857 *'''Gulf of Mexico''' – In the Gulf of Mexico, where ATC radar coverage is incomplete, the FAA is locating ADS-B (1090 MHz) receivers on oil rigs and buoys to relay information received from aircraft equipped with ADS-B extended squitters back to the ATC centers to expand and improve surveillance coverage.
7858 *'''Australia'''. Australia is implementing ADS-B trials in Queensland to test the feasibility of 1090 MHz ADS-B as an alternative to ground-based radar. ADS-B is expected to be a much more cost-effective method of providing ATC surveillance coverage for remote areas which currently have limited or no surveillance coverage.
7859 *'''Cargo Airline Association'''. Cargo carriers operating at their hub airports operate largely at night. Equipage of these aircraft with ADS-B and CDTI displays along with a ground-based transceiver at these hubs will allow better situational awareness at night and in inclement weather and offers the potential for increased airport traffic handling capability.
7860 *'''Embry Riddle Aeronautical University'''. Embry Riddle Aeronautical University is equipping the training aircraft at its two main campuses in Florida and Arizona with ADS-B capability as a safety enhancement. The FAA will provide FIS-B and TIS-B uplink capabilities in those areas in support of this equipage.
7861 *'''Safe Flight 21 East Coast Broadcast Services'''. The FAA has announced its intention to implement ADS-B coverage for the entire east coast of the U.S. by the end of 2004. Service range will extend inland 150 miles with a goal of providing coverage at altitudes down to 2,000 feet. The medium will be UAT and the implementation will also include TIS-B and FIS-B information.
7862
7863 ===Mid-term Implementation (2008-2012)===
7864 Within four to eight years, an increasing number of aircraft with ADS-B Out capability along with the start of ground-based ADS-B infrastructure will begin to make a number of ADS-B applications attractive.
7865 *Benefits of “Pockets of Implementation” will become evident and these areas will be expanded, encouraging more users to equip with ADS-B capability.
7866 *Beginning in 2004 the FAA is expected to deploy ADS-B ground infrastructure based on ASDE-X equipment. This infrastructure will allow the use of ADS-B data for ATC purposes such as surface movement tracking/guidance and airborne surveillance.
7867 *Ground uplinks of TIS-B and FIS-B will commence where the ground infrastructure is deployed.
7868 *Other Civil Aviation Authorities may install ADS-B ground infrastructure and require aircraft to be equipped with ADS-B Out for operation in selected airspace. Australia is expected to be the first country to do so; however, a number of other countries with limited surveillance coverage may find ADS-B an attractive alternative to radar surveillance.
7869 *Significant numbers of users will become equipped with a minimum of ADS-B Out capability. In Europe, 1090 MHz ES will become standard capability for all new Mode S transponder installations after 31 March, 2005. UAT will become increasingly popular in the upper end of the general aviation market.
7870 *Airport Situational Awareness – A combination of detailed airport maps, airport multilateration (ASDE-X) systems, enhanced aircraft displays and ADS-B have the potential to significantly improve Runway situational awareness.
7871 *Oceanic In-trail – ADS-B can provide enhanced situational awareness and safety for Oceanic In-trail maneuvers as additional aircraft become equipped.
7872 *Use of ADS-B and CDTI will allow decreased approach spacing and closely spaced parallel approaches at congested airports with improved safety and capacity during low-/lower-visibility operations.
7873
7874 ===Long-term Implementations (2012 and beyond)===
7875 *Air carriers’ fleets will achieve intended ADS-B benefits in the terminal and en route airspace.
7876 *New Aircraft Separation Assurance applications will take advantage of the increased situational awareness and positional accuracy available in an airspace environment largely equipped with ADS-B capability.
7877 *FIS-B and TIS-B services will encourage general aviation equipage in all market segments.
7878
7879 ==References==
7880
7881 ==See also==
7882 *[[DO-212]] Minimal Operational Performance Standards for Airborne Automatic Dependent Surveillance (ADS) Equipment
7883
7884 ==External links==
7885 *[http://www.airservicesaustralia.com/pilotcentre/projects/adsb/default.asp Airservices Australia ADS-B info]
7886 * [http://www.flyadsb.com Safe Flight 21 ADS-B Projects]
7887 * [http://www.alaska.faa.gov/capstone/ Capstone ADS-B Project]
7888 * [http://www.nup.nu NUP II Project]
7889 * [http://www.adsmedup.it/ ADS-MEDUP Project]
7890 * [http://www.eurocontrol.int/cascade/public/subsite_homepage/homepage.html Eurocontrol CASCADE Programme]
7891 * [http://www.eurocae.org/ European Organisation for Civil Aviation Equipment]
7892 * [http://www.janes.com/aerospace/civil/news/jar/jar060117_1_n.shtml US crunches the numbers before committing to ADS-B] Jane's Airport Review
7893
7894 [[Category:Avionics]]</text>
7895 </revision>
7896 </page>
7897 <page>
7898 <title>Air Transport</title>
7899 <id>575</id>
7900 <revision>
7901 <id>15899106</id>
7902 <timestamp>2003-12-11T16:14:25Z</timestamp>
7903 <contributor>
7904 <username>Optim</username>
7905 <id>20978</id>
7906 </contributor>
7907 <text xml:space="preserve">#REDIRECT [[Aviation]]</text>
7908 </revision>
7909 </page>
7910 <page>
7911 <title>Austria</title>
7912 <id>576</id>
7913 <revision>
7914 <id>42041443</id>
7915 <timestamp>2006-03-03T11:38:19Z</timestamp>
7916 <contributor>
7917 <username>Tasc</username>
7918 <id>853739</id>
7919 </contributor>
7920 <minor />
7921 <comment>Reverted edits by [[Special:Contributions/193.171.250.252|193.171.250.252]] to last version by Gugganij</comment>
7922 <text xml:space="preserve">{{Infobox_Country|
7923 common_name = Austria|
7924 native_name = Republik Österreich|
7925 image_flag = Flag of Austria.svg|
7926 image_coat = Austria Bundesadler.svg|
7927 image_map = LocationAustria.png|
7928 national_motto = none|
7929 national_anthem = [[Land der Berge, Land am Strome]]|
7930 official_languages = [[German language|German]]&lt;br&gt;[[Slovenian language|Slovenian]]&amp;nbsp;([[regional language|reg.]]) [[Croatian language|Croatian]]&amp;nbsp;(reg.) [[Hungarian language|Hungarian]]&amp;nbsp;(reg.)|
7931 capital = [[Vienna]] |latd=48|latm=12|latNS=N|longd=16|longm=21|longEW=E|
7932 largest_city = Vienna |
7933 government_type = [[Republic]] |
7934 leader_titles = [[Federal President of Austria|President]]&lt;br&gt;[[Chancellor of Austria|Chancellor]]|
7935 leader_names = [[Heinz Fischer]]&lt;br&gt;[[Wolfgang SchÃŧssel]]|
7936 area = 83,871|area_rank=113th|area_magnitude=1 E10|percent_water=1.3|
7937 areami² = 32,383 | &lt;!-- Do not remove [[WP:MOSNUM]] --&gt;
7938 population_estimate = 8,206,524|population_estimate_year=2005|population_estimate_rank=86th|
7939 population_density = 97|population_density_rank=78th |
7940 population_densitymi² = 251 | &lt;!-- Do not remove [[WP:MOSNUM]] --&gt;
7941 population_census = 8,032,926|population_census_year=2001|
7942 GDP_PPP = $267 billion|GDP_PPP_year=2005|GDP_PPP_rank=35th|
7943 GDP_nominal = $318 billion|GDP_nominal_year=2005|GDP_nominal_rank=22nd|
7944 GDP_PPP_per_capita = $32,962|GDP_PPP_per_capita_rank=9th|
7945 GDP_nominal_per_capita = $39,292|GDP_nominal_per_capita_rank=10th|
7946 HDI_year = 2003|
7947 HDI = 0.936|
7948 HDI_rank = 17th|
7949 HDI_category = &lt;font color=&quot;#009900&quot;&gt;high&lt;/font&gt;|
7950 sovereignty_type = [[Independence]]|
7951 established_events = From [[Austria-Hungary]]|established_dates=&lt;br&gt;1919|
7952 currency = [[Austrian euro coins|Euro]]&amp;sup1;|currency_code=EUR|
7953 time_zone = [[Central European Time|CET]] |utc_offset=+1 |
7954 time_zone_DST = [[Central European Summer Time|CEST]] |utc_offset_DST=+2 |
7955 cctld = [[.at]] |
7956 calling_code = 43|
7957 footnotes = &amp;sup1; Prior to 2002: Austrian [[Schilling]]|
7958 }}
7959
7960 The '''Republic of Austria''' ([[German language|German]]: ''Republik Österreich)'' is a [[landlocked]] country in central [[Central Europe|Europe]]. It borders [[Germany]] and the [[Czech Republic]] to the north, [[Slovakia]] and [[Hungary]] to the east, [[Slovenia]] and [[Italy]] to the south, and [[Switzerland]] and [[Liechtenstein]] to the west. The capital is the city of [[Vienna]].
7961
7962 Austria is a parliamentary [[representative democracy]] consisting of nine federal states and is one of two European countries that have declared their everlasting [[neutral country|neutrality]], the other being Switzerland. Austria is a member of the [[United Nations]] (since 1955) and the [[European Union]] (since 1995). For the first half of 2006 Austria holds the seat of the [[Presidency of the Council of the European Union|Presidency of the EU]].
7963
7964 ==Origin and history of the name==
7965 The [[German language|German]] name ''Österreich'' can be translated into [[English language|English]] as the &quot;eastern realm&quot;, which is derived from the [[Old German]] ''[[OstarrÃŽchi]]''. ''Reich'' can also mean &quot;empire&quot;, and this connotation is the one that is understood in the context of the [[Austrian Empire|Austrian]]/[[Austria-Hungary|Austro-Hungarian Empire]], [[Holy Roman Empire]], although not in the context of the modern Republic of ''Österreich''. The term probably originates in a [[vernacular]] translation of the [[Medieval Latin]] name for the region: ''Marchia orientalis'', which translates as &quot;eastern border&quot;, as it was situated at the eastern edge of the [[Holy Roman Empire]], that was also mirrored in the name ''[[Ostmark]]'' applied after ''[[Anschluss]]'' to [[Germany]].
7966
7967 ==History==
7968 {{details|History of Austria}}
7969
7970 ===Austria and the Holy Roman Empire===
7971 The territory of Austria originally known as the [[Celts|Celtic]] kingdom of [[Noricum]], was a long time ally of Rome. It was occupied rather than conquered by the [[Ancient Rome|Romans]] during the reign of [[Caesar Augustus|Augustus]] and made the province Noricum in [[16 BC]]. Later it was conquered by [[Huns]], Rugii, [[Lombards]], [[Ostrogoth]]s, [[Bavarii]], [[Eurasian Avars|Avars]] (until c. 800), and [[Franks]] (in that order). Finally, after 48 years of Hungarian rule (907 to 955), the core territory of Austria was awarded to [[Leopold I of Austria (Babenberg)| Leopold of Babenberg]] in 976. Being part of the [[Holy Roman Empire]] the Babenbergs ruled and expanded Austria from the 10th century to the 13th century.
7972
7973 [[image:Juliusz Kossak Sobieski pod Wiedniem.jpeg|thumb|left|250px|Battle of Vienna 1683]]
7974
7975 After Duke [[Frederick II]] died in 1246 and left no successor, [[Rudolf I of Habsburg]] gave the lands to his sons marking the beginning of the line of the [[Habsburg]]s, who continued to govern Austria until the 20th century.
7976
7977 With the short exception of [[Charles VII Albert]] of Bavaria, Austrian Habsburgs held the position of German Emperor beginning in 1438 with [[Albert II of Habsburg]] until the end of the [[Holy Roman Empire]]. During the [[14th century|14th]] and 15th century Austria continued to expand its territory until it reached the position of a European imperial power at the end of the 15th century until the end of the Habsburg monarchy in 1918.
7978
7979 ===Modern history===
7980 Just two years before the abolition of the [[Holy Roman Empire]] in 1806, in 1804 the [[Austrian Empire|Empire of Austria]] was founded, which was transformed in 1867 into the dual-monarchy [[Austria-Hungary]]. The empire was split into several independent states in 1918, after the defeat of the [[Central Powers]] in [[World War I]], with most of the German-speaking parts becoming a [[republic]]. (See [[Treaty of Saint-Germain]].) Between 1918 and 1919 it was officially known as the Republic of German Austria (''Republik DeutschÃļsterreich''). After the [[Entente]] powers forbade German Austria to unite with Germany, they also forbade the name, and then it was changed to simply Republic of Austria. The democratic republic lasted until 1933 when the chancellor [[Engelbert Dollfuß]] established an autocratic regime oriented towards Italian fascism ([[Austrofascism]]).
7981
7982 Austria became part of [[Germany]] in 1938 through the [[Anschluß]] and remained under [[Nazis|Nazi]] rule until the end of [[World War II]]. After the defeat of the [[Axis Powers]], the [[Potsdam Conference|Allies occupied Austria]] until 1955, when the country became a fully independent republic under the condition that it would remain neutral (see: [[Austrian State Treaty]]). Austria also became a member of the UN in the same year. After the collapse of [[communist state]]s in [[Eastern Europe]], Austria became increasingly involved in European affairs, and in 1995, Austria joined the [[European Union]], and the [[Euro]] monetary system in 1999.
7983
7984 ==Politics==
7985 {{details|Politics of Austria}}
7986 [[image:AustrianParliament.jpg|thumb|right|300px|Austrian Parliament in Vienna]]
7987
7988 Austria became a federal, [[parliamentary democracy|parliamentarian, democratic]] [[republic]] through the [[Federal Constitution (Austria)|Federal Constitution]] of 1920. It was reintroduced in 1945 to the nine [[States of Austria|states]] of the Federal Republic. The [[head of state]] is the [[President of Austria|Federal President]], who is directly elected. The chairman of the [[Government of Austria|Federal Government]] is the [[Chancellor of Austria|Federal Chancellor]], who is appointed by the president. The government can be removed from office by either a presidential decree or by [[vote of no confidence]] in the lower chamber of parliament, the [[National Council of Austria|Nationalrat]].
7989
7990 The [[Parliament of Austria]] consists of two chambers. The composition of the Nationalrat is determined every four years by a free general election in which every citizen is allowed to vote to fill its 183 seats. A &quot;Four Percent Hurdle&quot; prevents a large splintering of the political landscape in the Nationalrat by awarding seats only to political parties that have obtained at least a four percent threshold of the general vote, or alternatively, have won a direct seat, or ''Direktmandat'', in one of the 43 regional election districts. The Nationalrat is the dominant chamber in the formation of legislation in Austria. However, the upper house of parliament, the [[Federal Council of Austria|Bundesrat]] has a limited right of [[veto]] (the Nationalrat can - in most cases - pass the respective bill a second time bypassing the Bundesrat altogether). A convention, called the ''Österreich&amp;ndash;Konvent'' [http://www.konvent.gv.at/] was convened in [[June 30]], [[2003]] to decide upon suggestions to reform the constitution, but has failed to produce a proposal that would receive the two thirds of votes in the Nationalrat necessary for constitutional amendments and/or reform. However some important parts of the final report were generally agreed upon and are still expected to be implemented.
7991
7992 ==Subdivisions==
7993 {{details|States of Austria}}
7994
7995 A federal republic, Austria is divided into nine [[states]], ([[German language|German]]: ''[[States of Austria|Bundesländer]]''). These states are divided into [[district]]s (''[[Bezirke]]'') and cities (''[[Statutarstadt|Statutarstädte]]''). Districts are subdivided into municipalities (''Gemeinden''). Cities have the competencies otherwise granted to both districts and municipalities. The states are not mere administrative divisions, but have some distinct legislative authority separate from the federal government.
7996
7997 [[Image:The States of Austria Numbered.png|right|States of Austria]]
7998 {| border style=&quot;border-collapse:collapse&quot;
7999 !colspan=2|[[English language|In English]]
8000 !colspan=2|[[German language|In German]]
8001 |-
8002 ![[States of Austria|State]] !! [[Capital]] !! State !! Capital
8003 |-
8004 |'''1''' [[Burgenland]] ||[[Eisenstadt]] ||Burgenland ||Eisenstadt
8005 |-
8006 |'''2''' [[Carinthia (state)|Carinthia]]||[[Klagenfurt]]||Kärnten||Klagenfurt
8007 |-
8008 |'''3''' [[Lower Austria]]||[[St. PÃļlten]]||NiederÃļsterreich||St. PÃļlten
8009 |-
8010 |'''4''' [[Upper Austria]]||[[Linz]]||OberÃļsterreich||Linz
8011 |-
8012 |'''5''' [[Salzburg (state)|Salzburg]]||[[Salzburg]]||Salzburg (Land)||Salzburg
8013 |-
8014 |'''6''' [[Styria (state)|Styria]]||[[Graz]]||Steiermark||Graz
8015 |-
8016 |'''7''' [[Tyrol (state)|Tyrol]]||[[Innsbruck]]||Tirol||Innsbruck
8017 |-
8018 |'''8''' [[Vorarlberg]]||[[Bregenz]]||Vorarlberg||Bregenz
8019 |-
8020 |'''9''' [[Vienna]]||[[Vienna]]||Wien (Land)||Wien
8021 |}
8022
8023 ==Geography==
8024 {{details|Geography of Austria}}
8025
8026 [[image:Oesterreich topo.png|thumb|left|240px|Topography of Austria]]
8027
8028 Austria is a largely [[mountain]]ous country due to its location in the [[Alps]]. The [[Central Eastern Alps]], [[Northern Limestone Alps]] and [[Southern Limestone Alps]] are all partly in Austria. Of the total area of Austria (84,000 km² or 32,000&amp;nbsp;[[square mile|sq.&amp;nbsp;mi]]), only about a quarter can be considered low lying, and only 32% of the country is below 500 [[metre]]s (1,640&amp;nbsp;[[foot (unit of length)|ft]]). The high mountainous Alps in the west of Austria flatten somewhat into low lands and plains in the east of the country.
8029
8030 [[Image:Au-map.png|thumb|right|240px|Map of Austria]]
8031
8032 Austria may be divided into 5 different areas. The biggest area are the [[Eastern Alps|Austrian Alps]], which constitute 62% of Austria's total area. The Austrian foothills at the base of the [[Alps]] and the [[Carpathian Mountains|Carpathian]]s account for around 12% of its area. The foothills in the east and areas surrounding the periphery of the Pannoni low country amount to about 12% of the total landmass. The second greater mountain area (much lower than the Alps) is situated in the north. Known as the Austrian [[granite]] [[plateau]], it is located in the central area of the Bohemian Mass, and accounts for 10% of Austria. The Austrian portion of the [[Viennese basin]] comprises the remaining 4%.
8033
8034 ===Climate===
8035 The greater part of Austria lies in the cool/temperate [[climate zone]] in which humid westerly winds predominate. With over half of the country dominated by the [[Alps]] the [[alpine climate]] is the predominant one. In the East the climate shows continental features with less rain than the areas with high rainfall averages.
8036 The six highest mountains in Austria are:
8037
8038 {|
8039 |----- bgcolor=#DDDDDD
8040 ! &amp;nbsp;&amp;nbsp;
8041 ! Name
8042 ! &amp;nbsp;Height&amp;nbsp;(m)
8043 !&amp;nbsp;Height&amp;nbsp;([[foot (unit of length)|ft]])
8044 ! Range
8045 |----- bgcolor=#EEEEEE
8046 | &amp;nbsp; &amp;nbsp;1 || [[Großglockner]]&amp;nbsp; &amp;nbsp;
8047 | 3,797 m || 12,457 ft || [[Hohe Tauern]]
8048 |----- bgcolor=#EEEEEE
8049 | &amp;nbsp; &amp;nbsp;2 || [[Wildspitze]]&amp;nbsp; &amp;nbsp; || 3,768 m || 12,362 ft || [[Ötztal Alps]]
8050 |----- bgcolor=#EEEEEE
8051 | &amp;nbsp; &amp;nbsp;3 || [[Weißkugel]]&amp;nbsp; &amp;nbsp; || 3,739 m || 12,267 ft || [[Ötztal Alps]]
8052 |----- bgcolor=#EEEEEE
8053 | &amp;nbsp; &amp;nbsp;4 || [[Großvenediger]]&amp;nbsp; &amp;nbsp; || 3,674 m || 12,054 ft || [[Hohe Tauern]]
8054 |----- bgcolor=#EEEEEE
8055 | &amp;nbsp; &amp;nbsp;5 || [[Similaun]]&amp;nbsp; &amp;nbsp; || 3,606 m || 11,831 ft || [[Ötztal Alps]]
8056 |----- bgcolor=#EEEEEE
8057 | &amp;nbsp; &amp;nbsp;6 || [[Großes Wiesbachhorn]]&amp;nbsp; &amp;nbsp; || 3,571 m || 11,715 ft || [[Hohe Tauern]]
8058 |----- bgcolor=#EEEEEE
8059 |}
8060
8061 ==Economy==
8062 {{details|Economy of Austria}}
8063 [[Image:20ec_oes.png|320px|right|frame| The [[Belvedere (palace)|Belvedere]] Palace, an example of the [[Baroque]] ]]
8064
8065 Austria has a well-developed [[social market economy]] and a high [[standard of living]]. Until the 1980s many of Austria's largest industry firms were nationalised, however in recent years privatisation has reduced state holdings to a level comparable to other European economies. Labour movements are particularly strong in Austria and have large influence on labour politics.
8066
8067 [[Germany]] has historically been the main trading partner of Austria, making it vulnerable to rapid changes in the [[German economy]]. Slow growth in Germany and elsewhere in the world affected Austria, slowing its growth to 1.2% in 2001. But since Austria became a member state of the [[European Union]] it has gained closer ties to other [[European Union]] economies, reducing its economic dependence on Germany. In addition, membership in the EU has drawn an influx of foreign investors attracted by Austria's access to the single European market and proximity to EU aspiring economies. Therefore estimates of growth in 2005 (up to 2%) are much more favourable than in the crippling German economy.
8068
8069 '''Agriculture''': Austrian farms, like those of other west European mountainous countries, are small and fragmented, and production is relatively expensive.
8070
8071 '''Industry''': Although some industries, such as several iron and steel works and chemical plants, are large industrial enterprises employing thousands of people, most industrial and commercial enterprises in Austria are relatively small on an international scale.
8072
8073 '''Services''': Like in other western countries, the biggest contributor to Austria's GDP is its service sector. Most notably is [[tourism]], especially [[winter]] [[tourism]].
8074
8075 To meet increased competition from both EU and Central European countries, Austria will need to emphasize knowledge-based sectors of the economy, continue to deregulate the [[service sector]], and lower its tax burden.
8076
8077 See also: [[List of Austrian companies]]
8078
8079 ==Demographics==
8080 {{details|Demographics of Austria}}
8081 [[image:1Canaletto-Wien-Belvedere.jpg|thumb|right|300px|[[Vienna]] during the first half of the 18th century, painting by [[Canaletto]].]]
8082
8083 Austria's capital [[Vienna]] is one of Europe's major cities with a population exceeding 1.6 million (2 million with suburbs) and constitutes a ''melting pot'' of citizens from all over Central and Eastern Europe. In contrast to this ''Metropolis'', other cities do not exceed 1 million inhabitants, in fact the second largest [[city]] [[Graz]] is home of 305,000 people (followed by [[Linz]] with 180,000, [[Salzburg]] with 145,000 and [[Innsbruck]] with 134,803 (2005). All other cities have fewer than 100,000 inhabitants.
8084
8085 Austrians of German mother tongue, by far the country's largest group, form 91.1% of Austria's population. The remaining [[number]] of Austria's people are of non-Austrian descent, many from surrounding countries, especially from the former [[Eastern Bloc|East Bloc]] nations. The Austrian federal states of [[Carinthia (state)|Carinthia]] and [[Styria (state)|Styria]] are home to a significant (indigenous) Slovenian minority with around 14,000 members (Austrian census; unofficial numbers of Slovene groups speak of about 40,000). So-called guest workers ''(Gastarbeiter)'' and their descendants also form an important [[minority group]] in Austria. Around 20,000 [[Hungarians]] and 30,000 [[Croatians]] live in the east-most Bundesland, [[Burgenland]] (formerly part of Hungary).
8086
8087 The official language, [[German language|German]], is spoken by almost all residents of the country. Austria's mountainous terrain led to the development of many distinct German dialects. All of the dialects in the [[country]], however, belong to [[Austro-Bavarian]] groups of German dialects, with the exception of the dialect spoken in its west-most Bundesland, [[Vorarlberg]], which belongs to the group of [[Alemannic German|Alemannic]] dialects.
8088 There is also a distinct grammatical standard for [[Austrian language|Austrian]] German with a few differences to the German spoken in Germany.
8089
8090 ===Politics concerning ethnic groups (Volksgruppenpolitik)===
8091 An estimated 25,000-40,000 [[Slovenians]] in the Austrian state of [[Carinthia (state)|Carinthia]] as well as Croatians and [[Hungarians]] in Burgenland were recognized as a minority and have enjoyed special rights following the Austrian State Treaty (Staatsvertrag) of 1955. The Slovenians in the Austrian state of [[Styria (state)|Styria]] (estimated at a number between 1,600 and 5,000) are not recognized as a minority and do not enjoy special rights, although the State Treaty of July 27, 1955 states otherwise.
8092 The right for bilingual topographic signs for the regions where Slovene and Croatian speaking Austrians live alongside with the German speaking population (as required by the 1955 State Treaty) is still to be fully implemented. There is also an undercurrent of thinking amongst parts of the Carenthian population that the [[Slovenian]] involvement in the partisan war against the [[Nazi]] occupation force was a bad thing, and indeed &quot;Tito partisan&quot; is a not an infrequent insult hurled against members of the minority. Many Carinthians are afraid of Slovenian territorial claims, pointing to the fact that Yugoslav troops entered the state after each of the two World Wars and considering that some official Slovenian atlases still show parts of Carinthia as Slovenian cultural territory. The current governor, [[JÃļrg Haider]], has made this fact a matter of public argument in fall 2005 by refusing to increase the number of bilingual topographic signs in Carinthia. A poll by the Kärntner Humaninstitut conducted in January 2006 states that 65% of Carinthians are not in favour of an increase of bilingual topographic signs, since the original requirements set by the State Treaty of 1955 have already been fulfilled according to their point of view. Another interesting phenomenon is the so called &quot;Windischen-Theorie&quot; [http://de.wikipedia.org/wiki/Windischen-Theorie] stating that the Slovenians can be split in two groups: actual Slovenians and Windische, based on differences in language between Austrian Slovenians, who were taught Slovenian standard language in school and those Slovenians, who spoke their local Slovenian dialect but went to German schools. To the latter group the term &quot;Windische&quot; (originally the German word for Slovenians) was applied, claiming that they were a different ethnic group. This theory was never generally accepted and has been ultimately rejected several decades ago.
8093
8094 *[[List of cities in Austria]]
8095
8096 ==Religion==
8097 [[Image:Emperor_charles_v.png|thumb|right|250px|'''Charles V''' Austrian Habsburg ruler and one of the major figures within the [[Counter-Reformation]].]]
8098
8099 While northern and central Germany was the origin of the [[Reformation]], Austria (and Bavaria) were the heart of the [[Counter-Reformation]] in the [[16th century|16th]] and [[17th century|17th]] century, when the absolute monarchy of [[Habsburg]] imposed a strict regime to maintain [[Catholicism]]'s power and influence among Austrians. Despite this establishment of Catholicism as the predominant [[Christian]] religion (Protestants have throughout Austria's history remained a relatively small group), Austria's history as a multinational state has made it necessary for Habsburg rulers to deal with a heterogeneous religious population. Religious freedom was declared a constitutional right as early as 1867 and [[Austria-Hungary]] was home of numerous religions beside [[Roman Catholicism]] such as Greek, Serbian, Romanian, Russian, and Bulgarian [[Orthodox Christians]], [[Jew]]s, [[Muslims]] (Austria neighboured the [[Ottoman empire]] for centuries), [[Mormons]] and both [[Calvinism|Calvinists]] and [[Lutheran]] [[Protestants]].
8100
8101 Still Austria remained largely influenced by Catholicism. After 1918 First Republic Catholic leaders such as [[Theodor Innitzer]] and [[Ignaz Seipel]] took leading positions within or close to the Austrian Government and increased their influence during the time of the [[Austrofascism]] – Catholicism was treated much like a [[state religion]] by dictators [[Engelbert Dollfuss]] and [[Kurt Schuschnigg]]. Although Catholic leaders welcomed the Germans in 1938 during the [[Anschluss]] of Austria into [[Germany]], Austrian Catholicism stopped its support of [[Nazism]] later on and many former religious public figures became involved with the resistance during the [[Third Reich]]. After 1945 a stricter secularism was imposed in Austria and religious influence on politics has nearly vanished.
8102
8103 As of the end of the 20th century about 73% of Austria's population are registered as Roman Catholic, while about 5% consider themselves [[Protestant]]s. Both these numbers have been on the decline for decades, especially Roman Catholicism, which has suffered an increasing number of seceders of the church. This is due partly to [[child sexual abuse]] scandals by priests as well as the alleged unwillingness of the Roman Catholic Church to implement reforms. In addition, Austrian Catholics are obliged to pay a mandatory tax (calculated by income – ca 1%) to the Austrian Roman Catholic Church, which acts as another incentive to leave the church.
8104
8105 About 12% of the population declare that they do not belong to any [[church]] or religious community. Of the remaining people, about 180,000 are members of the [[Eastern Orthodox|Eastern Orthodox Church]] and about 7,300 are [[Judaism|Jewish]]. It has to be noted that the Austrian Jewish Community of 1938 – Vienna alone counted more than 200,000, of which solely 4,000 to 5,000 remained after the [[World War II|Second World War]]. The influx of [[Eastern Europe|Eastern Europeans]], especially from the former Yugoslav nations, Albania and particularly from [[Turkey]] largely contributed to a substantial Muslim minority in Austria – around 300,000 are registered as members of various Muslim communities. The numbers of people adhering to the [[Islam]] has increased largely during the last years and is expected to grow in the future. [[Buddhism in Austria|Buddhism]], which was legally recognized as a religion in Austria in 1983, enjoys widespread acceptance and has a following of 20,000 (10,402 at the 2001 [[census]]).
8106 A 2005 survey among 8,000 people in various [[Europe]]an countries showed that Austrians are still among the countries with the strongest belief in [[god (monotheism)|God]]. 84% of all Austrians do state they believe in God, with only [[Poland]] (97%), [[Portugal]] (90%) and [[Russia]] (87%) in front of the countries surveyed. This is a much larger figure than the European average of 71% or [[Germany]] with 67%. [http://www.readers-digest.de/service_fuer_journalisten/index.php?id=mrd&amp;no_cache=1&amp;tx_ttnews%5Btt_news%5D=251&amp;tx_ttnews%5BbackPid%5D=15]
8107
8108 ==Culture==
8109 {{details|Culture of Austria}}
8110 {{Austrians}}
8111 [[image:Wittgenstein2.jpg|thumb|left|150px|Ludwig Wittgenstein]]
8112
8113 Although Austria is a small country, its history as a world power and its unique cultural environment in the heart of Europe have generated contributions to mankind in every possible field. One might argue that Austria is internationally best known for its musicians. It has been the birthplace of many [[Music of Austria|famous composers]] such as [[Wolfgang Amadeus Mozart]], [[Haydn|Joseph Haydn]], [[Franz Schubert]], [[Anton Bruckner]], [[Johann Strauss, Sr.]], [[Johann Strauss, Jr.]] or [[Gustav Mahler]] as well as members of the [[Second Viennese School]] such as [[Arnold Schoenberg]], [[Anton Webern]] or [[Alban Berg]].
8114
8115 Complementing its status as a land of artists, Austria has always been a country of great poets, writers and novelists. It was the home of novelists [[Arthur Schnitzler]], [[Stefan Zweig]], [[Thomas Bernhard]] or [[Robert Musil]], of poets [[Georg Trakl]], [[Franz Werfel]], [[Franz Grillparzer]], [[Rainer Maria Rilke]] or [[Adalbert Stifter]]. Famous contemporary playwrights and novelists are [[Elfriede Jelinek]] and [[Peter Handke]]. Among Austrian artists and architects one can find painters [[Gustav Klimt]], [[Oskar Kokoschka]], [[Egon Schiele]] or [[Friedensreich Hundertwasser]], photographer [[Inge Morath]] or architect [[Otto Wagner]].
8116
8117 Austria was the cradle of numerous scientists including physicists [[Ludwig Boltzmann]], [[Lise Meitner]], [[Erwin SchrÃļdinger]], [[Ernst Mach]], [[Wolfgang Pauli]], [[Richard von Mises]] and [[Christian Doppler]], philosophers [[Ludwig Wittgenstein]] and [[Karl Popper]], biologists [[Gregor Mendel]] and [[Konrad Lorenz]] as well as mathematician [[Kurt GÃļdel]]. It was home to psychologists [[Sigmund Freud]], [[Alfred Adler]], [[Paul Watzlawick]] and [[Hans Asperger]], psychiatrist [[Viktor Frankl]], economists [[Joseph Schumpeter]], [[Eugen von BÃļhm-Bawerk]], [[Ludwig von Mises]], and [[Friedrich Hayek]] ([[Austrian School]]) and [[Peter Drucker]], and engineers such as [[Ferdinand Porsche]] and [[Siegfried Marcus]].
8118
8119 Although Austrians can look back with pride on their cultural past, current Austria does not stand back in art and science. Austria hosts a tremendous amount of culture, with its classical music festivals in [[Vienna]], [[Salzburg]] and [[Bregenz]], its modern artists and writers, its theatres and opera houses.
8120
8121 * [[List of Austrians]]
8122 * [[Music of Austria]]
8123
8124 ==Miscellaneous topics==
8125 * [[Austrian folk dancing]]
8126 * [[Austrian German]]
8127 * [[Communications in Austria]]
8128 * [[Cuisine of Austria]]
8129 * [[Education in Austria]]
8130 * [[Foreign relations of Austria]]
8131 * [[Media in Austria|Media in Austria]]
8132 * [[Military of Austria]]
8133 * [[Public holidays in Austria]]
8134 * [[Spanish Riding School]]
8135 * [[Stamps and postal history of Austria]]
8136 * [[Tourism in Austria]]
8137 * [[Transportation in Austria]]
8138
8139 ==References==
8140 * References and bibliography can be found in the more detailed articles linked to in this article
8141
8142 ==External links==
8143 {{sisterlinks|Austria}}
8144 * The ''[[aeiou Encyclopedia]]'' ([http://www.aeiou.at/;internal&amp;action=_setlanguage.action?LANGUAGE=en Homepage] | [http://www.aeiou.at/aeiou.encyclop.a Table of Contents] | [http://www.aeiou.at/;internal&amp;action=search.action Search])
8145 * [http://www.oevsv.at Amateur Radio in Austria]
8146 * [http://www.answers.com/austria Answers.com] Article on Austria
8147 * [http://austria.europe-countries.com Austria in Pictures]
8148 * [http://www.austria.info/ Austria.info] Official homepage of the Austrian National Tourist Office (German, English and other languages)
8149 * [http://www.acfny.org Austrian Cultural Forum New York] Cultural meeting place in Manhattan
8150 * [http://www.cookbookwiki.com/Category:Austrian Austrian Recipes on CookBookWiki.com]
8151 * [http://www.austrosearch.at/ Austrosearch] Bilingual Austrian Search engine and Directory (German, English)
8152 * [http://www.bundeskanzleramt.at/ Bundeskanzleramt Österreich/Federal Chancellor of Austria] Website of the Federal Chancellery of Austria (German, English)
8153 * [http://www.cia.gov/cia/publications/factbook/geos/au.html Cia.gov] CIA's Factbook on Austria
8154 * [http://www.dwellan.com/documents/links_at_en.html Dwellan.com] Tourism in Austria
8155 * [http://www.loc.gov/rr/international/european/austria/au.html Library of Congress] Portals on the World - Austria
8156 * [http://peter-diem.at/default_e.htm Peter Diem] The Symbols of Austria
8157 * [http://www.photoglobe.info/ebooks/austria/ Photoglobe.info] Country Studies - Austria Info
8158 * [http://radio.orf.at/ Radio-ORF] Austrian Radio stations - both classical and modern music (live feed)
8159 * [http://www.tiscover.at/ Tiscover.at] Austria travel guide
8160 * [http://www.state.gov/r/pa/ei/bgn/3165.htm US Department of State] Facts and Information (updated February 2005)
8161 * [http://www.aua.com/ Austrian Airlines]
8162
8163 {{EU_countries}}
8164 {{Europe}}
8165 {{States of Austria}}
8166
8167 [[Category:Austria| ]]
8168 [[Category:Erasmus Prize winners|Austria, People of]]
8169 [[Category:Landlocked countries]]
8170
8171 [[af:Oostenryk]]
8172 [[als:Österreich]]
8173 [[ang:ĒastrÄĢce]]
8174 [[ar:Ų†Ų…Øŗا]]
8175 [[an:Austria]]
8176 [[ast:Austria]]
8177 [[bg:АвŅŅ‚Ņ€Đ¸Ņ]]
8178 [[zh-min-nan:Tang-kok]]
8179 [[be:АŅžŅŅ‚Ņ€Ņ‹Ņ]]
8180 [[bn:āĻ…āĻ¸ā§āĻŸā§āĻ°āĻŋāĻ¯āĻŧāĻž]]
8181 [[bs:Austrija]]
8182 [[br:Aostria]]
8183 [[ca:Àustria]]
8184 [[cs:Rakousko]]
8185 [[cy:Awstria]]
8186 [[da:Østrig]]
8187 [[de:Österreich]]
8188 [[et:Austria]]
8189 [[el:ΑĪ…ĪƒĪ„ĪÎ¯Îą]]
8190 [[es:Austria]]
8191 [[eo:AÅ­strio]]
8192 [[eu:Austria]]
8193 [[fa:اØĒØąÛŒØ´]]
8194 [[fo:Eysturríki]]
8195 [[fr:Autriche]]
8196 [[fy:Eastenryk]]
8197 [[fur:Austrie]]
8198 [[ga:An Ostair]]
8199 [[gd:An Ostair]]
8200 [[gl:Austria - Österreich]]
8201 [[ko:ė˜¤ėŠ¤íŠ¸ëĻŦė•„]]
8202 [[hi:ā¤‘ā¤¸āĨā¤ŸāĨā¤°ā¤ŋā¤¯ā¤ž]]
8203 [[hr:Austrija]]
8204 [[io:Austria]]
8205 [[id:Austria]]
8206 [[ia:Austria]]
8207 [[is:Austurríki]]
8208 [[it:Austria]]
8209 [[he:אוסטריה]]
8210 [[ka:ავსáƒĸრია]]
8211 [[kw:Estrych]]
8212 [[ku:Avusturya]]
8213 [[la:Austria]]
8214 [[lv:Austrija]]
8215 [[lt:Austrija]]
8216 [[lb:Éisträich]]
8217 [[li:Oosteriek]]
8218 [[hu:Ausztria]]
8219 [[mk:АвŅŅ‚Ņ€Đ¸Ņ˜Đ°]]
8220 [[mt:Awstrija]]
8221 [[ms:Austria]]
8222 [[na:Austria]]
8223 [[nl:Oostenrijk]]
8224 [[nds:Österriek]]
8225 [[ja:ã‚Ēãƒŧ゚トãƒĒã‚ĸ]]
8226 [[no:Østerrike]]
8227 [[nn:Austerrike]]
8228 [[oc:Àustria]]
8229 [[os:АвŅŅ‚Ņ€Đ¸]]
8230 [[pl:Austria]]
8231 [[pt:Áustria]]
8232 [[ro:Austria]]
8233 [[rm:Austria]]
8234 [[ru:АвŅŅ‚Ņ€Đ¸Ņ]]
8235 [[se:Nuortariika]]
8236 [[sa:ā¤†ā¤¸āĨā¤ŸāĨā¤°ā¤ŋā¤¯ā¤ž]]
8237 [[sq:Austria]]
8238 [[sh:Austrija]]
8239 [[scn:Austria]]
8240 [[simple:Austria]]
8241 [[sk:RakÃēsko]]
8242 [[sl:Avstrija]]
8243 [[sr:АŅƒŅŅ‚Ņ€Đ¸Ņ˜Đ°]]
8244 [[fi:Itävalta]]
8245 [[sv:Österrike]]
8246 [[tl:Austria]]
8247 [[ta:āŽ†āŽ¸ā¯āŽ¤āŽŋāŽ°āŽŋāŽ¯āŽž]]
8248 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸­ā¸Ēāš€ā¸•ā¸Ŗā¸ĩā¸ĸ]]
8249 [[vi:Áo]]
8250 [[tr:Avusturya]]
8251 [[uk:АвŅŅ‚Ņ€Ņ–Ņ]]
8252 [[yi:×ĸסטרייך]]
8253 [[zh:åĨĨ地刊]]
8254 [[fiu-vro:Austria]]</text>
8255 </revision>
8256 </page>
8257 <page>
8258 <title>Australia</title>
8259 <id>577</id>
8260 <restrictions>move=sysop</restrictions>
8261 <revision>
8262 <id>42149638</id>
8263 <timestamp>2006-03-04T03:38:21Z</timestamp>
8264 <contributor>
8265 <username>Jackp</username>
8266 <id>988990</id>
8267 </contributor>
8268 <comment>/* Geography */</comment>
8269 <text xml:space="preserve">{{otheruses}}
8270 {{Infobox Country|the=|
8271 native_name =Commonwealth of Australia|
8272 common_name =Australia|
8273 image_flag =Flag of Australia.svg|
8274 image_coat =Aust Coat of Arms (large).jpg|
8275 image_map =LocationAU.png|
8276 national_motto =none (formerly ''Advance Australia'')|
8277 national_anthem=''[[Advance Australia Fair]]''|
8278 official_languages =[[English language|English]] (''de facto'')&lt;sup&gt;1&lt;/sup&gt;|
8279 capital =[[Canberra]]|
8280 latd=35|latm=15|latNS=S|longd=149|longm=28|longEW=E|
8281 largest_city =[[Sydney]]|
8282 government_type=[[Constitutional monarchy|Const. monarchy]]|
8283 leader_titles = &amp;nbsp;â€ĸ [[Queen of Australia|Queen]]&lt;br&gt;&amp;nbsp;â€ĸ [[Governor-General of Australia|Governor-General]]&lt;br&gt;&amp;nbsp;â€ĸ [[Prime Minister of Australia|Prime Minister]] |
8284 leader_names = [[Elizabeth II of the United Kingdom|Elizabeth II]]&lt;br&gt;[[Michael Jeffery]]&lt;br&gt;[[John Howard]]|
8285 area_rank=6th|
8286 area_magnitude=1_E12|
8287 area=7,686,850|
8288 areami² = 2,967,909| &lt;!-- Do not remove [[WP:MOSNUM]]--&gt;
8289 percent_water=1|
8290 population_estimate = 20,502,900|
8291 population_estimate_year = February 2006|
8292 population_estimate_rank = 52nd |
8293 population_census = 18,972,350 |
8294 population_census_year = 2001|
8295 population_density = 2|
8296 population_densitymi² = 5.2|&lt;!-- Do not remove --&gt;
8297 population_density_rank = 191st|
8298 sovereignty_type=[[Independence]]|
8299 established_events= &amp;nbsp;â€ĸ [[Commonwealth of Australia Constitution Act 1900|Constitution Act]]&lt;br&gt; &amp;nbsp;â€ĸ [[Statute of Westminster 1931|Statute of Westminster]]&lt;br&gt; &amp;nbsp;â€ĸ [[Australia Act]]|
8300 established_dates=From the [[United Kingdom|UK]]:&lt;br&gt;[[1 January]] [[1901]]&lt;br&gt;[[11 December]] [[1931]]&lt;br&gt;[[3 March]] [[1986]]|
8301 currency=[[Australian dollar|Dollar]]|
8302 currency_code=AUD|
8303 time_zone=[[States and territories of Australia|various]]&lt;sup&gt;2&lt;/sup&gt;|
8304 utc_offset=+8–+10|
8305 time_zone_DST=[[States and territories of Australia|various]]&lt;sup&gt;2&lt;/sup&gt;|
8306 utc_offset_DST=+8–+11|
8307 cctld= [[.au]] |
8308 calling_code=61|
8309 GDP_PPP_year=2006|
8310 GDP_PPP=$674.97 billion|
8311 GDP_PPP_rank=16th|
8312 GDP_PPP_per_capita=$32,686|
8313 GDP_PPP_per_capita_rank=13th|
8314 HDI_year=2003|
8315 HDI=0.955|
8316 HDI_rank=3rd|
8317 HDI_category=&lt;font color=&quot;#009900&quot;&gt;high&lt;/font&gt;|
8318 footnotes=&lt;sup&gt;1&lt;/sup&gt;English does not have ''de jure'' official status ([http://www.immi.gov.au/multicultural/_inc/publications/confer/04/speech18b.htm source]) &lt;br&gt;&lt;sup&gt;2&lt;/sup&gt;There are some minor variations from these three timezones, see [[States and territories of Australia]]&lt;div class=&quot;noprint&quot; style=&quot;float:right;&quot;&gt; ''[http://en.wikipedia.org/w/index.php?title=Template:Infobox_Australia&amp;action=edit edit] [http://en.wikipedia.org/w/index.php?title=Template:Infobox_Australia&amp;action=watch watch] [http://en.wikipedia.org/w/index.php?title=Australia&amp;action=purge purge]''&lt;/div&gt;
8319 }}
8320 &lt;!--PLEASE USE AUSTRALIAN ENGLISH THROUGHOUT THIS ARTICLE--&gt;
8321 The '''Commonwealth of Australia''' is a country in the [[Southern Hemisphere]] comprising the world's smallest [[continent]] and a number of islands in the [[Southern Ocean|Southern]], [[Indian Ocean|Indian]] and [[Pacific Ocean]]s. Australia's neighbouring countries include [[Indonesia]], [[East Timor]] and [[Papua New Guinea]] to the north, the [[Solomon Islands]], [[Vanuatu]] and the [[France|French]] dependency of [[New Caledonia]] to the northeast, and [[New Zealand]] to the southeast.
8322
8323 The [[Australia (continent)|continent of Australia]] has been inhabited for over 40,000 years by [[Indigenous Australians]]. After sporadic visits by fishermen from the north and by [[Europe]]an explorers and merchants starting in the 17th century, the eastern half of the continent was claimed by the [[British]] in 1770 and officially settled as the [[penal colony]] of [[New South Wales]] on [[26 January]] [[1788]]. As the population grew and new areas were explored, another five largely self-governing [[British overseas territory|British Crown Colonies]] were successively established over the course of the 19th century.
8324
8325 On [[1 January]] [[1901]], the six colonies [[Federation of Australia|federated]] and the Commonwealth of Australia was formed. Since federation, Australia has maintained a stable [[liberal democracy|liberal democratic]] political system and remains a [[Commonwealth Realm]]. The current population of around 20.4 million is concentrated mainly in the large coastal cities of [[Sydney]], [[Melbourne]], [[Brisbane]], [[Perth, Western Australia|Perth]], and [[Adelaide]].
8326
8327 == Origin and history of the name ==
8328 The name Australia is derived from the [[Latin language|Latin]] ''australis'', meaning ''southern''. Legends of an &quot;unknown southern land&quot; (''[[Terra Australis|terra australis incognita]]'') date back to the Roman times and were commonplace in mediaeval geography, but they were not based on any actual knowledge of the continent. The Dutch adjectival form ''Australische'' (&quot;Australian&quot;, in the sense of &quot;southern&quot;) was used by Dutch officials in [[Jakarta|Batavia]] to refer to the newly discovered land to the south as early as 1638. The first use of the word &quot;Australia&quot; in [[English language|English]] was a 1693 translation of ''Les Aventures de Jacques Sadeur dans la DÊcouverte et le Voyage de la Terre Australe'', a 1692 French novel by [[Gabriel de Foigny]] under the pen name Jacques Sadeur {{ref|Baker}}. &lt;!-- there was a 1676 version, but it was suppressed --&gt; [[Alexander Dalrymple]] then used it in ''An Historical Collection of Voyages and Discoveries in the South Pacific Ocean'', published in 1771. He used the term to refer to the entire South Pacific region, not specifically to the Australian continent. In 1793, [[George Shaw]] and [[James Edward Smith|Sir James Smith]] published ''Zoology and Botany of New Holland'', in which they wrote of &quot;the vast island, or rather continent, of Australia, Australasia or [[New Holland (Australia)|New Holland]].&quot;
8329 [[Image:Flinders View of Port Jackson taken from South Head.jpg|200px|thumb|left|View of [[Port Jackson]], taken from the South Head, from ''A Voyage to Terra Australis''. [[Sydney]] was established on this site.]]
8330 The name &quot;Australia&quot; was popularised by the 1814 work ''A Voyage to Terra Australis'' by the navigator [[Matthew Flinders]]. Despite its title, which reflected the view of the Admiralty, Flinders used the word &quot;Australia&quot; in the book, which was widely read and gave the term general currency. Governor [[Lachlan Macquarie]] of [[New South Wales]] subsequently used the word in his dispatches to [[England]]. In 1817 he recommended that it be officially adopted. In 1824, the British Admiralty agreed that the continent should be known officially as Australia.
8331
8332 The word &quot;Australia&quot; in [[Australian English]] is [[IPA chart for English|pronounced]] as either {{IPA|/ə.ˈstÉšÃĻÉĒ.ljə/}}, {{IPA|/ə.ˈstÉšÃĻÉĒ.liː.ə/}} or {{IPA|/ə.ˈstÉšÃĻÉĒ.jə/}}.
8333
8334 == History ==
8335 {{main|History of Australia}}
8336 The first human habitation of Australia is estimated to have occurred between 42,000 and 48,000 years ago.{{ref|Gillespie2002}} The first Australians were the ancestors of the current [[Indigenous Australians]]; they arrived via land bridges and short sea-crossings from present-day [[Southeast Asia]]. Most of these people were [[hunter-gatherer]]s, with a complex oral culture and spiritual values based on reverence for the land and a belief in the [[Dreamtime (mythology)|Dreamtime]]. The [[Torres Strait Islanders]], ethnically [[Melanesia]]n, inhabited the [[Torres Strait Islands]] and parts of far-north [[Queensland]]; they possess distinct cultural practices from the Aborigines.
8337 [[Image:Endeavour replica in Cooktown harbour.jpg|240px|left|thumb|Lieutenant [[James Cook]] charted the East coast of Australia on [[HM Bark Endeavour|HM Bark ''Endeavour'']], claiming the land for Britain in 1770. This replica was built in [[Fremantle, Western Australia|Fremantle]] in 1988 for Australia's bicentenary.]]
8338 The first undisputed recorded European sighting of the Australian continent was made by the Dutch navigator [[Willem Jansz]], who sighted the coast of [[Cape York Peninsula]] in 1606. During the 17th century, the Dutch charted the whole of the western and northern coastlines of what they called [[New Holland (Australia)|New Holland]], but made no attempt at settlement. In 1770, [[James Cook]] sailed along and mapped the east coast of Australia, which he named [[New South Wales]] and claimed for Britain. The expedition's discoveries provided impetus for the establishment of a [[penal colony]] there following the loss of the American colonies that had previously filled that role.
8339 [[Image:Port Arthur Seeseite.jpg|260px|thumb|right|[[Port Arthur, Tasmania|Port Arthur]], [[Tasmania]] was Australia's largest penal colony.]]
8340 The British [[British overseas territory|Crown Colony]] of New South Wales started with the establishment of a settlement at [[Port Jackson]] by Captain [[Arthur Phillip]] on [[26 January]] [[1788]]. This date was later to become Australia's national day, [[Australia Day]]. [[Van Diemen's Land]], now known as [[Tasmania]], was settled in 1803 and became a separate colony in 1825. The United Kingdom formally claimed the western part of Australia in 1829. Separate colonies were created from parts of New South Wales: [[South Australia]] in 1836, [[Victoria (Australia)|Victoria]] in 1851, and [[Queensland]] in 1859. The [[Northern Territory]] (NT) was founded in 1863 as part of the Province of South Australia. Victoria and South Australia were founded as &quot;free colonies&quot; — that is, they were never penal colonies, although the former did receive some convicts from Tasmania. Western Australia was also founded &quot;free&quot;, but later accepted transported convicts due to an acute labour shortage. The transportation of convicts to Australia was phased out between 1840 and 1868.
8341
8342 The [[Indigenous Australian]] population, estimated at about 350,000 at the time of European settlement,{{ref|Smith1980}} declined steeply for 150 years following settlement, mainly due to infectious disease, forced migration, the [[Stolen Generation|removal of children]], and other colonial government policies that some historians and Indigenous Australians have argued could be considered tantamount to [[Convention on the Prevention and Punishment of the Crime of Genocide|genocide]] by today's understanding.{{ref|Tatz1999}} Such interpretations of Aboriginal history are disputed by some as being exaggerated or fabricated for political or ideological reasons.{{ref|wind2001}} {{ref|smh2002}} This debate is known within Australia as the [[History Wars]]. Following the [[Australian referendum, 1967 (Aboriginals)|1967 referendum]], the Federal government gained the power to implement policies and make laws with respect to Aborigines. Traditional ownership of land — [[native title]] — was not recognised until the [[High Court of Australia|High Court]] case ''[[Mabo v Queensland (No 2)]]'' overturned the notion of Australia as ''[[terra nullius]]'' at the time of European occupation.
8343 [[Image:Anzac1.JPG|left|thumb|240px|The [[Last Post]] is played at an [[ANZAC Day]] ceremony in [[Port Melbourne, Victoria]], [[25 April]] [[2005]]. Ceremonies such as this are held in virtually every suburb and town in Australia.]]
8344 A [[gold rush]] began in Australia in the early 1850s, and the [[Eureka Stockade]] rebellion in 1854 was an early expression of nationalist sentiment. Between 1855 and 1890, the six colonies individually gained [[responsible government]], managing most of their own affairs while remaining part of the [[British Empire]]. The Colonial Office in London retained control of some matters, notably foreign affairs, defence and international shipping. On [[1 January]] [[1901]], [[Federation of Australia|federation]] of the colonies was achieved after a decade of planning, consultation and voting, and the Commonwealth of Australia was born, as a [[Dominion]] of the [[British Empire]]. The [[Australian Capital Territory]] (ACT) was formed from New South Wales in 1911 to provide a location for the proposed new federal capital of [[Canberra]] ([[Melbourne]] was the capital from 1901 to 1927). The Northern Territory was transferred from the control of the South Australian government to the Commonwealth in 1911. Australia willingly participated in [[World War I]];{{ref|Bean1941}} many Australians regard the defeat of the [[Australian and New Zealand Army Corps]] (ANZACs) at [[Battle of Gallipoli|Gallipoli]] as the birth of the nation — its first major military action. The Gallipoli campaign is often erroneously portrayed as or conceived to have been a solely or mainly ANZAC campaign. The reality was that British deaths during the campaign were twice as high as those of ANZAC forces. Much like Gallipoli, the [[Kokoda Track Campaign]] is regarded by many as a nation-defining battle from [[World War II]].
8345
8346 The [[Statute of Westminster 1931]] formally ended most of the constitutional links between Australia and the United Kingdom, but Australia did not [[Statute of Westminster Adoption Act 1942|adopt the Statute]] until 1942. The shock of the United Kingdom's defeat in Asia in 1942 and the threat of Japanese invasion caused Australia to turn to the [[United States]] as a new ally and protector. Since 1951, Australia has been a formal military ally of the US under the auspices of the [[ANZUS]] treaty. After World War II, Australia encouraged mass immigration from Europe; since the 1970s and the abolition of the [[White Australia policy]], immigration from Asia and other parts of the world was also encouraged. As a result, Australia's demography, culture and image of itself were radically transformed. The final constitutional ties between Australia and the United Kingdom ended in 1986 with the passing of the [[Australia Act 1986]], ending any British role in the Australian States, and ending judicial appeals to the UK Privy Council. Australian voters rejected a move to become a republic in 1999 by a 55% majority,{{ref|AEC}} but the result is generally viewed in terms of dissatisfaction with the specifics of the proposed republican model rather than attachment to the monarchy. Since the election of the [[Gough Whitlam|Whitlam Government]] in 1972, there has been an increasing focus on the nation's future as a part of the Asia-Pacific region.
8347
8348 ==Politics==
8349 {{main articles|[[Government of Australia]] and [[Politics of Australia]]}}
8350 [[Image:NewParliamentHouseInCanberra.jpg|thumb|right|240px|New [[Parliament House, Canberra|Parliament House]] in [[Canberra]] was opened in 1988 replacing the [[Old Parliament House, Canberra|provisional Parliament House building]] opened in 1927.]]
8351
8352 The Commonwealth of Australia is a [[constitutional monarchy]] and has a [[parliamentary system]] of government. [[Elizabeth II of the United Kingdom|Queen Elizabeth II]] is the [[Queen of Australia]], a role that is distinct from her position as Elizabeth II of the United Kingdom. The Queen is nominally represented by the [[Governor-General of Australia|Governor-General]]; although the [[Constitution of Australia|Constitution]] gives extensive [[Executive (government)|executive powers]] to the Governor-General, these are normally exercised only on the advice of the [[Prime Minister of Australia|Prime Minister]]. The most notable exercise of the Governor-General's [[reserve power]]s outside the Prime Minister's direction was the dismissal of the Whitlam Government in the [[Australian constitutional crisis of 1975|constitutional crisis of 1975]].{{ref|PL1997}}
8353
8354 There are three branches of government.
8355 *The legislature: the [[Parliament of Australia|Commonwealth Parliament]], comprising the Queen, the Senate, and the House of Representatives; the Queen is represented by the Governor-General, who in practice exercises little or no power over the Parliament.
8356 *The executive: the [[Federal Executive Council]] (the Governor-General as advised by the executive councillors); in practice, the councillors are the prime minister and ministers of state, whose advice the Governor-General accepts, with rare exceptions.
8357 *The judiciary: the [[High Court of Australia]] and other [[Australian court hierarchy|federal courts]]. The State courts became formally independent from the [[Judicial Committee of the Privy Council]] when the ''[[Australia Act]]'' was passed in 1986.
8358
8359 The [[Bicameralism|bicameral]] Commonwealth Parliament consists of the Queen, the [[Australian Senate|Senate]] (the upper house) of 76 senators, and a [[Australian House of Representatives|House of Representatives]] (the lower house) of 150 members. Members of the lower house are elected from single-member constituencies, commonly known as 'electorates' or 'seats'. Seats in the House of Representatives are allocated to states on the basis of population. In the Senate, each state, regardless of population, is represented by 12 senators, with the ACT and the NT each electing two. Elections for both chambers are held every three years; typically only half of the Senate seats are put to each election, because senators have overlapping six-year terms. The party with majority support in the House of Representatives forms Government, with its leader becoming Prime Minister.
8360
8361 There are three major political parties: the [[Australian Labor Party|Labor Party]], the [[Liberal Party of Australia|Liberal Party]] and the [[National Party of Australia|National Party]]. Independent members and several minor parties — including the [[Australian Greens|Greens]], [[Family First Party|Family First]] and the [[Australian Democrats]] — have achieved representation in Australian parliaments, mostly in upper houses, although their influence has been marginal. Since the [[Australian legislative election, 1996|1996 election]], the [[Coalition (Australia)|Liberal/National Coalition]] led by the Prime Minister, [[John Howard]], has been in power in Canberra. In the [[Australian legislative election, 2004|2004 election]], the Coalition won control of the Senate, the first time that a party (or coalition of governing parties) has done so while in government in more than 20 years. The Labor Party is in power in every state and territory. [[Compulsory voting|Voting is compulsory]] in each state and territory and at the federal level.
8362
8363 == States and territories==
8364 {{main|States and territories of Australia}}
8365 [[Image:Map of Australia.png|thumb|240px|States and territories of Australia]]
8366 Australia consists of six states, two major mainland territories, and other minor territories. The states are [[New South Wales]], [[Queensland]], [[South Australia]], [[Tasmania]], [[Victoria (Australia)|Victoria]] and [[Western Australia]]. The two major mainland territories are the [[Northern Territory]] and the [[Australian Capital Territory|Australian Capital Territory]].
8367 In most respects, the territories function similarly to the states, but the Commonwealth Parliament can override any legislation of their parliaments. By contrast, federal legislation overrides state legislation only with respect to certain areas as set out in [[Section 51 of the Australian Constitution|Section 51]] of the [[Constitution of Australia|Constitution]]; all residual legislative powers are retained by the state parliaments, including powers over hospitals, education, police, the judiciary, roads, public transport and local government.
8368
8369 Each state and territory has its own [[Parliaments of the Australian states and territories|legislature]] ([[Unicameralism|unicameral]] in the case of the Northern Territory, the ACT and Queensland, and bicameral in the remaining states). The [[lower house]] is known as the [[Legislative Assembly]] ([[House of Assembly]] in South Australia and Tasmania) and the [[upper house]] the [[Legislative Council]]. The [[head of government|heads of the governments]] in each state and territory are called [[Premiers of the Australian states|premiers]] and [[Chief Minister|chief ministers]], respectively. The Queen is represented in each state by a [[Governors of the Australian states|governor]]; an [[Administrator of the Northern Territory|administrator]] in the Northern Territory, and the Governor-General in the ACT, have analogous roles.
8370
8371 Australia also has several minor territories; the federal government administers a separate area within New South Wales, the [[Jervis Bay Territory]], as a naval base and sea port for the national capital. In addition Australia has the following, inhabited, external territories: [[Norfolk Island]], [[Christmas Island]], [[Cocos (Keeling) Islands]], and several largely uninhabited external territories: [[Ashmore and Cartier Islands]], [[Coral Sea Islands]], [[Heard Island and McDonald Islands]] and the [[Australian Antarctic Territory]].
8372
8373 ==Foreign relations and military==
8374 {{main articles|[[Foreign relations of Australia]] and [[Australian Defence Force]]}}
8375
8376 Over recent decades, [[Foreign relations of Australia|Australia's foreign relations]] have been driven by a close association with the [[United States]], through the [[ANZUS|ANZUS pact]] and by a desire to develop relationships with [[Asia]] and the Pacific, particularly through [[Association of Southeast Asian Nations|ASEAN]] and the [[Pacific Islands Forum]]. In 2005 Australia secured an inaugural seat at the [[East Asia Summit]] following its accession to the Treaty of Amity and Cooperation. Australia is a member of the [[Commonwealth of Nations]], in which the [[Commonwealth Heads of Government]] meetings provide the main forum for co-operation. Much of Australia's diplomatic energy is focused on international trade liberalisation. Australia led the formation of the [[Cairns Group]] and [[Asia-Pacific Economic Cooperation|APEC]], and is a member of the [[Organisation for Economic Co-operation and Development|OECD]] and the [[WTO]]. Australia has pursued several major bilateral free trade agreements, most recently the [[Australia-United States Free Trade Agreement|Australia-US Free Trade Agreement]]. Australia is a founding member of the [[United Nations]], and maintains an international aid program under which some 60 countries receive assistance. The 2005–06 budget provides A$2.5&amp;nbsp;bn for development assistance;{{ref|AGov2005}} as a percentage of GDP, this contribution is less than that of the UN [[Millennium Development Goals]].
8377
8378 Australia's armed forces — the [[Australian Defence Force]] (ADF) — comprise the [[Royal Australian Navy]] (RAN), the [[Australian Army]], and the [[Royal Australian Air Force]] (RAAF). All branches of the ADF have been involved in UN and regional peacekeeping (most recently in East Timor, the Solomon Islands and [[Sudan]]), disaster relief, and armed conflict, including the [[2003 Invasion of Iraq]]. The government appoints the chief of the Defence Force from one of the armed services; the current chief is Air Chief Marshal [[Angus Houston]]. In 2005–06, the defence budget is A$17.5&amp;nbsp;bn.{{ref_label|AGov2005|8|a}}
8379
8380 ==Geography==
8381 {{main|Geography of Australia}}
8382 [[Image:Australia-climate-map_MJC01.png|thumb|250px|Climate map of Australia]]
8383 Australia's 7,686,850 [[square kilometre]]s (2,967,909 [[square mile|sq.&amp;nbsp;mi]]) landmass is on the [[Indo-Australian Plate]]. Surrounded by the [[Indian Ocean|Indian]], [[Southern Ocean|Southern]] and [[Pacific Ocean|Pacific]] oceans, Australia is separated from Asia by the [[Arafura Sea|Arafura]] and [[Timor Sea|Timor]] seas. Australia has a total 25,760 [[kilometre]]s (16,007&amp;nbsp;[[mile|mi]]) of coastline and claims an extensive [[Exclusive Economic Zone]] of 8,148,250 square kilometres (3,146,057&amp;nbsp;sq.&amp;nbsp;mi). This exclusive economic zone does not include the [[Australian Antarctic Territory]].
8384
8385 The Great Barrier Reef, the world's largest coral reef, lies a short distance off the north-east coast and extends for over 2,000 kilometres (1,250&amp;nbsp;mi). The world's two largest monoliths are located in Australia, Mount Augustus in Western Australia is the largest and Uluru in central Australia is the second largest. At 2,228 [[metre]]s (7,310 [[foot (unit of length)|ft]]), Mount Kosciuszko on the Great Dividing Range is the highest mountain on the Australian mainland, although Mawson Peak on the remote Australian territory of Heard Island is taller at 2,745 metres (9,006&amp;nbsp;[[foot (unit of length)|ft]]).
8386
8387 ==Climate==
8388 The largest part of Australia is [[desert]] or [[semi-arid]] – 40% of the landmass is covered by [[sand dune]]s. Only the south-east and south-west corners have a temperate climate and moderately fertile soil. The northern part of the country has a tropical climate: part is tropical [[rainforest]]s, part grasslands, and very little desert. Australia receives [[snowfall]] in some cities, but mostly in towns and at higher evaluations. Climate is highly influenced by ocean currents, including the [[El NiÃąo]] southern oscillation, which is correlated with periodic drought, and the seasonal tropical low pressure system that produces cyclones in northern Australia. Rainfall is highly variable, with frequent [[drought]]s. Rising levels of [[salinity]] and desertification in some areas.
8389
8390 Australia is situated in the middle of the tectonic plate, and therefore has no active volcanism only extinct volcanos, although it may sometimes receive minor earthquakes. The terrain is mostly heavily weathered, low [[plateau]] with deserts, rangelands and a fertile plain in southeast. Tasmania and the [[Australian Alps]] do not contain any permanent [[icefield]]s or [[glacier]]s, although they may have existed in the past. The [[Great Barrier Reef]], by far the world's largest [[coral]] [[reef]], lies a short distance off the north-east coast. [[Mount Augustus National Park|Mount Augustus]], in [[Western Australia]], is the largest [[monolith]] in the world.
8391
8392 == Flora and fauna ==
8393 {{main articles|[[Flora of Australia]] and [[Fauna of Australia]]}}
8394 [[Image:Koala climbing tree.jpg|right|thumb|240px|The [[Koala]] and the ''[[Eucalyptus]]'' make an iconic pair of Australian flora and fauna.]]
8395 Although most of Australia is semi-arid or desert, it covers a diverse range of habitats, from alpine heaths to tropical [[rainforest]]s. Because of the great age and consequent low levels of fertility of the continent, its extremely variable weather patterns and its long-term geographic isolation, much of Australia's [[biota (ecology)|biota]] is unique and [[biodiversity|diverse]]. About 85% of [[flowering plant]]s, 84% of [[mammal]]s, more than 45% of [[List of Australian birds|bird]]s, and 89% of in-shore, temperate-zone fish are [[Endemic (ecology)|endemic]].{{ref|DEH}} Many of Australia's ecoregions, and the species within those regions, are threatened by human activities and [[Invasive species in Australia|introduced plant and animal species]]. The federal ''Environment Protection and Biodiversity Conservation Act 1999'' is a legal framework used for the protection of threatened species. Numerous [[Protected areas of Australia|protected areas]] have been created to protect and preserve Australia's unique ecosystems, 64 wetlands are registered under the [[Ramsar Convention]], and 16 [[World Heritage Site]]s have been established. Australia was ranked 13th in the World on the 2005 [[Environmental Sustainability Index]].
8396
8397 Most Australian plant species are evergreen and many are adapted to fire and drought, including the [[Eucalyptus|eucalyptus]] and [[acacia]]s. Australia has a rich variety of endemic [[legume]] species that thrive in nutrient-poor soils because of their symbiosis with [[Rhizobia]] bacteria and [[Mycorrhiza|mycorrhizal]] fungi. Well-known Australian fauna include [[monotreme]]s (the [[platypus]] and [[echidna]]); a host of [[marsupial]]s, including the [[koala]], [[kangaroo]], [[wombat]]; and birds such as the [[emu]], [[cockatoo]], and [[kookaburra]]. The [[dingo]] was introduced by Austronesian people that traded with Indigenous Australians around 4000 [[Common Era|BCE]]. Many plant and animal species became extinct soon after human settlement, including the [[Australian megafauna]]; many more have become extinct since European settlement, among them the [[Thylacine]] (Tasmanian Tiger).
8398
8399 == Economy ==
8400 {{main|Economy of Australia}}
8401 [[Image:Melbourne yarra afternoon.jpg|240px|thumb|right| [[Melbourne]]'s population is approximately 3.7 million, the second largest in Australia]]
8402 Australia has a prosperous, Western-style [[mixed economy]], with a per capita [[Gross domestic product|GDP]] slightly higher than those of the UK, [[Germany]] and [[France]]. The country was ranked third in the [[United Nations]]' 2005 [[Human Development Index]] and sixth in ''[[The Economist]]'' worldwide quality-of-life index 2005. In recent years, the Australian economy has been resilient in the face of global economic downturn. Rising output in the domestic economy has been offsetting the global slump, and business and consumer confidence remains robust. Australia's emphasis on economic reform is often claimed to be key factor behind the economy's strength. In the 1980s, the Labor Party, led by [[Prime Minister of Australia|Prime Minister]] [[Bob Hawke]] and [[Treasurer of Australia|Treasurer]] [[Paul Keating]], started the process of economic reform by [[Floating exchange rate|floating]] the [[Australian dollar]] in 1983, and deregulating the financial system.{{ref|Macfarlane1998}} Since 1996, the Howard government has continued the process of micro-economic reform, including the partial deregulation of the labour market and the privatisation of state-owned businesses, most notably in the [[Communications in Australia|telecommunications]] industry.{{ref|Parham2002}} Substantial reform of the indirect tax system was implemented in July 2000 with the introduction of a 10% [[Goods and Services Tax (Australia)|Goods and Services Tax]], which has slightly reduced the heavy reliance on personal and company income tax that still characterises Australia's tax system.
8403
8404 The Australian economy has not suffered a [[recession]] since the early 1990s. As of January 2006, [[unemployment]] was 5.3% with 10,034,500 persons employed.{{ref|ABS6202}} The service sector of the economy, including tourism, education, and financial services, comprises 69% of GDP.{{ref|DFAT}} [[Agriculture in Australia|Agriculture]] and natural-resources represent only 3% and 5% of GDP, respectively, but contribute substantially to Australia's export performance. Australia's largest export markets include [[Japan]], [[People's Republic of China|China]], the United States, [[South Korea]] and New Zealand.{{ref|ABS2005}} Areas of concern to some economists include the chronically high [[current account deficit]] and also high levels of net foreign debt.
8405
8406 == Demographics ==
8407 {{main|Demographics of Australia}}
8408 [[Image:Sydney_opera_house_and_skyline.jpg|thumb|259px|right|Most Australians live in urban areas; [[Sydney]] is the most populous city in Australia.]]
8409
8410 Most of the estimated 20.4 million Australians are descended from 19th- and 20th-century immigrants, the majority from [[Great Britain]] and [[Ireland]]. Australia's population has quadrupled since the end of World War I {{ref|ABS}}, spurred by an ambitious [[Immigration to Australia|immigration]] program. In 2001, the five largest groups of the 27.4% of Australians who were born overseas were from the United Kingdom, [[New Zealand]], [[Italy]], [[Vietnam]] and China.{{ref_label|ABS2005|13|a}} Following the abolition of the [[White Australia policy]] in [[1973]], numerous government initiatives have been established to encourage and promote racial harmony based on a policy of [[multiculturalism]]{{ref|DIMIA}}. Australia’s population has increased by about 60 times since European settlement.
8411
8412 The self-declared indigenous population — including Torres Strait Islanders, who are of Melanesian descent — was 410,003 (2.2% of the total population) in 2001, a significant increase from the 1977 census, which showed an indigenous population of 115,953.{{ref|ABS2001}} Indigenous Australians have higher rates of imprisonment and unemployment, lower levels of education and life expectancies for males and females that are 17 years lower than those of other Australians.{{ref_label|ABS2005|13|b}} Perceived racial inequality is an ongoing political and [[human rights in Australia|human rights]] issue for Australians.
8413
8414 [[Image:Tanunda.jpg|left|thumb|240px|Fewer than 15% of Australians live in rural areas. This picture shows the [[Barossa Valley]] wine producing region of [[South Australia]].]]
8415
8416 In common with many other developed countries, Australia is experiencing a demographic shift towards an older population, with more retirees and fewer people of working age. A large number of Australians (759,849 for the period 2002&amp;ndash;03{{ref|PoA2005}}) live outside their home country. Australia has maintained one of the most active [[Immigration to Australia|immigration]] programs in the world to boost population growth. Most immigrants are skilled; the quota includes categories for family members and [[refugee]]s.
8417
8418 [[English language|English]] is the [[official language]],{{ref|DIMIA2}} and is spoken and written in a distinct variety known as [[Australian English]]. According to the 2001 census, English is the only language spoken in the home for around 80% of the population. The next most common languages spoken at home are [[Chinese language|Chinese]] (2.1%), [[Italian language|Italian]] (1.9%) and [[Greek language|Greek]] (1.4%). A considerable proportion of first- and second-generation migrants are [[Multilingual|bilingual]]. It is believed that there were between 200 and 300 [[Australian Aboriginal languages]] at the time of first European contact. Only about 70 of these languages have survived, and all but 20 of these are now [[endangered languages|endangered]]. An indigenous language remains the main language for about 50,000 (0.02%) people. Australia has a [[sign language]] known as [[Auslan]], which is the main language of about 6,500 [[deaf]] people.
8419
8420 Australia has no [[state religion]]. The 2001 census identified that 68% of Australians call themselves Christian: 27% identifying themselves as [[Roman Catholic Church in Australia|Roman Catholic]] and 21% as [[Anglican Church|Anglican]]. Australians that identify themselves as followers of non-Christian religions number 5%. A total of 16% were categorised as having &quot;No Religion&quot; (which includes non theistic beliefs such as [[secular humanism|Humanism]], [[atheism]], [[agnosticism]] and [[rationalism]]) and a further 12% declined to answer or did not give a response adequate for interpretation. As in many Western countries, the level of active participation in church worship is much lower than this; weekly attendance at church services is about 1.5 million, about 7.5% of the population.{{ref|NCLSattsurvey}}
8421
8422 School attendance is compulsory throughout Australia between the ages of 6&amp;ndash;15 years (16 years in South Australia and Tasmania), contributing to an adult literacy rate that is assumed to be 99%. Government grants have supported the establishment of Australia's 38 universities, and although several private universities have been established, the majority receive government funding. There is a state-based system of vocational training colleges, known as [[Technical and Further Education|TAFE Institutes]], and many trades conduct [[apprenticeship]]s for training new tradespeople. Approximately 58% of Australians between the ages of 25 and 64 have vocational or tertiary qualifications.{{ref_label|ABS2005|13|c}}
8423
8424 == Culture ==
8425 {{main|Culture of Australia}}
8426 [[Image:Golden Summer Eaglemont Arthur Streeton.jpg|right|thumb|240px|''Golden Summer, Eaglemont'' ([[Eaglemont, Victoria]]) by [[Arthur Streeton]] (1889) is an early example of the rich tradition of Australian [[landscape painting]].]]
8427 The primary basis of Australian culture up until the mid-20th century was [[Anglo-Celtic]], although distinctive Australian features had been evolving from the environment and [[Australian Aborigine|indigenous]] culture. Over the past 50 years, Australian culture has been strongly influenced by American popular culture (particularly television and cinema), large-scale immigration from non-English-speaking countries, and Australia's Asian neighbours. The vigour and originality of the arts in Australia—films, opera, music, painting, theater, dance, and crafts—are achieving international recognition.
8428
8429 Australia has a long history of visual arts, starting with the [[Cave painting|cave]] and bark paintings of its indigenous peoples. From the time of European settlement, a common theme in [[Art of Australia|Australian art]] has been the Australian landscape, seen in the works of [[Arthur Streeton]], [[Arthur Boyd]] and [[Albert Namatjira]], among others. The traditions of indigenous Australians are largely transmitted orally and are closely tied to ceremony and the telling of the stories of the [[Dreamtime (mythology)|Dreamtime]]. [[Australian Aboriginal music]], dance and [[Australian Aboriginal art|art]] have a palpable influence on contemporary Australian visual and performing arts. Australia has an active tradition of [[music]], [[ballet]] and [[theatre]]; many of its performing arts companies receive public funding through the federal government's [[The Australia Council|Australia Council]]. There is a [[Orchestra|symphony orchestra]] in each capital city, and a national [[opera]] company, [[Opera Australia]], first made prominent by the renowned diva [[Joan Sutherland|Dame Joan Sutherland]]; [[Music of Australia|Australian music]] includes classical, jazz, and many popular music genres.
8430
8431 [[Australian literature]] has also been influenced by the landscape; the works of writers such as [[Banjo Paterson]] and [[Henry Lawson]] captured the experience of the Australian bush. The character of colonial Australia, as embodied in early literature, resonates with modern Australia and its perceived emphasis on [[egalitarianism]], mateship, and anti-authoritarianism. In 1973, [[Patrick White]] was awarded the [[Nobel Prize in Literature]], the only Australian to have achieved this; he is recognised as one of the great English-language writers of the 20th century. [[Australian English]] is a major variety of the language; its grammar and spelling are largely based on those of British English, overlaid with a rich vernacular of unique lexical items and phrases, some of which have found their way into standard English.
8432
8433 Australia has two public broadcasters (the [[Australian Broadcasting Corporation|ABC]] and [[Special Broadcasting Service|SBS]]), three commercial [[television network]]s, three pay TV services, and numerous public, non-profit television and radio stations. [[Cinema of Australia|Australia's film industry]] has achieved critical and commercial successes. Each major city has daily newspapers, and there are two national daily newspapers, ''[[The Australian]]'' and ''[[The Australian Financial Review]]''. According to [[Reporters Without Borders]] in 2005, Australia is in 31st position on a list of countries ranked by [[freedom of the press|press freedom]], behind [[New Zealand]] (9th) and the [[United Kingdom]] (28th) but ahead of the [[United States]]. This ranking is primarily due to the limited diversity of commercial media ownership in Australia. Most Australian [[Publishing|print media]] in particular is under the control of either [[News Corporation]] or [[John Fairfax Holdings]].
8434 [[Image:Aussie rules wikipedia.jpg|thumb|240px|right|[[Australian rules football]] was developed in [[Melbourne]], Australia and is played at amateur and professional levels.]]
8435
8436 [[Sport in Australia|Sport]] is an important part of Australian culture, assisted by a climate that favours outdoor activities; 23.5% Australians over the age of 15 regularly participate in organised sporting activities{{ref_label|ABS2005|13|d}}. At an international level, Australia has particularly strong teams in [[cricket]], [[field hockey|hockey]], [[netball]], [[rugby league]], [[rugby union]], and performs well in [[cycling]] and [[swimming]]. Australia has participated in every summer [[Olympic Games]] of the modern era, and every [[Commonwealth Games]]. Australia has hosted the [[1956 Summer Olympics|1956]] and [[2000 Summer Olympics|2000]] Summer Olympics, and has ranked among the top five medal-takers since 2000. In [[2004]], it collected 49 Olympic medals (17 gold, 16 silver and 16 bronze). Australia has also hosted the [[1938 British Empire Games|1938]], [[1962 British Empire and Commonwealth Games|1962]] and [[1982 Commonwealth Games|1982]] Commonwealth Games, and will host the [[2006 Commonwealth Games]] in [[Melbourne]]. [[Australian rules football]] is the most popular national sport; players gain some international prominence through [[International rules football|International Rules]] which is an annual meeting between the Australian code and Irish Gaelic Football. However, [[Rugby League]] is more popular than Australian Rules in New South Wales and Queensland. The [[Australian Open]] is one of the four [[Grand Slam (tennis)|Grand Slam]] tennis tournaments, held in [[Melbourne]] each January. The F1 [[Australian Grand Prix]] is also held in Melbourne, usually towards the end of March each year. Corporate and government sponsorship of many sports and Êlite athletes is common in Australia.
8437
8438 Televised sport is popular; some of the highest rating television programs include the summer Olympic Games and the grand finals of local and international football competitions.{{ref|AFC}}
8439
8440 == See also ==
8441 {{Template:Australian Topics}}
8442
8443 ==References==
8444 &lt;!--This article uses [[Wikipedia:Footnote3]] please add references using that system and adjust the other references as necessary--&gt;
8445 &lt;div style=&quot;font-size: 90%&quot;&gt;
8446 #{{note|Baker}}Sidney J. Baker, ''The Australian Language'', second edition, 1966.
8447 #{{note|Gillespie2002}}Gillespie, R. (2002). Dating the first Australians. ''Radiocarbon'' 44:455-472
8448 #{{note|Smith1980}}Smith, L. (1980), The Aboriginal Population of Australia, Australian National University Press, Canberra
8449 #{{note|Tatz1999}}Tatz, C. (1999). ''[http://www.aiatsis.gov.au/rsrch/rsrch_dp/genocide.htm Genocide in Australia]'', AIATSIS Research Discussion Papers No 8, Australian Institute of Aboriginal and Torres Strait Islander Studies, Canberra
8450 #{{note|wind2001}} Windschuttle, K. (2001). ''[http://www.newcriterion.com/archive/20/sept01/keith.htm# The Fabrication of Aboriginal History]'', The New Criterion Vol. 20, No. 1, September 20.
8451 #{{note|smh2002}} Sheehan, P. (2002). ''[http://www.smh.com.au/articles/2002/11/24/1037697982065.html Our history, not rewritten but put right]'', The Sydney Morning Herald, November 25.
8452 #{{note|Bean1941}}Bean, C. Ed. (1941). [http://www.awm.gov.au/histories/ww1/1/index.asp Volume I - The Story of Anzac: the first phase], First World War Official Histories 11th Edition.
8453 #{{note|AEC}}Australian Electoral Commission (2000). [http://www.aec.gov.au/_content/when/referendums/1999_report/index.htm 1999 Referendum Reports and Statistics]
8454 #{{note|PL1997}}Parliamentary Library (1997). [http://www.aph.gov.au/library/pubs/rn/1997-98/98rn25.htm The Reserve Powers of the Governor-General]
8455 #{{note|AGov2005}}{{note_label|AGov2005|8|a}}Australian Government. (2005). [http://www.budget.gov.au/ Budget 2005-2006]
8456 #{{note|DEH}}Department of the Environment and Heritage. [http://www.deh.gov.au/biodiversity/about-biodiversity.html About Biodiversity]
8457 #{{note|Macfarlane1998}}Macfarlane, I. J. (1998). [http://www.rba.gov.au/PublicationsAndResearch/Bulletin/bu_oct98/bu_1098_2.pdf Australian Monetary Policy in the Last Quarter of the Twentieth Century]. ''Reserve Bank of Australia Bulletin'', October
8458 #{{note|Parham2002}}Parham, D. (2002). [http://www.pc.gov.au/research/confproc/mrrag/mrrag.pdf Microeconomic reforms and the revival in Australia’s growth in productivity and living standards]. ''Conference of Economists'', Adelaide, [[1 October]]
8459 #{{note|ABS6202}} Australian Bureau of Statistics. Labour Force Australia. Cat#6202
8460 #{{note|ABS2005}}{{note_label|ABS2005|13|a}}{{note_label|ABS2005|13|b}}{{note_label|ABS2005|13|c}}{{note_label|ABS2005|13|d}}Australian Bureau of Statistics. [http://www.abs.gov.au/ausstats/abs@.nsf/94713ad445ff1425ca25682000192af2/1a79e7ae231704f8ca256f720082feb9!OpenDocument Year Book Australia 2005]
8461 #{{note|DFAT}} Department of Foreign Affairs and Trade (2003). ''Advancing the National Interest'', [http://www.dfat.gov.au/ani/appendix_one.pdf Appenidix 1]
8462 #{{note|ABS}} Australian Bureau of Statistics, [http://www.abs.gov.au/Ausstats/abs@.nsf/0/68180154bf128d91ca2569d000164365?OpenDocument Population Growth - Australia’s Population Growth]
8463 #{{note|DIMIA}}Department of Immigration, Multicultural and Indigenous Affiars. (2005). [http://www.immi.gov.au/facts/06evolution.htm The Evolution of Australia's Multicultural Policy]&lt;br&gt;
8464 #{{note|ABS2001|}}Australian Bureau of Statistics. 2001 Census, [http://www.abs.gov.au/ausstats/abs@census.nsf/ddc9b4f92657325cca256c3e000bdbaf/7dd97c937216e32fca256bbe008371f0!OpenDocument A Snapshot of Australia]
8465 #{{note|PoA2005}}Parliament of Australia, Senate (2005). [http://www.aph.gov.au/Senate/committee/legcon_ctte/expats03/ Inquiry into Australian Expatriates]
8466 #{{note|DIMIA2}}Department of Immigration, Multicultural and Indigenous Affiars. (1995). [http://www.immi.gov.au/multicultural/_inc/publications/confer/04/speech18b.htm Pluralist Nations: Pluralist Language Policies?]
8467 #{{note|NCLSattsurvey}} [http://www.ncls.org.au/default.aspx?docid=2250&amp;track=82083 NCLS releases latest estimates of church attendance], National Church Life Survey, Media release, [[28 February]] [[2004]]
8468 #{{note|AFC}}Australian Film Commission. What are Australians Watching?, [http://www.afc.gov.au/gtp/freetv.html Free-to-Air, 1999-2004 TV]
8469
8470
8471 &lt;/div&gt;
8472
8473 == External links ==
8474 {{portal}}
8475 {{Spoken Wikipedia-2|2006-01-17|AustraliaPart1.ogg|AustraliaPart2.ogg|}}
8476 {{sisterlinks|Australia}}
8477
8478 *[http://wikitravel.org/en/Australia Wikitravel guide to Australia]
8479 *[http://www.gov.au/ Australian Government Entry Portal]
8480 *[http://www.australia.gov.au/ Commonwealth Government Online]
8481 *[http://www.immi.gov.au/ Department of Immigration and Multicultural and Indigenous Affairs (DIMIA)]
8482 *[http://www.dfat.gov.au/geo/australia/index.html Department of Foreign Affairs and Trade (DFAT): Country Information]
8483 *[http://maps.google.com/maps?ll=-27.000000,133.000000&amp;spn=38.871300,61.703613&amp;t=h&amp;hl=en Satellite images of Australia] (Google Maps)
8484 *[http://www.nla.gov.au/ National Library of Australia]
8485 *[http://www.nma.gov.au/ National Museum of Australia]
8486 *[http://www.australia.com/ Official Australia Tourism Website]
8487 *[http://www.bom.gov.au/ Bureau of Meteorology]
8488 *[http://www.m2006.com.au/ Official website of the Melbourne 2006 Commonwealth Games]
8489 {{Continent}}
8490 {{Pacific_Islands}}
8491
8492 &lt;!-- featured artcicle indicator --&gt;
8493 {{Featured article}}
8494
8495 {{Link FA|de}}
8496
8497 &lt;!-- categories --&gt;
8498
8499 [[Category:Australia| ]]
8500 [[Category:Continents]]
8501 [[Category:Members of the Commonwealth of Nations]]
8502 [[Category:Monarchies]]
8503 [[Category:1901 establishments]]
8504
8505 &lt;!-- The below are interlanguage links. --&gt;
8506
8507 [[af:AustraliÃĢ]]
8508 [[ar:ØŖØŗØĒØąØ§Ų„ŲŠØ§]]
8509 [[an:Australia]]
8510 [[bg:АвŅŅ‚Ņ€Đ°ĐģиŅ]]
8511 [[bs:Australija]]
8512 [[zh-min-nan:Australia]]
8513 [[bn:āĻ…āĻ¸ā§āĻŸā§āĻ°ā§‡āĻ˛āĻŋāĻ¯āĻŧāĻž]]
8514 [[ca:Austràlia]]
8515 [[ceb:Australia]]
8516 [[cs:AustrÃĄlie]]
8517 [[cy:Awstralia]]
8518 [[da:Australien]]
8519 [[de:Australien]]
8520 [[et:Austraalia]]
8521 [[el:ΑĪ…ĪƒĪ„ĪÎąÎģÎ¯Îą]]
8522 [[es:Australia]]
8523 [[eo:AÅ­stralio]]
8524 [[fa:اØŗØĒØąØ§Ų„یا]]
8525 [[fr:Australie]]
8526 [[ga:An AstrÃĄil]]
8527 [[gl:Australia]]
8528 [[hr:Australija]]
8529 [[ko:ė˜¤ėŠ¤íŠ¸ë ˆėŧëĻŦė•„]]
8530 [[hi:ā¤‘ā¤¸āĨā¤ŸāĨā¤°āĨ‡ā¤˛ā¤ŋā¤¯ā¤ž]]
8531 [[io:Australia]]
8532 [[id:Australia]]
8533 [[ia:Australia]]
8534 [[is:Ástralía]]
8535 [[it:Australia]]
8536 [[he:אוסטרליה]]
8537 [[kw:Ostrali]]
8538 [[la:Australia]]
8539 [[lv:Austrālija (valsts)]]
8540 [[lt:Australija]]
8541 [[lb:Australien]]
8542 [[li:AustraliÃĢ]]
8543 [[hu:AusztrÃĄlia]]
8544 [[mi:Ahitereiria]]
8545 [[ms:Australia]]
8546 [[na:Otereiriya]]
8547 [[nl:AustraliÃĢ (land)]]
8548 [[nds:Australien]]
8549 [[ja:ã‚Ēãƒŧ゚トナãƒĒã‚ĸ]]
8550 [[ko:호ėŖŧ]]
8551 [[no:Australia]]
8552 [[nn:Australia]]
8553 [[pl:Australia]]
8554 [[pt:AustrÃĄlia]]
8555 [[ro:Australia]]
8556 [[ru:АвŅŅ‚Ņ€Đ°ĐģиŅ]]
8557 [[scn:Australia]]
8558 [[simple:Australia]]
8559 [[sk:AustrÃĄlia (ÅĄtÃĄt)]]
8560 [[sl:Avstralija]]
8561 [[sr:АŅƒŅŅ‚Ņ€Đ°ĐģиŅ˜Đ°]]
8562 [[fi:Australia]]
8563 [[sv:Australien]]
8564 [[ta:āŽ†āŽ¸ā¯āŽ¤āŽŋāŽ°ā¯‡āŽ˛āŽŋāŽ¯āŽž]]
8565 [[tl:Australia]]
8566 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸­ā¸Ēāš€ā¸•ā¸Ŗāš€ā¸Ĩā¸ĩā¸ĸ]]
8567 [[vi:Úc]]
8568 [[tpi:Ostrelia]]
8569 [[tr:Avustralya]]
8570 [[uk:АвŅŅ‚Ņ€Đ°ĐģŅ–Ņ (ĐēŅ€Đ°Ņ—ĐŊĐ°)]]
8571 [[yi:אױסטראַלי×ĸ]]
8572 [[zh:æžŗ大刊äēš]]</text>
8573 </revision>
8574 </page>
8575 <page>
8576 <title>American Samoa</title>
8577 <id>578</id>
8578 <revision>
8579 <id>41583091</id>
8580 <timestamp>2006-02-28T08:03:44Z</timestamp>
8581 <contributor>
8582 <username>DopefishJustin</username>
8583 <id>5399</id>
8584 </contributor>
8585 <comment>/* External links */ make link prettier</comment>
8586 <text xml:space="preserve">{| border=1 align=right cellpadding=4 cellspacing=0 width=300 style=&quot;margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;&quot;
8587 |+ &lt;big&gt;'''Amerika Samoa&lt;br&gt;American Samoa'''&lt;/big&gt;
8588 |-
8589 | style=&quot;background:#efefef;&quot; align=&quot;center&quot; colspan=&quot;2&quot; |
8590 {| border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
8591 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:Flag of American Samoa.svg|125px|Flag of American Samoa]]
8592 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:American samoa coa.png|80px|American Samoa COA]]
8593 |-
8594 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Flag of American Samoa|Flag]])
8595 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Coat of Arms of American Samoa|Coat of Arms]])
8596 |}
8597 |-
8598 | align=center style=&quot;vertical-align: top;&quot; colspan=2 | &lt;small&gt;''National [[motto]]: Samoa, Muamua Le Atua (Samoa, Let God Be First)''&lt;/small&gt;
8599 |-
8600 | align=center colspan=2 style=&quot;background: #ffffff;&quot; | [[Image:LocationAmericanSamoa.png]]
8601 |-
8602 | '''[[Official languages]]'''
8603 | [[Samoan language|Samoan]], [[English language|English]]
8604 |-
8605 | '''[[Capital]]''' || [[Fagatogo]] (constitutional and ''de facto'' seat of government); executive offices are located in [[Utulei]]
8606 |-
8607 | '''[[Governor of American Samoa|Governor]]'''
8608 | [[Togiola Tulafono]]
8609 |-
8610 | '''[[Area]]'''&lt;br /&gt;&amp;nbsp;- Total &lt;br /&gt;&amp;nbsp;- % water
8611 | [[List of countries by area|Ranked 226th]] &lt;br /&gt; [[1 E8 m²|199 km²]] (76.8&amp;nbsp;[[square mile|sq.&amp;nbsp;mi]]) &lt;br /&gt; 0%
8612 |-
8613 | '''[[Population]]'''
8614 &lt;br /&gt;&amp;nbsp;- Total ([[2003]])
8615 &lt;br /&gt;&amp;nbsp;- [[Density]]
8616 | [[List of countries by population|Ranked 203rd]]
8617 &lt;br /&gt; 70,260
8618 &lt;br /&gt; 353/km² (914/sq.&amp;nbsp;mi)
8619 |-
8620 | '''[[Currency]]''' || [[United States dollar|USD]]
8621 |-
8622 | '''[[Time zone]]''' || [[Coordinated Universal Time|UTC]] -11 (no DST)
8623 |-
8624 | '''[[National anthem]]''' || [[Amerika Samoa]]
8625 |-
8626 | '''[[Top-level domain|Internet TLD]]''' || [[.as]]
8627 |-
8628 | '''[[List of country calling codes|Calling Code]]'''
8629 | +1 684
8630 |-
8631 | style=&quot;background:#efefef;&quot; align=&quot;center&quot; colspan=&quot;2&quot; |[[Image:Fatu Rock.jpg|right|300px]]Fatu Rock (right) and Futi Rock (left), islets on the reef of Tutuila at the entrance to Pago Pago Harbor (seen behind Fatu).
8632 |}
8633 '''American Samoa''' ([[Samoan language|Samoan]]: '''Amerika Samoa''') is an [[unorganized territory|unorganized]], [[incorporated territory|unincorporated territory]] of the [[United States]] located in the South [[Pacific Ocean]] southeast of the sovereign state of [[Samoa]]. The main (largest and most populous) island is [[Tutuila]], with the {{Unicode|[[Manua|Manu'a]]}} Islands, [[Rose Atoll]], and [[Swains Island]] also included in the territory. American Samoa is part of the Samoan Islands chain, located west of the [[Cook Islands]], north of [[Tonga]], and some 300 [[mile]]s (500 km) south of [[Tokelau]]. To the west are the islands of the [[Wallis and Futuna]] group.
8634
8635 ==History==
8636 ''Main article: [[History of Samoa]], [[History of American Samoa]]''
8637
8638 Originally inhabited as early as [[1000 BC]], Samoa was not reached by [[Europe]]an explorers until the [[18th century]].
8639
8640 International rivalries in the latter half of the [[19th century]] were settled by an [[1899]] [[Treaty of Berlin, 1899|Treaty of Berlin]] in which [[Germany]] and the U.S. divided the Samoan [[archipelago]]. The U.S. formally occupied its portion—a smaller group of eastern islands with the noted harbor of [[Pago Pago, American Samoa|Pago Pago]]—the following year. The western islands are now the independent state of [[Samoa]].
8641
8642 After the U.S. took possession of American Samoa, the [[United States Navy|U.S. Navy]] built a [[coal|coaling]] station on Pago Pago Bay for its Pacific Squadron and appointed a local Secretary. The navy secured a Deed of Cession of Tutuila in [[1900]] and a Deed of Cession of {{Unicode|[[Manua|ManuĘģa]]}} in [[1904]]. The last sovereign of {{Unicode|ManuĘģa}}, the {{Unicode|[[Tui Manua Elisala|Tui ManuĘģa Elisala]]}}, was forced to sign a Deed of Cession of {{Unicode|ManuĘģa}} following a series of US Naval trials, known as the &quot;Trial of the Ipu&quot;, in Pago Pago, {{Unicode|TaĘģu}}, and aboard a Pacific Squadron gunboat.
8643
8644 During [[World War II]], U.S. Marines in American Samoa outnumbered the local population, having a huge cultural influence. After the war, Organic Act 4500, a U.S. [[United States Department of the Interior|Department of Interior]]-sponsored attempt to incorporate American Samoa, was defeated in Congress, primarily through the efforts of American Samoan chiefs, led by [[Tuiasosopo Mariota]]. These chiefs' efforts led to the creation of a local legislature, the American Samoa ''Fono,'' which meets in the village of [[Fagatogo]], the territory's ''de facto'' and ''de jure'' capital. (See the Trivia section below for more information on Fagatogo.)
8645
8646 In time, the Navy-appointed governor was replaced by a locally elected one. Although technically considered &quot;unorganized&quot; in that the [[Congress of the United States|U.S. Congress]] has not passed an [[Organic Act]] for the territory, American Samoa is self-governing under a constitution that became effective on [[July 1]], [[1967]]. The U.S. Territory of American Samoa is on the [[United Nations list of Non-Self-Governing Territories]], a listing which is disputed by territorial government officials.
8647
8648 ==Administrative Divisions==
8649 American Samoa is administratively divided into 3 [[district]]s and 2 &quot;unorganized&quot; islands. These districts are subdivided into 73 villages.
8650 Districts:
8651 * Eastern
8652 * Western
8653 * Manu'a
8654
8655 Unorganized Islands:
8656 *[[Rose Atoll|Rose Island]]
8657 *[[Swains Island|Swains Island]]
8658 [[Image:American Samoa Districts.png|thumb|left|400px|Map of the districts of American Samoa]]
8659 &lt;br clear=&quot;left&quot;&gt;
8660 The villages for Eastern and Western districts are:
8661 &lt;table border=0&gt;&lt;tr valign=top&gt;
8662 &lt;td&gt;
8663 &lt;ol&gt;
8664 &lt;li&gt;[[Aasu|Aasu]]
8665 &lt;li&gt;[[Afao|Afao]]
8666 &lt;li&gt;[[Afono|Afono]]
8667 &lt;li&gt;[[Agugulu|Agugulu]]
8668 &lt;li&gt;[[Alao|Alao]]
8669 &lt;li&gt;[[Alofau|Alofau]]
8670 &lt;li&gt;[[Aloga|Aloga]]
8671 &lt;li&gt;[[Amaluia|Amaluia]]
8672 &lt;li&gt;[[Amanave|Amanave]]
8673 &lt;li&gt;[[Amaua|Amaua]]
8674 &lt;li&gt;[[Amouli|Amouli]]
8675 &lt;li&gt;[[Anua|Anua]]
8676 &lt;li&gt;[[Aoa|Aoa]]
8677 &lt;li&gt;[[Aoloau|Aoloau]]
8678 &lt;li&gt;[[Asili|Asili]]
8679 &lt;li&gt;[[Atu'u|Atu'u]]
8680 &lt;li&gt;[[Aua|Aua]]
8681 &lt;li&gt;[[Auasi|Auasi]]
8682 &lt;li&gt;[[Aumi|Aumi]]
8683 &lt;li&gt;[[Aunu'u|Aunu'u]]
8684 &lt;li&gt;[[Auto, American Samoa|Auto]]
8685 &lt;li&gt;[[Avaio|Avaio]]
8686 &lt;li&gt;[[Faga'alu|Faga'alu]]
8687 &lt;li&gt;[[Faga'itau|Faga'itau]]
8688 &lt;li&gt;[[Fagaili'i|Fagaili'i]]
8689 &lt;li&gt;[[Fagamalo|Fagamalo]]
8690 &lt;li&gt;[[Faganeanea|Faganeanea]]
8691 &lt;li&gt;[[Fagasa|Fagasa]]
8692 &lt;li&gt;[[Fagatogo|Fagatogo]]
8693 &lt;li&gt;[[Failolo|Failolo]]
8694 &lt;li&gt;[[Falenin|Falenin]]
8695 &lt;li&gt;[[Fatumafuti|Fatumafuti]]
8696 &lt;/ol&gt;
8697 &lt;/td&gt;
8698 &lt;td&gt;
8699 &lt;ol start=33&gt;
8700 &lt;li&gt;[[Futiga|Futiga]]
8701 &lt;li&gt;[[Ili'ili|Ili'ili]]
8702 &lt;li&gt;[[Leloaloa|Leloaloa]]
8703 &lt;li&gt;[[Leone, American Samoa|Leone]]
8704 &lt;li&gt;[[Leuli'i|Leuli'i]]
8705 &lt;li&gt;[[Malaeimi|Malaeimi]]
8706 &lt;li&gt;[[Malaeloa/Aitulagi|Malaeloa/Aitulagi]]
8707 &lt;li&gt;[[Malaeloa/Ituau|Malaeloa/Ituau]]
8708 &lt;li&gt;[[Maloata|Maloata]]
8709 &lt;li&gt;[[Mapusagafou|Mapusagafou]]
8710 &lt;li&gt;[[Masausi|Masausi]]
8711 &lt;li&gt;[[Masefau|Masefau]]
8712 &lt;li&gt;[[Matu'u|Matu'u]]
8713 &lt;li&gt;[[Mesepa|Mesespa]]
8714 &lt;li&gt;[[Nu'uuli|Nu'uuli]]
8715 &lt;li&gt;[[Nua|Nua]]
8716 &lt;li&gt;[[Onenoa|Onenoa]]
8717 &lt;li&gt;[[Pago Pago|Pago Pago]]
8718 &lt;li&gt;[[Pava'ia'i|Pava'ia'i]]
8719 &lt;li&gt;[[Poloa|Poloa]]
8720 &lt;li&gt;[[Sa'ilele|Sa'ilele]]
8721 &lt;li&gt;[[Se'etaga|Se'etaga]]
8722 &lt;li&gt;[[Tafuna|Tafuna]]
8723 &lt;li&gt;[[Taputimu|Taputimu]]
8724 &lt;li&gt;[[Tula, American Samoa|Tula]]
8725 &lt;li&gt;[[Utulei|Utulei]]
8726 &lt;li&gt;[[Utumea East|Utumea East]]
8727 &lt;li&gt;[[Utumea West|Utumea West]]
8728 &lt;li&gt;[[Vailoatai|Vailoatai]]
8729 &lt;li&gt;[[Vaitogi|Vaitogi]]
8730 &lt;li&gt;[[Vatia|Vatia]]
8731 &lt;/ol&gt;
8732 &lt;/td&gt;
8733 &lt;td&gt;
8734 [[Image:American Samoa Counties1.png|thumb|400px|Map of the villages of American Samoa]]
8735 &lt;/td&gt;
8736 &lt;/tr&gt;
8737 &lt;/table&gt;
8738 [[Image:American Samoa Counties2.png|thumb|right|300px|Map of the villages of the Manu{{okina}}a districts and Swain's Atoll]]
8739 The villages for the [[Manu'a]] district are:
8740
8741 #[[Faleasao|Faleasao]]
8742 #[[Leusoali'i|Leusoali'i]]
8743 #[[Luma, American Samoa|Luma]]
8744 #[[Maia, American SAmoa|Maia]]
8745 #[[Ofu|Ofu]]
8746 #[[Olosega|Olosega]]
8747 #[[Si'ufaga|Si'ufaga]]
8748 #[[Sili|Sili]]
8749
8750 There is one village on Swains Island. Rose Island is an uninhabited wildlife refuge.
8751
8752 ==Trivia==
8753 * American Samoa is the location of [[Rose Atoll]], the southernmost point in the United States (if [[insular area]]s and territories are included); see [[Extreme Points of the United States|extreme points]] for more information).
8754 * About 30 ethnic Samoans, many from American Samoa, currently play in the [[National Football League]]. A 2002 article from [http://espn.go.com/gen/s/2002/0527/1387626.html ESPN] estimated that a Samoan male (either an American Samoan, or a Samoan living in the 50 United States) is 40 times more likely to play in the NFL than a non-Samoan American. A number have also ventured into professional wrestling (see especially [[:Category:Anoai wrestling family|Anoai wrestling family]]).
8755 * Persons born in American Samoa are United States [[nationality|national]]s, but not United States [[citizen]]s. This is the only circumstance under which an individual would be one and not the other.
8756 * The [[American Samoa national soccer team]] holds an unwanted world record in international [[football (soccer)|soccer]]—the record defeat in an international match, a 31-0 crushing by [[Australia national football team|Australia]] on [[April 11]], [[2001]].
8757 * Although many respected reference sources list the neighboring village of [[Pago Pago]] as the capital, [[Fagatogo]] is the ''de facto'' and ''de jure'' (i.e., constitutionally designated; cf. Article 5, Section 9) seat of government. Additionally, the governor's office is located in the village of Utulei, located on the opposite side of Fagatogo from Pago Pago. The reason why many sources list Pago Pago is because the name Pago Pago, the most popular port of call in American Samoa, has become associated with the harbor itself; thus Pago Pago is now generally applied to the harbor area and the capital. However, both the port itself and the legislature of American Samoa—known as the Fono—are located in Fagatogo, a village that is adjacent to (and for all practical purposes indistinguishable from) Pago Pago. (Cf. Wikipedia entry for [[Pago Pago]].)
8758 *In March of 1889, a [[Germany|German]] naval force shelled a village in [[Samoa]], and by doing so destroyed some [[United States|American]] property. Three American warships then entered the [[Samoan]] harbor and were prepared to fire on the three German warships found there. Before guns were fired, a hurricane blew up and sank all the ships, American and German. A compulsory [[armistice]] was called because of the lack of warships.
8759
8760 ==See also==
8761 [[Aloha Council#Scouting in American Samoa|Scouting in American Samoa]]
8762
8763 ===Government===
8764 * [[List of American Samoa Governors]]
8765 * [[Elections in American Samoa]]
8766
8767 ===Sports===
8768 * [[American Samoa at the 2000 Summer Olympics]]
8769 * [[American Samoa national rugby league team]]
8770 * [[American Samoa national soccer team]]
8771
8772 ===CIA Factbook Data===
8773 ''From the [[CIA World Factbook]] 2000:''
8774 * [[Geography of American Samoa]]
8775 * [[Demographics of American Samoa]]
8776 * [[Politics of American Samoa]]
8777 * [[Economy of American Samoa]]
8778 * [[Communications in American Samoa]]
8779 * [[Transportation in American Samoa]]
8780 * [[Military of the United States|Military: Defense is the responsibility of the US]]
8781
8782 ==External links==
8783 {{wikinewscat|American Samoa|American Samoa}}
8784 * [http://www.cia.gov/cia/publications/factbook/geos/aq.html CIA - The World Factbook -- American Samoa] - [[CIA]]'s Factbook on American Samoa
8785 * [http://www.nebraskapress.unl.edu/bookinfo/4883.html &quot;The Passive Resistance of Samoans to US and Other Colonialisms&quot;], article in &quot;Sovereignty Matters&quot;, ed. Joanne Barker, University of Nebraska Press, 2005.
8786 *[http://www.historyofnations.net/oceania/americansamoa.html History of American Samoa]- Essay which looks at the history of the territory from ancient to more modern times.
8787 *[http://www.janeresture.com/amsam/index.htm Jane's American Samoa Page]
8788 *[http://www.loc.gov/rr/international/asian/americansamoa/americansamoa.html Library of Congress Portals of the World - American Samoa] - Library of Congress resource which provides links to resources on American Samoa.
8789 * [http://www.mapsouthpacific.com/american_samoa/index.html Map of American Samoa] - Map showing the basic layout of American Samoa.
8790 * [http://www.asbar.org/Newcode/rcas.htm Revised Constitution of American Samoa] - Provides the text of the constition of American Samoa.
8791 *[http://www.asg-gov.net/ The Official Webpage of the American Samoa Government] - Lists information on the territorial government including officials and recent legislation.
8792 * [http://www.un.org/Depts/dpi/decolonization/docs.htm United Nations Decolonization Papers] - Online United Nations Decolonization Documents including current and past Working Papers on American Samoa
8793 * [http://www.choohoo.com/ ChooHoo!] - An online community for Samoans. Features include forums, chat, blogs, etc.
8794 *[http://www.rulers.org/rula1.html#american_samoa Rulers.org — American_samoa] List of rulers for American Samoa
8795
8796 {{American Samoa}}
8797 {{Pacific Islands}}
8798 {{Polynesia}}
8799 {{United States}}
8800
8801 [[Category:American Samoa|*]]
8802 [[Category:Insular areas of the United States]]
8803 [[Category:Oceanic dependencies]]
8804
8805 [[zh-min-nan:Bí-kok Samoa]]
8806 [[ca:Samoa Nord-americana]]
8807 [[da:Amerikansk Samoa]]
8808 [[de:Amerikanisch-Samoa]]
8809 [[et:Ameerika Samoa]]
8810 [[es:Samoa Americana]]
8811 [[eo:Usona Samoo]]
8812 [[fr:Samoa amÊricaines]]
8813 [[ko:ė•„는ëĻŦėš¸ė‚ŦëĒ¨ė•„]]
8814 [[id:Samoa Amerika]]
8815 [[is:Bandaríska SamÃŗa]]
8816 [[it:Samoa Americane]]
8817 [[he:סמואה האמריקני×Ē]]
8818 [[lv:Austrumsamoa]]
8819 [[lt:Amerikos Samoa]]
8820 [[hu:Amerikai Szamoa]]
8821 [[mk:АĐŧĐĩŅ€Đ¸ĐēĐ°ĐŊŅĐēĐ° ĐĄĐ°ĐŧОа]]
8822 [[ms:Samoa Amerika]]
8823 [[nl:Amerikaans-Samoa]]
8824 [[ja:ã‚ĸãƒĄãƒĒã‚Ģ領ã‚ĩãƒĸã‚ĸ]]
8825 [[no:Amerikansk Samoa]]
8826 [[nn:Amerikansk Samoa]]
8827 [[pl:Samoa Amerykańskie]]
8828 [[pt:Samoa Americana]]
8829 [[ru:АĐŧĐĩŅ€Đ¸ĐēĐ°ĐŊŅĐēĐžĐĩ ĐĄĐ°ĐŧОа]]
8830 [[sm:Amerika Samoa]]
8831 [[simple:American Samoa]]
8832 [[sk:AmerickÃĄ Samoa]]
8833 [[sl:AmeriÅĄka Samoa]]
8834 [[fi:Amerikan Samoa]]
8835 [[sv:Amerikanska Samoa]]
8836 [[tr:Amerikan SamoasÄą]]
8837 [[uk:АĐŧĐĩŅ€Đ¸ĐēĐ°ĐŊŅŅŒĐēĐĩ ĐĄĐ°ĐŧОа]]
8838 [[zh:įžŽåąŦč–Šæ‘Šäēž]]</text>
8839 </revision>
8840 </page>
8841 <page>
8842 <title>Alien</title>
8843 <id>579</id>
8844 <revision>
8845 <id>41942092</id>
8846 <timestamp>2006-03-02T19:59:23Z</timestamp>
8847 <contributor>
8848 <username>Lucian Gregory</username>
8849 <id>1008143</id>
8850 </contributor>
8851 <text xml:space="preserve">{{wiktionarypar|alien}}
8852 '''Alien''' or '''Aliens''' may mean:
8853 * [[Extraterrestrial life]], in scientific context
8854 * [[Extraterrestrial life in culture]]
8855 * [[Alien (film)|''Alien'' (film)]] (1979), by Ridley Scott
8856 * [[Aliens (1986 film)|''Aliens'' (1986 film)]], the sequel to the above film
8857 * [[xenomorph]], the alien creatures from the ''Alien'' movies
8858 * [[Aliens (comic)]], a group of comic book series
8859 * [[Alien (biology)]], a non-native species
8860 * [[Alien (computing)]], a program that converts between different Linux package distribution file formats
8861 * [[Alien (law)]], a person who is neither a native nor a citizen of their country of residence
8862 * [[Alien (signifier)]], use in literature and criticism as the embodiment of an outside perspective or the sense of the other
8863 * [[The Aliens]], Roky Erickson's backing band
8864 * [[Alien (game)]], a 1982 DOS text adventure
8865
8866 {{disambig}}
8867
8868 [[de:Alien]]
8869 [[es:Alien]]
8870 [[fr:Alien]]
8871 [[ja:厇厙äēē]]
8872 [[nl:Buitenaards wezen]]
8873 [[pl:obcy]]
8874 [[pt:Alienígena]]
8875 [[fi:Alien]]
8876 [[zh:外星äēē]]</text>
8877 </revision>
8878 </page>
8879 <page>
8880 <title>Astronomer</title>
8881 <id>580</id>
8882 <revision>
8883 <id>42138169</id>
8884 <timestamp>2006-03-04T01:52:54Z</timestamp>
8885 <contributor>
8886 <username>Mozasaur</username>
8887 <id>475997</id>
8888 </contributor>
8889 <minor />
8890 <comment>terminology, astronomers are people, not all astronomers do research.</comment>
8891 <text xml:space="preserve">An '''astronomer''' or '''astrophysicist''' is a person whose area of interest is [[astronomy]] or [[astrophysics]].
8892 [[Image:Johannes Helvelius.jpg|right|thumb|180px|[[Johannes Hevelius]] was famed for his work on [[sunspot]]s, and being the first to study the surface of the [[moon]].]]
8893
8894 Astronomy is generally thought to have begun in [[ancient history|ancient]] [[Babylon]] by the [[Persian Empire|Persian]] [[Zoroastrian]] priests (the ''[[magi]]''). Recent studies of Babylonian records have shown them to be extremely accurate for the ancient night sky. Following the Babylonians, the [[Egypt]]ians also had an emphasis on observations of the sky.
8895
8896 Mixtures of religious interpretations of the sky and the development of complex models for applying these interpretations, led to a [[duality]] that we now identify as [[astrology]]. It is important to recognize that before about [[1750]], there was no distinction between [[astrology]] and [[astronomy]].
8897
8898 Astronomers, unlike most scientists, cannot interact with the objects that they study. They instead must resort to detailed [[observation]] in order to make discoveries. Generally, astronomers use [[telescope|telescopes]] or other imaging equipment to make such observations. The job itself is involved with travel to remote locations to study as well.
8899
8900 == Famous astronomers ==
8901 {| border
8902 |-
8903 !Astronomer
8904 !Contribution
8905 |-
8906 |-
8907 |[[Hipparchus (astronomer)|Hipparchus]] and [[Ptolemy]]
8908 |Determined the positions of about 1,000 bright stars, tried to explain the puzzles of astronomy without refuting only believed geocentric model of universe and classified stars by [[Apparent magnitude|magnitude]].
8909
8910 |-
8911 |[[Aristarchus of Samos]]
8912 |First known person to propound the [[Heliocentrism|heliocentric model]] of universe
8913 |-
8914 |[[Nasir al-Din al-Tusi]]
8915 |This Persian astronomer gave the first extant exposition of the whole system of plane and spherical [[trigonometry]]. Made very accurate tables of [[planetary]] movements and named many [[star]]s. His planetary system was the most advanced of his period and was used extensively until the development of the [[heliocentric]] model. [[Tusi-couple]] resolves linear motion into the sum of two circular motions. He also calculated the value of 51' for the [[precession]] of the [[equinoxes]] and contributed to construction and usage of [[astrolabe]].
8916 |-
8917 |[[copernicus|Nicolaus Copernicus]]
8918 |Was influential in reintroducing the concept of Heliocentrism in modern times.
8919 |-
8920 |[[Tycho Brahe]]
8921 |Did develop many important astronomical instruments, and was the first to do accurate repeatable measurments of the heavens. The measurements of the orbit of Mars were very important to the development of astronomy.
8922 |-
8923 |[[Johannes Kepler]]
8924 |Suggested the [[Kepler's Laws of Planetary Motion|elliptical orbits]] of planets, and propounded his ''[[Kepler's Laws of Planetary Motion|Laws of Planetary Motion]]''.
8925 |-
8926 |[[Galileo Galilei]]
8927 |Was the first to use the [[telescope]] to observe the sky. Condemned to house arrest for his discoveries by [[Inquisition|Inquisitional]] edict, which was lifted 359 years later by [[Pope John Paul II]].
8928 |-
8929 |[[Isaac Newton]]
8930 |Published ''Philosophiae Naturalis Principia Mathematica'' ([[1687]]), containing the &quot;[[Newton's laws of motion]]&quot;, which are fundamental to mechanical physics, and which explained Kepler's laws of planetary motion. Predicted the orbits of the [[Planet|planets]].
8931 |-
8932 |[[Subrahmanyan Chandrasekhar]]
8933 |Extensive work on the internal mechanisms of stars, particularly known for determining the effect of [[special relativity]] on stars, including being the first to calculate the [[Chandrasekhar limit]], which he did, without a calculator, on a boat journey.
8934 |-
8935 |[[Henrietta Swan Leavitt]]
8936 |Catalogued [[Cepheid variable]] stars in the [[Magellanic Clouds]], in [[1912]] discovered the relationship between luminosty and periodicity in Cepheids -- leading to [[Ejnar Hertzsprung|Hertzprung]]'s later work.
8937 |-
8938 |[[Ejnar Hertzsprung]]
8939 |determined the distance to several [[Cepheid variable|Cepheids]], when Cepheids were detected in other [[galaxy|galaxies]] such as the [[Andromeda galaxy]], the distance to those galaxies could then be determined.
8940 |-
8941 |[[Edwin Hubble]]
8942 |Discovered the expansion of the universe. ([[Hubble's Law]]) [[Hubble Space Telescope|The Hubble Orbiting Space Telescope]] was named in his honor.
8943 |}
8944
8945 == See also ==
8946 * [[Amateur astronomy]]
8947 * [[List of astronomers]]
8948
8949 ----
8950
8951 There is also a well-known painting by [[Johannes Vermeer]] titled ''The Astronomer'', which is often linked to Vermeer's ''The [[Geographer]]''. These paintings are both thought to represent the growing influence and rise in prominence of scientific inquiry in [[Europe]] at the time of their painting, [[1668]]-[[1669|69]].
8952
8953 ----
8954
8955 [[Category:Astronomers| ]]
8956 [[Category:Science occupations]]
8957
8958 [[als:Astronom]]
8959 [[bg:АŅŅ‚Ņ€ĐžĐŊĐžĐŧ]]
8960 [[da:Astronom]]
8961 [[de:Astronom]]
8962 [[eo:Astronomo]]
8963 [[ko:ė˛œëŦ¸í•™ėž]]
8964 [[it:Astronomo]]
8965 [[hu:CsillagÃĄsz]]
8966 [[nl:Astronoom]]
8967 [[ja:夊文å­Ļ者]]
8968 [[no:Astronom]]
8969 [[nn:Astronom]]
8970 [[pl:Astronom]]
8971 [[simple:Astronomer]]
8972 [[sk:AstronÃŗm]]
8973 [[sl:Astronom]]
8974 [[fi:Tähtitieteilijä]]
8975 [[th:ā¸™ā¸ąā¸ā¸”ā¸˛ā¸Ŗā¸˛ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒ]]
8976 [[zh:夊文å­ĻåŽļ]]</text>
8977 </revision>
8978 </page>
8979 <page>
8980 <title>Ameboid stage</title>
8981 <id>583</id>
8982 <revision>
8983 <id>15899114</id>
8984 <timestamp>2002-02-25T15:51:15Z</timestamp>
8985 <contributor>
8986 <ip>Conversion script</ip>
8987 </contributor>
8988 <minor />
8989 <comment>Automated conversion</comment>
8990 <text xml:space="preserve">#REDIRECT [[Amoeboid]]
8991 </text>
8992 </revision>
8993 </page>
8994 <page>
8995 <title>Amoeboid</title>
8996 <id>584</id>
8997 <revision>
8998 <id>40444702</id>
8999 <timestamp>2006-02-20T16:26:57Z</timestamp>
9000 <contributor>
9001 <username>BinaryTed</username>
9002 <id>709141</id>
9003 </contributor>
9004 <comment>Revert to revision 36472982 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
9005 <text xml:space="preserve">[[Image:Chaos diffluens.jpg|thumb|Amoeba (''Chaos diffluens'')]]
9006 [[Image:live_Ammonia_tepida.jpg|thumb|Foraminiferan (''Ammonia tepida'')]]
9007 [[Image:Actinophrys sol.jpg|thumb|Heliozoan (''Actinophrys sol'')]]
9008 '''Amoeboids''' are [[cell (biology)|cell]]s that move or feed by means of temporary projections, called [[pseudopod]]s (false feet). They have appeared in a number of different groups. Some cells in multicellular animals may be amoeboid, for instance our [[white blood cell]]s, which consume pathogens. Many [[protist]]s exist as individual amoeboid cells, or take such a form at some point in their life-cycle. The most famous such organism is ''[[Amoeba|Amoeba proteus]]''; the name amoebae is variously used to describe its close relatives, other organisms similar to it, or the amoeboids in general.
9009
9010 Amoeboids may be divided into several morphological categories based on the form and structure of the pseudopods. Those where the pseudopods are supported by regular arrays of [[microtubule]]s are called actinopods, and forms where they are not are called rhizopods, further divided into lobse, filose, and reticulose amoebae. There is also a strange group of giant marine amoeboids, the [[xenophyophore]]s, that do not fall into any of these categories.
9011
9012 * Lobose pseudopods are blunt, and there may be one or several on a cell, which is usually divided into a layer of clear ectoplasm surrounding more granular endoplasm. Most, including ''Amoeba'' itself, move by the body mass flowing into an anterior pseudopod. The vast majority form a monophyletic group called the [[Amoebozoa]], which also includes most [[slime mould]]s. A second group, the [[Percolozoa]], includes protists that can transform between amoeboid and [[flagellate]] forms.
9013
9014 * Filose pseudopods are narrow and tapering. The vast majority of filose amoebae, including all those that produce shells, are placed within the [[Cercozoa]] together with various flagellates that tend to have amoeboid forms. The naked filose amoebae comprise two other groups, the [[vampyrellid]]s and [[nucleariid]]s. The latter appear to be close relatives of [[animal]]s and [[fungus|fungi]].
9015
9016 * Reticulose pseudopods are cytoplasmic strands that branch and merge to form a net. They are found most notably among the [[Foraminifera]], a large group of marine protists that generally produce multi-chambered shells. There are only a few sorts of naked reticulose amoeboids, notably the [[gymnophryid]]s, and their relationships are not certain.
9017
9018 * Actinopods are divided into the [[radiolaria]] and [[heliozoa]]. The radiolaria are mostly marine protists with complex internal skeletons, including central capsules that divide the cells into granular endoplasm and frothy ectoplasm that keeps them buoyant. The heliozoa include both freshwater and marine forms that use their axopods to capture small prey, and only have simple scales or spines for skeletal elements. Both groups appear to be [[polyphyletic]].
9019
9020 Traditionally the amoeboid protozoa are grouped together as the Sarcodina, variously ranked from class to phylum, with each of the above categories as a formal subtaxon. However, since they are all based on form rather than phylogeny, newer systems generally separate some out or abandon them entirely. Most amoeboids are now included in two major supergroups - the [[Amoebozoa]], including most lobose amoebae and slime moulds, and the [[Rhizaria]], including the Cercozoa, Foraminifera, radiolarian classes and certain heliozoa. However, amoeboids have appeared separately in many other groups, including various different lines of algae not listed above.
9021
9022 == External links ==
9023
9024 * [http://www.bms.ed.ac.uk/research/others/smaciver/amoebae.htm The Amoebae] website brings together information from published sources.
9025 * [http://www.microscopy-uk.org.uk/mag/wimsmall/sundr.html Amoebas are more than just blobs]
9026 * [http://www.microscopy-uk.org.uk/mag/indexmag.html?http://www.microscopy-uk.org.uk/mag/wimsmall/sundr.html sun animacules and amoebas]
9027 [[Category:Protista]][[Category:Cell biology]][[Category:Amoeboids|*]][[Category:Motile cells]]
9028 [[es:rizÃŗpodo]]
9029 [[fr:Actinopoda]]
9030 [[pl:Ameby]]</text>
9031 </revision>
9032 </page>
9033 <page>
9034 <title>ASCII</title>
9035 <id>586</id>
9036 <restrictions>move=:edit=</restrictions>
9037 <revision>
9038 <id>41964454</id>
9039 <timestamp>2006-03-02T22:42:35Z</timestamp>
9040 <contributor>
9041 <username>TigerShark</username>
9042 <id>161478</id>
9043 </contributor>
9044 <comment>rv to Johnteslade</comment>
9045 <text xml:space="preserve">{{featured article}}
9046 {{otheruses}}
9047 [[Image:ascii_full.png|frame|There are 95 printable ASCII characters, numbered 32 to 126.]]
9048 '''ASCII''' ('''''A'''merican '''S'''tandard '''C'''ode for '''I'''nformation '''I'''nterchange''), generally [[IPA for English|pronounced]] {{IPA|[&amp;#712;ÃĻski]}}, is a [[character encoding]] based on the [[English alphabet]]. ASCII codes represent [[character (computing)|text]] in [[computer]]s, [[telecommunications|communications]] equipment, and other devices that work with text. Most modern character encodings have a historical basis in ASCII.
9049
9050 ASCII was first published as a standard in 1967 and was last updated in 1986. It currently defines codes for 33 non-printing, mostly obsolete [[control character]]s that affect how text is processed, plus the following 95 printable characters (starting with the space character):
9051
9052 &lt;pre&gt;
9053 !&quot;#$%&amp;'()*+,-./0123456789:;&lt;=&gt;?
9054 @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_
9055 `abcdefghijklmnopqrstuvwxyz{|}~
9056 &lt;/pre&gt;
9057
9058 Asteroid [[3568 ASCII]] is named after the character encoding.
9059
9060 ==Overview==
9061 Like other character representation computer [[code]]s, ASCII specifies a correspondence between digital bit patterns and the symbols/[[glyph]]s of a written language, thus allowing [[digital]] devices to communicate with each other and to process, store, and communicate character-oriented information. The ASCII character encoding&lt;ref&gt;International Organization for Standardization ([[December 1]], [[1975]]). &quot;[http://www.itscj.ipsj.or.jp/ISO-IR/001.pdf The set of control characters for ISO 646]&quot;. ''Internet Assigned Numbers Authority Registry''. Alternate U.S. version: [http://www.itscj.ipsj.or.jp/ISO-IR/006.pdf]. Accessed [[August 7]], [[2005]].&lt;/ref&gt;&amp;nbsp;— or a compatible extension (see below)&amp;nbsp;— is used on nearly all common computers, especially [[personal computer]]s and [[workstation]]s. The preferred [[MIME]] name for this encoding is &quot;US-ASCII&quot;.&lt;ref&gt;Internet Assigned Numbers Authority ([[January 28]], [[2005]]). &quot;[http://www.iana.org/assignments/character-sets Character Sets]&quot;. Accessed [[August 7]], [[2005]].&lt;/ref&gt;
9062
9063 ASCII is, strictly, a seven-[[bit]] code, meaning that it uses the bit patterns representable with seven binary digits (a range of 0 to 127 decimal) to represent character information. At the time ASCII was introduced, many computers dealt with eight-bit groups ([[byte]]s or, more specifically, [[octet (computing)|octet]]s) as the smallest unit of information; the eighth bit was commonly used as a [[parity bit]] for error checking on communication lines or other device-specific functions. Machines which did not use parity typically set the eighth bit to zero, though some systems such as [[Prime computer|Prime]] machines running [[PRIMOS]] set the eighth bit of ASCII characters to one.
9064
9065 ASCII only defines a relationship between specific characters and bit sequences; aside from reserving a few control codes for line-oriented formatting, it does not define any mechanism for describing the structure or appearance of text within a document. Such concepts are within the realm of other systems such as the [[markup language]]s.
9066
9067 ==History==
9068 ASCII developed from [[Telegraphy|telegraphic codes]] and first entered commercial use as a seven-bit teleprinter code promoted by [[AT&amp;T|Bell]] data services. The [[Bell System]] had previously planned to use a six-bit code, derived from [[Fieldata]], that added punctuation and lower-case letters to the earlier five-bit [[Baudot code|Baudot]] teleprinter code, but was persuaded instead to join the [[American National Standards Institute|ASA]] subcommittee that had started to develop ASCII. Baudot helped in the automation of sending and receiving telegraphic messages, and took many features from [[Morse code]]; however, unlike Morse code, Baudot used constant-length codes. Compared to earlier telegraph codes, the proposed Bell code and ASCII both underwent re-ordering for more convenient sorting (especially alphabetization) of lists, and added features for devices other than teleprinters. [[Bob Bemer]] introduced features such as the '[[escape sequence]]'.
9069
9070 The American Standards Association (ASA, later to become [[American National Standards Institute|ANSI]]) first published ASCII as a standard in 1963. ASCII-1963 lacked the lowercase letters, and had an up-arrow (&amp;#8593;) instead of the caret (^) and a left-arrow (&amp;#8592;) instead of the underscore (_). The 1967 version added the lowercase letters, changed the names of a few control characters and moved the two controls ACK and ESC from the lowercase letters area into the control codes area.
9071
9072 ASCII was subsequently updated and published as ANSI X3.4-1968, ANSI X3.4-1977, and finally, ANSI X3.4-1986.
9073
9074 Other international standards bodies have ratified character encodings that are identical or nearly identical to ASCII. These encodings are sometimes referred to as ASCII, even though ASCII is strictly defined only by the ASA/ANSI standards:
9075
9076 * The [[European Computer Manufacturers Association]] published editions of its ASCII clone, ECMA-6, in 1965, 1967, 1970, 1973, 1983, and 1991. The 1991 edition is the same as ANSI X3.4-1986.&lt;ref&gt;ECMA International (December 1991). [http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-006.pdf Standard ECMA-6: 7-bit Coded Character Set, 6th edition.] Accessed [[December 17]], [[2005]].&lt;/ref&gt;
9077 * The [[International Organization for Standardization]] published its version, ISO 646 (later [[ISO/IEC 646]]) in 1967, 1972, 1983, and 1991. ISO 646:1972, in particular, established a set of country-specific versions with punctuation characters replaced with non-English letters. ISO/IEC 646:1991 International Reference Version is the same as ANSI X3.4-1986.
9078 * The [[International Telecommunication Union]] published its version of ANSI X3.4-1986, [[ITU Telecommunication Standardization Sector|ITU-T]] Recommendation T.50, in 1992. In the early 1970s, under the name CCITT, the same organization published a version as CCITT Recommendation V.3.
9079 * [[DIN]] published a version of ASCII as DIN 66003 in 1974.
9080 * The [[Internet Engineering Task Force|IETF]] published a version in 1969 as RFC 20, and established the Internet's standard version, based on ANSI X3.4-1986, with the publication of RFC 1345 in 1992.
9081 * [[IBM]]'s version of ANSI X3.4-1986 is published in IBM technical literature as [[code page 367]].
9082
9083 ASCII has also become embedded in its probable replacement, [[Unicode]], as the 'lowest' 128 characters. Some observers consider ASCII the most &quot;successful&quot; software standard ever promulgated.
9084
9085 ==ASCII control characters==
9086 ASCII reserves the first 32 codes (numbers 0–31 decimal) for [[control character]]s: codes originally intended not to carry printable information, but rather to control devices (such as [[computer printer|printer]]s) that make use of ASCII. For example, character 10 represents the &quot;line feed&quot; function (which causes a printer to advance its paper), and character 27 represents the &quot;escape&quot; key often found in the top left corner of common [[Computer keyboard|keyboard]]s.
9087
9088 Code 127 (all seven bits on), another special character, equates to &quot;delete&quot; or &quot;rubout&quot;. Though its function resembles that of other control characters, the designers of ASCII used this pattern so that it could &quot;erase&quot; a section of [[punched tape|paper tape]] (a popular storage medium until the 1980s) by punching all possible holes at a particular character position, thus effectively replacing any previous information. Since Code 0 (null,all bits off) was also ignored it was possible to leave gaps and then make corrections by blanking characters before or after the gap and then entering new characters in the gap.
9089
9090 Many of the ASCII control codes serve (or served) to mark data packets, or to control a data transmission protocol (e.g. ENQuiry [effectively, &quot;any stations out there?&quot;], ACKnowledge, Negative AcKnowledge, Start Of Header, Start of TeXt, End of TeXt, etc). ESCape and SUBstitute permit a communications protocol to, for instance, mark binary data so that if it contains codes with the same pattern as a protocol character, the recipient will process the code as data.
9091
9092 The designers of ASCII intended the separator characters (&quot;Record Separator&quot;, etc.) for use with magnetic tape systems.
9093
9094 Two of the device control characters, commonly interpreted as [[XON]] and [[XOFF]], generally function as [[flow control]] characters to throttle data flow to a slow device (such as a printer) from a fast device (such as a computer) - so data does not overrun and get lost.
9095
9096 Early users of ASCII adopted some of the control codes to represent &quot;meta information&quot; such as end-of-line, start/end of a data element, and so on. These assignments often conflict, so part of the effort in converting data from one format to another involves making the correct meta information transformations. For example, the character(s) representing end-of-line (&quot;[[newline]]&quot;) in text data files/streams vary from [[operating system]] to operating system. When moving files from one system to another, the conversion process must recognize these characters as end-of-line markers and handle them appropriately.
9097
9098 Today, ASCII users use the control characters less and less—with the exception of &quot;carriage return&quot; and/or &quot;line feed&quot;. Modern markup languages, modern communication protocols, the move from text-based to graphical devices, and the demise of teleprinters, punch-cards, and paper tapes have rendered most of the control characters obsolete.
9099
9100 {| class=&quot;wikitable&quot; style=&quot;text-align: center&quot;
9101 |-
9102 !style=&quot;width: 5.5em&quot;|Binary
9103 !style=&quot;width: 2.5em&quot;|Oct
9104 !style=&quot;width: 2.5em&quot;|Dec
9105 !style=&quot;width: 2.5em&quot;|Hex
9106 !style=&quot;width: 2.5em&quot;|Abbr
9107 !style=&quot;width: 2.5em&quot;|PR{{ref 1}}
9108 !style=&quot;width: 2.5em&quot;|CS{{ref 2}}
9109 !Description
9110 |-
9111 |0000&amp;nbsp;0000
9112 |000
9113 |0
9114 |00
9115 |NUL
9116 |&lt;big&gt;&amp;#9216;&lt;/big&gt;
9117 |^@
9118 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Null character]]
9119 |-
9120 |0000&amp;nbsp;0001
9121 |001
9122 |1
9123 |01
9124 |SOH
9125 |&lt;big&gt;&amp;#9217;&lt;/big&gt;
9126 |^A
9127 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Start of Header
9128 |-
9129 |0000&amp;nbsp;0010
9130 |002
9131 |2
9132 |02
9133 |STX
9134 |&lt;big&gt;&amp;#9218;&lt;/big&gt;
9135 |^B
9136 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Start of Text
9137 |-
9138 |0000&amp;nbsp;0011
9139 |003
9140 |3
9141 |03
9142 |ETX
9143 |&lt;big&gt;&amp;#9219;&lt;/big&gt;
9144 |^C
9145 |style=&quot;text-align: left; margin-left: 0.2em&quot;|End of Text
9146 |-
9147 |0000&amp;nbsp;0100
9148 |004
9149 |4
9150 |04
9151 |EOT
9152 |&lt;big&gt;&amp;#9220;&lt;/big&gt;
9153 |^D
9154 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[End-of-transmission character|End of Transmission]]
9155 |-
9156 |0000&amp;nbsp;0101
9157 |005
9158 |5
9159 |05
9160 |ENQ
9161 |&lt;big&gt;&amp;#9221;&lt;/big&gt;
9162 |^E
9163 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Enquiry
9164 |-
9165 |0000&amp;nbsp;0110
9166 |006
9167 |6
9168 |06
9169 |ACK
9170 |&lt;big&gt;&amp;#9222;&lt;/big&gt;
9171 |^F
9172 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Acknowledgment
9173 |-
9174 |0000&amp;nbsp;0111
9175 |007
9176 |7
9177 |07
9178 |BEL
9179 |&lt;big&gt;&amp;#9223;&lt;/big&gt;
9180 |^G
9181 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Bell character|Bell]]
9182 |-
9183 |0000&amp;nbsp;1000
9184 |010
9185 |8
9186 |08
9187 |BS
9188 |&lt;big&gt;&amp;#9224;&lt;/big&gt;
9189 |^H
9190 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Backspace]]{{ref 3}}{{ref 7}}
9191 |-
9192 |0000&amp;nbsp;1001
9193 |011
9194 |9
9195 |09
9196 |HT
9197 |&lt;big&gt;&amp;#9225;&lt;/big&gt;
9198 |^I
9199 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Horizontal [[Tab]]
9200 |-
9201 |0000&amp;nbsp;1010
9202 |012
9203 |10
9204 |0A
9205 |LF
9206 |&lt;big&gt;&amp;#9226;&lt;/big&gt;
9207 |^J
9208 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Line feed]]
9209 |-
9210 |0000&amp;nbsp;1011
9211 |013
9212 |11
9213 |0B
9214 |VT
9215 |&lt;big&gt;&amp;#9227;&lt;/big&gt;
9216 |^K
9217 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Vertical Tab
9218 |-
9219 |0000&amp;nbsp;1100
9220 |014
9221 |12
9222 |0C
9223 |FF
9224 |&lt;big&gt;&amp;#9228;&lt;/big&gt;
9225 |^L
9226 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Form feed]]
9227 |-
9228 |0000&amp;nbsp;1101
9229 |015
9230 |13
9231 |0D
9232 |CR
9233 |&lt;big&gt;&amp;#9229;&lt;/big&gt;
9234 |^M
9235 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Carriage return]]{{ref 6}}
9236 |-
9237 |0000&amp;nbsp;1110
9238 |016
9239 |14
9240 |0E
9241 |SO
9242 |&lt;big&gt;&amp;#9230;&lt;/big&gt;
9243 |^N
9244 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Shift Out and Shift In characters|Shift Out]]
9245 |-
9246 |0000&amp;nbsp;1111
9247 |017
9248 |15
9249 |0F
9250 |SI
9251 |&lt;big&gt;&amp;#9231;&lt;/big&gt;
9252 |^O
9253 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Shift Out and Shift In characters|Shift In]]
9254 |-
9255 |0001&amp;nbsp;0000
9256 |020
9257 |16
9258 |10
9259 |DLE
9260 |&lt;big&gt;&amp;#9232;&lt;/big&gt;
9261 |^P
9262 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Data Link Escape
9263 |-
9264 |0001&amp;nbsp;0001
9265 |021
9266 |17
9267 |11
9268 |DC1
9269 |&lt;big&gt;&amp;#9233;&lt;/big&gt;
9270 |^Q
9271 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Device Control 1 (oft. XON)
9272 |-
9273 |0001&amp;nbsp;0010
9274 |022
9275 |18
9276 |12
9277 |DC2
9278 |&lt;big&gt;&amp;#9234;&lt;/big&gt;
9279 |^R
9280 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Device Control 2
9281 |-
9282 |0001&amp;nbsp;0011
9283 |023
9284 |19
9285 |13
9286 |DC3
9287 |&lt;big&gt;&amp;#9235;&lt;/big&gt;
9288 |^S
9289 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Device Control 3 (oft. XOFF)
9290 |-
9291 |0001&amp;nbsp;0100
9292 |024
9293 |20
9294 |14
9295 |DC4
9296 |&lt;big&gt;&amp;#9236;&lt;/big&gt;
9297 |^T
9298 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Device Control 4
9299 |-
9300 |0001&amp;nbsp;0101
9301 |025
9302 |21
9303 |15
9304 |NAK
9305 |&lt;big&gt;&amp;#9237;&lt;/big&gt;
9306 |^U
9307 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Negative-acknowledge character|Negative Acknowledgement]]
9308 |-
9309 |0001&amp;nbsp;0110
9310 |026
9311 |22
9312 |16
9313 |SYN
9314 |&lt;big&gt;&amp;#9238;&lt;/big&gt;
9315 |^V
9316 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Synchronous Idle
9317 |-
9318 |0001&amp;nbsp;0111
9319 |027
9320 |23
9321 |17
9322 |ETB
9323 |&lt;big&gt;&amp;#9239;&lt;/big&gt;
9324 |^W
9325 |style=&quot;text-align: left; margin-left: 0.2em&quot;|End of Trans. Block
9326 |-
9327 |0001&amp;nbsp;1000
9328 |030
9329 |24
9330 |18
9331 |CAN
9332 |&lt;big&gt;&amp;#9240;&lt;/big&gt;
9333 |^X
9334 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Cancel character|Cancel]]
9335 |-
9336 |0001&amp;nbsp;1001
9337 |031
9338 |25
9339 |19
9340 |EM
9341 |&lt;big&gt;&amp;#9241;&lt;/big&gt;
9342 |^Y
9343 |style=&quot;text-align: left; margin-left: 0.2em&quot;|End of Medium
9344 |-
9345 |0001&amp;nbsp;1010
9346 |032
9347 |26
9348 |1A
9349 |SUB
9350 |&lt;big&gt;&amp;#9242;&lt;/big&gt;
9351 |^Z
9352 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Substitute
9353 |-
9354 |0001&amp;nbsp;1011
9355 |033
9356 |27
9357 |1B
9358 |ESC
9359 |&lt;big&gt;&amp;#9243;&lt;/big&gt;
9360 |^&lt;nowiki&gt;[&lt;/nowiki&gt;
9361 |style=&quot;text-align: left; margin-left: 0.2em&quot;|[[Escape character|Escape]]{{ref 5}}
9362 |-
9363 |0001&amp;nbsp;1100
9364 |034
9365 |28
9366 |1C
9367 |FS
9368 |&lt;big&gt;&amp;#9244;&lt;/big&gt;
9369 |^\
9370 |style=&quot;text-align: left; margin-left: 0.2em&quot;|File Separator
9371 |-
9372 |0001&amp;nbsp;1101
9373 |035
9374 |29
9375 |1D
9376 |GS
9377 |&lt;big&gt;&amp;#9245;&lt;/big&gt;
9378 |^&lt;nowiki&gt;]&lt;/nowiki&gt;
9379 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Group Separator
9380 |-
9381 |0001&amp;nbsp;1110
9382 |036
9383 |30
9384 |1E
9385 |RS
9386 |&lt;big&gt;&amp;#9246;&lt;/big&gt;
9387 |^^
9388 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Record Separator
9389 |-
9390 |0001&amp;nbsp;1111
9391 |037
9392 |31
9393 |1F
9394 |US
9395 |&lt;big&gt;&amp;#9247;&lt;/big&gt;
9396 |^_
9397 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Unit Separator
9398 |-
9399 |0111&amp;nbsp;1111
9400 |177
9401 |127
9402 |7F
9403 |DEL
9404 |&lt;big&gt;&amp;#9249;&lt;/big&gt;
9405 |^?
9406 |style=&quot;text-align: left; margin-left: 0.2em&quot;|Delete{{ref 4}}{{ref 7}}
9407 |}
9408
9409 # Printable Representation, the [[Unicode]] glyphs reserved for representing control characters when it is necessary to print or display them rather than have them perform their intended function.
9410 # Control key Sequence, the traditional key sequences for inputting control characters. The caret (^) represents the &quot;Control&quot; or &quot;Ctrl&quot; key that must be held down while pressing the second key in the sequence. The caret-key representation is also used by some software to represent control characters.
9411 # The Backspace character can also be entered by pressing the &quot;Backspace&quot;, &quot;Bksp&quot;, or ← key on some systems.
9412 # The Delete character can also be entered by pressing the &quot;Delete&quot; or &quot;Del&quot; key. It can also be entered by pressing the &quot;Backspace&quot;, &quot;Bksp&quot;, or ← key on some systems.
9413 # The Escape character can also be entered by pressing the &quot;Escape&quot; or &quot;Esc&quot; key on some systems.
9414 # The Carriage Return character can also be entered by pressing the &quot;Return&quot;, &quot;Ret&quot;, &quot;Enter&quot;, or â†ĩ key on most systems.
9415 # The ambiguity surrounding the Backspace key comes from systems that translated the DEL control character into a BS (backspace) before transmitting it. Some software was unable to process the character and would display &quot;^H&quot; instead. &quot;^H&quot; persists in messages today as a deliberate humorous device, e.g. [[there's a sucker born every minute|&quot;there's a sucker^H^H^H^H^H^Hpotential customer born every minute&quot;]]. A less common variant of this involves the use of &quot;^W&quot;, which in some [[text editor|text editors]] means &quot;delete previous word&quot;. The example sentence would therefore also work as &quot;there's a sucker^W potential customer born every minute&quot;.
9416
9417 ==ASCII printable characters==
9418 Code 32, the [[Space (punctuation)|&quot;space&quot; character]], denotes the space between words, as produced by the large space-bar of a keyboard. Codes 33 to 126, known as the printable characters, represent letters, digits, punctuation marks, and a few miscellaneous symbols.
9419
9420 Seven-bit ASCII provided seven &quot;national&quot; characters and, if the combined hardware and software permit, can use overstrikes to simulate some additional international characters: in such a scenario a backspace can precede a [[grave accent]] (which the American and British standards, but only those standards, also call &quot;opening single quotation mark&quot;), a [[tilde]], or a breath mark (inverted [[vel]]).
9421
9422 {|
9423 |- valign=&quot;top&quot;
9424 |
9425 {| class=&quot;wikitable&quot; style=&quot;text-align: center&quot;
9426 |-
9427 !style=&quot;width: 5.5em&quot;|Binary
9428 !style=&quot;width: 2.5em&quot;|Dec
9429 !style=&quot;width: 2.5em&quot;|Hex
9430 !Glyph
9431 |-
9432 |0010&amp;nbsp;0000
9433 |32
9434 |20
9435 |[[Space (punctuation)|(blank)]] (&amp;#9248;)
9436 |-
9437 |0010&amp;nbsp;0001
9438 |33
9439 |21
9440 |[[Exclamation mark|!]]
9441 |-
9442 |0010&amp;nbsp;0010
9443 |34
9444 |22
9445 |&quot;
9446 |-
9447 |0010&amp;nbsp;0011
9448 |35
9449 |23
9450 |[[Number sign|#]]
9451 |-
9452 |0010&amp;nbsp;0100
9453 |36
9454 |24
9455 |[[Dollar sign|$]]
9456 |-
9457 |0010&amp;nbsp;0101
9458 |37
9459 |25
9460 |[[Percent sign|%]]
9461 |-
9462 |0010&amp;nbsp;0110
9463 |38
9464 |26
9465 |[[Ampersand|&amp;]]
9466 |-
9467 |0010&amp;nbsp;0111
9468 |39
9469 |27
9470 |[[Apostrophe (punctuation)|']]
9471 |-
9472 |0010&amp;nbsp;1000
9473 |40
9474 |28
9475 |[[Bracket|(]]
9476 |-
9477 |0010&amp;nbsp;1001
9478 |41
9479 |29
9480 |[[Bracket|)]]
9481 |-
9482 |0010&amp;nbsp;1010
9483 |42
9484 |2A
9485 |[[Asterisk|*]]
9486 |-
9487 |0010&amp;nbsp;1011
9488 |43
9489 |2B
9490 |[[Plus sign|+]]
9491 |-
9492 |0010&amp;nbsp;1100
9493 |44
9494 |2C
9495 |[[Comma (punctuation)|,]]
9496 |-
9497 |0010&amp;nbsp;1101
9498 |45
9499 |2D
9500 |[[Hyphen|-]]
9501 |-
9502 |0010&amp;nbsp;1110
9503 |46
9504 |2E
9505 |[[Full stop|.]]
9506 |-
9507 |0010&amp;nbsp;1111
9508 |47
9509 |2F
9510 |[[Slash (punctuation)|/]]
9511 |-
9512 |0011&amp;nbsp;0000
9513 |48
9514 |30
9515 |0
9516 |-
9517 |0011&amp;nbsp;0001
9518 |49
9519 |31
9520 |1
9521 |-
9522 |0011&amp;nbsp;0010
9523 |50
9524 |32
9525 |2
9526 |-
9527 |0011&amp;nbsp;0011
9528 |51
9529 |33
9530 |3
9531 |-
9532 |0011&amp;nbsp;0100
9533 |52
9534 |34
9535 |4
9536 |-
9537 |0011&amp;nbsp;0101
9538 |53
9539 |35
9540 |5
9541 |-
9542 |0011&amp;nbsp;0110
9543 |54
9544 |36
9545 |6
9546 |-
9547 |0011&amp;nbsp;0111
9548 |55
9549 |37
9550 |7
9551 |-
9552 |0011&amp;nbsp;1000
9553 |56
9554 |38
9555 |8
9556 |-
9557 |0011&amp;nbsp;1001
9558 |57
9559 |39
9560 |9
9561 |-
9562 |0011&amp;nbsp;1010
9563 |58
9564 |3A
9565 |[[Colon (punctuation)|:]]
9566 |-
9567 |0011&amp;nbsp;1011
9568 |59
9569 |3B
9570 |[[Semicolon|;]]
9571 |-
9572 |0011&amp;nbsp;1100
9573 |60
9574 |3C
9575 |[[Less than sign|&lt;]]
9576 |-
9577 |0011&amp;nbsp;1101
9578 |61
9579 |3D
9580 |[[Equals sign|=]]
9581 |-
9582 |0011&amp;nbsp;1110
9583 |62
9584 |3E
9585 |[[Greater than sign|&gt;]]
9586 |-
9587 |0011&amp;nbsp;1111
9588 |63
9589 |3F
9590 |[[Question mark|?]]
9591 |}
9592 |&amp;nbsp;
9593 |
9594 {| class=&quot;wikitable&quot; style=&quot;text-align: center&quot;
9595 |- valign=&quot;bottom&quot;
9596 !style=&quot;width: 5.5em&quot;|Bin
9597 !style=&quot;width: 2.5em&quot;|Dec
9598 !style=&quot;width: 2.5em&quot;|Hex
9599 !Glyph
9600 |-
9601 |0100&amp;nbsp;0000
9602 |64
9603 |40
9604 |[[@]]
9605 |-
9606 |0100&amp;nbsp;0001
9607 |65
9608 |41
9609 |A
9610 |-
9611 |0100&amp;nbsp;0010
9612 |66
9613 |42
9614 |B
9615 |-
9616 |0100&amp;nbsp;0011
9617 |67
9618 |43
9619 |C
9620 |-
9621 |0100&amp;nbsp;0100
9622 |68
9623 |44
9624 |D
9625 |-
9626 |0100&amp;nbsp;0101
9627 |69
9628 |45
9629 |E
9630 |-
9631 |0100&amp;nbsp;0110
9632 |70
9633 |46
9634 |F
9635 |-
9636 |0100&amp;nbsp;0111
9637 |71
9638 |47
9639 |G
9640 |-
9641 |0100&amp;nbsp;1000
9642 |72
9643 |48
9644 |H
9645 |-
9646 |0100&amp;nbsp;1001
9647 |73
9648 |49
9649 |I
9650 |-
9651 |0100&amp;nbsp;1010
9652 |74
9653 |4A
9654 |J
9655 |-
9656 |0100&amp;nbsp;1011
9657 |75
9658 |4B
9659 |K
9660 |-
9661 |0100&amp;nbsp;1100
9662 |76
9663 |4C
9664 |L
9665 |-
9666 |0100&amp;nbsp;1101
9667 |77
9668 |4D
9669 |M
9670 |-
9671 |0100&amp;nbsp;1110
9672 |78
9673 |4E
9674 |N
9675 |-
9676 |0100&amp;nbsp;1111
9677 |79
9678 |4F
9679 |O
9680 |-
9681 |0101&amp;nbsp;0000
9682 |80
9683 |50
9684 |P
9685 |-
9686 |0101&amp;nbsp;0001
9687 |81
9688 |51
9689 |Q
9690 |-
9691 |0101&amp;nbsp;0010
9692 |82
9693 |52
9694 |R
9695 |-
9696 |0101&amp;nbsp;0011
9697 |83
9698 |53
9699 |S
9700 |-
9701 |0101&amp;nbsp;0100
9702 |84
9703 |54
9704 |T
9705 |-
9706 |0101&amp;nbsp;0101
9707 |85
9708 |55
9709 |U
9710 |-
9711 |0101&amp;nbsp;0110
9712 |86
9713 |56
9714 |V
9715 |-
9716 |0101&amp;nbsp;0111
9717 |87
9718 |57
9719 |W
9720 |-
9721 |0101&amp;nbsp;1000
9722 |88
9723 |58
9724 |X
9725 |-
9726 |0101&amp;nbsp;1001
9727 |89
9728 |59
9729 |Y
9730 |-
9731 |0101&amp;nbsp;1010
9732 |90
9733 |5A
9734 |Z
9735 |-
9736 |0101&amp;nbsp;1011
9737 |91
9738 |5B
9739 |[[Bracket|&lt;nowiki&gt;[&lt;/nowiki&gt;]]
9740 |-
9741 |0101&amp;nbsp;1100
9742 |92
9743 |5C
9744 |[[Backslash|\]]
9745 |-
9746 |0101&amp;nbsp;1101
9747 |93
9748 |5D
9749 |[[Bracket|&lt;nowiki&gt;]&lt;/nowiki&gt;]]
9750 |-
9751 |0101&amp;nbsp;1110
9752 |94
9753 |5E
9754 |[[Caret|^]]
9755 |-
9756 |0101&amp;nbsp;1111
9757 |95
9758 |5F
9759 |[[Underscore|_]]
9760 |}
9761 |&amp;nbsp;
9762 |
9763 {| class=&quot;wikitable&quot; style=&quot;text-align: center&quot;
9764 |- valign=&quot;bottom&quot;
9765 !style=&quot;width: 5.5em&quot;|Bin
9766 !style=&quot;width: 2.5em&quot;|Dec
9767 !style=&quot;width: 2.5em&quot;|Hex
9768 !Glyph
9769 |-
9770 |0110&amp;nbsp;0000
9771 |96
9772 |60
9773 |[[Grave accent|`]]
9774 |-
9775 |0110&amp;nbsp;0001
9776 |97
9777 |61
9778 |a
9779 |-
9780 |0110&amp;nbsp;0010
9781 |98
9782 |62
9783 |b
9784 |-
9785 |0110&amp;nbsp;0011
9786 |99
9787 |63
9788 |c
9789 |-
9790 |0110&amp;nbsp;0100
9791 |100
9792 |64
9793 |d
9794 |-
9795 |0110&amp;nbsp;0101
9796 |101
9797 |65
9798 |e
9799 |-
9800 |0110&amp;nbsp;0110
9801 |102
9802 |66
9803 |f
9804 |-
9805 |0110&amp;nbsp;0111
9806 |103
9807 |67
9808 |g
9809 |-
9810 |0110&amp;nbsp;1000
9811 |104
9812 |68
9813 |h
9814 |-
9815 |0110&amp;nbsp;1001
9816 |105
9817 |69
9818 |i
9819 |-
9820 |0110&amp;nbsp;1010
9821 |106
9822 |6A
9823 |j
9824 |-
9825 |0110&amp;nbsp;1011
9826 |107
9827 |6B
9828 |k
9829 |-
9830 |0110&amp;nbsp;1100
9831 |108
9832 |6C
9833 |l
9834 |-
9835 |0110&amp;nbsp;1101
9836 |109
9837 |6D
9838 |m
9839 |-
9840 |0110&amp;nbsp;1110
9841 |110
9842 |6E
9843 |n
9844 |-
9845 |0110&amp;nbsp;1111
9846 |111
9847 |6F
9848 |o
9849 |-
9850 |0111&amp;nbsp;0000
9851 |112
9852 |70
9853 |p
9854 |-
9855 |0111&amp;nbsp;0001
9856 |113
9857 |71
9858 |q
9859 |-
9860 |0111&amp;nbsp;0010
9861 |114
9862 |72
9863 |r
9864 |-
9865 |0111&amp;nbsp;0011
9866 |115
9867 |73
9868 |s
9869 |-
9870 |0111&amp;nbsp;0100
9871 |116
9872 |74
9873 |t
9874 |-
9875 |0111&amp;nbsp;0101
9876 |117
9877 |75
9878 |u
9879 |-
9880 |0111&amp;nbsp;0110
9881 |118
9882 |76
9883 |v
9884 |-
9885 |0111&amp;nbsp;0111
9886 |119
9887 |77
9888 |w
9889 |-
9890 |0111&amp;nbsp;1000
9891 |120
9892 |78
9893 |x
9894 |-
9895 |0111&amp;nbsp;1001
9896 |121
9897 |79
9898 |y
9899 |-
9900 |0111&amp;nbsp;1010
9901 |122
9902 |7A
9903 |z
9904 |-
9905 |0111&amp;nbsp;1011
9906 |123
9907 |7B
9908 |[[Bracket|&lt;nowiki&gt;{&lt;/nowiki&gt;]]
9909 |-
9910 |0111&amp;nbsp;1100
9911 |124
9912 |7C
9913 |[[Vertical bar|&amp;#124;]]
9914 |-
9915 |0111&amp;nbsp;1101
9916 |125
9917 |7D
9918 |[[Bracket|&lt;nowiki&gt;}&lt;/nowiki&gt;]]
9919 |-
9920 |0111&amp;nbsp;1110
9921 |126
9922 |7E
9923 |[[Tilde|~]]
9924 |}
9925 |}
9926
9927 ==Structural features==
9928 * The digits 0-9 are represented with their values in binary prefixed with 0011 (this means that [[Binary-coded decimal|bcd]]-ASCII is simply a matter of taking each bcd nibble separately and prefixing 0011 to it.
9929 * Lowercase and uppercase letters only differ in bit pattern by a single bit simplifying case conversion to a range test (to avoid converting characters that are not letters) and a single [[bitwise operation]].
9930
9931 ==Aliases for ASCII==
9932 RFC 1345 (published in June 1992) and the [http://www.iana.org/assignments/character-sets IANA registry of character sets] (ongoing), both recognize the following case-insensitive aliases for ASCII as suitable for use on the Internet:
9933
9934 * ANSI_X3.4-1968 (canonical name)
9935 * ANSI_X3.4-1986
9936 * ASCII
9937 * US-ASCII (preferred MIME name)
9938 * us
9939 * ISO646-US
9940 * ISO_646.irv:1991
9941 * iso-ir-6
9942 * IBM367
9943 * cp367
9944 * csASCII
9945
9946 Of these, only the aliases &quot;US-ASCII&quot; and &quot;ASCII&quot; have achieved widespread use. One often finds them in the optional &quot;charset&quot; parameter in the Content-Type header of some [[MIME]] messages, in the equivalent &quot;meta&quot; element of some [[HTML]] documents, and in the encoding declaration part of the prolog of some [[XML]] documents.
9947
9948 ==Variants of ASCII==
9949 As computer technology spread throughout the world, different standards bodies and corporations developed many variations of ASCII in order to facilitate the expression of non-English languages that used Roman-based alphabets. One could class some of these variations as &quot;ASCII [[Extended ASCII|extensions]]&quot;, although some mis-apply that term to cover all variants, including those that do not preserve ASCII's character-map in the 7-bit range.
9950
9951 [[ISO 646]] (1972), the first attempt to remedy the pro-English-language bias, created compatibility problems, since it remained a 7-bit character-set. It made no additional codes available, so it reassigned some in language-specific variants. It thus became impossible to know what character a code represented without knowing which variant to work with, and text-processing systems could generally cope with only one variant anyway.
9952
9953 Eventually, improved technology brought out-of-band means to represent the information formerly encoded in the eighth bit of each byte, freeing this bit to add another 128 additional character-codes for new assignments. For example, [[IBM]] developed 8-bit [[code page]]s, such as [[code page 437]], which replaced the control-characters with graphic symbols such as [[smiley]] faces, and mapped additional graphic characters to the upper 128 bytes. Operating systems such as [[DOS]] supported these code-pages, and manufacturers of [[IBM PC]]s supported them in hardware.
9954
9955 Eight-bit standards such as [[ISO 8859|ISO/IEC 8859]] and [[Mac OS Roman]] developed as true extensions of ASCII, leaving the original character-mapping intact and just adding additional values above the 7-bit range. This enabled the representation of a broader range of languages, but these standards continued to suffer from incompatibilities and limitations. Still, [[ISO-8859-1]] its variant [[Windows-1252]] (often mislabeled as ISO-8859-1) and original 7-bit ASCII remain the most common character encodings in use today.
9956
9957 [[Unicode]] and the ISO/IEC 10646 [[Universal Character Set]] (UCS) have a much wider array of characters, and their various encoding forms have begun to supplant ISO/IEC 8859 and ASCII rapidly in many environments. While ASCII basically uses 7-bit codes, Unicode and the UCS use relatively abstract &quot;code points&quot;: non-negative integer numbers that map, using different encoding forms and schemes, to sequences of one or more 8-bit bytes. To permit backward compatibility, Unicode and the UCS assign the first 128 code points to the same characters as ASCII. One can therefore think of ASCII as a 7-bit encoding scheme for a very small subset of Unicode and of the UCS. The popular [[UTF-8]] encoding-form prescribes the use of one to four 8-bit code values for each code point character, and equates exactly to ASCII for the code values below 128. Other encoding forms such as [[UTF-16]] resemble ASCII in how they represent the first 128 characters of Unicode, but tend to use 16 or 32 bits per character, so they require conversion for compatibility.
9958
9959 The [[blend (linguistics)|blend]] word ''ASCIIbetical'' has evolved to describe the [[collation]] of data in ASCII-code order rather than &quot;standard&quot; alphabetical order.&lt;ref&gt;Jargon File. [http://www.catb.org/~esr/jargon/html/A/ASCIIbetical-order.html ASCIIbetical]. Accessed [[December 17]], [[2005]].&lt;/ref&gt;
9960
9961 The abbreviation ASCIIZ or ASCIZ refers to a [[Character string (computer science)|null-terminated ASCII string]].
9962
9963 ==See also==
9964 *[[American National Standards Institute|ANSI]]
9965 *[[ASCII art]]
9966 *[[ASCII game]]s
9967 *[[Text file]]
9968 *[[Bob Bemer]]
9969 *[[EBCDIC]]
9970 *[[Unicode]]
9971 *[[ASCII ribbon]]
9972 ===ASCII extensions===
9973 (where all ASCII printable characters are identical to ASCII)
9974 *[[Extended ASCII]]
9975 *[[UTF-8]]
9976 *[[ISO 8859]]
9977 *[[ISCII]]
9978 *[[VISCII]]
9979 *[[Windows code pages]]
9980 ===ASCII variants===
9981 (where some ASCII printable characters have been replaced)
9982 *[[ISO 646]]
9983 *[[ATASCII]]
9984 *[[PETSCII]]
9985 *[[ZX Spectrum character set]]
9986
9987 ==References==
9988 ===For specific points===
9989 &lt;references/&gt;
9990
9991 ===General===
9992 *[http://www.unicode.org/charts/PDF/U0000.pdf Unicode.org chart on the ASCII range]
9993 * Tom Jennings ([[October 29]] [[2004]]). [http://www.wps.com/projects/codes/index.html Annotated History of Character Codes.] Accessed [[December 17]] [[2005]].
9994 *[[Alt codes]]
9995
9996 ==External links==
9997 &lt;!--*[http://quickkeydotnet.sourceforge.net/ Quick Key Character Grid], a [[FOSS]] [[Application software|Application]] for [[Microsoft Windows]] inserts any character with one click. &gt;&gt;&gt; not relevant to this page [[User:Chris_Chittleborough]], [[8 February]] [[2006]] --&gt;
9998 *[http://www.speech.cs.cmu.edu/~sburke/stuff/pronunciation-guide.txt A pronunciation guide for ASCII characters] &lt;!--good info but i'd like something more authoritive than a random personal website if at all possible [[User:Plugwash|Plugwash]] 23:14, [[25 December]] [[2005]] (UTC)--&gt;
9999 *[http://www.jimprice.com/jim-asc.htm ASCII Chart, how to send documents &quot;in ASCII&quot;, etc]&lt;!-- i think this can stay at least for now it doesn't seem to contain misinformation about what ASCII is or extended ASCII though there is a small issue with its &quot;IBM PC Extended ASCII&quot; section (its only correct for English versions and sometimes not even for those) [[User:Plugwash|Plugwash]] 23:14, [[25 December]] [[2005]] (UTC)--&gt;
10000 *[http://www.paulschou.com/tools/xlate/ Online Encoder/Decoder for ASCII, HEX, Binary, Base64, etc with MD2, MD4, MD5, SHA1+2, CRC, and other hashing algorithms] &lt;!-- note: this website originally started as a school project, I wanted to make something to help the other students in the class and I think it may really help others. I intend to stand behind this work and if you find any error please don't hesitate to notify me of them. -user:paulschou --&gt;
10001
10002 [[Category:5-letter acronyms]]
10003 [[Category:Character encoding]]
10004 [[Category:Character sets]]
10005 [[Category:Latin alphabet representations]]
10006 [[als:ASCII]]
10007 [[ar:ASCII]]
10008 [[ast:ASCII]]
10009 [[bg:ASCII]]
10010 [[ca:ASCII]]
10011 [[cs:ASCII]]
10012 [[da:ASCII]]
10013 [[de:ASCII]]
10014 [[el:ASCII]]
10015 [[eo:Askio]]
10016 [[es:ASCII]]
10017 [[fi:ASCII]]
10018 [[fr:American Standard Code for Information Interchange]]
10019 [[gl:ASCII]]
10020 [[he:ASCII]]
10021 [[hu:ASCII]]
10022 [[ia:ASCII]]
10023 [[id:ASCII]]
10024 [[it:ASCII]]
10025 [[ja:American Standard Code for Information Interchange]]
10026 [[ko:ASCII]]
10027 [[ku:ASCII]]
10028 [[lv:ASCII]]
10029 [[ms:ASCII]]
10030 [[nl:ASCII (tekenset)]]
10031 [[nn:ASCII]]
10032 [[no:ASCII]]
10033 [[pl:ASCII]]
10034 [[pt:ASCII]]
10035 [[ro:ASCII]]
10036 [[ru:ASCII]]
10037 [[sk:ASCII]]
10038 [[sl:ASCII]]
10039 [[sq:ASCII]]
10040 [[sr:ASCII]]
10041 [[sv:ASCII]]
10042 [[th:ASCII]]
10043 [[tr:ASCII]]
10044 [[uk:ASCII]]
10045 [[vi:ASCII]]
10046 [[zh:ASCII]]
10047 [[zh-min-nan:ASCII]]</text>
10048 </revision>
10049 </page>
10050 <page>
10051 <title>America</title>
10052 <id>587</id>
10053 <revision>
10054 <id>42091980</id>
10055 <timestamp>2006-03-03T19:50:49Z</timestamp>
10056 <contributor>
10057 <username>Acjelen</username>
10058 <id>107326</id>
10059 </contributor>
10060 <comment>revert confused vandalism</comment>
10061 <text xml:space="preserve">'''America''' is usually meant as either:
10062
10063 * The [[Americas]], the lands between the Atlantic and Pacific Oceans, usually subdivided into:
10064 **[[North America]]
10065 **[[South America]]
10066
10067 * The [[United States]] of America
10068
10069 ''See also: [[Americas (terminology)]], [[United_States#endnote_America|Use of the word America]], and [[Use of the word American|Use of the word American]]''
10070
10071 ----
10072
10073 America is also:
10074 * [[America, Netherlands]] in Limburg
10075 * America, a part of the parish of [[Sutton-in-the-Isle]] in Cambridgeshire, England
10076
10077 America is the title or name of:&lt;br/&gt;
10078
10079 ''Entertainment:''
10080 * [[AmÊrica (Perales song)|&quot;AmÊrica&quot;]], a song by Spanish singer and composer [[JosÊ Luis Perales]]
10081 * [[America (Paul Simon song)|&quot;America&quot;]], a song by Simon and Garfunkel
10082 * [[America (Prince song)|&quot;America&quot;]], a song by Prince
10083 * [[America (Neil Diamond song)|&quot;America&quot;]], a song by [[Neil Diamond]]
10084 * [[America (band)]], a rock and roll band
10085 ** ''[[America (album)|America]]'', the title of their debut album
10086 * ''[[America (Havalina album)|America]]'', an album by the band Havalina
10087 * ''[[America (movie)|America]]'', a 1924 film directed by [[D.W. Griffith]]
10088 * ''[[America (The Book)]]'', a book written by the staff of ''The Daily Show with Jon Stewart''
10089 * ''[[America (book)|America]]'', a book by [[Jean Baudrillard]] examining the nation sociologically
10090 * &quot;America&quot;, a song from [[West Side Story]] by Leonard Bernstein, also performed by the UK rock group The Nice
10091 * [[America (XM)]], [[XM Satellite Radio]] channel 10
10092 *''[[AmÊrica (soap opera)|AmÊrica]]'', a Brazilian telenovela (soap opera).
10093 * [[America (television station)]], an [[Argentina|Argentinian]] television station
10094 * ''[[America (magazine)|America]]'', a weekly Roman Catholic magazine
10095
10096 ''Sports:''
10097 * [[Club America]], Mexican football (soccer) team
10098 *[[AmÊrica de Cali]], a Colombian football (soccer) team
10099 * ''[[America (yacht)|America]]'', a racing yacht that won the first ever America's Cup in 1851
10100
10101 ''Transportation:''
10102 * ''[[America (airplane)|America]]'', a multi-engine airplane used by Richard E. Byrd and his crew on a 1927 transatlantic flight
10103 * ''[[America (commercial ship)|America]]'', a passenger liner commanded by [[George Fried]] involved in a famous sea rescue in 1929
10104 * [[USS America|USS ''America'']], the name of three United States Navy ships
10105 * ''[[SS America (1940)|SS America]]'', a passenger liner owned by the United States Lines.
10106
10107 America is an alternative title for:
10108 * [[My Country, 'Tis of Thee|&quot;My Country, 'Tis of Thee&quot;]], a patriotic song of the United States
10109 * [[Our America]], an essay by [[Jose Marti]]
10110
10111 ==See also==
10112 *[[Amerika (disambiguation)]]
10113 *[[Americas#Naming of America|Naming of America]]
10114
10115
10116 {{disambig}}
10117
10118 &lt;!-- interwiki --&gt;
10119
10120 [[cy:America]]
10121 [[de:Amerika]]
10122 [[fr:America]]
10123 [[hr:Amerika]]
10124 [[nl:Amerika]]
10125 [[ja:ã‚ĸãƒĄãƒĒã‚Ģ (曖昧さ回éŋ)]]
10126 [[no:Amerika (andre betydninger)]]
10127 [[pt:AmÊrica (desambiguaçÃŖo)]]
10128 [[sq:America]]
10129 [[sr:АĐŧĐĩŅ€Đ¸ĐēĐ°]]
10130 [[fi:Amerikka]]
10131 [[tr:Amerika]]</text>
10132 </revision>
10133 </page>
10134 <page>
10135 <title>Africa</title>
10136 <id>588</id>
10137 <revision>
10138 <id>42098769</id>
10139 <timestamp>2006-03-03T20:46:07Z</timestamp>
10140 <contributor>
10141 <username>BanyanTree</username>
10142 <id>137674</id>
10143 </contributor>
10144 <minor />
10145 <comment>rv back to Ashmoo</comment>
10146 <text xml:space="preserve">{{otheruses}}
10147 {{portal}}
10148 [[Image:Africa satellite orthographic.jpg|thumb|280px|A satellite composite image of Africa]]
10149
10150 '''Africa''' is the world's second-largest and second most populous [[continent]], after [[Asia]]. At about 30,370,000 [[square kilometre|km&amp;sup2;]] (11,730,000 [[square mile|sq mi]]) including its adjacent islands, it covers 5.9% of the [[Earth]]'s total surface area, and 20.3% of the total land area. With over 840,000,000 people (as of 2005) in 61 territories, it accounts for more than 12% of the world's [[human population]].
10151
10152 ==Etymology==
10153 [[Image:LocationAfrica.png|thumb|250px|World map showing Africa (geographically)]]
10154 The name '''Africa''' came into Western use through the [[Ancient Rome|Romans]], who used the name ''Africa terra'' — &quot;land of the Afri&quot; (plural, or &quot;Afer&quot; singular) — for the northern part of the continent, as the [[Africa (province)|province of Africa]] with its capital [[Carthage]], corresponding to modern-day [[Tunisia]].
10155
10156 The Afri were a tribe — possibly [[Berber]] — who dwelt in [[North Africa]] in the Carthage area. The origin of ''Afer'' may be connected with [[Phoenician languages|Phoenician]] ''`afar'', [[dust]] (also found in most other [[Semitic languages]]); some other etymologies that have been postulated for the ancient name 'Africa' that are much more debatable include:
10157
10158 :*the [[Latin]] word ''aprica'', meaning &quot;sunny&quot;;
10159
10160 :*the [[Greek language|Greek]] word ''aphrike'', meaning &quot;without cold&quot; (see also [[List of traditional Greek place names]]). The historian [[Leo Africanus]] ([[1495]]-[[1554]]) attributed the origin to the Greek word ''phrike'' (Ī†ĪÎ¯ÎēΡ, meaning &quot;cold and horror&quot;), combined with the negating prefix a-, so meaning a land free of cold and horror. However, the change of sound from ''ph'' to ''f'' in Greek is datable to about the [[first century]], so this is unlikely to be the origin.
10161
10162 Ancient Africa extended into what is now known as Asia. There was no line drawn between the two continents until the geographer [[Ptolemy]] ([[85]] - [[165]] AD), accepted [[Alexandria]] as [[Prime Meridian]] and made the [[Suez Canal|isthmus of Suez]] and the [[Red Sea]] the boundary between [[Asia]] and Africa. As [[Europe]]ans came to understand the real extent of the continent, the idea of ''Africa'' expanded with their knowledge.
10163
10164 ==Geography==
10165 ''Main article: [[Geography of Africa]]''
10166
10167 [[Image:The Earth seen from Apollo 17.jpg|thumb|250px|Africa in the [[Blue marble]] picture, with [[Antarctica]] to the south, and the [[Sahara]] and [[Arabian peninsula]] at the top of the globe]]
10168
10169 Africa is the largest of the three great southward projections from the main mass of the Earth's surface. It includes within its remarkably regular outline an area, of c. 30,360,288 [[square kilometre|km&amp;sup2;]] (11,722,173 [[square mile|mi&amp;sup2;]]), including the islands.
10170
10171 Separated from [[Europe]] by the [[Mediterranean Sea]], it is joined to Asia at its northeast extremity by the [[Suez Canal|Isthmus of Suez]] (transected by the Suez Canal), 130 km (80 miles) wide. ([[Geopolitical]]ly, [[Egypt]]'s [[Sinai Peninsula]] east of the Suez Canal is often considered part of Africa, as well.) From the most northerly point, [[Cape Blanc]] (Ra’s al Abyad) in [[Tunisia]] (37&amp;deg;21&amp;prime; N), to the most southerly point, [[Cape Agulhas]] in [[South Africa]] (34&amp;deg;51&amp;prime;15&amp;Prime; S), is a distance approximately of 8,000 km (5,000 miles); from [[Cap-Vert|Cape Verde]], 17&amp;deg;33&amp;prime;22&amp;Prime; W, the westernmost point, to [[Ras Hafun]] in [[Somalia]], 51&amp;deg;27&amp;prime;52&amp;Prime; E, the most easterly projection, is a distance (also approximately) of 7,400 km (4,600 miles). The length of coast-line is 26,000 km (16,100 miles) and the absence of deep indentations of the shore is shown by the fact that Europe, which covers only [[1 E12 m²|9,700,000 km&amp;sup2;]] (3,760,000 square miles), has a coast-line of 32,000 km (19,800 miles).
10172
10173 The main structural lines of the continent show both the east-to-west direction characteristic, at least in the eastern hemisphere, of the more northern parts of the world, and the north-to-south direction seen in the southern peninsulas. Africa is thus composed of two segments at right angles, the northern running from east to west, the southern from north to south, the subordinate lines corresponding in the main to these two directions.
10174
10175 ==History==
10176 ''Main article: [[History of Africa]]''
10177 [[Image:Afryka 1890.jpg|right|thumb|250px|Map of Africa 1890]]
10178
10179 Africa is home to the [[cradle of Humankind|oldest inhabited territory]] on earth, with the [[human]] race [[mitochondrial Eve|originating]] from this continent. During the mid 20th century, [[Anthropology|anthropologists]] discovered many [[fossil]]s and evidence of human occupation perhaps as early as 7 million years ago. Fossil remains of several species of early ape-like humans thought to have [[evolve]]d into modern day man, such as ''[[Australopithecus afarensis]]'' ([[radiometrically dated]] to 3.9-3.0 million years [[Before_Christ|BC]]), ''[[Paranthropus boisei]]'' (2.3-1.4 million BC) and ''[[Homo ergaster]]'' (c. 600,000-1.9 million BC) has been discovered.
10180
10181 The [[Ishango Bone]], dated to c. 25,000 years ago, shows [[tally stick|tallies]] in [[mathematical notation]]. Throughout humanity's [[prehistory]], Africa (like all other continents) had no [[nation state]]s, and was instead inhabited by groups of [[hunter-gatherers]] such as the [[Khoi]] and [[San]] (formerly known as [[bushmen]]).
10182
10183 Around 3300 BC, the historical record opens in Africa with the rise of literacy in [[Egypt]], which continued with varying levels of influence over other areas until 343 BC. Other prominent [[civilization]]s include [[Ethiopia]], the [[Nubia]]n kingdom, [[Carthage]], the kingdoms of the [[Sahelian kingdom|Sahel]] ([[Ghana Empire|Ghana]], [[Mali Empire|Mali]], and [[Songhai empire|Songhai]]) and [[Great Zimbabwe]].
10184
10185 In 1482, the [[Portugal|Portuguese]] established the first of many trading stations along the Guinea coast at [[Elmina]]. The chief commodities dealt in were slaves, gold, ivory and spices. The European discovery of America in 1492 was followed by a great development of the [[slave trade]], which, before the Portuguese era, had been an overland trade almost exclusively, and never confined to any one continent.
10186
10187 But at the same time that slavery was ending in Europe, in the early 19th century the European [[Imperialism|imperial]] powers staged a massive &quot;[[scramble for Africa]]&quot; and occupied most of the continent, creating many [[colony|colonial]] nation states, and leaving only two independent nations: [[Liberia]], the Black American colony, and [[Ethiopia]]. This occupation continued until after the conclusion of the [[World War II|Second World War]], when all colonial states gradually obtained formal independence.
10188
10189 Today, Africa is home to over 50 independent countries, all but 2 of which still have the [[border]]s drawn up during the era of European [[colonialism]].
10190
10191 ==Politics==
10192 [[Image:ColonialAfrica.png|frame|''Map showing European claimants to the African continent at the beginning of [[World War I]]'']]
10193 ===Precolonial Africa===
10194 {{sect-stub}}
10195 ===Colonial Africa===
10196 [[Colonialism]] had a destabilizing effect on what had been a number of ethnic groups that is still being felt in African politics. Prior to European influence, national borders were not much of a concern, with Africans generally following the practice of other areas of the world, such as the Arabian peninsula, where a group's territory was congruent with its military or trade influence. The European insistence of drawing borders around territories to isolate them from those of other colonial powers often had the effect of separating otherwise contiguous political groups, or forcing traditional enemies to live side by side with no buffer between them. For example, the [[Congo River]], although it appears to be a natural geographic boundary, had groups that otherwise shared a [[language]], [[culture]] or other similarity who resided on both sides. The division of the land between [[Belgium]] and [[France]] along the river isolated these groups from each other. Those who lived in Saharan or [[Sub-Saharan Africa]] and traded across the continent for centuries often found themselves crossing &quot;borders&quot; that existed only on European maps.
10197
10198 In nations that had substantial European populations, for example [[Rhodesia]] and [[South Africa]], systems of second-class citizenship were often set up in order to give Europeans [[political power]] far in excess of their numbers. However, the lines were not often drawn strictly across racial lines. In [[Liberia]], the citizens who were descendants of American slaves managed to have a political system for over 100 years that gave ex-slaves and natives to the area roughly equal [[legislative power]] despite the fact the ex-slaves were outnumbered ten to one in the general population. The inspiration for this system was the [[United States Senate]], which had balanced the power of free and slave states despite the much larger population of the former.
10199
10200 Europeans often changed the balance of power, created ethnic divides where they did not previously exist, and introduced a cultural dichotomy detrimental to the native inhabitants in the areas they controlled. For example, in what is now [[Rwanda]] and [[Burundi]], two ethnic groups [[Hutus]] and [[Tutsis]] had merged into one culture by the time Belgian colonists had taken control of the region in the 19th century. No longer divided by ethnicity as intermingling, inter-marriage, and merging of cultural practices over the centuries had long since erased visible signs of a culture divide, the Belgians instituted a policy of racial categorization, upon taking control of the region, as racial based categorization and philosophies was a fixture of the European culture of that time. The term [[Hutu]] originally referred to the agricultural-based Bantu speaking tribes that moved into present day Rwandan and Burundi from the West, and the term [[Tutsi]] referred to North Eastern cattle-based tribes that migrated into the region later. The terms to the indigenous peoples eventually came to describe a person's economic class. Those individuals who owned roughly 10 or more cattle were considered Tutsi, and those with fewer were considered Hutu, regardless of ancestral history. This was not a strict line but a general rule of thumb, and one could move from Hutu to Tutsi and vice versa.
10201
10202 The Belgians introduced a racialised system. Those individuals who had characteristics the Europeans admired - fairer skin, ample height, narrow noses, etc. - were given power amongst the colonized peoples. The Belgians determined these features were more ideally [[Hamitic]], Hamitic in turn being more ideally European and belonged to those people closest to Tutsi in ancestry. They instituted a policy of issuing identity cards based on this philosophy. Those closest to this ideal were proclaimed Tutsi and those not were proclaimed Hutu.
10203
10204 ===Post-colonial Africa===
10205 Since independence, African states have frequently been hampered by instability, corruption, violence, and [[authoritarianism]]. The vast majority of African nations are [[republic]]s that operate under some form of the [[presidential system]] of rule. Few nations in Africa have been able to sustain [[Democracy|democratic]] governments, instead cycling through a series of brutal [[Coup d'Êtat|coup]]s and [[military dictatorship]]s.
10206
10207 A number of Africa's post-colonial political leaders were poorly educated and ignorant on matters of governance; great instability, however, was mainly the result of marginalization of other ethnic groups and graft under these leaders.
10208
10209 As well, many used the positions of power to ignite ethnic conflicts that had been exacerbated, or even created, under colonial rule. In many countries, the [[Armed force|military]] was perceived as being the only group that could effectively maintain order and ruled most nations in Africa during the [[1970s|70s]] and early [[1980s|80s]].
10210
10211 During the period from the early [[1960s]] to the late 1980s Africa had over 70 coups and 13 presidential [[assassination]]s.
10212
10213 [[Cold War]] conflicts between the [[United States]] and the [[Soviet Union]] also played a role in the instability. When a country became independent for the first time, it was often expected to align with one of the two [[superpower]]s. Many countries in [[Northern Africa]] received Soviet military aid, while many in Central and Southern Africa were supported by the [[United States]] and/or [[France]]. The 1970s saw an escalation as newly independent [[Angola]] and [[Mozambique]] aligned themselves with the [[Soviet Union]] and the West and [[South Africa]] sought to contain Soviet influence.
10214
10215 Border and territorial disputes have also been common, with the European-imposed borders of many nations being widely contested through armed conflicts.
10216
10217 Failed government policies and political corruption have also resulted in many widespread [[famine]]s, and significant portions of Africa remain with distribution systems unable to disseminate enough food or water for the population to survive. The spread of [[disease]] is also rampant, especially the spread of the [[Human Immunodeficiency Virus]] (HIV) and the associated [[Acquired Immune Deficiency Syndrome]] (AIDS), which has become a deadly [[epidemic]] on the continent.
10218
10219 Despite numerous hardships, there have been some signs the continent has hope for the future. [[Democracy|Democratic government]]s seem to be spreading, though are not yet the majority (National Geographic claims 13 African nations can be considered truly democratic). As well, many nations have at least nominally recognized basic [[human right]]s for all [[citizen]]s, though in practice these are not always recognized, and have created reasonably independent [[judiciary|judiciaries]].
10220
10221 There are clear signs of increased networking among African organisations and states. In the civil war in the [[Democratic Republic of Congo]] (former [[Zaire]]), rather than rich, non-African countries intervening, about half-a-dozen neighbouring African countries got involved (see also [[Second Congo War]]). The death toll has been estimated by some to be 3.5 million since the conflict began in 1998. This might play a role similar to that of [[World War II]] for Europe, after which the people in the neighbouring countries decide to integrate their societies in such a way that war between them becomes as unthinkable as a war between, say, [[France]] and [[Germany]] would be today.
10222
10223 Political associations such as the [[African Union]] are also offering hope for greater co-operation and peace between the continent's many countries.
10224
10225 Extensive human rights abuses still occur in several parts of Africa, often under the oversight of the state. Most of such violations occur for political reasons, often times as a 'side-effect' of civil war. Countries where major human rights violations have been reported in recent times include the [[Democratic Republic of the Congo]], [[Sierra Leone]], [[Liberia]], [[Sudan]], and [[Côte d'Ivoire]].
10226
10227 ===Modern Africa===
10228 Most western countries place limitations on aid to African nations, especially the United States. These limitations are often used to control the governments of these African nations; as a result, these nations are turning to non-traditional sources of financial aid. [[China]] has increasingly provided financial aid to Africa in order to secure contracts on [[Natural resource|natural resources]], such as [[petroleum|oil]], [[gold]], and [[diamonds]]. There usually is no political prescription. Countries the Chinese are investing in include:
10229 Central African Republic (plantations), Nigeria ([[petroleum|oil]] &amp; [[gas]]), Sierra Leone ([[tourism]]), Gabon ([[petroleum|oil]]), Congo-Brazzaville ([[petroleum|oil]] &amp; wood-industry), Congo ([[copper]] &amp; [[cobalt]]), Angola ([[railroad]]-system), Libya ([[petroleum|oil]]), Sudan ([[petroleum|oil]]), Uganda ([[coffee]] &amp; [[fishing]]-industry), Kenya ([[Telecommunication|communications]]-network), Rwanda (public works), Burundi ([[Nickel]]), Zimbabwe (infrastructure), South Africa ([[coal]] &amp; [[gold]]).
10230
10231 ==Economy==
10232 ''Main article: [[Economy of Africa]]''
10233
10234 Africa is the world's poorest inhabited continent: the [[United Nation]]s' [http://hdr.undp.org/ Human Development Report] [[2003]] (of 175 countries) found that positions 151 ([[Gambia]]) to 175 ([[Sierra Leone]]) were taken up entirely by African nations.
10235
10236 It has had (and in some ways is still having) a shaky and uncertain transition from [[colonialism]], with increases in [[political corruption|corruption]] and [[despotism]] being major contributing factors to its poor economic situation. While rapid growth in [[China]] and now [[India]], and moderate growth in [[Latin America]], has lifted millions beyond subsistence living, Africa has gone backwards in terms of foreign [[trade]], [[investment]], and [[per capita]] [[income]]. This [[poverty]] has widespread effects, including lower [[life expectancy]], [[violence]], and [[instability]] - factors intertwined with the continent's poverty.
10237
10238 Major economic successes are [[Botswana]] and [[South Africa]], which is developed to the extent that it has its own mature [[Johannesburg Stock Exchange|stock exchange]]. This is partly due to its wealth of [[natural resource]]s, being the world's leading producer of both [[gold]] and [[diamond]]s, and partly due to its well-established legal system. South Africa also has access to financial capital, numerous markets and skilled labor. Other African countries are making comparable progress, such as [[Ghana]], and some, like Egypt, have a longer history of commercial and economic success.
10239
10240 [[Nigeria]] sits on one of the largest proven oil reserves in the world and has the highest population among nations in Africa, with one of the fastest-growing economies in the world. It is believed that with the country's rapidly expanding economy and increasing actions against corruption, Nigeria's status as Africa's economic powerhouse will soon be firmly established.
10241
10242 ==Demographics==
10243 Africans may be grouped according to whether they live north or south of the [[Sahara Desert]]; these groups are called [[North African]]s and [[Sub-Saharan Africa]]ns, respectively. [[Afro-Asiatic]] speaking peoples predominate in North Africa, while Sub-Saharan Africa is dominated by a number of populations grouped according to their language --[[Niger-Congo]] predominantly in West Africa, [[Nilo-Saharan]] in the Eastern highlands and [[Khoisan]] in the south.
10244
10245 Speakers of [[Bantu languages]] (part of the Niger-Congo family) are the majority in southern, central and east Africa proper; but there are also several Nilotic groups in East Africa, and a few remaining [[Indigenous peoples of Africa|indigenous]] Khoisan ('[[San]]' or '[[Bushmen]]') and Pygmy peoples in southern and central Africa, respectively. Bantu-speaking Africans also predominate in Gabon and Equatorial Guinea, and are found in parts of southern Cameroon and southern Somalia. In the [[Kalahari Desert]] of Southern Africa, the distinct people known as the Bushmen (also &quot;San&quot;, closely related to, but distinct from &quot;[[Khoikhoi|Hottentots]]&quot;) have long been present. The San are physically distinct from other Africans and are the indigenous people of southern Africa. [[Pygmies]] are the pre-Bantu indigenous peoples of central Africa.
10246
10247 The peoples of [[North Africa]] comprise two main groups; [[Berber]] and [[Arabic]]-speaking peoples in the west, and [[Demographics_of_Egypt#People|Egyptians]] in the east. The Arabs who arrived in the 7th century introduced the [[Arabic language]] and [[Islam]] to North Africa. The Semitic [[Phoenicia]]ns, and the European [[Ancient Greece|Greeks]] and [[Ancient Rome|Romans]] settled in North Africa as well. Berbers still make up the majority in [[Morocco]], while they are a significant minority within [[Algeria]]. They are also present in [[Tunisia]] and [[Libya]]. The [[Tuareg]] and other often-nomadic peoples are the principal inhabitants of the Saharan interior of North Africa. [[Nubians]] are a [[Nilo-Saharan]]-speaking group (though many also speak Arabic), who developed an ancient civilization in Northeast Africa.
10248
10249 During the past century or so, small but economically important colonies of [[Demographics_of_Lebanon#The_Lebanese_Diaspora|Lebanese]] and [[Overseas Chinese|Chinese]] have also developed in the larger coastal cities of [[West Africa|West]] and [[East Africa]], respectively.
10250
10251 Some [[Ethiopia]]n and Eritrean groups (like the [[Amhara]] and [[Tigray]]ans, collectively known as &quot;[[Habesha]]&quot;) have [[Semitic]] (Sabaean) ancestry. The Somalis as a people originated in the [[Ethiopian Highlands]], but most Somali clans can trace some Arab ancestry as well. [[Sudan]] and [[Mauritania]] are divided between a mostly Arabized north and a native African south (although the &quot;Arabs&quot; of Sudan clearly have a predominantly native African ancestry themselves). Some areas of East Africa, particularly the island of [[Zanzibar]] and the Kenyan island of Lamu, received Arab Muslim and [[Southwest Asia]]n settlers and merchants throughout the [[Middle Ages]] and in antiquity.
10252
10253 Beginning in the [[16th century]], Europeans such as the [[Portugal|Portuguese]] and [[The Netherlands|Dutch]] began to establish [[trading post]]s and [[Fortification|forts]] along the coasts of western and southern Africa. Eventually, a large number of Dutch, augmented by French [[Huguenots]] and [[German people|Germans]] settled in what is today [[South Africa]]. Their descendants, the [[Afrikaners]] and the [[Coloureds]], are the largest European-descended groups in Africa today. In the [[19th century]], a second phase of colonization brought a large number of French and [[United Kingdom of Great Britain and Ireland|British]] settlers to Africa. The Portuguese settled mainly in Angola, but also in Mozambique. The French settled in large numbers in [[Algeria]] where they became known collectively as ''[[Pied-noir|pieds-noirs]]'', and on a smaller scale in other areas of North and West Africa as well as in Madagascar. The British settled chiefly in South Africa as well as the colony of [[Rhodesia]], and in the highlands of what is now [[Kenya]]. Germans settled in what is now [[Tanzania]] and [[Namibia]], and there is still a population of German-speaking white Namibians. Smaller numbers of European soldiers, businessmen, and officials also established themselves in administrative centers such as [[Nairobi]] and [[Dakar]]. Decolonization during the 1960s often resulted in the mass emigration of European-descended settlers out of Africa &amp;mdash; especially from Algeria, Angola, Kenya and Rhodesia (now [[Zimbabwe]]). However, in South Africa and Namibia, the white minority remained politically dominant after independence from Europe, and a significant population of white Africans remained in these two countries even after [[liberal democracy|democracy]] was finally instituted at the end of the [[Cold War]]. South Africa has also become the preferred destination of white Anglo-Zimbabweans, and of migrants from all over southern Africa.
10254
10255 European colonization also brought sizeable groups of [[Asians]], particularly people from the [[Indian subcontinent]], to British colonies. Large [[Indian diaspora|Indian communities]] are found in South Africa, and smaller ones are present in Kenya, Tanzania, and some other southern and east African countries. A fairly large Indian community in [[Uganda]] was expelled by the dictator [[Idi Amin]] in 1972, though many have since returned. The islands in the [[Indian Ocean]] are also populated primarily by people of Asian origin, often mixed with Africans and Europeans. The [[Malagasy]] people of [[Madagascar]] are a [[Malay people]], but those along the coast are generally mixed with Bantu, Arab, Indian and European origins. Malay and Indian ancestries are also important components in the group of people known in South Africa as [[Coloureds]] (people with origins in two or more races and continents).
10256
10257 ==Languages==
10258 [[Image:African language families.png|right|300px|thumb|Map showing the distribution of African language families and some major African languages. [[Afro-Asiatic languages|Afro-Asiatic]] extends from the [[Sahel]] to [[Southwest Asia]]. [[Niger-Congo languages|Niger-Congo]] is divided to show the size of the [[Bantu languages|Bantu sub-family]].]]
10259
10260 ''Main article: [[African languages]]''
10261
10262 By most estimates Africa contains well over a thousand [[language]]s. There are four major [[language family|language families]] native to Africa.
10263
10264 * The [[Afro-Asiatic languages|''Afro-Asiatic'']] languages are a language family of about 240 languages and 285 million people widespread throughout North Africa, [[East Africa]], the Sahel, and [[Southwest Asia]].
10265 * The [[Nilo-Saharan languages|''Nilo-Saharan'']] language family consists of more than a hundred languages spoken by 30 million people. Nilo-Saharan languages are mainly spoken in [[Chad]], [[Sudan]], [[Ethiopia]], [[Uganda]], [[Kenya]], and northern [[Tanzania]].
10266 * The [[Niger-Congo languages|''Niger-Congo'']] language family covers much of Sub-Saharan Africa and is probably the largest language family in the world in terms of different languages. A substantial number of them are the [[Bantu languages|Bantu]] languages spoken in much of sub-Saharan Africa.
10267 * The [[Khoisan languages|''Khoisan'']] languages number about 50 and are spoken in Southern Africa by approximately 120 000 people. Many of the Khoisan languages are [[endangered language|endangered]]. The [[Khoikhoi|Khoi]] and [[Bushmen|San]] peoples are considered the original inhabitants of this part of Africa.
10268
10269 With a few notable exceptions in [[East Africa]], nearly all African countries have adopted [[official language]]s that originated outside the continent and spread through [[colonialism]] or [[human migration]]. For example, in numerous countries [[English language|English]] and [[French language|French]] are used for communication in the public sphere such as government, commerce, education and the media. [[Arabic language|Arabic]], [[Portuguese language|Portuguese]], [[Afrikaans]] and [[Malagasy]] are other examples of originally non-African languages that are used by millions of Africans today, both in the public and private spheres.
10270
10271 ==Culture==
10272 Africa has a number of overlapping cultures. The most conventional distinction is that between sub-Saharan Africa and the northern countries from [[Egypt]] to [[Morocco]], who largely associate themselves with [[Arab]]ic culture. In this comparison, the nations to the south of the [[Sahara]] are considered to consist of many cultural areas, in particular that of the [[Bantu languages|Bantu]] linguistic group.
10273
10274 Divisions may also be made between [[Francophone Africa]] and the rest of Africa, in particular the former British colonies of [[southern Africa|southern]] and [[East Africa]]. Another cultural fault-line is that between those Africans living traditional lifestyles and those who are essentially modern. The traditionalists are sometimes subdivided into [[pastoralism|pastoralists]] and [[agriculture|agriculturalists]].
10275
10276 [[African art]] reflects the diversity of African cultures. The oldest existing art from Africa are 6000-year old carvings found in [[Niger]], while the [[Great Pyramid of Giza]] in [[Egypt]] was the world's tallest architectural accomplishment for four thousand years until the creation of the [[Eiffel Tower]]. The Ethiopian complex of [[monolithic church]]es at [[Lalibela]], of which the [[Church of St. George]] is representative, is regarded as another marvel of engineering.
10277
10278 The [[music of Africa]] is one of its most dynamic art forms. Egypt has long been a cultural focus of the Arab world, while remembrance of the rhythms of sub-Saharan Africa, in particular west Africa, was transmitted through the [[Atlantic slave trade]] to modern [[blues]], [[jazz]], [[reggae]], [[rap music|rap]], and [[rock and roll]]. Modern music of the continent includes the highly complex choral singing of southern Africa and the dance rhythms of [[soukous]], dominated by the [[music of the Democratic Republic of Congo]]. A recent development of the 21st century is the emergence of [[African hip hop]], in particular a form from [[Senegal]] is blended with traditional [[mbalax]]. Recently in South Africa, a form of music related to [[house music]] known under the name [[Kwaito]] has developed, although the country has been home to its own form of [[South African jazz]] for some time, while [[Afrikaans]] music is completely distinct and comprised mostly of traditional [[Boere musiek]], and forms of [[Folk music|Folk]] and [[Rock and roll|Rock]].
10279
10280 * [[List of African musicians]]
10281 * [[List of African writers]]
10282 * [[African Cinema]]
10283 * [[Afrology]]
10284
10285 ==Religion==
10286 Africans profess a wide variety of religious beliefs, with [[Christianity]] and [[Islam]] being the most widespread. Approximately 40% of all Africans are Christians and another 40% Muslims. Roughly 20% of Africans primarily follow indigenous [[African religions]]. A small number of Africans also have beliefs [[African Jew|from the Judaic tradition]], such as the [[Beta Israel]] and [[Lemba]] tribes.
10287
10288 The indigenous African religions tend to revolve around [[animism]] and [[ancestor worship]]. A common thread in traditional belief systems was the division of the [[spiritual world]] into &quot;helpful&quot; and &quot;harmful&quot;. Helpful [[Spiritual being|spirits]] are usually deemed to include ancestor spirits that help their descendants, and powerful spirits that protected entire communities from natural disaster or attacks from enemies; whereas harmful spirits include the [[soul]]s of murdered victims who were buried without the proper [[Funeral|funeral rites]], and spirits used by hostile spirit [[Medium (spirituality)|mediums]] to cause illness among their enemies. While the effect of these early forms of worship continues to have a profound influence, belief systems have evolved as they interact with other religions.
10289
10290 The formation of the [[Old Kingdom]] of [[Egypt]] in the [[third millennium BCE]] marked the first known complex religious system on the continent. Around the [[ninth century BCE]], [[Carthage]] (in present-day [[Tunisia]]) was founded by the Phoenicians, and went on to become a major cosmopolitan center where [[deity|deities]] from neighboring Egypt, [[Ancient Rome|Rome]] and the [[Etruscan civilization|Etruscan city-states]] were worshipped.
10291
10292 The [[Ethiopian Orthodox Church]] officially dates from the [[fourth century]], and is thus one of the first established [[Christianity|Christian]] churches anywhere. At first Christian Orthodoxy made gains in modern-day Sudan and other neighbouring regions; however following the spread of Islam, growth was slow and restricted to the highlands.
10293
10294 Islam entered Africa as Muslims conquered North Africa between 640 and 710, beginning with Egypt. They established Mogadishu, Melinde, Mombasa, Kilwa, and Sofala, following the sea trade down the coast of [[East Africa]], and diffusing through the Sahara desert into the interior of Africa -- following in particular the paths of Muslim traders. Muslims were also among the Asian peoples who later settled in British-ruled Africa.
10295
10296 Many Africans were converted to [[Western Christianity|West European forms of Christianity]] during the colonial period. In the last decades of the twentieth century, various sects of [[charismatic movement|Charismatic Christianity]] rapidly grew. A number of Roman Catholic African bishops were even mentioned as possible [[Pope|papal]] candidates in 2005. African Christians appear to be more socially conservative than their co-religionists in much of the industrialized world, which has quite recently led to tensions within [[Religious denomination|denominations]] such as the [[Anglican Church|Anglican]] and [[Methodism|Methodist Churches]].
10297
10298 ==Territories==
10299 [[Image:Africa-regions.png|thumb|300px|Regions of Africa. Blue: North Africa, green: West Africa, brown: Central Africa, orange: Horn of Africa, magenta: East Africa, red: Southern Africa.]]
10300 [[Image:AfricaCIA-HiRes.jpg|thumb|300px|Political Map of Africa]]
10301 [[Image:topography_of_africa.jpg|thumb|310px|Physical map of Africa]]
10302 ===Independent states===
10303 '''[[East Africa]]'''
10304
10305 East Africa proper
10306 * [[Burundi]] (also sometimes considered part of Central Africa)
10307 * [[Kenya]]
10308 &lt;!--* [[Mozambique]] (usually considered part of Southern Africa)--&gt;
10309 * [[Rwanda]] (also sometimes considered part of Central Africa)
10310 * [[Tanzania]]
10311 * [[Uganda]]
10312
10313 [[North East Africa]] ([[Horn of Africa]])
10314 * [[Djibouti]]
10315 * [[Eritrea]]
10316 * [[Ethiopia]]
10317 * [[Somalia]] (including [[Somaliland]])
10318
10319 '''[[Central Africa]]'''
10320 &lt;!--* [[Angola]] (usually considered part of Southern Africa)--&gt;
10321 * [[Burundi]] (also sometimes considered part of East Africa)
10322 &lt;!--* [[Cameroon]] (usually considered part of West Africa)--&gt;
10323 * [[Central African Republic]]
10324 * [[Chad]] (also sometimes considered part of West Africa)
10325 * [[Democratic Republic of the Congo]]
10326 * [[Equatorial Guinea]] (also sometimes considered part of West Africa)
10327 * [[Gabon]] (also sometimes considered part of West Africa)
10328 * [[Rwanda]] (also sometimes considered part of East Africa)
10329 * [[Republic of Congo]]
10330 &lt;!--* [[Zambia]] (usually considered part of Southern Africa)--&gt;
10331
10332 '''[[North Africa]]'''
10333 * [[Algeria]]
10334 * [[Egypt]]
10335 * [[Libya]]
10336 * [[Mauritania]]
10337 * [[Morocco]]
10338 * [[Sudan]]
10339 * [[Tunisia]]
10340
10341 '''[[Southern Africa]]'''
10342 * [[Angola]] (also sometimes considered part of Central Africa)
10343 * [[Botswana]]
10344 * [[Lesotho]]
10345 * [[Malawi]]
10346 * [[Mozambique]] (also sometimes considered part of East Africa)
10347 * [[Namibia]]
10348 * [[South Africa]]
10349 * [[Swaziland]]
10350 * [[Zambia]] (also sometimes considered part of Central Africa)
10351 * [[Zimbabwe]]
10352
10353 '''[[West Africa]]'''
10354 * [[Benin]]
10355 * [[Burkina Faso]]
10356 * [[Cameroon]] (also sometimes considered part of Central Africa)
10357 * [[Chad]] (also sometimes considered part of Central Africa)
10358 * [[Côte d'Ivoire]]
10359 * [[Equatorial Guinea]] (also sometimes considered part of Central Africa)
10360 * [[Gabon]] (also sometimes considered part of Central Africa)
10361 * [[The Gambia]]
10362 * [[Ghana]]
10363 * [[Guinea]]
10364 * [[Guinea-Bissau]]
10365 * [[Liberia]]
10366 * [[Mali]]
10367 &lt;!--* [[Mauritania]] (usually considered part of North Africa)--&gt;
10368 * [[Niger]]
10369 * [[Nigeria]]
10370 * [[Senegal]]
10371 * [[Sierra Leone]]
10372 * [[Togo]]
10373
10374 '''African Island Nations'''
10375 * [[Cape Verde]] (West Africa)
10376 * [[Comoros]] (Southern Africa)
10377 * [[Madagascar]] (Southern Africa)
10378 * [[Mauritius]] (Southern Africa)
10379 * [[SÃŖo TomÊ and Príncipe]] (Central Africa or West Africa)
10380 * [[Seychelles]] (East Africa)
10381
10382 ===Territories, possessions, dÊpartements===
10383 * [[Canary Islands]] ([[Spain]])
10384 * [[Ceuta]] and [[Melilla]] ([[Spain]]/claimed by [[Morocco]])
10385 * [[Madeira]] ([[Portugal]])
10386 * [[Mayotte]] ([[France]])
10387 * [[RÊunion]] ([[France]])
10388 * [[Saint Helena]] (including dependencies [[Ascension Island]] and [[Tristan da Cunha]]) ([[United Kingdom]])
10389
10390 ===Disputed territories===
10391 * [[Western Sahara]] is claimed and mostly [[military occupation|occupied]] by [[Morocco]]. The [[Free Zone (region)|remainder]] is administered by the [[Sahrawi Arab Democratic Republic]].
10392
10393 ===Table of territories and regions===
10394 {| border=&quot;1&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;border:1px solid #aaa; border-collapse:collapse&quot;
10395 |- bgcolor=&quot;#ECECEC&quot;
10396 ! Name of territory,&lt;br&gt;with [[flag]]
10397 ! [[List of countries by area|Area]]&lt;br&gt;(km&amp;sup2;)
10398 ! [[List of countries by population|Population]]&lt;br&gt;([[1 July]] [[2002]] est.)
10399 ! [[List of countries by population density|Population density]]&lt;br&gt;(per km&amp;sup2;)
10400 ! [[Capital]]
10401 |-
10402 | colspan=5 style=&quot;background:#eee;&quot; | '''[[Eastern Africa]]{{ref|region}}''':
10403 |-
10404 | {{flagicon|Burundi}} [[Burundi]]
10405 | align=&quot;right&quot; | 27,830
10406 | align=&quot;right&quot; | 6,373,002
10407 | align=&quot;right&quot; | 229.0
10408 | [[Bujumbura]]
10409 |-
10410 | {{flagicon|Comoros}} [[Comoros]]
10411 | align=&quot;right&quot; | 2,170
10412 | align=&quot;right&quot; | 614,382
10413 | align=&quot;right&quot; | 283.1
10414 | [[Moroni, Comoros|Moroni]]
10415 |-
10416 | {{flagicon|Djibouti}} [[Djibouti]]
10417 | align=&quot;right&quot; | 23,000
10418 | align=&quot;right&quot; | 472,810
10419 | align=&quot;right&quot; | 20.6
10420 | [[Djibouti City|Djibouti]]
10421 |-
10422 | {{flagicon|Eritrea}} [[Eritrea]]
10423 | align=&quot;right&quot; | 121,320
10424 | align=&quot;right&quot; | 4,465,651
10425 | align=&quot;right&quot; | 36.8
10426 | [[Asmara]]
10427 |-
10428 | {{flagicon|Ethiopia}} [[Ethiopia]]
10429 | align=&quot;right&quot; | 1,127,127
10430 | align=&quot;right&quot; | 67,673,031
10431 | align=&quot;right&quot; | 60.0
10432 | [[Addis Ababa]]
10433 |-
10434 | {{flagicon|Kenya}} [[Kenya]]
10435 | align=&quot;right&quot; | 582,650
10436 | align=&quot;right&quot; | 31,138,735
10437 | align=&quot;right&quot; | 53.4
10438 | [[Nairobi]]
10439 |-
10440 | {{flagicon|Madagascar}} [[Madagascar]]
10441 | align=&quot;right&quot; | 587,040
10442 | align=&quot;right&quot; | 16,473,477
10443 | align=&quot;right&quot; | 28.1
10444 | [[Antananarivo]]
10445 |-
10446 | {{flagicon|Malawi}} [[Malawi]]
10447 | align=&quot;right&quot; | 118,480
10448 | align=&quot;right&quot; | 10,701,824
10449 | align=&quot;right&quot; | 90.3
10450 | [[Lilongwe]]
10451 |-
10452 | {{flagicon|Mauritius}} [[Mauritius]]
10453 | align=&quot;right&quot; | 2,040
10454 | align=&quot;right&quot; | 1,200,206
10455 | align=&quot;right&quot; | 588.3
10456 | [[Port Louis]]
10457 |-
10458 | {{flagicon|Mayotte}} [[Mayotte]] ([[France]])
10459 | align=&quot;right&quot; | 374
10460 | align=&quot;right&quot; | 170,879
10461 | align=&quot;right&quot; | 456.9
10462 | [[Mamoudzou]]
10463 |-
10464 | {{flagicon|Mozambique}} [[Mozambique]]
10465 | align=&quot;right&quot; | 801,590
10466 | align=&quot;right&quot; | 19,607,519
10467 | align=&quot;right&quot; | 24.5
10468 | [[Maputo]]
10469 |-
10470 | {{flagicon|RÊunion}} [[RÊunion]] (France)
10471 | align=&quot;right&quot; | 2,512
10472 | align=&quot;right&quot; | 743,981
10473 | align=&quot;right&quot; | 296.2
10474 | [[Saint-Denis, RÊunion|Saint-Denis]]
10475 |-
10476 | {{flagicon|Rwanda}} [[Rwanda]]
10477 | align=&quot;right&quot; | 26,338
10478 | align=&quot;right&quot; | 7,398,074
10479 | align=&quot;right&quot; | 280.9
10480 | [[Kigali]]
10481 |-
10482 | {{flagicon|Seychelles}} [[Seychelles]]
10483 | align=&quot;right&quot; | 455
10484 | align=&quot;right&quot; | 80,098
10485 | align=&quot;right&quot; | 176.0
10486 | [[Victoria, Seychelles|Victoria]]
10487 |-
10488 | {{flagicon|Somalia}} [[Somalia]]
10489 | align=&quot;right&quot; | 637,657
10490 | align=&quot;right&quot; | 7,753,310
10491 | align=&quot;right&quot; | 12.2
10492 | [[Mogadishu]]
10493 |-
10494 | {{flagicon|Tanzania}} [[Tanzania]]
10495 | align=&quot;right&quot; | 945,087
10496 | align=&quot;right&quot; | 37,187,939
10497 | align=&quot;right&quot; | 39.3
10498 | [[Dodoma]]
10499 |-
10500 | {{flagicon|Uganda}} [[Uganda]]
10501 | align=&quot;right&quot; | 236,040
10502 | align=&quot;right&quot; | 24,699,073
10503 | align=&quot;right&quot; | 104.6
10504 | [[Kampala]]
10505 |-
10506 | {{flagicon|Zambia}} [[Zambia]]
10507 | align=&quot;right&quot; | 752,614
10508 | align=&quot;right&quot; | 9,959,037
10509 | align=&quot;right&quot; | 13.2
10510 | [[Lusaka]]
10511 |-
10512 | {{flagicon|Zimbabwe}} [[Zimbabwe]]
10513 | align=&quot;right&quot; | 390,580
10514 | align=&quot;right&quot; | 11,376,676
10515 | align=&quot;right&quot; | 29.1
10516 | [[Harare]]
10517 |-
10518 | colspan=5 style=&quot;background:#eee;&quot; | '''[[Middle Africa]]''':
10519 |-
10520 | {{flagicon|Angola}} [[Angola]]
10521 | align=&quot;right&quot; | 1,246,700
10522 | align=&quot;right&quot; | 10,593,171
10523 | align=&quot;right&quot; | 8.5
10524 | [[Luanda]]
10525 |-
10526 | {{flagicon|Cameroon}} [[Cameroon]]
10527 | align=&quot;right&quot; | 475,440
10528 | align=&quot;right&quot; | 16,184,748
10529 | align=&quot;right&quot; | 34.0
10530 | [[YaoundÊ]]
10531 |-
10532 | {{flagicon|Central African Republic}} [[Central African Republic]]
10533 | align=&quot;right&quot; | 622,984
10534 | align=&quot;right&quot; | 3,642,739
10535 | align=&quot;right&quot; | 5.8
10536 | [[Bangui]]
10537 |-
10538 | {{flagicon|Chad}} [[Chad]]
10539 | align=&quot;right&quot; | 1,284,000
10540 | align=&quot;right&quot; | 8,997,237
10541 | align=&quot;right&quot; | 7.0
10542 | [[N'Djamena]]
10543 |-
10544 | {{flagicon|Republic of the Congo}} [[Republic of the Congo|Congo]]
10545 | align=&quot;right&quot; | 342,000
10546 | align=&quot;right&quot; | 2,958,448
10547 | align=&quot;right&quot; | 8.7
10548 | [[Brazzaville]]
10549 |-
10550 | {{flagicon|Democratic Republic of the Congo}} [[Democratic Republic of the Congo]]
10551 | align=&quot;right&quot; | 2,345,410
10552 | align=&quot;right&quot; | 55,225,478
10553 | align=&quot;right&quot; | 23.5
10554 | [[Kinshasa]]
10555 |-
10556 | {{flagicon|Equatorial Guinea}} [[Equatorial Guinea]]
10557 | align=&quot;right&quot; | 28,051
10558 | align=&quot;right&quot; | 498,144
10559 | align=&quot;right&quot; | 17.8
10560 | [[Malabo]]
10561 |-
10562 | {{flagicon|Gabon}} [[Gabon]]
10563 | align=&quot;right&quot; | 267,667
10564 | align=&quot;right&quot; | 1,233,353
10565 | align=&quot;right&quot; | 4.6
10566 | [[Libreville]]
10567 |-
10568 | {{flagicon|SÃŖo TomÊ and Príncipe}} [[SÃŖo TomÊ and Príncipe]]
10569 | align=&quot;right&quot; | 1,001
10570 | align=&quot;right&quot; | 170,372
10571 | align=&quot;right&quot; | 170.2
10572 | [[SÃŖo TomÊ]]
10573 |-
10574 | colspan=5 style=&quot;background:#eee;&quot; | '''[[Northern Africa]]''':
10575 |-
10576 | {{flagicon|Algeria}} [[Algeria]]
10577 | align=&quot;right&quot; | 2,381,740
10578 | align=&quot;right&quot; | 32,277,942
10579 | align=&quot;right&quot; | 13.6
10580 | [[Algiers]]
10581 |-
10582 | {{flagicon|Egypt}} [[Egypt]]{{ref|Egypt}}
10583 | align=&quot;right&quot; | 1,001,450
10584 | align=&quot;right&quot; | 70,712,345
10585 | align=&quot;right&quot; | 70.6
10586 | [[Cairo]]
10587 |-
10588 | {{flagicon|Libya}} [[Libya]]
10589 | align=&quot;right&quot; | 1,759,540
10590 | align=&quot;right&quot; | 5,368,585
10591 | align=&quot;right&quot; | 3.1
10592 | [[Tripoli]]
10593 |-
10594 | {{flagicon|Morocco}} [[Morocco]]
10595 | align=&quot;right&quot; | 446,550
10596 | align=&quot;right&quot; | 31,167,783
10597 | align=&quot;right&quot; | 69.8
10598 | [[Rabat]]
10599 |-
10600 | {{flagicon|Sudan}} [[Sudan]]
10601 | align=&quot;right&quot; | 2,505,810
10602 | align=&quot;right&quot; | 37,090,298
10603 | align=&quot;right&quot; | 14.8
10604 | [[Khartoum]]
10605 |-
10606 | {{flagicon|Tunisia}} [[Tunisia]]
10607 | align=&quot;right&quot; | 163,610
10608 | align=&quot;right&quot; | 9,815,644
10609 | align=&quot;right&quot; | 60.0
10610 | [[Tunis]]
10611 |-
10612 | {{flagicon|Western Sahara}} [[Western Sahara]] ([[Morocco]]){{ref|WSM}}
10613 | align=&quot;right&quot; | 266,000
10614 | align=&quot;right&quot; | 256,177
10615 | align=&quot;right&quot; | 1.0
10616 | [[El AaiÃēn]]
10617 |-
10618 | colspan=5 | ''Southern Europe dependencies in Northern Africa'':
10619 |-
10620 | [[image:Flag of the Canary Islands.png|20px]] [[Canary Islands]] ([[Spain]]){{ref|Canary}}
10621 | align=&quot;right&quot; | 7,492
10622 | align=&quot;right&quot; | 1,694,477
10623 | align=&quot;right&quot; | 226.2
10624 | [[Las Palmas de Gran Canaria]],&lt;br /&gt;[[Santa Cruz de Tenerife]]
10625 |-
10626 | {{flagicon|Ceuta}} [[Ceuta]] (Spain){{ref|Spain}}
10627 | align=&quot;right&quot; | 20
10628 | align=&quot;right&quot; | 71,505
10629 | align=&quot;right&quot; | 3,575.2
10630 | —
10631 |-
10632 | [[image:MadeiraFlag.png|20px]] [[Madeira Islands]] ([[Portugal]]){{ref|Portugal}}
10633 | align=&quot;right&quot; | 797
10634 | align=&quot;right&quot; | 245,000
10635 | align=&quot;right&quot; | 307.4
10636 | [[Funchal]]
10637 |-
10638 | {{flagicon|Melilla}} [[Melilla]] (Spain){{ref|Spain}}
10639 | align=&quot;right&quot; | 12
10640 | align=&quot;right&quot; | 66,411
10641 | align=&quot;right&quot; | 5,534.2
10642 | —
10643 |-
10644 | colspan=5 style=&quot;background:#eee;&quot; | '''[[Southern Africa]]''':
10645 |-
10646 | {{flagicon|Botswana}} [[Botswana]]
10647 | align=&quot;right&quot; | 600,370
10648 | align=&quot;right&quot; | 1,591,232
10649 | align=&quot;right&quot; | 2.7
10650 | [[Gaborone]]
10651 |-
10652 | {{flagicon|Lesotho}} [[Lesotho]]
10653 | align=&quot;right&quot; | 30,355
10654 | align=&quot;right&quot; | 2,207,954
10655 | align=&quot;right&quot; | 72.7
10656 | [[Maseru]]
10657 |-
10658 | {{flagicon|Namibia}} [[Namibia]]
10659 | align=&quot;right&quot; | 825,418
10660 | align=&quot;right&quot; | 1,820,916
10661 | align=&quot;right&quot; | 2.2
10662 | [[Windhoek]]
10663 |-
10664 | {{flagicon|South Africa}} [[South Africa]]
10665 | align=&quot;right&quot; | 1,219,912
10666 | align=&quot;right&quot; | 43,647,658
10667 | align=&quot;right&quot; | 35.8
10668 | [[Bloemfontein]], [[Cape Town]], [[Pretoria]]{{ref|SCcaps}}
10669 |-
10670 | {{flagicon|Swaziland}} [[Swaziland]]
10671 | align=&quot;right&quot; | 17,363
10672 | align=&quot;right&quot; | 1,123,605
10673 | align=&quot;right&quot; | 64.7
10674 | [[Mbabane]]
10675 |-
10676 | colspan=5 style=&quot;background:#eee;&quot; | '''[[Western Africa]]''':
10677 |-
10678 | {{flagicon|Benin}} [[Benin]]
10679 | align=&quot;right&quot; | 112,620
10680 | align=&quot;right&quot; | 6,787,625
10681 | align=&quot;right&quot; | 60.3
10682 | [[Porto-Novo]]
10683 |-
10684 | {{flagicon|Burkina Faso}} [[Burkina Faso]]
10685 | align=&quot;right&quot; | 274,200
10686 | align=&quot;right&quot; | 12,603,185
10687 | align=&quot;right&quot; | 46.0
10688 | [[Ouagadougou]]
10689 |-
10690 | {{flagicon|Cape Verde}} [[Cape Verde]]
10691 | align=&quot;right&quot; | 4,033
10692 | align=&quot;right&quot; | 408,760
10693 | align=&quot;right&quot; | 101.4
10694 | [[Praia]]
10695 |-
10696 | {{flagicon|Côte d'Ivoire}} [[Côte d'Ivoire]]
10697 | align=&quot;right&quot; | 322,460
10698 | align=&quot;right&quot; | 16,804,784
10699 | align=&quot;right&quot; | 52.1
10700 | [[Abidjan]], [[Yamoussoukro]]{{ref|ICcaps}}
10701 |-
10702 | {{flagicon|Gambia}} [[The Gambia|Gambia]]
10703 | align=&quot;right&quot; | 11,300
10704 | align=&quot;right&quot; | 1,455,842
10705 | align=&quot;right&quot; | 128.8
10706 | [[Banjul]]
10707 |-
10708 | {{flagicon|Ghana}} [[Ghana]]
10709 | align=&quot;right&quot; | 239,460
10710 | align=&quot;right&quot; | 20,244,154
10711 | align=&quot;right&quot; | 84.5
10712 | [[Accra]]
10713 |-
10714 | {{flagicon|Guinea}} [[Guinea]]
10715 | align=&quot;right&quot; | 245,857
10716 | align=&quot;right&quot; | 7,775,065
10717 | align=&quot;right&quot; | 31.6
10718 | [[Conakry]]
10719 |-
10720 | {{flagicon|Guinea-Bissau}} [[Guinea-Bissau]]
10721 | align=&quot;right&quot; | 36,120
10722 | align=&quot;right&quot; | 1,345,479
10723 | align=&quot;right&quot; | 37.3
10724 | [[Bissau]]
10725 |-
10726 | {{flagicon|Liberia}} [[Liberia]]
10727 | align=&quot;right&quot; | 111,370
10728 | align=&quot;right&quot; | 3,288,198
10729 | align=&quot;right&quot; | 29.5
10730 | [[Monrovia]]
10731 |-
10732 | {{flagicon|Mali}} [[Mali]]
10733 | align=&quot;right&quot; | 1,240,000
10734 | align=&quot;right&quot; | 11,340,480
10735 | align=&quot;right&quot; | 9.1
10736 | [[Bamako]]
10737 |-
10738 | {{flagicon|Mauritania}} [[Mauritania]]
10739 | align=&quot;right&quot; | 1,030,700
10740 | align=&quot;right&quot; | 2,828,858
10741 | align=&quot;right&quot; | 2.7
10742 | [[Nouakchott]]
10743 |-
10744 | {{flagicon|Niger}} [[Niger]]
10745 | align=&quot;right&quot; | 1,267,000
10746 | align=&quot;right&quot; | 10,639,744
10747 | align=&quot;right&quot; | 8.4
10748 | [[Niamey]]
10749 |-
10750 | {{flagicon|Nigeria}} [[Nigeria]]
10751 | align=&quot;right&quot; | 923,768
10752 | align=&quot;right&quot; | 129,934,911
10753 | align=&quot;right&quot; | 140.7
10754 | [[Abuja]]
10755 |-
10756 | {{flagicon|Saint Helena}} [[Saint Helena (Britain)|Saint Helena]] ([[UK]])
10757 | align=&quot;right&quot; | 410
10758 | align=&quot;right&quot; | 7,317
10759 | align=&quot;right&quot; | 17.8
10760 | [[Jamestown, Saint Helena|Jamestown]]
10761 |-
10762 | {{flagicon|Senegal}} [[Senegal]]
10763 | align=&quot;right&quot; | 196,190
10764 | align=&quot;right&quot; | 10,589,571
10765 | align=&quot;right&quot; | 54.0
10766 | [[Dakar]]
10767 |-
10768 | {{flagicon|Sierra Leone}} [[Sierra Leone]]
10769 | align=&quot;right&quot; | 71,740
10770 | align=&quot;right&quot; | 5,614,743
10771 | align=&quot;right&quot; | 78.3
10772 | [[Freetown]]
10773 |-
10774 | {{flagicon|Togo}} [[Togo]]
10775 | align=&quot;right&quot; | 56,785
10776 | align=&quot;right&quot; | 5,285,501
10777 | align=&quot;right&quot; | 93.1
10778 | [[LomÊ]]
10779 |- style=&quot; font-weight:bold; &quot;
10780 | Total
10781 | align=&quot;right&quot; | 30,368,609
10782 | align=&quot;right&quot; | 843,705,143
10783 | align=&quot;right&quot; | 27.8
10784 |}
10785
10786 ''Notes:''&lt;br&gt;
10787 #&lt;small&gt;{{note|region}} Continental regions as per [[:Image:United Nations geographical subregions.png|UN categorisations/map]].&lt;br&gt;
10788 #&lt;small&gt;{{note|Egypt}} Depending on definitions, [[Egypt]] has territory in [[transcontinental nation|one or both of]] Africa and [[Asia]].&lt;br&gt;
10789 #&lt;small&gt;{{note|WSM}} [[Western Sahara]] is claimed and mostly [[military occupation|occupied]] by [[Morocco]]. The [[Free Zone (region)|remainder]] is administered by the [[Sahrawi Arab Democratic Republic]]. &lt;/small&gt;&lt;br&gt;
10790 #&lt;small&gt;{{note|Canary}} The [[Spain|Spanish]] [[Canary Islands]], of which [[Las Palmas de Gran Canaria]] are [[Santa Cruz de Tenerife]] are co-capitals, are often considered part of Northern Africa due to their relative proximity to [[Morocco]] and [[Western Sahara]]; population and area figures are for 2001.&lt;br&gt;
10791 #&lt;small&gt;{{note|Spain}} The [[Spain|Spanish]] [[exclave]] of [[Ceuta]] is surrounded on land by Morocco in Northern Africa; population and area figures are for 2001.&lt;br&gt;
10792 #&lt;small&gt;{{note|Portugal}} The [[Portugal|Portuguese]] [[Madeira Islands]] are often considered part of Northern Africa due to their relative proximity to Morocco; population and area figures are for 2001.&lt;br&gt;
10793 #&lt;small&gt;{{note|Spain}} The [[Spain|Spanish]] [[exclave]] of [[Melilla]] is surrounded on land by Morocco in Northern Africa; population and area figures are for 2001.&lt;br&gt;
10794 #&lt;small&gt;{{note|SCcaps}} [[Bloemfontein]] is the judicial capital of [[South Africa]], while [[Cape Town]] is its legislative seat, and [[Pretoria]] is the country's administrative seat.&lt;br&gt;
10795 #&lt;small&gt;{{note|ICcaps}} [[Yamoussoukro]] is the official capital of [[Côte d'Ivoire]], while [[Abidjan]] is the ''[[de facto]]'' seat.&lt;br&gt;
10796
10797 ==See also==
10798 {{sisterlinks|Africa}}
10799 *{{wikitravel}}
10800 *[[2005 in Africa]] - [[2006 in Africa]]
10801 *[[31st G8 summit]]
10802 *[[AIDS in Africa]]
10803 *[[African Anarchism]]
10804 *[[African philosophy]]
10805 *[[African Union]]
10806 *[[Cuisine of Africa|African cuisine]]
10807 *[[Confederation of African Football]]
10808 *[[Congo craton]]
10809 *[[Ecology of Africa]]
10810 *[[Education in Africa]]
10811 *[[History of Africa]]
10812 *[[Human rights in Africa]]
10813 *[[Regions of Africa]]
10814 *[[Sub-Saharan Africa]]
10815 *[[Universities in Africa]]
10816 *[[Heart of Africa (game)]]
10817
10818 *[[List of African countries by population density]]
10819 *[[List of African countries by population]]
10820 *[[List of African countries by GDP]]
10821 *[[List of African stock exchanges]]
10822
10823 ==External links==
10824 ;News
10825 * [http://allafrica.com/ allAfrica.com] current news, events and statistics
10826 * [http://news.bbc.co.uk/2/hi/in_depth/africa/2005/africa/default.stm BBC News In Depth - Africa 2005: Time for Change?]
10827 * [http://www.guardian.co.uk/hearafrica05/0,15756,1399090,00.html Guardian Unlimited - Special Report: Hear Africa 05]
10828
10829 ;Directories
10830 * [http://africadatabase.org/ Contemporary Africa Database]
10831 * [http://www.afrika.no/index/ The Index on Africa] directory from The Norwegian Council for Africa
10832 * [http://dmoz.org/Regional/Africa/ Open Directory Project - Africa] directory category
10833 *[http://www.columbia.edu/cu/lweb/indiv/africa/ Columbia University - African Studies]
10834 *[http://www.loc.gov/rr/amed/ Library of Congress - African &amp;amp; Middle Eastern Reading Room]
10835 *[http://www-sul.stanford.edu/depts/ssrg/africa/ Stanford University - Africa South of the Sahara]
10836 *[http://www.lib.uchicago.edu/e/su/afr/ University of Chicago - Joseph Regenstein Library: African Studies]
10837 *[http://www.sas.upenn.edu/African_Studies/ University of Pennsylvania - African Studies Center]
10838 *[http://www.africahomepage.org/ Africa Homepage]
10839
10840 ;Politics
10841 *[http://www.africaaction.org/index.php ''Africa Action''] Africa Action is the oldest organization in the US working on Africa affairs. It is a national organization that works for political, economic and social justice in Africa.
10842 *[http://www.zabalaza.net/texts/african_anarchism/contents.htm African Anarchism: The History of a Movement]
10843 * [http://flag.blackened.net/revolt/africa/accounts/chekov.html An Irish anarchist in Africa], western Africa from anarchist perspective.
10844 * [http://www.commissionforafrica.org/english.htm Commission for Africa]
10845 * [http://www.africanfront.com African Unification Front]
10846 * [http://www.libcom.org/history/africa.php Working class history in Africa] - people's and grassroots histories
10847
10848 ;Photos and Information
10849 *[http://www.junglephotos.com/africa/index.shtml ''Jungle Photos''] Jungle Photos Africa provides images and information on various countries in sub-Saharan Africa.
10850 *[http://www.africam.com Africam - African Wildlife Webcams]
10851 *[http://www.afrika.no/english/index.html Afrika.no News]
10852 *[http://www.afrol.com/Afrol News- African News Agency]
10853 *[http://www.ips.org/africa.shtml Inter Press Service-Africa]
10854
10855 ;Sports
10856 *[http://www.cafonline.com/ Confederation of African Football; in English and French]
10857
10858 ;Tourism
10859 * {{wikitravel}}
10860 {{Africa}}
10861 {{Continent}}
10862 {{Region}}
10863
10864 &lt;!-- The below are interlanguage links. --&gt;
10865
10866
10867 [[Category:Africa|*]]
10868 [[Category:Continents]]
10869
10870 [[tk:Afrika]]
10871
10872 [[af:Afrika]]
10873 [[am:አፍáˆĒቃ]]
10874 [[ang:Africa]]
10875 [[ar:ØŖŲØąŲŠŲ‚ŲŠØ§]]
10876 [[an:Africa]]
10877 [[ast:África]]
10878 [[az:Afrika]]
10879 [[bg:АŅ„Ņ€Đ¸ĐēĐ°]]
10880 [[zh-min-nan:Hui-chiu]]
10881 [[bn:āĻ†āĻĢā§āĻ°āĻŋāĻ•āĻž]]
10882 [[bs:Afrika]]
10883 [[br:Afrika]]
10884 [[ca:Àfrica]]
10885 [[cs:Afrika]]
10886 [[cy:Affrica]]
10887 [[da:Afrika]]
10888 [[de:Afrika]]
10889 [[et:Aafrika]]
10890 [[el:ΑĪ†ĪÎšÎēÎŽ]]
10891 [[es:África]]
10892 [[eo:Afriko]]
10893 [[eu:Afrika]]
10894 [[fa:ØĸŲØąÛŒŲ‚ا]]
10895 [[fo:Afrika]]
10896 [[fr:Afrique]]
10897 [[fy:Afrika]]
10898 [[ga:An Afraic]]
10899 [[gd:Afraga]]
10900 [[gl:África]]
10901 [[gu:āĒ†āĒĢāĢāĒ°āĒŋāĒ•āĒž]]
10902 [[ko:ė•„프ëĻŦėš´]]
10903 [[ht:Afrik]]
10904 [[hr:Afrika]]
10905 [[io:Afrika]]
10906 [[id:Afrika]]
10907 [[ia:Africa]]
10908 [[is:Afríka]]
10909 [[it:Africa]]
10910 [[he:אפריקה]]
10911 [[jv:Afrika]]
10912 [[kn:ā˛†ā˛Ģāŗā˛°ā˛ŋā˛•]]
10913 [[ku:EfrÃŽqa]]
10914 [[kw:Afrika]]
10915 [[sw:Afrika]]
10916 [[la:Africa]]
10917 [[lv:Āfrika]]
10918 [[lt:Afrika]]
10919 [[lb:Afrika]]
10920 [[li:Afrika]]
10921 [[hu:Afrika]]
10922 [[mk:АŅ„Ņ€Đ¸ĐēĐ°]]
10923 [[mg:Afrika]]
10924 [[mt:Afrika]]
10925 [[ms:Afrika]]
10926 [[nl:Afrika]]
10927 [[nds:Afrika]]
10928 [[ja:ã‚ĸフãƒĒã‚Ģ]]
10929 [[no:Afrika]]
10930 [[nn:Afrika]]
10931 [[pl:Afryka]]
10932 [[pt:África]]
10933 [[ro:Africa]]
10934 [[ru:АŅ„Ņ€Đ¸ĐēĐ°]]
10935 [[se:AfrihkkÃĄ]]
10936 [[sm:Aferika]]
10937 [[sa:ā¤…ā¤ĢāĨā¤°āĨ€ā¤•ā¤ž]]
10938 [[sq:Afrika]]
10939 [[sh:Afrika]]
10940 [[scn:Àfrica]]
10941 [[simple:Africa]]
10942 [[sk:Afrika]]
10943 [[sl:Afrika]]
10944 [[sr:АŅ„Ņ€Đ¸ĐēĐ°]]
10945 [[fi:Afrikka]]
10946 [[sv:Afrika]]
10947 [[tl:Aprika]]
10948 [[ta:āŽ†āŽĒā¯āŽĒāŽŋāŽ°āŽŋāŽ•ā¯āŽ•āŽž]]
10949 [[th:ā¸—ā¸§ā¸ĩā¸›āšā¸­ā¸Ÿā¸Ŗā¸´ā¸ā¸˛]]
10950 [[vi:ChÃĸu Phi]]
10951 [[to:Aferika]]
10952 [[tr:Afrika]]
10953 [[uk:АŅ„Ņ€Đ¸ĐēĐ°]]
10954 [[yi:א֡פÖŋריק×ĸ]]
10955 [[zh:éžæ´˛]]
10956 [[so:Afrika]]</text>
10957 </revision>
10958 </page>
10959 <page>
10960 <title>Ashmore And Cartier Islands</title>
10961 <id>589</id>
10962 <revision>
10963 <id>15899120</id>
10964 <timestamp>2002-02-25T15:51:15Z</timestamp>
10965 <contributor>
10966 <ip>Conversion script</ip>
10967 </contributor>
10968 <minor />
10969 <comment>Automated conversion</comment>
10970 <text xml:space="preserve">#REDIRECT [[Ashmore_and_Cartier_Islands]]
10971 </text>
10972 </revision>
10973 </page>
10974 <page>
10975 <title>Austin</title>
10976 <id>590</id>
10977 <revision>
10978 <id>41665486</id>
10979 <timestamp>2006-02-28T22:56:49Z</timestamp>
10980 <contributor>
10981 <ip>129.186.159.125</ip>
10982 </contributor>
10983 <text xml:space="preserve">'''Austin''' is a word that may refer to various things.
10984 '''Austin''' can also be a given name.
10985 == Places in the U.S. ==
10986 '''Austin''' may be the name of a town or city in the U.S.:
10987 *[[Austin, Texas]], the capital of Texas (best known city with this name)
10988 *[[Austin, Arkansas]]
10989 *[[Austin, Colorado]]
10990 *[[Austin, Indiana]]
10991 *[[Austin, Kentucky]]
10992 *[[Austin Township, Michigan]]
10993 *[[Austin, Minnesota]]
10994 *[[Austin Township, Minnesota]]
10995 *[[Austin, Nevada]]
10996 *[[Austin, North Carolina]]
10997 *[[Austin, Pennsylvania]]
10998 *[[Austin, Utah]]
10999 *[[Port Austin, Michigan]]
11000 *[[Austinburg, Ohio]]
11001 Other places in the U.S. named '''Austin''':
11002 *[[Austin, Chicago]], a neighborhood in Chicago
11003 *[[Austin College]], a college in Sherman, Texas
11004 *[[Lake Austin]]
11005
11006 == Places in Canada ==
11007 *[[Austin Flat, British Columbia]]
11008 *[[Austin Heights, British Columbia]]
11009 *[[Austin Subdivision No 1, British Columbia]]
11010 *[[Austin Subdivision No 2, British Columbia]]
11011 *[[Austin, Manitoba]]
11012 *[[Austin, Ontario]]
11013 *[[Austin, Quebec]]
11014
11015 == Names of people named Austin ==
11016 *[[Austin Powers]], a fictional movie spy
11017 *[[Albert Austin]]
11018 *[[Herbert Austin]], Sir Herbert Austin, founder of the Austin Motor Company
11019 *[[John Austin (legal philosophy)]]
11020 *[[J. L. Austin]], philosopher
11021 *[[John Arnold Austin]], United States Navy warrant officer
11022 *[[Phil Austin]], member of the Firesign Theatre
11023 *[[Sherrie Austin]], musician
11024 *[[Stephen F. Austin]], founder of Texas
11025 *[[Steve Austin (fictional character)]], the title character in Martin Caidin's novel ''Cyborg'', which inspired the TV series &quot;The Six Million Dollar Man&quot;
11026 *Col. [[Steve Austin (fictional character)]], the lead character played by Lee Majors in the TV series &quot;The Six Million Dollar Man&quot;.
11027 *[[Stone Cold Steve Austin]], a Professional wrestler turned actor
11028 *[[Augustine of Hippo|Saint Augustine]], noticeable in the English version &quot;Austin Friars&quot; to refer to the '''[[Augustinians|Augustinian Order]]'''.
11029
11030 :''See also [[Jane Austen]], the author.''
11031
11032 == Things named Austin ==
11033 *[[Austin Motor Company]], a British make of car
11034 *[[American Austin Car Company]], a short lived United States make of automobile
11035 *[[Austin (brand)]], a brand owned by the [[Kellogg Company]]
11036 *[[USS Austin (sloop)|USS ''Austin'']], a sloop-of-war (originally in the Texas Navy)
11037 *[[USS Austin (DE-15)|USS ''Austin'' (DE-15)]], a destroyer escort
11038 *[[USS Austin (LPD-4)|USS ''Austin'' (LPD-4)]], an amphibious transport dock
11039 *[[Austin elementary school]]
11040
11041 {{disambig}}
11042
11043 [[da:Austin]]
11044 [[de:Austin]]
11045 [[fr:Austin]]
11046 [[io:Austin]]
11047 [[it:Austin]]
11048 [[ja:ã‚Ēãƒŧ゚テã‚Ŗãƒŗ (曖昧さ回éŋ)]]
11049 [[pl:Austin]]
11050 [[ru:ОŅŅ‚иĐŊ]]
11051 [[sv:Austin]]</text>
11052 </revision>
11053 </page>
11054 <page>
11055 <title>Animated</title>
11056 <id>591</id>
11057 <revision>
11058 <id>15899122</id>
11059 <timestamp>2002-02-25T15:43:11Z</timestamp>
11060 <contributor>
11061 <ip>Conversion script</ip>
11062 </contributor>
11063 <minor />
11064 <comment>Automated conversion</comment>
11065 <text xml:space="preserve">#REDIRECT [[Animation]]
11066 </text>
11067 </revision>
11068 </page>
11069 <page>
11070 <title>Ascii Art</title>
11071 <id>592</id>
11072 <revision>
11073 <id>15899123</id>
11074 <timestamp>2002-02-25T15:51:15Z</timestamp>
11075 <contributor>
11076 <ip>Conversion script</ip>
11077 </contributor>
11078 <minor />
11079 <comment>Automated conversion</comment>
11080 <text xml:space="preserve">#REDIRECT [[ASCII art]]
11081 </text>
11082 </revision>
11083 </page>
11084 <page>
11085 <title>Animation</title>
11086 <id>593</id>
11087 <revision>
11088 <id>41836622</id>
11089 <timestamp>2006-03-02T01:37:39Z</timestamp>
11090 <contributor>
11091 <username>Kuru</username>
11092 <id>764407</id>
11093 </contributor>
11094 <comment>revert: vanity link</comment>
11095 <text xml:space="preserve">{{rootpage}}
11096 &lt;div style=&quot;float: right; width: 30%; margin: 1em&quot;&gt;
11097 [[Image:Animexample.gif]]&lt;br /&gt;&lt;small&gt;''This animation moves at 10 frames per second.''&lt;/small&gt;
11098 &lt;br /&gt;[[Image:Animexample2.gif]]&lt;br /&gt;&lt;small&gt;''This animation moves at 2 frames per second. At this rate, the individual frames should be discernible.''&lt;/small&gt;&lt;br /&gt;[[Image:Animhorse.gif|200px]]&lt;br /&gt;&lt;small&gt;''12 frames per second is the typical rate for an [[animated cartoon]].''&lt;/small&gt;
11099 &lt;/div&gt;
11100
11101 '''Animation''' is the illusion of motion created by the consecutive display of images of static elements. In film and video production, this refers to techniques by which each frame of a [[film]] or [[Film|movie]] is produced individually. These frames may be generated by computers, or by photographing a drawn or painted image, or by repeatedly making small changes to a model unit (see [[claymation]] and [[stop motion]]), and then photographing the result with a special [[animation camera]]. When the frames are strung together and the resulting film is viewed, there is an illusion of continuous movement due to the phenomenon known as [[persistence of vision]]. Generating such a film tends to be very labour intensive and tedious, though the development of [[computer animation]] has greatly sped up the process.
11102
11103 [[Graphics file format]]s like [[GIF]], [[MNG]], [[Scalable Vector Graphics|SVG]] and [[Macromedia Flash|Flash]](SWF) allow animation to be viewed on a computer or over the Internet.
11104
11105 [[Image:Animexample3.png|frame|none|''The animations shown before consist of these 6 frames.'']]
11106 __TOC__
11107
11108 == Animation techniques ==
11109 [[Traditional animation]] began with each frame being painted and then filmed. [[Traditional animation|Cel animation]], developed by [[Bray Productions|Bray]] and Hurd in the 1910s, sped up the process by using transparent overlays so that characters could be moved without the need to repaint the background for every frame. More recently, styles of animation based on painting and drawing have evolved, such as the minimalist [[Simpsons]] cartoons, or the roughly sketched [[The Snowman]].
11110
11111 [[Computer animation]] has advanced rapidly, and is now approaching the point where movies can be created with characters so lifelike as to be hard to distinguish from real actors. This involved a move from 2D to 3D, the difference being that in 2D animation the effect of perspective is created artistically, but in 3D objects are modeled in an internal 3D representation within the computer, and are then 'lit' and 'shot' from chosen angles, just as in real life, before being 'rendered' to a 2D bitmapped frame. Predictions that famous dead actors might even be 'brought back to life' to play in new movies before long have led to speculation about the moral and copyright issues involved. The use of computer animation as a way of achieving the otherwise impossible in conventionally shot movies has led to the term &quot;[[computer generated imagery]]&quot; being used, though the term has become hard to distinguish from computer animation as it is now used in referring to 3D movies that are entirely animated.
11112
11113 Computer animation involves modelling, motion generation, followed by the addition of surfaces and then [[rendering]]. Surfaces are programmed to stretch and bend automatically in response to movements of a '[[wire frame model]]', and the final rendering converts such movements to a [[Raster graphics|bitmap image]]. It is the recent developments in rendering complex surfaces like fur and clothing textures that have enabled stunningly life-like character models, including surfaces that even ripple, fold and blow in the wind, with every fibre or hair individually calculated for rendering. However, that actually has little to do with the animation itself. Animation is the process of bringing a lifeless puppet to life through the use of motion. Many people confuse fancy effects and high-res textures with animation, but in fact life-like motion can be created using the simplest of models. Pixar's work is a testament to this. The goal of an animator is not simply to &quot;copy&quot; the real world, but to enhance and to take the essence of the motion that is there, and this is how animation can be elevated to the level of art.
11114
11115 There is a large misconception in the public mind that computers create animation today. This couldn't be further from the truth. A computer is nothing more (though also nothing less) than a very expensive fancy pencil, and has to be treated as such for any quality work to be acheived. The choices a computer makes when interpolating motion are almost always the wrong ones, because the computer does not know what you are trying to create. Even if a complex physics system were created complete enough to exactly mimic the real world, the end result would not be the desirable one, because a large part of animation concerns the choices an animator makes. When a computer tries to make the choices for you, disaster is the general result.
11116
11117 ==History==
11118 {{see|Animated cartoon|History of animation}}
11119
11120 The major use of animation has always been for entertainment. However, there is growing use of [[instructional animation]] and [[educational animation]] to support explanation and learning.
11121
11122 The &quot;classic&quot; form of animation, the &quot;[[animated cartoon]]&quot;, as developed in the early 1900s and refined by [[Ub Iwerks]], [[Walt Disney]] and others, requires up to 24 distinct drawings for one second of animation. This technique is described in detail in the article [[Traditional animation]].
11123
11124 Because animation is very time-consuming and often very expensive to produce, the majority of animation for [[Television|TV]] and movies comes from professional animation studios. However, the field of [[independent animation]] has existed at least since the [[1950s]], with animation being produced by independent studios (and sometimes by a single person). Several independent animation producers have gone on to enter the professional animation industry. [[Bill Plympton]] is one of the most well known independent animators today.
11125
11126 [[Limited animation]] is a way of increasing production and decreasing costs of animation by using &quot;short cuts&quot; in the animation process. This method was pioneered by [[United Productions of America|UPA]] and popularized (some say exploited) by [[Hanna-Barbera]], and adapted by other studios as cartoons moved from [[movie theater]]s to [[television]].
11127
11128 ==Animation studios==
11129 Animation Studios, like [[Movie studio|Movie Studios]] may be production facilities, or financial entities. In some cases, especially in [[Anime]] they have things in common with [[Studio|artists studios]] where a Master or group of talented individuals oversee the work of lesser artists and crafts persons in realising their vision.
11130
11131 ==Styles and techniques of animation==
11132 {|
11133 | style=&quot;width:20%&quot; valign=&quot;top&quot;|
11134 *[[Traditional animation]]
11135 **[[Character animation]]
11136 **[[Limited animation]]
11137 **[[Rotoscope|Rotoscoping]]
11138
11139 | style=&quot;width:20%&quot; valign=&quot;top&quot;|
11140 *[[Computer animation]]
11141 **[[Multi-Sketch|Multi-Sketching]]
11142 **[[skeletal animation]]
11143 **[[Morph target animation]]
11144 **[[Cel-shaded animation]]
11145 **[[Onion skinning]]
11146 **[[Analog computer animation]]
11147 **[[Motion capture]]
11148 **[[Tradigital animation]]
11149
11150 | style=&quot;width:20%&quot; valign=&quot;top&quot;|
11151 *[[Stop-motion animation]]
11152 **[[Cutout animation]]
11153 **[[claymation]]
11154 **[[Pixilation]]
11155 **[[Pinscreen animation]]
11156 **[[Puppetoon]]
11157
11158 | style=&quot;width:20%&quot; valign=&quot;top&quot;|
11159 *[[Drawn on film animation]]
11160 *[[Special effects animation]]
11161 |}
11162
11163 ==Branch pages==
11164 * [[Computer animation]]
11165 * [[Computer generated imagery]]
11166 * [[Traditional animation]]
11167 * [[Animated cartoon]]
11168 * [[Motion capture]]
11169 * [[Avar (animation variable)]]
11170 * [[Wire frame model]]
11171 * [[Animated series]]
11172 * [[Japanese Animation|Anime]] (Japanese animation)
11173 * [[List of animation studios]]
11174 * [[Famous names in animation]]
11175
11176 ==See also==
11177 * [[List of film-related topics|List of motion picture topics]]
11178 * [[List of movie genres]]
11179
11180 ==Further Readings==
11181 *[[Frank Thomas]] and [[Ollie Johnston]], [[The_Illusion_Of_Life|Disney animation: The Illusion Of Life]], Abbeville 1981
11182 *Walters Faber, Helen Walters, Algrant (Ed.), ''Animation Unlimited: Innovative Short Films Since 1940'', HarperCollins Publishers 2004
11183 *Trish Ledoux, Doug Ranney, Fred Patten (Ed.), ''Complete Anime Guide: Japanese Animation Film Directory and Resource Guide'', Tiger Mountain Press 1997
11184 *The Animator's Survival Kit, Richard Williams
11185 *Animation Script to Screen, Shamus Culhane
11186 *The Animation Book, Kit Laybourne
11187
11188 ==External links==
11189 &lt;!-- These links need annotation to distinguish the true reference sites
11190 from the ones merely using Wikipedia to drive business to their ad-supported site --&gt;
11191 {{commons|Animation}}
11192 * [http://mag.awn.com/index.php?ltype=search&amp;sval=jean%20ann%20wright Writing for Animation]
11193 * [http://www.awn.com/mag/issue3.2/3.2pages/3.2student.html Animating Under the Camera]
11194 * [http://academic.evergreen.edu/curricular/eat/handouts/Pictures/CutSandPaintRules.pdf Experimental Animation Techniques]
11195 * [http://www.abc.net.au/arts/strange/workshop/style.htm Drawn Under-Camera Style Animation]
11196 * [http://www.mattworld.2ya.com Matt World - Web-based animations from animator Matt Greenwood]
11197 * [http://www.keyframeonline.com Keyframe - the Animation Resource]
11198 * [http://www.nftsanimation.org The Animation Department of the National Film and Television School UK ]
11199 * [http://www.animationnation.com Animation Nation - a forum for professional animators]
11200 * [http://www.public.iastate.edu/~rllew/chronint.html Chronology of Animation]
11201 * [http://www.fh-wuerzburg.de/petzke/zagreb.html Zagreb Film]
11202 * [http://www.safcakovec.com/ SAF], [[Cakovec|&amp;#268;akovec]] school of animation
11203 * [http://www.dmoz.org/Arts/Animation/ Animation Directory]
11204 * [http://www.toonopedia.com Don Markenstein's Toonopedia]
11205 * [http://www.bcdb.com/ Big Cartoon Database]
11206 * [http://www.goldenagecartoons.com/ Golden Age of Cartoons]
11207 * [http://www.saunalahti.fi/animato Hints and tips for the animation hobbyist]
11208 * [http://www.acmeanimation.org ACME Animation]
11209 * [http://www.awn.com Animation World Network]
11210 * [http://www.animationarena.com/principles-of-animation.html 28 Principles of Animation]
11211 * [http://www.animationmeat.com Animationmeat.com - Notes Model Sheets and Reference material by Professional Animators]
11212 * [http://www.writer2001.com/animtech.htm Media &amp; Techniques in Animation]
11213
11214
11215 [[Category:Animation|Animation]]
11216 [[Category:Film]]
11217
11218 [[bs:Animacija]]
11219 [[cs:AnimovanÃŊ film]]
11220 [[de:Animation]]
11221 [[eo:animacio]]
11222 [[es:AnimaciÃŗn]]
11223 [[et:Animatsioon]]
11224 [[fa:ŲžŲˆÛŒØ§Ų†Ų…ایی]]
11225 [[fi:Animaatio]]
11226 [[fr:Animation]]
11227 [[gl:Cine de animaciÃŗn]]
11228 [[he:אנימ×Ļיה]]
11229 [[hu:AnimÃĄciÃŗ]]
11230 [[it:Cartone animato]]
11231 [[ja:ã‚ĸãƒ‹ãƒĄãƒŧã‚ˇãƒ§ãƒŗ]]
11232 [[ko:ė• ë‹ˆëŠ”ė´ė…˜]]
11233 [[lv:Multiplikācija]]
11234 [[mk:АĐŊиĐŧĐ°Ņ†Đ¸Ņ˜Đ°]]
11235 [[nl:Animatie]]
11236 [[pl:Film animowany]]
11237 [[pt:AnimaçÃŖo]]
11238 [[ru:МŅƒĐģŅŒŅ‚иĐŋĐģиĐēĐ°Ņ†Đ¸Ņ]]
11239 [[simple:Animation]]
11240 [[sq:Animation]]
11241 [[sv:Animering]]
11242 [[th:āšā¸­ā¸™ā¸´āš€ā¸Ąā¸Šā¸ąā¸™]]
11243 [[zh:动į”ģ]]</text>
11244 </revision>
11245 </page>
11246 <page>
11247 <title>Apollo</title>
11248 <id>594</id>
11249 <revision>
11250 <id>41703674</id>
11251 <timestamp>2006-03-01T04:13:14Z</timestamp>
11252 <contributor>
11253 <username>Tom Lougheed</username>
11254 <id>450264</id>
11255 </contributor>
11256 <minor />
11257 <comment>fixed typeo</comment>
11258 <text xml:space="preserve">{{otheruses}}
11259 [[Image: Statue of Apollo.jpg|thumb|200px|right|Statue of Apollo at the [[British Museum]].]]
11260
11261 In [[Greek mythology|Greek]] and [[Roman mythology]], '''Apollo''' ([[Greek language|Greek]]: &amp;#913;&amp;#960;&amp;#972;&amp;#955;&amp;#955;&amp;#969;&amp;#957;, '''''ApÃŗll&amp;#333;n'''''; or &amp;Alpha;&amp;pi;&amp;epsilon;&amp;lambda;&amp;lambda;&amp;omega;&amp;nu;, ''Apell&amp;#333;n'') was a god of light, healing and poetry. Apollo was the son of [[Zeus]] and [[Leto]], and the twin brother of [[Artemis]], goddess of the hunt. As the prophetic deity of the [[Delphic Sibyl|Delphic Oracle]], Apollo was one of the most important and many-sided of the [[Twelve Olympians|Olympian deities]]. In [[Etruscan mythology]], he was known as [[Aplu]].
11262
11263 In later times, Apollo became partly confused or equated with [[Helios]], [[solar deity|god of the sun]], and his sister similarly equated with [[Selene]], [[lunar deity|god of the moon]], particularly in religious contexts. However, Apollo and Helios remained separate beings in literary and mythological texts.
11264
11265 ==Domains and symbols==
11266 [[Image:Apollo II (Greek Mythology).jpg|thumb|left|200px|Apollo, the son of [[Zeus]] and the mortal [[Leto]].]]
11267
11268 Apollo was considered to have dominion over disease, beauty, light, healing, [[colony|colonists]], [[medicine]], [[archery]], [[poetry]], [[prophecy]], [[dance]], [[reason]], [[intellectualism]], and [[shaman]]s, and was the patron defender of herds and flocks.
11269
11270 Apollo's most common attributes were the lyre and the bow. Other attributes of his included the [[kithara]] (an advanced version of the common [[lyre]]) and [[plectrum]]. Another common emblem was the sacrificial tripod, representing his prophetic powers. The [[Pythian Games]] were held in Apollo's honor every four years at [[Delphi]]. The [[laurel tree|laurel]] bay plant was used in expiatory sacrifices and in making the crown of victory at these games. The palm-tree was also sacred to Apollo because he had been born under one in [[Delos]]. Animals sacred to Apollo included wolves, dolphins and roe, swans and grasshoppers (symbolizing music and song), hawks, ravens, crows and snakes (referencing Apollo's function as the god of prophecy), mice, and [[griffin]]s, mythical eagle-lion hybrids of Eastern origin.
11271
11272 As god of colonization, Apollo gave guidance on colonies, especially during the height of colonization, [[750 BC|750&amp;ndash;550 BC]]. According to Greek tradition, he helped [[Crete|Cretan]] or [[Arcadia]]n colonists find the city of Troy. However, this story may reflect a cultural influence which had the reverse direction: [[Hittites|Hittite]] [[Cuneiform script|cuneiform]] texts mention a Minor Asian god called ''Appaliunas'' or ''Apalunas'' in connection with the city of ''Wilusa'', which is now regarded as being identical with the Greek [[Troy|Illios]] by most scholars. In this interpretation, Apollo’s title of ''Lykegenes'' can simply be read as &quot;born in Lycia&quot;, which effectively severs the god's supposed link with wolves (possibly a [[folk etymology]]).
11273
11274 Apollo popularly (e.g., in [[literary criticism]]) represents harmony, order, and reasons&amp;mdash;characteristics contrasted with those of [[Dionysus]], god of wine, who popularly represents emotion and disorder. The contrast between the roles of these gods is reflected in the adjectives ''[[Apollonian]]'' and ''[[Dionysian]]''. However, the Greeks thought of the two qualities as complementary: the two gods are brothers, and when Apollo at winter left for Hyperborea, he would leave the Delphi Oracle to Dionysus.
11275
11276 ==Worship==
11277 Apollo had a famous [[oracle]] in [[Delphi]], and other notable ones in [[Clarus]] and [[Branchidae]]. Apollo is known as the leader of the [[Muse]]s ('''''musagetes''''') and director of their choir. Hymns sung to Apollo were called [[Paean]]s.
11278
11279 The Roman worship of Apollo was adopted from the Greeks. There is a tradition that the Delphic oracle was consulted as early as the period of the [[Roman Kingdom|kings]] during the reign of [[Tarquinius Superbus]]. In [[430]], a temple was dedicated to Apollo on the occasion of a pestilence. During the [[Second Punic War]] in [[212]], the Ludi Apollinares were instituted in his honor. In the time of [[Augustus]], who considered himself under the special protection of Apollo and was even said to be his son, His worship developed and he became one of the chief gods of Rome. After the [[battle of Actium]], Augustus enlarged his old temple, dedicated a portion of the spoils to him, and instituted quinquennial games in his honour. He also erected a new temple on the Palatine hill and transferred the secular games, for which Horace composed his ''Carmen Saeculare'', to Apollo and [[Diana]].
11280
11281 The chief festivals held in honour of Apollo were the [[Carneia]], [[Daphnephoria]], [[Delia]], [[Hyacinthia]], [[Pyanepsia]], [[Pythia]] and [[Thargelia]]. The [[Ludi Apollinares]] were solemn games held to honor him.
11282
11283 The worship of Apollo has returned with the rise of [[revivalism|revivalist]] [[Hellenic polytheism]], and the contemporary Pagan movement. One example of this revival is the group [http://winterscapes.com/kyklosapollon Kyklos Apollon]. Also, together with Athena, Apollo (under the name Phevos) was controversially designated as a mascot of the 2004 Summer Olympics in Athens.
11284
11285 ==Etymology==
11286 The name ''Apollo'' might have been derived from a Pre-Hellenic compound ''Apo-ollon'',{{fact}} likely related to an archaic verb ''Apo-ell-'' and literally meaning &quot;he who elbows off&quot;, that is &quot;the Dispelling One.&quot; Indeed, he seems to have personified dispelling power, which would relate to his association with the darkness-dispelling power of the morning sun and the conceived power of reason and prophecy to dispel doubt and ignorance.
11287 In addition:
11288
11289 * The apparent expelling character of city walls and doorways as bulwarks against trespassers
11290 * The people-dispelling nature of disembarkations and [[expatriation]]s to colonies
11291 * The disease-dispelling character of healing
11292 * The predator-dispelling character of a shepherd tending his flocks
11293 * The pest-dispelling nature of a farmer growing crops
11294 * The power of music and the arts to dispel discord and [[barbary]]
11295 * The highly important power of fit and skilled young men to dispel intruders and invading armies
11296 * The ability of foresight into the future
11297
11298 An explanation given by [[Plutarch]] in ''[[Moralia]]'' is that Apollon signified a [[unity]], since ''pollon'' meant &quot;many,&quot; and the [[prefix]] ''a-'' was a negative. Thus, Apollon could be read as meaning &quot;deprived of multitude.&quot; Apollo was consequently associated with the [[monad]].
11299
11300 [[Hesychius]] connects the name Apollo with the Doric &amp;alpha;&amp;pi;&amp;epsilon;&amp;lambda;&amp;lambda;&amp;alpha;, which means assembly, so that Apollo would be the god of political life, and he also gives the explanation &amp;sigma;&amp;eta;&amp;kappa;&amp;omicron;&amp;sigmaf; (&quot;fold&quot;), in which case Apollo would be the god of flocks and herds.
11301
11302 [[Image:Apollonmosaic.jpg|thumb|366px|right|Apollo with a radiant [[halo]] in a Roman floor mosaic, [[El Djem]], Tunisia, lare 2nd century]]
11303
11304 == Apollo in art ==
11305 In art, Apollo is usually depicted as a handsome beardless young man and often with a lyre or bow in hand. In the late 2nd century floor mosaic from [[El Djem]], Roman Thysdrus, (''illustration, right''), he is identifiable as [[Helios|Apollo Helios]] by his effulgent halo, though now even a god's divine nakedness is concealed by his cloak, a mark of increasing conventions of modesty in the later Empire. Anther haloed Apollo in mosaic, from Hadrumentum, is in the museum at Sousse [http://www.tunisiaonline.com/mosaics/mosaic05b.html].The conventions of this representation, head tilted, lips slightly parted, large-eyed, curling hair cut in locks grazing the neck, were developed in the 3rd century BCE to depict [[Alexander the Great]] (Bieber 1964, Yalouris 1980). Some time after this mosaic was executed, the earliest depictions of Christ will be beardless and haloed.
11306
11307 == Appellations ==
11308 [[Epithet]]s applied to Apollo include:
11309 *'''Phoebus''' (&quot;shining one&quot;), for Apollo in the context of the god of light
11310 *'''Smintheus''' (&quot;mouse-catcher&quot;) and '''Parnopius''' (&quot;grasshopper&quot;), as god of the plague and defender against rats and locusts.
11311 *'''Delphinios''' (&quot;delphinian&quot;), meaning &quot;of the womb&quot;, associating Apollo with ''Delphoi'' ([[Delphi]]). An [[aitiology]] in the [[Homeric hymns]] connects the epitheton to [[dolphin]]s.
11312 *'''Archegetes''', (&quot;director of the foundation&quot;) for colonies.
11313 *'''Musagetes''' (&quot;leader of the [[muses]]&quot;).
11314 *'''Pythios''' (&quot;Pythian&quot;) at [[Delphi]]
11315 *'''Apotropaeus''' (&quot;he who averts evil&quot;)
11316 *'''Nymphegetes''' (&quot;[[nymph]]-leader&quot;)
11317 *'''Lyceios''' and '''Lykegenes''' (&quot;wolfish&quot; or &quot;of [[Lycia]],&quot; where some postulate his cult originated)
11318 *'''Nomios''' (&quot;wandering&quot;), as the pastoral shepherd-god
11319 *'''Klarios''' from Doric ''klaros'' &quot;allotment of land&quot;, for his supervision over cities and colonies.
11320 *'''Kynthios''' is another epithet, stemming from his birth on Mt. [[Cynthus]]
11321 *'''Loxias''' (&quot;the obscure&quot;), as Apollo a god of prophecy specifically.
11322 *'''Argurotoxos''', (&quot;with the silver bow&quot;) for archery.
11323 *'''Aphetoros''', (&quot;god of the bow&quot;) for archery.
11324 *'''Alexikakos''', (&quot;restrainer of evil&quot;), as Apollo the healer.
11325 *'''Akesios''' or '''Iatros''', &quot;healer&quot;
11326
11327 == Birth ==
11328
11329 When [[Hera]] discovered that Leto was pregnant and that Hera's husband, Zeus, was the father, she banned Leto from giving birth on &quot;terra-firma&quot;, or the mainland, or any island at sea. In her wanderings, Leto found the newly created floating island of [[Delos]], which was neither mainland nor a real island, and gave birth there. The island was surrounded by swans. Afterwards, Zeus secured Delos to the bottom of the ocean. This island later became sacred to Apollo. Alternatively, Hera kidnapped [[Ilithyia]], the goddess of childbirth, to prevent Leto from going into labor. The other gods tricked Hera into letting her go by offering her a necklace, nine yards long, of amber. Either way, Artemis was born first and then assisted with the birth of Apollo. Another version states that Artemis was born one day before Apollo, on the island of [[Ortygia]] and that she helped Leto cross the sea to Delos the next day to give birth to Apollo. Apollo was born on the 7th day (&amp;eta;&amp;#788;&amp;beta;&amp;delta;&amp;omicron;&amp;mu;&amp;alpha;&amp;gamma;&amp;epsilon;&amp;nu;&amp;eta;&amp;sigmaf;) of the month Thargelion according to Delian tradition or of the month Bysios according to Delphian tradition. The 7th and 20th, the days of the new and full moon, were ever afterwards held sacred to him.
11330
11331 == Youth ==
11332 In his youth, Apollo killed the vicious dragon [[Python (mythology)|Python]], which lived in [[Delphi]] beside the [[Castalian Spring]], according to some because Python had attempted to rape Leto while she was pregnant with Apollo and Artemis.This was the spring which emitted vapors that caused the [[Oracle]] at Delphi to give her prophesies. Apollo killed Python but had to be punished for it, since Python was a child of [[Gaia (mythology)|Gaia]].
11333
11334 == Apollo and Admetus ==
11335 When Zeus struck down Apollo's son, [[Asclepius]], with a lightning bolt for resurrecting the dead (and thus stealing [[Hades]]'s subjects), Apollo in revenge killed the [[Cyclops]], who had fashioned the bolt for Zeus. Apollo would have been banished to [[Tartarus]] forever, but was instead sentenced to one year of hard labour as punishment, thanks to the intercession of his mother, [[Leto]]. During this time he served as shepherd for [[Admetus|King Admetus]] of [[Pherae]] in [[Thessaly]]. Admetus treated Apollo well, and, in return, the god conferred great benefits on Admetus.
11336
11337 Apollo helped Admetus win [[Alcestis]], the daughtor of [[Pelias|King Pelias]] and later convinced the [[Moirae|Fates]] to let Admetus live past his time if another took his place. But when it came time for Admetus to die, his elderly parents, whom he had assumed would gladly die for him, refused to cooperate. Instead, Alcestis took his place, but [[Heracles]] managed to &quot;persuade&quot; [[Thanatos]], the god of death, to return her to the world of the living.
11338
11339 == Apollo during the [[Trojan War]] ==
11340
11341 Apollo shot arrows infected with the plague into the Greek encampment during the [[Trojan War]] in rage because the Greeks had kidnapped Chryseis, the daughter of Apollo's priest. He demanded her return, and the Greeks eventually complied.
11342
11343 When [[Diomedes]] injured [[Aeneas]] during the [[Trojan War]], Apollo rescued him. First, [[Aphrodite]] tried to rescue Aeneas but Diomedes injured her as well. Aeneas was then enveloped in a cloud by [[Apollo (god)|Apollo]], who took him to [[Pergamos (troy)|Pergamos]], a sacred spot in [[Troy]]. [[Artemis]] healed Aeneas there.
11344
11345 Apollo had aided Paris in the killing of [[Achilles]], if Paris did not accomplish the task himself.
11346
11347 == Niobe ==
11348
11349 A Queen of [[Thebes (Greece)|Thebes]] and wife of [[Amphion]], [[Niobe]] boasted of her superiority to Leto because she had fourteen children ([[Niobids]]), seven male and seven female, while Leto had only two. Apollo killed her sons as they practiced athletics, with the last begging for his life, and Artemis her daughters. Apollo and Artemis used poisoned arrows to kill them, though according to some versions of the myth, a number of the Niobids were spared ([[Chloris]], usually). Amphion, at the sight of his dead sons, either killed himself or was killed by Apollo after swearing revenge. A devastated Niobe fled to [[Mt. Siplyon]] in [[Asia Minor]] and turned into stone as she wept. Her tears formed the river [[Achelous]]. Zeus had turned all the people of Thebes to stone and so no one buried the Niobids until the ninth day after their death, when the gods themselves entombed them.
11350
11351 == Apollo's romantic life and children ==
11352
11353 ===Female lovers===
11354 Apollo chased the nymph [[Daphne]], daughter of [[Peneus]], who had scorned him. His infatuation was caused by an arrow from [[Eros (god)|Eros]], who was jealous because Apollo had made fun of his archery skills. Eros also claimed to be irritated by Apollo's singing. Simultaneously, however, Eros had shot a hate arrow into Daphne, causing her to be repulsed by Apollo. Following a spirited chase by Apollo, Daphne prayed to Mother earth (alternatively, her father- a river god) to help her and he changed her into a Laurel tree, which became sacred to Apollo.
11355
11356 Apollo had an affair with a mortal princess named [[Leucothea]], daughter of [[Orchamus]] and sister of [[Clytia]]. Leucothea loved Apollo who disguised himself as Leucothea's mother to gain entrance to her chambers. Clytia, jealous of her sister because she wanted Apollo for herself, told Orchamus the truth, betraying her sister's trust and confidence in her. Enraged, Orchamus ordered Leucothea to be buried alive. Apollo refused to forgive Clytia for betraying his beloved, and a grieving Clytia wilted and slowly died. Apollo changed her into an incense plant, either heliotrope or sunflower, which follows the sun every day.
11357
11358 [[Marpessa]] was kidnapped by [[Idas]] but was loved by Apollo as well. [[Zeus]] made her choose between them, and she chose Idas on the grounds that Apollo, being immortal, would tire of her when she grew old.
11359
11360 [[Castalia]] was a [[nymph]] whom Apollo loved. She fled from him and dived into the spring at Delphi, at the base of [[Mt. Parnassos]], which was then named after her. Water from this spring was sacred; it was used to clean the Delphian temples and inspire poets.
11361
11362 By [[Cyrene (mythology)|Cyrene]], Apollo had a son named [[Aristaeus]], who became the patron god of cattle, [[fruit trees]], hunting, husbandry and [[bee-keeping]]. He was also a [[culture-hero]] and taught humanity dairy skills and the use of nets and traps in hunting, as well as how to cultivate olives.
11363
11364 With [[Hecuba]], wife of King [[Priam]] of [[Troy]], Apollo had a son named [[Troilius]]. An [[oracle]] prophesied that Troy would not be defeated as long as Troilius reached the age of twenty alive. He and his sister, [[Polyxena]] were ambushed and killed by [[Achilles]].
11365
11366 Apollo also fell in love with [[Cassandra]], daughter of Hecuba and Priam, and Troilius' half-sister. He promised Cassandra the gift of prophecy to seduce her, but she rejected him afterwards. Enraged, Apollo indeed gifted her with the ability to know the future, with a curse that no one would ever believe her.
11367
11368 [[Coronis]], daughter of [[Phlegyas]], King of the [[Lapiths]], was another of Apollo's liaisons. Pregnant with [[Asclepius]], Coronis fell in love with [[Ischys]], son of [[Elatus]]. A crow informed Apollo of the affair. When first informed he disbelieved the crow and turned all crows black (where they were previously white) as a punishment for speading untruths. When he found out the truth he sent his sister, Artemis, to kill Coronis. As a result he also made the crow sacred and gave them the task of announcing important deaths. Apollo rescued the baby and gave it to the [[centaur]] [[Chiron]] to raise. Phlegyas was irate after the death of his daughter and burned the Temple of Apollo at Delphi. Apollo then killed him for what he did.
11369
11370 ===Male lovers===
11371 [[Image:Hyacinthus.jpg|thumb|250px|'''Apollo and Hyacinthus'''&lt;br&gt;Jacopo Caraglio; 16th c. Italian engraving]]
11372
11373 Apollo, the eternal beardless [[kouros]] himself, had the most male lovers of all the [[Greek gods]]. That was to be expected from a god who was god of the [[palaestra]], the athletic gathering place for youth who all competed [[Nudity in sport|in the nude]], a god said to represent the ideal educator and therefore the ideal [[erastes]], or lover of a boy (Sergent, p.102). All his lovers were younger than him, in the style of the [[Pederasty in ancient Greece|Greek pederastic relationships]] of the time. Many of Apollo's young beloveds died &quot;accidentally&quot;, a reflection on the function of these myths as part of [[rite of passage|rites of passage]], in which the youth died in order to be reborn as an adult.
11374
11375 [[Hyacinth (mythology)|Hyacinth]] was one of his male lovers. Hyacinthus was a [[Sparta|Spartan]] prince, beautiful and athletic. The pair were practicing throwing the [[discus]] when Hyacinthus was struck in the head by a discus blown off course by [[Zephyrus]], who was jealous of Apollo and loved Hyacinthus as well. When Hyacinthus died, Apollo is said in some accounts to have been so filled with grief that he cursed his own immortality, wishing to join his lover in mortal death. Out of the blood of his slain lover Apollo created the [[hyacinth (flower)|hyacinth flower]] as a memorial to his death, and his tears stained the flower petals with ''ÎŦί'' ''ÎŦί'', meaning alas. The Festival of Hyacinthus was a celebration of Sparta.
11376
11377 One of his other liaisons was with [[Acantha]], the spirit of the [[Acanthus (genus)|acanthus]] tree. Upon his death, he was transformed into a sun-loving herb by Apollo, and his bereaved sister, Acanthis, was turned into a thistle finch by the other gods.
11378
11379 Another male lover was [[Cyparissus]], a descendant of [[Heracles]]. Apollo gave the boy a tame deer as a companion but Cyparissus accidentally killed it with a [[javelin]] as it lay asleep in the undergrowth. Cyparissus asked Apollo to let his tears fall forever. Apollo turned the sad boy into a [[Cupressaceae|cypress]] tree, which was said to be a sad tree because the sap forms droplets like tears on the trunk.
11380
11381 == Apollo and the Birth of [[Hermes]] ==
11382
11383 Hermes was born on [[Mount Kyllini|Mount Cyllene]] in Arcadia. The story is told in the [[Homeric Hymn]] to [[Hermes]]. His mother, [[Maia]], had been secretly impregnated by [[Zeus]], in a secret affair. Maia wrapped the infant in blankets but Hermes escaped while she was asleep. Hermes ran to [[Thessaly]], where Apollo was grazing his cattle. The infant Hermes stole a number of his cows and took them to a cave in the woods near [[Pylos]], covering their tracks. In the cave, he found a [[tortoise]] and killed it, then removed the insides. He used one of the cow's intestines and the tortoise shell and made the first [[lyre]]. Apollo complained to Maia that her son had stolen his cattle, but Hermes had already replaced himself in the blankets she had wrapped him in, so Maia refused to believe Apollo's claim. Zeus intervened and, claiming to have seen the events, sided with Apollo. Hermes then began to play music on the lyre he had invented. Apollo, a god of music, fell in love with the instrument and offered to allow exchange the cattle for the lyre. Hence, Apollo became a master of the lyre and Hermes invented a kind of pipes-instrument called a [[syrinx]].
11384
11385 Later, Apollo exchanged a [[caduceus]] for a [[syrinx]] from Hermes.
11386
11387 == Other stories ==
11388
11389 === Musical contests ===
11390
11391 ==== [[Pan (mythology)|Pan]] ====
11392
11393 Once Pan had the audacity to compare his music with that of Apollo, and to challenge Apollo, the god of the [[lyre]], to a trial of skill. [[Tmolus]], the mountain-god, was chosen to umpire. Pan blew on his pipes, and with his rustic melody gave great satisfaction to himself and his faithful follower, [[Midas]], who happened to be present. Then Apollo struck the strings of his lyre. Tmolus at once awarded the victory to Apollo, and all but Midas agreed with the judgment. He dissented, and questioned the justice of the award. Apollo would not suffer such a depraved pair of ears any longer, and caused them to become the ears of a [[donkey]].
11394
11395 ==== [[Marsyas]] ====
11396 [[Image:The Flaying of Marsyas.jpg|thumb|230px|''The Flaying of Marsyas'' by [[Titian]], c.1570-76.]]
11397 Marsyas was a [[satyr]] who challenged Apollo to a contest of music. He had found an [[aulos]] on the ground, tossed away after being invented by [[Athena]] because it made her cheeks puffy. Marsyas lost and was [[flaying|flayed]] alive in a cave near [[Calaenae]] in [[Phrygia]] for his [[hubris]] to challenge a god. His blood turned into the river Marsyas.
11398
11399 Another variation is that Apollo played his instrument (the lyre) upside down. Marsyas could not do this with his instrument (the flute), and so Apollo hung him from a tree and flayed him alive. [taken from ''MAN MYTH &amp; MAGIC'' by Richard Cavendish]
11400
11401 === Miscellaneous ===
11402
11403 When Zeus killed [[Asclepius]] for raising the dead and violating the natural order of things, Apollo killed the [[Cyclopes]] in response. They had fashioned Zeus' thunderbolts, which he used to kill Apollo's son, Asclepius. As punishment, he was condemned by Zeus to year's servitude to King Admetus.
11404
11405 Apollo gave the order, through the Oracle at Delphi, for [[Orestes (mythology)|Orestes]] to kill his mother, [[Clytemnestra]], and her lover, [[Aegisthus]]. Orestes was punished fiercely by the [[Erinyes]] for this crime.
11406
11407 In the [[Odyssey]], [[Odysseus]] and his surviving crew landed on an island sacred to Helios the sun god, where he kept sacred cattle. Though Odysseus warned his men not to (as [[Tiresias]] and [[kirke]] had told him), they killed and ate some of the cattle and Helios had [[Zeus]] destroy the ship and all the men save [[Odysseus]].
11408
11409 Apollo also had a [[lyre]]-playing contest with [[Cinyras]], his son, who committed suicide when he lost.
11410
11411 Apollo killed the [[Aloadae]] when they attempted to storm [[Mt. Olympus]].
11412
11413 It was also said that Apollo rode on the back of a swan to the land of the [[Hyperboreans]] during the winter months, a swan that he also lent to his beloved Hyacinthus to ride.
11414
11415 Apollo turned [[Cephissus]] into a [[sea monster]].
11416
11417 '''Consorts/Children'''
11418
11419 # Male Beloveds
11420 ## [[Acantha]]
11421 ## [[Cyparissus]]
11422 ## [[Hyacinth (mythology)|Hyacinth]]
11423 ## [[Hymenaeus]]
11424 # Female Lovers
11425 ## [[Arsinoe (mythology)|Arsinoe]]
11426 ### [[Asclepius]]
11427 ## [[Cassandra]]
11428 ## [[Calliope]]
11429 ### [[Linus]]
11430 ### [[Orpheus]]
11431 ## [[Chione]]
11432 ### [[Philammon]]
11433 ## [[Coronis]]
11434 ### [[Asclepius]]
11435 ## [[Cyrene (mythology)|Cyrene]]
11436 ### [[Aristaeus]]
11437 ## [[Daphne]]
11438 ## [[Dryope]]
11439 ### [[Amphissus]]
11440 ## [[Hecuba]]
11441 ### [[Troilius]]
11442 ### [[Polyxena]]
11443 ## [[Leucothea]]
11444 ## [[Manto (Greek mythology)|Manto]]
11445 ### [[Mopsus]]
11446 ## [[Psamathe]]
11447 ### [[Linus]]
11448 ## [[Rhoeo]]
11449 ### [[Anius]]
11450 ## [[Terpsichore]]
11451 ### [[Linus]]
11452 ## Unknown Mother
11453 ### [[Cinyras]]
11454 ### [[Cycnus]]
11455 ### [[Phemonoe]]
11456 ## [[Urania]]
11457 ### [[Linus]]
11458
11459 == Spoken-word myths - audio files ==
11460 {| border=&quot;1&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot;
11461 |-
11462 ! style=&quot;background:#ffdead;&quot; | Apollo Myths as told by story tellers
11463 |-
11464 |[[Media:Apollo and Hyacinth - wiki.ogg|1. ''Apollo and Hyacinthus,'' read by Timothy Carter]]
11465 |-
11466 |'''Bibliography of reconstruction:''' [[Homer]], ''Illiad'' ii.595 - 600 (c. 700 BC); Various 5th century BC vase paintings; [[Palaephatus]], ''On Unbelievable Tales'' 46. Hyacinthus (330 BC); [[Apollodorus]], ''Library'' 1.3.3 (140 BC); [[Ovid]], ''Metamorphoses'' 10. 162-219 (AD 1 - 8); [[Pausanias (geographer)|Pausanias]], ''Description of Greece'' 3.1.3, 3.19.4 (AD 160 - 176); [[Philostratus the Elder]], ''Images'' i.24 Hyacinthus (AD 170 - 245); [[Philostratus the Younger]], ''Images'' 14. Hyacinthus (AD 170 - 245); [[Lucian]], ''Dialogues of the Gods'' 14 (AD 170); [[First Vatican Mythographer]], 197. Thamyris et Musae
11467 |-
11468 |}
11469
11470 ==Apollo in popular culture==
11471 In the ''[[Star Trek]]'' episode &quot;[[Who Mourns for Adonis?]]&quot; a man claiming to be Apollo is seen on a [[Greek]]-themed planet that [[Captain Kirk]], [[Pavel Chekov]], [[Mr. Spock]], and [[Dr. McCoy]] arrive on.
11472
11473 In the ''[[Battlestar_Galactica|Battlestar Galactica]]'' series, one of the main characters is given the call-sign of Apollo.
11474
11475 The song &quot;[[Cygnus X-1 Book II: Hemispheres]]&quot; by [[Rush (band)|Rush]] is about the struggle between the champions of the two Hemispheres, Apollo, the God of Reason, and [[Dionysus]], the God of Love. The song appears of the [[1978]] album ''[[Hemispheres (1978 album)|Hemispheres]]''.
11476
11477 In the sixties, [[NASA]] named its [[Apollo program|Apollo Lunar program]] because Apollo was considered the god of all wisdom. Many people mistakenly believe that the rockets that carried astronauts to the Moon were called Apollo rockets; they were [[Saturn V]] rockets.
11478
11479 == References ==
11480 * [[F. L. W. Schwartz]], ''De antiquissima Apollinis Natura'' (Berlin, 1843)
11481 * [[J. A. SchÃļnborn]], ''Über das Wesen Apollons'' (Berlin, 1854)
11482 * [[Arthur Milchhoefer]], ''Über den attischen Apollon'' (Munich, 1873)
11483 * [[Theodor Schreiber]], ''Apollon Pythoktonos'' (Leipzig, 1879)
11484 * [[W. H. Roscher]], ''Studien zur vergleichenden Mythologie der Griechen und Romer'', i. (Leipzig, 1873)
11485 * [[R. Hecker]], ''De Apollinis apud Romanos Cultu'' (Leipzig, 1879)
11486 * [[Gaston Colin]], ''Le Culte d'Apollon pythien à Athènes'' (1905)
11487 * [[Louis Dyer]], ''Studies of the Gods in Greece'' (1891)
11488 * articles in [[Pauly-Wissowa]]'s ''Realencyclopädie'', W. H. Roscher's ''Lexikon der Mythologie'', and [[Daremberg]] and [[Saglio]]'s ''Dictionnaire des antiquitÊs''
11489 * [[L. Preller]], ''Griechische und romische Mythologie'' (4th ed. by [[C. Robert]])
11490 * [[J. Marquardt]], ''RÃļmische Staalsverwaltung'', iii.
11491 * [[G. Wissowa]], ''Religion und Kultus der Romer'' (1902)
11492 * [[D. Bassi]], ''Saggio di Bibliografia mitologica'', i. ''Apollo'' (1896)
11493 * [[L. Farnell]], ''Cults of the Greek States'', iv. (1907)
11494 * [[O. Gruppe]], ''Griechische Mythologie und Religionsgeschichte'', ii. (1906)
11495 * {{1911}}
11496 * M. Bieber, 1964. ''Alexander the Great in Greek and Roman Art'' (Chicago)
11497 * N. Yalouris, 1980. ''The Search for Alexander'' (Boston) Exhibition.
11498
11499 2. For the iconography of the Alexander-Helios type, see H. Hoffmann, &quot;Helios,&quot; Journal of the Arnerican Research Center in Egypt 2 (1963) 117-23; cf. Yalouris, no. 42.
11500
11501 ==External links==
11502 {{commons|Apollo}}
11503 * [http://homepage.mac.com/cparada/GML/ Greek Mythology resource]
11504 * [http://www.gregoryferdinandsen.com/FCO2003/apollo.htm The Temple of Apollo, Rome]
11505 * [http://www.androphile.org/preview/Library/Mythology/Greek/ The stories of Apollo and Hyacinthus; and Apollo and Cyparissus; and Apollo and Orpheus]
11506 * [http://janusquirinus.org/essays/Apollo/MultifacetedGod.html Apollo and the Romans]
11507
11508 {{Greek myth (Olympian)2}}
11509 {{Roman myth (major)}}
11510
11511 [[Category:Greek gods]]
11512 [[Category:Roman gods]]
11513 [[Category:Solar gods]]
11514 [[Category:Pederastic heroes and deities]]
11515
11516 [[ar:ØŖبŲˆŲ„Ųˆ (ØĨŲ„Ų‡ ØĨØēØąŲŠŲ‚ŲŠ)]]
11517 [[bg:АĐŋĐžĐģĐžĐŊ]]
11518 [[ca:Apol¡lo]]
11519 [[cs:ApollÃŗn]]
11520 [[da:Apollon]]
11521 [[de:Apollon]]
11522 [[el:ΑĪ€ĪŒÎģÎģĪ‰ÎŊ]]
11523 [[es:Apolo]]
11524 [[eo:Apolono]]
11525 [[fr:Apollon]]
11526 [[gl:Apolo]]
11527 [[ko:ė•„폴론]]
11528 [[hr:Apolon]]
11529 [[it:Apollo (mitologia)]]
11530 [[he:אפולו]]
11531 [[kw:Appolyn]]
11532 [[la:Apollo]]
11533 [[lt:Apolonas]]
11534 [[hu:ApollÃŗn]]
11535 [[nl:Apollo (god)]]
11536 [[ja:ã‚ĸポロãƒŗ]]
11537 [[no:Apollon]]
11538 [[nn:Apollon]]
11539 [[pl:Apollo (mitologia)]]
11540 [[pt:Apolo (mitologia)]]
11541 [[ro:Apollo (mitologie)]]
11542 [[ru:АĐŋĐžĐģĐģĐžĐŊ (ĐŧиŅ„ĐžĐģĐžĐŗиŅ)]]
11543 [[sk:ApolÃŗn]]
11544 [[sl:Apolon]]
11545 [[sr:АĐŋĐžĐģĐžĐŊ]]
11546 [[fi:Apollon]]
11547 [[sv:Apollon]]
11548 [[vi:Apollo (tháē§n thoáēĄi)]]
11549 [[tr:Apollon]]
11550 [[uk:АĐŋĐžĐģĐģĐžĐŊ]]
11551 [[zh:é˜ŋæŗĸįŊ—]]</text>
11552 </revision>
11553 </page>
11554 <page>
11555 <title>Andre Agassi</title>
11556 <id>595</id>
11557 <revision>
11558 <id>41929306</id>
11559 <timestamp>2006-03-02T18:14:20Z</timestamp>
11560 <contributor>
11561 <ip>86.52.13.177</ip>
11562 </contributor>
11563 <comment>/* 2006 */</comment>
11564 <text xml:space="preserve">{{Infobox Tennis player
11565 |image= [[Image:Agassi Backhand.jpg|250px|Agassi Backhand]]
11566 |playername= Andre Agassi
11567 |country= [[United States]]
11568 |residence= [[Las Vegas, Nevada|Las Vegas]], [[USA]]
11569 |datebirth= [[April 29]], [[1970]]
11570 |placebirth= [[Las Vegas, Nevada|Las Vegas]], [[USA]]
11571 |height= 5'11&quot; (180 cm)
11572 |weight= 177 lbs (80 kg)
11573 |turnedpro= [[1986]]
11574 |plays= Right
11575 |grip=
11576 |careerprizemoney= $31,006,875
11577 |singlestitles= 60
11578 |highestsinglesranking= No. 1 ([[April 10]], [[1995]])
11579 |AustralianOpenresult= '''W''' (1995, 2000, 2001, 2003)
11580 |FrenchOpenresult= '''W''' (1999)
11581 |Wimbledonresult= '''W''' (1992)
11582 |USOpenresult= '''W''' (1994, 1999)
11583 |doublestitles= 1
11584 |highestdoublesranking= No. 123 ([[August 17]], [[1992]])
11585 }}
11586
11587 '''Andre Kirk Agassi''', (born [[April 29]] [[1970]], in [[Las Vegas, Nevada|Las Vegas]], [[Nevada]]) is a [[professional]] [[male]] former '''[[List of ATP number 1 ranked players|World No. 1]]''' [[tennis]] player from the [[United States]]. He has won eight [[Grand Slam (tennis)|Grand Slam]] singles titles, and is one of only five players to have won all four Grand Slam events. He is considered among the all-time great tennis players.
11588
11589 Agassi was married to the actress [[Brooke Shields]] from 1997 to 1999. Since 2001, he has been married to the former World No. 1 woman tennis player [[Steffi Graf]] and had two children.
11590
11591 ==Early life==
11592 Agassi's father, (an Armenian from Iran) Emmanuel &quot;Mike&quot; Agassian (who represented [[Iran]] in [[boxing]] at the 1948 and 1952 [[Olympic Games]] before emigrating to the [[United States]]), was intent on having a child win all four tennis Grand Slams. He called Agassi's two older siblings &quot;guinea pigs&quot; in the development of his coaching techniques. He honed Andre's eye-coordination when he was an infant by hanging tennis balls above his crib. He gave Agassi paddles and balloons when he was still in a high chair. When Agassi started playing tennis, his ball collection filled 60 garbage cans with 300 balls per can, and Agassi would hit 3,000-5,000 balls every day. When Andre was five years old, he was already practicing with pros such as [[Jimmy Connors]] and [[Roscoe Tanner]].
11593
11594 Mike Agassi learned tennis by watching tapes of champions. Mike Agassi took a very systematic approach to the physics and psychology of tennis, and still remains active in the sport. (More information can be found in Mike Agassi's book, ''The Agassi Story''.)
11595
11596 At age of 14, Andre was shipped off to teaching guru [[Nick Bollettieri]]'s Tennis Academy in [[Florida]]. He turned professional when he was 16.
11597
11598 ==Tennis career==
11599 ===1986-1997===
11600 Agassi turned professional in 1986, and won his first top-level singles title in 1987 at [[Itaparica]]. He won six further tournaments in 1988, and by December that year he had surpassed US$2 million in career prize money after playing in just 43 tournaments – the quickest player in history to do so.
11601
11602 As a young up-and-coming player, Agassi embraced a rebel image. He grew his hair to rock-star length, sported an ear-ring, and wore colorful shirts that pushed tennis' still-strict sartorial boundaries. He boasted of a cheeseburger-heavy diet and endorsed the Canon Rebel camera. &quot;Image is everything&quot; was the ad's tag line, and it became Andre's as well.
11603
11604 Strong performances on the tour meant that Agassi was quickly tipped as a future Grand Slam champion. But he began the 1990s with a series of near-misses. He reached his first Grand Slam final in 1990 at the [[French Open]], where he lost in four sets to the seasoned veteran player [[AndrÊs GÃŗmez]]. Later that year he lost in the final of the [[U.S. Open (tennis)|US Open]] to another up-and-coming teenaged star, [[Pete Sampras]]. The rivalry between these two American players was to become the dominant rivalry in tennis over the rest the of the decade. In 1991, Agassi reached his second consecutive French Open final where he faced his former Bollettieri Academy-mate [[Jim Courier]]. Courier emerged the victor in a dramatic rain-interrupted five-set final.
11605
11606 Agassi chose not to play at [[Wimbledon Championships|Wimbledon]] from 1988-90, and publicly stated that he did not wish to play there because of the event's traditionalism, particularly its &quot;predominantly-white&quot; dress code which players at the event are required to conform to. Many observers at the time speculated that Agassi's real motivation was that his strong baseline game would not be well suited to Wimbledon's [[grass court]] surface. Agassi decided to play at Wimbledon in 1991, leading to weeks of speculation in the media about what he would wear – he eventually emerged for the first round in a completely white outfit. He reached the quarter-finals on that occasion.
11607
11608 To the surprise of many, Agassi's Grand Slam breakthrough came at Wimbledon in 1992, when he beat [[Goran IvaniÅĄević]] in a tight five-set final.
11609
11610 Following wrist surgery in 1993, Agassi came back strongly in 1994 and captured the US Open, beating [[Michael Stich]] in the final. He then captured his first [[Australian Open]] title in 1995, beating Sampras in a four-set final. He won a career-high seven titles that year and he reached the World No. 1 ranking for the first time that April. He held it for 30 weeks on that occasion through to November. He compiled a career-best 26-match winning streak during the summer [[hardcourt]] circuit, which ended when he lost in the US Open final to Sampras.
11611
11612 In 1995, Agassi won seven singles titles, the biggest being the [[Australian Open]], the [[Cincinnati Masters]], the [[Miami Masters]], and the [[Canada Masters]]. In terms of win/loss record, 1995 was Agassi's best year (72/10) (includes Davis Cup). This is slightly short of Sampras's best season, 1994, in which he (Sampras) won 77 matches and lost 12.
11613 In 1996, Agassi won the men's singles Gold Medal at the [[1996 Summer Olympics|Olympic Games]] in [[Atlanta, Georgia|Atlanta]], beating [[Sergi Bruguera]] of [[Spain]] in straight sets in the final. He also repeated at the [[Cincinnati Masters]] and the [[Miami Masters]].
11614
11615 1997 was a poor year for Agassi. He won no top-level titles and his ranking sank to World No. 141 in November. His form was perhaps affected by the intense publicity surrounding his high-profile and turbulent relationship and marriage to actress Brooke Shields.
11616
11617 ===1998-2004===
11618 In 1998, Agassi rededicated himself to tennis. He shaved his balding head, began a rigorous conditioning program, and worked his way back up the rankings by playing in Challenger Series tournaments (a circuit for professional players ranked outside the world's top 50). Perhaps most remarkably, the one-time rebel emerged as a gracious and thoughtful athlete, looked up to by younger players. After winning matches, he took to bowing and blowing a two-handed kisses to spectators on each side of the court, a gesture seen as a rather humble acknowledgment of their support for him and for tennis.
11619
11620 In 1998, Agassi won five titles and leapt from No. 122 on the rankings at the start of the year, to No. 6 at the end of it, making it the highest jump into the Top 10 made by any player in tennis. He won five titles in ten finals, and finished runner-up at the [[Miami Masters]].
11621
11622 Agassi entered the history books in 1999 when he beat [[Andrei Medvedev]] in a five-set French Open final to become only the fifth male player to have won all four Grand Slam singles titles (a feat last achieved in the 1960s by [[Roy Emerson]]). He followed this up by reaching the Wimbledon final, where he lost to Sampras. He then won the US Open, beating [[Todd Martin]] in five sets in the final, and finished the year ranked the World No. 1.
11623
11624 Agassi began 2000 by capturing his second Australian Open title, beating [[Yevgeny Kafelnikov]] in a four-set final. He was the first male player to have reached four consecutive Grand Slam finals since [[Rod Laver]] achieved the Grand Slam in 1969. 2000 also saw Agassi reach the semi-finals at Wimbledon, where he lost in five sets to [[Patrick Rafter]] in a very high quality battle considered by many to be one of the best matches ever played at Wimbledon [http://news.bbc.co.uk/sport2/hi/tennis/wimbledon_history/3742067.stm]. At the inaugural [[Tennis Masters Cup]] in [[Lisbon]], Agassi made it all the way to the final after defeating [[Marat Safin]] 6-3, 6-3 in the semifinals to end the Russian's hopes to become the youngest World No. 1 in the history of tennis. Agassi eventually lost to [[Gustavo Kuerten]] 6-4, 6-4, 6-4. This loss allowed Kuerten to be crowned year end World No. 1. 2000 is considered by many of his fans to be a disappointing season for Agassi, as he managed to win only one tournament (2000 Australian Open).
11625
11626 Agassi opened 2001 by successfully defending his Australian Open title with a straight-sets final win over [[Arnaud Clement]]. At Wimbledon, he battled Rafter again in the semi-finals and lost 8-6 in the fifth set. At the US Open he lost in the quarter-finals to Sampras in what is considered to be one of tournament's all-time greatest matches. Sampras won 6-7, 7-6, 7-6, 7-6 in a match with no breaks of serve.
11627
11628 Agassi and Sampras' last duel came in the final of the US Open in 2002. The battle between the two veterans saw Sampras emerge victorious in four sets, and left Sampras with a 20-14 edge in their 34 career meetings. (The match in fact proved to be the last of Sampras' career. He did not play in an event on the professional tour again, and officially announced his retirement in 2003.) Agassi's US Open finish, along with his victories at the Miami Masters, [[Rome Masters]], and [[Madrid Masters]], helped him finish 2002 as the oldest year-end No. 2 at 32 years and 8 months.
11629
11630 In 2003, Agassi won the eighth Grand Slam title of his career at the Australian Open, where he beat [[Rainer SchÃŧttler]] in straight sets in the final. In May that year, he recaptured the World No.1 ranking to become the oldest No. 1 ranked male tennis player in history at 33 years and 13 days. He held the No. 1 ranking on that occasion for 13 weeks. At the year-end Tennis Masters Cup, he lost in the final to [[Roger Federer]] and finished the year ranked World No. 4.
11631
11632 In 2004, the 34-year-old Agassi won the [[Cincinnati Masters]] to bring his career total to 59 top-level singles titles and a record 17 ATP Masters Series titles. He became the second-oldest singles champion in Cincinnati's storied history (the tournament began in 1899), surpassed only by [[Ken Rosewall]] who won the title in 1970 at age 35.
11633
11634 Agassi has also won one doubles title (at the [[Cincinnati Masters]] in 1993, partnering [[Petr Korda]]). He is one of only five male players to have won all the Grand Slams – along with legends [[Don Budge]], [[Roy Emerson]], [[Rod Laver]] and [[Fred Perry]]. He is in fact the first male tennis player to win the four Grand Slams on four different surfaces. The previous players won the Australian Open, Wimbledon, and the US Open on grass courts and the French Open on [[clay court]]s; whereas Agassi won the Australian Open on [[Rebound Ace]], the French Open on clay, Wimbledon on grass, and the US Open on hardcourts. After winning [[French Open]] in 1999, Agassi became the first male tennis player to win the [[Career Golden Slam]]. Agassi also helped the United States win the [[Davis Cup]] in 1990 and 1992. He was named the [[BBC Sports Personality of the Year Overseas Personality|BBC Overseas Sports Personality of the Year]] in 1992. Agassi has earned more than US$30 million in prize-money throughout his career, second only to Sampras. In addition to this, he also earns over US$25 million a year through endorsements, the most by any tennis player and fourth in all sports (first place is [[Tiger Woods]] at US$70 million a year).
11635
11636 ===2005===
11637 Agassi started off 2005 with strong runs, most of which were cut short by [[Roger Federer]]. He lost to Federer in the quarterfinals of the Australian Open and the semifinals at Dubai. He reached the quarterfinals at Indian Wells after a dominant victory over Guillermo Coria, but withdrew from his match with Lleyton Hewitt with a swollen big toe. Agassi lost in the semifinals at Miami to Federer in a tight match. Although the claycourt season is the toughest on the body, Agassi played in Rome and reached the semifinals which he lost to Coria in a tough battle. At the 2005 French Open, Agassi lost to [[Jarkko Nieminem]], in their first-round match after enduring back pain related to a pinched [[sciatic nerve]]. He lost in five sets with 6-0 in the fifth. After much media speculation about retirement, the 35-year-old Agassi won in Los Angeles and made the final at Montreal before falling to world No. 2 [[Rafael Nadal]] in three long sets that he might have won if a few points had gone differently. His coach Darren Cahill and close friend and personal trainer [[Gil Reyes]] worked with Agassi throughout the summer to prepare for the [[2005 US Open]]. Agassi made a spectacular run at the Open, beating Razvan Sabau 6-3, 6-3, 6-1, [[Ivo Karlovic]] in the second round 7-6(7-4), 7-6(7-5), 7-6(7-4); [[TomÃĄÅĄ Berdych]] 3-6, 6-1, 6-4, 7-6(7-2); and [[Xavier Malisse]] 6-3, 6-4, 6-7(5-7), 4-6, 6-2. His quarterfinal match against fellow American [[James Blake]] has been called one of the best matches in US Open history. After dropping the first two sets, 3-6, 3-6, Agassi took the next two, 6-3, 6-3. In the fifth set, Blake served for the match at 5-4, but Agassi broke his serve, then won the tiebreak 8-6 to secure the victory at 1:15 a.m. He defeated [[Robby Ginepri]], another rising, talented American with a consistent baseline game, in his third consecutive five-set match to earn a spot in the final against World No. 1 [[Roger Federer]]. After losing the first set 6-3, Agassi broke Federer twice to win the second, 6-2. He broke Federer again and at this point looked to be the better player. Agassi had a 30-love lead but with a few costly errors was broken to force a tiebreak, which Federer took, 7-1. Andre ran out of gas which allowed Federer to reel off five straight games. Being down 5-0 in the fourth set, Agassi held to make it 5-1 before Federer closed it out to win the championship. After the match, Agassi thanked New York for the 20 years of memories, hinting at potential retirement. However, Agassi has made clear that he will only retire on his terms, when he feels that he cannot perform at his best on the court. He will likely continue for another year, as he has qualified for the 2005 Masters Cup (which is limited to the eight best players in the world) and is scheduled to play the lead-in tournament to the 2006 Australian Open.
11638
11639 Coming into the 2005 Masters Cup, Agassi is 29-5 on hard courts (with his only losses coming to [[Roger Federer]] and [[Rafael Nadal]]), and is 5-4 on clay (wins over Gasquet, Ljubicic, and Hrbaty, losses to Coria and Lopez).
11640
11641 In 2005, Agassi left [[Nike, Inc.|Nike]] after 17 years and signed an endorsement deal with [[Adidas]]. [http://sports.espn.go.com/sports/tennis/news/story?id=2116135]
11642
11643 Hampered by a third degree ankle injury caused by several torn ligaments, Agassi lost his opening match against Nikolay Davydenko in the Masters Cup and was forced to withdraw. The withdrawal list also included Rafael Nadal, Andy Roddick, Lleyton Hewitt, and Marat Safin.
11644
11645 ===2006===
11646
11647 Agassi withdrew from the Australian Open because of an ankle injury. Once he withdrew, he immediately requested a wildcard to enter the Delray Beach International Tennis Championships, where he eventually finished as a quarterfinalist losing to [[Guillermo Garcia Lopez]] 4-6, 2-6.
11648 He was then forced to retire from SAP Open because of a lower back injury causing him severe pain in his lower back and down his legs.
11649 He then played in the Dubai Open where he won in straight sets over [[Greg Rusedski]] in the first round before losing in straights to German [[Bjorn Phau]] in second round.
11650 Health permitting, Agassi is scheduled to play tournaments in Indian Wells and Miami to close out the winter hardcourt season. Agassi has officially said that he is skipping the entire clay season, since it burdens his body. He will do his best to be ready for Wimbledon. However, Agassi's top priority in 2006 will once again be making yet another run at the US Open in August. Expect all scheduling decisons to be made with that goal in mind.
11651
11652 ==Playing style==
11653 Agassi employs a baseline style of play, but unlike most such players, he typically makes contact with the ball ''inside'' the baseline -- exceptionally difficult even for professionals. This is possible because of his short backswing, which also helps him return fast serves. He is also blessed with the best hand and eye coordination, rivaled only by [[Roger Federer]]. [[John McEnroe]] and others have called Agassi the best service returner ever to play professional tennis.
11654
11655 After Agassi's rededication to tennis in 1998, he has focused more on physical conditioning than in the past and is now one of the fittest players on the tour. His upper-body strength allows him to [[bench press]] 350 lbs. He has remarkable endurance and rarely appears tired on court. As long as he is not injured, he handles long, grueling matches arguably better than any other player on the tour (even Roger Federer has been known to tire by the fifth set). Indeed, Agassi is often ready to start the next point when his opponent is catching his breath. One of his strategies is to wear down his opponents, continually putting pressure on them by returning the ball early and deep at angles. Agassi will try to stand in nearly one spot and hit the corners to make his opponent scramble. He will often pass up the winner and hit a slightly less aggressive shot to make his opponent run a little more to retrieve a few more shots. His penchant for running players around point after point has earned him the nickname &quot;The Punisher&quot;.
11656
11657 Agassi's biggest weakness currently is his lack of consistent speed, and players who are able to consistently hit at sharp angles with pace give him trouble. Agassi used to be one of the fastest players on tour; however, his recent injuries have forced him to consistently run his fastest selectively, usually in Grand Slams and Tennis Masters Series events. To make up for this recently-adopted weakness, Agassi generally keeps his opponent on the defense. (Federer is the only player with a long winning streak against Agassi; even Sampras lost to Agassi many times).
11658
11659 ==Personal and family life==
11660 After a four-year courtship, Agassi married actress Brooke Shields in a lavish ceremony on [[April 19]] 1997. That February, they had filed suit against ''[[The National Enquirer]]'' claiming it printed &quot;false and fabricated&quot; statements: Brooke was undergoing counseling, binge-eating and taking pills; Agassi &quot;lashed into&quot; Brooke and he and Brooke's mother &quot;tangled like wildcats&quot; when she demanded a [[prenuptial agreement|prenup]]; the case was dismissed. Agassi filed for divorce, which was granted on [[April 9]], 1999.
11661
11662 By the time the divorce was final, Agassi was dating the German tennis legend Steffi Graf. With only their mothers as witnesses, they were married at his home on [[October 22]], 2001. Their son, [[Jaden Gil Agassi|Jaden Gil]], was born 6 weeks prematurely on [[October 26]] that year. Their daughter, [[Jaz Elle Agassi|Jaz Elle]], was born on [[October 3]] [[2003]].
11663
11664 Agassi's older sister Rita married the former tennis legend [[Pancho Gonzales]]. In 1995, when Gonzales died in Las Vegas, Andre paid for his brother-in-law's funeral.
11665
11666 Andre has participated in many charity organizations, and founded the Andre Agassi Charitable Association, which assists the youth of Las Vegas. In 1995, he has won 1995's ATP Arthur Ashe's Humanitarian award in recognition of his efforts helping disadvantaged youth in LA.
11667
11668 The Andre Agassi Charitable Foundation has always and will continue to fund organizations which offer programs that consistently carry out the mission of the Foundation. The Foundation's mission is to provide educational and recreational institutions and activities for abandoned, abused, and at-risk kids. The following organizations are fine examples:
11669
11670 ===The Andre Agassi Boys &amp; Girls Club===
11671 In 1997, Agassi opened the Boys &amp; Girls Club, a 25,000-square-foot facility that features an indoor basketball court, outdoor tennis courts, a computer lab, library and teen centre. It sees as many as 400 children a day in the summer and well over 2,000 during the year.
11672
11673 Its junior tennis team, Team Agassi, includes mostly players with no previous tennis experience. As of January 2006, the team boasted four nationally ranked players as well as a number of regionally ranked players. Coached by Tim Blenkiron, the group practices regularly, attends study sessions, and often travels to play in various tournaments. The program also encourages members to respect each other and appreciate the challenges of winning and losing.
11674
11675 A basketball program, the Agassi Stars, began in 2000. Headed by Coach Jermone Riley, the Stars are required to attend study hall sessions, write to universities they might be interested in attending, and balance athletics and education.
11676
11677 The Foundation hopes to make these programs a college recruiting ground for kids with academic as well as athletic potential. In a community where drugs and gangs are prevalent forces, the Agassi Club promotes learning and gives kids a safe place to go after school.
11678
11679 == Ethnicity question ==
11680 Agassi's ethnicity, beyond being an American citizen, has been a subject of discussion by fans around the world. His father Mike Agassi is of [[Armenian people|Armenian]] and [[Assyrian people|Assyrian]] ethnicity from the state of Iran, and there have been attempts to &quot;claim&quot; Agassi by both the Armenian and Iranian communities in the United States and abroad. Agassi has often seemed somewhat ambivalent, for example, joking after his &quot;All-Armenian&quot; match against [[Sargis Sargsian]] at the US Open in 2004, &quot;Well, I'm only half-Armenian&quot; [http://www.boston.com/sports/other_sports/tennis/articles/2004/09/07/armenian_supremacy_for_agassi?mode=PF], though he agreed to appear in a [[PBS]] documentary about [http://www.wliw.org/productions/armenian.html Armenian-Americans]. His father has written in his book, ''The Agassi Story'', about his experience of being an outsider in Muslim Iran, but Andre has also shown interest in the Iranian aspect of his heritage, in February 2005 expressing a desire to visit Iran, which holds &quot;a special place&quot; in his heart.[http://www.payvand.com/news/05/feb/1171.html]
11681
11682 ==Quotes==
11683 About Pete Sampras' retirement: &quot;You grow up with a guy, you compete against him for so long, he's such a big part of your career, something that's pretty special, so you do have that sense of personal regret that he's not around any more. You miss having that around.&quot;
11684
11685 During the 2005 US Open: &quot;I've been motivated by overcoming challenge and overcoming the hurdles and obstacles that face me. There still is plenty out there to get motivated by.&quot;
11686
11687 (from [[Mats Wilander]], asked to name the top 5 tennis players of all time; he placed Agassi, Sampras, Federer, and Borg in the top 4 (in no order) and tied McEnroe, Lendl, and Connors for fifth place): ON AGASSI: “He has some limitations, like he can’t serve and volley, yet he has won all four Slams. He has a very high energy level, quite like Borg. He is on fifth gear from the very first point. There is some abnormality in his eyes, otherwise he wouldn’t have had such a phenomenal return. He sees the ball like none else and just guides it wherever he wants to. He’s just played a Grand Slam final at 35, that tells me he wasted the first five years of his career, otherwise he couldn’t have lasted this long. No one has done more to tennis than Agassi and Borg.”
11688
11689 ==Video games==
11690 * ''[[Andre Agassi Tennis]]'' for the [[SNES]], [[Sega Genesis]], [[Game Gear]], and [[Mobile phone]]
11691 * ''[[Agassi Tennis Generation]]'' for [[PlayStation 2|PS2]] and [[Game Boy Advance|GBA]]
11692 * ''[[Smash Court Pro Tournament]]'' for PS2
11693
11694 ==Grand Slam record==
11695 [[Australian Open]]
11696 *'''Singles champion: 1995, 2000, 2001, 2003
11697 *Singles semi-finalist: 1996, 2004
11698 *Singles quarter-finalist: 2005
11699
11700 [[French Open]]
11701 *'''Singles champion: 1999
11702 *Singles finalist: 1990, 1991
11703 *Singles semi-finalist: 1988, 1992
11704 *Singles quarter-finalist: 1995, 2001, 2002, 2003
11705 *Doubles quarter-finalist: 1992
11706
11707 [[Wimbledon]]
11708 *'''Singles champion: 1992
11709 *Singles finalist: 1999
11710 *Singles semi-finalist: 1995, 2000, 2001
11711 *Singles quarter-finalist: 1991, 1993
11712
11713 [[U.S. Open (tennis)|U.S. Open]]
11714 *'''Singles champion: 1994, 1999
11715 *Singles finalist: 1990, 1995, 2002, 2005
11716 *Singles semi-finalist: 1988, 1989, 1996, 2003
11717 *Singles quarter-finalist: 1992, 2001, 2004
11718
11719 ==Grand Slam finals==
11720
11721 ===Wins (8)===
11722
11723 '''Year''' '''Championship''' '''Opponent in Final''' '''Score in Final'''
11724 1992 Wimbledon Goran IvaniÅĄević 6-7, 6-4, 6-4, 1-6, 6-4
11725 1994 US Open Michael Stich 6-1, 7-6, 7-5
11726 1995 Australian Open Pete Sampras 4-6, 6-1, 7-6, 6-4
11727 1999 French Open Andrei Medvedev 1-6, 2-6, 6-4, 6-3, 6-4
11728 1999 US Open Todd Martin 6-4, 6-7, 6-7, 6-3, 6-2
11729 2000 Australian Open Yevgeny Kafelnikov 3-6, 6-3, 6-2, 6-4
11730 2001 Australian Open Arnaud Clement 6-4, 6-2, 6-2
11731 2003 Australian Open Rainer Schuettler 6-2, 6-2, 6-1
11732
11733 ===Runner-ups (7)===
11734
11735 '''Year''' '''Championship''' '''Opponent in Final''' '''Score in Final'''
11736 1990 French Open Andres Gomez 6-3, 2-6, 6-4, 6-4
11737 1990 US Open Pete Sampras 6-4, 6-3, 6-2
11738 1991 French Open Jim Courier 3-6, 6-4, 2-6, 6-1, 6-4
11739 1995 US Open Pete Sampras 6-4, 6-3, 4-6, 7-5
11740 1999 Wimbledon Pete Sampras 6-3, 6-4, 7-5
11741 2002 US Open Pete Sampras 6-3, 6-4, 5-7, 6-4
11742 2005 US Open Roger Federer 6-3, 2-6, 7-6, 6-1
11743
11744 ==Famous matches==
11745 * US Open quarterfinal 1989: defeated [[Jimmy Connors]] 6-1, 4-6, 0-6, 6-3, 6-4. Agassi's first five-set win. At one point during a changeover, Agassi joked to his box that he was losing sets on purpose to prove that he could win in five. The previous time he played Connors was at the 1988 US Open quarterfinal in which he beat Connors convincingly and did not lose a set.
11746 * French Open final 1990: lost to [[AndrÊs GÃŗmez]] 6-3, 2-6, 6-4, 6-4. Agassi's first Grand Slam final.
11747 * US Open final 1990: lost to [[Pete Sampras]] 6-4, 6-3, 6-2. The first of five Grand Slam finals contested by the top two players of their generation.
11748 * French Open final 1991: lost to [[Jim Courier]] 6-3, 4-6, 6-2, 1-6, 4-6. Blew 2 sets to 1 lead after rain delay. Many questioned if Agassi had the heart to win a major championship.
11749 * Wimbledon final 1992: defeated [[Goran IvaniÅĄević]] 6-7(8), 6-4, 6-4, 1-6, 6-4. Agassi's first Grand Slam title occurring at the tournament no one thought he could ever win. Still his only Wimbledon championship.
11750 * Wimbledon quarterfinal 1993: lost to Pete Sampras 6-2, 6-2, 3-6, 3-6, 6-4. The first of only two 5-set matches between the two (The other was the 2000 Australian Open semis).
11751 * US Open 4th Round 1994: defeated [[Michael Chang]] 6-1, 6-7(3), 6-3, 3-6, 6-1. Outlasts Chang en route to becoming the first unseeded man to win the US Open championship in 28 years. Knocked off five seeded players along the way. First US Open title.
11752 * Australian Open 1995 final: defeated Pete Sampras 4-6, 6-1, 7-6(6), 6-4. Agassi's only Grand Slam Final victory over Sampras.
11753 * Atlanta Summer Olympics Gold Medal Match 1996: defeated [[Serge Bruguera]] 6-2, 6-3, 6-1. Demolished two-time French Open Champion to achieve important personal goal of winning an Olympic Gold Medal.
11754 * French Open 1st round: lost to [[Marat Safin]] 7-5, 5-7, 2-6, 6-3, 2-6 in what was the Russian's first Grand Slam match. Safin's win foreshadowed his win over Pete Sampras in the 2000 US Open final.
11755 * French Open final 1999: defeated [[Andrei Medvedev]] 1-6, 2-6, 6-4, 6-3, 6-4. A spectacular come-from-behind victory that completed his career Grand Slam at the &quot;advanced&quot; age of 29, and his return to the top of tennis after being as low as #141. Referred to as the &quot;Miracle in Paris&quot;. Agassi has stated that he considers this his greatest moment on a tennis court.
11756 * US Open final 1999: defeated [[Todd Martin]] 6-4, 6-7(5), 6-7(2), 6-3, 6-2. Another come-from-behind thriller.
11757 * Australian Open 2000 semi-final: defeated Pete Sampras 6-4, 3-6, 6-7(0), 7-6(5), 6-1. En route to his second Australian Open crown. [[Tennis Magazine]] stated: &quot;''This'' was Sampras-Agassi for the ages.&quot;
11758 * Wimbledon semi-final 2000: lost to [[Patrick Rafter]] 7-5, 4-6, 7-5, 4-6, 6-3. This match was universally praised for its asthetic beauty as the world's greatest baseliner battled the game's most fluid and athletic volleyer over five tense sets.
11759 * Australian Open 2001 semi-final: defeated Patrick Rafter 7-5, 2-6, 6-7(5), 6-2, 6-3. Exacted some revenge for 2000 Wimbledon semi loss to Rafter. Rallied from 2 sets to 1 down to stun Rafter in front of an energized Australian crowd.
11760 * Wimbledon semi-final 2001: lost to Patrick Rafter 2-6, 6-3, 3-6, 6-2, 8-6. Although not considered possible, the rematch topped the standard set by their encounter from the year before.
11761 * US Open 2001 quarter-final: lost to Pete Sampras 6-7(9), 7-6(2), 7-6(2), 7-6(5). Match featured no breaks of serve. Many consider this the best Agassi-Sampras match played.
11762 * US Open 2002 final: lost to Pete Sampras 6-3, 6-4, 5-7, 6-4. Sampras' final competitive match.
11763 * French Open 2003 2nd round: defeated [[Mario Ancic]] 5-7, 1-6, 6-4, 6-2, 7-5. Rallied back from two sets to love against the young and powerful Ancic to win the match. One of only six matches Agassi has won after being down two sets to love. Three of them have been at the [[French Open]].
11764 * French Open 2004 1st round: lost to [[Jerome Haehnel]] 4-6, 6-7(4), 3-6. Shock first round loss to lowly French career journeyman. Arguably the greatest upset in French Open history.
11765 * US Open 2004 quarter-final: lost to Roger Federer 3-6, 6-2, 5-7, 6-3, 3-6. 5th set marred by record-breaking winds. By far Roger Federer's most difficult match en route to the title.
11766 * Australian Open 2005 4th round: defeated [[Joachim Johansson]] 6-7(4), 7-6(5), 7-6(3), 6-4. Won despite Johansson's world-record 51 aces.
11767 * French Open 2005 1st round: lost to [[Jarkko Nieminen]] 5-7, 6-4, 7-6, 1-6, 0-6. Possibly Agassi's last match at the French Open. He led two sets to one heading into the fourth set, but a pinched sciatic nerve hampered Agasi's movement very noticeably. Agassi limped off the court with tears in his eyes after the match. The match was a major indicator to many that Agassi's career might be coming to a close soon.
11768 * US Open 2005 quarter-final: defeated [[James Blake]] 3-6, 3-6, 6-3, 6-3, 7-6(6). Agassi had never come back from two sets down in the US Open. This was called the best match of the 2005 Open and one of the best in US Open history.
11769 * US Open 2005 semi-final: defeated [[Robby Ginepri]] in his third consecutive five-set thriller: 6-4, 5-7, 6-3, 4-6, 6-3. At 35 years old, he played his best tennis in the fifth set.
11770 * US Open 2005, final: lost to Roger Federer in his sixth US Open final. In the finale of Agassi's magic run at the Open which included 3 five-set matches in a row, Agassi met Federer and appeared to have the upper hand, being up a break in the third set with the match tied at one set each. However, Federer withstood the pressure and rallied to beat Agassi 6-3, 2-6, 7-6(1), 6-1.
11771 * Tennis Masters Cup 2005, Round Robin: lost to [[Nikolay Davydenko]] 6-4, 6-2. Agassi was suffering from a sprained ankle injured while he was playing racquetball three weeks before. Although the match itself was unremarkable, the afterward was, when one of the tournament organizers absurdly accused Agassi of faking injury and losing on purpose because he (Agassi) was playing in Shanghai. It turned out that the same injury would cause Agassi to withdraw the 2006 Australian Open.
11772
11773 ==Titles (60)==
11774 {| {{pt}}
11775 |- bgcolor=&quot;#eeeeee&quot;
11776 |'''Legend (Singles)'''
11777 |- bgcolor=&quot;#e5d1cb&quot;
11778 | Grand Slam (8)
11779 |- bgcolor=&quot;ffffcc&quot;
11780 | Tennis Masters Cup (1)
11781 |- bgcolor=&quot;gold&quot;
11782 | Olympic Gold (1)
11783 |- bgcolor=&quot;#dfe2e9&quot;
11784 | ATP Masters Series (17)
11785 |- bgcolor=&quot;#ffffff&quot;
11786 | ATP Tour (33)
11787 |}
11788
11789 ===Singles (60)===
11790 {| {{pt}}
11791 |- bgcolor=&quot;#eeeeee&quot;
11792 |'''No.'''
11793 |'''Date'''
11794 |'''Tournament'''
11795 |'''Surface'''
11796 |'''Opponent in the final'''
11797 |'''Score'''
11798 |-
11799 |1.
11800 |[[November 23]], [[1987]]
11801 |[[Itaparica]], [[Brazil]]
11802 |Hard
11803 |[[Luiz Mattar]] ([[Brazil]])
11804 |7-6 6-2
11805 |-
11806 |2.
11807 |[[February 15]], [[1988]]
11808 |[[Memphis, Tennessee|Memphis]], [[United States|USA]]
11809 |Hard
11810 |[[Mikael Pernfors]] ([[Sweden]])
11811 |6-4 6-4 7-5
11812 |-
11813 |3.
11814 |[[April 25]], [[1988]]
11815 |[[Charleston, South Carolina|Charleston]], [[United States|USA]]
11816 |Clay
11817 |[[Jimmy Arias]] ([[United States|USA]])
11818 |6-2 6-2
11819 |-
11820 |4.
11821 |[[May 2]], [[1988]]
11822 |[[Forest Hills]], [[United States|USA]]
11823 |Clay
11824 |[[Slobodan Zivojinovic]] ([[Yugoslavia]])
11825 |7-5 7-6 7-5
11826 |-
11827 |5.
11828 |[[July 11]], [[1988]]
11829 |[[Stuttgart|Stuttgart Outdoors]], [[Germany]]
11830 |Clay
11831 |[[Andres Gomez]] ([[Ecuador]])
11832 |6-4 6-2
11833 |-
11834 |6.
11835 |[[July 25]], [[1988]]
11836 |[[Stratton, Vermont|Stratton]], [[United States|USA]]
11837 |Hard
11838 |[[Paul Annacone]] ([[United States|USA]])
11839 |6-2 6-4
11840 |-
11841 |7.
11842 |[[August 15]], [[1988]]
11843 |[[Livingston]], [[United States|USA]]
11844 |Hard
11845 |[[Jeff Tarango]] ([[United States|USA]])
11846 |6-2 6-4
11847 |-
11848 |8.
11849 |[[October 2]], [[1989]]
11850 |[[Orlando, Florida]], [[United States|USA]]
11851 |Hard
11852 |[[Brad Gilbert]] ([[United States|USA]])
11853 |6-2 6-1
11854 |-
11855 |9.
11856 |[[February 5]], [[1990]]
11857 |[[San Francisco]], [[United States|USA]]
11858 |Carpet
11859 |[[Todd Witsken]] ([[United States|USA]])
11860 |6-1 6-3
11861 |- bgcolor=&quot;#dfe2e9&quot;
11862 |10.
11863 |[[March 12]], [[1990]]
11864 |[[Miami Masters|Key Biscayne]], [[United States|USA]]
11865 |Hard
11866 |[[Stefan Edberg]] ([[Sweden]])
11867 |6-1 6-4 6 6-2
11868 |-
11869 |11.
11870 |[[July 16]], [[1990]]
11871 |[[Legg Mason Tennis Classic|Washington]], [[United States|USA]]
11872 |Hard
11873 |[[Jim Grabb]] ([[United States|USA]])
11874 |6-1 6-4
11875 |- bgcolor=&quot;ffffcc&quot;
11876 |12.
11877 |[[November 12]], [[1990]]
11878 |[[Tennis Masters Cup|Tour Championships]], [[Frankfurt]], [[Germany]]
11879 |Carpet
11880 |[[Stefan Edberg]] ([[Sweden]])
11881 |5-7 7-6 7-5 6-2
11882 |-
11883 |13.
11884 |[[April 1]], [[1991]]
11885 |[[Orlando, Florida|Orlando]], [[United States|USA]]
11886 |Hard
11887 |[[Derrick Rostagno]] ([[United States|USA]])
11888 |6-2 1-6 6-3
11889 |-
11890 |14.
11891 |[[July 15]], [[1991]]
11892 |[[Legg Mason Tennis Classic|Washington]], [[United States|USA]]
11893 |Hard
11894 |[[Petr Korda]] ([[Czechoslovakia]])
11895 |6-3 6-4
11896 |-
11897 |15.
11898 |[[April 27]], [[1992]]
11899 |[[Atlanta]], [[United States|USA]]
11900 |Clay
11901 |[[Pete Sampras]] ([[United States|USA]])
11902 |7-5 6-4
11903 |- bgcolor=&quot;#e5d1cb&quot;
11904 |'''16.'''
11905 |'''[[June 22]], [[1992]]'''
11906 |'''[[Wimbledon Championships|Wimbledon]]'''
11907 |Grass
11908 |[[Goran IvaniÅĄević]] ([[Croatia]])
11909 |6-7 6-4 6-4 1-6 6-4
11910 |- bgcolor=&quot;#dfe2e9&quot;
11911 |17.
11912 |[[July 20]], [[1992]]
11913 |[[Toronto]], [[Canada]]
11914 |Hard
11915 |[[Ivan Lendl]] ([[United States|USA]])
11916 |3-6 6-2 6-0
11917 |-
11918 |18.
11919 |[[January 2]], [[1993]]
11920 |[[San Francisco]], [[United States|USA]]
11921 |Hard
11922 |[[Brad Gilbert]] ([[United States|USA]])
11923 |6-2 6-7 6-2
11924 |-
11925 |19.
11926 |[[February 22]], [[1993]]
11927 |[[Scottsdale]], [[United States|USA]]
11928 |Hard
11929 |Marcos Ondruska ([[Russia]])
11930 |6-2 3-6 6-3
11931 |-
11932 |20.
11933 |[[February 2]], [[1994]]
11934 |[[Scottsdale]], [[United States|USA]]
11935 |Hard
11936 |Luiz Mattar ([[Brazil]])
11937 |6-4 6-3
11938 |- bgcolor=&quot;#dfe2e9&quot;
11939 |21.
11940 |[[July 25]], [[1994]]
11941 |[[Toronto]], [[Canada]]
11942 |Hard
11943 |Jason Stoltenberg ([[Australia]])
11944 |6-4 6-4
11945 |- bgcolor=&quot;#e5d1cb&quot;
11946 |'''22.'''
11947 |'''[[August 29]], [[1994]]'''
11948 |'''[[U.S. Open (tennis)|US Open]]'''
11949 |Hard
11950 |[[Michael Stich]] ([[Germany]])
11951 |6-1 7-6 7-5
11952 |-
11953 |23.
11954 |[[October 17]], [[1994]]
11955 |[[Vienna]], [[Austria]]
11956 |Carpet
11957 |[[Michael Stich]] ([[Germany]])
11958 |7-6 4-6 6-2 6-3
11959 |- bgcolor=&quot;#dfe2e9&quot;
11960 |24.
11961 |[[October 31]], [[1994]]
11962 |[[Paris]], [[France]]
11963 |Carpet
11964 |[[Marc Rosset]] ([[Switzerland]])
11965 |6-3 6-3 4-6 7-5
11966 |- bgcolor=&quot;#e5d1cb&quot;
11967 |'''25.'''
11968 |'''[[January 16]], [[1995]]'''
11969 |'''[[Australian Open]]'''
11970 |Hard
11971 |[[Pete Sampras]] ([[United States|USA]])
11972 |4-6 6-1 7-6 6-4
11973 |-
11974 |26.
11975 |[[February 6]], [[1995]]
11976 |[[San Jose, California|San Jose]]
11977 |Hard
11978 |[[Michael Chang]] ([[United States|USA]])
11979 |6-2 1-6 6-3
11980 |- bgcolor=&quot;#dfe2e9&quot;
11981 |27.
11982 |[[March 13]], [[1995]]
11983 |[[Miami Masters|Key Biscayne]]
11984 |Hard
11985 |[[Pete Sampras]] ([[United States|USA]])
11986 |3-6 6-2 7-6
11987 |-
11988 |28.
11989 |[[July 17]], [[1995]]
11990 |[[Legg Mason Tennis Classic|Washington]]
11991 |Hard
11992 |[[Stefan Edberg]]([[Sweden]])
11993 |6-4 2-6 7-5
11994 |- bgcolor=&quot;#dfe2e9&quot;
11995 |29.
11996 |[[July 24]], [[1995]]
11997 |[[Montreal]]
11998 |Hard
11999 |[[Pete Sampras]] ([[United States|USA]])
12000 |3-6 6-2 6-3
12001 |- bgcolor=&quot;#dfe2e9&quot;
12002 |30.
12003 |[[August 7]], [[1995]]
12004 |[[Cincinnati Masters|Cincinnati]]
12005 |Hard
12006 |[[Michael Chang]] ([[United States|USA]])
12007 |7-5 6-2
12008 |-
12009 |31.
12010 |[[August 14]], [[1995]]
12011 |[[New Haven]]
12012 |Hard
12013 |[[Richard Krajicek]] ([[Netherlands]])
12014 |3-6 7-6 6-3
12015 |- bgcolor=&quot;#dfe2e9&quot;
12016 |32.
12017 |[[March 18]], [[1996]]
12018 |[[Miami Masters|Key Biscayne]]
12019 |Hard
12020 |[[Goran IvaniÅĄević]] ([[Croatia]])
12021 |3-0 40-0
12022 |- bgcolor=&quot;gold&quot;
12023 |33.
12024 |[[July 22]], [[1996]]
12025 |[[1996 Summer Olympics|Olympic Games]], [[Atlanta]], [[United States|USA]]
12026 |Hard
12027 |[[Sergi Bruguera]] ([[Spain]])
12028 |6-2 6-3 6-1
12029 |- bgcolor=&quot;#dfe2e9&quot;
12030 |34.
12031 |[[August 5]], [[1996]]
12032 |[[Cincinnati Masters|Cincinnati]]
12033 |Hard
12034 |[[Michael Chang]] ([[United States|USA]])
12035 |7-6 6-4
12036 |-
12037 |35.
12038 |[[February 9]], [[1998]]
12039 |[[San Jose, California|San Jose]]
12040 |Hard
12041 |[[Pete Sampras]] ([[United States|USA]])
12042 |6-2 6-4
12043 |-
12044 |36.
12045 |[[March 2]], [[1998]]
12046 |[[Scottsdale]]
12047 |Hard
12048 |[[Jason Stoltenberg]] ([[Australia]])
12049 |6-4 7-6
12050 |-
12051 |37.
12052 |[[July 20]], [[1998]]
12053 |[[Legg Mason Tennis Classic|Washington]]
12054 |Hard
12055 |[[Scott Draper]] ([[Australia]])
12056 |6-2 6-0
12057 |-
12058 |38.
12059 |[[July 27]], [[1998]]
12060 |[[Mercedes-Benz Cup|Los Angeles]]
12061 |Hard
12062 |[[Tim Henman]] ([[United Kingdom|UK]])
12063 |6-4 6-4
12064 |-
12065 |39.
12066 |[[October 19]], [[1998]]
12067 |[[Ostrava]]
12068 |Carpet
12069 |[[Jan Kroslak]] ([[Slovakia]])
12070 |6-2 3-6 6-3
12071 |-
12072 |40.
12073 |[[April 5]], [[1999]]
12074 |[[Hong Kong]]
12075 |Hard
12076 |[[Boris Becker]] ([[Germany]])
12077 |6-7 6-4 6-4
12078 |- bgcolor=&quot;#e5d1cb&quot;
12079 |'''41.'''
12080 |'''[[May 24]], [[1999]]'''
12081 |'''[[French Open]]'''
12082 |Clay
12083 |[[Andrei Medvedev]] ([[Ukraine]])
12084 |1-6 2-6 6-4 6-3 6-4
12085 |-
12086 |42.
12087 |[[August 16]], [[1999]]
12088 |[[Legg Mason Tennis Classic|Washington]]
12089 |Hard
12090 |[[Yevgeny Kafelnikov]] ([[Russia]])
12091 |7-6 6-1
12092 |- bgcolor=&quot;#e5d1cb&quot;
12093 |'''43.'''
12094 |'''[[August 30]], [[1999]]'''
12095 |'''[[U.S. Open (tennis)|US Open]]'''
12096 |Hard
12097 |[[Todd Martin]] ([[United States|USA]])
12098 |6-4 6-7 6-7 6-3 6-2
12099 |- bgcolor=&quot;#dfe2e9&quot;
12100 |44.
12101 |[[November 1]], [[1999]]
12102 |[[Paris]]
12103 |Carpet
12104 |[[Marat Safin]] ([[Russia]])
12105 |7-6 6-2 4-6 6-4
12106 |- bgcolor=&quot;#e5d1cb&quot;
12107 |'''45.'''
12108 |'''[[January 17]], [[2000]]'''
12109 |'''[[Australian Open]]'''
12110 |Hard
12111 |[[Yevgeny Kafelnikov]] ([[Russia]])
12112 |3-6 6-3 6-2 6-4
12113 |- bgcolor=&quot;#e5d1cb&quot;
12114 |'''46.'''
12115 |'''[[January 15]], [[2001]]'''
12116 |'''[[Australian Open]]'''
12117 |Hard
12118 |[[Arnaud Clement]] ([[France]])
12119 |6-4 6-2 6-2
12120 |- bgcolor=&quot;#dfe2e9&quot;
12121 |47.
12122 |[[March 12]], [[2001]]
12123 |[[Indian Wells Masters|Indian Wells]]
12124 |Hard
12125 |[[Pete Sampras]] ([[United States|USA]])
12126 |7-6 7-5 6-1
12127 |- bgcolor=&quot;#dfe2e9&quot;
12128 |48.
12129 |[[March 19]], [[2001]]
12130 |[[Miami Masters|Key Biscayne]]
12131 |Hard
12132 |[[Jan-Michael Gambill]] ([[United States|USA]])
12133 |7-6 6-1 6-0
12134 |-
12135 |49.
12136 |[[July 23]], [[2001]]
12137 |[[Mercedes-Benz Cup|Los Angeles]]
12138 |Hard
12139 |[[Pete Sampras]] ([[United States|USA]]
12140 |6-4 6-2
12141 |-
12142 |50.
12143 |[[March 4]], [[2002]]
12144 |[[Scottsdale]]
12145 |Hard
12146 |[[Juan Balcells]] ([[Spain]])
12147 |6-2 7-6
12148 |- bgcolor=&quot;#dfe2e9&quot;
12149 |51.
12150 |[[March 18]], [[2002]]
12151 |[[Miami Masters|Key Biscayne]]
12152 |Hard
12153 |[[Roger Federer]] ([[Switzerland]])
12154 |6-3 6-3 3-6 6-4
12155 |- bgcolor=&quot;#dfe2e9&quot;
12156 |52.
12157 |[[May 6]], [[2002]]
12158 |[[Rome Masters|Rome]], [[Italy]]
12159 |Clay
12160 |[[Tommy Haas]] ([[Germany]])
12161 |6-3 6-3 6-0
12162 |-
12163 |53.
12164 |[[July 22]], [[2002]]
12165 |[[Mercedes-Benz Cup|Los Angeles]], [[United States|USA]]
12166 |Hard
12167 |[[Jan-Michael Gambill]] ([[United States|USA]])
12168 |6-2 6-4
12169 |- bgcolor=&quot;#dfe2e9&quot;
12170 |54.
12171 |[[October 14]], [[2002]]
12172 |[[Madrid]], [[Spain]]
12173 |Hard
12174 |[[Jiri Novak]] ([[Czech Republic]])
12175 |W/O
12176 |- bgcolor=&quot;#e5d1cb&quot;
12177 |'''55.'''
12178 |'''[[January 13]], [[2003]]'''
12179 |'''[[Australian Open]]'''
12180 |Hard
12181 |[[Rainer Schuettler]] ([[Germany]])
12182 |6-2 6-2 6-1
12183 |-
12184 |56.
12185 |[[February 10]], [[2003]]
12186 |[[San Jose, California|San Jose]], [[United States|USA]]
12187 |Hard
12188 |[[Davide Sanguinetti]] ([[Italy]])
12189 |6-3 6-1
12190 |- bgcolor=&quot;#dfe2e9&quot;
12191 |57.
12192 |[[March 17]], [[2003]]
12193 |[[Miami Masters|Key Biscayne]]
12194 |Hard
12195 |[[Carlos Moyà]] ([[Spain]])
12196 |6-3 6-3
12197 |-
12198 |58.
12199 |[[April 21]], [[2003]]
12200 |[[Houston]], [[United States|USA]]
12201 |Clay
12202 |[[Andy Roddick]] ([[United States|USA]])
12203 |3-6 6-3 6-4
12204 |- bgcolor=&quot;#dfe2e9&quot;
12205 |59.
12206 |[[August 2]], [[2004]]
12207 |[[Cincinnati Masters|Cincinnati]], [[United States|USA]]
12208 |Hard
12209 |[[Lleyton Hewitt]] ([[Australia]])
12210 |6-3 3-6 6-2
12211 |-
12212 |60.
12213 |[[July 31]], [[2005]]
12214 |[[Mercedes-Benz Cup|Los Angeles]], [[United States|USA]]
12215 |Hard
12216 |[[Gilles Muller]] ([[Luxembourg]])
12217 |6-4 7-5
12218 |}
12219
12220 ===Doubles (1)===
12221 {| {{pt}}
12222 |- bgcolor=&quot;#eeeeee&quot;
12223 |'''No.'''
12224 |'''Date'''
12225 |'''Tournament'''
12226 |'''Surface'''
12227 |'''Partner'''
12228 |'''Opponents in the final'''
12229 |'''Score'''
12230 |-
12231 |1.
12232 |[[August 16]], [[1993]]
12233 |[[Cincinnati Masters]]
12234 |Hard
12235 |[[Petr Korda]] ([[Czech Republic]])
12236 |[[Stefan Edberg]] ([[Sweden]]) &amp; [[Henrik Holm]] ([[Sweden]])
12237 |7-6 6-4
12238 |}
12239
12240 ===Performance timeline===
12241 {| {{pt}}
12242 |- bgcolor=&quot;#efefef&quot;
12243 ! Tournament !! [[2006]] !! [[2005]] !! [[2004]] !! [[2003]] !! [[2002]] !! [[2001]] !! [[2000]] !! [[1999]] !! [[1998]] !! [[1997]] !! [[1996]] !! [[1995]] !! [[1994]] !! [[1993]] !! [[1992]] !! [[1991]] !! [[1990]]
12244
12245 |-
12246 |[[Australian Open]]
12247 |align=&quot;center&quot;|-
12248 |align=&quot;center&quot;|QF
12249 |align=&quot;center&quot;|SF
12250 |align=&quot;center&quot;|'''W'''
12251 |align=&quot;center&quot;|-
12252 |align=&quot;center&quot;|'''W'''
12253 |align=&quot;center&quot;|'''W'''
12254 |align=&quot;center&quot;|4r
12255 |align=&quot;center&quot;|4r
12256 |align=&quot;center&quot;|-
12257 |align=&quot;center&quot;|SF
12258 |align=&quot;center&quot;|'''W'''
12259 |align=&quot;center&quot;|-
12260 |align=&quot;center&quot;|-
12261 |align=&quot;center&quot;|-
12262 |align=&quot;center&quot;|-
12263 |align=&quot;center&quot;|-
12264
12265 |-
12266 |[[French Open]]
12267 |align=&quot;center&quot;|
12268 |align=&quot;center&quot;|1r
12269 |align=&quot;center&quot;|1r
12270 |align=&quot;center&quot;|QF
12271 |align=&quot;center&quot;|QF
12272 |align=&quot;center&quot;|QF
12273 |align=&quot;center&quot;|2r
12274 |align=&quot;center&quot;|'''W'''
12275 |align=&quot;center&quot;|1r
12276 |align=&quot;center&quot;|-
12277 |align=&quot;center&quot;|2r
12278 |align=&quot;center&quot;|QF
12279 |align=&quot;center&quot;|2r
12280 |align=&quot;center&quot;|-
12281 |align=&quot;center&quot;|SF
12282 |align=&quot;center&quot;|F
12283 |align=&quot;center&quot;|F
12284
12285 |-
12286 |[[Wimbledon Championships|Wimbledon]]
12287 |align=&quot;center&quot;|
12288 |align=&quot;center&quot;|-
12289 |align=&quot;center&quot;|-
12290 |align=&quot;center&quot;|4r
12291 |align=&quot;center&quot;|2r
12292 |align=&quot;center&quot;|SF
12293 |align=&quot;center&quot;|SF
12294 |align=&quot;center&quot;|F
12295 |align=&quot;center&quot;|2r
12296 |align=&quot;center&quot;|-
12297 |align=&quot;center&quot;|1r
12298 |align=&quot;center&quot;|SF
12299 |align=&quot;center&quot;|4r
12300 |align=&quot;center&quot;|QF
12301 |align=&quot;center&quot;|'''W'''
12302 |align=&quot;center&quot;|QF
12303 |align=&quot;center&quot;|-
12304
12305 |-
12306 |[[U.S. Open (tennis)|US Open]]
12307 |align=&quot;center&quot;|
12308 |align=&quot;center&quot;|F
12309 |align=&quot;center&quot;|QF
12310 |align=&quot;center&quot;|SF
12311 |align=&quot;center&quot;|F
12312 |align=&quot;center&quot;|QF
12313 |align=&quot;center&quot;|2r
12314 |align=&quot;center&quot;|'''W'''
12315 |align=&quot;center&quot;|4r
12316 |align=&quot;center&quot;|4r
12317 |align=&quot;center&quot;|SF
12318 |align=&quot;center&quot;|F
12319 |align=&quot;center&quot;|'''W'''
12320 |align=&quot;center&quot;|1r
12321 |align=&quot;center&quot;|QF
12322 |align=&quot;center&quot;|1r
12323 |align=&quot;center&quot;|F
12324
12325 |-
12326 |Grand Slam W-L
12327 |align=&quot;center&quot;|
12328 |align=&quot;center&quot;|10-2
12329 |align=&quot;center&quot;|9-3
12330 |align=&quot;center&quot;|19-3
12331 |align=&quot;center&quot;|11-3
12332 |align=&quot;center&quot;|20-3
12333 |align=&quot;center&quot;|14-3
12334 |align=&quot;center&quot;|23-2
12335 |align=&quot;center&quot;|7-4
12336 |align=&quot;center&quot;|3-1
12337 |align=&quot;center&quot;|11-4
12338 |align=&quot;center&quot;|22-3
12339 |align=&quot;center&quot;|11-2
12340 |align=&quot;center&quot;|4-2
12341 |align=&quot;center&quot;|16-2
12342 |align=&quot;center&quot;|10-3
12343 |align=&quot;center&quot;|12-2
12344
12345 |- bgcolor=&quot;#efefef&quot;
12346 |'''Tournaments Won'''
12347 |align=&quot;center&quot;|
12348 |align=&quot;center&quot;|'''1'''
12349 |align=&quot;center&quot;|'''1'''
12350 |align=&quot;center&quot;|'''4'''
12351 |align=&quot;center&quot;|'''5'''
12352 |align=&quot;center&quot;|'''4'''
12353 |align=&quot;center&quot;|'''1'''
12354 |align=&quot;center&quot;|'''5'''
12355 |align=&quot;center&quot;|'''5'''
12356 |align=&quot;center&quot;|'''0'''
12357 |align=&quot;center&quot;|'''3'''
12358 |align=&quot;center&quot;|'''7'''
12359 |align=&quot;center&quot;|'''5'''
12360 |align=&quot;center&quot;|'''2'''
12361 |align=&quot;center&quot;|'''3'''
12362 |align=&quot;center&quot;|'''2'''
12363 |align=&quot;center&quot;|'''4'''
12364
12365 |-
12366 |Hardcourt W-L
12367 |align=&quot;center&quot;|
12368 |align=&quot;center&quot;|19-3
12369 |align=&quot;center&quot;|37-10
12370 |align=&quot;center&quot;|32-6
12371 |align=&quot;center&quot;|36-7
12372 |align=&quot;center&quot;|35-10
12373 |align=&quot;center&quot;|25-9
12374 |align=&quot;center&quot;|41-9
12375 |align=&quot;center&quot;|47-10
12376 |align=&quot;center&quot;|11-10
12377 |align=&quot;center&quot;|34-7
12378 |align=&quot;center&quot;|53-3
12379 |align=&quot;center&quot;|29-6
12380 |align=&amp;amp;quot;center&quot;|27-8
12381 |align=&quot;center&quot;|19-7
12382 |align=&quot;center&quot;|17-7
12383 |align=&quot;center&quot;|26-5
12384 |}
12385
12386 {| {{pt}}
12387 |- bgcolor=&quot;#efefef&quot;
12388 ! Tournament !! [[1989]] !! [[1988]] !! [[1987]] !! [[1986]]
12389
12390 |-
12391 |[[Australian Open]]
12392 |align=&quot;center&quot;|-
12393 |align=&quot;center&quot;|-
12394 |align=&quot;center&quot;|-
12395 |align=&quot;center&quot;|-
12396
12397 |-
12398 |[[French Open]]
12399 |align=&quot;center&quot;|3r
12400 |align=&quot;center&quot;|SF
12401 |align=&quot;center&quot;|2r
12402 |align=&quot;center&quot;|-
12403
12404 |-
12405 |[[Wimbledon Championships|Wimbledon]]
12406 |align=&quot;center&quot;|-
12407 |align=&quot;center&quot;|-
12408 |align=&quot;center&quot;|1r
12409 |align=&quot;center&quot;|-
12410
12411 |-
12412 |[[U.S. Open (tennis)|US Open]]
12413 |align=&quot;center&quot;|SF
12414 |align=&quot;center&quot;|SF
12415 |align=&quot;center&quot;|1r
12416 |align=&quot;center&quot;|1r
12417
12418 |-
12419 |Grand Slam W-L
12420 |align=&quot;center&quot;|7-2
12421 |align=&quot;center&quot;|10-2
12422 |align=&quot;center&quot;|1-3
12423 |align=&quot;center&quot;|0-1
12424
12425 |- bgcolor=&quot;#efefef&quot;
12426 |'''Tournaments Won'''
12427 |align=&quot;center&quot;|'''1'''
12428 |align=&quot;center&quot;|'''6'''
12429 |align=&quot;center&quot;|'''1'''
12430 |align=&quot;center&quot;|'''0'''
12431
12432 |-
12433 |Hardcourt W-L
12434 |align=&quot;center&quot;|20-6
12435 |align=&quot;center&quot;|33-6
12436 |align=&quot;center&quot;|21-10
12437 |align=&quot;center&quot;|4-5
12438
12439 |}
12440
12441 ==Head-to-Head==
12442 *vs. Sampras, Pete: 14-20
12443 *vs. Roddick, Andy: 5-1
12444 *vs. Ginepri, Robby: 4-0
12445 *vs. Blake, James: 4-1
12446 *vs. Dent, Taylor: 5-0
12447 *vs. Kiefer, Nicolas: 6-0
12448 *vs. Rusedski, Greg: 8-2
12449 *vs. Henman, Tim: 2-1
12450 *vs. Johansson, Thomas: 6-1
12451 *vs. Novak, Jiri: 5-1
12452 *vs. Gaudio, Gaston: 4-1
12453 *vs. Davydenko, Nikolay: 2-1
12454 *vs. Coria, Guillermo: 5-2
12455 *vs. Chang, Michael: 15-7
12456 *vs. Ivanisevic, Goran: 4-3
12457 *vs. Rafter, Patrick: 10-5
12458 *vs. Connors, Jimmy: 2-0
12459 *vs. McEnroe, John: 2-2
12460 *vs. Becker, Boris: 10-4
12461 *vs. Safin, Marat: 3-3
12462 *vs. Hewitt, Lleyton: 4-4
12463 *vs. Courier, Jim: 5-7
12464 *vs. Muster, Thomas: 5-4
12465 *vs. Federer, Roger: 3-8
12466 *vs. Nadal, Rafael: 0-1
12467 *vs. Grosjean, Sebastien: 4-3
12468 *vs. Nalbandian, David: 1-0
12469 *vs. Ferrero, Juan Carlos: 2-3
12470 *vs. Kuerten, Gustavo: 7-4
12471 *vs. Corretja, Alex: 5-3
12472 *vs. Costa, Albert: 4-1
12473 *vs. Moya, Carlos: 3-1
12474 *vs. Malisse, Xavier: 5-0
12475 *vs. Pioline, Cedric: 3-0
12476 *vs. Haas, Tommy: 6-3
12477
12478 ==External links==
12479 *[http://www.atptennis.com/en/players/playerprofiles/default2.asp?playernumber=A092 Official ATP profile]
12480 *[http://www.tenniscorner.net/index.php?corner=M&amp;action=players&amp;playerid=AGA001/ Profile on tenniscorner.net]
12481 *[http://www.daviscup.com/teams/player.asp?player=10000009 Davis Cup record]
12482 *[http://www.agassifoundation.org/ Andre Agassi Foundation]
12483 *[http://www.olympic.org/uk/athletes/profiles/bio_uk.asp?PAR_I_ID=96979/ IOC profile]
12484 *[http://www.agassiopen.com/ Agassi Open]
12485
12486 {{Tennis World Number Ones (men)}}
12487 {{Footer Olympic Champions Tennis Men}}
12488 {{Australian Open men's singles champions}}
12489 {{French Open men's singles champions}}
12490 {{Wimbledon men's singles champions}}
12491 {{US Open men's singles champions}}
12492
12493 [[Category:1970 births|Agassi, Andre]]
12494 [[Category:Living people|Agassi, Andre]]
12495 [[Category:American tennis players|Agassi, Andre]]
12496 [[Category:Tennis players at the 1996 Summer Olympics|Agassi, Andre]]
12497 [[Category:Armenian-Americans|Agassi, Andre]]
12498 [[Category:Iranian Americans|Agassi, Andre]]
12499 [[Category:Las Vegans|Agassi, Andre]]
12500 [[Category:Australian Open champions|Agassi, Andre]]
12501 [[Category:French Open champions|Agassi, Andre]]
12502 [[Category:Wimbledon champions|Agassi, Andre]]
12503 [[Category:US Open champions|Agassi, Andre]]
12504
12505 [[bg:АĐŊĐ´Ņ€Đĩ АĐŗĐ°ŅĐ¸]]
12506 [[da:Andre Agassi]]
12507 [[de:Andre Agassi]]
12508 [[et:Andre Agassi]]
12509 [[es:Andre Agassi]]
12510 [[fr:Andre Agassi]]
12511 [[it:Andre Agassi]]
12512 [[he:אנדרה אגסי]]
12513 [[nl:Andre Agassi]]
12514 [[ja:ã‚ĸãƒŗドãƒŦãƒģã‚ĸã‚Ŧã‚ˇ]]
12515 [[no:Andre Agassi]]
12516 [[pl:Andre Agassi]]
12517 [[pt:Andre Agassi]]
12518 [[fi:Andre Agassi]]
12519 [[sv:Andre Agassi]]
12520 [[zh:åŽ‰åžˇįƒˆÂˇé˜ŋ加čĨŋ]]
12521
12522 [[Category:List of Assyrians|Agassi, Andre]]</text>
12523 </revision>
12524 </page>
12525 <page>
12526 <title>Artificial languages</title>
12527 <id>596</id>
12528 <revision>
12529 <id>15899127</id>
12530 <timestamp>2002-07-21T02:57:49Z</timestamp>
12531 <contributor>
12532 <username>Christian</username>
12533 <id>899</id>
12534 </contributor>
12535 <minor />
12536 <text xml:space="preserve">#REDIRECT [[Constructed language]]</text>
12537 </revision>
12538 </page>
12539 <page>
12540 <title>Austro-Asiatic languages</title>
12541 <id>597</id>
12542 <revision>
12543 <id>39114113</id>
12544 <timestamp>2006-02-10T20:32:21Z</timestamp>
12545 <contributor>
12546 <username>Visviva</username>
12547 <id>123395</id>
12548 </contributor>
12549 <comment>link Khmuic.</comment>
12550 <text xml:space="preserve">[[Image:MK map.gif|thumb|Austro-Asiatic languages]]
12551 The '''Austro-Asiatic languages''' are a large [[language family]] of [[Southeast Asia]] and [[India]]. The name comes from the [[Greek language|Greek]] words for [[South Asia]]. Among these languages, only [[Vietnamese language|Vietnamese]], [[Khmer language|Khmer]], and [[Mon language|Mon]] have a long recorded history, and only Vietnamese and Khmer have official status (in Vietnam and Cambodia, respectively). The rest of the languages are spoken by minority groups.
12552
12553 Austroasiatic languages have a disjunct distribution across India and Southeast Asia, separated by regions where other languages are spoken. It is widely believed that the Austroasiatic languages are the [[autochthonous]] languages of Southeast Asia and eastern India, and that the other languages of the region, including the [[Indo-European languages|Indo-European]], [[Tai-Kadai languages|Tai-Kadai]], and [[Sino-Tibetan]] languages, are the result of later [[human migration|migrations of people]]. (There are, for example, Austroasiatic words in the Tibeto-Burman languages of eastern Nepal.) Some linguists have attempted to prove that Austroasiatic languages are related to [[Austronesian languages]], thus forming the [[Austric languages|Austric]] superfamily.
12554
12555 Linguists traditionally recognize two major divisions of Austroasiatic, the [[Mon-Khmer]] languages of Southeast Asia and the [[Munda languages]] of east-central and central India. [[Ethnologue]] identifies 168 Austroasiatic languages, of which 147 are [[Mon-Khmer]] languages and 21 are [[Munda languages]]. However, no evidence for this classification has ever been published, and it remains speculative.
12556
12557 Each of the subdivisions of the classification below that is written in boldface type is accepted as a valid family. However, the relationships between these families within Austroasiatic is debated. It should be noted that little of the data used for competing classifications has ever been published, and therefore cannot be evaluated by peer review. The classification used here is that of Diffloth (in press), which does not accept traditional Mon-Khmer as a valid unit.
12558
12559 * [[Munda languages]] ([[India]])
12560 :* '''Koraput''' (7 languages)
12561 :*Core Munda languages
12562 ::* '''Kharian-Juang''' (2 languages)
12563 ::*North Munda languages
12564 ::: '''[[Korku language|Korku]]''' (1 language)
12565 ::: '''Kherwarian''' (12 languages)
12566
12567 * Khasi-Khmuic languages
12568 :* '''[[Khasi language|Khasian]]''' (3 languages) of eastern [[India]] and [[Bangladesh]].
12569 :*Palaungo-Khmuic languages
12570 ::* '''[[Khmuic]]''' (13 languages) of [[Laos]] and [[Thailand]].
12571
12572 ::*Palaungo-Pakanic languages
12573 ::: '''Pakanic''' or '''Palyu''' (2 languages) of southern [[China]]
12574 ::: '''Palaungic''' (21 languages) of [[Myanmar]], southern [[China]], and [[Thailand]], plus Mang of [[Vietnam]].
12575
12576 * [[Mon-Khmer]] languages
12577 :* Khmero-Vietic languages
12578
12579 ::* Vieto-Katuic languages
12580 ::: '''Viet-Muong''' or '''Vietic''' (10 languages) of [[Vietnam]] and [[Laos]], includes the [[Vietnamese language]], which has the most speakers of any Austroasiatic language. These are the only Austroasiatic languages to have highly developed tone systems.
12581 ::: '''Katuic''' (19 languages) of [[Laos]], [[Vietnam]], and [[Thailand]].
12582
12583 ::* Khmero-Bahnaric languages
12584 :::* '''[[Bahnaric languages|Bahnaric]]''' (40 languages) of [[Vietnam]], [[Laos]], and [[Cambodia]].
12585 :::*Khmeric languages
12586 :::: The '''[[Khmer language]]''' of [[Cambodia]], [[Thailand]], and [[Vietnam]].
12587 :::: '''Pearic''' (6 languages) of [[Cambodia]].
12588
12589 :* Nico-Monic languages
12590 ::* '''[[Nicobarese languages]]''' (6 languages) of the [[Nicobar Islands]], a territory of India.
12591
12592 ::* Asli-Monic languages
12593 ::: '''Aslian''' (19 languages) of peninsular [[Malaysia]] and [[Thailand]].
12594 ::: '''Monic''' (2 languages) includes the [[Mon language]] of [[Myanmar]] and the Nyahkur language of [[Thailand]].
12595
12596 There are in addition several unclassified languages of southern China.
12597
12598 [[Category:Austro-Asiatic languages|*]]
12599
12600 [[da:Austroasiatiske sprog]]
12601 [[de:Austroasiatische Sprachen]]
12602 [[es:Lenguas austroasiÃĄticas]]
12603 [[fi:Austroaasialaiset kielet]]
12604 [[fr:Langues austroasiatiques]]
12605 [[hu:AusztroÃĄzsiai nyelvcsalÃĄd]]
12606 [[id:Bahasa Austro-Asia]]
12607 [[ko:ė˜¤ėŠ¤íŠ¸ëĄœė•„ė‹œė•„ė–´ėĄą]]
12608 [[lt:Austroazinės kalbos]]
12609 [[nl:Austroaziatische talen]]
12610 [[ru:АвŅŅ‚Ņ€ĐžĐ°ĐˇĐ¸Đ°Ņ‚ŅĐēиĐĩ ŅĐˇŅ‹Đēи]]
12611 [[vi:Háģ‡ ngôn ngáģ¯ Nam Á]]
12612 [[zh:南äēšč¯­įŗģ]]</text>
12613 </revision>
12614 </page>
12615 <page>
12616 <title>Afro-asiatic languages</title>
12617 <id>598</id>
12618 <revision>
12619 <id>15899129</id>
12620 <timestamp>2002-02-25T15:51:15Z</timestamp>
12621 <contributor>
12622 <ip>Conversion script</ip>
12623 </contributor>
12624 <minor />
12625 <comment>Automated conversion</comment>
12626 <text xml:space="preserve">#REDIRECT [[Afro-Asiatic languages]]
12627
12628 </text>
12629 </revision>
12630 </page>
12631 <page>
12632 <title>Afro-Asiatic languages</title>
12633 <id>599</id>
12634 <revision>
12635 <id>41955043</id>
12636 <timestamp>2006-03-02T21:34:17Z</timestamp>
12637 <contributor>
12638 <username>Mustafaa</username>
12639 <id>57891</id>
12640 </contributor>
12641 <minor />
12642 <comment>Reverted edits by [[Special:Contributions/85.250.213.76|85.250.213.76]] ([[User talk:85.250.213.76|talk]]) to last version by Dewet</comment>
12643 <text xml:space="preserve">{{Contradict-other|''The population Figures in the Semitic languages Article (and others)''}}
12644
12645 [[Image:Afro-Asiatic.png|right|300px|thumb|Map showing the distribution of Afro-Asiatic languages]]
12646 The '''Afro-Asiatic languages''' constitute a [[language family]] of about 240 languages and over 307 million people widespread throughout [[North Africa]], [[East Africa]], the [[Sahel]], and [[Southwest Asia]]. Other names sometimes given to this family include &quot;Afrasian&quot;, &quot;Hamito-Semitic&quot; (deprecated), &quot;Lisramic&quot; (Hodge 1972), &quot;Erythraean&quot; (Tucker 1966).
12647
12648 The following language subfamilies are included:
12649
12650 * [[Berber languages]]
12651 * [[Chadic languages]]
12652 * [[Egyptian language|Egyptian languages]]
12653 * [[Semitic languages]]
12654 * [[Cushitic languages]]
12655 * [[Beja language]] (subclassification controversial; widely classified as part of Cushitic)
12656 * [[Omotic languages]] (controversial; sometimes argued to be outside Afro-Asiatic)
12657
12658 The [[Ongota]] language is often considered Afro-Asiatic, but its classification within the family remains controversial, partly for lack of data. [[Harold Fleming]] tentatively suggests that it is an independent branch of non-Omotic Afro-Asiatic.
12659
12660 It is not generally agreed on where [[Proto-Afro-Asiatic]] was spoken; [[Africa]] (e.g., [[Igor Diakonoff]], [[Lionel Bender]]) has often been suggested, particularly [[Ethiopia]], because it includes the majority of the diversity of the Afro-Asiatic language family and has very diverse groups in close geographic proximity, often considered a telltale sign for a linguistic geographic origin. The western [[Red Sea]] coast and the [[Sahara]] have also been put forward (e.g., [[Christopher Ehret]]). [[Alexander Militarev]] suggests that their homeland was in the [[Levant]] (specifically, he identifies them with the [[Natufian culture]]).
12661
12662 The Semitic languages are the only Afro-Asiatic subfamily based outside of Africa; however, in historical or near-historical times, some Semitic speakers crossed from South Arabia back into Ethiopia, so some modern Ethiopian languages (such as [[Amharic]]) are Semitic rather than belonging to the substrate Cushitic or Omotic groups. (A minority of academics, e.g. A. Murtonen (1967), dispute this view, suggesting that Semitic may have originated in Ethiopia.)
12663
12664 [[Tonal language]]s are found in the Omotic, Chadic, and South &amp; East Cushitic branches of Afro-Asiatic, according to Ehret (1996). The Semitic, Berber and Egyptian branches are not tonal.
12665
12666 ==Common features and cognates==
12667
12668 Common features of the Afro-Asiatic languages include:
12669 *a two-[[grammatical gender|gender]] system in the singular, with the feminine marked by the /t/ sound,
12670 *[[Verb Subject Object|VSO]] [[linguistic_typology|typology]] with [[Subject Verb Object|SVO]] tendencies,
12671 *a set of [[emphatic consonant]]s, variously realized as glottalized, pharyngealized, or implosive, and
12672 *a templatic [[morphology (linguistics)|morphology]] in which words inflect by internal changes as well as prefixes and suffixes.
12673
12674
12675 Some cognates are:
12676 *''b-n-'' &quot;build&quot; (Ehret: *''b&amp;#301;n''), attested in Chadic, Semitic (''*bny''), Cushitic (*''m&amp;#301;n''/*''m&amp;#259;n'' &quot;house&quot;) and Omotic (Dime ''bin-'' &quot;build, create&quot;);
12677 *''m-t'' &quot;die&quot; (Ehret: *''maaw''), attested in Chadic (eg Hausa ''mutu''), Egyptian (''mwt'', ''mt'', Coptic ''mu''), Berber (''mmet'', pr. ''yemmut''), Semitic (*''mwt''), and Cushitic (Proto-Somali *''umaaw''/*''-am-w(t)-'' &quot;die&quot;), also similar to the Latin ''mortis'', indicating a possible vocabulary drift
12678 *''s-n'' &quot;know&quot;, attested in Chadic, Berber, and Egyptian;
12679 *''l-s'' &quot;tongue&quot; (Ehret: ''*lis' ''&quot;to lick&quot;), attested in Semitic (*''lasaan/lisaan''), Egyptian (''ns'', Coptic ''las''), Berber (''ils''), Chadic (eg Hausa ''harshe''), and possibly Omotic (Dime ''lits'-'' &quot;lick&quot;);
12680 *''s-m'' &quot;name&quot; (Ehret: *''s&amp;#365;m'' / *''s&amp;#301;m''), attested in Semitic (*''sm''), Berber (''ism''), Chadic (eg Hausa ''suna''), Cushitic, and Omotic (though the Berber form, ''ism'', and the Omotic form, ''sunts'', are sometimes argued to be Semitic [[loanword]]s.) The Egyptian ''smi'' &quot;report, announce&quot; may also be cognate.
12681 * ''d-m'' &quot;blood&quot; (Ehret: *''dÃŽm'' / *''dÃĸm''), attested in Berber (''idammen''), Semitic (*''dam''), Chadic, and arguably Omotic. Cushitic *''dÃŽm''/*''dÃĸm'', &quot;red&quot;, may be cognate.
12682
12683
12684 In the verbal system, Semitic, Berber, and Cushitic (including Beja) all provide evidence for a prefix conjugation:
12685 {|
12686 |-
12687 | English || Arabic (Semitic) || Kabyle (Berber)
12688 | Saho (Cushitic; verb is &quot;kill&quot;) || Beja (verb is &quot;arrive&quot;)
12689 |-
12690 | he dies || ''yamuutu'' || ''yemmut''
12691 | ''yagdifÊ'' || ''iktim''
12692 |-
12693 | she dies || ''tamuutu'' || ''temmut''
12694 | ''yagdifÊ'' || ''tiktim''
12695 |-
12696 | they (m.) die || ''yamuutuuna'' || ''mmuten''
12697 | ''yagdifín'' || ''iktimna''
12698 |-
12699 | you (m. sg.) die || ''tamuutu'' || ''temmuted&amp;#803;''
12700 | ''tagdifÊ'' || ''tiktima''
12701 |-
12702 | you (m. pl.) die || ''tamuutuuna'' || ''temmutem''
12703 | ''tagdifín'' || ''tiktimna''
12704 |-
12705 | I die || ''&amp;#704;amuutu'' || ''mmute&amp;#947;''
12706 | ''agdifÊ'' || ''aktim''
12707 |-
12708 | we die || ''namuutu'' || ''nemmut'' || ''nagdifÊ'' || ''niktim''
12709 |}
12710
12711 A causative affix ''s'' is widespread (found in all its subfamilies), but is also found in other groups, such as the [[Niger-Congo languages]].
12712
12713 The [[possessive pronoun]] suffixes are supported by Semitic, Berber, Cushitic (including Beja), and Chadic.
12714
12715 ==Classification history==
12716
12717 Medieval scholars sometimes linked two or more branches of Afro-Asiatic together; already in the [[9th century]], the Hebrew grammarian [[Judah ibn Quraysh]] of [[Tiaret]], [[Algeria]] perceived a relationship between Berber and Semitic (the latter being known to him through Arabic, Hebrew, and Aramaic.)
12718
12719 In the 1800's, Europeans began suggesting such relationships; thus in [[1844]] Th. Benfey suggested a language family containing Semitic, Berber, and Cushitic (calling the latter &quot;Ethiopic&quot;). In the same year, T. N. Newman suggested a relationship between Semitic and Hausa, but this would long remain a topic of dispute and uncertainty. The traditional &quot;Hamito-Semitic&quot; family was named by [[Friedrich MÃŧller]] in [[1876]] in his ''Grundriss der Sprachwissenschaft'', and defined as consisting of a Semitic group plus a &quot;Hamitic&quot; group containing Egyptian, Berber, and Cushitic; the Chadic group was not included. These classifications were partly based on non-linguistic anthropological and racial arguments. (See also [[Hamitic hypothesis]].)
12720
12721 [[Leo Reinisch]] (1909) proposed to link Cushitic and Chadic, while urging a more distant affinity with Egyptian and Semitic, thus foreshadowing Greenberg; but his suggestion was largely ignored. [[Marcel Cohen]] (1924) rejected the idea of a distinct &quot;Hamitic&quot; subgroup, and included Hausa (a Chadic language) in his comparative Hamito-Semitic vocabulary. [[Joseph Greenberg]] (1950) strongly confirmed Cohen's rejection of &quot;Hamitic&quot;, added (and sub-classified) the Chadic languages, and proposed the new name Afro-Asiatic for the family; his classification of it came to be almost universally accepted. In 1969, [[Harold Fleming]] proposed the recognition of [[Omotic]] as a fifth branch, rather than (as previously believed) a subgroup of Cushitic, and this has become generally accepted. Several scholars, including Harold Fleming and [[Robert Hetzron]], have since questioned the traditional inclusion of Beja in Cushitic, but this view has yet to gain general acceptance.
12722
12723 There is little agreement on the subclassification of the five or six branches mentioned; however, [[Christopher Ehret]] (1979), [[Harold Fleming]] (1981), and [[Joseph Greenberg]] (1981) all agree that Omotic was the first branch to split from the rest. Otherwise,
12724 *Ehret groups Egyptian, Berber, and Semitic together in a North Afro-Asiatic subgroup;
12725 *[[Paul Newman (professor)|Paul Newman]] (1980) groups Berber with Chadic and Egyptian with Semitic, while questioning the inclusion of Omotic;
12726 *Fleming (1981) divided non-Omotic Afroasiatic, or &quot;Erythraean&quot;, into three groups, Cushitic, Semitic, and Chadic-Berber-Egyptian; he later added Semitic and Beja to the latter, and proposed [[Ongota language|OngotÃĄ]] as a tentative new third branch of Erythraean;
12727 *[[Lionel Bender]] (1997) advocates a &quot;Macro-Cushitic&quot; consisting of Berber, Cushitic, and Semitic, while regarding Chadic and Omotic as the most remote branches;
12728 *[[Vladimir Orel]] and [[Olga Stolbova]] (1995) group Berber with Semitic, Chadic with Egyptian, and split Cushitic into five or more independent branches of Afro-Asiatic, seeing Cushitic as a [[Sprachbund]] rather than a valid family;
12729 *[[Alexander Militarev]] (2000), on the basis of [[lexicostatistics]], groups Berber with Chadic and both, more distantly, with Semitic, as against Cushitic and Omotic.
12730
12731 ==See also==
12732 * [[African languages]]
12733
12734 ==Etymological bibliography==
12735 Some of the main sources for Afro-Asiatic etymologies include:
12736 * Marcel Cohen, ''Essai comparatif sur la vocabulaire et la phonÊtique du chamito-sÊmitique'', Champion, Paris 1947.
12737 * Igor M. Diakonoff et al., &quot;Historical-Comparative Vocabulary of Afrasian&quot;, ''St. Petersburg Journal of African Studies'' Nos. 2-6, 1993-7.
12738 * Christopher Ehret. ''Reconstructing Proto-Afroasiatic (Proto-Afrasian): Vowels, Tone, Consonants, and Vocabulary'' (''University of California Publications in Linguistics 126''), California, Berkeley 1996.
12739 * Vladimir E. Orel and Olga V. Stolbova, ''Hamito-Semitic [[Etymological Dictionary]]: Materials for a Reconstruction'', Brill, Leiden 1995. ISBN 9004100512. [http://www.ilx.nl/blonline/blonlinesearch2.php?ficheid=101010209591]
12740
12741 ==Sources==
12742 * Bernd Heine and Derek Nurse, ''African Languages,'' Cambridge University Press, 2000 - Chapter 4
12743 * Merritt Ruhlen, ''A Guide to the World's Languages'', Stanford University Press, Stanford 1991.
12744 * Lionel Bender et al., ''Selected Comparative-Historical Afro-Asiatic Studies in Memory of Igor M. Diakonoff'', LINCOM 2003.
12745 * [http://www.ethnologue.com/show_family.asp?subid=89997 Ethnologue]
12746 * Russell G. Schuh, ''[http://www.linguistics.ucla.edu/people/schuh/Papers/Chadic_overview.pdf Chadic Overview]''.
12747 * [http://homepage.ntlworld.com/roger_blench/Archaeology%20data/Africa%20language%20history%20text.pdf African Language History] (pdf), [[Roger Blench]]
12748
12749 ==External links==
12750 * [http://www.tufs.ac.jp/ts/personal/ratcliffe/comp%20&amp;%20method-Ratcliffe.pdf A comparison of Orel-Stolbova's and Ehret's Afro-Asiatic reconstructions]
12751 *[http://www.sciencemag.org/cgi/content/full/306/5702/1680c The Origins of Afroasiatic] by Paul Newman (Requires Science Magazine subscription)
12752
12753 [[Category:Afro-Asiatic languages| ]]
12754
12755 [[af:Afro-Asiaties]]
12756 [[ar:ØŖŲØąŲˆØĸØŗŲŠŲˆŲŠØŠ]]
12757 [[bg:АŅ„Ņ€Đž-аСиаŅ‚ŅĐēи ĐĩСиŅ†Đ¸]]
12758 [[bs:Afroazijski jezici]]
12759 [[ca:LlengÃŧes afroasiàtiques]]
12760 [[de:Afroasiatische Sprachen]]
12761 [[es:Lenguas afroasiÃĄticas]]
12762 [[eo:Afrikazia lingvaro]]
12763 [[eu:Hizkuntza Afroasiatikoak]]
12764 [[fr:Langues afro-asiatiques]]
12765 [[ko:ė•„프ëĻŦėš´ė•„ė‹œė•„ė–´ėĄą]]
12766 [[id:Bahasa Afro-Asia]]
12767 [[ia:Linguas afro-asiatic]]
12768 [[he:שפו×Ē אפרו-אסיא×Ēיו×Ē]]
12769 [[lt:SemitÅŗ-chamitÅŗ kalbos]]
12770 [[hu:AfroÃĄzsiai nyelvcsalÃĄd]]
12771 [[nl:Afro-Aziatische talen]]
12772 [[ja:ã‚ĸフロãƒģã‚ĸジã‚ĸčĒžæ—]]
12773 [[nn:Afroasiatiske sprÃĨk]]
12774 [[pt:Línguas afro-asiÃĄticas]]
12775 [[sl:Afroazijski jeziki]]
12776 [[fi:Afroaasialaiset kielet]]
12777 [[sv:Afroasiatiska sprÃĨk]]
12778 [[ta:āŽ†āŽĒāŽŋāŽ°āŽŋāŽ•ā¯āŽ•-āŽ†āŽšāŽŋāŽ¯ āŽŽā¯ŠāŽ´āŽŋāŽ•āŽŗā¯]]
12779 [[zh:é—ĒåĢč¯­įŗģ]]</text>
12780 </revision>
12781 </page>
12782 <page>
12783 <title>Andorra</title>
12784 <id>600</id>
12785 <revision>
12786 <id>41907777</id>
12787 <timestamp>2006-03-02T15:08:32Z</timestamp>
12788 <contributor>
12789 <ip>217.10.60.85</ip>
12790 </contributor>
12791 <comment>revert vandalism</comment>
12792 <text xml:space="preserve">{{For|the 1961 play by Max Frisch|Andorra (play)}}
12793 {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style=&quot;margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;
12794 |+&lt;big&gt;&lt;big&gt;'''Principat d'Andorra'''&lt;br&gt;&lt;/font&gt;
12795 |-
12796 | style=&quot;background:#efefef;&quot; align=&quot;center&quot; colspan=&quot;2&quot; |
12797 {| border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
12798 |-
12799 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:Flag of Andorra.svg|125px|Flag of Andorra]]
12800 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:Andorra_coa.png|Andorra's Coat of Arms]]
12801 |-
12802 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Flag of Andorra|Flag]])
12803 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Coat of Arms of Andorra|Coat of Arms]])
12804 |}
12805 |-
12806 | align=&quot;center&quot; colspan=2 | &lt;small&gt;''National [[motto]]: Virtus Unita Fortior&lt;br/&gt;([[Latin]]: Virtue united is stronger)''&lt;/small&gt;
12807 |-
12808 | align=&quot;center&quot; colspan=2 | [[image:LocationAndorra.png]]
12809 |-
12810 | '''[[Official language]]''': || [[Catalan language|Catalan]]
12811 |-
12812 | '''[[Capital]]''':&lt;br&gt;&amp;nbsp;- Population:&lt;br&gt;&amp;nbsp;- [[Coordinates]]: || [[Andorra la Vella]]&lt;br&gt;22,035 &lt;small&gt;(1990 est.)&lt;/small&gt;&lt;br&gt;{{coor dm|42|30|N|1|31|E|type:country}}
12813 |-
12814 | '''[[List of Co-Princes of Andorra|French Co-Prince]]''':
12815 | [[Jacques Chirac]]
12816 |-
12817 | '''[[List of Co-Princes of Andorra|Episcopal Co-Prince]]''':
12818 | [[Joan Enric Vives Sicília]]
12819 |-
12820 | '''[[Head of Government]]''': || [[Albert Pintat]]
12821 |-
12822 | '''[[Area]]''':&lt;br/&gt;&amp;nbsp;- Total: &lt;br/&gt;&amp;nbsp;- % water:
12823 | [[List of countries by area|Ranked 178th]] &lt;br/&gt; [[1 E8 m²|468 km&amp;sup2;]] &lt;br/&gt; Negligible
12824 |-
12825 | '''[[Population]]''':&lt;br&gt;&amp;nbsp;- Total (2003)&lt;br&gt;&amp;nbsp;- [[Population density|Density]]:
12826 | [[List of countries by population|Ranked 182nd]]&lt;br&gt; 69,150&lt;br&gt; 144.5/km&amp;sup2;
12827 |-
12828 | '''[[Independence]]''': || 1278
12829 |-
12830 | '''[[National Day]]''': || [[8 September]]
12831 |- valign=top
12832 | '''[[Religion]]s''': || [[Roman Catholic]] (established religion)
12833 |-
12834 | '''[[Human Development Index|HDI]]''' (2003) || [[List of countries by Human Development Index|NA]] – &lt;font color=gray&gt;unranked&lt;/font&gt;
12835 |-
12836 | '''[[Currency]]''': || [[Euro|Euro &lt;small&gt;(&amp;euro;)&lt;/small&gt;]]'''&amp;sup1;''' = 100 [[cents]]
12837 |-
12838 | '''[[Time zone]]''' &lt;br&gt;&amp;nbsp;- in [[European Summer Time|summer]]
12839 | [[Central European Time|CET]] ([[Coordinated Universal Time|UTC]]+1)&lt;br&gt;[[Central European Summer Time|CEST]] ([[Coordinated Universal Time|UTC]]+2)
12840 |- valign=top
12841 | '''[[National anthem]]''': || ''[[El Gran Carlemany|El Gran Carlemany, Mon Pare]]''
12842 |-
12843 | '''[[Top-level domain|Internet TLD]]''': || [[.ad]]
12844 |-
12845 | '''[[List_of_country_calling_codes|Calling Code]]''':
12846 | +376
12847 |-
12848 | colspan=&quot;2&quot; align=&quot;center&quot; | &lt;small&gt;&lt;sup&gt;1&lt;/sup&gt; Prior to 1999: French [[franc]] and Spanish [[peseta]]. Some of their own currency, 1 [[Andorran_diner|diner]] of 100 centim was minted after 1982.&lt;/small&gt;
12849 |}
12850 {{Catalan-speaking world|align=right}}
12851 The '''Principality of Andorra''' ([[Catalan language|Catalan]]: ''Principat d'Andorra'', [[French language|French]]: ''PrincipautÊ d'Andorre'', [[Spanish language|Spanish]]: ''Principado de Andorra'') is a small, [[landlocked country|landlocked]] [[principality]] in south-western [[Europe]], located in the eastern [[Pyrenees]] mountains and bordered by [[France]] and [[Spain]]. Once isolated, it is currently a prosperous country mainly because of [[tourism]] and its status as a [[tax haven]]. Andorra is not to be confused with the [[Andora|Comune di Andora]].
12852
12853 == Origin and history of the name ==
12854
12855 The name &quot;Andorra&quot; probably originates from a [[Navarre|Navarrese]] word ''andurrial'', which translates as ''shrub-covered land''.
12856
12857 == History ==
12858 {{main|History of Andorra}}
12859
12860 Tradition holds that [[Charlemagne]] granted a charter to the Andorran people in return for their fighting the [[Moors]]. Overlordship of the territory passed to the local [[count of Urgell]] and eventually to the [[bishop]] of the [[diocese]] of Urgell. In the [[11th century]] a dispute arose between the bishop and his northern French neighbour over Andorra.
12861
12862 In 1278, the conflict was resolved by the signing of a [[parage]], which provided that Andorra's sovereignty be shared between the French [[count of Foix]] (whose title would ultimately transfer to the French head of state) and the bishop of [[La Seu d'Urgell]], in [[Catalonia]]. This gave the small [[principality]] its territory and political form.
12863
12864 Over the years the title passed to the kings of [[Navarre]]. After Henry of Navarre became King [[Henry IV of France|Henry IV]] of France, he issued an edict (1607) that established the head of the French state and the Bishop of Urgell as co-princes of Andorra.
12865
12866 In the period 1812–13, the French Empire annexed Catalonia and divided it in four departments. Andorra was also annexed and made part of the district of Puigcerdà (dÊpartement of Sègre).
12867
12868 In 1933 France occupied Andorra as a result of social unrest before elections. On [[July 12]], [[1934]], an adventurer named [[Boris Skossyreff]] issued a proclamation in Urgel, declaring himself Boris I, sovereign prince of Andorra, simultaneously declaring war on the bishop of Urgel. He was arrested by Spanish authorities on [[July 20]] and ultimately expelled from Spain. From 1936 to 1940, a French detachment was garrisoned in Andorra to prevent influences of the [[Spanish Civil War]] and Franco's Spain.
12869 The Franco troops reached the Andorran border in the later stages of the war.
12870
12871 During the [[Second World War]], Andorra remained neutral and was an important smuggling route between [[Vichy France]] and Spain.
12872
12873 In 1958 Andorra declared peace with [[Germany]], having been forgotten on the [[Treaty of Versailles]] that ended the [[First World War]] and remaining legally at war.
12874
12875 Given its relative isolation, Andorra has existed outside the mainstream of European history, with few ties to countries other than France and Spain. In recent times, however, its thriving [[tourism|tourist]] industry along with developments in transportation and communications have removed the country from its isolation and its political system was thoroughly modernized in 1993, the year in which it finally became a member of the United Nations.
12876
12877 == Politics ==
12878 {{main articles|[[Politics of Andorra]] and [[Constitution of Andorra]]}}
12879 {{seealso|List of Co-Princes of Andorra}}
12880
12881 Until very recently, Andorra's political system had no clear division of powers into [[Executive (government)|executive]], [[legislative]], and [[judicial]] branches. Ratified and approved in 1993, the [[Constitution of Andorra|constitution]] establishes Andorra as a sovereign parliamentary democracy that retains the co-princes as [[head of state|heads of state]], but the [[head of government]] retains executive power. The two co-princes serve coequally with limited powers that do not include veto over government acts. They are represented in Andorra by a delegate.
12882
12883 The way in which the two [[prince]]s are chosen makes Andorra one of the most politically distinct nations on earth. One co-Prince is the man or woman who is currently serving as [[President of France]], currently [[Jacques Chirac]] (it has historically been any Head of State of France, including Kings and Emperors of France). The other is the current [[Catholic]] [[bishop]] of the [[Catalan]] city of [[La Seu d'Urgell]], currently [[Joan Enric Vives i Sicilia]]. As neither prince lives in Andorra their role is almost entirely ceremonial.
12884
12885 Andorra's main legislative body is the [[unicameral]] [[General Council of the Valleys]] (''Consell General de les Valls''), a [[parliament]] of 28 seats; members are elected by direct popular vote, 14 from a single national constituency and 14 to represent each of the 7 parishes, with members serving four-year terms. The Andorran government is formed by the General Council electing the [[Head of Government]] (''Cap de Govern''), who then appoints ministers to the [[cabinet (government)|cabinet]], the Executive Council (''Govern''). Currently, government is held by the [[Liberal Party of Andorra]], with [[Albert Pintat]] as [[Prime Minister]]. The [[Social Democratic Party (Andorra)|Social Democratic Party]] is in opposition.
12886
12887 Defense of the country is the responsibility of [[France]] and [[Spain]].
12888
12889 == Administrative divisions ==
12890 [[Image:Andorra.geohive.gif|thumb|right|300px|Map of Andorra.]]
12891 {{main|Parishes of Andorra}}
12892
12893 Andorra consists of seven communities, known as ''parrÃ˛quies'' (singular ''parrÃ˛quia'' ''[[English Language|Engl.]]:'' parish)
12894 *[[Andorra la Vella]]
12895 *[[Canillo]]
12896 *[[Encamp]]
12897 *[[Escaldes-Engordany]]
12898 *[[La Massana]]
12899 *[[Ordino]]
12900 *[[Sant Julià de LÃ˛ria]]
12901
12902 == Geography ==
12903 {{main|Geography of Andorra}}
12904
12905 Befitting its location in the eastern [[Pyrenees]] mountain range, Andorra consists predominantly of rugged mountains of an average height of 1,996 m with the highest being the [[Coma Pedrosa]] at 2,946 m. These are dissected by three narrow valleys in a Y shape that combine into one as the main stream, the [[Valira]] river, leaves the country for Spain (at Andorra's lowest point of 870 m).
12906
12907 Andorra's [[climate]] is similar to its neighbours' [[temperate climate]], but its higher altitude means there is on average more snow in winter and it is slightly cooler in summer.
12908
12909 == Economy ==
12910 {{main|Economy of Andorra}}
12911
12912 [[Image:AndorraLaVella.jpg|left|190px|Andorra La Vella]]
12913 [[Tourism]], the mainstay of Andorra's tiny, well-to-do economy, accounts for roughly 80% of [[Gross Domestic Product|GDP]]. An estimated 9 million tourists visit annually, attracted by Andorra's duty-free status and by its summer and winter [[resort]]s. Andorra's comparative advantage has recently eroded as the economies of adjoining [[France]] and [[Spain]] have been opened up, providing broader availability of goods and lower [[tariff]]s.
12914
12915 The [[banking]] sector, with its [[tax haven]] status, also contributes substantially to the economy. [[Agriculture|Agricultural]] production is limited&amp;mdash;only 2% of the land is arable&amp;mdash;and most [[food]] has to be [[import]]ed. The principal livestock activity is [[domestic sheep]] raising. [[Manufacturing]] output consists mainly of cigarettes, cigars, and furniture.
12916
12917 Andorra is not a full member of the [[European Union]], but enjoys a special relationship with it, such as being treated as an EU member for trade in manufactured goods (no tariffs) and as a non-EU member for agricultural products. Andorra lacks a [[currency]] of its own and uses that of its two surrounding nations. Prior to 1999 these were the [[French franc]] and the Spanish [[peseta]], which have since been replaced by a single currency, the [[euro]]. Unlike other small European states that use the euro, Andorra does not yet mint its own [[euro coins]]; in October 2004, negotiations between Andorra and the [[European Union|EU]] began on an agreement which would allow Andorra to mint its own coins. Andorra’s [[natural resource]]s include [[hydropower]], [[mineral water]], [[timber]], [[iron ore]], and [[lead]].
12918
12919 == Demographics ==
12920 {{main|Demographics of Andorra}}
12921 {{seealso|List of Andorrans}}
12922
12923 Andorrans constitute a minority in their own country; only 33% of inhabitants hold Andorran nationality. The largest group of foreign nationals is that of [[Spain|Spaniards]] (43%), with [[Portugal|Portuguese]] (11%) and [[France|French]] (7%) nationals the other main groups. The remaining 6% belong to several other nationalities.
12924
12925 The only official language is [[Catalan language|Catalan]], the language of the nearby Spanish [[Autonomous communities of Spain|autonomous region]] of [[Catalonia]], with which Andorra shares many cultural traits, though [[Spanish language|Spanish]], [[Portuguese Language|Portuguese]] and [[French language|French]] are also commonly spoken. The predominant religion is [[Roman Catholic Church|Roman Catholicism]].
12926
12927 == Culture ==
12928 {{main|Culture of Andorra}}
12929 {{seealso|Music of Andorra}}
12930
12931 Andorra's long [[history]] has provided it with a rich [[mythology]] and an abundance of [[Fable|folk tales]], with roots originating in as far as [[Andalusia]] in the south and [[Netherlands]] in the north.
12932
12933 == Miscellaneous topics ==
12934 * [[Communications in Andorra]]
12935 * [[Civil unions in Andorra]]
12936 * [[Foreign relations of Andorra]]
12937 * [[Postal services in Andorra]]
12938 * [[Tourism in Andorra]]
12939 * [[Transportation in Andorra]]
12940
12941 == See also ==
12942 *[[List of sovereign states]]
12943
12944 == External links ==
12945 {{sisterlinks|Andorra}}
12946 * [http://www.andorra.ad/ang/home/index.htm Andorra.ad] - Main portal
12947 * [http://www.andorra-intern.com/index_en.htm Andorra-Intern] - Andorra Inside Information
12948 * [http://www.andorraonline.ad/index.asp?newlang=english Andorra Online] - Information on various Andorran topics
12949 * [http://www.andorramania.co.uk Andorra Mania] - Information on various Andorran topics
12950 * [http://www.cia.gov/cia/publications/factbook/geos/an.html CIA - The World Factbook -- Andorra] - [[CIA]]'s Factbook on Andorra
12951 * [http://based.in/?Andorra Financial institutions in Andorra]
12952 * [http://www.govern.ad/ Govern d'Andorra] - Official governmental site (in Catalan)
12953 * [http://www.loc.gov/rr/international/hispanic/andorra/andorra.html Library of Congress Portals on the World - Andorra]
12954
12955 {{Europe}}
12956 [[Category:Andorra|*]]
12957
12958 [[af:Andorra]]
12959 [[ar:ØŖŲ†Ø¯ŲˆØąØ§]]
12960 [[an:Andorra]]
12961 [[ast:Andorra]]
12962 [[bg:АĐŊĐ´ĐžŅ€Đ°]]
12963 [[zh-min-nan:Andorra]]
12964 [[be:АĐŊĐ´ĐžŅ€Đ°]]
12965 [[bn:āĻāĻ¨ā§āĻĄā§‹āĻ°āĻž]]
12966 [[bs:Andora]]
12967 [[ca:Andorra]]
12968 [[cs:Andorra]]
12969 [[cy:Andorra]]
12970 [[da:Andorra]]
12971 [[de:Andorra]]
12972 [[et:Andorra]]
12973 [[el:ΑÎŊδĪŒĪÎą]]
12974 [[es:Andorra]]
12975 [[eo:Andoro]]
12976 [[eu:Andorra]]
12977 [[fr:Andorre]]
12978 [[fy:Andorra]]
12979 [[fur:Andorra]]
12980 [[ga:AndÃŗra]]
12981 [[gl:Andorra]]
12982 [[ko:ė•ˆë„ëŧ]]
12983 [[hi:ā¤…ā¤¨āĨā¤ĄāĨ‹ā¤°ā¤ž]]
12984 [[hr:Andora]]
12985 [[io:Andora]]
12986 [[id:Andorra]]
12987 [[ia:Andorra]]
12988 [[is:Andorra]]
12989 [[it:Andorra]]
12990 [[he:אנדורה]]
12991 [[jv:Andorra]]
12992 [[ka:ანდორა]]
12993 [[kw:Andorra]]
12994 [[ku:Andorra]]
12995 [[la:Andorra]]
12996 [[lv:Andora]]
12997 [[lt:Andora]]
12998 [[lb:Andorra]]
12999 [[li:Andorra]]
13000 [[hu:Andorra]]
13001 [[mk:АĐŊĐ´ĐžŅ€Đ°]]
13002 [[ms:Andorra]]
13003 [[na:Andorra]]
13004 [[nl:Andorra]]
13005 [[nds:Andorra]]
13006 [[ja:ã‚ĸãƒŗドナ]]
13007 [[no:Andorra]]
13008 [[nn:Andorra]]
13009 [[oc:AndÃ˛rra]]
13010 [[ps:اŲ†Ú‰ŲˆØąØ§]]
13011 [[pl:Andora]]
13012 [[pt:Andorra]]
13013 [[ro:Andorra]]
13014 [[ru:АĐŊĐ´ĐžŅ€Ņ€Đ°]]
13015 [[se:Andorra]]
13016 [[sa:ā¤…ā¤‚ā¤ĄāĨ‹ā¤°ā¤ž]]
13017 [[sq:Andora]]
13018 [[scn:Andorra]]
13019 [[simple:Andorra]]
13020 [[sk:Andorra]]
13021 [[sl:Andora]]
13022 [[sr:АĐŊĐ´ĐžŅ€Đ°]]
13023 [[fi:Andorra]]
13024 [[sv:Andorra]]
13025 [[tl:Andorra]]
13026 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸ąā¸™ā¸”ā¸­ā¸ŖāšŒā¸Ŗā¸˛]]
13027 [[tr:Andorra]]
13028 [[udm:АĐŊĐ´ĐžŅ€Ņ€Đ°]]
13029 [[uk:АĐŊĐ´ĐžŅ€Ņ€Đ°]]
13030 [[war:Andorra]]
13031 [[zh:厉道尔]]
13032 [[fiu-vro:Andorra]]</text>
13033 </revision>
13034 </page>
13035 <page>
13036 <title>Andorra/History</title>
13037 <id>601</id>
13038 <revision>
13039 <id>15899132</id>
13040 <timestamp>2002-02-25T15:43:11Z</timestamp>
13041 <contributor>
13042 <username>LA2</username>
13043 <id>445</id>
13044 </contributor>
13045 <minor />
13046 <comment>*</comment>
13047 <text xml:space="preserve">#REDIRECT [[History of Andorra]]</text>
13048 </revision>
13049 </page>
13050 <page>
13051 <title>Andorra/Geography</title>
13052 <id>602</id>
13053 <revision>
13054 <id>15899133</id>
13055 <timestamp>2002-06-13T21:19:04Z</timestamp>
13056 <contributor>
13057 <username>Karen Johnson</username>
13058 <id>1300</id>
13059 </contributor>
13060 <comment>redirect</comment>
13061 <text xml:space="preserve">#REDIRECT [[Geography of Andorra]]</text>
13062 </revision>
13063 </page>
13064 <page>
13065 <title>Andorra/People</title>
13066 <id>603</id>
13067 <revision>
13068 <id>15899134</id>
13069 <timestamp>2002-08-20T15:34:41Z</timestamp>
13070 <contributor>
13071 <username>Koyaanis Qatsi</username>
13072 <id>90</id>
13073 </contributor>
13074 <text xml:space="preserve">#REDIRECT [[Demographics of Andorra]]</text>
13075 </revision>
13076 </page>
13077 <page>
13078 <title>Andorra/Government</title>
13079 <id>604</id>
13080 <revision>
13081 <id>15899135</id>
13082 <timestamp>2002-08-04T11:16:40Z</timestamp>
13083 <contributor>
13084 <username>Ellmist</username>
13085 <id>2214</id>
13086 </contributor>
13087 <comment>move to Politics of Andorra</comment>
13088 <text xml:space="preserve">#REDIRECT [[Politics of Andorra]]</text>
13089 </revision>
13090 </page>
13091 <page>
13092 <title>Andorra/Economy</title>
13093 <id>605</id>
13094 <revision>
13095 <id>15899136</id>
13096 <timestamp>2002-08-04T11:19:13Z</timestamp>
13097 <contributor>
13098 <username>Ellmist</username>
13099 <id>2214</id>
13100 </contributor>
13101 <comment>move to Economy of Andorra</comment>
13102 <text xml:space="preserve">#REDIRECT [[Economy of Andorra]]</text>
13103 </revision>
13104 </page>
13105 <page>
13106 <title>Andorra/Military</title>
13107 <id>606</id>
13108 <revision>
13109 <id>15899137</id>
13110 <timestamp>2003-05-25T18:56:00Z</timestamp>
13111 <contributor>
13112 <username>Camembert</username>
13113 <id>3113</id>
13114 </contributor>
13115 <minor />
13116 <comment>fix redir</comment>
13117 <text xml:space="preserve">#REDIRECT [[Andorra]]</text>
13118 </revision>
13119 </page>
13120 <page>
13121 <title>Andorra/Communications</title>
13122 <id>607</id>
13123 <revision>
13124 <id>15899138</id>
13125 <timestamp>2002-08-04T11:19:57Z</timestamp>
13126 <contributor>
13127 <username>Ellmist</username>
13128 <id>2214</id>
13129 </contributor>
13130 <comment>move to Communications in Adorra</comment>
13131 <text xml:space="preserve">#REDIRECT [[Communications in Andorra]]</text>
13132 </revision>
13133 </page>
13134 <page>
13135 <title>Andorra/Transportation</title>
13136 <id>608</id>
13137 <revision>
13138 <id>15899139</id>
13139 <timestamp>2002-08-04T11:20:42Z</timestamp>
13140 <contributor>
13141 <username>Ellmist</username>
13142 <id>2214</id>
13143 </contributor>
13144 <comment>move to Transportation in Andorra</comment>
13145 <text xml:space="preserve">#REDIRECT [[Transportation in Andorra]]</text>
13146 </revision>
13147 </page>
13148 <page>
13149 <title>Andorra/Transnational issues</title>
13150 <id>609</id>
13151 <revision>
13152 <id>15899140</id>
13153 <timestamp>2002-08-04T11:24:45Z</timestamp>
13154 <contributor>
13155 <username>Ellmist</username>
13156 <id>2214</id>
13157 </contributor>
13158 <comment>move to Foreign relations of Andorra</comment>
13159 <text xml:space="preserve">#REDIRECT [[Foreign relations of Andorra]]</text>
13160 </revision>
13161 </page>
13162 <page>
13163 <title>Andorra/Foreign Relations</title>
13164 <id>610</id>
13165 <revision>
13166 <id>15899141</id>
13167 <timestamp>2002-10-09T13:48:41Z</timestamp>
13168 <contributor>
13169 <username>Magnus Manske</username>
13170 <id>4</id>
13171 </contributor>
13172 <minor />
13173 <comment>#REDIRECT [[Foreign relations of Andorra]]</comment>
13174 <text xml:space="preserve">#REDIRECT [[Foreign relations of Andorra]]</text>
13175 </revision>
13176 </page>
13177 <page>
13178 <title>Andorra/Foreign relations</title>
13179 <id>611</id>
13180 <revision>
13181 <id>15899142</id>
13182 <timestamp>2002-08-04T11:22:05Z</timestamp>
13183 <contributor>
13184 <username>Ellmist</username>
13185 <id>2214</id>
13186 </contributor>
13187 <comment>move to Foreign relations of Andorra</comment>
13188 <text xml:space="preserve">#REDIRECT [[Foreign relations of Andorra]]</text>
13189 </revision>
13190 </page>
13191 <page>
13192 <title>Arithmetic mean</title>
13193 <id>612</id>
13194 <revision>
13195 <id>39274572</id>
13196 <timestamp>2006-02-12T00:51:46Z</timestamp>
13197 <contributor>
13198 <username>Michael Hardy</username>
13199 <id>4626</id>
13200 </contributor>
13201 <text xml:space="preserve">In [[mathematics]] and [[statistics]], the '''arithmetic [[mean]]''' of a set of numbers is the sum of all the members of the set divided by the number of items in the set (cardinality). (The word ''set'' is used perhaps somewhat loosely; for example, the number 3.8 could occur more than once in such a &quot;set&quot;.) If one particular number occurs more times than others in the set, it is called a mode. The arithmetic mean is what pupils are taught very early to call the &quot;[[average]].&quot; If the set is a [[statistical population]], then we speak of the '''population mean'''. If the set is a [[sampling (statistics)|statistical sample]], we call the resulting [[statistic]] a '''sample mean'''.
13202
13203 When the mean is not an accurate estimate of the median, the set of numbers, or [[frequency distribution]], is said to be [[skewness|skewed]].
13204
13205 The symbol &amp;mu; (Greek: mu) is used to denote the arithmetic mean of a population.
13206
13207 If we denote a set of data by ''X'' = { ''x''&lt;sub&gt;1&lt;/sub&gt;, ''x''&lt;sub&gt;2&lt;/sub&gt;, ..., ''x''&lt;sub&gt;''n''&lt;/sub&gt;}, then the sample mean is typically denoted with a horizontal bar over the variable (''xĖ…'', generally enunciated &quot;''x'' bar&quot;).
13208
13209 In practice, the difference between &amp;mu; and ''xĖ…'' is that &amp;mu; is typically unobservable because one observes only a sample rather than the whole population, and if the sample is drawn randomly, then one may treat ''xĖ…'', but not &amp;mu;, as a [[random variable]], attributing a [[probability distribution]] to it.
13210
13211 Both are computed in the same way:
13212
13213 :&lt;math&gt;\mathrm{mean} = \bar{x} = (x_1+\cdots+x_n)/n.&lt;/math&gt;
13214
13215 The arithmetic mean is greatly influenced by [[outlier]]s. For instance, reporting the &quot;average&quot; [[net worth]] in [[Redmond, Washington]] as the arithmetic mean of all annual net worths would yield a surprisingly high number because of [[Bill Gates]]. These distortions occur when the mean is different from the median, and the median is a superior alternative when that happens.
13216
13217 In certain situations, the arithmetic mean is the wrong concept of &quot;average&quot; altogether. For example, if a stock rose 10% in the first year, 30% in the second year and fell 10% in the third year, then it would be incorrect to report its &quot;average&quot; increase per year over this three year period as the arithmetic mean (10% + 30% + (&amp;minus;10%))/3 = 10%; the correct average in this case is the [[geometric mean]] which yields an average increase per year of only 8.8%.
13218
13219 If ''X'' is a [[random variable]], then the [[expected value]] of ''X'' can be seen as the long-term arithmetic mean that occurs on repeated measurements of ''X''. This is the content of the [[law of large numbers]]. As a result, the sample mean is used to estimate unknown expected values.
13220
13221 Note that several other &quot;means&quot; have been defined, including the [[generalized mean]], the [[generalised f-mean|generalized f-mean]], the [[harmonic mean]], the [[arithmetic-geometric mean]], and the [[weighted mean]].
13222
13223 ==Alternate notations==
13224 The arithmetic mean may also be expressed using the sum notation:
13225
13226 :&lt;math&gt;\bar{x} = \frac1n\sum_{i=1}^n x_i.&lt;/math&gt;
13227
13228 ==See also==
13229 [[mean]], [[average]], [[summary statistics]], [[variance]], [[central tendency]], [[standard deviation]], [[inequality of arithmetic and geometric means]], [[Muirhead's inequality]]
13230
13231 ==External links==
13232 *[http://www.sengpielaudio.com/calculator-geommean.htm Calculations and comparisons between arithmetic and geometric mean between two numbers]
13233 *[http://www.cut-the-knot.org/Generalization/means.shtml Arithmetic and geometric means] - [[cut-the-knot]]
13234
13235 [[Category:Statistics]]
13236 [[Category:Means]]
13237
13238 &lt;!-- interwiki --&gt;
13239
13240 [[ar:Ų…ØĒŲˆØŗØˇ Ø­ØŗابŲŠ]]
13241 [[cs:Aritmetick%C3%BD pr%C5%AFm%C4%9Br]]
13242 [[de:Mittelwert]]
13243 [[es:Media aritmÊtica]]
13244 [[fr:Moyenne arithmÊtique]]
13245 [[hr:Aritmeti%C4%8Dka_sredina]]
13246 [[nl:Rekenkundig gemiddelde]]
13247 [[ja:&amp;#31639;&amp;#34899;&amp;#24179;&amp;#22343;]]
13248 [[no:Gjennomsnitt]]
13249 [[pl:&amp;#346;rednia arytmetyczna]]
13250 [[pt:MÊdia aritmÊtica]]
13251 [[fi:Aritmeettinen keskiarvo]]
13252 [[zh:įŽ—术åšŗ均数]]</text>
13253 </revision>
13254 </page>
13255 <page>
13256 <title>American Football Conference</title>
13257 <id>615</id>
13258 <revision>
13259 <id>39772694</id>
13260 <timestamp>2006-02-15T19:57:26Z</timestamp>
13261 <contributor>
13262 <username>Zzyzx11</username>
13263 <id>182902</id>
13264 </contributor>
13265 <comment>briefly mention the NFC</comment>
13266 <text xml:space="preserve">[[Image:AmericanFootballConference.png|right|American Football Conference]]
13267 The '''American Football Conference''' ('''AFC''') is one of the two conferences of the [[National Football League]] (NFL). The AFC was created after the league [[AFL-NFL Merger|merged]] with the [[American Football League]] (AFL) in early 1970. The NFL's [[Cleveland Browns]], [[Pittsburgh Steelers]], and the then-[[Indianapolis Colts|Baltimore Colts]] agreed to join the new AFC along with the 10 former AFL teams. All of the other NFL teams formed the [[National Football Conference]] (NFC). Initially, this alignment proved to be very unpopular with fans in these cities.
13268
13269 The AFC logo, shown to the right, is a variation of the old AFL logo [http://en.wikipedia.org/wiki/Image:AmericanFootballLeague.jpg as seen here]. Introduced in 1970 alongside the beginning of the new AFC, the logo has basically remained unchanged since its introduction, though the &quot;A&quot; wasn't as bold when it was first introduced.
13270
13271 The AFC currently consists of 16 teams, organized into four divisions (North, South, East, and West) of four teams each. Each team plays the other teams in their division twice (home and away) during the regular season in addition to 10 other games/teams assigned to their schedule by the NFL the previous May. Two of these games are assigned on the basis of the team's final record in the previous season. The remaining 8 games are split between the roster of two other NFL divisions. This assignment shifts each year. For instance, in the [[2006 NFL season|2006 regular season]], each team in the [[AFC East]] will play a game apiece against each team in both the [[AFC South]] and the [[NFC North]]. In this way division competition consists of common opponents, with the exception of the 2 games assigned on the strength of each team's prior season record. The NFC operates according to the same system.
13272
13273 At the end of each football [[season (sport)|season]], there are [[NFL playoffs|playoff]] games involving the top six teams in the AFC (the four division champions by place standing and the top two remaining non-division-champion teams (&quot;[[Wild card (sports)|wild cards]]&quot;) by record). The last two teams remaining play in the [[AFC Championship Game|AFC Championship game]] with the winner receiving the [[Lamar Hunt]] Trophy. The AFC champion plays the [[National Football Conference|NFC]] champion in the [[Super Bowl]].
13274
13275 {{NFL}}
13276
13277
13278 [[Category:National Football League]]
13279
13280 [[da:American Football Conference]]
13281 [[fr:American Football Conference]]</text>
13282 </revision>
13283 </page>
13284 <page>
13285 <title>Applied Mathematics</title>
13286 <id>616</id>
13287 <revision>
13288 <id>15899145</id>
13289 <timestamp>2002-05-05T14:35:26Z</timestamp>
13290 <contributor>
13291 <username>Maveric149</username>
13292 <id>62</id>
13293 </contributor>
13294 <comment>#redirect [[applied mathematics]]</comment>
13295 <text xml:space="preserve">#redirect [[applied mathematics]]
13296 </text>
13297 </revision>
13298 </page>
13299 <page>
13300 <title>Albert Arnold Gore</title>
13301 <id>617</id>
13302 <revision>
13303 <id>35530264</id>
13304 <timestamp>2006-01-17T11:55:38Z</timestamp>
13305 <contributor>
13306 <username>Korg</username>
13307 <id>263660</id>
13308 </contributor>
13309 <minor />
13310 <comment>{{hndis}}</comment>
13311 <text xml:space="preserve">There have been two [[United States]] [[politician]]s named '''Albert Arnold Gore'''.
13312
13313 * The father, [[Albert Gore, Sr.]], was a Senator from Tennessee from 1953 to 1971.
13314 * The son, [[Albert Gore, Jr.]] (often called simply &quot;Al Gore&quot;) was both a Representative and a Senator from Tennessee, and was both a U.S. Vice President and a presidential candidate.
13315
13316 {{hndis}}</text>
13317 </revision>
13318 </page>
13319 <page>
13320 <title>AnEnquiryConcerningHumanUnderstanding</title>
13321 <id>618</id>
13322 <revision>
13323 <id>15899147</id>
13324 <timestamp>2002-08-31T19:45:59Z</timestamp>
13325 <contributor>
13326 <username>Bryan Derksen</username>
13327 <id>66</id>
13328 </contributor>
13329 <minor />
13330 <comment>removed old article from below the redirect - it's already been moved over</comment>
13331 <text xml:space="preserve">#REDIRECT [[An Enquiry Concerning Human Understanding]]</text>
13332 </revision>
13333 </page>
13334 <page>
13335 <title>Al Gore</title>
13336 <id>619</id>
13337 <revision>
13338 <id>42075724</id>
13339 <timestamp>2006-03-03T17:33:26Z</timestamp>
13340 <contributor>
13341 <ip>64.8.10.9</ip>
13342 </contributor>
13343 <text xml:space="preserve">:''This article is about the former United States Vice President. For his father, see [[Albert Gore, Sr.|Albert Gore, Sr.]]''
13344 {| class=&quot;toccolours&quot; style=&quot;float: right; margin: 0 0 1em 1em; text-align:left; clear:right&quot;
13345 |+ style=&quot;margin-left: inherit; font-size: larger;&quot; | '''Albert Arnold Gore, Jr.'''
13346 |-
13347 | align=&quot;center&quot; colspan=2 | [[Image:AlGorerecent.jpg|200px|none|Al Gore]]
13348 |-
13349 ! Order:
13350 | 45th Vice President
13351 |-
13352 ! Term of Office:
13353 | [[January 20]], [[1993]] to [[January 20]], [[2001]]
13354 |-
13355 ! Preceded by:
13356 | [[Dan Quayle]]
13357 |-
13358 ! Succeeded by:
13359 | [[Dick Cheney]]
13360 |-
13361 ! Date of Birth
13362 | [[March 31]], [[1948]]
13363 |-
13364 ! Place of Birth:
13365 | [[Washington, D.C.]]
13366 |-
13367 ! [[Wife]]:
13368 | [[Tipper Gore|Mary Elizabeth &quot;Tipper&quot; Gore]]
13369 |-
13370 ! [[Profession]]:
13371 | [[Journalist]], [[Businessman]]
13372 |-
13373 ! [[Political party|Political Party]]:
13374 | [[Democratic Party (United States)|Democrat]]
13375 |-
13376 ! [[President of the United States|President]]:
13377 | [[Bill Clinton]]
13378 |}
13379 '''Albert Arnold Gore, Jr.''' (born [[March 31]], [[1948]]) is an [[United States|American]] [[politician]] and businessman, who served as the 45th [[Vice President of the United States]] from [[1993]] to [[2001]].
13380
13381 He [[U.S. presidential election, 2000|ran for President in 2000]] following [[Bill Clinton]]'s two four-year terms. He was defeated in the [[U.S. Electoral College|Electoral College]] vote by the [[United States Republican Party|Republican]] candidate [[George W. Bush]] on a vote of 271-266 with a Gore committed Elector from [[Washington, DC]] abstaining. However, Gore did receive more individual votes than Bush. The election was bitterly contested, including multiple recounts and a [[Bush v. Gore|5-4 Supreme Court]] decision that effectively secured the election for President [[George W. Bush]].
13382
13383 Gore currently serves as President of the American television channel [[Current TV|Current]] and Chairman of [[Generation Investment Management]], sits on the board of directors of [[Apple Computer]], and serves as an unofficial advisor to [[Google]]'s senior management.
13384 Although speculation about a possible [[U.S. presidential election, 2008|presidential run in 2008]] still continues, he has stated that he does not currently plan to return to politics, but doesn't rule this possibility out in the future.
13385
13386 ==Early life==
13387 He attended the [[Sheridan school|Sheridan School]], and later the elite [[St. Albans School]]. In 1965, Gore enrolled at [[Harvard College]], where he majored in government. His roommates (in [[Dunster House]]) were actor [[Tommy Lee Jones]] and former Columbia University women's basketball star Katie Day's father, Bart Day. Gore graduated from Harvard in June 1969 with a Bachelor of Arts degree.
13388
13389 :For more information on Gore's academic records, see [http://www.washingtonpost.com/ac2/wp-dyn?pagename=article&amp;amp;contentId=A37397-2000Mar18]
13390
13391 ==Family==
13392 Al Gore was born in [[Washington, D.C.]], to [[Albert Gore, Sr.|Albert A. Gore, Sr.]], a politician, and [[Pauline LaFon Gore]], one of the first female lawyers to graduate from Vanderbilt Law School. Since his [[father]] was a veteran Democratic senator from Tennessee, Al Gore, Jr. divided his childhood between Washington, D.C., and [[Carthage, Tennessee|Carthage]], [[Tennessee]].
13393 During the school year, the younger Gore lived in a [[hotel]] in Washington, during summer vacations, he lived in Carthage, where he worked on the Gore family farm.
13394
13395 In 1970, Gore married Mary Elizabeth Aitcheson ([[Tipper Gore]]), whom he had first met many years before at his high school senior [[prom]] (St. Albans School in Washington, D.C.). They have four children: [[Karenna Gore|Karenna]] (born [[August 6]], [[1973]]), married to [[Drew Schiff]]; [[Kristin Gore|Kristin]] (born [[June 5]], [[1977]]); [[Sarah Gore|Sarah]] (born [[January 7]], [[1979]]); and [[Al Gore III|Al III]] (born [[October 19]], [[1982]]). The Gores also have two grandchildren: Wyatt (born [[July 4]], [[1999]]) and Anna Schiff.
13396
13397 The Gores now reside in [[Nashville]], Tennessee, USA, and own a small farm near Carthage, Tennessee. The family attends New Salem Missionary [[Baptist Church]] in Carthage. The Gores in late 2005 bought a condo at San Francisco's swanky St. Regis.
13398
13399 [http://www.prweb.com/releases/2005/12/prweb326327.htm]
13400
13401 ==Soldier and journalist==
13402 [[Image:AlGoreVietnam.gif|right|thumb|200px|Gore served as a field reporter in Vietnam for four months.]]
13403
13404 Although opposed to the Vietnam War, on [[August 7]], [[1969]], Gore enlisted in the [[United States Army|army]] to participate in the [[Vietnam War]] effort. After completing training as a military journalist, Gore shipped to [[Vietnam]] in early 1971, serving for four months before being given an honorable discharge. The chronology of Gore's military service is as follows:
13405 * '''August 1969''': Enlisted at the [[Newark, New Jersey]] recruiting office.
13406 * '''August to October 1969''': 8 weeks of basic training at [[Fort Dix]], [[New Jersey]]
13407 * '''Late October 1969 to December 1970''': [[Fort Rucker]], [[Alabama]], on-the-job occupational training at the [[Army Flier]] newspaper.
13408 * '''January 1971 to May 1971''': field reporter in [[Vietnam]], part of the 20th Engineer Brigade, stationed primarily at [[Bien Hoa]] Air Base near [[Saigon]].
13409 * '''[[May 24]], [[1971]]''': Given an honorable discharge, after his early discharge request was granted.
13410
13411 Gore stated many times that he opposed the Vietnam War, but chose to enlist anyway. Some observers have noted that Gore could have avoided Vietnam in a number of ways. Gore considered all these options, but said that his sense of civic duty compelled him to serve. [[Alexander Cockburn]] and [[Jeffrey St. Clair]] suggest in ''[[Al Gore: A User's Manual]]'' that Gore joined the military for political gain.
13412
13413 Because Gore served as a journalist, he was never exposed to front-line combat. Although some allege that his famous father's influence helped him to obtain this position, most military analysts agree that any man who enlisted with a Harvard degree had a good chance of being assigned a support specialty rather than an infantry position (even at the war's height, 88% of all servicemen were assigned to noncombatant specialties). However, Gore's decision to enlist for a two year term did mean that he would not be able to select his assignment, a choice which was available to three year enlistees. According to [[Newsweek]] journalist [[Bill Turque]]'s [[biography]] ''[[Inventing Al Gore]]'' (which does not shy away from criticism and scandals, such as charging Gore with smoking [[marijuana]] far more frequently than he admits),
13414 :''Dess Stokes, staff sergeant at the Newark Armed Forces Entrance and Examination Station on the day he walked in, doesn't remember any communication from superiors about Gore. A kid with Gore's background (a 134 [[IQ]] and a Harvard degree), he said, didn't need to be a senator's son with high-level contacts to get the military job he wanted''.
13415
13416 Gore's father, [[Al Gore Sr.]], lost the [[U.S. Senate election, 1970|1970 election]], and was no longer a Senator by the time Gore arrived in Vietnam, but was a Senator until January 1971 which included the time his son would have received his assignment. Some critics charge that his father's stature led Gore's superiors to give him less dangerous assignments than they might otherwise have given him. According to combat photographer [[H. Alan Leo]], Gore was protected from dangerous situations at the request of Brigadier General [[Kenneth B. Cooper]], the 20th Engineer Brigades Commander. Leo stated that Gore's trips into the field were safe, and that Gore &quot;could have worn a tuxedo.&quot; These remarks seem to contradict Gore's many public statements;
13417
13418 :&quot;I carried an M-16. I pulled my turn on the perimeter at night and walked through the elephant grass and I was fired upon.&quot;(''[[Baltimore Sun]]'')
13419 :&quot;I took my turn regularly on the perimeter in these little firebases out in the boonies. Something would move, we'd fire first and ask questions later.&quot; (''[[Vanity Fair (magazine)|Vanity Fair]]'')
13420 :&quot;I was shot at. I spent most of my time in the field.&quot; (''[[Washington Post]]'')
13421 :&quot;I used to fly these things (combat helicopters) with the doors open, sitting on the ledge with our feet hanging down. If you flew low and fast, they wouldn't have as much time to shoot you.&quot;(''[[Weekly Standard]]'')
13422
13423 For his part, Gore has stated that he knew Leo but rarely traveled with him in Vietnam, and that he never felt that he was being given special protection. On the other hand, Leo's testimony is that Cooper gave the orders before Gore arrived, so Gore would not know about them. The question of whether Leo frequently traveled with Gore or not still has not been conclusively answered.
13424
13425 Turque's book, however, states that
13426 :''[Cooper] said that he has no recollection of even meeting Leo, much less discussing Gore's safety with him. ...''
13427 :''The evidence indicates that if there was an official effort to guarantee Gore's safety, it was uneven at best. His clippings from the Castle Courier, the newspaper of the U.S. Army Engineering Command, and other publications suggest that he pulled his weight, which in his case meant choppering around to report features about the good works of the 20th Engineers... When Smith said he was scheduled to leave for R&amp;amp;R in Hawaii, the sergeant called for volunteers. Gore stepped up and spent a cold night in a foxhole. &quot;Al did what everybody else did,&quot; said Mike O'Hara, the photographer who shot the Khe Sanh assignment...''
13428 :''Regulations allowed for early release of personnel to teach or attend school if their services were deemed &quot;not essential to the mission,&quot; and Gore certainly qualified. ''
13429
13430 Gore stated in 1988 that his experience in Vietnam
13431 :''didn't change my conclusions about the war being a terrible mistake, but it struck me that opponents to the war, including myself, really did not take into account the fact that there were an awful lot of South Vietnamese who desperately wanted to hang on to what they called freedom. Coming face to face with those sentiments expressed by people who did the laundry and ran the restaurants and worked in the fields was something I was naively unprepared for''.
13432
13433 After returning from Vietnam, Gore spent five years as a [[Journalist|reporter]] for the ''Tennessean'', a newspaper headquartered in [[Nashville, Tennessee]]. During this time, Gore also attended [[Vanderbilt University| Vanderbilt]] Divinity School and Law School, although he did not complete a degree at either.
13434
13435 ==Congress==
13436 [[Image:GoreSenate.jpg|right|thumb|150px|Al Gore speaks during a [[congressional hearing]] in the 1980s.]]
13437 In the spring of 1976, Gore quit law school to run for the [[United States House of Representatives|U.S. House]], in [[United States House of Representatives, Tennessee District 4|Tennessee's fourth district]]. Gore defeated [[Stanley Rogers]] in the Democratic primary, then ran unopposed and was elected to his first [[Congress of the United States|Congressional]] post. He was re-elected three times, in [[U.S. House election, 1978|1978]], [[U.S. House election, 1980|1980]], and [[U.S. House election, 1982|1982]]. In [[U.S. Senate election, 1984|1984]] Gore did not run for the House; instead he successfully ran for a seat in the [[United States Senate|Senate]], which had been vacated by Republican Majority Leader [[Howard Baker]]. Gore served as a Senator from Tennessee until 1993, when he became Vice President.
13438
13439 ===House of Representatives===
13440 On [[March 19]], [[1979]], Gore became the first person to appear on [[C-SPAN]], making a speech in the House chambers.
13441
13442 ===Senate===
13443
13444 ===1988 Presidential Run===
13445 In 1988, Gore ran for President but failed to obtain the Democratic nomination, which went instead to [[Michael Dukakis]].
13446
13447 ===Son's Accident and effect on 1992 Presidential run===
13448 On [[April 3]], [[1989]], Gore's six-year-old son [[Al Gore III|Albert]] was nearly killed in an automobile accident while leaving the [[Baltimore Orioles]] opening game. Because of this and the resulting lengthy healing process, his father chose to stay near him during the recovery instead of laying the foundation for a presidential primary campaign against eventual nominee Bill Clinton. Gore started writing ''[[Earth in the Balance]]'', his book on environmental conservation, during his son's recovery. ''Earth in the Balance'' became the first book written by a sitting senator to make ''[[The New York Times]]'' best-seller list since [[John F. Kennedy]]'s ''[[Profiles in Courage]]''.
13449
13450 ===Congressional Committees===
13451 While in Congress, Gore was a member of the following committees: [[U.S. Senate Committee on Armed Services|Armed Services]] (Defense Industry and Technology Projection Forces and Regional Defense; [[Strategic Forces and Nuclear Deterrence]]); [[U.S. Senate Committee on Commerce, Science and Transportation|Commerce, Science and Transportation]] (Communications; Consumer; Science, Technology and Space- chairman 1992; [[Surface Transportatio]]n; [[National Ocean Policy]] Study); [[U.S. Congress Joint Committee on Printing|Joint Committee on Printing]]; [[U.S. Congress Joint Economic Committee|Joint Economic Committee]]; [[U.S. Senate Committee on Rules and Administration|Rules and Administration]].
13452
13453 ==Vice Presidency==
13454 [[Image:ClintonGore2.jpg|thumb|350px|right|Vice President talking with President Clinton as the two pass through the Colonnade at the White House.]]
13455 [[Bill Clinton]] chose Gore to be his running mate on [[July 9]], [[1992]], to the surprise of many as the two were both young and were from the same region of the nation. After winning the [[U.S. presidential election, 1992|1992 election]], Al Gore was inaugurated as the 45th Vice President of the United States on [[January 20]], [[1993]]. Clinton and Gore were re-elected to a second term in the [[U.S. presidential election, 1996|1996 election]].
13456
13457 During his time as Vice President, Al Gore was mostly a behind the scenes player. However, many experts consider him to be one of the most active and influential Vice Presidents in U.S. history. This was evident as Gore had weekly lunches with Clinton to keep each other abreast of current developments, although he later said that it was he who insisted on having those weekly lunches in the first place.
13458
13459 ===Debate with Perot===
13460 In 1993 Gore debated [[Ross Perot]] on [[CNN]]'s [[Larry King Live]] on the issue of [[free trade]]. Public opinion polls taken after the debate showed that a majority of Americans agreed with his point of view and supported [[NAFTA]]. Some claim that this performance may have been responsible for the passing of NAFTA in the [[United States House of Representatives|House of Representatives]], where it passed 234-200. [http://clinton5.nara.gov/WH/EOP/OVP/initiatives/reinventing_government.html]
13461
13462 ===Initatives===
13463 One of Gore's major accomplishments as Vice President was the ''National Performance Review'', which pointed out waste, fraud, and other abuse in the federal government and stressed the need for cutting the size of the [[bureaucracy]] and the number of regulations. His book later helped guide President Clinton when he down sized the [[federal government]]. [http://clinton2.nara.gov/WH/EOP/OVP/speeches/interego.html]
13464
13465 ====Internet Education====
13466 As Vice President, Gore instituted a federal program calling for all schools and libraries to be wired to the [[Internet]]. This was a culmination of work that he had started several years before. While serving in the Senate, Gore had introduced legislation which called for the creation of a new federal research center for educational computing to support an &quot;information systems highway&quot;. [http://clinton5.nara.gov/WH/EOP/OVP/initiatives/technology.html]
13467
13468 ====Environment====
13469 During Gore's tenure as Vice President, he was a strong proponent for environmental protection. While a senator working on his book ''Earth in the Balance'', Gore had traveled around the world on numerous fact-finding missions. On [[Earth Day]] 1994, Gore launched the worldwide [[GLOBE program]], an innovative hands-on, school-based education and science activity that made extensive use of the Internet to increase student awareness of their environment and contribute research data for scientists.
13470
13471 The opinions he developed on issues such as global warming, the depletion of the ozone layer, and the destruction of rain forests is said to have played a major role in policy making for the Clinton administration. In the late nineties, Gore strongly pushed for the passage of the [[Kyoto Treaty]], which called for reduction in green house emissions. [http://web.archive.org/web/20001207090900/www.algore.com/speeches/speeches_kyoto_120897.html], [http://clinton5.nara.gov/WH/EOP/OVP/initiatives/environment.html]
13472
13473 ====Foreign Policy====
13474 Because of President Clinton's inexperience and Gore's service in Vietnam and in the Senate, Clinton would often look to Gore for advice in the area of foreign policy. Gore was one of the first to call for action to remove Yugoslav President [[Slobodan MiloÅĄević]] from power in 1998. Gore also supported [[Operation Desert Fox]], a three day bombing campaign against Iraq that attempted to &quot;degrade Saddam Hussein's ability to make and to use weapons of mass destruction.&quot; [http://www.defenselink.mil/specials/desert_fox/], [http://clinton5.nara.gov/WH/EOP/OVP/initiatives/foreign_policy.html]
13475
13476 [[Image:Algoreyasser.jpg|right|thumb|200px|Vice President Al Gore works along side President Clinton in trying to negotiate a Middle East peace plan with Palestinian leader [[Yasser Arafat]].]]
13477
13478 ====Other====
13479 During the Clinton/Gore administration, Americans enjoyed eight years of relative peace along with the longest economic expansion in history. Democrats attributed this prosperity to the policies of the Clinton/Gore administration, and especially to the passage of the [[Omnibus Budget Reconciliation Act of 1993]], for which Gore cast the [[U.S. Vice President's tie-breaking votes|tie-breaking vote]]. During his 2000 campaign for the presidency, Gore attributed several positive economic results to his and Clinton's policies [http://clinton5.nara.gov/WH/EOP/OVP/initiatives/economy.html] more than 22 million new jobs, highest homeownership in American history, Lowest unemployment in 30 years, Paid off $360 billion of the national debt, lowest poverty rate in 20 years, higher incomes at all levels, converted the largest budget deficit, up to that time, in American history to the largest surplus, lowest government spending in three decades, lowest federal income tax burden in 35 years, and more families own stock than ever before. However Gore later placed a large share of the blame for his election loss on the economic downturn and NASDAQ crash of March 2000 in an interview with [[National Public Radio]]'s [[Bob Edwards]]. [http://www.npr.org/templates/story/story.php?storyId=848572]
13480
13481 ==2000 presidential election==
13482 {{main articles|[[Al Gore presidential campaign, 2000]] and [[U.S. presidential election, 2000]]}}
13483 [[Image:Goreconvention.jpg|thumb|right|200px|Al Gore and running-mate Joe Lieberman at the [[2000 Democratic National Convention]].]]
13484 After two terms as Vice President, Gore ran for [[President of the United States|President]]. In the Democratic primaries, Gore faced an early challenge from [[Bill Bradley]]. Gore's nomination was never really in doubt and Bradley withdrew from the race in early March 2000 after failing to win any state primary or caucus.
13485
13486 In August 2000, Gore surprised many when he selected United States Senator [[Joe Lieberman]] to be his vice-presidential running mate. Lieberman, who is a more conservative Democrat than Gore, had publicly blasted President Clinton for the [[Monica Lewinsky]] affair. Many pundits saw Gore's choice of Lieberman as another way of trying to distance himself from the scandal-prone Clinton White House. Lieberman was also the first Jewish nominee on a major party's national ticket.
13487
13488 During the entire campaign, Gore was neck-and-neck in the polls with [[United States Republican Party|Republican]] [[Governor of Texas]] [[George W. Bush]]. On Election Day, the results were so close that the outcome of the race took over a month to resolve, highlighted by the premature declaration of a winner on election night, and an extremely close result in the state of [[Florida]]. On election night, news networks first called Florida for Gore, then Fox News decided to call it for Bush and all of the other news stations followed their decision.
13489
13490 The race was ultimately decided by a razor thin margin of only 537 popular votes in Florida, a state favored to have gone to Bush (as his brother served as Governor). The 537 number was an astonishingly close margin out of some 105 million votes cast nationwide. Florida's 25 electoral votes were awarded to George W. Bush only after numerous court challenges. Al Gore publicly conceded the election after the [[Supreme Court of the United States|Supreme Court]] in ''[[Bush v. Gore]]'' voted 7 to 2 to declare the ongoing recount procedure unconstitutional because it feared that different standards would be used in different parts of the state, and 5 to 4 to ban recounts using other procedures. [[Image:Gore_Debate.jpg|thumb|200px|Al Gore makes a point during a [[U.S. presidential debate|presidential debate]] during the 2000 election as George W. Bush looks on.]] Gore strongly disagreed with the Court's decision, but decided &quot;for the sake of our unity of the people and the strength of our democracy, I offer my concession.&quot; He had previously made a concession phone call to Bush the night of the election, but quickly retracted it after learning just how close the election was. Following the election, a subsequent recount conducted by various U.S. news media organizations indicated that Mr. Bush would have won using the partial recount method of 4 strongly Democratic areas advocated by Mr. Gore, but that Mr. Gore would have won given a full recount of the state. [http://www.bushwatch.com/gorebush.htm][http://www.cnn.com/SPECIALS/2001/florida.ballots/stories/main.html].
13491
13492 The states that ultimately voted for Gore over Bush in the 2000 elections were New York, New Jersey, Rhode Island, Connecticut, Delaware, Maine, Vermont, Massachusetts, Washington, D.C., Pennsylvania, Michigan, Wisconsin, New Mexico, California, Oregon, Washington, Illinois, Iowa, Maryland, Minnesota and Hawaii giving Gore 267 electoral votes to Bush's 271. One of Gore's electors cast a blank ballot, to protest what she called DC's &quot;colonial status&quot;, thus the candidate's final number of electoral votes was 266.
13493
13494 The Florida election has been closely scrutinized since the election. Critics have argued that the Governor of Florida, Jeb Bush (Brother of George W. Bush) and the Secretary of State of Florida, Katherine Harris, did play a part in ensuring that the state was in the red column of the Republicans come election day. Several irregularities are thought to have favored Bush; others may have given Gore an edge. Irregularities favoring Bush included the notorious Palm Beach &quot;butterfly ballots&quot;, which were alleged to have produced an unexpectedly large number of votes for [[Reform Party of the United States of America|Reform Party]] candidate [[Pat Buchanan]], and a purge of some 50,000 alleged felons from the Florida voting rolls that included some voters who were again eligible to vote under Florida law. Many Bush supporters, however, believed that an unfair advantage was given to Gore when all major news networks, early on, prematurely projected Gore as the winner of Florida's 25 electoral votes at 7:52 PM Eastern Time. This happened before the polls closed in 10 Florida counties in the heavily Republican western panhandle which are in the Central Time Zone, and thus closed at 7 PM Central Time (8 PM Eastern). Some have thought that this depressed the pro-Bush vote in that area. [http://archives.cnn.com/2001/ALLPOLITICS/stories/02/02/cnn.report/cnn.pdf] During the numerous recounts (which made the phrase &quot;hanging chads&quot; infamous in the American vocabulary), there were also allegations of both pro-Bush and pro-Gore tampering by low-level operatives in the controversial counties. [http://www.newsmax.com/archives/articles/2000/11/26/230955.shtml] It is unclear what effect, if any, this may have had. And while the Gore camp fought (with some success) to keep overseas absentee votes out in counties thought to be pro-Bush, Bush operatives similarly (albeit while drawing less attention to their efforts) prevented the counting of overseas absentee votes in strong Democratic counties. Both sides contended that the votes were cast after Election Day, and since many of the envelopes did not have cancelled stamps, it was not clear when the votes were cast. Reports later surfaced that many overseas voters attempted to vote only after learning of the closeness of the Florida vote.
13495
13496 Some commentators still see such irregularities, and the legal maneuvering around the recounts as casting doubt on the legitimacy of the vote; as a matter of law, however, the issue was settled, albeit controversially again, when the [[Congress of the United States|U.S. Congress]] accepted Florida's electoral delegation, only after a challenge to the Florida electors was presented in the congressional chambers on [[January 6]], [[2001]] by members of the [[Congressional Black Caucus]]. Member after member went up decrying the lack of a senator who would be willing to co-sponsor the challenge without any effect. They thus failed to bring the challenge to a debate.
13497
13498 Concern about the possible disenfranchisement of voters in the Florida vote led to widespread calls for electoral reform in the United States, and ultimately to the passage of the [[Help America Vote Act]], which authorized the [[United States federal government]] to provide funds to the states to replace their mechanical voting equipment with [[electronic voting]] equipment. However, this has led to new controversies, because of the security weaknesses of the computer systems, the lack of paper-based methods of secure verification, and the necessity to rely on the trustworthiness of the manufacturers whose employees also count those votes.
13499 Although Gore won the nationwide popular vote by more than 500,000 votes, he lost the election by five electoral votes (with one D.C. elector, pledged to Gore, casting a blank ballot to protest the District's lack of representation in Congress).
13500
13501 [[Image:Al Gore on Futurama.JPG|thumb|[[Recurring_characters_of_Futurama#Al_Gore|Al Gore]] on [[Futurama]].]]
13502
13503 Joe Lieberman later criticized Al Gore for adopting a populist theme during their 2000 campaign. Lieberman said he objected to Gore's &quot;people vs. the powerful&quot; message, believing it was not the best strategy for Democrats to use to recapture the White House.[http://www.worldnetdaily.com/news/article.asp?ARTICLE_ID=28519]
13504
13505 While running for president in 2000, Al Gore was used as a voice actor for the television show ''[[Futurama]]'' (for which his daughter, Kristin, was a writer). He played [[Recurring characters of Futurama#Al Gore|himself]] again in another episode after the campaign was over.
13506
13507 ==Private citizen==
13508 ===Professor Gore===
13509 [[Image:Goreharvard2.jpg|right|200px|thumb|left|Al Gore re-emerges in 2001 as a visiting professor with a [[beard]].]]
13510 Following his election loss, Gore accepted visiting [[professor]]ships at [[Columbia University Graduate School of Journalism|Columbia University's Graduate School of Journalism]], [[Middle Tennessee State University]], [[University of California Los Angeles]], and [[Fisk University]]. In late 2001, Al Gore became a Senior Advisor to [[Google|Google]] and Vice Chairman of [[Los Angeles]]-based financial firm [[Metropolitan West Financial LLC]].
13511
13512 ===Blasting Bush===
13513 On [[September 23]], 2002, Gore spoke in [[San Francisco]] to The [[Commonwealth Club]] and made a controversial speech blasting Bush on the Iraq war [http://www.usatoday.com/news/world/2002-09-23-gore_x.htm] Although he admitted Saddam was a potential danger saying: &quot;We know that [Saddam] has stored secret supplies of biological and chemical weapons throughout his country. Iraq's search for weapons of mass destruction has proven impossible to deter and we should assume that it will continue for as long as Saddam is in power&quot;[http://www.commonwealthclub.org/archive/02/02-09gore-speech.html] He also spoke against rushing to war with Iraq, advising caution and saying that Iraq was a diversion from fighting Al-Qaeda and terrorism in Afghanistan and elsewhere: &quot;I don't think that we should allow anything to diminish our focus on avenging the 3,000 Americans who were murdered and dismantling the network of terrorists who we know to be responsible for it. The fact that we don't know where they are should not cause us to focus instead on some other enemy whose location may be easier to identify.&quot;
13514
13515 Following the [[November 5]], [[2002]], midterm elections Gore re-emerged into the public eye with a 14-city book tour and a well-orchestrated &quot;full Gore&quot; media blitz which included a pair of policy speeches. On [[September 23]], Gore delivered a speech on the impending [[2003 invasion of Iraq|War with Iraq]] and the [[War on Terrorism]] that generated a fair amount of commentary. Less than two weeks later, on October 2, he made a speech on Bush's handling of the economy to the [[Brookings Institution]]. Also, during this time period Gore guest starred on several programs such as [[The Late Show with David Letterman]] and [[Saturday Night Live]] (with legendary rock band [[Phish]]), appearing much more relaxed and funnier as a private citizen than he did while holding public office.
13516
13517 [[Image:Goresnl.jpg|right|200px|thumb|Al Gore hosting ''[[Saturday Night Live]]'' along side ''[[The West Wing (television)|West Wing]]'' stars [[Martin Sheen]] and [[John Spencer (actor)|John Spencer]].]]
13518 In 2003 Gore joined the board of directors of [[Apple Computer]]. On the political front, Gore kept his promise of staying involved in public debate when he offered his criticism and advice to the [[Bush Administration]] on key topics such as the [[2003 invasion of Iraq|Occupation of Iraq]], [[USA Patriot Act]], and [[natural environment|environmental]] issues, most notably [[global warming]]. Gore also continued to visit campuses across the nation lecturing on issues such as [[race]], [[media]], and [[democracy]].
13519
13520 On [[April 10]], [[2004]], Gore met with the [[9-11 Commission]] in private to give his testimony on what his administration did to prevent terror attacks. In a statement after the three-hour session, the commission said he was candid and forthcoming, and it thanked him for his &quot;continued cooperation.&quot;
13521
13522 In the summer of 2004, Gore teamed up with [[MoveOn.org]], to promote the new science fiction film, [[The Day After Tomorrow|''The Day After Tomorrow'']]. Although Gore said the movie was a far-fetched example of global warming, he said the movie would escalate public debate on the issue.
13523
13524 On [[April 27]], [[2005]], Gore gave an hour-long speech lambasting the GOP's effort to do away with the legislative [[filibuster]]. In response to Senate Majority Leader [[Bill Frist]], who for weeks had repeated threats to impose the &quot;[[nuclear option]]&quot; if [[Senate]] [[Democratic Party (United States)|Democrats]] did not stop blocking judicial nominees via the filibuster, Gore said, &quot;Their grand design is an all-powerful executive using a weakened [[legislature]] to fashion a compliant judiciary in its own image. The Senate has confirmed 205 or over 95% of President Bush's nominees. Democrats have held up only 10 nominees, less than 5%. Compare that with the 60 Clinton nominees who were blocked by Republican obstruction between 1995 and 2000. What is involved here is a power grab,&quot; Gore said. Gore also took aim at what he called &quot;religious zealots&quot; who claim special knowledge of [[god (monotheism)|God's]] will in [[American politics]]. He went on to say, &quot;They even claim that those of us who disagree with their point of view are waging war against people of faith. How dare they!&quot; This was Gore's first major policy speech of 2005 and also the first one since the defeat of Democratic hopeful John Kerry in late 2004.
13525
13526 In May 2005, Gore was awarded a lifetime achievement award for three decades of contributions to the Internet. The [[Webby Awards]], which are widely hailed as the ''[[Oscars]]'' of the web, &quot;wanted to set the record straight&quot; about Al Gore and the Internet once and for all. [[Tiffany Shlain]], the awards' founder and chairwoman said, &quot;It's just one of those instances someone did amazing work for three decades as congressman, senator and vice president and it got spun around into this political mess,&quot; Shlain said. [http://www.usatoday.com/tech/news/2005-05-04-gore-webby_x.htm]
13527
13528 In September 2005, Gore chartered two aircraft to evacuate 270 evacuees from New Orleans in the aftermath of [[Hurricane Katrina]]. [http://www.latimes.com/news/nationworld/nation/wire/sns-ap-katrina-gore,1,535141.story?coll=sns-ap-nation-headlines&amp;amp;ctrack=1&amp;amp;cset=true] He was highly critical of the government and federal response in the days after the hurricane.
13529
13530 ===Future===
13531 Speaking at an economic forum in [[Stockholm]], [[Sweden]], in October 2005, Gore again stated that he has no intention of ever running for president again in response to questions from reporters. However, Gore said he could not rule the possibility out completely saying, &quot;I do not completely rule out some future interest, but I do not expect to have that.&quot; When asked how the United States would have been different if he had become president, Gore stated, &quot;We would not have invaded a country that didn't attack us,&quot; he said, referring to Iraq. &quot;We would not have taken money from the working families and given it to the most wealthy families.&quot; &quot;We would not be trying to control and intimidate the news media. We would not be routinely torturing people,&quot; Gore said. [http://www.cbsnews.com/stories/2005/10/12/politics/main938098.shtml]
13532
13533 In the past few years, Gore has remained busy traveling the world speaking and participating in events mainly aimed towards global warming awareness and prevention.
13534
13535 On January 2006, Al Gore delivered a major speech criticising President Bush's use of domestic wiretaps. Gore stated that Bush broke the law and recommended an independent counsel investigate the matter further. Also in January 2006, Al Gore was the leading man in the Sundance global warming documentary ''[[An Inconvenient Truth]]''.
13536
13537 Al Gore will be publishing a second book on global warming titled &quot;An Inconvenient Truth&quot; in April 2006.
13538
13539 On February 12, 2006: Former US vice-president Al Gore on Sunday said that the US government had committed ‘terrible abuses’ against Arabs living in America after 9/11 attacks, and that most Americans did not support such treatment.
13540
13541 “The thoughtless way in which visas are now handled, that is a mistake,” Mr Gore said at the Jeddah Economic Forum. “The worst thing we can possibly do is to cut off the channels of friendship and mutual understanding between Saudi Arabia and the United States.”
13542
13543 The former US vice-president told this Saudi audience, many of them educated in US universities, that Arabs in the United States had been “indiscriminately rounded up, often on minor charges of overstaying a visa or not having a green card in proper order, and held in conditions that were just unforgivable.”
13544
13545 “Unfortunately there have been terrible abuses and it’s wrong. I do want you to know that it does not represent the desires or wishes or feelings of the majority of the citizens of my country.”
13546
13547 Terrence Jeffrey of [[Human Events]] and [[Jack Kelly]] of [[RealClearPolitics.com]] however criticized Gore's comments, and pointed out that [[9/11 Commission]] (page 492) reported that [[Khalid Sheikh Mohammed]], who planned the attacks, told interrogators most of the hijackers he selected were Saudis because they had the easiest time getting visas. [http://www.realclearpolitics.com/Commentary/com-2_17_06_JKE.html] [http://michellemalkin.com/archives/004544.htm] [[Mohammad Atta]] himself was in the United States, having overstayed his visa.
13548
13549 ====Television network====
13550 {{main|Current TV}}
13551 [[Image:Current.png|right|thumb|200px|Al Gore's ''Current'' official logo.]]
13552 On [[May 4]], [[2004]], [[INdTV]] Holdings, a company co-founded by Gore and [[Joel Hyatt]], purchased cable news channel [[NewsWorld International]] from [[Vivendi Universal]]. The new network will not have political leanings, Gore said, but will serve as an &quot;independent voice&quot; for a target audience of people between 18 and 34 &quot;who want to learn about the world in a voice they recognize and a view they recognize as their own.&quot; The network was relaunched under the name [[Current TV|Current]] on [[August 1]], [[2005]].
13553
13554 ====Investment firm====
13555 In late 2004, it was announced that Al Gore had launched and will chair an investment firm to seek out companies taking a responsible view on big global issues like [[climate change]].
13556
13557 Gore's group, [[Generation Investment Management]], was created to assist the growing demand for an investment style which can bring returns by blending traditional equity research with a focus on more intangible non-financial factors such as social and environmental responsibility and corporate governance.
13558
13559 ==2004 presidential election==
13560 ===Endorsing Dean===
13561 [[Image:AlGoreHowardDean.jpg|right|thumb|200px|Al Gore shocked many when he did not endorse his 2000 running mate Joe Lieberman, but the outsider candidate, Howard Dean, in 2003.]]
13562 Initially, Al Gore was touted as a logical opponent of George W. Bush in the [[2004 United States Presidential Election]]. &lt;!-- &quot;Re-elect Gore!&quot; was a common slogan among many Democrats who felt the former Vice President had been unfairly cheated out of the presidency, on the grounds that he had won the popular vote and (in the opinion of many){{fact}} should have won the Electoral College vote. --&gt; On [[December 16]], [[2002]] however, Gore announced that he would not run in 2004, saying that it was time for &quot;fresh faces&quot; and &quot;new ideas&quot; to emerge from the Democrats. When he appeared on a ''[[60 Minutes]]'' interview, Gore said that he felt if he had run, the focus of the election would be the rematch rather than the issues. Gore's former running mate, Joe Lieberman quickly announced his own candidacy for the presidency, which he had vowed he would not do if Gore ran.
13563
13564 Despite Gore taking himself out of the race, a handful of his supporters formed a national campaign to &quot;[[political draft|draft]]&quot; him into running. However, that effort largely came to an end when Gore publicly endorsed [[Governor of Vermont|Vermont Governor]] [[Howard Dean]] (over his former running mate [[Joe Lieberman]]) weeks before the first primary of the election cycle. There was still some effort to encourage write-in votes for Gore in the primaries by a different group of Gore supporters who were separate from the draft movement. Although Gore did receive a small number of votes in New Hampshire and New Mexico, that effort was halted when [[John Kerry]] pulled into the lead for the nomination. Gore's endorsement of Dean was helpful to the latter in legitimizing him in the eyes of the establishment faction of the Democratic Party, but it also led the media to dub Dean as the clear front-runner, with the result that his opponents devoted more of their emphasis to opposing him.
13565
13566 ===Campaigning against Bush===
13567 On [[January 15]], [[2004]], Al Gore gave a major policy address in [[New York City]] on [[climate change]] and the Bush administration's approach to the environment. Accompanied by slides and projector, Gore slammed the Bush administration's attitude towards global warming saying, &quot;There are many who still do not believe that global warming is a problem at all. And it's no wonder: because they are the targets of a massive and well-organized campaign of disinformation lavishly funded by polluters who are determined to prevent any action to reduce the [[greenhouse gas]] [[emissions]] that cause global warming, out of a fear that their profits might be affected if they had to stop dumping so much pollution into the atmosphere.&quot;
13568
13569 On [[February 9]], [[2004]], on the eve of the [[Tennessee]] primary, Gore gave what many consider his harshest criticism of the president yet when he accused [[George W. Bush]] of betraying the country by using the 9/11 attacks as a justification for the invasion of Iraq. &quot;He betrayed this country!&quot; Mr. Gore shouted into the microphone. &quot;He played on our fears! He took America on an ill-conceived foreign adventure dangerous to our troops, an adventure preordained and planned before 9/11 ever took place!&quot; Gore also urged all Democrats to unite behind their eventual nominee proclaiming, &quot;Any one of these candidates is far better than George W. Bush.&quot; In [[March 2004]] Gore, along with former Presidents [[Bill Clinton]] and [[Jimmy Carter]], united behind Kerry as the presumptive Democratic nominee.
13570
13571 [[Image:AlGoreSpeaking2004.jpg|right|thumb|200px|Al Gore, who just four years prior accepted his party's nomination, speaks as a party elder at the 2004 Democratic National Convention.]]
13572
13573 On [[April 28]], [[2004]], Gore announced that he would be donating $6 million to various Democratic Party groups. Drawing from his funds left over from his [[Al Gore presidential campaign, 2000|2000 presidential campaign]], Gore pledged to donate $4 million to the [[Democratic National Committee]]. The party's Senate and House committees would each get $1 million, and the party from Gore's home state of [[Tennessee]] would receive $250,000. In addition, Gore announced that all of the surplus funds in his &quot;Recount Fund&quot; from the 2000 election controversy that resulted in the Supreme Court halting the counting of the ballots, a total of $240,000, will be donated to the [[Florida]] Democratic Party.
13574
13575 In his speech, Gore stressed the importance of voting and having every vote counted, a point that foreshadowed the [[2004 U.S. election voting controversies]].
13576
13577 On [[May 26]], [[2004]], Gore gave a highly critical speech on the Iraq crisis and the [[Bush Administration]]. In the speech, Gore demanded [[Secretary of Defense]] [[Donald Rumsfeld]], [[United States National Security Advisor|National Security Advisor]] [[Condoleezza Rice]], [[Director of Central Intelligence]] [[George Tenet]], [[Deputy Secretary of Defense]] [[Paul Wolfowitz]], [[Undersecretary of Defense for Policy]] [[Douglas Feith]], and [[Under Secretary of Defense for Intelligence]] [[Stephen Cambone]] all resign for encouraging policies that led to the abuse of Iraqi prisoners and fanned hatred of Americans abroad. During the fiery speech, which lasted more than an hour, Gore called the Bush administration's Iraq war plan &quot;incompetent&quot; and called George W. Bush the most dishonest president since [[Richard Nixon]], who resigned the office of the presidency in 1974 following the [[Watergate]] scandal.
13578
13579 Gore also decried the [[Abu Ghraib prisoner abuse|abuse of prisoners in Abu Ghraib Prison in Iraq]], saying, &quot;What happened at that prison, it is now clear, is not the result of random acts of a few bad apples. It was the natural consequence of the Bush Administration policy.&quot;
13580
13581 ====Convention====
13582 As the first major speaker at the [[2004 Democratic National Convention]], Gore held himself out as a living reminder that every vote counts. &quot;Let's make sure not only that the Supreme Court does not pick the next president, but also that this president is not the one who picks the next Supreme Court,&quot; said Gore. Gore directed remarks to supporters of third-party presidential candidate [[Ralph Nader]], who abandoned the Democratic Party four years ago, asking them, &quot;Do you still believe that there was no difference between the candidates?&quot;
13583
13584 ====Post-Convention====
13585 On [[October 18]], 2004, Al Gore delivered his final major policy speech of the 2004 political season. In an hour long presentation, Gore concluded that, &quot;I'm convinced that most of the president's frequent departures from fact-based analysis have much more to do with right-wing political and economic [[ideology]] than with the [[Bible]].&quot;
13586
13587 ==Views and controversies==
13588 {{main|Al Gore controversies}}
13589 Gore is a strong supporter of [[abortion]] rights, [[free trade]], and strong [[environmentalism|environmental]] policy. He was a vocal opponent of the [[2003 invasion of Iraq]] [http://www.commonwealthclub.org/archive/02/02-09gore-speech.html].
13590 Gore has gradually moved politically further [[Left-wing politics | left]]; he was once a moderate-to-conservative lawmaker. While in Congress, Gore had a strong pro-life record on abortion and voted pro-life 27 times. When exactly Gore became pro-choice is unknown, but by 1988, when he sought the Democratic presidential nomination, he was on record as opposing the criminalization of abortion.
13591
13592 Critics have charged Gore with [[1996 U.S. campaign finance scandal|illegal fundraising]] at a Buddhist temple and illegal use of his government office and telephone for political fundraising in violation of the Hatch Act, although he was never indicted on such a charge.
13593
13594 ===The Internet===
13595 Gore is a frequent target of satire, based on his supposedly having claimed to have invented the Internet. In fact he never made such a claim [http://www.snopes.com/quotes/internet.asp]. Rather, during an interview with [[Wolf Blitzer]] on [[CNN]]'s &quot;Late Edition&quot; on March 9, 1999, Gore stated:
13596
13597 : During my service in the United States Congress, I took the initiative in creating the Internet. I took the initiative in moving forward a whole range of initiatives that have proven to be important to our country's economic growth and environmental protection, improvements in our educational system [http://www.cnn.com/ALLPOLITICS/stories/1999/03/09/president.2000/transcript.gore].
13598
13599 The phrase from the statement above which sparked the debate, &quot;I took the initiative in creating the Internet,&quot; referred to Gore's involvement with and sponsorship of the ''High Performance Computing Act of 1991'' which advanced the growth and mainstreaming of the Internet during the [[1990s]] [http://www.mit.edu/afs/net.mit.edu/dev/mit/jis/OldFiles/nrenbill.txt].
13600
13601 This statement was later defended by Internet pioneers [[Bob Kahn|Robert Kahn]] and [[Vinton Cerf]] [http://www.interesting-people.org/archives/interesting-people/200009/msg00052.html]:
13602
13603 : ...as the two people who designed the basic architecture and the core protocols that make the Internet work, we would like to acknowledge VP Gore's contributions as a Congressman, Senator and as Vice President. No other elected official, to our knowledge, has made a greater contribution over a longer period of time.
13604
13605 ===Accusations of hypocrisy by McClellan and Gonzales===
13606 On the 16th of January, 2006, Gore accused U.S. [[George W. Bush|President Bush]] of &quot;breaking the law repeatedly and insistently,&quot; and called for a special investigation of [[NSA]] spying on Americans because the spying was without a warrant from a special federal court that authorizes such requests to eavesdrop on Americans.
13607
13608 Bush press secretary [[Scott McClellan]] and Attorney General [[Alberto Gonzales]] both responded to reporters that the Clinton-Gore administration had done illegal warrantless physical searches themselves of [[Aldrich Ames]] without permission from a judge.
13609
13610 &quot;I think his hypocrisy knows no bounds,&quot; McClellan said of Gore. But the [[Foreign Intelligence Surveillance Act]] at the time did not cover physical searches. The law had changed in 1995. Gore claimed that because Gonzales made a &quot;political defense&quot; for Bush, he was no longer eligible to review charges against Bush and therefore must name a [[special counsel]].
13611
13612 &quot;His charges are factually wrong,&quot; said Gore, &quot;Both before and after the [[Foreign Intelligence Surveillance Act]] was amended in 1995; the Clinton-Gore administration complied fully and completely with the terms of the law.&quot; [http://www.forbes.com/business/manufacturing/feeds/ap/2006/01/17/ap2456266.html]
13613
13614 ==See also==
13615 ===Al Gore Television Credits===
13616 * [[The Tonight Show with Jay Leno]], ([[August 1]], [[2005]])
13617 * [[Saturday Night Live]], ([[December 14]], [[2002]])
13618 * [[The Tonight Show with Jay Leno]], ([[November 27]], [[2002]])
13619 * [[Futurama]], &quot;[[Futurama (TV series - season 5)#Crimes of the Hot|Crimes of the Hot]]&quot;, ([[November 10]], [[2002]])
13620 * [[Seven Days]], &quot;Stairway to Heaven&quot;, ([[October 11]], [[2000]])
13621 * [[The Late Show with David Letterman]], ([[September 14]], [[2000]])
13622 * [[Futurama]], &quot;[[Futurama (TV series - season 2)#Anthology of Interest I|Anthology of Interest I]]&quot;, ([[May 21]], [[2000]])
13623 * [[Larry King Live]], ([[April 20]], 2000)
13624 * [[Mad About You]], &quot;Breastfeeding&quot;, ([[January 6]], [[1998]])
13625 * [[Late Show with David Letterman]], ([[September 8]], [[1993]])
13626
13627 ==External links==
13628 &quot;The [[Spallation Neutron Source|SNS Project]]&quot; and *[http://lib1.isd.ornl.gov:8087/cgi/psearch_sns_new.cgi?beg_num=1&amp;amp;end_num=50&amp;amp;sval=list&amp;amp;res_type=images&amp;amp;photo_num=&amp;amp;keywords=gore&amp;amp;connect4=AND&amp;amp;beg_yr=1999&amp;amp;end_yr=2005&amp;amp;sval2=list&amp;amp;submit=Submit&amp;amp;ips=25 Al Gore]
13629
13630 {{wikiquote}}
13631 {{wikisource author}}
13632
13633 ===General sites===
13634 *[http://www.ElectGore2008.com/ ElectGore2008.com - Elect Al Gore in 2008 , For Current Daily Updated News on Al Gore, Discuss and Debate on Forum]
13635 *[http://www.RunAlGore.com/ Al Gore For President - For Current Daily Updated News on Al Gore, Discuss and Debate on Forum ]
13636 *[http://www.algoresupportcenter.com/ Al Gore Support Center 2008 - The Home of Hardcore Gore Supporters]
13637 *[http://www.algore-08.com/ Al Gore '08 - Organize, Discuss, Act]
13638 *[http://www.patriotsforgore.com/ Patriots for Al Gore/The Gore Support Site With A Social Conscience]
13639 *[http://www.current.tv Current TV]
13640 *[http://clinton5.nara.gov/WH/EOP/OVP/VP.html The Official NARA Online Office Of Vice President Gore (1993-2001)]
13641 *[http://clinton3.nara.gov/WH/Accomplishments/ Clinton-Gore Administration Accomplishments]
13642 * [http://www.washingtonpost.com/wp-srv/politics/campaigns/wh2000/stories/goremain100399.htm The Life of Al Gore - Washington Post]
13643 *[http://www.ontheissues.org/Al_Gore.htm Al Gore on the Issues]
13644 *[http://www.freemedia.at/Boston_Congress_Report/boston3.htm A New Approach for a New Century, International Press Institute World Congress, April 2000]
13645 *[http://www.newsmeat.com/washington_political_donations/Al_Gore.php Political Donations Made by Al Gore]
13646
13647 ===Recent speeches by Al Gore===
13648 *[http://www.washingtonpost.com/wp-dyn/content/article/2006/01/16/AR2006011600779.html Gore's 2006 Martin Luther King Day Speech on NSA Spying Scandal and Restoring The Rule of Law] ([http://irregulartimes.com/gorejan06.mp3 mp3 audio] | [http://irregulartimes.com/index.php/archives/2006/01/16/al-gore-speech-transcript/ transcript])
13649 *[http://mediacenter.blogs.com/morph/2005/10/al_gore_address.html Gore Speaks On The Threat To Democracy]
13650 *[http://www.sierrasummit2005.org/sierrasummit/coverage/r016.asp Gore's Speech To The Sierra Club]
13651 *[http://s6.invisionfree.com/Patriots_for_Gore/index.php?showtopic=2268 Gore Slams GOP's Efforts To End Filibuster]
13652 *[http://www.xpatusa.com/Al_Gore2.htm Gore Charges The Bush Administration With A Failed Presidency]
13653 *[http://www.nytimes.com/2004/07/26/politics/campaign/26TEXT-GORE.html Gore's Remarks At The 2004 Democratic Convention]
13654 *[http://s8.invisionfree.com/Al_Gore_Support/index.php?showtopic=100 Gore Says Bush Lied To Push For War In Iraq]
13655 *[http://www.moveonpac.org/gore/ Gore Calls for the Resignation of the Bush Team]
13656 *[http://www.moveon.org/front/gore.html Gore Speaks on the Use of &quot;Fear&quot; in Politics] -
13657 *[http://www.moveon.org/gore3/speech.html Gore Speaks on Global Warming and the Environment]
13658 *[http://www.moveon.org/gore/speech.html Gore Calls for the Repeal of the Patriot Act]
13659 *[http://www.moveon.org/gore-speech.html Gore Blasts Bush for Misleading America]
13660 *[http://www.commonwealthclub.org/archive/02/02-09gore-speech.html Gore Speaks On The Build Up To War With Iraq and The War On Terror]
13661 *[http://www.gwu.edu/~action/2004/gore/gore100202sp.html Gore Speaks On Matching our Nation's Economic Course to Our Current Realities]
13662
13663 ===Al Gore's Current===
13664 *[http://www.current.tv Official website of the television station Current]
13665
13666 ===Al Gore and the Internet===
13667 * [http://clinton1.nara.gov/White_House/EOP/OVP/other/superhig.html Remarks as Delivered by Vice President Al Gore to The Superhighway Summit, UCLA (1994)] &amp;amp; [http://www.clintonfoundation.org/legacy/011194-remarks-by-the-vp-on-television.htm Another URL with the speech]
13668 * [http://www.firstmonday.org/issues/issue5_10/wiggins Al Gore and the Creation of the Internet]
13669 * [http://www.snopes.com/quotes/internet.asp Snopes analyzes Gore's statement about his role in &quot;creation&quot; of the Internet]
13670 * [http://www.politechbot.com/p-01394.html Full Text of Vint Cerf and Robert Kahn's Email on Gore and the Internet]
13671
13672 ===Al Gore myths and media bias===
13673 * [http://www.algoresupportcenter.com/goretruth.html Gore Myths Page]
13674 * [http://www.eriposte.com/media/bias/media_bias_gore.htm Media Bias Against Al Gore Exposed]
13675
13676 ===Al Gore's early career in journalism===
13677 * [http://archives.cjr.org/year/93/1/gore.asp Columbia Journalism Review on Gore's journalistic past]
13678
13679 {{start box}}
13680 {{succession box
13681 | title=[[United States House of Representatives, Tennessee District 4|Member of the U.S. House of Representatives from Tennessee's 4th District]]
13682 | before=[[Joe L. Evins]]
13683 | after=[[Jim Cooper]]
13684 | years=1977 &amp;ndash; 1985}}
13685 {{U.S. Senator box
13686 | state= Tennessee
13687 | class= 2
13688 | before=[[Howard H. Baker, Jr.|Howard H. Baker Jr.]]
13689 | after=[[Harlan Mathews]]
13690 | alongside=[[James R. Sasser]]
13691 | years=1985 &amp;ndash; 1993}}
13692 {{succession box
13693 | title=[[List of United States Democratic Party presidential tickets|Democratic Party vice presidential candidate]]
13694 | before=[[Lloyd Bentsen]]
13695 | after=[[Joe Lieberman]]
13696 | years=[[U.S. presidential election, 1992|1992]] (won), [[U.S. presidential election, 1996|1996]] (won)}}
13697 {{succession box
13698 | title=[[Vice President of the United States]]
13699 | before=[[Dan Quayle]]
13700 | after=[[Dick Cheney]]
13701 | years=[[January 20]], [[1993]] &amp;ndash; [[January 20]], [[2001]]}}
13702 {{succession box
13703 | title=[[List of United States Democratic Party presidential tickets|Democratic Party presidential candidate]]
13704 | before=[[Bill Clinton]]
13705 | after=[[John Kerry]]
13706 | years=[[U.S. presidential election, 2000|2000]] (lost)}}
13707 {{end box}}
13708 {{USDemVicePresNominees}}
13709 {{US Vice Presidents}}
13710 {{USDemPresNominees}}
13711 {{Apple}}
13712
13713 [[Category:1948 births|Gore, Albert Arnold Jr.]]
13714 [[Category:Al Gore|Al Gore]]
13715 [[Category:Anti-Iraq war Veterans|Gore, Albert Arnold Jr.]]
13716 [[Category:Apple employees|Gore, Albert Arnold Jr.]]
13717 [[Category:Baptists|Gore, Albert Arnold Jr.]]
13718 [[Category:Democratic Party (United States) presidential nominees|Gore, Al]]
13719 [[Category:Futurama actors|Gore, Al]]
13720 [[Category:Harvard alumni|Gore, Al]]
13721 [[Category:Living people|Gore, Al]]
13722 [[Category:Nashvillians|Gore, Albert Arnold Jr.]]
13723 [[Category:Politics and technology|Gore, Albert Arnold Jr.]]
13724 [[Category:Pro-choice politicians|Gore, Al]]
13725 [[Category:U.S. Democratic Party vice presidential nominees|Gore, Albert Arnold Jr.]]
13726 [[Category:Members of the United States House of Representatives from Tennessee|Gore, Albert Arnold Jr.]]
13727 [[Category:United States Senators from Tennessee|Gore, Albert Arnold Jr.]]
13728 [[Category:Vice Presidents of the United States|Gore, Albert Arnold Jr.]]
13729 [[Category:Vietnam War veterans|Gore, Albert Arnold Jr.]]
13730
13731 [[cs:Al Gore]]
13732 [[da:Al Gore]]
13733 [[de:Al Gore]]
13734 [[es:Al Gore]]
13735 [[fr:Al Gore]]
13736 [[hr:Al Gore]]
13737 [[id:Al Gore]]
13738 [[it:Al Gore]]
13739 [[he:אל גור]]
13740 [[nl:Al Gore]]
13741 [[ja:ã‚ĸãƒĢãƒģゴã‚ĸ]]
13742 [[pl:Al Gore]]
13743 [[pt:Al Gore]]
13744 [[simple:Al Gore]]
13745 [[sk:Al Gore]]
13746 [[fi:Al Gore]]
13747 [[sv:Al Gore]]
13748 [[zh:艾äŧ¯į‰šÂˇæˆˆå°”]]</text>
13749 </revision>
13750 </page>
13751 <page>
13752 <title>Animal Farm</title>
13753 <id>620</id>
13754 <revision>
13755 <id>42124943</id>
13756 <timestamp>2006-03-04T00:01:46Z</timestamp>
13757 <contributor>
13758 <username>Atreyu1075</username>
13759 <id>997080</id>
13760 </contributor>
13761 <comment>/* Cultural references */</comment>
13762 <text xml:space="preserve">[[Image:animalfarm2.jpg|thumb|right|200px|''Animal Farm'' book cover]]
13763 '''Animal Farm''' is a [[satire|satirical]] [[novel]] (which can also be understood as a modern [[fable]] or [[allegory]]) by [[George Orwell]], ostensibly about a group of animals who oust the humans from the [[farm]] they live on and run it themselves, only to have it corrupted into a brutal tyranny on its own. It was written during [[World War II]] and published in 1945, although it was not widely successful until the late [[1950s]].
13764
13765 ''Animal Farm'' is a thinly veiled critique and satire of Soviet [[totalitarianism]]. Many events in the book are based on events from the [[Soviet Union]] during the [[Stalin]] era. Orwell, though a leftist — he was for many years a member of the [[Independent Labour Party]] — was a critic of Stalin, and suspicious of Moscow-directed communism after his experiences in the [[Spanish Civil War]].
13766
13767 ==Plot==
13768 {{spoiler}}
13769 When the farm's prize-winning pig, [[Old Major]], calls a meeting of all the animals of Manor Farm, he tells them that he has had a dream in which mankind is gone, and animals are free to live in peace and harmony. He compares the humans to parasites, and then proceeds to teach the animals a [[revolution]]ary song, &quot;[[Beasts of England]]&quot;. The other animals begin to hope and dream for the revolution of such a day. When Old Major dies, a mere three days later, three pigs -- [[Snowball (Animal Farm)|Snowball]] (who teaches the animals to read), [[Napoleon (Animal Farm)|Napoleon]], and [[Squealer (Animal Farm)|Squealer]] -- assume command, and turn his dream into a full-fledged philosophy. One night, the starved animals suddenly revolt and drive the farmer [[Jones (Animal Farm)|Mr. Jones]], his wife, and his pet raven off the farm and take control. The farm is renamed &quot;Animal Farm&quot; as the animals work towards a future [[utopia]]. The [[Seven Commandments]] of the new philosophy of [[Animalism]] are written on the wall of a barn for all to read, the seventh and most important of which is that &quot;all animals are equal&quot;. All animals work, but the [[horse|workhorse]] [[Boxer (Animal Farm)|Boxer]] does more than his fair share and adopts a [[Maxim (saying)|maxim]] of his own — &quot;I will work harder.&quot;
13770
13771 Animal Farm is off to a great start. Snowball teaches the other animals to [[reading (activity)|read]] and write (though few animals besides the pigs learn to read well), food is plentiful due to a good harvest, and the entire Farm is organized and running smoothly. Even when Mr. Jones tries his last-ditch effort to retake control of the farm, the animals easily defeat him at what they later call the &quot;[[Battle of the Cowshed]]&quot;. Soon, however, things begin to unravel as Napoleon and Snowball begin an epic power struggle over the farm. When Snowball announces his idea for a [[windmill]], Napoleon quickly opposes it. A meeting is held, and when Snowball makes his passionate and articulate speech in favour of the windmill, Napoleon only makes a brief retort and then makes a strange noise to call in nine attack dogs. They burst in and chase Snowball off of the farm. In his absence, Napoleon declares himself the leader of the farm and makes instant changes. He announces that meetings will no longer be held as before, and a committee of pigs alone will decide what happens with the farm.
13772
13773 Napoleon changes his mind about the windmill, claiming (through Squealer) that Snowball stole the idea from him, and the animals begin to work. After a violent [[storm]], the animals wake to find the fruit of their months of labour utterly annihilated. Though neighbouring [[farmer]]s scoff at the thin walls, Napoleon and Squealer convince everyone that Snowball destroyed it. Napoleon begins to purge the farm, killing many animals he accuses of consorting with Snowball. In the meantime, Boxer takes a second [[mantra]], &quot;Napoleon is always right.&quot;
13774
13775 Napoleon begins to abuse his powers even more and life on the farm becomes harder and harder for the rest of the animals. The pigs impose more and more controls on them while reserving [[privilege]]s for themselves. History is rewritten to villainise Snowball and glorify Napoleon even further. Each step of this development is justified by the pig, Squealer, who on several occasions alters the Seven Commandments on the barn in the dead of night. The song &quot;Beasts of England&quot; is banned as inappropriate now that the dream of Animal Farm has been realised, and is replaced by an anthem glorifying Napoleon who begins to live more and more like a human. The animals, though cold, starving, and overworked, remain convinced that they are still better off than when they were ruled by a man named Jones.
13776
13777 [[Frederick (Animal Farm)|Mr. Frederick]], one of the two neighbouring farmers, swindles Napoleon by paying with forged banknotes, and then attacks the farm and uses [[dynamite]] to blow up the recently restored windmill. Though the animals of Animal Farm eventually win the battle, they do so at a great cost, as many of the animals, including Boxer, are wounded. However, Boxer continues to work harder and harder, until he finally collapses while working on the windmill. Napoleon sends for a van to come and take Boxer to the veterinarian, but as Boxer is loaded up and the van drives away, the animals read what is written on the side of the van: &quot;Alfred Simmonds, Horse Slaughterer and Glue Boiler.&quot; Squealer quickly reports that the van with the old writing has been purchased by the hospital, and later that Boxer has died in the hospital, in spite of the best medical care.
13778
13779 Many years pass, and the pigs learn to walk upright, carry [[whip]]s, and wear clothes. The Seven Commandments are reduced to a single phrase: &quot;All animals are equal, but some animals are more equal than others.&quot; Napoleon holds a dinner party for the pigs, and the humans of the area (in the adjacent Foxwood Farm run by Mr. [[Pilkington (Animal Farm)|Pilkington]]). He announces his alliance with the humans against the labouring classes of both &quot;worlds&quot;.
13780
13781 The animals discover this when they overhear Napoleon's conversations and finally realize that a change has come over the ruling pigs. During a poker match, an argument breaks out between Napoleon and Mr. Pilkington when they both play an [[Ace of Spades]], and the animals realise how they cannot tell the difference between the pigs and the humans.
13782
13783 The pigs walked on two feet and they adopted many of Mr. Jones' customs and principles. The pigs have violated every one of the rules set out in the beginning which they set up. This is when we come to the theme of this book: power corrupts.
13784
13785 ==Plot references to real events==
13786 *The ousting of the Humans after the farmers forget to feed the animals – [[Russian Revolution of 1917]] led to the removal of the Tsars after a series of famine and poverty.
13787 *The refusal of the Humans to refer to Animal Farm by its new name (still calling it Manor Farm) may be indicative of the diplomatic limbo in which the Soviets existed following their early history.
13788 *Mr. Jones' last ditch effort to re-take the farm (The Battle of the Cowshed) – [[Russian Civil War]] in which the western capitalist governments sent soldiers to try to remove the Bolsheviks from power.
13789 *Napoleon's removal of Snowball – [[Stalin]]’s removal of [[Leon Trotsky]] from power in 1927 and his subsequent expulsion.
13790 *Napoleon stealing Snowball’s idea for a windmill – Stalin later shifted away from &quot;[[World revolution|World Socialism]]&quot; to &quot;[[Socialism in one country]]&quot; which Trotsky had originally promoted. The windmill can also be considered a symbol of the Soviet [[Five-Year Plan|Five-Year Plans]], a concept developed by Trotsky and adopted by Stalin, who claimed them to be his idea.
13791 *Moses the raven leaving the farm for a while and then returning — Similar to the Russian Orthodox Church going underground and then being brought back to give the workers hope.
13792 *Boxer's motto, &quot;Napoleon is always right&quot; is strikingly similar to &quot;Mussolini is always right&quot; a chant used to hail [[Benito Mussolini]] during his rule of [[Italy]] from 1922 to 1943.
13793 *During the rise of Napoleon, he ordered the collection of all the hens' eggs. In an act of defiance, the Hens destroyed their eggs rather than give them to Napoleon — During Stalin's [[collectivization]] period in the early 1930s, many Ukrainian peasants burned their crops and farms rather than handing them over to the government.
13794 *Napoleon's mass executions, of which many were unfair for the alleged crimes — [[Stalin]] executed his political enemies for various crimes after they were tortured and forced to falsely confess.
13795 *The four pigs that go against Napoleon's will represent the [[White movement]].
13796 *Napoleon's replacement of the farm anthem &quot;[[Beasts of England]]&quot; with an inane composition by the pig poet Minimus (&quot;Animal Farm, Animal Farm / Never through me / Will you come to harm&quot;) – In 1943, Stalin replaced the old national anthem &quot;[[the Internationale]]&quot; with &quot;the [[National Anthem of the Soviet Union|Hymn of the Soviet Union]].&quot; The old internationale glorified the revolution and &quot;the people.&quot; The original version of the Hymn of the Soviet Union glorified Stalin so heavily that after his death in 1953, entire sections of the anthem had to be replaced or removed. Orwell could have also been referring to [[Napoleon I of France|Napoleon Bonaparte]]'s banning of the French national hymn, [[La Marseillaise]] in 1799.
13797 *Napoleon's dealing with Mr. Frederick, who eventually betrays Animal Farm and destroys the windmill. Though Animal Farm repels the human attack, many animals are wounded and killed — Stalin’s [[Molotov-Ribbentrop Pact]] with [[Nazi Germany]] in 1939, which was later betrayed in 1941 when [[Operation Barbarossa|Hitler invaded the Soviet Union]]. Though the Soviet Union won the war, it came at a tremendous price of roughly 8.5-15 million Soviet soldiers (unconfirmed) and many civilians, coming to an incredible estimated 20 million dead, as well as the utter destruction of the Western Soviet Union and its prized collective farms which Stalin had created in the 1930s.
13798 *Napoleon's later alliance with the humans — Stalin’s non-aggression pact with Hitler in the early years of WWII.
13799 *Napoleon's changing Animal Farm back to Manor — The [[Red Army]]’s name was changed from the &quot;Workers' and Peasants' Red Army&quot; to the &quot;Soviet Army&quot; to appear as a more appealing and professional organization rather than an army of the common people.
13800 *After Old Major dies, his skull is placed on display on a tree stump. Similarly, [[Vladmir Lenin|Lenin's]] (whom Old Major is based on along with Karl Marx) embalmed body was put on display in [[Lenin's mausoleum|Lenin's Tomb]] in [[Red Square]] postmortem, where it still remains.
13801 *Squealer, constantly changing the commandments, is said to be a reference to a perversion in Russian religious history, as observed by [[Leo Tolstoy]] when the essential precepts of the [[Sermon on the Mount]] were altered by [[Russian Orthodox]] Church. It may also refer to the revision of history texts to glorify Stalin during his regime.
13802
13803 == Characters ==
13804 The events and characters in Animal Farm are all carefully drawn to represent the history of the Soviet Union; Orwell makes this explicit in the case of Napoleon, whom he directly connects to Stalin in a letter of [[17 March]] [[1945]] to the publisher.
13805
13806 :..when the windmill is blown up, I wrote 'all the animals including Napoleon flung themselves on their faces'. I would like to alter it to 'all the animals except Napoleon'. If that has been printed it's not worth bothering about, but I just thought the alteration would be fair to JS [Joseph Stalin], as he did stay in Moscow during the German advance.
13807
13808 The other characters have their analogies in the real world, but care should be taken with these comparisons as they do not always match history exactly and often simply represent generalised concepts.
13809
13810 ===The pigs===
13811 *[[Napoleon (Animal Farm)|Napoleon]] — The pig who becomes the leader of Animal Farm post-Rebellion. Created based on the actions of [[Joseph Stalin]], he uses his military (of nine attack dogs) to cement his power through fear. Napoleon craftily drives out his opponent, Snowball.
13812 *[[Snowball (Animal Farm)|Snowball]] — The pig who fights Napoleon for control post-Rebellion. Inspired by [[Leon Trotsky]], Snowball is a passionate intellectual and is far more honest about his motives than Napoleon. Snowball easily wins the loyalty of most of the animals. Trotsky was driven into exile in Mexico where he was assassinated.
13813 *[[Squealer (Animal Farm)|Squealer]] — The pig who serves as public speaker. Inspired by [[Vyacheslav Molotov]] and the Russian paper [[Pravda]], Squealer twists and abuses the language to excuse, justify and extol Napoleon's actions, no matter how egregious. All his life, George Orwell made it a point to show how politicians used language. Squealer limits the debate by complicating it, and he confuses and disorients, making claims that the pigs need the extra luxury they are taking in order to function properly. To squeal is to betray, something Squealer does often to his fellow animals.
13814 *Minimus — A poet pig who writes a song about Napoleon, representing admirers of Stalin both inside and outside the [[Soviet Union|USSR]] such as [[Maxim Gorky]].
13815 *[[Old Major (Animal Farm)|Old Major]] — As a fellow socialist, Orwell agreed with some of [[Karl Marx]]'s politics, and even respected [[Vladimir Lenin]]. In fact, the satire in Animal Farm is not of Marxism, or Lenin's revolution, but of the corruption that occurred later. Major, who is based upon both Lenin and Marx, is the inspiration which fuels the rest of the book. Though it is a positive image, Orwell does slip some flaws in Old Major, such as how during his complaints about the abuse of animals he admits that he has been largely free from those terrors.
13816 *Pinkeye — A small piglet who tastes Napoleon's food for poisoning.
13817 *Piglets — While not truly noted in the novel, these piglets are hinted to be the children of Napoleon, and are the first generation of animals to actually be subjugated to his idea of animal inequality.
13818
13819 ===The humans===
13820 *[[Jones (Animal Farm)|Mr. Jones]] — The original owner of Manor Farm. He is probably based on [[Nicholas II of Russia|Tsar Nicholas II]].
13821 *[[Frederick (Animal Farm)|Mr. Frederick]] — The tough owner of Pinchfield, a well-kept neighbouring farm. He is probably based on [[Germany]] and/or [[Adolf Hitler]].
13822 *[[Pilkington (Animal Farm)|Mr. Pilkington]] — The easy-going but crafty owner of Foxwood, a neighbouring farm. He represents [[United Kingdom|Britain]] and/or [[Winston Churchill]].
13823 *Mr. Whymper — A human whom Napoleon hires to represent Animal Farm in human society. He is loosely based on [[George Bernard Shaw]] who visited the USSR in 1931 and praised what he found.
13824
13825 ===The other animals===
13826 *[[Boxer (Animal Farm)|Boxer]] — Possibly one of the more popular characters, Boxer is the tragic avatar of the working class, or [[proletariat]]: loyal, dedicated, and strong. His major flaw, however, is his blind trust of the leaders and his inability to see corruption. He is used and abused by the pigs as much or more than he was by Jones. His death serves to show just how far the pigs are willing to go. A strong and loyal [[draft horse]], Boxer played a huge part in keeping the Farm together prior to his death. Boxer could also represent a [[Stakhanovite]]. His name is a reference to the [[Boxer Rebellion]]
13827 *Clover — Boxer's close friend, and also a draft horse. She blames herself for forgetting the original [[Seven Commandments]] when Squealer revises them. She represents the middle class educated people who acquiesce to the subversion of principles by the powerful.
13828 *Mollie — A horse who likes wearing ribbons (which represent luxury) and being pampered by humans. She represents upper-class people, the [[Bourgeoisie]] who fled from the [[Soviet Union|U.S.S.R]] after the [[Russian Revolution of 1917|Russian Revolution]].
13829 *Benjamin — A [[donkey]] who is cynical about the revolution. He is said to be inspired by Orwell himself. He represented the skeptical people in and out of Russia who believed that [[communism]] would not help the people of Russia
13830 *Moses — A tame [[raven]] who spreads stories of Sugarcandy Mountain, the &quot;animal heaven&quot;. These beliefs are denounced by the pigs. Moses represents religion (specifically the Russian Orthodox Church), which has always been in conflict with [[communism]]. It is interesting to note that, while Moses initially leaves the farm after the rebellion, he later returns and is supported by the pigs. This represents the cynical use of religion by the state to anaesthetise the minds of the masses.
13831 *Muriel — A [[goat]] who reads the edited commandments. She may represent intelligent labour.
13832 *Jessie and Bluebell — Two dogs who give birth in Chapter III. Their puppies are nurtured by Napoleon to inspire fear, without doubt representing the formation of the [[NKVD]]/[[KGB]].
13833 *The Hens — Represent the [[Kulaks]], landed [[peasants]] persecuted by [[Stalin]].
13834 *The Dogs — Napoleon's secret police and bodyguards (inspired by Cheka, NKVD, OGPU, MVD)
13835 *The Sheep — The sheep show the dumb, animal following of the proletariats in the midst of the Russian Civil War (“Four legs good, two legs bad!”).
13836
13837 == Significance==
13838 The book is an [[allegory]] about the events following the revolution in the [[Soviet Union]], and in particular the rise of [[Stalinism]] and the betrayal of the revolution which basically replaced one dictatorship for another.
13839
13840 Orwell wrote the book following his experiences during the [[Spanish Civil War]] which are described in another of his books, ''[[Homage to Catalonia]]''. He intended it to be a strong condemnation of what he saw as the [[Stalinist]] corruption of the original [[socialism|socialist]] ideals, in which he believed and continued to believe after he saw a revolution betrayed, as in Spain. For the preface of a Ukrainian edition he prepared in 1947, Orwell describes what gave him the idea of setting the book on a farm&lt;ref&gt;[http://www.netcharles.com/orwell/essays/ukrainian-af-pref.htm Preface to the Ukrainian Edition of Animal Farm]&lt;/ref&gt;.
13841
13842 :..I saw a little boy, perhaps ten years old, driving a huge cart-horse along a narrow path, whipping it whenever it tried to turn. It struck me that if only such animals became aware of their strength we should have no power over them, and that men exploit animals in much the same way as the rich exploit the proletariat.
13843
13844 This Ukrainian edition was an early propaganda use of the book. It was printed to be distributed among the soviet citizens of Ukraine who were just some of the many millions of [[displaced persons]] throughout Europe at the end of the Second World War. The American occupation forces did not appreciate these illegal presses, printing propaganda, and confiscated 1,500 copies of ''Animal Farm'', handing them to the Soviet authorities. The politics in the book also affected Britain, with Orwell reporting that [[Ernest Bevin]] was &quot;terrified&quot;&lt;ref&gt; Letter to [[Herbert Read]], [[18 August]], [[1945]].&lt;/ref&gt; that it may cause embarrassment if published before the [[United Kingdom general election, 1945|1945 general election]].
13845
13846 In recent years the book has been used to compare new movements that overthrow heads of a corrupt and undemocratic government or organization, only to become corrupt and oppressive themselves over time as they succumb to the trappings of power and begin using violent and dictatorial methods to keep it. Such analogies have been used for many former African colonies such as [[Zimbabwe]] and [[Democratic Republic of Congo]], whose succeeding African-born rulers were thought to be as corrupt as the European colonists they supplanted.
13847
13848 In schools Animal Farm is used in the [[Core Knowledge]] curriculum. Core knowledge is based on the interaction of different subjects in schools. The way Animal Farm comes into play is that if a student's Geography or History Class is learning about the former Soviet Union, the English class will be reading Animal Farm.
13849
13850 ==Post-publication views of the book==
13851 In the post-[[World War Two|War]] years it became apparent to Orwell that anti-Russian literature was not something which most major publishing houses would touch — including his regular publisher [[Victor Gollancz Ltd|Gollancz]]. One publisher he sought to sell his book to rejected it on the grounds of government advice — although it was later found that the civil servant who gave the order was a [[Soviet Union|Soviet]] [[spy]].&lt;ref&gt;''Orwell: The Life'', D.J. Taylor, 2003, ISBN 0-8050-7473-2)''&lt;/ref&gt;
13852
13853 Orwell originally prepared a preface on freedom of the press for the book which noted &quot;The sinister fact about literary [[censorship]] in England is that it is largely voluntary. ... [Things are] kept right out of the British press, not because the Government intervened but because of a general tacit agreement that ‘it wouldn’t do’ to mention that particular fact.&quot;&lt;ref&gt;[http://orwell.ru/library/novels/Animal_Farm/english/efp_go The Freedom of the Press]&lt;/ref&gt; Somewhat [[irony|ironically]], the preface itself was censored and is not published with most copies of the book.
13854
13855 ==Film versions==
13856 The book was the basis of an animated feature [[film]] in 1955 (Britain's first full-length animated movie), directed by [[John Halas]] and [[Joy Batchelor]] and quietly commissioned by the American [[CIA]], which softened the theme of the story slightly by reducing the role of Moses, the character representing religion, and adding an epilogue, that occurs immediately after the novel's iconic concluding imagery is depicted, where the other animals successfully revolt against the pigs.
13857
13858 There was also a 1999 live action film directed by John Stephenson, with voices by [[Kelsey Grammer]] as Snowball, [[Patrick Stewart]] as Napoleon, and [[Ian Holm]] as Squealer. Despite a few differences (such as completely different songs and Jesse being the first to question the pigs), much of the plot is loyal to the book. The film diverges from the book with an additional epilogue in which Jesse and several animals escape and return years later to a post-Napoleon era Animal Farm.
13859
13860 ==Cultural references==
13861 * [[Pink Floyd]]'s [[1977]] [[record album|album]] ''[[Animals (album)|Animals]]'' was partially inspired by Animal Farm. It categorises people as pigs, dogs, or sheep.
13862 * In an episode of ''[[Johnny Bravo]]'' (&quot;Aunt Katie's Farm&quot;), Johnny, while dressed in a pig costume, goes crazy and yells, &quot;Four legs good! Two legs bad!&quot; over and over.
13863 * Radical socialist rappers [[Dead Prez]] released a song called &quot;Animal in Man&quot; off their debut LP, ''[[Let's Get Free]]'', re-telling the story.
13864 * A song off canadian band [[Protest the Hero]]'s debut CD [[A Calculated Use of Sound]], called &quot;Red Stars Over the Battle of the Cowshed&quot; is presumably a reference to Animal Farm
13865
13866 ==See also==
13867 '''Songs'''
13868 *&quot;[[Beasts of England]]&quot;
13869 *&quot;[[Comrade Napoleon]]&quot;
13870 '''Battles'''
13871 *[[Battle of the Cowshed]]
13872 *[[Battle of the Windmill (Animal Farm)|Battle of the Windmill]]
13873 '''Characters'''
13874 *[[Old Major]]
13875 *[[Napoleon (Animal Farm)|Napoleon]]
13876 *[[Snowball (Animal Farm)|Snowball]]
13877 *[[Squealer (Animal Farm)|Squealer]]
13878 *[[Frederick (Animal Farm)|Frederick]]
13879 *[[Pilkington (Animal Farm)|Pilkington]]
13880 *[[Jones (Animal Farm)|Jones]]
13881 *[[Boxer (Animal Farm)|Boxer]]
13882 '''The Seven Commandments'''
13883 *[[Seven Commandments]]
13884
13885 ==References==
13886 &lt;references/&gt;
13887
13888 == External links ==
13889 {{wikiquote}}
13890 * [http://www.cliffsnotes.com/WileyCDA/LitNote/id-12.html Animal Farm CliffsNotes]
13891 * [http://www.slashdoc.com/tag/animal_farm.html Slashdoc : ''Animal Farm''] Analytical essays of the novel
13892 * [http://www.george-orwell.org/Animal_Farm/index.html Animal Farm] &amp;mdash; Searchable, indexed etext.
13893 * [http://www.netcharles.com/orwell/books/animalfarm.htm Animal Farm — Complete Novel] — Includes publication data and search feature.
13894 * [http://www.netcharles.com/orwell/essays/letters-agent-af.htm Excerpts from Orwell's letters to his agent concerning Animal Farm]
13895 * [http://t.webring.com/hub?ring=orwellwebring George Orwell Web Ring]
13896 *[http://www.imdb.com/title/tt0047834/ IMDB — Animal Farm (1954 animated film)]
13897 *[http://www.imdb.com/title/tt0204824/ IMDB — Animal Farm (1999 TV film)]
13898
13899 ==ISBN numbers==
13900 * ISBN 9966472487 ([[paperback]], [[1988]], Swahili translation)
13901 * ISBN 0582021731 ([[paper text]], [[1989]])
13902 * ISBN 0151072558 ([[hardcover]], [[1990]])
13903 * ISBN 0582060109 (paper text, 1991)
13904 * ISBN 0679420398 (hardcover, 1993)
13905 * ISBN 0606001026 ([[prebound]], [[1996]])
13906 * ISBN 0151002177 (hardcover, 1996, Anniversary Edition)
13907 * ISBN 0452277507 ([[paperback]], 1996, Anniversary Edition)
13908 * ISBN 0451526341 ([[mass market paperback]], 1996, Anniversary Edition)
13909 * ISBN 0582530083 (1996)
13910 * ISBN 1560005203 ([[cloth text]], [[1998]], Large Type Edition)
13911 * ISBN 0791047741 (hardcover, 1999)
13912 * ISBN 0451525361 (paperback, 1999)
13913 * ISBN 0764108190 (paperback, 1999)
13914 * ISBN 082207009X ([[e-book]], 1999)
13915 * ISBN 0758778430 (hardcover, 2002)
13916 * ISBN 0151010269 (hardcover, 2003, with ''[[Nineteen Eighty-Four]]'')
13917 * ISBN 0452284244 (paperback, 2003, Centennial Edition)
13918 * ISBN 0848801202 (hardcover)
13919
13920 [[Category:1945 books]]
13921 [[Category:Animal Farm]]
13922 [[Category:Dystopian novels]]
13923 [[Category:English novels]]
13924 [[Category:George Orwell books]]
13925 [[Category:Modern Library 100 best novels]]
13926 [[Category:Satirical books]]
13927 [[Category:Time Magazine 100 best novels]]
13928 [[Category:Twentieth century British novels]]
13929
13930 [[da:Kammerat Napoleon]]
13931 [[de:Farm der Tiere]]
13932 [[es:RebeliÃŗn en la granja]]
13933 [[fr:La Ferme des animaux]]
13934 [[ko:동ëŦŧ 농ėžĨ]]
13935 [[it:La fattoria degli animali]]
13936 [[he:חוו×Ē החיו×Ē]]
13937 [[hu:Állatfarm]]
13938 [[nl:Animal Farm]]
13939 [[ja:動į‰Ščž˛å ´]]
13940 [[lv:DzÄĢvnieku ferma]]
13941 [[no:Kamerat Napoleon]]
13942 [[pl:Folwark zwierzęcy]]
13943 [[pt:Animal Farm]]
13944 [[fi:Eläinten vallankumous]]
13945 [[sv:Djurfarmen]]
13946 [[zh:动į‰Šåē„å›­]]</text>
13947 </revision>
13948 </page>
13949 <page>
13950 <title>Amphibian</title>
13951 <id>621</id>
13952 <revision>
13953 <id>41645993</id>
13954 <timestamp>2006-02-28T19:41:37Z</timestamp>
13955 <contributor>
13956 <ip>161.97.162.148</ip>
13957 </contributor>
13958 <comment>/* History of amphibians */</comment>
13959 <text xml:space="preserve">{{otheruses}}
13960 {{taxobox
13961 | color=pink
13962 | name=Amphibians
13963 | image = Caerulea3 crop.jpg
13964 | image_width = 230px
13965 | image_caption = [[White's Tree Frog]] (''Litoria caerulea'')
13966 | regnum = [[Animal]]ia
13967 | phylum = [[Chordate|Chordata]]
13968 | subphylum = [[Vertebrata]]
13969 | classis = '''Amphibia'''
13970 | classis_authority = [[Carolus Linnaeus|Linnaeus]] 1758
13971 | subdivision_ranks = Orders
13972 | subdivision =
13973 Subclass [[Labyrinthodontia]] - ''extinct''&lt;br /&gt;
13974 Subclass [[Lepospondyli]] - ''extinct''&lt;br /&gt;
13975 Subclass [[Lissamphibia]]&lt;br /&gt;
13976 &amp;nbsp;&amp;nbsp;[[Anura]]&lt;br /&gt;
13977 &amp;nbsp;&amp;nbsp;[[salamander|Caudata]]&lt;br /&gt;
13978 &amp;nbsp;&amp;nbsp;[[caecilian|Gymnophiona]]}}
13979 '''Amphibians''' ([[Class (biology)|class]] '''Amphibia''') are a [[taxon]] of [[animal]]s that include all [[tetrapod]]s (four-legged [[vertebrate]]s) that do not have [[amniotic sac|amniotic]] eggs. Amphibians (from [[Greek language|Greek]] ''ÎąÎŧĪ†ÎšĪ‚'' &quot;both&quot; and ''βΚÎŋĪ‚'' &quot;life&quot;) generally spend part of their time on land, but they do not have the adaptations to an entirely terrestrial existence found in most other modern tetrapods ([[amniote]]s). There are about 5,950 described, living [[species]] of amphibians. The study of amphibians and [[reptile]]s is known as [[herpetology]].
13980
13981 == History of amphibians ==
13982 [[Image:Salamandra salamandra CZ.JPG|thumb|226px|right|[[Fire Salamander]] (''Salamandra salamandra'')]]Amphibians developed with the characteristics of pharyngeal slits/[[gills]], a [[dorsal nerve cord]], a [[notochord]], and a post-anal tail at different stages of their life. They have persisted since the dawn of tetrapods 390 million years ago in the [[Devonian]] period, when they were the first four-legged animals to develop [[lung]]s. During the following [[Carboniferous]] period they also developed the ability to walk on land to avoid aquatic competition and [[predation]] while allowing them to travel from water source to water source. As a group they maintained the status of the dominant animal for nearly 75 million years. Throughout their history they have ranged in size from the 3 foot (90cm) long Devonian [[Ichthyostega]], to the slightly larger 5 foot (150cm) long [[Permian]] [[Eryops]], and down to the tiny ''[[Brachycephalus didactylus]]'' (Brazilian Gold Frog) and ''[[Eleutherodactylus iberia]]'' from [[Cuba]], with a total length of 9.6-9.8 millimeters (0.4 inches). Amphibians have mastered almost every climate on earth from the hottest deserts to the frozen arctic.
13983
13984 == Classification ==
13985 [[Image:Caecilian.jpg|226px|thumb|right|[[Caecilian]] from the [[San Antonio]] zoo]]
13986 Traditionally the amphibians are taken to include all [[tetrapod]]s that are not [[amniote]]s. Recent amphibians all belong to a single subgroup of these, called the [[Lissamphibia]]. Recently there has been a tendency to restrict the class Amphibia to the Lissamphibia, i.e. to exclude tetrapods that are not more closely related to modern forms than they are to modern reptiles, birds, and mammals.
13987
13988 There are two [[ancient]], [[extinct]], [[Subclass (biology)|subclasses]]:
13989
13990 * Subclass [[Labyrinthodontia]] ([[paraphyletic]])
13991 * Subclass [[Lepospondyli]]
13992
13993 Of the remaining modern subclass '''Lissamphibia''' there are three [[Order (biology)|order]]s:
13994
13995 * Order [[Anura]] ([[frog]]s and [[toad]]s) (in Superorder Salientia): 5,228 species
13996 * Order [[Caudata]] or [[Urodela]] ([[salamander]]s): 552 species
13997 * Order [[Gymnophiona]] or [[Apoda]] ([[caecilian]]s): 171 species
13998
13999 Authorities disagree on whether Salientia is a Superorder that includes the order Anura, or whether Anura is a sub-order of the order Salientia. In effect Salientia includes all the Anura plus a single [[Triassic]] proto-frog species, ''[[Triadobatrachus massinoti]]''. Practical considerations seem to favour using the former arrangement now.
14000
14001 == Reproduction ==
14002 For the purpose of [[reproduction]] most amphibians are bound to [[fresh water]]. A few tolerate [[brackish water]], but there are no true [[sea water]] amphibians. Several hundred frog species in adaptive radiations (e.g., [[Eleutherodactylus]], the Pacific Platymantines, the Australo-Papuan microhylids, and many other tropical frogs), however, do not need any water whatsoever. They reproduce via direct development, an ecological and [[evolution]]ary adaptation that has allowed them to be completely independent from free-standing water. Almost all of these frogs live in wet [[tropical rainforest]]s and their eggs hatch directly into miniature versions of the adult, bypassing the [[tadpole]] stage entirely. Several species have also adapted to arid and semi-arid environments, but most of them still need water to lay their eggs. [[Symbiosis]] with single celled [[algae]] that lives in the jelly-like layer of the eggs has evolved several times. The larvae (tadpoles or polliwogs) breathe with exterior [[gill]]s. After hatching, they start to transform gradually into the adult's appearance. This process is called [[metamorphosis (biology)|metamorphosis]]. Typically, the animals then leave the water and become terrestrial adults, but there are many interesting exceptions to this general way of reproduction.
14003
14004 The most obvious part of the amphibian metamorphosis is the formation of four legs in order to support the body on land. But there are several other changes:
14005 * The gills are replaced by other [[Respiratory system|respiratory organ]]s, i.e. [[lung]]s.
14006 * The skin changes and develops [[gland]]s to avoid [[dehydration]]
14007 * The eyes get eyelids and adapt to vision outside the water
14008 * An [[eardrum]] is developed to lock the middle [[ear]]
14009 * In frogs and toads, the [[tail]] disappears
14010
14011 ==Amphibian conservation==
14012 {{main|decline in frog populations}}
14013 [[Image:Bufo periglenes1.jpg|thumb|right|300px|The [[Golden toad]] of [[Monteverde]], [[Costa Rica]] was among the first casualties of amphibian declines. Formerly abundant, it was last seen in 1989.]]
14014 Dramatic declines in amphibian populations, including population crashes and mass localized [[extinction]], have been noted in the past two decades from locations all over the world, and amphibian declines are thus perceived as one of the most critical threats to global [[biodiversity]]. A number of causes are believed to be involved, including [[habitat destruction]] and modification, over-exploitation, [[pollution]], [[introduced species]], [[climate change]], and disease. However, many of the causes of amphibian declines are still poorly understood, and amphibian declines are currently a topic of much ongoing research.
14015
14016 == See also ==
14017 *[[Frog zoology]]
14018 *[[Prehistoric amphibian]]
14019 *[[Tetrapod]]
14020
14021 == References ==
14022 *Duellman/Trueb, ''Biology of Amphibians''
14023 *{{cite journal
14024 | last = Pounds
14025 | first = J. Alan
14026 | title = Widespread amphibian extinctions from epidemic disease driven by global warming
14027 | url = http://www.nature.com/nature/journal/v439/n7073/full/nature04246.html
14028 | journal = Nature
14029 | volume = 439
14030 | pages = 161-167
14031 | year = 2006
14032 | month = January
14033 | id = {{doi|10.1038/nature04246}}
14034 | coauthors = Martín R. Bustamante, Luis A. Coloma, Jamie A. Consuegra, Michael P. L. Fogden, Pru N. Foster, Enrique La Marca, Karen L. Masters, AndrÊs Merino-Viteri, Robert Puschendorf, Santiago R. Ron, G. Arturo SÃĄnchez-Azofeifa, Christopher J. Still and Bruce E. Young
14035 }}
14036 *Solomon Berg Martin, ''Biology''
14037 *{{cite journal
14038 | last = Stuart
14039 | first = Simon N.
14040 | coauthors = Janice S. Chanson, Neil A. Cox, Bruce E. Young, Ana S. L. Rodrigues, Debra L. Fischman, Robert W. Waller
14041 | title = Status and trends of amphibian declines and extinctions worldwide
14042 | url = http://www.sciencemag.org/cgi/content/full/306/5702/1783
14043 | journal = Science
14044 | volume = 306
14045 | issue = 5702
14046 | pages = 1783-1786
14047 | year = 2004
14048 | month = December
14049 | id = {{doi|10.1126/science.1103538}}
14050 }}
14051
14052 == External links ==
14053 {{Wikispecies|Amphibia}}
14054 {{Wikibookspar|Dichotomous Key|Amphibia}}
14055 * [http://research.amnh.org/herpetology/ American Museum of Natural History: Department of herpetology]
14056 * [http://www.globalamphibians.org/ The Global Amphibian Assessment]
14057 * [http://amphibiaweb.org/ AmphibiaWeb]
14058
14059 [[Category:Chordates]]
14060 [[Category:Amphibians]]
14061
14062 [[bg:ЗĐĩĐŧĐŊОвОдĐŊи]]
14063 [[ca:Amfibi]]
14064 [[cs:ObojŞivelníci]]
14065 [[cy:Amffibiad]]
14066 [[da:Padde]]
14067 [[de:Amphibien]]
14068 [[es:Amphibia]]
14069 [[eo:Amfibioj]]
14070 [[fr:Amphibia]]
14071 [[ko:ė–‘ė„œëĨ˜]]
14072 [[id:Amfibia]]
14073 [[io:Amfibia]]
14074 [[it:Amphibia]]
14075 [[he:דו חיים]]
14076 [[lt:Varliagyviai]]
14077 [[li:AmfibieÃĢ]]
14078 [[mk:ВодозĐĩĐŧŅ†Đ¸]]
14079 [[ms:Amfibia]]
14080 [[nl:AmfibieÃĢn]]
14081 [[nds:Amphibia]]
14082 [[ja:严į”ŸéĄž]]
14083 [[no:Amfibier]]
14084 [[oc:Amphibia]]
14085 [[pl:Płazy]]
14086 [[pt:Amphibia]]
14087 [[ru:ЗĐĩĐŧĐŊОвОдĐŊŅ‹Đĩ]]
14088 [[simple:Amphibian]]
14089 [[sl:DvoÅživke]]
14090 [[fi:Sammakkoeläimet]]
14091 [[sr:ВодозĐĩĐŧŅ†Đ¸]]
14092 [[sv:Groddjur]]
14093 [[tr:Ä°ki yaşamlÄąlar]]
14094 [[uk:ЗĐĩĐŧĐŊОвОдĐŊŅ–]]
14095 [[zh:两栖动į‰Š]]</text>
14096 </revision>
14097 </page>
14098 <page>
14099 <title>Albert Arnold Gore/Criticisms</title>
14100 <id>622</id>
14101 <revision>
14102 <id>15899151</id>
14103 <timestamp>2002-08-29T07:34:07Z</timestamp>
14104 <contributor>
14105 <username>Andre Engels</username>
14106 <id>300</id>
14107 </contributor>
14108 <minor />
14109 <comment>circumventing two-step redirect, removing text from redirect page</comment>
14110 <text xml:space="preserve">#REDIRECT [[Al Gore]]</text>
14111 </revision>
14112 </page>
14113 <page>
14114 <title>Aves</title>
14115 <id>623</id>
14116 <revision>
14117 <id>15899152</id>
14118 <timestamp>2004-07-04T10:37:36Z</timestamp>
14119 <contributor>
14120 <username>Tannin</username>
14121 <id>6169</id>
14122 </contributor>
14123 <comment>restore redirect</comment>
14124 <text xml:space="preserve">#REDIRECT [[bird]]</text>
14125 </revision>
14126 </page>
14127 <page>
14128 <title>Alaska</title>
14129 <id>624</id>
14130 <revision>
14131 <id>42081829</id>
14132 <timestamp>2006-03-03T18:26:49Z</timestamp>
14133 <contributor>
14134 <username>RexNL</username>
14135 <id>241337</id>
14136 </contributor>
14137 <minor />
14138 <comment>Reverted edits by [[Special:Contributions/71.40.182.97|71.40.182.97]] ([[User talk:71.40.182.97|talk]]) to last version by Kareeser</comment>
14139 <text xml:space="preserve">{{mergefrom|North to the future}}
14140
14141 {{otheruses}}
14142 {{US state
14143 | Name = Alaska
14144 | Fullname = State of Alaska
14145 | Flag = Flag of Alaska.svg
14146 | Flaglink = [[Flag of Alaska]]
14147 | Seal = Alaskastateseal.jpg
14148 | Map = ak-locator.png
14149 | Nickname = The Last Frontier, The Land of the Midnight Sun
14150 | Motto = North to the Future
14151 | Capital = [[Juneau, Alaska|Juneau]]
14152 | OfficialLang = [[English language|English]]
14153 | Languages = [[English language|English]] 85.7%, Native North American 5.2%, [[Spanish language|Spanish]] 2.9%
14154 | LargestCity = [[Anchorage, Alaska|Anchorage]]
14155 | Governor = [[Frank Murkowski]] (R)
14156 | Senators = [[Ted Stevens]] (R)&lt;br&gt;[[Lisa Murkowski]] (R)
14157 | PostalAbbreviation = AK
14158 | AreaRank = 1&lt;sup&gt;st&lt;/sup&gt;
14159 | TotalArea = 663,267 mi² / 1&amp;nbsp;717&amp;nbsp;854
14160 | LandArea = 571,951 mi² / 1&amp;nbsp;481&amp;nbsp;347
14161 | WaterArea = 91,316 mi² / 236&amp;nbsp;507
14162 | PCWater = 13.77
14163 | PopRank = 47&lt;sup&gt;th&lt;/sup&gt;
14164 | 2000Pop = 626,932
14165 | DensityRank = 50&lt;sup&gt;th&lt;/sup&gt;
14166 | 2000Density = 1.09/mi² / 0.42
14167 | AdmittanceOrder = 49&lt;sup&gt;th&lt;/sup&gt;
14168 | AdmittanceDate = [[January 3]], [[1959]]
14169 | TimeZone = [[Alaska Standard Time Zone|Alaska]]: [[Coordinated Universal Time|UTC]]-9/[[Daylight saving time|-8]]&lt;br/&gt;[[Hawaii-Aleutian Standard Time Zone|Aleutian]]: UTC-10/[[Daylight saving time|-9]] (west of 169° 30')
14170 | Latitude = 54°40'N to 71°50'N
14171 | Longitude = 130°W to 173°E
14172 | Width = 808 mi / 1300
14173 | Length = 1,479 mi / 2380
14174 | HighestElev = 20,321 ft / 6194
14175 | MeanElev = 10,039 ft / 3060
14176 | LowestElev = 0 ft / 0
14177 | ISOCode = US-AK
14178 | Website = www.state.ak.us
14179 }}
14180
14181 '''Alaska''' ([[International Phonetic Alphabet|IPA]]: {{IPA|[ə 'lÃĻ skə]}}) is the 49th [[U.S. state|state]] of the [[United States]]. It was admitted on [[January 3]], [[1959]]. The population of the state is 626,932, [[as of 2000]], according to the [[United States Census, 2000|2000 U.S. census]]. Alaska is most likely ranked the fourth smallest state population wise in the U.S. with Wyoming, Vermont, and by now North Dakota smaller than Alaska. The name &quot;Alaska&quot; is most likely derived from the [[Aleut]] word ''Alyeska'', meaning ''greater land'' as opposed to the Aleut word ''Aleutia,'' meaning ''lesser land''. To the Aleuts, this distinction was a linguistic variation distinguishing the ''mainland'' from an ''island''.
14182
14183 It is bordered by [[Yukon|Yukon Territory]] and [[British Columbia]], [[Canada]] to the east, the [[Gulf of Alaska]] and the [[Pacific Ocean]] to the south, the [[Bering Sea]], [[Bering Strait]], and [[Chukchi Sea]] to the west, and the [[Beaufort Sea]] and the [[Arctic Ocean]] to the north. Alaska is the largest state by area in the United States. It is larger in area than all but 18 of the world's nations.
14184
14185 ==History==
14186 {{main|History of Alaska}}
14187
14188 Alaska was first inhabited by humans who came across the [[Bering Land Bridge]]. Eventually, Alaska became populated by the [[Inupiaq]], [[Inuit]] and [[Yupik]] [[Eskimo]]s, [[Aleut]]s, and a variety of [[American Indians in the United States|American Indian]] groups. Most, if not all, of the pre-Columbian population of the Americas probably took this route and continued further south and east.
14189
14190 The first written accounts indicate that [[Russian colonization of the Americas|the first Europeans to reach Alaska came from Russia]]. [[Vitus Bering]] sailed east and saw [[Mount Saint Elias|Mt. St. Elias]]. The [[Russian-American Company]] hunted [[sea otter]]s for their fur. The colony was never very profitable, because of the costs of transportation.
14191
14192 At the urging of [[United States Secretary of State|U.S. Secretary of State]] [[William H. Seward|William Seward]], the [[United States Senate]] approved the [[Alaska purchase|purchase of Alaska]] from [[Russia]] for $7,200,000 (approximately $134,000,000 in 2005 dollars, adjusted for inflation[http://www.westegg.com/inflation/]) on [[9 April]] [[1867]], and the United States flag was raised on [[18 October]] of that same year (now called [[Alaska Day]]). Coincident with the ownership change, the de facto [[International Date Line]] was moved westward, and Alaska changed from the [[Julian calendar]] to the [[Gregorian calendar]]. Therefore, for residents, Friday, [[October 6]], [[1867]] was followed by Friday, [[October 18]], [[1867]]; two Fridays in a row because of the date line shift.
14193
14194 The first American administrator of Alaska was [[Poles|Polish]] immigrant [[Wlodzimierz Krzyzanowski|Włodzimierz KrzyÅŧanowski]]. The purchase was not popular in the contiguous United States, where Alaska became known as &quot;Seward's Folly&quot; or &quot;Seward's Icebox.&quot; Alaska celebrates the purchase each year on the last Monday of [[March]], calling it [[Seward's Day]]. After the purchase of Alaska between 1867 and 1884 the name was changed to the Department of Alaska. Between 1884 and 1912 it was called the district of Alaska.
14195 {{lastfrontier}}
14196 President [[Dwight D. Eisenhower]] signed the [[Alaska Statehood Act]] into [[United States law]] on [[7 July]] [[1958]] which paved the way for Alaska's admission into the Union on [[January 3]] [[1959]].
14197
14198 Alaska suffered one of the worst [[earthquake]]s in recorded North American history on [[Good Friday]] 1964 (see [[Good Friday Earthquake]]).
14199
14200 In 1976, the people of Alaska amended the state's constitution, establishing the [[Alaska Permanent Fund]]. The fund invests a portion of the state's mineral revenue, including revenue from the [[Trans-Alaskan Pipeline System]], &quot;to benefit all generations of Alaskans.&quot; In March 2005, the fund's value was over $30 billion.
14201
14202 Prior to 1983, the state lay across four different [[time zone]]s&amp;mdash;Pacific Standard Time (UTC -8 hours) in the southeast panhandle, a small area of Yukon Standard Time (UTC -9 hours) around [[Yakutat]], Alaska&amp;ndash;Hawaii Standard Time (UTC -10 hours) in the [[Anchorage, Alaska|Anchorage]] and [[Fairbanks, Alaska|Fairbanks]] vicinity, with the [[Nome, Alaska|Nome]] area and most of the [[Aleutian Islands]] observing Bering Standard Time (UTC -11 hours). In 1983 the number of time zones was reduced to two, with the entire mainland plus the inner Aleutian Islands going to UTC -9 hours (and this zone then being renamed Alaska Standard Time as the [[Yukon Territory]] had several years earlier (circa 1975) adopted a single time zone identical to Pacific Standard Time), and the remaining Aleutian Islands were slotted into the UTC &amp;minus;10 hours zone, which was then renamed Hawaii&amp;ndash;Aleutian Standard Time.
14203
14204 Over the years various [[vessel]]s have been named [[USS Alaska|USS ''Alaska'']], in honor of the state.
14205
14206 During [[World War II]] three of the outer Aleutian Islands&amp;mdash;[[Attu Island|Attu]], [[Agattu]] and [[Kiska]]&amp;mdash;were occupied by [[Japan|Japanese]] troops. It was the only territory within the current borders of the United States to have land occupied during the war.
14207
14208 ==Politics==
14209 Alaska is often characterized as a [[Republican Party (United States)|Republican]]-leaning state with strong [[Libertarianism|Libertarian]] tendencies. Local political communities often work on issues related to land use development, [[fishing]], [[tourism]], and [[individual rights]] as many residents are proud of their rough Alaskan heritage.
14210
14211 [[Alaska Native|Alaska Natives]], while organized in and around their communities, are often active within the [[Alaska Native Regional Corporations|Native corporations]] which have been given ownership over large tracts of land, and thus need to deliberate resource conservation and development issues.
14212
14213 In presidential elections, the state's Electoral College votes have been most often won by a Republican nominee. Only once has Alaska supported a [[Democratic Party (United States)|Democratic]] nominee, when it supported [[Lyndon B. Johnson]] in the landslide year of 1964, although the 1960 and 1968 elections were close. No state has voted for a Democratic presidential candidate fewer times. President [[George W. Bush]] won the state's electoral votes in 2004 by a margin of 25 percentage points with 61.1% of the vote. Juneau stands out as an area that supports Democratic candidates.
14214
14215 When the [[United States Congress]], in 1957 and 1958, debated the wisdom of admitting it as the 49th state, much of the political debate centered on whether Alaska would become a [[Democratic Party (United States)|Democratic]] or [[Republican Party (United States)|Republican]]-leaning state. Conventional wisdom had it that, with its rugged individualism, penchant for new ideas, and dependence on the [[Federal Government]] largess for basic needs, it would become a Democratic stronghold, about which Republicans, and the, then, Republican Administration of [[Dwight Eisenhower]] had reservations. Given time, those fears proved roundly unfounded. After an early flirtatious period with liberal politics, the political climate of Alaska changed quickly once [[petroleum]] was discovered and the federal government came to be seen as 'meddling' in local affairs. Still, despite its libertarian leanings, the state regularly takes in more federal money than it gives out, a fact that can be attributed at least partially to its equal representation in the [[United States Senate]].
14216
14217 In recent years, the [[Alaska Legislature]] is a 20-member Senate serving 4-year terms and 40-member House serving 2-year terms. It has been dominated by conservatives, generally Republicans. Likewise, recent state governors have been mostly conservatives, although not always elected under the official 'Party' banner. Republican [[Walter Joseph Hickel|Wally Hickel]] was elected to the office for a second term in 1990 after jumping the Republican ship and briefly joining the [[Alaskan Independence Party]] ticket just long enough to be reelected. He subsequently officially 'rejoined' the Republican fold in 1994.
14218
14219 Alaska's members of the [[Congress of the United States|U.S. Congress]] are all Republican. U.S. Senator [[Ted Stevens]] was appointed to the position following the death of U.S. Senator [[Bob Bartlett]] in December of 1968, and has never lost a re-election campaign since. As the longest-serving Republican in the Senate (some political wits call him Senator-For-Life), Stevens has been a crucial force in gaining Federal money for his state.
14220
14221 Until his resignation from the [[United States Senate|U.S. Senate]] to run for Governor, Republican [[Frank Murkowski]] held the state's other Senatorial position and, as Governor, was allowed to appoint his daughter, [[Lisa Murkowski]] as his successor. She won a full six-year term on her own in 2004.
14222
14223 Alaska's sole [[U.S. House of Representatives|U.S. House]] Representative, [[Don Young]] won re-election to his 17th-straight term, also in 2004. His seniority in House ranks him as one of the most influential Republican House members. His position on the House Transportation Committee allowed him to parlay some $450 million to two bridge projects in Alaska, named the ''[[Bridges to Nowhere]]'', for which he gained national notoriety following the devastation in the State of [[Louisiana]] following [[Hurricane Katrina]] and his insistence that the money not be returned to aid in rebuilding the Gulf Coast.
14224
14225 ==Geography==
14226 [[image:Looking back to Little Port Walter - NOAA.jpg|thumb|250px|Near [[Little Port Walter]]]]
14227 Alaska is one of the two states that is not bordered by another US state, [[Hawaii]] being the other. It is the only state that is both in [[North America]] and is not part of the 48 contiguous states; about 500 miles (800 kilometers) of [[Canada|Canadian]] territory separate Alaska from Washington. Therefore, Alaska is an [[exclave]] of the United States that is part of the continental U.S. but is not part of the contiguous U.S. It is also the only mainland state whose [[capital city]] is accessible only via [[Water transportation|ship]] or [[aviation|air]]. There are no [[road]]s connecting Juneau to the rest of the state.
14228
14229 Alaska is the largest state in the United States in terms of land area, 570,374 square miles (1&amp;nbsp;477&amp;nbsp;261 km²). If a map of Alaska were superimposed upon a map of the [[Continental United States]], Alaska would overlap [[Texas]], [[Oklahoma]], [[Kansas]], [[New Mexico]] and [[Colorado]]. Alaska has the longest [[coastline]] of any state.
14230
14231 One scheme for describing the state's geography is by labeling the regions:
14232 *[[South Central Alaska]] is the southern coastal region and is the population center for the state. The Municipality of Anchorage and many small but growing towns, such as [[Palmer, Alaska|Palmer]], and [[Wasilla, Alaska|Wasilla]], lie within this area. [[Petroleum]] industrial plants, transportation, [[tourism]], and two [[military base]]s form the core of the economy here.
14233 *The [[Alaska Panhandle]], also known as Southeast Alaska, is home to Juneau, many small towns, tidewater [[glacier|glaciers]] and extensive forests. Tourism, fishing, forestry and state government anchor the economy.
14234 *The [[Alaska Interior]] is home to [[Fairbanks, Alaska|Fairbanks]]. The geography is marked by large [[braided river]]s, such as the [[Yukon River]] and the [[Kuskokwim River]], as well as [[Arctic]] [[tundra]] lands and shorelines.
14235 *The [[Alaskan Bush]] is the remote, less crowded part of the state, encompassing 380 native villages and small towns such as [[Nome, Alaska|Nome]], [[Bethel, Alaska|Bethel]], [[Kotzebue, Alaska|Kotzebue]] and, most famously, [[Barrow, Alaska|Barrow]], the northernmost town in the United States.
14236
14237 The northeast corner of Alaska is covered by the [[Arctic National Wildlife Refuge]], which covers 19,049,236 acres (79,318 km²).
14238
14239 With its numerous islands, Alaska has nearly 34,000 miles (54&amp;nbsp;700 km) of tidal shoreline. The island chain extending west from the southern tip of the [[Alaska Peninsula]] is called the [[Aleutian Islands]]. Many active [[volcano]]es are found in the Aleutians. For example, [[Unimak Island]] is home to [[Mount Shishaldin]], a moderately active volcano that rises to 9,980 ft (3042&amp;nbsp;m) above [[sea level]]. The chain of volcanoes extends to [[Mount Spurr]], west of Anchorage on the mainland.
14240
14241 North America's second largest [[tide]]s occur in [[Turnagain Arm]] just south of Anchorage, which often sees tidal differences of more than 35 feet (10.7&amp;nbsp;m).
14242
14243 Alaska is home to 3.5 million [[lake]]s of 20 acres (8&amp;nbsp;ha) or larger. [[Marshland]]s and wetland [[permafrost]] cover 188,320 square miles (487&amp;nbsp;747&amp;nbsp;km², mostly in northern, western and southwest flatlands. Frozen water, in the form of [[glacier]] ice, covers some 16,000 square miles (41&amp;nbsp;440&amp;nbsp;km²) of land and 1200 square miles (3108&amp;nbsp;km²) of tidal zone. The Bering Glacier complex near the southeastern border with [[Yukon]], [[Canada]], covers 2250 square miles (5827&amp;nbsp;km²) alone.
14244
14245 {{ussm|alaska.png|ak}}
14246 The Aleutian Islands actually cross longitude 180°, also making it the easternmost state, although the [[International Date Line]] doglegs around them to keep the whole state in the same day. It is part of the [[extreme points of the United States]].
14247
14248 According to the October 1998 report of the [[United States Bureau of Land Management]], approximately 65% of Alaska is owned and managed by the [[United States Federal Government|U.S. Federal Government]] as [[national forest]]s, [[national park]]s, and [[national wildlife refuge]]s. Of these, the [[Bureau of Land Management]] manages 87 million acres (350&amp;nbsp;000&amp;nbsp;km²), or 23.8% of the state. The [[Arctic National Wildlife Refuge]] is managed by the [[United States Fish and Wildlife Service]].
14249
14250 Of the remaining land area, the State of Alaska owns 24.5%; another 10% is managed by thirteen regional and dozens of local Native corporations created under the [[Alaska Native Claims Settlement Act]]. Various private interests own the remaining land, totaling less than 1%.
14251
14252 ''See also:''
14253 * [[List of Alaska rivers]]
14254 * [[Alaska Peninsula]]
14255 * [[Bristol Bay]]
14256
14257 ==Boroughs and census areas==
14258 Alaska has no [[county (United States)|counties]] in the sense used in the rest of the country. Instead, the state is divided into [[List of boroughs and census areas in Alaska|27 census areas and boroughs]]. The difference between [[borough]]s and census areas is that boroughs have an organized area-wide government, while census areas are artificial divisions defined by the [[United States Census Bureau]] for statistical purposes only. Areas of the state not in organized boroughs compose what the government of Alaska calls the [[unorganized borough]]. Borough-level government services in the unorganized borough are provided by the state itself.
14259
14260 ==Economy==
14261 [[Image:wiki_alaska.jpg|thumb|350px|Greetings from Alaska]]
14262 The state's 2003 total gross state product was $31 billion. Its ''per-capita'' income for 2003 was $33,213, 14&lt;sup&gt;th&lt;/sup&gt; in the nation. Alaska's main export is seafood. Agriculture represents only a fraction of the Alaska economy. Agricultural production is primarily for consumption within the state and includes nursery stock, dairy products, vegetables, and livestock. Manufacturing is limited, with most foodstuffs and general goods imported from elsewhere. Employment is primarily in government and industries such as [[natural resource]] extraction, shipping, and transportation. Military bases are a significant component of the economy in both Fairbanks and Anchorage. Its industrial outputs are crude petroleum, natural gas, coal, gold, precious metals, zinc and other mining, seafood processing, timber and wood products. There is also a growing service and [[tourism]] sector. Tourists have contributed to the economy by supporting local lodging.
14263
14264 -
14265
14266 The cost of goods in Alaska has long been higher than in the contiguous 48 states. This has changed for the most part in [[Anchorage, Alaska|Anchorage]] and [[Fairbanks, Alaska|Fairbanks]], where the cost of living is actually less than some major cities in the Lower 48, thanks to lower housing and transportation costs. The introduction of big-box stores in Anchorage, Fairbanks, and Juneau also did much to lower prices. However, rural Alaska suffers from extremely high prices for food and consumer goods, compared to the rest of the country due to the relatively limited transportation infrastructure. Many rural residents come in to these cities and purchase food and goods in bulk from warehouse clubs like [[Costco]] and [[Sam's Club]]. Some have embraced the free shipping offers of some online retailers to purchase items much more cheaply than they could in their own communities, if they are available at all.
14267
14268 ==Transportation==
14269 [[image:Alaska Highway Bridge.jpg|thumb|234px|Bridge on [[Alaska Highway]] between [[Watson Lake]] and [[Whitehorse, Yukon|Whitehorse]].]]
14270 Alaska is arguably the least-connected state in terms of road transportation. The state's road system covers a relatively small area of the state, linking the central population centers and the [[Alaska Highway]], the principal route out of the state through [[Canada]]. The state capital, [[Juneau]], is not accessible by road, which has spurred several debates over the decades about moving the capital to a city on the road system. One unique feature of the road system is the [[Anton Anderson Memorial Tunnel]], which links the [[Seward Highway]] south of Anchorage with the relatively isolated community of [[Whittier, Alaska|Whittier]]. The tunnel held the title of the longest road tunnel in North America (at nearly 2.5 miles [4&amp;nbsp;km]) until completion of the 3.5 mile (5.6km) [[Interstate 93]] tunnel as part of the &quot;[[Big Dig]]&quot; project in [[Boston, Massachusetts]]. The Anderson Tunnel combines a one-lane roadway and train tracks in the same housing. Consequently, eastbound traffic, westbound traffic, and the [[Alaska Railroad]] must share the tunnel, resulting in waits of 20 minutes or more to enter. As reflected on the Alaska Department of Transportation [http://www.dot.state.ak.us/creg/whittiertunnel/index.shtml Tunnel Website], it is now considered &quot;North America's longest railroad-highway tunnel.&quot;
14271
14272 The [[Alaska Railroad]] runs from [[Seward, Alaska|Seward]] through [[Anchorage, Alaska|Anchorage]], [[Denali]], and [[Fairbanks, Alaska|Fairbanks]] to [[North Pole, Alaska|North Pole]], with spurs to [[Whittier, Alaska|Whittier]] and [[Palmer, Alaska|Palmer]]. The railroad is famous for its summertime passenger services but also plays a vital part in moving Alaska's natural resources, such as coal and gravel, to ports in Anchorage, Whittier and Seward. The Alaska Railroad is the only remaining railroad in North America to use [[caboose]]s on its freight trains. A stretch of the track along an area inaccessible by road serves as the only transportation to cabins in the area.
14273
14274 Most cities and villages in the state are accessible only by sea or air. Alaska has a well-developed [[ferry]] system, known as the [[Alaska Marine Highway]], which serves the cities of [[Southeast Alaska|Southeast]] and the [[Alaska Peninsula]]. The system also operates a ferry service from [[Bellingham, Washington|Bellingham]], [[Washington]] up the [[Inside Passage]] to [[Skagway, Alaska|Skagway]]. Cities not served by road or sea can only be reached by air, accounting for Alaska's extremely well-developed [[Alaskan Bush|Bush]] air services&amp;mdash;an Alaskan novelty.
14275
14276 Anchorage itself, and to a lesser extent Fairbanks, are serviced by [[Ted Stevens Anchorage International Airport#Airlines and destinations|many major airlines]]. Air travel is the cheapest and most efficient form of transportation in and out of the state. Anchorage recently completed extensive remodeling and construction at [[Ted Stevens Anchorage International Airport]] to help accommodate the upsurge in tourism (unofficial sources have estimated the numbers for 2004 at some four million tourists arriving in Alaska between May and September).
14277
14278 However, regular flights to most villages and towns within the state are commercially challenging to provide. Alaska Airlines is the only major airline offering in-state travel with jet service (sometimes in combination cargo and passenger [[Boeing 737]]-200s) from Anchorage and Fairbanks to regional hubs like [[Bethel, Alaska|Bethel]], [[Nome, Alaska|Nome]], [[Kotzebue, Alaska|Kotzebue]], [[Dillingham, Alaska|Dillingham]], [[Kodiak, Alaska|Kodiak]], and other larger communities as well as to major Southeast and Alaska Peninsula communities. The bulk of remaining commercial flight offerings come from small regional commuter airlines like: [[Era Aviation]], [[Peninsula Airways|PenAir]], and [[Frontier Flying Service]]. The smallest towns and villages must rely on scheduled or chartered Bush flying services using general aviation aircraft such as the [[Cessna Caravan]], the most popular aircraft in use in the state. Much of this service can be attributed to the Alaska bypass mail program which subsidizes bulk mail delivery to Alaskan rural communities. The program requires 70% of that subsidy to go to carriers who offer passenger service to the communities. But perhaps the most quintessentially Alaskan plane is the Bush seaplane. The world's busiest seaplane base is [[Lake Hood Seaplane Base|Lake Hood]], located next to Ted Stevens Anchorage International Airport, where flights bound for remote villages without an airstrip carry passengers, cargo, and lots of items from stores and warehouse clubs.
14279
14280 Another Alaskan transportation method is the [[dogsled]]. In modern times, dog [[mushing]] is more of a sport than a true means of transportation. Various races are held around the state, but the best known is the [[Iditarod]], a 1,150-mile (1850&amp;nbsp;km) trail from Anchorage to Nome. The race commemorates the famous [[1925 serum run to Nome]] in which mushers and dogs like [[Balto]] took much-needed medicine to the [[diphtheria]]-stricken community of [[Nome, Alaska|Nome]] when all other means of transportation had failed. Mushers from all over the world come to Anchorage each March to compete for cash prizes and prestige.
14281
14282 ==Demographics==
14283 {| class=&quot;toccolours&quot; align=right cellpadding=4 cellspacing=0 style=&quot;margin:0 0 1em 1em; font-size: 95%;&quot;
14284 |-
14285 ! colspan=2 bgcolor=&quot;#ccccff&quot; align=center | Historical populations
14286 |-
14287 ! align=center | Census&lt;br&gt;year !! align=right | Population
14288 |-
14289 | colspan=2 |&lt;hr&gt;
14290 |-
14291 | align=center | [[United States Census, 1950|1950]] || align=right | 128,643
14292 |-
14293 | align=center | [[United States Census, 1960|1960]] || align=right | 226,167
14294 |-
14295 | align=center | [[United States Census, 1970|1970]] || align=right | 300,382
14296 |-
14297 | align=center | [[United States Census, 1980|1980]] || align=right | 401,851
14298 |-
14299 | align=center | [[United States Census, 1990|1990]] || align=right | 550,043
14300 |-
14301 | align=center | [[United States Census, 2000|2000]] || align=right | 626,932
14302 |}
14303
14304 As of 2005, Alaska has an estimated population of 663,661, which is an increase of 5,906, or 0.9%, from the prior year and an increase of 36,730, or 5.9%, since the year 2000. This includes a natural increase since the last census of 36,590 people derived from its 53,132 births of which 16,542 deaths is subtracted from, and an increase due to net migration of 1,181 people into the state. Immigration from outside the United States resulted in a net increase of 5,800 people, and migration within the country produced a net loss of 4,619 people.
14305
14306 Alaska is the least densely populated state.
14307
14308 ===Race and ancestry===
14309 The racial breakdown of the state is:
14310 *67.6% [[Whites|White]] (Non-Hispanic)
14311 *15.6% [[Indigenous peoples of the Americas|Native American]] or [[Alaska Native]]
14312 *4.1% [[Hispanic American|Hispanic]]
14313 *4% [[Asian American|Asian]]
14314 *3.5% [[Blacks|Black]]
14315 *5.4% [[Mixed race]]
14316
14317 The largest ancestry groups in the state are: [[German-American|German]] (16.6%), Alaska Native or American Indian (15.6%), [[Ireland|Irish]] (10.8%), [[British American|English]] (9.6%), [[United States|American]] (5.7%), and [[Norwegian-American|Norwegian]] (4.2%). Alaska has the largest percentage of American Indians (16%) of any state.
14318
14319 The vast, sparsely populated bush regions of northern and western Alaska are primarily inhabited by Alaska Natives, and they also have a large presence in the southeast. Anchorage, Fairbanks, and other parts of south-central and southeast Alaska have many whites of northern and western European ancestry. The Wrangell-Petersburg area has many residents of Scandinavian ancestry and the Aleutians have many Filipinos. Most of the state's black population lives in Anchorage.
14320
14321 [[As of 2000]], 85.7% of Alaska residents age 5 and older speak [[English language|English]] at home and 5.2% speak [[Indigenous languages of the Americas|Native American languages]]. [[Spanish language|Spanish]] speakers make up 2.9% of the population, followed by [[Tagalog]] speakers at 1.5% and [[Korean language|Korean]] at 0.8%.
14322
14323 ===Religion===
14324 *[[Christianity|Christian]] &amp;ndash; 81%
14325 **[[Protestantism|Protestant]] &amp;ndash; 68%
14326 ***[[Baptist]] &amp;ndash; 11%
14327 ***[[Lutheranism|Lutheran]] &amp;ndash; 8%
14328 ***[[Methodism|Methodist]] &amp;ndash; 6%
14329 ***[[Pentecostalism|Pentecostal]] &amp;ndash; 2%
14330 ***[[Episcopal]] &amp;ndash; 1%
14331 ***[[Religious Society of Friends|Quaker]] &amp;ndash; 1%
14332 **[[Eastern Orthodoxy|Orthodox]] &amp;ndash; 8%
14333 **[[Roman Catholicism in the United States|Catholic]] &amp;ndash; 7%
14334 **[[Latter-day Saint]] &amp;ndash; 1%
14335 *Other [[religion]]s &amp;ndash; 1%
14336 *Not religious/[[agnosticism|agnostic]] &amp;ndash; 17%
14337
14338 Notable is Alaska's relatively large [[Eastern Orthodox Church|Eastern Orthodox]] [[Christianity|Christian]] population, a result of early [[Russia]]n colonization and [[missionary]] work among indigenous Alaskans.
14339
14340 ==Social issues==
14341 Alaska has long had a problem with alcohol use and abuse. Many rural communities in Alaska have outlawed its import. &quot;Dry&quot;, &quot;wet&quot;, and &quot;damp&quot; are terms describing a community's laws on liquor consumption. This problem directly relates to Alaska's high rate of [[Fetal Alcohol Syndrome]] (FAS) as well as contributing to the high rate of suicides. This is a controversial topic for many residents.
14342
14343 Alaska has also had a problem with &quot;[[brain drain]]&quot; as many of its young people, including most of the highest academic achievers, leave the state upon graduating high school. While for many this functions as a sort of [[walkabout]], many do not return to the state. The [[University of Alaska]] has been successfully combating this by offering four-year scholarships to the top 10 percent of Alaska high school graduates, the Alaska Scholars Program.
14344
14345 [[Domestic abuse]] and other violent crimes are also at notoriously high levels in the state; this is in part linked to alcohol abuse.
14346
14347 ==Notable Alaskans==
14348 The [[National Statuary Hall]] of the United States of America is part of the [[United States Capitol|Capitol]] in [[Washington, D.C.]] Each state has selected one or two distinguished citizens and provided statues. Alaska's are of its first two senators:
14349 * [[Bob Bartlett|Edward Lewis &quot;Bob&quot; Bartlett]] (1904&amp;ndash;1968) was the territorial delegate to the US Congress from 1944 to 1958, and was elected as the first senior [[United States Senate|U.S. Senator]] in 1958 and re-elected in 1964. There are streets, buildings, and even the first state ferry, named for him.
14350 * [[Ernest Gruening]] (1886&amp;ndash;1974) was appointed Governor of the [[Alaska Territory|Territory of Alaska]] in 1939, and served in that position for fourteen years. He was elected to the United States Senate in 1958 and re-elected in 1962.
14351 * [[Jay Hammond]] (1922&amp;ndash;2005) was Governor during the building of the [[Alaska Pipeline]] and established the [[Alaska Permanent Fund]], providing Alaskans with essentially free money. He is regarded as somewhat of a hero because of this. He was also governor during passage of the [[Alaska National Interest Lands Conservation Act]] and effectively served to moderate associated issues within the state among disparate interest groups ranging from conservationists to natives to pro-development interests.
14352 * [[Fran Ulmer]] was the first woman elected to statewide office&amp;mdash;she became Lieutenant Governor in 1994.
14353 * [[George Sharrock]] (1910&amp;ndash;2005) moved to the territory before statehood, eventually elected as the mayor of Anchorage and served during the [[Good Friday Earthquake]] in March 1964. This was the most devastating earthquake to hit Alaska and it sunk beach property, damaged roads and destroyed buildings all over the south central area. Sharrock, sometimes called the &quot;earthquake mayor,&quot; led the city's rebuilding effort over six months.
14354
14355 ==Important cities and towns==
14356 Alaska's most populous city is [[Anchorage, Alaska|Anchorage]], home of 260,283 people, 225,744 of whom live in the urbanized area. It ranks third in the [[List of U.S. cities by area]], behind two other Alaskan cities. Sitka ranks as America's largest city by area, followed closely by Juneau.
14357 [[image:SitkaNOAA.jpg|thumb|253px|[[Sitka, Alaska|Sitka Town]]]]
14358 {|
14359 |valign=&quot;top&quot;|
14360 '''Cities of 100,000 or more people'''
14361 *[[Anchorage, Alaska|Anchorage]]
14362 '''Towns of 10,000-100,000 people'''
14363 *[[Fairbanks, Alaska|Fairbanks]]
14364 *[[Juneau, Alaska|Juneau]]
14365 |}
14366 {|
14367 |valign=&quot;top&quot;|
14368 '''Towns of fewer than 10,000 people'''
14369 *[[Wasilla, Alaska|Wasilla]]
14370 *[[Kodiak, Alaska|Kodiak]]
14371 *[[Ketchikan, Alaska|Ketchikan]]
14372 *[[Ester, Alaska|Ester]]
14373 *[[Sitka, Alaska|Sitka]]
14374 *[[Palmer, Alaska|Palmer]]
14375 *[[Cordova, Alaska|Cordova]]
14376 |width=&quot;50&quot;|&amp;nbsp;
14377 |valign=&quot;top&quot;|
14378 *[[Bethel, Alaska|Bethel]]
14379 *[[Barrow, Alaska|Barrow]]
14380 *[[Kenai, Alaska|Kenai]]
14381 *[[Soldotna, Alaska|Soldotna]]
14382 *[[Unalaska, Alaska|Unalaska]]
14383 *[[Kotzebue, Alaska|Kotzebue]]
14384 *[[Nome, Alaska|Nome]]
14385 *[[North Pole, Alaska|North Pole]]
14386 *[[Houston, Alaska|Houston]]
14387 |width=&quot;50&quot;|&amp;nbsp;
14388 |valign=&quot;top&quot;|
14389 *[[Petersburg, Alaska|Petersburg]]
14390 *[[Homer, Alaska|Homer]]
14391 *[[Dillingham, Alaska|Dillingham]]
14392 *[[Valdez, Alaska|Valdez]]
14393 *[[Seward, Alaska|Seward]]
14394 *[[Delta Junction, Alaska|Delta Junction]]
14395 *[[Glennallen, Alaska|Glennallen]]
14396 *[[Circle, Alaska |Circle]]
14397 *[[Unalakleet, Alaska|Unalakleet]]
14398 |}
14399
14400 ===25 richest places in Alaska===
14401 Ranked by [[per capita income]]:
14402 {|
14403 |valign=&quot;top&quot;|
14404 1. [[Halibut Cove, Alaska]] $89,895
14405
14406 2. [[Chicken, Alaska]] $65,400
14407
14408 3. [[Edna Bay, Alaska]] $58,967
14409
14410 4. [[Sunrise, Alaska]] $56,000
14411
14412 5. [[Lowell Point, Alaska]] $45,790
14413
14414 6. [[Petersville, Alaska]] $43,200
14415
14416 7. [[Coldfoot, Alaska]] $42,620
14417
14418 8. [[Port Clarence, Alaska]] $35,286
14419
14420 9. [[Hobart Bay, Alaska]] $34,900
14421 |width=&quot;50&quot;|&amp;nbsp;
14422 |valign=&quot;top&quot;|
14423 10. [[Red Dog Mine, Alaska]] $34,348
14424
14425 11. [[Adak, Alaska]] $31,747
14426
14427 12. [[Meyers Chuck, Alaska]] $31,660
14428
14429 13. [[Pelican, Alaska]] $29,347
14430
14431 14. [[Ester, Alaska]] $29,155
14432
14433 15. [[Chignik Lagoon, Alaska]] $28,941
14434
14435 16. [[Four Mile Road, Alaska]] $28,465
14436
14437 17. [[Healy, Alaska]] $28,225
14438
14439 18. [[Moose Pass, Alaska]] $28,147
14440 |width=&quot;50&quot;|&amp;nbsp;
14441 |valign=&quot;top&quot;|
14442 19. [[Cube Cove, Alaska]] $27,920
14443
14444 20. [[Womens Bay, Alaska]] $27,746
14445
14446 21. [[Skagway, Alaska]] $27,700
14447
14448 22. [[Nelson Lagoon, Alaska]] $27,596
14449
14450 23. [[Valdez, Alaska]] $27,341
14451
14452 24. [[McKinley Park, Alaska]] $27,255
14453
14454 25. [[Attu Station, Alaska]] $26,964
14455 |}
14456 See also: ''[[Richest Places in Alaska]]''
14457
14458 ==Colleges and universities==
14459 *[[University of Alaska System]]
14460 **[[University of Alaska Anchorage]]
14461 **[[University of Alaska Fairbanks]]
14462 **[[University of Alaska Southeast]]
14463 *[[Alaska Bible College]]
14464 *[[Alaska Pacific University]]
14465 *[[Charter College (Anchorage, Alaska)|Charter College]]
14466 *[[Ilisagvik College]]
14467 *[[Sheldon Jackson College]]
14468
14469 ==External links==
14470 {{sisterlinks|Alaska}}
14471
14472 *{{wikicities|Alaska|Alaska}}
14473 *[http://www.alaska.gov/ State of Alaska website]
14474 *[http://quickfacts.census.gov/qfd/states/02000.html US Census Bureau]
14475 *[http://www.alaska.com/ Alaska.com Information]
14476 *[http://www.travelalaska.com/ Alaska Travel Industry Association]
14477 *[http://www.usnewspapers.org/state/alaska Alaska Newspapers]
14478
14479 ===Political parties===
14480 *[http://www.akrepublicans.org/ Alaska Republican Party]
14481 *[http://www.akdemocrats.org/ Alaska Democratic Party]
14482 *[http://www.republicanmoderates.com/ Alaska Republican Moderate Party]
14483 *[http://www.akip.org/ Alaskan Independence Party]
14484 *[http://www.ak.lp.org/ Alaska Libertarian Party]
14485 *[http://www.alaska.greens.org/ Alaska Green Party]
14486
14487 {{Alaska}}
14488 {{United_States}}
14489 [[Category:Alaska|*]]
14490 [[Category:Exclaves]]
14491 [[Category:Russian people in the United States]]
14492 [[Category:States of the United States]]
14493 [[Category:1959 establishments]]
14494 {{link FA|hu}}
14495
14496 [[ar:ØŖŲ„اØŗŲƒØ§]]
14497 [[ast:Alaska]]
14498 [[bg:АĐģŅŅĐēĐ°]]
14499 [[zh-min-nan:Alaska]]
14500 [[bs:Aljaska]]
14501 [[ca:Alaska]]
14502 [[cs:AljaÅĄka]]
14503 [[cy:Alaska]]
14504 [[da:Alaska]]
14505 [[de:Alaska]]
14506 [[et:Alaska]]
14507 [[es:Alaska]]
14508 [[eo:Alasko]]
14509 [[eu:Alaska]]
14510 [[fa:ØĸŲ„اØŗڊا]]
14511 [[fr:Alaska]]
14512 [[ga:Alasca]]
14513 [[gl:Alasca - Alaska]]
14514 [[ko:ė•Œëž˜ėŠ¤ėš´ ėŖŧ]]
14515 [[hr:Aljaska]]
14516 [[io:Alaska]]
14517 [[ilo:Alaska]]
14518 [[id:Alaska]]
14519 [[iu:áŠá“›á“¯á‘˛]]
14520 [[is:Alaska]]
14521 [[it:Alaska]]
14522 [[he:אלסקה]]
14523 [[ka:ალასკა (შáƒĸაáƒĸი)]]
14524 [[ks:ā¤…ā¤˛ā¤žā¤¸āĨâ€ā¤•ā¤ž]]
14525 [[kw:Alaska]]
14526 [[la:Alasca]]
14527 [[lv:AÄŧaska]]
14528 [[lt:Aliaska]]
14529 [[hu:Alaszka]]
14530 [[mk:АŅ™Đ°ŅĐēĐ°]]
14531 [[ms:Alaska]]
14532 [[nl:Alaska]]
14533 [[ja:ã‚ĸナ゚ã‚Ģåˇž]]
14534 [[no:Alaska]]
14535 [[nn:Alaska]]
14536 [[os:АĐģŅŅĐēÃĻ]]
14537 [[pl:Alaska]]
14538 [[pt:Alasca]]
14539 [[ro:Alaska]]
14540 [[ru:АĐģŅŅĐēĐ°]]
14541 [[sa:ā¤…ā¤˛ā¤žā¤¸āĨâ€ā¤•ā¤ž]]
14542 [[sq:Alaska]]
14543 [[simple:Alaska]]
14544 [[sk:AljaÅĄka]]
14545 [[sl:Aljaska]]
14546 [[sr:АŅ™Đ°ŅĐēĐ°]]
14547 [[fi:Alaska]]
14548 [[sv:Alaska]]
14549 [[th:ā¸Ąā¸Ĩā¸Ŗā¸ąā¸ā¸­ā¸°āšā¸Ĩā¸Ēā¸ā¸˛]]
14550 [[vi:Alaska]]
14551 [[tr:Alaska]]
14552 [[uk:АĐģŅŅĐēĐ°]]
14553 [[zh:é˜ŋæ‹‰æ–¯åŠ åˇž]]</text>
14554 </revision>
14555 </page>
14556 <page>
14557 <title>Architecture (disambiguation)</title>
14558 <id>625</id>
14559 <revision>
14560 <id>33430024</id>
14561 <timestamp>2006-01-01T00:20:41Z</timestamp>
14562 <contributor>
14563 <username>Trevor macinnis</username>
14564 <id>73333</id>
14565 </contributor>
14566 <minor />
14567 <comment>[[WP:AWB|AWB Assisted]] avoid redirect</comment>
14568 <text xml:space="preserve">In modern usage, architecture is the [[art]] of creating an actual, implied or apparent plan of any complex [[object]] or [[system]]. The term can be used to connote the ''implied architecture'' of abstract things such as [[music]] or [[mathematics]], the apparent architecture of natural things, such as [[geology|geological]] formations or the [[structural biology|structure of biological cells]], or explicitly ''planned architectures'' of human-made things such as [[Computer software|software]], [[computers]], [[enterprise]]s, and [[database]]s, in addition to buildings. In every usage, an architecture may be seen as a ''subjective [[Map (mathematics)|mapping]]'' from a human perspective (that of the 'user' in the case of abstract or physical artifacts) to the [[Element (mathematics)|elements]] or [[components]] of some kind of [[structure]] or system, which preserves the relationships among the elements/components.
14569
14570 '''Architecture''' may refer to:
14571
14572 * [[Architecture|Architecture (built environment)]], the art and science of designing habitations, buildings, and building complexes; classical architecture.
14573 * [[Architectural history]] studies the evolution and history of (built) architectures across the world through a consideration of various influences- [[artistic]], [[cultural]], [[political]], [[economic]], and [[technological]].
14574 * [[Architecture (other)]], a representation of an arbitrary abstract, natural, or man-made structure of two or more interacting parts (e.g., architecture of mathematics, architecture of language, cytoarchitecture, cellular architecture, naval architecture, skelletal architecture, battlefield architecture). All [[systems]] can be said to have an architecture.
14575 * [[Biological architectures]], the ''apparent'' architecture of biological structures. See [[cytoarchitecture]], [[structural biology]], [[cell (biology)|cell architecture]]
14576 * [[Landscape architecture]], the design of man-made land constructs
14577 * [[Systems architecture]], the representation of an engineered (or To Be Engineered) system, and the process and discipline for effectively implementing the design(s) for such a system. Such a system may consist of information and/or hardware and/or software.
14578 * [[Computer architecture]], the systems architecture of a computer.
14579 * [[Software architecture]], the systems architecture of a software system.
14580 * [[Enterprise architecture]], a systems architecture, or framework, for aligning an organization's structure/ processes/ information/ operations/ projects with the organization's overall strategy
14581 * [[Information architecture]], a systems architecture for structuring a knowledge-based system
14582 * [[Product design]], or product architecture, the systems design of a product or product family
14583 * [[Vehicle architecture]], an automobile platform made from a set of components common to a number of different vehicles
14584
14585 {{disambig}}
14586
14587 [[af:Argitektuur]]
14588 [[bg:&amp;#1040;&amp;#1088;&amp;#1093;&amp;#1080;&amp;#1090;&amp;#1077;&amp;#1082;&amp;#1090;&amp;#1091;&amp;#1088;&amp;#1072;]]
14589 [[ca:Arquitectura]]
14590 [[da:Arkitektur]]
14591 [[de:Architektur]]
14592 [[eo:Arkitekturo]]
14593 [[es:Arquitectura]]
14594 [[fa:&amp;#1605;&amp;#1593;&amp;#1605;&amp;#1575;&amp;#1585;&amp;#1610;]]
14595 [[fi:Arkkitehtuuri]]
14596 [[fr:Architecture]]
14597 [[he:&amp;#1488;&amp;#1491;&amp;#1512;&amp;#1497;&amp;#1499;&amp;#1500;&amp;#1493;&amp;#1514;]]
14598 [[ia:Architectura]]
14599 [[it:Architettura]]
14600 [[ja:&amp;#24314;&amp;#31689;&amp;#23398;]]
14601 [[la:Architectura]]
14602 [[lt:Architekt&amp;#363;ra]]
14603 [[lv:Arhitektura]]
14604 [[nah:Arquitectura]]
14605 [[nl:Architectuur]]
14606 [[no:Arkitektur]]
14607 [[pl:Architektura]]
14608 [[pt:Arquitetura (desambiguaçÃŖo)]]
14609 [[ro:Arhitectur&amp;#259;]]
14610 [[ru:&amp;#1040;&amp;#1088;&amp;#1093;&amp;#1080;&amp;#1090;&amp;#1077;&amp;#1082;&amp;#1090;&amp;#1091;&amp;#1088;&amp;#1072;]]
14611 [[simple:Architecture]]
14612 [[sl:Arhitektura]]
14613 [[sr:&amp;#1040;&amp;#1088;&amp;#1093;&amp;#1080;&amp;#1090;&amp;#1077;&amp;#1082;&amp;#1090;&amp;#1091;&amp;#1088;&amp;#1072;]]
14614 [[sv:Arkitektur]]
14615 [[sw:Majenzi]]
14616 [[ta:&amp;#2965;&amp;#2975;&amp;#3021;&amp;#2975;&amp;#3007;&amp;#2975;&amp;#2965;&amp;#3021;&amp;#2965;&amp;#2994;&amp;#3016;]]
14617 [[zh:&amp;#24314;&amp;#31569;&amp;#23398;]]</text>
14618 </revision>
14619 </page>
14620 <page>
14621 <title>Auteur Theory Film</title>
14622 <id>626</id>
14623 <revision>
14624 <id>15899155</id>
14625 <timestamp>2002-02-25T15:51:15Z</timestamp>
14626 <contributor>
14627 <ip>Conversion script</ip>
14628 </contributor>
14629 <minor />
14630 <comment>Automated conversion</comment>
14631 <text xml:space="preserve">#REDIRECT [[Auteur theory]]
14632 </text>
14633 </revision>
14634 </page>
14635 <page>
14636 <title>Agriculture</title>
14637 <id>627</id>
14638 <revision>
14639 <id>42032966</id>
14640 <timestamp>2006-03-03T09:38:33Z</timestamp>
14641 <contributor>
14642 <username>Pollinator</username>
14643 <id>22743</id>
14644 </contributor>
14645 <minor />
14646 <comment>Reverted edits by [[Special:Contributions/72.141.123.179|72.141.123.179]] ([[User talk:72.141.123.179|talk]]) to last version by 212.32.71.92</comment>
14647 <text xml:space="preserve">[[Image:HorseAndPlough.jpg|thumb|300px|A [[farm]]er in [[Germany]] working the land in the traditional way, with [[horse]] and [[plough]].]]
14648 [[Image:Ford_tractor,_Sweden.jpg|thumb|250px|Farming the modern way using a [[tractor]] in [[Sweden]].]]
14649
14650 '''Agriculture''' is the process of producing [[food]], [[feed]], [[fiber]] and many other desired products by the cultivation of certain [[plant]]s and the raising of domesticated [[animal]]s ([[livestock]]). The practice of agriculture is also known as &quot;[[farming]]&quot;, while scientists, inventors and others devoted to improving farming methods and implements are also said to be engaged in agriculture.
14651
14652 More [[Person|people]] in the [[world]] are involved in agriculture as their primary [[economics|economic activity]] than in any other, yet it only accounts for four percent of the world's [[gross domestic product|GDP]].&lt;!--Source?--&gt;
14653
14654 ==Overview==
14655 [[Image:Agriculture---Rice.jpg|left|thumb|250px|[[Tea]] plantation in [[Java (island)|Java]], [[Indonesia]].]]
14656
14657 Agriculture sometimes refers to [[subsistence farming|subsistence agriculture]], the production of enough [[food]] to meet just the needs of the farmer/[[agriculturalist]] and his/her family. It may also refer to industrial agriculture, (often referred to as [[factory farming]]) long prevalent in developed nations and increasingly so elsewhere, which consists of obtaining financial income from the cultivation of land to yield [[produce]], the commercial raising of animals ([[animal husbandry]]), or both.
14658
14659 Agriculture is also short for the ''study'' of the practice of agriculture&amp;mdash;more formally known as [[agricultural science]]. Agricultural students are known (sometimes derisively) as &quot;Aggies&quot;.
14660
14661 Increasingly, in addition to food for humans and [[fodder|animal feeds]], agriculture produces goods such as cut [[flower]]s, ornamental and [[Nursery (horticulture)|nursery]] plants, [[timber]] or lumber, [[fertilizer]]s, [[animal hides]], [[leather]], industrial chemicals ([[starch]], [[sugar]], [[ethanol]], [[alcohol]]s and [[plastic]]s), [[fiber]]s ([[cotton]], [[wool]], [[hemp]], and [[flax]]), fuels ([[methane]] from [[biomass]], [[biodiesel]]) and both legal and illegal drugs ([[biopharmaceutical]]s, [[tobacco]], [[marijuana]], [[opium]], [[cocaine]]). [[GMO|Genetically engineered]] plants and animals produce specialty drugs.
14662
14663 In the [[Western world]], the use of [[genetic modification|gene manipulation]], better management of soil nutrients, and improved [[weed control]] have greatly increased yields per unit area. At the same time, the use of mechanization has decreased labour requirements. The developing world generally produces lower yields, having less of the latest science, [[capital (economics)|capital]], and technology base.
14664
14665 Modern agriculture depends heavily on engineering and technology and on the biological and physical sciences. [[Irrigation]], [[drainage]], [[conservation ethic|conservation]] and sanitary engineering, each of which is important in successful farming, are some of the fields requiring the specialized knowledge of agricultural engineers.
14666
14667 Agricultural chemistry deals with other vital farming concerns, such as the application of fertilizer, insecticides (see [[Pest control]]), and fungicides, soil makeup, analysis of agricultural products, and nutritional needs of farm animals.[[Plant breeding]] and genetics contribute additionally to farm productivity. Advanced seed engineering has allowed strains of seed to become perfect in every farming situation. Seeds can now germinate faster and adapt to shorter growing seasons in different climates. Present-day seed can resist the spraying of pesticides that kill all green-leaf plants. [[Hydroponics]], a method of soilless gardening in which plants are grown in chemical nutrient solutions, may help meet the need for greater food production as the world's population increases.
14668
14669 The packing, processing, and marketing of agricultural products are closely related activities also influenced by science. Methods of quick-freezing and dehydration have increased the markets for farm products (see [[Food preservation]]; [[Meat packing industry]]).
14670
14671 Mechanization, the outstanding characteristic of late [[19th century|19th]] and [[20th century]] agricultural evolution, has eased much of the backbreaking toil of the farmer. More significantly, mechanization has enormously increased farm efficiency and productivity (see [[Agricultural machinery]]). Animals, including horses, mules, oxen, camels, llamas, alpacas, and dogs; however, are still used to cultivate [[field (agriculture)|fields]], harvest [[crops]] and transport farm products to markets in many parts of the world.
14672
14673 Airplanes, helicopters, trucks and tractors are used in agriculture for seeding, spraying operations for insect and disease control, [[Aerial topdressing]], transporting perishable products, and fighting forest fires. Radio and television disseminate vital weather reports and other information such as market reports that concern farmers. Computers have become an essential tool for farm management.
14674
14675 [[Image:Farming-on-Indonesia.jpg|thumb|250px|right|Farming, ploughing rice paddy, in [[Indonesia]].]]
14676
14677 According to the [[National Academy of Engineering]] in the US, agricultural mechanization is one of the 20 greatest engineering achievements of the 20th century. Early in the century, it took one American farmer to produce food for 2.5 people, where today, due to engineering technology (also, [[plant breeding]] and [[agrichemical]]s), a single farmer can feed over 130 people [http://www.greatachievements.org/greatachievements/ga_7_2.html]. This comes at a cost, however, of large amounts of energy input, from unsustainable, mostly [[fossil fuel]], sources.
14678
14679 Animal husbandry means breeding and raising animals for meat or to harvest animal products (like milk, eggs, or wool) on a continual basis.
14680
14681 In recent years some aspects of industrial [[intensive agriculture]] have been the subject of increasing discussion. The widening [[sphere of influence]] held by large seed and chemical companies, meat packers and food processors has been a source of concern both within the farming community and for the general public. There has been increased activity of some people against some farming practices, raising chickens for food being one example. Another issue is the type of feed given to some animals that can cause [[Bovine Spongiform Encephalopathy]] in cattle. There has also been concern because of the disastrous effect that intensive agriculture has on the environment. In the US, for example, fertilizer has been running off into the Mississippi for years and has caused a dead spot in the Gulf of Mexico, where the Mississippi empties. Intensive agriculture also depletes the fertility of the land over time and the end effect is that which happened in the Middle East, were some of the most fertile farmland in the world was turned into a desert by intensive agriculture.
14682
14683 The patent protection given to companies that develop new types of [[seed]] using [[genetic engineering]] has allowed seed to be licensed to farmers in much the same way that computer software is licensed to users. This has changed the balance of power in favor of the seed companies, allowing them to dictate terms and conditions previously unheard of. Some argue these companies are guilty of [[biopiracy]].
14684
14685 [[Soil]] [[conservation ethic|conservation]] and [[nutrient management]] have been important concerns since the [[1950s]], with the best farmers taking a [[stewardship]] role with the land they operate. However, increasing contamination of waterways and wetlands by nutrients like [[nitrogen]] and [[phosphorus]] are of concern in many countries.
14686
14687 Increasing consumer awareness of agricultural issues has led to the rise of [[community-supported agriculture]], [[local food movement]], [[Slow Food|slow food]], and commercial [[organic farming]], though these yet remain fledgling industries.
14688
14689 ==History==
14690 [[Image:Ancient egyptian farmer.gif|thumb|230px|Ancient Egyptian farmer]]
14691
14692 : ''Main article: [[History of agriculture]]''
14693
14694 [[Paleoethnobotany|Archaeobotanists]]/[[Paleoethnobotany|Paleoethnobotanists]] have traced the selection and cultivation of specific food plant characteristics, such as a semi-tough [[rachis]] and larger [[seeds]], to just after the [[Younger Dryas]] (about 9,500 BC) in the early [[Holocene]] in the [[Levant]] region of the [[Fertile Crescent]]. Limited [[anthropology|anthropological]] and [[archaeology|archaeological]] evidence both indicate a [[cereal|grain]]-[[grinding]] [[culture]] [[farming]] along the [[Nile]] in the [[10th millennium BC]] using the world's earliest known type of [[sickle]] [[blade]]s. There is even earlier evidence for conscious cultivation and seasonal harvest: grains of [[rye]] with domestic traits have been recovered from [[Epi-Palaeolithic]] (10,000+ BC) contexts at [[Abu Hureyra]] in [[Syria]], but this appears to be a localised phenomenon resulting from cultivation of stands of wild rye, rather than a definitive step towards domestication. It is not until ca. 8,500 BC, in middle-Eastern cultures referred to as [[Pre-Pottery Neolithic B]] ([[Pre-Pottery Neolithic B|PPNB]]), where there is the first definite evidence for the emergence of a widespread subsistence economy that was dependent on domesticated plants and animals. In these contexts lie the origins of the eight so-called [[Neolithic founder crops|founder crops]] of agriculture: firstly [[emmer wheat]], [[einkorn wheat]], then hulled [[barley]], [[pea]], [[lentil]], [[bitter vetch]], [[chick pea]] and [[flax]]. These eight crops occur more or less simultaneously on [[Pre-Pottery Neolithic B|PPNB]] sites in this region, although the consensus is that [[wheat]] was the first to be sown and harvested on a significant scale. There are many sites that date to between ca. 8,500 BC and 7,500 BC where the systematic farming of these crops contributed the major part of the inhabitants' diet. From the [[Fertile Crescent]] agriculture spread eastwards to [[Central Asia]] and westwards into [[Cyprus]], [[Anatolia]] and, by 7,000 BC, [[Greece]]. Farming, principally of emmer and einkorn, reached northwestern [[Europe]] via southeastern and central Europe by ca. 4,800 BC (see, among others, Price, D. [ed.] 2000. ''Europe's First Farmers''. Cambridge University Press; Harris, D. [ed.] 1996 ''The Origins and Spread of Agriculture in Eurasia''. UCL Press).
14695 [[Image:Agriculture (Plowing) CNE-v1-p58-H.jpg|left|thumb|250px|A [[tractor]] [[plough]]ing an [[alfalfa]] field]]
14696
14697 The reasons for the earliest introduction of farming may have included [[climate]] change, but possibly there were also social reasons (e.g. accumulation of food surplus for competitive gift-giving). Most certainly there was a gradual transition from [[hunter-gatherer]] to agricultural economies after a lengthy period when some crops were deliberately planted and other foods were gathered from the wild. Although localised climate change is the favoured explanation for the origins of agriculture in the [[Levant]], the fact that farming was 'invented' at least three times, possibly more, suggests that social reasons may have been instrumental. In addition to emergence of farming in the [[Fertile Crescent]], agriculture appeared by at least 6,800 BC in East Asia ([[rice]]) and, later, in [[Mesoamerica|Central]] and [[South America]] ([[maize]], [[squash (fruit)|squash]]). Small scale agriculture also likely arose independently in early Neolithic contexts in [[India]] (rice) and [[Southeast Asia]] (taro).&lt;!--Sources?--&gt;
14698
14699 [[Image:ClaySumerianSickle.jpg|thumb|right|230px|[[Sumer]]ian Harvester's sickle, [[3000 BCE]]. Baked clay. [[Field Museum]].]]
14700
14701 Full dependency on domestic crops and animals (i.e. when wild resources contributed a nutritionally insignificant component to the diet) was not until the [[Bronze Age]]. If the operative definition of ''agriculture'' includes large scale intensive cultivation of land, [[mono-cropping]], organised [[irrigation]], and use of a specialized [[labour (economics)|labour]] force, the title &quot;inventors of agriculture&quot; would fall to the [[Sumer]]ians, starting ca. 5,500 BC. Intensive farming allows a much greater density of population than can be supported by hunting and gathering and allows for the accumulation of excess product to keep for winter use or to sell for profit. The ability of farmers to feed large numbers of people whose activities have nothing to do with material production was the crucial factor in the rise of standing armies. The agriculturalism of the Sumerians allowed them to embark on an unprecedented territorial expansion, making them the first [[empire]] builders. Not long after, the Egyptians, powered by effective farming of the [[Nile|Nile valley]], achieved a population density from which enough warriors could be drawn for a territorial expansion more than tripling the Sumerian empire in area.&lt;!--Sources?--&gt;
14702
14703 The invention of a [[three field system]] of crop rotation during the [[Middle Ages]] vastly improved agricultural efficiency.
14704
14705 After [[1492]] the world's agricultural patterns were shuffled in the widespread exchange of plants and animals known as the [[Columbian Exchange]].&lt;!--Is this just Crosby's term or is it more widely used?--&gt; Crops and animals that were previously only known in the Old World were now transplanted to the New and vice versa. Perhaps most notably, the [[tomato]] became a favorite in European cuisine, while certain wheat strains quickly took to western hemisphere soils and became a dietary staple even for native North, Central and South Americans.
14706
14707 By the early [[1800]]s agricultural practices, particularly careful selection of hardy strains and cultivars, had so improved that yield per land unit was many times that seen in the Middle Ages and before, especially in the largely virgin lands of North and South America. With the rapid rise of [[mechanised agriculture|mechanization]] in the 20th century, especially in the form of the [[tractor]], the demanding tasks of [[sowing]], [[harvesting]] and [[threshing]] could be performed with a speed and on a scale barely imaginable before. These advances have led to efficiencies enabling certain modern farms in the United States, Argentina, Israel, Germany and a few other nations to output volumes of high quality produce per land unit at what may be the practical limit.
14708
14709 ==Crops==
14710 ===World production of major crops in 2004===
14711 In millions of metric tons, based on [[Food and Agriculture Organization | FAO]] estimates[http://faostat.fao.org/faostat/form?collection=Production.Crops.Primary&amp;Domain=Production&amp;servlet=1&amp;hasbulk=0&amp;version=ext&amp;language=EN]:
14712
14713 By crop types
14714 :[[Cereal]]s 2,264
14715 :[[Vegetable]]s and [[melon]]s 866
14716 :[[Root]]s and [[Tuber]]s 715
14717 :[[Milk]] 619
14718 :[[Fruit]] 503
14719 :[[Meat]] 259
14720 :[[Vegetable oil|Oilcrop]]s 133
14721 :[[Fish]] 130 (2001 estimate)
14722 :[[Egg (food)|Eggs]] 63
14723 :[[Pulse (legume)|Pulse]]s 60
14724 :[[Fiber crop|Vegetable Fiber]] 30
14725
14726 By individual crops
14727 :[[Sugar Cane]] 1,324
14728 :[[Maize]] 721
14729 :[[Wheat]] 627
14730 :[[Rice]] 605
14731 :[[Potato]]es 328
14732 :[[Sugar Beet]] 249
14733 :[[Soybean]] 204
14734 :[[Oil palm|Oil Palm]] Fruit 162
14735 :[[Barley]] 154
14736 :[[Tomato]] 120
14737
14738 ===Crop improvement===
14739 [[Image:Cropscientist.jpg|right|thumb|250px|An agricultural scientist records corn growth]]
14740 [[Image:Bird netting.jpg|thumb|250px|Netting protecting wine grapes from birds]]
14741 *''See main article on'' [[Plant breeding]]
14742
14743 Domestication of plants is done in order to increase yield, improve disease resistance and drought tolerance, ease harvest and to improve the taste and [[nutrition]]al value and many other characteristics. Centuries of careful selection and breeding have had enormous effects on the characteristics of crop plants. Plant breeders use greenhouses and other techniques to get as many as three generations of plants per year so that they can make improvements all the more quickly.
14744
14745 Plant selection and breeding in the 1920s and '30s improved [[pasture]] (grasses and clover) in New Zealand. Extensive radiation mutagenesis efforts (i.e. primitive genetic engineering) during the [[1950s]] produced the modern commercial varieties of grains such as wheat, corn and barley.&lt;!--Source?--&gt;
14746
14747 For example, average yields of corn ([[maize]]) in the USA have increased from around 2.5 tons per hectare (40 bushels per acre) in [[1900]] to about 9.4 t/ha (150 bushels per acre) in [[2001]], primarily due to improvements in genetics. Similarly, worldwide average wheat yields have increased from less than 1 t/ha in [[1900]] to more than 2.5 t/ha in [[1990]]. [[South America]]n average wheat yields are around 2 t/ha, [[Africa]]n under 1 t/ha, [[Egypt]] and Arabia up to 3.5 to 4 t/ha with irrigation. In contrast, the average wheat yield in countries such as [[France]] is over 8 t/ha. Higher yields are due to improvements in genetics, as well as use of intensive farming techniques (use of fertilizers, chemical [[pest control]], growth control to avoid lodging).&lt;!--Sources?--&gt; [Conversion note: 1 bushel of wheat = 60 pounds (lb) ≈ 27.215 kg. 1 bushel of corn = 56 pounds ≈ 25.401 kg]
14748
14749 In industrialized agriculture, crop &quot;improvement&quot; has often reduced nutritional and other qualities of food plants to serve the interests of producers. After mechanical tomato-harvesters were developed in the early 1960s, agricultural scientists bred tomatoes that were harder and less nutritious (Friedland and Barton 1975). In fact, a major longitudinal study of nutrient levels in numerous vegetables showed significant declines in the last 50 years; garden vegetables in the U.S. today contain on average 38 percent less vitamin B2 and 15 percent less vitamin C (Davis and Riordan 2004).
14750
14751 Very recently, [[genetic engineering]] has begun to be employed in some parts of the world to speed up the selection and breeding process. The most widely used modification is a herbicide resistance gene that allows plants to tolerate exposure to glyphosate, which is used to control weeds in the crop. A less frequently used but more controversial modification causes the plant to produce a toxin to reduce damage from insects (c.f. [[Transgenic maize|Starlink]]).
14752
14753 There are specialty producers who raise less common types of livestock or plants.
14754
14755 [[Aquaculture]], the farming of [[fish]], [[shrimp]], and [[algae]], is closely associated with agriculture.
14756
14757 [[Beekeeping|Apiculture]], the culture of bees, traditionally for [[honey]]&amp;mdash;increasingly for crop [[pollination]].
14758
14759 ''See also'' : [[botany]], [[List of domesticated plants]], [[List of vegetables]], [[List of herbs]], [[List of fruit]]
14760
14761 ==Environmental problems==
14762 Agriculture may often cause environmental problems because it changes natural environments and produces harmful by-products. Some of the negative effects are:
14763
14764 * [[Nitrogen]] and [[phosphorus]] surplus in [[river]]s and [[lake]]s.
14765 * Detrimental effects of [[herbicide]]s, [[fungicide]]s, [[insecticide]]s, and other [[biocide]]s.
14766 * Conversion of natural [[ecosystem]]s of all types into [[arable land]].
14767 * Consolidation of diverse [[biomass]] into a few species.
14768 * [[Erosion]]
14769 * Depletion of [[minerals]] in the [[soil]]
14770 * [[Particulate matter]], including [[ammonia]] and [[ammonium]] off-gasing from animal waste contributing to [[air pollution]]
14771 * [[Weed]]s - [[feral]] plants and animals
14772 * Odor from agricultural [[waste]]
14773 * [[Soil salination]] .
14774
14775 ==Policy==
14776 [[Agricultural policy]] focuses on the goals and methods of agricultural production. At the policy level, common goals of agriculture include:
14777 *[[Foodborne illness|Food safety]]: Ensuring that the food supply is free of contamination.
14778 *[[Food security]]: Ensuring that the food supply meets the population's needs.
14779 *[[Food quality]]: Ensuring that the food supply is of a consistent and known quality.
14780
14781 * Conservation
14782 * Environmental impact
14783 * Economic stability
14784
14785 ==Agricultural Revolutions==
14786 * [[British Agricultural Revolution]]
14787 * [[Green Revolution]]
14788 * [[Neolithic Revolution]]
14789
14790 ==Methods==
14791 There are various methods of agricultural production:
14792
14793 *[[aeroponics]]
14794 *[[aerial topdressing]]
14795 *[[agricultural machinery]]
14796 *[[animal husbandry]]
14797 *[[aquaculture]]
14798 *[[beekeeping]]
14799 *[[crop rotation]]
14800 *[[Concentrated Animal Feeding Operation]] ([[Concentrated Animal Feeding Operation|CAFO]], ''[[factory farming]]'')
14801 *[[composting]]
14802 *[[dairy farming]]
14803 *[[detasseling]]
14804 *[[domestication]]
14805 *[[agricultural fencing|fencing]]
14806 *[[fertilizer]]s
14807 *[[greenhouse]]
14808 *[[harvest]]
14809 *[[heliciculture]]
14810 *[[hybrid seed]]
14811 *[[hydroponics]]
14812 *[[Integrated Pest Management]] ([[Integrated Pest Management|IPM]])
14813 *[[irrigation]]
14814 *[[livestock]]
14815 *[[market gardening]]
14816 *[[monoculture]]
14817 *[[no-till farming]]
14818 *[[organic farming]]
14819 *[[plant breeding]]
14820 *[[Permaculture]]
14821 *[[pollination management]]
14822 *[[precision farming]]
14823 *[[ranching]]
14824 *[[season extension]]
14825 *[[seed saving]]
14826 *[[seed testing]]
14827 *[[shepherding]]
14828 *[[subsistence farming]]
14829 *[[succession planting]]
14830 *[[sustainable agriculture]]
14831 *[[Terrace (agriculture)|terracing]]
14832 *[[vegetable farming]]
14833 *[[tillage]]
14834 *[[weed control]]
14835
14836 ==References==
14837 *Wells, Spencer: ''The Journey of Man : A Genetic Odyssey''. Princeton University Press, 2003. ISBN: 069111532X
14838 *Crosby, Alfred W.: ''The Columbian Exchange : Biological and Cultural Consequences of 1492''. Praeger Publishers, 2003 (30th Anniversary Edition). ISBN: 0275980731
14839 *Collinson, M. (editor): ''A History of Farming Systems Research''. CABI Publishing, 2000. ISBN: 0851994059
14840 *Davis, Donald R., and Hugh D. Riordan (2004) Changes in USDA Food Composition Data for 43 Garden Crops, 1950 to 1999. Journal of the American College of Nutrition, Vol. 23, No. 6, 669-682.
14841 *Friedland, William H. and Amy Barton (1975) Destalking the Wily Tomato: A Case Study of Social Consequences in California Agricultural Research. Univ. California at Sta. Cruz, Research Monograph 15.¡
14842
14843 ==See also==
14844 * [[Agricultural and Food Research Council]], UK
14845 * [[Agricultural education]]
14846 * [[Agricultural science]]
14847 * [[Agricultural sciences basic topics]]
14848 * [[Arid-zone agriculture]]
14849 * [[Barnyard]]
14850 * [[Community-supported agriculture]]
14851 * [[International agricultural research]]
14852 * [[Family farm hog pen]]
14853 * [[Farm equipment]]
14854 * [[Land Allocation Decision Support System]]
14855 * [[List of domesticated animals]]
14856 * [[List of subsistence techniques]]
14857 * [[List of countries by agricultural output]]
14858 * [[List of sustainable agriculture topics]]
14859 * [[Permaculture]]
14860 * [[Protein per unit area]]
14861 * [[Timeline of agriculture and food technology]].
14862 * [[USA agriculture]]
14863
14864 [[Image:Cows in green field - nullamunjie olive grove03.jpg|thumb|600px|center|Herd of [[Hereford]]s in a green field]]
14865
14866 ==External links==
14867 * [http://www.fao.org www.fao.org] — Food and Agriculture Organization of the United Nations World Agricultural Information Centre
14868 ** [http://www.fao.org/waicent/portal/statistics_en.asp www.fao.org] — The UN Statistical Databases
14869 ** [http://www.fao.org/faostat www.fao.org/faostat] — The FAOSTAT Statistical Databases
14870 ** [http://www.fao.org/es/ess www.fao.org/es/ess] — The FAO Statistics Division
14871 ** [http://www.fao.org/ag/ FAO Agriculture Department] and its [http://www.fao.org/docrep/006/y5160e/y5160e00.HTM State of Food and Agriculture 2003-2004] with a focus on the impact of biotechnology
14872 **[http://www.greenfacts.org/gmo/index.htm GM Crops in Agriculture] &amp;ndash; A summary for non-specialists of the above FAO report by [[GreenFacts]].
14873 * {{dmoz|Science/Environment/Agriculture/ |Agriculture}}
14874 * [http://imperium.lenin.ru/~kaledin/tmp/agricltr.txt ''Agriculture: Demon Engine of Civilization''] by John Zerzan
14875 * have a [http://www.geocities.com/ferzenr/farmaze.htm farmaze], for food, from afar
14876 *[http://www.ukagriculture.com/countryside/history_of_countryside/countryside_history.html History of UK Agriculture]
14877
14878 ===Specific countries===
14879 * [http://www.agr.gc.ca/ www.agr.gc.ca] — Agriculture &amp; Agri-Food Canada
14880 * [http://www.nationalpak.com www.nationalpak.com] — Agriculture of Pakistan
14881 * [http://www.nationalacademies.org/agriculture/ www.nationalacademies.org] — Agriculture at the United States National Academies
14882 * [http://www.usda.gov/ www.usda.gov] — United States Department of Agriculture
14883 **[http://www.fas.usda.gov/currwmt.html Current World Production, Market and Trade Reports] from the Foreign Agricultural Service
14884 **[http://www.ers.usda.gov/ USDA's main source of economic information and research] from the Economic Research Service
14885 **[http://www.ars.usda.gov/ In-house Research Arm] from the [[Agricultural Research Service]]
14886 **[http://www.nal.usda.gov/ National Agricultural Library]
14887
14888 [[Category:Agriculture| ]]
14889
14890 [[ar:Ø˛ØąØ§ØšØŠ]]
14891 [[an:Agricultura]]
14892 [[ast:Agricultura]]
14893 [[bg:ĐĄĐĩĐģŅĐēĐž ŅŅ‚ĐžĐŋĐ°ĐŊŅŅ‚вО]]
14894 [[ca:Agricultura]]
14895 [[cs:Zemědělství]]
14896 [[cy:Amaeth]]
14897 [[da:Landbrug]]
14898 [[de:Landwirtschaft]]
14899 [[et:PÃĩllumajandus]]
14900 [[es:Agricultura]]
14901 [[eo:Agrikulturo]]
14902 [[fa:ڊشاŲˆØąØ˛ÛŒ]]
14903 [[fr:Agriculture]]
14904 [[fy:LÃĸnbou]]
14905 [[gl:Agricultura]]
14906 [[ko:농ė—…]]
14907 [[io:Agrokultivo]]
14908 [[id:Pertanian]]
14909 [[ia:Agricultura]]
14910 [[iu:ᐱᕈᕐᓰᓂᖅ ᓂᐅᕐᕈᑎᒃᓴᓕᐊᕆá“Ēᓗᒋá‘Ļ]]
14911 [[is:LandbÃēnaður]]
14912 [[it:Agricoltura]]
14913 [[he:חקלאו×Ē]]
14914 [[ka:სოფლის მეáƒŖრნეობა]]
14915 [[lad:Agrikultura]]
14916 [[la:Agricultura]]
14917 [[li:Landboew]]
14918 [[hu:MezőgazdasÃĄg]]
14919 [[mk:ЗĐĩĐŧŅ˜ĐžĐ´ĐĩĐģŅŅ‚вО]]
14920 [[nah:Millacayotl]]
14921 [[nl:Landbouw]]
14922 [[nds:Bueree]]
14923 [[ja:螲æĨ­]]
14924 [[no:Landbruk]]
14925 [[nn:Landbruk]]
14926 [[pl:Rolnictwo]]
14927 [[pt:Agricultura]]
14928 [[ro:Agricultură]]
14929 [[ru:ĐĄĐĩĐģŅŒŅĐēĐžĐĩ Ņ…ОСŅĐšŅŅ‚вО]]
14930 [[sh:Poljoprivreda]]
14931 [[scn:Agricultura]]
14932 [[simple:Agriculture]]
14933 [[sl:Kmetijstvo]]
14934 [[sr:ПоŅ™ĐžĐŋŅ€Đ¸Đ˛Ņ€ĐĩĐ´Đ°]]
14935 [[su:Agrikultur]]
14936 [[fi:Maatalous]]
14937 [[sv:Jordbruk]]
14938 [[tl:Agrikultura]]
14939 [[ta:āŽĩā¯‡āŽŗāŽžāŽŖā¯āŽŽā¯ˆ]]
14940 [[vi:Nông nghiáģ‡p]]
14941 [[uk:ĐĄŅ–ĐģŅŒŅŅŒĐēĐĩ ĐŗĐžŅĐŋОдаŅ€ŅŅ‚вО]]
14942 [[zh:农业]]</text>
14943 </revision>
14944 </page>
14945 <page>
14946 <title>Aldous Huxley</title>
14947 <id>628</id>
14948 <revision>
14949 <id>39834738</id>
14950 <timestamp>2006-02-16T04:24:15Z</timestamp>
14951 <contributor>
14952 <username>Kriegman</username>
14953 <id>181058</id>
14954 </contributor>
14955 <comment>/* External links */ link to interviews</comment>
14956 <text xml:space="preserve">'''Aldous Leonard Huxley''' ([[July 26]], [[1894]] &amp;ndash; [[November 22]], [[1963]]) was a [[United Kingdom|British]] [[writer]] who emigrated to the [[United States]]. He was a member of the famous [[Huxley family]] who produced a number of brilliant scientific minds. Best known for his [[novel]]s and wide-ranging output of [[essay]]s, he also published [[short stories]], [[poetry]], [[travel writing]], and [[film]] stories and scripts. Through his novels and essays Huxley functioned as an examiner and sometimes critic of social mores, societal norms and ideals, and possible misapplications of science in [[human]] [[life]]. While his earlier concerns might be called &quot;[[humanist]],&quot; ultimately, he became quite interested in &quot;spiritual&quot; subjects like [[parapsychology]] and [[mysticism|mystically]] based [[philosophy]], which he also wrote about. By the end of his life, Huxley was considered, in certain circles, a 'leader of modern thought'.
14957
14958 ==Biography==
14959
14960 ===Early years===
14961 [[Image:Huxley-Arnold family tree.png|thumb|right|Family tree]]
14962 Huxley was born in [[Godalming]], [[Surrey]], [[England]]. He was the son of the [[writer]] [[Leonard Huxley (writer)|Leonard Huxley]] by his first wife, [[Julia Arnold]]; and grandson of [[Thomas Henry Huxley]], one of the most important naturalists of the 19th Century, a man known as &quot;Darwin's Bulldog.&quot; His brother [[Julian Huxley]] was a [[biology|biologist]] also noted for his [[evolution|evolutionary]] theories. Huxley understandably excelled in the areas he took up professionally, for on his father's side were a number of noted men of [[science]], while on his mother's were people of [[literature|literary]] accomplishment.
14963
14964 Huxley was a lanky, delicately framed child who was gifted intellectually. His father was a professional [[herbalist]] as well as an author, so Aldous began his learning in his father's well-equipped [[botanical]] [[laboratory]], then continued in a school named Hillside, which his mother supervised for several years until she became terminally ill. From the age of nine, Aldous was then educated in the British [[boarding school]] system. He took readily to the handling of ideas.
14965
14966 His mother Julia died in [[1908]], when Aldous was only fourteen, and his sister Roberta died of an unrelated incident in the same month. Three years later Aldous suffered an illness ([[Keratitis|keratitis punctata]]) which seriously damaged his eyesight. His older brother Trev committed [[suicide]] in 1914. Aldous's near-[[blindness]] disqualified him from service in [[World War I]]. Once his eyesight recovered, he was able to read [[English literature]] at [[Balliol College, Oxford|Balliol College]], [[University of Oxford|Oxford]], where he was a member of the [[Cambridge Apostles]].
14967
14968 Maturing as a lean young man well over six feet in height, the cerebrotonic Huxley's initial interest in literature was primarily intellectual. While he was noted for his personal kindliness, only considerably later (some say under the influence of such friends as [[D.H. Lawrence]]) did he heartily embrace ''feelings'' as matters of importance in his evolving personal philosophy and literary expression.
14969
14970 Following his education at [[Balliol]], Huxley was financially indebted to his father and had to earn a living. For a short while in [[1918]], he was employed acquiring provisions at the [[Air Ministry]]. But never desiring a career in administration (or in business), Huxley's lack of inherited means propelled him into applied literary work.
14971
14972 Huxley had completed his first (unpublished) novel at the age of seventeen and began writing seriously in his early twenties. He wrote great novels on dehumanising aspects of scientific progress, most famously ''[[Brave New World]]'', and on [[pacifism|pacifist]] themes (e.g. ''[[Eyeless in Gaza]]''). Huxley was strongly influenced by [[F. Matthias Alexander]] and included him as a character in ''Eyeless in Gaza''.
14973
14974 ===Middle years===
14975 Already a noted [[satire|satirist]] and social thinker, during [[World War I]], Huxley spent much of his time at [[Garsington Manor]], home of Lady [[Ottoline Morrell]]. Later, in ''[[Crome Yellow]]'' ([[1921]]) he caricatured the Garsington lifestyle. He married Maria Nys, whom he had met at Garsington. They had one child, Matthew, who grew up to be an [[epidemiologist]].
14976
14977 Huxley moved to [[Hollywood, California| Hollywood]], [[California]] in [[1937]] with his wife and friend [[Gerald Heard]]. Heard introduced Huxley to [[Vedanta]] and [[meditation|meditating]]. In Huxley's 1937 book ''Ends and Means'', most people in modern civilization agree that they want a world of 'liberty, peace, justice, and brotherly love', though they haven't been able to agree on how to achieve it. His book goes on to explore why the confusion or disagreement is there and what might be done about it.
14978
14979 In [[1938]] Huxley befriended [[J. Krishnamurti]], whose teachings he greatly admired. He also became a [[Vedantist]] in the circle of [[Swami]] [[Swami Prabhavananda | Prabhavananda]], and he also introduced [[Christopher Isherwood]] to this circle. Not long after, Huxley wrote his book on widely held spiritual values and ideas, ''The Perennial Philosophy'', which discussed teachings of the world's great mystics.
14980
14981 For most of his life since the illness in his teens which left Huxley nearly blind, his eyesight was poor (despite the partial recovery which had enabled him to study at Oxford). Around 1939 he heard of the [[Bates Method]] for [[Natural Vision Improvement]], and of a teacher (Margaret Corbett) who was able to teach him in the method. He claimed his sight improved dramatically as a result of using the method, then later wrote a book about it (The Art of Seeing) which was published in 1942 (US), 1943 (UK). He reported that for the first time in over 25 years, he was able to read without [[glasses|spectacles]] and without strain. He was a [[screenwriter]] for the [[1940]] production of [[Pride and Prejudice]].
14982
14983 ===Later years===
14984 After World War II Huxley applied for [[United States]] citizenship, but was denied because he would not say he would take up arms to defend America. He became a [[vegetarianism|vegetarian]]. Thereafter, his works were strongly influenced by [[mysticism]] and his experiences with the [[Psychedelics, dissociatives and deliriants|hallucinogenic drug]] [[mescaline]], to which he was introduced by the psychiatrist [[Humphry Osmond]] in [[1953]]. His years on psychoactive drugs were described as a paradise, washed down with [[bourbon]], generally. He was a pioneer of self-directed psychedelic drug use in a search for enlightenment, famously taking 100 micrograms of [[LSD]] as he lay dying. Huxley's [[psychedelic]] [[Recreational drug use|drug]] experiences are described in the essays ''[[The Doors of Perception]]'' (the title deriving from some lines in the book ''[[The Marriage of Heaven and Hell]]'' by [[William Blake]]) and ''[[Heaven and Hell (essay)|Heaven and Hell]]''. The title of the former became the inspiration for the naming of the [[Rock (music)|rock]] band, [[The Doors]]. Some of his writings on psychedelics became frequent reading among early [[hippies]].
14985
14986 Huxley's main interest was not in just ''anything'' vague, mysterious, or subjective, but in what is sometimes termed &quot;higher mysticism&quot;; he liked the term &quot;[[perennial philosophy]]&quot; that he used as the title of his noted book on the topic. During the 1950s, Huxley's interest in the related field of [[psychical research]] grew keener.
14987
14988 Huxley's wife, Maria, died of [[breast cancer]] in [[1955]], and in [[1956]] he remarried, to [[Laura Huxley|Laura Archera]], who was herself an author and who wrote a [[biography]] of Aldous. In [[1960]], Huxley was diagnosed with [[laryngeal cancer|throat cancer]]. In the years that followed, with his health deteriorating, he wrote the utopian novel ''[[Island (novel)|Island]]'', and gave lectures on &quot;Human Potentialities&quot; at the [[Esalen]] institute. In [[1959]] Huxley, who remained a [[British Citizen]], turned down an offer of a [[Knight Bachelor]] by the [[Harold_MacMillan#Government|Macmillan government]].
14989
14990 His ideas were foundational to the forming of the [[Human Potential Movement]]. He was also invited to speak at several prestigious American universities. At a speech given in [[1961]] at the California Medical School in [[San Francisco]], Huxley warned: &quot;There will be in the next generation or so a pharmacological method of making people love their servitude and producing dictatorship without tears, so to speak, producing a kind of painless [[concentration camp]] for entire societies so that people will in fact have their liberties taken away from them but will rather enjoy it,&quot; an idea not dissimilar to his contemporary writer [[J. B. Priestley]]'s idea in [[The Magicians]].
14991
14992 Huxley's views on the proper roles of science and technology (as he portrayed these, say, in ''Island'') are akin to some other noted English and American thinkers of the twentieth century, such as [[Lewis Mumford]] and Huxley's friend [[Gerald Heard]] (and, in some ways, [[Buckminster Fuller]] and [[E.F. Schumacher]]). Clearly, these men found descendants in some significant movers of a younger generation, e.g., [[Stewart Brand]].
14993
14994 Via Gerald Heard, Huxley was introduced to the young [[Huston Smith]], who went on to become a prolific and famous scholar on the religions of man. The two friends acquianted Smith with Vedanta and meditative practice. Later, while Huxley was a guest professor at [[M.I.T.]], he made introductions between Smith and [[Timothy Leary]] that lead to epiphanies Smith covers in his later book, ''Cleansing of the Doors of Perception''.&lt;sup&gt;[http://www.amazon.com/gp/product/1591810086]&lt;/sup&gt;
14995
14996 Amongst humanists, Huxley was considered an intellectual's intellectual. Although his financial circumstances had forced him to churn out articles and books, his thinking and ''best'' writing earned him an exalted esteem. His books were frequently on the required reading lists of English and modern philosophy courses in American colleges and universities. He was one of the twentieth-century thinkers honoured in the Scribners Publishing's &quot;Leaders of Modern Thought&quot; series (a volume of biography and literary criticism by Philip Thody, ''Aldous Huxley'').
14997
14998 ===Death and afterwards===
14999 On his deathbed, unable to speak, he made a written request to his wife for &quot;[[LSD]], 100 [[microgram|Âĩg]], [[Intramuscular injection|i.m.]]&quot; She obliged, and he died peacefully the following morning, [[November 22]], [[1963]]. Media coverage of his death was overshadowed by news of the [[assassination of President John F. Kennedy]], which occurred on the same day, as did the death of the [[Ireland|Irish]] author [[C. S. Lewis]].
15000
15001 In all of Huxley's mature writings, one finds an awareness that seems to bridge the gap between &quot;[[The Two Cultures]]&quot; &amp;ndash; the [[sciences]] and the [[humanities]]. This gulf posed a potentially enormous problem, one that was recognized by other thinkers during Huxley's lifetime, such as [[C.P. Snow]]. The interest among professors of humanities and [[liberal arts]] in Huxley's work, both during the writer's lifetime and afterwards, rests on this consciousness on the part of the author, and of course on the artful and often humorous way in which he expressed himself.
15002
15003 Huxley's [[satirical]], [[dystopia]]n, and [[utopia]]n novels seldom fail to stimulate thought. The same may be said for his essays and essay collections. Perhaps his main message is the tragedy that frequently follows from [[egocentrism]], self-centredness, and selfishness.
15004
15005 ==Films==
15006
15007 Huxley wrote many [[screenplay]]s, and many of his novels were later adapted for film or [[television]].
15008
15009 Notable works include the original screenplay for [[The_Walt_Disney_Company|Disney]]'s animated ''[[Alice in Wonderland (1951 film)|Alice in Wonderland]]'', two productions of ''[[Brave New World]]'', one of ''[[Point Counter Point]]'', one of ''[[Eyeless in Gaza]]'', and one of ''[[Ape and Essence]]''. He was one of the screenwriters for the 1940 version of ''[[Pride and Prejudice (1940 movie)|Pride and Prejudice]]'' and co-wrote the screenplay for the 1944 version of ''[[Jane Eyre (1944 movie)|Jane Eyre]]'' with [[John Houseman]]. Director [[Ken Russell]]'s [[1971]] film ''[[The Devils (film)|The Devils]]'', starring [[Vanessa Redgrave]], is adapted from Huxley's ''[[The Devils of Loudun]]'', and a 1990 made-for-television film adaptation of ''Brave New World'' was directed by [[Burt Brinckeroffer]]
15010
15011 ==Selected works==
15012
15013 ===Novels===
15014 *''[[Crome Yellow]]'' ([[1921]])
15015 *''[[Antic Hay]]'' ([[1923]])
15016 *''[[Those Barren Leaves]]'' ([[1925]])
15017 *''[[Point Counter Point]]'' ([[1928]])
15018 *''[[Brave New World]]'' ([[1932]])
15019 *''[[Eyeless in Gaza]]'' ([[1936]])
15020 *''[[After Many a Summer]]'' ([[1939]])
15021 *''[[Time Must Have a Stop]]'' ([[1944]])
15022 *''[[Ape and Essence]]'' ([[1948]])
15023 *''[[The Genius and the Goddess]]'' ([[1955]])
15024 *''[[Island (novel)|Island]]'' ([[1962]])
15025
15026 ===Short stories===
15027 *''[[Limbo]]'' ([[1920]])
15028 *''[[Mortal Coils]]'' ([[1922]])
15029 *''[[Brief Candles]]'' ([[1930]])
15030 *''[[Two or Three Graces]]''
15031 *''[[Little Mexican]]''
15032 *''[[The Young Arquimedes]]''
15033 *''[[Jacob's Hands; A Fable]]'' (Late [[1930s]])
15034
15035 ===Poetry===
15036 *''[[The Burning Wheel]]'' ([[1916]])
15037 *''Jonah'' ([[1917]])
15038 *''[[The Defeat of Youth]]'' ([[1918]])
15039 *''[[Leda]]'' ([[1920]])
15040 *''[[Arabia Infelix]]'' ([[1929]])
15041 *''[[The Cicadias and Other Poems]]'' ([[1931]])
15042
15043 ===Travel writing===
15044 *''[[Along The Road]]'' ([[1925]])
15045 *''[[John 18:38|Jesting Pilate]]'' ([[1926]])
15046 *''[[Beyond the Mexique Bay]]'' ([[1934]])
15047
15048 ===Essays===
15049 *''[[Do What You Will]]'' ([[1929]])
15050 *''[[The Olive Tree (Essay)|The Olive Tree]]'' ([[1936]])
15051 *''[[The Art of Seeing]]'' ([[1942]])
15052 *''[[Tomorrow and Tomorrow and Tomorrow]]'' ([[1952]])
15053 *''[[The Doors of Perception]]'' ([[1954]])
15054 *''[[Heaven and Hell (essay)|Heaven and Hell]]'' ([[1956]])
15055 *''[[Brave_New_World#Brave New World Revisited|Brave New World Revisited]]'' ([[1958]])
15056 *''[[Literature and Science]]'' ([[1963]])
15057
15058 ===Philosophy===
15059 *''[[Ends and Means]]'' ([[1937]])
15060 *''[[The Perennial Philosophy]]'' ([[1944]]) ISBN 006057058X
15061
15062 ===Biography===
15063
15064 *''[[Grey Eminence]]'' ([[1941]])
15065 *''[[The Devils of Loudun]]'' ([[1952]])
15066
15067 ===Children's literature===
15068 *''[[The Crows of Pearblossom]]'' ([[1967]])
15069
15070 ===Collections===
15071
15072 *''[[Text and Pretext]]'' ([[1933]])
15073 * ''[[Collected Short Stories]]'' ([[1957]])
15074 * ''[[Moksha: Writings on Psychedelics and the Visionary Experience]]'' ([[1977]])
15075
15076 == Quotes ==
15077 *On [http://www.cybernation.com/quotationcenter/quoteshow.php?type=author&amp;id=4470 truth]: &quot;Great is truth, but still greater, from a practical point of view, is silence about truth. By simply not mentioning certain subjects... totalitarian propagandists have influenced opinion much more effectively than they could have by the most eloquent denunciations.&quot;
15078
15079 *On the [[New World Order]][http://www.cybernation.com/quotationcenter/quoteshow.php?type=author&amp;id=4470] (1959): &quot;And it seems to me perfectly in the cards that there will be within the next generation or so a pharmacological method of making people love their servitude, and producing â€Ļ a kind of painless concentration camp for entire societies, so that people will in fact have their liberties taken away from them but will rather enjoy it, because they will be distracted from any desire to rebel by propaganda, brainwashing, or brainwashing enhanced by pharmacological methods.&quot;
15080
15081 *On [http://www.cybernation.com/quotationcenter/quoteshow.php?type=author&amp;id=4470 social organizations]: &quot;One of the many reasons for the bewildering and tragic character of human existence is the fact that social organization is at once necessary and fatal. Men are forever creating such organizations for their own convenience and forever finding themselves the victims of their home-made monsters.&quot;
15082
15083 ==Trivia==
15084 *He was six feet four and a half inches tall;
15085 *Studied ballet for several years;
15086 *Was [[George_Orwell|George Orwell's]] [[French language|French]] teacher for a term at [[Eton College|Eton]].
15087 *Is shown on the cover of [[The Beatles]] album [[Sgt. Pepper's Lonely Hearts Club Band]] as number 18, in the top right hand corner.
15088
15089 ==External links==
15090 {{wikiquote}}
15091 * [http://www.yoism.org/?q=node/143 Video interviews of Huxley] from the 1950's, exploring ''Brave New World'', ''Island'', and psychedelics
15092 * [http://movies2.nytimes.com/gst/movies/movie.html?v_id=158613 The Gravity of Light]].
15093 * {{isfdb name | id=Aldous_Huxley | name=Aldous Huxley}}
15094 * {{gutenberg author | id=Aldous_Huxley | name=Aldous Huxley}}
15095 * [http://huxley.net/bnw/index.html Brave New World], the complete book
15096 * [http://somaweb.org/ SomaWeb: Extensive Aldous Huxley bibliography and links to online material]
15097 * [http://island.org/ Island Web: Creating a New Culture as Inspired by the Ideas of Aldous Huxley] Website of the Island Foundation
15098 * [http://sunsite.berkeley.edu/VideoTest/hux1.ram The Ultimate Revolution] (talk at [[University of California, Berkeley|UC Berkeley]], March 20, 1962)
15099
15100 [[Category:Polymaths|Huxley, Aldous]]
15101 [[Category:Natives of Surrey|Huxley, Aldous]]
15102 [[Category:Huxley family|Huxley, Aldous]]
15103 [[Category:Former students of Balliol College, Oxford|Huxley, Aldous]]
15104 [[Category:English novelists|Huxley, Aldous]]
15105 [[Category:British science fiction writers|Huxley, Aldous]]
15106 [[Category:English science fiction writers|Huxley, Aldous]]
15107 [[Category:English poets|Huxley, Aldous]]
15108 [[Category:English essayists|Huxley, Aldous]]
15109 [[Category:English satirists|Huxley, Aldous]]
15110 [[Category:English short story writers|Huxley, Aldous]]
15111 [[Category:English travel writers|Huxley, Aldous]]
15112 [[Category:Psychedelic advocates and proponents|Huxley, Aldous]]
15113 [[Category:Human Potential Movement|Huxley, Aldous]]
15114 [[Category:Vegetarians|Huxley, Aldous]]
15115
15116 [[cs:Aldous Huxley]]
15117 [[da:Aldous Huxley]]
15118 [[de:Aldous Huxley]]
15119 [[es:Aldous Huxley]]
15120 [[eo:Aldous HUXLEY]]
15121 [[eu:Aldous Huxley]]
15122 [[fr:Aldous Huxley]]
15123 [[hr:Aldous Huxley]]
15124 [[it:Aldous Huxley]]
15125 [[he:אלדוס האקסלי]]
15126 [[ka:ჰაáƒĨსლი, ოლდოს ლეონარდ]]
15127 [[nl:Aldous Huxley]]
15128 [[ja:ã‚ĒãƒĢダ゚ãƒģハク゚ãƒĒãƒŧ]]
15129 [[pl:Aldous Huxley]]
15130 [[pt:Aldous Huxley]]
15131 [[ru:ĐĨĐ°ĐēŅĐģи, ОĐģĐ´ĐžŅ ЛĐĩĐžĐŊĐ°Ņ€Đ´]]
15132 [[simple:Aldous Huxley]]
15133 [[sr:АĐģĐ´Đž ĐĨĐ°ĐēŅĐģи]]
15134 [[fi:Aldous Huxley]]
15135 [[sv:Aldous Huxley]]
15136 [[th:ā¸­ā¸ąā¸Ĩā¸”ā¸ąā¸Ē ā¸Žā¸ąā¸ā¸‹āš€ā¸Ĩā¸ĸāšŒ]]
15137 [[tr:Aldous Huxley]]</text>
15138 </revision>
15139 </page>
15140 <page>
15141 <title>Abstract Algebra</title>
15142 <id>629</id>
15143 <revision>
15144 <id>15899158</id>
15145 <timestamp>2002-02-25T15:51:15Z</timestamp>
15146 <contributor>
15147 <ip>Conversion script</ip>
15148 </contributor>
15149 <minor />
15150 <comment>Automated conversion</comment>
15151 <text xml:space="preserve">#REDIRECT [[Abstract algebra]]
15152 </text>
15153 </revision>
15154 </page>
15155 <page>
15156 <title>Ada</title>
15157 <id>630</id>
15158 <revision>
15159 <id>41416699</id>
15160 <timestamp>2006-02-27T04:27:24Z</timestamp>
15161 <contributor>
15162 <username>TShilo12</username>
15163 <id>153537</id>
15164 </contributor>
15165 <comment>dab Hebrew</comment>
15166 <text xml:space="preserve">{{Wiktionarypar2|ADA|Ada}}
15167
15168 Meanings of '''Ada''':
15169
15170 === People ===
15171 * Variant [[transliteration]] of [[Hebrew language|Hebrew]] [[Adah]].
15172 * [[Ada Lovelace|Ada, Lady Lovelace]]
15173 * Ada, sister of [[Charlemagne]], for whom the [[Ada Gospels]] at Trier were produced.
15174 * [[Ada of Caria|Ada]], [[satrap]] of [[Caria]], deposed by her brother [[Idrieus]], restored by [[Alexander the Great]]
15175
15176 === Places ===
15177 * [[Ada, Afghanistan]]
15178 * [[Ada, Saskatchewan]], [[Canada]]
15179 * [[Ada, Ghana]]
15180 * [[Ada, Greece]]
15181 * [[Ada, Nigeria]]
15182 * [[Ada, Serbia]]
15183
15184 *[[Ada, Oregon]], USA (historical)
15185 *[[Ada County, Idaho]], USA
15186 *[[Ada Division, Oklahoma]], USA
15187 *[[Ada, Alabama]], USA
15188 *[[Ada, Arkansas]], USA
15189 *[[Ada, Kansas]], USA
15190 *[[Ada, Louisiana]], USA
15191 *[[Ada, Michigan]], USA
15192 *[[Ada, Minnesota]], USA
15193 *[[Ada, Ohio]], USA
15194 *[[Ada, Oklahoma]], USA
15195 *[[Ada, Virginia]], USA
15196 *[[Ada, Wisconsin]], USA
15197 *[[Ada, West Virginia]], USA
15198 *[[Ada Township, Michigan]], USA
15199 *[[Ada Township, North Dakota]], USA
15200 *[[Ada Township, South Dakota]], USA
15201
15202 ===[[Acronym_and_initialism|Initialism]]s===
15203 * [[Aeronautical Development Agency]] of [[India]]'s Ministry of Defence
15204 * [[Air Defense Artillery]] a branch of the [[United States Army]]
15205 * [[American Decency Association]]
15206 * [[American Dental Association]]
15207 * [[American Diabetes Association]]
15208 * [[American Dietetic Association]]
15209 * [[Americans For Democratic Action]]
15210 * [[Americans with Disabilities Act of 1990|Americans with Disabilities Act]]
15211 * [[Aotearoa Digital Arts]] - http://ada.waikato.ac.nz/
15212 * [[United_States_Attorney|Assistant district attorney]]
15213 * Average Daily Attendance
15214
15215 === Other ===
15216 * [[Ada programming language]]
15217 * ''[[Ada (orchid)|Ada]]'', a genus of [[orchid]]s
15218 * The short title of ''[[Ada or Ardor: A Family Chronicle]]'', a novel by [[Vladimir Nabokov]] (1969).
15219 * [[Ada (demon)|Ada]], A [[demon]], after which [[Adasaurus]] was named.
15220 * [[Ada (film)|Ada]] , A film directed by [[Daniel Mann]], with [[Susan Hayward]] y [[Dean Martin]].
15221 * means &quot;father&quot; in Sindarin Elvish
15222 {{TLAdisambig}}
15223
15224 [[da:Ada]]
15225 [[de:Ada]]
15226 [[es:ADA]]
15227 [[eo:Ada]]
15228 [[fr:Ada]]
15229 [[hu:Ada]]
15230 [[nn:Ada]]
15231 [[pl:Ada]]
15232 [[sv:Ada]]
15233 [[tr:Ada (anlam ayrÄąm)]]</text>
15234 </revision>
15235 </page>
15236 <page>
15237 <title>Aberdeen (disambiguation)</title>
15238 <id>632</id>
15239 <revision>
15240 <id>39241965</id>
15241 <timestamp>2006-02-11T20:13:26Z</timestamp>
15242 <contributor>
15243 <username>Kjkolb</username>
15244 <id>107439</id>
15245 </contributor>
15246 <comment>removed pipe link as per MoS</comment>
15247 <text xml:space="preserve">'''Aberdeen''' may refer to:
15248
15249 === Places ===
15250 In [[Scotland]]:
15251 * [[Aberdeen]], a major port city in north-east Scotland
15252
15253 In [[Australia]]:
15254 * [[Aberdeen, New South Wales]]
15255
15256 In [[Canada]]:
15257
15258 * [[Aberdeen Centre]], an Asian-themed shopping mall in Richmond, British Columbia.
15259 * [[Aberdeen, British Columbia]] - two locations:
15260 ** [[Aberdeen, Fraser Valley Regional District, British Columbia]]
15261 ** [[Aberdeen, Thompson-Nicola Regional District, British Columbia]]
15262 * [[Aberdeen, New Brunswick]]
15263 * [[Aberdeen, Nova Scotia]]
15264 * [[New Aberdeen, Nova Scotia]]
15265 * [[Aberdeen Bay, Nunavut]]
15266 * [[Aberdeen Lake, Nunavut]]
15267 * [[Aberdeen, Ontario]] - two locations:
15268 ** [[Aberdeen, Ontario (Grey County)]]
15269 ** [[Aberdeen, Ontario (Prescott and Russell County)]]
15270 * [[Aberdeen Township, Ontario]]
15271 * [[Macdonald, Merideth and Aberdeen Additional, Ontario]]
15272 * [[Sheen-Esher-Aberdeen-et-Malakoff, Quebec]]
15273 * [[Aberdeen, Saskatchewan]]
15274 * [[Aberdeen No. 373, Saskatchewan]]
15275
15276 In [[China]]:
15277 * [[Aberdeen Harbour, Hong Kong]]
15278
15279 In [[South Africa]]:
15280 * [[Aberdeen, South Africa]]
15281
15282 In the [[United States]]:
15283 * [[Aberdeen, Arkansas]]
15284 * [[Aberdeen, California]]
15285 * [[Aberdeen, Florida]]
15286 * [[Aberdeen, Georgia]]
15287 * [[Aberdeen, Idaho]]
15288 * [[Aberdeen, Indiana]]
15289 * [[Aberdeen, Kentucky]]
15290 * [[Aberdeen, Massachusetts]]
15291 * [[Aberdeen, Maryland]]
15292 * [[Aberdeen, Mississippi]]
15293 * [[Aberdeen, Montana]]
15294 * [[Aberdeen Township, New Jersey]]
15295 * [[Aberdeen, North Carolina]]
15296 * [[Aberdeen, Ohio]]
15297 * [[Aberdeen, Pennsylvania]]
15298 * [[Aberdeen, South Dakota]]
15299 * [[Aberdeen, Texas]]
15300 * [[Aberdeen, Washington]]
15301 * [[Aberdeen, West Virginia]]
15302
15303 === Other ===
15304 * [[Aberdeen (band)]], an American rock band.
15305 * [[Aberdeen (movie)]], a movie (2000) directed by [[Hans Petter Moland]], starring [[Stellan SkarsgÃĨrd]] and [[Lena Headey]].
15306 *[[Aberdeen City (band)]]
15307 * [[Aberdeen Proving Ground]], a [[U.S. Army]] installation in [[Maryland]].
15308
15309 {{disambig}}
15310
15311 [[cs:Aberdeen]]
15312 [[de:Aberdeen (Begriffsklärung)]]
15313 [[et:Aberdeen (täpsustus)]]
15314 [[fr:Aberdeen (homonymie)]]
15315 [[gl:Aberdeen]]
15316 [[pl:Aberdeen]]</text>
15317 </revision>
15318 </page>
15319 <page>
15320 <title>Algae</title>
15321 <id>633</id>
15322 <revision>
15323 <id>42158817</id>
15324 <timestamp>2006-03-04T05:14:26Z</timestamp>
15325 <contributor>
15326 <ip>68.103.121.196</ip>
15327 </contributor>
15328 <comment>added link to Cyanosite, the premier webserver for bluegreen algae</comment>
15329 <text xml:space="preserve">:''This article is about an organism. See [[algae programming language]] for a [[programming language]] in [[computing]].''
15330 [[Image:Laurencia.jpg|300px|thumb|right|A seaweed (''Laurencia'') up close: the &quot;branches&quot; are multicellular and only about 1 mm thick. Much smaller algae are seen growing attached to the structure extending upwards in the lower right quarter]]
15331 '''Algae''' (singular ''alga'') encompass several different groups of living organisms that capture light energy through [[photosynthesis]], converting inorganic substances into simple sugars using the captured energy. Algae have been traditionally regarded as simple [[plant]]s, and some are closely related to the [[embryophyte|higher plant]]s. Others appear to represent different [[protist]] groups, alongside other organisms that are traditionally considered more animal-like (that is, [[protozoa]]). Thus algae do not represent a single evolutionary direction or line, but a level of organization that may have developed several times in the early history of life on earth.
15332
15333 Algae range from single-celled organisms to multi-cellular organisms, some with fairly complex differentiated form and (if marine) called [[seaweed]]s. All lack [[leaf|leaves]], [[root]]s, [[flower]]s, and other organ structures that characterize higher plants. They are distinguished from other [[protozoa]] in that they are [[autotrophic|photoautotrophic]], although this is not a hard and fast distinction as some groups contain members that are [[mixotrophic]], deriving energy both from photosynthesis and uptake of organic carbon either by [[osmotrophy]], [[myzocytosis|myzotrophy]], or [[phagocytosis|phagotrophy]]. Some unicellular species rely entirely on external energy sources and have reduced or lost their photosynthetic apparatus.
15334
15335 All algae have photosynthetic machinery ultimately derived from the [[cyanobacteria]], and so produce [[oxygen]] as a by-product of photosynthesis, unlike non-cyanobacterial photosynthetic bacteria.
15336
15337 Algae are usually found in damp places or bodies of water and thus are common in terrestrial as well as aquatic environments. However, terrestrial algae are usually rather inconspicuous and far more common in moist, tropical regions than dry ones, because algae lack vascular tissues and other adaptions to live on land. Algae can endure dryness and other conditions in symbiosis with a fungus as [[lichen]].
15338
15339 The various sorts of algae play significant roles in aquatic ecology. Microscopic forms that live suspended in the water column&amp;mdash;called '''[[phytoplankton]]'''&amp;mdash;provide the food base for most marine [[food chain]]s. In very high densities (so-called [[algal bloom]]s) these algae may discolor the water and outcompete or poison other life forms. [[Seaweed]]s grow mostly in shallow marine waters. Some are used as human food or harvested for useful substances such as [[agar]] or fertilizer. The study of algae is called [[phycology]] or algology.
15340
15341 == Relationships among algal groups ==
15342 === Prokaryotic algae ===
15343 Traditionally the [[cyanobacteria]] have been included among the algae, referred to as the ''cyanophytes'' or ''Blue-green Algae'', (the term &quot;algae&quot; refers to any aquatic organisms capable of photosynthesis)[http://www.ucmp.berkeley.edu/bacteria/cyanolh.html], though some recent treatises on algae specifically exclude them. [[Cyanobacteria]] are some of the oldest organisms to appear in the [[fossil record]], dating back about 3.8 billion years ([[Precambrian]]). Ancient cyanobacteria likely produced much of the [[oxygen]] in the Earth's atmosphere.
15344
15345 [[Cyanobacteria]] can be unicellular, colonial, or filamentous. They have a [[prokaryote|prokaryotic]] cell structure typical of bacteria and conduct photosynthesis directly within the [[cytoplasm]], rather than in specialized organelles. Some filamentous [[blue-green algae]] have specialized cells, termed heterocysts, in which [[nitrogen fixation]] occurs.
15346 [http://www.biologie.uni-hamburg.de/b-online/e42/42a.htm]
15347
15348 === Eukaryotic algae ===
15349 All other algae are [[eukaryote]]s and conduct photosynthesis within membrane-bound structures (organelles) called [[chloroplast]]s. Chloroplasts contain DNA and are similar in structure to cyanobacteria, presumably representing reduced cyanobacterial [[endosymbiotic theory|endosymbionts]]. The exact nature of the chloroplasts is different among the different lines of algae, reflecting different endosymbiotic events. There are three groups ([[Archaeplastida]]) that have ''primary'' chloroplasts:
15350
15351 * [[Green alga]]e, together with [[embryophyte|higher plant]]s
15352 * [[Red alga]]e
15353 * [[Glaucophyte]]s
15354
15355 In these groups, the chloroplast is surrounded by two membranes and probably developed through a single endosymbiosis. The chloroplasts of red algae have a more or less typical cyanobacterial pigmentation, while those of the green alga have chloroplasts with chlorophyll ''a'' and ''b'', the latter found in some cyanobacteria and not most. Higher plants are pigmented similarly to green algae and probably developed from them.
15356
15357 Two other groups of algae have green chloroplasts containing chlorophyll ''b'':
15358
15359 * [[Euglenid]]s and
15360 * [[Chlorarachniophyte]]s.
15361
15362 These are surrounded by three and four membranes, respectively, and were probably retained from an ingested green alga. Those of the chlorarchniophytes contain a small nucleomorph, which is the remnant of the alga's [[cell nucleus|nucleus]]. It has been suggested that the euglenid chloroplasts only have three membranes because they were acquired through [[myzocytosis]] rather than [[phagocytosis]].
15363
15364 The remaining algae all have chloroplasts containing chlorophylls ''a'' and ''c''. The latter chlorophyll type is not known from any prokaryotes or primary chloroplasts, but genetic similarities with the red algae suggest a relationship there. These groups include:
15365
15366 * [[Heterokont]]s (e.g., golden algae, diatoms, brown algae)
15367 * [[Haptophyte]]s (e.g., coccolithophores)
15368 * [[Cryptomonad]]s
15369 * [[Dinoflagellate]]s
15370
15371 In the first three of these groups ([[Chromista]]), the chloroplast has four membranes, retaining a nucleomorph in cryptomonads, and they likely share a common pigmented ancestor. The typical dinoflagellate chloroplast has three membranes, but there is considerable diversity in chloroplasts among the group, as some members have acquired theirs from different sources. The [[Apicomplexa]], a group of closely related parasites, also have [[plastid]]s though not actual chloroplasts, which appear to have a common origin with those of the dinoflagellates.
15372
15373 Note many of these groups contain some members that are no longer photosynthetic. Some retain plastids, but not chloroplasts, while others have lost them entirely.
15374
15375 == Forms of algae ==
15376 Most of the simpler algae are unicellular [[flagellate]]s or [[amoeboid]]s, but colonial and non-motile forms have developed independently among several of the groups. Some of the more common organizational levels, more than one of which may occur in the [[Biological life cycle|life cycle]] of a species, are:
15377
15378 * ''Colonial'' - small, regular groups of motile cells
15379 * ''Capsoid'' - individual non-motile cells embedded in [[mucilage]]
15380 * ''Coccoid'' - individual non-motile cells with cell walls
15381 * ''Palmelloid'' - non-motile cells embedded in mucilage
15382 * ''Filamentous'' - a string of non-motile cells connected together, sometimes branching
15383 * ''Parenchymatous'' - cells forming a [[thallus (tissue)|thallus]] with partial differentiation of tissues
15384
15385 In three lines even higher levels of organization have been reached, leading to organisms with full tissue differentiation. These are the [[brown alga]]e&amp;mdash;some of which may reach 70 m in length ([[kelp]]s)&amp;mdash;the [[red alga]]e, and the [[green alga]]e. The most complex forms are found among the green algae (see [[Charales]]), in a lineage that eventually led to the higher land plants. The point where these non-algal plants begin and algae stop is usually taken to be the presence of reproductive organs with protective cell layers, a characteristic not found in the other alga groups.
15386
15387 == Algae and symbioses==
15388 Some species of algae form [[symbiosis|symbiotic relationships]] with other organisms. In these symbioses, the algae supply photosynthates (organic substances) to the host organism providing protection to the algal cells. The host organism derives some or all of its energy requirements from the alga. Examples include:
15389 * ''lichens'' - a fungus is the host, usually with a green alga or a cyanobacterium as its symbiont. Both fungal and algal species found in lichens are capable of living independently, although habitat requirements may be greatly different from those of the lichen pair.
15390 * ''corals'' - algae known as [[zooxanthella]]e are symbionts with [[coral]]s. Notable amongst these is the dinoflagellate ''Symbiodinium'', found in many hard corals. The loss of ''Symbiodinium'', or other zooxanthellae, from the host is known as [[coral bleaching]].
15391 * ''sponges'' -
15392
15393 == Uses of algae ==
15394 Algae are used by man in a great many ways. Because many species are aquatic and microscopic, they are cultured in clear tanks or ponds and either harvested or used to treat effluents pumped through the ponds. [[Algae culture]] on a large scale is an important type of [[aquaculture]] in some places.
15395
15396 ===Energy source===
15397 *Algae can be used to produce [[biodiesel]] (see [[algae culture#biodiesel production|algae culture]]), and by some estimates can produce vastly superior amounts of oil, compared to terrestrial crops grown for the same purpose. Because algae grown to produce biodiesel does not need to meet the requirements of a food crop, it is much cheaper to produce. Also it does not need fresh water or fertilizer (both of which are quite expensive).
15398 *Algae can be grown to produce [[hydrogen]]. In 1939 a German researcher named [[Hans Gaffron]], while working at the University of Chicago, observed that the algae he was studying, [[Chlamydomonas reinhardtii]] (a green-algae), would sometimes switch from the production of oxygen to the production of hydrogen.[http://www.wired.com/news/technology/0,1282,54456,00.html] Gaffron never discovered the cause for this change and for many years other scientists failed in their attempts at its discovery. In the late 1990's professor [[Anastasios Melis]] a researcher at the University of California at Berkeley discovered that if you deprive the algae of sulfur it will switch from the production of oxygen (normal photosynthesis), to the production of hydrogen. He found that the [[enzyme]] responsible for this reaction is [[hydrogenase]], but that the hydrogenase will not cause this switch in the pressence of oxygen. Melis found that depleting the amount of sulfur available to the algae interrupted its internal oxygen flow, allowing the hydrogenase an environment in which it can react, causing the algae to produce hydrogen. [http://www.wired.com/wired/archive/10.04/mustread.html?pg=5] [[Chlamydomonas moeweesi]] is also a good strain for the production of hydrogen.
15399 *Algae can be grown to produce [[biomass]], which can be burned to produce heat and electricity.
15400
15401 [http://pmb.berkeley.edu/newPMB/faculty/melis/melis.shtml pmb.berkeley.edu]
15402
15403 ===Pollution control===
15404 * Algae are used in wastewater treatment facilities, reducing the need for more dangerous chemicals.
15405 * Algae can be used to capture [[fertilizers]] in runoff from farms. If this algae is then harvested, it itself can be used as fertilizer.
15406 * Algae are used by some powerplants to reduce CO2 [[emissions]][http://www.usatoday.com/tech/science/2006-01-10-algae-powerplants_x.htm]. The CO2 is pumped into a pond, or some kind of tank, on which the algae feed.
15407
15408 ===Nutritional value of algae===
15409 *Algae is commercially cultivated as a nutritional supplement. One of the most popular [[microalgal]] species is [[Spirulina]] (Arthrospira platensis), which is a [[Cyanobacteria]] (known as blue-green algae), and has been hailed by some as a superfood. [http://www.siu.edu/~ebl/leaflets/algae.htm]Other algal species cultivated for their nutritional value include; [[Chlorella]] (a green algae), and [[Dunaliella]] (Dunaliella salina), which is high in [[beta-carotene]] and is used in vitamin C supplements.
15410 *Algae is sometimes also used as a food, as in the Chinese &quot;vegetable&quot; known as ''[[fat choy (vegetable)|fat choy]]'' (which is actually a [[cyanobacterium]]).
15411 *The oil from some algae have high levels of unsaturated fatty acids. [[Arachidonic acid]](a polyunsaturated fatty acid), is very high in [[parietochloris incisa]], (a green algae) where it reaches up to 47% of the triglyceride pool (Bigogno C et al. Phytochemistry 2002, 60, 497).
15412
15413 [http://www.spirulinasource.com/earthfoodch8a.html www.spirulinasource.com]
15414
15415 [http://www.cfsan.fda.gov/~rdb/opa-g137.html www.cfsan.fda.gov] FDA on algal-oil use in food products
15416
15417 The natural [[pigment]]s produced by algae can be used as an alternative to chemical [[dyes]] and coloring agents. [http://www.bgu.ac.il/bgn/Microalgae.html] Many of the paper products used today are not recyclable because of the chemical inks that they use, paper recyclers have found that inks made from algae are much easier to break down. There is also much interest in the food industry into replacing the coloring agents that are currently used with coloring derived from algal pigments.
15418
15419 ==See also==
15420 * [[Algae culture]]
15421 * [[Brown Algae]]
15422 * [[Coccolithophore]]
15423 * [[Cyanobacteria]]
15424 * [[Diatom]]
15425 * [[Golden Algae]]
15426 * [[Green Algae]]
15427 * [[List of publications in biology#Phycology|Important publications in phycology]]
15428 * [[Red Algae]]
15429 * [[Yellow-Green Algae]]
15430
15431 == External links ==
15432 *[http://www.phyco.org/phyco/index.php/Main_Page www.phyco.org]; a wiki-based site that is focused on energy production from algae.
15433 *[http://forums.biodieselnow.com/forum.asp?FORUM_ID=71 biodieselnow.com] biodiesel production-biodiesel from algae
15434 *[http://www.algaebase.org/ www.algaebase.org]
15435 *[http://www.rbgsyd.nsw.gov.au/information_about_plants/botanical_info/australian_freshwater_algae2 Australian freshwater algae] - Sydney Botanic Gardens
15436 *[http://www.algae.info/ Learn about Algae &amp; Algal Blooms] - Rural Chemical Industries (Aust.) Pty Ltd.
15437 *[http://www.whoi.edu/redtide/ Harmful Algal Blooms - &quot;Red tide&quot;] - National Office for Marine Biotoxins and Harmful Algal Blooms, USA.
15438 *[http://www.nmnh.si.edu/botany/projects/algae/Alg-Menu.htm Algae Section, National Museum of Natural History] - Smithsonian Institution
15439 *[http://www.plantphysiol.org/ www.plantphysiol.org]
15440 *[http://www-cyanosite.bio.purdue.edu/ Cyanosite]
15441
15442 [[Category:Algae|Algae]]
15443 [[Category:Botany]]
15444
15445 [[ar:ØŖØ´Ų†ŲŠØ§ØĒ]]
15446 [[bg:ВодоŅ€Đ°ŅĐģи]]
15447 [[ca:Alga]]
15448 [[da:Alge]]
15449 [[de:Alge]]
15450 [[et:Vetikad]]
15451 [[es:Alga]]
15452 [[eo:Algo]]
15453 [[fr:Algue]]
15454 [[gl:Alga]]
15455 [[it:Alga]]
15456 [[he:א×Ļו×Ē]]
15457 [[lt:Dumbliai]]
15458 [[lv:AÄŧÄŖes]]
15459 [[mk:АĐģĐŗи]]
15460 [[nl:Algen]]
15461 [[ja:č—ģ類]]
15462 [[no:Alge]]
15463 [[nn:Alge]]
15464 [[pl:Glony]]
15465 [[pt:Alga]]
15466 [[ru:ВодоŅ€ĐžŅĐģи]]
15467 [[sl:Alge]]
15468 [[sr:АĐģĐŗĐĩ]]
15469 [[sv:Alg]]
15470 [[ta:āŽĒāŽžāŽšāŽŋāŽ•āŽŗā¯]]
15471 [[zh:č—ģ類]]</text>
15472 </revision>
15473 </page>
15474 <page>
15475 <title>Analysis of variance</title>
15476 <id>634</id>
15477 <revision>
15478 <id>41806464</id>
15479 <timestamp>2006-03-01T21:50:23Z</timestamp>
15480 <contributor>
15481 <username>Schwnj</username>
15482 <id>108312</id>
15483 </contributor>
15484 <minor />
15485 <comment>/* External links */ rm commerical link</comment>
15486 <text xml:space="preserve">In [[statistics]], '''analysis of variance''' ('''ANOVA''') is a collection of [[statistical model]]s and their associated procedures which compare means by splitting the overall observed [[variance]] into different parts. The initial techniques of the analysis of variance were pioneered by the [[statistician]] and [[geneticist]] [[Ronald Fisher]] in the [[1920s]] and [[1930s]], and is sometimes known as '''Fisher's ANOVA''' or '''Fisher's analysis of variance'''.
15487
15488 ==Overview==
15489
15490 There are three conceptual classes of such models:
15491 *Fixed-effects model assumes that the data come from [[normal distribution|normal populations]] which differ in their means.
15492 *Random-effects models assume that the data describe a hierarchy of different populations whose differences are constrained by the hierarchy.
15493 *Mixed models describe situations where both fixed and random effects are present.
15494
15495 The fundamental technique is a partitioning of the total sum of squares into components related to the effects in the model used. For example, we show the model for a simplified ANOVA with one type of treatment at different levels. (If the treatment levels are quantitative and the effects are linear, a [[linear regression]] analysis may be appropriate.)
15496
15497 : &lt;math&gt;SS_{\hbox{Total}} = SS_{\hbox{Error}} + SS_{\hbox{Treatments}}.&lt;/math&gt;
15498
15499 The number of [[degrees of freedom]] (abbreviated ''df'') can be partitioned in a similar way and specifies the [[chi-square distribution]] which describes the associated sums of squares.
15500
15501 : &lt;math&gt;df_{\hbox{Total}} = df_{\hbox{Error}} + df_{\hbox{Treatments}}.&lt;/math&gt;
15502
15503 == Fixed-effects model ==
15504
15505 The fixed-effects model of analysis of variance applies to situations in which the experimenter has subjected his experimental material to several treatments, each of which affects only the mean of the underlying normal distribution of the &quot;response variable&quot;.
15506
15507 == Random-effects model ==
15508
15509 Random effects models are used to describe situations in which incomparable differences in experimental material occur. The simplest example is that of estimating the unknown mean of a population whose individuals differ from each other. In this case, the variation between individuals is ''confounded'' with that of the observing instrument.
15510
15511 == Degrees of freedom ==
15512
15513 Degrees of freedom indicates the effective number of observations which contribute to the sum of squares in an ANOVA, the total number of observations minus the number of linear constraints in the data.
15514
15515 == Tests of significance ==
15516
15517 Analyses of variance lead to tests of [[statistical significance]] using [[Ronald Fisher|Fisher]]'s [[F-distribution]].
15518
15519 ==See also==
15520 *[[ANCOVA]]
15521 *[[MANOVA]]
15522 *[[list of publications in statistics#Analysis of variance |Important publications in analysis of variance]]
15523 *[[Multiple comparisons]]
15524 *[[Duncan's new multiple range test]]
15525
15526 == External links ==
15527 *[http://www.sixsigmafirst.com/anova.htm Analysis Of Variance (sixsigmafirst)]
15528 [[Category:Statistics]]
15529
15530 [[de:Varianzanalyse]]
15531 [[es:AnÃĄlisis de varianza]]
15532 [[fr:Analyse de la variance]]
15533 [[gl:AnÃĄlise da varianza]]
15534 [[it:Analisi della varianza]]
15535 [[nl:Variantie-analyse]]
15536 [[pl:Analiza wariancji]]
15537 [[sl:Analiza variance]]
15538 [[su:Analisis varian]]</text>
15539 </revision>
15540 </page>
15541 <page>
15542 <title>ANOVA</title>
15543 <id>635</id>
15544 <revision>
15545 <id>15899164</id>
15546 <timestamp>2002-02-25T15:43:11Z</timestamp>
15547 <contributor>
15548 <ip>Conversion script</ip>
15549 </contributor>
15550 <minor />
15551 <comment>Automated conversion</comment>
15552 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]
15553 </text>
15554 </revision>
15555 </page>
15556 <page>
15557 <title>ANOVA/Fixed</title>
15558 <id>636</id>
15559 <revision>
15560 <id>15899165</id>
15561 <timestamp>2003-01-17T05:40:55Z</timestamp>
15562 <contributor>
15563 <username>Ellmist</username>
15564 <id>2214</id>
15565 </contributor>
15566 <comment>#REDIRECT [[Analysis of variance]]</comment>
15567 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
15568 </revision>
15569 </page>
15570 <page>
15571 <title>ANOVA/DegreesOfFreedom</title>
15572 <id>637</id>
15573 <revision>
15574 <id>15899166</id>
15575 <timestamp>2003-01-17T05:41:09Z</timestamp>
15576 <contributor>
15577 <username>Ellmist</username>
15578 <id>2214</id>
15579 </contributor>
15580 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
15581 </revision>
15582 </page>
15583 <page>
15584 <title>ANOVA/Random</title>
15585 <id>638</id>
15586 <revision>
15587 <id>15899167</id>
15588 <timestamp>2003-01-17T05:41:23Z</timestamp>
15589 <contributor>
15590 <username>Ellmist</username>
15591 <id>2214</id>
15592 </contributor>
15593 <comment>#REDIRECT [[Analysis of variance]]</comment>
15594 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
15595 </revision>
15596 </page>
15597 <page>
15598 <title>Alkane</title>
15599 <id>639</id>
15600 <revision>
15601 <id>41703306</id>
15602 <timestamp>2006-03-01T04:09:54Z</timestamp>
15603 <contributor>
15604 <username>Chobot</username>
15605 <id>259798</id>
15606 </contributor>
15607 <minor />
15608 <comment>robot Adding: el, ko Removing: no</comment>
15609 <text xml:space="preserve">{{mergefrom|List of alkanes}}
15610
15611 :''For [[Saturation (chemistry)|saturated]] [[hydrocarbon]]s containing one or more rings, see [[Cycloalkane]].''
15612
15613 An '''alkane''' in [[organic chemistry]] is a [[Saturation (chemistry)|saturated]] [[hydrocarbon]] without cycles, that is, an acyclic [[hydrocarbon]] in which the [[molecule]] has the maximum possible number of [[hydrogen]] atoms and so has no [[double bond]]s. Alkanes are [[aliphatic]] compounds.
15614
15615 The general formula for alkanes is '''C&lt;sub&gt;n&lt;/sub&gt;H&lt;sub&gt;2n+2&lt;/sub&gt;'''; the simplest possible alkane is therefore [[methane]], CH&lt;sub&gt;4&lt;/sub&gt;. The next simplest is [[ethane]], C&lt;sub&gt;2&lt;/sub&gt;H&lt;sub&gt;6&lt;/sub&gt;; the series continues indefinitely. Each carbon atom in an alkane has spÂŗ [[Orbital hybridisation|hybridization]].
15616
15617 Alkanes are also known as [[Paraffin|paraffins]], or collectively as the ''paraffin series''. These terms also used for alkanes whose carbon atoms form a single, unbranched chain. Such branched-chain alkanes are called ''[[isoparaffins]]''.
15618
15619 ==Isomerism==
15620 The atoms in alkanes with more than three carbon atoms can be arranged in multiple ways, forming different [[isomer]]s. &quot;Normal&quot; alkanes have a linear, unbranched configuration. The number of isomers increases rapidly with the number of carbon atoms; for alkanes with 1 to 12 carbon atoms, the number of isomers equals 1, 1, 1, 2, 3, 5, 9, 18, 35, 75, 159, and 355, respectively {{OEIS|id=A000602}}.
15621
15622 ==Nomenclature of alkanes==
15623 The names of all alkanes end with '''-ane'''.
15624
15625 ===Alkanes with unbranched carbon chains===
15626 The first four members of the series (in terms of number of carbon atoms) are named as follows:
15627 :[[methane]], CH&lt;sub&gt;4&lt;/sub&gt;
15628 :[[ethane]], C&lt;sub&gt;2&lt;/sub&gt;H&lt;sub&gt;6&lt;/sub&gt;
15629 :[[propane]], C&lt;sub&gt;3&lt;/sub&gt;H&lt;sub&gt;8&lt;/sub&gt;
15630 :[[butane]], C&lt;sub&gt;4&lt;/sub&gt;H&lt;sub&gt;10&lt;/sub&gt;
15631 Alkanes with [[five]] or more carbon atoms are named by adding the [[suffix]] '''-ane''' to the appropriate [[IUPAC numerical multiplier|numerical multiplier]] with elision of a terminal ''-a-'' from the basic numerical term. Hence, [[pentane]], C&lt;sub&gt;5&lt;/sub&gt;H&lt;sub&gt;12&lt;/sub&gt;; [[hexane]], C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;14&lt;/sub&gt;; [[heptane]], C&lt;sub&gt;7&lt;/sub&gt;H&lt;sub&gt;16&lt;/sub&gt;; [[octane]], C&lt;sub&gt;8&lt;/sub&gt;H&lt;sub&gt;18&lt;/sub&gt;; etc. For a more complete list, see [[List of alkanes]].
15632
15633 Straight-chain alkanes are sometimes indicated by the prefix ''n-'' (for ''normal'') to distinguish them from branched-chain alkanes having the same number of carbon atoms. Although this is not strictly necessary, the usage is still common in cases where there is an important difference in properties between the straight-chain and branched-chain isomers: e.g. [[hexane|''n''-hexane]] is a [[neurotoxin]] while its branched-chain isomers are not.
15634
15635 ===Alkanes with branched carbon chains===
15636 Branched alkanes are named as follows:
15637
15638 * Identify the longest straight chain of carbon atoms.
15639
15640 * Number the atoms in this chain, starting from 1 at one end and counting upwards to the other end.
15641
15642 * Examine the groups attached to the chain in order and form their names.
15643
15644 * Form the name by looking at the different attached groups, and writing, for each group, the following:
15645 ** The number, or numbers, of the carbon atom, or atoms, where it is attached.
15646 ** The prefixes ''di-'', ''tri-'', ''tetra-'', etc. if the group is attached in 2, 3, 4, etc. places, or nothing if it is attached in only one place.
15647 ** The name of the attached group.
15648
15649 * The formation of the name is finished by writing down the name of the longest straight chain.
15650
15651 To carry out this algorithm, we must know how to name the substituent groups. This is done by the same method, except that instead of the longest chain of carbon atoms, the longest chain starting from the attachment point is used; also, the numbering is done so that the carbon atom next to the attachment point has the number 1.
15652
15653 For example, the compound
15654 [[image:isobutane.png]]
15655 is the only 4-carbon alkane possible, apart from butane. Its formal name is 2-methylpropane.
15656
15657 Pentane, however, has two branched isomers, in addition to its linear, normal form:
15658
15659 [[image:dimethylpropane.png]]&lt;br /&gt;
15660 2,2-dimethylpropane
15661
15662 and
15663
15664 [[image:2-methylbutane.png]] &lt;br /&gt;
15665 2-methylbutane.
15666
15667 ===Trivial names===
15668 The following nonsystematic names are retained in the IUPAC system:
15669 :[[isobutane]] for 2-methylpropane
15670 :[[isopentane]] for 2-methylbutane
15671 :[[neopentane]] for 2,2-dimethylpropane
15672 The name ''isooctane'' is very widely used in the [[Petrochemistry|petrochemical industry]] to refer to [[2,2,4-trimethylpentane]].
15673
15674 ==Occurrence==
15675 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15676 [[Image:Jupiter.jpg|thumb|right|Methane and ethane make up a large proportion of Jupiter's atmosphere]]
15677 Alkanes occur both on [[Earth]] and in the solar system, however only the first hundred or so, and even then mostly only in traces. The light hydrocarbons, especially [[methane]] and [[ethane]] for example, have been detected both in the tail of the comet [[Hyakutake]] and in some [[meteorite]]s such as [[carbonaceous chondrite]]s. They also form an important portion of the [[Celestial body atmosphere|atmospheres]] of the outer gas planets [[Jupiter]], [[Saturn]], [[Uranus]] and [[Neptune]]. On [[Titan (moon)|Titan]], the satellite of Saturn, it is believed that there were once large oceans of these and longer chain alkanes: smaller seas of liquid ethane are thought still to exist there.
15678
15679 Traces of methane (about 0.0001% or 1 ppm) occur in the Earth's atmosphere, produced primarily by forms of [[Archaea]]. The content in the oceans is negligible due to the low solubility in water: however, at high pressures and low temperatures, methane can co-crystallize with water to form a solid [[methane hydrate]]. Although they cannot be commercially exploited at the present time, the calorific value of the known methane hydrate fields exceeds the energy content of all the natural gas and oil deposits put together&amp;mdash;methane extracted from methane hydrate is considered therefore a candidate for future fuels.
15680
15681 [[Image:Oil well3419.jpg|thumb|right|Extraction of alkanes in Ontario]]
15682 Today, the most important commercial sources for alkanes are clearly [[natural gas]] and [[Petroleum|oil]], which are the only [[organic compound]]s to occur as minerals in nature. Natural gas contains primarily methane and ethane, with some [[propane]] and [[butane]]: oil is a mixture of liquid alkanes and other hydrocarbons. Both were formed when dead marine animals and plants (zooplankton and phytoplankton) sank to the bottom of ancient seas and were covered with sediments in an anoxic environment (ie lacking in oxygen) and converted over many millions of years at high temperatures and high pressure to their current form. Natural gas resulted thereby for example from the following reaction:
15683 :C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;12&lt;/sub&gt;O&lt;sub&gt;6&lt;/sub&gt; &amp;rarr; 3CH&lt;sub&gt;4&lt;/sub&gt; + 3CO&lt;sub&gt;2&lt;/sub&gt;
15684 These hydrocarbons collected in porous rocks, trapped beneath an impermeable cap rock. In contrast to methane, which is constantly reformed in large quantities, higher alkanes rarely develop to a considerable extent in nature. The present deposits will not be reformed once they are exhausted.
15685
15686 Solid alkanes occur as [[evaporation]] residues from oil, known as [[tar]]. One of the largest natural deposits of solid alkanes is in the [[asphalt]] lake known as the [[Pitch Lake]] in [[Trinidad and Tobago]].
15687
15688 ==Purification and use==
15689 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15690 [[Image:ShellMartinez.jpg|thumb|right|An [[oil refinery]] at [[Martinez]], [[California]].]]
15691 Alkanes are both important raw materials of the chemical industry and the most important fuels of the world economy.
15692
15693 The starting materials for the processing are always [[natural gas]] and [[crude oil]]. The latter is separated in an [[oil refinery]] by [[fractional distillation]] and processed into many different products, for example [[gasoline]]. The different &quot;fractions&quot; of crude oil have different boiling points and can be isolated and separated quite easily: within the individual fractions the boiling points lie closely together.
15694
15695 The domain of usage of a certain alkane can be determined quite well according to the number of carbon atoms, although the following demarcation is idealized and not perfect. The first four alkanes are used mainly for heating and cooking purposes, and in some countries for electricity generation. [[Methane]] and [[ethane]] are the main componants of natural gas; they are normally stored as gases under pressure. It is however easier to transport them as liquids: this requires both compression and cooling of the gas.
15696
15697 [[Propane]] and [[butane]] can be liquefied at fairly low pressures, and are well known as '''liquified petroleum gas (LPG)'''. Propane, for example, is used in the propane gas burner, butane in disposable cigarette lighters (where the pressure is a mere 2 [[bar (unit)|bar]]). The two alkanes are used as propellants in [[aerosol spray]]s.
15698
15699 From [[pentane]] to [[octane]] the alkanes are highly volatile liquids. They are used as fuels in [[internal combustion engine]]s, as they vaporise easily on entry into the combustion chamber without forming droplets which would impair the unifomity of the combustion. Branched-chain alkanes are preferred, as they are much less prone to premature ignition which causes [[Engine knocking|knocking]] than their straight-chain homologues. This propensity to premature ignition is measured by the [[octane rating]] of the fuel, where [[2,2,4-trimethylpentane]] (''isooctane'') has an arbitrary value of 100 and [[heptane]] has a value of zero. Apart from their use as fuels, the middle alkanes are also good solvents for nonpolar substances.
15700
15701 Alkanes from [[nonane]] to, for instance, [[hexadecane]] (an alkane with sixteen carbon atoms) are liquids of higher [[viscosity]], less and less suitable for use in gasoline. They form instead the major part of [[diesel]] and [[aviation fuel]]. Diesel fuels are charaterised by their [[cetane number]], cetane being an old name for hexadecane. However the higher melting points of these alkanes can cause problems at low temperatures and in polar regions, where the fuel becomes too thick to flow correctly.
15702
15703 Alkanes from hexadecane upwards form the most important components of [[fuel oil]] and [[lubricating oil]]. In latter function they work at the same time as anti-corrosive agents, as their hydrophobic nature means that water cannot reach the metal surface. Many solid alkanes find use as [[paraffin wax]], for example in [[candle]]s. This should not be confused however with true [[wax]], which consists primarily of [[ester]]s.
15704
15705 Alkanes with a chain length of approximately 35 or more carbon atoms are found in [[bitumen]], used for example in road surfacing. However the higher alkanes have little value and are usually split into lower alkanes by [[cracking]].
15706
15707 ==Preparation==
15708 Numerous ways exist to prepare alkanes in the laboratory. The most well known methods are [[hydrogenation]] of [[alkene]]s and [[hydrolysis]] of [[Grignard reagent]]s. Alkanes can also be prepared directly from [[alkyl halide]]s in the [[Corey-House-Posner-Whitesides reaction]]. The [[Barton-McCombie deoxygenation]] removes hydroxyl groups from alcohols and the [[Clemmensen reduction]] removes carbonyl groups from aldehydes and ketones to form alkanes.
15709
15710 ==Molecular geometry==
15711 &lt;!-- Translated from [:de:Alkane]] --&gt;
15712 [[Image:Ch4-hybridisation.png|thumb|right|sp&lt;sup&gt;3&lt;/sup&gt;-hybridisation in [[methane]].]]
15713 The molecular structure of the alkanes directly affects their physical and chemical characteristics. It is derived from the [[electron configuration]] of [[carbon]], which has four [[valence electron]]s. The carbon atoms in alkanes are always [[Orbital hybidisation|sp&lt;sup&gt;3&lt;/sup&gt;-hybridised]], that is to say that the valence electrons are said to be in four equivalent orbitals derived from the combination of the 2s-orbital and the three 2p-orbitals. These orbitals, which have identical energies, are arranged spatially in the form of a tetrahedron, the angle of 109.47° between them.
15714
15715 ===Bond lengths and bond angles===
15716 &lt;!-- Translated from [:de:Alkane]] --&gt;
15717 An alkane molecule has only C&amp;ndash;H and C&amp;ndash;C single bonds. The former result from the overlap of a spÂŗ-orbital of carbon with the 1s-orbital of a hydrogen; the latter by the overlap of two spÂŗ-orbitals on different carbon atoms. The [[bond length]]s amount to 1.09×10&lt;sup&gt;&amp;minus;10&lt;/sup&gt;&amp;nbsp;m for a C&amp;ndash;H bond and 1.54×10&lt;sup&gt;&amp;minus;10&lt;/sup&gt;&amp;nbsp;m for a C&amp;ndash;C bond.
15718 [[Image:Ch4-structure.png|thumb|right|The tetrahedral structure of methane.]]
15719
15720 The spatial arrangement of the bonds is similar to that of the four spÂŗ-orbitals&amp;mdash;they are tetrahedrally arranged, with an angle of 109.47° between them. Structural formulae which represent the bonds as being at right angles to one another, while both common and useful, do not correspond with the reality.
15721
15722 ===Conformation===
15723 &lt;!-- Translated from [:de:Alkane]] --&gt;
15724 The structural formula and the [[bond angle]]s are not usually sufficient to completely describe the geometry of a molecule. There is a further [[degree of freedom]] for each carbon&amp;ndash;carbon bond: the [[torsion angle]] between the atoms or groups bound to the atoms at each end of the bond. The spatial arrangement described by the torsion angles of the molecule is known as its [[conformation]].
15725
15726 ====Ethane====
15727 &lt;!-- Translated from [:de:Alkane]] --&gt;
15728 [[Ethane]] forms the simplest case for studying the conformation of alkanes, as there is only one C&amp;ndash;C bond. If one looks down the axis of the C&amp;ndash;C bond, then one will see the so-called [[Newman projection]]: The circle represents the two carbon atoms, one behind the other, and the bonds to hydrogen are represented by the straight lines. The hydrogen atoms on both the front and rear carbon atoms have an angle of 120° between them, resulting from the projection of the base of the tetrahedron onto a flat plane. However the torsion angle between a given hydrogen atom attached to the front carbon and a given hydrogen atom attached to the rear carbon can vary freely between 0° and 360°. This is a consequence of the free rotation about a carbon&amp;ndash;carbon single bond. Despite this apparent freedom, only two limiting conformations are important:
15729 [[Image:Newman_projection_ethane.png|thumb|right|200px|Newman projections of the two conformations of ethane: eclipsed on the left, staggered on the right.]]
15730
15731 * In the '''eclipsed conformation''', corresponding to a torsion angle of 0°, 120° or 240°, the hydrogen atoms attached to the front carbon are directly in front of those attached to the rear carbon.
15732 * In the '''staggered conformation''', corresponding to a torsion angle of 60°, 180° or 300°, the hydrogen atoms attached to the front carbon are exactly in between those attached to the rear carbon.
15733
15734 The two conformations, also known as [[rotomer]]s, differ in energy: The staggered conformation is 12.6&amp;nbsp;kJ/mol lower in energy (more stable) than the eclipsed conformation. The explanation for this difference in energy has been the subject of debate, with two main theories predominating:
15735 *in the eclipsed conformation, the electrostatic repulsion between the electrons in the carbon&amp;ndash;hydrogen bonds is maximised.
15736 *in the staggered conformation, the [[hyperconjugation]] (a form of delocalisation) of the valence electrons is maximised.
15737 These two explanations are not contradictory or exclusive; the latter is thought to be the more important for ethane itself.
15738
15739 This difference in energy between the two conformations, known as the [[torsion energy]], is low compared to the thermal energy of an ethane molecule at ambient temperature. There is constant rotation about the C&amp;ndash;C bond, albeit with short &quot;pauses&quot; at each staggered conformation. The time taken for an ethane molecule to pass from one staggered conformation to the next, equivalent to the rotation of one CH&lt;sub&gt;3&lt;/sub&gt;-group by 120° relative to the other, is of the order of 10&lt;sup&gt;&amp;minus;11&lt;/sup&gt;&amp;nbsp;seconds.
15740
15741 ====Higher alkanes====
15742 &lt;!-- Translated from [:de:Alkane]] --&gt;
15743 [[Image:Newman_projection_butane.png|thumb|right|400px|The four conformations of butane. From left to right: fully eclipsed, inclined, partially eclipsed, antiperiplanar.]]
15744 The situation with respect to the two C&amp;ndash;C bonds in [[propane]] is qualitatively similar to that of ethane: it is more complex, however, for [[butane]] and higher alkanes.
15745
15746 If one takes the central C&amp;ndash;C bond of butane as the reference axis, each of the two central carbon atoms is bound to two hydrogen atoms and a methyl group. Four different conformations can be defined by the torsion angle between the two methyl groups and, as in the case of ethane, each has its characteristic energy.
15747
15748 *The '''fully eclipsed''' or '''synperiplanar''' conformation has a torsion angle of 0°. It is the configuration with the highest energy.
15749
15750 *The '''inclined''' conformation has a torsion angle of 60° (or 300°). It is a local energy minimum.
15751
15752 *The '''partially eclipsed''' conformation has a torsion angle of 120° (or 240°). It is a local energy maximum.
15753
15754 *The '''antiperiplanar''' conformation has a torsion angle of 180°. The two methyl groups are as far from each other as is possible, and this configuration has the lowest energy.
15755
15756 The difference in energy between the fully eclipsed conformation and the antiperiplanar conformation is about 19&amp;nbsp;kJ/mol, and is therefore still relatively small at ambient temperature.
15757
15758 The case of higher alkanes is similar: the antiperiplanar conformation is always the most favoured around each carbon&amp;ndash;carbon bond. For this reason, alkanes are usually shown in a zigzag arrangement in diagrams or in models. The actual structure will always differ somewhat from these idealised forms, as the differences in energy between the conformations are small compared to the thermal energy of the molecules: alkane molecules have no fixed structural form, whatever the models may suggest.
15759
15760 The conformations of other organic molecules are based on those of alkanes, and are discussed in the relevant articles.
15761
15762 ==Properties==
15763 ===Physical properties===
15764 &lt;!-- Translated from [:de:Alkane]] --&gt;
15765 [[Image:Alkanschmelzundsiedepunkt.png|right|thumb|300px|Melting (blue) and boiling (pink) points of the first 14 ''n''-alkanes in °C. ]]
15766 The molecular structure, particularly the [[surface area]] of the molecule, determines the boiling point of the alkane: the smaller the surface, the lower the boiling point, as the [[van der Waals force]]s between the molecules are weaker. A reduction of the surface area can be achieved by chain-branching or by a circular structure. This means in practice that alkanes with higher number of carbon atoms usually have higher [[boiling point]]s than those with lower numbers of carbon atoms, and that branched-chain alkanes and [[cycloalkane]]s have lower boiling points than their straight-chain homologues. Under [[standard conditions]], from CH&lt;sub&gt;4&lt;/sub&gt; to C&lt;sub&gt;4&lt;/sub&gt;H&lt;sub&gt;10&lt;/sub&gt; alkanes are gaseous; from C&lt;sub&gt;5&lt;/sub&gt;H&lt;sub&gt;12&lt;/sub&gt; to C&lt;sub&gt;17&lt;/sub&gt;H&lt;sub&gt;36&lt;/sub&gt; they are liquids; and after C&lt;sub&gt;18&lt;/sub&gt;H&lt;sub&gt;38&lt;/sub&gt; they are solids. The boiling point increases between 20 and 30&amp;nbsp;&amp;deg;C per CH&lt;sub&gt;2&lt;/sub&gt;-group.
15767
15768 The [[melting point]]s of the alkanes also rise with the increase in the number of carbon atoms (with only one exception, [[propane]]). However the melting points rise more slowly than the boiling points, in particular for the higher alkanes. In addition, the melting points of alkanes with an odd number of carbon atoms increase faster than the melting points of alkanes with an even number of carbon atoms (see figure): the cause of this phenomenon is the higher [[packing density]] of the alkanes with an even number of carbon atoms. The melting points of branched-chain alkanes can be either higher or lower than those of the corresponding straight-chain alkanes, depending on the efficiency of molecular packing: this is particularly true for isoalkanes (2-methyl isomers), which often have melting points higher than those of their normal analogues.
15769
15770 Alkanes do not conduct [[electricity]], nor are they substantially [[Polarization|polarized]] by an [[electric field]]. For this reason they do not form [[hydrogen bond]]s and are insoluble in polar solvents such as water. Since the hydrogen bonds between individual water molecules are aligned away from an alkane molecule, the coexistance of an alkane and water leads to an increase in molecular order (a reduction in [[entropy]]). As there is no significant bonding between water molecules and alkane molecules, the [[second law of thermodynamics]] suggests that this reduction in entropy should be minimised by minimising the contact between alkane and water: alkanes are said to be [[hydrophobic]] in that they repel water.
15771
15772 Their solubility in nonpolar solvents is relatively good, a property which is called [[lipophilicity]]. Different alkanes are, for example, miscible in all proportions among themselves.
15773
15774 The density of the alkanes usually increases with increasing number of carbon atoms, but remains less than that of water. Hence, alkanes form the upper layer in an alkane-water mixture.
15775
15776 ===Chemical properties===
15777 &lt;!-- Translated from [:de:Alkane]] --&gt;
15778 Alkanes generally show a relatively low reactivity, because their C&amp;ndash;H and C&amp;ndash;C bonds are relatively stable and cannot be easily broken. Unlike all other organic compounds, they possess no [[functional group]]s.
15779
15780 They react only very poorly with ionic or other polar substances. The [[Acid dissociation constant|p''K''&lt;sub&gt;a&lt;/sub&gt;]] values of all alkanes are above 60, and so they are practically inert to acids and bases. This inertness is the source of the term ''paraffins'' ([[Latin]] ''para'' + ''affinis'', with the meaning here of &quot;lacking affinity&quot;). In [[crude oil]] the alkane molecules have remained chemically unchanged for millions of years.
15781
15782 However [[redox reaction]]s of alkanes, in particular with [[oxygen]] and the [[halogen]]s, are possible as the carbon atoms are in a strongly reduced condition; in the case of [[methane]], the lowest possible [[oxidation state]] for carbon (&amp;minus;4) is reached. Reaction with oxygen leads to [[combustion]]; with halogens, [[substitution]]. In addition, alkanes have been shown to interact with, and bind to, certain transition metal complexes.
15783
15784 Free radicals, molecules with unpaired electrons, play a large role in most reactions of alkanes, such as [[cracking]] and [[reformation]] where long-chain alkanes are converted into shorter-chain alkanes and straight-chain alkanes into branched-chain isomers.
15785
15786 In highly brached alkanes, the [[bond angle]]s may differ significantly from the optimal value (109.5&amp;deg;) in order to allow the different groups sufficient space. This causes a tension in the molecule, known as [[steric hinderance]], and can substantially increase the reactivity.
15787
15788 ===Thermochemistry===
15789 Alkanes are stable molecules relative to their constituent elements, which is manifested as a negative [[Standard enthalpy change of formation|heat of formation]]. For linear alkanes, each [[methylene]] (CH&lt;sub&gt;2&lt;/sub&gt;) unit contributes -5 kcal/mol to the overal heat of formation. Branched alkanes are always a little bit more stable than their linear isomers; for example, 2-methylbutane is more stable than ''n''-pentane by 1.8 kcal/mol, and 2,2-methylpropane is more stable than ''n''-pentane by 5 kcal/mol.
15790
15791 See the [[Standard enthalpy change of formation (data table)#Alkanes|alkane heat of formation table]] for detailed data.
15792
15793 ===Spectroscopic properties===
15794 Virtually all organic compounds contain carbon&amp;ndash;carbon and carbon&amp;ndash;hydrogen bonds, and so show some of the features of alkanes in their spectra. Alkanes are notable for having no other groups, and therefore for the ''absence'' of other characreistic spectroscopic features.
15795 ====Infrared spectroscopy====
15796 The carbon&amp;ndash;hydrogen stretching mode gives a strong absorption between 2850 and 2960&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt;, while the carbon&amp;ndash;carbon stretching mode absorbes between 800 and 1300&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt;. The carbon&amp;ndash;hydrogen bending modes depend on the nature of the group: methyl groups show bands at 1450&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt; and 1375&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt;, while methylene groups show bands at 1465&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt; and 1450&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt;. Carbon chains with more than four carbon atoms show a weak absorption at around 725&amp;nbsp;cm&lt;sup&gt;&amp;minus;1&lt;/sup&gt;.
15797 ====NMR spectroscopy====
15798 The proton resonances of alkanes are usually found at &amp;delta;&lt;sub&gt;H&lt;/sub&gt; = 0&amp;ndash;1. The carbon-13 resonances depend on the number of hydrogen atoms attached to the carbon: &amp;delta;&lt;sub&gt;C&lt;/sub&gt; = 8&amp;ndash;30 (methyl), 15&amp;ndash;55 (methylene), 20&amp;ndash;60 (methyne). The carbon-13 resonance of quaternary carbon atoms is characteristically weak, due to the lack of [[nuclear Overhauser enhancement]] and the long [[relaxation time]]: it can be missed in routine spectra.
15799
15800 ====Mass spectrometry====
15801 Alkanes have a high [[ionisation energy]], and the molecular ion is usually weak. The fragmentation pattern can be difficult to interpret, but, in the case of branched chain alkanes, the carbon chain is preferentially cleaved at tertiary or quaternary carbons due to the relative stability of the resulting [[free radical]]s. The fragment resulting from the loss of a single methyl group (M&amp;minus;15) is often absent, and other fragment are often spaced by intervals of fourteen mass units, corresponding to sequential loss of CH&lt;sub&gt;2&lt;/sub&gt;-groups.
15802
15803 ==Reactions==
15804 ===Reactions with oxygen===
15805 All alkanes react with [[oxygen]] in a [[combustion]] reaction, although they become increasing difficult to ignite as the number of carbon atoms increases. The general equation for complete combustion is:
15806 :2C&lt;sub&gt;''n''&lt;/sub&gt;H&lt;sub&gt;2''n''+2&lt;/sub&gt; + (3''n''+1)O&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; 2(''n''+1)H&lt;sub&gt;2&lt;/sub&gt;O + 2''n''CO&lt;sub&gt;2&lt;/sub&gt;
15807 In the absence of sufficient oxygen, [[carbon monoxide]] or even [[soot]] can be formed, as shown below for [[methane]]:
15808 :2CH&lt;sub&gt;4&lt;/sub&gt; + 3O&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; 2CO + 4H&lt;sub&gt;2&lt;/sub&gt;O
15809 :CH&lt;sub&gt;4&lt;/sub&gt; + O&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; C + 2H&lt;sub&gt;2&lt;/sub&gt;O
15810 Alkanes usually burn with a non-luminous flame with very little soot formation.
15811
15812 The [[standard enthalpy change of combustion]], &amp;Delta;&lt;sub&gt;c&lt;/sub&gt;''H''&lt;sup&gt;&lt;s&gt;o&lt;/s&gt;&lt;/sup&gt;, for alkanes increases by about 650&amp;nbsp;kJ/mol per CH&lt;sub&gt;2&lt;/sub&gt; group. Branched-chain alkanes have lower values of &amp;Delta;&lt;sub&gt;c&lt;/sub&gt;''H''&lt;sup&gt;&lt;s&gt;o&lt;/s&gt;&lt;/sup&gt; than straight-chain alkanes of the same number of carbon atoms, and so can be seen to be somewhat more stable.
15813
15814 ===Reactions with halogens===
15815 Alkanes react with [[halogen]]s in a so-called [[halogenation]] reaction. The hydrogen atoms of the alkane are progressively replaced, or [[Substitution|substituted]], by halogen atoms. [[Free radical]]s are the reactive species which participate in the reaction, which usually leads to a mixture of products. The reaction is highly [[exothermic reaction|exothermic]], and can lead to an explosion.
15816
15817 The chain mechanism is as follows, using the chlorination of methane as a typical example:
15818 :'''1.''' ''Initiation'': splitting of a chlorine molecule to form two chlorine atoms, initiated by [[ultraviolet radiation]]. A chlorine atom has an unpaired electron and acts as a free radical.
15819 ::Cl&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; 2Cl&amp;middot;
15820 :'''2.''' ''Propagation'' (two steps): a hydrogen atom is pulled off from methane then the methyl radical pulls a Cl&amp;middot; from Cl&lt;sub&gt;2&lt;/sub&gt;.
15821 ::CH&lt;sub&gt;4&lt;/sub&gt; + Cl&amp;middot; &amp;rarr; CH&lt;sub&gt;3&lt;/sub&gt;&amp;middot; + HCl
15822 ::CH&lt;sub&gt;3&lt;/sub&gt;&amp;middot; + Cl&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; CH&lt;sub&gt;3&lt;/sub&gt;Cl + Cl&amp;middot;
15823 :This results in the desired product plus another chlorine radical. This radical will then go on to take part in another propagation reaction causing a chain reaction. If there is sufficient chlorine, other products such as CH&lt;sub&gt;2&lt;/sub&gt;Cl&lt;sub&gt;2&lt;/sub&gt; may be formed.
15824 :'''3.''' ''Termination'': recombination of two free radicals:
15825 ::Cl&amp;middot; + Cl&amp;middot; &amp;rarr; Cl&lt;sub&gt;2&lt;/sub&gt;; or
15826 ::CH&lt;sub&gt;3&lt;/sub&gt;&amp;middot; + Cl&amp;middot; &amp;rarr; CH&lt;sub&gt;3&lt;/sub&gt;Cl; or
15827 ::CH&lt;sub&gt;3&lt;/sub&gt;&amp;middot; + CH&lt;sub&gt;3&lt;/sub&gt;&amp;middot; &amp;rarr; C&lt;sub&gt;2&lt;/sub&gt;H&lt;sub&gt;6&lt;/sub&gt;.
15828 :The last possibility in the termination step will result in an impurity in the final mixture; notably this results in an organic molecule with a longer carbon chain than the reactants.
15829
15830 In the case of methane or ethane, all the hydrogen atoms are equivalent and have an equal chance of being replaced. This leads to what is known as a ''statistical product distribution''. For propane and higher alkanes, the hydrogen atoms which form part of CH&lt;sub&gt;2&lt;/sub&gt; (or CH) groups are preferentially replaced.
15831
15832 The reactivity of the different halogens varies considerably: the relative rates are: [[fluorine]] (108) &gt; [[chlorine]] (1) &gt; [[bromine]] (7&amp;times;10&lt;sup&gt;&amp;minus;11&lt;/sup&gt;) &gt; [[iodine]] (2&amp;times;10&lt;sup&gt;&amp;minus;22&lt;/sup&gt;). Hence the reaction of alkanes with fluorine is difficult to control, that with chlorine is moderate to fast, that with bromine is slow and requires high levels of UV irradiation while the reaction with iodine is practically non-existent and [[Thermodynamics|thermodynamically]] unfavorable.
15833
15834 These reactions are an important industrial route to halogenated hydrocarbons.
15835
15836 ===Cracking and reforming===
15837 &quot;[[Cracking]]&quot; breaks larger molecules into smaller ones. This can be done with a thermic or catalytic method. The thermal cracking process follows a homolytic mechanism, that is, bonds break symmetrically and thus pairs of [[free radical]]s are formed. The catalytic cracking process involves the presence of [[acid]] [[catalyst|catalysts]] (usually solid acids such as [[silica-alumina]] and [[zeolite|zeolites]]) which promote a heterolytic (asymmetric) breakage of bonds yielding pairs of [[ion|ions]] of opposite charges, usually a carbo[[cation]] and the very unstable [[hydride]] [[anion]]. Carbon-localized free radicals and cations are both highly unstable and undergo processes of chain rearrangement, C-C scission in position [[beta scission|beta]] (i.e., cracking) and [[intramolecular|intra-]] and [[intermolecular]] hydrogen transfer or [[hydride transfer]]. In both types of processes, the corresponding reactive intermediates (radicals, ions) are permanently regenerated, and thus they proceed by a
15838 self-propagating chain mechanism. The chain of reactions is eventually terminated by radical or ion recombination.
15839
15840 Here is an example of cracking with butane CH&lt;sub&gt;3&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;3&lt;/sub&gt;
15841
15842 * 1st possibility (48%): breaking is done on the CH&lt;sub&gt;3&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt; bond.
15843
15844 CH&lt;sub&gt;3&lt;/sub&gt;* / *CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;3&lt;/sub&gt;
15845
15846 after a certain number of steps, we will obtain an alkane and an [[alkene]]:
15847 CH&lt;sub&gt;4&lt;/sub&gt; + CH&lt;sub&gt;2&lt;/sub&gt;=CH-CH&lt;sub&gt;3&lt;/sub&gt;
15848
15849 * 2nd possibility (38%): breaking is done on the CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt; bond.
15850
15851 CH&lt;sub&gt;3&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;* / *CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;3&lt;/sub&gt;
15852
15853 after a certain number of steps, we will obtain an alkane and an [[alkene]]
15854 from different types: CH&lt;sub&gt;3&lt;/sub&gt;-CH&lt;sub&gt;3&lt;/sub&gt; + CH&lt;sub&gt;2&lt;/sub&gt;=CH&lt;sub&gt;2&lt;/sub&gt;
15855
15856 * 3rd possibility (14%): breaking of a C-H bond
15857
15858 after a certain number of steps, we will obtain an [[alkene]] and hydrogen gas: CH&lt;sub&gt;2&lt;/sub&gt;=CH-CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;3&lt;/sub&gt; + H&lt;sub&gt;2&lt;/sub&gt;
15859
15860 ===Other reactions===
15861 &lt;!-- translated from [[:de:Alkane]] --&gt;
15862 Alkanes will react with [[steam]] in the presence of a [[nickel]] [[catalyst]] to give [[hydrogen]]. Alkanes can by [[Chlorosulfonation|chlorosulfonated]] and [[nitration|nitrated]], although both reactions require special conditions. The [[fermentation]] of alkanes to [[carboxylic acid]]s is of some technical importance. In the [[Reed reaction]], [[sulfur dioxide]], [[chlorine]] and [[photochemistry|light]] convert hydrocarbons to [[Sulfonic acid|sulfonyl chloride]]s.
15863
15864 ==Hazards==
15865 Methane is explosive in when mixed with air (1&amp;ndash;8% CH&lt;sub&gt;4&lt;/sub&gt;) and is a strong [[greenhouse gas]]: other lower alkanes can also form explosive mixtures with air. The lighter liquid alkanes are highly flammable, although this risk decreases with the length of the carbon chain. Pentane, hexane, heptane and octane are classed as ''dangerous for the environment'' and ''harmful''. The straight chain isomer of hexane is a [[neurotoxin]], and therefore rarely used commercially.
15866
15867 ==Alkanes in nature==
15868 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15869 Although alkanes occur in nature in various way, they do not rank biologically among the essential materials. Cycloalkanes with 14 to 18 carbon atoms occur in [[musk]], extracted from [[deer]] of the family [[Moschidae]]. All further information refers to acyclic alkanes.
15870
15871 ===Bacteria and archaea===
15872 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15873 [[Image:Rotbuntes Rind.jpg|thumb|right|[[Methanogen]]ic [[archaea]] in the gut of this cow are responsible for some of the [[methane]] in the Earth's atmosphere.]]
15874 Certain types of [[bacteria]] can metabolise alkanes: they prefer even-numbered carbon chains as they are easier to degrade than odd-numbered chains.
15875
15876 On the other hand certain [[archaea]], the [[methanogen]]s, produce large quantites of [[methane]] by the metabolism of [[carbon dioxide]] or other [[oxidation|oxidised]] organic compounds. The energy is released by the oxidation of [[hydrogen]]:
15877 :CO&lt;sub&gt;2&lt;/sub&gt; + 4H&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; CH&lt;sub&gt;4&lt;/sub&gt; + 2H&lt;sub&gt;2&lt;/sub&gt;O
15878
15879 Methanogens are also the producers of [[marsh gas]] in [[wetlands]], and release about two billion tonnes of methane per year&amp;mdash;the atmospheric content of this gas is produced nearly exclusively by them. The methane output of [[cattle]] and other [[herbivore]]s, which can release up to 150&amp;nbsp;litres per day, and of [[termite]]s, is also due to methanogens. They also produce this simplest of all alkanes in the [[intestine]]s of [[human]]s. Methanogenic archaea are hence at the end of the [[carbon cycle]], with carbon being released back into the atmosphere after having been fixed by [[photosynthesis]]. It is probable that our current deposits of [[natural gas]] were formed in a similar way.
15880
15881 ===Fungi and plants===
15882 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15883 [[Image:Fuji apple.jpg|thumb|right|Water forms droplets on a thin film of alkane wax on the skin of the apple.]]
15884 Alkanes also play a role, if a minor role, in the biology of the three [[eukaryote|eukaryotic]] groups of organisms: [[Fungus|fungi]], [[plant]]s and [[animal]]s. Some specialised yeasts, e.g. ''Candida tropicale'', ''[[Pichia]]'' sp., ''[[Rhodotorula]]'' sp., can use alkanes as a source of carbon and/or energy. The fungus ''[[Amorphotheca resinae]]'' prefers the longer-chain alkanes in [[aviation fuel]], and can cause serious problems for aircraft in tropical regions.
15885
15886 In plants it is the solid long-chain alkanes that are found; they form a firm layer of wax, the [[cuticle]], over areas of the plant exposed to the air. This protects the plant against water loss, while preventing the [[leaching]] of important minerals by the rain. It is also a protection against bacteria, fungi and harmful [[insect]]s&amp;mdash;the latter sink with their legs into the soft waxlike substance and have difficulty moving. The shining layer on fruits such as apples consists of long-chain alkanes. The carbon chains are usually between twenty and thirty carbon atoms in length and are made by the plants from [[fatty acid]]s. The exact composition of the layer of wax is not only species-dependent, but changes also with the season and such environmental factors as lighting conditions, temperature or humidity.
15887
15888 ===Animals===
15889 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15890 Alkanes are found in animal products, although they are less important than unsaturated hydrocarbons. On example is the shark liver oil, which is approximately 14% [[pristane]] (2,6,10,14-tetramethylpentadecane, C&lt;sub&gt;19&lt;/sub&gt;H&lt;sub&gt;40&lt;/sub&gt;). Their occurrence is more important in [[pheromone]]s, chemical messenger materials, on which above all insects are dependent for communication. With some kinds, as the support beetle ''[[Xylotrechus colonus]]'', primarily [[pentacosane]] (C&lt;sub&gt;25&lt;/sub&gt;H&lt;sub&gt;52&lt;/sub&gt;), 3-methylpentaicosane (C&lt;sub&gt;26&lt;/sub&gt;H&lt;sub&gt;54&lt;/sub&gt;) and 9-methylpentaicosane (C&lt;sub&gt;26&lt;/sub&gt;H&lt;sub&gt;54&lt;/sub&gt;), they are transferred by body contact. With others like the [[tsetse fly]] ''Glossina morsitans morsitans'', the pheromone contians the four alkanes 2-methylheptadecane (C&lt;sub&gt;18&lt;/sub&gt;H&lt;sub&gt;38&lt;/sub&gt;), 17,21-dimethylheptatriacontane (C&lt;sub&gt;39&lt;/sub&gt;H&lt;sub&gt;80&lt;/sub&gt;), 15,19-dimethylheptatriacontane (C&lt;sub&gt;39&lt;/sub&gt;H&lt;sub&gt;80&lt;/sub&gt;) and 15,19,23-trimethylheptatriacontane (C&lt;sub&gt;40&lt;/sub&gt;H&lt;sub&gt;82&lt;/sub&gt;), and
15891 acts by smell over longer distances, a useful characteristic for [[pest control]].
15892
15893 ===Ecological relations===
15894 &lt;!-- Translated from [[:de:Alkane]] --&gt;
15895 [[Image:Ophrys sphegodes flower.jpg|thumb|right|Early spider orchid (''Ophrys sphegodes'')]]
15896 One example, in which both plant and animal alkanes play a role, is the ecological relationship between the [[sand bee]] (''[[Andrena nigroaenea]]'') and the [[early spider orchid]] (''[[Ophrys sphegodes]]''); the latter is dependent for [[pollination]] on the former. Sand bees use pheromones in order to identify a mate; in the case of ''A. nigroaenea'', the females emit a mixture of [[tricosane]] (C&lt;sub&gt;23&lt;/sub&gt;H&lt;sub&gt;48&lt;/sub&gt;), [[pentacosane]] (C&lt;sub&gt;25&lt;/sub&gt;H&lt;sub&gt;52&lt;/sub&gt;) and [[heptacosane]] (C&lt;sub&gt;27&lt;/sub&gt;H&lt;sub&gt;56&lt;/sub&gt;) in the ratio 3:3:1, and males are attracted by specifically this odour. The orchid takes advantage of this mating arrangement to get the male bee to collect and disseminate its pollen; parts of its flower not only resemble the appearance of sand bees, but also produce large quantities of the three alkanes in the same ratio as female sand bees. As a result numerous males are lured to the blooms and attempte to copulate with their imaginary partner: although this endeavour is not crowned with success for the bee, it allows the orchid to transfer its pollen,
15897 which will be dispersed after the departure of the frustrated male to different blooms.
15898
15899 ==See also==
15900 * [[Cycloalkane]]
15901 * [[Higher alkanes]]
15902 * [[Alkene]]
15903 * [[Alkyne]]
15904 * [[Functional group]]
15905 * [[Cracking (chemistry)]]
15906 * [[List of alkanes]]
15907
15908 {{Alkanes}}
15909
15910 [[Category:Hydrocarbons]]
15911 [[Category:Alkanes]]
15912
15913 {{Link FA|de}}
15914
15915 [[ar:ØŖŲ„ŲƒØ§Ų†]]
15916 [[bg:АĐģĐēĐ°ĐŊ]]
15917 [[ca:Alcà]]
15918 [[cs:Alkan]]
15919 [[da:Alkan]]
15920 [[de:Alkane]]
15921 [[et:Alkaanid]]
15922 [[el:ΑÎģÎēÎŦÎŊΚι]]
15923 [[es:Alcano]]
15924 [[eo:Alkano]]
15925 [[fr:Alcane]]
15926 [[ko:ė•Œėŧ€ė¸]]
15927 [[it:Alcani]]
15928 [[he:אלקאן]]
15929 [[lv:Alkāni]]
15930 [[nl:Alkaan]]
15931 [[ja:ã‚ĸãƒĢã‚Ģãƒŗ]]
15932 [[nn:Alkan]]
15933 [[pl:Alkan]]
15934 [[pt:Alcano]]
15935 [[ru:АĐģĐēĐ°ĐŊŅ‹]]
15936 [[sk:AlkÃĄn]]
15937 [[sr:АĐģĐēĐ°ĐŊ]]
15938 [[su:Alkana]]
15939 [[fi:Alkaani]]
15940 [[sv:Alkan]]
15941 [[vi:Ankan]]
15942 [[zh:įƒˇįƒƒ]]</text>
15943 </revision>
15944 </page>
15945 <page>
15946 <title>Appeal</title>
15947 <id>640</id>
15948 <revision>
15949 <id>38794131</id>
15950 <timestamp>2006-02-08T18:27:36Z</timestamp>
15951 <contributor>
15952 <username>DS1953</username>
15953 <id>92631</id>
15954 </contributor>
15955 <comment>fix circular redirect</comment>
15956 <text xml:space="preserve">:''This article is about the legal term. For other usages see [[Appeal (disambiguation)]].''
15957
15958 An '''appeal''' is the act or fact of challenging a judicially cognizable and binding [[judgment]] to a higher judicial authority. In [[common law]] jurisdictions, most commonly, this means formally filing a [[notice of appeal]] with a lower court, indicating one's intention to take the matter to the next higher court with jurisdiction over the matter, and then actually filing the appeal with the appropriate [[Court of Appeals|appellate court]].
15959
15960 ==United States==
15961 The [[United States]] legal system generally recognizes two types of appeals: a trial ''de novo'' or an appeal on the record.
15962
15963 A [[trial de novo]] is usually available for review of informal proceedings conducted by [[administrative agency|administrative agency]], referees, masters, commissioners and some minor judicial tribunals in proceedings that do not provide all the procedural attributes of a formal judicial [[trial (law)|trial]]. If unchallenged, these decisions have the power to settle more minor legal disputes once and for all. If a party is dissatisfied with the finding of such a tribunal, one generally has the power to request a trial ''de novo'' by a [[court of record]]. In such a proceeding, all issues and [[evidence (law)|evidence]] may be developed newly, as though never heard before, and one is not restricted to the evidence heard in the lower proceeding. Sometimes, however, the decision of the lower proceeding is itself admissible as evidence, thus helping to curb frivolous appeals.
15964
15965 In an appeal on the record from a decision in a judicial proceeding, both [[appellant]] and [[respondent]] are bound to base their arguments wholly on the proceedings and body of evidence as they were presented in the lower tribunal. Each seeks to prove to the higher court that the result they desired was the just result. [[Precedent]] and [[case law]] figure prominently in the arguments. In order for the appeal to succeed, the appellant must prove that the lower court committed [[reversible error]], that is, an impermissible action by the court acted to cause a result that was unjust, and which would not have resulted had the court acted properly. Some examples of reversible error would be erroneously instructing the [[jury]] on the law applicable to the case, permitting seriously [[improper argument]] by an attorney, admitting or excluding evidence improperly, acting outside the court's jurisdiction, injecting bias into the proceeding or appearing to do so, juror misconduct, etc. The failure to formally object at the time, to what one views as improper action in the lower court, may result in the affirmance of the lower court's judgment on the grounds that one did not &quot;preserve the issue for appeal&quot; by objecting.
15966
15967 In cases where a [[judge]] rather than a [[jury]] decided issues of fact, an appellate court will apply an ''abuse of discretion'' standard of review. Under this standard, the appellate court gives deference to the lower court's view of the evidence, and reverses its decision only if it was a clear abuse of discretion. This is usually defined as a decision outside the bounds of reasonableness. On the other hand, the appellate court normally gives less deference to a lower court's decision on issues of law, and may reverse if it finds that the lower court applied the wrong legal standard.
15968
15969 In some rare cases, an appellant may successfully argue that the law under which the lower decision was rendered was [[unconstitutional]] or otherwise invalid, or may convince the higher court to order a new trial on the basis that evidence earlier sought was concealed or only recently discovered. In the case of new evidence, there must be a high probability that its presence or absence would have made a material difference in the trial. Another issue suitable for appeal in criminal cases is effective assistance of counsel. If a defendant has been convicted and can prove that his lawyer did not adequately handle his case ''and'' that there is a reasonable probability that the result of the trial would have been different had the lawyer given competent representation, he is entitled to a new trial.
15970
15971 An appellate court is a [[court]] that hears cases in which a [[lower court]] -- either a [[trial court]] or a lower-level appellate court &amp;#8212; has already made a decision, but in which at least one party to the action wants to challenge this ruling based upon some legal grounds that are allowed to be appealed either by right or by leave of the appellate court. These grounds typically include errors of [[law]], [[fact]], or [[due process]].
15972
15973 In different jurisdictions, appellate courts are also called appeals courts, courts of appeals, superior courts, or supreme courts.
15974
15975 ==Who can appeal==
15976 A party who files an appeal is called an ''appellant'', and a party on the other side is an ''appellee'' or ''respondent'' or, in some jurisdictions, the party who files is known as a ''petitioner'' and the party being sued is designated the ''respondent''. Cross-appeals can also occur, when more than one party to a case is unhappy with the decision in some way, often when the winning party claims that more damages were deserved than were awarded.
15977
15978 An appeal ''as of right'' is one that is guaranteed by statute or some underlying constitutional or legal principle. The appellate court cannot refuse to listen to the appeal. An appeal ''by leave'' or ''permission'' requires the appellant to move for leave to appeal; in such a situation either or both of the lower court and the appellate court have the discretion to grant or refuse the appellant's demand to appeal the lower court's decision.
15979
15980 In [[tort]], [[equity]], or other civil matters either party to a previous case may file an appeal. In criminal matters, however, the state or prosecution generally has no appeal ''as of right''. And due to the [[double jeopardy]] principle, the state or prosecution may never appeal a jury or bench verdict. But in some jurisdictions, the state or prosecution may appeal ''as of right'' from a trial court's dismissal of an indictment in whole or in part or from a trial court's granting of a defendant's suppression motion. Likewise, in some jurisdictions, the state or prosecution may appeal an issue of law ''by leave'' from the trial court and/or the appellate court.
15981
15982 ==How an appeal is processed==
15983 Generally speaking the appellate court examines the record of [[evidence (law)|evidence]] presented in the trial court and the [[law]] that the lower court applied and decides whether that decision was legally sound or not. The appellate court will typically be deferential to the lower court's findings of fact (such as whether a defendant committed a particular act), unless clearly erroneous, and so will focus on the court's application of the law to those facts (such as whether the act found by the court to have occurred fits a legal definition at issue).
15984
15985 If the appellate court finds no defect, it &quot;affirms&quot; the judgment. If the appellate court does find a legal defect in the decision &quot;below&quot; (i.e., in the lower court), it may &quot;modify&quot; the ruling to correct the defect, or it may nullify (&quot;reverse&quot; or &quot;vacate&quot;) the whole decision or any part of it. It may in addition send the case back (&quot;remand&quot; or &quot;remit&quot;) to the lower court for further proceedings to remedy the defect.
15986
15987 In some cases an appellate court may review a lower court decision ''de novo'' (or completely), challenging even the lower court's findings of fact. This might be the proper standard of review, for example, if the lower court resolved the case by granting a pre-trial [[motion to dismiss]] or motion for [[summary judgment]] which is usually based only upon written submissions to the trial court and not on any trial testimony.
15988
15989 Another situation is where appeal is by way of ''re-hearing''. Certain jurisdictions permit certain appeals to cause the trial to be heard afresh in the appellate court. An example would be an appeal from a [[Magistrate's court]] to the [[Crown Court]] in [[England and Wales]].
15990
15991 Sometimes the appellate court finds a defect in the procedure the parties used in filing the appeal and dismisses the appeal without considering its merits, which has the same effect as affirming the judgment below. (This would happen, for example, if the appellant waited too long, under the appellate court's rules, to file the appeal.) In [[England]] and many other jurisdictions, however, the phrase ''appeal dismissed'' is equivalent to the [[United States|U.S.]] term ''affirmed''; and the phrase ''appeal allowed'' is equivalent to the U.S. term ''reversed''.
15992
15993 Generally there is no [[Jury trial|trial]] in an appellate court, only consideration of the [[record]] of the evidence presented to the trial court and all the pre-trial and trial court proceedings are reviewed &amp;#8212; unless the appeal is by way of re-hearing, new evidence will usually only be considered on appeal in ''very'' rare instances, for example if that material evidence was unavailable to a party for some very significant reason such as [[prosecutorial misconduct]].
15994
15995 In some systems an appellate court will only consider the written decision of the lower court, together with any written evidence that was before that court and is relevant to the appeal. In other systems, the appellate court will normally consider the record of the lower court. In those cases the record will first be certified by the lower court.
15996
15997 The appellant has the opportunity to present arguments for the granting of the appeal and the appellee (or respondent) can present arguments against it. Arguments of the parties to the appeal are presented through their appellate [[lawyer]]s, if represented, or ''[[pro se]]'' if the party has not engaged legal representation. Those arguments are presented in written [[brief (law)|briefs]] and sometimes in [[oral argument]] to the court at a [[hearing (law)|hearing]]. At such hearings each party is allowed a brief presentation at which the appellate judges ask questions based on their review of the record below and the submitted briefs.
15998
15999 It is important to note that in an [[adversarial system]] appellate courts do not have the power to review lower court decisions unless a party appeals it. Therefore if a lower court has ruled in an improper manner or against [[legal precedent]] that judgment will stand even if it might have been overturned on appeal.
16000
16001 In the [[United States]], a [[lawyer]] traditionally starts an oral argument to any appellate court with the words &quot;May it please the court.&quot;
16002
16003 ==See also==
16004 * [[List of legal topics]]
16005 * [[Appellate review]]
16006 * [[Supreme Court of the United States]]
16007 * [[Court of Appeal of England and Wales]]
16008
16009 [[Category:Court systems]]
16010 [[Category:Appellate_review]]
16011
16012 [[cs:Apelační soud]]
16013 [[de:Berufung (Recht)]]
16014 [[es:ApelaciÃŗn]]
16015 [[hu:FellebbezÊs]]
16016 [[ja:抗告]]
16017 [[nl:Hoger beroep]]
16018 [[pl:Apelacja (prawo)]]
16019 [[pt:Recurso de apelaçÃŖo]]
16020 [[sv:Appellationsdomstol]]
16021 [[th:ā¸¨ā¸˛ā¸Ĩā¸­ā¸¸ā¸—ā¸˜ā¸Ŗā¸“āšŒ]]
16022 [[zh:上訴æŗ•é™ĸ]]</text>
16023 </revision>
16024 </page>
16025 <page>
16026 <title>Answer</title>
16027 <id>642</id>
16028 <revision>
16029 <id>41984073</id>
16030 <timestamp>2006-03-03T01:13:16Z</timestamp>
16031 <contributor>
16032 <username>Met8304</username>
16033 <id>1020725</id>
16034 </contributor>
16035 <text xml:space="preserve">''For the US radical anti-war protest group, see [[A.N.S.W.E.R.]]''
16036
16037 ''See also [[Google Answers]], [[Answers.com]]''
16038 {{CivilProcedure}}
16039
16040 An '''answer''' (derived from ''and'', against, and the same root as ''swear'') was originally a solemn assertion in opposition to some one or something, and thus generally any counter-statement or defence, a reply to a question or objection, or a correct solution of a problem. In the [[common law]], an '''answer''' is the first [[pleading]] by a [[defendant]], usually filed and served upon the [[plaintiff]] within a certain strict time limit after a civil [[complaint]] or criminal [[information]] or [[indictment]] has been served upon the defendant. It may have been preceded by an ''optional'' &quot;pre-answer&quot; [[motion to dismiss]] or [[demurrer]]; if such a motion is unsuccessful, the defendant ''must'' file an answer to the complaint or risk an adverse [[default judgment]].
16041
16042 The ''answer'' establishes which allegations ([[cause of action]] in civil matters) set forth by the complaining party will be contested by the defendant, and states all the defendant's [[Defense (legal)|defense]]s, thus establishing the nature and parameters of the controversy to be decided by the [[court]].
16043
16044 In the case of a criminal case there is usually an [[arraignment]] or some other kind of appearance before the court by the defendant. The pleading in the criminal case, which is entered on the record in open court, is either [[guilt|guilty]] or not guilty. Generally speaking in private, civil cases there is no guilt or innocence. There is only a judgment that grants money damages or some other kind of [[equitable remedy]] such as [[restitution]] or an [[injunction]]. Criminal cases may lead to [[fine]]s or other [[punishment]], such as [[imprisonment]].
16045
16046 The famous Latin ''Responsa Prudentum'' (&quot;answers of the learned&quot;) were the accumulated views of many successive generations of Roman lawyers, a body of legal opinion which gradually became authoritative.
16047
16048 In music an &quot;'''answer'''&quot; is the technical name in counterpoint for the repetition by one part or instrument of a theme proposed by another.
16049
16050 {{wiktionarypar|answer}}
16051
16052 G.
16053 sup garrett
16054 1902 1807
16055 1983 1861
16056 1872 1961
16057 (back)
16058 1309 1827
16059 1931 1962</text>
16060 </revision>
16061 </page>
16062 <page>
16063 <title>Appellate court</title>
16064 <id>643</id>
16065 <revision>
16066 <id>24603435</id>
16067 <timestamp>2005-10-02T23:58:37Z</timestamp>
16068 <contributor>
16069 <username>Tarret</username>
16070 <id>450465</id>
16071 </contributor>
16072 <text xml:space="preserve">#Redirect [[Appeal]]</text>
16073 </revision>
16074 </page>
16075 <page>
16076 <title>Arithmetic and logic unit</title>
16077 <id>644</id>
16078 <revision>
16079 <id>15899172</id>
16080 <timestamp>2005-04-02T15:48:05Z</timestamp>
16081 <contributor>
16082 <username>Wernher</username>
16083 <id>19431</id>
16084 </contributor>
16085 <minor />
16086 <comment>#REDIRECT [[arithmetic logic unit]]</comment>
16087 <text xml:space="preserve">#REDIRECT [[arithmetic logic unit]]</text>
16088 </revision>
16089 </page>
16090 <page>
16091 <title>Arithmetic and logical unit</title>
16092 <id>645</id>
16093 <revision>
16094 <id>15899173</id>
16095 <timestamp>2005-04-02T15:45:35Z</timestamp>
16096 <contributor>
16097 <username>Wernher</username>
16098 <id>19431</id>
16099 </contributor>
16100 <minor />
16101 <comment>#REDIRECT [[arithmetic logic unit]]</comment>
16102 <text xml:space="preserve">#REDIRECT [[arithmetic logic unit]]</text>
16103 </revision>
16104 </page>
16105 <page>
16106 <title>Aircraft Carrier</title>
16107 <id>647</id>
16108 <revision>
16109 <id>15899174</id>
16110 <timestamp>2002-02-25T15:51:15Z</timestamp>
16111 <contributor>
16112 <ip>Conversion script</ip>
16113 </contributor>
16114 <minor />
16115 <comment>Automated conversion</comment>
16116 <text xml:space="preserve">#REDIRECT [[Aircraft carrier]]
16117 </text>
16118 </revision>
16119 </page>
16120 <page>
16121 <title>Actress</title>
16122 <id>648</id>
16123 <revision>
16124 <id>15899175</id>
16125 <timestamp>2002-06-12T19:07:50Z</timestamp>
16126 <contributor>
16127 <username>Maveric149</username>
16128 <id>62</id>
16129 </contributor>
16130 <minor />
16131 <comment>*</comment>
16132 <text xml:space="preserve">#REDIRECT [[Actor]]</text>
16133 </revision>
16134 </page>
16135 <page>
16136 <title>Arraignment</title>
16137 <id>649</id>
16138 <revision>
16139 <id>41736393</id>
16140 <timestamp>2006-03-01T11:08:27Z</timestamp>
16141 <contributor>
16142 <username>Acerperi</username>
16143 <id>173184</id>
16144 </contributor>
16145 <text xml:space="preserve">{{CrimPro}}
16146 '''Arraignment''' is a [[common law]] term for the formal reading of a [[crime|criminal]] [[complaint]], in the presence of the [[defendant]], to inform him of the charges against him. In response to arraignment, the accused is expected to enter a [[plea]]. Acceptable pleas vary from jurisdiction to jurisdiction, but they generally include &quot;guilty&quot;, &quot;not guilty&quot;, and the [[peremptory pleas]] (or pleas in bar), which set out reasons why a trial cannot proceed. In addition, [[United States|US]] jurisdictions allow pleas of &quot;[[nolo contendere]]&quot; (no contest) and the &quot;[[Alford plea]]&quot; in some circumstances.
16147
16148 In the [[UK]] arraignment is the first of eleven stages in a criminal trial, and involves the [[clerk]] of the [[court]] reading out the [[indictment]]. The defendant is asked whether they plead guilty or not guilty to each individual charge.
16149
16150 ==Guilty and Not Guilty pleas==
16151 If the defendant pleads guilty an [[preliminary hearing|evidentiary hearing]] usually follows. The court is not required to accept a guilty plea. During that hearing the judge will assess the offense, [[mitigating factor]]s, and the defendant's character; and then pass [[Sentence (law)|sentence]]. If the defendant pleads [[not guilty]], a date will be set for a [[preliminary hearing]] or [[Jury trial|trial]].
16152
16153 ==What if the defendant enters no plea?==
16154 In the past, a defendant who refused to plea (or, &quot;stood mute&quot;) would be subjected to [[Crushing|peine forte et dure]] ([[Law French]] for &quot;strong and hard punishment&quot;). But today in all common law jurisdictions, defendants who refuse to enter a plea will have a plea of not guilty entered for them on their behalf.
16155
16156 ==The Federal Rules of Criminal Procedure==
16157 The US ''[[Federal Rules of Criminal Procedure]]'' state: &quot;...arraignment shall...[consist of an] open...reading [of] the [[indictment]]...to the defendant...and calling on him to plead thereto. He shall be given a copy of the indictment...before he is called upon to plead.&quot;
16158
16159 [[category:legal terms]]
16160 [[Category:Prosecution]]</text>
16161 </revision>
16162 </page>
16163 <page>
16164 <title>Abbeville France</title>
16165 <id>650</id>
16166 <revision>
16167 <id>15899177</id>
16168 <timestamp>2003-04-03T12:12:24Z</timestamp>
16169 <contributor>
16170 <username>Olivier</username>
16171 <id>3808</id>
16172 </contributor>
16173 <minor />
16174 <text xml:space="preserve">#REDIRECT [[Abbeville]]</text>
16175 </revision>
16176 </page>
16177 <page>
16178 <title>America the Beautiful</title>
16179 <id>651</id>
16180 <revision>
16181 <id>39174236</id>
16182 <timestamp>2006-02-11T05:26:13Z</timestamp>
16183 <contributor>
16184 <username>Pusher robot</username>
16185 <id>718079</id>
16186 </contributor>
16187 <comment>/* Sources/external links */</comment>
16188 <text xml:space="preserve">&quot;'''America the Beautiful'''&quot; is an [[United States|American]] [[patriotic song]] which rivals &quot;[[The Star-Spangled Banner]]&quot;, the [[national anthem]] of the United States, in popularity. It is often found in [[Christian]] [[hymn]]als in a wide variety of churches in the United States, and may be sung as part of a Christian service of worship to [[The Trinity|God]].
16189
16190 ==History==
16191
16192 The words are by [[Katharine Lee Bates]], an English teacher at [[Wellesley College]]. She had taken a train trip to [[Colorado Springs, Colorado|Colorado Springs]], [[Colorado]] in [[1893]] to teach a short summer school session at [[Colorado College]], and several of the sights on her trip found their way into her poem:
16193 *The [[World's Columbian Exposition]] in [[Chicago, Illinois]], the &quot;White City&quot; with its promise of the future contained within its alabaster buildings.
16194 *The wheat fields of [[Kansas]], through which her train was riding on [[July 4]].
16195 *The majestic view of the [[Great Plains]] from atop [[Pike's Peak]].
16196 On that mountain, the words of the poem started to come to her, and she wrote them down upon returning to her hotel room at the original Antlers Hotel. The poem was initially published two years later in ''[[The Congregationalist]]'', to commemorate the [[Independence Day (US)|Fourth of July]]. It quickly caught the public's fancy. Amended versions were published in 1904 and 1913.
16197
16198 Several existing pieces of music were adapted to the poem. The [[hymn]] ''Materna'', composed in [[1882]] by [[Samuel A. Ward]], was generally considered the best music as early as 1910 and is still the popular tune today. Ward had been similarly inspired. The tune came to him while he was on a ferryboat trip from [[Coney Island]] back to his home in [[New York City]] after a leisurely summer day, and he immediately wrote it down. Ward died in 1903, not knowing the national stature his music would attain. Miss Bates was more fortunate, as the song's popularity was well-established by her death in 1929.
16199
16200 At various times in the more than 100 years that have elapsed since the song as we know it was born, particularly during the [[John F. Kennedy]] administration, there have been efforts to give &quot;America the Beautiful&quot; legal status either as a national hymn, or as a national anthem equal to, or in place of, &quot;The Star-Spangled Banner&quot;, but so far this has not succeeded. Proponents prefer &quot;America the Beautiful&quot; for various reasons, saying it is easier to sing, more melodic, and more adaptable to new orchestrations while still remaining as easily recognizable as &quot;The Star-Spangled Banner.&quot; Some prefer &quot;America the Beautiful&quot; over &quot;The Star-Spangled Banner&quot; due to the latter's war-oriented imagery. (Others prefer &quot;The Star-Spangled Banner&quot; for the same reason.) While that national dichotomy has stymied any effort at changing the tradition of the national anthem, &quot;America the Beautiful&quot; continues to be held in high esteem by a large number of Americans.
16201
16202 Popularity of the song soared following the [[September 11, 2001 attacks]]; at some sporting events it was sung in addition to the traditional singing of the national anthem.
16203
16204 [[Ray Charles]] is credited with the song's most well known rendition in current times (although [[Elvis Presley]] had a good success with it in the 70´s). His recording is very commonly played at major sporting events, such as the [[Super Bowl]]. His unique take on it places the third verse first, after which he sings the usual first verse. In the third verse (see below), the author scolds the [[materialistic]] and self-serving [[robber baron]]s of her day, and urges America to live up to its noble ideals and to honor, with both word and deed, the memory of those who died for their country...a message that resonates just as strongly today.&lt;!-- Agreed. Also see the entire set of 1913 lyrics (source listed below) where this antimaterialist, God-centered theme is repeated in one of the forgotten to most American's ears &quot;extra&quot; lyrics. --&gt;
16205
16206 An amusing oddity of the song is that its meter (technically &quot;[[Common metre|common meter double]]&quot; or 8-6-8-6-8-6-8-6) is identical to that of ''[[Auld Lang Syne]]''. The two songs can be sung perfectly with lyrics interchanged.
16207
16208 ==Lyrics==
16209 Oh beautiful, for spacious skies,&lt;br /&gt;
16210 For amber waves of grain,&lt;br /&gt;
16211 For purple mountain majesties&lt;br /&gt;
16212 Above the fruited plain!&lt;br /&gt;
16213 ''America! America! God shed his grace on thee,''&lt;br /&gt;
16214 ''And crown thy good with brotherhood, from sea to shining sea.''&lt;br /&gt;&lt;br /&gt;
16215
16216 Oh beautiful, for pilgrims' feet&lt;br /&gt;
16217 Whose stern, impassioned stress&lt;br /&gt;
16218 A thoroughfare for freedom beat&lt;br /&gt;
16219 Across the wilderness!&lt;br /&gt;
16220 ''America! America! God mend thine ev'ry flaw;''&lt;br /&gt;
16221 ''Confirm thy soul in self control, thy liberty in law!''&lt;br /&gt;&lt;br /&gt;
16222
16223 Oh beautiful, for heroes proved&lt;br /&gt;
16224 In liberating strife,&lt;br /&gt;
16225 Who more than self their country loved&lt;br /&gt;
16226 And mercy more than life!&lt;br /&gt;
16227 ''America! America! May God thy gold refine,''&lt;br /&gt;
16228 '''Til all success be nobleness, and ev'ry gain divine!''&lt;br /&gt;&lt;br /&gt;
16229
16230 Oh beautiful, for patriot's dream&lt;br /&gt;
16231 That sees beyond the years!&lt;br /&gt;
16232 Thine alabaster cities gleam&lt;br /&gt;
16233 Undimmed by human tears!&lt;br /&gt;
16234 ''America! America! God shed his grace on thee,''&lt;br /&gt;
16235 ''And crown thy good with brotherhood, from sea to shining sea!''
16236
16237 ==Takeoffs==
16238 A song as popular and familiar as &quot;America the Beautiful&quot; inevitably gets used out of its proper context or time frame, for humorous effect. As the song seems to have &quot;always been there&quot;, it is often presented as if [[Christopher Columbus]] had written it when he arrived at the [[New World]] (though in fact, Columbus never set foot on [[North America]]; all his voyages were to the [[Caribbean|Caribbean islands]], [[South America|South]] and [[Central America]]). Some examples:
16239
16240 *In 1971, the song inspired the cross-country [[Cannonball Baker Sea-To-Shining-Sea Memorial Trophy Dash]] race from New York to Los Angeles that later was the topic of several movies with [[Burt Reynolds]]
16241
16242 *A ''[[Far Side]]'' cartoon from 1982 (reprinted in Sherr's book) shows Columbus nearing land, with his crew of ''conquistador'' types, and saying, &quot;Look, gentlemen! Purple mountains! Spacious skies! Fruited plains! ... Is someone writing this down?&quot;
16243
16244 *In one of his comedy club routines in the early [[1960s]], [[Flip Wilson]] did a Columbus story with an African-American twist... ironically, the catchphrase repeated by Queen Isabel (an early &quot;Geraldine&quot;) is &quot;Chris gon' find Ray Charles!&quot; When his Columbus sees land, he comments, &quot;It's America, all right... just look at those spacious skies... those amber waves of grain... dig that purple mountain's majesty... I'll bet there's fruit out there on the plain!&quot;
16245
16246 *In his satirical, musical [[record album]], ''The United States of America, Volume 1'', [[Stan Freberg]] plays Columbus, [[Jesse White (actor)|Jesse White]] plays a skeptical King Ferdinand, and [[Colleen Collins]] does Queen Isabella (mimicking [[Tallulah Bankhead]]), resulting in this bit of dialogue: [http://freberg.8m.com/text/usa1.html]
16247
16248 :Ferdinand: Look at him in that hat! Is that a crazy sailor?
16249 :Isabella: Crazy? I'll tell you how crazy! He's a man with a dream, a vision, a vision of a new world, whose alabaster cities gleam undimmed by human tears, with purple mountain majesties above the [[Two Cents Plain]] . . .
16250 :Ferdinand and Columbus: Fruited!
16251 :Isabella: Fruited.
16252
16253 [[Mel Brooks]], on a talk show, once did an impression of how [[Frank Sinatra]] might sing the song, complete with tuxedo, black hat and coat, and cigarette, leaning up against a bar, and rendering the song in &quot;lounge style&quot;.
16254
16255 [[George Carlin]] performed a satirical version around 1970, when environmental issues were becoming a hot political topic: [http://www.creativequotations.com/one/1309b.htm]
16256
16257 :Oh beautiful, for smoggy skies, insecticided grain
16258 :For strip-mined mountain's majesty above the asphalt plain.
16259 :America, America, man sheds his waste on thee
16260 :And hides the pines with billboard signs, from sea to oily sea!
16261
16262
16263 [[Wellesley College]] students and alumnae tend to change &quot;brotherhood&quot; to &quot;SISTERhood&quot; in renditions of the song.
16264
16265 ==Books==
16266 [[Lynn Sherr]]'s 2001 book ''America the Beautiful'' discusses the origins of the song and the backgrounds of its authors in depth. ISBN 1-58648-085-5.
16267
16268
16269
16270 == Sources/external links ==
16271 *[http://www.fuzzylu.com/falmouth/bates/america.html 1913 Lyrics (eight stanzas)]
16272 *[http://www.niehs.nih.gov/kids/lyrics/america.htm Lyrics (four stanzas)]
16273 *[http://www.chime-o-wind.com/national.html A National Treasure]
16274 *[http://web.archive.org/web/20040829074504/www.antlers.com/indexenter.html The Antlers Hotel/history: where Katherine Lee Bates penned ''America the Beautiful''] (Click on &quot;History&quot; on the top left hand corner of index to access page)
16275 *[http://www.cyberhymnal.org/htm/o/b/obfsskis.htm Midi file of ''America the Beautiful'' from The Cyber Hymnal]
16276 *[http://www.tradoc.army.mil/band/multimedia/recordings/HeresToAmerica/AmericaTheBeautiful.mp3 MP3 of ''America The Beautiful'' as performed by the United States Continental Army Band]
16277 {{American songs}}
16278 [[Category:Patriotic songs]]
16279 [[Category:Christian hymns]]</text>
16280 </revision>
16281 </page>
16282 <page>
16283 <title>Artificial language</title>
16284 <id>652</id>
16285 <revision>
16286 <id>15899179</id>
16287 <timestamp>2002-03-19T15:06:01Z</timestamp>
16288 <contributor>
16289 <username>Lee Daniel Crocker</username>
16290 <id>43</id>
16291 </contributor>
16292 <comment>*</comment>
16293 <text xml:space="preserve">#REDIRECT [[Constructed language]]</text>
16294 </revision>
16295 </page>
16296 <page>
16297 <title>Assistive technology</title>
16298 <id>653</id>
16299 <revision>
16300 <id>40974795</id>
16301 <timestamp>2006-02-24T05:32:59Z</timestamp>
16302 <contributor>
16303 <username>Jmabel</username>
16304 <id>28107</id>
16305 </contributor>
16306 <comment>/* Assistive technology products */ spelling; simpler link for an article to be written</comment>
16307 <text xml:space="preserve">'''Assistive Technology''' (AT) is a generic term that includes assistive, adaptive, and rehabilitative devices and the process used in selecting, locating, and using them. AT promotes greater independence for [[disability|people with disabilities]] by enabling them to perform tasks that they were formerly unable to accomplish, or had great difficulty accomplishing, by providing enhancements to or changed methods of interacting with the [[technology]] needed to accomplish such tasks. According to disability advocates, technology, all too often, is created without regard to people with disabilities, and unnecessary barriers make new technology inaccessible to hundreds of millions.
16308
16309 Universal (or broadened) accessibility, or [[universal design]] means excellent [[usability]], particularly for people with disabilities. But, argue advocates of assistive technology, universally accessible technology yields great rewards to the typical user; good accessible design ''is'' universal design, they say. The classic example of an assistive technology that has improved everyone's life is the &quot;[[curb cut]]s&quot; in the sidewalk at street crossings. While these curb cuts surely enable pedestrians with mobility impairments to cross the street, they have also aided parents with carriages and strollers, shoppers with carts, and travellers and workers with pull-type bags, not to mention [[skateboard]]ers and [[inline skate]]rs.
16310
16311 Consider an example of an assistive technology. The modern [[telephone]] is, except for the deaf, universally accessible. Combined with a [[Telecommunications devices for the deaf|text telephone]] (also known as a TDD [Telephone Device for the Deaf] and in the USA generally called a TTY[TeleTYpewriter]), which converts typed characters into tones that may be sent over the telephone line, the deaf person is able to communicate immediately at a distance. Together with &quot;relay&quot; services (where an operator reads what the deaf person types and types what a hearing person says) the deaf person is then given access to everyone's telephone, not just those of people who possess text telephones. Many telephones now have volume controls, which are primarily
16312 intended for the benefit of people who are hard of hearing, but can be useful for all
16313 users at times and places where there is significant background noise.
16314
16315 Another example: [[calculator]]s are cheap, but a person with a mobility impairment can have difficulty using them. [[Speech recognition]] software could recognize short commands and make use of calculators a little easier. People with cognitive disabilities would appreciate the simplicity; others would as well.
16316
16317 Toys which have been adapted to be used by children with disabilities, may have advantages for &quot;typical&quot; children as well. The [[Lekotek]] movement assists parents by lending assistive technology toys and expertise to families.
16318
16319 Telecare is a particular sort of assistive technology that uses electronic sensors connected to an alarm system to help caregivers manage risk and help vulnerable people stay independent at home longer. A good example would be the systems being put in place for senior people such as fall detectors, thermometers (for [[hypothermia]] risk), flooding and unlit gas sensors (for people with mild [[dementia]]). The principle being that these alerts can be customised to the particular person's risks. When the alert is triggered, a message is sent to a carer or contact centre who can respond appropriately. The range of sensors is wide and expanding rapidly.
16320
16321 Technology similar to Telecare can also be used to act within a person's home rather than just to respond to a detected crisis. Using one of the examples above, unlit gas sensors for people with dementia can be used to trigger a device that turns off the gas and tells someone what has happened. This is safer than just telling an external person that there is a problem.
16322
16323 Designing for people with dementia is a good example of where the design of the interface of a piece of assistive technology (AT) is critical to its usefulness. It is important to make sure that people with dementia or any other identified user group are involved in the design process to make sure that the design is accessible and useable. In the example above, a voice message could be used to remind the person with dementia to turn of the gas himself, but who's voice should be used, and what should the message say? Questions like these must be answered through user consultantion, involvement and evaluation.
16324
16325 ==Assistive technology products==
16326 *[[Standing frames]] support wheelchair users in a standing position, increasing their reach, as well as improving their health and self-esteem.
16327 * [[Magnifier|Magnifiers]] magnify computer displays for people with some degree of [[Visual_impairment|visual impairment]].
16328 * [[Sticky keys]], a feature of [[Microsoft Windows]] and [[Mac OS X]] operating systems allowing key combinations (such as Control-Alt-Delete) to be pressed in sequence rather than simultaneously.
16329 * [[Screen reader|Screen readers]] allow blind people to use computers by communicating what is on the screen via speech or Braille.
16330 * [[Refreshable Braille display]], used to convert on-screen text to Braille characters.
16331 * [[Reading machine|Reading machines]] allow blind people to access printed material.
16332 * [[Video Magnifier|CCTV (Closed Circuit Television) or Video Magnifier]], magnifies printed text for people with low vision.
16333
16334 ==Further reading==
16335
16336 * Behrmann, M. &amp; Schaff, J.(2001). Assisting educators with assistive technology: Enabling children to achieve independence in living and learning. Children and Families 42(3), 24-28.
16337
16338 * Bishop, J. (2003). The Internet for educating individuals with social impairments. Journal of Computer Assisted Learning 19(4), 546-556. Available as a free [http://www.jonathanbishop.com/publications/display.aspx?Item=9 download]
16339
16340 * Cain, S. (2001). Accessing Technology - Using technology to support the learning and employment opportunities for visually impaired users. Royal National Institute for the Blind. ISBN 1858785170.
16341
16342 * Cook, A., &amp; Hussey, S. (2002). Assistive Technologies - Principles and Practice, 2nd Edition. Mosby. ISBN 0323006434
16343
16344 * Franklin, K.S. (1991). Supported employment and assistive technology-A powerful partnership. In S.L. Griffin &amp; W.G. Revell (Eds.), Rehabilitation counselor desktop guide to supported employment. Richmond, VA : Virginia Commonwealth University Rehabilitation Research and Training Center on Supported Employment.
16345
16346 * Lahm, E., &amp; Morrissette, S. (1994, April). Zap 'em with assistive technology. Paper presented at the annual meeting of The Council for Exceptional Children, Denver, CO.
16347
16348 * Lee, C. (1999). Learning disabilities and assistive technologies; an emerging way to touch the future. Amherst, MA: McGowan Publications.
16349
16350 * McKeown, S. (2000). Unlocking Potential - How ICT can support children with special needs. The Questions Publishing Company Ltd. ISBN 1841900419
16351
16352 * Nisbet, P. &amp; Poon, P. (1998). Special Access Technology. The CALL Centre, University of Edinburgh. Available as a free [http://callcentre.education.ed.ac.uk/About_CALL/Publications_CAA/Books_CAB/SAT_CAC/sat_cac.html download] The CALL Centre. ISBN 189804211X
16353
16354 * Nisbet, P., Spooner, R., Arthur, E. &amp; Whittaker P. (1999). Supportive Writing Technology. The CALL Centre, University of Edinburgh. Available as a free [http://callcentre.education.ed.ac.uk/About_CALL/Publications_CAA/Books_CAB/Supp_Writing_CAC/supp_writing_cac.html download] The CALL Centre. ISBN 1898042136
16355
16356 * Rose, D. &amp; Meyer, A. (2000). Universal design for individual differences. Educational Leadership, 58(3), 39-43.
16357
16358 * Orpwood, R. Design methodology for aids for the disabled. J Med Eng Technol. 1990 Jan-Feb;14(1):2-10. | [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=2342081&amp;itool=iconabstr&amp;query_hl=2 PubMed ID: 2342081]
16359
16360 * Adlam, T. et al. The installation and support of internationally distributed equipment for people with dementia.&quot; IEEE transactions on information technology in biomedicine (1089-7771) yr:2004 vol:8 iss:3 pg:253-257 | [http://ieeexplore.ieee.org/iel5/4233/29401/01331402.pdf download from IEEE (694k PDF)]
16361
16362 ==External links==
16363 * [http://www.afb.org/prodMain.asp Assistive Technology Product Database - American Foundation for the Blind]
16364 * [http://www.afb.org/accessworld AccessWorldÂŽ: Technology and People with Visual Impairments]
16365 * [http://www.ericdigests.org/1999-3/assistive.htm Integrating Assistive Technology into the Standard Curriculum]
16366 * [http://www.ericdigests.org/2003-1/assistive.htm Assistive Technology for Students with Mild Disabilities]
16367 * [http://www.ericdigests.org/1995-2/mild.htm Assistive Technology for Students with Mild Disabilities]
16368 * [http://www.inclusive.co.uk/infosite/snhome.shtml Inclusive Technology (Special Needs Articles and Information pages)]
16369
16370 === European organisations for assistive technology ===
16371 * [http://www.aaate.net/index.asp?auto-redirect=true&amp;accept-initial-profile=standard The Association for the Advancement of Assistive Technology in Europe (AAATE)]
16372
16373 === UK-based organisations for assistive technology ===
16374 * [http://www.aidis.org/ The Aidis Trust]
16375 * [http://www.dlf.org.uk/ The Disabled Living Foundation]
16376 * [http://www.abilitynet.org.uk/ AbilityNet]
16377 * [http://callcentre.education.ed.ac.uk/ The CALL Centre]
16378 * [http://www.communicationmatters.org.uk/ Communication Matters]
16379 * [http://www.fastuk.org/ FAST (Research and Development, Organisations, Events and Jobs)] including [http://www.fastuk.org/atforum.php Assistive Technology (AT) Forum]
16380 * [http://atp.nlb-online.org/Lessons/p_00.php National Library for the Blind (Access Technology Primer)]
16381 * [http://www.rnib.org.uk/technology RNIB (Technology Information Service)]
16382 * [http://www.rnid.org.uk/html/information/technology/home.htm RNID (Technology)]
16383 * [http://www.icesdoh.org/article.asp?page=156 UK Dept of Health page on telecare]
16384 * [http://www.ace-centre.org.uk/ The ACE Centres]
16385 * [http://www.bime.org.uk/ Bath Institute of Medical Engineering (BIME).] A medical engineering design and development charity.
16386
16387 === North American organizations for assistive technology ===
16388 * [http://www.resna.org/ Rehabilitation Engineering &amp; Assistive Technology Society of North America]
16389 * [http://www.abledata.com/ ABLEDATA Global database of AT and Rehab products]
16390 * [http://www.ataccess.org/ The Alliance for Technology Access]
16391 * [http://www.atia.org/ Assistive Technology Industry Association]
16392 * [http://www.fctd.info/ The Family Center on Technology and Disability]
16393
16394 [[Category:Accessibility]]
16395 [[Category:Assistive technology]]
16396 [[Category:disability]]
16397 [[Category:Educational technology]]
16398
16399 [[de:Hilfsmittel (Rehabilitation)]]</text>
16400 </revision>
16401 </page>
16402 <page>
16403 <title>Accessible computing</title>
16404 <id>654</id>
16405 <revision>
16406 <id>30764945</id>
16407 <timestamp>2005-12-09T23:02:07Z</timestamp>
16408 <contributor>
16409 <username>CLW</username>
16410 <id>346386</id>
16411 </contributor>
16412 <minor />
16413 <comment>[[:en:Wikipedia:Tools/Navigation_popups|Popups]]-assisted redirection bypass from [[Assistive Technology]] to [[Assistive_technology]]</comment>
16414 <text xml:space="preserve">'''Accessible computing''' covers
16415 * [[Assistive_technology|Assistive Technology]]
16416 * [[Accessible Software]]
16417 * [[Accessible Web]]
16418 * [[Legal Issues In Accessible Computing]]
16419 ** United States
16420 *** [[Private Lawsuits]]
16421 *** [[Section 508 Amendment to the Rehabilitation Act of 1973]]
16422
16423 {{compu-stub}}
16424
16425 [[Category:Accessibility]]
16426 [[Category:Assistive technology]]
16427 [[Category:Human-computer interaction]]</text>
16428 </revision>
16429 </page>
16430 <page>
16431 <title>Abacus</title>
16432 <id>655</id>
16433 <revision>
16434 <id>42021696</id>
16435 <timestamp>2006-03-03T07:12:11Z</timestamp>
16436 <contributor>
16437 <ip>203.113.67.71</ip>
16438 </contributor>
16439 <comment>th</comment>
16440 <text xml:space="preserve">{{about|the calculator|the flat slab at the top of a column|[[abacus (architecture)]]}}
16441 An '''abacus''' is a calculation tool, often constructed as a wooden frame with beads sliding on wires. It was in use centuries before the adoption of the written [[Hindu-Arabic numeral system]] and is still widely used by merchants and clerks in [[China]] and elsewhere.
16442
16443 The origins of the abacus are disputed, suggestions including invention in [[Babylonia]] and in [[China]], to have taken place between 2400 BC and 300 BC. The first abacus was almost certainly based on a flat stone covered with sand or dust. Lines were drawn in the sand and pebbles used to aid calculations. From this, a variety of abaci were developed; the most popular were based on the bi-quinary system, using a combination of two bases (base-2 and base-5) to represent decimal numbers
16444
16445 The use of the word ''abacus'' dates back to before 1387 when a [[Middle English]] work borrowed the word from [[Latin]] to describe a sandboard abacus. The Latin word came from ''abakos'', the [[Greek language|Greek]] [[Genitive case|genitive form]] of ''abax'' (&quot;calculating-table&quot;). Because ''abax'' also had the sense of &quot;table sprinkled with sand or dust, used for drawing geometric figures,&quot; it is speculated by some linguists that the Greek word may be derived from a [[Semitic languages|Semitic]] [[Root (philology)|root]], ''ābāq'', the [[Hebrew language|Hebrew]] word for &quot;dust.&quot; Though details of the transmission are obscure, it may also be derived from the [[Phoenician]] word ''abak'', meaning &quot;sand&quot;. The plural of abacus is abaci.
16446
16447 == Babylonian abacus ==
16448 {{Main|Babylonian abacus}}
16449 A tablet found on the island of Salamis (near Greece) in 1846 dates back to the Babylonians of 300 BC making it the oldest counting board discovered so far. It was originally thought to be a gaming board.
16450
16451 Its construction is a slab of white marble measuring 149cm in length, 75cm in width and 4.5cm thick, on which are 5 groups of markings. In the center of the tablet are a set of 5 parallel lines equally divided by a vertical line, capped with a semi-circle at the intersection of the bottom-most horizontal line and the single vertical line. Below these lines is a wide space with a horizontal crack dividing it. Below this crack is another group of eleven parallel lines, again divided into two sections by a line perpendicular to them but with the semi-circle at the top of the intersection; the third, sixth and ninth of these lines are marked with a cross where they intersect with the vertical line.
16452
16453 == Roman abacus ==
16454 {{Main|Roman abacus}}
16455 [[image:RomanAbacusRecon.jpg|right|Reconstruction of Roman Abacus]]
16456 &lt;!-- This image is a 2004 photograph of the Mainz reconstruction of the
16457 original in the Paris Library. It gives a much clearer picture that the
16458 device is not beads on wires than the drawing used in this entry earlier.
16459 If we are only allowed one image then this is the better to use.
16460 [[User:Mfc|mfc]] --&gt;
16461
16462 The [[Roman Empire|Late Empire]] [[Roman abacus]] shown here in reconstruction contains eight long and eight shorter grooves, the former having up to five beads in each and the latter one.
16463
16464 The groove marked I indicates units, X tens, and so on up to millions. The beads in the shorter grooves denote fives&amp;mdash;five units, five tens, ''etc.'', essentially in a [[bi-quinary coded decimal]] system, obviously related to the [[Roman numerals]]. The short grooves on the right may have been used for marking Roman ounces.
16465
16466 Computations are made by means of beads which would probably have been slid up and down the grooves to indicate the value of each column.
16467
16468 ==Chinese abacus==
16469 {{Main|Chinese abacus}}
16470 The '''suanpan''' ({{zh-stp|s=&amp;#31639;&amp;#30424;|t=&amp;#31639;&amp;#30436;|p=su&amp;agrave;np&amp;aacute;n}}) of the [[China|Chinese]] is similar to the Roman abacus in principle, though has a different construction, and it was designed to do both decimal and hexadecimal arithmetics.
16471
16472 [[image:abacus_6.png|right|Chinese abacus, the suanpan]]
16473 The Chinese abacus is typically around 20 cm (8 inches) tall and it comes in various widths depending on the application. It usually has more than seven rods. There are two beads on each rod in the upper deck and five beads each in the bottom for both decimal and hexadecimal computation. The beads are usually rounded and made of a hard wood. The beads are counted by moving them up or down towards the beam. The abacus can be reset to the starting position instantly by a quick jerk along the horizontal axis to spin all the beads away from the horizontal beam at the center.
16474
16475 Chinese abaci can be used for functions other than counting. Unlike the simple counting board used in elementary schools, very efficient suanpan techniques have been developed to do [[multiplication]], [[division (mathematics)|division]], [[addition]], [[subtraction]], [[square root]] and [[cube root]] operations at high speed.
16476
16477 '''Bead arithmetic''' is the calculating technique used with various types of abaci, in particular the Chinese abacus.
16478
16479 == Japanese abacus (Soroban) ==
16480 The Japanese eliminated (first) one bead from the upper deck and (later) another bead from the lower deck in each column of the Chinese abacus. The Japanese also eliminated the use of Qiuchu (Chinese division table). The method of Chinese division table was still used when there were 5 lower beads. There came the war of the Multiplication Table versus the Division Table. The school of Multiplication table prevailed in 1920s. The rods (number of digits) increase to usually 21, 23, 27 or even 31, thus allowing calculation for more digits.
16481
16482 Soroban is taught in elementary schools as a part of lessons in mathematics. When teaching the soroban, a song-like instruction is given by the tutor. The soroban is about 8 cm (3 inches) tall. The beads on a soroban are usually shaped as a double cone (bi-cone) to facilitate ease of movement.
16483
16484 Often, primary students may bring along with them two sorobans, one with 1 upper bead and 5 lower beads, the other with 1 upper bead with 4 lower beads, when they learn soroban in school.
16485
16486 The size of beads of soroban is standardized, and they come in two types: the &quot;Japanese&quot; classified soroban for native Japanese, and a separate size for foreigners (since Westerners tend to be larger than most Japanese, and therefore have larger hands and fingers). The soroban that are for foreigners are made with a plastic pipe on both the left and right side of the frame, while ones made for native Japanese were all made with wooden frames. In this way the &quot;thickness&quot; of the soroban (for foreigners) is higher, rendering it easier for the non-Japanese to manipulate.
16487
16488
16489
16490 &lt;center&gt;[[Image:Soroban.JPG|none|thumb|400px|Japanese soroban]]&lt;/center&gt;
16491
16492 == Russian abacus ==
16493 [[Image:Schoty_abacus.jpg|thumb|Russian abacus]]
16494 The Russian abacus, the [[schoty]] or sjotty (&amp;#1089;&amp;#1095;&amp;#1105;&amp;#1090;&amp;#1099;), usually has a single slanted deck, with ten beads on each wire (except one wire which has four, and acts as a separator or for fractions). This wire is usually near the user. The Russian abacus is often used vertically, with wires from left to right in the manner of a book. The wires are usually bowed to bulge upward in the center, in order to keep the beads pinned to either of the two sides. It is cleared when all the beads are moved to the right. During manipulation, beads are moved to the left. For easy viewing, the middle 2 beads on each wire (the 5th and 6th bead) usually have a colour different to the other 8 beads. Likewise, the left bead of the thousands wire (and the million wire, if present) may have a different color.
16495
16496 The Russian abacus is still in common use today in shops and markets throughout the [[Commonwealth of Independent States|former Soviet Union]], although it is no longer taught in most schools.
16497
16498 == School abacus ==
16499 [[Image:Kugleramme.jpg|right|150px|thumb|School abacus used in Danish elementary school. Early 20th century.]]
16500
16501 Around the world, abaci have been used in pre-schools and elementary schools as an aid in teaching arithmetics. In Western countries, a '''bead frame''' similar to the Russian abacus but with straight wires has been common (see image). It is still often seen as a plastic or wooden toy.
16502
16503 == Uses by the visually impaired ==
16504 Abaci are still commonly used by individuals who have [[blindness|visual impairments]]. They use an abacus to perform the mathematical functions [[multiplication]], [[division (mathematics)|division]], [[addition]], [[subtraction]], [[square root]] and [[cubic root]]. A piece of soft fabric or rubber is placed behind the beads so that they don't move inadvertently. This keeps the beads in place while the user feels or manipulates them.
16505
16506 Recently, abaci have been replaced to some extent by electronic calculators with speech, but only in those countries where they are easily available and affordable. However, even when they are available, many visually impaired people still prefer to use the abacus. In addition, many blind children are required to learn how to use the abacus before they are permitted the use of a talking calculator or similar device. This can be compared to sighted children being required to learn how to solve mathematical problems on paper before they are allowed the use of a calculator.
16507
16508 == Native American abacus ==
16509 Some sources mention the use of an abacus called a ''Nepohualtzintzin'' in ancient Mayan culture. This Mesoamerican abacus uses the 5-digit base-20 [[Mayan numerals|Mayan numeral]] system.
16510
16511 The [[khipu]] of the [[Inka]]s was a system of knotted cords used to record numerical data - like advanced [[tally stick]]s&amp;mdash;but was not used to perform calculations.
16512
16513 == See also ==
16514 * [[Chisenbop]]
16515 * [[Slide rule]]
16516 * [[Napier's bones]]
16517 * [[History of computing]]
16518 * [[History of computing hardware]]
16519 * [[Abacus logic]]
16520 * [[Abacus system | Mental abacus]]
16521 * [[Positional notation]]
16522
16523 ==External links==
16524 {{Wikisource1911Enc|Abacus}}
16525 {{Commons|Abacus}}
16526
16527 ===General and historical articles===
16528 *[http://www.abacus.ca/abacus-images.php Abacus Photos and Images]
16529 *[http://www.ee.ryerson.ca/~elf/abacus/ Abacus]
16530 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/secondary/SMIGRA*/Abacus.html#4 Roman abacus]
16531
16532 ===Tutorials===
16533 &lt;!-- in alphabetical order by author --&gt;
16534 * [http://www.gis.net/~daveber/Abacus/Abacus.htm Bernazzani's Soroban Abacus Handbook]
16535 * [http://www.minmm.com/minc/show_classes.php?id=273 Min Multimedia]
16536 * [http://www.sungwh.freeserve.co.uk/sapienti/abacus01.htm Suan Pan]
16537 * [http://webhome.idirect.com/~totton/abacus/ Abacus: Mystery of the Bead - an Abacus Manual]
16538
16539 ===Abacus curiosities===
16540 * [http://www.cut-the-knot.org/blue/Abacus.shtml Abacus in Various Number Systems] at [[cut-the-knot]]
16541 *[http://www.tux.org/~bagleyd/abacus.html Java applet of Chinese, Japanese and Russian abaci]
16542 *[http://www.research.ibm.com/atomic/nano/roomtemp.html An atomic-scale abacus]
16543
16544 [[Category:Ancient Rome]]
16545 [[Category:Mathematical tools]]
16546 [[Category:Mechanical calculators]]
16547
16548 [[af:Abakus]]
16549 [[ar:ØŖباŲƒŲˆØŗ]]
16550 [[be:АйаĐē]]
16551 [[ca:Àbac]]
16552 [[cs:Abakus]]
16553 [[da:Abacus (regnemaskine)]]
16554 [[de:Abakus (Rechentafel)]]
16555 [[el:ΆβαÎēÎąĪ‚]]
16556 [[es:Ábaco]]
16557 [[eo:Abako]]
16558 [[fa:Ú†ØąØĒÚŠŲ‡]]
16559 [[fr:Boulier]]
16560 [[gl:Ábaco]]
16561 [[ia:Abaco]]
16562 [[it:Abaco]]
16563 [[he:חשבונייה]]
16564 [[hu:Abakusz]]
16565 [[nah:Nepohualtzintzin]]
16566 [[nl:Abacus]]
16567 [[ja:そろばん]]
16568 [[pl:Abakus (liczydło)]]
16569 [[pt:Ábaco]]
16570 [[ru:АйаĐē]]
16571 [[sl:Abak]]
16572 [[fi:Helmitaulu]]
16573 [[sv:Abakus]]
16574 [[tl:Abakus]]
16575 [[ta:āŽŽāŽŖā¯āŽšāŽŸā¯āŽŸāŽŽā¯]]
16576 [[th:ā¸Ĩā¸šā¸ā¸„ā¸´ā¸”]]
16577 [[tr:AbakÃŧs]]
16578 [[zh:įŽ—į›˜]]</text>
16579 </revision>
16580 </page>
16581 <page>
16582 <title>Acid</title>
16583 <id>656</id>
16584 <revision>
16585 <id>42117662</id>
16586 <timestamp>2006-03-03T23:03:46Z</timestamp>
16587 <contributor>
16588 <username>Hashbrowncipher</username>
16589 <id>592332</id>
16590 </contributor>
16591 <comment>Replaced false arab etymology</comment>
16592 <text xml:space="preserve">{{mergefrom|strong acid}}
16593 {{Acids and Bases}}
16594 {{otheruses}}
16595 {{For|the cyber novellete by Nadeem Parachee|Acidity (Novelette)}}
16596
16597 An '''acid''' (often represented by the generic formula '''HA''') is a water-soluble, sour-tasting [[chemical compound]] that when dissolved in [[water]], gives a solution with a [[pH]] of less than 7.
16598
16599 == Definitions of acids and bases ==
16600
16601 The word &quot;acid&quot; comes from the [[Latin]] ''acidus'' meaning &quot;sour&quot;, but in [[chemistry]] the term acid has a more specific meaning. There are three common [[Acid-base reaction theories|ways to define an acid]], namely, the '''Arrhenius''', the '''Brønsted-Lowry''' and the '''Lewis''' definitions, in order of increasing generality.
16602
16603 * '''Arrhenius''': According to this definition, an acid is a substance that increases the concentration of hydronium ion (H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;) when dissolved in water, while bases are substances that increase the concentration of hydroxide ions (OH&lt;sup&gt;-&lt;/sup&gt;). This definition limits acids and bases to substances that can dissolve in water. Around 1800, many [[France|French]] chemists, including [[Antoine Lavoisier]], incorrectly believed that all acids contained [[oxygen]]. [[England|English]] chemists, including [[Sir Humphry Davy]] at the same time believed all acids contained hydrogen. The [[Sweden|Swedish]] chemist [[Svante Arrhenius]] used this belief to develop this definition of acid.
16604
16605 * '''Brønsted-Lowry''': According to this definition, an acid is a [[proton]] donor and a base is a proton acceptor. The acid is said to be dissociated after the proton is donated. An acid and the corresponding base are referred to conjugate acid-base pairs. [[Johannes Nicolaus Brønsted|Brønsted]] and [[Martin Lowry|Lowry]] formulated this definition, which includes water-insoluble substances not in the Arrhenius definition.
16606
16607 * '''Lewis''': According to this definition, an acid as an electron-pair acceptor and a base is an electron-pair donor. (These are frequently referred to as &quot;[[Lewis acid]]s&quot; and &quot;[[Lewis base]]s,&quot; and are [[electrophile]]s and [[nucleophile]]s in [[organic chemistry]]). Lewis acids include substances with no [[protons]], such as [[iron(III) chloride]]. The Lewis definition can also be explained with [[molecular orbital]] theory. In general, an acid can receive an electron pair in its lowest unoccupied orbital ([[LUMO]]) from the highest occupied orbital ([[HOMO]]) of a base. That is, the HOMO from the base and the LUMO from the acid combine to a bonding [[molecular orbital]]. This definition was developed by [[Gilbert N. Lewis]].
16608
16609 Although not the most general theory, the Brønsted-Lowry definition is the most widely used definition. The strength of an acid may be understood by this defintion by the stability of [[hydronium]] and the solvated conjugate base upon dissociation. Increasing stability of the the conjugate base will increase the acidity of a compound. This concept of acidity is used frequently for organic acids such as [[carboxylic acid]]. The molecular orbital description, where the unfilled proton orbital overlaps with a lone pair, is connected to the Lewis definition.
16610
16611 Solutions of weak acids and salts of their conjugate bases form [[buffer solution]]s.
16612
16613 Acid/base systems are different from [[redox]] reactions in that there is no change in oxidation state.
16614
16615 Generally, acids have the following chemical and physical properties:
16616 * '''Taste''': Acids generally are sour when dissolved in water.
16617 * '''Touch''': Acids produce a stinging feeling, particularly strong acids.
16618 * '''Reactivity''': Acids react aggressively with or corrode most [[metal]]s.
16619 * '''Electrical conductivity''': Acids are [[electrolyte]]s.
16620
16621 [[Strong acid]]s are dangerous, causing severe burns for even minor contact. Generally, acid burns are treated by rinsing the affected area abundantly with water and followed up with immediate medical attention.
16622
16623 == Nomenclature ==
16624
16625 Acids are named according to the ending of their [[anion]]. That ionic ending is dropped and replaced with a new suffix according to the table below. For example, HCl has chloride as its anion, so the -ide suffix makes it take the form hydrochloric acid.
16626 {| border=&quot;1&quot; cellpadding=&quot;4&quot; align=&quot;center&quot; cellspacing=&quot;0&quot; style=&quot;background: #f9f9f9; color: black; border: 1px #aaa solid; border-collapse: collapse;&quot;
16627 !Anion Ending
16628 !Acid Prefix
16629 !Acid Suffix
16630 |-
16631 |per-anion-ate
16632 |per
16633 |ic acid
16634 |-
16635 |ate
16636 |
16637 |ic acid
16638 |-
16639 |ite
16640 |
16641 |ous acid
16642 |-
16643 |hypo-anion-ite
16644 |hypo
16645 |ous acid
16646 |-
16647 |ide
16648 |Hydro
16649 |ic acid
16650 |}
16651
16652
16653 == Chemical characteristics ==
16654
16655 In water the following [[Chemical equilibrium|equilibrium]] occurs between an acid (HA) and water, which acts as a base:
16656
16657 HA(aq) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + A&lt;sup&gt;-&lt;/sup&gt;(aq)
16658
16659 The [[acidity constant]] (or acid dissociation constant) is the equilibrium constant for the reaction of HA with water:
16660
16661 :&lt;math&gt;K_a = {[\mbox{H}_3\mbox{O}^+]\cdot[A^-] \over [HA]}&lt;/math&gt;
16662
16663 [[Strong acid]]s have large ''K''&lt;sub&gt;a&lt;/sub&gt; values (i.e. the reaction equilibrium lies far to the right; the acid is almost completely dissociated to H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt; and A&lt;sup&gt;-&lt;/sup&gt;). Strong acids include the heavier [[hydrohalic acid]]s: [[hydrochloric acid]] (HCl), [[hydrobromic acid]] (HBr), and [[hydroiodic acid]] (HI). (However, [[hydrofluoric acid]], HF, is relatively weak.) For example, the ''K''&lt;sub&gt;a&lt;/sub&gt; value for [[hydrochloric acid]] (HCl) is 10&lt;sup&gt;7&lt;/sup&gt;.
16664
16665 [[Weak acid]]s have small ''K''&lt;sub&gt;a&lt;/sub&gt; values (i.e. at equilibrium significant amounts of HA and A&lt;sup&gt;&amp;minus;&lt;/sup&gt; exist together in solution; modest levels of H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt; are present; the acid is only partially dissociated). For example, the K&lt;sub&gt;a&lt;/sub&gt; value for acetic acid is 1.8 x 10&lt;sup&gt;-5&lt;/sup&gt;. Most organic acids are weak acids. [[Oxoacid]]s, which tend to contain central atoms in high oxidation states surrounded by oxygen may be quite strong or weak. [[Nitric acid]], [[sulfuric acid]], and [[perchloric acid]] are all strong acids, whereas [[nitrous acid]], [[sulfurous acid]] and [[hypochlorous acid]] are all weak.
16666
16667 Note the following:
16668 * The terms &quot;[[hydrogen]] ion&quot; and &quot;proton&quot; are used interchangebly; both refer to H&lt;sup&gt;+&lt;/sup&gt;.
16669 * In aqueous solution, the water is protonated to form [[hydronium]] ion, H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq). This is often abbreviated as H&lt;sup&gt;+&lt;/sup&gt;(aq) even though the symbol is not chemically correct.
16670 * The strength of an acid is measured by its [[acid dissociation constant]] (''K''&lt;sub&gt;a&lt;/sub&gt;) or equivalently its p''K''&lt;sub&gt;a&lt;/sub&gt; (p''K''&lt;sub&gt;a&lt;/sub&gt;= - log(''K''&lt;sub&gt;a&lt;/sub&gt;).
16671 * The [[pH]] of a solution is a measurement of the concentration of [[hydronium]]. This will depend of the concnetration and nature of acids and bases in solution.
16672
16673 === Polyprotic acids ===
16674
16675 [[Polyprotic]] acids are able to donate more than one proton per acid molecule, in contrast to monoprotic acids that only donate one proton per molecule. Specific types of polyprotic acids have more specific names, such as '''diprotic acid''' (two potenital protons to donate) and '''triprotic acid''' (three potenital protons to donate)
16676
16677 A monoprotic acid can undergo one [[dissociation]] (sometimes called ionization) as follows and simply has one acid dissociation constant as shown above:
16678
16679 :::::HA(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + A&lt;sup&gt;&amp;minus;&lt;/sup&gt;(aq) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ''K''&lt;sub&gt;a&lt;/sub&gt;
16680
16681
16682 A diprotic acid (here symbolized by H&lt;sub&gt;2&lt;/sub&gt;A) can undergo one or two dissociations depending on the pH. Each dissociation has its own dissociation constant, K&lt;sub&gt;a1&lt;/sub&gt; and K&lt;sub&gt;a2&lt;/sub&gt;.
16683
16684 :::::H&lt;sub&gt;2&lt;/sub&gt;A(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + HA&lt;sup&gt;&amp;minus;&lt;/sup&gt;(aq) &amp;nbsp; &amp;nbsp; &amp;nbsp; ''K''&lt;sub&gt;a1&lt;/sub&gt;
16685
16686 :::::HA&lt;sup&gt;&amp;minus;&lt;/sup&gt;(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + A&lt;sup&gt;2&amp;minus;&lt;/sup&gt;(aq)&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; ''K''&lt;sub&gt;a2&lt;/sub&gt;
16687
16688 The first dissociation constant is typically greater than the second; i.e., ''K''&lt;sub&gt;a1&lt;/sub&gt; &gt; ''K''&lt;sub&gt;a2&lt;/sub&gt; . For example, [[sulfuric acid]] (H&lt;sub&gt;2&lt;/sub&gt;SO&lt;sub&gt;4&lt;/sub&gt;) can donate one proton to form the [[bisulfate]] anion (HSO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;&amp;minus;&lt;/sup&gt;), for which ''K''&lt;sub&gt;a1&lt;/sub&gt; is very large; then it can donate a second proton to form the [[sulfate]] anion (SO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;2&amp;minus;&lt;/sup&gt;), wherein the ''K''&lt;sub&gt;a2&lt;/sub&gt; is intermediate strength. The large ''K''&lt;sub&gt;a1&lt;/sub&gt; for the first dissociation makes sulfuric a strong acid. In a similar manner, the weak unstable [[carbonic acid]] (H&lt;sub&gt;2&lt;/sub&gt;CO&lt;sub&gt;3&lt;/sub&gt;) can lose one proton to form [[bicarbonate]] anion (HCO&lt;sub&gt;3&lt;/sub&gt;&lt;sup&gt;&amp;minus;&lt;/sup&gt;) and lose a second to form [[carbonate]] anion (CO&lt;sub&gt;3&lt;/sub&gt;&lt;sup&gt;2&amp;minus;&lt;/sup&gt;). Both ''K''&lt;sub&gt;a&lt;/sub&gt; values are small, but ''K''&lt;sub&gt;a1&lt;/sub&gt; &gt; ''K''&lt;sub&gt;a2&lt;/sub&gt; .
16689
16690
16691 A triprotic acid (H&lt;sub&gt;3&lt;/sub&gt;A) can undergo one, two, or three dissociations and has three dissociation constants, where ''K''&lt;sub&gt;a1&lt;/sub&gt; &gt; ''K''&lt;sub&gt;a2&lt;/sub&gt; &gt; ''K''&lt;sub&gt;a3&lt;/sub&gt; .
16692
16693 :::::H&lt;sub&gt;3&lt;/sub&gt;A(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + H&lt;sub&gt;2&lt;/sub&gt;A&lt;sup&gt;&amp;minus;&lt;/sup&gt;(aq) &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; ''K''&lt;sub&gt;a1&lt;/sub&gt;
16694
16695 :::::H&lt;sub&gt;2&lt;/sub&gt;A&lt;sup&gt;&amp;minus;&lt;/sup&gt;(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + HA&lt;sup&gt;2&amp;minus;&lt;/sup&gt;(aq) &amp;nbsp; &amp;nbsp; &amp;nbsp; ''K''&lt;sub&gt;a2&lt;/sub&gt;
16696
16697 :::::HA&lt;sup&gt;2&amp;minus;&lt;/sup&gt;(aq) + H&lt;sub&gt;2&lt;/sub&gt;O(l) {{unicode|&amp;#8652;}} H&lt;sub&gt;3&lt;/sub&gt;O&lt;sup&gt;+&lt;/sup&gt;(aq) + A&lt;sup&gt;3&amp;minus;&lt;/sup&gt;(aq) &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ''K''&lt;sub&gt;a3&lt;/sub&gt;
16698
16699 An [[inorganic]] example of a triprotic acid is orthophosphoric acid (H&lt;sub&gt;3&lt;/sub&gt;PO&lt;sub&gt;4&lt;/sub&gt;), usually just called [[phosphoric acid]]. All three protons can be successively lost to yield H&lt;sub&gt;2&lt;/sub&gt;PO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;&amp;minus;&lt;/sup&gt;, then HPO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;2&amp;minus;&lt;/sup&gt;, and finally PO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;3&amp;minus;&lt;/sup&gt; , the orthophosphate ion, usually just called [[phosphate]]. An [[Organic compound|organic]] example of a triprotic acid is [[citric acid]], which can successively lose three protons to finally form the [[citrate]] ion. Even though the positions of the protons on the original molecule may be equivalent, the successive ''K''&lt;sub&gt;a&lt;/sub&gt; values will differ since it is energetically less favorable to lose a proton if the conjugate base is more negatively charged.
16700
16701 == Neutralization ==
16702
16703 [[Neutralization]] is the reaction between equal amounts of an acid and a base, producing a [[salt]] and [[water (molecule)|water]]; for example, hydrochloric acid and sodium hydroxide form sodium chloride and water:
16704
16705 ::HCl(aq) + NaOH(aq) -&gt; H&lt;sub&gt;2&lt;/sub&gt;O(l) + NaCl(aq)
16706
16707 Neutralization is the basis of [[titration]], where a [[PH indicator|pH indicator]] shows equivalence point when the equivalent number of moles of a base have been added to an acid.
16708
16709
16710 == Common acids ==
16711
16712 === Strong inorganic acids ===
16713
16714 * [[Hydrobromic acid]]
16715 * [[Hydrochloric acid]]
16716 * [[Hydroiodic acid]]
16717 * [[Nitric acid]]
16718 * [[Sulfuric acid]]
16719 * [[Perchloric acid]]
16720
16721 === Medium to weak inorganic acids ===
16722
16723 * [[Boric acid]]
16724 * [[Carbonic acid]]
16725 * [[Chloric acid]]
16726 * [[Hydrofluoric acid]]
16727 * [[Phosphoric acid]]
16728 * [[Pyrophosphoric acid]]
16729
16730 ===Weak [[organic acid]]s===
16731
16732 * [[Acetic acid]]
16733 * [[Benzoic acid]]
16734 * [[Butyric acid]]
16735 * [[Citric acid]]
16736 * [[Formic acid]]
16737 * [[Lactic acid]]
16738 * [[Malic acid]]
16739 * [[Mandelic acid]]
16740 * [[Methanethiol]]
16741 * [[Propionic acid]]
16742 * [[Pyruvic acid]]
16743 * [[Valeric acid]]
16744
16745 == Acids in food ==
16746
16747 * '''[[Acetic acid]]''': (E260) found in [[vinegar]]
16748 * '''[[Adipic acid]]''': (E355)
16749 * '''[[Alginic acid]]''': (E400)
16750 * '''[[Ascorbic acid]]''' (vitamin C): (E300) found in fruits
16751 * '''[[Benzoic acid]]''': (E210)
16752 * '''[[Boric acid]]''': (E284)
16753 * '''[[Citric acid]]''': (E330) found in [[citrus fruits]]
16754 * '''[[Carbonic acid]]''': (E290) found in [[carbonation|carbonated]] [[soft drink]]s
16755 * '''[[Carminic acid]]''': (E120)
16756 * '''[[Cyclamic acid]]''': (E952)
16757 * '''[[Erythorbic acid]]''': (E315)
16758 * '''[[Erythorbin acid]]''': (E317)
16759 * '''[[Formic acid]]''': (E236)found in bee and ant stings
16760 * '''[[Fumaric acid]]''': (E297)
16761 * '''[[Gluconic acid]]''': (E574)
16762 * '''[[Glutamic acid]]''': (E620)
16763 * '''[[Guanylic acid]]''': (E626)
16764 * '''[[Hydrochloric acid]]''': (E507)
16765 * '''[[Inosinic acid]]''': (E630)
16766 * '''[[Lactic acid]]''': (E270) found in [[dairy products]] such as [[yoghurt]] and sour [[milk]], also is product of [[cellular fermentation]], the reason muscles burn
16767 * '''[[Malic acid]]''': (E296)
16768 * '''[[Metatartaric acid]]''': (E353)
16769 * '''[[Methanethiol]]''': found in cheese and some other fermented foods.
16770 * '''[[Niacin]]''' (nicotinic acid): (E375)
16771 * '''[[Oxalic acid]]''': found in [[spinach]] and [[rhubarb]]
16772 * '''[[Pectic acid]]''': found in fruits and some vegetables
16773 * '''[[Phosphoric acid]]''': (E338)
16774 * '''[[Propionic acid]]''': (E280)
16775 * '''[[Sorbic acid]]''': (E200) found in foods and drinks
16776 * '''[[Stearic acid]]''': (E570), a type of [[fatty acid]].
16777 * '''[[Succinic acid]]''': (E363)
16778 * '''[[Sulfuric acid]]''': (E513)
16779 * '''[[Tannic acid]]''': found in [[tea]]
16780 * '''[[Tartaric acid]]''': (E334) found in [[grapes]]
16781
16782 == Sources ==
16783
16784 * [http://www.csudh.edu/oliver/chemdata/data-ka.htm Listing of strengths of common acids and bases]
16785 * Zumdahl, Chemistry, 4th Edition.
16786
16787 == See also==
16788 * [[acid number]]
16789
16790 [[Category:Chemical substances]]
16791 [[Category:Acids|*]]
16792 [[Category:Arabic words]]
16793
16794 &lt;!-- interwiki --&gt;
16795
16796 [[bg:КиŅĐĩĐģиĐŊĐ°]]
16797 [[ca:Àcid]]
16798 [[cs:Kyselina]]
16799 [[da:Syre]]
16800 [[de:Säuren]]
16801 [[et:Hape]]
16802 [[es:Ácido]]
16803 [[eo:Acido]]
16804 [[fr:Acide]]
16805 [[gl:Ácido]]
16806 [[ko:ė‚° (화학)]]
16807 [[hr:Kiseline]]
16808 [[io:Acido]]
16809 [[id:Asam]]
16810 [[it:Acido]]
16811 [[he:חומ×Ļה]]
16812 [[lv:Skābe]]
16813 [[lt:RÅĢgÅĄtis]]
16814 [[hu:Sav]]
16815 [[mk:КиŅĐĩĐģиĐŊĐ°]]
16816 [[nl:Zuur (chemie)]]
16817 [[nds:SÃŧÃŧr]]
16818 [[ja:é…¸ã¨åĄŠåŸē]]
16819 [[pl:Kwas]]
16820 [[pt:Ácido]]
16821 [[ro:Acid]]
16822 [[ru:КиŅĐģĐžŅ‚Ņ‹]]
16823 [[simple:Acid]]
16824 [[sk:Kyselina]]
16825 [[sl:Kislina]]
16826 [[sr:КиŅĐĩĐģиĐŊĐ°]]
16827 [[sv:Syra]]
16828 [[tl:Asido]]
16829 [[ta:āŽ…āŽŽāŽŋāŽ˛āŽŽā¯]]
16830 [[th:ā¸ā¸Ŗā¸”]]
16831 [[vi:Axít]]
16832 [[uk:КиŅĐģĐžŅ‚Đ°]]
16833 [[zh:酸]]</text>
16834 </revision>
16835 </page>
16836 <page>
16837 <title>Asphalt</title>
16838 <id>657</id>
16839 <revision>
16840 <id>42066690</id>
16841 <timestamp>2006-03-03T16:08:10Z</timestamp>
16842 <contributor>
16843 <username>DonSiano</username>
16844 <id>215548</id>
16845 </contributor>
16846 <comment>add ref</comment>
16847 <text xml:space="preserve">''The term '''asphalt''' is often used as an abbreviation for [[asphalt concrete]].''
16848
16849 '''Asphalt''' is a sticky, black and highly [[viscosity|viscous]] liquid or semi-solid that is present in most crude [[petroleum]]s and in some natural deposits. Asphalt is composed almost entirely of [[bitumen]]. There is some disagreement amongst [[chemist]]s regarding the structure of asphalt, however it is most commonly modeled as a [[colloid]], with ''asphaltenes'' as the dispersed phase and ''maltenes'' as the continuous phase.
16850
16851 Asphalt is sometimes confused with [[tar]], which is an artificial material produced by the [[destructive distillation]] of [[organic matter]]. Tar is also predominantly composed of bitumen, however the bitumen content of tar is typically lower than that of asphalt. Tar and asphalt have very different engineering properties.
16852
16853 Asphalt can be separated from the other components in crude oil (such as [[naphtha]], [[gasoline]] and [[diesel]]) by the process of [[fractional distillation]], usually under [[vacuum]] conditions. A better separation can be achieved by further processing of the heavier fractions of the crude oil in a [[de-asphalting unit]] which uses either [[propane]] or [[butane]] in a [[Supercritical fluid|supercritical]] phase to dissolve the lighter molecules which are then separated. Further processing is possible by &quot;blowing&quot; the product: namely reacting it with [[oxygen]]. This makes the product harder and more viscous.
16854
16855 Natural deposits of asphalt include Lake Asphalts (primarily from the [[Pitch Lake]] in [[Trinidad and Tobago]] and [[Bermudez Lake]] in [[Venezuela]]), [[Gilsonite]], the [[Dead Sea]] in [[Israel]], and [[Tar Sands]].
16856
16857 Asphalt is rather hard to transport in bulk (it hardens unless kept very hot) so it is sometimes mixed with [[diesel oil]] or [[kerosene]] before shipping. Upon delivery, these lighter materials are separated out of the mixture. This mixture is often called '''bitumen feedstock''', or BFS.
16858
16859 The largest use of asphalt is for making [[asphalt concrete]] for [[Pavement (material)|pavement]]s, which accounts for approximately 80% of the asphalt consumed in the [[United States]]. [[Roof]]ing [[shingle]]s account for most of the remaining asphalt consumption. Other uses include [[cattle spray]]s, fence post treatments, and waterproofing for fabrics.
16860
16861 In the ancient [[middle-east]] natural asphalt deposits were used for [[mortar (masonry)| mortar]] between bricks and stones, ship [[caulking | caulk]], and waterproofing. The [[Persian language | Persian]] word for asphalt is ''mumiya'', which may be the source for the English word [[mummy]].
16862 ==References==
16863 Barth, Edwin J., ''Asphalt: Science and Technology'' Gordon and Breach (1962). ISBN 0677000405.
16864 ==External links==
16865 *[http://www.biffvernon.freeserve.co.uk/black_stuff.htm Black Stuff]
16866 *[http://www.hawaiiasphalt.com/HAPI Hawaii Asphalt Pavement Guide]
16867
16868 [[Category:Petroleum products]]
16869 [[Category:Construction]]
16870 [[Category:Pavements]]
16871
16872 [[de:Asphalt]]
16873 [[es:Asfalto]]
16874 [[fr:Asphalte]]
16875 [[id:Aspal]]
16876 [[he:אספלט]]
16877 [[nl:Asfalt]]
16878 [[ja:ã‚ĸã‚šãƒ•ã‚ĄãƒĢト]]
16879 [[pl:Asfalt]]
16880 [[pt:Asfalto]]
16881 [[ru:АŅŅ„Đ°ĐģŅŒŅ‚]]
16882 [[sv:Asfalt]]
16883 [[fi:Asvaltti]]
16884 [[vi:Nháģąa đưáģng]]</text>
16885 </revision>
16886 </page>
16887 <page>
16888 <title>Acronym</title>
16889 <id>658</id>
16890 <revision>
16891 <id>15899185</id>
16892 <timestamp>2004-09-29T01:43:26Z</timestamp>
16893 <contributor>
16894 <username>Nohat</username>
16895 <id>13661</id>
16896 </contributor>
16897 <comment>redirect</comment>
16898 <text xml:space="preserve">#REDIRECT [[Acronym and initialism]]</text>
16899 </revision>
16900 </page>
16901 <page>
16902 <title>American National Standards Institute</title>
16903 <id>659</id>
16904 <revision>
16905 <id>41941782</id>
16906 <timestamp>2006-03-02T19:57:03Z</timestamp>
16907 <contributor>
16908 <username>Bluebot</username>
16909 <id>527862</id>
16910 </contributor>
16911 <comment>title =&gt; bold text + clean up using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
16912 <text xml:space="preserve">The '''American National Standards Institute''' (ANSI) is a nonprofit organization that oversees the development of standards for products, services, processes and systems in the United States. The organization also coordinates U.S. standards with international standards so that American products can be used worldwide. For example, standards make sure that people who own cameras can find the film they need for them anywhere around the globe.
16913
16914 The American National Standards Institute approves standards that are developed by representatives of standards developing organizations, government agencies, consumer groups, companies, and others. These standards make sure that the characteristics and performance of products are consistent, that people use the same definitions and terms, and that products are tested the same way.
16915
16916 ANSI accredits organizations that carry out product or personnel certification in accordance with requirements defined in international standards. The ANSI accreditation programs conform to international guidelines as verified by government and peer review assessments.
16917
16918 In 1918, five engineering societies and three government agencies founded the American Engineering Standards Committee (AESC). The AESC became the American Standards Association (ASA) in 1928. In 1966, the ASA was reorganized and became the United States of America Standards Institute (USASI). The present name was adopted in 1969. The organization's headquarters are in Washington, D.C. For more information see its Web site at http://www.ansi.org.
16919
16920 The '''ASA''' photographic exposure system became the basis for the ISO [[film speed]] system, currently used worldwide.
16921
16922 In [[Microsoft Windows]], the phrase &quot;ANSI&quot; refers to the [[Windows ANSI code page]]s. Most of these are fixed width though there are some variable width ones for [[ideographic language]]s. Some of these are very close to the [[ISO-8859]] series leading many to falsely assume that they are identical.
16923
16924 [[ASCII art]] which is colorized or animated by way of ANSI terminal control codes (X3.64 sequences) are commonly referred to as &quot;[[ANSI art]]&quot; and were predominantly popular on [[bulletin board system]]s throughout the 1980s and 1990s.
16925
16926 == See also==
16927 * [http://www.ansi.org/nsp American National Standards Institute Nanotechnology Standards Panel (ANSI-NSP)]
16928 * [http://www.ansi.org/hssp American National Standards Institute Homeland Security Standards Panel (ANSI-HSSP)]
16929 * [http://www.ansi.org/hitsp American National Standards Institute Healthcare Information Technology Standards Panel (ANSI-HITSP)]
16930 * [[ANSI art]], art created from a subset of [[ANSI X3.64|X3.64]]
16931 * [[ANSI.SYS]], a device driver for [[MS-DOS]]
16932 * [[ANSI escape code|ANSI escape codes]]
16933 * [[Unified Thread Standard]]
16934
16935 ==External links==
16936 * [http://www.ansi.org/ American National Standards Institute] official website
16937 * [http://www.ansi.org/about_ansi/introduction/introduction.aspx?menuid=1 ANSI Overview]
16938 * [http://www.ansi.org/about_ansi/introduction/history.aspx?menuid=1 ANSI Historical Overview]
16939 *[http://www.paulschou.com/tools/xlate/ Online Char (ASCII), HEX, Binary, Base64, etc... Encoder/Decoder]
16940
16941 [[Category:Standards organizations]]
16942
16943 [[ar:ANSI]]
16944 [[zh-min-nan:ANSI]]
16945 [[cs:American National Standards Institute]]
16946 [[de:American National Standards Institute]]
16947 [[es:ANSI]]
16948 [[fr:American National Standards Institute]]
16949 [[ko:ANSI]]
16950 [[it:ANSI]]
16951 [[he:מכון ה×Ēקנים האמריקני]]
16952 [[hu:ANSI]]
16953 [[nl:American National Standards Institute]]
16954 [[ja:ANSI]]
16955 [[no:American National Standards Institute]]
16956 [[pl:ANSI]]
16957 [[pt:American National Standards Institute]]
16958 [[sl:ANSI]]
16959 [[sv:ANSI]]
16960 [[th:ā¸Ēā¸–ā¸˛ā¸šā¸ąā¸™ā¸Ąā¸˛ā¸•ā¸Ŗā¸ā¸˛ā¸™āšā¸Ģāšˆā¸‡ā¸Šā¸˛ā¸•ā¸´ā¸‚ā¸­ā¸‡ā¸Ēā¸Ģā¸Ŗā¸ąā¸ā¸­āš€ā¸Ąā¸Ŗā¸´ā¸ā¸˛]]
16961 [[vi:ANSI]]
16962 [[tr:ANSI]]
16963 [[zh:įžŽå›Ŋå›ŊåŽļ标准å­Ļäŧš]]</text>
16964 </revision>
16965 </page>
16966 <page>
16967 <title>Anchorage, Alaska</title>
16968 <id>660</id>
16969 <revision>
16970 <id>42009131</id>
16971 <timestamp>2006-03-03T04:48:21Z</timestamp>
16972 <contributor>
16973 <ip>67.10.251.112</ip>
16974 </contributor>
16975 <comment>/* History */</comment>
16976 <text xml:space="preserve">{{Otheruses4|the city in the [[United States|U.S.]] state of [[Alaska]]|other meanings|Anchorage}}
16977 {{Infobox City |
16978 official_name = Anchorage, Alaska |
16979 nickname = The City of Lights and Flowers |
16980 image_skyline = Downtownanchorage,Alaska.jpg |
16981 image_flag = Us-ak-an.jpg |
16982 image_seal = |
16983 image_map = Map of Alaska highlighting Anchorage Municipality.png |
16984 map_caption = Location in the state of [[Alaska]] |
16985 subdivision_type = [[Boroughs of the United States|Borough]] |
16986 subdivision_name = [[Municipality of Anchorage]] |
16987 leader_title = [[Mayor]] |
16988 leader_name = [[Mark Begich]] |
16989 area_magnitude = 1 E9 |
16990 area_total = 1,961.1 mi&amp;sup2; / 5,079.2 |
16991 area_land = 1,697.2 mi&amp;sup2; / 4,395.8 |
16992 area_water = 2.63.9 mi&amp;sup2; / 683.4 |
16993 population_as_of = 2004 |
16994 population_metro = 339,286 |
16995 population_total = 272,687 |
16996 population_density = 160.7 |
16997 timezone = [[Alaska Standard Time Zone|AST]] |
16998 utc_offset = -9 |
16999 timezone_DST = [[Alaska Daylight Time|ADT]] |
17000 utc_offset_DST = -8 |
17001 latd = 61 |
17002 latm = 13 |
17003 lats = 06 |
17004 latNS = N |
17005 longd = 149 |
17006 longm = 53 |
17007 longs = 57 |
17008 longEW = W |
17009 elevation = 115 |
17010 website = [http://www.ci.anchorage.ak.us/ www.ci.anchorage.ak.us/] |
17011 footnotes =
17012 }}
17013 '''Anchorage''' is a Unified [[Home Rule]] [[Municipality]] (officially called the '''Municipality of Anchorage''') in the [[U.S. state]] of [[Alaska]]. It is also a [[census area]]. With 260,283 residents according to the [[U.S. Census, 2000|2000 census]], Anchorage is the largest city in the state of [[Alaska]], composing more than two-fifths of the state's population. A State of Alaska Demographer in 2004 estimates the population at 277,498. Anchorage was founded in 1915 and named after a place where a ship lies at [[anchor]]. Its official [[List of city nicknames|nickname]] is &quot;The City of Lights and Flowers&quot;. Garden writers call Anchorage the &quot;Hanging Basket Capital of the World&quot; when it comes to the city's 100,000 hanging baskets, and aviation buffs refer to the city as the &quot;Air Crossroads of the World&quot; because of its geographical location between the two northern continents.
17014
17015 In downtown Anchorage along the streets and sidewalks are 425 baskets of bright gold triploid marigold drenched with trailing sapphire lobelia. The blue and gold flowers represent the colors of the Municipality of Anchorage flag and the [[Flag of Alaska|Alaska state flag]]. The city of Anchorage blooms with vibrant color during the late spring and summer when it comes to [[flowers]].
17016
17017 Today Anchorage has many features of a modern [[urban area]], such as [[park]]s and forests, bike and city trails, [[skiing]] and cross-country ski trails, business and [[commerce]], theaters and other [[entertainment]]s. The [[tourist industry]] is strong and offers many activities and attractions.
17018
17019 == History ==
17020 {{main|History of Anchorage, Alaska}}
17021
17022 Russia was well-established in North America by the 1800s. In 1867, U.S. Secretary of State [[William H. Seward]] brokered a [[Alaska purchase|deal to purchase Alaska]] from debt-ridden [[Russia]] for $7.2 million, about two cents an acre. Alaska's value was not appreciated by the American masses at that time, calling it &quot;'''Seward's folly'''&quot;, &quot;'''Seward's icebox'''&quot; and &quot;'''Walrussia'''&quot;. By 1888, gold was discovered along [[Turnagain Arm]]. In 1912, Alaska became a [[United States Territory]]. Anchorage was carefully laid out by city planners in 1914, originally as a [[railroad]] [[construction]] [[port]] for the [[Alaska Railroad]], and on [[July 9]], [[1915]], the first sale of town lots was held. In 1915 President [[Woodrow Wilson]] authorized funds for the construction of the [[Alaska Railroad]]. That same year the Anchorage [[Chamber of Commerce]] was formed. Ship Creek Landing in Anchorage was selected as the headquarters of this effort. Soon a &quot;Tent City&quot; sprang up at the mouth of Ship Creek and the population quickly swelled to more than 2,000. Would-be entrepreneurs flocked to this bustling frontier town, and they brought with them everything necessary to build a city. A popular hardware and clothing store, &quot;The Anchorage,&quot; was actually an old dry-docked steamship named &quot;Berth.&quot; Although the area had been known by various names, the [[U.S. Post Office]] Department formalized the use of the name &quot;Anchorage,&quot; and despite some protests the name stuck. In 1920, the United States government relinquished its direct control over the city, and elections were held. Anchorage was incorporated on [[November 23]], [[1920]]. In 1923, [[William Mulcahy]] establishes the Anchorage Baseball League. Mulcahy was a baseball fan who was working as the Alaska Railroad station auditor assistant and established the baseball league in his spare time. Later in life, Mulcahy introduced Little League baseball and established the city's [[YMCA]]. The Mulcahy Park stadium and ball field were named in his honor for his contributions to early Anchorage.
17023
17024 The 1930s were a time that Anchorage rebounded from the loss of population and industry it had suffered during [[World War I]]. [[Air transportation]] became increasingly important to Anchorage.
17025 In 1930, the original &quot;Park Strip&quot; landing field was replaced by a new facility, [[Merrill Field]], which had a beacon and a control [[tower]], and in a few short years, it became one of the busiest centers of [[civilian]] [[aircraft]] activity in the [[United States]]. In 1937, [[Providence Alaska Medical Center]] opened its doors.
17026
17027 &lt;!-- Unsourced image removed: [[Image:Anchorage-1940s2.jpg|thumb|right|280px|Fourth Avenue in the 1940s.]] --&gt;
17028 The arrival of US Army troops in 1940 marked a decade of growth based on military expansion for Anchorage. Growth spurted in the 1940s, with the construction of [[Elmendorf Air Force Base]] and [[Fort Richardson]], which made Anchorage a major defense center. In 1940, a canal was built connecting [[Lake Spenard]] with [[Lake Hood]], making it the world's largest [[seaplane]] base. The outbreak of [[World War II]] with the threat of a Japanese invasion prompted continued expansion of military personnel and aircraft, and later the pressures of the [[Cold War]] between the [[United States]] and the [[Soviet Union]] ensured continued heavy military investment in the Anchorage area. In 1947, the [[parking meter]] was introduced in Anchorage, and in 1949, the first [[traffic light]]s were installed on Fourth Avenue. Between 1939 and 1950, Anchorage's population spurted from 4,230 to 30,060, and the cost of living soared. Anchorage also experienced an unfortunate rise in crime during this tumultuous growth period, a problem the city would fight for decades.
17029
17030 The decade of the 1950s was also eventful. In 1951 came the opening of the [[Seward Highway]]. On [[December 10]], [[1951]], Anchorage established itself as the &quot;Air Crossroads of the World&quot; when Anchorage International Airport opened with transpolar airline traffic flying between Western [[Europe]] and East [[Asia]]. The new airport also became a refueling stop for flights between the contiguous 48 states and East Asia, until nonstop flights became practical around 1970, with the Boeing 747 airliner. In 1953, [[health care]] expanded with the opening of the [[Alaska Native Medical Center]]. Also, three volcanoes erupted in the area, including [[Mount Spurr]], which dumped several inches of ash on Anchorage. [[KTVA]], the city's first [[television station]], began broadcasting in 1953. In 1954, the [[Alyeska Resort]] was established. In 1957, oil was discovered on the [[Kenai Peninsula]]. On [[January 3]], [[1959]], Alaska joined the union as the 49th state.
17031
17032 &lt;!-- Unsourced image removed: [[Image:Anc65.jpg|thumb|left|280px|Downtown Anchorage in 1965.]] --&gt;
17033 The decade of the 1960s began on a bright note for Anchorage after Alaska's attaining statehood. After Alaska became a state, Anchorage faced a severe housing shortage, which was solved partially by [[suburb|suburban expansion]]. In January 1964, Anchorage became both a City and a Borough. But on [[March 27]], [[1964]], Anchorage was hit by the [[Good Friday Earthquake]], which registered 9.2 on the [[Richter scale]] and caused tremendous destruction in south Alaska. This earthquake was the strongest ever recorded in [[North America]] and [[United States]] history, and Anchorage lay only 75 miles (120 km) from the [[epicenter]]. It killed 131 people across [[South Central Alaska]], and property damage was estimated at over $300 million (1964 dollars). The brand new J.C. Penney department store in Anchorage was flattened. Anchorage's remarkable recovery from this disaster dominated life in the late 1960s. The continued threat of earthquakes has prompted a limit on the height of buildings in the city; the tallest buildings are 21 stories high. In 1968, Kincaid Park was created in South Anchorage from a former [[Project Nike|Nike]] surface-to-air missile site. That same year, oil was discovered in [[Prudhoe Bay, Alaska|Prudhoe Bay]] on the Arctic Slope and, in 1969, oil-lease sales brought billions of dollars to the state.
17034
17035 [[Image:Statue_of_Balto_in_Anchorage.jpg|thumb|right|Statue in downtown Anchorage of [[Balto|Balto]], the lead sled dog during the last part of the [[Iditarod]] serum run.]]
17036 The decade of the 1970s was an important time of growth for the Anchorage economy. On [[March 3]], [[1973]], the first 1049-mile-long (1690 km) [[Iditarod Trail Sled Dog Race]] started from downtown Anchorage with 34 mushers. Twenty-two mushers finished the race, with the last one arriving in [[Nome, Alaska|Nome]] one-month after he left the starting line. In recent years, winners have finished the race in less than 10 days. In 1974, construction begain on the [[Trans-Alaska Pipeline System]], with [[Valdez]], not Anchorage, as its southern terminus. The oil discovery and pipline construction fueled a modern-day boom when oil and construction companies set up their headquarters in Anchorage. The pipeline was completed in 1977 at a cost of more than $8 billion. In 1975, Bicentennial Park was created in Southeast Anchorage. On [[September 15]], [[1975]], the city and borough consolidated forming a [[unified government]]. Also included in this unification were [[Eagle River, Alaska|Eagle River]], [[Eklutna, Alaska|Eklutna]], [[Girdwood, Alaska|Girdwood]], [[Glen Alps, Alaska|Glen Alps]], and several other communities. The unified area became officially known as the [[Anchorage Municipality|Municipality of Anchorage]]. By 1980, the population of Anchorage had grown to 174,431.
17037
17038 The decade of the 1980s was a time of growth, thanks to a flood of North Slope oil revenue into the state treasury. Capital projects and an aggressive beautification program, combined with far-sighted community planning, greatly increased infrastructure and quality of life. These included a new [[library]], [[civic center]], [[arena|sports arena]], and [[performing arts center]]. The 1980s was also a time when Alaska's up-and-down economy struck. The price of oil dropped dramatically, and recession hit Anchorage. But in 1984, [[Hilltop Ski Area]] was established, which along with the [[Alyeska Resort]] in [[Girdwood, Alaska|Girdwood]], and [[Alpenglow at Arctic Valley]] gave residents three fully- operational skiing areas, benefitting tourism and recreational activities. In 1986, Kincaid Outdoor Center opens. In 1989, [[Mount Redoubt]] erupted again, curtailing aviation in the Anchorage area for a short period of time.
17039
17040 The decade of the 1990s was a time when Anchorage saw gold. In 1996, the Arctic Winter Games were held in [[Chugiak]]/[[Eagle River, Alaska|Eagle River]] and, in 1999, the [[Alaska Native Heritage Center]] opened.
17041
17042 On [[July 8]], [[2000]], the municipal airport was renamed &quot;[[Ted Stevens Anchorage International Airport]]&quot; in honor of Alaska's longest-serving [[United States Senator]].
17043
17044 &lt;!-- Unsourced image removed: [[Image:AnchoragewithMcKinleyinthebackground.jpg|thumb|right|280px|A view of downtown Anchorage with a clear view of [[Mount McKinley]] ([[Denali]]) in background.]] --&gt;
17045 In spite of the height limitations on buildings, Anchorage today has an attractive skyline nevertheless, particularly with the [[Chugach Mountains]], [[Cook Inlet]], or the often-visible [[Mount McKinley]] (also known as [[Denali]]) as a backdrop. From Government Hill, one can see the best view of Mount McKinley. Though space is limited in the &quot;Anchorage bowl,&quot; as locals call the peninsula on which the city is located, many parks, greenbelts, and other undeveloped areas can be found within the city itself, making it particularly attractive to nature lovers (to say nothing of the attractions available just a short distance outside the city). Over the past thirty years, however, many of these undeveloped areas have filled in with houses, strip malls, and other development. Nonetheless, there is an enormous amount of land under the Anchorage Municipal control, which totals some 1,955 square miles (5063 km&amp;sup2) - about the size of Delaware. The majority of this land is located within the [[Chugach Mountains]] to the east of the city, which also comprises [[Chugach State Park]].
17046
17047 == Geography and climate ==
17048 === Geography ===
17049 [[Image:Vicinity map of Municipality of Anchorage.gif|right|350px]]
17050 According to the [[United States Census Bureau]], the municipality has a total area of 5,079.2 [[Square Kilometre|km&amp;sup2;]] (1,961.1 [[Square Mile|mi&amp;sup2;]]), 4,395.8 km&amp;sup2; (1,697.2 mi&amp;sup2;) of it is land and 683.4 km&amp;sup2; (263.9 mi&amp;sup2;) of it is water. The total area is 13.46% water.
17051
17052 Anchorage is located in [[South Central Alaska]], at 61 °13'06&quot;North [[latitude]] (about the same as [[Stockholm]] and [[Saint Petersburg|St. Petersburg]]), -149 °53'57&quot;West [[longitude]] (about the same as [[Hawaii]]), northeast of the [[Alaska Peninsula]], [[Kodiak Island]], and [[Cook Inlet]], due north of the [[Kenai Peninsula]], northwest of [[Prince William Sound]] and [[Alaska Panhandle]], and nearly due south of [[Mount McKinley]]/[[Denali]]. The city is situated on a triangular [[peninsula]] bordered on the east by the rugged, scenic, and eminently hike-worthy [[Chugach Mountains]], on the northwest by the [[Knik Arm]], and on the southwest by the [[Turnagain Arm]], upper branches of the Cook Inlet, which itself is the northernmost reach of the [[Pacific Ocean]]. Despite this, the city lacks coastal beaches, instead having wide, treacherous [[mudflats]]. Adjacent to the north is [[Matanuska-Susitna Borough, Alaska]]. To the south is [[Kenai Peninsula Borough, Alaska]], and to the east is [[Valdez-Cordova Census Area, Alaska]].
17053
17054 {{seealso|Anchorage neighborhood communities}}
17055
17056 === Climate ===
17057 Average daytime summer temperatures are approximately 55 to 80 degrees [[Fahrenheit]] (13 to 27 degrees [[Celsius]]); average daytime winter temperatures are about 5 to 20 degrees (-15 to -7 degrees Celsius) (warmer than many places in the [[The Lower 48|contiguous United States]]). Ted Stevens Anchorage International Airport (PANC) average January low and high temperatures are 9 °F / 22 °F (-13 °C / -5 °C) with an average winter snowfall of 70.60 inches (179.3 cm). The weather on any given day and indeed for entire seasons can be very unpredictable. Some winters feature several feet of snow and bitterly cold temperatures, while others, just a foot or two of snow and frequent thaws, which puts dangerous ice on the streets. On [[March 17]], [[2002]], a record 24-hour ([[St. Patrick's Day]]) [[snow]] storm dumped 25.7 inches (65.3 cm) of snow on the Anchorage area, causing the airport and schools to close on that day, and several days longer for the schools. The 1954-1955 winter had 132.8 inches (337.3 cm), which made it the snowiest winter on record. The coldest [[temperature]] ever recorded at [[Ted Stevens Anchorage International Airport]] was -38 °F (-38.8 °C) on [[February 3]], [[1948]]. Summers are typically very mild and pleasant, though it can rain frequently. There isn't any beach-bathing in Anchorage, except at a few local lakes on the warmest summer days, when those lakeside beaches can be extremely popular. Ted Stevens Anchorage International Airport average July low and high temperatures are 52 °F / 66 °F (11 °C / 19 °C) and the hottest reading ever recorded was 86 °F (30 °C) on [[June 25]], [[1953]]. The average annual precipitation at Ted Stevens Anchorage International Airport is 16.07 inches (40.8 cm). Aside from the winter cold, which most Alaskans don't mind, there are two primary nuisances associated with the seasons: in the summer, mosquitoes (which are much worse out in [[Alaskan Bush|the Bush]] than in the city itself); in the winter, long nights and very short days. Since Anchorage is at such a high latitude, for months in mid-winter, residents go to work in the dark and return home in the dark. Those who don't study or work next to a window can go all week long without seeing the sun.
17058
17059 == Demographics ==
17060 {| class=&quot;wikitable&quot; style=&quot;float:right; margin-left:3px; text-size:80%; text-align:right&quot;
17061 |align=center colspan=2| '''City of Anchorage &lt;br&gt;Population by year [http://www.muni.org/iceimages/Planning/popu1a.pdf]'''
17062 |-
17063 |1950 || 30,060
17064 |-
17065 |1960 || 82,833
17066 |-
17067 |1970 || 126,385
17068 |-
17069 |1980 || 174,431
17070 |-
17071 |1990 || 226,338
17072 |-
17073 |2000 || 260,283
17074 |}
17075 As of the [[U.S. Census]]{{GR|2}} of 2000, Anchorage had a population of 260,283 and in all the Municipality of Anchorage is home to almost two-fifths of Alaska's population. The [[population density]] is 59.2/ km&amp;sup2; (153.4/ mi&amp;sup2;). There are 100,368 housing units at an average density of 22.8/ km&amp;sup2; (59.1/ mi&amp;sup2;). The racial makeup of the municipality is 72.23% [[White]] ([[Caucasian race|Caucasian]]), 5.55% are [[Asian American]]s, 5.84% are [[African American]]s, 7.28% are [[American Indians (U.S. Census)|American Indians]] or [[Alaska Native]]s, 0.93% are [[Pacific Islander]]s, 5.69% are [[Hispanic American]]s or [[Latino]]s of any race, 5.98% are from two or more races, and 2.19% are from other non-white backgrounds.
17076
17077 There are 94,822 households out of which 38.9% have children under the age 18 living with them, 51.1% are [[married couples]] living together, 11.5% have a female householder with no husband present, and 32.4% are non-families. 23.4% of all households are made up of individuals and 3.8% have someone living alone who is 65 years of age or older. The average household size is 2.67 and the average family size is 3.19.
17078
17079 In the city the population is spread out with 29.1% under the age of 18, 9.6% from 18 to 24, 33.9% from 25 to 44, 21.9% from 45 to 64, and 5.5% who are 65 years of age or older. The median age is 32 years. For every 100 females there are 101.6 males. For every 100 females age 18 and over, there are 102.4 males.
17080
17081 The median income for a household in the city is $55,546, and the median income for a family is $63,682. Males have a median income of $41,267 versus $63,682 for females. The [[per capita income]] for the city is $25,287. 7.3% of the population and 5.1% of families are below the [[poverty line]]. Out of the total population, 8.8% of those under the age of 18 and 6.4% of those 65 and older are living below the poverty line.
17082
17083 Anchoragites exemplify many of the qualities to be found among Alaskans generally: independence, friendliness, practical-mindedness, and a love of the outdoors. There is, even among businesspeople in Anchorage, a tendency to &quot;dress down&quot;. (There is no [[dress code]] in any Anchorage restaurant.) This, and a sort of frontier spirit that still lives on in [[Alaska]] generally, gives Anchorage a relatively casual, relaxed atmosphere compared to some other American cities. (These cultural characteristics are only more exaggerated the farther one moves out of the city into the rest of [[Alaska]].) The city has traditionally served as a destination for immigrants, and there are active [[Asian]], [[Eastern European]], and [[Hispanic]] populations, along with communities of [[African Americans]] and various groups of [[indigenous peoples|aboriginal]] Alaskans. Over 95 languages are spoken by students in the Anchorage School District.
17084
17085 == Government ==
17086 Anchorage is administered by an elected [[mayor]] and [[city council|assembly]], and a [[city manager]]. The city's current mayor is [[Mark Begich]].
17087
17088 {{See also|List of mayors of Anchorage, Alaska}}
17089
17090 === Sister cities ===
17091 Anchorage is internationally partnered with a number of [[Town twinning|sister cities]] to promote global cooperation, cultural exchange and economic collaboration.
17092
17093 Today, Anchorage has six sister cities, including [[Chitose]], ([[Japan]]); [[Darwin, Northern Territory|Darwin]], ([[Australia]]); [[Incheon]], ([[South Korea]]); [[Magadan]], ([[Russia]]); [[Tromso]], ([[Norway]]); and [[Whitby]], ([[England]]).
17094
17095 == Economy ==
17096 Anchorage is the center of [[commerce]] for [[Alaska]] and a major port, receiving over 95% of all freight entering Alaska passes, as well as a major hub of the famous [[Alaska Railroad]]. Several [[petroleum|oil]] and [[gas]] industries like: [[BP]] Exploration (Alaska}, Inc.; [[ConocoPhillips]] Alaska, Inc.; Doyon Universal Services; Enstar Natural Gas Co.; [[ExxonMobil]] Production; Flint Hills Resources; Norcoast Mechanical; [[Tesoro]] Alaska Petroleum Co.; Udelhoven Oilfield System Services, Inc.; [[Union Oil Company]] of California; and VECO Alaska, Inc. are all headquartered in Anchorage.
17097
17098 Anchorage is home to two major corporations which provide communication services to Alaska: [[Alaska Communications Systems]] and [[General Communications, Inc.]], both of which offer local and long distance telephone service, dial up and [[broadband Internet]] access, and [[cellular telephone]] service.
17099
17100 Many corporations, such as large [[banks]], [[real estate]], [[transportation]], other [[communication|communications]], and [[government]] agencies are all headquartered in Anchorage. There are two strategically important [[U.S. military]] bases bordering Anchorage on the north: [[Elmendorf AFB]] and [[Fort Richardson]]. Both military bases together station over 9,000 military personnels.
17101
17102 Numerous visitor and [[tourist]] facilities and services are available throughout the Municipality of Anchorage. Nearly all [[Alaska Interior]]-bound tourists pass through Anchorage at some stage of their journeys in Alaska. This is particulatly true since the [[Alaska Railroad]] has its southern terminus in Anchorage. Not surprisingly, the summer is [[tourist|tourist season]], and downtown Anchorage, as well as the highways and railroads leading north and south of the city, are typically teeming with tourists. Anchorage has seasonal factors contribute to a fluctuating, though low, unemployment rate.
17103
17104 == Education ==
17105 Education in Anchorage, [[Eagle River, Alaska|Eagle River]], [[Chugiak]], [[Eklutna, Alaska|Eklutna]], [[Girdwood, Alaska|Girdwood]], [[Fort Richardson]], and [[Elmendorf AFB]] is managed by the [[Anchorage School District]].
17106
17107 Anchorage has an excellent [[public school]] system that is ranked among the finest in the nation. The Anchorage School District is the 81st largest district in the [[United States]], with nearly 50,000 students attending 88 schools.
17108
17109 The district's average SAT and ACT [[College]] entrance exam scores are consistently above the national average and [[Advanced Placement]] courses are offered at each of the district's [[high schools]]. The [[International Baccalaureate Diploma Programme]] is also offered at West High, one of the local high schools. The average [[teacher]]/[[student]] ratio in the district's [[elementary schools]] is one teacher to approximately every 25 students.
17110
17111 The district offers a comprehensive curriculum that emphasizes the basic communication skills of [[reading (activity)|reading]], [[writing]], and [[arithmetic]]. The standard program also includes [[social studies]], [[health]], [[science]], and [[physical education]]. All students receive a quality [[education]] enriched with [[technology]], [[foreign language]], [[visual]] and [[performing arts]], and [[social sciences]].
17112
17113 A variety of programs and alternative learning environments meet the needs of the diverse student population. Some examples include ABC (back-to-basics curriculum) and Montessori schools, open-optional programs, foreign-language immersion, vocational/technical training and [[charter schools]]. [[Comprehensive]] services for bilingual students and students with special needs are also available.
17114
17115 === Colleges and universities ===
17116 Ninety percent of Anchorage's adults have high-school [[diplomas]], 65 percent have attended one to three years of college, and 17 percent hold advanced [[Academic degree|degrees]], placing Anchorage among the top [[metropolis|metropolitan]] cities in educational attainment.
17117
17118 Anchorage boasts four excellent [[higher education|higher-education]] facilities that offer quality higher education. The [[University of Alaska Anchorage]] and [[Alaska Pacific University]] are within walking distance of each other, and [[Charter College]] and [[Wayland Baptist University (Anchorage, Alaska)|Wayland Baptist University]] are also located in city limits.
17119
17120 == Culture ==
17121 === Performing arts ===
17122 &lt;!-- Unsourced image removed: [[Image:Alaska_Center_for_the_Performing_Arts.jpg|thumb|right|250px|The Alaska Center for the Performing Arts building in downtown Anchorage.]] --&gt;
17123 Despite the relative remoteness of the location, the city sports a lively arts community. Located next to Town Square Municipal Park in downtown Anchorage, the [[Alaska Center for the Performing Arts]] [http://www.alaskapac.org] is a three-part complex host to many [[performing arts]] events. The facility can accommodate more than 3,000 patrons. In 2000, nearly 245,000 people visited 678 public performances. It is home to eight resident performing arts companies and has featured mega-musicals such as CATS, Grease, Les Miserables, Phantom of the Opera and Big River. The center hosts the [[Anchorage Symphony Orchestra]] which is a semi professional symphony [[orchestra]]. The center also hosts the world famous [[International Ice Carving Competition]] as part of the [[Fur Rendezvous festival]] in February. There are also weekly sessions of [[Irish traditional music]], [[Jazz]], and other musical scenes.
17124
17125 The [[Anchorage Concert Association]] brings 15 to 20 world-class performing arts events to the community each [[winter]], and numerous independent perforance groups.
17126
17127 === Museums and art collections ===
17128 The [[Alaska Aviation Heritage Museum]] is a museum with artifacts reflecting Alaska's unique aviation history. The [[Alaska State Troopers Museum]] was formed in the late 1960s, and shares the history of the Alaska State Troopers. The [[Anchorage Fire Department Museum]] is a museum that relive Anchorage history among the displays of fire-fighting memorabilia, including a vintage 1921 LaFrance fire truck. The [[Imaginarium]] is a hands-on Science Discovery Center. The [[Oscar Anderson House Museum]] is Anchorage's only house museum established in 1915. The [[Russian Orthodox Museum]] [http://dioceseofalaska.org] is a museum that represents history of the [[Russian Orthodox Church]] in Alaska. The [[Wolf Song of Alaska]] [http://www.wolfsongalaska.org] was incorporated in 1988, is a world-class observation facility. The [[Alaska Museum of Natural History]] [http://alaskamuseum.org] is a non-profit museum that educates exclusively on Alaska's unique geological, cultural, and ecological history.
17129
17130 History art collections are at the [[Anchorage Museum of History and Art]], opened in 1968, is a world-class museum. The [[Heritage Library Museum]] was established in 1968, and is viewed as one of the largest collections of Alaska artifacts.
17131
17132 === Other cultural institutions ===
17133 &lt;!-- Unsourced image removed: [[Image:Alaska_Statehood_Monument_in_Downtown_Anchorage.jpg|thumb|right|250px|The Alaska Statehood Monument in downtown Anchorage.]] --&gt;
17134 The [[Alaska Zoo]], opened as a children's zoo in 1969, is home to just under 100 [[bird]]s and [[mammal]]s. The [[Alaska Wildlife Conservation Center]], opened to the public in 1993, is a [[refuge]] for the [[orphaned]], injured wildlife, a [[non-profit organization]]. The [[Alaska Native Heritage Center]], opened in 1999, is a gathering place that celebrates, perpetuates and shares Alaska Native cultures. The [[Alaska Botanical Garden]] contains over 900 species of hardy perennials and 150 native plant species.
17135
17136 === Local attractions ===
17137 The [[H2Oasis Indoor Waterpark]], opened in 2003, is literally and figuratively the hottest spot in Alaska for fun and adventure. [[Alpenglow at Arctic Valley]] is a [[ski resort]] that is located on Ski Bowl Road in the [[Chugach State Park]] near [[Fort Richardson]]. The [[Alyeska Resort]] is a ski resort that is located in [[Girdwood, Alaska|Girdwood]]. The [[Hilltop Ski Area]] is located on the gentle slopes of southeast Anchorage that weave against the base of Chugach State Park. The Nordic Skiing Association of Anchorage [http://www.anchoragenordicski.com] is a non-profit organization dedicated to promoting all forms of [[nordic skiing]].
17138
17139 === Media ===
17140 Anchorage's leading [[newspaper]]s are the [[Anchorage Daily News]] [http://www.adn.com/], the [[Alaska Star]] [http://www.alaskastar.com], the [[Insurgent49]] [http://www.insurgent49.com], the [[Anchorage Press]] [http://www.anchoragepress.com] and the [[Petroleum News]] [http://www.petroleumnews.com/].
17141
17142 Anchorage is also well served by [[television]] and [[radio]]. Anchorage's major network television affiliates are [[KIMO]] 13[[American Broadcasting Company|(ABC)]], [[KTVA]] 11[[CBS|(CBS)]], [[KAKM]] 7[[Public Broadcasting Service|(PBS)]], [[KTBY]] 4[[Fox Broadcasting Company|(FOX)]], [[KTUU-TV]] 2[[NBC|(NBC)]], [[KYES]] 5[[UPN|(UPN)]] and [[KDMD]] 33[[I (TV network)|(PAX/Shopping)]]. [[ARCS]]: The Alaska Rural Communications Service, which provides some original programming and also &quot;cherry-picks&quot; retransmissions from among the broadcast stations in Anchorage, though usually not KIMO except in very rare occasions (such as [[Iditarod]] coverage), to provide television service to remote areas.
17143
17144 Leading [[radio]] stations include AM Stations [[KTZN]] 550-Clear Channel Communications, [[KHAR]] 590, [[KENI]] 650-Clear Channel Communications, [[KBYR]] 700, [[KFQD]] 750 and [[KUDO]] 1080. FM Stations [[KRUA]] 88.1-[[University of Alaska, Anchorage]], [[KAKL]] 88.5-&quot;Positive, Encouraging K-Love&quot;, Christian Music, K-Love, EMF Broadcasting, [[KATB]] 89.3, [[KNBA]] 90.3, [[KSKA]] 91.1, [[KFAT-FM|KFAT]] 92.9-New Northwest Broadcasters, [[KAFC]] 93.7, [[KEAG]] 97.3, [[KLEF]] 98.1, [[KYMG]] 98.9-Clear Channel Communications, [[KBFX-FM|KBFX]] 100.5- Clear Channel Communications, [[KGOT]] 101.3-Clear Channel Communications, [[KDBZ]] 102.1-New Northwest Broadcasters, [[KMXS]] 103.1, [[KBRJ]] 104.1, [[KNIK]] 105.7, [[KWHL]] 106.5 and [[KASH]] 107.5-Clear Channel Communications.
17145
17146 === Sports ===
17147 {| class=&quot;wikitable&quot;
17148 ! Club
17149 ! Sport
17150 ! League
17151 ! Stadium
17152 ! Logo
17153 |-
17154 | [[Alaska Aces]]
17155 | [[Ice Hockey]]
17156 | [[ECHL]]
17157 | [[Sullivan Arena]]
17158 | [[Image:Alaska Aces.jpg|30px|Alaska Aces Logo]]
17159 |-
17160 | [[Anchorage Bucs Baseball Club]]
17161 | [[Baseball]]
17162 | [[Alaska Baseball League]]
17163 | [[Mulcahy Stadium]]
17164 | [[Image:Anchorage Bucs Baseball Club.jpg|30px|Anchorage Bucs Baseball Club]]
17165 |-
17166 | [[Anchorage Glacier Pilots]]
17167 | [[Baseball]]
17168 | [[Alaska Baseball League]]
17169 | [[Mulcahy Stadium]]
17170 | [[Image:Anchorage Glacier Pilots.jpg|30px|Anchorage Glacier Pilots]]
17171 |-
17172 | [[Great Alaska Shootout]]
17173 | [[Basketball]]
17174 | N/A
17175 | [[Sullivan Arena]]
17176 | [[Image:Great Alaska Shootout.jpg|30px|Great Alaska Shootout]]
17177 |}
17178 Anchorage is home to the [[Alaska Aces]] of the ECHL hockey league. The [[Anchorage Bucs Baseball Club]] is a summer collegiate baseball team, attracting players from universities throughout the world. The [[Anchorage Glacier Pilots]] is a member of the [[National Baseball Congress]]. Anchorage is also home to the [[Great Alaska Shootout]], an annual [[college basketball]] tournament that features colleges from all over the U.S.
17179
17180 The best ski jumper from the U.S. in the past 15 years is from Anchorage, Alan Alborn. He has finished 4th in a stage of the World Cup in [[Engelberg]], [[Switzerland]], and has a 11th place from the [[2002 Olympics]] in [[Salt Lake City, Utah]]. He also holds the US skiflying record with 221,5 meters from 2002 in [[Planica]], [[Slovenia]].
17181
17182 == Infrastructure ==
17183 === Transportation ===
17184 &lt;!-- Unsourced image removed: [[Image:Anc-downtown-night-1072.jpg|thumb|right|250px|Downtown Anchorage at night.]] --&gt;
17185 Anchorage is usually the starting or ending point of most visitors' Alaska vacations, and it serves as the airline hub for the state, being serviced by [[Ted Stevens Anchorage International Airport]]. Anchorage is served by some national airlines, primarily Seattle-based [[Alaska Airlines]], as well as a number of international airlines. The [[Alaska Railroad]] offers daily summer service to [[Seward]], [[Talkeetna]], [[Denali National Park]], and [[Fairbanks]]. These communities are also served by inter-city bus line from Anchorage. Transportation to downtown Anchorage is convenient by taxicab, airport shuttle, or hotel courtesy shuttles. Upon arrival, visitors can stop by the Anchorage Convention &amp; Visitors Bureau Visitor Information Center or the Alaska Visitors Center for direction. Diamond Airport Parking offers long-term parking with free 24-hour shuttle service to the airport. [[Cruise]] passengers with a few hours or a full day to explore Anchorage can store their luggage (and fish) at the airport. The Ship Creek Shuttle connects key downtown Anchorage locations with the Ship Creek area, including stops at the Alaska Railroad Depot.
17186 &lt;!-- Unsourced image removed: [[Image:Tourist_returning_to_Anchorage_from_Denali_National_Park.jpg|thumb|left|250px|Alaska Railroad tourist returning to Anchorage from [[Denali National Park]].]] --&gt;
17187 Anchorage also has a [[public transit|bus system]] called People Mover [http://www.muni.org/transit], with a central hub in downtown Anchorage and satellite hubs at [[Dimond Center]] and [[Muldoon Mall]]. People Mover also provides point-to-point van services to seniors and those with disabilities, as well as car pool organization services.
17188
17189 There is only one officially designated [[Interstate Highway]] in Alaska. Unlike the Interstate routes in [[Hawaii]], it is unsigned as such. The route, officially [[Interstate A-1]] runs along the Seward and Glenn Highways. The highway is numbered [[Alaska State Highway 1]]. About 10 miles of the [[Seward Highway]], (known as the New Seward Highway) is built to [[freeway]] standards. The [[Glenn Highway]], also built to freeway standards goes northeast from Anchorage, six lanes carrying commuter traffic to and from Eagle River, Chugiak, and the Matanuska Valley towns of [[Palmer]] and [[Wasilla]]. The highway is four lanes wide from Eagle River to the junction with the Parks Highway ([[Alaska State Highway 3]]) near Wasilla. Anchorage's roads and the state's highways are all asphalt. They are plowed when necessary in the winter. Highway construction and maintenance is limited to the warm months, so expect some delays.
17190
17191 As of 2005, Anchorage has a long-range transportation plan. Building the Highway to Highway Connection as a limited-access highway link between the Glenn and Seward highways could be the backbone that efficiently delivers traffic to many destinations throughout the city.
17192
17193 Today, traffic is heavy all day long 5th-6th Avenues, Ingra and Gambell, and spills into East Anchorage neighborhoods to avoid congestion. In the Fairview, Mountain View, and Midtown neighborhoods, the new road link would be dug down, out of sight and covered in some areas to allow easy pedestrian and vehicle access across.
17194
17195 === Medical centers and hospitals ===
17196 [[Providence Alaska Medical Center]] on Providence Drive in Anchorage is the largest hospital in Alaska and is part of [[Providence Health System]] in [[Alaska]], [[Washington]], [[Oregon]] and [[California]]. It features the state's most comprehensive range of services. Providence Health System has a history of serving Alaska, beginning when the Sisters of Providence first brought health care to [[Nome, Alaska|Nome]] in 1902. As the territory grew during the following decades, so did efforts to provide care. Their hospitals were opened in [[Fairbanks]] in 1910 and Anchorage in 1937.
17197
17198 [[Alaska Regional Hospital]] on DeBarr Road in Anchorage was born in 1963 as Anchorage Presbyterian Hospital, located at 8th and L Street downtown. This predecessor to Alaska Regional was a joint venture between local [[physicians]] and the Presbyterian Church. In 1976 the hospital moved to it's present location on DeBarr Road, and is now a 254-bed licensed and accredited facility. Alaska Regional has expanded services and in 1994, Alaska Regional joined with [[HCA]], one of the nation's largest [[healthcare]] providers.
17199
17200 [[Alaska Native Medical Center]] on Tudor Road, provides medical care and therapeutic health care to Native Alaskans - 229 tribes of [[Eskimos]] and [[Indigenous peoples of the Americas|Indians]] - at the Anchorage site and at 15 satellite facilities throughout the state. ANMC specialists also travel to clinics in the bush to provide care. The 150-bed hospital is also a teaching center for the [[University of Washington]]'s regional medical education program. ANMC houses an office of the [[Centers for Disease Control and Prevention]]. The Alaska Native Tribal Health Consortium and Southcentral Foundation jointly own and manage ANMC.
17201
17202 === Utilities ===
17203 A full complement of [[utilities]] is available within the Anchorage area. Two [[electric]] companies provide service, depending on where you live within the Municipality of Anchorage. They are: Municipal Light &amp; Power (ML&amp;P) and Chugach Electric Association.
17204
17205 A municipally-owned utility since 1932, ML&amp;P supplies high-quality and reliable electric power to more than 30,000 residential and commercial customers in the Anchorage area. Chugach Electric Association is a not-for-profit, member-owned cooperative that was formed in 1948.
17206
17207 Most homes have [[natural gas]]-fueled heat. ENSTAR Natural Gas Company is the sole provider for Anchorage, serving some 90-percent of the city's population. While some homes in Anchorage use private [[wells]] and [[septic]] systems, the Municipality of Anchorage owns and operates the Water and Wastewater Utility serving an approximate population base of 214,000.
17208
17209 == Shopping and entertainment ==
17210 Anchorage has restaurants and places to shop. Anchorage 5th Avenue Mall, located in the heart of downtown Anchorage, has 110 stores including [[Nordstrom]], [[JCPenny]], and the [[Gap]].
17211
17212 There is a full-size family-owned [[shopping mall]] in Anchorage: [[Dimond Center]] [http://www.dimondcenter.com] located at the intersection of East Dimond Boulevard and Old Seward Highway is the largest shopping center in Alaska, at 728,000 square feet, with 120,000 square feet of professional office space. The mall is home to over 200 stores and offices and 17 eating establishments, with an [[ice skating rink]], [[bowling alley]], [[athletic|athletic club]], [[library]], and [[cinemas|Dimond 9 Cinemas]]. The anchor stores are: [[Best Buy]], [[Gottschalks]], and [[Old Navy]]. Lodging is offered by the 109-room [[Dimond Center Hotel]] [http://www.dimondcenterhotel.com/].
17213
17214 The Mall at [[Sears]] located on East Northern Lights Boulevard has great shopping and food court in the center of town. The Northway Mall is located on Penland Parkway near Airport Heights and the Glenn Highway. Ship Creek Center is a place that has Alaska, Russian gifts, dining, groceries and dancing.
17215
17216 == Points of interest ==
17217 There are features of Anchorage that make it unique: the large tidal range; multiple, beautiful cross-country ski trails; America's highest percentage of licensed airplane pilots (with several airports and landing strips in the city or nearby); a very low [[population density]] for a city its size; frequent small earthquakes; spring windstorms (&quot;[[Chinook wind]]s&quot;); active volcanoes nearby (to the southwest, in the [[Alaska Range]], volcanoes such as [[Mount Spurr]], [[Augustine Volcano]], [[Mount Redoubt (Alaska)|Mount Redoubt]], and others have coated the city with ash in recent years); its extreme youth (it was founded in 1915 but didn't grow much until the 1940s); and much else. Despite this, or perhaps because of it, Anchorage is definitely an ''American'' city, replete with a vibrant business climate, large [[shopping mall]]s, traffic congestion (one can't easily move about by foot and [[public transportation]] in the middle of winter), suburban-style subdivisions and two [[suburbs]], [[Suburb of Eagle River|Eagle River]] and [[Chugiak]], unless one counts the massive numbers of commuters who drive from as far away as the [[Matanuska Valley]] [http://www.alaskavisit.com/] communities of [[Wasilla, Alaska|Wasilla]] and [[Palmer, Alaska|Palmer]].
17218
17219 Anchorage has been named an [[All-America City Award|All America City]] in the years 1956, 1965, 1984-85 and most recently in 2002. The city won its latest award based on civic activities like the 2001 [[Special Olympics Winter Games]] [http://www.specialolympicsalaska.org/] , the [[Anchorage Youth Court]] [http://www.ayc.ak.org/], and [[Bridge Builders]] [http://www.bridgebuilders.ak.org/].
17220
17221 == See also ==
17222 * [[South Central Alaska]]
17223 * [[Neighborhoods of Anchorage, Alaska]]
17224 * [[Port of Anchorage]]
17225
17226 == References ==
17227 #{{note|census}} [http://factfinder.census.gov/servlet/SAFFFacts?_event=ChangeGeoContext&amp;geo_id=05000US02020&amp;_geoContext=01000US|04000US39|16000US3916000&amp;_street=&amp;county=anchorage&amp;_cityTown=anchorage&amp;_state=04000US02&amp;_zip=&amp;lang=en&amp;_see=on&amp;ActiveGeoDiv=geoSelect&amp;_useEV=&amp;pctxt=fph&amp;pgs|=010 Anchorage, Alaska Fact Sheet] ([[United States Census Bureau]]). URL accessed on [[December 30]], [[2005]].
17228 #{{note|Climate Records List}} [http://pafc.arh.noaa.gov/misc.php?page=climlist Anchorage Climate Records List] ([[National Weather Service]]). URL accessed on [[December 30]], [[2005]].
17229 #{{note|temperature}} The Weather Channel (1995-2005). [http://www.weather.com/activities/other/other/weather/climo-monthly-graph.html?locid=USAK0012&amp;from=36hr/_bottomnav_undeclared Monthly Climatolgy Graph]. URL retrieved on [[December 30]], [[2005]].
17230 #{{note|highway project}} [http://www.muni.org/transplan/2004LRTP.cfm Municipality of Anchorage Traffic Department] (Long Range Transportation Plan). URL accessed on [[January 18]], [[2006]].
17231 #{{note|History}} [http://www.ci.anchorage.ak.us/History/ Anchorage Historical Highlights]. URL accessed on [[January 21]], [[2006]].
17232 #{{note|giseis}} [http://www.giseis.alaska.edu/quakes/Alaska_1964_earthquake.html The Great Alaska Earthquake of 1964]. URL accessed on [[January 21]], [[2006]].
17233
17234 ==External links==
17235 *[http://www.muni.org/ Municipality of Anchorage] official site
17236 *[http://www.anchorage.net/ Anchorage Convention and Visitors Bureau]
17237 *[http://www.alaskavisitorscenter.com Alaska Visitors Center]
17238 *[http://www.alaska.com Alaska.com information]
17239 *[http://lexicon.ci.anchorage.ak.us/ Anchorage Municipal Libraries]
17240 *[http://www.muni.org/mayor/allamericacity.cfm Anchorage All-America City 2002 Information]
17241 *[http://www.Untraveledroad.com/USA/Alaska/Anchorage/Anchorage.htm Photographic virtual tour of Anchorage.]
17242 *[http://www.anchoragecam.com Anchorage Cam (includes camera links)]
17243 *[http://pafc.arh.noaa.gov National Weather Service Anchorage office]
17244 {{Mapit-US-cityscale|61.1919|-149.762097}}
17245
17246 {{Alaska}}
17247
17248
17249 [[Category:All-America City]]
17250 [[Category:Anchorage, Alaska| ]]
17251 [[Category:Cities in Alaska]]
17252 [[Category:Coastal cities]]
17253 [[Category:Independent cities in the United States]]
17254
17255 [[af:Anchorage, Alaska]]
17256 [[bg:АĐŊĐēĐžŅ€Đ¸Đ´Đļ]]
17257 [[da:Anchorage]]
17258 [[de:Anchorage]]
17259 [[es:Anchorage]]
17260 [[fi:Anchorage]]
17261 [[fr:Anchorage]]
17262 [[gl:Anchorage]]
17263 [[hu:Anchorage]]
17264 [[io:Anchorage, Alaska]]
17265 [[it:Anchorage]]
17266 [[ja:ã‚ĸãƒŗã‚ĢãƒŦッジ]]
17267 [[ko:ė•ĩėģ¤ëĻŦė§€]]
17268 [[lt:AnkoridÅžas]]
17269 [[nl:Anchorage]]
17270 [[no:Anchorage]]
17271 [[pl:Anchorage (Alaska)]]
17272 [[pt:Anchorage]]
17273 [[ru:АĐŊĐēĐžŅ€Đ¸Đ´Đļ]]
17274 [[sv:Anchorage]]
17275 [[uk:АĐŊĐēĐžŅ€Ņ–Đ´Đļ]]
17276 [[zh:厉克拉æ˛ģ]]</text>
17277 </revision>
17278 </page>
17279 <page>
17280 <title>Argument</title>
17281 <id>661</id>
17282 <revision>
17283 <id>41817129</id>
17284 <timestamp>2006-03-01T23:06:17Z</timestamp>
17285 <contributor>
17286 <username>DavidLevinson</username>
17287 <id>1689</id>
17288 </contributor>
17289 <minor />
17290 <comment>/* See also */ * [[Distinction without a difference]]</comment>
17291 <text xml:space="preserve">{{wiktionarypar|argument}}
17292
17293 An '''argument''' is a collected series of statements to establish a definite proposition, and may refer to:
17294
17295 * [[logical argument]], a demonstration of a [[deductive reasoning|proof]], or using logical reasoning for persuasion
17296 * [[oral argument]], a verbal presentation to a judge by a lawyer
17297 * [[verb argument]], a phrase in a sentence that qualifies a verb
17298 * [[heuristic argument]], a proof or demonstration relying on [[experiment]]al results, or one which is not fully [[Rigour#Mathematical rigour|rigorous]]
17299 * [[ontological argument]], a proof by intuition or reason of the existence of God
17300 * [[political argument]], the use of logic rather than propaganda in promoting political ideas
17301 * [[doublespeak argument]], the use of misleading or irrelevant reasoning by one side during a debate
17302 * [[javelin argument]], a cosmological reasoning about the infinite size of the universe
17303 * ''[[The Argument]]'', an album by the band Fugazi released in 2001
17304 * [[argument (literature)]], the brief summary at the beginning of a section of a poem
17305 * [[grand argument story]], a type of story that is intended to be conceptually complete
17306
17307 In '''[[mathematics]]''', '''argument''' may also mean:
17308
17309 * [[independent variable]] or input of a [[mathematical function|function]]: the argument of &lt;math&gt;f(x)&lt;/math&gt; is &lt;math&gt;x&lt;/math&gt;
17310 * [[Complex number#The_complex_plane|complex argument]], the angular component &amp;phi; of a [[complex number]] represented in [[Coordinates (mathematics)#Polar coordinates|polar coordinates]]
17311 * [[argument principle]], a [[theorem]] in [[complex analysis]] about [[meromorphic function]]s inside and on a closed contour
17312 * [[diagonal argument]], a type of proof over an infinite [[domain (mathematics)|domain]], used to identify the [[transfinite number|cardinal class]] of the [[real number]]s
17313 * [[probabilistic argument]], any proof using [[probability theory]]
17314
17315 In '''[[Computer Science]]''', '''argument''' may also mean:
17316
17317 * [[argument (computer science)]], an input to a [[computer program|subprogram]] or [[procedure|subroutine]]
17318
17319 ==See also==
17320 * [[Category:Philosophical arguments]]
17321 * [[Argument form]], a method of logically analyzing sentences
17322 * [[Argumentation theory]], the science and theory of civil debates
17323 * [[Argumentative]], a type of evidentiary objection to a question for a witness during a trial
17324 * [[Default argument]], an actual parameter to a program that is used when no other actual parameter is provided
17325 * [[Existence of God]], contains lists of common ontological [[Existance of God#Arguments for the existence of God|arguments for]] and [[Existance of God#Arguments against the existence of God|arguments against]] the existence of God
17326 * [[Toulmin Model]], The model of an argument
17327 * [[Distinction without a difference]]
17328
17329 {{disambig}}
17330
17331 [[da:Argument]]
17332 [[de:Argument (Begriffsklärung)]]
17333 [[et:Argument (täpsustus)]]
17334 [[es:Argumento]]
17335 [[fr:Argument]]
17336 [[ia:Argumento]]
17337 [[io:Argumento]]
17338 [[nl:Argument]]
17339 [[pl:Argument]]
17340 [[sl:Argument]]
17341 [[fi:Argumentti]]
17342 [[sv:Argument]]</text>
17343 </revision>
17344 </page>
17345 <page>
17346 <title>Apollo 11</title>
17347 <id>662</id>
17348 <revision>
17349 <id>42127572</id>
17350 <timestamp>2006-03-04T00:22:12Z</timestamp>
17351 <contributor>
17352 <ip>85.166.229.83</ip>
17353 </contributor>
17354 <comment>/* Launch and lunar landing */</comment>
17355 <text xml:space="preserve">{| border=2 align=right cellpadding=4 cellspacing=0 style=&quot;margin: 0.25em 1em 1em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;
17356 |+&lt;font size=&quot;+1&quot;&gt;'''''Apollo 11'''''&lt;/font&gt;
17357 |-
17358 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission Insignia
17359 |-
17360 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:Apollo_11_insignia.jpg|center|233px|''Apollo 11'' insignia]]
17361 |-
17362 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission Statistics
17363 |-
17364 |'''Mission name:'''||''Apollo 11''
17365 |-
17366 |'''Call sign:'''||[[Apollo Command/Service Module|Command module]]:&lt;br /&gt;''Columbia''&lt;br /&gt;[[Apollo Lunar Module|Lunar module]]:&lt;br /&gt;''Eagle''
17367 |-
17368 |'''Number of&lt;br /&gt;Crew:'''||3
17369 |-
17370 |'''Launch:'''||[[July 16]], [[1969]]&lt;br /&gt;13:32:00 [[Coordinated Universal Time|UTC]]&lt;br /&gt;[[Kennedy Space Center]], Florida&lt;br /&gt;LC 39A
17371 |-
17372 |'''Lunar&lt;br /&gt;landing:'''||[[July 20]], 1969&lt;br /&gt;20:17:40 UTC&lt;br /&gt;[[Mare Tranquillitatis|Sea of Tranquility]]&lt;br /&gt;0° 40' 26.69&quot; N,&lt;br /&gt;23° 28' 22.69&quot; E [http://nssdc.gsfc.nasa.gov/database/MasterCatalog?sc=1969-059C]&lt;br /&gt;(based on the [[International Astronomical Union|IAU]]&lt;br /&gt;Mean Earth Polar Axis&lt;br /&gt;[[coordinate system]])
17373 |-
17374 |'''Lunar EVA&lt;br /&gt;length:'''||2 h 31 min 40 s
17375 |-
17376 |'''Lunar surface&lt;br /&gt;time:'''||21 h 36 min 20 s
17377 |-
17378 |'''[[Lunar sample]]&lt;br /&gt;mass:'''|| 21.55 kg (47.5 lb)
17379 |-
17380 |'''Splashdown:'''||[[July 24]], [[1969]]&lt;br /&gt;16:50:35 UTC&lt;br /&gt;{{coor dm|13|19|N|169|9|W|}}
17381 |-
17382 |'''Time in&lt;br /&gt;lunar orbit:'''||59 h 30 min 25.79 s
17383 |-
17384 |'''Mass:'''||''(see [[#Mission parameters|mission&lt;br /&gt;parameters]])''
17385 |-
17386 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Crew Picture
17387 |-
17388 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:ap11-s69-31740.jpg|center|225px|Apollo 11 crew portrait (L-R: Armstrong, Collins, and Aldrin)]]&lt;br&gt;&lt;small&gt;L-R: Armstrong, Collins, and Aldrin&lt;/small&gt;
17389 |-
17390 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|''Apollo 11'' Crew
17391 |}
17392
17393 {|align=right
17394 |-
17395 |[[Image:First step on moon.jpg|thumb|center|160px|Neil Armstrong takes first step onto the Moon]]
17396 |-
17397 |align=center width=160|'''''&quot;That's one small step for [a] man, one giant leap for mankind.&quot;'''''&lt;br&gt;-Neil Armstrong
17398 |}
17399
17400 '''''Apollo 11''''' was an [[United States|American]] space mission, part of the [[Project Apollo|Apollo program]] and the first manned mission to land on the [[Moon]]. It launched on [[July 16]], [[1969]]. On [[July 20]], mission commander [[Neil Armstrong]] and pilot [[Buzz Aldrin|Edwin 'Buzz' Aldrin]] became the first humans to set foot on the Moon.
17401
17402 ==Crew==
17403 *[[Neil Armstrong]] (flew in ''[[Gemini 8]]'' &amp; ''Apollo 11''), commander
17404 *[[Edwin Aldrin|Edwin 'Buzz' Aldrin]] (flew in ''[[Gemini 12]]'' &amp; ''Apollo 11''), lunar module pilot
17405 *[[Michael Collins (astronaut)|Michael Collins]] (flew in ''[[Gemini 10]]'' &amp; ''Apollo 11''), command module pilot
17406
17407 ===Backup crew===
17408 *[[Jim Lovell|James Lovell]] (flew in ''[[Gemini 7]]'', ''[[Gemini 12]]'', ''[[Apollo 8]]'', ''[[Apollo 13]]''), commander
17409 *[[Fred Haise]] (flew in ''[[Apollo 13]]''), lunar module pilot
17410 *[[Bill Anders]] (flew in ''[[Apollo 8]]''), command module pilot
17411
17412 ===Support crew===
17413 *[[Ron Evans]] (flew in ''[[Apollo 17]]'')
17414 *[[Ken Mattingly]] (flew in ''[[Apollo 16]]'', ''[[STS-4]]'', ''[[STS-51-C]]'')
17415 *[[Jack Swigert]] (flew in ''[[Apollo 13]]'')
17416 *[[William Pogue|Bill Pogue]] (flew in ''[[Skylab 4]]'')
17417
17418 ==Mission highlights==
17419 ===Launch and lunar landing===
17420 The ''Apollo 11'' mission launched from the
17421 [[Kennedy Space Center]] on [[July 16]], [[1969]] at 13:32 UTC (9:32 A.M. local time) and entered Earth orbit 12 minutes later. After one and a half orbits, the third-stage engine pushed the spacecraft onto its trajectory toward the Moon. About 30 minutes later, the command/service module pair separated from the last remaining Saturn V stage, turned around, and docked its nose to the top of the lunar module still nestled in the [[Apollo spacecraft#Spacecraft Lunar Module Adapter .28SLA.29|Lunar Module Adaptor]]
17422
17423 ''Apollo 11'' passed behind the Moon on [[July 19]] and soon after fired its main rocket, entering into lunar orbit. In the several orbits that followed, the crew got passing views of their landing site.
17424
17425 The first ''Apollo'' landing site, in the southern [[Mare Tranquilitatis|Sea of Tranquility]] about 20 km (12 mi) southwest of the crater Sabine D, was selected in part because it had been characterized as relatively flat and smooth by the automated ''[[Ranger 8]]'' and ''[[Surveyor 5]]'' landers, as well as by ''[[Lunar Orbiter]]'' mapping spacecraft, and therefore unlikely to present major landing or [[Extra-vehicular activity|Extra-vehicular activity (EVA)]] challenges. Armstrong bestowed the name [[Tranquillity Base]] on the landing site immediately after touchdown.
17426
17427 [[Image:Apollo 11 bootprint.jpg|thumb|233px|left|Buzz Aldrin bootprint. It was part of an experiment to test the properties of the lunar [[regolith]].]]
17428
17429 On [[July 20]], [[1969]], while on the [[Far side (Moon)|far side]] of the Moon, the [[Apollo Lunar Module|lunar module]], called ''Eagle'', separated from the Command Module, named ''Columbia''. Collins, now alone aboard ''Columbia'', carefully inspected ''Eagle'' as it pirouetted before him. Soon after, Armstrong and Aldrin fired ''Eagle'''s engine and began their descent. They soon saw that they were &quot;running long&quot;; ''Eagle'' was 4 seconds further along its descent trajectory than planned, and would land miles west of the intended site. The [[Apollo Guidance Computer|LM navigation and guidance computer]] reported several unusual &quot;program alarms&quot; as it guided the LM's descent. These alarms tore the crew's attention away from the scene outside as the descent proceeded. In NASA's Mission Control Center in Houston, Texas, a young [[Flight controller| controller]] named Steve Bales told the [[Flight controller| flight director]] that it was safe to continue the descent in spite of the alarms. Once they returned their attention to the view outside, the astronauts saw that their computer was guiding them toward a landing site full of large rocks scattered around a large crater. Armstrong took manual control of the lunar module at that point, and guided it to a landing at 20:17 UTC on [[July 20]] with about 30 seconds' worth of fuel left[http://www.hq.nasa.gov/alsj/a11/a11.landing.html].
17430
17431 [[Image:ap11-KSC-69PC-442.jpg|thumb|right|200px|The [[Saturn V]] carrying ''Apollo 11'' took several seconds to clear the tower on [[July 16]], [[1969]].]]
17432
17433 The program alarms were &quot;executive overflows&quot;, indicating that the computer could not finish its work in the time allotted. The cause was later determined to be the LM rendezvous radar being left on during the descent, causing the computer to spend unplanned time servicing the unused radar. Steve Bales received a [[Medal of Freedom]] for his &quot;go&quot; call under pressure. Although Apollo 11 landed with less fuel than other missions, they also encountered a premature low fuel warning. It was later found caused by the lunar gravity permitting greater propellant 'slosh', uncovering a fuel sensor; extra baffles in the tanks were subsequently added.
17434
17435 At 2:56 UTC on [[July 21]], six and a half hours after landing, Armstrong made his descent to the Moon surface and took his famous &quot;one giant leap for mankind.&quot; Aldrin joined him, and the two spent two-and-a-half hours drilling core samples, photographing what they saw and collecting rocks.
17436
17437 {{video|filename=A11v 1094228.ogg|title=Buzz Aldrin steps onto the Moon|description=|format=[[Ogg]]}}
17438
17439 They planned placement of the Early Apollo Scientific Experiment Package (EASEP) and the U.S. flag by studying their landing site through ''Eagle'''s twin triangular windows, which gave them a 60° field of view. Preparation
17440 required longer than the two hours scheduled. Armstrong had some initial difficulties squeezing through the hatch with his [[Portable Life Support System|PLSS]]. According to veteran moonwalker [[John W. Young|John Young]], a redesign of the [[Apollo Lunar Module|LM]] to incorporate a smaller hatch was not followed by a redesign of the PLSS backpack, so some of the highest heart rates recorded from ''Apollo'' astronauts occurred during LM egress and ingress.
17441
17442 [[Image:As11-40-5903HR.jpg|thumb|right|275px|[[Buzz Aldrin]] poses on the [[Moon]] allowing [[Neil Armstrong]] to photograph both of them using the visor's reflection.]]
17443
17444 The Remote Control Unit controls on Armstrong's chest prevented him from seeing his feet. While climbing down the nine-rung ladder, Armstrong pulled a D-ring to deploy the Modular Equipment Stowage Assembly (MESA) folded against ''Eagle'''s side and activate the TV camera. The first images used a [[Slow-scan television]] system and were picked up at [[Goldstone Deep Space Communications Complex|Goldstone]] in the USA but with better fidelity by [[Honeysuckle Creek]] in Australia. Minutes later the TV was switched to normal television, and the feed was switched to the more sensitive [[radio telescope]] station at the [[Parkes Observatory]] in [[Australia]]. Despite some technical and weather difficulties, ghostly black and white images of the first lunar EVA were received and were immediately broadcast to at least 600 million people on Earth.
17445
17446 After describing the surface (&quot;very fine grained... almost like a powder&quot;), Armstrong stepped off ''Eagle'''s footpad and into history as the first human to set foot on another world. He reported that moving in the Moon's gravity, one-sixth of Earth's, was &quot;perhaps even easier than the simulations.&quot;
17447
17448 In addition to fulfilling President [[John F. Kennedy]]'s mandate to land a man on the Moon before the end of the 1960s, ''Apollo 11'' was an engineering test of the Apollo system; therefore, Armstrong snapped photos of the LM so engineers would be able to judge its post-landing condition. He then collected a contingency soil sample using a sample bag on a stick. He folded the bag and tucked it into a pocket on his right thigh. He removed the TV camera from the MESA, made a panoramic sweep, and mounted it on a tripod 12 m (40 ft) from the LM. The TV camera cable remained partly coiled and presented a tripping hazard throughout the EVA.
17449
17450 [[Image:Apollo 11 plaque closeup on Moon.jpg|right|thumb|Photo of the actual plaque left on the moon (attached to the ladder of the LM Descent Stage).]]
17451
17452 Aldrin joined him on the surface and tested methods for moving around, including two-footed kangaroo hops. The PLSS backpack created a tendency to tip backwards, but neither astronaut had serious problems maintaining balance. Loping became the preferred method of movement. The astronauts reported that they needed to plan their movements six or seven steps ahead. The fine soil was quite slippery. Aldrin remarked that moving from sunlight into ''Eagle'''s shadow produced no temperature change inside the suit, though the helmet was warmer in sunlight, so he felt cooler in shadow.
17453
17454 [[Image:Apollo 11 launch.jpg|thumb|left|180px|A visible shockwave formed as the [[Saturn V]] encountered Maximum Dynamic Pressure (Max Q) at about 1 minute 20 seconds into the flight (altitude 12.5 km, 4 km downrange, velocity 440m/s).]]
17455
17456 Together the astronauts planted the U.S. flag, then took a phone call from President [[Richard Nixon]].
17457
17458 The MESA failed to provide a stable work platform and was in shadow, slowing work somewhat. As they worked, the moonwalkers kicked up gray dust which soiled the outer part of their suits, the integrated thermal meteoroid garment.
17459
17460 They deployed the EASEP, which included a passive seismograph and a laser ranging retroreflector. Then Armstrong loped about 120 m (400 ft) from the LM to snap photos at the rim of East Crater while Aldrin collected two core tubes. He used the geological hammer to pound in the tubes - the only time the hammer was used on ''Apollo 11''. The astronauts then collected rock samples using scoops and tongs on extension handles. Many of the surface activities took longer than expected, so they had to stop documented sample collection halfway through the allotted 34 min.
17461
17462 [[image:as11-40-5886.jpg|thumb|right|300px|Neil Armstrong works at the LM in one of the few photos taken of him from the lunar surface. NASA photo as11-40-5886]]
17463
17464 During this period Mission Control used a coded phrase to warn Armstrong that his metabolic rates were high and that he should slow down. He was moving rapidly from task to task as time ran out. Rates remained generally lower than expected for both astronauts throughout the walk, however, so Mission Control granted the astronauts a 15-minute extension.
17465
17466 ===Lunar ascent and return===
17467 Aldrin entered ''Eagle'' first. With some difficulty the astronauts lifted film and two sample boxes containing more than 22 kg (48 lb) of lunar surface material to the LM hatch using a flat cable pulley device called the Lunar Equipment Conveyor. Armstrong then jumped to the ladder's third rung and climbed into the LM.
17468
17469 After transferring to LM [[life support]], the explorers lightened the ascent stage for return to lunar orbit by tossing out their PLSS backpacks, lunar overshoes, one [[Hasselblad]] camera, and other equipment. Then they lifted off in ''Eagle''&lt;nowiki&gt;'&lt;/nowiki&gt;s ascent stage to rejoin CMP Michael Collins aboard ''Columbia'' in lunar orbit. ''Eagle'' was jettisoned and left in lunar orbit. Later NASA reports mentioned that ''Eagle''&lt;nowiki&gt;'&lt;/nowiki&gt;s orbit had decayed resulting in it impacting in an &quot;uncertain location&quot; on the lunar surface.
17470
17471 After more than 2&amp;frac12; hours on the lunar surface, they returned to Collins on board ''Columbia'', bringing 20.87 kilograms of lunar samples with them. The two Moon-walkers had left behind scientific instruments such as a [[retroreflector]] array used for the [[Lunar Laser Ranging Experiment]]. They also left an [[Flag of the United States|American flag]] and other mementos, including a [[lunar plaques|plaque]] (mounted on the LM Descent Stage ladder) bearing two drawings of Earth (of the Western and Eastern Hemispheres), an inscription, and signatures of the astronauts and [[Richard Nixon]]. The inscription read:
17472
17473 :''Here Men From Planet Earth&lt;br&gt;First Set Foot Upon the Moon&lt;br&gt;July 1969 A.D.&lt;br&gt;We Came in Peace For All Mankind.''
17474
17475 The astronauts returned to earth on [[July 24]], welcomed as [[hero]]es. The splashdown point was {{coor dm|13|19|N|169|9|W|}}, 2,660 km (1,440 [[nautical mile|nm]]) east of [[Wake Island]], or 380 km (210 nm) south of [[Johnston Atoll]], and 24 km (15 [[statute mile|mi]]) from the recovery ship, [[USS Hornet (CV-12)|''USS Hornet'']].
17476
17477 The command module is displayed at the [[National Air and Space Museum]], [[Washington, D.C.]]
17478
17479 [[Image:Apollo 11 crew in quarantine.jpg|thumb|right|200px|The crew of Apollo 11 in [[quarantine]] after returing to earth, visited by [[Richard Nixon]].]]
17480
17481 ==Contingency television address==
17482 The [[National Archives and Records Administration|National Archives]] in Washington, D.C. has a copy of the following contingency memo titled &quot;In Event of Moon Disaster&quot; and dated [[July 18]], [[1969]], which was prepared by [[William Safire]] for President Nixon to read on television, in the event the ''Apollo 11'' astronauts were stranded on the Moon.
17483
17484 :''&quot;Fate has ordained that the men who went to the Moon to explore in peace will stay on the Moon to rest in peace. These brave men, Neil Armstrong and Edwin Aldrin, know that there is no hope for their recovery. But they also know that there is hope for mankind in their sacrifice.''
17485
17486 :''These two men are laying down their lives in mankind's most noble goal: the search for truth and understanding. They will be mourned by their families and friends; they will be mourned by their nation; they will be mourned by the people of the world; they will be mourned by a Mother Earth that dared send two of her sons into the unknown.''
17487
17488 :''In their exploration, they stirred the people of the world to feel as one; in their sacrifice, they bind more tightly the brotherhood of man. In ancient days, men looked at stars and saw their heroes in the constellations. In modern times, we do much the same, but our heroes are epic men of flesh and blood.''
17489
17490 :''Others will follow, and surely find their way home. Man's search will not be denied. But these men were the first, and they will remain the foremost in our hearts.''
17491
17492 [[Image:Armstrong_16mm.jpg |thumb|right|250px|Armstrong on lunar surface with gold visor raised. From [[16 mm]] film (NASA).]]
17493
17494 :''For every human being who looks up at the Moon in the nights to come will know that there is some corner of another world that is forever mankind.&quot;''
17495
17496 The last line of the statement is reminiscent of a [[Rupert Brooke]] poem called &quot;The Soldier&quot;. The poem starts:
17497
17498 :''If I should die, think only this of me:&lt;br&gt;That there's some corner of a foreign field&lt;br&gt;That is forever England.''
17499
17500 Following this address, radio communications with the moon would have been cut off, the astronauts left alone to die, while a clergyman was to commend their souls to &quot;the deepest of the deep&quot; in the fashion of a burial at sea.
17501
17502 ==Gallery==
17503 &lt;gallery&gt;
17504 Image:Apollo11.png|Aldrin stands next to the Passive Seismic Experiment Package with the [[Lunar Module]] in the background.
17505 Image:Aldrin near Module leg.jpg|Aldrin inspects the LM landing gear.
17506 Image:Apollo11.1000.jpg|Aldrin unpacks experiments from the LM.
17507 Image:Buzz Aldrin with U.S. flag.jpg|Aldrin with the U.S. flag
17508 Image:23_A11east.jpg|Panoramic Assembly of East Crater
17509 &lt;/gallery&gt;
17510
17511 ==Communications link==
17512 Early in the planning of the [[Project Apollo]], NASA decided to combine all communications between spacecraft and Earth into a single multiplexed feed called 'The Unified S-Band System', including audio communications, television images, crew medical telemetry and the spacecraft systems telemetry.
17513
17514 The signal was picked up by three purpose-built stations (Goldstone (California), Honeysuckle Creek (Australia) and Fresnedillas (Spain) and backed-up by deep space network stations (known as 'wing stations') in Australia, Spain and the United States. At first, the signal was routed to Greenbelt, Maryland, by way of submarine telephone cables, using twelve voice circuits. The signal was divided into twelve parts using inverse multiplexing, sent onto the circuits, and reintegrated in Maryland, before being sent on to NASA in Houston.
17515
17516 Intelsat satellites began taking over the trans-oceanic transmissions toward the end of the 1960s, and NASA ended its contracts for the submarine telephone circuits, which were then reallocated by telephone administrations for normal voice use.
17517
17518 On [[14 July]] [[1969]], the Intelsat satellite over the Atlantic failed. A replacement was launched on 16 July, but went into a useless orbit and would not be reoriented in time to be used. The [[Early Bird]] satellite was activated, but thought it might not have enough power to get a signal to the United States. The Australia station was vital to picking up the signal during the moonwalks, or keeping the astronauts waiting on the moon eight hours before venturing out. A communications team was dispatched to Spain to begin setting up the telephone circuits for NASA's inverse multiplexed signal.
17519
17520 European telecommunications administrators, mostly government post offices, were not accustomed to doing the business required: they would normally require telegram messages to be exchanged, with top level administrative approval, but the twelve circuits had to be recovered from six countries to be made available to NASA, which had set a time limit two hours before launch, or the launch would be canceled. It would be the last ideal launch window before 1970. Other launch windows had been missed due to spacecraft equipment problems. An official with the Spanish communications authority helped the team secure the circuits with his own personal list of contacts.
17521
17522 The last circuit using inverse multiplexing was accepted by NASA just minutes before the time limit. Three days later, the transmissions from the Moon were picked up in Spain, relayed to the United States over the undersea circuits, and made available by NASA to the Americas. They were beamed across the Pacific Ocean, and from the Far East were carried on the Indian Ocean satellite.
17523
17524 The postal/telephone authority in West Germany turned a large radio dish to aim at the Indian Ocean satellite, picking up the signal from Australia and providing it to Western Europe, therefore, viewers in Western Europe saw Neil Armstrong set foot on the moon a full half second later than those in the United States, and some 1.8 seconds after it actually happened.
17525
17526 Had this vital communications link not been restored, the pledge of President [[John F. Kennedy]] to land a man on the moon by the end of the decade would have been missed.
17527
17528 ==Mission trivia and urban legends==
17529 ===Trivia===
17530 * Some internal NASA planning documents referred to the callsigns of the [[Apollo Command/Service Module|CSM]] and [[Apollo Lunar Module|LM]] as &quot;Snowcone&quot; and &quot;Haystack&quot;; these were quietly changed before being announced to the press.
17531 * Shortly after landing, before preparations have begun for the [[Extra-vehicular activity|EVA]], Aldrin broadcast that -
17532 ::''This is the LM pilot. I'd like to take this opportunity to ask every person listening in, whoever and wherever they may be, to pause for a moment and contemplate the events of the past few hours and to give thanks in his or her own way.''
17533 :He then took [[Eucharist|Holy Communion]], privately. At this time, NASA was still fighting a lawsuit brought by [[Madalyn Murray O'Hair]] (who had objected to the ''[[Apollo 8]]'' crew reading from the [[Genesis (Old Testament)|Book of Genesis]]), which demanded that their astronauts refrain from religious activities while in space. As such, Aldrin (an [[Episcopalian]]) chose to refrain from directly mentioning this. He had kept the plan quiet, not even mentioning it to his wife, and did not reveal it publicly for several years.
17534 * Several books indicate that early mission timelines had Buzz Aldrin, not Neil Armstrong, as the first man on the Moon.
17535 * A replica of the footprint left by Neil Armstrong is located in Tranquility Park in [[Houston, Texas]]; the park was dedicated in 1979, a decade after the first moon landing.
17536 * The [[Australia]]n movie, ''[[The Dish]]'' (2000), tells the (slightly fictionalised) story of how the images of the moon-walk were received by the [[radio telescope]] at [[Parkes Observatory]], [[New South Wales]].
17537 * According to the [[HBO]] [[mini-series]] ''[[From the Earth to the Moon (HBO)|From the Earth to the Moon]]'', [[Michael Collins (astronaut)|Michael Collins]] made the following suggestion as to what Armstrong should say upon stepping onto the lunar surface: &quot;If you had any balls, you'd say 'Oh, my God, what is [[extraterrestrial life|that thing]]?' then scream and cut your [[microphone|mic]].&quot;
17538 * Armstrong claims to have said &quot;That's one small step for ''a'' man, one giant leap for mankind.&quot;, although the &quot;''a''&quot; is not at all clear in recordings made at ground control. It has been pointed out that the audio and video links were somewhat intermittent (partly due to storms near [[Parkes Observatory]]). Recently, digital analysis of the tape by NASA revealed the &quot;a&quot; may have been spoken, but obscured by static.[http://www.straightdope.com/classics/a3_362]
17539
17540 ===Folklore===
17541 *At some point while on the moon Armstrong supposedly said &quot;Good luck Mr. Gorski&quot;. Some years later Gorski died, so he felt he could now explain this remark. As a boy, he heard a couple next door arguing, and the wife said: &quot;Oral sex? Is it oral sex you want? You'll get oral sex when the kid next door walks on the moon, Mr. Gorski!&quot; This story is untrue. [http://www.snopes.com/quotes/mrgorsky.htm]
17542 * Neil Armstrong apparently took a [[tartan]] where no tartan had been worn before. A tiny swatch of the [[Scottish clan|Clan]] Armstrong plaid was affixed to his suit when he walked on the Moon. Another item that Armstrong took with him was a special diamond-studded [[astronaut pin]] which was given to [[Deke Slayton]] by the widows of the ''[[Apollo 1]]'' crew. The pin had been intended to be flown in ''Apollo 1'', then given to Deke after the mission, but due to the disaster, the widows ended up giving the pin to him after the funerals. Deke gave the pin to Neil to leave at Tranquility Base.
17543 * Two main [[Conspiracy theory|conspiracy theories]] surround the mission.
17544 ** Firstly that the [[Apollo moon landing hoax accusations|landing was a hoax]]. This is generally discounted, although it has slowly grown in popularity, particularly since the release of the movie ''[[Capricorn One]]'' (1978), which portrays a NASA attempt to fake a landing on Mars.
17545 ** Secondly, a less well known [[urban legend]] suggests that they were being 'watched' while on the Moon, and had seen alien vehicles there. This grew in popularity after the book ''Someone else is on our Moon'' was published.
17546 *According to another legend, a survey undertaken in the 1980s in [[Morocco]] revealed that a substantial percentage didn't think man had landed on the Moon; this was not due to conspiracy theory, but rather to that segment not having been informed.
17547
17548 ==See also==
17549 {{commons|Apollo 11}}
17550
17551 * [[Extra-vehicular activity]]
17552 * [[List of spacewalks]]
17553 * [[Splashdown]]
17554 * [[List of artificial objects on the Moon]]
17555 * [[Google Moon]]
17556
17557 ==External links==
17558 * [http://www.hq.nasa.gov/alsj/frame.html NASA: ''Apollo'' Lunar Surface Journal]
17559 *[http://www.astronautix.com/flights/apollo11.htm ''Apollo 11'' entry in Encyclopedia Astronautica]
17560 * [[USGS]]: [http://astrogeology.usgs.gov/Projects/LunarAtlas/maps/ ''Apollo'' Mission Traverse Maps]
17561 * [http://www.abc.net.au/science/moon/computer.htm Description of The Lunar Module Computer]
17562 * [http://history.nasa.gov/ap11ann/ap11events.html Record of Lunar Events]
17563 * [http://www.CompleatHeretic.com/pubs/columns/apollo11.html First moon landing in 1969 marked an entire generation]
17564 * [http://sourceforge.net/projects/nassp/ ''Apollo'' simulation for Orbiter spaceflight sim]
17565
17566 ===References===
17567 * {{cite web | url = http://history.nasa.gov/SP-4029/Apollo_00a_Cover.htm | title = ''Apollo'' by the Numbers: A Statistical Reference | author = Richard W. Orloff | publisher = NASA }}
17568 * {{cite web | url = http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm | title = The ''Apollo'' Spacecraft: A Chronology }}
17569 * {{cite web | url = http://history.nasa.gov/apsr/apsr.htm | title = ''Apollo'' Program Summary Report }}
17570 * {{cite web | url = http://history.nasa.gov/SP-4012/vol3/table2.39.htm | title = ''Apollo 11'' Characteristics | work = SP-4012 NASA Historical Data Book }}
17571 * {{cite web | url = http://moonpans.co.uk/missions.htm | title = ''Apollo'' Assembled Panoramas }}
17572 * {{cite web | url = http://www.apolloarchive.com/ | title = ''Apollo'' Image Gallery }}
17573 * {{snopes | link = http://www.snopes.com/quotes/onesmall.asp | title = One Small Step }}, discussing (mis-)quote
17574 * {{cite web | url = http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19710015566_1971015566.pdf | title = ''Apollo 11'' Mission Report | format = PDF }}
17575 * {{cite web | author=Office of Public Affairs, NASA | url=http://history.nasa.gov/ap11-35ann/apollo11_log/log.htm | title=EP-72 Log of ''Apollo 11'' | publisher=NASA History Office | accessdate=2006-01-16 }}
17576 * {{cite web | url = http://moon.google.com/ | title = Google Moon }} Lunar Landing Sites - in honor of the first manned Moon landing
17577
17578 {{Project Apollo| before=''[[Apollo 10]]''| after=''[[Apollo 12]]''}}
17579
17580 [[Category:Apollo program]]
17581 [[Category:Human spaceflights]]
17582 [[Category:Lunar spacecraft]]
17583 [[Category:1969]]
17584
17585 [[ca:Apollo 11]]
17586 [[cs:Apollo 11]]
17587 [[da:Apollo 11]]
17588 [[de:Apollo 11]]
17589 [[et:Apollo 11]]
17590 [[es:Apollo 11]]
17591 [[eo:Apollo 11]]
17592 [[fr:Apollo 11]]
17593 [[gl:Apolo XI]]
17594 [[ko:ė•„í´ëĄœ 11호]]
17595 [[it:Apollo 11]]
17596 [[he:אפולו 11]]
17597 [[hu:Apollo-11]]
17598 [[nl:Apollo 11]]
17599 [[ja:ã‚ĸポロ11åˇ]]
17600 [[no:Apollo 11]]
17601 [[nn:Apollo 11]]
17602 [[pl:Apollo 11]]
17603 [[pt:Apollo 11]]
17604 [[ru:АĐŋĐžĐģĐģĐžĐŊ-11]]
17605 [[sk:Apollo 11]]
17606 [[sl:Apollo 11]]
17607 [[fi:Apollo 11]]
17608 [[sv:Apollo 11]]
17609 [[ta:āŽ…āŽĒā¯āŽĒāŽ˛ā¯āŽ˛ā¯‹ 11]]
17610 [[zh:é˜ŋæŗĸįŊ—11åˇ]]</text>
17611 </revision>
17612 </page>
17613 <page>
17614 <title>Apollo 8</title>
17615 <id>663</id>
17616 <revision>
17617 <id>41819462</id>
17618 <timestamp>2006-03-01T23:21:08Z</timestamp>
17619 <contributor>
17620 <username>Tianxiaozhang</username>
17621 <id>557868</id>
17622 </contributor>
17623 <minor />
17624 <text xml:space="preserve">{| class=&quot;infobox&quot; style=&quot;font-size: 95%; width: 20em;&quot;
17625 |+style=&quot;font-size: larger;&quot; | '''''Apollo 8'''''
17626 |-
17627 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission insignia
17628 |-
17629 |colspan=&quot;2&quot; style=&quot;font-size: smaller; text-align: center;&quot;| [[Image:Apollo-8-patch.jpg|center|200px]]
17630 |-
17631 !colspan=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission statistics
17632 |-
17633 |'''Mission name:'''||Apollo 8
17634 |-
17635 |'''Call sign:'''||Command module:&lt;br /&gt;''Apollo 8''
17636 |-
17637 |'''Number of crew:'''||3
17638 |-
17639 |'''Launch:'''||[[December 21]], [[1968]]&lt;br /&gt;12:51:00 [[Coordinated Universal Time|UTC]]&lt;br /&gt;[[Kennedy Space Center]]&lt;br /&gt;LC 39A
17640 |-
17641 |'''Lunar orbit:'''||Dec 24 09:59:20 UTC –&lt;br /&gt;Dec 25 06:10:16 UTC
17642 |-
17643 |'''Splashdown:'''||[[December 27]], [[1968]]&lt;br /&gt;15:51:42 UTC&lt;br /&gt; {{coor dm|8|6|N|165|1|W|}}
17644 |-
17645 |'''Duration:'''||6 d 3 h 0 min 42 s
17646 |-
17647 |'''Number of lunar orbits:'''||10
17648 |-
17649 |'''Time in lunar orbit:'''||20 h 10 min 13.0 s
17650 |-
17651 |'''Mass:'''||CSM 28,817 kg;&lt;br /&gt;LTA 9,026 kg
17652 |-
17653 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Crew picture
17654 |-
17655 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:Ap8-s68-50265HR.jpg|275px|Apollo 8 crew portrait (L-R: Lovell, Anders and Borman)]]&lt;br&gt;&lt;small&gt;''Apollo 8'' crew portrait &lt;br/&gt;(L-R: Lovell, Anders and Borman)&lt;/small&gt;
17656 |-
17657 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Apollo 8 crew
17658 |}
17659 '''''Apollo 8''''' was the second [[Human spaceflight|manned mission]] of the [[Project Apollo|Apollo space program]], in which Commander [[Frank Borman]], Command Module Pilot [[Jim Lovell|James Lovell]] and Lunar Module Pilot [[William Anders]] became the first humans to leave [[Low Earth orbit|Earth orbit]] and to orbit around the [[Moon]]. It was also the first manned launch of the [[Saturn V]] [[rocket]].
17660
17661 NASA prepared for the mission in only four months. The hardware involved had only been used a few times—the Saturn V had launched only twice before, and the Apollo spacecraft had only just finished its first manned mission, ''[[Apollo 7]]''. However, the success of the mission paved the way for the successful completion of [[John F. Kennedy]]'s goal of landing on the Moon before the end of the decade.
17662
17663 After launching on [[December 21]], [[1968]], the crew took three days to travel to the Moon, which they orbited for 20 hours. While in lunar orbit they made a [[Christmas Eve]] television broadcast. This was one of the most watched broadcasts of all time.
17664
17665 ==Planning==
17666 On [[December 22]], [[1966]], [[NASA]] announced the crew for the third manned Apollo flight: Frank Borman, [[Michael Collins (astronaut)|Michael Collins]] and Bill Anders. Collins was replaced by his backup Jim Lovell, in July 1968, after Collins had to have surgery as he was suffering cervical intervertebral disc herniation — an [[intervertebral disc]] had slipped into the [[spinal cavity]] and required two [[vertebra]]e to be fused together. Collins recovered and went on to be the Command Module Pilot for ''[[Apollo 11]]''.
17667
17668 In September 1967, the [[Lyndon B. Johnson Space Center|Manned Spacecraft Center]] in [[Houston, Texas]], proposed a series of missions that would lead up to a manned lunar landing. Seven mission types were outlined, each testing a specific set of components and tasks; each previous step needed to be completed successfully before the next mission type could be undertaken. These were:
17669
17670 '''A''' - Unmanned [[Apollo Command/Service Module|Command/Service Module]] (CSM) test&lt;/br&gt;
17671 '''B''' - Unmanned [[Apollo Lunar Module|Lunar Module]] (LM) test&lt;/br&gt;
17672 '''C''' - Manned CSM in [[low Earth orbit]]&lt;/br&gt;
17673 '''D''' - Manned CSM and LM in low Earth orbit&lt;/br&gt;
17674 '''E''' - Manned CSM and LM in an [[ellipse|elliptical]] Earth orbit with an apogee of 4600&amp;nbsp;mi (7400&amp;nbsp;km)&lt;/br&gt;
17675 '''F''' - Manned CSM and LM in lunar orbit&lt;/br&gt;
17676 '''G''' - Manned lunar landing
17677
17678 Of all the components of the Apollo system, the [[Apollo Lunar Module|Lunar Module]] (LM), which would eventually be used to land on the Moon, presented the most problems. It was behind schedule and when the first model was shipped to [[Cape Canaveral]] in June 1968, over 101 separate defects were discovered. [[Grumman Aircraft Engineering Corporation]], which was the lead contractor for the LM, predicted that the first mannable LM, to be used for the D mission, would not be ready until at least February 1969, delaying the entire sequence.
17679
17680 [[Image:Apollo-linedrawing.png|thumb|Apollo CSM diagram (NASA)]]
17681 [[George Low]], the Manager of the Apollo Spacecraft Program Office, proposed a solution in August. Since the [[Apollo Command/Service Module|Command/Service Module]] (CSM) would be ready three months before the Lunar Module, they could fly a CSM-only mission in [[December]] [[1968]]. But instead of just repeating the flight of ''[[Apollo 7]]'', the C mission that would fly the CSM in Earth orbit, they could send the CSM all the way to the Moon and maybe even enter into orbit. This mission was dubbed the &quot;C-Prime&quot; mission. This new mission would allow [[NASA]] to test procedures that would be used on the manned lunar landings that would otherwise have to wait until ''[[Apollo 10]]'', the F mission. There were also concerns from the [[CIA]] that the [[Soviets]] were planning their own circumlunar flight for December to upstage the Americans once again (see [[Zond]] program).
17682
17683 [[Image:Ap8-68-HC-70.jpg|thumb|200px|left|The first stage of AS-503 being erected in the VAB on [[February 1]], [[1968]].]]
17684 Almost every senior manager at NASA agreed with this new mission. The only person who needed some convincing was [[James E. Webb]], the NASA administrator. However, outvoted by the rest of the agency, he gave his approval. After leading the agency for eight years, he would resign just four days before the launch of ''Apollo 7'', the first manned Apollo flight.
17685
17686 [[Deke Slayton]], the Director of Flight Crew Operations, decided to swap the crews of the D and E missions. [[James McDivitt]], the original commander of the D mission, has said he was never offered the circumlunar flight but would probably have turned it down, as he wanted to fly the lunar module. Borman, on the other hand, jumped at the chance: his original mission would just have been a repeat of the previous flight, except in a higher orbit. This swap also meant a swap of spacecraft — Borman's crew would now use CSM-103, while McDivitt's crew would use CSM-104.
17687
17688 In the end, the E mission was canceled as most its objectives had been covered by the ''Apollo 8'' and ''Apollo 9'' flights. Mission managers were also confident that ''[[Apollo 10]]'' would also cover the remaining objectives with its lunar orbit flight.
17689
17690 On [[September 9]], the crew entered the [[Space flight simulator|simulators]] to begin their preparation for the flight. By the time the mission flew, the crew would have spent seven hours training for every actual hour of flight. Although all crew members were trained for all aspects of the mission, it was necessary to specialize. Borman, as commander, was given training on controlling the spacecraft during the [[Atmospheric reentry|re-entry]]. Lovell was trained on [[Celestial navigation|navigating]] the spacecraft in case communication was lost with the Earth. Anders was placed in charge of checking the spacecraft was in working order.
17691
17692 It was not until [[November 12]] that a public announcement was made about the change of mission for ''Apollo 8''. Previous to this [[Thomas O. Paine]], the deputy Administrator of NASA, had made a fleeting remark that all options were being considered.
17693
17694 Borman's main concern during the four months leading up to the launch was keeping the flight plan as simple as possible, not accepting any addition that went beyond the simple objectives of performing the first manned Saturn V launch, going to the Moon and orbiting it. He made sure that they stayed in lunar orbit only as long as necessary — 10 orbits.
17695
17696 The crew, now living in the crew quarters at [[Kennedy Space Center]], received a visit from [[Charles Lindbergh]] the night before the launch. They talked about how before his flight, Lindbergh had used a piece of string to measure the distance from [[New York]] to [[Paris]] on a globe and from that calculated the fuel needed for the flight. The total was a tenth of the amount that the Saturn V would burn every second.
17697
17698 ==The Saturn V==
17699 {{main|Saturn V}}
17700 [[Image:Ap8-KSC-68PC-147.jpg|thumb|300px|The ''Apollo 8'' Saturn V being rolled out to [[Pad 39A]].]]
17701 The Saturn V rocket used by ''Apollo 8'' was designated SA-503, the third flight model. When it was erected in the [[Vertical Assembly Building]] &lt;!-- Editor's Note: At that time it was called the Vertical Assembly Building --&gt;on [[20 December]], [[1967]], it was thought that the rocket would be used for an unmanned test flight carrying a [[boilerplate]] Command/Service Module. Although ''[[Apollo 6]]'' had suffered several major problems (it suffered severe [[pogo oscillation]] during its first stage and two second stage engines shutdown early), [[Marshall Space Flight Center]], in charge of the Saturn V, was confident that it could solve all the issues without the need for another unmanned test flight. The SA-503 mission was thus changed to a manned one.
17702
17703 However, NASA managers did impose some restrictions on a manned flight taking place: the [[S-II]] second stage had to undergo [[cryogenic]] testing at the [[Mississippi Test Facility]] and other changes were to be made to &quot;man-rate&quot; the vehicle. So on [[April 30]], the Saturn V was unstacked and the [[S-II|S-II second stage]] shipped by barge to the test site. The spark igniters on the second and third stage engines were also modified. In May 1968 a leak was found in a first stage engine, requiring it to be replaced.
17704
17705 With only two launches of the Saturn V under its belt, the ground crew at [[Kennedy Space Center]] (KSC) was having problems keeping to the schedule. The Grumman crew was also having issues with the lunar module. Concern was expressed at the fact so much work had to be done on the lunar module after it had shipped to the Cape. The ascent engine developed leaks that caused redesigns and valve changes.
17706
17707 Then in August 1968, the entire mission changed. SA-503 would launch men to the Moon and would not be carrying a lunar module, instead carrying a mass equivalent, called a lunar module test article (LTA), similar to ones used for ''[[Apollo 4]]'' and ''[[Apollo 6]]''. In order to speed up the pre-launch preparations, much of the modification of the Saturn V was taken out of the hands of KSC and given to appropriate development centers; only changes that affected crew safety were made.
17708
17709 The ''Apollo 8'' spacecraft was placed on top of the rocket on [[September 21]] and the rocket made the slow 3-mile (5 km) journey to the launch pad on [[9 October]]. Testing continued all through December until the day before launch.
17710
17711 The SA-503 designation stood for Saturn-Apollo, and was used by NASA departments concerned with the launch vehicle. However, departments concerned with the manned flight often used AS-503, standing for Apollo-Saturn; both of these designations were used at the time to refer to the mission as a whole. The -503 number indicated that it was flight number ''3'' (5'''03''') of the Saturn ''V'' ('''5'''03).
17712
17713 ==The mission==
17714 ===Launch and trans-lunar injection===
17715 [[Image:Ap8-KSC-68PC-329.jpg|thumb|250px|''Apollo 8'' launch. The photo is a [[double exposure]], as the Moon was not visible at the time of launch (NASA)]]
17716 ''Apollo 8'' launched at 7:51:00 a.m. [[Eastern Standard Time Zone|Eastern Standard Time]] on [[December 21]], [[1968]]. The entire launch phase was practically flawless with only minor problems. The [[S-IC|S-IC first stage]]'s engines underperformed by 0.75%, causing the engines to burn for 2.45 seconds longer than planned. Towards the end of the second stage burn, the rocket underwent [[pogo oscillation]]s that Frank Borman estimated were of the order of 12 [[Hertz|Hz]] and about Âą0.25 [[gee|g]] (Âą2.5 m/s&amp;sup2;). The first manned Saturn V placed the spacecraft into a 112.8 mi by 118.9 mi (181.5 km by 191.3 km) Earth orbit with a period of 88 minutes and 10 seconds. The [[apogee]] was also slightly higher than intended, with a planned circular orbit of 115 mi (185 km). The S-IC impacted the Atlantic Ocean at {{coor dm|30|12|N|74|7|W|}} and the S-II at {{coor dm|31|50|N|37|17|W|}}.
17717 {{listen|filename=Apollo 8 liftoff.ogg|title=Launch of Apollo 8|description=Air-to-ground transmissions from T-15 seconds to T+3 minutes|format=[[Ogg]]}}
17718
17719 For the next 2 hours and 38 minutes the crew and Mission Control worked to check that the spacecraft was in working in order and ready for Trans-Lunar Injection (TLI), the burn that would put the spacecraft on a trajectory to the Moon. At the same time the crew transformed the capsule from a rocket payload to a spacecraft. And the [[S-IVB]] third stage had to be in working order. On the previous unmanned test, the S-IVB had failed to re-ignite.
17720
17721 During the flight there would be three [[capsule communicator]]s (usually referred to as &quot;capcoms&quot;) on a rotating roster. These were the only people who would normally communicate with the crew. [[Michael Collins (astronaut)|Michael Collins]] was the first of these on duty and at 2 hours, 27 minutes and 22 seconds after launch radioed &quot;''Apollo 8''. You are Go for TLI&quot;. Mission Control had given official permission for the crew to go to the moon. Over the next twelve minutes before the burn, the crew continued to monitor the spacecraft and the rocket. The [[S-IVB|S-IVB third stage]] rocket ignited on time and burned perfectly for 5 minutes and 17 seconds. The burn increased the velocity of the spacecraft to 35,505 ft/s (10,822 m/s) and their altitude at the end of the burn was 215.4 mi (346.7 km). They were the fastest humans in history.
17722 {{listen|filename=Apollo 8 go for TLI.ogg|title=Go for TLI|description=Capsule communicator Michael Collins gives the crew of ''Apollo 8'' a 'go' for Trans-Lunar Injection|format=[[Ogg]]}}
17723
17724 Now that the S-IVB had performed its required tasks it was jettisoned. The crew then rotated the spacecraft to take some photographs of the spent stage, as well as practiced flying in formation with it. As the crew rotated the spacecraft around they had their first views of the Earth as they moved away from it. This was the first time humans had been able to see the entire Earth in one go.
17725
17726 Borman became worried that the S-IVB was staying too close to the CSM and suggested to Mission Control that the crew perform a separation maneuver. Mission Control at first suggested pointing the spacecraft towards Earth and using the Reaction Control System (RCS) thrusters on the Service Module to add 3 ft/s (0.9 m/s) away from the Earth, but Borman did not want to lose sight of the S-IVB. After much discussion it was decided to burn in this direction anyway but at 9 ft/s (2.7 m/s). These discussions ended up putting the crew an hour behind their flight plan.
17727
17728 Five hours after launch, mission control commanded the S-IVB booster to vent its remaining fuel through its engine bell to change its trajectory such that it would flyby the Moon and enter into a solar orbit, so as to pose no future hazard to the crew. It went into a 0.99 by 0.92 [[Astronomical Unit|AU]] solar orbit with an [[inclination]] of 23.47° and a period of 340.80 days.
17729
17730 The members of the ''Apollo 8'' crew were the first humans to pass through the [[Van Allen radiation belt]]s, which extend up to 15,000 mi (25,000 km) from Earth. Although it was predicted that the passage through the belts would cause a radiation dosage of no more than a chest [[X-ray]] or 1 [[Gray (unit)|milligray]] (during the course of a year, the average human receives a dose of 2 to 3 mGy), there was still interest in the radiation dosages on the crew. So each crewmember wore a Personal Radiation [[Dosimeter]] that could be read back to the ground as well as three passive film dosimeters that show the cumulative radiation experienced by the crew. By the end of the mission, the average radiation dose of the crew was 1.6 mGy.
17731
17732 ===Coasting to the Moon===
17733 [[Image:As08-16-2593.jpg|thumb|250px|One of the first images taken by humans of the whole Earth. Probably photographed by [[Bill Anders]]. South is up with [[South America]] in the middle]]
17734 Jim Lovell's main job as Command Module Pilot was to act as [[navigator]]. Although Mission Control performed all the actual navigation calculation, it was necessary that in case of communication loss the crew could navigate their way home. This was done by star sightings using a [[sextant]] built into the spacecraft, measuring the angle between a star and the Earth's (or the Moon's) [[horizon]]. This proved to be difficult, as the venting by the S-IVB had caused a large cloud of debris to form around the spacecraft, making it hard to distinguish what were the actual stars.
17735
17736 By seven hours into the mission, the delay in moving away from the S-IVB and Lovell's star sightings meant that they were behind schedule on the flight plan by about one hour and 40 minutes. The crew now placed the spacecraft into Passive Thermal Control (PTC), or what is more aptly called [[barbecue]] mode. This had the spacecraft roll about one rotation per hour, along its long axis in order to ensure even [[heat distribution]] of the spacecraft. In direct sunlight, the spacecraft could be heated to over 200 °C while the parts in shadow would be -100 °C. These temperatures could cause the [[heat shield]] to crack or propellant lines to burst. As it was impossible to get a perfect roll, the spacecraft actually swept out a [[Conical surface|cone]] as it rotated. This would have to be trimmed every half hour as it started to get larger and larger.
17737
17738 The first mid-course correction came 11 hours into the flight. Testing on the ground had shown there was a small chance that the [[Service Propulsion System]] (SPS) engine would explode when burned for long periods unless its [[combustion chamber]] was 'coated' first. This could be done by burning the engine for a short period. This first correction burn was only 2.4 seconds and added about 20.4 ft/s (6.2 m/s) [[Prograde and retrograde motion|prograde]] (in the direction of travel). This was less than the 24.8 ft/s (7.5 m/s) planned, and the shortfall was due to a bubble of [[helium]] in the [[redox|oxidizer]] lines causing lower than expected fuel pressure, requiring the crew to use the small Reaction Control System (RCS) thrusters to make up the shortfall. Two later planned midcourse corrections were cancelled as the trajectory was found to be perfect.
17739
17740 Eleven hours into the flight, the crew had been awake for over 16 hours, having been awakened about 5 hours before launch. So it was time for Frank Borman to start his scheduled 7-hour sleep period. It proved difficult to sleep. NASA had decided that at least one crewmember should be awake at all times to deal with any issues that might arise. But the constant radio chatter with the ground and the air circulation fans made it hard to sleep. As well as this, sleeping in space is a somewhat unnatural experience—you cannot rest your head on a [[pillow]] and Bill Anders said that he would suddenly jolt awake with the sensation that he was falling.
17741
17742 [[Image:As8-16-2583.jpg|thumb|250px|''Apollo 8'' [[S-IVB]] rocket stage. (NASA)]]
17743 About an hour after starting his sleep period, Borman requested clearance to take a [[Secobarbitol|Seconal]] [[Barbiturate|sleeping pill]], but the pill had little effect. After Borman slept for seven hours fitfully, he awoke feeling ill. He [[vomiting|vomited]] twice, and had a bout of [[diarrhea]] that left the spacecraft full of small globules of vomit and [[feces]]. The crew cleaned up as best as they could. Borman decided that he did not want the world to know about his medical problems but Lovell and Anders still wanted to tell the ground. They decided to use the Data Storage Equipment (DSE), which could be used by the crew to [[tape recorder|tape voice recordings]] and telemetry, which were then dumped to the ground at high speed. After recording a description of Borman's illness they requested that mission control check the recording, as the crew ''&quot;would like an evaluation of the voice comments&quot;''.
17744
17745 A conference between the crew and medical personnel was held using the unoccupied second floor control room (there were two identical control rooms in Houston on the second and third floor, of which only one is used during the course of a mission). During a private communication with the crew, it was decided that there was little to worry about and that it was either a [[Gastroenteritis|24-hour flu]] as Borman thought, or just a reaction to the sleeping pill. In fact it is now thought that he was suffering from [[Space Adaptation Syndrome]], which affects about a third of astronauts during their first day in space as their [[Labyrinth (inner ear)|vestibular system]] adapts to [[weightlessness]]. It had never arisen on previous spacecraft ([[Project Mercury|Mercury]] and [[Project Gemini|Gemini]]) as they had been too small to move freely in.
17746
17747 [[Image:Ap8-S68-56531.jpg|thumb|left|250px|In-flight footage of the crew taken while they were in orbit around the Moon. In the center is Frank Borman]]
17748 The cruise phase was a relatively uneventful part of the flight, with little happening except for the crew checking that the spacecraft was in working order and they were on course. During this time, NASA scheduled a television broadcast for 31 hours after launch. The camera used was 2 kg and broadcast in [[black-and-white]] only, using a [[Video camera tube|Vidicon]] tube. It had two [[lens (optics)|lens]]es: a very [[wide-angle]] (160°) lens and a [[telephoto]] (9°) lens.
17749
17750 During this first broadcast the crew gave a tour of the spacecraft and attempted to show how the Earth appeared. However this proved impossible, as the narrow-angle lens was difficult to aim without the aid of a monitor to show what it was looking at. Also without proper [[filter (optics)|filter]]s, the image became saturated by any bright source. In the end all the crew could do was show the people watching back on Earth a bright blob. After broadcasting for 17 minutes the rotation of the spacecraft took the [[High Gain Antenna]] out of view of the receiving stations on Earth and they ended the transmission with Lovell wishing his mother happy birthday.
17751 {{listen|filename=Apollo 8 Borman describing the Earth.ogg|title=Borman described the Earth|description=Frank Borman describes view of Earth from midway to Moon|format=[[Ogg]]}}
17752
17753 By this time the planned sleep periods had completely been abandoned. 32ÂŊ hours into the flight, Lovell went to bed, 3ÂŊ hours before he had planned to. A short while later Anders also went to bed after taking a sleeping pill.
17754
17755 Somewhat strangely the crew were unable to see the [[Moon]] for much of the outward cruise. Three of the five windows had fogged up, due to outgassed oils from the [[silicone]] [[sealant]], and due to the attitude required for the PTC, the Moon was almost impossible to see from inside the spacecraft. In fact it was not until the crew had gone behind the Moon that they would be able to see it for the first time.
17756
17757 A second television broadcast came at 55 hours. This time the crew had managed to rig up [[filter (optics)|filter]]s meant for the still cameras, so that they could acquire images of the Earth through the [[telephoto]] lens. Although difficult to aim, as they had to maneuver the entire spacecraft, the crew was able to broadcast back to Earth the first [[television]] pictures of the Earth. The crew spent the transmission describing the Earth and what was visible and the colors that could be seen. The transmission lasted 23 minutes.
17758 {{listen|filename=Apollo 8 Lovell describing the Earth.ogg|title=Lovell describes the Earth|description=Jim Lovell describes view of Earth from 200,000 miles out|format=[[Ogg]]}}
17759
17760 ===Lunar sphere of influence===
17761 At about 55 hours and 40 minutes into the flight, the crew of ''Apollo 8'' became the first humans to enter the gravitational sphere of influence of another celestial body. Or to put it another way, the Moon's [[gravitational force]] became stronger than that of the Earth. At the time it happened, they were 38,759 mi (62,377 km) from the Moon and had a speed of 3,990 ft/s (1,216 m/s) with respect to the Moon. This historic moment was of little interest to the crew as they still calculated their [[trajectory]] with respect to the launch pad at Kennedy Space Center and would do so until they performed their last midcourse correction, when they would switch to a [[reference frame]] based on ideal orientation for the second engine burn they would make in lunar orbit. It was only thirteen hours until they would be in lunar orbit.
17762
17763 The last major event before Lunar Orbit Insertion was a second midcourse correction. It was in [[Prograde and retrograde motion|retrograde]] (against direction of travel) and slowed the spacecraft down by 2.0 ft/s (0.6 m/s), in effect lowering the closest distance that the spacecraft would pass the moon. At exactly 61 hours after launch, about 24,200 mi (39,000 km) from the Moon, the crew burned the RCS for 11 seconds. They would now pass 71.7 mi (115.4 km) from the lunar surface.
17764
17765 At 64 hours into the flight, the crew began to prepare for Lunar Orbit Insertion-1 (LOI-1). This maneuver had to be performed perfectly, and due to [[Astrodynamics|orbital mechanics]] had to be on the far side of the Moon, out of contact with the Earth. After Mission Control was polled for a Go/No Go decision, the crew was told at 68 hours, they were Go and ''&quot;riding the best bird we can find&quot;''. At 68 hours and 58 minutes, the spacecraft went behind the Moon and out of radio contact with the Earth.
17766 {{listen|filename=Apollo 8 prior to LOI.ogg|title=''Apollo 8'' goes behind the Moon|description=The last transmissions from the spacecraft before it goes behind the Moon|format=[[Ogg]]}}
17767
17768 With ten minutes before the LOI-1, the crew began one last check of the spacecraft systems and made sure that every switch was in the correct place. Then they finally got their first glimpses of the Moon. They had been flying over the unlit side, and it was Lovell who saw the first shafts of sunlight [[oblique]]ly illuminating the lunar surface. But the burn was only two minutes away so the crew had little time to appreciate the view.
17769
17770 ===Lunar orbit===
17771 Igniting at 69 hours, 8 minutes and 16 seconds after launch, the SPS burned for 4 minutes and 13 seconds, placing the crew of ''Apollo 8'' in orbit around the Moon. The crew described this as being the longest four minutes of their lives. If the burn had not lasted exactly the right amount of time, the spacecraft could have ended up in a highly [[ellipse|elliptical]] lunar [[orbit]] or even flung off into space. If it lasted too long they could have ended up impacting the Moon. After making sure the spacecraft was working, they finally had a chance to look at the Moon, which they would orbit for the next 20 hours.
17772
17773 [[Image:AS8-13-2329.jpg|thumb|250px|The first Earthrise photographed by humans]]
17774 On Earth, Mission Control continued to wait. If the crew had not burned the engine or the burn had not lasted the planned length of time the crew would appear early from behind the Moon. However this time came and went without ''Apollo 8'' reappearing. And then exactly at the predicted moment, the signal was received from the spacecraft indicating it was in a 193.3 mi by 69.5 mi (311.1 km by 111.9 km) orbit about the Moon.
17775 {{listen|filename=Apollo 8 first lunar orbit transmissions.ogg|title=''Apollo 8'' appears from behind the Moon|description=First transmissions from ''Apollo 8'' after it has entered into lunar orbit|format=[[Ogg]]}}
17776
17777 After reporting on the status of the spacecraft, Lovell gave the first description of what the lunar surface looked like:
17778
17779 :The Moon is essentially grey, no color; looks like [[plaster of Paris]] or sort of a grayish beach sand. We can see quite a bit of detail. The [[Mare Fecunditatis|Sea of Fertility]] doesn't stand out as well here as it does back on Earth. There's not as much contrast between that and the surrounding craters. The craters are all rounded off. There's quite a few of them, some of them are newer. Many of them look like—especially the round ones—look like hit by [[meteorite]]s or projectiles of some sort. [[Langrenus (crater)|Langrenus]] is quite a huge crater; it's got a central cone to it. The walls of the crater are terraced, about six or seven different [[wiktionary:terrace|terrace]]s on the way down.
17780
17781 Lovell continued to describe the terrain that they were passing over. One of the crew's major tasks was [[reconnaissance]] of the planned landing sites on the Moon, especially one in [[Mare Tranquillitatis]] that would be the ''[[Apollo 11]]'' landing site. The launch time of ''Apollo 8'' had been chosen to give the best lighting conditions for the site. A [[film camera]] had been set up in one of the windows to record a frame every second of the Moon below. And Bill Anders would spend much of the next 20 hours taking as many photographs as he could of targets of interest. By the end of the mission the crew would take 700 photographs of the Moon and 150 of the Earth.
17782
17783 [[Image:As8-13-2225.jpg|thumb|left|250px|A portion of the lunar near side. The large crater in the bottom half of the photo is [[Goclenius (crater)|Goclenius]].]]
17784 Throughout the hour that the spacecraft was in contact with the Earth, Borman kept asking how the data for the SPS looked. He wanted to make sure that the engine was working and could be used to return early to the Earth if necessary. He also asked that they receive a Go/No Go decision before they passed behind the Moon on each orbit.
17785
17786 As they reappeared for their second pass in front of the Moon, the crew set up the television to broadcast a view of the lunar surface. Anders described the craters that they were passing over. At the end of this second orbit they performed the eleven-second LOI-2 burn of the SPS to circularize the orbit to 70.0 mi by 71.3 mi (112.6 km by 114.8 km).
17787
17788 Over the next two orbits the crew continued to keep check of the spacecraft and to observe and photograph the Moon. During the third pass, Borman read a small [[prayer]] for his [[church]], as he was meant to lay read during the [[Midnight service]] at St. Christopher's [[Episcopal Church in the United States of America|Episcopal]] Church near [[Seabrook, Texas]] but due to the Apollo 8 flight was unable. A fellow parishioner and engineer at Mission Control, Rod Rose, suggested that Borman read the prayer which could be recorded and then replayed during the service.
17789
17790 It was as the spacecraft came out from behind the Moon for its fourth pass across the front that the crew witnessed an event never before seen—Earthrise. Anders glanced out the window and saw a blue and white orb and realized it was the [[Earth]]. Instantly the crew understood that they needed to take a photograph of this. Anders took both the first photograph, which was black-and-white, and then later the more famous color photo. (After the flight, Borman and Anders both claimed they took the first earthrise photo (Lovell also did, but more as a joke than anything else) - it was determined that it was probably Anders.)
17791
17792 [[Image:NASA-Apollo8-Dec24-Earthrise.jpg|thumb|250px|Earth as seen from ''Apollo 8'', December 24, 1968 (NASA)]]
17793 Anders continued to take photographs while Lovell took the controls of the spacecraft so that Borman could get some rest. As always resting was difficult in the cramped and noisy capsule, though Borman was able to [[doze]] for two orbits. He would awaken at times to ask a question about their status, only to be told that everything was going fine.
17794
17795 Borman did wake up however when he started to hear his fellow crewmembers make mistakes. They were beginning to not understand questions and would have to ask for the answers to be repeated. Borman realized that everyone was extremely tired having not had a good night's sleep in over three days. Taking command, he ordered Anders and Lovell to get some sleep and that the rest of the flight plan regarding observing the Moon be scrubbed. At first Anders protested saying that he was fine, but Borman would not be swayed. At last Anders agreed as long as the commander would set up the camera to continue to take automatic shots of the Moon. Borman also remembered that there was a second television broadcast planned, and with so many people expected to be watching he wanted to crew to be alert. For the next two orbits Anders and Lovell slept while Borman sat at the helm.
17796
17797 As they rounded the Moon for the ninth time, the second television transmission began. Borman introduced the crew, followed by each man giving his impression of the lunar surface and what it was like to be orbiting the Moon. Borman described it as being ''&quot;a vast, lonely, forbidding type of existence or expanse of nothing&quot;''. And then after talking about what they were flying over, Anders said that the crew had a message for all those on Earth.
17798 {{listen|filename=Apollo 8 describing the Moon.ogg|title=''Apollo 8'''s describing the Moon|description=The ''Apollo 8'' crew talk about the Moon and their impressions of it|format=[[Ogg]]}}
17799 {{listen|filename=Apollo 8 genesis reading.ogg|title=The crew of ''Apollo 8'' reading Genesis and wishing Merry Christmas|description=Each man reading a section of [[Genesis (Old Testament)|Genesis]] 1:1-10, the story of [[Creation (theology)|creation]]. Borman closes with: &quot;And from the crew of ''Apollo 8'', we close with, Good night, Good luck, a Merry Christmas, and God bless all of you, all of you on the good Earth&quot;|format=[[Ogg]]}}
17800
17801 The only thing left for the crew now was to perform the Trans-Earth Injection or TEI, which would occur 2ÂŊ hours after the end of the television transmission. This was the most critical burn of the whole flight. If the SPS failed to ignite, then the crew would be stuck in orbit around the Moon, with only about 5 more days of oxygen and no chance of escape. And once again the burn had to be performed while the crew was out of contact with Earth, on the far side of the Moon.
17802
17803 The burn occurred perfectly on time. The spacecraft telemetry was reacquired as it re-emerged from behind the Moon at 89 hours, 28 minutes, and 39 seconds, the exact time predicted. When voice contact was regained, Lovell announced, &quot;Please be informed, there is a [[Santa Claus]]&quot;, to which [[Ken Mattingly]], the capcom, replied, &quot;That's affirmative, You are the best ones to know&quot;. It was [[Christmas Day]], 1968.
17804 {{listen|filename=Apollo 8 on the way home.ogg|title=There is a Santa Claus|description=''Apollo 8'' appears from behind the Moon after its successful SPS engine burn|format=[[Ogg]]}}
17805
17806 [[Image:AS8-13-2344.jpg|thumb|250px|Rupes Cauchy in eastern Mare Tranquillitatis]]
17807
17808 ===Unplanned manual re-alignment===
17809 Later, Lovell used some otherwise idle time to do some navigational sightings, maneuvering the module to view various stars by using the computer keyboard. However, an accidental entry erased some of the computer's memory, which caused the inertial measuring unit (IMU) to think the module was in the same relative position it had been in before lift-off and fire the thrusters to &quot;correct&quot; the module's attitude.
17810
17811 Once the crew realized why the computer had changed the module's attitude, they realized they would have to re-enter data that would tell the computer its real position. It took Lovell ten minutes to figure out the right numbers, using the thrusters to get the stars [[Rigel]] and [[Sirius]] aligned, and another fifteen minutes to enter the corrected data into the computer.
17812
17813 Sixteen months later, Lovell would once again have to perform a similar manual re-alignment, under more critical conditions, during the ''[[Apollo 13]]'' mission, after that module's IMU had to be turned off to conserve energy. In his 1994 book, ''Lost Moon: The Perilous Voyage of Apollo 13'' (later re-titled ''Apollo 13'' when the movie based on it, ''[[Apollo 13 (film)|Apollo 13]]'' came out), Lovell wrote, &quot;My training [on Apollo 8] came in handy!&quot; In that book he dismissed the incident as a 'planned experiment', requested by the ground crew. However, in subsequent interviews Lovell has acknowledged that the incident was an accident, caused by his mistake, as described in [[Robert Zimmerman (author)|Robert Zimmerman]]'s 1998 book ''Genesis: The Story of Apollo 8''.
17814
17815 ===Cruise back to Earth and re-entry===
17816 The cruise back to Earth was mostly a time for the crew to relax and monitor the spacecraft. As long as the trajectory specialists had calculated everything correctly, the spacecraft would re-enter 2ÂŊ days after TEI and [[splashdown]] in the Pacific.
17817
17818 On Christmas afternoon, the crew made their fifth and final television broadcast. This time they gave a tour of the spacecraft, showing how an astronaut lived in space. When they had finished broadcasting they found a small present from Deke Slayton in the food locker—real [[domesticated turkey|turkey]] with [[stuffing]] and three miniature bottles of [[brandy]] (which remained unopened). There were also small presents to the crew from their wives.
17819
17820 [[Image:Ap8-S68-56310.jpg|thumb|250px|The ''Apollo 8'' Command Module on the deck of the [[USS Yorktown (CV-10)|USS ''Yorktown'']].]]
17821 After two uneventful days the crew prepared for re-entry. The computer would control the re-entry and all the crew had to do was put the spacecraft in the correct attitude, blunt end forward. If the computer broke down, Borman would take over.
17822
17823 After separating from the Service Module, all the crew could do was sit and wait. Six minutes before they hit the top of the atmosphere, the crew saw the Moon rising above the Earth's horizon, just as had been predicted by the trajectory specialists. As they hit the thin outer atmosphere they noticed it was becoming hazy outside as glowing [[Plasma physics|plasma]] formed around the capsule. The capsule started slowing down and the deceleration peaked at 6 g (59 m/s&amp;sup2;). With the computer controlling the descent by changing the [[Aircraft attitude|attitude]] of the capsule, ''Apollo 8'' rose briefly like a skipping stone before descending to the ocean. At 30,000 feet (9 km) the drogue parachute stabilized the spacecraft and was followed at 10,000 feet (3 km) by the three main parachutes. The spacecraft splashdown position was estimated to be {{coor dm|8|6|N|165|1|W|}}.
17824
17825 When it hit the water, the parachutes dragged the spacecraft over and left it upside down, in what was termed Stable 2 position. As they were buffeted by a 10-foot (3 m) swell, Borman was sick, waiting for the three floatation balloons to right the capsule. It was 43 minutes after splashdown before the first [[frogman]] from the [[USS Yorktown (CV-10)|USS ''Yorktown'']] arrived, as the capsule had landed before sunrise. Forty-five minutes later they were on the deck of the aircraft carrier.
17826
17827 The command module is now displayed at the [[Chicago, Illinois|Chicago]] [[Museum of Science and Industry in Chicago|Museum of Science and Industry]], along with a collection of personal items from the flight donated by Lovell and Frank Borman's spacesuit. Jim Lovell's spacesuit can be found at NASA's [[Glenn Research Center]].
17828
17829 ==Historical importance==
17830 ''Apollo 8'' came at the end of 1968, a year that had seen much upheaval around the world. [[Soviet Union|Soviet]] tanks had put a stop to the [[Prague Spring]] in [[Czechoslovakia]]; [[Martin Luther King, Jr.]] and [[Robert F. Kennedy]] had been assassinated; the [[Vietnam War]] had escalated with the [[Tet Offensive]]; University campuses across the [[United States]] had seen rioting and occupation of buildings by students; [[May 1968|May]] had seen rioting in [[Paris]] that almost led to revolution.
17831
17832 Yet over all these other events, [[TIME|TIME magazine]] chose the crew of ''Apollo 8'' as their [[Person of the Year|Men of the Year]] for 1968, recognizing them as the people that most influenced events in the preceding year. They had been the first people to ever leave the gravitational influence of the Earth and orbit another celestial body. They had survived a mission that even the crew themselves had rated as only having a fifty-fifty chance of fully succeeding. The effect of ''Apollo 8'' can be summed up by a [[Telegraphy|telegram]] from a stranger, received by Borman after the mission, that simply stated, &quot;Thank you ''Apollo 8''. You saved 1968.&quot;
17833
17834 [[Image:January 3, 1969 Time Magazine Cover.jpg|thumb|[[January 3]], [[1969]] cover of [[TIME|TIME Magazine]] with the Apollo 8 crew]]
17835 One of the most famous aspects of the flight was the Earthrise picture that was taken as they came around for their fourth orbit of the Moon. Although it was not the first image taken of the whole Earth nor would it be the last, this was the first time that humans had taken such a picture. Some regard the picture as being the start of the [[Environmentalism|environmentalist]] movement, with the first [[Earth Day]] in 1970.[http://ipp.nasa.gov/innovation/Innovation_84/wnewview.html]
17836
17837 The mission was the most widely covered by the media since the first American orbital flight, [[Mercury Atlas 6]] by [[John Glenn]] in 1962. There were 1200 journalists covering the mission, with the [[BBC]] coverage being broadcast in 54 countries in 15 different languages. The Soviet newspaper ''[[Pravda]]'' even covered the flight without the usual anti-American editorializing. It is estimated that a quarter of the people alive at the time saw — either live or delayed — the Christmas Eve transmission during the ninth orbit of the Moon; it had a tremendous impact. Touring the world after the mission, Borman met with [[Pope Paul VI]]; he was told &quot;I have spent my entire life trying to say to the world what you did on Christmas Eve.&quot;
17838
17839 The militant [[atheist]] [[Madalyn Murray O'Hair]] later caused controversy by bringing a lawsuit against NASA over the reading from ''Genesis''; she wished the courts to ban US astronauts—who were all Government employees—from public prayer in space. This was eventually rejected by the courts, but it caused NASA to be skittish about the issue of religion throughout the rest of the Apollo program. [[Buzz Aldrin]], on ''[[Apollo 11]]'', took [[Eucharist|communion]] on the surface of the moon after landing; he refrained from mentioning this publicly for several years, and only obliquely referred to it at the time.
17840
17841 ==Crew==
17842 *[[Frank Borman]] (flew on ''[[Gemini 7]]'' &amp; ''Apollo 8''), commander
17843 *[[Jim Lovell|James Lovell]] (flew on ''[[Gemini 7]]'', ''[[Gemini 12]]'', ''Apollo 8'' &amp; ''[[Apollo 13]]''), command module pilot
17844 *[[William Anders]] (flew on ''Apollo 8''), lunar module pilot
17845
17846 As a note, astronaut [[Michael Collins]], who flew aboard the [[Gemini 10]] mission, was originally slated to fly aboard Apollo 8 as Command Module pilot. A [[bone spur]] in his neck that required surgery grounded Collins, requiring Jim Lovell to fly in Collins' place. In early 1969, Collins was reinstated to active flight status, and replaced Fred Haise on the Apollo 11 prime crew as Command Module pilot, while Edwin Aldrin became lunar module pilot. Haise became the backup LM pilot for Apollo 11.
17847
17848 ===Backup crew===
17849 The backup crew trained to take the place of the prime crew in case of illness or death.
17850 *[[Neil Armstrong]], (flew on ''[[Gemini 8]]'', ''[[Apollo 11]]''), commander
17851 *[[Edwin E. Aldrin]], (flew on ''[[Gemini 12]]'', ''[[Apollo 11]]''), command module pilot
17852 *[[Fred Haise]], (flew on ''[[Apollo 13]]''), lunar module pilot
17853
17854 ===Support crew===
17855 The support crew were not trained to fly the mission but were able to stand in for astronauts in meetings and be involved in the minutiae of mission planning, while the prime and backup crews trained. They often also served as capcoms during the mission.
17856 *[[John S. Bull|John Bull]] (never flew in space)
17857 *[[Vance Brand]] (flew on ''[[Apollo-Soyuz Test Project]]'', ''[[STS-5]]'', ''[[STS-41-B]]'', ''[[STS-35]]''
17858 *[[Gerald Carr]] (flew on ''[[Skylab 4]]'')
17859 *[[Ken Mattingly]] (flew on ''[[Apollo 16]]'', ''[[STS-4]]'', ''[[STS-51-C]]'')
17860
17861 ==Mission parameters==
17862 *'''CSM [[Mass]]:''' 63,531 lb (28,817 kg)
17863
17864 ===Earth parking orbit===
17865 *'''[[Perigee]]:''' 112.8 mi (181.5 km)
17866 *'''[[Apogee]]:''' 118.9 mi (191.3 km)
17867 *'''[[Inclination]]:''' 32.51°
17868 *'''[[Orbital period|Period]]:''' 88.17 min
17869
17870 ===Lunar orbit===
17871 *'''[[Perilune]]:''' 69.5 mi (111.9 km)
17872 *'''[[Apolune]]:''' 193.3 mi (311.1 km)
17873 *'''[[Inclination]]:''' 12°
17874 *'''[[Orbital period|Period]]:''' 128.7 min
17875
17876 ===Translunar injection burn===
17877 *[[December 21]], [[1968]], 15:41:38 UTC
17878
17879 The Saturn V, [[S-IVB]] third stage, was fired for a second time. It burned for a total of 318 seconds. ''Apollo 8'' was propelled from an [[Earth]] [[Low Earth orbit|parking orbit]] velocity of 25,567 ft/s (7793 m/s) to a translunar [[trajectory]] [[Escape velocity|velocity]] of 35,505 ft/s (10,822 m/s).
17880
17881 ==See also==
17882 {{Commons|Apollo 8}}
17883
17884 *[[Splashdown]]
17885 *[[Project Apollo]]
17886 *[[Space Race]]
17887 *[[List of lunar astronauts]]
17888
17889 ==References==
17890 *[http://nssdc.gsfc.nasa.gov/planetary/lunar/apollo8info.html NASA NSSDC Master Catalog]. Retrieved on [[March 10]], [[2005]]
17891 *[http://history.nasa.gov/SP-4029/Apollo_08a_Summary.htm Apollo By The Numbers: A Statistical Reference by Richard W. Orloff (NASA)]. Retrieved on [[March 10]], [[2005]]
17892 *[http://history.nasa.gov/ap08fj/ Apollo 8 Flight Journal]. Retrieved on [[March 10]], [[2005]]
17893 *[http://www.hq.nasa.gov/office/pao/History/SP-4204/ch20-6.html Moonport: A History of Apollo Launch Facilities and Operations]. Retrieved on [[March 10]], [[2005]]
17894 *[http://www.hq.nasa.gov/office/pao/History/SP-4205/ch11-5.html Chariots for Apollo: A History of Manned Lunar Spacecraft]. Retrieved on [[March 10]], [[2005]]
17895 *[http://www.astronautix.com/flights/apollo8.htm Apollo 8] in the [[Encyclopedia Astronautica]]. Retrieved on [[March 10]], [[2005]]
17896 *[http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm The Apollo Spacecraft: A Chronology]. Retrieved on [[March 10]], [[2005]]
17897 *[http://history.nasa.gov/apsr/apsr.htm Apollo Program Summary Report]. Retrieved on [[March 15]], [[2005]]
17898 *[http://cgi.canoe.ca/SpaceArchive/981221_30.html Astronauts look back 30 years after historic lunar launch]. Retrieved on [[March 19]], [[2005]]
17899 *[http://lsda.jsc.nasa.gov/books/apollo/S2ch3.htm Biomedical Results of Apollo]. Retrieved on [[March 19]], [[2005]]
17900 *Chaikin, Andrew (1994). ''A Man On The Moon: The Voyages of the Apollo Astronauts''. Viking. ISBN 0670814466.
17901 *Zimmerman, Robert (1998). ''Genesis: The Story of Apollo 8''. Four Wall Eight Windows. ISBN 1568581181.
17902 *Collins, Michael (1975). ''Carrying the Fire: An Astronaut's Journeys''. W. H. Allen. ISBN 0491016034.
17903 *Slayton, Donald K.; Cassutt, Michael (1995). ''Deke! : An Autobiography''. Forge Books. ISBN 031285918X.
17904 *Compiled by NASA Manned Spacecraft Center (1969). ''Analysis of Apollo 8 Photography and Visual Observations''. US Government Printing Office. [http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19700005062_1970005062.pdf NASA PDF online version]
17905
17906 {{Project Apollo | before=[[Apollo 7]] | after=[[Apollo 9]]}}
17907
17908 {{featured article}}
17909
17910 [[Category:Apollo program|Apollo 08]]
17911 [[Category:Human spaceflights|Apollo 08]]
17912 [[Category:Lunar spacecraft|Apollo 08]]
17913 [[Category:1968 in the United States]]
17914
17915 [[cs:Apollo 8]]
17916 [[de:Apollo 8]]
17917 [[fi:Apollo 8]]
17918 [[fr:Apollo 8]]
17919 [[it:Apollo 8]]
17920 [[he:%D7%90%D7%A4%D7%95%D7%9C%D7%95_8]]
17921 [[hu:Apollo-8]]
17922 [[nl:Apollo 8]]
17923 [[pl:Apollo 8]]
17924 [[pt:Apollo 8]]
17925 [[sk:Apollo 8]]
17926 [[zh:é˜ŋæŗĸįŊ—8åˇ]]</text>
17927 </revision>
17928 </page>
17929 <page>
17930 <title>Astronaut</title>
17931 <id>664</id>
17932 <revision>
17933 <id>41903543</id>
17934 <timestamp>2006-03-02T14:26:20Z</timestamp>
17935 <contributor>
17936 <username>Tom harrison</username>
17937 <id>42168</id>
17938 </contributor>
17939 <minor />
17940 <comment>Reverted edits by [[Special:Contributions/82.249.117.123|82.249.117.123]] ([[User talk:82.249.117.123|talk]]) to last version by Orville Eastland</comment>
17941 <text xml:space="preserve">[[image:Astronaut-EVA.jpg|right|300px|thumb|U.S. Space Shuttle astronaut [[Bruce McCandless II]] using a manned maneuvering unit (MMU) outside the ''Challenger'' in 1984. Picture courtesy NASA]]
17942
17943 An '''astronaut''', '''cosmonaut''' ([[Russian language|Russian]]: ĐēĐžŅĐŧĐžĐŊĐ°ĖĐ˛Ņ‚), '''spationaut''' or '''taikonaut''' (''taikongren'', å¤ĒįŠēäēē) is a person who [[space travel|travels into space]], or who makes a career of doing so. The criteria for determining who has achieved [[human spaceflight]] vary (see [[edge of space]]). In the [[United States]], people who travel above an altitude of 50 miles (80&amp;nbsp;km) are designated as astronauts. The [[FÊdÊration AÊronautique Internationale|FAI]] defines spaceflight as over 100 km (61 miles). As of [[October 12]], [[As of 2005|2005]], a total of 448 humans have reached space according to the U.S. definition, 442 people qualify under the FAI definition, while 438 people have reached [[Earth]] orbit or beyond. These individuals have spent over 28,000 crew-days (or a cumulative total of 76.7 years) in space including over 100 crew-days of spacewalks. A person who has traveled in space is said to hold [[astronaut wings]]. Astronauts from at least [[Timeline of astronauts by nationality|34 countries]] have gone into space.
17944
17945 ==International variations==
17946 By convention, a space traveller employed by the [[Russian Aviation and Space Agency]] or its [[Soviet space program|Soviet]] predecessor is called a '''cosmonaut'''. &quot;Cosmonaut&quot; is an [[anglicisation]] of the [[Russia]]n word ĐēĐžŅĐŧĐžĐŊавŅ‚ ''(kosmonavt)'', which in turn derives from the [[Greek language|Greek]] words ''kosmos'' (&quot;universe&quot;) and ''nautes'' (&quot;sailor&quot;).
17947
17948 In the [[United States|USA]], a space traveller is called an '''astronaut'''. The term derives from the Greek words ''ÃĄstron'' (&quot;star&quot;) and ''nautes,'' (&quot;sailor&quot;). For the most part, &quot;cosmonaut&quot; and &quot;astronaut&quot; are synonyms in all languages, and the usage of choice is often dictated by political reasons. However in the United States, the term &quot;astronaut&quot; is typically applied to the individual as soon as training begins, while in Russia, an individual is not labeled a cosmonaut until successful space flight. The first known use of the term was by [[Neil R. Jones]] in his short story ''The Death's Head Meteor'' in [[1930]]. On [[March 14]], [[1995]] astronaut [[Norman Thagard]] became the first American to ride to space on board a Russian launch vehicle, arguably becoming the first American cosmonaut in the process.
17949
17950 [[Europe]]an (outside of the [[UK]]) space travellers are sometimes, especially in [[French language|French]]-speaking countries, called '''spationauts''' (a [[hybrid word]] formed from the [[Latin]] ''spatium'', &quot;space&quot;, and Greek ''nautes'', &quot;sailor&quot;). Apart from the Soviet Union, Europe has not yet produced manned spacecraft, but has sent men and women into space in cooperation with Russia and the United States.
17951
17952 '''Taikonaut''' is sometimes used in English for astronauts from [[China]] by Western news media. The term was coined in May 1998 by Chiew Lee Yih (čĩĩé‡Œæ˜ą) from [[Malaysia]], who used it first in [[newsgroup]]s. Almost simultaneously, Chen Lan coined it for use in the Western [[mass media|media]] based on the term ''tàikōng'' (å¤ĒįŠē, literally &quot;great emptiness&quot;), [[Chinese language|Chinese]] for &quot;[[outer space|space]]&quot;. In Chinese itself, however, a single term ''yĮ”hÃĄng yuÃĄn'' (厇čˆĒ员, &quot;universe navigator&quot;) has long been used for astronauts. The closest term using ''taikong'' is a [[colloquialism]] ''tàikōng rÊn'' (å¤ĒįŠēäēē, &quot;space person&quot;), which refers to people who have actually been in space. Official English texts issued by the Chinese government use ''astronaut'' ({{zh-sp|s=čˆĒ夊员|p=hÃĄngtiān yuÃĄn}}).
17953
17954 ==Space milestones==
17955 [[Image:GagarinPortrait.jpg|right|thumb|200px|[[Yuri Gagarin]] ]]
17956 [[Image:Tereshkova.jpg|right|thumb|200px|[[Valentina Tereshkova]] ]]
17957
17958 The first attempt ever in human history to use rocket for a spaceflight was done in the [[16th century]] by a Chinese [[Ming dynasty]] official, a skilled stargazer named [[Wan Hu]].&lt;sup&gt;[http://edition.cnn.com/2003/TECH/space/09/30/china.wanhu/index.html]&lt;/sup&gt; This attempt was not successful.
17959
17960 The first cosmonaut was [[Yuri Gagarin]], who was launched into space on [[April 12]] [[1961]] aboard [[Vostok 1]]. The first woman cosmonaut was [[Valentina Tereshkova]], launched into space in June [[1963]] aboard [[Vostok 6]]. [[Alan Shepard]] became the first American in space in May 1961. [[Vladimir Remek]] became the first non-Soviet European in space in [[1978]] on a Russian [[Soyuz launch vehicle|Soyuz]] rocket. On [[July 23]] [[1980]] [[Pham Tuan]] of Vietnam became the first [[Asian]] in space when he flew aboard [[Soyuz 37]]. Also in 1980, [[Arnaldo Tamayo MÊndez]] became the first person of [[African]] descent to fly in space. (The first person born in Africa to fly in space was [[Patrick Baudry]].) In June [[1985]] [[Shannon Lucid]] became the first Chinese born person in space. In [[2002]] [[Mark Shuttleworth]] became the first citizen of an African country to fly in space. On [[15 October]] [[2003]] [[Yang Liwei]] became China's first astronaut on the [[Shenzhou 5]] spacecraft. The first mission to orbit the moon was ''[[Apollo 8]]'' which included [[William Anders]] - who was born in Hong Kong making him the first Asian-born astronaut in [[1968]].
17961
17962 The youngest person to fly in space is [[Gherman Titov]], who was roughly 26 years old when he flew [[Vostok 2]], and the oldest is [[John Glenn]] who was 77 when he flew on [[STS-95]]. The longest stay in space was 438 days by [[Valeri Polyakov]]. [[As of 2005]], the most spaceflights by an individual astronaut was seven, a record held by both [[Jerry L. Ross]] and [[Franklin Chang-Diaz]]. The furthest distance from Earth an astronaut has traveled was 401&amp;nbsp;056&amp;nbsp;km (during the [[Apollo 13]] emergency).
17963
17964 The first non-governmental astronaut was [[Byron K. Lichtenberg]], an [[Massachusetts Institute of Technology|MIT]] researcher who flew on [[Space Shuttle program|Space Shuttle]] mission [[STS-9]] in 1983. In [[December 1990]], [[Toyohiro Akiyama]] became the first commercial space‐farer as a reporter for [[Tokyo Broadcasting System|TBS]] who paid for his flight. The first self‐funded [[space tourist]] was [[Dennis Tito]] on [[28 April]] [[2001]], while the first astronaut to fly on an entirely privately-funded mission was [[Mike Melvill]], on [[SpaceShipOne flight 15P]], though this flight was sub‐orbital.
17965
17966 In the United States, persons selected as astronaut candidates receive silver [[Astronaut wings]]. Once they have flown in space they receive gold Astronaut wings. The [[United States Air Force]] also presents Astronaut wings to its pilots who exceed 50 miles (80 km) in altitude.
17967
17968 == International astronauts ==
17969 [[Image:ZeroG.jpg|right|thumb|400px|Astronauts on the International Space Station. British astronaut [[Michael Foale]] can be seen exercising in the foreground]]
17970
17971 Up until the end of the [[1970s]] only Americans and Soviets were active astronauts. In [[1976]] the Soviets started the [[Intercosmos]] program with a first group of 6 cosmonauts from fellow [[Eastern Bloc]] countries and [[Cuba]], a second group started training in [[1978]]. At about the same time in [[1978]] the [[European Space Agency]] selected 4 astronauts to train for the first [[Spacelab]] mission on board of the [[Space Shuttle]]. In [[1980]] [[France]] started their own selection of astronauts, followed in [[1982]] by [[Germany]], in [[1983]] by the [[Canadian space program]], in [[1985]] by [[Japan]] and [[Italy]] in [[1988]]. Several international payload specialists were selected for the Space Shuttle, and also later for international [[Soyuz programme|Soyuz]] missions of Russia. In [[1998]] the [[European Space Agency]] formed a single astronaut corps of 18 by dissolving the former national corps of France, Germany and Italy. The [[United Kingdom]] does not contribute to ESA's [[human spaceflight]] programme and so its citizens must receive training from either the United States or Russia if they wish to become astronauts.
17972
17973 == Astronaut training==
17974
17975 The first astronauts, both in the USA and USSR, tended to be jet fighter pilots, often [[test pilot|test pilots]], from military backgrounds. U.S. military astronauts receive a special qualification badge, known as the [[Astronaut Badge]] upon completion of Astronaut training and participation in a space flight.
17976
17977 == Astronaut deaths ==
17978 [[Image:DickScobee.jpeg|frame|[[Dick Scobee]], commander of the Space Shuttle Challenger during the [[STS-51-L]] mission. ]]
17979 To date, eighteen astronauts have been killed on space missions, and at least ten more have been killed in ground-based training accidents. ''See also: [[space disaster]].''
17980
17981 ==Trivia==
17982 Many people who claim the [[Apollo moon landing hoax accusations|Apollo moon landings were faked]] often call the astronauts ''astroNOTs''.
17983
17984 ==See also==
17985
17986 * [[List of astronauts by name]]
17987 * [[List of astronauts by selection]]
17988 * [[Timeline of astronauts by nationality]]
17989 * List of human spaceflights: [[List of human spaceflights, 1961-1986|1961-1986]], [[List of human spaceflights, 1987-1999|1987-1999]], [[List of human spaceflights, 2000-present|2000-present]].
17990 * [[List of spacewalks and moonwalks]]
17991 * [[X-15]]
17992 * [[Spaceflight records]]
17993 * [[Shirley Thomas (USC professor)|Shirley Thomas]], author of ''Men of Space'' series (1960-1968)
17994
17995 ==External links==
17996 * [http://www.astronautix.com Encyclopedia Astronautica]
17997
17998 * [http://www.astronautix.com/astrogrp/phaonaut.htm Encyclopedia Astronautica: Phantom cosmonauts]
17999
18000
18001 [[Category:Astronauts|*]]
18002 [[Category:Transportation occupations]]
18003 [[Category:Science occupations]]
18004
18005 [[af:Ruimtevaarder]]
18006 [[bg:КоŅĐŧĐžĐŊавŅ‚]]
18007 [[bn:āĻŽāĻšāĻžāĻļā§‚āĻŖā§āĻ¯āĻšāĻžāĻ°ā§€]]
18008 [[ca:Astronauta]]
18009 [[cv:КоŅĐŧĐžĐŊавŅ‚]]
18010 [[cs:Kosmonaut]]
18011 [[da:Astronaut]]
18012 [[de:Raumfahrer]]
18013 [[es:Astronauta]]
18014 [[eo:KosmonaÅ­to]]
18015 [[fr:Spationaute]]
18016 [[id:Astronaut]]
18017 [[it:Astronauta]]
18018 [[he:טייס חלל]]
18019 [[la:Astronauta]]
18020 [[hu:Å°rhajÃŗs]]
18021 [[nl:Ruimtevaarder]]
18022 [[ja:厇厙éŖ›čĄŒåŖĢ]]
18023 [[no:Astronaut]]
18024 [[pl:Astronauta]]
18025 [[pt:Astronauta]]
18026 [[ru:КоŅĐŧĐžĐŊавŅ‚]]
18027 [[simple:Astronaut]]
18028 [[sk:Kozmonaut]]
18029 [[sl:Astronavt]]
18030 [[fi:Astronautti]]
18031 [[sv:Rymdfarare]]
18032 [[th:ā¸™ā¸ąā¸ā¸šā¸´ā¸™ā¸­ā¸§ā¸ā¸˛ā¸¨]]
18033 [[zh:厇čˆĒ员]]</text>
18034 </revision>
18035 </page>
18036 <page>
18037 <title>A Modest Proposal</title>
18038 <id>665</id>
18039 <revision>
18040 <id>41713510</id>
18041 <timestamp>2006-03-01T06:08:06Z</timestamp>
18042 <contributor>
18043 <ip>58.166.74.32</ip>
18044 </contributor>
18045 <text xml:space="preserve">'''''A Modest Proposal: For Preventing the Children of Poor People in Ireland from Being a Burden to Their Parents or Country, and for Making Them Beneficial to the Publick''''', commonly referred to as '''''A Modest Proposal''''', is a [[satire|satirical]] [[pamphlet]] written by [[Jonathan Swift]] in [[1729]]. The work has now become one of the epitomes of satire, and the modern phrase &quot;A modest proposal&quot; derives from the work.
18046
18047 ==Theme==
18048
18049 The work is written in [[first person]] [[Point of view (literature)|point of view]]; however, the narrator should not be confused with Swift himself, because the writer is merely a [[persona]]. He argues, through economic reasoning as well as a self-righteous moral stance, for a way to turn the problem of squalor among the [[Catholic]]s in [[Ireland]] into its own solution. His proposal is to fatten up the undernourished children and feed them to [[Ireland]]'s rich land-owners. Children of the poor could be sold into a meat market at the age of one thus combating [[overpopulation]] and [[unemployment]], sparing families the expense of child-rearing while providing them with a little extra income, improving the culinary experience of the wealthy, and contributing to the overall economic well-being of the nation.
18050
18051 He offers statistical support for his assertions and gives specific data about the number of children to be sold, their weight and price, and the projected consumption patterns. He suggests some recipes for preparing this delicious new meat, and he feels sure that innovative cooks will be quick to generate more. He also anticipates that the practice of selling and eating children will have positive effects on family morality: husbands will treat their wives with more respect, and parents will value their children in ways hitherto unknown. His conclusion is that the implementation of this project will do more to solve Ireland's complex social, political, and economic problems than any other measure that has been proposed.
18052
18053 This is widely believed to be the greatest example of sustained [[irony]] in the history of the English language.
18054
18055 ==Reactions==
18056 The satirical intent of ''A Modest Proposal'' was misunderstood by many of Swift's peers, and he was harshly criticized for writing prose in such exceptionally &quot;[[Taste (sociology)|bad taste]]&quot;. He came close to losing his [[patronage]] because of this essay. The misunderstanding of the intent of the satirical attack came about largely because of the disparity between the satirical intent of the [[cannibal|cannibalistic]] proposal and the sincere tone of the narrative voice.
18057
18058 ==Modern usage==
18059 In modern usage, the phrase &quot;modest proposal&quot; has come to indicate a proposal that is anything but modest. Such a 'proposal' may serve to advance a cause or [[Logical argument|argument]], by promoting discussion on the merits of the argument's opposite.
18060
18061 ==Other examples of &quot;modest proposals&quot;==
18062
18063 *[http://sniggle.net/lithoax.php Modest Proposals and other literary hoaxes]
18064 *[[Report From Iron Mountain]]
18065 *[[Sokal Affair]]
18066 *[[Miscegenation]] (origin of the word)
18067 *[[Dihydrogen monoxide]]
18068 *[[Jack Thompson]], attorney, has been criticised for writing an open letter similar to Swift's piece, one that included a promise of donating money to charity.
18069
18070 ==External links==
18071 {{wikisource}}
18072 * [http://www.gutenberg.org/etext/1080 A Modest Proposal (Gutenberg)]
18073 * [http://librivox.org/a-modest-proposal-by-jonathan-swift/ Free audiobook] from [http://librivox.org/ LibriVox]
18074 * [http://sniggle.net/lithoax.php sniggle.net: Modest Proposals]
18075
18076 [[Category:Satire]]
18077 [[Category:Essays|Modest Proposal, A]]
18078 [[Category:Non-fictional British literature|Modest Proposal, A]]
18079 [[Category:1729 books|Modest Proposal, A]]
18080 [[sv:Ett ansprÃĨkslÃļst fÃļrslag]]</text>
18081 </revision>
18082 </page>
18083 <page>
18084 <title>Alkali metal</title>
18085 <id>666</id>
18086 <revision>
18087 <id>41685752</id>
18088 <timestamp>2006-03-01T01:29:33Z</timestamp>
18089 <contributor>
18090 <username>Ummit</username>
18091 <id>328950</id>
18092 </contributor>
18093 <minor />
18094 <text xml:space="preserve">{| align=&quot;right&quot; style=&quot;margin:0 0 1em 1em;&quot;
18095 ! [[Periodic table group|Group]]
18096 ! [[Group 1 element|1]]
18097 |-
18098 ! [[Periodic table period|Period]]
18099 | &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
18100 |-
18101 ! [[Period 2 element|2]]
18102 | {{element cell| 3|Lithium|Li| |Solid|Alkali metals|Primordial}}
18103 |-
18104 ! [[Period 3 element|3]]
18105 | {{element cell|11|Sodium|Na| |Solid|Alkali metals|Primordial}}
18106 |-
18107 ! [[Period 4 element|4]]
18108 | {{element cell|19|Potassium|K| |Solid|Alkali metals|Primordial}}
18109 |-
18110 ! [[Period 5 element|5]]
18111 | {{element cell|37|Rubidium|Rb| |Solid|Alkali metals|Primordial}}
18112 |-
18113 ! [[Period 6 element|6]]
18114 | {{element cell|55|Caesium|Cs| |Solid|Alkali metals|Primordial}}
18115 |-
18116 ! [[Period 7 element|7]]
18117 | {{element cell|87|Francium|Fr| |Solid|Alkali metals|Natural radio}}
18118 |}
18119
18120 The '''alkali metals''' are the [[chemical series|series]] of [[chemical element|elements]] in [[Periodic table group|Group 1]] ([[International Union of Pure and Applied Chemistry|IUPAC]] style) of the [[periodic table]] (excluding [[hydrogen]] in all but one [[Metallic_hydrogen|rare circumstance]]): [[lithium]] ('''Li'''), [[sodium]] ('''Na'''), [[potassium]] ('''K'''), [[rubidium]] ('''Rb'''), [[caesium]] ('''Cs'''), and [[francium]] ('''Fr'''). They are all highly reactive and are never found in elemental form in nature.
18121
18122 The alkali metals are silver-colored (caesium has a golden tinge), soft, low-[[density]] [[metal]]s, which react readily with [[halogen]]s to form [[ionic salt]]s, and with [[water (molecule)|water]] to form strongly [[alkali|alkaline]] [[Base (chemistry)|(basic)]] [[hydroxide]]s. These elements all have one [[electron]] in their outermost shell, so the energetically preferred state of achieving a filled [[electron shell]] is to lose one electron to form a singly [[electric charge|charged]] positive [[ion]].
18123
18124 [[Hydrogen]], with a solitary electron, is sometimes placed at the top of Group 1, but it is not an alkali metal (except under extreme circumstances as [[metallic hydrogen]]); rather it exists naturally as a diatomic [[gas]]. Removal of its single electron requires considerably more energy than removal of the outer electron for the alkali metals. As in the [[halogen]]s, only one additional electron is required to fill in the outermost shell of the hydrogen atom, so hydrogen can in some circumstances behave like a halogen, forming the negative [[hydride]] ion. Binary compounds of hydride with the alkali metals and some [[transition metal]]s have been prepared.
18125
18126 Under extremely high [[pressure]], such as is found at the core of [[Jupiter]], hydrogen does become metallic and behaves like an alkali metal; see [[metallic hydrogen]].
18127
18128
18129 {|style=&quot;text-align: center;&quot; border=&quot;1&quot; cellpadding=&quot;2&quot;
18130 |+ '''Explanation of above periodic table slice:'''
18131 | bgcolor=&quot;{{element color/Alkali metals}}&quot; | [[Alkali metal]]s
18132 | atomic number in &lt;font color=&quot;{{element color/Solid}}&quot;&gt;{{element color/Solid}}&lt;/font&gt; are solids
18133 | style=&quot;border:{{element frame/Primordial}};&quot; | solid borders are [[primordial element]]s (older than the [[Earth]])
18134 | style=&quot;border:{{element frame/Natural radio}};&quot; | dashed borders are naturally [[radioactive decay|radioactive element]]s with no isotopes older than the Earth
18135 |}
18136
18137
18138 {{PeriodicTablesFooter}}
18139 &lt;!--Category--&gt;
18140 [[Category:Alkali metals]] [[Category:Periodic table]]
18141
18142 &lt;!--Interlanguage links--&gt;
18143
18144 [[ar:ŲŲ„Ø˛ Ų‚Ų„ŲˆŲŠ]]
18145 [[bg:ГŅ€ŅƒĐŋĐ° 1А ĐŊĐ° ĐŋĐĩŅ€Đ¸ĐžĐ´Đ¸Ņ‡ĐŊĐ°Ņ‚Đ° ŅĐ¸ŅŅ‚ĐĩĐŧĐ°]]
18146 [[bs:Alkalni metali]]
18147 [[ca:Metall alcalí]]
18148 [[da:Alkalimetal]]
18149 [[de:Alkalimetalle]]
18150 [[es:Alcalino]]
18151 [[eo:Alkala metalo]]
18152 [[eu:Metal alkalino]]
18153 [[fr:MÊtal alcalin]]
18154 [[gl:Alcalino]]
18155 [[ko:ė•ŒėšŧëĻŦ 금ė†]]
18156 [[hr:Alkalijski metali]]
18157 [[is:AlkalímÃĄlmur]]
18158 [[it:Metalli alcalini]]
18159 [[he:מ×Ēכ×Ē אלקלי×Ē]]
18160 [[la:Metallum alkalicum]]
18161 [[lv:Sārmu metāli]]
18162 [[lt:Å arminiai metalai]]
18163 [[mk:АĐģĐēĐ°ĐģĐĩĐŊ ĐŧĐĩŅ‚Đ°Đģ]]
18164 [[ms:Logam Alkali]]
18165 [[nl:Alkalimetaal]]
18166 [[ja:įŦŦ1族元į´ ]]
18167 [[no:Alkalimetall]]
18168 [[nn:Alkalimetall]]
18169 [[pl:Metale alkaliczne]]
18170 [[pt:Alcalino-metÃĄlicos]]
18171 [[ro:Metal alcalin]]
18172 [[sk:AlkalickÊ kovy]]
18173 [[sl:Alkalijska kovina]]
18174 [[sr:АĐģĐēĐ°ĐģĐŊи ĐŧĐĩŅ‚Đ°Đģи]]
18175 [[fi:Alkalimetalli]]
18176 [[sv:Alkalimetall]]
18177 [[th:āš‚ā¸Ĩā¸Ģā¸°āšā¸­ā¸Ĩā¸„ā¸˛āš„ā¸Ĩ]]
18178 [[vi:Kim loáēĄi kiáģm]]
18179 [[tr:Alkali metal]]
18180 [[zh:įĸąé‡‘åąž]]</text>
18181 </revision>
18182 </page>
18183 <page>
18184 <title>Argument form</title>
18185 <id>668</id>
18186 <revision>
18187 <id>19406655</id>
18188 <timestamp>2005-07-22T23:16:01Z</timestamp>
18189 <contributor>
18190 <username>KSchutte</username>
18191 <id>295931</id>
18192 </contributor>
18193 <text xml:space="preserve">In [[logic]], the '''argument form''' or ''test form'' of an [[logical argument|argument]] results from replacing the different words, or sentences, that make up the argument with letters, along the lines of [[algebra]]; the letters represent logical ''[[variable]]s''. The ''sentence forms'' which classify argument forms of common arguments important are studied in [[college logic]].
18194
18195 Here is an example of an argument:
18196
18197 '''A''' All humans are mortal. Socrates is human. ''Therefore'', Socrates is mortal.
18198
18199 We can rewrite argument A by putting each sentence on its own line:
18200
18201 '''B'''
18202 :All humans are mortal.
18203 :Socrates is human.
18204 :''Therefore'', Socrates is mortal.
18205
18206 To demonstrate the important notion of the ''form'' of an argument, substitute letters for similar items throughout '''B''':
18207
18208 '''C'''
18209 :All S are P.
18210 :''a'' is S.
18211 :''Therefore'', ''a'' is P.
18212
18213 All we have done in '''C''' is to put 'S' for 'human' and 'humans', 'P' for 'mortal', and '''a''' for 'Socrates'; what results, '''C''', is the ''form'' of the original argument in '''A'''. So argument form '''C''' is the form of argument '''A'''. Moreover, each individual sentence of '''C''' is the ''sentence'' ''form'' of its respective sentence in '''A'''.
18214
18215 Attention is given to argument and sentence form, because ''form is what makes an argument [[validity|valid]] or [[cogency|cogent]]''. Some examples of valid arguments forms are [[modus ponens]], [[modus tollens]], and the [[disjunctive syllogism]]. Two invalid argument forms are [[affirming the consequent]] and [[denying the antecedent]].
18216
18217 ==See also==
18218
18219 *[[analytic proposition]]
18220 *[[synthetic proposition]]
18221
18222 [[Category:Logic]]</text>
18223 </revision>
18224 </page>
18225 <page>
18226 <title>Allotrope</title>
18227 <id>669</id>
18228 <revision>
18229 <id>15899195</id>
18230 <timestamp>2002-02-25T15:43:11Z</timestamp>
18231 <contributor>
18232 <ip>Conversion script</ip>
18233 </contributor>
18234 <minor />
18235 <comment>Automated conversion</comment>
18236 <text xml:space="preserve">#REDIRECT [[Allotropy]]
18237 </text>
18238 </revision>
18239 </page>
18240 <page>
18241 <title>Alphabet</title>
18242 <id>670</id>
18243 <revision>
18244 <id>41872890</id>
18245 <timestamp>2006-03-02T07:19:07Z</timestamp>
18246 <contributor>
18247 <ip>210.213.187.17</ip>
18248 </contributor>
18249 <comment>+tl</comment>
18250 <text xml:space="preserve">{{otheruses}}
18251
18252 An '''alphabet''' is a complete standardized set of ''letters'' &amp;mdash; basic written symbols &amp;mdash; each of which roughly represents a [[phoneme]] of a spoken [[language]], either as it exists now or as it may have been in the past. There are other [[writing system|systems of writing]] such as [[logogram]]s, in which each symbol represents a [[morpheme]], or word, and [[syllabary|syllabaries]], in which each symbol represents a syllable.
18253
18254 The word &quot;alphabet&quot; itself comes from [[alpha (letter)|alpha]] and [[beta (letter)|beta]], the first two symbols of the [[Greek alphabet]]. There are dozens of alphabets in use today. Most of them are '[[linear writing|linear]]', which means that they are made up of lines. Notable [[non-linear writing|exceptions]] are the [[Braille|Braille alphabet]], [[Morse code]] and the [[cuneiform script|cuneiform]] alphabet of the ancient city of [[Ugarit]].
18255 {{alphabet}}
18256 ==Types==
18257
18258 The term &quot;alphabet&quot; is currently used by linguists both in a wider and in a narrower sense. In the wider sense, the term refers to any script that is segmental on the [[phoneme]] level, i.e. that has separate glyphs for individual sounds and not for larger units such as syllables or words. In the narrower sense, some scholars distinguish true &quot;alphabets&quot; from two other subtypes, [[abjad]]s and [[abugida]]s. The three types differ from each other in the way vowels are treated in relation to consonants. Abjads record only consonants and leave vowels (or most vowels) unexpressed; in Abugidas the vowels are indicated by diacritical marks or systematic modification of the form of the consonants. In alphabets in the narrow sense, both consonants and vowels have separate symbols. The first alphabet in the wider sense was the [[Proto-Canaanite alphabet]], an [[abjad]], which through its successor [[Phoenician alphabet|Phoenician]] became the ancestor of all later alphabets. The first alphabet in the narrow sense was the [[Greek alphabet]].
18259
18260 Examples of present-day abjads are the [[Arabic script|Arabic]] and [[Hebrew script]]s; true alphabets include [[Latin alphabet|Latin]], [[Cyrillic]], and Korean [[Hangul]]; and abugidas are used to write [[Amharic language|Amharic]], [[Hindi language|Hindi]], and [[Thai language|Thai]]. The [[Canadian Aboriginal Syllabics]] are also an abugida rather than a syllabary, as a glyph stands for a consonant and is rotated to represent the vowel, rather than each consonant-vowel combination being represented by a separate glyph, as in a true syllabary.
18261
18262 The boundaries between these three types are not always clear-cut. For example, Iraqi [[Kurdish language|Kurdish]] is written in the [[Arabic script]], which is normally an abjad. However, in Kurdish, writing the vowels is mandatory, and full letters are used, so the script is a true alphabet. Other languages may use a Semitic abjad with mandatory vowel diacritics, effectively making them abugidas. On the other hand, the [[Phagspa]] script of the [[Mongol Empire]] was based closely on the [[Tibetan script|Tibetan abugida]], but all vowel marks were written after the preceding consonant rather than as diacritic marks. Although short ''a'' was not written, as in the abugidas, one could argue that the linear arrangement made this a true alphabet. Conversely, the vowel marks of the [[Amharic_language#Amharic_Abugida_Symbols_.28.22Fidel.22_.E1.8D.8A.E1.8B.B0.E1.88.8D.29|Amharic abugida]] have been so completely assimilated into their consonants that the system is learned as a [[syllabary]] rather than as a segmental script. Even more extreme, the Pahlavi abjad became [[logogram|logographic]]. (See below.)
18263
18264 Thus the primary classification of alphabets reflects how they treat vowels. For [[Tone (linguistics)|tonal languages]], further classification can be based on the treatment of tone, though there are as yet no names to distinguish the various types. Some alphabets disregard tone entirely, especially when it does not carry a heavy functional load, as in [[Somali language|Somali]] and many other languages of Africa and the Americas. Such scripts are to tone what abjads are to vowels. Most commonly, tones are indicated with diacritics, the way vowels are treated in abugidas. This is the case for [[Vietnamese alphabet|Vietnamese]] (a true alphabet) and [[Thai alphabet|Thai]] (an abugida). In Thai, tone is determined primarily by the choice of consonant, with diacritics for disambiguation. In the [[Pollard script]] (an abugida), vowels are indicated by diacritics, but the placement of the vowel relative to the consonant indicates the tone. More rarely, a script has separate letters for the tones, as is the case for [[Hmong pronunciation|Hmong]] and [[Zhuang language|Zhuang]]. For many of these languages, regardless of whether letters or diacritics are used, the most common tone is not marked, just as the most common vowel is not marked in Indic abugidas.
18265
18266 Alphabets can be quite small. The Book [[Pahlavi]] script, an abjad, had only twelve letters at one point, and may have had even fewer later on. Today the [[Rotokas alphabet]] has only twelve letters. (The [[Hawaiian language|Hawaiian]] alphabet is sometimes claimed to be as small, but it actually consists of 18 letters, including the [[Okina|Ęģokina]] and five long vowels.) While Rotokas has a small alphabet because it has few phonemes to represent (just eleven), Book Pahlavi was small because many letters had been ''conflated'', that is, the graphic distinctions had been lost over time, and diacritics were not developed to compensate for this as they were in [[Arabic alphabet|Arabic]], another script that lost many of its distinct letter shapes. For example, a comma-shaped letter represented ''g, d, y, k,'' and ''j''. However, such simplifications can perversely make a script more complicated. In later Pahlavi [[papyrus|papyri]], up to half of the remaining graphic distinctions were lost, and the script could no longer be read as a sequence of letters at all, but had to be learned as word symbols &amp;ndash; that is, as [[logogram]]s like Egyptian [[Demotic Egyptian|Demotic]].
18267
18268 The largest segmental script is probably an abugida, [[Devanagari]]. When written in Devanagari, Vedic [[Sanskrit]] has an alphabet of 53 letters, including the ''visarga'' mark for final aspiration and special letters for ''kÅĄ'' and ''jÃą'', though one of the letters is theoretical and not actually used. The Hindi alphabet must represent both Sanskrit and modern vocabulary, and so has been expanded to 58 with the ''khutma'' letters (letters with a dot added to represent sounds from Persian and English).
18269
18270 The largest known abjad is [[Sindhi language|Sindhi]], with 51 letters. The largest true alphabets include [[Kabardian language|Kabardian]] and [[Abkhaz language|Abxaz]] (for [[Cyrillic]]), with 58 and 56 letters, respectively, and [[Slovak language|Slovak]] (for the [[Latin alphabet]]), with 46. However, these scripts either include di- and tri-graphs, similar to Spanish ''ch'', or [[diacritic]]s, like Slovak ''č''. The largest true alphabet where each letter is graphically independent is probably [[Georgian alphabet|Georgian]], with 41 letters.
18271
18272 Syllabaries typically include 50 to 400 glyphs (though the [[MÃēra-PirahÃŖ language]] of [[Brazil]] would require only 24 if tone were not indicated, and Rotokas 30), and the glyphs of logographic systems number from the hundreds to the thousands. Thus a simple count of the number of distinct symbols is an important clue to the nature of an unknown script.
18273
18274 It is not always clear what constitutes a distinct alphabet. [[French language|French]] uses the same basic alphabet as English, but many of the letters can carry [[diacritic]] and other marks (for example, Ê, à or ô). In French, these marks are not considered to create additional letters. However, in [[Icelandic language|Icelandic]], the accented letters (such as ÃĄ, í and Ãļ) are considered distinct letters of the alphabet. Some adaptations of the Latin alphabet are augmented with [[ligature (typography)|ligatures]], such as [[ÃĻ]] in [[Old English language|Old English]] and [[Ou (letter)|&amp;#546;]] in [[Algonquian language|Algonquian]]; by borrowings from other alphabets, such as the [[thorn (letter)|thorn]] Þ in [[Old English language|Old English]] and [[Icelandic language|Icelandic]], which came from the [[Futhark]] runes; and by modifying existing letters, such as the [[Eth (letter)|eth]] ð of Old English and Icelandic, which came from ''d''. Other alphabets only use a subset of the Latin alphabet, such as Hawaiian, or [[Italian language|Italian]], which only uses the letters ''j'', ''k'', ''x'', ''y'' and ''w'' for foreign words.
18275
18276 ==Spelling==
18277 {{details|Spelling}}
18278
18279 Each language may establish certain general rules that govern the association between letters and phonemes, but, depending on the language, these rules may or may not be consistently followed. In a perfectly [[phonology| phonological]] alphabet, the phonemes and letters would correspond perfectly in two directions: a writer could predict the spelling of a word given its pronunciation, and a speaker could predict the pronunciation of a word given its spelling. However, languages often evolve independently of their writing systems, and writing systems have been borrowed for languages they were not designed for, so the degree to which letters of an alphabet correspond to phonemes of a language varies greatly from one language to another and even within a single language.
18280
18281 Languages may fail to achieve a one-to-one correspondence between letters and sounds in any of several ways:
18282
18283 * A language may represent a given phoneme with a combination of letters rather than just a single letter. Two-letter combinations are called [[digraph (orthography)|digraph]]s and three-letter groups are called [[trigraph (orthography)|trigraph]]s. [[Kabardian language|Kabardian]] uses a tesseragraph (four letters) for one of its phonemes.
18284 * A language may represent the same phoneme with two different letters or combinations of letters.
18285 * A language may spell some words with unpronounced letters that exist for historical or other reasons.
18286 * Pronunciation of individual words may change according to the presence of surrounding words in a sentence.
18287 * Different dialects of a language may use different phonemes for the same word.
18288 * A language may use different sets of symbols or different rules for distinct sets of vocabulary items (such as the Japanese [[hiragana]] and [[katakana]] syllabaries, or the various rules in English for spelling words from Latin and Greek, or the original [[Germanic languages|Germanic]] vocabulary.
18289
18290 National languages generally elect to address the problem of dialects by simply associating the alphabet with the national standard. However, with an international language with wide variations in its dialects, such as [[English language|English]], it would be impossible to represent the language in all its variations with a single phonetic alphabet.
18291
18292 Some national languages like [[Finnish language|Finnish]] have a very regular spelling system with a nearly one-to-one correspondence between letters and phonemes. The [[Italian language|Italian]] verb corresponding to 'spell', ''compitare'', is unknown to many Italians because the act of spelling itself is almost never needed: each phoneme of Standard Italian is represented in only one way. However, pronunciation cannot always be predicted from spelling because certain letters are pronounced in more than one way. In standard Spanish, it is possible to tell the pronunciation of a word from its spelling, but not vice versa; this is because certain phonemes can be represented in more than one way, but a given letter is consistently pronounced. [[French language|French]], with its [[silent letter]]s and its heavy use of [[nasal vowel]]s and [[elision]], may seem to lack much correspondence between spelling and pronunciation, but its rules on pronunciation are actually consistent and predictable with a fair degree of accuracy. At the other extreme, however, are languages such as English and [[Irish language|Irish]], where the spelling of many words simply has to be memorized as they do not correspond to sounds in a consistent way. For English, this is because the [[Great Vowel Shift]] occurred after the orthography was established, and because English has acquired a large number of loanwords at different times retaining their original spelling at varying levels. However, even English has general rules that predict pronunciation from spelling, and these rules are successful most of the time.
18293
18294 The sounds of speech of all languages of the world can be written by a rather small universal phonetic alphabet. A standard for this is the [[International Phonetic Alphabet]].
18295
18296 ==Collation==
18297 {{details|Collation}}
18298
18299 An alphabet also serves to establish an ''order'' among letters that can be used for sorting entries in lists, called collating. Note that the order does not have to be constant among different languages using this alphabet; for examples see [[Latin alphabet#Collating in other languages|Latin alphabet: Collating in other languages]].
18300
18301 In recent years the [[Unicode]] initiative has attempted to collate most of the world's known writing systems into a single [[character encoding]]. As well as its primary purpose of standardising computer processing of non-Roman scripts, the Unicode project has provided a focus for script-related scholarship.
18302
18303 ==The Alphabet effect==
18304
18305 Some communication theorists (notably those associated with the so-called &quot;Toronto school of communications&quot;, such as [[Marshall McLuhan]], [[Harold Innis]] and more recently [[Robert K. Logan]]) have advanced hypotheses to the effect that alphabetic scripts in particular have served to promote and encourage the skills of analysis, coding, decoding, and classification. This set of hypotheses may be known as &quot;the Alphabet effect&quot;, after the title of Logan's [[1986]] work.
18306
18307 The theory claims that a greater level of abstraction is required due to the greater economy of symbols in alphabetic systems; and this abstraction needed to interpret phonemic symbols in turn has contributed in some way to the development of the societies which use it. Proponents of this theory hold that the development of alphabetic (as distinct to other types of) writing systems has made a significant impact on &quot;Western&quot; thinking and development because it introduced a new level of abstraction, analysis, and classification. McLuhan and Logan (1977) postulates that, as a result of these skills, the use of the alphabet created an environment conducive to the development of codified law, monotheism, abstract science, deductive logic, objective history, and individualism. According to Logan, &quot;All of these innovations, including the alphabet, arose within the very narrow geographic zone between the Tigris-Euphrates river system and the Aegean Sea, and within the very narrow time frame between 2000 B.C. and 500 B.C.&quot; (Logan 2004).
18308
18309 However, many of these abstractions first occurred in societies which did not use an alphabet, such as the codified law of [[Hammurabi]] in [[Babylonia]], which predated similar codes in societies with the alphabet. Since the alphabet quickly spread to become nearly ubiquitous, it is difficult to trace cause and effect in this matter.
18310
18311 == See also ==
18312
18313 * [[Abecedarium]]
18314 * [[Abjad]]
18315 * [[Abugida]]
18316 * [[Akshara]]
18317 * [[Alphabetical order]]
18318 * [[Alphabets derived from the Latin]]
18319 * [[Artificial script]]s
18320 * [[Character set]]
18321 * [[Lipogram]]
18322 * [[List of alphabets]]
18323 * [[Syllabary]]
18324 * [[Transliteration]]
18325 * [[Unicode]]
18326 * [[A]] | [[B]] | [[C]] | [[D]] | [[E]] | [[F]] | [[G]] | [[H]] | [[I]] | [[J]] | [[K]] | [[L]] | [[M]] | [[N]] | [[O]] | [[P]] | [[Q]] | [[R]] | [[S]] | [[T]] | [[U]] | [[V]] | [[W]] | [[X]] | [[Y]] | [[Z]]
18327
18328 == References ==
18329
18330 * {{cite book | author=Daniels, Peter T.; Bright, William | title=The World's Writing Systems | publisher=Oxford University Press | year=1996 | id=ISBN 0-19-507993-0 }} - Overview of modern and some ancient writing systems.
18331 * {{cite book | author=Driver, G.R. | title=Semetic Writing from Pictograph to Alphabet | publisher=Oxford University Press | year=1976 }}
18332 * {{cite book | author=Hoffman, Joel M. | title=In the Beginning: A Short History of the Hebrew Language | publisher=NYU Press | year=2004 | id=ISBN 0814736548 }} - Chapter 3 traces and summarizes the invention of alphabetic writing.
18333 * {{cite book | author=Logan, Robert K. | title=The Alphabet Effect: A Media Ecology Understanding of the Making of Western Civilization | publisher=Hampton Press | year=2004 | id=ISBN 1-57273-522-8}}
18334 * McLuhan, Marshall; Logan, Robert K. (1977). Alphabet, Mother of Invention. Etcetera. Vol. 34, pp. 373-383.
18335 * {{cite book | author=Ouaknin, Marc-Alain; Bacon, Josephine | title=Mysteries of the Alphabet: The Origins of Writing | publisher=Abbeville Press | year=1999 | id=ISBN 0-7892-0521-1 }}
18336 * {{cite book | author=Sacks, David | title=Letter Perfect: The Marvelous History of Our Alphabet from A to Z | publisher=Broadway Books | year=2004 | id=ISBN 0-7679-1173-3}}
18337 * {{cite book | author=Saggs, H.W.F | title=Civilization Before Greece and Rome | publisher=Yale University Press | year=1991 | id=ISBN 0300050313}} - Chapter 4 traces the invention of writing.
18338
18339 == External links ==
18340 {{wiktionarypar|alphabet}}
18341
18342 * [http://omniglot.com/writing/alphabetic.htm Alphabetic Writing Systems]
18343 * [[Michael Everson]]'s [http://www.evertype.com/alphabets/index.html Alphabets of Europe]
18344 * The [http://www.unicode.org/cldr/data/diff/by_type/characters.html Unicode Consortium]
18345 * [http://www.wam.umd.edu/~rfradkin/alphapage.html Evolution of alphabets] animation by Prof. Robert Fradkin at the University of Maryland
18346 * [http://www.ancientscripts.com/alphabet.html History of alphabet]
18347 * [http://hebrew4christians.com/Grammar/Unit_One/Aleph-Bet/aleph-bet.html The Hebrew Alphabet]
18348
18349 [[Category:Alphabetic writing systems]]
18350 [[Category:Documents]]
18351 [[Category:Writing]]
18352
18353 [[af:Alfabet]]
18354 [[als:Alphabet]]
18355 [[ar:ØŖبØŦدŲŠØŠ]]
18356 [[ast:Alfabetu]]
18357 [[be:АĐģŅ„авŅ–Ņ‚]]
18358 [[bg:АСйŅƒĐēĐ°]]
18359 [[br:Lizherenneg]]
18360 [[ca:Alfabet]]
18361 [[cv:АĐģŅ„авиŅ‚]]
18362 [[cs:Abeceda]]
18363 [[da:Alfabet]]
18364 [[de:Alphabet]]
18365 [[et:Tähestik]]
18366 [[es:Alfabeto]]
18367 [[eo:Alfabetoj]]
18368 [[eu:Alfabeto]]
18369 [[fr:Alphabet]]
18370 [[gl:Alfabeto]]
18371 [[id:Alfabet]]
18372 [[it:Alfabeto]]
18373 [[he:אלפבי×Ē]]
18374 [[ka:ანბანი]]
18375 [[ko:ėŒė†Œ ëŦ¸ėž]]
18376 [[ku:Alfabe]]
18377 [[kw:Lytherennek]]
18378 [[la:abecedarium]]
18379 [[lad:Alefbet]]
18380 [[lv:Alfabēts]]
18381 [[lt:Abėcėlė]]
18382 [[hu:ÁbÊcÊ]]
18383 [[ms:Aksara]]
18384 [[nl:Alfabet]]
18385 [[ja:ã‚ĸãƒĢãƒ•ã‚Ąãƒ™ãƒƒãƒˆ]]
18386 [[no:Alfabet]]
18387 [[nn:Alfabet]]
18388 [[pl:Alfabet]]
18389 [[pt:Alfabeto]]
18390 [[ro:Alfabet]]
18391 [[ru:АĐģŅ„авиŅ‚]]
18392 [[sq:Alfabeti]]
18393 [[simple:Alphabet]]
18394 [[sk:Abeceda]]
18395 [[sl:Abeceda]]
18396 [[fi:Aakkoset]]
18397 [[sv:Alfabet]]
18398 [[tl:Alpabeto]]
18399 [[th:ā¸­ā¸ąā¸ā¸Šā¸Ŗ]]
18400 [[tr:Abece]]
18401 [[uk:АĐģŅ„авŅ–Ņ‚]]
18402 [[zh:字母]]</text>
18403 </revision>
18404 </page>
18405 <page>
18406 <title>Atomic number</title>
18407 <id>673</id>
18408 <revision>
18409 <id>42072226</id>
18410 <timestamp>2006-03-03T17:03:51Z</timestamp>
18411 <contributor>
18412 <username>Vsmith</username>
18413 <id>84417</id>
18414 </contributor>
18415 <minor />
18416 <comment>Reverted edits by [[Special:Contributions/207.157.119.20|207.157.119.20]] ([[User talk:207.157.119.20|talk]]) to last version by Vsmith</comment>
18417 <text xml:space="preserve">In [[chemistry]] and [[physics]], the '''atomic number''' ('''Z''') is the number of [[proton]]s found in the nucleus of an [[atom]]. In an atom of [[neutral|neutral charge]], the number of [[electrons]] ''also'' equals the atomic number.
18418
18419 The atomic number originally meant the number of an element's place in the [[periodic table]]. When [[Dmitriy Mendeleyev|Mendeleyev]] arranged the known [[chemical element]]s grouped by their similarities in chemistry, it was noticeable that placing them in strict order of [[atomic weight|atomic mass]] resulted in some mismatches. [[Iodine]] and [[tellurium]], if listed by atomic mass, appeared to be in the wrong order, and would fit better if their places in the table were swapped. Placing them in the order which fit chemical properties most closely, their number in the table was their atomic number. This number appeared to be approximately proportional to the mass of the atom, but, as the discrepancy showed, reflected some other property than mass.
18420
18421 The anomalies in this sequence were finally explained after research by [[Henry Moseley|Henry Gwyn Jeffreys Moseley]] in [[1913]]. Moseley discovered a strict relationship between the [[x-ray diffraction]] spectra of elements, and their correct location in the periodic table. It was later shown that the atomic number corresponds to the [[electric charge]] of the nucleus &amp;mdash; in other words the number of protons. It is the charge which gives elements their chemical properties, rather than the atomic mass.
18422
18423 The atomic number is closely related to the [[mass number]] (although they should not be confused) which is the number of protons and [[neutron|neutrons]] in the nucleus of an atom. The mass number often comes after the name of the element, e.g. [[carbon-14]] (used in [[carbon dating]]).
18424
18425 ==See also==
18426 *[[Periodic table]]
18427 *[[List of elements by number]]
18428 *[[Effective atomic number]]
18429
18430 &lt;!--Categories--&gt;
18431
18432 [[Category:Chemical properties]]
18433 [[Category:Nuclear physics]]
18434
18435 &lt;!--Interwiki--&gt;
18436
18437 [[af:Atoomgetal]]
18438 [[als:Ordnungszahl]]
18439 [[ar:ØąŲ‚Ų… Ø°ØąŲŠ]]
18440 [[ast:NÃēmberu atÃŗmicu]]
18441 [[bg:АŅ‚ĐžĐŧĐĩĐŊ ĐŊĐžĐŧĐĩŅ€]]
18442 [[bs:Atomski broj]]
18443 [[br:Niver atomek]]
18444 [[ca:Nombre atÃ˛mic]]
18445 [[cs:AtomovÊ číslo]]
18446 [[da:Atomnummer]]
18447 [[de:Ordnungszahl]]
18448 [[et:Järjenumber]]
18449 [[es:NÃēmero atÃŗmico]]
18450 [[eo:Atomnumero]]
18451 [[fr:NumÊro atomique]]
18452 [[gl:NÃēmero AtÃŗmico]]
18453 [[ko:ė›ėž 번호]]
18454 [[hr:Atomski broj]]
18455 [[io:Atomala nombro]]
18456 [[id:Nomor atom]]
18457 [[is:SÃĻtistala]]
18458 [[it:Numero atomico]]
18459 [[he:מספר אטומי]]
18460 [[lt:Atomo numeris]]
18461 [[nl:Atoomnummer]]
18462 [[ja:原子į•Ēåˇ]]
18463 [[no:Atomnummer]]
18464 [[nn:Atomnummer]]
18465 [[pl:Liczba atomowa]]
18466 [[pt:NÃēmero atÃŗmico]]
18467 [[ro:Număr atomic]]
18468 [[ru:АŅ‚ĐžĐŧĐŊŅ‹Đš ĐŊĐžĐŧĐĩŅ€]]
18469 [[simple:Atomic number]]
18470 [[sk:ProtÃŗnovÊ číslo]]
18471 [[sl:Vrstno ÅĄtevilo]]
18472 [[sr:АŅ‚ĐžĐŧŅĐēи ĐąŅ€ĐžŅ˜]]
18473 [[fi:Järjestysluku (kemia)]]
18474 [[sv:Atomnummer]]
18475 [[th:āš€ā¸Ĩā¸‚ā¸­ā¸°ā¸•ā¸­ā¸Ą]]
18476 [[tr:Atom numarasÄą]]
18477 [[uk:АŅ‚ĐžĐŧĐŊиК ĐŊĐžĐŧĐĩŅ€]]
18478 [[zh:原子åēæ•°]]</text>
18479 </revision>
18480 </page>
18481 <page>
18482 <title>Anatomy</title>
18483 <id>674</id>
18484 <revision>
18485 <id>42072900</id>
18486 <timestamp>2006-03-03T17:10:12Z</timestamp>
18487 <contributor>
18488 <username>Brian0918</username>
18489 <id>90640</id>
18490 </contributor>
18491 <minor />
18492 <comment>Reverted edits by [[Special:Contributions/216.11.5.9|216.11.5.9]] ([[User talk:216.11.5.9|talk]]) to last version by El C</comment>
18493 <text xml:space="preserve">[[Image:ENC plate 1-143 750px.jpeg|thumb|250px|Anatomical drawing of the human muscles from the ''[[EncyclopÊdie]]''.]]
18494 [[Image:Anatomical chart, Cyclopaedia, 1728, volume 1, between pages 84 and 85.jpg|thumb|300px|Anatomical chart from the ''[[Cyclopaedia]]'', 1728]]
18495
18496 '''Anatomy''' (from the [[Greek language|Greek]] ''{{polytonic|áŧ€ÎŊÎąĪ„ÎŋÎŧÎ¯Îą}} anatomia'', from '' {{polytonic|áŧ€ÎŊÎąĪ„έÎŧÎŊÎĩΚÎŊ}} anatemnein'', to cut up, cut open), is the branch of [[biology]] that deals with the structure and organization of living things. It can be divided into animal anatomy ([[zootomy]]) and plant anatomy ([[phytonomy]]). Furthermore, anatomy can be covered either regionally or systemically, that is, studying anatomy by bodily regions such as the head and chest for the former, or studying by specific systems, such as the nervous or respiratory systmes for the latter. Major branches of anatomy include [[comparative anatomy]], [[histology]], and [[human anatomy]].
18497
18498 ==Animal anatomy==
18499 Animal anatomy may include the study of the structure of different animals, when it is called [[comparative anatomy]] or [[animal morphology]], or it may be limited to one animal only, in which case it is spoken of as ''special anatomy''.
18500
18501 ==Human anatomy==
18502 From a utilitarian point of view the study of [[human]]s is the most important division of special anatomy, and this human anatomy may be approached from different points of view.
18503
18504 From that of Medicine it consists of a knowledge of the exact form, position, size and relationship of the various structures of the healthy human body, and to this study the term descriptive or topographical human anatomy is given, though it is often, less happily, spoken of as ''anthropotomy''.
18505
18506 So intricate is the [[human body]] that only a small number of professional human anatomists, after years of patient observation, are complete masters of all its details; most of them specialize on certain parts, such as the brain or viscera, contenting themselves with a good working knowledge of the rest.
18507
18508 ''Topographical anatomy'' must be learned by repeated dissection and inspection of dead human bodies.
18509 It is no more a [[science]] than a pilot's knowledge is, and, like that knowledge, must be exact and available in moments of emergency.
18510
18511 From the morphological point of view, however, human anatomy is a scientific and fascinating study, having for its object the discovery of the [[morphogenesis|causes]] which have brought about the existing structure of humans, and needing a knowledge of the allied sciences of [[embryology]] or [[developmental biology]], [[phylogeny]], and [[histology]].
18512
18513 ''[[Anatomical pathology|Pathological anatomy]]'' (or ''morbid anatomy'') is the study of [[disease]]d [[organ (anatomy)|organ]]s, while sections of normal anatomy, applied to various purposes, receive special names such as medical, surgical, gynaecological, artistic and superficial anatomy.
18514 The comparison of the anatomy of different [[race]]s of humans is part of the science of physical anthropology or anthropological anatomy.
18515 In the present edition of this work the subject of anatomy is treated systematically rather than topographically.
18516 Each anatomical article contains first a description of the structures of an organ or system (such as [[nerve]]s, [[Artery|arteries]], [[heart]], and so forth), as it is found in humans; this is followed by an account of the development (embryology) and comparative anatomy (morphology), as far as [[Vertebrate|vertebrate animals]] are concerned; but only those parts of the lower animals which are of interest in explaining human body structure are here dealt with.
18517 The articles have a twofold purpose; first, to give enough details of structure to make the articles on physiology, surgery, medicine and pathology intelligible; and, secondly, to give the non-expert inquirer, or the worker in some other branch of science, the chief theories on which the modern scientific groundwork of anatomy is built.
18518
18519 ==Major body systems==
18520 {{col-begin}}
18521 {{col-3}}
18522 *[[Circulatory system]]
18523 *[[Digestive system]]
18524 *[[Endocrine system]]
18525 *[[Excretory system]]
18526 {{col-3}}
18527 *[[Immune system]]
18528 *[[Integumentary system]]
18529 *[[Lymphatic system]]
18530 *[[Muscular system]]
18531 {{col-3}}
18532 *[[Nervous system]]
18533 *[[Reproductive system]]
18534 *[[Respiratory system]]
18535 *[[Skeletal system]] ([[Human skeleton]])
18536 {{col-end}}
18537
18538 ==[[Organ (anatomy)|Organ]]s==
18539 {{col-begin}}
18540 {{col-3}}
18541 *[[Anus]]
18542 *[[Vermiform appendix|Appendix]]
18543 *[[Brain]]
18544 *[[Breast]]
18545 *[[Colon (anatomy)|Colon]] or large intestine
18546 *[[Diaphragm (anatomy)|Diaphragm]]
18547 *[[Ear]]
18548 *[[Eye]]
18549 *[[Heart]]
18550 {{col-3}}
18551 *[[Kidney]]
18552 *[[Labium|Labia]]
18553 *[[Larynx]]
18554 *[[Liver]]
18555 *[[Lung]]
18556 *[[Nose]]
18557 *[[Ovary]]
18558 *[[Pharynx]]
18559 *[[Pancreas]]
18560 {{col-3}}
18561 *[[Penis]]
18562 *[[Placenta]]
18563 *[[Rectum]]
18564 *[[Skin]]
18565 *[[Small intestine]]
18566 *[[Spleen]]
18567 *[[Stomach]]
18568 *[[Tongue]]
18569 *[[Uterus]]
18570 {{col-end}}
18571
18572 ==[[Bone]]s in the [[human skeleton]]==
18573 {{col-begin}}
18574 {{col-3}}
18575 *[[Collar bone]] (clavicle)
18576 *[[Thigh bone]] (femur)
18577 *[[Humerus]]
18578 *[[Mandible]]
18579 *[[Patella]]
18580 {{col-3}}
18581 *[[Radius (bone)|Radius]]
18582 *[[Skull]] (cranium)
18583 *[[Tibia]]
18584 *[[Ulna]]
18585 *[[Rib]] (costa)
18586 {{col-3}}
18587 *[[Vertebrae]]
18588 *[[Pelvis]]
18589 *[[Sternum]]
18590 {{col-end}}
18591
18592 ==[[Gland]]s==
18593 {{col-begin}}
18594 {{col-3}}
18595 *[[Ductless gland]]
18596 *[[Mammary gland]]
18597 *[[Salivary gland]]
18598 {{col-3}}
18599 *[[Thyroid gland]]
18600 *[[Parathyroid gland]]
18601 *[[Adrenal gland]]
18602 {{col-3}}
18603 *[[Pituitary gland]]
18604 *[[Pineal gland]]
18605 {{col-end}}
18606
18607 ==[[Biological tissue|Tissues]]==
18608 *[[Connective tissue]]
18609 *[[Endothelial tissue]]
18610 *[[Epithelial tissue]]
18611 *[[Glandular tissue]]
18612 *[[Lymphoid tissue]]
18613
18614 ==Externally visible parts of the human body==
18615 {{col-begin}}
18616 {{col-3}}
18617 *[[Abdomen]]
18618 *[[Arm]]
18619 *[[Back]]
18620 *[[Buttock]]
18621 *[[Chest]]
18622 *[[Ear]]
18623 {{col-3}}
18624 *[[Eye]]
18625 *[[Face]]
18626 *[[Genitals]]
18627 *[[head (anatomy)|Head]]
18628 *[[Joint (anatomy)|Joint]]
18629 *[[Human leg|Leg]]
18630 {{col-3}}
18631 *[[Mouth]]
18632 *[[Neck]]
18633 *[[Scalp]]
18634 *[[Skin]]
18635 *[[Tooth|Teeth]]
18636 *[[Tongue]]
18637 {{col-end}}
18638
18639 ==Other anatomic terms (not classified)==
18640 {{col-begin}}
18641 {{col-3}}
18642 *[[Artery]]
18643 *[[body cavity| Coelom]]
18644 *[[Diaphragm (anatomy)|Diaphragm]]
18645 *[[Gastrointestinal tract]]
18646 *[[Hair]]
18647 {{col-3}}
18648 *[[Exoskeleton]]
18649 *[[Lip]]
18650 *[[Nerve]]
18651 *[[Peritoneum]]
18652 *[[Serous membrane]]
18653 {{col-3}}
18654 *[[Skeleton]]
18655 *[[Skull]]
18656 *[[Spinal cord]]
18657 *[[Vein]]
18658 {{col-end}}
18659
18660 ==See also==
18661 *[[List of anatomical topics]]
18662 *[[List of human anatomical features]]
18663 *[[List of publications in biology#Anatomy|Important publications in anatomy]]
18664
18665 *[[History of anatomy]]
18666 *[[Human anatomy]]
18667 *[[Organ (anatomy)]]
18668 *[[Superficial anatomy]]
18669 *[[Zootomical terms for location]]
18670
18671 ==External links==
18672 {{Commons|Anatomy}}
18673 *[http://brainmaps.org High-Resolution Cytoarchitectural Primate Brain Atlases]
18674 *[http://www.innerbody.com/htm/body.html Free online anatomy atlas]
18675 *[http://www.npac.syr.edu/projects/vishuman/VisibleHuman.html The NPAC Visible Human Viewer]
18676 *[http://cancerweb.ncl.ac.uk/omd/index.html On-Line Medical Dictionary]
18677 *[http://www.bartleby.com/107/ Anatomy of the Human Body by Henry Gray]
18678 *[http://www.rtstudents.com/ Online Radiology Anatomy Resources]
18679 *[http://www.wikimd.org/index.php?title=Gray%27s_Anatomy Gray's Anatomy wiki]
18680 *http://immunity-info.net
18681 *[http://www.anatomyatlases.org/ Anatomy Atlases - a digital library of anatomy information]
18682
18683 {{Biology-footer}}
18684
18685 [[Category:Anatomy]]
18686
18687 [[be:АĐŊĐ°Ņ‚ĐžĐŧŅ–Ņ]]
18688 [[bg:АĐŊĐ°Ņ‚ĐžĐŧиŅ]]
18689 [[bs:Anatomija]]
18690 [[ca:Anatomia]]
18691 [[cs:Anatomie]]
18692 [[cy:Anatomeg]]
18693 [[da:Anatomi]]
18694 [[de:Anatomie]]
18695 [[eo:Anatomio]]
18696 [[es:Anatomía]]
18697 [[et:Anatoomia]]
18698 [[eu:Anatomia]]
18699 [[fa:ڊاŲ„بدشŲ†Ø§Øŗی]]
18700 [[fi:Anatomia]]
18701 [[fr:Anatomie]]
18702 [[fy:Anatomy]]
18703 [[he:אנטומיה]]
18704 [[ia:Anatomia]]
18705 [[id:Anatomi]]
18706 [[io:Anatomio]]
18707 [[is:LíffÃĻrafrÃĻði]]
18708 [[it:Anatomia]]
18709 [[ja:č§Ŗ剖å­Ļ]]
18710 [[ko:해ëļ€í•™]]
18711 [[ku:AnatomÃŽ]]
18712 [[la:Anatomia]]
18713 [[lt:Anatomija]]
18714 [[mk:АĐŊĐ°Ņ‚ĐžĐŧиŅ˜Đ°]]
18715 [[nds:Anatomie]]
18716 [[nl:Anatomie]]
18717 [[no:Anatomi]]
18718 [[os:АĐŊĐ°Ņ‚ĐžĐŧи]]
18719 [[pl:Anatomia]]
18720 [[pt:Anatomia]]
18721 [[ru:АĐŊĐ°Ņ‚ĐžĐŧиŅ]]
18722 [[scn:AnatumÃŦa]]
18723 [[simple:Anatomy]]
18724 [[sk:AnatÃŗmia]]
18725 [[sl:Anatomija]]
18726 [[sr:АĐŊĐ°Ņ‚ĐžĐŧиŅ˜Đ°]]
18727 [[su:Anatomi]]
18728 [[sv:Anatomi]]
18729 [[th:ā¸ā¸˛ā¸ĸā¸§ā¸´ā¸ ā¸˛ā¸„ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒ]]
18730 [[tl:Anatomiya]]
18731 [[tr:Anatomi]]
18732 [[uk:АĐŊĐ°Ņ‚ĐžĐŧŅ–Ņ]]
18733 [[vi:GiáēŖi pháēĢu háģc]]
18734 [[zh:č§Ŗ剖學]]</text>
18735 </revision>
18736 </page>
18737 <page>
18738 <title>Affirming the consequent</title>
18739 <id>675</id>
18740 <revision>
18741 <id>34703526</id>
18742 <timestamp>2006-01-11T03:07:03Z</timestamp>
18743 <contributor>
18744 <ip>66.240.10.188</ip>
18745 </contributor>
18746 <text xml:space="preserve">'''Affirming the consequent''' is a [[logical fallacy]] in the form of a hypothetical proposition. Propositionally speaking, Affirming the Consequent is the logical equivalent of assuming the converse of a statement to be true. The fallacy of affirming the consequent occurs when a hypothetical proposition comprising an [[Antecedent (logic)|antecedent]] and a [[consequent]] asserts that the truthhood of the consequent implies the truthhood of the antecedent. This is fallacious because it assumes a bidirectionality when it does not necessarily exist.
18747
18748 This fallacy has the following [[argument form]]:
18749 :If P, then Q.
18750 :Q.
18751 :Therefore, P.
18752
18753 This logical error is called the fallacy of affirming the consequent because it is mistakenly concluded from the second premise that the affirmation of the consequent entails the truthhood of the antecedent. One way to demonstrate the invalidity is to use a counterexample. Here is an argument that is obviously incorrect:
18754
18755 :If [[Stephen King]] wrote the [[Bible]] (P), then Stephen King is a good writer (Q).
18756 :Stephen King is a good writer (Q).
18757 :Therefore, Stephen King wrote the Bible (P).
18758
18759 The previous argument was obviously incorrect, but the next argument may be more deceiving:
18760
18761 :If someone is human (P), then she is mortal (Q).
18762 :Anna is mortal (Q).
18763 :Therefore Anna is human (P).
18764
18765 But in fact Anna can be a cat; very much a mortal, but not a human one.
18766
18767 However, be aware that a similar [[argument form]] is [[validity|valid]] in which the first premise asserts &quot;[[if and only if]]&quot; rather than &quot;if&quot;. Similarly, the converse of a statement can be validly assumed to be true so long as the &quot;[[if and only if]]&quot; phrase is attached.
18768
18769 ==See also==
18770 *[[Modus ponens]]
18771 *[[Modus tollens]]
18772 *[[Denying the antecedent]]
18773 *[[Fallacy of the undistributed middle]]
18774
18775 [[Category:Logical fallacies]]
18776
18777 [[he:%D7%90%D7%99%D7%A9%D7%95%D7%A8_%D7%94%D7%A1%D7%95%D7%92%D7%A8]]
18778 [[tl:pinapatibayan ang kasunod]]</text>
18779 </revision>
18780 </page>
18781 <page>
18782 <title>Andrei Tarkovsky</title>
18783 <id>676</id>
18784 <revision>
18785 <id>41655113</id>
18786 <timestamp>2006-02-28T20:58:42Z</timestamp>
18787 <contributor>
18788 <username>GrinBot</username>
18789 <id>411872</id>
18790 </contributor>
18791 <minor />
18792 <comment>robot Adding: ca Modifying: es</comment>
18793 <text xml:space="preserve">[[Image:Tarkovsky.jpg|thumb|300px|right|Andrei Tarkovsky]]
18794
18795 '''Andrei Arsenyevich Tarkovsky''' (АĐŊĐ´Ņ€ĐĩĖĐš АŅ€ŅĐĩĖĐŊŅŒĐĩвиŅ‡ ĐĸĐ°Ņ€ĐēĐžĖĐ˛ŅĐēиК) ([[April 4]], [[1932]] - [[December 28]], [[1986]]) was a [[Russia]]n movie director, writer, and actor. He is regarded as one of the most important and influential filmmakers of the [[Soviet Union|Soviet]] era in Russia and one of the greatest in the [[history of film|history of cinema]].
18796
18797 ==Biography==
18798 Tarkovsky, son of the prominent poet [[Arseniy Tarkovsky]], was a product of the golden era of Soviet arts education. He received a classical education in [[Moscow]], studying [[Music]] and [[Arabic language|Arabic]], before training for over five years at the [[VGIK]] film school, studying directly under [[Mikhail Romm]] among others.
18799 He also worked as a geologist in Siberia.
18800 Although the [[Orthodox Christian]] symbolism of his films led to prevarication and occasional suppression of the finished product by the Soviet authorities, the Soviet [[Mosfilm]] studio system enabled him to make films that would not have been commercially viable in the West. However, Tarkovsky's principal complaint about his treatment by the authorities was that he had many more ideas in him than he was allowed to bring to the screen, and in [[1984]], after shooting ''[[Nostalghia]]'' in [[Italy]], he decided not to return to Russia. He made only one more film, ''[[The Sacrifice]]'', a European co-production filmed in [[Sweden]], before dying of [[cancer]] in the suburb of [[Paris]] at the early age of 54.
18801
18802 Andrei Tarkovsky was buried in a graveyard for Russian ÊmigrÊs in the town of [[Sainte-Geneviève-des-Bois]], [[Île-de-France (rÊgion)|Île-de-France]], [[France]].
18803
18804 ==Work==
18805 Tarkovsky's films are characterised by [[metaphysics|metaphysical]] themes, extremely long takes, and memorable images of exceptional beauty. Recurring motifs in his films are dreams, memory, childhood, running water accompanied by fire, rain indoors, reflections, and characters re-appearing in the foreground of long panning movements of the camera.
18806
18807 Tarkovsky developed a theory of cinema that he called &quot;sculpting in time&quot;. By this he meant that the unique characteristic of cinema as a medium was to take our experience of time and alter it. Unedited movie footage transcribes time in real time. (The speedy jump-cutting style that is prevalent in MTV videos and Hollywood movies, by contrast, overrides any sense of time by imposing the editor's viewpoint.) By using long takes and few cuts in his films, he aimed to give the viewers a sense of time passing, time lost, and the relationship of one moment in time to another.
18808
18809 Up to and including his film [[The Mirror (1975 film)|Mirror]], Tarkovsky focused his cinematic works on exploring this theory. After Mirror, he announced that he would focus his work on exploring the dramatic unities proposed by [[Aristotle]]: a concentrated action, happening in one place, within the span of a single day. [[The Sacrifice]] is the only film that truly reflects this ambition; it is also considered by many to be a near-perfect reflection of the sculpting in time theory.
18810
18811 ==Filmography==
18812 * ''[[The Killers (1958 film)|The Killers]]'' (1958) - Tarkovsky's first student film at VGIK, the Soviet State Film School.
18813 * ''[[Concentrate (1958 film)|Concentrate]]'' (1958) - Tarkovsky's second student film at VGIK, the Soviet State Film School.
18814 * ''[[There Will be No Leave Today]]'' (1959) - Tarkovsky's final student film at VGIK, the Soviet State Film School.
18815 * ''[[The Steamroller and the Violin]]'' (1960) - Tarkovsky's graduation film from VGIK, the Soviet State Film School, cowritten with [[Andrei Konchalovsky]].
18816 * ''[[My Name is Ivan]] / [[Ivan's Childhood]]'' (1962) - Winner of Golden Lion for &quot;Best Film&quot; at [[1962]] [[Venice Film Festival]]. Set in the Second World War, this is Tarkovsky's most conventional feature film, although it still has moments of lyrical beauty.
18817 * ''[[Andrei Rublev (film)|Andrei Rublev]]'' (1966) - An epic based on the life of [[Andrei Rublev]], the most famous medieval Russian painter of icons.
18818 * ''[[Solaris (film)|Solaris]]'' (1972) - based on the [[science fiction]] [[Solaris (novel)|novel]] by [[Stanisław Lem]].
18819 * ''[[The Mirror (1975 film)|Mirror]]'' (1975) - A loosely autobiographical reconstruction of key scenes in Tarkovsky's life, the film he'd tried to make earlier but abandoned for ''Solaris'' (we can note thematic ties between them). Said by Tarkovsky to be closest to his own vision of cinema.
18820 * ''[[Stalker (film)|Stalker]]'' (1979) - inspired by the novel ''[[Roadside Picnic]]'' by [[Boris and Arkady Strugatsky]].
18821 * ''[[Tempo di Viaggio/Italian Journey]]'' (1982) - a documentary made for Italian television while scouting locations for [[Nostalghia]] with Italian co-writer (and frequent screenwriter for [[Antonioni |Michelangelo Antonioni]]) [http://imdb.com/name/nm0346096/ Tonino Guerra].
18822 * ''[[Nostalghia]]'' (1983) - A Russian scholar retraces the footsteps of an 18th century Russian composer in Italy. An encounter with a local lunatic - a man who believes he can save humanity by carrying a lit candle across an empty swimming pool - crystalizes the poet's melancholic sense of longing for his family, faith, and homeland.
18823 * ''[[The Sacrifice]]'' (1986) - The film is about the prospect of nuclear annihilation and man's spiritual response to this and other dilemmas set in counterpoint to a minor fable of failed adultery.
18824
18825 ==Bibliography==
18826 *''[[Sculpting in Time : Reflections on the Cinema]]'', translated by Kitty Hunter-Blair (1987)
18827 *''[[Time Within Time: The Diaries 1970-1986]]'', translated by Kitty Hunter-Blair (1993)
18828
18829 ==External links==
18830 * {{imdb name|name=Andrei Tarkovsky|id=0001789}}
18831 * {{senses|id=directors/02/tarkovsky|name=Andrei Tarkovsky}}
18832 *[http://tarkovskyzone.proboards27.com/ 'Stalker: we're now into the Zone' - the one and only Fan Forum]
18833 *[http://www.acs.ucalgary.ca/%7Etstronds/nostalghia.com/index.html Nostalghia.com: A comprehensive site about Tarkovsky]
18834 *[http://www.museum.ru/museum/tarkovsky/begine.htm Tarkovsky museum]
18835 *[http://www.talkingpix.co.uk/Article_Tarkovsky2.html The Genius of Andrei Tarkovsky by Alan Pavelin]
18836
18837 {{tarkovsky}}
18838
18839 [[Category:1932 births|Tarkovsky, Andrei]]
18840 [[Category:1986 deaths|Tarkovsky, Andrei]]
18841 [[Category:Russian actors|Tarkovsky, Andrei]]
18842 [[Category:Russian and Soviet film directors|Tarkovsky, Andrei]]
18843
18844 [[ca:Andrei Tarkovski]]
18845 [[cs:Andrej Tarkovskij]]
18846 [[da:Andrei Tarkovsky]]
18847 [[de:Andrei Arsenjewitsch Tarkowski]]
18848 [[et:Andrei Tarkovski]]
18849 [[es:Andrei Tarkovsky]]
18850 [[fa:ØĸŲ†Ø¯ØąÛŒ ØĒØ§ØąÚŠŲˆŲØŗÚŠÛŒ]]
18851 [[fr:Andreï Tarkovski]]
18852 [[it:Andrej Tarkovskij]]
18853 [[he:אנדריי טרקובסקי]]
18854 [[hu:Andrej Tarkovszkij]]
18855 [[nl:Andrej Tarkovski]]
18856 [[ja:ã‚ĸãƒŗドãƒŦイãƒģã‚ŋãƒĢã‚ŗプキãƒŧ]]
18857 [[no:Andrej Tarkovskij]]
18858 [[pl:Andriej Tarkowski]]
18859 [[pt:Andrei Tarkovski]]
18860 [[ro:Andrei Tarkovski]]
18861 [[ru:ĐĸĐ°Ņ€ĐēОвŅĐēиК, АĐŊĐ´Ņ€ĐĩĐš АŅ€ŅĐĩĐŊŅŒĐĩвиŅ‡]]
18862 [[fi:Andrei Tarkovski]]
18863 [[sv:Andrej Tarkovskij]]
18864 [[tr:Andrei Arsenyevich Tarkovsky]]</text>
18865 </revision>
18866 </page>
18867 <page>
18868 <title>Ambiguity</title>
18869 <id>677</id>
18870 <revision>
18871 <id>40840484</id>
18872 <timestamp>2006-02-23T09:53:12Z</timestamp>
18873 <contributor>
18874 <ip>24.164.205.69</ip>
18875 </contributor>
18876 <comment>transition</comment>
18877 <text xml:space="preserve">{{wiktionary|ambiguity}}
18878
18879 &quot;This word has many meanings...&quot; DÃŗnal Troddyn, A Treatise on Language Vol. 2, 2004
18880
18881 A word, phrase, sentence, or other communication is called '''ambiguous''' if it can be interpreted in more than one way. Ambiguity is distinct from ''[[vagueness]]'', which arises when the boundaries of meaning are indistinct.
18882
18883 '''Lexical ambiguity''' arises when context is insufficient to determine the sense of a single word that has more than one meaning. For example, the word &quot;bank&quot; has several meanings, including &quot;financial institution&quot; and &quot;edge of a river&quot;, but if someone says &quot;I deposited $100 in the bank&quot;, the intended meaning is clear. More problematic are words whose senses express closely related concepts. &quot;Good&quot;, for example, can mean &quot;useful&quot; or &quot;functional&quot; (''That's a good hammer''), &quot;exemplary&quot; (''She's a good student''), &quot;pleasing&quot; (''This is good soup''), &quot;moral&quot; (''He is a good person''), and probably other similar things. &quot;I have a good daughter&quot; isn't clear about which sense is intended.
18884
18885 '''[[Syntactic ambiguity]]''' arises when a sentence can be [[parsing|parsed]] in more than one way. &quot;He ate the cookies on the couch&quot;, for example, could mean that he ate those cookies which were on the couch (as opposed to those that were on the table), or it could mean that he was sitting on the couch when he ate the cookies. Spoken language can also contain lexical ambiguities, where there is more than one way to break up a set of sounds into words, for example &quot;ice cream&quot; and &quot;I scream&quot;. This is rarely a problem due to the use of context.
18886
18887 [[Philosopher]]s (and other users of [[logic]]) spend a lot of time and effort searching for and removing ambiguity in arguments, because it can lead to incorrect conclusions and can be used to deliberately conceal bad arguments. For example, a politician might say &quot;I oppose taxes which hinder economic growth&quot;. Some will think he opposes taxes in general because they hinder economic growth; others will think he opposes only those taxes that he believes will hinder economic growth (although in writing, the correct insertion or omission of a [[comma (punctuation)|comma]] after &quot;taxes&quot; removes ambiguity here). The politician hopes that each will interpret the statement in the way he wants, and both will think the politician is on his side. The logical fallacies of [[amphiboly]] and [[equivocation]] also rely on the use of ambiguous words and phrases.
18888
18889 In [[literature]] and [[rhetoric]], on the other hand, ambiguity can be a useful tool. [[Groucho Marx]]'s classic joke depends on a grammatical ambiguity for its [[humor]], for example: ''Last night I shot an elephant in my pajamas. What he was doing in my pajamas I'll never know.'' Songs and poetry often rely on ambiguous words for artistic effect, as in the song title &quot;Don't It Make My Brown Eyes Blue&quot; (where &quot;blue&quot; can refer to the color, or to sadness).
18890
18891 In narrative, ambiguty can be introduced in several ways: motive, plot, character. [[F. Scott Fitzgerald]] uses the latter type of ambiguity with notable effect in his novel [[The Great Gatsby]].
18892
18893 In [[music]] pieces or sections which confound expectations and may be or are interpreted simultaneously in different ways are ambiguous, such as some [[polytonality]], [[polymeter]], other ambiguous [[metre|meters]] or [[rhythm]]s, and ambiguous [[phrase (music)|phrasing]], or (Stein 2005, p.79) any [[aspect of music]]. The [[music of Africa]] is often purposely ambiguous. To quote Sir [[Donald Francis Tovey]] (1935, p.195), &quot;Theorists are apt to vex themselves with vain efforts to remove uncertainty just where it has a high aesthetic value.&quot;
18894
18895 Some languages have been created with the intention of avoiding ambiguity, especially syntactic ambiguity. [[Lojban]] and [[Loglan]] are two nearly identical languages which have been created with the intention of being clear and impossible to misunderstand. The languages can be both spoken and written. Their unambiguity makes them better suited than natural languages for use in communication between humans and computers.
18896
18897 ==See also==
18898 * [[double entendre]]
18899 * [[imprecise language]]
18900 * [[logical fallacy]]
18901 * [[semantics]]
18902
18903 ==External links==
18904 * [http://www.gray-area.org/Research/Ambig/ Collection of Ambiguous or Inconsistent/Incomplete Statements]
18905
18906 [[Category:Semantics]]
18907 [[de:Mehrdeutigkeit]]
18908 [[nl:Ambiguïteit]]</text>
18909 </revision>
18910 </page>
18911 <page>
18912 <title>Abel</title>
18913 <id>678</id>
18914 <revision>
18915 <id>30571937</id>
18916 <timestamp>2005-12-08T08:08:03Z</timestamp>
18917 <contributor>
18918 <username>FDuffy</username>
18919 <id>380940</id>
18920 </contributor>
18921 <comment>Merged to [[Cain and Abel]]</comment>
18922 <text xml:space="preserve">#REDIRECT [[Cain and Abel]]</text>
18923 </revision>
18924 </page>
18925 <page>
18926 <title>Animal (disambiguation)</title>
18927 <id>679</id>
18928 <revision>
18929 <id>41857935</id>
18930 <timestamp>2006-03-02T04:40:08Z</timestamp>
18931 <contributor>
18932 <username>Ohnoitsjamie</username>
18933 <id>507787</id>
18934 </contributor>
18935 <comment>that is not what disambiguation is for</comment>
18936 <text xml:space="preserve">The word '''animal''' when used alone has several possible meanings in the [[English language]]. It could refer to:
18937
18938 * A [[taxonomy|taxonomic]] member of the Kingdom [[wikispecies:animalia|Animalia]], an [[animal]].
18939 * A [[British rock]] [[rock band|band]] called [[The Animals]].
18940 * An album released by [[United Kingdom|British]] rock band [[Pink Floyd]] called ''[[Animals (album)|Animals]]''.
18941 * A 2001 film starring [[Rob Schneider]] called ''[[The Animal]]''.
18942 * A genre of [[anime]].
18943 * A [[Muppet Show]] character: see [[Dr. Teeth and The Electric Mayhem]].
18944 * A [[professional wrestling|professional wrestler]]: see [[Joseph Laurinaitis]].
18945 * A [[video game]] by [[Microtime]] called [[Animal (video game)|Animal]].
18946 * [[Animal (song)|Animal]] is the name of several songs.
18947 * For all English languange meanings, see the [http://en.wiktionary.org/wiki/animal Wiktionary definition of animal].
18948
18949 {{disambig}}
18950 [[de:Animals]]
18951 [[hu:Animals]]</text>
18952 </revision>
18953 </page>
18954 <page>
18955 <title>Aardvark</title>
18956 <id>680</id>
18957 <revision>
18958 <id>41872223</id>
18959 <timestamp>2006-03-02T07:12:04Z</timestamp>
18960 <contributor>
18961 <ip>24.10.96.43</ip>
18962 </contributor>
18963 <comment>edible? this is not fact or useful</comment>
18964 <text xml:space="preserve">{{cleanup-date|January 2006}}
18965 {{otheruses}}
18966 {{Taxobox
18967 | color = pink
18968 | name = Aardvark
18969 | status = {{StatusConcern}}
18970 | image = Erdferkel-drawing.jpg
18971 | image_width = 200px
18972 | regnum = [[Animal]]ia
18973 | phylum = [[Chordate|Chordata]]
18974 | classis = [[Mammal]]ia
18975 | ordo = '''Tubulidentata'''
18976 | ordo_authority = [[Thomas Henry Huxley|Huxley]], 1872
18977 | familia = '''Orycteropodidae'''
18978 | familia_authority = [[John Edward Gray|Gray]], 1821
18979 | genus = '''''Orycteropus'''''
18980 | genus_authority = [[Étienne Geoffroy Saint-Hilaire|É. Geoffroy Saint-Hilaire]], 1796
18981 | species = '''''O. afer'''''
18982 | binomial = ''Orycteropus afer''
18983 | binomial_authority = [[Peter Simon Pallas|Pallas]], [[1766]]
18984 }}
18985 The '''Aardvark''' (''Orycteropus afer'') is a medium-sized [[mammal]] native to [[Africa]]. The name comes from the [[Afrikaans]]/[[Dutch language|Dutch]] for &quot;earth pig&quot; (''aarde'' earth, ''varken'' pig), because early settlers from [[Europe]] thought it resembled a [[pig]] (although Aardvarks are not closely related to pigs).
18986
18987 The Aardvark is the only surviving member of the [[Family (biology)|family]] '''Orycteropodidae''' and of the [[Order (biology)|order]] '''Tubulidentata'''. The Aardvark was originally placed in the same [[genus]] as the [[anteater|South American anteater]]s because of superficial similarities which, it is now known, are the result of [[convergent evolution]], not common ancestry. (For the same reason, Aardvarks bear a striking first-glance resemblance to the [[marsupial]] [[Bilby|bilbies]] and [[Bandicoot|bandicoots]] of [[Australasia]], which are not [[Eutheria|placental mammals]] at all.)
18988
18989 The oldest known Tubulidentata fossils have been found in [[Kenya]] and date to the early [[Miocene]]. Although the relationships of Tubulidentata are unknown, they are probably [[Ungulates]]. They spread to Europe and [[southern Asia]] during the later Miocene and early [[Pliocene]] periods. Three genera of the family Orycteropodidae are known: ''Leptorycteropus'', ''Myorycteropus'', and ''Orycteropus'', the surviving Aardvark. A genus from Madagascar may be related to them, called ''Plesiorycteropus''.
18990
18991 The most distinctive characteristic of the Tubulidentata is (as the name implies) their teeth which, instead of having a pulp cavity, have lots of thin tubes of dentine, each containing pulp and held together by cementum. The teeth have no enamel coating and are worn away and regrow continuously. Aardvarks are born with conventional incisors and canines at the front of the jaw, but these fall out and are not replaced. In adult Aardvarks, the only teeth are the molars at the back of the jaw.
18992
18993 [[Image:Orycteropus afer01.jpg|thumb|left|200px|Aardvark]]
18994
18995 Aardvarks are only vaguely pig-like; the body is stout with an arched back; the limbs are of moderate length. The front feet have lost the pollex (or 'thumb')&amp;mdash;resulting in four toes&amp;mdash;but the rear feet have all five toes. Each toe bears a large, robust nail which is somewhat flattened and shovel-like, and appears to be intermediate between a claw and a hoof. The ears are disproportionately long and the tail very thick at the base with a gradual taper. The greatly elongated head is set on a short, thick neck, and at the end of the snout is a disk in which the nostrils open. The mouth is typical of species that feed on termites: small and tubular. Aardvarks have long, thin, protrusible tongues and elaborate structures supporting a keen [[olfaction|sense of smell]].
18996
18997 Weight is typically between 40 and 65 kg; length is usually between 1 and 1.3 m. Aardvarks are a pale yellowish gray in color, often stained reddish-brown by soil. The coat is thin and the animal's primary protection is its tough skin; Aardvarks have been known to sleep in a recently excavated ant nest, so well does it protect them.
18998
18999 In the past, several individual species of Aardvark were named, however current knowledge indicates that there is only one species, ''Orycteropus afer'', with several subspecies; 18 have been listed but most are regarded as invalid.
19000
19001 Aardvarks are [[nocturnal]] and solitary creatures that feed almost exclusively on [[ant]]s and [[termite]]s. An Aardvark emerges from its burrow in the late afternoon or shortly after sunset, and forages over a considerable home range, swinging its long nose from side to side to pick up the scent of food. When a concentration of ants or termites is found, the Aardvark digs into it with its powerful front legs, keeping its long ears upright to listen for predators, and takes up an astonishing number of insects with its long, sticky tongue&amp;mdash;as many as 50,000 in one night has been recorded. They are exceptionally fast diggers, but otherwise move rather slowly.
19002
19003 Aside from digging out ants and termites, aardvarks also excavate burrows to live in: temporary sites scattered around the home range as refuges, and the main burrow which is used for breeding. Main burrows can be deep and extensive, have several entrances, and be 13m long. Aardvarks change the layout of their home burrow regularly, and from time to time move on and make a new one. Only mothers and young share burrows.
19004
19005 After a gestation period of 7 months, a single young weighing around 2 kg is born, and is able to leave the burrow to accompany its mother after only two weeks. At six months of age it is digging its own burrows, but it will often remain with the mother until the next [[mating season]]. Aardvarks can grow older than 20 years in captivity.
19006
19007 Aardvarks are distributed across most of [[sub-Saharan Africa]], and although killed by humans both for their flesh and for their teeth (which are used as decorations), do not appear to be threatened.
19008
19009 ''Aardvark'' is always the first noun in the English dictionary.
19010
19011 More precise information are given in a diploma thesis on the biology of the aardvark which can be downloaded here: [http://en.wikisource.org/wiki/Image:Aardvark.pdf '''The Biology of the Aardvark''' (''Orycteropus afer'')
19012
19013
19014 ==Similar animals==
19015 {{Wikisource1911Enc|Aard-vark}}
19016 *The [[anteater]]s of South America.
19017 *[[Pangolin]]s are also called ''scaly anteaters''.
19018 *The [[Numbat]] (''Myrmecobius fasciatus''), a [[marsupial]].
19019 *[[Echidna]]s, a family of [[monotreme]]s, are still sometimes called ''spinous anteaters''.
19020 *[[Armadillo]]s are omnivorous but ants form a large part of their diet.
19021
19022 {{Mammals}}
19023
19024 [[Category:Dutch loanwords]]
19025 [[Category:Mammals]]
19026 [[Category:Wildlife of Africa]]
19027 [[cs:HrabÃĄÄ]]
19028 [[da:Jordsvin]]
19029 [[de:Erdferkel]]
19030 [[et:Tuhnik]]
19031 [[es:Cerdo hormiguero]]
19032 [[eo:Orikteropo]]
19033 [[fr:OryctÊrope du Cap]]
19034 [[he:שנבובאים]]
19035 [[sw:Mhanga]]
19036 [[lt:VamzdŞiadančiai]]
19037 [[li:Eerdverke]]
19038 [[nl:Aardvarken]]
19039 [[no:Jordsvin]]
19040 [[ja:ツチブã‚ŋ]]
19041 [[pl:MrÃŗwnik]]
19042 [[pt:Oricterope]]
19043 [[ru:ĐĸŅ€ŅƒĐąĐēОСŅƒĐą]]
19044 [[simple:Aardvark]]
19045 [[sv:Jordsvin]]</text>
19046 </revision>
19047 </page>
19048 <page>
19049 <title>Aardwolf</title>
19050 <id>681</id>
19051 <revision>
19052 <id>42099772</id>
19053 <timestamp>2006-03-03T20:55:32Z</timestamp>
19054 <contributor>
19055 <username>Hansnesse</username>
19056 <id>247414</id>
19057 </contributor>
19058 <comment>rv to last edit by Dawson</comment>
19059 <text xml:space="preserve">{{taxobox
19060 | color=pink
19061 | name=Aardwolf
19062 | status = {{StatusConcern}}
19063 | image = Aardwolf.png
19064 | image_width = 235px
19065 | image_caption = Aardwolf
19066 | regnum = [[Animal]]ia
19067 | phylum = [[Chordate|Chordata]]
19068 | classis = [[Mammal]]ia
19069 | ordo = [[Carnivora]]
19070 | familia = [[Hyaenidae]]
19071 | genus = '''''Proteles'''''
19072 | species = '''''P. cristatus'''''
19073 | binomial = ''Proteles cristatus''
19074 | binomial_authority = [[Anders Sparrman|Sparrman]] [[1783]]
19075 }}
19076
19077 The '''Aardwolf''' (''Proteles cristatus'') is a small [[mammal]] related to the [[Hyena]], native to Africa. The name means &quot;earth wolf&quot; in [[Afrikaans]].
19078
19079 There are two subspecies:
19080
19081 * ''Proteles cristatus cristatus'' ([[Southern Africa]])
19082 * ''Proteles cristatus septentrionalis'' ([[East Africa]])
19083
19084 The Aardwolf looks most like the [[Striped Hyena]] but smaller with a more pointed [[muzzle]], sharper [[ear]]s, vertical stripes, and a long mane down the middle line of the neck and back. It stands about 50 cm at the shoulder, weighs around 9 kg, and has two glands at the rear that secrete a musky fluid for marking territory and communicating with other aardwolves.
19085
19086 [[Image:Aardwolf.jpg|thumb|left|180px|Aardwolf from the zoo in [[San Antonio]], [[Texas]]]]
19087
19088 The Aardwolf is nocturnal, sleeping in underground burrows by day. By night, an Aardwolf can consume up to 200,000 harvester [[termites]]. They are also known to feed on other insects, larvae, and eggs.
19089
19090 While primarily solitary, a mating pair will occupy the same territory with their young. Gestation lasts between 90 and 100 days. The first six to eight weeks are spent in the den with the mother. After three months, they begin supervised foraging and set off on their own shortly thereafter.
19091
19092 ==External links==
19093 {{Wikisource1911Enc|Aard-wolf}}
19094 *[http://animaldiversity.ummz.umich.edu/site/accounts/information/Proteles_cristatus.html Animal Diversity Web]
19095
19096 [[Category:Hyenas]]
19097 [[Category:Wildlife of Africa]]
19098
19099 [[bg:ЗĐĩĐŧĐĩĐŊ вŅŠĐģĐē]]
19100 [[da:Jordulv]]
19101 [[de:Erdwolf]]
19102 [[es:Lobo de tierra]]
19103 [[eo:Protelo]]
19104 [[it:Proteles cristatus]]
19105 [[he:פרוטל (×Ļבו×ĸון)]]
19106 [[nl:Aardwolf]]
19107 [[no:Jordulv]]
19108 [[pt:Proteles cristatus]]</text>
19109 </revision>
19110 </page>
19111 <page>
19112 <title>Adobe</title>
19113 <id>682</id>
19114 <revision>
19115 <id>41628033</id>
19116 <timestamp>2006-02-28T17:03:30Z</timestamp>
19117 <contributor>
19118 <username>Ugur Basak Bot</username>
19119 <id>735354</id>
19120 </contributor>
19121 <minor />
19122 <comment>robot Adding: tr</comment>
19123 <text xml:space="preserve">{{for|the software company|Adobe Systems}}
19124
19125 [[Image:AdobeSurfaceCoatingRenewalOnWall.jpg|frame|right|Renewal of the surface coating of an adobe wall in Chamisal, New Mexico]]
19126
19127 '''Adobe''' is a [[building material]] composed of water, [[sand]]y [[clay]] and [[straw]] or other organic materials, which is shaped into bricks using wooden frames and dried in the sun, also known as [[Mudbrick]] . Adobe structures are extremely durable and account for the oldest extant buildings on the planet. Adobe buildings also offer significant advantages in hot, dry [[climate]]s, as they remain cooler as it stores and releases heat very slowly.
19128
19129 The word &quot;adobe&quot; is Spanish and comes from the Arabic &quot;at-tub&quot;, the brick, and from the Coptic &quot;tObe&quot;. The word may be pronounced ah-doh-beh or uh-doh-bee. Buildings made of sun-dried earth are common in [[the Middle East]], [[North Africa]], and in [[Spain]] (usually in the [[Mudejar]] style). The method of brickmaking was imported to the Americas in the [[16th century]] by Spaniards.
19130
19131 A distinction is sometimes made between the smaller ''adobes,'' which are about the size of ordinary baked bricks, and the larger ''adobines,'' some of which are as much as from one to two yards long.
19132
19133 In more modern usage, the term &quot;adobe&quot; has come to mean a style of architecture that is popular in the [[desert]] [[climate]]s of [[North America]], especially in [[New Mexico]]. Cf. [[stucco]].
19134
19135 [[Image:Adobe kilns from HABS.jpg|frame|right|Detail of Adobe kilns in Arizona]]
19136
19137 ==Composition of adobe==
19138 An adobe brick is made of soil mixed with water and an organic material such as straw or animal dung. The soil composition typically contains [[clay]] and [[sand]]. Straw is useful in binding the brick together and allowing the brick to dry evenly. Dung offers the same advantage and is also added to repel insects.
19139
19140 ==Adobe bricks==
19141 Bricks are made in an open frame, 25 cm (10 inches) by 36 cm (14 inches) is a reasonable size, but any convenient size is fine for your own use. After the mud is put into the frame the frame is removed. After a few hours the bricks are put on edge to finish drying. Bricks should be dried in the shade to avoid cracking.
19142
19143 Use the same mixture you use to make bricks for mortar when laying the bricks and for plaster on the interior and exterior walls. Some ancient cultures used concrete for the plaster to avoid rain damage. It is sometimes useful to include occasional pieces of wood as you lay a wall to give something to nail insulation onto, and stone can be used for additional strength.
19144
19145 The largest structure ever made from adobe (bricks), was the [[Bam Citadel]], which suffered serious damage, up to 80%, by an earthquake on December 26, 2003. Other large adobe structures are the [[Huaca del Sol]] in [[Peru]], built using 100 million signed bricks, and the ciudellas of [[Chan Chan]], also in Peru.
19146
19147 ==Thermal properties==
19148
19149 Because an adobe wall, either made of bricks or using a [[rammed earth]] technique, is quite massive it will hold heat or cold. A south facing adobe wall may be left uninsulated in order to collect heat during the day. It should be thick enough that it remains cool on the inside during the heat of the day but should be thin enough that the heat can be transferred through the wall by evening. Such a wall can be covered with glass to increase heat collection. Used in a [[passive solar heating|passive solar]] home, such a wall is called a [[Trombe wall]]. Adobe has a large thermal mass, therefore this type of construction is only good in tropical climates. In temperate climates it is almost impossible to heat a home of this type as the heat is leached by the ground and the walls.
19150
19151 ==Around the world==
19152 &lt;gallery&gt;
19153 Image:RomaniaDanubeDelta MakingMaterialForCOnstructing0003jpg.JPG|Still in production today, Danube Delta
19154 Image:RomaniaDanubeDelta MakingMaterialForCOnstructing0002jpg.JPG
19155 Image:RomaniaDanubeDelta MakingMaterialForCOnstructing0001jpg.JPG
19156 Image:RomaniaDanubeDelta MakingMaterialForCOnstructing0004jpg.JPG
19157
19158 &lt;/gallery&gt;
19159 ''See also'' [[Hassan Fathy]], [[mudbrick]]
19160
19161 ==External links==
19162
19163
19164 *[http://www.eartharchitecture.org Earth Architecture] - A website whose focus is contemporary issues in earth architecture.
19165 *[http://www.buildingwithawareness.com/ '''Building With Awareness''' - A detailed how-to DVD video that shows adobe wall construction and their use as thermal mass walls]
19166 * [http://www.calearth.org '''Cal-Earth''' (The California Institute of Earth Art and Architecture)] has developed a patented system called Superadobe, in which bags filled with stabilized earth are layered with strands of barbed wire to form a structure strong enough to withstand earthquakes, fire and flood.
19167
19168 [[Category:Materials]]
19169 [[Category:Masonry]]
19170 [[:Category:Appropriate technology]]
19171 [[Category:Arabic words]]
19172
19173 [[ar:ØŖدŲˆØ¨ (اŲ„ØˇŲˆØ¨)]]
19174 [[cs:Adobe (stavebnictví)]]
19175 [[de:Adobe (Ziegel)]]
19176 [[es:Adobe (construcciÃŗn)]]
19177 [[eo:Adobo]]
19178 [[fr:Adobe (brique)]]
19179 [[hu:VÃĄlyog]]
19180 [[pl:Adobe (budownictwo)]]
19181 [[pt:Adobe]]
19182 [[tr:Kerpiç]]</text>
19183 </revision>
19184 </page>
19185 <page>
19186 <title>Adventure</title>
19187 <id>683</id>
19188 <revision>
19189 <id>38395655</id>
19190 <timestamp>2006-02-06T01:29:37Z</timestamp>
19191 <contributor>
19192 <username>AxelBoldt</username>
19193 <id>2</id>
19194 </contributor>
19195 <minor />
19196 <comment>[[WP:AWB|AWB assisted]] spelling &quot;occurrence&quot;; see [[WP:Typo]]</comment>
19197 <text xml:space="preserve">:''For other uses, see [[Adventure (disambiguation)]].''
19198
19199 '''Adventure''' refers to events which happen unexpectedly and involve the chance of danger or loss. Adventures can include daring feats, remarkable occurrences, stirring encounters, and major life undertakings.
19200
19201 Adventurous experiences create psychological and physiological [[arousal]] which can be interpreted as negative (e.g., [[fear]]) or positive (e.g., [[flow]]) (see [[Yerkes-Dodson law]]). For some people, adventure becomes a major pursuit in and of itself, for example see [[Extreme Sports]].
19202
19203 ===Applications of Adventure===
19204
19205 Adventure is a term used in many contexts and situations. For example, it is a key component of [[narrative]], [[story-telling]], [[drama]] and [[role-playing]] and the concept is used to structure and interpet [[books]], [[film]]s, music and [[computer games]]. Adventure is also used within [[education]], [[sport]], [[tourism]] and others forms of [[entertainment]]. Examples of these adventure genres and applications include:
19206
19207 * [[Adventure education]] is the use of challenging experiences for learning.
19208 * [[Adventure film]] is a film genre.
19209 * [[Adventure game]] is a computer game genre.
19210 * [[Adventure novel]] is a fiction genre.
19211 * [[Adventure (role-playing games)]] involve acting out a specific storyline or plotline.
19212 * [[Adventure racing]] involves competing in multiple outdoor adventure extreme sports.
19213 * [[Adventure tourism]] offers travellers chances to have exciting travel encounters.
19214
19215 ===See also===
19216 * [[Risk]]
19217
19218 {{socio-stub}}
19219
19220 [[de:Abenteuer]]
19221 [[es:Aventura]]
19222 [[fr:Aventure]]
19223 [[sv:Äventyrsspel]]</text>
19224 </revision>
19225 </page>
19226 <page>
19227 <title>Agatho</title>
19228 <id>684</id>
19229 <revision>
19230 <id>15899210</id>
19231 <timestamp>2002-02-25T15:43:11Z</timestamp>
19232 <contributor>
19233 <ip>Conversion script</ip>
19234 </contributor>
19235 <minor />
19236 <comment>Automated conversion</comment>
19237 <text xml:space="preserve">#REDIRECT [[Pope Agatho]]
19238 </text>
19239 </revision>
19240 </page>
19241 <page>
19242 <title>Agave</title>
19243 <id>685</id>
19244 <revision>
19245 <id>42091317</id>
19246 <timestamp>2006-03-03T19:45:20Z</timestamp>
19247 <contributor>
19248 <username>Rich Farmbrough</username>
19249 <id>82835</id>
19250 </contributor>
19251 <minor />
19252 <text xml:space="preserve">:''For the queen of Greek mythology, see [[Agave (mythology)]].''
19253 {{Taxobox
19254 | color = lightgreen
19255 | name = ''Agave''
19256 | image = Agave americana a-m.jpg
19257 | image_width = 250px
19258 | image_caption = [[Century plant]]
19259 | regnum = [[Plant]]ae
19260 | divisio = [[Flowering plant|Magnoliophyta]]
19261 | classis = [[Liliopsida]]
19262 | ordo = [[Asparagales]]
19263 | familia = [[Agavaceae]]
19264 | genus = '''''Agave'''''
19265 | genus_authority = [[Carolus Linnaeus|L.]]
19266 | subdivision_ranks = [[Species]]
19267 | subdivision =
19268 ''[[Agave americana]]''&lt;br /&gt;
19269 ''[[Agave fourcroydes]]''&lt;br /&gt;
19270 ''[[Agave sisalana]]''&lt;br /&gt;
19271 many others, see text
19272 }}
19273
19274 '''Agaves''' are [[succulent plant|succulent]] [[plant]]s of a large botanical genus of the same name, belonging to the family [[Agavaceae]]. Chiefly [[Mexico|Mexican]], they occur also in the southern and western [[United States]] and in central and tropical [[South America]]. The plants have a large rosette of thick fleshy leaves generally ending in a sharp point and with a spiny margin; the stout stem is usually short, the leaves apparently springing from the root.
19275
19276 Each rosette is [[monocarpic]] and grows slowly to flower but once after a number of years, when a tall stem or &quot;mast&quot; grows from the center of the leaf rosette and bears a large number of shortly tubular flowers. After development of fruit the original plant dies, but suckers are frequently produced from the base of the stem which become new plants.
19277
19278 [[Image:Agaveattenuata1web.jpg|thumb|left|Swan's Neck Agave (''Agave attenuata'')]]
19279 The most familiar species is ''[[Agave americana]]'', a native of tropical America, the so-called [[century plant|Century Plant]] or American [[aloe]] (the [[maguey]] of Mexico). The name refers to the long time the plant takes to flower, although the number of years before flowering occurs depends on the vigor of the individual, the richness of the soil and the climate; during these years the plant is storing in its fleshy leaves the nourishment required for the effort of flowering. During the development of the inflorescence there is a rush of sap to the base of the young flowerstalk. In the case of ''A. americana'' and other species this is used by the Mexicans to make their national beverage, [[pulque]]; the flower shoot is cut out and the sap collected and subsequently fermented. By distillation a spirit called [[mezcal]] is prepared. The leaves of several species yield fiber, as for instance, ''Agave rigida var. sisalana'', [[sisal]] hemp, ''Agave decipiens'', False Sisal Hemp; ''Agave americana'' is the source of pita fiber, and is used as a fiber plant in Mexico, the [[West Indies]] and southern [[Europe]]. The flowering stem of the last named, dried and cut in slices, forms natural razor strops, and the expressed juice of the leaves will lather in water like soap. The Native Americans of Mexico used the agave both to make pens, nails and needles as well as string to sew and make weavings. In [[India]] the plant is extensively used for hedges along railroads.
19280
19281 [[Image:Aloe-flower.jpg|thumb|Agave in bloom in a garden (Roquevaire, Bouches-du-Rhône, France, September 1978)]]
19282
19283 ''Agave americana'', century plant, was introduced into Europe about the middle of the [[16th century]] and is now widely cultivated for its handsome appearance; in the variegated forms the leaf has a white or yellow marginal or central stripe from base to apex. As the leaves unfold from the center of the rosette the impression of the marginal spines is very conspicuous on the still erect younger leaves. The tequ plants are usually grown in tubs and put out in the summer months, but in the winter require protection from frost. They mature very slowly and die after flowering, but are easily propagated by the offsets from the base of the stem.
19284
19285 Agave [[nectar (plant)|nectar]] has been used as an alternative to [[sugar]] in cooking.
19286
19287 The juice from many species of agave can cause acute contact [[dermatitis]]. It will produce reddening and blistering lasting one to two weeks. Episodes of itching may recur up to a year thereafter, even though there is no longer a visible rash. Interestingly, dried parts of the plants can be handled with bare hands with little or no effect.
19288
19289 ==Taxonomy==
19290 Agaves were once classified in [[Liliaceae]] but most references now include them in their own family, [[Agavaceae]].
19291
19292 Agaves have long presented special difficulties for [[taxonomy]]; variations within a species may be considerable, and a number of named species are of unknown origin, and may just be variants of original wild species.
19293
19294 Spanish and Portuguese explorers probably brought agaves back with them, but really became popular in Europe during the [[19th century]], with many types being imported by collectors. Some of have been continuously propagated by offset since then, and do not consistently resemble any species known in nature, although this may simply be due to the unnatural growing conditions in Europe.
19295
19296 ==Species==
19297 *''[[Agave aboriginum]]''
19298 *''[[Agave abortiva]]''
19299 *''[[Agave abrupta]]''
19300 *''[[Agave acicularis]]''
19301 *''[[Agave acklinicola]]''
19302 *''[[Agave affinis]]''
19303 [[Image:Agave lechuguilla0.jpg|thumb|right|''Agave lecheguilla'']]
19304 *''Agave × ajoensis'' = ''Agave schottii'' var. ''schottii'' × ''Agave deserti'' var. ''simplex''
19305 *''[[Agave aktites]]''
19306 *''[[Agave albescens]]''
19307 *''[[Agave albomarginata]]''
19308 *''[[Agave alibertii]]''
19309 *''[[Agave aloides]]''
19310 *''[[Agave amaniensis]]''
19311 *''[[Agave americana]]'' L. &amp;ndash; American Agave, American Century Plant, Century Plant, Maguey americano
19312 **''Agave americana'' var. ''americana''
19313 **''Agave americana'' var. ''expansa''
19314 **''Agave americana'' var. ''latifolia''
19315 **''Agave americana'' var. ''marginata''
19316 **''Agave americana'' var. ''medio-picta''
19317 **''Agave americana'' var. ''oaxacensis''
19318 **''Agave americana'' var. ''striata''
19319 **''Agave americana'' ssp. ''protamericana''
19320 [[Image:Agave tequilana0.jpg|thumb|right|Tequila Agave (''Agave tequilana'')]]
19321 *''[[Agave angustiarum]]''
19322 *''[[Agave angustifolia]]'' Haw. &amp;ndash; Century plant, Maguey espad n
19323 *''[[Agave angustissima]]''
19324 *''[[Agave anomala]]''
19325 *''[[Agave antillarum]]''
19326 **''Agave antillarum'' var. ''grammontensis''
19327 *''[[Agave applanata]]''
19328 *''[[Agave arizonica]]'' Gentry &amp; J.H. Weber &amp;ndash; Arizona Agave, Arizona Century Plant
19329 *''[[Agave arubensis]]''
19330 *''[[Agave aspera]]''
19331 *''[[Agave asperrima]]'' Jacobi &amp;ndash; Maguey spero, Rough Century Plant
19332 *''[[Agave attenuata]]'' &amp;ndash; Swan's Neck Agave, Dragon Tree Agave, Foxtail Agave
19333 *''[[Agave aurea]]''
19334 [[Image:Agaveespinho1.jpg|thumb|right|''Agave horrida'']]
19335 *''[[Agave avellanidens]]''
19336 *''[[Agave bahamana]]''
19337 *''[[Agave bakeri]]''
19338 *''[[Agave banlan]]''
19339 *''[[Agave barbadensis]]''
19340 *''[[Agave baxteri]]''
19341 *''[[Agave bergeri]]''
19342 *''[[Agave bernhardi]]''
19343 *''[[Agave boldinghiana]]''
19344 *''[[Agave bollii]]''
19345 *''[[Agave botterii]] ''
19346 *''[[Agave bouchei]]''
19347 *''[[Agave bourgaei]]''
19348 *''[[Agave bovicornuta]]'' &amp;ndash; Cowhorn Agave
19349 *''[[Agave braceana]]''
19350 *''[[Agave brachystachys]]''
19351 *''[[Agave bracteosa]]'' &amp;ndash; Squid Agave
19352 *''[[Agave brandegeei]]''
19353 *''[[Agave brauniana]]''
19354 *''[[Agave breedlovei]]''
19355 *''[[Agave brevipetala]]''
19356 *''[[Agave breviscapa]]''
19357 *''[[Agave brevispina]]''
19358 *''[[Agave brittonia]]''
19359 *''[[Agave bromeliaefolia]]''
19360 *''[[Agave brunnea]]''
19361 *''[[Agave bulbifera]]''
19362 *''[[Agave cacozela]]''
19363 *''[[Agave cajalbanensis]]''
19364 *''[[Agave calderoni]]''
19365 *''[[Agave calodonta]]''
19366 *''[[Agave campanulata]]''
19367 *''[[Agave cantala]]'' Roxb. &amp;ndash; cantala, Maguey de la India (supplies Manila-Maquey fiber)
19368 *''[[Agave capensis]]''
19369 [[Image:Agave1web.jpg|thumb|right|agave]]
19370 *''[[Agave carchariodonta]]''
19371 *''[[Agave caribaea]]''
19372 *''[[Agave caribiicola]]''
19373 *''[[Agave carminis]]''
19374 *''[[Agave caroli-schmidtii]]''
19375 *''[[Agave celsii]]''
19376 *''[[Agave cernua]]''
19377 *''[[Agave cerulata]]''
19378 **''Agave cerulata'' ssp. ''subcerulata''
19379 *''[[Agave chiapensis]]'' (syn. ''Agave polyacantha'')
19380 *''[[Agave chihuahuana]]''
19381 *''[[Agave chinensis]]''
19382 *''[[Agave chisosensis]]''
19383 *''[[Agave chloracantha]]''
19384 *''[[Agave chrysantha]]'' Peebles &amp;ndash; Golden Flowered Agave, Golden Flower Century Plant
19385 *''[[Agave chrysoglossa]]''
19386 *''[[Agave coccinea]]''
19387 *''[[Agave cocui]]''
19388 *''[[Agave coespitosa]]''
19389 *''[[Agave colimana]]''
19390 *''[[Agave collina]]''
19391 *''[[Agave colorata]]'' &amp;ndash; Mescal ceniza
19392 *''[[Agave compacta]]''
19393 *''[[Agave complicata]]''
19394 *''[[Agave compluviata]]''
19395 *''[[Agave concinna]]''
19396 *''[[Agave congesta]]''
19397 *''[[Agave conjuncta]]''
19398 *''[[Agave connochaetodon]]''
19399 *''[[Agave consociata]]''
19400 *''[[Agave convallis]]''
19401 *''[[Agave corderoyi]]''
19402 *''[[Agave costaricana]]''
19403 *''[[Agave cucullata]]''
19404 *''[[Agave cundinamarcensis]]''
19405 *''[[Agave cupreata]]''
19406 *''[[Agave dasyliriodes]]''
19407 *''[[Agave datylio]]''
19408 *''[[Agave davilloni]]''
19409 *''[[Agave de-meesteriana]]''
19410 *''[[Agave dealbata]]''
19411 *''[[Agave deamiana]]''
19412 *''[[Agave debilis]]''
19413 *''[[Agave decaisneana]]''
19414 *''[[Agave decipiens]]'' Baker &amp;ndash; False Sisal
19415 *''[[Agave delamateri]]'' W.C. Hodgson &amp; L. Slauson
19416 *''[[Agave densiflora]]''
19417 *''[[Agave dentiens]]''
19418 *''[[Agave deserti]]'' Engelm. &amp;ndash; Desert Century Plant, Desert Agave, Maguey de Desierto
19419 **''Agave deserti'' ssp. ''simplex''
19420 *''[[Agave desmettiana]]'' Jacobi &amp;ndash; Dwarf Century Plant, Smooth Agave (syn. ''A. miradorensis'')
19421 *''[[Agave diacantha]]''
19422 *''[[Agave difformis]]''
19423 *''[[Agave disceptata]]''
19424 *''[[Agave disjuncta]]''
19425 *''[[Agave dissimulans]]''
19426 *''[[Agave donnell-smithii]]''
19427 *''[[Agave durangensis]]''
19428 *''[[Agave dussiana]]''
19429 *''[[Agave eborispina]]''
19430 *''[[Agave eduardi]]''
19431 *''[[Agave eggersiana]]'' Trel. &amp;ndash; Eggers' Century Plant, St. Croix Agave
19432 *''[[Agave ehrenbergii]]''
19433 *''[[Agave eichlami]]''
19434 *''[[Agave ekmani]]''
19435 *''[[Agave elizae]]''
19436 *''[[Agave ellemeetiana]]''
19437 *''[[Agave endlichiana]]''
19438 *''[[Agave engelmanni]]''
19439 *''[[Agave entea]]''
19440 *''[[Agave erosa]]''
19441 *''[[Agave evadens]]''
19442 *''[[Agave excelsa]]''
19443 *''[[Agave expatriata]]''
19444 *''[[Agave falcata]]''
19445 **''Agave falcata'' var. ''espadina''
19446 **''Agave falcata'' var. ''microcarpa''
19447 *''[[Agave felgeri]]'' &amp;ndash; Mescalito
19448 *''[[Agave felina]]''
19449 *''[[Agave fenzliana]]''
19450 *''[[Agave ferdinandi-regis]]''
19451 *''[[Agave filifera]]'' &amp;ndash; Thread-leaf Agave
19452 **''Agave filifera'' subsp. ''microceps''
19453 *''[[Agave flaccida]]''
19454 *''[[Agave flaccifolia]]''
19455 *''[[Agave flavovirens]]''
19456 *''[[Agave flexispina]]''
19457 *''[[Agave fortiflora]]''
19458 *''[[Agave fourcroydes]]'' Lemaire &amp;ndash; Henequen, Maguey Henequen, Mexican Sisal (supplies henequen fiber)
19459 **''Agave fourcroydes var. espiculata''
19460 *''[[Agave fragrantissima]]''
19461 *''[[Agave franceschiana]]''
19462 *''[[Agave franzosini]]''
19463 *''[[Agave friderici]]''
19464 *''[[Agave funifera]]''
19465 *''[[Agave funkiana]]'' &amp;ndash; Ixtle de Jaumave (syn. ''Agave lophanta'')
19466 *''[[Agave galeottei]]''
19467 *''[[Agave garciae-mendozae]]''
19468 *''[[Agave geminiflora]]''
19469 **''Agave geminiflora'' var. ''filifera''
19470 *''[[Agave gentryi]]''
19471 *''[[Agave ghiesbrechtii]]''
19472 *''[[Agave glabra]]''
19473 *''[[Agave glaucescens]]''
19474 *''[[Agave goeppertiana]]''
19475 *''[[Agave glomeruliflora]]'' (Engelm.) Berger &amp;ndash; Chisos Mountain Century Plant, Maguey del Bravo
19476 *''[[Agave gracilipes]]'' Trel. &amp;ndash; Maguey de pastizal, Slimfoot Century Plant
19477 *''[[Agave gracilis]]''
19478 *''[[Agave grandibracteata]]''
19479 *''[[Agave granulosa]]''
19480 *''[[Agave grenadina]]''
19481 *''[[Agave grijalvensis]]''
19482 *''[[Agave grisea]]''
19483 *''[[Agave guadalajarana]]'' &amp;ndash; Maguey chato
19484 *''[[Agave guatemalensis]]''
19485 *''[[Agave guedeneyri]]''
19486 *''[[Agave guiengola]]''
19487 *''[[Agave gutierreziana]]''
19488 *''[[Agave guttata]]''
19489 *''[[Agave gypsophila]]''
19490 *''[[Agave hanburii]]''
19491 *''[[Agave harrisii]]''
19492 *''[[Agave hartmani]]''
19493 *''[[Agave haseloffii]]''
19494 *''[[Agave hauniensis]]''
19495 *''[[Agave havardiana]]'' Trel. &amp;ndash; Havard's Century Plant, Chisos Agave, Maguey de Havard
19496 *''[[Agave haynaldi]]''
19497 *''[[Agave henriquesii]]''
19498 *''[[Agave hexapetala]]''
19499 *''[[Agave hiemiflora]]''
19500 *''[[Agave hookeri]]''
19501 *''[[Agave horizontalis]]''
19502 *''[[Agave horrida]]''
19503 *''[[Agave houghii]]''
19504 *''[[Agave huachucaensis]]''
19505 *''[[Agave huehueteca]]''
19506 *''[[Agave humboldtiana]]''
19507 *''[[Agave hurteri]]''
19508 *''[[Agave impressa]]''
19509 *''[[Agave inaequidens]]''
19510 *''[[Agave inaguensis]]''
19511 *''[[Agave indagatorum]]''
19512 *''[[Agave ingens]]''
19513 *''[[Agave inopinabilis]]''
19514 *''[[Agave integrifolia]]''
19515 *''[[Agave intermixta]]''
19516 *''[[Agave intrepida]]''
19517 *''[[Agave isthmensis]]''
19518 *''[[Agave jaiboli]]''
19519 *''[[Agave jarucoensis]]''
19520 *''[[Agave karatto]]''
19521 *''[[Agave kellermaniana]]''
19522 *''[[Agave kerchovei]]''
19523 *''[[Agave kewensis]]''
19524 *''[[Agave kirchneriana]]''
19525 *''[[Agave lagunae]]''
19526 *''[[Agave langlassei]]''
19527 *''[[Agave laticincta]]''
19528 *''[[Agave latifolia]]''
19529 *''[[Agave laurentiana]]''
19530 *''[[Agave laxa]]''
19531 *''[[Agave laxifolia]]''
19532 *''[[Agave lecheguilla]]'' Torr. &amp;ndash; Agave lechuguilla, Lecheguilla, Lechuguilla, Maguey lechuguilla (syn. ''Agave heteracantha'')
19533 *''[[Agave lemairei]]''
19534 *''[[Agave lempana]]''
19535 *''[[Agave lespinassei]]''
19536 *''[[Agave lindleyi]]''
19537 *''[[Agave littaeaoides]]''
19538 *''[[Agave longipes]]''
19539 *''[[Agave longisepala]]''
19540 *''[[Agave lophantha]]'' Schiede &amp;ndash; Maguey mezortillo, Thorncrest Century Plant
19541 *''[[Agave lurida]]''
19542 *''[[Agave macrantha]]''
19543 *''[[Agave macroculmis]]'' (= ''Agave gentryi'') &amp;ndash; Hardy Century Plant
19544 *''[[Agave maculata]]''
19545 *''[[Agave madagascariensis]]''
19546 *''[[Agave mapisaga]]''
19547 *''[[Agave margaritae]]''
19548 *''[[Agave marmorata]]''
19549 *''[[Agave martiana]]''
19550 *''[[Agave maximiliana]]''
19551 *''[[Agave maximowicziana]]''
19552 *''[[Agave mayoensis]]''
19553 *''[[Agave mckelveyana]]'' Gentry &amp;ndash; Mckelvey Agave, McKelvey's Century Plant
19554 *''[[Agave medioxima]]''
19555 *''[[Agave megalacantha]]''
19556 *''[[Agave melanacantha]]''
19557 *''[[Agave melliflua]]''
19558 *''[[Agave mexicana]]''
19559 *''[[Agave micracantha]]''
19560 *''[[Agave millspaughii]]''
19561 *''[[Agave minarum]]''
19562 *''[[Agave mirabilis]]''
19563 *''[[Agave missionum]]'' Trel. &amp;ndash; Corita
19564 *''[[Agave mitis]]''
19565 *''[[Agave monostachya]]''
19566 *''[[Agave montana]]''
19567 *''[[Agave montserratensis]]''
19568 *''[[Agave moranii]]''
19569 *''[[Agave morrisii]]''
19570 *''[[Agave muilmanni]]''
19571 *''[[Agave mulfordiana]]''
19572 *''[[Agave multifilifera]]''
19573 *''[[Agave multiflora]]''
19574 *''[[Agave multilineata]]''
19575 *''[[Agave murpheyi]]'' F. Gibson &amp;ndash; Maguey Bandeado, Murphey Agave, Murphey's Century Plant, Hohokam Agave
19576 *''[[Agave nashii]]''
19577 *''[[Agave nayaritensis]]''
19578 *''[[Agave neglecta]]'' Small &amp;ndash; Wild Century Plant
19579 *''[[Agave nelsoni]]''
19580 *''[[Agave nevadensis]]''
19581 *''[[Agave nevidis]]''
19582 *''[[Agave newberyi]]''
19583 *''[[Agave nickelsi]]''
19584 *''[[Agave nissoni]]''
19585 *''[[Agave nizandensis]]'' &amp;ndash; Dwarf Octopus Agave
19586 *''[[Agave noli-tangere]]''
19587 *''[[Agave obducta]]''
19588 *''[[Agave oblongata]]''
19589 *''[[Agave obscura]]''
19590 *''[[Agave ocahui]]''
19591 **''Agave ocahui'' var. ''longifolia''
19592 *''[[Agave offoyana]]''
19593 *''[[Agave oligophylla]]''
19594 *''[[Agave oliverana]]''
19595 *''[[Agave opacidens]]''
19596 *''[[Agave orcuttiana]]''
19597 *''[[Agave ornithobroma]]'' &amp;ndash; Maguey pajarito
19598 *''[[Agave oroensis]]''
19599 *''[[Agave ovatifolia]]''
19600 *''[[Agave oweni]]''
19601 *''[[Agave pachyacantha]]''
19602 *''[[Agave pachycentra]]''
19603 *''[[Agave pacifica]]''
19604 *''[[Agave pallida]]''
19605 *''[[Agave palmaris]]''
19606 *''[[Agave palmeri]]'' Engelm. &amp;ndash; Maguey de tlalcoyote, Palmer Agave, Palmer Century Plant, Palmer's Century Plant
19607 *''[[Agave pampaniniana]]''
19608 *''[[Agave panamana]]''
19609 *''[[Agave papyriocarpa]]''
19610 *''[[Agave parryi]]'' Engelm. &amp;ndash; Mezcal yapavai, Parry Agave, Parry's Agave
19611 **''Agave parryi'' var. ''truncata''
19612 *''[[Agave parvidentata]]''
19613 *''[[Agave parviflora]]'' Torr. &amp;ndash; Maguey sbari, Smallflower Agave, Smallflower Century Plant, Little Princess Agave
19614 **''Agave parviflora'' subsp. ''flexiflora''
19615 *''[[Agave patonii]]''
19616 *''[[Agave paucifolia]]''
19617 *''[[Agave paupera]]''
19618 *''[[Agave pavoliniana]]''
19619 *''[[Agave peacockii]]''
19620 *''[[Agave pedrosana]]''
19621 *''[[Agave pedunculifera]]''
19622 *''[[Agave pelona]]'' &amp;ndash; Bald Agave
19623 *''[[Agave perplexans]]''
19624 *''[[Agave pes-mulae]]''
19625 *''[[Agave petiolata]]''
19626 *''[[Agave petrophila]]''
19627 *''[[Agave phillipsiana]]''
19628 *''[[Agave picta]]''
19629 *''[[Agave planera]]''
19630 *''[[Agave polianthiflora]]''
19631 *''[[Agave polianthoides]]''
19632 *''[[Agave portoricensis]]'' Trel. &amp;ndash; Puerto Rico Century Plant
19633 *''[[Agave potatorum]]'' &amp;ndash; Drunkard Agave[[Image:agave.potatorum.kewgardens.london.arp.jpg|thumb|right|250px|Agave potatorum at Kew Gardens, London, England]]
19634 *''[[Agave potosina]]''
19635 *''[[Agave potrerana]]''
19636 *''[[Agave prainiana]]''
19637 *''[[Agave promontorii]]''
19638 *''[[Agave prostrata]]''
19639 *''[[Agave protuberans]]''
19640 *''[[Agave pruinosa]]''
19641 *''[[Agave pseudotequilana]]''
19642 *''[[Agave pugioniformis]]''
19643 *''[[Agave pulcherrima]]''
19644 *''[[Agave pulchra]]''
19645 *''[[Agave pumila]]''
19646 *''[[Agave punctata]]''
19647 *''[[Agave purpurea]]''
19648 *''[[Agave purpusorum]]''
19649 *''[[Agave pygmae]]''
19650 *''[[Agave quadrata]]''
19651 *''[[Agave quiotifera]]''
19652 *''[[Agave ragusae]]''
19653 *''[[Agave rasconensis]]''
19654 *''[[Agave regia]]''
19655 *''[[Agave revoluta]]''
19656 *''[[Agave rhodacantha]]''
19657 *''[[Agave rigida]]''
19658 *''[[Agave roezliana]]''
19659 *''[[Agave rudis]]''
19660 *''[[Agave rupicola]]''
19661 **''Agave rupicola'' var. ''brevifolia''
19662 **''Agave rupicola'' var. ''longifolia''
19663 **''Agave rupicola'' var. ''rubridentata''
19664 *''[[Agave rutteniae]]''
19665 *''[[Agave rzedowskiana]]''
19666 *''[[Agave salmdyckii]]''
19667 *''[[Agave salmiana]]'' &amp;ndash; Pulque, Maguey, Maguey de montaÃąa (syn. ''Agave atrovirens'')
19668 **''Agave salmiana'' var. ''angustifolia''
19669 **''Agave salmiana'' var. ''cochlearis''
19670 *''[[Agave samalana]]''
19671 *''[[Agave sartorii]]''
19672 *''[[Agave scaphoidea]]''
19673 *''[[Agave scaposa]]''
19674 *''[[Agave scheuermaniana]]''
19675 *''[[Agave schildigera]]''
19676 *''[[Agave schneideriana]]''
19677 *''[[Agave schottii]]'' Engelm. &amp;ndash; Maguey puercoesp n, Schott Agave, Schott's Century Plant, Shindagger, Leather Agave
19678 **''Agave schottii'' var. ''serrulata''
19679 *''[[Agave scolymus]]''
19680 **''Agave scolymus'' var. ''polymorpha''
19681 *''[[Agave sebastiana]]''
19682 *''[[Agave seemanniana]]''
19683 **''Agave seemanniana'' var. ''perscabra''
19684 *''[[Agave serrulata]]''
19685 *''[[Agave sessiliflora]]''
19686 *''[[Agave shaferi]]''
19687 *''[[Agave shawii]]'' Engelm. &amp;ndash; Coastal Agave, Maguey primavera
19688 *''[[Agave shrevei]]''
19689 **''Agave shrevei'' ssp. ''magna''
19690 **''Agave shrevei'' ssp. ''matapensis''
19691 *''[[Agave sicaefolia]]''
19692 *''[[Agave simoni]]''
19693 *''[[Agave sisalana]]'' Perrine &amp;ndash; Maguey de Sisal, Sisal, Sisal Hemp (syn. ''Furcraea sisaliana'')
19694 *''[[Agave sleviniana]]''
19695 *''[[Agave smithiana]]''
19696 *''[[Agave sobolifera]]''
19697 **''Agave sobolifera'' f. ''spinidentata''
19698 *''[[Agave sobria]]''
19699 **''Agave sobria'' ssp. ''frailensis''
19700 *''[[Agave sordida]]''
19701 *''[[Agave striata]]''
19702 **''Agave striata'' var. ''mesae''
19703 *''[[Agave stricta]]''
19704 *''[[Agave stringens]]''
19705 *''[[Agave subinermis]]''
19706 *''[[Agave subsimplex]]''
19707 *''[[Agave subtilis]]''
19708 *''[[Agave subzonata]]''
19709 *''[[Agave sullivani]]''
19710 *''[[Agave tecta]]''
19711 *''[[Agave tenuifolia]]''
19712 *''[[Agave tenuispina]]''
19713 *''[[Agave teopiscana]]''
19714 *''[[Agave tequilana]]'' A. Weber &amp;ndash; Mezcal azul tequilero, Tequila Agave, Weber Blue Agave (gives [[tequila]])
19715 *''[[Agave terraccianoi]]''
19716 *''[[Agave theometel]]''
19717 *''[[Agave thomasae]]''
19718 *''[[Agave thomsoniana]]''
19719 *''[[Agave tigrina]]''
19720 *''[[Agave titanota]]''
19721 *''[[Agave todaroi]]''
19722 *''[[Agave toneliana]]''
19723 *''[[Agave tortispina]]''
19724 *''[[Agave toumeyana]]'' Trel. &amp;ndash; Toumey Agave, Toumey's Century Plant
19725 **''Agave toumeyana'' var. ''bella''
19726 *''[[Agave trankeera]]''
19727 *''[[Agave troubetskoyana]]''
19728 *''[[Agave tubulata]]''
19729 **''Agave tubulata'' ssp. ''brevituba''
19730 *''[[Agave underwoodii]]''
19731 *''[[Agave unguiculata]]''
19732 *''[[Agave utahensis]]'' Engelm. &amp;ndash; Utah Agave
19733 **''Agave utahensis'' var. ''discreta''
19734 *''[[Agave van-grolae]]''
19735 *''[[Agave vandervinneni]]''
19736 *''[[Agave ventum-versa]]''
19737 *''[[Agave vernae]]''
19738 *''[[Agave verschaffeltii]]''
19739 *''[[Agave vestita]]''
19740 *''[[Agave vicina]]''
19741 *''[[Agave victoriae-reginae]]'' &amp;ndash; Queen Victoria's Agave
19742 **''Agave victoriae-reginae'' f. ''dentata''
19743 **''Agave victoriae-reginae'' f. ''latifolia''
19744 **''Agave victoriae-reginae'' f. ''longifolia''
19745 **''Agave victoriae-reginae'' f. ''longispina''
19746 **''Agave victoriae-reginae'' f. ''ornata''
19747 **''Agave victoriae-reginae'' f. ''stolonifera''
19748 **''Agave victoriae-reginae'' f. ''viridis''
19749 **''Agave victoriae-reginae'' ssp. ''swobodae''
19750 *''[[Agave vilmoriniana]]'' Berger &amp;ndash; Octopus Agave
19751 *''[[Agave viridissima]]''
19752 *''[[Agave vivipara]]''
19753 **''Agave vivipara'' var. ''cabaiensis''
19754 **''Agave vivipara'' var. ''cuebensis''
19755 *''[[Agave vizcainoensis]]''
19756 *''[[Agave wallisii]]''
19757 *''[[Agave warelliana]]''
19758 *''[[Agave washingtonensis]]''
19759 *''[[Agave watsoni]]''
19760 *''[[Agave weberi]]'' Cels ex Poisson &amp;ndash; Maguey liso, Weber's Century Plant, Weber Agave
19761 *''[[Agave weingartii]]''
19762 *''[[Agave wendtii]]''
19763 *''[[Agave wercklei]]''
19764 *''[[Agave wiesenbergensis]]''
19765 *''[[Agave wightii]]''
19766 *''[[Agave wildingii]]''
19767 *''[[Agave winteriana]]''
19768 *''[[Agave wislizeni]]'' [[Image:Agave parrasana.jpg|thumb|''Agave parrasana'' synonym ''Agave wislizeni'']]
19769 *''[[Agave wocomahi]]''
19770 *''[[Agave woodrowi]]''
19771 *''[[Agave wrightii]]''
19772 *''[[Agave xylonacantha]]'' Salm-Dyck &amp;ndash; Century Plant, Maguey diente de tiburn
19773 *''[[Agave yaquiana]]''
19774 *''[[Agave yuccaefolia]]''
19775 **''Agave yuccifolia'' var. ''caespitosa''
19776 *''[[Agave zapupe]]''
19777 *''[[Agave zebra]]''
19778 *''[[Agave zonata]]''
19779 *''[[Agave zuccarinii]]''
19780
19781 ==References==
19782 * [[Howard Scott Gentry]], ''Agaves of Continental North America'' (University of Arizona Press, 1982), the standard work, with accounts of 136 species
19783 *[http://www.ipni.org/index.html IPNI : The International Plant Name Index]
19784
19785 ==External links==
19786 * [http://www.desert-tropicals.com/Plants/Agavaceae/Agave.html Desert Tropicals ''Agave'' list]
19787 * [http://www.shakeoffthesugar.net/article1042.html Agave Nectar or Syrup]
19788 * [http://www.henriettesherbal.com/eclectic/kings/agave-virg.html Agave virginica (False Aloe)] King's American Dispensatory @ Henriette's Herbal
19789 *[http://bodd.cf.ac.uk/BotDermFolder/BotDermA/AGAV.html Botanical Dermatology Database] Information on agave contact dermatitis
19790
19791 [[Category:Agavaceae]]
19792 [[Category:Poisonous_plants]]
19793 [[Category:Dermatology]]
19794
19795 [[da:Agave]]
19796 [[de:Agaven]]
19797 [[es:Agave (planta)]]
19798 [[fr:Agave]]
19799 [[it:Agave (botanica)]]
19800 [[la:Agave (planta)]]
19801 [[nl:Agave]]
19802 [[ja:ãƒĒãƒĨã‚Ļã‚ŧツナãƒŗ]]
19803 [[pl:Agawa]]
19804 [[fi:Agaavet]]
19805 [[zh:龍舌蘭草]]</text>
19806 </revision>
19807 </page>
19808 <page>
19809 <title>Amaltheia</title>
19810 <id>686</id>
19811 <revision>
19812 <id>15899212</id>
19813 <timestamp>2004-12-06T00:57:24Z</timestamp>
19814 <contributor>
19815 <username>Wetman</username>
19816 <id>21492</id>
19817 </contributor>
19818 <comment>eliminating secondary redirect</comment>
19819 <text xml:space="preserve">#REDIRECT [[Amalthea (mythology)]]</text>
19820 </revision>
19821 </page>
19822 <page>
19823 <title>Analysis of Variance</title>
19824 <id>687</id>
19825 <revision>
19826 <id>15899213</id>
19827 <timestamp>2002-02-25T15:51:15Z</timestamp>
19828 <contributor>
19829 <ip>Conversion script</ip>
19830 </contributor>
19831 <minor />
19832 <comment>Automated conversion</comment>
19833 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]
19834 </text>
19835 </revision>
19836 </page>
19837 <page>
19838 <title>Asia</title>
19839 <id>689</id>
19840 <revision>
19841 <id>42122541</id>
19842 <timestamp>2006-03-03T23:42:05Z</timestamp>
19843 <contributor>
19844 <username>Jaxl</username>
19845 <id>309415</id>
19846 </contributor>
19847 <minor />
19848 <comment>Reverted edits by [[Special:Contributions/72.137.245.207|72.137.245.207]] ([[User talk:72.137.245.207|talk]]) to last version by Dcsohl</comment>
19849 <text xml:space="preserve">{{cleanup-date|February 2006}}
19850
19851 {{otheruses}}
19852 {{seealso|Asian|Eurasian}}
19853 '''Asia''' is the largest and most populous region or [[continent]] depending on the definition. It is traditionally defined as part of the [[landmass]] of [[Africa]]-[[Eurasia]] lying east of the [[Suez Canal]], east of the [[Ural Mountains]], and south of the [[Caucasus Mountains]] and the [[Caspian Sea|Caspian]] and [[Black Sea]]s. About 60% of the world's [[human population]] lives in Asia, of whom only 2% live in the northern and interior half ([[Siberia]], [[Mongolia]], [[Kazakhstan]], [[Xinjiang]], [[Tibet]], [[Qinghai]], western [[Uzbekistan]] and [[Turkmenistan]]); the other 98% live in the remaining half.
19854 [[Image:LocationAsia.png|thumb|250px|World map showing Asia.]]
19855 ==Etymology==
19856 The word ''Asia'' entered English, via [[Latin]], from [[Ancient Greek]] ΑĪƒÎ¯Îą (''Asia''; see also [[List of traditional Greek place names]]). This name is first attested in [[Herodotus]] (c. 440 BC), where it refers to [[Asia Minor]]; or, for the purposes of describing the [[Persian Wars]], to the [[Persian Empire]], as opposed to [[Greece]] and [[Egypt]]. Herodotus comments that he is puzzled as to why three different women's names are used to describe a single land-mass ([[Europa]], Asia and [[Libya]], referring to Africa) stating that most Greeks assumed that Asia was named after the wife of [[Prometheus]] but that the [[Lydians]] say it was named after [[Asias]], son of [[Cotys]] who passed the name on to a tribe in [[Sardis]].
19857
19858 Even before Herodotus, [[Homer]] knew of a [[Troy|Trojan]] ally named [[Asios Hyrtakides|Asios]], son of [[Hyrtacus]], a ruler over several towns, and elsewhere he describes a marsh as ÎąĪƒÎšÎŋĪ‚ (Iliad 2, 461). The Greek term may be derived from [[Assuwa]], a [[14th century BC]] confederation of states in Western Anatolia. [[Hittite language|Hittite]] ''assu-'' &quot;good&quot; is probably an element in that name.
19859
19860 Alternatively, the ultimate etymology of the term may be from the [[Akkadian language|Akkadian]] word ''(w)aášŖÃģ(m)'', cognate of Hebrew י×Ļא, which means &quot;to go out&quot; or &quot;to ascend&quot;, referring to the direction of the [[sun]] at sunrise in the [[Middle East]], and also likely connected with the Phoenician word ''asa'' meaning east. This may be contrasted to a similar etymology proposed for ''Europe'', as being from [[Semitic languages|Semitic]] ''erēbu'' &quot;to enter&quot; or &quot;set&quot; (of the sun). However, an originally Mesopotamian or Middle Eastern perspective would not explain how the term &quot;Asia&quot; first came to be associated with Anatolia as lying ''west'' of the Semitic speaking area.
19861
19862 ==Definition and Boundaries==
19863 [[Image:Asia-map.png|right|thumb|280px|Political map of Asia]]
19864 Medieval Europeans considered Asia as a continent, a distinct landmass. The European concept of the three continents in the [[Old World]] goes back to [[classical antiquity]] with the [[etymology]] of the word rooted in the ancient [[Near East|Near]] and [[Middle East]]. The demarcation between Asia and [[Africa]] is the [[Isthmus]] of [[Suez Canal|Suez]] and the [[Red Sea]]. The boundary between Asia and [[Europe]] is commonly believed to run through the [[Dardanelles]], the [[Sea of Marmara]], the [[Bosporus]], the Black Sea, the Caucasus Mountains, the Caspian Sea, the [[Ural River]] to its source, and the Ural Mountains to the [[Kara Sea]] near Kara, [[Russia]]. However, modern discovery of the extent of Africa and Asia made this definition rather anachronistic, especially in the case of Asia, which would have several regions that would be considered distinct landmasses if these criteria were used (for example, South Asia and East Asia).
19865
19866 Geologists and physical geographers no longer consider Asia and Europe to be separate continents. It is either defined in terms of geological landmasses (physical geography) or tectonic plates (geology). In the former case, Europe is a western peninsula of [[Eurasia]] or the Africa-Eurasia landmass. In the latter, Europe and Asia are still part of the Eurasian plate, which excludes the Arabian and Indian tectonic plates.
19867
19868 In human geography, there are two schools of thought. One school follows historical convention and treats Europe and Asia as different continents, categorizing Europe, East Asia (the Orient), South Asia (British India), and the Middle East (Arabia and Persia) as specific regions for more detailed analysis. The other schools equate the word &quot;continent&quot; in terms of geographical region when referring to Europe, and use the term &quot;region&quot; to describe Asia in terms of physical geography. Because in linguistic terms, &quot;continent&quot; implies a distinct landmass, it is becoming increasingly common to substitute the term &quot;region&quot; for &quot;continent&quot; to avoid the problem of disambiguation altogether.
19869
19870 There is much confusion in European languages with the term &quot;Asian&quot;. Because a category implies homogenity, the term &quot;Asian&quot; almost always refers to a subcategory of people from Asia rather than referring to &quot;Asian&quot; defined in term of &quot;Asia&quot;. The fact that in American English, Asian refers to East Asian (Orientals), while in British English, Asian refers to South Asian reflects this confusion. Sometimes, it is not even clear exactly what &quot;Asia&quot; consists of. Some definitions exclude [[Turkey]], the Middle East, and/or Russia. The term is sometimes used more strictly in reference to [[Asia Pacific]], which does not include the Middle East or Russia, but does include islands in the [[Pacific Ocean]] &amp;mdash; a number of which may also be considered part of [[Australasia]] and/or [[Oceania]]. Asia contains the [[Indian subcontinent]], Arabian subcontinent, as well as a piece of the North American plate in Siberia.
19871 {{further|[[Transcontinental nation#Countries in both Asia and Europe]]}}
19872 {{seealso|Copenhagen criteria#Geographic_criteria for the definition of Europe}}
19873 {{seealso|Orientalism}}
19874
19875 ==Geographical regions==
19876 {{seealso|Geography of Asia}}
19877 [[Image:Asia satellite orthographic.jpg|thumb|280px|Satellite view of Asia]]
19878 As already mentioned, Asia is a subregion of [[Eurasia]]. For further subdivisions based on that term, see [[North Eurasia]] and [[Central Eurasia]].
19879
19880 Some Asian countries stretch beyond Asia. See [[Bicontinental country]] for details about the borderline cases between Asia and Europe, Asia and Africa, and Asia and Oceania.
19881
19882 The following subregions of Asia are traditionally recognized:
19883 *[[Central Asia]]
19884 *[[East Asia]]
19885 *[[Far East]]
19886 *[[North Asia]]
19887 *[[South Asia]] (or Indian Subcontinent)
19888 *[[Southeast Asia]]
19889 *[[Southwest Asia]] (or Middle East or West Asia)
19890
19891 ===Central Asia===
19892 There is no absolute consensus in the usage of this term. Usually, Central Asia includes:
19893 * the [[Central Asian Republics]] of [[Kazakhstan]] (excluding its small [[Bicontinental country#Countries in both Asia and Europe|European]] territory), [[Uzbekistan]], [[Tajikistan]], [[Turkmenistan]] and [[Kyrgyzstan]].
19894 * [[Afghanistan]], [[Mongolia]], and the western regions of [[China]] are also sometimes included.
19895 * Former [[Soviet]] states in the [[Caucasus]] region.
19896
19897 Central Asia is currently geopolitically important because international disputes and conflicts over [[oil pipeline|oil pipelines]], [[Nagorno-Karabakh]], and [[Chechnya]], as well as the presence of [[U.S. military]] and [[Military of the UK|U.K. military]] forces in [[Afghanistan]].
19898
19899 ===East Asia ===
19900 This area includes:
19901 * The [[Pacific Ocean]] island countries of [[Taiwan]] and [[Japan]]. {{further|[[Political status of Taiwan]]}}
19902 * [[North Korea|North]] and [[South Korea]] on the [[Korean Peninsula]].
19903 * [[China]], but sometimes only the eastern regions
19904
19905 Sometimes the nations of [[Mongolia]] and [[Vietnam]] are also included in East Asia.
19906
19907 More informally, [[Southeast Asia]] is included in East Asia on some occasions.
19908
19909 ===North Asia===
19910 This term is rarely used by geographers, but usually it refers to the bigger Asian part of Russia, also known as [[Siberia]]. Sometimes the northern parts of other Asian nations, such as [[Kazakhstan]] are also included in Northern Asia.
19911
19912 ===South Asia (or Indian Subcontinent)===
19913 South Asia is also referred to as the [[Indian Subcontinent]]. It includes:
19914 * The [[Himalayan States]] of [[India]], [[Pakistan]], [[Nepal]], [[Bhutan]] and [[Bangladesh]].
19915 * The [[Indian Ocean]] nations of [[Sri Lanka]] and the [[Maldives]]. India's [[Andaman]], [[Nicobar]] and [[Lakshadweep]] islands also lie in the Indian Ocean.
19916 * The [[peninsular India]] (also known as the [[Deccan Plateau]])
19917 * Sometimes Afghanistan is also included into this category.
19918
19919 ===Southeast Asia===
19920 This region contains the [[Malay Peninsula]], [[Indochina]] and islands in the [[Indian Ocean]] and [[Pacific Ocean]]. The countries it contains are:
19921
19922 * In [[Indochina|mainland Southeast Asia]], the countries [[Myanmar]], [[Thailand]], [[Laos]], [[Cambodia]] and [[Vietnam]].
19923
19924 * In [[Maritime Southeast Asia]], the countries of [[Malaysia]], [[Brunei]], the [[Philippines]], [[Singapore]] and [[Indonesia]] ([[Bicontinental country#Countries in both Asia and Oceania|some]] of the Indonesian islands also lie in the [[Melanesia]] region of [[Oceania]]). [[East Timor]] (also [[Melanesia]]n) is sometimes included too.
19925
19926 The country of [[Malaysia]] is divided in two by the [[South China Sea]], and thus has both a mainland and island part.
19927
19928 ===Southwest Asia (or Middle East, Near East or West Asia)===
19929 This can also be called by the Western term ''[[Middle East]]'', which is commonly used by Europeans and Americans. ''Middle East'' (to some interpretations) is often used to also refer to some countries in [[North Africa]]. Southwest Asia can be further divided into:
19930
19931 * [[Anatolia]] (i.e. [[Asia Minor]]), constituting the [[Asian]] [[Bicontinental country#Countries in both Asia and Europe|part of]] Turkey.
19932 * The [[island nation]] of [[Cyprus]] in the [[Mediterranean Sea]].
19933 * The [[Levant]] or [[Near East]], which includes [[Syria]], [[Israel]], [[Jordan]], [[Lebanon]], [[Iraq]] and the Asian [[Bicontinental country#Countries in both Asia and Africa|portion]] of [[Egypt]].
19934 * The [[Arabian peninsula]], including [[Saudi Arabia]], [[United Arab Emirates]], [[Bahrain]], [[Qatar]], [[Oman]], [[Yemen]] and [[Kuwait]].
19935 * The [[Caucasus]] region (which straddles both Asia and [[Europe]]), namely [[Transcaucasia]], including a small portion of Russia and, arguably, most if not all of [[Georgia (country)|Georgia]], [[Armenia]], and [[Azerbaijan]].
19936 * The [[Iranian Plateau]], containing [[Iran]] and parts of other neighbouring nations.
19937
19938 {{seealso|Gulf States}}
19939
19940 ==Economy==
19941 {| class=&quot;wikitable&quot; style=&quot;width:300px;&quot; align=&quot;right&quot;
19942 |+ &lt;big&gt;'''Economy of Asia'''&lt;/big&gt;&lt;br&gt;&lt;small&gt;During 2003 unless otherwise stated&lt;/small&gt;
19943 |-
19944 |Population:
19945 | 4.001 billion (2002)
19946 |-
19947 |[[Gross domestic product|GDP]] ([[List of countries by GDP (PPP)|PPP]]):
19948 |[[US$]]18.077 trillion
19949 |-
19950 |[[Gross domestic product|GDP]] ([[List of countries by GDP|Currency]]):
19951 | $8.782 trillion
19952 |-
19953 |GDP/capita ([[List of countries by GDP (PPP) per capita|PPP]]):
19954 | $4,518
19955 |-
19956 |GDP/capita ([[List of countries by GDP (Nominal) per capita|Currency]]):
19957 | $2,195
19958 |-
19959 |Annual growth of &lt;br&gt; per capita GDP:
19960 |
19961 |-
19962 |Income of top 10%:
19963 |
19964 |-
19965 | [[Millionaires]]:
19966 | 2.0 million (0.05%)
19967 |-
19968 |[[Unemployment]]
19969 |
19970 |-
19971 |Estimated female&lt;br&gt; [[income]]
19972 |
19973 |-
19974 | align=&quot;center&quot; colspan=&quot;2&quot; | &lt;small&gt;Most numbers are from the [[UNDP]] from 2002, some numbers exclude certain countries for lack of information.&lt;/small&gt;
19975 |-
19976 | align=&quot;center&quot; colspan=&quot;2&quot; | {{World economy infobox footer}}
19977 |}
19978 {{main|Economy of Asia}}
19979 In terms of [[gross domestic product]] ([[Purchasing Power Parity|PPP]]), the largest national economy within Asia is that of the [[PRC]] ([[People's Republic of China]]). Over the last decade, China's and [[India]]'s economies have been growing rapidly, both with an average annual growth rate above 7%. PRC is the world's second largest economy after the US, followed by [[Japan]] and [[India]] as the world's third and fourth largest economies respectively (then followed by the European nations: [[Germany]], [[U.K.]], [[France]] and [[Italy]]).
19980
19981 In terms of [[exchange rates]] (nominal GDP) however, Japan has the largest economy in Asia and second largest of any single nation in the world, after surpassing the Soviet Union (measured in [[Net Material Product]]) in 1986 and Germany in 1968. (NB: A number of supernational economies are larger, such as the [[EU]], [[NAFTA]] or [[APEC]]). Economic growth in Asia since [[World War II]] to the 1990's had been concentrated in few countries of the [[Pacific Rim]], and has spread more recently to other regions. In the late 80's and early 90's Japan's economy was almost as large as that of the rest of the continent combined. In 1995, Japan's economy nearly equalled the USA to tie the largest economy in the world for a day, after the Japanese currency reached a record high of 79 [[yen]]. However, since then Japan's currency has corrected and China has grown to be the second largest Asian economy, followed by India in terms of exchange rates. It is expected that China will surpass Japan in currency terms to have the largest nominal GDP in Asia within a decade or two.
19982
19983 Trade blocs:
19984 *[[Asia-Pacific Economic Cooperation]]
19985 *[[Asia-Europe Meeting|Asia-Europe Economic Meeting]]
19986 *[[Association of Southeast Asian Nations]]
19987 *[[Closer Economic Partnership Arrangement]]
19988 *[[Commonwealth of Independent States]]
19989 *[[South Asian Association for Regional Cooperation]]
19990 *[[South Asia Free Trade Agreement (proposed)]]
19991
19992 ===Natural resources===
19993 Asia is by a considerable margin the largest continent in the [[world]], and is rich in natural resources, such as [[Petroleum]] and [[iron]].
19994
19995 High productivity in agriculture, especially of [[rice]], allows high population density of countries in the warm and humid area. Other main agricultural products include [[wheat]] and [[chicken]].
19996
19997 Forestry is extensive throughout Asia except Southwest and Central Asia. [[Fishing]] is a major source of food in Asia, particularly in Japan.
19998
19999 ===Manufacturing===
20000 Manufacturing in Asia has traditionally been strongest in East and Southeast Asia, particularly in [[PRC]], [[Taiwan]], [[Japan]], [[South Korea]] and [[Singapore]]. The industry varies from manufacturing cheap goods such as [[toy]]s to high-tech goods such as [[computer]]s and [[automobile|car]]s. Many companies from [[Europe]], [[North America]], and [[Japan]] have significant operations in the developing Asia to take avantage of its abundant supply of cheap labor.
20001
20002 One of the major employers in manufacturing in Asia is the [[textile]] industry. Much of the world's supply of clothing and footwear now originates in Southeast Asia.
20003
20004 ===Financial and other services===
20005 Asia has three main financial centers. They are in [[Hong Kong]], [[Singapore]] and [[Tokyo]]. Call centers are becoming major employers in [[India]] and the [[Philippines]], due to the availablity of many well-educated English speakers. The rise of the business process [[outsourcing]] industry has seen the rise of India and China as the other financial centers.
20006
20007 ==Early history==
20008 {{main|History of Asia}}
20009 [[Image:Asia 1892 amer ency brit.jpg|thumb|200px|Map of Asia, 1892.]]
20010 The history of Asia can be seen as the distinct histories of several peripheral coastal regions &amp;mdashl [[East Asia]], [[South Asia]], and the [[Middle East]] &amp;mdash; linked by the interior mass of the [[Central Asia]]n [[steppe]].
20011
20012 The coastal periphery was home to some of the world's earliest known civilizations, each of them developing around fertile river valleys. The civilizations in [[Mesopotamia]], the [[Indus Valley]], and the [[Yangtze River|Yangtze]] shared many similarities, and may well have exchanged technologies and ideas such as [[mathematics]] and the wheel. Other innovations, such as that of writing, seem to have been developed individually in each area. Cities, states and empires developed in these lowlands.
20013
20014 The central steppe region had long been inhabited by horse-mounted nomads, and from the steppes they could reach all areas of Asia. The earliest postulated expansion out of the steppe is that of the [[Indo-European]]s, who spread their languages into the Middle East, India, and in the [[Tocharians]], to the borders of China. The northernmost part of Asia, including much of [[Siberia]], was largely inaccessible to the steppe nomads, owing to the dense forests, the climate, and the [[tundra]]. These areas remained very sparsely populated.
20015
20016 The centre and the peripheries were mostly kept separated by mountains and deserts. The [[Caucasus]] and [[Himalaya]] mountains and the [[Karakum Desert|Karakum]] and [[Gobi Desert|Gobi]] deserts formed barriers that the steppe horsemen could cross only with difficulty. While technologically and socially, the urban city dwellers were more advanced, in many cases they could do little militarily to defend against the mounted hordes of the steppe. However, the lowlands did not have enough open grasslands to support a large horsebound force; for this and other reasons, the nomads who conquered states in China, India, and the Middle East often found themselves adapting to the local, more affluent societies.
20017
20018 ==Population density==
20019 The following table lists countries and dependencies by [[population density]] in inhabitants and km&lt;sup&gt;2&lt;/sup&gt;.
20020
20021 Unlike the figures in the country articles, the figures in this table are based on areas including inland water bodies (lakes, reservoirs, rivers) and may therefore be lower here.
20022
20023 The whole of Egypt, Russia, Kazakhstan, Georgia, Azerbaijan and Turkey are referred to in the table, although they may be considered to be only [[Countries in both Europe and Asia|partly in Asia]]. Asia also contains about 60% of the world's population. Leaving the other 40% of the world's population to other continents.
20024
20025 &lt;center&gt;
20026 {| class=&quot;wikitable&quot; style=&quot;text-align:right;&quot;
20027 |- style=&quot;text-align:center;&quot;
20028 ! Country / Region
20029 ! Population Density&lt;br&gt;&lt;small&gt;(/km&lt;sup&gt;2&lt;/sup&gt;)&lt;/small&gt;
20030 ! Area&lt;br&gt;&lt;small&gt;(km&lt;sup&gt;2&lt;/sup&gt;)&lt;/small&gt;
20031 ! Population&lt;br&gt;&lt;small&gt;(2002-07-01 est.)&lt;/small&gt;
20032 |-
20033 | align=&quot;left&quot; | ''{{MacauSAR}}''
20034 | 17,684
20035 | 25
20036 | 461,833
20037 |-
20038 | align=&quot;left&quot; | {{SIN}}
20039 | 6,389
20040 | 693
20041 | 4,452,732
20042 |-
20043 | align=&quot;left&quot; | ''{{HongKongSAR}}''
20044 | 6,317
20045 | 1,092
20046 | 7,303,334
20047 |-
20048 | align=&quot;left&quot; | {{MDV}}
20049 | 1,070
20050 | 300
20051 | 320,165
20052 |-
20053 | align=&quot;left&quot; | {{BAN}}
20054 | 1,002
20055 | 144,000
20056 | 133,376,684
20057 |-
20058 | align=&quot;left&quot; | {{BHR}}
20059 | 987
20060 | 665
20061 | 656,397
20062 |-
20063 | align=&quot;left&quot; | {{ROC-TW}}
20064 | 627
20065 | 35,980
20066 | 22,548,009
20067 |-
20068 | align=&quot;left&quot; | {{SKO}}
20069 | 491
20070 | 98,480
20071 | 48,324,000
20072 |-
20073 | align=&quot;left&quot; | {{LBN}}
20074 | 354
20075 | 10,400
20076 | 3,677,780
20077 |-
20078 | align=&quot;left&quot; | {{JPN}}
20079 | 336
20080 | 377,835
20081 | 126,974,628
20082 |-
20083 | align=&quot;left&quot; | {{IND}}
20084 | 329
20085 | 3,287,590
20086 | 1,045,845,226
20087 |-
20088 | align=&quot;left&quot; | {{LKA}}
20089 | 298
20090 | 65,610
20091 | 19,576,783
20092 |-
20093 | align=&quot;left&quot; | {{ISR}}
20094 | 290
20095 | 20,770
20096 | 6,029,529
20097 |-
20098 | align=&quot;left&quot; | {{PHL}}
20099 | 282
20100 | 300,000
20101 | 84,525,639
20102 |-
20103 | align=&quot;left&quot; | {{VNM}}
20104 | 246
20105 | 329,560
20106 | 81,098,416
20107 |-
20108 | align=&quot;left&quot; | {{NKO}}
20109 | 184
20110 | 120,540
20111 | 22,224,195
20112 |-
20113 | align=&quot;left&quot; | {{NEP}}
20114 | 184
20115 | 140,800
20116 | 25,873,917
20117 |-
20118 | align=&quot;left&quot; | {{PAK}}
20119 | 184
20120 | 803,940
20121 | 147,663,429
20122 |-
20123 | align=&quot;left&quot; | {{PRC-mainland}}
20124 | 134
20125 | 9,596,960
20126 | 1,284,303,705
20127 |-
20128 | align=&quot;left&quot; | {{THA}}
20129 | 121
20130 | 514,000
20131 | 62,354,402
20132 |-
20133 | align=&quot;left&quot; | {{IDN}}
20134 | 121
20135 | 1,919,440
20136 | 231,328,092
20137 |-
20138 | align=&quot;left&quot; | {{KUW}}
20139 | 118
20140 | 17,820
20141 | 2,111,561
20142 |-
20143 | align=&quot;left&quot; | {{ARM}}
20144 | 112
20145 | 29,800
20146 | 3,330,099
20147 |-
20148 | align=&quot;left&quot; | {{SYR}}
20149 | 93
20150 | 185,180
20151 | 17,155,814
20152 |-
20153 | align=&quot;left&quot; | {{AZE}}
20154 | 90
20155 | 86,600
20156 | 7,798,497
20157 |-
20158 | align=&quot;left&quot; | {{TUR}}
20159 | 86
20160 | 780,580
20161 | 67,308,928
20162 |-
20163 | align=&quot;left&quot; | {{CYP}}
20164 | 83
20165 | 9,250
20166 | 775,927
20167 |-
20168 | align=&quot;left&quot; | {{GEO}}
20169 | 71
20170 | 69,700
20171 | 4,960,951
20172 |-
20173 | align=&quot;left&quot; | {{CAM}}
20174 | 71
20175 | 181,040
20176 | 12,775,324
20177 |-
20178 | align=&quot;left&quot; | {{EGY}}
20179 | 71
20180 | 1,001,450
20181 | 70,712,345
20182 |-
20183 | align=&quot;left&quot; | {{QAT}}
20184 | 69
20185 | 11,437
20186 | 793,341
20187 |-
20188 | align=&quot;left&quot; | {{MAS}}
20189 | 69
20190 | 329,750
20191 | 22,662,365
20192 |-
20193 | align=&quot;left&quot; | {{TLS}}
20194 | 63
20195 | 15,007
20196 | 952,618
20197 |-
20198 | align=&quot;left&quot; | {{MMR}}
20199 | 62
20200 | 678,500
20201 | 42,238,224
20202 |-
20203 | align=&quot;left&quot; | {{BRU}}
20204 | 61
20205 | 5,770
20206 | 350,898
20207 |-
20208 | align=&quot;left&quot; | {{JOR}}
20209 | 58
20210 | 92,300
20211 | 5,307,470
20212 |-
20213 | align=&quot;left&quot; | {{UZB}}
20214 | 57
20215 | 447,400
20216 | 25,563,441
20217 |-
20218 | align=&quot;left&quot; | {{IRQ}}
20219 | 55
20220 | 437,072
20221 | 24,001,816
20222 |-
20223 | align=&quot;left&quot; | {{TJK}}
20224 | 47
20225 | 143,100
20226 | 6,719,567
20227 |-
20228 | align=&quot;left&quot; | {{BHU}}
20229 | 45
20230 | 47,000
20231 | 2,094,176
20232 |-
20233 | align=&quot;left&quot; | {{AFG}}
20234 | 43
20235 | 647,500
20236 | 27,755,775
20237 |-
20238 | align=&quot;left&quot; | {{IRN}}
20239 | 40
20240 | 1,648,000
20241 | 66,622,704
20242 |-
20243 | align=&quot;left&quot; | {{YEM}}
20244 | 35
20245 | 527,970
20246 | 18,701,257
20247 |-
20248 | align=&quot;left&quot; | {{ARE}}
20249 | 30
20250 | 82,880
20251 | 2,445,989
20252 |-
20253 | align=&quot;left&quot; | {{LAO}}
20254 | 24
20255 | 236,800
20256 | 5,777,180
20257 |-
20258 | align=&quot;left&quot; | {{KGZ}}
20259 | 24
20260 | 198,500
20261 | 4,822,166
20262 |-
20263 | align=&quot;left&quot; | {{OMN}}
20264 | 13
20265 | 212,460
20266 | 2,713,462
20267 |-
20268 | align=&quot;left&quot; | {{SAU}}
20269 | 12
20270 | 1,960,582
20271 | 23,513,330
20272 |-
20273 | align=&quot;left&quot; | {{TKM}}
20274 | 9.6
20275 | 488,100
20276 | 4,688,963
20277 |-
20278 | align=&quot;left&quot; | {{KAZ}}
20279 | 6.2
20280 | 2,717,300
20281 | 16,741,519
20282 |-
20283 | align=&quot;left&quot; | {{RUS}}
20284 | 3.0
20285 | 13,083,100
20286 | 39,129,729
20287 |-
20288 | align=&quot;left&quot; | {{MNG}}
20289 | 1.7
20290 | 1,565,000
20291 | 2,694,432
20292 |- style=&quot;font-weight:bold;&quot;
20293 | align=&quot;left&quot; | Total
20294 |
20295 | 45,711,848
20296 | 3,895,528,341
20297 |}
20298 &lt;/center&gt;
20299
20300 ==Religion==
20301 A large majority of people in the world who practice a religious faith practice one founded in Asia.
20302
20303 Religions founded in Asia and with a majority of their contemporary adherents in Asia include:
20304
20305 *[[BahÃĄ'í Faith]]: slightly more than half of all adherents are in Asia
20306 *[[Buddhism]]: [[Cambodia]], [[China]], [[Japan]], [[Korea]], [[Laos]], [[Mongolia]], [[Myanmar]], [[Singapore]], [[Sri Lanka]], [[Thailand]], [[Vietnam]], parts of northern, eastern, and western [[India]], and parts of central and eastern [[Russia]] (Siberia).
20307 **[[Mahayana Buddhism]]: China, Japan, Korea, Singapore, Vietnam.
20308 **[[Theravada Buddhism]]: Cambodia, parts of China, Laos, Myanmar, Sri Lanka, Thailand, as well as parts of [[Vietnam]].
20309 **[[Vajrayana Buddhism]]: Parts of China, [[Mongolia]], parts of northern and eastern [[India]], parts of central, eastern [[Russia]] and [[Siberia]].
20310 *[[Hinduism]]: [[India]], [[Nepal]], [[Bangladesh]], [[Sri Lanka]], [[Pakistan]], [[Malaysia]], [[Singapore]], [[Bali]].
20311 *[[Islam]]: [[Central Asia|Central]], [[South Asia|South]], and [[Southwest Asia]], [[Malaysia]], [[Philippines]] [[Brunei]] and [[Indonesia]].
20312 **[[Shia Islam]]: largely to specific [[Iran]], [[Azerbaijan]], parts of [[Iraq]], [[Bahrain]], parts of [[Afghanistan]], parts of [[India]], parts of [[Pakistan]].
20313 **[[Sunni Islam]]: dominant in the rest of the regions mentioned above.
20314 *[[Jainism]]: [[India]]
20315 *[[Qadiani]]: [[Pakistan]], [[Bangladesh]], [[India]].
20316 *[[Shinto]]: [[Japan]]
20317 *[[Sikhism]]: [[India]], [[Malaysia]], [[Hong Kong]]
20318 *[[Daoism]]: [[China]], [[Korea]], [[Vietnam]], [[Singapore]], and [[Taiwan]]
20319 *[[Zoroastrianism]]: [[Iran]], [[India]], [[Pakistan]]
20320 *[[Shamanism]]: [[Siberia]]
20321 *[[Animism]]: Eastern [[India]]
20322
20323 Religions founded in Asia that have the majority of their contemporary adherents in other regions include:
20324
20325 *[[Christianity]] ([[Lebanon]], [[Syria]], [[Palestinian territories|Palestine]], [[Armenia]], [[Georgia (country)|Georgia]], [[South Korea]], [[Singapore]], [[Malaysia]], [[Indonesia]], [[East Timor]], [[Pakistan]], [[India]] and the [[Philippines]])
20326 *[[Judaism]] (slightly fewer than half of its adherents reside in Asia; [[Israel]], [[Iran]], [[India]], [[Syria]].)
20327
20328 ==See also==
20329 {{commons|Asia}}
20330 *[[Assuwa]]
20331 *[[Asia Minor]]
20332 *[[Pan-Asianism]]
20333
20334 ==References==
20335 {{unsourced}}
20336
20337 ==External links==
20338 *http://www.lib.utexas.edu/maps/asia.html
20339 *http://www.freeworldmaps.net/asia/index.html
20340
20341
20342 {{Continent}}
20343 {{Region}}
20344
20345 [[Category:Asia| ]]
20346 [[Category:Continents]]
20347 [[af:AsiÃĢ]]
20348 [[ar:ØĸØŗŲŠØ§]]
20349 [[an:Asia]]
20350 [[ast:Asia]]
20351 [[bg:АСиŅ]]
20352 [[zh-min-nan:A-chiu]]
20353 [[bn:āĻāĻļāĻŋāĻ¯āĻŧāĻž]]
20354 [[bs:Azija]]
20355 [[br:Azia]]
20356 [[ca:Àsia]]
20357 [[ceb:Asya]]
20358 [[cs:Asie]]
20359 [[cy:Asia]]
20360 [[da:Asien]]
20361 [[de:Asien]]
20362 [[et:Aasia]]
20363 [[el:ΑĪƒÎ¯Îą]]
20364 [[es:Asia]]
20365 [[eo:Azio]]
20366 [[eu:Asia]]
20367 [[fa:ØĸØŗیا]]
20368 [[fo:Asia]]
20369 [[fr:Asie]]
20370 [[fy:Aazje]]
20371 [[ga:An Áise]]
20372 [[gl:Asia]]
20373 [[gu:āĒāĒļāĒŋāĒ¯āĒž]]
20374 [[ko:ė•„ė‹œė•„]]
20375 [[ht:Azi]]
20376 [[hi:ā¤ā¤ļā¤ŋā¤¯ā¤ž]]
20377 [[hr:Azija]]
20378 [[io:Azia]]
20379 [[id:Asia]]
20380 [[ia:Asia]]
20381 [[is:Asía]]
20382 [[it:Asia]]
20383 [[he:אסיה]]
20384 [[ka:აზია (áƒĨვეყნის ნაáƒŦილი)]]
20385 [[csb:AzÃĢjô]]
20386 [[kw:Asi]]
20387 [[sw:Asia]]
20388 [[ku:Asya]]
20389 [[la:Asia]]
20390 [[lt:Azija]]
20391 [[lb:Asien]]
20392 [[li:AziÃĢ]]
20393 [[jbo:zdotu'a]]
20394 [[hu:Ázsia]]
20395 [[mk:АСиŅ˜Đ°]]
20396 [[mg:Azia]]
20397 [[ms:Asia]]
20398 [[mo:АŅĐ¸Ņ]]
20399 [[my:အá€Ŧရယဟတိုကယ‌]]
20400 [[nl:AziÃĢ]]
20401 [[nds:Asien]]
20402 [[ja:ã‚ĸジã‚ĸ]]
20403 [[no:Asia]]
20404 [[nn:Asia]]
20405 [[os:АСи]]
20406 [[pl:Azja]]
20407 [[pt:Ásia]]
20408 [[ro:Asia]]
20409 [[ru:АСиŅ]]
20410 [[se:Ásia]]
20411 [[sa:ā¤ā¤ļā¤ŋā¤¯ā¤ž]]
20412 [[simple:Asia]]
20413 [[sk:Ázia]]
20414 [[sl:Azija]]
20415 [[sr:АСиŅ˜Đ°]]
20416 [[su:Asia]]
20417 [[fi:Aasia]]
20418 [[sv:Asien]]
20419 [[tl:Asya]]
20420 [[ta:āŽ†āŽšāŽŋāŽ¯āŽž]]
20421 [[th:ā¸—ā¸§ā¸ĩā¸›āš€ā¸­āš€ā¸Šā¸ĩā¸ĸ]]
20422 [[vi:ChÃĸu Á]]
20423 [[tr:Asya]]
20424 [[uk:АСŅ–Ņ]]
20425 [[war:Asya]]
20426 [[yi:אזי×ĸ]]
20427 [[zh:äēšæ´˛]]</text>
20428 </revision>
20429 </page>
20430 <page>
20431 <title>Aruba</title>
20432 <id>690</id>
20433 <revision>
20434 <id>41860401</id>
20435 <timestamp>2006-03-02T05:03:44Z</timestamp>
20436 <contributor>
20437 <username>Justin Eiler</username>
20438 <id>312798</id>
20439 </contributor>
20440 <comment>rvv</comment>
20441 <text xml:space="preserve">{| style =&quot; &quot;margin-left:&quot; 0.5em;&quot; border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;right&quot; width=&quot;260px&quot;
20442 |+ &lt;font size=&quot;+1&quot;&gt;'''Aruba'''&lt;/font&gt;
20443 |-
20444 | style=&quot;background:#efefef;&quot; align=&quot;center&quot; colspan=2 |
20445 {| border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
20446 |-
20447 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:Flag of Aruba.png|125px|Flag of Aruba]]
20448 | align=&quot;center&quot; width=&quot;140px&quot; | [[Image:Aruba coa.png|100px]]
20449 |-
20450 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Flag of Aruba|In Detail]])
20451 | align=&quot;center&quot; width=&quot;140px&quot; | ([[Coat of Arms of Aruba|In Detail]])
20452 |}
20453 |-
20454 | align=&quot;center&quot; colspan=2 | &lt;font size=&quot;-1&quot;&gt;''National [[motto]]: One Happy Island''&lt;/font&gt;
20455 |-
20456 | align=&quot;center&quot; colspan=2 | [[Image:LocationAruba.png|Location of Aruba]]
20457 |-
20458 | [[Official language]] || [[Dutch language|Dutch]]
20459 |-
20460 | [[Political status]] || Dependent area of the [[Netherlands]]
20461 |-
20462 | [[Capital]] || [[Oranjestad, Aruba|Oranjestad]]
20463 |-
20464 | [[Dutch monarchy|Queen]]
20465 | [[Beatrix of the Netherlands|Beatrix]]
20466 |-
20467 | [[Governor]] || [[Fredis Refunjol]]
20468 |-
20469 | [[Prime Minister of Aruba|Prime Minister]]
20470 | [[Nelson O. Oduber]]
20471 |-
20472 | [[Area]]&lt;br /&gt;&amp;nbsp;- Total &lt;br /&gt;&amp;nbsp;- % water
20473 | (Not ranked)&lt;br /&gt; [[1 E8 m²|180 km&amp;sup2;]] &lt;br /&gt; Negligible
20474 |-
20475 | [[Population]]
20476 &lt;br /&gt;&amp;nbsp;- Total (2004 est.)
20477 &lt;br /&gt;&amp;nbsp;- [[Population density|Density]]
20478 | (Ranked 187)
20479 &lt;br /&gt; 103,000 (2004)
20480 &lt;br /&gt; 363/km&amp;sup2;
20481 |-
20482 | [[Currency]] || [[Aruban florin]]
20483 |-
20484 | [[Time zone]]
20485 | [[Coordinated Universal Time|UTC]] -4
20486 |-
20487 | [[National anthem]] || [[Aruba Dushi Tera]]
20488 |-
20489 | [[Top-level domain|Internet TLD]] || [[.aw]]
20490 |-
20491 | [[List_of_country_calling_codes|Calling Code]]
20492 | +297
20493 |}
20494 '''Aruba''' is an [[island]] in the [[Caribbean Sea]], just a short distance north of the [[Venezuela]]n [[ParaguanÃĄ Peninsula]], and it forms a part of the [[Kingdom of the Netherlands]]. Unlike much of the Caribbean region, it has a dry climate and an arid, cactus-strewn landscape. This climate has helped tourism, however, as visitors to the island can reliably expect warm, sunny weather.
20495
20496 ==History==
20497 :''Main article: [[History of Aruba]]''
20498
20499 Discovered and claimed for [[Spain]] in 1499, Aruba was acquired by the [[Netherlands|Dutch]] in 1636. The island's economy has been dominated by three main industries. A [[19th century|19th-century]] [[gold]] rush was followed by prosperity brought on by the opening in 1924 of an [[Petroleum|oil]] refinery. The last decades of the [[20th century]] saw a boom in the [[tourism]] industry.
20500
20501 Aruba seceded from the [[Netherlands Antilles]] on [[January 1]], [[1986]], and became a separate, self-governing member of the [[Kingdom of the Netherlands]]. Movement toward full independence by [[1996]] was halted at Aruba's request in 1990.
20502
20503 ==Politics==
20504 :''Main article: [[Politics of Aruba]]''
20505
20506 Aruba is a part of the Kingdom of the Netherlands, but maintains full control over its own affairs except for issues dealing with national defence, citizenship, foreign affairs, and extradition. Aruba has its own laws, constitution, government, and currency.
20507
20508 The Aruban [[head of state]] is the ruling monarch of the [[Netherlands]], who is represented in Aruba by a [[governor]], appointed for a six-year term. The [[head of government]] is the [[Prime Minister]], who forms, together with the Council of Ministers, the [[executive branch]] of the government.
20509
20510 They are elected by the [[parliament]], the [[unicameral]] Legislature or ''Staten'', which holds 21 seats. Members are elected by direct, popular vote to serve four-year terms.
20511
20512 ==Geography==
20513 :''Main article: [[Geography of Aruba]]''
20514
20515 Aruba is a generally flat, [[river]]less island renowned for its white sand [[beach]]es. Most of these are located on the western and southern coasts of the island, which are relatively sheltered from fierce ocean currents. The northern and eastern coasts, lacking this protection, are considerably more battered by the sea and have been left largely untouched by humans. The interior of the island features some rolling hills, the better two of which are called [[Hooiberg]] at 165 [[metre]]s (541 [[foot (unit of length|ft]]) and [[Mount Jamanota]], which is the highest on the island, at 188 metres (617 ft) above [[sea level]]. Oranjestad, the capital, is located at {{coor dm|12|19|N|70|1|W|}}.
20516
20517 As a separate member state of the [[Kingdom of the Netherlands]], the island/state has no administrative subdivisions. On the east are [[Curaçao]] and [[Bonaire]],two island territories which form the southwest part of the [[Netherlands Antilles]]; Aruba and these two Netherlands Antilles islands are also known as the [[ABC islands]].
20518
20519 The local [[climate]] is a pleasant tropical marine climate. Little seasonal temperature variation exists, which helps Aruba to attract tourists all year round. Temperatures are almost constant at about 28&amp;nbsp;[[Celsius|°C]] (82&amp;nbsp;[[Fahrenheit|°F]]), moderated by constant [[trade wind]]s from the [[Atlantic Ocean]]. Yearly precipitation barely reaches 500 [[millimeter|mm]] (20 [[inch|in]]), most of it falling in late autumn. [[Image:Aruba_map.png|right|Map of Aruba with cities]]
20520
20521 ==Economy==
20522 :''Main article: [[Economy of Aruba]]''
20523
20524 Aruba enjoys one of the highest standards of living in the Caribbean region, with low poverty and unemployment rates. About half of the Aruban [[Gross National Product]] is earned with [[tourism]] or related activities. Most of the tourists are from [[Canada]], the [[European Union]] and other places notably the [[United States]], which is the country's largest trading partner. Oil processing is the dominant industry in Aruba, despite expansion of the tourism sector. The size of the agriculture and manufacturing industries remains minimal.
20525
20526 Deficit spending has been a staple in Aruba's history, and modestly high inflation has been present as well, although recent efforts at tightening monetary policy may correct this. Aruba receives some [[development aid]] from the Dutch government each year. The Aruban guilder has a fixed exchange rate with the [[United States dollar]] of 1.79:1.
20527
20528 ==Demographics==
20529 [[Image:Aruba-demography.png|thumb|300px|left|Population of Aruba, Data of [[Food and Agriculture Organization|FAO]], year 2005 ; Number of inhabitants in thousands.]]
20530 Having poor [[soil]] and aridity, Aruba was saved from plantation economics and the [[slave trade]]. In 1515, the Spanish transported the entire population to [[Hispaniola]] to work in the [[copper]] [[mining|mines]]; most were allowed to return when the mines were tapped out. The Dutch, who took control a century later, left the [[Arawaks]] to graze livestock, using the island as a source of meat for other Dutch possessions in the Caribbean. The Arawak heritage is stronger on Aruba than on most Caribbean islands. No full-blooded [[Native American (Americas)|Indians]] remain, but the features of the islanders clearly indicate their genetic heritage. The majority of the population is descended from Arawak, Dutch and Spanish ancestors. Recently there has been substantial immigration to the island from neighboring Latin American and Caribbean nations, attracted by the lure of well-paying jobs.
20531
20532 The two official languages are the Dutch language and the predominant, national language [[Papiamento]], which is classified as a Creole language. This [[creole language]] is formed primarily from 16th century [[Portuguese language|Portuguese]], and several other languages. Spanish and English are also spoken. Islanders can often speak four or more languages and are mostly [[Roman Catholic Church|Roman Catholic]].
20533
20534 '''Population:''' 103,000( April 2004 est.)
20535
20536 '''Age structure:'''
20537 * 0-14 years: 20.7% (male 7,540; female 7,121)
20538 * 15-64 years: 68.3% (male 23,427; female 24,955)
20539 * 65 years and over: 11% (male 3,215; female 4,586) (2003 est.)
20540
20541 '''Median age:'''
20542 * total: 37.1 years
20543 * male: 35.3 years
20544 * female: 38.5 years (2002)
20545
20546 '''Population growth rate:''' 0.55% (2003 est.)
20547
20548 '''Birth rate:''' 11.86 births/1,000 population (2003 est.)
20549
20550 '''Death rate:''' 6.38 deaths/1,000 population (2003 est.)
20551
20552 '''Net migration rate:''' 0 migrant(s)/1,000 population (2003 est.)
20553
20554 '''Sex ratio:'''&lt;br /&gt;
20555 at birth: 1.05 male(s)/female&lt;br /&gt;
20556 under 15 years: 1.06 male(s)/female&lt;br /&gt;
20557 15-64 years: 0.94 male(s)/female&lt;br /&gt;
20558 65 years and over: 0.7 male(s)/female&lt;br /&gt;
20559 total population: 0.93 male(s)/female (2003 est.)
20560
20561 '''Infant mortality rate:'''
20562 * total: 6.14 deaths/1,000 live births
20563 * female: 5.25 deaths/1,000 live births (2003 est.)
20564 * male: 6.99 deaths/1,000 live births
20565
20566 '''Life expectancy at birth:'''
20567 * total population: 78.83 years
20568 * male: 75.48 years
20569 * female: 82.34 years (2003 est.)
20570
20571 '''Total fertility rate:''' 1.79 children born/woman (2003 est.)
20572
20573 '''Nationality:'''&lt;br /&gt;
20574 ''noun:'' Aruban(s)&lt;br /&gt;
20575 ''adjective:'' Aruban; Dutch
20576
20577 '''Religions:''' [[Roman Catholic Church|Roman Catholic]] 82%, [[Protestantism|Protestant]] 8%, [[Hindu]], [[Muslim]], [[Confucian]], [[Jew]]ish
20578
20579 '''Languages:'''
20580 [[Dutch language|Dutch]] (official), [[Papiamento]] (national language), [[Spanish language|Spanish]], [[English language|English]].
20581
20582 ==Culture==
20583 :''Main article: [[Culture of Aruba]]''
20584
20585 The origins of the population and location of the island give Aruba a mixed culture. Dutch influence can still be seen, even though not much of the population is of Dutch origin. Tourism from the United States has recently also increased the visibility of American culture on the island. [[Queen Beatrix International Airport]], located near [[Oranjestad, Aruba]], currently serves the whole island of Aruba. This airport has access to various cities across the eastern U.S., from Miami, Orlando, Houston, Atlanta to New York. It also connects Aruba with Europe through the [[Schiphol Airport]] in the Netherlands.
20586
20587 The holiday of [[Carnival]] is an important one in Aruba, as it is in many Caribbean and Latin American countries. Carnival is usually held from the beginning of January until the end of February, with a large parade on the final Sunday of the festivities.
20588
20589 ''See also: [[Music of Aruba and the Netherlands Antilles]]''
20590
20591 ==Language==
20592 {{main|Languages of Aruba}}
20593 Language can be seen as an important part of island culture in Aruba. The cultural mixture has given way to a linguistic mixture known as &quot;[[Papiamento]]&quot;. However, islanders are known to speak many languages. Islanders often speak Papiamento, English, Dutch and Spanish. In recent years the government of Aruba has shown an increased interest in acknowledging the cultural and historical importance of its native language.
20594
20595 ==Places of interest==
20596 * Alto Vista Chapel
20597 * [[Arikok National Park]]
20598 * Ayo and Casibari Rock Formations
20599 * [http://www.thejanskys.org/lighthouse/Other/calif.html California Lighthouse]
20600 * Frenchman's Pass
20601 * [[Hooiberg]]
20602 * Lourdes Grotto
20603 * [http://www.thespecks.com/Aruba/Aruba2000/natbridge.html Natural Bridge] (Collapsed on September 2, 2005 [http://www.usatoday.com/news/world/2005-09-02-aruba-bridge_x.htm?csp=36])
20604 * Natural Pool
20605 * Palm and Eagle Beaches
20606
20607 ==Miscellaneous topics==
20608 *[[Communications in Aruba]]
20609 *[[Foreign relations of Aruba]]
20610 *[[Transportation in Aruba]]
20611 *[[Military of Aruba]]
20612
20613 ==External links==
20614 {{Spoken Wikipedia|En-aruba.ogg|2005-08-15}}
20615 {{Commons|Aruba}}
20616 {{Wiktionarypar|Aruba}}
20617 *[http://www.aruba.com/ Aruba.com] - Official governmental portal
20618 *[http://www.arubatravelinfo.com/ Aruba Hotels and Travel Info]
20619 *[http://www.arubatourism.com/ ArubaTourism.com] - The original website for Aruba Visitors, established in 1996.
20620 *[http://www.loc.gov/rr/international/hispanic/aruba/aruba.html Library of Congress Portals on the World - Aruba]
20621 *[http://www.cia.gov/cia/publications/factbook/geos/aa.html CIA - The World Factbook -- Aruba] - [[CIA World Factbook]] on Aruba
20622 * An [http://www.caribbean-on-line.com/islands/ar/armap.shtml island map of Aruba] and a [http://www.caribbean-on-line.com/islands/ar/ormap.shtml detailed map of Oranjestad] are available at Caribbean-On-Line.com
20623 *[http://www.aruba-bb.com/ Aruba Travel Forums] - Aruba Message Board
20624 *[http://bb.visitaruba.com/index.php Visit Aruba Travel Forums] - Aruba Message Board
20625 *[http://www.zerokarma.com/modules.php?name=Photo_Album&amp;file=thumbnails&amp;album=4 Photos &amp; Pictures of Aruba]
20626 *[http://www.airportaruba.com/ Aruba Airport Authority]
20627 *[http://www.aruba-ecards.com/ Free Aruba Ecards]
20628 *[http://www.cbaruba.org/ CBAruba.org] - The official Central Bank of Aruba.
20629 *[http://www.arubaaloe.com/ Aruba Aloe]
20630 *[http://www.arubabound.com/ Aruba Bound!]
20631 *[http://www.elmar.aw/info/content/default.jsp N.V. Elmar] - Aruba's electric utility
20632 *[http://aruba-guide.info/ Aruba Guide] - The Definitive Aruba Vacation Guide
20633
20634 {{West_Indies}}
20635 {{Caricom}}
20636
20637 [[Category:Aruba]]
20638 [[Category:Caribbean islands]]
20639 [[Category:Special territories of the European Union]]
20640
20641 [[ar:ØŖØąŲˆØ¨Ø§]]
20642 [[zh-min-nan:Aruba]]
20643 [[ca:Aruba]]
20644 [[de:Aruba]]
20645 [[et:Aruba]]
20646 [[es:Aruba]]
20647 [[eo:Arubo]]
20648 [[eu:Aruba]]
20649 [[fr:Aruba]]
20650 [[gl:Aruba]]
20651 [[ko:ė•„ëŖ¨ë°”]]
20652 [[hr:Aruba]]
20653 [[id:Aruba]]
20654 [[ia:Aruba]]
20655 [[is:ArÃēba]]
20656 [[it:Aruba]]
20657 [[he:ארובה (טריטוריה)]]
20658 [[lv:Aruba]]
20659 [[lt:Aruba]]
20660 [[li:Aruba]]
20661 [[hu:Aruba]]
20662 [[mk:АŅ€ŅƒĐąĐ°]]
20663 [[nl:Aruba]]
20664 [[nds:Aruba]]
20665 [[ja:ã‚ĸãƒĢバ]]
20666 [[no:Aruba]]
20667 [[nn:Aruba]]
20668 [[pl:Aruba]]
20669 [[pt:Aruba]]
20670 [[ro:Aruba]]
20671 [[ru:АŅ€ŅƒĐąĐ°]]
20672 [[sh:Aruba]]
20673 [[simple:Aruba]]
20674 [[sl:Aruba]]
20675 [[fi:Aruba]]
20676 [[sv:Aruba]]
20677 [[tl:Aruba]]
20678 [[tr:Aruba]]
20679 [[zh:é˜ŋé­¯åˇ´]]</text>
20680 </revision>
20681 </page>
20682 <page>
20683 <title>Articles of Confederation</title>
20684 <id>691</id>
20685 <revision>
20686 <id>41819362</id>
20687 <timestamp>2006-03-01T23:20:28Z</timestamp>
20688 <contributor>
20689 <ip>64.12.116.204</ip>
20690 </contributor>
20691 <comment>/* Ratification */</comment>
20692 <text xml:space="preserve">[[Image:Articles page1.jpg|thumb|right|The Articles of Confederation]]
20693 The '''Articles of Confederation and Perpetual Union''', commonly known as the '''Articles of Confederation''' was the first governing document of the [[United States|United States of America]].
20694
20695 The articles, which combined the [[13 colonies]] of the [[American Revolutionary War]] into a loose [[confederation]], were adopted by the [[Second Continental Congress]] on [[November 15]], [[1777]], after 16 months of debate. The articles were ratified three years later on March 1, 1781.
20696
20697 The articles were eventually replaced by the [[United States Constitution]] on June 21, 1788, when the ninth state, [[New Hampshire]], ratified the Constitution. According to their own terms for modification, however, the articles were still in effect until 1790, when every one of the 13 states had ratified the new Constitution.
20698
20699 == Ratification ==
20700 The Articles of Confederation were submitted to the states for ratification on [[November 17]] [[1777]], accompanied by a letter from Congress urging that the document
20701
20702 :''be candidly reviewed under a sense of the difficulty of combining in one general system the various sentiments and interests of a continent divided into so many sovereign and independent communities, under a conviction of the absolute necessity of uniting all our councils and all our strength, to maintain and defend our common liberties .&amp;nbsp;.&amp;nbsp;. '' {{ref|ratificationletter}}
20703
20704 The document only became effective as it was ratified by the states. This process dragged on for several years, stalled by an interstate quarrel over claims to uncolonized land in the west. [[Maryland]] was the last hold-out; it refused to ratify until [[Virginia]] and [[New York]] agreed to rescind their claims to lands in the [[Ohio River]] valley. All of the colonies rebelling against Britain ratified it by [[1781]].
20705
20706 Although Congress debated the Articles for over a year, it requested immediate action on the part of the states. On [[February 5]] [[1778]] [[South Carolina]] became the first state to ratify the Articles of Confederation. However, three and a half years passed before the final ratification by [[Maryland]] on [[March 1]] [[1781]].
20707
20708 ==Article Summaries ==
20709 {{ChartersOfFreedom}}
20710 Even though the Articles of Confederation and the Constitution were established by much of the same people, they were still very different. The document contained 13 articles, a conclusion, and a signatory section.
20711
20712 #Establishes the name of the confederation as &quot;The United States of America&quot;
20713 #Explains the rights possessed by any state, and the amount of power to which any state is entitled
20714 #Establishes the United States as a league of states united &quot;...for their common defense, the security of their liberties, and their mutual and general welfare, binding themselves to assist each other, against all force offered to, or attacks made upon them...&quot;
20715 #Establishes [[freedom of movement]]&amp;ndash;anyone can pass freely between states, excluding &quot;[[pauper]]s, [[vagabond]]s, and [[fugitive]]s from justice excepted.&quot; All people are entitled to the rights established by the state into which he or she travels. If a crime is committed in one state and the perpetrator flees to another state, he will be [[extradition|extradited]] to and tried in the state in which the crime was committed.
20716 #Allocates one vote in the [[Congress of the Confederation]] (United States in Congress Assembled) to each state, which was entitled to a delegation of between two and seven members. Members of Congress were appointed by state legislatures; individuals could not serve more than three out of any six years.
20717 #Limits the powers of states to conduct [[foreign relations]] and to [[declaration of war|declare war]].
20718 #When an army is raised for common defense, [[Colonel (United States)|colonels]] and [[military rank]]s below colonel will be named by the state legislatures.
20719 #Expenditures by the United States will be paid by funds raised by state legislatures, and apportioned to the states based on the real property values of each.
20720 #Defines the rights of the central government: to declare war, to set weights and measures (including coins), and for Congress to serve as a final court for disputes between states.
20721 #Defines a [[Committee of the States]] to be a government when Congress is not in session.
20722 #Requires nine states to approve the admission of a new state into the confederacy; preapproves [[Canada]], if they apply for membership.
20723 #Reaffirms that the Confederation accepts war debt incurred by Congress before the articles ([[assumption]]).
20724 #Declares that the articles are perpetual, and can only be altered by approval of Congress with ratification by ''all'' the state legislatures.
20725
20726 Still at war with the [[Kingdom of Great Britain]], the colonists were reluctant to establish another powerful national government. Jealously guarding their new independence, the Continental Congress created a loosely structured [[unicameral]] legislature that protected the liberty of the individual states at the expense of the confederation. While calling on Congress to regulate military and monetary affairs, for example, the Articles of Confederation provided no mechanism to ensure states complied with requests for troops or revenue. At times this left the military in a precarious position, as [[George Washington]] wrote in a [[1781]] letter to the governor of [[Massachusetts]], [[John Hancock]].
20727
20728 == The end of the war ==
20729 The [[Treaty of Paris (1783)]], ending hostilities with Great Britain, languished in Congress for months because state representatives failed to attend sessions of the national legislature. Yet, Congress had no power to enforce attendance. Writing to [[George Clinton (politician)|George Clinton]] in September [[1783]], George Washington complained:
20730
20731 :''Congress have come to no determination yet respecting the Peace Establishment, nor am I able to say when they will. I have lately had a conference with a Committee on this subject, and have reiterated my former opinions, but it appears to me that there is not a sufficient representation to discuss Great National points.'' {{ref|washingtonclinton}}
20732
20733 ==Function==
20734 The Articles supported the Congressional direction of the [[Continental Army]], and allowed the [[13 Colonies|Thirteen Colonies]] to present a unified front when dealing with the European powers. But as an instrument of government, they were largely a failure. Congress could make decisions, but had no power to enforce them.
20735
20736 Perhaps the most important power that Congress was denied was the power of taxation: Congress could only request [[money]] from the states. Understandably, the states did not generally comply with the requests in full, leaving the confederation chronically short of funds. The states and the national congress had both incurred debts during the war, and paying congressional debts became a major issue.
20737
20738 Nevertheless the [[Continental Congress]] did take two actions with lasting impact. The [[Land Ordinance of 1785]] established the general land survey and ownership provisions used throughout later American expansion. The [[Northwest Ordinance]] of [[1787]] noted the agreement of the original states to give up western land claims and cleared the way for the entry of new states.
20739
20740 Once the unity demanded by the Revolutionary War became unnecessary, the [[Continental Army]] was largely disbanded. A very small national force was maintained to man frontier forts and protect against Indian attacks. Meanwhile, each of the states had an army (or militia), and 11 of them had navies. The wartime promises of bounties and land grants to be paid for service were not being met. In 1783, [[George Washington|Washington]] defused the [[Newburgh conspiracy]], but riots by unpaid [[Pennsylvania]] veterans forced the Congress to leave [[Philadelphia, Pennsylvania|Philadelphia]] on [[June 21]].
20741
20742 ==Revision==
20743 In May [[1786]], [[Charles Pinckney (governor)|Charles Pinckney]] of [[South Carolina]] proposed that Congress revise the Articles of Confederation. Recommended changes included granting [[Congress]] power over foreign and domestic commerce, and providing means for Congress to collect money from state treasuries. Unanimous approval was necessary to make the alterations, however, and Congress failed to reach a consensus.
20744
20745 In September, five states assembled in the [[Annapolis Convention (1786)]] to discuss adjustments that would improve commerce. Under their chairman, [[Alexander Hamilton]], they invited state representatives to convene in [[Philadelphia]] to discuss improvements to the federal government. After debate, Congress endorsed the plan to revise the Articles of Confederation on [[February 21]] [[1787]]. According to some historians, the Articles were flawed; in particular, the [[confederal]] government was unable to settle state disputes on issues like trade and had no power to tax directly. After all, the states were thirteen individual [[republics]]. It took radical action to strip them of that [[sovereignty]].
20746
20747 ==Lessons==
20748 Although ultimately replaced by the [[United States Constitution]], the Articles of Confederation provided stability during the [[American Revolutionary War]] years. Most importantly, the experience of drafting and living under this initial document provided valuable lessons in self-governance and somewhat tempered fears about a powerful central government. Still, reconciling the turmoil between state and federal authority continues to challenge America, as seen in such conflicts as the [[1832]] [[Nullification Crisis]], the [[American Civil War]] ([[1861]]-[[1865|65]]), post-Civil War [[Reconstruction]], and the [[Supreme Court of the United States|Supreme Court]]'s landmark ''[[Brown v. Board of Education]]'' decision in [[1954]].
20749 *****
20750
20751 ==Signatures==
20752 The copy of the Articles in the U.S. National Archives has a series of signatures on page six. A list of them is presented here. The signing of the Articles was a process that has caused some confusion. The Articles were approved for distribution to the states, on [[November 15]], [[1777]]. A copy was made for each state and one was kept by the [[Continental Congress|Congress]]. The copies sent to the states for ratification were unsigned, and a cover letter had only the signatures of [[Henry Laurens]] and [[Charles Thomson]], who were the [[President of the Continental Congress|President]] and Secretary to the Congress.
20753
20754 But, the Articles at that time were unsigned, and the date was blank. Congress began the signing process by examining their copy of the Articles on [[June 27]], [[1778]]. They ordered a final copy prepared (the one in the National Archives), and that delegates should inform the secretary of their authority for ratification.
20755
20756 Then, on [[July 9]], [[1778]] the prepared copy was ready. They dated it, and began to sign. They also requested each of the remaining states to notify its delegation when ratification was completed. On that date, delegates present from New Hampshire, Massachusetts, Rhode Island, Connecticut, New York, Pennsylvania, Virginia, and South Carolina signed the articles to indicate that their states had ratified. New Jersey, Delaware, and Maryland could not, since their states had not ratified. North Carolina and Georgia also didn't sign that day, since their delegations were absent.
20757
20758 After the first signing, some delegates signed at the next meeting they attended. For example John Wentworth of New Hampshire added his name on [[August 8]]. John Penn was the first of North Carolina's delegates to arrive (on [[July 10]]), and the delegation signed the Articles on [[July 21]], [[1778]].
20759
20760 The other states had to wait until they ratified the Articles, and notified their Congressional delegation. Georgia signed on [[July 24]], New Jersey on [[November 26]], and Delaware on [[February 12]], [[1779]]. After a wait of two years, Maryland ratified, and her delegates signed the Articles on [[March 1]], [[1781]]. The articles were finally in force.
20761
20762 Congress had debated the Articles for over a year and a half, and the ratification process had taken nearly three and a half years. Many participants in the original debates were no longer delegates, and some of the signers had only recently arrived. The '''Articles of Confederation and Perpetual Union''' were signed by a group of men who were never present in the Congress at the same time.
20763
20764 The signers and the states they represented were:
20765 * [[New Hampshire]]: [[Josiah Bartlett]] and [[John Wentworth Jr.]]
20766 * [[Massachusetts|Massachusetts Bay]]: [[John Hancock]], [[Samuel Adams]], [[Elbridge Gerry]], [[Francis Dana]], [[James Lovell (delegate)|James Lovell]], and [[Samuel Holten]]
20767 * [[Rhode Island|Rhode Island and Providence Plantations]]: [[William Ellery]], [[Henry Marchant]], and [[John Collins (delegate)|John Collins]]
20768 * [[Connecticut]]: [[Roger Sherman]], [[Samuel Huntington (statesman)|Samuel Huntington]], [[Oliver Wolcott]], [[Titus Hosmer]], and [[Andrew Adams]]
20769 * [[New York]]: [[James Duane]], [[Francis Lewis]], [[William Duer (1747-1799)|William Duer]], and [[Gouverneur Morris]]
20770 * [[New Jersey]]: [[John Witherspoon]] and [[Nathaniel Scudder]]
20771 * [[Pennsylvania]]: [[Robert Morris (merchant)|Robert Morris]], [[Daniel Roberdeau]], [[Jonathan Bayard Smith]], [[William Clingan]], and [[Joseph Reed (jurist)|Joseph Reed]]
20772 * [[Delaware]]: [[Thomas McKean]], [[John Dickinson (1732-1808)|John Dickinson]], and [[Nicholas Van Dyke (1738-1789)|Nicholas Van Dyke]]
20773 * [[Maryland]]: [[John Hanson]] and [[Daniel Carroll]]
20774 * [[Virginia]]: [[Richard Henry Lee]], [[John Banister]], [[Thomas Adams (politician)|Thomas Adams]], [[John Harvie]], and [[Francis Lightfoot Lee]]
20775 * [[North Carolina]]: [[John Penn (delegate)|John Penn]], [[Cornelius Harnett]], and [[John Williams (delegate)|John Williams]]
20776 * [[South Carolina]]: [[Henry Laurens]], [[William Henry Drayton|Will Henry Drayton]], [[John Mathews]], [[Richard Hutson]], and [[Thomas Heyward Jr.]]
20777 * [[Georgia (U.S. state)|Georgia]]: [[John Walton (1738-1783)|John Walton]], [[Edward Telfair]], and [[Edward Langworthy]]
20778
20779 ==Presidents of the Congress of the Confederation==
20780 The following list are those who led the [[Congress]] under the Articles of Confederation as the [[President of the United States in Congress Assembled|Presidents of the United States in Congress Assembled]]. The &quot;president&quot; under the Articles was the presiding officer of Congress, not the chief [[executive (government)|executive]], as is the [[President of the United States]] under the Constitution. Also, the Articles defined the powers of a [[confederation]] of states as opposed to the current [[Constitution of the United States|Constitution]], which defines the powers of a [[federation]] of states.
20781
20782 #[[Samuel Huntington (statesman)|Samuel Huntington]]
20783 #[[Thomas McKean]]
20784 #[[John Hanson]]
20785 #[[Elias Boudinot]]
20786 #[[Thomas Mifflin]]
20787 #[[Richard Henry Lee]]
20788 #[[John Hancock]]
20789 #[[Nathaniel Gorham]]
20790 #[[Arthur St. Clair]]
20791 #[[Cyrus Griffin]]
20792
20793
20794 For a full list of Presidents of the Congress Assembled and Presidents under the two Continental Congresses before the Articles, see [[President of the Continental Congress]].
20795
20796 ==References==
20797 #{{note|ratificationletter}}[http://memory.loc.gov/cgi-bin/query/r?ammem/hlaw:@field(DOCID+@lit(jc00941)) Monday, November 17, 1777], Journals of the Continental Congress, 1774-1789. [http://memory.loc.gov/ammem/amlaw/lawhome.html A Century of Lawmaking, 1774-1873]
20798 #{{note|washingtonclinton}}[http://memory.loc.gov/cgi-bin/query/r?ammem/mgw:@field(DOCID+@lit(gw270170)) Letter George Washington to George Clinton], September 11, 1783. [http://memory.loc.gov/ammem/gwhtml/gwhome.html The George Washington Papers, 1741-1799]
20799
20800 ==External links==
20801 {{wikisource}}
20802 * [http://www.law.ou.edu/hist/artconf.html Text Version of the Articles of Confederation]
20803 * [http://earlyamerica.com/earlyamerica/milestones/articles/cover.html Articles of Confederation and Perpetual Union]
20804 * [http://www.loc.gov/rr/program/bib/ourdocs/articles.html Library of Congress: Articles of Confederation and related resources]
20805 * [http://memory.loc.gov/ammem/today/nov15.html Library of Congress: &quot;Today in History: November 15&quot;]
20806 * [http://www.usconstitution.net/articles.html The United States Constitution Online: The Articles of Confederation]
20807
20808 {{US Constitution}}
20809
20810 [[Category:Defunct constitutions]]
20811 [[Category:United States historical documents]]
20812 [[Category:Legal history of the United States]]
20813 [[Category:American Revolution]]
20814 [[Category:Federalism]]
20815 [[Category:1781 in law]]
20816
20817 [[de:KonfÃļderationsartikel]]
20818 [[eo:Artikoloj de Konfederacio]]
20819 [[fr:Articles de la ConfÊdÊration]]
20820 [[it:Articoli della Confederazione]]
20821 [[nl:Artikelen van de Confederatie]]</text>
20822 </revision>
20823 </page>
20824 <page>
20825 <title>Archaeology/Broch</title>
20826 <id>693</id>
20827 <revision>
20828 <id>15899219</id>
20829 <timestamp>2003-10-30T12:00:32Z</timestamp>
20830 <contributor>
20831 <username>Andre Engels</username>
20832 <id>300</id>
20833 </contributor>
20834 <minor />
20835 <comment>removing 'see also' from redirect page</comment>
20836 <text xml:space="preserve">#REDIRECT [[Broch]]</text>
20837 </revision>
20838 </page>
20839 <page>
20840 <title>Asia Minor</title>
20841 <id>694</id>
20842 <revision>
20843 <id>15899220</id>
20844 <timestamp>2004-11-01T22:52:41Z</timestamp>
20845 <contributor>
20846 <username>Docu</username>
20847 <id>8029</id>
20848 </contributor>
20849 <minor />
20850 <comment>{{R with possibilities}}</comment>
20851 <text xml:space="preserve">#REDIRECT [[Anatolia]]{{R with possibilities}}</text>
20852 </revision>
20853 </page>
20854 <page>
20855 <title>Adam Sedgwick</title>
20856 <id>695</id>
20857 <revision>
20858 <id>42103474</id>
20859 <timestamp>2006-03-03T21:22:29Z</timestamp>
20860 <contributor>
20861 <username>GilliamJF</username>
20862 <id>506179</id>
20863 </contributor>
20864 <comment>/* Introduction */ dab Prince Albert</comment>
20865 <text xml:space="preserve">[[Image:Adam sedgwick.JPG|right|thumb|Adam Sedgwick]]
20866
20867 '''Adam Sedgwick''' ([[March 22]], [[1785]] &amp;ndash; [[January 27]], [[1873]]) was one of the founders of modern [[geology]]. He proposed the [[Devonian period]] of the geological timescale and later the [[Cambrian]] period. The latter proposal was based on work which he did on [[Wales|Welsh]] rock strata.
20868
20869 Sedgwick was born in [[Dent (Lonsdale)|Dent]], at that time in [[Yorkshire]], the third child of an Anglican vicar. He was educated at [[Sedbergh School]] and [[Trinity College, Cambridge]].
20870
20871 ==Introduction==
20872
20873 In [[1817]] he took [[holy orders]], and in [[1818]] he became [[Woodwardian Professor of Geology]] at the [[University of Cambridge]] [[University of Cambridge Department of Earth Sciences|Department of Earth Sciences]], holding a chair that had been endowed ninety years before by the natural historian [[John Woodward (naturalist)|John Woodward]]. He lacked formal training in geology, but he quickly became an active researcher in geology and [[paleontology]]. During his tenure, he immensely enlarged the geological collections of Cambridge University, and carried out important field research all over [[Great Britain]]. Sedgwick is said to have remarked, upon being appointed Woodwardian Professor, &quot;Hitherto I have never turned a stone; henceforth I will leave no stone unturned.&quot; In [[1822]] he carried out fieldwork unraveling the complex geology of the [[Lake District]] of [[northern England]], armed with the new discoveries and techniques of [[William Smith (geologist)|William Smith]]. He met and befriended the poet [[William Wordsworth]] on this expedition, and also met the poet [[Robert Southey]] and the chemist [[John Dalton]]. His lectures at [[Cambridge]] were immensely popular; he was a spellbinding [[lecturer]], and -- breaking with the traditions of his time -- his lectures were open to women, whom Sedgwick thought could make great contributions to natural history. He continued to rise in his profession: in [[1829]] he became President of the [[Geological Society of London]], and in [[1845]] a Vice-Master of [[Trinity College, Cambridge|Trinity College]]. As Vice-Master, he led campaigns to open Cambridge to non-[[Anglican]]s and to reorganize the academic programs, in the process meeting and becoming close to [[Victoria of the United Kingdom|Queen Victoria]] and her consort [[Prince Albert of Saxe-Coburg and Gotha|Prince Albert]]. By the 1850s he was in poor health, cared for by his niece Isabella. Still, he kept giving his famous lectures until [[1871]].
20874
20875 ==Early work==
20876
20877 Sedgwick was one of several great figures in what has been called the Heroic Age of geology -- the time when the great geological time periods were defined, and when much exploration and fundamental research was carried out. Sedgwick's work placed him at the epicenter of one of the most heated geological controversies of his day, stemming from his work with the gentleman geologist [[Roderick Murchison]]. They explored the [[geology of Scotland]] in [[1827]], and in [[1839]] they jointly presented their researches on certain rocks in [[Devon]], [[England]], which had a distinctive [[fossil]] assemblage that led them to propose a new division of the geological time scale -- the [[Devonian]]. In the early 1830s, both men were working on the rocks of Wales, which were and are very difficult to work on due to extensive [[folding]] and [[geologic fault|faulting]]. However, they seemed to be older than most of the [[sedimentary rocks]] farther east. Murchison documented the presence of a distinctive set of fossils, one in which very few fish were found, but that included numerous different types of [[trilobites]], [[brachiopods]], and other such fossils. Murchison named the system of rocks containing such fossils the [[Silurian]], after the Silures, a Celtic tribe living in the Welsh Borderlands at the time of the Romans. Sedgwick, who had been working in central Wales, proposed the existence of a separate system below the Silurian, which he named the [[Cambrian]] -- after Cambria, the Latin name for Wales. The two presented a joint paper in [[1835]], entitled &quot;On the Silurian and Cambrian Systems, exhibiting the order in which the older sedimentary strata succeed each other in England and Wales.&quot;
20878
20879 Sedgwick's upper &quot;Cambrian&quot; overlapped with the lower part of Murchison's &quot;Silurian.&quot; Sedgwick had defined his &quot;Cambrian&quot; using physical characters of the rocks, which were unique to Wales, and had not relied extensively on fossils, which could be found everywhere. Murchison, who had used fossils extensively in defining the Silurian, claimed at first that the upper Cambrian, and then the entire Cambrian, were really parts of the Silurian. The resulting quarrel between the two men left them permanently estranged and took years to resolve. There was more than a simple matter of names involved. Both geologists wanted the honour of describing the rocks that recorded the beginning of life on Earth, for no fossils were known that were older than those of the Cambrian. Murchison felt that the fossils of Sedgwick's &quot;Cambrian&quot; were not different enough from his &quot;Silurian&quot; forms to merit the naming of a geologic time period, and it was some time before truly distinctive Cambrian fossils were documented. Today, following the solution worked out in 1879 by Sedgwick's colleague [[Charles Lapworth]], geologists use both time periods, with a third one -- the [[Ordovician]], also named for a Celtic tribe in Wales -- between the Cambrian and the Silurian, equivalent to the disputed &quot;upper Cambrian-lower Silurian&quot; beds. Each one of these is now known to be characterized by distinct fossil assemblages.
20880
20881 ==Disagreement with Darwin==
20882
20883 For one summer of his work in Wales which was to lead to this controversy, Sedgwick made a fateful choice of field assistant: a young Cambridge graduate named [[Charles Darwin]]. Darwin had passed his examinations for the [[Bachelor of Arts]] degree in January 1831, and began attending Sedgwick's geology lectures, which he found fascinating. That summer, the two men explored the rocks of north Wales; Darwin got a &quot;crash course&quot; in field geology from Sedgwick, an experience that would stand him in good stead over the next five years, on the round-the-world voyage of [[HMS Beagle]]. During this voyage, Darwin sent rocks and fossils from [[South America]] back to Sedgwick, as well as descriptions of the geology of South America. These impressed Sedgwick, who wrote in a letter to Darwin's family:
20884
20885 He is doing admirably in S. America &amp; has already sent home a Collection above all praise. -- It was the best thing in the world for him that he went out on the Voyage of Discovery...
20886 In November 1835, before Darwin had returned to England, Sedgwick read some of Darwin's work on South American geology to the Geological Society of London. This greatly improved Darwin's reputation as a scientist; he was inducted into the Society shortly after his return. The two stayed friends until Sedgwick's death, but Sedgwick was upset and disappointed by Darwin's theory of [[evolution]] by [[natural selection]]. After reading [[The Origin of Species]], Sedgwick candidly wrote to Darwin on [[November 24]], [[1859]]:
20887
20888 &quot;If I did not think you a good tempered &amp; truth loving man I should not tell you that. . . I have read your book with more pain than pleasure. Parts of it I admired greatly; parts I laughed at till my sides were almost sore; other parts I read with absolute sorrow; because I think them utterly false &amp; grievously mischievous-- You have deserted-- after a start in that tram-road of all solid physical truth-- the true method of induction. . . &quot;
20889
20890 However despite this difference of opinion, the two men remained friendly until Sedgwick's death.
20891
20892 ==Flawed opinions==
20893
20894 Sedgwick's own geological views were generally catastrophic -- he believed that the history of the [[Earth]] had been marked by a series of cataclysmic events which had destroyed much of the Earth's life. In this belief he followed Cuvier, and he was opposed to Charles Lyell's models of slow, gradual geological change and a more or less steady-state Earth. However, Sedgwick was interested in the possibility that at least some of the &quot;catastrophic&quot; changes implied by the rock record might be shown to be gradual. He originally followed his colleague [[William Buckland]] in believing that the uppermost [[Pleistocene]] deposits had been laid down by the Biblical Flood, but retracted this belief after many of these deposits turned out to have been formed by glaciers, not floods. Sedgwick also did not object to evolution, or &quot;development&quot; as such theories were called then, in the broad sense -- to the fact that the life on Earth had changed over time. Nor was he a young-Earth creationist; he believed that the Earth must be extremely old. As Darwin wrote of Sedgwick's lectures, &quot;What a capital hand is Sedgewick [sic] for drawing large cheques upon the Bank of Time!&quot;
20895
20896 However, Sedgwick believed in the Divine creation of life over long periods of time, by &quot;a power I cannot imitate or comprehend -- but in which I believe, by a legitimate conclusion of sound reason drawn from the laws of harmonies of nature.&quot; What Sedgwick objected to was the apparent amoral and materialist nature of Darwin's proposed mechanism, natural selection, which he thought degrading to humanity's spiritual aspirations. His letter of November 24 went on to state:
20897
20898 This view of nature you have stated admirably; tho' admitted by all naturalists &amp; denied by no one of common sense. We all admit development as a fact of history; but how came it about? Here, in language, &amp; still more in logic, we are point blank at issue-- There is a moral or metaphysical part of nature as well as a physical. A man who denies this is deep in the mire of folly. Tis the crown &amp; glory of organic science that it does thro' final cause, link material to moral. . . You have ignored this link; &amp;, if I do not mistake your meaning, you have done your best in one or two pregnant cases to break it. Were it possible (which thank God it is not) to break it, humanity in my mind, would suffer a damage that might brutalize it--&amp; sink the human race into a lower grade of degradation than any into which it has fallen since its written records tell us of its history.
20899
20900 ==External links==
20901
20902 *[http://www.sedgwickmuseum.org/ Sedgwick Museum, Cambridge]
20903 *[http://www.esc.cam.ac.uk/SedgwickClub/ Sedgwick Club, Cambridge]
20904 *[http://www.esc.cam.ac.uk/ University of Cambridge Department of Earth Sciences]
20905
20906 [[Category:1785 births|Sedgwick, Adam]]
20907 [[Category:1873 deaths|Sedgwick, Adam]]
20908 [[Category:Alumni of Trinity College, Cambridge|Sedgwick, Adam]]
20909 [[Category:British geologists|Sedgwick, Adam]]
20910 [[Category:Fellows of the Royal Society|Sedgwick, Adam]]
20911 [[Category:Natives of Cumbria|Sedgwick, Adam]]
20912
20913
20914 [[de:Adam Sedgwick]]
20915 [[fr:Adam Sedgwick]]</text>
20916 </revision>
20917 </page>
20918 <page>
20919 <title>Aa River</title>
20920 <id>696</id>
20921 <revision>
20922 <id>41989325</id>
20923 <timestamp>2006-03-03T01:53:17Z</timestamp>
20924 <contributor>
20925 <username>Zhaladshar</username>
20926 <id>302064</id>
20927 </contributor>
20928 <comment>{{Wikisource1911Enc}} - EB1911 article refers to a collection of European rivers</comment>
20929 <text xml:space="preserve">{{Wikisource1911Enc|Aa}}
20930 '''Aa River''' may refer to:
20931 *The [[Aa River (France)]], in the north of France
20932 *The [[Aabach (Greifensee)]] river in Switzerland
20933 *The [[Aabach (Afte)]] river in Germany, a tributary of the Afte River
20934 *The [[Lielupe]] river (called &quot;Kurländische Aa&quot; in German) in Latvia
20935 *The [[Gauja]] river (called &quot;Livländische Aa&quot; in German) in Latvia
20936
20937 &lt;!--
20938 * Aa is also an English noun, beloved of Scrabble players, meaning a [[stream]].
20939 --&gt;
20940
20941 &lt;!--
20942 *The [[Sarner Aa]] river in Switzerland
20943 *The [[Engelberger Aa]] river in Switzerland
20944 *The [[Westfälische Aa]] river in the Westphalia region of Germany
20945 *The [[MÃŧnstersche Aa]] river in the MÃŧnster region of Germany
20946 *The [[Great Aa]] (Große Aa) river in Germany
20947 *in the [[Netherlands]] and [[Belgium]]:
20948 **Aa, a river in [[Antwerp (province)|Antwerp]], and joining the [[Kleine Nete]] at [[Grobbendonk]].
20949 **Drentse Aa, a small river in the [[Drenthe]] and [[Groningen (province)|Groningen]] provinces that also flows through [[Groningen (city)|Groningen]] city.
20950 **Aa, a river in [[Noord-Brabant]], flowing through [[Helmond]] and [['s-Hertogenbosch]].
20951 **Aa or Weerijs, also in [[Noord-Brabant]], a small river near [[Breda (Netherlands)|Breda]], rising at [[Wuustwezel]], Belgium, joint by the Kleine Aa, rising at [[Brecht]], Belgium.
20952 **several small rivers and canals in [[Groningen (province)|Groningen]] province, such as Pekel Aa, Ruiten Aa, Mussel Aa.
20953 --&gt;
20954
20955 {{disambig}}
20956 [[de:Liste der Gewässer mit Aa]]
20957 [[et:Aa jÃĩgi]]
20958 [[fr:Aa (fleuve)]]
20959 [[ga:Aa (abhainn)]]
20960 [[nl:Aa (waternaam)]]
20961 [[zh:é˜ŋæ˛ŗ]]</text>
20962 </revision>
20963 </page>
20964 <page>
20965 <title>Arthur Koestler</title>
20966 <id>697</id>
20967 <revision>
20968 <id>41390660</id>
20969 <timestamp>2006-02-27T00:44:56Z</timestamp>
20970 <contributor>
20971 <username>Koavf</username>
20972 <id>205121</id>
20973 </contributor>
20974 <minor />
20975 <text xml:space="preserve">[[Image:Arthur Koestler.jpg|110px|thumb|Arthur Koestler]]
20976 '''Arthur Koestler''' ([[September 5]], [[1905]], [[Budapest]] &amp;ndash; [[March 3]], [[1983]], [[London]]) was a [[Hungary|Hungarian]] [[polymath]] who became a naturalized [[United Kingdom|British]] subject. He wrote [[journalism]], [[novels]], social [[philosophy]], and books on scientific subjects. He was a [[Communism|Communist]] during much of the 1930s and remained politically active until the 1950s. He wrote a number of popular books, including ''Arrow in the Blue'' (the first volume of his autobiography), ''The Yogi and the Commissar'' (a collection of essays, many dealing with [[Communism]]), ''The Sleepwalkers'' (''A History of Man's Changing Vision of the Universe''), ''The Act of Creation'', and ''The Thirteenth Tribe'' giving a new theory of the origins of the Jews of Eastern Europe. His most famous work, the novel ''[[Darkness at Noon]]'' about the [[Soviet Union|Soviet]] [[Great Purge|purges]] of the 1930s, ranks with [[George Orwell]]'s ''[[Nineteen Eighty-Four]]'' as a fictional treatment of [[Stalinism]]. He also wrote ''[[EncyclopÃĻdia Britannica]]'' articles.&lt;!--Many number?? I know but one.--&gt;
20977
20978 == Life ==
20979 He was born KÃļsztler Artur (Hungarians put the [[surname]] first) in [[Budapest]], [[Hungary]] to a [[German language|German-speaking]] Hungarian family of [[Ashkenazi Jews| Ashkenazi Jewish]] descent. His father, Henrik, was an [[industrialist]] and [[inventor]] whose business ideas revealed flawed judgement; for example, he invested for a while in the manufacture of a kind of [[radioactive]] soap. When Artur was 14, his family moved to [[Vienna]], [[Austria]]. In 1918, Hungary obtained its independence from Austria and flirted for a while with [[Bolshevism]].
20980
20981 Koestler studied [[science]] and [[psychology]] at the [[University of Vienna]], where he became involved in [[Zionism]]. After completing his studies, he worked as a [[news correspondent]]. From [[1926]] to [[1929]] he lived in the [[British Mandate of Palestine]], partly in a ''[[kibbutz]]''. He joined the [[Germany|German]] [[Communist Party]] in [[1931]], but left it after the [[Stalin]]ist purges of [[1938]]. During this period he traveled extensively in the [[Soviet Union]] and climbed [[Mount Ararat]] in [[Turkey]]. In [[Turkmenistan]], he met the black American writer [[Langston Hughes]]. In [[1931]], he was a member of a [[zeppelin]] expedition to the [[North Pole]].
20982
20983 In his memoir ''The Invisible Writing'', Koestler recalls that during the summer of [[1935]] he &quot;wrote about half of a satirical novel called ''[[The Good Soldier Å vejk|The Good Soldier Schweik Goes to War Again....]]''. It had been commissioned by [[Willi MÃŧnzenberg|Willy MÃŧnzenberg]] &lt;nowiki&gt;[&lt;/nowiki&gt;the [[Comintern]]'s chief [[propagandist]] in the [[Western world|West]]] ... but was vetoed by the [[Communist Party of the Soviet Union|Party]] on the grounds of the book's 'pacifist errors'...&quot; (p. 283).
20984
20985 Soon after the outbreak of [[World War II]], the French authorities detained him for several months in a camp for resident aliens at Le Vernet in the foothills of the [[Pyrenees]] mountains. Upon his release, he joined the [[French Foreign Legion]]. He eventually escaped to [[England]] via Morocco and Portugal. In England, he served in the [[British Army]] as a member of the [[British Pioneer Corps]], 1941-42, then worked for the [[BBC]]. He became a [[British subject]] in [[1945]]. He returned to France after the war, where he rubbed shoulders with the set gravitating around [[Jean-Paul Sartre]] and [[Simone de Beauvoir]]. One of the characters in de Beauvoir's novel ''The Mandarins'' is believed based on Koestler.
20986
20987 He returned to [[London]] and spent the rest of his life writing and lecturing. He was made a [[Order of the British Empire|CBE]] in the [[1970s]]. In [[1983]], Koestler, suffering from [[Parkinson's disease]] and [[leukemia]], committed joint [[suicide]] by taking an overdose of drugs with his third wife Cynthia. He had long been an advocate of voluntary [[euthanasia]], and in [[1981]], had become vice-president of &quot;[[EXIT]]&quot;, a British group campaigning for it. His will endowed the chair of [[parapsychology]] at the [[University of Edinburgh]] in [[Scotland]].
20988
20989 ===Multilingualism===
20990 In addition to his mother tongue [[German language|German]], Koestler became fluent in [[Hungarian language|Hungarian]], [[English language|English]], and [[French language|French]], and knew some [[Hebrew language|Hebrew]] and [[Russian language|Russian]]. His biographer [[David Cesarani]] claims there is some evidence that Koestler may have picked up some [[Yiddish]] from his grandfather. Koestler's multilingualism was principally due to his having resided, worked, and/or studied in [[Hungary]], [[Austria]], [[Germany]], [[British Mandate of Palestine|Palestine]] (pre-independence [[Israel]]), the [[Soviet Union]], the [[United Kingdom]], and [[France]], all by 40 years of age.
20991
20992 Though he wrote the bulk of his later work in English, Koestler wrote his best-known novels in three different languages: ''The Gladiators'' in Hungarian, ''Darkness at Noon'' in German (although the original is now lost), and ''Arrival and Departure'' in English. His journalism was written in German, Hebrew, French and English. He claimed to have produced the first Hebrew language [[crossword]] puzzles.
20993
20994 ===Women===
20995 Koestler was married to Dorothy Asher (1935-50), Mamaine Paget (1950-52), and Cynthia Jefferies (1965-83). He also had a very short fling with the French writer [[Simone de Beauvoir]], one that may explain the mutual animosity between him and [[Jean-Paul Sartre]]. David Cesarani claimed that Koestler beat and raped several women, including [[film director]] [[Jill Craigie]]. The resulting protests led to the removal of a bust of Koestler from public display at the [[University of Edinburgh]].
20996
20997 Questions have also been raised by his [[suicide pact]] with his last spouse. Although he was [[Terminal illness|terminally ill]] at the time, she was apparently healthy, leading some to claim he wrongly persuaded her to take her own life.
20998
20999 ==Mixed legacy==
21000 Just as ''[[Darkness at Noon]]'' was selling well during the [[Cold War]] of the 40s and 50s, Koestler announced his retirement from [[politics]]. Much of what he wrote thereafter revealed a multidisciplinary thinker whose work anticipated a number of trends by many years. He was among the first to experiment with [[LSD]] (in a laboratory). He also wrote about [[Japan|Japanese]] and [[India|Indian]] mysticism in ''[[The Lotus and the Robot]]'' ([[1960]]). He did not merely arrive at different answers to accepted questions; rather, he tended to ask questions that no one else thought to ask.
21001
21002 This originality resulted in an uneven set of ideas and conclusions. Some of them, such as his work on creativity (''Insight and Outlook, Act of Creation'') and the history of science (''The Sleepwalkers''), are arguably brilliant and challenge us to readjust our thinking. Some of his other pursuits, such as his interest in the [[paranormal]], his support for [[euthanasia]], his theory of the origin of [[Ashkenazi Jews]] like himself, and his disagreement with [[Darwinism]], are more controversial.
21003
21004 === Politics ===
21005 Koestler was involved in a number of political causes during his life, from [[Zionism]] and [[communism]] to [[anti-communism]], voluntary [[euthanasia]] and campaigns against [[capital punishment]], particularly [[hanging]]. He was also an early advocate of [[nuclear disarmament]].
21006
21007 === Journalism ===
21008 Until the bestseller status of ''[[Darkness at Noon]]'' made him financially comfortable, Koestler often earned his living as a journalist and foreign correspondent, trading on his ability to write quickly in several languages, and to acquire with facility a working knowledge of a new language. He wrote for a variety of newspapers, including ''Vossische Zeitung'' (science editor) and ''B.Z. am Mittag'' (foreign editor) in the 1920s. In the early 1930s, he worked for the Ullstein publishing group in [[Berlin]] and did freelance writing for the French press.
21009
21010 While covering the [[Spanish Civil War]], in [[1937]], he was captured and held for several months by the [[Falange|Falangists]] in [[MÃĄlaga]], until the [[United Kingdom|British]] Foreign Office negotiated his release. His ''[[Spanish Testament]]'' records these experiences, which he soon transformed into his classic prison novel ''[[Darkness at Noon]]''. After his release from Spanish detention, Koestler worked for the ''News Chronicle'', then edited ''Die Zukunft'' with [[Willi MÃŧnzenberg]], an anti-Nazi, anti-Stalinist German language paper based in [[Paris]], founded in [[1938]]. During and after [[WWII]], he wrote for a number of English and American papers, including ''The Sunday Telegraph'', on various subjects.
21011
21012 ===Science===
21013 During the last 30 years of his life, Koestler wrote extensively on science and scientific practice. The [[Post-Modernism|post-modernist]] scepticism colouring much of this writing tended to alienate most of the scientific community. A case in point is his 1971 book ''The Case of the Midwife Toad'' about the biologist [[Paul Kammerer]], who claimed to find experimental support for [[Jean-Baptiste Lamarck|Lamarckian inheritance]].
21014
21015 [[Mysticism]] and a fascination with the [[paranormal]] imbued much of his later work, and greatly influenced his personal life. He left a substantial part of his estate to establish the Koestler Institute at the [[University of Edinburgh]] dedicated to the study of [[Parapsychology|paranormal]] phenomena. His ''The Roots of Coincidence'' centered on yet another line of unconventional research by Paul Kammerer, this time his claim of a quantum theory of coincidence or [[synchronicity]], a theory Koestler evaluated in light of the writings of [[Carl Jung]]. More controversial were Koestler's studies of [[levitation]] and [[telepathy]].
21016
21017 ===Judaism===
21018 Although a lifelong atheist, Koestler's ancestry was Jewish. His biographer [[David Cesarani]] has claimed that Koestler deliberately disowned his Jewish ancestry.
21019
21020 Koestler's book ''[[The Thirteenth Tribe]]'' advanced the controversial thesis that [[Ashkenazi]] Jews are not descended from the Israelites of antiquity, but from the [[Khazars]], a [[Turkic]] people in the [[Caucasus]] who converted to [[Judaism]] in the [[8th century]] and were later forced to move westwards into current [[Russia]], [[Ukraine]] and [[Poland]]. Koestler stated that part of his intent in writing ''The Thirteenth Tribe'' was to defuse [[anti-Semitism]] by undermining the identification of European Jews with Biblical Jews, with the hope of rendering anti-Semitic epithets such as &quot;Christ killer&quot; inapplicable. Ironically, Koestler's thesis that Ashkenazi Jews are not Semitic has become an important claim of many anti-Semitic groups. Some [[Palestinian]]s have eagerly seized upon this thesis, believing that to identify most Jews as non-Semites seriously undermines their historical claim to the [[land of Israel]]. The thesis of ''The Thirteenth Tribe'' has since been criticized. To date, the genetic evidence has been inconclusive. Some researchers claim to find a Middle Eastern genetic element in virtually all Ashkenazim. Others note both Turkic words and Turkic genetic markers in these populations. But the usefulness of genetic markers in determining ancestry can be problematic; for instance, Ashkenazim also display a high level of similarity to the genetic markers of [[Khoisan]] [[Bushmen]] in Southern Africa. A thorough review of the scientific literature can be found at [http://www.khazaria.com/ Khazaria.com].
21021
21022 When Koestler resided in Palestine during the 1920s, he lived on a [[kibbutz]], an experience forming the basis of his unfinished ''Thieves in the Night''. His view of [[Israel]] was that it would never be destroyed, short of a second [[Shoah]]. He supported the statehood of Israel, but opposed a diaspora Jewish culture. In an interview published in the ''London Jewish Chronicle'' around the time of Israel's founding, Koestler asserted that all Jews should either migrate to Israel, or assimilate completely into their local cultures. Koestler was also no dogmatic Zionist; for instance, he proposed that Israel drop the [[Hebrew alphabet]] for the [[Roman alphabet|Roman]].
21023
21024 == Cultural influence ==
21025 In his younger days, the [[singer]] [[Sting (musician)|Sting]] was an avid reader of Koestler. His band of the time, [[The Police]] were to name one of their albums ''[[Ghost in the Machine]]'' after one of Koestler's books. The title ''[[Synchronicity (album)|Synchronicity]]'' was also inspired by Koestler's ''[[The Roots of Coincidence]]'', which mentions [[Carl Jung]]'s [[synchronicity|theory]] of the same name. Koestler knew little about the burgeoning [[New Wave music]] scene, and is alleged to have said:
21026
21027 &lt;blockquote&gt; Look at this. Did you ever see a magazine called the ''New Musical Express''? It turns out there is a pop group called [[The Police]] - I don't know why they are called that, presumably to distinguish them from the punks - and they've made an album of my essay ''The Ghost in the Machine''. I didn't know anything about it until my clipping agency sent me a review of the record. &lt;/blockquote&gt;
21028
21029 The [[cyberpunk]] [[manga]] and [[anime]] series ''[[Ghost in the Shell]]'' was also inspired by Koestler's ''The Ghost in the Machine''.
21030
21031 == Bibliography ==
21032 An excellent introduction to Koestler's writing and thought is the following anthology of passages from many of his books, described as &quot;A selection from 50 years of his writings, chosen and with new commentary by the author&quot;:
21033 *1980. ''[[Bricks to Babel]]''. Random House, ISBN 0394518977
21034
21035
21036 ===Autobiography ===
21037 *1952. ''[[Arrow in the Blue|Arrow In The Blue: The First Volume Of An Autobiography, 1905-31]]'', 2005 reprint, ISBN 0099490676
21038 *1954. ''[[The Invisible Writing: The Second Volume Of An Autobiography, 1932-40]]'', 1984 reprint, ISBN 081286218X
21039 *1937. ''[[Spanish Testament]]''.
21040 *1941. ''[[Scum of the Earth (book)|Scum of the Earth]]''.
21041 *1984. ''[[Stranger on the Square]]''.
21042
21043 The books ''The Lotus and the Robot'', ''The God that Failed'', and ''Von Weissen Nächten und Roten Tagen'', as well as his numerous essays, all contain autobiographical information.
21044
21045 ===Biographies===
21046 * Atkins, J., 1956. ''Arthur Koestler''.
21047 * Buckard, Christian G., 2004. ''Arthur Koestler: Ein extremes Leben 1905-1983''. ISBN 3406521770.
21048 * [[David Cesarani]], 1998. ''Arthur Koestler: The Homeless Mind''. ISBN 0684867206.
21049 * Hamilton, Iain, 1982. ''Koestler: A Biography''. ISBN 0025476602.
21050 * Koestler, Mamaine, 1985. ''Living with Koestler''. ISBN 0297785311 or ISBN 0312490291.
21051 * Levene, M., 1984. ''Arthur Koestler''. ISBN 080446412X.
21052 * Mikes, George, 1983. ''Arthur Koestler: The Story of a Friendship''. ISBN 0233976124.
21053 * Pearson, S. A., 1978. ''Arthur Koestler''. ISBN 0805766995.
21054
21055 [[Langston Hughes]]'s autobiography also documents their meeting in [[Turkestan]] during the [[Soviet]] era.
21056
21057 === Books by Koestler (excluding autobiography) ===
21058 *1933. ''Von Weissen Nächten und Roten Tagen''. Very difficult to find.
21059 *1935. ''The Good Soldier Schweik Goes to War Again....'' Unfinished and unpublished.
21060 *1937. ''L'Espagne ensanglantÊe''.
21061 *1939. ''[[The Gladiators (book)|The Gladiators]]'', 1967 reprint, ISBN 0025653202. A novel on the revolt of [[Spartacus]].
21062 *1940. ''[[Darkness at Noon]]'', ISBN 0099424916
21063 *1942. ''[[Dialogue with Death]]''. Abridgement of ''Spanish Testament''.
21064 *1943. ''[[Arrival and Departure]]'', novel. 1990 reprint, ISBN 0140181199
21065 *1945. ''[[The Yogi and the Commissar]] and other essays''.
21066 *1945. ''[[Twilight Bar]]''. Drama.
21067 *1946. ''[[Thieves in the Night (novel)]]''.
21068 *1949. ''The Challenge of our Time''.
21069 *1949. ''[[Promise and Fulfilment]]: Palestine 1917-1949''.
21070 *1949. ''[[Insight and Outlook]]''.
21071 *1955. ''[[The Trail of the Dinosaur]] and other essays''.
21072 *1956. ''[[Reflections on Hanging]]''.
21073 *1959. ''[[The Sleepwalkers]]: A History of Man's Changing Vision of the Universe''. ISBN 0140192468
21074 *1960. ''The Watershed: A Biography of Johannes Kepler''. Based on ''The Sleepwalkers''. ISBN 0385095767
21075 *1960. ''[[Lotus and the Robot]]'', ISBN 0090598911. Koestler's journey to India and Japan, and his assessment of East and West.
21076 *1961. ''Control of the Mind''.
21077 *1961. ''Hanged by the Neck''. Reuses some material from ''Reflections on Hanging''.
21078 *1963. ''[[Suicide of a Nation]]''.
21079 *1964. ''[[The Act of Creation]]''.
21080 *1967. ''[[The Ghost in the Machine]]''. Penquin reprint 1990: ISBN 0140191925.
21081 *1968. ''[[Drinkers of Infinity]]: Essays 1955-1967''.
21082 *1970. ''The Age of Longing'', ISBN 0091045207.
21083 *1971. ''[[The Case of the Midwife Toad]]'', ISBN 0394718232. An account of [[Paul Kammerer]]'s research on [[Lamarckism|Lamarckian evolution]] and what he called &quot;serial coincidences&quot;.
21084 *1972. ''[[The Roots of Coincidence]]'', ISBN 0394719344. Sequel to ''The Case of the Midwife Toad''.
21085 *1972. ''[[The Call Girls (play)|The Call Girls]]: A Tragicomedy with a Prologue and Epilogue'' (play).
21086 *1973. ''The Lion and the Ostrich''.
21087 *1974. ''[[The Heel of Achilles (essays)|The Heel of Achilles]]: Essays 1968-1973'', ISBN 0394495969.
21088 *1976. ''[[The Thirteenth Tribe]]: The Khazar Empire and Its Heritage'', ISBN 0394402847.
21089 *1976. ''Astride the Two Cultures: Arthur Koestler at 70'', ISBN 0394400631.
21090 *1977. ''Twentieth Century Views: A Collection of Critical Essays'', ISBN 0130492132.
21091 *1978. ''[[Janus: A Summing Up]]'', ISBN 0394500520. Sequel to ''The Ghost in the Machine''
21092 *1981. ''[[Kaleidoscope (Koestler)|Kaleidoscope]]''. Essays from ''Drinkers of Infinity'' and ''The Heel of Achilles'', plus later pieces and stories.
21093
21094 ===Writings as a contributor===
21095 *''Encyclopaedia of Sexual Knowledge'' (1935)
21096 *''Foreign Correspondent'' (1939),
21097 *''The Practice of Sex'' (1940)
21098 *''[[The God That Failed]]'' (1950) (collection of testimonies by ex-Communists)
21099 *&quot;[[Attila, the poet]]&quot; (1954) (Encounter ; ; 1954.2 (5)). On loan at the UCL library of the School of Slavonic &amp; Eastern European Studies.
21100 *[http://library.ucl.ac.uk:80/F/482FU6EL2H2D5M313X59FNURXIJEXB9DEH6UNIIMKH4BHVDSG1-00222?func=item-global&amp;doc_library=UCL01&amp;doc_number=000806339&amp;year=&amp;volume=&amp;sub_library=SSEES UCL library online]
21101 *''Beyond Reductionism: The Alpbach Symposium. New Perspectives in the Life Sciences'' (co-editor with J.R. Smythies, 1969), ISBN 0807015350
21102 *''[[The Challenge of Chance]]: A Mass Experiment in Telepathy and Its Unexpected Outcome'' (1973)
21103 *''Life After Death'', (co-editor, 1976)
21104 *''[[Humour]] and [[Wit]]. I'': [[EncyclopÃĻdia Britannica]]. 15th ed. vol. 9.([[1983]])
21105 **&lt;small&gt;[http://www.britannica.com/eb/article?tocId=9106291 humour - EncyclopÃĻdia Britannica](by Arthur Koestler)&lt;/small&gt;
21106
21107 ==Quotes==
21108
21109 &quot;Courage is never to let your actions be influenced by your fears.&quot;
21110
21111 &quot;Creative activity could be described as a type of learning process where teacher and pupil are located in the same individual.&quot;
21112
21113 &quot;Nothing is more sad than the death of an illusion.&quot;
21114
21115 &quot;Prometheus is reaching out for the stars with an empty grin on his face.&quot;
21116
21117 &quot;Scientists are peeping toms at the keyhole of eternity.&quot;
21118
21119 &quot;The more original a discovery, the more obvious it seems afterwards.&quot;
21120
21121 &quot;The most persistent sound which reverberates through man's history is the beating of war drums.&quot;
21122
21123 &quot;The principle mark of genius is not perfection but originality, the opening of new frontiers.&quot;
21124
21125 &quot;True creativity often starts where language ends.&quot;
21126
21127 == External links ==
21128 {{wikiquote}}
21129 *[http://moebius.psy.ed.ac.uk/ Koestler Parapsychology Unit] - Koestler and his third spouse left a large sum of money for research into parapsychology: this funded, amongst other things, the Koestler Parapsychology Unit at Edinburgh University
21130 *[http://koestlerarthur.fw.hu http://koestlerarthur.fw.hu]
21131 *[http://www.draken.com/ahellas/koestler.html Arthur Koestler Project]
21132
21133
21134 [[Category:1905 births|Koestler, Arthur]]
21135 [[Category:1983 deaths|Koestler, Arthur]]
21136 [[Category:Commanders of the British Empire|Koestler, Arthur]]
21137 [[Category:Hungarian philosophers|Koestler, Arthur]]
21138 [[Category:Hungarian novelists|Koestler, Arthur]]
21139 [[Category:Hungarian writers|Koestler, Arthur]]
21140 [[Category:Khazar studies|Koestler]]
21141 [[Category:Writers who committed suicide|Koestler]]
21142
21143
21144 [[de:Arthur Koestler]]
21145 [[es:Arthur Koestler]]
21146 [[eo:Arthur KOESTLER]]
21147 [[fr:Arthur Koestler]]
21148 [[he:אר×Ēור קסטלר]]
21149 [[hu:Arthur Koestler]]
21150 [[ja:ã‚ĸãƒŧã‚ĩãƒŧãƒģã‚ąã‚šãƒˆãƒŠãƒŧ]]
21151 [[pl:Arthur Koestler]]
21152 [[ro:Arthur Koestler]]
21153 [[ru:КĐĩŅŅ‚ĐģĐĩŅ€, АŅ€Ņ‚ŅƒŅ€]]
21154 [[sk:Arthur Koestler]]</text>
21155 </revision>
21156 </page>
21157 <page>
21158 <title>Atlantic Ocean</title>
21159 <id>698</id>
21160 <revision>
21161 <id>41796941</id>
21162 <timestamp>2006-03-01T20:38:45Z</timestamp>
21163 <contributor>
21164 <username>Chcknwnm</username>
21165 <id>644872</id>
21166 </contributor>
21167 <comment>Reverted edits by [[Special:Contributions/209.209.193.99|209.209.193.99]] to last version by Cactus.man</comment>
21168 <text xml:space="preserve">{{redirect|Atlantic}}
21169 {{Five oceans}}
21170 The '''Atlantic Ocean''' is [[Earth]]'s second-largest [[ocean]], covering approximately one-fifth of its surface. The ocean's name, derived from [[Greek mythology]], means the &quot;[[Sea]] of [[Atlas (mythology)|Atlas]]&quot;.
21171
21172 This ocean occupies an elongated, S-shaped basin extending in a north-south direction and is divided into the North Atlantic and South Atlantic by [[Equatorial Counter Current|equatorial counter current]]s at about 8° north [[latitude]]. Bounded by the [[Americas]] on the west and [[Europe]] and [[Africa]] on the east, the Atlantic is linked to the [[Pacific Ocean]] by the [[Arctic Ocean]] on the north and the [[Drake Passage]] on the south. An artificial connection between the Atlantic and Pacific is also provided by the [[Panama Canal]]. On the east, the dividing line between the Atlantic and the [[Indian Ocean]] is the 20° east meridian, running south from [[Cape Agulhas]] to [[Antarctica]]. The Atlantic is separated from the [[Arctic Ocean]] by a line from [[Greenland]] to northwestern [[Iceland]] and then from northeastern Iceland to southernmost tip of [[Spitsbergen]] and then to [[North Cape, Norway|North Cape]] in northern [[Norway]].&lt;ref&gt;[http://ioc.unesco.org/oceanteacher/OceanTeacher2/01_GlobOcToday/03_GeopolOc/s23_1953.pdf ''Limits of Oceans and Seas'']. International Hydrographic Organization Special Publication No. 23, 1953.&lt;/ref&gt;
21173
21174 [[Image:Ireland-AtlanticOceanwithAranIsland.jpg|thumb|left|200px|The Atlantic Ocean as seen from the west coast of [[Ireland]] on a fair day.]]
21175 Covering approximately 20% of Earth's surface, the Atlantic Ocean is second only to the Pacific in size. With its adjacent seas it occupies an area of about [[1 E14 m²|106,400,000]] [[square kilometre]]s (41,100,000 [[square mile]]s); without them, it has an area of [[1 E13 m²|82,400,000 square kilometres]] (31,800,000 sq mi). The land area that drains into the Atlantic is four times that of either the Pacific or Indian oceans. The volume of the Atlantic Ocean with its adjacent seas is [[1 E15 mÂŗ|354,700,000]] [[cubic kilometre]]s (85,100,000 [[cubic mile|cu mi]]) and without them 323,600,000 cubic kilometres (77,640,000 cu mi).
21176
21177 The average depths of the Atlantic, with its adjacent seas, is 3,332 [[metre]]s (10,932 [[foot (unit of length)|ft]]); without them it is 3,926 metres (12,881 ft). The greatest depth, 8,605 metres (28,232 ft), is in the [[Puerto Rico Trench]]. The width of the Atlantic varies from [[1 E6 m|2,848]] [[kilometre]]s (1,770 [[mile|miles]]) between Brazil and [[Liberia]] to about [[1 E6 m|4,830 kilometes]] (3,000 mi) between the United States and northern Africa.
21178
21179 The Atlantic Ocean has irregular coasts indented by numerous bays, gulfs, and seas. These include the [[Caribbean Sea]], [[Gulf of Mexico]], [[Gulf of St. Lawrence]], [[Mediterranean Sea]], [[Black Sea]], [[North Sea]], [[Labrador Sea]], [[Baltic Sea]], and [[Norwegian Sea|Norwegian]]-[[Greenland Sea]]. Islands in the Atlantic Ocean include [[Faroe Islands]], [[Greenland]], [[Iceland]], [[Rockall]], [[Great Britain]], [[Ireland]], [[Fernando de Noronha]], the [[Azores]], the [[Madeira Islands]], the [[Canaries]], the [[Cape Verde]] Islands, [[Sao Tome e Principe]], [[Newfoundland]], [[Bermuda]], the [[West Indies]], [[Ascension Island|Ascension]], [[Saint Helena (Britain)|St. Helena]], [[Trindade Island|Trindade]], [[Martin Vaz]], [[Tristan da Cunha]], the [[Falkland Islands]], and [[South Georgia Island]].
21180 [[Image:Atlantic_Ocean.png|right|Atlantic Ocean]]
21181 ==Ocean bottom==
21182 The principal feature of the bottom [[topography]] of the Atlantic Ocean is a great submarine mountain range called the [[Mid-Atlantic Ridge]]. It extends from [[Iceland]] in the north to approximately 58° south latitude, reaching a maximum width of about 1,600 kilometres (1,000 mi). A great [[rift valley]] also extends along the ridge over most of its length. The depth of water over the ridge is less than 2,700 metres (8,900 ft) in most places, and several mountain peaks rise above the water, forming islands. The South Atlantic Ocean has an additional submarine ridge, the Walvis Ridge.
21183
21184 The Mid-Atlantic Ridge separates the Atlantic Ocean into two large [[trough (geology)|trough]]s with depths averaging between 3,700 and 5,500 metres (12,000 and 18,000 ft). Transverse ridges running between the continents and the Mid-Atlantic Ridge divide the ocean floor into numerous basins. Some of the larger basins are the Guiana, North American, Cape Verde, and Canaries basins in the North Atlantic. The largest South Atlantic basins are the Angola, Cape, Argentina, and Brazil basins.
21185
21186 The deep ocean floor is thought to be fairly flat, although numerous [[seamount]]s and some [[guyot]]s exist. Several deeps or trenches are also found on the ocean floor. The Puerto Rico Trench, in the North Atlantic, is the deepest. The [[Laurentian Abyss]] is found off the eastern coast of Canada. In the south Atlantic, the [[South Sandwich Trench]] reaches a depth of 8,428 metres (27,651 ft). A third major trench, the [[Romanche Trench]], is located near the equator and reaches a depth of about 7,454 metres (24,455 ft). The shelves along the margins of the continents constitute about 11% of the bottom topography. In addition, a number of deep channels cut across the continental rise.
21187
21188 Ocean [[sediment]]s are composed of terrigenous, pelagic, and authigenic material. Terrigenous deposits consist of sand, mud, and rock particles formed by erosion, weathering, and volcanic activity on land and then washed to sea. These materials are largely found on the [[continental shelf|continental shelves]] and are thickest off the mouths of large rivers or off desert coasts. Pelagic deposits, which contain the remains of organisms that sink to the ocean floor, include red clays and [[Globigerinida|Globigerina]], [[pteropod]], and siliceous oozes. Covering most of the ocean floor and ranging in thickness from 60 metres to 3,300 metres (200 ft to 11,000 ft), they are thickest in the convergence belts and in the zones of upwelling. Authigenic deposits consist of such materials as [[manganese nodule]]s. They occur where [[sediment]]ation proceeds slowly or where currents sort the deposits.
21189
21190 ==Water characteristics==
21191 &lt;!-- Unsourced image removed: [[Image:Capespearnew.jpg|250px|thumb|right|The Atlantic Ocean at [[Cape Spear]], Newfoundland]] --&gt;
21192 The [[salinity]] of the surface waters in the open ocean ranges from 33 to 37 parts per thousand by mass and varies with latitude and season. Although the minimum salinity values are found just north of the equator, in general the lowest values are in the high latitudes and along coasts where large rivers flow into the ocean. Maximum salinity values occur at about 25° north latitude. Surface salinity values are influenced by evaporation, precipitation, river inflow, and melting of sea ice.
21193
21194 Surface water temperatures, which vary with latitude, current systems, and season and reflect the latitudinal distribution of solar energy, range from less than −2&amp;nbsp;°[[Celsius|C]] to 29&amp;nbsp;°C (28&amp;nbsp;°[[Fahrenheit|F]] to 84&amp;nbsp;°F). &lt;!-- less than 2 is not −2, but assuming less than -2 intended, degree signs butt to letter with space from number --&gt; Maximum temperatures occur north of the equator, and minimum values are found in the polar regions. In the middle latitudes, the area of maximum temperature variations, values may vary by 7&amp;nbsp;°C to 8&amp;nbsp;°C (13&amp;nbsp;°F to 15&amp;nbsp;°F).
21195
21196 The Atlantic Ocean consists of four major water masses. The North and South Atlantic central waters constitute the surface waters. The sub-Antarctic intermediate water extends to depths of 1,000 metres (3,300 ft). The North Atlantic deep water reaches depths of as much as 4,000 metres (13,200 ft). The [[Antarctica|Antarctic]] bottom water occupies ocean basins at depths greater than 4,000 metres (13,200 ft).
21197
21198 Within the North Atlantic, ocean currents isolate a large elongated body of water known as the [[Sargasso Sea]], in which the salinity is noticeably higher than average. The Sargasso Sea contains large amounts of [[seaweed]], and is also the spawning ground for the [[European eel]].
21199
21200 Due to the [[Coriolis effect]], water in the North Atlantic circulates in a clockwise direction, whereas water circulation in the South Atlantic is counter clockwise. The South [[tide]]s in the Atlantic Ocean are semi-[[diel|diurnal]]; that is, two high tides occur during each 24 lunar hours. The tides are a general wave that moves from south to north. In latitudes above 40° north some east-west oscillation occurs.
21201
21202 ==Climate==
21203 [[Image:Atlantic hurricane graphic.gif|frame|right|Waves in the trade winds in the Atlantic Ocean — areas of converging winds that move along the same track as the prevailing wind — create instabilities in the atmosphere that may lead to the formation of hurricanes.]]
21204
21205 The climate of the Atlantic Ocean and adjacent land areas is influenced by the temperatures of the surface waters and water currents as well as the winds blowing across the waters. Because of the oceans' great capacity for retaining heat, maritime climates are moderate and free of extreme seasonal variations. [[Precipitation (meteorology)|Precipitation]] can be approximated from coastal weather data and air temperature from the water temperatures. The oceans are the major source of the atmospheric moisture that is obtained through evaporation. Climatic zones vary with latitude; the warmest climatic zones stretch across the Atlantic north of the equator. The coldest zones are in the high latitudes, with the coldest regions corresponding to the areas covered by sea ice. Ocean currents contribute to climatic control by transporting warm and cold waters to other regions. Adjacent land areas are affected by the winds that are cooled or warmed when blowing over these currents. The [[Gulf Stream]], for example, warms the atmosphere of the British Isles and northwestern Europe, and the cold water currents contribute to heavy fog off the coast of northeastern Canada (the [[Grand Banks]] area) and the northwestern coast of Africa. In general, winds tend to transport moisture and warm or cool air over land areas. [[tropical cyclone|Hurricane]]s develop in the southern part of the North Atlantic Ocean.
21206
21207 ==History and economy==
21208 The Atlantic Ocean appears to be the second youngest of the world's oceans, after the [[Southern Ocean]]. Evidence indicates that it did not exist prior to 180 million years ago, when the continents that formed from the breakup of the ancestral supercontinent, [[Pangaea]], were being rafted apart by the process of seafloor spreading. The Atlantic has been extensively explored since the earliest settlements were established along its shores. The [[Vikings]], [[Portugal|Portuguese]], and [[Christopher Columbus]] were the most famous among its early explorers. After Columbus, European exploration rapidly accelerated, and many new trade routes were established. As a result, the Atlantic became and remains the major artery between Europe and the Americas (known as [[transatlantic]] trade). Numerous scientific explorations have been undertaken, including those by the German Meteor expedition, Columbia University's Lamont Geological Observatory, and the United States Navy [[Hydrographic office#United States|Hydrographic Office]].
21209
21210 The ocean has also contributed significantly to the development and economy of the countries around it. Besides its major &quot;[[transatlantic]]&quot; transportation and communication routes, the Atlantic offers abundant petroleum deposits in the [[sedimentary rock]]s of the continental shelves and the world's richest fishing resources, especially in the waters covering the shelves. The major species of fish caught are [[cod]], [[haddock]], [[hake]], [[herring]], and [[mackerel]]. The most productive areas include the [[Grand Banks]] of [[Newfoundland]], the shelf area off [[Nova Scotia]], [[Georges Bank]] off [[Cape Cod]], the Bahama Banks, the waters around [[Iceland]], the [[Irish Sea]], the [[Dogger Bank]] of the [[North Sea]], and the Falkland Banks. [[Eel]], [[lobster]], and [[whale]]s have also been taken in great quantities. All these factors, taken together, tremendously enhance the Atlantic's great commercial value. Because of the threats to the ocean environment presented by oil spills, [[marine debris]], and the incineration of toxic wastes at sea, various international treaties exist to reduce some forms of pollution.
21211
21212 *In [[1858]], the first [[Transatlantic telegraph cable]] was laid by [[Cyrus Field]].
21213 *In [[1919]], the American [[NC-4]] became the first [[airplane]] to cross the Atlantic (though it made a couple of landings on islands along the way).
21214 *Later in [[1919]], a British airplane piloted by [[Alcock and Brown]] made the first non-stop transatlantic flight from [[Newfoundland]] to [[Ireland]].
21215 *In [[1921]], the [[United Kingdom|British]] were the first to cross the North Atlantic in an [[airship]].
21216 *In [[1922]], the [[Portugal|Portuguese]] were the first to cross the South Atlantic in an [[airship]].
21217 *The first transatlantic [[telephone]] call was made on [[January 7]], 1927.
21218 *In [[1927]], [[Charles Lindbergh]] made the first solo non-stop transatlantic flight in an airplane (between [[New York City]] and [[Paris]]).
21219 *After rowing for 81 days and 2,962 miles, on [[December 3]], [[1999]] [[Tori Murden]] became the first woman to cross the Atlantic Ocean by [[rowboat]] alone when she reached [[Guadeloupe]] from the [[Canary Islands]].
21220
21221 '''Location:'''
21222 body of water between [[Africa]], [[Europe]], the [[Southern Ocean]], and the [[Americas]]
21223
21224 '''[[Geographic coordinates]]:''' {{coor dm|0|00|N|25|00|W|}}
21225
21226 '''Map references:'''
21227 [[World]]
21228
21229 '''Area:'''
21230 * ''total:'' [[1 E13 m²|76.762 million km²]] (29.637 million mi²)
21231 * ''note:'' includes the [[Baltic Sea]], [[Black Sea]], [[Caribbean Sea]], [[Davis Strait]], [[Denmark Strait]], part of the [[Drake Passage]], [[Gulf of Mexico]], [[Labrador Sea]], [[Mediterranean Sea]], [[North Sea]], [[Norwegian Sea]], almost all of the [[Scotia Sea]], and other tributary water bodies
21232
21233 '''Area - comparative:'''
21234 slightly less than 6.5 times the size of the [[United States]]
21235
21236 '''Coastline:'''
21237 111,866 km (69,510 mi)
21238
21239 '''Climate:'''
21240 Tropical cyclones ([[hurricane]]s) develop anywhere from off the coast of Africa near [[Cape Verde]] to the [[Windward Islands]] and move westward into the [[Caribbean Sea]] or up the east coast of North America; hurricanes can occur from May to December, but are most frequent from late July to early November. Storms are common in the North Atlantic during northern winters, making ocean crossings more difficult and dangerous.
21241
21242 ==Terrain==
21243 The surface is usually covered with sea ice in the [[Labrador Sea]], [[Denmark Strait]], and [[Baltic Sea]] from October to June. There is a clockwise warm-water gyre (broad, circular system of currents) in the northern Atlantic, and a counter-clockwise warm-water gyre in the southern Atlantic. The ocean floor is dominated by the [[Mid-Atlantic Ridge]], a rugged north-south centerline for the entire Atlantic basin, first discovered by the [[Challenger Expedition]].
21244
21245 ===Elevation extremes===
21246 *''lowest point:'' [[Milwaukee Deep]] in the [[Puerto Rico Trench]] -8,605 metres (28,232 ft; 5.3 mi)
21247 *''highest point:'' sea level 0 metres
21248
21249 ===Natural resources===
21250 [[Petroleum]] and [[gas]] fields, [[fish]], marine mammals ([[seal (mammal)|seal]]s and [[whale]]s), sand and gravel aggregates, [[placer deposit]]s, polymetallic nodules, precious stones
21251
21252 ===Natural hazards===
21253 [[Iceberg]]s are common in the [[Davis Strait]], [[Denmark Strait]], and the northwestern Atlantic Ocean from February to August and have been spotted as far south as [[Bermuda]] and the [[Madeira Islands]]. Ships are subject to [[superstructure#Engineering concept|superstructure]] [[icing (nautical)|icing]] in extreme northern Atlantic from October to May. Persistent fog can be a maritime hazard from May to September. So can hurricanes north of the equator (May to December).
21254
21255 The [[Bermuda Triangle]] is popularly believed to be the site of numerous aviation and shipping incidents, due to unexplained and supposedly mysterious causes, but coastguard records do not support this belief.
21256
21257 == Current environmental issues ==
21258 Endangered marine species include the [[manatee]], [[seal (mammal)|seal]]s, [[sea lion]]s, [[turtle]]s, and [[whale]]s. Drift net fishing is killing [[dolphin]]s, [[albatross]]es and other seabirds ([[petrel]]s, [[auk]]s), hastening the decline of fish stocks and contributing to international disputes. There is municipal sludge pollution off the eastern United States, southern [[Brazil]], and eastern [[Argentina]], oil pollution in the [[Caribbean Sea]], [[Gulf of Mexico]], [[Lake Maracaibo]], [[Mediterranean Sea]], and [[North Sea]], and industrial waste and municipal sewage pollution in the Baltic Sea, North Sea, and Mediterranean Sea.
21259
21260 == Notes on geography ==
21261 Major chokepoints include the [[Strait of Gibraltar]] and the [[Panama Canal]]; strategic straits include the [[Strait of Dover]], [[Straits of Florida]], [[Mona Passage]], The Sound ([[Oresund]]), and [[Windward Passage]]; the [[Equator]] divides the Atlantic Ocean into the North Atlantic Ocean and South Atlantic Ocean (previously known as the [[Ethiopic Ocean]]). During the [[Cold War]] the so called [[Greenland]]-[[Iceland]]-[[United Kingdom|UK]] (GIUK) Gap was a major strategic concern, the seabed in that area was laid with extensive [[hydrophone]] systems to track Soviet [[submarine]]s.
21262
21263 ==Ports and harbours==
21264 *[[Aberdeen]] ([[United Kingdom]])
21265 *[[Abidjan]] ([[Côte d'Ivoire]])
21266 *[[A CoruÃąa]] ([[Spain]])
21267 *[[Accra]] ([[Ghana]])
21268 *[[Ålesund]] ([[Norway]])
21269 *[[Amsterdam]] ([[Netherlands]])
21270 *[[Antwerp]] ([[Belgium]])
21271 *[[Bahia Blanca]] ([[Argentina]])
21272 *[[Baltimore]] ([[United States]])
21273 *[[Banjul]] ([[The Gambia]])
21274 *[[Belfast]] ([[Northern Ireland]])
21275 *[[Bergen, Norway|Bergen]] ([[Norway]])
21276 *[[Bissau]] ([[Guinea-Bissau]])
21277 *[[Bodø]] ([[Norway]])
21278 *[[Bordeaux]] ([[France]])
21279 *[[Boston, Massachusetts|Boston]] ([[United States]])
21280 *[[Bremen (city)|Bremen]] ([[Germany]])
21281 *[[Brest, France|Brest]] ([[France]])
21282 *[[Bristol]] ([[England]])
21283 *[[Cadiz]] ([[Spain]])
21284 *[[Cape Town]] ([[South Africa]])
21285 *[[Casablanca]] ([[Morocco]])
21286 *[[Cayenne]] ([[French Guiana]])
21287 *[[Charleston, South Carolina|Charleston]] ([[United States]])
21288 *[[Charlottetown]] ([[Canada]])
21289 *[[Cherbourg]] ([[France]])
21290 *[[Conakry]] ([[Guinea]])
21291 *[[Cork]] ([[Republic of Ireland]])
21292 *[[Cotonou]] ([[Benin]])
21293 *[[Dakar]] ([[Senegal]])
21294 *[[Douala]] ([[Cameroon]])
21295 *[[Dublin]] ([[Republic of Ireland]])
21296 *[[Dunkirk, France|Dunkirk]] ([[France]])
21297 *[[Edinburgh]] ([[Scotland]])
21298 *[[Port Everglades|Everglades, Port]] ([[United States]])
21299 *[[Fortaleza]] ([[Brazil]])
21300 *[[Georgetown, Guyana|Georgetown]] ([[Guyana]])
21301 *[[Glasgow]] ([[Scotland]])
21302 *[[Gothenburg]]([[Sweden]])
21303 *[[Hamburg]] ([[Germany]])
21304 *[[Halifax Regional Municipality|Halifax]] ([[Canada]])
21305 *[[Jacksonville, Florida|Jacksonville]] ([[United States]])
21306 *[[Lagos]] ([[Nigeria]])
21307 *[[Las Palmas]] ([[Spain]])
21308 *[[Le Havre]] ([[France]])
21309 *[[Libreville]] ([[Gabon]])
21310 *[[Lisbon]] ([[Portugal]])
21311 *[[Liverpool]] ([[England]])
21312 *[[LomÊ]] ([[Togo]])
21313 *[[London]] ([[England]])
21314 *[[Luanda]] ([[Angola]])
21315 *[[MaceiÃŗ]] ([[Brazil]])
21316 *[[Malabo]] ([[Equatorial Guinea]])
21317 *[[Port of Miami-Dade|Miami]] ([[United States]])
21318 *[[Monrovia]] ([[Liberia]])
21319 *[[Montreal|MontrÊal]] ([[Canada]])
21320 *[[Morehead City, North Carolina|Morehead City]] ([[United States]])
21321 *[[Nantes]] ([[France]])
21322 *[[Nantucket]] ([[United States]])
21323 *[[Narvik]] ([[Norway]])
21324 *[[New Haven, Connecticut|New Haven]] ([[United States]])
21325 *[[New London, Connecticut|New London]] ([[United States]])
21326 *[[New York]] ([[United States]])
21327 *[[Newcastle upon Tyne]] ([[England]])
21328 *[[Newport News]] ([[United States]])
21329 *[[Norfolk, Virginia|Norfolk]] ([[United States]])
21330 *[[Nouakchott]] ([[Mauritania]])
21331 *[[Oslo]] ([[Norway]])
21332 *[[Ostend]] ([[Belgium]])
21333 *[[Port of Palm Beach|Palm Beach]] ([[United States]])
21334 *[[Paramaribo]] ([[Suriname]])
21335 *[[Peterhead]] ([[United Kingdom]])
21336 *[[Philadelphia, Pennsylvania|Philadelphia]] ([[United States]])
21337 *[[Port Harcourt]] ([[Nigeria]])
21338 *[[Portland, Maine|Portland]] ([[United States]])
21339 *[[Porto]] ([[Portugal]])
21340 *[[Porto-Novo]] ([[Benin]])
21341 *[[Portsmouth]] ([[England]])
21342 *[[Portsmouth, New Hampshire|Portsmouth]] ([[United States]])
21343 *[[Providence, Rhode Island|Providence]] ([[United States]])
21344 *[[Puerto Cortes]] ([[Honduras]])
21345 *[[Quebec City, Quebec|QuÊbec]] ([[Canada]])
21346 *[[Rabat]] ([[Morocco]])
21347 *[[Recife]] ([[Brazil]])
21348 *[[Reykjavík]] ([[Iceland]])
21349 *[[Rio de Janeiro]] ([[Brazil]])
21350 *[[Rotterdam]] ([[Netherlands]])
21351 *[[Salvador, Brazil|Salvador]] ([[Brazil]])
21352 *[[Saint-Nazaire]] ([[France]])
21353 *[[Santa Cruz de Tenerife]] ([[Spain]])
21354 *[[Santander, Spain|Santander]] ([[Spain]])
21355 *[[Santos (SÃŖo Paulo)|Santos]] ([[Brazil]])
21356 *[[Savannah, Georgia|Savannah]] ([[United States]])
21357 *[[Seville]] ([[Spain]])
21358 *[[Saint John, New Brunswick|Saint John]] ([[Canada]])
21359 *[[Sept-Îles]] ([[Canada]])
21360 *[[St. John's, Newfoundland and Labrador|St. John's]] ([[Canada]])
21361 *[[Southampton]] ([[England]])
21362 *[[Stavanger]] ([[Norway]])
21363 *[[Sydney, Nova Scotia|Sydney]] ([[Canada]])
21364 *[[Tangier]] ([[Morocco]])
21365 *[[Trois-Rivières]] ([[Canada]])
21366 *[[Tromsø]] ([[Norway]])
21367 *[[Trondheim]] ([[Norway]])
21368 *[[Vigo]] ([[Spain]])
21369 *[[VitÃŗria]] ([[Brazil]])
21370 *[[Walvis Bay]] ([[Namibia]])
21371 *[[Willemstad, Netherlands Antilles|Willemstad]] ([[Netherlands Antilles]])
21372 *[[Wilmington, North Carolina|Wilmington]] ([[United States]])
21373 *[[Yarmouth, Nova Scotia|Yarmouth]] ([[Canada]])
21374
21375 === Note on transportation ===
21376 The [[Saint Lawrence Seaway]] is an important waterway.
21377
21378 == References ==
21379 &lt;div style=&quot;font-size:85%;&quot;&gt;
21380 &lt;references/&gt;
21381 &lt;/div&gt;
21382
21383 Much of this article comes from the public domain site &lt;nowiki&gt;http://oceanographer.navy.mil/atlantic.html&lt;/nowiki&gt; ([[dead link]]). It is now accessible from the [[Internet Archive]] at http://web.archive.org/web/20020221215514/http%3a//oceanographer.navy.mil/atlantic.html.
21384 * Disclaimers for this website, including its status as a public domain resource, are recorded on the Internet Archive at http://web.archive.org/web/20020212021049/http%3a//oceanographer.navy.mil/warning.html.
21385
21386 ==External links==
21387 {{Commons|Atlantic Ocean}}
21388 * [http://dapper.pmel.noaa.gov/dchart/ NOAA In-situ Ocean Data Viewer] Plot and download ocean observations
21389 *[http://www.cia.gov/cia/publications/factbook/geos/zh.html CIA – The World Factbook – Atlantic Ocean]
21390
21391 [[Category:Atlantic Ocean]]
21392 [[Category:Oceans]]
21393
21394 [[af:Atlantiese Oseaan]]
21395 [[als:Atlantik]]
21396 [[ar:ØŖØˇŲ„ØŗŲŠ]]
21397 [[an:OziÃĄn Atlantico]]
21398 [[ast:OcÊanu AtlÃĄnticu]]
21399 [[bg:АŅ‚ĐģĐ°ĐŊŅ‚иŅ‡ĐĩŅĐēи ĐžĐēĐĩĐ°ĐŊ]]
21400 [[zh-min-nan:Tāi-se-iÃģâŋ]]
21401 [[be:АŅ‚ĐģŅĐŊŅ‚Ņ‹Ņ‡ĐŊŅ‹ Đ°ĐēŅ–ŅĐŊ]]
21402 [[bn:āĻ†āĻŸāĻ˛āĻžāĻ¨ā§āĻŸāĻŋāĻ• āĻŽāĻšāĻžāĻ¸āĻŽā§āĻĻā§āĻ°]]
21403 [[br:Meurvor atlantel]]
21404 [[ca:Oceà Atlàntic]]
21405 [[cv:АŅ‚ĐģĐ°ĐŊŅ‚иĐēĐ° ĐžĐēĐĩĐ°ĐŊĕ]]
21406 [[cs:AtlantskÃŊ oceÃĄn]]
21407 [[cy:Cefnfor Iwerydd]]
21408 [[da:Atlanterhavet]]
21409 [[de:Atlantischer Ozean]]
21410 [[et:Atlandi ookean]]
21411 [[el:ΑĪ„ÎģÎąÎŊĪ„ΚÎēĪŒĪ‚ ΊÎēÎĩÎąÎŊĪŒĪ‚]]
21412 [[es:OcÊano AtlÃĄntico]]
21413 [[eo:Atlantika Oceano]]
21414 [[eu:Atlantiar ozeano]]
21415 [[fa:اŲ‚یاŲ†ŲˆØŗ Ø§ØˇŲ„Øŗ]]
21416 [[fr:OcÊan Atlantique]]
21417 [[fy:Atlantyske Oseaan]]
21418 [[ga:An tAigÊan Atlantach]]
21419 [[gl:OcÊano AtlÃĄntico]]
21420 [[ko:대ė„œė–‘]]
21421 [[hr:Atlantski ocean]]
21422 [[io:Atlantiko]]
21423 [[id:Samudra Atlantik]]
21424 [[is:Atlantshaf]]
21425 [[it:Oceano Atlantico]]
21426 [[he:האוקיינוס האטלנטי]]
21427 [[kw:Keynvor Iwerydh]]
21428 [[la:Oceanus Atlanticus]]
21429 [[lt:Atlanto vandenynas]]
21430 [[li:Atlantische Oceaan]]
21431 [[hu:Atlanti-ÃŗceÃĄn]]
21432 [[mk:АŅ‚ĐģĐ°ĐŊŅ‚ŅĐēи ОĐēĐĩĐ°ĐŊ]]
21433 [[nl:Atlantische Oceaan]]
21434 [[nds:Atlantik]]
21435 [[ja:大čĨŋ洋]]
21436 [[no:Atlanterhavet]]
21437 [[nn:Atlanterhavet]]
21438 [[pl:Ocean Atlantycki]]
21439 [[pt:Oceano AtlÃĸntico]]
21440 [[ro:Oceanul Atlantic]]
21441 [[ru:АŅ‚ĐģĐ°ĐŊŅ‚иŅ‡ĐĩŅĐēиК ĐžĐēĐĩĐ°ĐŊ]]
21442 [[scn:Ocèanu Atlànticu]]
21443 [[simple:Atlantic Ocean]]
21444 [[sk:AtlantickÃŊ oceÃĄn]]
21445 [[sl:Atlantski ocean]]
21446 [[sr:АŅ‚ĐģĐ°ĐŊŅ‚ŅĐēи ĐžĐēĐĩĐ°ĐŊ]]
21447 [[fi:Atlantin valtameri]]
21448 [[sv:Atlanten]]
21449 [[ta:āŽ…āŽŸā¯āŽ˛āŽžāŽŖā¯āŽŸāŽŋāŽ•ā¯ āŽĒā¯†āŽ°ā¯āŽ™ā¯āŽ•āŽŸāŽ˛ā¯]]
21450 [[th:ā¸Ąā¸Ģā¸˛ā¸Ēā¸Ąā¸¸ā¸—ā¸Ŗāšā¸­ā¸•āšā¸Ĩā¸™ā¸•ā¸´ā¸]]
21451 [[vi:ĐáēĄi TÃĸy DÆ°ÆĄng]]
21452 [[tr:Atlas Okyanusu]]
21453 [[uk:АŅ‚ĐģĐ°ĐŊŅ‚иŅ‡ĐŊиК ĐžĐēĐĩĐ°ĐŊ]]
21454 [[zh:大čĨŋ洋]]</text>
21455 </revision>
21456 </page>
21457 <page>
21458 <title>Alveolates</title>
21459 <id>699</id>
21460 <revision>
21461 <id>15899225</id>
21462 <timestamp>2002-07-16T00:04:52Z</timestamp>
21463 <contributor>
21464 <username>Josh Grosse</username>
21465 <id>517</id>
21466 </contributor>
21467 <minor />
21468 <comment>To singular</comment>
21469 <text xml:space="preserve">#REDIRECT [[Alveolate]]</text>
21470 </revision>
21471 </page>
21472 <page>
21473 <title>Arthur Schopenhauer</title>
21474 <id>700</id>
21475 <restrictions>move=:edit=</restrictions>
21476 <revision>
21477 <id>41807323</id>
21478 <timestamp>2006-03-01T21:57:24Z</timestamp>
21479 <contributor>
21480 <ip>144.131.166.198</ip>
21481 </contributor>
21482 <text xml:space="preserve">{{Infobox_Philosopher |
21483 &lt;!-- Scroll down to edit this page --&gt;
21484 &lt;!-- Philosopher Category --&gt;
21485 region = Western Philosophers |
21486 era = [[19th-century philosophy]] |
21487 color = #B0C4DE |
21488
21489 &lt;!-- Image and Caption --&gt;
21490 image_name = Schopenhauer.jpg |
21491 image_caption = Arthur Schopenhauer |
21492
21493 &lt;!-- Information --&gt;
21494 name = Arthur Schopenhauer |
21495 birth = [[February 22]], [[1788]] ([[Sztutowo]], [[Poland]]) |
21496 death = [[September 21]], [[1860]] ([[Frankfurt-am-Main]], [[Germany]]) |
21497 school_tradition = [[Kantianism]], [[Idealism]] |
21498 main_interests = [[Metaphysics]], [[Aesthetics]], [[Phenomenology]], [[Morality]], [[Psychology]] |
21499 influences = [[Immanuel Kant|Kant]], [[Plato]], [[Jean-Jacques Rousseau|Rousseau]], [[Giacomo Leopardi]], [[Baruch Spinoza|Spinoza]], [[George Berkeley|Berkeley]], [[David Hume|Hume]], [[Rene Descartes|Descartes]], [[Buddhism]], [[Hinduism]] |
21500 influenced = [[Richard Wagner|Wagner]], [[Friedrich Nietzsche|Nietzsche]], [[Ludwig Wittgenstein|Wittgenstein]], [[Sigmund Freud|Freud]], [[Carl Jung|Jung]], [[Hermann Hesse]], [[Thomas Mann]] |
21501 notable_ideas = [[Will (philosophy)|Will]], [[Fourfold root of the sufficient principle of reason|Fourfold root of reason]] |
21502 }}
21503 '''Arthur Schopenhauer''' ([[February 22]], [[1788]] &amp;ndash; [[September 21]], [[1860]]) was a [[Germany|German]] [[philosopher]]. He is most famous for his work ''[[The World as Will and Representation]]''. He is commonly known for having espoused a sort of philosophical [[pessimism]] that saw life as being essentially [[evil]], futile, and full of suffering. However, upon closer inspection, in accordance with [[Eastern philosophy|Eastern thought]], especially that of [[Hinduism]] and [[Buddhism]], he saw [[salvation]], deliverance, or escape from suffering in [[aesthetic]] [[contemplation]], [[sympathy]] for others, and [[ascetic]] living. His ideas profoundly influenced the fields of [[philosophy]], [[psychology]], [[music]], and [[literature]].
21504
21505 == Life ==
21506 Schopenhauer was born in [[1788]] in [[Sztutowo]], Poland, near [[Gdańsk]]. He was the son of Heinrich Floris Schopenhauer and [[Johanna Schopenhauer]], a middle class mercantile family of [[Netherlands|Dutch]] heritage, although they had strong feelings against any kind of nationalism. Indeed, the name Arthur was selected by his father especially because it was the same in [[English language|English]], [[German language|German]], and [[French language|French]]. His parents were both from the city, and Johanna was an author as well. After the city was annexed by [[Prussia]] during the second [[Partitions of Poland|partition of Poland]] in [[1793]], the Schopenhauer family fled to [[Hamburg]]; in [[1805]] Schopenhauer's father died, possibly by [[suicide]], and Johanna moved to [[Weimar]]. Because of a promise to pursue a business career, Schopenhauer remained in Hamburg. His disgust of this career, however, drove him away to join his mother in Weimar after only a year. He never got along with his mother; when the writer [[Johann Wolfgang von Goethe|Goethe]], who was a friend of Johanna Schopenhauer, told her that he thought her son was destined for great things, Johanna objected: she had never heard there could be ''two'' geniuses in a single family.
21507
21508 Schopenhauer studied at the [[Georg August University of GÃļttingen|University of GÃļttingen]] and was awarded a PhD from the [[University of Jena]]. In [[1820]], Schopenhauer became a lecturer at the [[University of Berlin]]; it was there that his opposition to [[Georg Wilhelm Friedrich Hegel|Hegel]] began.
21509
21510 While in Berlin, Schopenhauer became involved in a consuming lawsuit from a Caroline Marquet. She asked for damages from him, a man of independent means, on the basis that she had been injured when Schopenhauer allegedly pushed her. Marquet had noisily attracted Schopenhauer's attention. Then, Marquet's companion witnessed her as being prostrate outside of his apartment. Marquet claimed that the philosopher had assaulted and battered her after she refused to leave his doorway. In this manner, she succeeded in gaining, through the court, a portion of Schopenhauer's limited wealth; he had to make payments for many years. His reputation was permanently damaged by her legal machination.
21511
21512 Schopenhauer's health deteriorated during the year of [[1860]]. He died of [[natural causes]] on [[September 21]] of the same year at the age of 72.
21513
21514 Schopenhauer called himself a [[Immanuel Kant|Kantian]] and despised Hegel. He formulated a [[philosophical pessimism|pessimistic]] [[philosophy]] that gained importance and support after the failure of the German and Austrian [[revolution]]s of [[1848]].
21515
21516 == Philosophy ==
21517 Schopenhauer's starting point was [[Immanuel Kant|Kant]]'s division of the universe into [[phenomenon]] and [[noumenon]], claiming that the noumenon was the same as that in us which we call [[will (philosophy)|Will]]. It is the inner content and the driving force of the world. For Schopenhauer, human will had [[ontology|ontological]] primacy over the [[intellect]]; in other words, desire is understood to be prior to thought, and, in a parallel sense, will is said to be prior to being. In solving/alleviating the fundamental problems of life, Schopenhauer was rare among philosophers in considering [[philosophy]] and [[logic]] less important (or less effective) than [[art]], certain types of charitable practice (&quot;loving kindness&quot;, in his terms), and certain forms of religious discipline; Schopenhauer concluded that discursive thought (such as philosophy and logic) could neither touch nor transcend the nature of desire&amp;mdash; i.e., the will. In ''[[The World as Will and Representation]]'', Schopenhauer posited that humans living in the [[realm of objects]] are living in the [[realm of desire]], and thus are eternally tormented by that desire (his idea of the role of desire in life is similar to that of [[Vedanta]] [[Hinduism]] and Buddhism, and Schopenhauer draws attention to these similarities himself).
21518
21519 While Schopenhauer's philosophy may sound rather mystical in such a summary, his [[methodology]] was resolutely [[empirical]], rather than speculative or transcendental:
21520
21521 {{Quotation|Philosophy... is a science, and as such has no articles of faith; accordingly, in it nothing can be assumed as existing except what is either positively given empirically, or demonstrated through indubitable conclusions.|Arthur Schopenhauer|''Parerga &amp; Paralipomena'', vol. i, pg. 106., E.F.J. Payne Translation}}
21522
21523 {{Quotation|This actual world of what is knowable, in which we are and which is in us, remains both the material and the limit of our consideration.|Arthur Schopenhauer|''World as Will and Representation'', vol. i, pg. 273, E.F.J. Payne Translation}}
21524
21525 Schopenhauer's identification of the Kantian ''noumenon'' (i.e., the actually existing entity) with what we call our will deserves some explanation. The noumenon was what Kant called the ''Ding an Sich'', the &quot;Thing in Itself&quot;, the reality that is the foundation of our [[sense|sensory]] and [[mind|mental]] representations of an external world; in Kantian terms, those sensory and mental representations are mere phenomena. Schopenhauer's assertion that what we call our will is the same as this ''noumenon'' might at first instance strike some as oddly as [[Heraclitus]]'s revelation that everything is made out of [[fire]].
21526
21527 But Kant's philosophy was formulated as a response to the radical [[philosophical skepticism]] of [[David Hume]] and his fellow [[British Empiricists]], who claimed that as far as we could tell there was [[solipsism|no outside reality]] beyond our mental representations of it. Schopenhauer begins by arguing that Kant's demarcation between external objects, knowable only as phenomena, and the Thing in Itself of noumenon, contains a significant omission. There is, in fact, one physical object we know more intimately than we know any object of sense perception. It is our own body.
21528
21529 We know our [[human anatomy|human bodies]] have [[boundary|boundaries]], and occupy space, the same way other objects known only through our named senses do. Though we seldom think of our bodies as physical objects, we know even before reflection that it shares some of their properties. We understand that a watermelon cannot successfully occupy the same space as an oncoming truck. We know that if we tried to repeat the experiment with our own bodies, we would obtain similar results. We know this even if we do not understand the [[physics]] involved.
21530
21531 We know that our consciousness inhabits a physical body, similar to other physical objects only known as phenomena. Yet, our consciousness is not commensurate with our body. Most of us possess the power of voluntary motion. We usually are not aware of our [[lung]]s' breath, or our [[heart]]beat, unless our attention is called to it. Our ability to control either is limited. Our [[kidney]]s command our attention on their schedule rather than one we choose. Few of us have any idea what our [[liver]]s are doing right now, though this organ is as needful as lungs, heart, or kidneys. The conscious mind is the servant, not the master, of these and other organs. These organs have an agenda which the conscious mind did not choose, and has limited power over.
21532
21533 When Schopenhauer identifies the ''noumenon'' with the desires, needs, and impulses in us that we name &quot;will,&quot; what he is saying is that we participate in the reality of an otherwise unachievable world outside the mind through will. We cannot ''prove'' that our mental picture of an outside world corresponds with a reality by reasoning. Through will, we know&amp;mdash;without thinking&amp;mdash; that the world can stimulate us. We suffer fear, or desire. These states arise involuntarily. They arise prior to reflection. They arise even when the conscious mind would prefer to hold them at bay. The rational mind is for Schopenhauer a leaf borne along in a stream of pre-reflective and largely unconscious emotion. That stream is will; and through will, if not through logic, we can participate in the underlying reality that lies beyond mere phenomena. It is for this reason that Schopenhauer identifies the ''noumenon'' with what we call our will.
21534
21535 Also, Schopenhauer's philosophy could be considered as [[panpsychism]] and [[solipsism]], and in some way [[Gnosticism|gnostic]].
21536
21537 == Psychology ==
21538 Schopenhauer was perhaps even more influential in his treatment of man's [[mind]] than he was in the realm of [[philosophy]].
21539
21540 Philosophers have not traditionally been impressed by the tribulations of [[love]]. But Schopenhauer addressed it, and related concepts, forthrightly.
21541
21542 :&quot;We should be surprised that a matter that generally plays such an important part in the life of man [love] has hitherto been almost entirely disregarded by philosophers, and lies before us as raw and untreated material.&quot;
21543
21544 He gave a name to a [[force]] within man which he felt invariably had precedence over reason: the [[Will to Live]] (Wille zum Leben), defined as an inherent [[drive]] within human beings, and indeed all creatures, to stay alive and to [[reproduce]].
21545
21546 Schopenhauer refused to conceive of love as either trifling or accidental, but rather understood it to be an immensely powerful force lying unseen within man's [[psyche]] and dramatically shaping the [[world]]:
21547
21548 :&quot;The ultimate aim of all love affairs ...is more important than all other aims in man's life; and therefore it is quite worthy of the profound seriousness with which everyone pursues it.&quot;
21549 :&quot;What is decided by it is nothing less than the composition of the next generation...&quot;
21550
21551 These ideas foreshadowed and laid the groundwork for [[Charles Darwin|Darwin]]'s [[theory of evolution]], [[Friedrich Nietzsche|Nietzsche]]'s [[Will to Power]] and [[Sigmund Freud|Freud]]'s concepts of the [[libido]] and the [[unconscious]] [[mind]].
21552
21553 == Aesthetics ==
21554 :''See main article: [[Schopenhauer's aesthetics]]''
21555
21556 This wild and powerful drive to reproduce, however, caused [[suffering]] and [[pain]] in the world. For Schopenhauer, one way to escape the suffering inherent in a world of Will was through [[art]].
21557
21558 Through art, Schopenhauer thought, the thinking subject could be jarred out of their limited, individual [[perspective]] to feel a sense of the [[universal (metaphysics)]] directly &amp;mdash; the &quot;universal&quot; in question, of course, was the will. The contest of personal [[desire]] with a world that was, by nature, inimical to its satisfaction is inevitably tragical; therefore, the highest place in art was given to [[tragedy]]. [[Music]] was also given a special status in [[Schopenhauer's aesthetics]] as it did not rely upon the medium of representation to communicate a sense of the universal. Schopenhauer believed the function of art to be a [[meditation]] on the unity of [[human nature]], and an attempt to either demonstrate or directly communicate to the [[audience]] a certain [[existential]] [[angst]] for which most forms of entertainment &amp;mdash; including bad art &amp;mdash; only provided a distraction. A wide range of authors (from [[Thomas Hardy]] to [[Woody Allen]]) and artists have been influenced by this system of [[aesthetics]], and in the 20th century this area of Schopenhauer's work garnered more attention and praise than any other.
21559
21560 According to Daniel Albright (2005), &quot;Schopenhauer thought that [[music]] was the only art that did not merely copy ideas, but actually embodied the will itself.&quot;
21561
21562 ==Politics==
21563 Schopenhauer's [[politics]] were, for the most part, a much-diminished echo of his system of ethics (the latter being expressed in ''[[Die beiden Grundprobleme der Ethik]]'', available in English as two separate books, ''[[On the Basis of Morality]]'' and ''[[On the Freedom of the Will]]''; ethics also occupies about one fourth of his central work, ''[[The World as Will and Representation]]''). In occasional political comments in his ''[[Parerga and Paralimpomena]]'' and ''[[Manuscript Remains]]'', Schopenhauer described himself as a proponent of limited government. What was essential, he thought, was that the state should &quot;leave each man free to work out his own salvation&quot;, and so long as government was thus limited, he would &quot;prefer to be ruled by a lion than one of [his] fellow rats&quot; &amp;mdash; i.e., a monarch. Schopenhauer did, however, share the view of [[Thomas Hobbes]] on the necessity of the state, and of state violence, to check the destructive tendencies innate to our species. Schopenhauer, by his own admission, did not give much thought to politics, and several times he writes prideful boasts of how little attention he had paid &quot;to political affairs of [his] day&quot;. In a life that spanned several revolutions in French and German government, and a few continent-shaking wars, he did indeed maintain his aloof position of &quot;minding not the times but the eternities&quot;.
21564
21565 == Schopenhauer on women ==
21566 Schopenhauer is also famous for his essay &quot;On Women&quot; (''Über die Weiber''), in which he expressed his opposition to what he called &quot;Teutonico-Christian stupidity&quot; on female affairs. He claimed that &quot;woman is by nature meant to obey&quot;, and opposed [[Friedrich Schiller|Schiller]]'s poem in honor of women, ''WÃŧrde der Frauen''. The essay does give two compliments however: that &quot;women are decidedly more sober in their judgment than [men] are&quot; and are more sympathetic to the suffering of others. However, the latter was discounted as weakness rather than humanitarian virtue.
21567
21568 The ultra-intolerant view of women contrasts with Schopenhauer's generally liberal views on other social issues: he was strongly against [[taboo]]s on issues like [[suicide]] and [[masochism]] and condemned the treatment of African [[slavery|slave]]s. This [[polemic]] on female nature has since been fiercely attacked as [[misogyny|misogynistic]]. However, he did not hold a universally negative opinion of women in particular; one should note that Schopenhauer had a very high opinion of [[Madame de Guyon]], whose writings and biography he highly recommended.
21569
21570 In any case, the controversial writing has influenced many, from [[Friedrich Nietzsche|Nietzsche]] to [[19th century]] [[feminism|feminists]]. While Schopenhauer's hostility to women may tell us more about his [[biography]] than about philosophy, his [[biology|biological]] analysis of the difference between the sexes, and their separate roles in the struggle for survival and reproduction, anticipates some of the claims that were later ventured by [[sociobiology|sociobiologists]] and [[evolutionary psychology|evolutionary psychologists]] in the [[twentieth century]].
21571
21572 ==Schopenhauer on homosexuality==
21573 Schopenhauer was also one of the first philosophers since the days of [[Greek philosophy]] to address the subject of male [[homosexuality]]. In the third, expanded edition of ''The World as Will and Representation'' ([[1856]]), Schopenhauer added an appendix to his chapter on the &quot;Metaphysics of Sexual Love.&quot; In it, he develops the idea that since only mature men and fully adult but pre-[[menopause|menopausal]] women are capable of bearing healthy children, in early adolescence and in late middle age the sexual appetite is susceptible of being turned towards another channel.
21574
21575 While there may again be more [[autobiography]] than analysis in this hypothesis, it is consistent with the general tenor of Schopenhauer's thought, which gives the Will in nature the position of setting an agenda for individual lives. It is also one of the first attempts at portraying homosexuality as a natural phenomenon, acknowledging its existence in every culture, and seeking to explain its appearance even in those cultures whose moralities sharply condemn homosexual behaviour.
21576
21577 ==Schopenhauer on Hegel==
21578 Schopenhauer seems to have disliked just about everything concerning his contemporary [[Georg Wilhelm Friedrich Hegel]]. The following quotation from ''[[On the Basis of Morality]]'' (page 15-16) is quite famous:
21579
21580 {{Quotation|If I were to say that the so-called philosophy of this fellow [[Georg Wilhelm Friedrich Hegel|Hegel]] is a colossal piece of mystification which will yet provide posterity with an inexhaustible theme for laughter at our times, that it is a [[pseudophilosophy|pseudo-philosophy]] paralyzing all mental powers, stifling all real thinking, and, by the most outrageous misuse of language, putting in its place the hollowest, most senseless, thoughtless, and, as is confirmed by its success, most stupefying verbiage, I should be quite right.&lt;p&gt;
21581 Further, if I were to say that this summus philosophus [...] scribbled nonsense quite unlike any mortal before him, so that whoever could read his most eulogized work, the so-called [[Phenomenology of the Mind]], without feeling as if he were in a madhouse, would qualify as an inmate for [[Bethlem Royal Hospital|Bedlam]], I should be no less right.|Arthur Schopenhauer|''[[On the Basis of Morality]]'' (page 15-16)}}
21582
21583 But Schopenhauer had good reason to mistrust the writings of Hegel. In his &quot;Foreword to
21584 the first edition&quot; of his work [[Die beiden Grundprobleme der Ethik]], Schopenhauer
21585 had found Hegel to have fallen prey to the ''[[Post hoc ergo propter hoc]]'' fallacy.
21586
21587 Schopenhauer's critique of Hegel is most certainly directed at his perception that Hegel's works use deliberately impressive but ultimately vacuous [[jargon]] and [[neologism]]s, and that they contained castles of abstraction that sounded impressive but ultimately contained no verifiable content. He also thought that his glorification of church and state were designed for personal advantage and had little to do with search for philosophical truth. Although Schopenhauer may have appeared vain in his constant attacks on [[Hegel]], they were not necessarily devoid of merit: the [[Right Hegelians]] interpreted Hegel as seeing the Prussian state of his day as perfect and the goal of all history up until then.
21588
21589 ==Common Misconceptions==
21590 Many are put off Schopenhauer by descriptions of him as an obstinate and arrogant man, who did not lead the ascetic life that he glorified in his work. The idea that he made resignation into a command to virtue is inaccurate, as he was merely trying to explain asceticism in terms of [[metaphysics]]. He does refer to the asceticism as a state of &quot;inner peace and cheerfulness&quot;, but he also clearly states that he was not trying to recommend the denial of the will above the affirmation of the will. Furthermore, the call to asceticism was supposed to come to select individuals as knowledge all of a sudden, rather than being a virtue that can be taught. &quot;In general,&quot; he wrote, &quot;it is a strange demand on a moralist that he should commend no other virtue than that which he himself possesses.&quot; (''[[The World as Will and Representation]]'', Vol.I, § 68)
21591
21592 [[Nietzsche]] seems to have made this misinterpretation, leading some people to a distorted view of Schopenhauer. The following sentence from ''[[The Twilight of the Idols]]'' is often quoted:
21593
21594 {{Quotation|He has interpreted art, heroism, genius, beauty, great sympathy, knowledge, the will to truth, and tragedy, in turn, as consequences of &quot;negation&quot; or of the &quot;will's&quot; need to negate.|[[Friedrich Nietzsche]]|''[[The Twilight of the Idols]]''}}
21595
21596 Schopenhauer did see all these things as means to a more peaceful and enlightened way of life, but none of them were &quot;denial of the will-to-live&quot;. Only asceticism is referred to in that way. [[Nietzsche]] also claimed that Schopenhauer did not recognise that suffering had a redemptive quality, yet his recognition of this seems blatantly clear in part 4 of ''The World as Will and Representation''.
21597
21598 Also, his identification of the [[Will (philosophy)|will]] with the Kantian &quot;thing-in-itself&quot; has been misunderstood. [[Kant]] defined things-in-themselves as being beyond comprehension and that no-one could know the inner nature of a material thing. It is sometimes thought that Schopenhauer denied this, but he did not. What he did assert was that one could know things about the thing-in-itself. For example, you can know that the will is a striving force, that it is endless, that it causes suffering, that it will produce boredom if unoccupied, etc. However, he did not say that you could directly know the will. In addition, it has sometimes been criticised that he never defined the will, but he explained that it could not be fully defined.
21599
21600 ==Influence==
21601 Schopenhauer is thought to have influenced the following intellectual figures and schools of thought: [[Friedrich Nietzsche]], [[Richard Wagner]], [[Sigmund Freud]], [[Charles Darwin]], [[Theodule Ribot]], [[Eugene O'Neill]], [[Max Horkheimer]], [[C. G. Jung]], [[Ludwig Wittgenstein]], [[Samuel Beckett]], [[Jorge Luis Borges]], [[Dylan Thomas]], [[Emil Cioran]], [[Thomas Mann]], [[Phenomenalism]], and [[Recursionism]].
21602
21603 ==See also==
21604 *[[Criticism of the Kantian Philosophy (Schopenhauer)|Schopenhauer's criticism of the Kantian philosophy]]
21605
21606 == Bibliography ==
21607 === Major works ===
21608 *''Über die vierfache Wurzel des Satzes vom zureichenden Grunde'', 1813 ''(On the Fourfold Root of the Principle of Sufficient Reason)''
21609 *''Über das Sehen und die Farben'', 1816 ''(On Vision and Colours)''
21610 *''Die Welt als Wille und Vorstellung'', 1818/1819, vol 2 1844 ''([[The World as Will and Representation]]'', sometimes also known in English as ''The World as Will and Idea'')
21611 **vol. 1 Dover edition 1966, ISBN 0486217612
21612 **vol. 2 Dover edition 1966, ISBN 0486217620
21613 **Peter Smith Publisher hardcover set 1969, ISBN 0844628859
21614 **Everyman Paperback combined abridged edition (290 p.) ISBN 0460875051
21615 *''Über den Willen in der Natur'', 1836 ''(On the Will in Nature)''
21616 *''Über die Freiheit des menschlichen Willens'', 1839 ''(On Freedom of the Will)''
21617 *''Über die Grundlage der Moral'', 1840 ''(On the Basis of Morality)''
21618 *''Parerga und Paralipomena'', 1851
21619
21620 === Online texts ===
21621 *''[http://homes.rhein-zeitung.de/~ahipler/kritik/religio1.htm Über Religion, from Parerga und Paralipomena II]'' (german)
21622 *[http://www.friesian.com/arthur.htm Influence on Friesian philosophy]
21623 *[http://www.geocities.com/c_ansata/Women.html Essay ''Über die Weiber'']
21624 *[http://coolhaus.de/art-of-controversy/ ''Die Kunst, Recht zu behalten - The Art Of Controversy'' (bilingual)]
21625 * {{gutenberg author| id=Arthur+Schopenhauer | name=Arthur Schopenhauer}}
21626
21627 ==Source==
21628 *Albright, Daniel (2004). ''Modernism and Music: An Anthology of Sources'', p.39n34. University of Chicago Press. ISBN 0226012670.
21629
21630 == External links ==
21631 {{commons|Arthur Schopenhauer}}
21632 {{wikiquote}}
21633 {{Wikisourcelang|de|Arthur Schopenhauer|Arthur Schopenhauer}}
21634
21635 *[http://www.friesian.com/arthur.htm Biography and summary of his philosophy]
21636 *[http://www.blupete.com/Literature/Biographies/Philosophy/Schopenhauer.htm Short biography] (Contains the false view that Schopenhauer was a solipsist)
21637 *[http://plato.stanford.edu/entries/schopenhauer/ Indepth overview of his life and philosophy]
21638 *[http://www.carleton.ca/~abrook/SCHOPENY.htm On the philosopher's impact on Freud and psychology]
21639 *[http://www.centrebouddhisteparis.org/En_Anglais/Sangharakshita_en_anglais/Aesthetic_appreciation/aesthetic_appreciation.html Schopenhauer and aesthetic appreciation.]
21640 *[http://www.pratyeka.org/schopenhauer/ An essay on Schopenhauer's (debated) place in the history of European philosophy, detailing his relationship to earlier sources]
21641
21642 {{Philosophy navigation}}
21643
21644 [[Category:1788 births|Schopenhauer, Arthur]]
21645 [[Category:1860 deaths|Schopenhauer, Arthur]]
21646 [[Category:Natives of Gdańsk|Schopenhauer, Arthur]]
21647 [[Category:19th century philosophers|Schopenhauer, Arthur]]
21648 [[Category:Atheist philosophers|Schopenhauer, Arthur]]
21649 [[Category:Continental philosophers|Schopenhauer, Arthur]]
21650 [[Category:German philosophers|Schopenhauer, Arthur]]
21651 [[Category:Idealists|Schopenhauer, Arthur]]
21652 [[Category:Kantian philosophers|Schopenhauer, Arthur]]
21653
21654 [[bg:АŅ€Ņ‚ŅƒŅ€ ШОĐŋĐĩĐŊŅ…Đ°ŅƒĐĩŅ€]]
21655 [[bs:Arthur Schopenhauer]]
21656 [[ca:Arthur Schopenhauer]]
21657 [[cs:Arthur Schopenhauer]]
21658 [[da:Arthur Schopenhauer]]
21659 [[de:Arthur Schopenhauer]]
21660 [[eo:Arthur SCHOPENHAUER]]
21661 [[es:Arthur Schopenhauer]]
21662 [[fi:Arthur Schopenhauer]]
21663 [[fr:Arthur Schopenhauer]]
21664 [[gl:Arthur Schopenhauer]]
21665 [[he:אר×Ēור שופנהאואר]]
21666 [[hr:Arthur Schopenhauer]]
21667 [[io:Arthur Schopenhauer]]
21668 [[it:Arthur Schopenhauer]]
21669 [[ja:ã‚ĸãƒĢトã‚ĨãƒĢãƒģã‚ˇãƒ§ãƒŧペãƒŗハã‚Ļã‚ĸãƒŧ]]
21670 [[ko:ė•„ëĨ´íˆŦëĨ´ ė‡ŧ펜하ėš°ė–´]]
21671 [[lt:ArtÅĢras Å openhaueris]]
21672 [[lv:ArtÅĢrs Å openhauers]]
21673 [[mk:АŅ€Ņ‚ŅƒŅ€ ШОĐŋĐĩĐŊŅ…Đ°ŅƒĐĩŅ€]]
21674 [[nl:Arthur Schopenhauer]]
21675 [[no:Arthur Schopenhauer]]
21676 [[pl:Arthur Schopenhauer]]
21677 [[pt:Arthur Schopenhauer]]
21678 [[ro:Arthur Schopenhauer]]
21679 [[ru:ШОĐŋĐĩĐŊĐŗĐ°ŅƒŅŅ€, АŅ€Ņ‚ŅƒŅ€]]
21680 [[sk:Arthur Schopenhauer]]
21681 [[sr:АŅ€Ņ‚ŅƒŅ€ ШОĐŋĐĩĐŊŅ…Đ°ŅƒĐĩŅ€]]
21682 [[sv:Arthur Schopenhauer]]
21683 [[tr:Arthur Schopenhauer]]
21684 [[zh:äēšį‘ŸÂˇå”æœŦ华]]</text>
21685 </revision>
21686 </page>
21687 <page>
21688 <title>Angola</title>
21689 <id>701</id>
21690 <revision>
21691 <id>41994444</id>
21692 <timestamp>2006-03-03T02:36:46Z</timestamp>
21693 <contributor>
21694 <ip>195.23.17.113</ip>
21695 </contributor>
21696 <comment>added a reference to jornaldeangola.com</comment>
21697 <text xml:space="preserve">{{Infobox Country |
21698 native_name = RepÃēblica de Angola |
21699 common_name = Angola |
21700 image_flag = Flag of Angola.svg |
21701 image_coat = Angola coa.png |
21702 national_motto = none |
21703 image_map = LocationAngola.png |
21704 national_anthem = [[Angola Avante|Angola Avante!]]&lt;br&gt;&lt;small&gt;([[Portuguese language|Portuguese]]: [[Angola Avante|Forward Angola!]]) |
21705 official_languages = [[Angolan Portuguese|Portuguese]] |
21706 capital = [[Luanda]] |
21707 latd=8|latm=50|latNS=S|longd=13|longm=20|longEW=E|
21708 government_type = [[Multi-party]] [[democracy]] |
21709 leader_titles = [[President of Angola|Head of State]] &lt;br&gt; [[Prime Minister of Angola|Head of Government]]|
21710 leader_names = [[JosÊ Eduardo dos Santos]] &lt;br&gt; [[Fernando da Piedade Dias dos Santos|Fernando da Piedade &lt;br&gt; Dias dos Santos]]|
21711 largest_city = [[Luanda]] |
21712 area = 1,246,700 |
21713 areami² = 481,354 | &lt;!--Do not remove --&gt;
21714 area_rank = 22nd |
21715 area_magnitude = 1 E12 |
21716 percent_water = Negligible |
21717 population_estimate = 10,978,552 |
21718 population_estimate_year = 2004 |
21719 population_estimate_rank = 71st |
21720 population_census = ''unavailable'' |
21721 population_census_year = ? |
21722 population_density = 8.6 |
21723 population_densitymi² = 22.3 | &lt;!--Do not remove --&gt;
21724 population_density_rank = 213 |
21725 GDP_PPP_year = 2003 |
21726 GDP_PPP = 31,364&lt;sup&gt;1&lt;/sup&gt; |
21727 GDP_PPP_rank = 83 |
21728 GDP_PPP_per_capita = 2,319 |
21729 GDP_PPP_per_capita_rank = 120 |
21730 HDI_year = 2003 |
21731 HDI = 0.445 |
21732 HDI_rank = 160th |
21733 HDI_category = &lt;font color=&quot;#E0584E&quot;&gt;low&lt;/font&gt; |
21734 sovereignty_type = [[Independence]] |
21735 established_events = From [[Portugal]] |
21736 established_dates = [[November 11]] [[1975]] |
21737 currency = [[Kwanza]] |
21738 currency_code = AOA |
21739 time_zone = [[Central European Time|CET]] |
21740 utc_offset = +1 |
21741 time_zone_DST = not observed |
21742 utc_offset_DST = +1 |
21743 cctld = [[.ao]] |
21744 calling_code = 244 |
21745 footnotes = &lt;sup&gt;1&lt;/sup&gt; Estimate is based on regression; other PPP figures are extrapolated from the latest International Comparison Programme benchmark estimates.
21746 }}{{about|the country|the prison|[[Louisiana State Penitentiary]]}}
21747 '''Angola''' is a country in southwestern [[Africa]] bordering [[Namibia]], the [[Democratic Republic of the Congo]], and [[Zambia]], and with a west coast along the [[Atlantic Ocean]]. The [[exclave]] province [[Cabinda (province)|Cabinda]] has a border with [[Republic of the Congo|Congo-Brazzaville]]. A former [[Portugal|Portuguese]] colony, it has considerable natural resources, among which oil and diamonds are the most relevant. The country is nominally a [[democracy]] and is formally named the '''Republic of Angola''' ([[Portuguese language|Portuguese]]: ''RepÃēblica de Angola'', [[Pronunciation|pron.]] [[IPA]]: /{{IPA|ʁɛ.'pu.βli.kɐ dɨ ɐĖƒ.'ÉŖɔ.lɐ}}/).
21748
21749 ==Origin and history of the name==
21750
21751 The name '''Angola''' is a Portuguese derivation of the [[Bantu language|Bantu]] word N’gola, being the title of the native rulers of the Quimbundos Kingdom in the [[16th century]], at the time of colonization by the Portuguese.
21752
21753 ==History==
21754 ''Main article: [[History of Angola]]''
21755
21756 [[Image:Queen Nzinga 1657.png|thumb|left|Shows Queen Nzinga in peace negotiations with the portuguese governor in Luanda, 1657.]]
21757 The earliest inhabitants of the area were [[Khoisan]] [[hunter-gatherer]]s. They were largely replaced by Bantu tribes during [[Bantu]] [[human migration|migrations]]. In present-day Angola [[Portugal]] settled in 1483 at the river Congo, where the [[Kongo Empire|Kongo]] State, [[Ndongo]] and [[Lunda]] existed. The Kongo State stretched from modern [[Gabon]] in the north to the [[Kwanza River]] in the south. Portugal established in 1575 a Portuguese colony at [[Luanda]] based on the slave trade. The Portuguese gradually took control of the coastal strip throughout the 16th century by a series of treaties and wars. They formed the colony of Angola. The [[Netherlands|Dutch]] occupied Luanda from 1641-48, providing a boost for anti-Portuguese states.
21758
21759 In 1648 Portugal retook Luanda and initiated a process of military conquest of the Kongo and Ndongo states that ended with Portuguese victory in 1671. Full Portuguese administrative control of the interior didn't occur until the beginning of the 20th century. In 1951 the colony was restyled as an overseas province, also called Portuguese West Africa. When Portugal refused a decolonization process three independence movements emerged:
21760 * the [[Popular Movement for the Liberation of Angola]] (''Movimento Popular de LibertaçÃŖo de Angola'' MPLA), with a base among [[Kimbundu]] and the mixed-race intelligentsia of Luanda, and links to communist parties in Portugal and the [[Eastern Bloc]];
21761 * the [[National Liberation Front of Angola]] (''Frente Nacional de LibertaçÃŖo de Angola'', FNLA), with an ethnic base in the Bakongo region of the north and links to the [[United States]] and the [[Mobutu Sese Seko|Mobutu]] regime in [[Zaire]]; and
21762 * the [[National Union for Total Independence of Angola]] (''UniÃŖo Nacional para a IndependÃĒncia Total de Angola'', UNITA), led by [[Jonas Savimbi|Jonas Malheiro Savimbi]] with an ethnic and regional base in the Ovimbundu heartland in the center of the country.
21763
21764 After a 14 year independence guerrilla war, and the overthrow of fascist Portugal's government by a military coup, Angola's nationalist parties began to negotiate for independence in January 1975. Independence was to be declared in November 1975. Almost immediately, a [[Angolan Civil War|civil war]] broke out between MPLA, UNITA and FNLA, exacerbated by foreign intervention. South African troops struck an alliance of convenience with UNITA and invaded Angola in August 1975 to ensure that there would be no interference (by a newly independent Angolan state) in [[Namibia]], which was then under South African control (Hodges, 2001, 11). Cuban troops came to the support of the MPLA in October 1975, enabling them to control the capital, [[Luanda]], and hold off the South African forces. The MPLA declared itself to be the de facto government of the country when independence was formally declared in November, with [[Agostinho Neto]] as the first President.
21765
21766 In 1976, the FNLA was defeated by a combination of MPLA and [[Cuba|Cuban]] troops, leaving the Marxist MPLA and UNITA (backed by the United States and South Africa) to fight for power.
21767
21768 The conflict raged on, fuelled by the geopolitics of the Cold War and by the ability of both parties to access Angola's natural resources. The MPLA drew upon the revenues of off-shore oil resources, while UNITA accessed alluvial diamonds that were easily smuggled through the region's very porous borders (LeBillon, 1999).
21769
21770 In 1991, the factions agreed to turn Angola into a multiparty state, but after the current president [[JosÊ Eduardo dos Santos]] of MPLA won UN supervised elections, UNITA claimed there was fraud and fighting broke out again.
21771
21772 A 1994 peace accord ([[Lusaka]] protocol) between the government and UNITA provided for the integration of former UNITA [[insurgent]]s into the government. A national unity government was installed in 1997, but serious fighting resumed in late 1998, rendering hundreds of thousands of people homeless. President JosÊ Eduardo dos Santos suspended the regular functioning of democratic instances due to the conflict.
21773
21774 On [[February 22]] [[2002]], Jonas Savimbi, the leader of UNITA, was shot dead and a cease-fire was reached by the two factions. UNITA gave up its armed wing and assumed the role of major opposition party. Although the political situation of the country seems to be normalizing, president dos Santos still hasn't allowed regular democratic processes to take place. Among Angola's major problems are a serious humanitarian crisis (a result of the prolonged war), the abundance of [[minefield]]s, and the actions of guerrilla movements fighting for the independence of the northern exclave of [[Cabinda (province)|Cabinda]] ([[Frente para a LibertaçÃŖo do Enclave de Cabinda]]).
21775
21776 Angola, like many sub-Saharan nations, is subject to periodic outbreaks of infectious diseases. In April 2005, Angola was in the midst of an [[Marburg virus#2004-2005 outbreak in Angola|outbreak]] of the [[Marburg virus]] which was rapidly becoming the worst outbreak of a haemorrhagic fever in recorded history, with over 237 deaths recorded out of 261 reported cases, and having spread to 7 out of the 18 provinces as of [[April 19]], [[2005]].
21777
21778 ==Politics==
21779 ''Main article: [[Politics of Angola]]''
21780
21781 The executive branch of the government is composed of the President, the Prime Minister (currently [[Fernando da Piedade Dias dos Santos]]) and Council of Ministers. Currently, political power is concentrated in the Presidency. The Council of Ministers, composed of all government ministers and vice ministers, meets regularly to discuss policy issues. Governors of the 18 provinces are appointed by and serve at the pleasure of the president. The Constitutional Law of 1992 establishes the broad outlines of government structure and delineates the rights and duties of citizens. The legal system is based on Portuguese and customary law but is weak and fragmented, and courts operate in only 12 of more than 140 municipalities. A Supreme Court serves as the appellate tribunal; a Constitutional Court with powers of judicial review has never been constituted despite statutory authorization.
21782
21783 The 27 year long civil war has ravaged the country's political and social institutions. The UN estimates of 1.8 million internally displaced persons (IDPs), while generally the accepted figure for war-affected people is 4 million. Daily conditions of life throughout the country and specifically Luanda (population approximately 4 million) mirror the collapse of administrative infrastructure as well as many social institutions. The ongoing grave economic situation largely prevents any government support for social institutions. Hospitals are without medicines or basic equipment, schools are without books, and public employees often lack the basic supplies for their day-to-day work.
21784
21785 The president has announced the government's intention to hold elections in 2006. These elections would be the first since 1992 and would serve to elect both a new president and a new National Assembly.
21786
21787 * [[List of political parties in Angola]]
21788
21789 == Administrative Divisions ==
21790 [[Image:Angola Provinces numbered 300px.png|right|200px|Map of Angola with the provinces numbered]]
21791 ''Main Article: [[Provinces of Angola]]''
21792
21793 Angola is divided into 18 provinces:-
21794 {| border=0
21795 |- valign=&quot;top&quot;
21796 |
21797 *&lt;small&gt;1&lt;/small&gt; [[Bengo (province)|Bengo]]
21798 *&lt;small&gt;2&lt;/small&gt; [[Benguela Province|Benguela]]
21799 *&lt;small&gt;3&lt;/small&gt; [[BiÊ (province)|BiÊ]]
21800 *&lt;small&gt;4&lt;/small&gt; [[Cabinda (province)|Cabinda]]
21801 *&lt;small&gt;5&lt;/small&gt; [[Cuando Cubango]]
21802 *&lt;small&gt;6&lt;/small&gt; [[Cuanza Norte]]
21803
21804 |
21805 *&lt;small&gt;7&lt;/small&gt; [[Cuanza Sul]]
21806 *&lt;small&gt;8&lt;/small&gt; [[Cunene (province)|Cunene]]
21807 *&lt;small&gt;9&lt;/small&gt; [[Huambo Province|Huambo]]
21808 *&lt;small&gt;10&lt;/small&gt; [[Huila Province|Huila]]
21809 *&lt;small&gt;11&lt;/small&gt; [[Luanda Province|Luanda]]
21810 *&lt;small&gt;12&lt;/small&gt; [[Lunda Norte]]
21811
21812 |
21813 *&lt;small&gt;13&lt;/small&gt; [[Lunda Sul]]
21814 *&lt;small&gt;14&lt;/small&gt; [[Malanje Province|Malanje]]
21815 *&lt;small&gt;15&lt;/small&gt; [[Moxico (province)|Moxico]]
21816 *&lt;small&gt;16&lt;/small&gt; [[Namibe Province|Namibe]]
21817 *&lt;small&gt;17&lt;/small&gt; [[Uige Province|Uige]]
21818 *&lt;small&gt;18&lt;/small&gt; [[Zaire Province|Zaire]]
21819 |}
21820
21821 ==Geography==
21822 [[Image:Angola map.png|thumb|300px|Map of Angola]]
21823 [[Image:LuandaJuin2005-1-br.jpg|thumb|230px|[[Luanda]], the Angolan capital]]
21824 ''Main article: [[Geography of Angola]]''
21825
21826 Angola is bordered by [[Namibia]] to the south, [[Zambia]] to the east, the [[Democratic Republic of the Congo]] to the north-east, and the [[South Atlantic Ocean]] to the west. The [[exclave]] of [[Cabinda (province)|Cabinda]] also borders the [[Republic of the Congo]] to the north. Angola's capital, [[Luanda]], lies on the Atlantic coast in the north-west of the country.
21827
21828 Angola is divided into an arid coastal strip stretching from Namibia to Luanda; a wet, interior highland; a dry savanna in the interior south and southeast; and rain forest in the north and in Cabinda. The [[Zambezi River]] and several tributaries of the Congo River have their sources in Angola.
21829
21830 ===Exclaves and enclaves===
21831 The [[exclave]] province of [[Cabinda (province)|Cabinda]] borders with both the [[Republic of the Congo]] and the [[Democratic Republic of the Congo]]. The latter's only oceanic access, 60 kilometres (37 [[mile|mi]]) in width, divides Angola from Cabinda. The population stands at around 300,000, two-thirds of which inhabit the surroundings in a generally stable state on Congolese and Zairian territory. The Angolan central government has yet to put a definitive end to the Cabindese secessionist movement.
21832
21833 ==Economy==
21834 ''Main article: [[Economy of Angola]]''
21835
21836 Angola is an economy in disarray because of a quarter century of nearly continuous warfare. Despite its abundant natural resources, output per capita is among the world's lowest. Subsistence agriculture provides the main livelihood for 85% of the population. Oil production and the supporting activities are vital to the economy, contributing about 45% to GDP and 90% of exports. Control of the oil industry is consolidated in [[Sonangol Group]], a conglomerate which is owned by the Angolan government. Notwithstanding the signing of a peace accord in November 1994, millions of land mines remain, rural violence is a possibility, and many farmers are reluctant to return to their fields. As a result, much of the country's food must still be imported. Despite the increase in the pace of civil warfare in late 1998, the economy grew by an estimated 4% in 1999. The government introduced new currency denominations in 1999, including a 1 and 5 kwanza note. Expanded oil production brightens prospects for 2000, but internal strife discourages investment outside of the petroleum sector. With the advent of peace in 2002 a strategic partnership with China is set in motion, so huge investments by Chinese companies are now in place, especially in the construction sector and more recently in the metallurgical sector.
21837
21838 ==Demographics==
21839 ''Main article: [[Demographics of Angola]]''
21840
21841 Angola has three main ethnic groups, each speaking a Bantu language: [[Ovimbundu]] 37%, [[Kimbundu]] 25%, and [[Bakongo]] 13%. Other groups include [[Chokwe]] (or [[Lunda]]), [[Ganguela]], [[Nhaneca-Humbe]], [[Ambo]], [[Herero]], and [[Xindunga]]. In addition, ''[[mestiço]]s'' (Angolans of mixed European and African family origins) amount to about 2%, with a small (1%) population of whites, mainly ethnically [[Portuguese people|Portuguese]]. Portuguese make up the largest non-Angolan population, with at least 30,000 (though many native-born Angolans can claim Portuguese nationality under Portuguese law). In [[1975]], 250,000 [[Cuba]]n soldiers settled Angola to help the MPLA forces to fight for its independence. These Cubans are of European and [[Asia]]n (mostly [[Chinese Cuban| Chinese]] descent, while others include those of pure [[Afro-Cuban|African]] and [[mulatto]] descent, who has ancestors in Angola. But in [[1989]], almost all Cubans went out of the country after a peace agreement has been signed between Angola, Cuba, and [[South Africa]]. Portuguese is both the official and predominant language, spoken in the homes of about two-thirds of the population, and as a secondary language by many more. Cubans speak [[Spanish language]], but almost none of their descendants speak it.
21842
21843 The great majority of the inhabitants are of Bantu stock with some admixture in the Congo district. In the south-east are various tribes of Bushmen. The best-known of the Bantu tribes are the Ba-Kongo (Ba-Fiot), who dwell chiefly in the north, and the [[Abunda]] (Mbunda, Ba-Bundo), who occupy the central part of the province, which takes its name from the Ngola tribe of Abunda. Another of these tribes, the Bangala, living on the west bank of the upper Kwango, must not be confused with the Bangala of the middle Congo. In the Abunda is a considerable strain of Portuguese blood. The Ba-Lunda inhabit the Lunda district. Along the upper Kunene and in other districts of the plateau are settlements of Boers, the Boer population being about 2000. In the coast towns the majority of the white inhabitants are Portuguese. The Mushi-Kongo and other divisions of the Ba-Kongo retain curious traces of the Christianity professed by them in the 16th and 17th centuries and possibly later. Crucifixes are used as potent fetish charms or as symbols of power passing down from chief to chief; whilst every native has a &quot;Santu&quot; or Christian name and is dubbed dom or dona. [[Fetishism]] is the prevailing religion throughout the province. The dwelling-places of the natives are usually small huts of the simplest construction, used chiefly as sleeping apartments; the day is spent in an open space in front of the hut protected from the sun by a roof of palm or other leaves. Despite all that, Catholicism remains the dominant religion, although recently an increasing number of churches are claiming more followers, particularly evangelicals.
21844
21845
21846 *[[List of Angolans]]
21847
21848 ==Culture==
21849 ''Main article: [[Culture of Angola]]''
21850
21851 *[[List of African writers (by country)#Angola|List of writers from Angola]]
21852 *[[Contemporary Dance Company of Angola]][http://www.cdcangola.com]
21853
21854 ==Stamps==
21855 * [[List of errors on Portuguese ex-Colonies stamps of Angola 1912]]
21856 * [[List of errors on Portuguese ex-Colonies stamps of Angola 1914]]
21857 * [[List of errors on Portuguese ex-Colonies stamps of Angola 1921]]
21858 * [[List of birds on stamps of Angola]]
21859 * [[List of people on stamps of Angola]]
21860 * [[List of bonsai on stamps]]
21861 * [[List of fish on stamps]]
21862
21863 == Miscellaneous topics ==
21864
21865 * [[Communications in Angola]]
21866 * [[Foreign relations of Angola]]
21867 * [[List of Angolan companies]]
21868 * [[Military of Angola]]
21869 * [[Sonangol Group]]
21870 * [[Transport in Angola]]
21871
21872 ==See also==
21873 *[[List of sovereign states]]
21874
21875 ==Reference==
21876 *''Much of the material in these articles comes from the [[CIA World Factbook]] 2000 and the 2003 U.S. Department of State website.''
21877
21878 ==External links==
21879 {{portal}}
21880 {{sisterlinks|Angola}}
21881
21882 ===Government===
21883 *[http://www.angola.org/ Republic of Angola] official government portal
21884 *[http://www.parlamento.ao/ National Assembly of Angola] official site (in Portuguese)
21885 *[http://www.angola.org/ Embassy of Angola in Washington DC] government information and links
21886
21887 ===News===
21888 *[http://allafrica.com/angola/ allAfrica - Angola] - News headline links
21889 *[http://www.angolapress-angop.ao/ Angola Press] - Government-controlled news agency (in Portuguese, French and English)
21890 *[http://www.angonoticias.com/ Angonoticias] (in Portuguese) - A popular news source in Angola
21891 *[http://mangole.hypermart.net Mangole] (in Portuguese) - A full news source in Angola and web directory of angolan sites online
21892 *[http://www.jornaldeangola.com/ Jornal de Angola] (in Portuguese) - A popular newspaper in Angola
21893
21894 ===Overviews===
21895 * [http://news.bbc.co.uk/1/hi/world/africa/country_profiles/1063073.stm BBC - Country profile: ''Angola'']
21896 * [http://www.cia.gov/cia/publications/factbook/geos/ao.html CIA World Factbook - ''Angola'']
21897 * [http://www.state.gov/p/af/ci/ao/ US State Department - ''Angola''] includes Background Notes, Country Study and major reports
21898
21899 ===Radio &amp; Music===
21900 * [http://www.Kizomba.ORG/ Site Official de Kizomba]
21901 * [http://www.CanalAngola.NET/ Radio Canal Angola ONLINE]
21902
21903 ===Directories===
21904 *[http://www.columbia.edu/cu/lweb/indiv/africa/cuvl/Angola.html Columbia University Libraries - ''Angola''] directory category of the WWW-VL
21905 *[http://dmoz.org/Regional/Africa/Angola/ Open Directory Project - ''Angola''] directory category
21906 *[http://www-sul.stanford.edu/depts/ssrg/africa/angola.html Stanford University - Africa South of the Sahara: ''Angola''] directory category
21907
21908 ===Tourism===
21909 *{{wikitravel}}
21910
21911 ===Other===
21912 * [http://www.flashpoints.info/countries-conflicts/Angola-web/angola_briefing.html Angola Conflict Briefing]
21913
21914 {{Africa}}
21915
21916 [[Category:Angola| ]]
21917 [[Category:African Union member states]]
21918 [[Category:Former Portuguese colonies]]
21919 [[Category:CPLP member states]]
21920
21921 [[af:Angola]]
21922 [[am:አንጎላ]]
21923 [[ar:ØŖŲ†ØēŲˆŲ„ا]]
21924 [[an:Angola]]
21925 [[ast:Angola]]
21926 [[bg:АĐŊĐŗĐžĐģĐ°]]
21927 [[zh-min-nan:Angola]]
21928 [[bn:āĻāĻ™ā§āĻ—ā§‹āĻ˛āĻž]]
21929 [[bs:Angola]]
21930 [[ca:Angola]]
21931 [[cs:Angola]]
21932 [[da:Angola]]
21933 [[de:Angola]]
21934 [[et:Angola]]
21935 [[el:ΑÎŗÎēĪŒÎģÎą]]
21936 [[es:Angola]]
21937 [[eo:Angolo]]
21938 [[eu:Angola]]
21939 [[fr:Angola]]
21940 [[gd:Angola]]
21941 [[gl:Angola]]
21942 [[ko:ė•™ęŗ¨ëŧ]]
21943 [[ht:Angola]]
21944 [[hr:Angola]]
21945 [[io:Angola]]
21946 [[id:Angola]]
21947 [[ia:Angola]]
21948 [[is:AngÃŗla]]
21949 [[it:Angola]]
21950 [[he:אנגולה]]
21951 [[jv:Angola]]
21952 [[ku:Angola]]
21953 [[la:Angolia]]
21954 [[lv:Angola]]
21955 [[lt:Angola]]
21956 [[lb:Angola]]
21957 [[li:Angola]]
21958 [[hu:Angola]]
21959 [[mk:АĐŊĐŗĐžĐģĐ°]]
21960 [[mg:Angola]]
21961 [[ms:Angola]]
21962 [[na:Angola]]
21963 [[nl:Angola]]
21964 [[nds:Angola]]
21965 [[ja:ã‚ĸãƒŗゴナ]]
21966 [[no:Angola]]
21967 [[nn:Angola]]
21968 [[oc:AngÃ˛la]]
21969 [[pl:Angola]]
21970 [[pt:Angola]]
21971 [[ro:Angola]]
21972 [[ru:АĐŊĐŗĐžĐģĐ°]]
21973 [[se:Angola]]
21974 [[sa:ā¤…ā¤‚ā¤—āĨ‹ā¤˛ā¤ž]]
21975 [[sq:Angola]]
21976 [[sh:Angola]]
21977 [[scn:Angola]]
21978 [[simple:Angola]]
21979 [[sk:Angola]]
21980 [[sl:Angola]]
21981 [[sr:АĐŊĐŗĐžĐģĐ°]]
21982 [[fi:Angola]]
21983 [[sv:Angola]]
21984 [[tl:Angola]]
21985 [[vi:Angola]]
21986 [[tr:Angola]]
21987 [[uk:АĐŊĐŗĐžĐģĐ°]]
21988 [[zh:厉å“Ĩ拉]]</text>
21989 </revision>
21990 </page>
21991 <page>
21992 <title>Angola/History</title>
21993 <id>702</id>
21994 <revision>
21995 <id>15899228</id>
21996 <timestamp>2002-02-25T15:43:11Z</timestamp>
21997 <contributor>
21998 <username>LA2</username>
21999 <id>445</id>
22000 </contributor>
22001 <minor />
22002 <comment>*</comment>
22003 <text xml:space="preserve">#REDIRECT [[History of Angola]]</text>
22004 </revision>
22005 </page>
22006 <page>
22007 <title>Geography of Angola</title>
22008 <id>703</id>
22009 <revision>
22010 <id>40697070</id>
22011 <timestamp>2006-02-22T10:51:45Z</timestamp>
22012 <contributor>
22013 <ip>83.41.197.224</ip>
22014 </contributor>
22015 <comment>Link to spanish Wikipedia</comment>
22016 <text xml:space="preserve">[[Image:Angola Map.jpg|right||thumb|300px|Map of Angola]]
22017 [[Angola]] is located on the [[South Atlantic]] Coast of West [[Africa]] between [[Namibia]] and the [[Republic of the Congo]]. It also is bordered by the [[Democratic Republic of the Congo]] and [[Zambia]] to the east. The country is divided into an arid coastal strip stretching from Namibia to [[Luanda]]; a wet, interior highland; a dry [[savanna]] in the interior south and southeast; and [[rain forest]] in the north and in [[Cabinda (province)|Cabinda]]. The [[Zambezi River]] and several tributaries of the [[Congo River]] have their sources in Angola. The coastal strip is tempered by the cool [[Benguela]] current, resulting in a climate similar to coastal [[Peru]] or [[Baja California]]. There is a short rainy season lasting from February to April. Summers are hot and dry, while winters are mild. The interior highlands have a mild climate with a rainy season from November through April followed by a cool dry season from May to October. Elevations generally range from 3,000 to 6,000 feet (900 to 1,800 m). The far north and Cabinda enjoy rain throughout much of the year.
22018
22019 The coast is for the most part flat, with occasional low cliffs and bluffs of red [[sandstone]]. There is but one deep inlet of the sea - [[Great Fish Bay]] (or [[Baía dos Tigres]]). Farther north are [[Port Alexander]], [[Little Fish Bay]] and [[Lobito Bay]], while shallower bays are numerous. Lobito Bay has water sufficient to allow large ships to unload close inshore. The coast plain extends inland for a distance varying from 30 to 100 miles (48 to 165 km). This region is in general sparsely watered and somewhat sterile. The approach to the great central plateau of Africa is marked by a series of irregular terraces. This intermediate mountain belt is covered with luxuriant vegetation. Water is fairly abundant, though in the dry season obtainable only by digging in the sandy beds of the rivers. The plateau has an altitude ranging from 4000 to 6000 ft (1,200 to 1,800 m). It consists of well-watered, wide, rolling plains, and low hills with scanty vegetation. In the east the tableland falls away to the basins of the Congo and Zambezi, to the south it merges into a barren sandy [[desert]]. A large number of rivers make their way westward to the sea; they rise, mostly, in the mountain belt, and are unimportant, the only two of any size being the Kwanza and the Kunene, separately noticed. The mountain chains which form the edge of the plateau, or diversify its surface, run generally parallel to the coast, as [[Tala Mugongo]] (4400 ft., 1350 m), [[Chella]] and [[Vissecua]] (5250 ft. to 6500 ft. or 1500 to 2000 m). In the district of [[Benguela]] are the highest points of the province, viz. [[Loviti]] (7780 ft., 2370 m), in 12° 5' S., and [[Mt. Elonga]] (7550 ft., 2300 m). South of the Kwanza is the volcanic mountain [[Caculo-Cabaza]] (3300 ft., 1000 m). From the tableland the [[Kwango]] and many other streams flow north to join the [[Kasai River]] (one of the largest affluents of the Congo), which in its upper course forms for fully 300 mi (490 km). the boundary between Angola and the Congo State. In the south-east part of the province the rivers belong either to the [[Zambezi]] system, or, like the [[Okavango River|Okavango]], drain to [[Lake Ngami]].
22020
22021 == Geology ==
22022
22023 The rock formations of Angola are met with in three distinct regions:
22024
22025 # the [[littoral]] zone,
22026 # the median zone formed by a series of hills more or less parallel with the coast,
22027 # the central plateau.
22028
22029 The central plateau consists of ancient [[crystalline rock]]s with [[granite]]s overlain by [[unfossiliferous]] sandstones and conglomerates of [[Paleozoic]] age. The outcrops are largely hidden under [[laterite]]. The median zone is composed largely of crystalline rocks with granites and some Palaeozoic unfossiliferous rocks. The [[littoral]] zone contains the only [[fossiliferous]] strata. These are of [[Tertiary Age|Tertiary]] and [[Cretaceous]] ages, the latter rocks resting on a reddish sandstone of older date. The Cretaceous rocks of the Dombe Grande region (near Benguella) are of [[Albian age]] and belong to the ''[[Acanthoceras mamillari]]'' zone. The beds containing ''[[Schloenbachia inflata]]'' are referable to the [[Gault]]. Rocks of Tertiary age are met with at Dombe Grande, Mossamedes and near Loanda. The sandstones with [[gypsum]], [[copper]] and [[sulfur]] of Dombe are doubtfully considered to be of [[Triassic]] age. Recent eruptive rocks, mainly [[basalt]]s, form a line of hills almost bare of vegetation between Benguella and Mossamedes. Nepheline basalts and [[liparite]]s occur at Dombe Grande. The presence of [[gum copal]] in considerable quantities in the superficial rocks is characteristic of certain regions.
22030
22031 == Location ==
22032
22033 Southern [[Africa]], bordering the South [[Atlantic Ocean]], between [[Namibia]] and [[Democratic Republic of the Congo]]
22034
22035 '''[[Geographic coordinates]]:''' {{coor dm|12|30|S|18|30|E|type:country}}
22036
22037 '''Map references:''' Africa
22038
22039 == Area ==
22040 * ''total:'' 1,246,700 km²
22041 * ''land:'' 1,246,700 km²
22042 * ''water:'' 0 km²
22043
22044 === Area comparative ===
22045 *[[Australia]] comparative: smaller than the [[Northern Territory]]
22046 *[[Canada]] comparative: slightly smaller than the [[Northwest Territories]]
22047 *[[United Kingdom]] comparative: 5 times bigger than the UK
22048 *[[United States]] comparative: slightly less than twice the size of [[Texas]]
22049
22050 == Capital ==
22051
22052 *[[Luanda]] (SÃŖo Paulo de Loanda) - port - [[railhead]]
22053
22054 == Major Cities ==
22055
22056 *[[Amboim]] (Porto Amboim)
22057 *[[Bailundo]] (Vila Teixeira da Silva)
22058 *[[Benguela]] (SÃŖo Felipe de Benguella) - port - [[railhead]]
22059 *[[CaÃĄla]] (Vila Robert Williams)
22060 *[[Calandula]] (Duque de Bragança)
22061 *[[Camacupa]] (Vila General Machado)
22062 *[[Chibia]] (Vila JoÃŖo de Almeida)
22063 *[[Ganda]] (Vila Mariano Machado)
22064 *[[Huambo]] (Nova Lisboa) - rail
22065 *[[Kuito]] (Silva Porto)
22066 *[[Kuvango]] (Vila da Ponte)
22067 *[[Lubango]] (SÃĄ da Bandeira)
22068 *[[Lwena]] (Vila Luso)
22069 *[[Massango]] (Forte RepÃēblica)
22070 *[[Mbanza Congo]] (SÃŖo Salvador do Congo)
22071 *[[Menongue]] (Serpa Pinto) - [[railhead]]
22072 *[[Namibe]] (MoçÃĸmedes) - port - [[railhead]]
22073 *[[N'Dalatando]] (Vila Salazar) - rail
22074 *[[N'Giva]] (Vila Pereira d'Eça)
22075 *[[Saurimo]] (Vila Henrique de Carvalho)
22076 *[[Soyo]] (Santo AntÃŗnio do Zaire)
22077 *[[Sumbe]] (Novo Redondo)
22078 *[[Tombua]] (Porto Alexandre)
22079 *[[Uíje]] (Carmona)
22080
22081 * Other [[Towns in Angola]]
22082
22083 == Land boundaries ==
22084 * ''total:'' 5,198 km
22085
22086 * ''border countries:'' [[Democratic Republic of the Congo]] 2,511 km (of which 220 km is the boundary of discontiguous [[Angola/Cabinda|Cabinda Province]]), Republic of the Congo 201 km, [[Namibia]] 1,376 km, [[Zambia]] 1,110 km
22087
22088 '''Coastline:''' 1,600 km
22089
22090 '''Maritime claims:'''
22091 * ''contiguous zone:'' 24 nautical miles (44,5 km)
22092 * ''exclusive economic zone:'' 200 [[nautical mile]]s (370 km)
22093 * ''territorial sea:'' 12 nautical miles (22 km)
22094
22095 == Climate ==
22096
22097 Like the rest of tropical Africa, Angola experiences distinct, alternating rainy and dry seasons. It is semiarid in South and along coast to Luanda; North has cool, dry season (May to October) and hot, rainy season (November to April). In the interior, above 3300 ft. (1000 m), the temperature and rainfall decrease. The plateau climate is healthy and invigorating. The mean annual temperature at [[SÃŖo Salvador do Congo]] is 22.2° C (72.5° F); at [[Loanda]], 23.3° C (74.3° F); and at [[Caconda]], 19.5° C (67.2° F). The climate is greatly influenced by the prevailing [[wind]]s, which arc W., S.W. and S.S.W. Two seasons are distinguished - the cool, from June to September; and the rainy, from October to May. The heaviest [[rainfall]] occurs in April, and is accompanied by violent storms.
22098
22099 == Terrain ==
22100 Angola has three principal natural regions: the coastal lowland, characterized by low plains and terraces; hills and mountains, rising inland from the coast into a great escarpment; and an area of high plains, called the high plateau (planalto), which extends eastward from the escarpment. The highest point in Angola is [[Morro de Moco]], at 2,620 m.
22101
22102 ===Coastal lowland===
22103 The coastal lowland rises from the sea in a series of low terraces. This region varies in width from about 25 kilometers near Benguela to more than 150 kilometers in the Cuanza River Valley just south of Angola's capital, Luanda, and is markedly different from Angola's highland mass. The Atlantic Ocean's cold, northwardflowing Benguela Current substantially reduces precipitation along the coast, making the region relatively arid or nearly so south of Benguela (where it forms the northern extension of the Namib Desert), and quite dry even in its northern reaches. Even where, as around Luanda, the average annual rainfall may be as much as fifty centimeters, it is not uncommon for the rains to fail. Given this pattern of precipitation, the far south is marked by sand dunes, which give way to dry scrub along the middle coast. Portions of the northern coastal plain are covered by thick brush.
22104
22105 ===Hills and mountains===
22106 The belt of hills and mountains parallels the coast at distances ranging from 20 kilometers to 100 kilometers inland. The Cuanza River divides the zone into two parts. The northern part rises gradually from the coastal zone to an average elevation of 500 meters, with crests as high as 1,000 meters to 1,800 meters. South of the Cuanza River, the hills rise sharply from the coastal lowlands and form a high escarpment, extending from a point east of Luanda and running south through Namibia. The escarpment reaches 2,400 meters at its highest point, southeast of the town of Sumbe, and is steepest in the far south in the Serra da Chela mountain range.
22107
22108 ===High plateau===
22109 The high plateau lies to the east of the hills and mountains and dominates Angola's terrain. The surface of the plateau is typically flat or rolling, but parts of the Benguela Plateau and the Humpata Highland area of the Huíla Plateau in the south reach heights of 2,500 meters and more. The Malanje Plateau to the north rarely exceeds 1,000 meters in height. The Benguela Plateau and the coastal area in the immediate environs of Benguela and Lobito, the BiÊ Plateau, the Malanje Plateau, and a small section of the Huíla Plateau near the town of Lubango have long been among the most densely settled areas in Angola.
22110
22111 ==Drainage==
22112
22113 Most of the country's many rivers originate in central Angola, but their patterns of flow are diverse and their ultimate outlets varied. A number of rivers flow in a more or less westerly course to the Atlantic Ocean, providing water for irrigation in the dry coastal strip and the potential for hydroelectric power, only some of which had been realized by 1988. Two of Angola's most important rivers, the Cuanza and the Cunene, take a more indirect route to the Atlantic, the Cuanza flowing north and the Cunene flowing south before turning west. The Cuanza is the only river wholly within Angola that is navigable--for nearly 200 kilometers from its mouth- -by boats of commercially or militarily significant size. The Congo River, whose mouth and western end form a small portion of Angola's northern border with Zaire, is also navigable.
22114
22115 North of the Lunda Divide a number of important tributaries of the Congo River flow north to join it, draining Angola's northeast quadrant. South of the divide some rivers flow into the Zambezi River and thence to the Indian Ocean, others to the Okavango River (as the Cubango River is called along the border with Namibia and in Botswana) and thence to the Okavango Swamp in Botswana. The tributaries of the Cubango River and several of the southern rivers flowing to the Atlantic are seasonal, completely dry much of the year.
22116
22117 ==Land use and hazards==
22118
22119 '''Natural resources:''' [[petroleum]], [[diamond]]s, [[iron]] ore, [[phosphates]], [[copper]], [[feldspar]], [[gold]], [[bauxite]], [[uranium]]
22120
22121 '''Land use:'''
22122 * ''arable land:'' 2.41%
22123 * ''permanent crops:'' 0.4%
22124 * ''other:'' 97.19% (1999 est.)
22125
22126 '''Irrigated land:''' 750 km² (1998 est.)
22127
22128 '''Natural hazards:''' locally heavy rainfall causes periodic flooding on the plateau
22129
22130 == Environment - current issues ==
22131 Overuse of [[pasture]]s and subsequent [[soil erosion]] attributable to population pressures; [[desertification]]; [[deforestation]] of tropical rain forest, in response to both international demand for tropical [[timber]] and to domestic use as fuel, resulting in loss of [[biodiversity]]; soil erosion contributing to [[water pollution]] and [[silting]] of rivers and dams; inadequate supplies of potable water
22132
22133 '''Environment - international agreements:'''
22134 * ''party to:'' Biodiversity, [[Climate Change]], Desertification, [[Law of the Sea]], [[Ozone Layer Protection]], Ship Pollution ([[MARPOL 73/78]])
22135 * ''signed, but not ratified:'' none of the selected agreements
22136
22137 == Flora and fauna ==
22138
22139 Both [[flora (plants)|flora]] and [[fauna (animals)|fauna]] are those characteristic of the greater part of tropical Africa. As far south as Benguela the coast region is rich in [[oil palm]]s and [[mangrove]]s. In the Northern part of the province are dense forests. In the South towards the Kunene are regions of dense [[thorn scrub]]. [[Rubber]] vines and trees are abundant, but in some districts their number has been considerably reduced by the primitive methods adopted by native collectors of rubber. The species most common are various root rubbers, notably the ''Carpodinus chylorrhiza''. This species and other varieties of carpodinus are very widely distributed. [[Landolphia]]s are also found. The [[coffee]], [[cotton]] and [[Guinea pepper]] plants are indigenous, and the [[tobacco]] plant flourishes in several districts. Among the trees are several which yield excellent timber, such as the [[tacula]] (''Pterocarpus tinctorius''), which grows to an immense size, its wood being blood-red in colour, and the Angola [[mahogany]]. The [[bark]] of the [[musuemba]] (''Albizzia coriaria'') is largely used in the tanning of [[leather]]. The [[mulundo]] bears a fruit about the size of a cricket ball covered with a hard green shell and containing scarlet pips like a [[pomegranate]]. The fauna includes the [[lion]], [[leopard]], [[cheetah]], [[elephant]], [[giraffe]], [[rhinoceros]], [[hippopotamus]], [[African Buffalo|buffalo]], [[zebra]], [[kudu]] and many other kinds of [[antelope]], [[wildpig]], [[ostrich]] and [[crocodile]]. Among fish are the [[barbel]], [[bream]] and [[African yellow fish]].
22140
22141 '''Geography - note:''' the province of [[Cabinda (province)|Cabinda]] is an [[exclave]], separated from the rest of the country by the [[Democratic Republic of the Congo]]
22142
22143 == Extreme points ==
22144
22145 This is a list of the '''extreme points of [[Angola]]''', the points that are farther north, south, east or west than any other location.
22146
22147 '''''Angola'''''
22148
22149 * Northernmost Point - unnamed point on the border with [[Republic of the Congo]] (north of the town [[Caio Bemba]], [[Cabinda (province)|Cabinda]] province (an Angolan [[exclave]])
22150 * Easternmost Point - unnamed location on a river section of the border with [[Zambia]] (north of the town [[Sapeta]] in Zambia), [[Moxico (province)|Moxico]] province
22151 * Southernmost Point - on the point where the [[Cunene River]] section of the border with [[Namibia]] terminates at the [[Caprivi Strip]] (immediately north of the town [[Andara]] in Namibia, [[Cuando Cubango]] province
22152 * Westernmost Point - [[Baía dos Tigres]] island, [[Namibe Province]]
22153
22154 '''''Angola (mainland)'''''
22155
22156 * Northernmost Point - a point on the border with the [[Democratic Republic of Congo]] immediately to the north-west of the town [[Luvo]], [[Zaire Province]]
22157 * Easternmost Point - unnamed point on a river section of the border with [[Zambia]] (north of the town [[Sapeta]] in Zambia), [[Moxico (province)|Moxico]] province
22158 * Southernmost Point - on the point where the [[Cunene River]] section of the border with [[Namibia]] terminates at the [[Caprivi Strip]] (immediately north of the town [[Andara]] in Namibia, [[Cuando Cubango]] province
22159 * Westernmost Point - unnamed headland west of [[Tombua]] (Porto Alexandre), [[Namibe Province|Namibe]]
22160
22161 == Sources ==
22162 *[http://lcweb2.loc.gov/frd/cs/cshome.html Library of Congress, Country Studies]
22163 *''Much of the material in this article comes from the [[CIA World Factbook]] 2003 and the 2003 U.S. Department of State website.''
22164 *{{1911}}
22165
22166 == See also ==
22167 *[[Angola]]
22168 *[[Extreme points of Angola]]
22169
22170 {{Africa in topic|Geography of}}
22171
22172 [[Category:Geography of Angola| ]]
22173 [[Category:Geography by country|Angola, Geography of]]
22174
22175 [[es:Geografía de Angola]]
22176 [[fr:GÊographie de l'Angola]]
22177 [[pt:Geografia de Angola]]</text>
22178 </revision>
22179 </page>
22180 <page>
22181 <title>Demographics of Angola</title>
22182 <id>704</id>
22183 <revision>
22184 <id>41587062</id>
22185 <timestamp>2006-02-28T09:00:51Z</timestamp>
22186 <contributor>
22187 <ip>203.131.142.187</ip>
22188 </contributor>
22189 <text xml:space="preserve">[[Image:Angola demography.png|thumb|300px|right|Demographics of [[Angola]], Data of [[Food and Agriculture Organization|FAO]], year 2005 ; Number of inhabitants in thousands.]]
22190 The '''demographics of Angola''' consist of three main ethnic groups, each speaking a [[Bantu language]]: [[Ovimbundu]] 37%, [[Kimbundu]] 25%, and [[Bakongo]] 13%. Other groups include [[Chokwe]] (or Lunda), Ganguela, Nhaneca-Humbe, Ambo, Herero, and Xindunga. In addition, mixed racial (European and Africa) people amount to about 2%, with a small (1%) population of whites, mainly ethnically [[Portuguese people|Portuguese]]. Portuguese make up the largest non-Angolan population, with at least 30,000 (though many native-born Angolans can claim Portuguese nationality under Portuguese law). In [[1975]], 250,000 [[Cuba]]n soldiers settled Angola to help the MPLA forces to fight for its independence. These Cubans are of European and [[Asia]]n (mostly [[Chinese Cuban| Chinese]] descent, while others include those of pure [[Afro-Cuban|African]] and [[mulatto]] descent, who has ancestors in Angola. But in [[1989]], almost all Cubans went out of the country after a peace agreement has been signed between Angola, Cuba, and [[South Africa]]. Cubans speak [[Spanish language]], but almost none of their descendants speak it. [[Portuguese language|Portuguese]] is both the official and predominant language.
22191
22192 The great majority of the inhabitants are of Bantu-Negro stock with some admixture in the Congo district with the pure negro type. In the south-east are various tribes of Bushmen. The best-known of the Bantu-Negro tribes are the Ba-Kongo (Ba-Fiot), who dwell chiefly in the north, and the Abunda (Mbunda, Ba-Bundo), who occupy the central part of the province, which takes its name from the Ngola tribe of Abunda. Another of these tribes, the Bangala, living on the west bank of the upper Kwango, must not be confounded with the Bangala of the middle [[Congo]]. In the Abunda is a considerable strain of Portuguese blood. The Ba-Lunda inhabit the Lunda district. Along the upper Kunene and in other districts of the plateau are settlements of Boers, the Boer population being about 2000. In the coast towns the majority of the white inhabitants are Portuguese. The Mushi-Kongo and other divisions of the Ba-Kongo retain curious traces of the Christianity professed by them in the sixteenth and seventeenth centuries and possibly later. Crucifixes are used as potent fetish charms or as symbols of power passing down from chief to chief; whilst every native has a &quot;Santu&quot; or Christian name and is dubbed dom or dona. Fetishism is the prevailing religion throughout the province. The dwelling-places of the natives are usually small huts of the simplest construction, used chiefly as sleeping apartments; the day is spent in an open space in front of the hut protected from the sun by a roof of palm or other leaves.
22193
22194 ==Demographic data from the CIA World Factbook==
22195 [[Image:Angola population pyramid 2005.png|thumb|300px|[[Population pyramid]] for Angola]]
22196 ===Population===
22197 :11,190,786 (July 2005 est.)
22198
22199 ===Age structure===
22200 :0-14 years: 43.4% (male 2,454,209/female 2,407,083)
22201 :15-64 years: 53.7% (male 3,059,339/female 2,955,060)
22202 :65 years and over: 2.8% (male 139,961/female 175,134) (2005 est.)
22203
22204 ===Median age===
22205 :Total: 18.12 years
22206 :Male: 18.12 years
22207 :Female: 18.11 years (2005 est.)
22208
22209 ===Population growth rate===
22210 :1.9% (2005 est.)
22211
22212 ===Birth rate===
22213 :44.64 births/1,000 population (2005 est.)
22214
22215 ===Death rate===
22216 :25.9 deaths/1,000 population (2005 est.)
22217
22218 ===Net migration rate===
22219 :0.28 migrant(s)/1,000 population (2005 est.)
22220
22221 ===Sex ratio===
22222 :At birth: 1.05 male(s)/female
22223 :Under 15 years: 1.02 male(s)/female
22224 :15-64 years: 1.04 male(s)/female
22225 :65 years and over: 0.8 male(s)/female
22226 :Total population: 1.02 male(s)/female (2005 est.)
22227
22228 ===Infant mortality rate===
22229 :Total: 191.19 deaths/1,000 live births
22230 :Male: 203.68 deaths/1,000 live births
22231 :Female: 178.07 deaths/1,000 live births (2005 est.)
22232
22233 ===Life expectancy at birth===
22234 :Total population: 36.61 years
22235 :Male: 36 years
22236 :Female: 37.25 years (2005 est.)
22237
22238 ===Total fertility rate===
22239 :6.27 children born/woman (2005 est.)
22240
22241 ===HIV/AIDS===
22242 :Adult prevalence rate: 3.9% (2003 est.)
22243 :People living with HIV/AIDS: 240,000 (2003 est.)
22244 :Deaths: 21,000 (2003 est.)
22245
22246 ===Major infectious diseases===
22247 :Degree of risk: very high
22248 :Food or waterborne diseases: bacterial and protozoal diarrhea, hepatitis A, typhoid fever
22249 :Vectorborne diseases: malaria, African trypanosomiasis (sleeping sickness) are high risks in some locations
22250 :Respiratory disease: meningococcal meningitis
22251 :Water contact disease: schistosomiasis (2004)
22252
22253 ===Nationality===
22254 :Noun: Angolan(s)
22255 :Adjective: Angolan
22256
22257 ===Ethnic groups===
22258 :Ovimbundu 37%, Kimbundu 25%, Bakongo 13%, mestico (mixed European and native African) 2%, European 1%, other 22%
22259
22260 ===Religions===
22261 :Indigenous beliefs 47%, Roman Catholic 38%, Protestant 15% (1998 est.)
22262
22263 ===Languages===
22264 :Portuguese (official), Bantu and other African languages
22265
22266 ===Literacy===
22267 :Definition: age 15 and over can read and write
22268 :Total population: 42%
22269 :Male: 56%
22270 :Female: 28% (1998 est.)
22271
22272 ==References==
22273 ''Much of the material in this article comes from the [[CIA World Factbook]] 2005 and the 2003 U.S. Department of State website.''
22274
22275 {{Africa in topic|Demographics of}}
22276
22277 [[Category:Geography of Angola]]
22278 [[Category:Angolan society]]
22279 [[Category:Demographics by country|Angola]]</text>
22280 </revision>
22281 </page>
22282 <page>
22283 <title>Politics of Angola</title>
22284 <id>705</id>
22285 <revision>
22286 <id>35512983</id>
22287 <timestamp>2006-01-17T07:09:30Z</timestamp>
22288 <contributor>
22289 <username>Acntx</username>
22290 <id>104025</id>
22291 </contributor>
22292 <comment>/* International organization participation */</comment>
22293 <text xml:space="preserve">{{Politics of Angola}}
22294 [[Angola]] changed from a [[Single-party state|one-party]] [[Marxist]]-[[Leninist]] system ruled by the [[MPLA]] to a formal multiparty democracy following the 1992 elections. President [[JosÊ Eduardo dos Santos|dos Santos]] won the first round election with more than 49% of the vote to [[Jonas Savimbi]]'s 40%. A runoff never has taken place. The subsequent renewal of civil war and collapse of the [[Lusaka Protocol]] have left much of this process stillborn, but democratic forms exist, notably the [[National Assembly of Angola|National Assembly]].
22295 Currently, political power is concentrated in the Presidency. The executive branch of the government is composed of the President, the Prime Minister (currently [[Fernando da Piedade Dias dos Santos]]) and Council of Ministers. The Council of Ministers, composed of all government ministers and vice ministers, meets regularly to discuss policy issues. Governors of the 18 provinces are appointed by and serve at the pleasure of the president. The Constitutional Law of 1992 establishes the broad outlines of government structure and delineates the rights and duties of citizens. The legal system is based on Portuguese and customary law but is weak and fragmented. Courts operate in only 12 of more than 140 municipalities. A Supreme Court serves as the appellate tribunal; a Constitutional Court with powers of judicial review has never been constituted despite statutory authorization.
22296
22297 The 26-year long civil war has ravaged the country's political and social institutions. The UN estimates of 1.8 million [[internally displaced person]]s (IDPs), while generally the accepted figure for war-affected people is 4 million. Daily conditions of life throughout the country and specifically Luanda (population approximately 4 million) mirror the collapse of administrative infrastructure as well as many social institutions. The ongoing grave economic situation largely prevents any government support for social institutions. Hospitals are without medicines or basic equipment, schools are without books, and public employees often lack the basic supplies for their day-to-day work.
22298
22299
22300 ==Executive branch==
22301 {{office-table}}
22302 |[[President of Angola|President]]
22303 |[[JosÊ Eduardo dos Santos]]
22304 |[[Popular Movement for the Liberation of Angola|MPLA]]
22305 |[[21 September]] [[1979]]
22306 |-
22307 |[[Prime Minister of Angola|Prime Minister]]
22308 |[[Fernando da Piedade Dias dos Santos]] &quot;Nando&quot;
22309 |[[Popular Movement for the Liberation of Angola|MPLA]]
22310 |[[6 December]] [[2002]]
22311 |}
22312 The president is elected for a five year term by the people. The Council of Ministers appointed by the president.
22313
22314 ==Legislative branch==
22315 The '''[[National Assembly of Angola|National Assembly]]''' (''Assembleia Nacional'') has 220 members, elected for a four year term, 130 members by [[proportional representation]] and 90 members in provincial districts. The next elections, due for 1997, have been put off indefinitely.
22316
22317 ==Political parties and elections==
22318 {{elect|List of political parties in Angola|Elections in Angola}}
22319 The president has announced the government's intention to hold elections in [[2006]]. These elections would be the first since 1992 and would serve to elect both a new president and a new National Assembly.
22320 {{Angola presidential election, 1992}}
22321 {{Angola parliamentary election, 1992}}
22322
22323 ==Judicial branch==
22324 Supreme Court or Tribunal da Relacao, judges of the Supreme Court are appointed by the president
22325
22326 ==Administrative divisions==
22327 Angola has eighteen provinces (provincias, singular - provincia); Bengo, Benguela, Bie, Cabinda, Cuando Cubango, Cuanza Norte, Cuanza Sul, Cunene, Huambo, Huila, Luanda, Lunda Norte, Lunda Sul, Malanje, Moxico, Namibe, Uige, Zaire
22328
22329 ==Political pressure groups and leaders==
22330 Front for the Liberation of the Enclave of Cabinda or FLEC [N'zita Henriques TIAGO; Antonio Bento BEMBE]
22331 * ''note:'' FLEC is waging a small-scale, highly factionalized, armed struggle for the independence of Cabinda Province
22332
22333 ==International organization participation==
22334 ACP, AfDB, CEEAC, ECA, FAO, G-77, IAEA, IBRD, ICAO, ICCt (signatory), ICFTU, ICRM, IDA, IFAD, IFC, IFRCS, ILO, IMF, IMO, Interpol, IOC, IOM, ISO (correspondent), ITU, NAM, OAS (observer), OAU, SADC, UN, UN Security Council (temporary), UNCTAD, UNESCO, UNIDO, UPU, WCO, WFTU, WHO, WIPO, WMO, WToO, WTrO
22335
22336 {{Africa in topic|Politics of}}
22337
22338 [[Category:Politics of Angola| ]]
22339
22340 [[pt:Política de Angola]]</text>
22341 </revision>
22342 </page>
22343 <page>
22344 <title>Economy of Angola</title>
22345 <id>706</id>
22346 <revision>
22347 <id>38981232</id>
22348 <timestamp>2006-02-09T22:46:25Z</timestamp>
22349 <contributor>
22350 <username>Briaboru</username>
22351 <id>284038</id>
22352 </contributor>
22353 <text xml:space="preserve">{{Economy of Angola table}}
22354 [[Angola]]'s is the fastest-growing economy in Africa, largely due to a major oil boom, but it also ranks in the bottom 10 of socioeconomic conditions in the world. Aside from the oil sector and [[diamond]]s, it is in economic disarray because of 26 years of nearly continuous warfare. Despite abundant natural resources, output per capita remains among the world's lowest. Subsistence agriculture and dependence on humanitarian food assistance sustain the large majority of the population. Little industry exists.
22355
22356 By contrast, the rapidly expanding [[petroleum]] industry now producing up to 800,000 barrels (127,000 m&amp;sup3;) per day, behind only Nigeria in Africa, accounts for more than 60% of GNP and 90% of government revenues. Oil production remains largely offshore and has few linkages with other sectors of the economy. Block Zero, located of the enclave of Cabinda, provides the majority of Angola's crude oil production. There, [[ChevronTexaco]], through its subsidiary Cabinda Gulf Oil Company, is the operator with a 39.2% share, with [[SONANGOL]] (the Angolan state oil company), [[Total S.A.|Total]], and [[ENI-Agip]] splitting up the rest. ChevronTexaco also operates Angola's first producing deepwater section, Block 14, which started pumping in January 2000. The U.S. takes more than half of Angola's production, by far the largest importer. Exports to Asian countries have grown rapidly in recent years, however, especially China. Significant discoveries have been made on deepwater Blocks 15, 17, 18, and 24, with [[ExxonMobil]], [[BP]], [[Statoil]], [[Norsk Hydro]], and [[Agip]] having major interests. Total operates Angola's one refinery (in Luanda) as a joint venture with SONANGOL; plans for a second refinery in Lobito are moving forward.
22357
22358 In the last decade of the colonial period, Angola was a major African food exporter but now is forced to import almost all its food. Because of severe wartime conditions, including extensive planting of landmines throughout the countryside, agricultural activities have been brought to a near standstill. Some efforts to recover have gone forward, however, notably in fisheries. Coffee production, though a fraction of its pre-1975 level, is sufficient for domestic needs and some exports. In sharp contrast to a bleak picture of devastation and bare subsistence is expanding oil production, now almost half of GDP and 90% of exports, at 800,000 barrels (127,000 m&amp;sup3;) a day. Diamonds make up most of the remaining exports--and have provided much of the revenue for [[Jonas Savimbi]]'s [[UNITA]] rebellion through illicit trade. Other rich resources await development: gold, forest products, fisheries, iron ore, coffee, and countless fruits.
22359
22360 An economic reform effort was launched in 1998. In April 2000, Angola started an International Monetary Fund (IMF) Staff-Monitored Program (SMP). The program formally lapsed in June 2001, but the IMF remains engaged. In this context, the Government of Angola has succeeded in unifying exchange rates and has raised fuel, electricity, and water rates. The Commercial Code, telecommunications law, and Foreign Investment Code are being modernized. A privatization effort, prepared with World Bank assistance, has begun with the BCI bank. Nevertheless, a legacy of fiscal mismanagement and corruption persists.
22361
22362 Angola is the third-largest trading partner of the United States in Sub-Saharan Africa, largely because of its petroleum exports. The U.S. imports about 4% of its oil from Angola, a share which should continue to increase. By the same token, U.S. companies account for more than half the investment in Angola, with Chevron-Texaco leading the way. The U.S. exports industrial goods and services--primarily oilfield equipment, mining equipment, chemicals, aircraft, and food--to Angola, while principally importing petroleum.
22363
22364 '''Economy - overview:''' Angola is an economy in disarray because of a quarter century of nearly continuous warfare and corruption. Despite its abundant natural resources, output per capita is among the world's lowest. Subsistence agriculture provides the main livelihood for 85% of the population. Oil production and the supporting activities are vital to the economy, contributing about 45% to GDP and 90% of exports. Notwithstanding the signing of a peace accord in November 1994, violence continues, millions of land mines remain, and many farmers are reluctant to return to their fields. As a result, much of the country's food must still be imported. To take advantage of its rich resources - [[gold]], [[diamond]]s, extensive forests, Atlantic fisheries, and large oil deposits - Angola will need to implement the peace agreement and reform government policies. Despite the increase in the pace of civil warfare in late 1998, the economy grew by an estimated 4% in 1999. The government introduced new currency denominations in 1999, including a 1 and 5 kwanza note. Expanded oil production brightens prospects for 2000, but internal strife discourages investment outside of the petroleum sector.
22365 [[Category:African Union member economies|Angola]]</text>
22366 </revision>
22367 </page>
22368 <page>
22369 <title>Communications in Angola</title>
22370 <id>707</id>
22371 <revision>
22372 <id>37393314</id>
22373 <timestamp>2006-01-30T19:24:11Z</timestamp>
22374 <contributor>
22375 <username>ZachPruckowski</username>
22376 <id>626251</id>
22377 </contributor>
22378 <minor />
22379 <text xml:space="preserve">[[Communication|Communications]] in [[Angola]]:
22380
22381 ==Telephony==
22382 Telephone service is limited mostly to government and business use. 96,300 [[landline|main lines]] were reported to be in use in 2003, and 130,000 [[mobile cellular]] lines were reported in 2002. [[high frequency|HF]] [[radiotelephone]] is used extensively for military links.
22383
22384 The domestic system consists of a limited system of [[wire]]. It also uses [[microwave radio relay]] and [[tropospheric scatter]].
22385
22386 The international [[country calling code|country code]] for Angola is 244. Angola has 2 [[Intelsat]] [[satellite earth station]]s for communications across the [[Atlantic Ocean]]. [[Fiber optic]] [[submarine cable]] ([[SAT-3/WASC]]) provides connectivity to [[Europe]] and [[Asia]].
22387
22388 ==Radio==
22389 :'''Broadcast stations''': AM 21, FM 6, shortwave 7 (2000)
22390 :'''Radios''': 630,000 (1997)
22391
22392 ==Television==
22393 :'''Broadcast stations''': 6 (2000)
22394 :'''Televisions''': 150,000 (1997)
22395
22396 ==Internet==
22397 :'''Internet hosts''': 17 (2003)
22398 :'''Internet users''': 200,000 (2002)
22399 :'''[[ISO 3166-1 alpha-2]] [[country code]]''': AO
22400
22401 ==Reference==
22402 *[[CIA World Factbook]] 2004
22403
22404 {{Africa-stub}}
22405
22406 [[Category:Communications in Angola| ]]</text>
22407 </revision>
22408 </page>
22409 <page>
22410 <title>Transport in Angola</title>
22411 <id>708</id>
22412 <revision>
22413 <id>36634605</id>
22414 <timestamp>2006-01-25T12:33:02Z</timestamp>
22415 <contributor>
22416 <username>Tabletop</username>
22417 <id>173687</id>
22418 </contributor>
22419 <comment>under construction</comment>
22420 <text xml:space="preserve">'''Transportation in Angola''' comprises:
22421 == Railways ==
22422 * ''total:'' 2,761 km
22423 * ''narrow gauge:'' 2,638 km 1.067-m gauge; 123 km 0.600-m gauge (2002)
22424 * there are three separate lines which do not link up. A fourth system linked [[Gunza]] and [[Gabela]].
22425
22426 * railways in Angola have suffered a lot of damage in the civil war, and a $4b project is proposed to restore the lines, and even to extend the system. A link to Namibia is partly under construction.
22427
22428 === Railway links to adjacent countries ===
22429
22430 The major railway in [[Angola]] is the [[Benguela railway]], severely damaged during the civil war after independence.
22431
22432 * [[Transportation in the Democratic Republic of the Congo|Congo]] - no - [[Lobito]] - [[Lubumbashi]] restoration link proposed.
22433 * [[Transportation in Namibia|Namibia]] - no - same gauge - links proposed and partially under construction in [[2005]].
22434 * [[Transportation in Zambia|Zambia]] - no
22435
22436 == Highways ==
22437 * ''total:'' 76,626 km
22438 * ''paved:'' 19,156 km
22439 * ''unpaved:'' 57,470 km (1997 est.)
22440
22441 == Waterways == 1,295 km navigable
22442
22443 == Pipelines ==
22444
22445 * crude oil 179 km
22446
22447 == Ports and harbors ==
22448 === Atlantic Ocean ===
22449 * from North to South
22450 * [[Ambriz]]
22451 * [[Cabinda (province)|Cabinda]]
22452 * [[Luanda]] - [[railhead]] for [[Malanje]]
22453 * [[Lobito]] - [[railhead]] for [[Democratic Republic of the Congo|Congo]]
22454 * [[Malongo]]
22455 * [[Namibe]] - [[railhead]] for [[Menongue]]
22456 * [[Porto Amboim]]
22457 * [[Soyo]]
22458
22459 == Merchant marine ==
22460 * ''total:'' 8 ships (1,000 GRT or over) 30,311 GRT/48,924 DWT
22461 * ''ships by type:'' cargo 7, petroleum tanker 1 (2002 est.)
22462
22463 == Airports == 243 (2002)
22464
22465 === Airports - with paved runways ===
22466 * ''total:'' 32
22467 * ''over 3,047 m:'' 4
22468 * ''2,438 to 3,047 m:'' 8
22469 * ''1,524 to 2,437 m:'' 14
22470 * ''914 to 1,523 m:'' 5
22471 * ''under 914 m:'' 1 (2002 est.)
22472
22473 === Airports - with unpaved runways ===
22474 * ''total:'' 211 (2002)
22475 * ''over 3,047 m:'' 2
22476 * ''2,438 to 3,047 m:'' 4
22477 * ''1,524 to 2,437 m:'' 30
22478 * ''914 to 1,523 m:'' 95
22479 * ''under 914 m:'' 80 (2002 est.)
22480
22481 === National Airline ===
22482 * [[TAAG Air Angola]]
22483
22484 == Reference ==
22485 ''This article comes from the [[CIA World Factbook]] 2003.''
22486
22487 == See also ==
22488
22489 * [[Angola]]
22490
22491
22492
22493 {{CIAfb}}
22494
22495
22496 {{Africa in topic|Transport in}}
22497
22498
22499 [[Category:Transportation in Angola| ]]</text>
22500 </revision>
22501 </page>
22502 <page>
22503 <title>Military of Angola</title>
22504 <id>709</id>
22505 <revision>
22506 <id>42091342</id>
22507 <timestamp>2006-03-03T19:45:35Z</timestamp>
22508 <contributor>
22509 <username>Rich Farmbrough</username>
22510 <id>82835</id>
22511 </contributor>
22512 <minor />
22513 <text xml:space="preserve">{{Military
22514 | color=#CC3300
22515 | age=17 years of age for compulsory military service; conscript service obligation - 2 years plus time for training (2001)
22516 | availability=2,423,221 (2005 est.)
22517 | service=1,174,548 (2005 est.)
22518 | reaching age=121,254 (2005 est.)
22519 | active=
22520 | amount=$183.58 million (2004)
22521 | percent GDP=10.6% (2004)
22522 }}
22523
22524 [[Angola]]'s military is called the FAA, the Portuguese acronym for [[Angolan Armed Forces]], headed by a Chief of Staff who reports to the Minister of Defense. There are three divisions--the '''Army''', Navy ('''Marinha de Guerra''', MdG), and '''Air and Air Defense Forces''' (FANA). Total manpower is about 110,000. The army is by far the largest of the services with about 100,000 men and women. The navy numbers about 3,000 and operates several small patrol craft and barges. Air force personnel total about 7,000; its equipment includes Russian-manufactured fighters and transport planes. A small number of FAA personnel are stationed in the [[Democratic Republic of the Congo]] (Kinshasa) and the [[Republic of the Congo]] (Brazzaville).
22525
22526 ==References==
22527 *''[[CIA World Factbook]]'', 2005
22528 *''U.S. Department of State Background Notes'', 2003
22529
22530 [[Category:Military of Angola]]
22531 [[Category:Militaries|Angola]]</text>
22532 </revision>
22533 </page>
22534 <page>
22535 <title>Foreign relations of Angola</title>
22536 <id>710</id>
22537 <revision>
22538 <id>39812262</id>
22539 <timestamp>2006-02-16T00:55:16Z</timestamp>
22540 <contributor>
22541 <ip>71.3.230.131</ip>
22542 </contributor>
22543 <text xml:space="preserve">{{Politics of Angola}}
22544 Froom 1975 to 1989, [[Angola]] was aligned with the [[Eastern bloc]], in particular the [[Soviet Union]] and [[Cuba]]. Since then, it has focused on improving relationships with [[Western world|Western countries]], cultivating links with other Portuguese-speaking countries, and asserting its own national interests in [[Central Africa]] through military and diplomatic intervention. In 1993, it established formal diplomatic relations with the [[United States]]. It has entered the [[Southern African Development Community]] as a vehicle for improving ties with its largely anglophone neighbors to the south. [[Zimbabwe]] and [[Namibia]] joined Angola in its military intervention in the [[Democratic Republic of the Congo]], where Angolan troops remain in support of the [[Joseph Kabila]] government. It also has intervened in the [[Republic of the Congo]] (Brazzaville) to support the existing government in that country.
22545
22546 Since 1998, Angola has successfully worked with the [[UN Security Council]] to impose and carry out sanctions on [[UNITA]]. More recently, it has extended those efforts to controls on conflict diamonds, the primary source of revenue for UNITA. At the same time, Angola has promoted the revival of the Community of Portuguese-Speaking Countries (CPLP) as a forum for cultural exchange and expanding ties with Portugal and Brazil in particular.
22547
22548 '''Disputes - international:''' [[Angola]] gives shelter to thousands of refugees from the Democratic Republic of the Congo while thousands of Angolan refugees still remain in neighboring states as a consequence of the protracted civil wars in both states
22549
22550 '''Illicit drugs:''' [[Angola]] is used as a transshipment point for cocaine destined for [[Western Europe]] and other African states
22551
22552 ==Reference==
22553 ''Much of the material in this article comes from the [[CIA World Factbook]] 2003 and the 2003 U.S. Department of State website.''
22554
22555 {{Africa in topic|Foreign relations of}}
22556
22557 [[Category:Foreign relations of Angola| ]]</text>
22558 </revision>
22559 </page>
22560 <page>
22561 <title>Albert Sidney Johnston</title>
22562 <id>711</id>
22563 <revision>
22564 <id>41210266</id>
22565 <timestamp>2006-02-25T20:31:06Z</timestamp>
22566 <contributor>
22567 <ip>213.232.248.85</ip>
22568 </contributor>
22569 <comment>/* Texas Army */</comment>
22570 <text xml:space="preserve">[[Image:ASJohnston.jpeg|thumb|Albert Sidney Johnston]]
22571 '''Albert Sidney Johnston''' ([[February 2]], [[1803]] &amp;ndash; [[April 6]], [[1862]]) was a career [[U.S. Army]] officer and a [[Confederate States Army | Confederate]] [[general]] during the [[American Civil War]]. Considered by [[President of the Confederate States | Confederate President]] [[Jefferson Davis]] to be the finest general in the Confederacy, he was killed early in the war at the [[Battle of Shiloh]].
22572
22573 ==Early life==
22574 Johnston was born in [[Washington, Kentucky | Washington]], [[Kentucky]], the youngest son of Dr. John and Abigail Harris Johnston. His father was a native of [[Salisbury, Connecticut]]. Although Albert Johnston was born in Kentucky, he lived much of his life in [[Texas]], which he considered his home. He was educated at [[Transylvania University]] in [[Lexington, Kentucky | Lexington]] and later secured an appointment to [[United States Military Academy|West Point]]. In [[1826]] he graduated eighth in his class from the [[United States Military Academy]] with a commission as a [[second lieutenant]] in the 2nd U.S. [[Infantry]]. He was assigned to posts in [[New York]] and [[Missouri]] and served in the [[Black Hawk War]] in [[1832]] as chief of staff to General Henry Atlinson. In [[1829]] he married Henrietta Preston. He resigned his commission in [[1834]] to return to Kentucky to care for his dying wife. They had one son, William Preston Johnston.
22575
22576 ==Texas Army==
22577 In April 1834, Johnston took up farming in [[Texas]], but enlisted as a [[Private (rank)|private]] in the Texas Army during the [[Texas War of Independence]] against the Republic of [[Mexico]] in [[1836]]. One month later, Johnston was promoted to [[major]] and the position of [[aide-de-camp]] to General [[Sam Houston]]. He was named [[Adjutant General]] as a [[colonel]] in the [[Republic of Texas]] Army on [[August 5]], [[1836]]. On [[January 31]], [[1837]], he became Senior Brigadier General in command of the Texas Army.
22578
22579 On [[February 7]], [[1837]], he fought in a [[duel]] with Texas Brig. Gen. [[Felix Huston]], challenging each other for the command of the Texas Army; Johnston refused to fire on Huston and lost the position after he was wounded in the pelvis. The second president of the [[Republic of Texas]], [[Mirabeau B. Lamar]], appointed him Secretary of War on [[December 22]], [[1838]]. Johnston was to provide the defense of the Texas border against Mexican invasion, and in 1839 conducted a campaign against [[Native Americans in the United States|Indians]] in northern Texas. In February 1840, he resigned and returned to Kentucky, where he married [[Eliza Griffin]] in [[1843]]. They settled on a large [[plantation]] he named China Grove in [[Brazoria County, Texas]].
22580
22581 ==U.S. Army==
22582 Johnston returned to the Texas Army during the [[Mexican-American War]] under General [[Zachary Taylor]] as a [[colonel]] of the 1st Texas Rifle Volunteers. The enlistments of his volunteers ran out just before the [[Battle of Monterrey]]. Johnston managed to convince a few volunteers to stay and fight as he himself served as the inspector general of volunteers and fought at the battles of Monterrey and [[Battle of Buena Vista|Buena Vista]]. Johnston remained on his plantation after the war until he was appointed by [[President of the United States | President]] [[Zachary Taylor]] to the U.S. Army as a [[major]] and was made a [[U.S. Army Paymaster | paymaster]] in December of [[1849]]. He served in that role for more than five years, making six tours, and traveling more than 4,000 miles annually on the Indian frontier of Texas. He served on the Texas frontier and elsewhere in the West. In [[1855]] President [[Franklin Pierce]] appointed him colonel of the 2nd (now 5th) Cavalry, a new regiment, which he organized. As a key figure in the [[Utah War]], he led U.S. troops who established a non-Mormon government in the formerly [[Church of Jesus Christ of Latter-Day Saints|Mormon]] territory. He received a [[brevet (military) | brevet]] promotion to [[brigadier general]] in [[1857]] for his service in Utah. He spent [[1860]] in Kentucky until [[December 21]], when he sailed for California to take command of the Department of the Pacific.
22583
22584 ==Civil War==
22585 At the outbreak of the [[American Civil War | Civil War]], Johnston was the commander of the U.S. Army [[Department of the Pacific]] in [[California and the Civil War|California]]. He was approached by some Californians who urged him to take his forces east to join the [[Union army | Union]] against the [[Confederate States of America|Confederacy]]. He resigned his commission, [[April 9]], [[1861]], as soon as he heard of the [[secession]] of Texas. He remained in California until June. After a rapid march through the deserts of Arizona and Texas, he reached [[Richmond, Virginia]], on or about [[September 1]], [[1861]]. There Johnston was appointed a general by his friend, Jefferson Davis. On [[May 30]], [[1861]], Johnston became the second highest ranking Confederate General (after the little-known [[Samuel Cooper (general) | Samuel Cooper]]) as commander of the [[Western Theater of the American Civil War | Western Department]]. He raised the [[Army of Mississippi]] to defend Confederate lines from the [[Mississippi River]] to [[Kentucky]] and the [[Allegheny Mountains]].
22586
22587 Although the [[Confederate Army]] won a morale-boosting victory at [[First Bull Run]] in the East in [[1861]], matters in the West turned ugly by early [[1862]]. Johnston's subordinate generals lost [[Battle of Fort Henry | Fort Henry]] on [[February 6]], [[1862]], and [[Battle of Fort Donelson | Fort Donelson]] on [[February 16]], [[1862]], to [[Union army | Union]] [[Brigadier General | Brig. Gen.]] [[Ulysses S. Grant]]. Johnston has been faulted for poor judgment in selecting Gens. [[Lloyd Tilghman | Tilghman]] and [[John B. Floyd | Floyd]] for those crucial positions and for not supervising adequate construction of the forts. And Union Maj. Gen. [[Don Carlos Buell]] captured the vital city of [[Nashville, Tennessee]]. Gen. [[P.G.T. Beauregard]] was sent west to join Johnston and they organized their forces at [[Corinth, Mississippi]], planning to ambush Grant's forces at [[Pittsburg Landing, Tennessee]].
22588
22589 ==Shiloh==
22590 Johnston concentrated many of his forces from around the theater and launched a massive surprise attack against Grant at the [[Battle of Shiloh]] on [[April 6]], [[1862]]. As the Confederate forces overran the Union camps, Johnston seemed to be everywhere, personally leading and rallying troops up and down the line. At about 2:30 p.m., while leading one of those charges, he was wounded, taking a bullet behind his right knee. He did not think the wound serious at the time, and sent his personal physician to attend to some wounded Union soldiers instead. The bullet had in fact clipped his [[popliteal artery]] and his boot was filling up with blood. Within a few minutes Johnston was observed by his staff to be nearly fainting off of his horse, and asked him if he was wounded, to which he replied &quot;Yes, and I fear seriously.&quot; It is possible that Johnston's duel in [[1837]] had caused nerve damage or numbness to that leg and that he did not feel the wound to his leg as a result. Johnston was taken to a small ravine, where he bled to death in minutes.
22591
22592 Ironically, it is probable that a Confederate soldier fired the fatal round. No Union soldiers were observed to have ever gotten behind Johnston during the fatal charge, while it is known that many Confederates were firing at the Union lines while Johnston charged well in advance of his soldiers. He was the highest-ranking casualty of the war and his death was a strong blow to the morale of the Confederacy. Jefferson Davis considered him the best general in the country; this was two months before the emergence of [[Robert E. Lee]] as their pre-eminent general.
22593
22594 ==Epitaph==
22595 Johnston was buried in [[New Orleans, Louisiana]]. In [[1866]], a joint resolution of the [[Texas Legislature]] was passed to have his body reinterred to the [[Texas State Cemetery]] in [[Austin, Texas|Austin]] (the re-interment occurred in [[1867]]). Four decades later, the state appointed [[Elisbet Ney]] to design a monument and sculpture of him to be erected at his gravesite.
22596
22597 The [[Texas Historical Commission]] has erected a historical marker near the entrance of what was once his [[plantation]]. An adjacent marker was erected by the San Jacinto Chapter of the [[Daughters of The Republic of Texas]] and the Lee, Roberts, and Davis Chapter of the [[United Daughters of the Confederate States of America]].
22598
22599 ==References==
22600 * Eicher, John H., &amp; Eicher, David J.: ''Civil War High Commands'', Stanford University Press, 2001, ISBN 0-8047-3641-3.
22601
22602 ==External links==
22603 * [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;GRid=4334 Albert Sidney Johnson at Find-A-Grave]
22604
22605 == Further reading ==
22606 * Gott, Kendall D,, ''Where the South Lost the War: An Analysis of the Fort Henry-Fort Donelson Campaign, February 1862'', Stackpole Books, 2003, ISBN 0-8117-0049-6.
22607 * Johnson, William Preston, ''The Life of Albert Sidney Johnston'', New York, 1878.
22608 * Nofi, Albert A.; ''The Alamo and the Texas War for Independence''; Da Capo Press; ISBN: 0-306-81040-9.
22609 * Roland, Charles P., ''Albert Sidney Johnston: Soldier of Three Republics'', Austin, 1964.
22610
22611 [[Category:1803 births|Johnston, Albert Sidney]]
22612 [[Category:1862 deaths|Johnston, Albert Sidney]]
22613 [[Category:American Civil War Generals|Johnston, Albert]]
22614 [[Category:American Civil War people|Johnston, Albert]]
22615 [[Category:Confederate Army generals|Johnston, Albert Sidney]]
22616 [[Category:History of Texas|Johnston, Albert Sidney]]
22617 [[Category:People from Texas|Johnston, Albert Sidney]]
22618 [[Category:Texas]]
22619 [[Category:United States Army officers|Johnston, Albert Sidney]]
22620 [[Category:West Point graduates|Johnston, Albert Sidney]]
22621
22622 [[ca:Albert S. Johnston]]
22623 [[de:Albert S. Johnston]]
22624 [[hr:Albert Sidney Johnston]]
22625 [[nl:Albert Sidney Johnston]]</text>
22626 </revision>
22627 </page>
22628 <page>
22629 <title>Arctic Ocean</title>
22630 <id>712</id>
22631 <revision>
22632 <id>41316727</id>
22633 <timestamp>2006-02-26T14:42:37Z</timestamp>
22634 <contributor>
22635 <username>Mohammed Khalil</username>
22636 <id>541247</id>
22637 </contributor>
22638 <minor />
22639 <comment>+ar</comment>
22640 <text xml:space="preserve">{{Five oceans}}
22641 The '''[[Arctic]] Ocean''', located mostly in the [[North Pole|north polar]] region, is the smallest of the world's five [[ocean]]s, and the shallowest. Even though [[International Hydrographic Organization|IHO]] recognizes it as an ocean, [[oceanography|oceanographers]] may call it ''the Arctic Mediterranean Sea'' or simply ''the Arctic Sea'', classifying it as one of the [[mediterranean sea]]s of the [[Atlantic Ocean]].
22642
22643 ==Geography==
22644 [[Image:Arctic_Ocean.png|right|Arctic Ocean]]
22645
22646 The Arctic Ocean occupies a roughly circular basin and covers an area of about 14,090,000 km² (5,440,000 mi&amp;sup2;), slightly less than 1.5 times the size of the [[United States|US]]. The coastline length is 45,389 km. Nearly landlocked, it is surrounded by the land masses of [[Eurasia]], [[North America]], [[Greenland]], and a number of islands. It includes [[Baffin Bay]], [[Barents Sea]], [[Beaufort Sea]], [[Chukchi Sea]], [[East Siberian Sea]], [[Greenland Sea]], [[Hudson Bay]], [[Hudson Strait]], [[Kara Sea]], [[Laptev Sea]], [[White Sea]] and other tributary bodies of water. It is connected to the Pacific Ocean by the [[Bering Strait]] and to the Atlantic Ocean through the Greenland Sea.
22647
22648 An underwater [[ocean ridge]], the [[Lomonosov Ridge]], divides the Arctic Ocean into two basins: the [[Eurasian Basin|Eurasian]], or [[Nansen Basin|Nansen]], Basin, which is between 4,000 and 4,500 m (13,000 and 15,000 ft) deep, and the [[North American Basin|North American]], or [[Hyperborean Basin|Hyperborean]], Basin, which is about 4,000 m deep. The [[topography]] of the ocean bottom is marked by [[fault-block ridge]]s, [[abyssal plain|plains of the abyssal zone]], ocean deeps, and basins. The average depth of the Arctic Ocean is 1,038 m (3,407 ft), in part due to the large extent of [[continental shelf]] extant on the Eurasian side [http://www.marianatrench.com/mariana_trench-oceanography.htm].
22649
22650 [[Image:Polar bears near north pole.jpg|thumb|The Arctic Ocean is used by both [[marine mammal]]s and nuclear [[submarine]]s.]]
22651 The greatest inflow of water comes from the Atlantic by way of the [[Norwegian Current]], which then flows along the Eurasian coast. Water also enters from the Pacific via the Bering Strait. The [[East Greenland Current]] carries the major outflow. [[Temperature]] and [[salinity]] vary [[season]]ally as the ice cover melts and freezes. Ice covers most of the ocean surface year-round, causing subfreezing temperatures much of the time. The Arctic is a major source of very cold air that inevitably moves toward the [[equator]], meeting with warmer air in the middle [[latitude]]s and causing [[rain]] and [[snow]]. Little marine life exists where the ocean surface is covered with ice throughout the year. Marine life abounds in open areas, especially the more southerly waters. The ocean's major ports are the [[Russia]]n cities of [[Murmansk]] and [[Arkhangelsk]] (Archangel). The Arctic Ocean is important as the shortest air route between the Pacific coast of North America and Europe overflies it.
22652
22653 Major chokepoint is the southern Chukchi Sea (northern access to the Pacific Ocean via the Bering Strait); strategic location between North America and Russia; shortest marine link between the extremes of eastern and western Russia; floating research stations operated by the US and Russia; maximum snow cover in March or April about 20 to 50 centimeters over the frozen ocean; snow cover lasts about 10 months.
22654
22655 Geographic coordinates: {{coor dm|90|00|N|0|00|E|}}
22656
22657 ==Climate==
22658 [[image:north pole september ice-pack 1978-2002.png|thumb|Extent of the Arctic ice-pack in September, 1978-2002]]
22659 [[image:north pole february ice-pack 1978-2002.png|thumb|Extent of the Arctic ice-pack in February, 1978-2002]]
22660 [[Polar climate]] characterized by persistent cold and relatively narrow annual temperature ranges; winters characterized by continuous darkness, cold and stable weather conditions, and clear skies; summers characterized by continuous daylight, damp and foggy weather, and weak cyclones with rain or snow.
22661
22662 There is considerable seasonal variation in how much [[pack ice]] covers the Arctic Ocean.
22663
22664
22665
22666 ==Elevation extremes==
22667 * ''lowest point:'' [[Fram Basin]] &amp;minus;4,665 m (according to [http://www.marianatrench.com/mariana_trench-oceanography.htm], the Arctic Ocean's Eurasian Basin deepest point is at &amp;minus;5,450 m (17,881 ft))
22668 * ''highest point:'' sea level 0 m
22669
22670 ==Natural resources==
22671 Oil and gas fields, placer deposits, polymetallic nodules, sand and gravel aggregates, [[fish]], marine mammals ([[Seal (mammal)|seals]] and [[Whale|whales]]).
22672
22673 The political dead zone near the center of the sea is also at the center of a mounting dispute between the [[United States]], [[Russia]], [[Canada]], [[Norway]], and [[Denmark]]. It is considered significant because of its potential to contain as much as or more than a quarter of the world's oil and gas resources, the tapping of which could greatly alter the flow of the global energy market. [http://news.bbc.co.uk/2/hi/business/4354036.stm#map The Arctic's New Gold Rush - BBC]
22674
22675 ==Natural hazards==
22676 Ice islands occasionally break away from northern [[Ellesmere Island]]; icebergs calved from glaciers in western Greenland and extreme northeastern [[Canada]]; permafrost on islands; virtually ice locked from October to June; ships subject to superstructure icing from October to May.
22677
22678 ==Environment - current issues==
22679 Endangered marine species include [[Walrus|walruses]] and whales; fragile [[ecosystem]] slow to change and slow to recover from disruptions or damage; thinning polar icepack; seasonal hole in [[ozone layer]] over the [[North Pole]].
22680
22681 Reduction of the area of Arctic sea ice will have an effect on the planet's [[albedo]], thus possibly affecting [[global warming]]. Many scientists are presently concerned that warming temperatures in the Arctic may cause large amounts of fresh, Arctic Ocean meltwater to enter the North Atlantic, possibly disrupting global [[thermohaline circulation|ocean current patterns]]. Potentially severe changes in the Earth's climate might then ensue.
22682
22683 ==Ports and harbors==
22684 [[Image:Arctic Ocean Seaports.png|thumb|250px|Arctic Ocean Seaports, Churchill, Inuvik, Prudhoe Bay, Barrow, Pevek, Tiksi, Dikson, Dudinka, Arkhangelsk, Murmansk]]
22685
22686 [[Churchill, Manitoba]] (Canada),
22687 [[Inuvik]], (Canada)
22688 [[Prudhoe Bay]], (US)
22689 [[Barrow, Alaska|Barrow]], (US)
22690 [[Pevek]], (Russia)
22691 [[Tiksi]], (Russia),
22692 [[Dikson]] (Russia),
22693 [[Dudinka]], (Russia),
22694 [[Murmansk]] (Russia),
22695 [[Arkhangelsk]] (Russia)
22696 [[Kirkenes]], (Norway)
22697 [[Vardø]], (Norway)
22698
22699 ==Transportation - note==
22700 Sparse network of air, ocean, river, and land routes; the [[Northwest Passage]] (North America) and [[Northern Sea Route]] ([[Eurasia]]) are important seasonal waterways.
22701
22702 ==Exploration==
22703 The first surface crossing of the Arctic Ocean was led by Wally Herbert in [[1969]], in a dogsled expedition from [[Alaska]] to [[Svalbard]] with air support. See also [[Northwest Passage]], [[Open Polar Sea]].
22704
22705 ==References==
22706 Bibliography:
22707 *Neatby, Leslie H., ''Discovery in Russian and Siberian Waters'' [[1973]] ISBN 0821401246
22708 *Ray, L., and Stonehouse, B., eds., ''The Arctic Ocean'' [[1982]] ISBN 0333310179
22709 *ThorÊn, Ragnar V. A., ''Picture Atlas of the Arctic'' [[1969]] ISBN 0821401246
22710
22711 Based on public domain text by US Naval Oceanographer: http://oceanographer.navy.mil/arctic.html
22712
22713 ==See also==
22714 *[[North Pole]]
22715
22716 ==External links==
22717 {{Wiktionary}}
22718 *[http://www.arctic-council.org Arctic Council]
22719 *[http://www.northernforum.org The Northern Forum]
22720 *[http://vitalgraphics.grida.no/arcticmap Arctic Environmental Atlas] Interactive map of the Greater Arctic, including shaded relief and bathymetry of the Arctic Ocean.
22721 *[http://www.arctic.noaa.gov NOAA Arctic Theme Page] Comprehensive Arctic Resource with data, photos, maps, essays on key Arctic issues, and much more.
22722 * [http://dapper.pmel.noaa.gov/dchart/ NOAA In-situ Ocean Data Viewer] Plot and download ocean observations
22723 *[http://www.unaami.noaa.gov Arctic time series: The Unaami Data collection] Viewable interdisciplinary, diverse collection of Arctic variables from different geographic regions and data types.
22724 *[http://www.arctic.noaa.gov/gallery_np.html NOAA North Pole Web Cam] Images from Web Cams deployed in Spring on an ice floe in the middle of the Arctic Ocean.
22725 *[http://www.arctic.noaa.gov/gallery_np_weatherdata.html NOAA Near-realtime North Pole Weather Data] Data from instruments deployed on an ice floe in the middle of the Arctic Ocean.
22726 *[http://www.wired.com/news/technology/0,1282,63980,00.html ''Search for Arctic Life Heats Up'' by Stephen Leahy]
22727
22728 [[Category:Oceans]]
22729 [[Category:Seas]]
22730 [[Category:Arctic]]
22731
22732 [[ar:Ų…Ø­ŲŠØˇ Ų…ØĒØŦŲ…د Ø´Ų…اŲ„ŲŠ]]
22733 [[an:OziÃĄn Artico]]
22734 [[zh-min-nan:Pak-keĖk-iÃģâŋ]]
22735 [[bn:āĻ‰āĻ¤ā§āĻ¤āĻ° āĻŽāĻšāĻžāĻ¸āĻŽā§āĻĻā§āĻ°]]
22736 [[br:Meurvor skornek Arktika]]
22737 [[ca:Oceà Àrtic]]
22738 [[cv:ÇŅƒŅ€Ã§Ä•Ņ€ ПăŅ€Đģă ĐžĐēĐĩĐ°ĐŊ]]
22739 [[cs:Severní ledovÃŊ oceÃĄn]]
22740 [[cy:Cefnfor Arctig]]
22741 [[da:Ishavet]]
22742 [[de:Arktischer Ozean]]
22743 [[et:PÃĩhja-Jäämeri]]
22744 [[el:ΑĪÎēĪ„ΚÎēĪŒĪ‚ ΊÎēÎĩÎąÎŊĪŒĪ‚]]
22745 [[es:OcÊano Glacial Ártico]]
22746 [[eo:Arkta Oceano]]
22747 [[fr:OcÊan Arctique]]
22748 [[gl:OcÊano Ártico]]
22749 [[ko:ëļęˇší•´]]
22750 [[io:Arktika Oceano]]
22751 [[id:Samudra Arktik]]
22752 [[ia:Oceano Arctic]]
22753 [[it:Mare Glaciale Artico]]
22754 [[he:אוקיינוס הקרח ה×Ļפוני]]
22755 [[la:Oceanus Arcticus]]
22756 [[lt:Arkties vandenynas]]
22757 [[hu:Jeges-tenger]]
22758 [[mk:АŅ€ĐēŅ‚иŅ‡Đēи ОĐēĐĩĐ°ĐŊ]]
22759 [[nl:Arctische Oceaan]]
22760 [[ja:北æĨĩæĩˇ]]
22761 [[no:Nordishavet]]
22762 [[nn:Nordishavet]]
22763 [[pl:Ocean Arktyczny]]
22764 [[pt:Oceano Ártico]]
22765 [[ru:ĐĄĐĩвĐĩŅ€ĐŊŅ‹Đš ЛĐĩдОвиŅ‚Ņ‹Đš ĐžĐēĐĩĐ°ĐŊ]]
22766 [[simple:Arctic Ocean]]
22767 [[sk:SevernÃŊ ÄžadovÃŊ oceÃĄn]]
22768 [[sl:Arktični ocean]]
22769 [[sr:ĐĄĐĩвĐĩŅ€ĐŊи ĐģĐĩĐ´ĐĩĐŊи ĐžĐēĐĩĐ°ĐŊ]]
22770 [[fi:Pohjoinen jäämeri]]
22771 [[sv:Norra ishavet]]
22772 [[ta:āŽ†āŽ°ā¯āŽ•ā¯āŽŸāŽŋāŽ•ā¯ āŽĒā¯†āŽ°ā¯āŽ™ā¯āŽ•āŽŸāŽ˛ā¯]]
22773 [[th:ā¸Ąā¸Ģā¸˛ā¸Ēā¸Ąā¸¸ā¸—ā¸Ŗā¸­ā¸˛ā¸ŖāšŒā¸ā¸•ā¸´ā¸]]
22774 [[tr:Arktik Okyanusu]]
22775 [[uk:ПŅ–вĐŊŅ–Ņ‡ĐŊиК ЛŅŒĐžĐ´ĐžĐ˛Đ¸Ņ‚иК ĐžĐēĐĩĐ°ĐŊ]]
22776 [[zh:北冰洋]]</text>
22777 </revision>
22778 </page>
22779 <page>
22780 <title>Android</title>
22781 <id>713</id>
22782 <revision>
22783 <id>40868805</id>
22784 <timestamp>2006-02-23T15:24:43Z</timestamp>
22785 <contributor>
22786 <ip>138.251.155.236</ip>
22787 </contributor>
22788 <comment>/* References */</comment>
22789 <text xml:space="preserve">{{merge|gynoid}}
22790
22791 [[Image:Data2.jpg|thumbnail|200px|The android [[Data (Star Trek)|Data]], portrayed by [[Brent Spiner]], from the TV series ''[[Star Trek: The Next Generation]]'']]An '''android''' is an [[artificial]]ly created [[robot]], an [[automaton]], that resembles a [[human]] being usually both in appearance and behavior. The word derives from the [[Greek language|Greek]] ''andr-'', &quot; meaning &quot;[[man]], male&quot;, and the suffix ''-eides'', used to mean &quot;of the [[species]]; alike&quot; (from ''eidos'' &quot;species&quot;). The word ''[[droid]]'', a robot in the ''[[Star Wars]]'' universe, is derived from this meaning.
22792
22793 In the semantic sense the word &quot;android&quot; is a misnomer. The intended meaning is &quot;an artificial human being like being&quot;, while the literal translation is &quot;an artificial male being&quot;. The word ''andros'' has definite meaning of &quot;male human being&quot; in Greek, while the word ''man'' can mean either &quot;male human being&quot; or &quot;human being in general&quot;. The gender-neutral word for human being in Greek is ''anthropos'', and the correct word for an artificial human being-like automaton would be [[anthropoid]].
22794
22795 __TOC__
22796 == Usage and distinctions ==
22797 Unlike the terms ''[[robot]]'' (a &quot;[[mechanics|mechanical]]&quot; being) and ''[[cyborg]]'' (a being that is partly [[organic compound|organic]] and partly mechanical), the word ''android'' has been used in literature and other media to denote several different kinds of [[artificial life|artificially constructed beings]]:
22798
22799 * a robot that closely resembles a human
22800 * a cyborg that closely resembles a human
22801 * an artificially created, yet primarily organic, being that closely resembles a human
22802
22803 Although human morphology is not necessarily the ideal form for working robots, the fascination in developing robots that can mimic it can be found historically in the assimilation of two concepts: ''[[simulacra]]'' (devices that exhibit likeness) and ''[[automata]]'' (devices that have independence).
22804
22805 The term android was first used by the French author [[Mathias Villiers de l'Isle-Adam]] (1838-1889) in his work ''[[Tomorrow's Eve]]'', featuring an artificial human-like robot named Hadaly. As said by the officer in the story, &quot;In this age of Realien advancement, who knows what goes on in the mind of those responsible for these mechanical dolls.&quot;
22806
22807 Although [[Karel Capek|Karel &amp;#268;apek]]'s robots in ''[[R.U.R. (Rossum's Universal Robots)]]'' (1921)&amp;mdash;the play that introduced the word &quot;robot&quot; to the world&amp;mdash;were organic artificial humans, the word ''robot'' has come to primarily refer to mechanical humans, animals, and other beings. The term android can mean either one of these, while a [[cyborg]] (&quot;cybernetic organism&quot; or &quot;bionic man&quot;) would be a creature that is a combination of organic and mechanical parts.
22808
22809 == Ambiguity ==
22810 Historically, [[science fiction]] [[authors]] have used &quot;android&quot; in a greater diversity of ways than the terms &quot;robot&quot; and &quot;cyborg&quot;. In some fiction works, the primary difference between a robot and android is only skin-deep, with androids being made to look almost exactly like humans on the outside, but with internal mechanics exactly the same as that of robots. In other stories, authors have defined android to indicate a wholly organic, yet artificial, creation. Other definitions of android fall somewhere in between.
22811
22812 The character [[Data (Star Trek)|Data]], from the [[television series]] ''[[Star Trek: The Next Generation]]'', is described as an android. Data became [[intoxication|intoxicated]] in an early episode (&quot;[[The Naked Now (TNG episode)|The Naked Now]]&quot;) and is later referred to having &quot;bioplast sheeting&quot; for skin (&quot;[[The Most Toys (TNG episode)|The Most Toys]]&quot;), perhaps suggesting that he was initially intended by the writers to be at least partially organic. Otherwise, Data was shown to be mechanical throughout and this often became a central plot theme.
22813
22814 The [[Replicant]]s from the movie ''[[Blade Runner]]'' were [[bioengineering|bioengineered]] organic beings. While they were not referred to as either robots or androids in the movie, the screenplay was originally based on a [[novel]] by [[Philip K. Dick]] called ''[[Do Androids Dream of Electric Sheep?]]''
22815
22816 In the video game [[Beneath a Steel Sky]], genetically engineered androids similar to Blade Runner's Replicants are a central plot theme. However, despite their organic makeup, their behavior is programmed by computer.
22817
22818 The robots of &amp;#268;apek's ''R.U.R.'' were organic in nature. Today, an author writing a similar story might very well be inclined to call them androids.
22819
22820 The character Ash in the movie ''[[Alien (movie)|Alien]]'', another artificial organic being, is often referred to as an android (though not in the dialogue of the movie itself). Similarly, the character Bishop in ''[[Aliens (movie)|Aliens]]'' and ''[[AlienÂŗ]]'' is a more advanced android commonly called a Synthetic, but prefers to be called an &quot;artificial person&quot;. Much later in the series timeline, the character Call in ''[[Alien Resurrection]]'' is ashamed of being an android.
22821
22822 [[C-3PO]] and [[R2-D2]] from the [[Star Wars]] movies are referred to as ''droids''. While C-3PO could reasonably be called an android because he is humanoid in appearance, the squat cylinder R2-D2 is only humanoid in behavior.
22823
22824 In the movie ''[[A.I. (movie)|A.I.]]'', the robotic characters are called ''mechanoids'', but the film is loosely based on a short story written by [[Brian Aldiss]] called &quot;Supertoys Last All Summer Long&quot;, in which the central character David is called an android (by which Aldiss seemed to be referring to an organic creation).
22825
22826 In the anime/manga Chobits, Androids are known as &quot;Persicoms&quot;, essentially computers in a man-made body. The series does not go into their internal composition, but it is assumed to be artificial with a very realistic outside. One of the key points of this series was a special type of persicom named a &quot;Chobit&quot;, a persicom that had free will and the ability to fall in love and have emotions.
22827
22828 == Androids in fiction ==
22829 Thus far, androids have remained mostly within the domain of [[science fiction]] and, frequently, in [[film]] and [[television]]. However, some &quot;[[humanoid robot]]s&quot; exist.
22830
22831 One of the earliest android characters is Otho from the [[Captain Future]] stories of [[Edmond Hamilton]]. Otho's construction is never discussed but he is much more human-like than his companion Grag, a mechanical [[robot]].
22832
22833 [[Isaac Asimov]]'s robot stories are mostly about androids; many are collected in ''[[I, Robot]]'' (1950). They promulgated a set of rules of ethics for androids and robots (see [[Three Laws of Robotics]]) that greatly influenced other writers and thinkers in their treatment of the subject. Most of Asimov's robots appear too artificial to be mistaken for human beings, with the notable exceptions of R. Jander Panell, [[R. Daneel Olivaw]] and Andrew Martin.
22834
22835 Perhaps the most famous android is [[Data (Star Trek)|Data]], played by actor [[Brent Spiner]], of the series ''Star Trek: The Next Generation'' (1987&amp;ndash;1994) and several spin-off motion pictures; this character was largely inspired by another android character created by [[Gene Roddenberry]] for ''[[The Questor Tapes]]''. Data's immediate 'family' – brothers [[Lore (Star Trek)|Lore]] and [[B-4 (Star Trek)|B-4]] et al., daughter [[Lal]], and 'mother' [[Juliana Tainer|Dr. Juliana Tainer]] – were also androids (and the fembots are properly, though rarely, referred to as [[gynoid]]s) from the same creator, [[Noonien Soong|Dr. Noonien Soong]].
22836
22837 Earlier in ''[[Star Trek: The Motion Picture]]'' (1979), the Ilia [[probe]] – a precisely duplicated biomechanical [[drone]] of [[Ilia|Lieutenant Ilia]], with some of her [[emotion]]s intact – was dispatched by [[V'ger]] to gather information about the crew of the [[starship]] ''[[USS Enterprise (NCC-1701)|Enterprise]]''.
22838
22839 In the TV series ''[[Gene Roddenberry's Andromeda]]'' (2000&amp;ndash;2005), the [[gynoid]] [[Rommie]] is an extension of [[Andromeda Ascendant|the starship]]'s [[artificial intelligence|AI]] [[operating system]], represented by an [[avatar (virtual reality)|avatar]] of Rommie.
22840
22841 In the re-imagined series ''[[Battlestar Galactica (2003)|Battlestar Galactica]]'' (2003&amp;ndash;), the gynoid [[Number Six (Battlestar Galactica)|Number Six]] is one of a (seductive) variant of the [[antagonist]]ic, robotic [[Cylon (Battlestar Galactica)|Cylons]] that is used to infiltrate the fleeing [[human]] [[Twelve Colonies|Colonial forces]] and, particularly, the mind of the scientist [[Gaius Baltar|Dr. Gaius Baltar]].
22842
22843 Androids (Jinzou Ningen in [[Japanese language|Japanese]]; meaning 'artificial human') are also a race in ''[[Dragon Ball]]'', ''[[Dragon Ball Z]]'', and ''[[Dragon Ball GT]]''. The androids' names were only numbers (such as Android #13 or Android #20). They were created by Dr. Gero, Dr. Muu, and the Red Ribbon Army. Some are entirely artificial and some are created from humans and can be considered cyborgs.
22844
22845 Jinzo Ningen [[Kikaider]] was the first [[manga]] and [[tokusatsu]] series to feature an android protagonist.
22846
22847 The series [[Xenosaga]] borrows Villiers' original term Realian when referring to a race of beings created by Vector Corporation. Two playable characters are androids (MOMO and KOS-MOS). One is refered to as a Realian while the second is simply an android.
22848
22849 In their respective series by [[Capcom]], [[Mega Man]] was initially called a &quot;humanoid&quot;, which was then simplified to robot. [[Mega Man X|X]], a later version, is said to be more advanced, more independent of thought, and closer to an android. Other beings, based off his design, are called [[Reploids]].
22850
22851 Many more examples may be found in this [[list of fictional robots]].
22852
22853 ==References==
22854 * Kerman, Judith B. (1991). ''Retrofitting Blade Runner: Issues in Ridley Scott's Blade Runner and Philip K. Dick's Do Androids Dream of Electric Sheep?''. Bowling Green, OH: Bowling Green State University Popular Press. ISBN 0879725095
22855 * Shelde, Per (1993). ''Androids, Humanoids, and Other Science Fiction Monsters: Science and Soul in Science Fiction Films''. New York: New York University Press. ISBN 0814779301
22856 * Sidney Perkowitz (2004) [http://fermat.nap.edu/books/0309089875/html Digital People: From Bionic Humans to Androids] Joseph Henry Press. ISBN 0309096197
22857
22858 == See also ==
22859 *[[Animatronic]]
22860 *[[Cyborg]]
22861 *[[Domestic robot]]
22862 *[[Muscle wire]]
22863 *[[Robot]]
22864 *[[Sex doll]]
22865 *[[Realdoll]]
22866 *[[Statuephilia]]
22867 *[[Gynoid]]
22868 *[[Artificial intelligence]]
22869 *[[Humanoid]]
22870 *[[Humanoid robot]]
22871 *[[Transhumanism]]
22872 *[[Repliee Q1]]
22873
22874 ==External links==
22875 *[http://www.androidworld.com/ Android World]
22876 *[http://www.androidworld.com/prod52.htm Valerie, the domestic female android].
22877
22878 [[Category:Science fiction themes]]
22879 [[Category:Robots]]
22880
22881 [[cs:Android]]
22882 [[de:Android]]
22883 [[es:Androide]]
22884 [[fr:Androïde]]
22885 [[it:Androide]]
22886 [[he:אנדרואיד]]
22887 [[nl:Androïde]]
22888 [[pt:AndrÃŗide]]
22889 [[ja:äēē造äēē間]]
22890 [[pl:Android]]
22891 [[sv:Android]]
22892 [[uk:АĐŊĐ´Ņ€ĐžŅ—Đ´]]</text>
22893 </revision>
22894 </page>
22895 <page>
22896 <title>Arthropoda</title>
22897 <id>715</id>
22898 <revision>
22899 <id>15899241</id>
22900 <timestamp>2002-07-15T00:27:23Z</timestamp>
22901 <contributor>
22902 <username>Maveric149</username>
22903 <id>62</id>
22904 </contributor>
22905 <comment>#REDIRECT [[Arthropod]]</comment>
22906 <text xml:space="preserve">#REDIRECT [[Arthropod]]</text>
22907 </revision>
22908 </page>
22909 <page>
22910 <title>Alberta</title>
22911 <id>717</id>
22912 <revision>
22913 <id>42091503</id>
22914 <timestamp>2006-03-03T19:46:47Z</timestamp>
22915 <contributor>
22916 <username>Bidabadi</username>
22917 <id>726723</id>
22918 </contributor>
22919 <comment>/* External links */ interwiki fa</comment>
22920 <text xml:space="preserve">{{otheruses}}
22921 {{Canadian province or territory |
22922 Name = Alberta |
22923 AlternateName = |
22924 Fullname = Province of Alberta |
22925 EntityAdjective = Provincial |
22926 Flag = Flag of Alberta.svg |
22927 CoatOfArms = AlbertaCoatofArms.png |
22928 Map = Alberta-map.png |
22929 Motto = Fortis et Liber ([[Latin]]: Strong and free) |
22930 OfficialLang = [[English language|English]] |
22931 Capital = [[Edmonton, Alberta|Edmonton]] |
22932 LargestCity = [[Calgary, Alberta|Calgary]] |
22933 Flower = [[Wild Rose (also known as prickly rose]] |
22934 Premier = [[Ralph Klein]] |
22935 PremierParty = [[Alberta Progressive Conservatives|PC]] |
22936 Viceroy = [[Norman Kwong]] |
22937 ViceroyType = Lieutenant-Governor |
22938 PostalAbbreviation = AB |
22939 PostalCodePrefix = [[List of T Postal Codes of Canada|T]] |
22940 AreaRank = 6&lt;sup&gt;th (provinces and territories)&lt;/sup&gt; |
22941 TotalArea = 661,848 |
22942 LandArea = 642,317 |
22943 WaterArea = 19,531 |
22944 PercentWater = 2.95 |
22945 PopulationRank = 4&lt;sup&gt;th&lt;/sup&gt; |
22946 Population = 3,223,400 |
22947 PopulationYear = 2005|
22948 DensityRank = 6&lt;sup&gt;th&lt;/sup&gt; |
22949 Density = 4.63 |
22950 AdmittanceOrder = 8&lt;sup&gt;th&lt;/sup&gt; (province)|
22951 AdmittanceDate = [[September 1]], [[1905]] (split from [[Northwest Territories]]) |
22952 TimeZone = [[Coordinated Universal Time|UTC]]-7 |
22953 HouseSeats = 28 |
22954 SenateSeats = 6 |
22955 ISOCode = CA-AB |
22956 Website = www.gov.ab.ca
22957 }}
22958
22959 '''Alberta''' is one of [[Canada|Canada's]] [[Provinces of Canada|provinces]]. It celebrated 100 years as a province on [[September 1]], [[2005]].
22960
22961 Alberta is located in western Canada. It is bounded on the west by the province of British Columbia, on the north by the Northwest Territories, on the east by the province of Saskatchewan, and on the south by the United States of America (State of Montana).
22962
22963 Alberta's capital is the city of [[Edmonton, Alberta|Edmonton]], located just south of the centre of the province. The most populous city and metropolitan area is [[Calgary, Alberta|Calgary]]. Calgary is also the province's busiest transportation hub (for road, air, and rail) and is one of Canada's major commerce centres. Other major municipalities include [[Red Deer, Alberta|Red Deer]], [[Lethbridge, Alberta|Lethbridge]], [[Medicine Hat, Alberta|Medicine Hat]], [[Fort McMurray, Alberta|Fort McMurray]], [[Grande Prairie, Alberta|Grande Prairie]], [[Camrose, Alberta|Camrose]], [[Lloydminster, Alberta|Lloydminster]], [[Wetaskiwin, Alberta|Wetaskiwin]], [[Banff, Alberta|Banff]], and [[Jasper, Alberta|Jasper]]. See also: [[List of communities in Alberta]].
22964
22965 The [[Premier (Canada)|Premier]] of the province is Hon. [[Ralph Klein]], Progressive Conservative. See also [[List of Alberta Premiers]].
22966
22967 Alberta is named after [[Princess Louise, Duchess of Argyll|Princess Louise Caroline Alberta]] (1848-1939), the fourth daughter of Queen [[Victoria of the United Kingdom|Victoria]]. Princess Louise was also the wife of [[John Douglas Sutherland Campbell, 9th Duke of Argyll|Sir John Campbell]], who was the [[Governor General of Canada]] from 1878-1883. [[Lake Louise]] was also named in honour of Princess Louise.
22968
22969 ==Geography==
22970 :''Main article: [[Geography of Alberta]]''
22971
22972 Alberta is in [[western Canada]], and covers an area of 661,190 km² (255,287 mi²). To the south, it borders the US state of [[Montana]] at a latitude of 49°N, or the [[49th parallel north|49th Parallel]]. To the east at a longitude of 110°W, it borders the province of [[Saskatchewan]]. At 60°N, it is bordered by the [[Northwest Territories]]. To the west, its border with [[British Columbia]] follows the line of peaks of the [[Rocky Mountains]] range along the [[Continental Divide]], which runs northwesterly until it reaches 120° W, at which point the border follows this meridian to 60°N.
22973
22974 With the exception of the southeastern section, the province is well watered. Alberta contains dozens of rivers and lakes ideal for [[swimming]], [[water skiing]], [[fishing]] and a full range of other [[water sports]]. There are a multitude of fresh-water lakes, each less than 260&amp;nbsp;km² situated in Alberta, and three of more considerable size. These three larger lakes are [[Lake Athabasca]] (7898&amp;nbsp;km²), part of which lies in the province of Saskatchewan, [[Lake Claire (Albertan lake)|Lake Claire]] (1436&amp;nbsp;km²), which lies just west of Lake Athabasca in [[Wood Bufflao National Park]], and [[Lesser Slave Lake]] (1168&amp;nbsp;km²), which is well northwest of [[Edmonton]].
22975
22976 As Alberta extends for 1200&amp;nbsp;km from north to south, and about 600&amp;nbsp;km wide at its greatest east-west extent, it is natural that the climate should vary considerably between the 49th and 60th parallels. It is also further influenced by altitude, especially in the southwestern part of the province within the [[Canadian Rockies]] and adjacent areas directly to the east.
22977
22978 [[Image:Canada 35 bg 061904.jpg|thumb|200px|right|Banff National Park]]
22979
22980 Northern Alberta is mostly covered by [[taiga|boreal forest]] and has fewer frost-free days than southern Alberta, which is often semi-arid due to the summer heat and much lower rainfall. Western Alberta is protected by the mountains, and enjoys the warmth brought by winter [[chinook wind]]s, while southeastern Alberta is flat, dry prairie, where temperatures can range from very cold (&amp;minus;35°C (&amp;minus;31°F) in the winter) to very hot (35°C (95°F) or higher in the summer). Central and parts of northwestern Alberta in the Peace River region are largely [[aspen parkland]], a [[biome]] transitional between [[prairie]] to the south and [[taiga|boreal forest]] to the north. After southern [[Ontario]], Central Alberta is the most likely region in [[Canada]] to experience [[tornadoe]]s. [[Thunderstorm]]s, some of them severe, are frequent in the summer, especially in central and southern Alberta. The region surrounding the [[Calgary-Edmonton Corridor]] is notable for having the highest frequency of [[hail]] in Canada.
22981
22982 Overall, Alberta has cold winters, with a daytime average of about &amp;minus;10°C (14°F) in the south to &amp;minus;24°C (&amp;minus;12°F) in the north. In the summer, the daytime temperature averages from about 13°C (55°F) in the Rocky Mountains to 19°C (67°F) in the dry prairie to the south-east. The northern and western parts of the province experience higher rainfall and lower evaporation rates caused by cooler summer temperatures.
22983
22984 Alberta's capital city, [[Edmonton]], is located almost in the geographic centre of the province, and most of Alberta's oil is [[refinery|refined]] here. Southern Alberta, where [[Calgary]] is located, is known for its [[ranching]]. Much of the unforested part of Alberta is given over either to grain or to [[dairy farming]], with ranching predominantly a southern Alberta industry.
22985
22986 &lt;!-- Unsourced image removed: [[Image:Dinosaurparkalberta.jpg|thumb|200px|[[Badlands]] terrain at the Dinosaur Provincial Park]] --&gt;
22987 In southeastern Alberta, where the [[Red Deer River]] traverses the flat prairie and farmland, are the Alberta [[badlands]] with deep [[gorge|gorges]] and striking landforms. [[Dinosaur Provincial Park]], near [[Drumheller, Alberta]], showcases the badlands terrain, [[desert]] [[flora (plants)|flora]], and remnants from Alberta's past when [[dinosaurs]] roamed the then lush landscape.
22988
22989 Alberta is one of only two Canadian provinces to have no maritime coast (the other being the neighbouring province of Saskatchewan.)
22990
22991 ===Largest municipalities and metro areas by population===
22992 [[Image:dwalberta.png|thumb|250px|right|Major municipalities of Alberta]]
22993 &lt;table border=0 cellpadding=2 cellspacing=2 width=50%&gt;
22994 &lt;th&gt; Municipality
22995 &lt;th&gt; 2005
22996 &lt;th&gt; 2001
22997 &lt;th&gt; 1996
22998
22999 &lt;tr&gt;&lt;td&gt;'''[[Census Metropolitan Area|Census Metropolitan Areas]]:'''
23000 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Calgary Region|Calgary CMA]]&lt;td&gt;1,060,300**&lt;td&gt;951,395&lt;td&gt;821,628
23001 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Edmonton Capital Region|Edmonton CMA]]&lt;td&gt;1,016,000**&lt;td&gt;937,845&lt;td&gt;862,597
23002 &lt;tr&gt;&lt;td&gt;'''Cities (10 Largest):'''
23003 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Calgary, Alberta|Calgary]]&lt;td&gt;956,078&lt;td&gt;878,866&lt;td&gt;768,082
23004 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Edmonton, Alberta|Edmonton]]&lt;td&gt;712,391&lt;td&gt;666,104&lt;td&gt;616,306
23005 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Red Deer, Alberta|Red Deer]]&lt;td&gt;79,082&lt;td&gt;67,707&lt;td&gt;60,080
23006 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Lethbridge, Alberta|Lethbridge]]&lt;td&gt;77,202&lt;td&gt;67,374&lt;td&gt;63,053
23007 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[St. Albert, Alberta|St. Albert]] &lt;small&gt;(included in Edmonton CMA)&lt;/small&gt;&lt;td&gt;56,318&lt;td&gt;53,081&lt;td&gt;46,888
23008 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Medicine Hat, Alberta|Medicine Hat]]&lt;td&gt;56,048&lt;td&gt;51,249&lt;td&gt;46,783
23009 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Grande Prairie, Alberta|Grande Prairie]]&lt;td&gt;44,631&lt;td&gt;36,983&lt;td&gt;31,353
23010 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Airdrie, Alberta|Airdrie]] &lt;small&gt;(included in Calgary CMA)&lt;/small&gt;&lt;td&gt;27,069&lt;td&gt;20,382&lt;td&gt;15,946
23011 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Spruce Grove, Alberta|Spruce Grove]] &lt;small&gt;(included in Edmonton CMA)&lt;/small&gt;&lt;td&gt;18,405&lt;td&gt;15,983&lt;td&gt;14,271
23012 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Camrose, Alberta|Camrose]]&lt;td&gt;15,850&lt;td&gt;14,854&lt;td&gt;13,728
23013 &lt;tr&gt;&lt;td&gt;'''Districts (3 Largest):'''
23014 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Strathcona County, Alberta|Strathcona County]] &lt;small&gt;(included in Edmonton CMA)&lt;/small&gt;&lt;td&gt;80,232&lt;td&gt;71,986&lt;td&gt;64,176
23015 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Wood Buffalo, Alberta|Regional Municipality of Wood Buffalo]]&lt;td&gt;73,176&lt;td&gt;41,466&lt;td&gt;35,213
23016 &lt;tr bgcolor=#d3d3d3&gt;&lt;td&gt;[[Rocky View No. 44, Alberta|Municipality of Rocky View]] &lt;small&gt;(included in Calgary CMA)&lt;/small&gt;&lt;td&gt;30,688*&lt;td&gt;28,441&lt;td&gt;23,326
23017 &lt;/b&gt;
23018 &lt;/table&gt;
23019
23020 [[Image:calgaryalberta34.jpg|thumb|200px|right|Calgary, Alberta]]
23021
23022 &lt;small&gt;''Sources: All 2005 figures are based on official 2005 census data from municipalities. Where no 2005 data is available, ''(*)'' indicates the most recent official data from either the municipality or the 2001 [[Statistics Canada]] federal census. All data for 2001 and 1996 is from the respective federal census.''&lt;/small&gt;
23023
23024 &lt;small&gt;''(**) indicates 2005 CMA estimates according to [http://www40.statcan.ca/l01/cst01/demo05a.htm Statistics Canada - Population of Census Metropolitan Areas]''&lt;/small&gt;
23025
23026 &lt;small&gt;''Although the city of [[Lloydminster, Alberta/Saskatchewan|Lloydminster]] has a total population of 23,632, it is not included on the list because the city straddles the Alberta-[[Saskatchewan]] border. Only 15,487 people live on the Alberta side, which would make it Alberta's 11th largest city.''&lt;/small&gt;
23027
23028 ==Industry==
23029 :''Main article: [[Industry in Alberta]]''
23030
23031 Alberta is the largest producer of [[petroleum|conventional crude oil]], [[synthetic crude]], [[natural gas]] and gas products in the country. Two of the largest producers of [[petrochemicals]] in [[North America]] are located in central and north central Alberta. In both [[Red Deer, Alberta|Red Deer]] and [[Edmonton, Alberta|Edmonton]], world class [[polyethylene]] and [[vinyl]] manufacturers produce products shipped all over the world, and Edmonton's [[oil refinery|oil refineries]] provide the raw materials for a large [[petrochemical]] industry to the east of Edmonton.
23032
23033 The [[Athabasca Oil Sands]] (previously known as the Athabasca [[Tar sands|Tar Sands]]) have estimated [[Petroleum|oil]] reserves in excess of that of the rest of the world, estimated to be 1.6 trillion barrels (254 kmÂŗ). With the advancement of extraction methods, bitumen and economical synthetic crude are produced at costs nearing that of conventional crude. This technology is Alberta grown and developed. Many companies employ both conventional [[surface mining|strip mining]] and non-conventional methods to extract the [[bitumen]] from the Athabasca deposit. With current technology, only 315 billion barrels (50 kmÂŗ) are recoverable. [[Fort McMurray]], one of Canada's youngest and liveliest cities, has grown up entirely because of the large [[multinational corporation]]s which have taken on the task of oil production.
23034
23035 Another factor determining the viability of oil extraction from the Tar Sands is the price of oil. In 2005, record oil prices have made it more than profitable to extract this oil, which in the past would give little profit or even a loss.
23036
23037 While [[Edmonton, Alberta|Edmonton]] is considered the pipeline junction, manufacturing, chemical processing, research and refining centre of the province, [[Calgary, Alberta|Calgary]] is known for its senior and junior oil company head offices (unlike Edmonton, Calgary is not close to any large sources of oil).
23038
23039 With concerted effort and support from the provincial government, several high-tech industries have found their birth in Alberta, notably the invention and perfection of [[liquid crystal display]] systems. With a growing economy, Alberta has several financial institutions dealing with several civil and private funds.
23040
23041 ==Agriculture and forestry==
23042
23043 [[Image:Alberta red farm buildings.jpg|thumb|200px|right|Farm Buildings]]
23044 [[Image:Field 150.jpg|thumb|200px|right|Alberta canola field]]
23045 [[Image:Grain Elevator 047.jpg|thumb|200px|right|Grain Elevator - Alberta]]
23046 [[Agriculture]] has a significant position in the province's economy. Over 5 million [[cattle]] are residents of the province at one time or another, and Alberta beef has a healthy worldwide market. Nearly one half of all Canadian beef is produced in Alberta. Alberta is one of the prime producers of plains [[American Bison|buffalo (bison)]] for the consumer market. [[domestic sheep|Sheep]] for [[wool]] and [[mutton]] are also [[sheep farm|raised]].
23047
23048 [[Wheat]] and [[canola]] are primary farm crops, with Alberta leading the provinces in spring wheat production, with other [[cereal|grain]]s also prominent. Much of the farming is dryland farming, often with fallow seasons interspersed with cultivation. Continuous cropping (in which there is no fallow season) is gradually becoming a more common mode of production because of increased profits and a reduction of soil erosion. Across the province, the once common [[grain elevator]] is slowly being lost as rail lines are decreased and farmers now truck the grain to central points.
23049
23050 Alberta is the leading [[beekeeping]] province of Canada, with some beekeepers wintering [[hive]]s indoors in specially designed barns in southern Alberta, then migrating north during the summer into the [[Peace River (Alberta)|Peace River]] valley where the season is short but the working days are long for [[honeybee]]s to produce honey from [[clover]] and [[fireweed]]. [[Hybrid]] [[canola]] also requires [[bee]] [[pollination]], and some beekeepers service this need.
23051
23052 The vast northern [[forest]] reserves of [[softwood]] allow Alberta to produce large quantities of [[lumber]] and [[plywood]], and several northern Alberta plants supply [[North America]] and the [[Pacific Rim]] [[nation]]s with bleached [[wood pulp]] and [[newsprint]].
23053
23054 ==Government==
23055 :''See also: [[Politics of Alberta]]''
23056
23057 [[Edmonton]] is the seat of government of Alberta. It is a [[parliamentary]] [[democracy]]. Its [[unicameral]] legislature -- the [[Legislative Assembly of Alberta|Legislative Assembly]] -- consists of 83 members. As Canada's head of state, Queen Elizabeth II is the Government of Alberta's chief executive. Her duties in Alberta are carried out by Lieutenant Governor, Norman Kwong. The government is headed by the [[Premier]], [[Ralph Klein]]. The city of [[Edmonton, Alberta|Edmonton]] is Alberta's government capital.
23058
23059 The province's revenue comes mainly from the taxation of oil, natural gas, beef, softwood lumber, and wheat, but also includes [[grant]]s from the [[federal government]] primarily for [[infrastructure]] projects. Albertans are the lowest-[[tax]]ed people in [[Canada]], and Alberta is the only province in Canada without a provincial [[sales tax]] (though residents are still subject to the federal sales tax, the [[GST]]). Alberta's municipalities have their own governments which (usually) work in co-operation with the provincial government.
23060
23061 Alberta's [[politics]] are much more conservative than those of other Canadian provinces. Alberta has traditionally had three political parties, the [[Alberta Progressive Conservatives|Progressive Conservatives]] (&quot;Conservatives&quot; or &quot;Tories&quot;), the centrist [[Alberta Liberal Party|Liberals]], and the social democratic [[Alberta New Democratic Party|New Democrats]]. A fourth party, the strongly conservative [[Social Credit Party of Alberta|Social Credit Party]], was a power in Alberta for many [[decade]]s, but fell from the political map after the Progressive Conservatives came to power in the early [[1970s]]. Since that time, no other political party has governed Alberta. In fact, only three parties have governed Alberta: the [[United Farmers of Alberta]] the Social Credit Party, and the currently-governing Progressive Conservative Party
23062
23063 As is the case with many western Canadian provinces, Alberta has had occasional bouts of separatist sentiment. Even during the [[1980|1980s]], when these feelings were at their strongest, there has never been enough interest in secession to initiate any major movements or referenda. There are a number of groups wishing to promote the independence of Alberta in some form currently active in the province. See also: [[Alberta separatism]].
23064
23065 In the [[Alberta general election, 2004|2004 provincial election]], held in November, the [[Alberta Alliance Party]], running to the [[right-wing politics|right]] of the Conservatives, won one seat.
23066
23067 See also: [[List of Alberta Premiers]], [[List of Alberta general elections]]
23068
23069 ==Education==
23070 As with any Canadian province, the Alberta government is the highest authority in education, creating and regulating the school boards, public colleges, universities, and other educational institutions.
23071
23072 ===K-12===
23073 The vast majority of Alberta's schools are run by publicly funded school boards (each with its own district of authority). The largest are English language Public school boards. Alberta also has English Separate Catholic boards throughout the province, which serve a substantial minority of students. There is one protestant school board in part of the province. Where numbers warrant, there are francophone school boards (Public and Separate Catholic). All five of these types of boards are primarily publicly funded (basic school fees range from $200-$750 depending on the school board) by local property taxes and provincial grants given on an equal per student basis by the province (with some adjustments). The different types of school boards are a necessity under the Canadian constitution, which guarantees the francophones and Catholic communities both the right to their own schools, and the right to administer them.
23074
23075 &lt;!-- Image with unknown copyright status removed: [[Image:Myhallway.jpg|thumb|210px|right|School Hallway]] --&gt;
23076
23077 Some other Canadian provinces have reformed their school systems on non-religious lines, by seeking a constitutional amendment, but Alberta has not. Often the decision to go to one system or another is not based on religion, but a parent's belief of which system provides a better education.
23078
23079 Starting in 1994, the province has allowed some [[Alberta charter schools|chartered schools]] to operate, independently of any district school board, reporting directly to the province. Homeschooling is officially recognized and partially funded from within the Alberta school system.
23080
23081 Originally in Alberta, school boards had the power to levy property taxes within their respective districts. However, this meant districts with a low tax base were underfunded, so the province moved to a system that pools the education property tax, and distributes it based on student population and need.
23082
23083 ===Post-secondary===
23084 Alberta's oldest and largest university is Edmonton's [[University of Alberta]]. The [[University of Calgary]], once affiliated with the University of Alberta, gained its autonomy in 1966, and is now the second largest university in Alberta. There is also [[Athabasca University]], which focuses on distance learning, and the [[University of Lethbridge]]. There are 15 colleges that receive direct public funding, along with two technical institutes, [[Northern Alberta Institute of Technology|NAIT]] and [[Southern Alberta Institute of Technology|SAIT]] ([http://www.advancededucation.gov.ab.ca/college/postsecsystem/postsecinst/postsecinst.asp]). Students may also receive government loans and grants while attending selected private institutions.
23085
23086 ==Transportation==
23087 Alberta has over 180,000&amp;nbsp;km of [[highway]]s and roads, of which nearly 50,000&amp;nbsp;km are paved. The main north-south [[corridor]] is [[Alberta Highway 2|Highway 2]], which begins south of [[Cardston, Alberta|Cardston]] at the [[Carway, Alberta|Carway]] [[border]] crossing. Highway 4, which effectively extends [[Interstate 15|U.S. Interstate Highway 15]] into Alberta and is the busiest U.S. gateway to the province, begins at the [[Coutts, Alberta|Coutts]] border crossing and ends at [[Lethbridge, Alberta|Lethbridge]]. [[Alberta Highway 3|Highway 3]] joins Lethbridge to [[Fort Macleod, Alberta|Fort Macleod]] and links Highway 4 to Highway 2. Highway 2 travels northward through Fort Macleod, [[Calgary, Alberta|Calgary]], [[Red Deer, Alberta|Red Deer]], and [[Edmonton, Alberta|Edmonton]] before dividing into two highways. One continues northwest as Highway 43 into [[Grande Prairie, Alberta|Grande Prairie]] and the [[Peace River country]]; the other (Highway 63) travels northeast to [[Fort McMurray]], the location of the [[Athabasca Tar Sands|Athabasca Oil Sands]]. Highway 2 is supplimented by two more highways that run parallel to it: highway 22, west of highway 2, known as 'the cowboy trail', and highway 21, east of highway 2.
23088
23089 Alberta has two main east-west corridors. The southern corridor, part of the [[Trans-Canada Highway|Trans-Canada Highway]] system, enters the province near [[Medicine Hat, Alberta|Medicine Hat]], runs westward through Calgary, and leaves Alberta through [[Banff National Park]]. The northern corridor, also part of the Trans-Canada network but known alternatively as the [[Yellowhead Highway]] ([[Alberta Highway 16|Highway 16]]), runs west from [[Lloydminster, Alberta/Saskatchewan|Lloydminster]] in eastern Alberta, through Edmonton and [[Jasper National Park]] into [[British Columbia]]. On a sunny spring or fall day, one of the most scenic drives in the world is along the [[Icefields Parkway]], which runs some 300&amp;nbsp;km between Jasper and Banff, with mountain ranges and glaciers on either side of its entire length.
23090
23091 Urban stretches of Alberta's major highways and [[freeway]]s are often called ''trails''. For example, Highway 2 is Deerfoot Trail as it passes through Calgary, Calgary Trail as it leaves Edmonton southbound, and St. Albert Trail as it leaves Edmonton northbound toward the city of [[St. Albert, Alberta|St. Albert]]. Visitors from outside Alberta often find this disconcerting, accustomed as they are to the notion that a trail is an unpaved route primarily for [[pedestrian]]s.
23092
23093 Edmonton, Calgary, Red Deer, Medicine Hat, and Lethbridge have substantial mass transit systems. Edmonton and Calgary also operate light rail vehicles.
23094
23095 Alberta is well-connected by air, with international [[airport]]s at both Edmonton and Calgary. Calgary's airport is the larger of the two, and is also the fourth busiest in Canada. It is a hub airport for a significant proportion of the connecting trans-border and international flights into and out of central Canada. There are over 9000&amp;nbsp;km of operating mainline railway, and many tourists see Alberta aboard [[Via Rail]] or [[Rocky Mountain Railtours]].
23096
23097 ==Culture==
23098 :''Main article: [[Culture of Alberta]]''
23099
23100 Alberta is well known for its warm and outgoing friendliness and [[frontier]] spirit.
23101
23102 [[Image:whyte4.jpg|thumb|200px|right|Whyte Avenue, Edmonton]]
23103
23104 Summer brings many festivals to the province. Edmonton's Fringe Festival is the world's second largest after [[Edinburgh]]'s. Alberta also hosts some of Canada's largest folk festivals, multicultural festivals, and heritage days (to name a few). Calgary is also home to [[Carifest]], the second largest [[Caribbean]] festival in the nation (after [[Caribana]] in [[Toronto]]). These events highlight the province's cultural diversity and love of entertainment. Most of the major cities have several performing theatre companies who entertain in venues as diverse as Edmonton's Arts Barns and the [[Francis Winspear Centre]].
23105
23106 Alberta also has a large ethnic population. Both the Chinese and East Indian communities are significant. According to [[Statistics Canada]], Alberta is home to the second highest proportion (two percent) of Francophones in western Canada (after [[Manitoba]]). Many of Alberta's French-speaking residents live in the central and northwestern regions of the province. As reported in the 2001 census, the [[China|Chinese]] represented nearly four percent of Alberta's population and [[India|East Indians]] represented better than two percent. Both Edmonton and Calgary have [[Chinatown]]s and Calgary's is Canada's third largest. [[Aboriginal peoples in Alberta|Aboriginal Albertans]] make up approximately three percent of the population.
23107
23108 The major contributors to Alberta's ethnic diversity have been the European nations. Forty-four percent of Albertans are of [[Great Britain|British]] and [[Irish people|Irish]] descent, and there are also large numbers of [[Germany|Germans]], [[Ukraine|Ukrainians]], and [[Scandinavia]]ns.
23109
23110 Both cities heavily support first-class [[Canadian Football League]] and [[National Hockey League]] teams. [[football (soccer)|Soccer]], [[rugby union]] and [[lacrosse]] are also played professionally in Alberta.
23111
23112 [[Tourism]] is also important to Albertans. A million visitors come to Alberta each year just for Calgary's world-famous [[Calgary Stampede | Stampede]] and for Edmonton's [[Klondike Days]]. Edmonton was the gateway to the only all-Canadian route to the [[Yukon]] [[gold field]]s, and the only route which did not require gold-seekers to travel the exhausting and dangerous [[Chilkoot Pass]].
23113
23114 [[Image:Stephen_Avenue.jpg |thumb|left|Stephen Avenue, Calgary]]
23115
23116 Visitors throng to Calgary for ten days every July for a taste of &quot;Stampede Fever&quot;. As a celebration of Canada's own [[Wild West]] and the cattle ranching industry, the [[Calgary Stampede | Stampede]] welcomes around 1.2 million people each year. Only an hour's drive from the [[Rocky Mountains]], Calgary also makes a visit to tourist attractions like [[Banff National Park]] something which can easily be done in a day. Calgary and Banff each host nearly 5 million tourists yearly.
23117
23118 Alberta is an important destination for tourists who love to [[skiing|ski]] and [[hiking|hike]]; Alberta boasts several world-class [[ski resort]]s. Hunters and fishermen from around the world are able to take home impressive [[trophy|trophies]] and [[tall tales]] from their experiences in Alberta's wilderness.
23119
23120 ==Demographics==
23121 Alberta has enjoyed a relatively high rate of growth in recent years, due in large part to its burgeoning economy. Between 2003 and 2004, the province saw high birthrates (on par with some larger provinces such as [[British Columbia]]), relatively high immigration, and a high rate of interprovincial migration when compared to other provinces [http://www40.statcan.ca/l01/cst01/demo33c.htm]. As of 2005, the population of the province was 3,212,813 (''Albertans''). 81% of this population lives in urban areas and 19% is rural. The [[Calgary-Edmonton Corridor]] is the most urbanized area in the province and one of the densest in Canada. Many of Alberta's cities and towns have also experienced very high rates of growth in recent history.
23122
23123 ===Population of Alberta since 1901===
23124 [[Image:Alberta_pop.JPG|thumb|500px|right|Alberta's population has grown steadily for over a century]]
23125 {| border=&quot;1&quot; cellpadding=&quot;2&quot;
23126 !Year
23127 !Population
23128 !Five Year &lt;br /&gt; % change
23129 !Ten Year &lt;br /&gt; % change
23130 !Percentage of &lt;br /&gt; Canadian Pop.
23131 |-
23132 |1901 ||73,022 ||n/a ||n/a ||1.4
23133 |-
23134 |1911 ||374,295 ||n/a ||412.6 ||5.2
23135 |-
23136 |1921 ||588,454 ||n/a ||57.2 ||6.7
23137 |-
23138 |1931 ||731,605 ||n/a ||24.3 ||7.0
23139 |-
23140 |1941 ||796,169 ||n/a ||8.8 ||6.9
23141 |-
23142 |1951 || 939,501 ||n/a ||18.0 ||6.7
23143 |-
23144 |1961 ||1,331,944 ||n/a ||41.8 ||7.3
23145 |-
23146 |1971 ||1,627,874 ||n/a ||22.2 ||7.5
23147 |-
23148 |1981 ||2,237,724 ||n/a ||37.5 ||9.2
23149 |-
23150 |1986 ||2,365,825 ||5.7 ||n/a ||9.3
23151 |-
23152 |1991 ||2,545,553 ||7.6 ||13.8 ||9.3
23153 |-
23154 |1996 ||2,696,826 ||5.9 ||14.0 ||9.3
23155 |-
23156 |2001 ||2,974,807 ||10.3 ||16.9 ||9.9
23157 |}
23158
23159 Racially and ethnically, the province is predominantly [[Caucasian race|Caucasian]]. 88.8% of the population is either white or [[Aboriginal peoples of Canada|Aboriginal]] (Aboriginals represent a fairly small proportion of this percentage, however). This number is significantly smaller in many of the cities, particularly [[Calgary, Alberta|Calgary]] and [[Edmonton, Alberta|Edmonton]] which are home to a much larger number of visible minorities.
23160
23161 '''Visible Minorities'''
23162 *3.3% [[China|Chinese]]
23163 *2.3% [[Asian]]
23164 *1.1% [[Black]]
23165 *1.1% [[Filipino people|Filipino]]
23166
23167 Most Albertans identify as [[Christian]]s. Nevertheless, many people in the province observe other faiths or do not profess to a religion at all. Alberta has a somewhat higher percentage of [[evangelicalism|evangelical]] Christians than do other provinces. Conversely, Alberta also has the second highest percentage of [[Non-religious]] residents in Canada (after British Columbia).
23168
23169 The [[Church of Jesus Christ of Latter-day Saints|Mormons]] of Alberta reside primarily in the extreme south of the province. There are [[Temple (Mormonism)|temples]] in both Cardston and Edmonton. Many Alberta Mormons descend from [[Mormon pioneers]] who emigrated from [[Utah]] around the turn of the 20th century. Alberta also has a large [[Hutterite]] population, a communal [[Anabaptist]] sect similar to the [[Mennonites]], and a significant population of [[Seventh-day Adventist Church|Seventh-day Adventists]] in and around the [[Lacombe]] area due to the presence of the [[Canadian University College]].
23170
23171 Many people of the [[Hindu]], [[Sikh]], and [[Muslim]] faiths also make Alberta their home; one of the largest [[Gurdwara|Sikh temples]] in Canada is located just outside of Edmonton.
23172
23173 '''Religion'''
23174 *[[Protestant]]: 38.9%
23175 *[[Roman Catholic]]: 26.7%
23176 *[[Non-religious|No Affiliation]]: 23.6%
23177 *[[Eastern Orthodoxy|Christian Orthodox]]: 1.5%
23178 *other Christian: 4.1%
23179 *Muslim: 1.5%
23180 *Buddhist: 1.1%
23181
23182 ==History==
23183 :''Main article: [[History of Alberta]]''
23184
23185 The present province of Alberta, as far north as about 53° north latitude, was a part of [[Rupert's Land]] from the time of the incorporation of the [[Hudson's Bay Company]] ([[1670]]). After the arrival in the North-West of the French around 1731 they settled the prairies of the west, establishing communities such as Lac La Biche and Bonnyville. Fort La Jonquière was established near what is now Calgary in (1752). The [[North-West Company]] of Montreal occupied the northern part of Alberta territory before the Hudson's Bay Company arrived from Hudson Bay to take possession of it. The first explorer of the Athabasca region was [[Peter Pond]], who, on behalf of the North-West Company of Montreal, built [[Fort Athabasca]] on [[Lac La Biche, Alberta|Lac La Biche]] in 1778. [[Roderick Mackenzie]] built [[Fort Chipewyan]] on [[Lake Athabasca]] ten years later in 1788. His cousin, Sir [[Alexander Mackenzie (explorer)|Alexander Mackenzie]] followed the [[North Saskatchewan River]] to its northernmost point near Edmonton, then setting northward on foot, trekked to the [[Athabasca River]], which he followed to Lake Athabasca. It was there he discovered the mighty outflow river which bears his name -- the [[Mackenzie River]] -- which he followed to its outlet in the Arctic Ocean. Returning to [[Lake Athabasca]], he followed the [[Peace River (Canada)|Peace River]] upstream, eventually reaching the [[Pacific Ocean]], and so being the first white man to cross the North American continent north of [[Mexico]].
23186
23187 The district of Alberta was created as part of the North-West Territories in 1882. As settlement increased, local representatives to the North-West Legislative Assembly were added. After a long campaign for autonomy, in 1905 the district of Alberta was enlarged and given provincial status.
23188
23189 ==Fauna and flora==
23190 ===Fauna===
23191 The three climatic regions ([[alpine]], [[forest]], and [[prairie]]) of Alberta are home to many different species of animals. The south and central prairie was the land of the bison, its grasses providing a great pasture and breeding ground for millions of [[American Bison|buffalo]]. The buffalo population was decimated during early settlement, but since then buffalo have made a strong comeback, and thrive on farms and in parks all over Alberta.
23192
23193 Alberta is home to many large [[carnivore]]s. Among them are the [[Grizzly bear|grizzly]] and [[american Black Bear|black bears]], which are found in the mountains and wooded regions. Smaller carnivores of the [[dog]] and [[Felidae|cat]] families include [[coyote]]s, [[wolf|wolves]], [[fox]], [[lynx]], [[bobcat]] and [[mountain lion]] (cougar).
23194
23195 [[Image:Bighorn23.jpg|thumb|200px|[[Rocky Mountains]] Bighorn Sheep]]
23196
23197 [[Herbivorous]], or plant-eating animals, are found throughout the province. [[Moose]] and [[deer]] (both mule and white-tail [[variety (biology)|varieties]]) are found in the wooded regions, and [[pronghorn antelope]] can be found in the prairies of southern Alberta. [[Bighorn sheep]] and [[mountain goat]]s live in the Rocky Mountains. [[Rabbit]]s, [[porcupine]]s, [[skunk]]s, [[squirrel]]s, and many species of rodents and reptiles live in every corner of the province. Alberta is fortunate in that it is home to only one variety of venomous snake, the prairie [[rattlesnake]].
23198
23199 Central and northern Alberta and the region farther north is the nesting-ground of the migratory birds. Vast numbers of [[duck]]s, [[goose|geese]], [[swan]]s, and [[pelican]]s arrive in Alberta every spring and nest on or near one of the hundreds of small lakes that dot northern Alberta. [[Eagle]]s, [[hawk]]s, [[owl]]s, and [[crow]]s are plentiful, and a huge variety of smaller seed and insect-eating birds can be found. Alberta, like other [[temperate]] regions, is home to [[mosquito]]es, [[fly|flies]], [[wasp]]s, and [[bee]]s. Rivers and lakes are well stocked with [[pike (fish)|pike]], [[walleye]], [[white fish]], [[Rainbow trout|rainbow]], [[Brook trout|speckled]], and [[Brown trout|brown]] [[trout]], and even [[sturgeon]]. [[Turtle]]s are found in some water bodies in the southern part of the province. [[Frog]]s and [[salamander]]s are a few of the [[amphibian]]s that make their homes in Alberta.
23200
23201 ===Flora===
23202 In central and northern Alberta the arrival of spring brings the prairie anemone, the [[avens]], [[crocus]]es, and other early flowers. The advancing summer introduces many flowers of the [[sunflower]] family, until in August the plains are one blaze of yellow and purple. The southern part of Alberta is covered by a short grass, very nutritive, but dries up as summer lengthens, to be replaced by hardy perennials such as the [[buffalo bean]], [[fleabane]], and [[sage]]. Both yellow and purple [[clover]] fill the roadways and the ditches with their beauty and aromatic scents. The trees in the parkland region of the province grow in clumps and belts on the hillsides. These are largely [[deciduous]], typically [[birch]], [[poplar]], and [[tamarack]]. Many species of [[willow]] and other shrubs grow in virtually any terrain. On the north side of the North Saskatchewan River evergreen forests prevail for hundreds of thousands of square kilometres. [[aspen|Aspen poplar]], [[balsam poplar]] (or [[cottonwood]]), and [[paper birch]] are the primary large deciduous species. [[Conifer]]s include [[Jack pine]], Rocky Mountain pine, [[Lodgepole pine]], both white and black [[spruce]], and the deciduous conifer [[tamarack]].
23203
23204 ==See also==
23205 [[Family Law Act]]
23206
23207 ==External links==
23208 *[http://www.gov.ab.ca/ Government of Alberta website]
23209 *[http://www.travelalberta.com/ Travel Alberta]
23210 *[http://www.albertasource.ca/ Alberta Encyclopedia]
23211 *[http://www.albertafirst.com/ Alberta Community Profiles] (A site offering info on tax, census info, and economic development of large and small Albertan Communities)
23212 *[http://www.alberta.demosphere.net Alberta Demosphere]
23213
23214 {{Canada}}
23215 &lt;br /&gt;
23216 {{Alberta}}
23217
23218 [[Category:Alberta| ]]
23219
23220 {{Link FA|es}}
23221
23222 [[af:Alberta]]
23223 [[bg:АĐģĐąĐĩŅ€Ņ‚Đ°]]
23224 [[zh-min-nan:Alberta]]
23225 [[ca:Alberta]]
23226 [[da:Alberta]]
23227 [[de:Alberta (Kanada)]]
23228 [[et:Alberta]]
23229 [[es:Alberta]]
23230 [[eo:Alberto]]
23231 [[fa:ØĸŲ„Ø¨ØąØĒا]]
23232 [[fr:Alberta]]
23233 [[ko:ė•¨ë˛„타 ėŖŧ]]
23234 [[io:Alberta]]
23235 [[id:Alberta]]
23236 [[is:Alberta (fylki)]]
23237 [[it:Alberta]]
23238 [[he:אלברטה]]
23239 [[ka:ალბერáƒĸა]]
23240 [[la:Alberta]]
23241 [[nl:Alberta]]
23242 [[ja:ã‚ĸãƒĢバãƒŧã‚ŋåˇž]]
23243 [[no:Alberta]]
23244 [[pl:Alberta (prowincja Kanady)]]
23245 [[pt:Alberta]]
23246 [[ro:Alberta]]
23247 [[ru:АĐģŅŒĐąĐĩŅ€Ņ‚Đ°]]
23248 [[simple:Alberta]]
23249 [[sk:Alberta]]
23250 [[fi:Alberta]]
23251 [[sv:Alberta]]
23252 [[vi:Alberta]]
23253 [[tr:Alberta]]
23254 [[uk:АĐģŅŒĐąĐĩŅ€Ņ‚Đ° (КаĐŊĐ°Đ´Đ°)]]
23255 [[zh:é˜ŋ尔äŧ¯čžž]]</text>
23256 </revision>
23257 </page>
23258 <page>
23259 <title>Arctic Circle</title>
23260 <id>718</id>
23261 <revision>
23262 <id>40865303</id>
23263 <timestamp>2006-02-23T14:52:49Z</timestamp>
23264 <contributor>
23265 <username>Poulpy</username>
23266 <id>400519</id>
23267 </contributor>
23268 <minor />
23269 <comment>fr:</comment>
23270 <text xml:space="preserve">:''For the fast food restaurant chain, see [[Arctic Circle Restaurants]]''
23271
23272 [[Image:ARCTIC CIRCLE 021106.jpg|thumb|350px]]
23273
23274 [[Image:Arctic Circle sign.jpg|thumb|right|200px|A sign along the [[Dalton Highway]] marking the location of the Arctic Circle]]
23275
23276 The '''Arctic Circle''' is one of the five major [[circle of latitude|circles of latitude]] that mark maps of the [[Earth]]. This is the parallel of [[latitude]] that (in 2000) runs [[degree (angle)|66° 33' 39&quot;]] north of the [[Equator]]. Everything north of this circle is known as the [[Arctic]], and the zone just to the south of this circle is the [[temperate|Northern Temperate Zone]].
23277
23278 The Arctic Circle marks the southern extremity of the [[polar day]] of the [[summer solstice]] in June and the [[polar night]] of the [[winter solstice]] in December. Within the Arctic Circle, the arctic [[Sun]] is above the [[horizon]] for at least 24 continuous [[hour]]s once per [[year]], in conjunction with the Arctic's [[Summer Solstice]] - this is often referred to in local [[wiktionary:Vernacular|vernacular]] as [[midnight sun]]. Likewise, in conjunction with the Arctic's [[Winter Solstice]], the Arctic sun will be below the horizon for at least 24 continuous hours.
23279 (In fact, because of [[refraction]] and because the sun appears as a disk and not a point, part of the midnight sun may be seen at the night of the summer solstice up to about 50' (90 km) south of the geometric arctic circle; similarly, at the day of the winter solstice part of the sun may be seen up to about 50' north of the geometric arctic circle. This is true at sea level; these limits increase with elevation above sea level, however in mountainous regions there is often no direct view of the horizon.)
23280
23281 The position of the Arctic Circle is determined by the [[axial tilt]] (angle) of the polar axis of rotation of the Earth on the [[ecliptic]]. This angle is not constant, but has a complex motion determined by many cycles of short to very long periods. Due to [[nutation]] the tilt oscillates over 9&quot; (about 280 [[metre|m]] on the surface) over a period of 18.6 years. The main long-term cycle has a period of 41000 years and an amplitude of about 0.68°, or 76 km on the surface. Currently the tilt is decreasing by about 0.47&quot; per year, so the Arctic Circle is moving north by about 14 m per year. Also see [[precession]].
23282
23283 Countries which have significant territory within the Arctic Circle are:
23284
23285 * [[Russia]]
23286 * [[Canada]]
23287 * [[Denmark]] ([[Greenland]])
23288 * [[United States of America]] ([[Alaska]])
23289 * [[Norway]]
23290 * [[Sweden]]
23291 * [[Finland]]
23292
23293 The country of [[Iceland]] also has territory within the Arctic Circle, but less than 1 sq km. This area is on a few small islets, of which only [[Grímsey]] (which lies directly on the Arctic Circle) is inhabited.
23294
23295 ==See also==
23296 *[[Antarctic Circle]]
23297 *[[Circumpolar arctic]]
23298
23299 ==External links==
23300 {{Wiktionary}}
23301 *[http://groups.msn.com/965172qg02rbm4ek3a6e7udur5/_whatsnew.msnw Santa`s Lapland and Christmas Club] &amp;mdash; Lapland and Arctic Circle
23302 *[http://www.bugbog.com/images/maps/arctic_circle_map.jpg Topographical map of Arctic Circle, centered about North Pole]
23303 *[http://www.world-maps.co.uk/maps/600-arctic.jpg Map of Arctic Circle (dotted line), showing major population areas]
23304 *[http://www.mccord-museum.qc.ca/en/keys/webtours/GE_P3_5_EN.html Terra Incognita: Exploration of the Canadian Arctic] &amp;mdash; Historical essay about early expeditions to the Canadian arctic, illustrated with maps, photographs and drawings
23305
23306 [[Category:Arctic]]
23307 [[Category:Geography of Nunavut]]
23308 [[Category:Geography of the Northwest Territories]]
23309 [[Category:Lines of latitude]]
23310
23311 [[cs:Severní polÃĄrní kruh]]
23312 [[de:Polarkreis]]
23313 [[el:ΑĪÎēĪ„ΚÎēĪŒĪ‚ ΚĪÎēÎģÎŋĪ‚]]
23314 [[eo:Arkta Cirklo]]
23315 [[es:Círculo polar ÃĄrtico]]
23316 [[fr:Cercle Arctique]]
23317 [[no:Den nordlige polarsirkel]]
23318 [[pl:Ko&amp;#322;o podbiegunowe]]
23319 [[pt:Círculo polar ÃĄrtico]]
23320 [[sv:Polcirkeln]]
23321 [[wa:Ceke polaire artike]]
23322 [[zh:&amp;#21271;&amp;#26997;&amp;#22280;]]</text>
23323 </revision>
23324 </page>
23325 <page>
23326 <title>Assault rifle</title>
23327 <id>719</id>
23328 <revision>
23329 <id>40563851</id>
23330 <timestamp>2006-02-21T13:27:48Z</timestamp>
23331 <contributor>
23332 <username>Bastin8</username>
23333 <id>154626</id>
23334 </contributor>
23335 <minor />
23336 <comment>United Kingdom</comment>
23337 <text xml:space="preserve">[[Image:Usarmy m16a2.jpg|right|thumb|[[M16A2]] ([[United States|U.S.]]). This version was adopted in 1982]]
23338
23339 An '''assault rifle''' is a type of [[automatic rifle]] generally defined as a [[selective fire]] [[rifle]] or [[carbine]] (depending on the particular [[firearm]]'s size), using intermediate-powered ammunition. They are categorized between the larger and heavier [[light machine gun]] and the weaker [[submachine gun]]. Assault rifles are the standard [[Small arms|small arm]] in most modern [[Army|armies]], having largely replaced or suplemented the larger, more powerful rifles of the past.
23340
23341 The name is a literal translation of the German term ''Sturmgewehr'' or &quot;storm weapon&quot;, first applied to the [[Sturmgewehr 44]], developed during [[World War II]]. It gradually became a popular term for this type of firearm. The term has since been retro-actively applied to earlier weapons with similar traits.
23342
23343 ==History==
23344
23345 ===1900s to the 1930s: Light automatic rifles using rifle cartridges===
23346 [[Image:Avtomat Fedorova 1916.jpg|right|thumb|]]Federov Avtomat (Russia). The weapon fired the Japanese rifle [[Cartridge (firearms)|cartridge.]]
23347
23348 ''These automatic firearms tended to use used pre-existing rifle cartridges, [[kinetic energy]] ranged between 3,000&amp;ndash;5,000 [[Joule|J]] (2,200&amp;ndash;3,700 foot-pounds), velocites of 750&amp;ndash;900 [[m/s]] (2,460&amp;ndash;2,950 ft/s) and bullets of 9 to 13 [[Gram|g]] (139&amp;ndash;200 grains).''
23349
23350 The first true assault rifle was probably the [[Italy|Italian]]-made [[Cei-Rigotti]], which was developed in the 1890s and finished around 1900, at the beginning of the 20th century; it never entered military service, however. The first service assault rifle was the [[Russia]]n [[Federov Avtomat]] of 1916, chambered for the [[Japan]]ese [[Arisaka]] 6.5 × 50 mm rifle [[Cartridge (firearms)|cartridge]], which was only used in small numbers due to supply problems.
23351
23352 The [[Browning Automatic Rifle]] (BAR) was a [[World War I]]-era weapon that used a full-power round. It was an [[automatic rifle]] by today's definition, and designed for single accurate shots and suppressive automatic fire. The weight of roughly 15 pounds (7 kg) meant that it was rather cumbersome for closer quarters. Later developments added heavier [[Gun barrel|barrels]] and [[bipod]]s that lent it to being used as more like today's light machine gun or [[squad automatic weapon]], though it did help establish the doctrine of use for light selective fire rifles. The BAR was produced in large numbers, widely adopted, and served into the 1960s with the U.S. military and other nations. While it did not use an intermediate cartridge, it was an intermediate weapon between the newly adopted submachine guns and heavier [[machine gun]]s such as the [[Lewis Gun]].
23353
23354 During WWI, a few weaker submachine guns also entered service, such as the [[Villar Perosa]], the [[Berretta 1918]] and the [[MP18]]. These weapons fired rounds based of pistols — [[9 mm Glisenti]] and [[9 mm Bergmann]]. The 9 mm Bergman was based on the [[9 mm Parabellum]], with reduced charge to reduce recoil in the MP18. The developers of the [[Thompson submachine gun]] (also developed during the 1910s) originally intended to use rifle-powered rounds. However, a mechanical system that could handle their power was not found and it ended up using the [[.45 ACP]] cartridge. These firearms are considered part of the [[submachine gun]] class, but were an important part in the development of the assault rifles.
23355
23356 ===1930s: Automatic intermediate weapons===
23357
23358 ''Some of these automatic and [[semi-automatic]] firearms used new intermediate cartridges; others used pre-existing rounds.''
23359
23360 An attempt to provide soldiers with a rifle with intermediate-power ammunition that was heavier than a [[submachine gun]] (too weak, with short range due to the [[pistol]] ammunition), but lighter than a long rifle (uncomfortable to fire, and difficult to control on [[fully-automatic]] mode due to the powerful ammunition; more expensive to design and manufacture), by the [[Italy|Italian]] arms company [[Beretta]] resulted in the MAB 38 (''Moschetto Automatico Beretta 1938''). The MAB 38 used a [[Fiocchi]] ''9M38'' cartridge and a higher-powered 9 mm Parabellum cartridge, which could provide longer range fire. The effective range was about 200 m, although it was declared to be effective up to 500 m. The MAB 38 was a multipurpose weapon.
23361
23362 [[Image:M1 Carbine.jpg|thumb|[[M1 Carbine]] (U.S.). Unlike the M1, the later M2 and M3 were [[Automatic fire|fully-automatic]]]]
23363
23364 In 1938, prior to World War II, the United States introduced the [[M1 Carbine]], which was an intermediate power weapon chambered for the [[.30 Carbine]] cartridge. The M1 Carbine was originally planned to have automatic fire, but this was dropped from the first version, although later in the war, selective fire variants were made (M2 and M3 Carbines). The weapon had higher [[stopping power]] than [[submachine gun]]s, but was not as powerful as full-size automatic rifles such as the BAR. The longer barrel (18-inch) provided the carbine with higher [[muzzle velocity]] than pistols and submachine guns chambered for the same .30 round.
23365
23366 The M1 Carbine series was designed for close quarters engagements, a concept that would be re-applied later. It marked the first time in which such an intermediate weapon would be mass-produced in such large numbers &amp;mdash; it became the most produced American weapon of the war, with millions made. The M1 Carbine series would remain in service with the U.S. military until replaced by the [[M16 (rifle)|M16 rifle]] in the 1960s; it continued to be used in other nations.
23367
23368 ===1940s and 1950s: Maschinenkarabiner, Sturmgewehr, &amp; the AK-47===
23369 [[Image:Sturmgewehr 44.jpg|thumb|right|[[Sturmgewehr 44]] (Germany). Its development began in earnest with the Maschinenkarabiner project]]
23370
23371 ''Some of these automatic firearms used pre-existing rounds; others used new intermediate cartridges. Kinetic energy ranged between 1,400&amp;ndash;2,100 J (1,033&amp;ndash;1,550 foot-pounds), muzzle velocities of 600&amp;ndash;800m/s (1,970&amp;ndash;2,625 ft/s) and bullets of 7&amp;ndash;9g (108&amp;ndash;139 grains).''
23372
23373 Germany, like other countries, had studied the problem since [[World War I]], and their factories made a variety of non-standard cartridges, therefore having less incentive to retain their existing calibers. The 7.92 × 30 mm cartridge was an example of these experiments; in 1941, it was improved to [[7.92 x 33 mm|7.92 × 33 mm]] ''Infanterie Kurz Patrone'' (&quot;Infantry Short Standard&quot;). In 1942, it was again improved as ''Maschinenkarabiner Patrone S'', and in 1943, ''Pistolen Patrone 43mE''; then, finally, ''Infanterie Kurz Patrone 43''. It is just a coincidence, but the intermediate cartridge developed by Winchester for the M1 Carbine, developed slightly before, also measured 33 mm.
23374
23375 In 1942, [[Walther]] presented the ''Maschinenkarabiner'' (&quot;automatic carbine&quot;, abbr. MKb), named MKb42(W). In the same year, [[Haenel]] presented the MKb42(H), designed by [[Hugo Schmeisser]] as a result of this program. Rheinmetall-Borsig (some said Krieghoff) presented its [[FG 42]] (''Fallschirmjaeger Gewehr 42'', sponsored by [[Hermann GÃļring]]) though this was in a different role, and using a heavy [[8 mm Mauser|8 × 57 mm]] (8 mm Mauser) cartridge, which was not an intermediate round. War-time tests in [[Russia]] indicated the MKb42(H) performed better than the other two. Schmeisser developed it first as the MP43, then MP43/1, and finally as the MP44/Sturmgewehr 44 (abbreviated StG44). It immediately entered large scale production. More than 5,000 units had been produced by February 1944, and 55,000 by the following November.
23376
23377 Following the end of the war, the [[Soviet Union]] developed the [[AK-47]], which was vaguely similar in concept and layout to the German StG44, but extremely different mechanically. It fired the [[7.62 x 39 mm|7.62 × 39 mm]] cartridge, which had been developed during WWII. The round was similar to the StG44's in that the bullet was of a similar caliber to the Russian rifle ammunition.
23378
23379 ===1960s and 1970s: Lighter automatic weapons and lighter smaller bullets===
23380
23381 ''Many of these automatic firearms used intermediate cartridges with much lighter bullets and smaller calibers, but fired at very high velocity, kinetic energy ranged between 1300&amp;ndash;1800J (960&amp;ndash;1,330 foot-pounds), velocities of 900&amp;ndash;1050m/s (2,950&amp;ndash;3,450 ft/s), and bullets of 3&amp;ndash;4g (46&amp;ndash;62 grains).''
23382
23383 [[Image:Stgw 90.jpg|thumb|right|[[SIG 550]] ([[Switzerland|Swiss]]). The SIG fires [[Gw Pat.90]], which has the same caliber as the [[5.56 mm NATO]]]]
23384
23385 Many nations continued the development of traditional high-powered rifles with ranges of 500 meters (550 yards) and beyond. Most designs of this period used low-caliber but high-velocity ammunition, with some experiments in [[flechette]]s and other exotic ammunition.
23386
23387 Statistical studies of World War II battles performed by the [[U.S. Army]] revealed that infantry combat beyond 300 meters (325 yards) was rare. The Russians saw no reason to make a rifle that shot beyond a rifleman's ability to aim. Therefore, a lighter, less-powerful cartridge could be effective. This permitted a lighter rifle and enabled troops to carry more ammunition, making them more autonomous &amp;mdash; a greater amount of the lighter ammunition could be transported in the same amount of space. In addition, the smaller size and handiness of an assault rifle would benefit [[tank]] crews, support troops, and units with missions other than [[front line]] combat. The [[5.56 x 45 mm NATO|5.56 × 45 mm NATO]] cartridge was developed in the 1960s, and was adopted for use in the [[M16 (rifle)|M16]] assault rifle. The M16A1 version soon followed, and was then replaced in 1982 by the M16A2.
23388
23389 The [[Soviet Union]] also developed its own similar round, the [[5.45 x 39 mm|5.45 × 39 mm]], which was used in the [[AK-74]], the successor of the [[AK-47]].
23390
23391 These rounds are usually considered less lethal than the previous generation of assault rifle rounds that fired larger rifle caliber ammunition with reduced propellant, but the smaller caliber and lighter bullets achieve higher velocities than even a hunting rifle bullet. These high speeds induce additional lethality through bullet shattering, although these high speed rounds generally do not exceed the momentum of the heavier (but slower) bullets of the less sophisticated AK-47. Any pointed (spitzer) round will tumble in soft tissue. If the jacket has a cannelure like the U.S. 5.56 × 45 mm M193 round, the bullet will fragment, leading to significant blood loss and internal damage.
23392
23393 Blood loss leads to indirect incapacitation, but often takes longer than direct destruction of tissue. Since combat use of rifles expends around 50,000 rounds in suppressive fire for each combatant killed, trading lighter cartridge weight and lower recoil for slower but more sure incapacitation often makes good sense.
23394
23395 The key to the assault rifle concept is firing at both known ''and suspected'' enemy positions. This allows an attacking infantry unit to shoot at a hidden enemy first, rather than waiting for the enemy to fire first. Good volume and distribution of aimed suppressive fire delivered by infantry squad members as they maneuver, prevents enemy return fire, and in turn allows the assaulting unit to maneuver through enemy fields of fire faster. Faster maneuver limits the assaulting unit's vulnerability to small arms fire, [[artillery]], [[mortar]]s, or counter-attack. Of course this requires a larger basic ammunition load and steady supply of rifle ammunition.
23396
23397 ===1970s, 1980s, 1990s: New form factors and features===
23398
23399 ''Many of these automatic firearms usually used the same rounds as in older eras, but focused on using new form factors, materials, and added features like standard [[Telescopic sight|telescopic]] and [[Red dot sight|reflex]] sights.''
23400
23401 [[Image:FAMAS dsc06877.jpg|thumb|[[FAMAS]] ([[France]]). It was adopted in 1978]]
23402
23403 The biggest change since adoption of high velocity rounds of 5 mm caliber and higher, has been designs that have new form factors, sights, electronics, and materials. A number of [[bullpup]] rifles entered service in the late 1970s, 1980s and 1990s. Although bullpup rifles had existed since the 1930s, the [[United Kingdom]]'s [[EM2]] was one of the few bullpup assault rifles prior to this time. Examples of the new trend include the [[FAMAS]], [[Steyr AUG]], and [[SA80]]. They were all bullpup rifles that made heavy use of composites and plastics with ambidextrous controls, and the latter both added a low-power [[telescopic sight]] to the standard service version. The [[SAR-21]], the [[Tavor TAR-21]], and [[QBZ-95]] follow a similar trend as well, with a bullpup configuration and heavy use of composites.
23404
23405 The [[Heckler &amp; Koch G36]], adopted in the late 1990s by [[Spain]] and [[Germany]], is of the traditional configuration, but also has integral telescopic and red dot sights and composite exterior. The [[XM8 rifle]], developed from the G36, had similar features, but also added more electronics such as [[laser]] sight, round counter, and integral [[infrared]] laser and pointers.
23406
23407 The trend in the new designs, and very likely future ones, is towards more integrated features and lighter weight with new materials and configurations. Introduction of a new ammunition would require retooling factories, phasing out conventional ammunition and in general infrastructure change that is considered by many military planners too expensive to undertake.
23408
23409 Some have called for a reintroduction of larger caliber rounds to improve conventional lethality, or an increase in caliber in the 6&amp;ndash;7 mm range, with rifle round velocities and lower mass bullets: a kind of intermediate philosophy between the smaller caliber&amp;ndash;faster modern rounds and the standard caliber–slower rounds of the previous generation. China in the late 1980's introduced a 5.8 × 42 mm round, with an initial velocity of 930 m/s, 4.26 g bullet and 1,842 J of energy, China claims the new round provides superior performace and lethality to the NATO and modern Soviet intermediate rounds. In the United States, [[Remington]] has developed the [[6.8 mm Remington SPC]] cartridge, which is the same overall length at the 5.56 x 45 mm NATO round but fires a bullet the same caliber at the [[.270 Winchester]] hunting cartridge. Its similar size to the 5.56 × 45 mm means that existing rifles can be converted without an excessive amount of trouble. Development of a [[G11|4.73 mm]] [[caseless ammunition]] and advanced assault rifle in the 1970&amp;ndash;1980s by Germany was effectively halted by the [[German reunification]] in 1990, and that rifle never entered full production.
23410
23411 ==&quot;Assault weapons&quot; vs. Fully-automatic weapons==
23412 Primarily in the [[United States]], the term ''[[assault weapon]]'' is an arbitrary (and politicized) phrase generally used to describe a collection of '''''semi-automatic''''' firearms that have certain features associated with military/police use, such as a folding stock, [[flash suppressor]], [[bayonet]], protruding pistol grip, or the ability to accept a detachable magazine of a capacity larger than ten rounds. The phrase ''assault weapon'' has been used primarily in relation to a specific expired [[gun law]] that was commonly known as the '[[Federal assault weapons ban|Assault Weapons Ban]]', '[[Clinton]] gun ban', or '1994 crime bill'. It is a common misconception that the assault weapons ban restricted weapons capable of fully-automatic fire, such as assault rifles and [[machine gun]]s. Fully-automatic weapons were unaffected by the ban because they have been heavily restricted since the [[National Firearms Act]] of 1934, and other, more recent laws.
23413
23414 The term 'assault weapon' has often been erroneously used to describe machine guns. Many states and localities still use the term [[assault weapon]] with a variety of variations following the California model loosely. See separate article on [[assault weapon]]s for further information.
23415
23416 ==See also==
23417 *[[Automatic firearm]] for clarification on similar categories
23418 *[[Battle rifle]]
23419 *[[Federal assault weapons ban (USA)]]
23420 *[[Firearm action]]
23421 *[[Gas-operated]]
23422 *[[List of firearms]]
23423
23424
23425 ==External links==
23426 * [http://www.quarry.nildram.co.uk/Assault.htm Assault Rifles and their Ammunition: History and Prospects]
23427
23428 [[Category:Rifles]]
23429 [[Category:Assault rifles|*]]
23430
23431 [[de:Sturmgewehr]]
23432 [[fr:Fusil d'assaut]]
23433 [[he:רובה ץ×ĸר]]
23434 [[ja:ã‚ĸã‚ĩãƒĢトナイフãƒĢ]]
23435 [[ko:돌격ė†Œė´]]
23436 [[lt:Automatas]]
23437 [[no:AutomatgevÃĻr]]
23438 [[pl:Karabin automatyczny]]
23439 [[ru:АвŅ‚ĐžĐŧĐ°Ņ‚ (ĐžŅ€ŅƒĐļиĐĩ)]]
23440 [[sl:JuriÅĄna puÅĄka]]
23441 [[fi:RynnäkkÃļkivääri]]
23442 [[sv:Automatkarbin]]
23443 [[zh:įĒå‡ģæ­ĨæžĒ]]</text>
23444 </revision>
23445 </page>
23446 <page>
23447 <title>Animal</title>
23448 <id>721</id>
23449 <revision>
23450 <id>42091723</id>
23451 <timestamp>2006-03-03T19:48:45Z</timestamp>
23452 <contributor>
23453 <username>Rich Farmbrough</username>
23454 <id>82835</id>
23455 </contributor>
23456 <minor />
23457 <comment>Ced.</comment>
23458 <text xml:space="preserve">{{Taxobox
23459 | color = pink
23460 | name = Animals
23461 | image = Sea nettles.jpg
23462 | image_width = 250px
23463 | image_caption = [[Sea nettle]]s, ''Chrysaora quinquecirrha''
23464 | domain = [[Eukaryote|Eukaryota]]
23465 | regnum = '''Animalia'''
23466 | regnum_authority = [[Carolus Linnaeus|Linnaeus]], 1758
23467 | subdivision_ranks = Phyla
23468 | subdivision =
23469 ***[[Sponge|Porifera]] (sponges)
23470 ***[[Ctenophora]] (comb jellies)
23471 ***[[Cnidaria]] (coral, jellyfish, anemones)
23472 ***[[Trichoplax|Placozoa]] (trichoplax)
23473 *'''''Subregnum [[Bilateria]]''''' ([[symmetry (biology)|bilateral symmetry]])
23474 ***[[Acoelomorpha]] (basal)
23475 ***[[Orthonectida]] (parasitic to flatworms, echinoderms, etc.)
23476 ***[[Rhombozoa]] (dicyemids)
23477 ***[[Myxozoa]] (slime animals)
23478 **'''Superphylum [[Deuterostome|Deuterostomia]]''' (blastopore becomes anus)
23479 ***[[Chordate|Chordata]] (vertebrates, etc.)
23480 ***[[Hemichordata]] (acorn worms)
23481 ***[[Echinoderm]]ata (starfish, urchins)
23482 ***[[Chaetognatha]] ([[arrow worm]]s and [[Pterobranchia]])
23483 **'''Superphylum [[Ecdysozoa]]''' (shed exoskeleton)
23484 ***[[Kinorhyncha]] (mud dragons)
23485 ***[[Loricifera]]
23486 ***[[Priapulida]] (priapulid worms)
23487 ***[[Nematoda]] (roundworms)
23488 ***[[Nematomorpha]] (horsehair worms)
23489 ***[[Onychophora]] (velvet worms)
23490 ***[[Tardigrada]] (water bears)
23491 ***[[Arthropoda]] (insects, etc.)
23492 **'''Superphylum [[Platyzoa]]'''
23493 ***[[Platyhelminthes]] (flatworms)
23494 ***[[Gastrotricha]] (gastrotrichs)
23495 ***[[Rotifera]] (rotifers)
23496 ***[[Acanthocephala]] (acanthocephalans)
23497 ***[[Gnathostomulida]] (jaw worms)
23498 ***[[Micrognathozoa]] (limnognathia)
23499 ***[[Cycliophora]] (pandora)
23500 **'''Superphylum [[Lophotrochozoa]]''' (trochophore larvae / lophophores)
23501 ***[[Sipuncula]] (peanut worms)
23502 ***[[Nemertea]] (ribbon worms)
23503 ***[[Phoronida]] (horseshoe worms)
23504 ***[[Bryozoa]] (moss animals)
23505 ***[[Entoprocta]] (goblet worms)
23506 ***[[Brachiopoda]] (brachipods)
23507 ***[[Mollusca]] (mollusks)
23508 ***[[Annelida]] (segmented worms)
23509 }}
23510 {{redirect|Animalia|the book by Graeme Base|[[Animalia (book)]]}}{{otheruses}}
23511 '''Animals''' are a major group of [[organism]]s, classified as the [[kingdom (biology)|kingdom]] '''Animalia''' or '''Metazoa'''. In general they are [[multicellular]], capable of locomotion and responsive to their environment, and feed by consuming other organisms. Their body plan becomes fixed as they develop, usually early on in their [[ontogeny|development]] as [[embryo]]s, although some undergo a process of [[metamorphosis (biology)|metamorphosis]] later on.
23512
23513 The name animal comes from the [[Latin]] word ''animal'', of which ''animalia'' is the plural, and ultimately from ''anima'', meaning vital breath or soul.
23514
23515 ==Characteristics==
23516 Kingdom Animalia has several characteristics that set it apart from other living things. Animals are [[eukaryote|eukaryotic]] and [[multicellular]], which separates them from [[bacteria]] and most [[protist]]s. They are [[Heterotroph|heterotrophic]], generally digesting food in an internal chamber, which separates them from [[plant]]s and [[alga]]e. They are also distinguished from plants, algae, and [[fungus|fungi]] by lacking cell walls.
23517
23518 ==Structure==
23519 With a few exceptions, most notably the [[sponge|sponges]] (Phylum Porifera), animals have bodies differentiated into separate [[biological tissue|tissues]]. These include [[muscle]]s, which are able to contract and control locomotion, and a [[nervous system]], which sends and processes signals. There is also typically an internal [[digestion|digestive]] chamber, with one or two openings. Animals with this sort of organization are called metazoans, or [[eumetazoan]]s when the former is used for animals in general.
23520
23521 All animals have [[eukaryotic]] cells, surrounded by a characteristic extracellular matrix composed of [[collagen]] and elastic [[glycoprotein]]s. This may be calcified to form structures like [[shell]]s, [[bone]]s, and [[spicule]]s. During development it forms a relatively flexible framework upon which cells can move about and be reorganized, making complex structures possible. In contrast, other multicellular organisms like plants and fungi have cells held in place by cell walls, and so develop by progressive growth. Also, unique to animal cells are the following intercellular junctions: [[tight junction]]s, [[gap junction]]s, and [[desmosome]]s.
23522
23523 ==Reproduction and development==
23524
23525 Nearly all animals undergo some form of [[sexual reproduction]]. Adults are [[diploid]] or occasionally [[polyploid]]. They have a few specialized reproductive cells, which undergo [[meiosis]] to produce smaller motile [[spermatozoon|spermatozoa]] or larger non-motile [[ovum|ova]]. These fuse to form [[zygote]]s, which develop into new individuals.
23526
23527 Many animals are also capable of [[asexual reproduction]]. This may take place through [[parthenogenesis]], where fertile eggs are produced without mating, or in some cases through fragmentation.
23528
23529 A [[zygote]] initially develops into a hollow sphere, called a [[blastula]], which undergoes rearrangement and differentiation. In sponges, blastula larvae swim to a new location and develop into a new sponge. In most other groups, the blastula undergoes more complicated rearrangement. It first [[invagination|invaginates]] to form a [[gastrula]] with a digestive chamber, and two separate [[germ layer]]s - an external ectoderm and an internal endoderm. In most cases, a mesoderm also develops between them. These germ layers then differentiate to form tissues and organs.
23530
23531 Animals grow by indirectly using the energy of [[sunlight]]. Plants use this [[energy]] to turn air into simple [[sugars]] using a process known as [[photosynthesis]]. These sugars are then used as the building blocks which allow the plant to grow. When animals eat these plants (or eat other animals which have eaten plants), the sugars produced by the plant are used by the animal. They are either used directly to help the animal grow, or broken down, releasing stored solar energy, and giving the animal the energy required for motion. This process is known as [[glycolysis]].
23532
23533 ==Origin and fossil record==
23534
23535 Animals are generally considered to have evolved from [[flagellate]] protozoa. Their closest living relatives are the [[choanoflagellate]]s, collared flagellates that have the same structure as certain sponge cells do. Molecular studies place them in a supergroup called the [[opisthokont]]s, which also include the [[fungus|fungi]] and a few small parasitic [[protist]]s. The name comes from the posterior location of the [[flagellum]] in motile cells, such as most animal sperm, whereas other eukaryotes tend to have anterior flagella.
23536
23537 The first fossils that might represent animals appear towards the end of the [[Precambrian]], around 600 million years ago, and are known as the [[Vendian biota]]. These are difficult to relate to later fossils, however. Some may represent precursors of modern phyla, but they may be separate groups, and it is possible they are not really animals at all. Aside from them, most known animal phyla make a more or less simultaneous appearance during the [[Cambrian]] period, about 570 million years ago. It is still disputed whether this event, called the [[Cambrian explosion]], represents a rapid divergence between different groups or a change in conditions that made fossilization possible.
23538
23539 ==Groups of animals==
23540 [[Image:Elephant-ear-sponge.jpg|thumb|left|Elephant ear [[sponge]]]]
23541 The sponges ([[Porifera]]) diverged from other animals early. As mentioned, they lack the complex organization found in most other phyla. Their cells are differentiated, but not organized into distinct tissues. Sponges are sessile and typically feed by drawing in water through [[pore]]s. [[Archaeocyatha]], which have fused skeletons, may represent sponges or a separate phylum.
23542
23543 [[Image:Brain_coral.jpg|thumb|right|[[Brain Coral]]]]
23544 Among the eumetazoan phyla, two are radially symmetric and have digestive chambers with a single opening, which serves as both the mouth and the anus. These are the [[Cnidaria]], which include [[sea anemone]]s, [[coral]]s, and [[jellyfish]], and the [[Ctenophora]] or comb jellies. Both have distinct tissues, but they are not organized into [[organ (anatomy)|organs]]. There are only two main germ layers, the ectoderm and endoderm, with only scattered cells between them. As such, these animals are sometimes called [[diploblastic]]. The tiny phylum [[Placozoa]] is similar, but individuals do not have a permanent digestive chamber.
23545
23546 The remaining animals form a monophyletic group called the [[Bilateria]]. For the most part, they are bilaterally symmetric, and often have a specialized head with feeding and sensory organs. The body is [[triploblastic]], i.e. all three germ layers are well-developed, and tissues form distinct organs. The digestive chamber has two openings, a mouth and an anus, and there is also an internal body cavity called a coelom or pseudocoelom. There are exceptions to each of these characteristics, however - for instance adult [[echinoderm]]s are radially symmetric, and certain parasitic worms have extremely simplified body structures.
23547
23548 [[Image:Common_clownfish.jpg|thumb|right|[[Clownfish]] in their [[Sea Anemone]] home]]
23549 Genetic studies have considerably changed our understanding of the relationships within the Bilateria. Most appear to belong to four major lineages:
23550 # [[Deuterostomes]]
23551 # [[Ecdysozoa]]
23552 # [[Platyzoa]]
23553 # [[Lophotrochozoa]]
23554
23555 In addition to these, there are a few small groups of bilaterians with relatively similar structure that appear to have diverged before these major groups. These include the [[Acoelomorpha]], [[Rhombozoa]], and [[Orthonectida]]. The [[Myxozoa]], single-celled parasites that were originally considered Protozoa, are now believed to have developed from the Bilateria as well.
23556
23557 [[Image:Magellanic-penguin02.jpg|thumb|left|the [[Magellanic Penguin]]]]
23558 ===Deuterostomes===
23559 [[Deuterostome]]s differ from the other Bilateria, called [[protostome]]s, in several ways. In both cases there is a complete digestive tract. However, in protostomes the initial opening (the [[archenteron]]) develops into the mouth, and an anus forms separately. In deuterostomes this is reversed. In most protostomes cells simply fill in the interior of the gastrula to form the mesoderm, called schizocoelous development, but in deuterostomes it forms through [[invagination]] of the endoderm, called enterocoelic pouching. Deuterostomes also have a dorsal, rather than a ventral, nerve chord and their embryos undergo different cleavage.
23560
23561 All this suggests the deuterostomes and protostomes are separate, monophyletic lineages. The main phyla of deuterostomes are the [[Echinodermata]] and [[Chordate|Chordata]]. The former are radially symmetric and exclusively marine, such as [[sea star]]s, [[sea urchin]]s, and [[sea cucumber]]s. The latter are dominated by the [[vertebrate]]s, animals with backbones. These include [[fish]], [[amphibian]]s, [[reptile]]s, [[bird]]s, and [[mammal]]s.
23562
23563 In addition to these, the deuterostomes also include the [[Hemichordata]] or acorn worms. Although they are not especially prominent today, the important fossil [[graptolite]]s may belong to this group. The [[Chaetognatha]] or arrow worms may also be deuterostomes, but this is less certain.
23564
23565 ===Ecdysozoa===
23566 [[Image:Sympetrum flaveolum - side (aka).jpg|thumb|the [[Yellow-winged Darter]]]]
23567 The [[Ecdysozoa]] are protostomes, named after the common trait of growth by moulting or [[ecdysis]]. The largest animal phylum belongs here, the [[Arthropoda]], including [[insect]]s, [[spider]]s, [[crab]]s, and their kin. All these organisms have a body divided into repeating segments, typically with paired appendages. Two smaller phyla, the [[Onychophora]] and [[Tardigrada]], are close relatives of the arthropods and share these traits.
23568
23569 [[Image:roundworm.jpg|thumb|left|[[Roundworm]]]]
23570 The ecdysozoans also include the [[Nematoda]] or roundworms, the second largest animal phylum. Roundworms are typically microscopic, and occur in nearly every environment where there is water. A number are important parasites. Smaller phyla related to them are the [[Nematomorpha]] or horsehair worms, which are visible to the unaided eye, and the [[Kinorhyncha]], [[Priapulida]], and [[Loricifera]], which are all microscopic. These groups have a reduced coelom, called a pseudocoelom.
23571
23572 The remaining two groups of protostomes are sometimes grouped together as the Spiralia, since in both embryos develop with spiral cleavage.
23573
23574 [[Image:Bedford-s_flatworm.jpg|thumb|left|Bedford's [[Flatworm]]]]
23575 ===Platyzoa===
23576 The [[Platyzoa]] include the phylum [[Platyhelminthes]], the flatworms. These were originally considered some of the most primitive Bilateria, but it now appears they developed from more complex ancestors.
23577
23578 [[Image:Rotifer.jpg|thumb|right|[[Rotifer]]]]
23579 A number of parasites are included in this group, such as the [[fluke]]s and [[tapeworm]]s. Flatworms lack a coelom, as do their closest relatives, the microscopic [[Gastrotricha]].
23580
23581 The other platyzoan phyla are microscopic and pseudocoelomate. The most prominent are the [[Rotifera]] or rotifers, which are common in aqueous environments. They also include the [[Acanthocephala]] or spiny-headed worms, the [[Gnathostomulida]], [[Micrognathozoa]], and possibly the [[Cycliophora]]. These groups share the presence of complex jaws, from which they are called the [[Gnathifera]].
23582
23583 ===Lophotrochozoa===
23584 [[Image:Reef2063.jpg|thumb|Big Blue [[Octopus]]]]
23585 The [[Lophotrochozoa]] include two of the most successful animal phyla, the [[Mollusca]] and [[Annelida]]. The former includes animals such as [[snail]]s, [[clam]]s, and [[squid]]s, and the latter comprises the segmented worms, such as [[earthworm]]s and [[leech]]es. These two groups have long been considered close relatives because of the common presence of [[trochophore]] larvae, but the annelids were considered closer to the arthropods, because they are both segmented. Now this is generally considered convergent evolution, owing to many morphological and genetic differences between the two phyla.
23586
23587 The Lophotrochozoa also include the [[Nemertea]] or ribbon worms, the [[Sipuncula]], and several phyla that have a fan of cilia around the mouth, called a [[lophophore]]. These were traditionally grouped together as the lophophorates, but it now appears they are [[paraphyletic]], some closer to the Nemertea and some to the Mollusca and Annelida. They include the [[Brachiopoda]] or lamp shells, which are prominent in the fossil record, the [[Entoprocta]], the [[Phoronida]], and possibly the [[Bryozoa]] or moss animals.
23588
23589 ==History of classification==
23590 [[Image:Caerulea3 crop.jpg|thumb|left|[[White's Tree Frog]]]]
23591 [[Image:Rød rÃĻv (Vulpes vulpes).jpg|thumb|''Vulpes vulpes'', the [[red fox]]]]
23592 [[Aristotle]] divided the living world between animals and [[plant]]s, and this was followed by [[Carolus Linnaeus]] in the first hierarchical classification. Since then biologists have begun emphasizing evolutionary relationships, and so these groups have been restricted somewhat. For instance, microscopic [[protozoa]] were originally considered animals because they move, but are now treated separately.
23593
23594 In [[Carolus Linnaeus|Linnaeus]]' original scheme, the animals were one of three kingdoms, divided into the classes of [[Vermes]], [[Insect]]a, [[Fish|Pisces]], [[Amphibia]], [[bird|Aves]], and [[Mammal]]ia. Since then the last four have all been subsumed into a single phylum, the [[chordate|Chordata]], whereas the various other forms have been separated out. The above lists represent our current understanding of the group, though there is some variation from source to source.
23595
23596 ==Usage of the word ''animal''==
23597 In everyday usage ''animal'' refers to any member of the [[animal kingdom]] that is not a [[human being]], and sometimes excludes [[insects]] (although including such arthropods as crabs). This confusion stems primarily from the familiarity with zoo animals, farm animals and pets, not from an analytical distinction between insects, humans and the rest of the animal kingdom.
23598
23599 ==Examples==
23600 {{see also|List of animal names}}
23601 Some well-known types of animals, listed by their common names:
23602 {{col-begin}}
23603 {{col-5}}
23604
23605 *[[aardvark]]
23606 *[[afghan hound]]
23607 *[[albatross]]
23608 *[[alligator]]
23609 *[[alpaca]]
23610 *[[anaconda]]
23611 *[[angelfish]]
23612 *[[anglerfish]]
23613 *[[ant]]
23614 *[[antlion]]
23615 *[[anteater]]
23616 *[[antelope]]
23617 *[[ape]]
23618 *[[aphid]]
23619 *[[armadillo]]
23620 *[[arrow crab]]
23621 *[[asp]]
23622 *[[donkey|ass]]
23623 *[[baboon]]
23624 *[[badger (animal)|badger]]
23625 *[[bald eagle]]
23626 *[[bandicoot]]
23627 *[[barnacle]]
23628 *[[common Basilisk|basilisk]]
23629 *[[barracuda]]
23630 *[[bass (fish)|bass]]
23631 *[[basset hound]]
23632 *[[bat]]
23633 *[[bear]]
23634 *[[beaver]]
23635 *[[bed bug]]
23636 *[[bee]]
23637 *[[beetle]]
23638 *[[bird]]
23639 *[[bison]]
23640 *[[blackbird]]
23641 *[[black panther]]
23642 *[[black widow]]
23643 *[[blue jay]]
23644 *[[blue whale]]
23645 *[[boa]]
23646 *[[bobcat]]
23647 *[[bobolink]]
23648 *[[booby]]
23649 *[[Box jellyfish]]
23650 *[[Boston Terrier|boston terrier]]
23651 *[[bovid]]
23652 *[[bison|buffalo]]
23653 *[[bug]]
23654 *[[bulldog]]
23655 *[[Bull Terrier|bull terrier]]
23656 *[[butterfly]]
23657 *[[buzzard]]
23658 *[[camel]]
23659 *[[canid]]
23660 *[[cape buffalo]]
23661 *[[cardinal (bird)]]
23662 *[[caribou]]
23663 *[[carp]]
23664 *[[cat]]
23665 *[[caterpillar]]
23666 *[[catfish]]
23667 *[[centipede]]
23668 *[[cephalopod]]
23669 *[[chameleon]]
23670 *[[cheetah]]
23671 *[[chickadee]]
23672 *[[chicken]]
23673 *[[chihuahua]]
23674 *[[chimpanzee]]
23675 *[[chinchilla]]
23676 *[[chipmunk]]
23677 *[[clam]]
23678 *[[clownfish]]
23679 *[[cobra]]
23680 *[[cockroach]]
23681 *[[cod]]
23682 *[[collie]]
23683 *[[condor]]
23684 *[[constrictor]]
23685 *[[coral]]
23686 *[[cougar]]
23687 *[[coyote]]
23688 {{col-5}}
23689 *[[cattle|cow]]
23690 *[[crab]]
23691 *[[crane (bird)|crane]]
23692 *[[crane fly]]
23693 *[[crawdad]]
23694 *[[crayfish]]
23695 *[[cricket (insect)|cricket]]
23696 *[[crocodile]]
23697 *[[crow]]
23698 *[[cuckoo]]
23699 *[[daddy longlegs]]
23700 *[[damselfly]]
23701 *[[deer]]
23702 *[[dingo]]
23703 *[[dinosaur]]
23704 *[[dog]]
23705 *[[dolphin]]
23706 *[[donkey]]
23707 *[[dormouse]]
23708 *[[dove]]
23709 *[[dragonfly]]
23710 *[[duck]]
23711 *[[dung beetle]]
23712 *[[eagle]]
23713 *[[earthworm]]
23714 *[[earwig]]
23715 *[[eel]]
23716 *[[egret]]
23717 *[[elephant]]
23718 *[[Elephant Seal]]
23719 *[[Red Deer|elk]]
23720 *[[emu]]
23721 *[[English Pointer|english pointer]]
23722 *[[English Setter|english setter]]
23723 *[[ermine]]
23724 *[[falcon]]
23725 *[[ferret]]
23726 *[[finch]]
23727 *[[firefly]]
23728 *[[fish]]
23729 *[[flamingo]]
23730 *[[flea]]
23731 *[[fly]]
23732 *[[flyingfish]]
23733 *[[fowl]]
23734 *[[fox]]
23735 *[[frog]]
23736 *[[fruit bat]]
23737 *[[gazelle]]
23738 *[[gecko]]
23739 *[[gerbil]]
23740 *[[German Shepherd Dog|german shepherd]]
23741 *[[giant panda]]
23742 *[[giant squid]]
23743 *[[gibbon]]
23744 *[[gila monster]]
23745 *[[guanaco]]
23746 *[[guineafowl]]
23747 *[[giraffe]]
23748 *[[goat]]
23749 *[[golden retriever]]
23750 *[[goldfinch]]
23751 *[[goldfish]]
23752 *[[goose]]
23753 *[[gopher]]
23754 *[[gorilla]]
23755 *[[grasshopper]]
23756 *[[great blue heron]]
23757 *[[great dane]]
23758 *[[great white shark]]
23759 *[[greyhound]]
23760 *[[grizzly bear]]
23761 *[[grouse]]
23762 *[[guinea pig]]
23763 *[[gull]]
23764 *[[guppy]]
23765 *[[haddock]]
23766 *[[halibut]]
23767 *[[hammerhead shark]]
23768 *[[hamster]]
23769 *[[hare]]
23770 *[[harrier (bird)|harrier]]
23771 *[[hawk]]
23772 {{col-5}}
23773 *[[hedgehog]]
23774 *[[hermit crab]]
23775 *[[heron]]
23776 *[[herring]]
23777 *[[hippopotamus]]
23778 *[[hookworm]]
23779 *[[hornet]]
23780 *[[horse]]
23781 *[[hound]]
23782 *[[human]]
23783 *[[hummingbird]]
23784 *[[humpback whale]]
23785 *[[husky]]
23786 *[[hyena]]
23787 *[[iguana]]
23788 *[[impala]]
23789 *[[insect]]
23790 *[[Irish Setter|irish setter]]
23791 *[[Irish Wolfhound|irish wolfhound]]
23792 *[[Irukandji jellyfish]]
23793 *[[jackal]]
23794 *[[jaguar]]
23795 *[[jay]]
23796 *[[jellyfish]]
23797 *[[kangaroo]]
23798 *[[kangaroo mouse]]
23799 *[[kangaroo rat]]
23800 *[[kingfisher]]
23801 *[[kite (bird)|kite]]
23802 *[[kiwi]]
23803 *[[koala]]
23804 *[[koi]]
23805 *[[komodo dragon]]
23806 *[[krill]]
23807 *[[labrador retriever]]
23808 *[[ladybug]]
23809 *[[lamprey]]
23810 *[[lark]]
23811 *[[leech]]
23812 *[[lemming]]
23813 *[[lemur]]
23814 *[[leopard]]
23815 *[[leopon]]
23816 *[[liger]]
23817 *[[lion]]
23818 *[[lizard]]
23819 *[[llama]]
23820 *[[lobster]]
23821 *[[locust]]
23822 *[[loon]]
23823 *[[louse]]
23824 *[[lungfish]]
23825 *[[lynx]]
23826 *[[macaw]]
23827 *[[mackerel]]
23828 *[[magpie]]
23829 *[[mammal]]
23830 *[[manta ray]]
23831 *[[marlin]]
23832 *[[marmoset]]
23833 *[[marmot]]
23834 *[[marsupial]]
23835 *[[marten]]
23836 *[[mastiff]]
23837 *[[meadowlark]]
23838 *[[meerkat]]
23839 *[[mink]]
23840 *[[minnow]]
23841 *[[mite]]
23842 *[[mockingbird]]
23843 *[[mole]]
23844 *[[mollusk]]
23845 *[[mongoose]]
23846 *[[monitor lizard]]
23847 *[[monkey]]
23848 *[[moose]]
23849 *[[mosquito]]
23850 *[[moth]]
23851 *[[mountain goat]]
23852 *[[mouse]]
23853 *[[mule]]
23854 *[[muskox]]
23855 *[[mussel]]
23856 {{col-5}}
23857 *[[narwhal]]
23858 *[[newt]]
23859 *[[nightingale]]
23860 *[[ocelot]]
23861 *[[octopus]]
23862 *[[Old English Sheepdog|old english sheepdog]]
23863 *[[opossum]]
23864 *[[orangutan]]
23865 *[[orca]]
23866 *[[ostrich]]
23867 *[[otter]]
23868 *[[owl]]
23869 *[[ox]]
23870 *[[oyster]]
23871 *[[panda]]
23872 *[[panther]]
23873 *[[panthera hybrid]]
23874 *[[parakeet]]
23875 *[[parrot]]
23876 *[[parrotfish]]
23877 *[[partridge]]
23878 *[[peacock]]
23879 *[[peafowl]]
23880 *[[pekingese]]
23881 *[[pelican]]
23882 *[[penguin]]
23883 *[[perch]]
23884 *[[Peregrine Falcon|peregrine falcon]]
23885 *[[persian (cat)|persian cat]]
23886 *[[pheasant]]
23887 *[[pig]]
23888 *[[pigeon]]
23889 *[[pike (fish)|pike]]
23890 *[[pilot whale]]
23891 *[[piranha]]
23892 *[[platypus]]
23893 *[[polar bear]]
23894 *[[poodle]]
23895 *[[porcupine]]
23896 *[[porpoise]]
23897 *[[portuguese man o' war]]
23898 *[[possum]]
23899 *[[prairie dog]]
23900 *[[prawn]]
23901 *[[praying mantis]]
23902 *[[primate]]
23903 *[[puffin]]
23904 *[[puma]]
23905 *[[python]]
23906 *[[quail]]
23907 *[[rabbit]]
23908 *[[raccoon]]
23909 *[[rainbow trout]]
23910 *[[rat]]
23911 *[[rattlesnake]]
23912 *[[raven]]
23913 *[[reindeer]]
23914 *[[rhinoceros]]
23915 *[[right whale]]
23916 *[[roadrunner]]
23917 *[[robin]]
23918 *[[rodent]]
23919 *[[rook (bird)|rook]]
23920 *[[roundworm]]
23921 *[[sailfish]]
23922 *[[St. Bernard (dog)|saint bernard]]
23923 *[[salamander]]
23924 *[[salmon]]
23925 *[[sawfish]]
23926 *[[scallop]]
23927 *[[scorpion]]
23928 *[[hippocampus (fish)|seahorse]]
23929 *[[sea lion]]
23930 *[[sea slug]]
23931 *[[sea urchin]]
23932 *[[setter]]
23933 *[[shark]]
23934 *[[sheep]]
23935 *[[sheepdog]]
23936 *[[shrew]]
23937 *[[shrimp]]
23938 *[[siamese (cat)|siamese cat]]
23939 *[[silkworm]]
23940 {{col-5}}
23941 *[[silverfish]]
23942 *[[skink]]
23943 *[[skunk]]
23944 *[[sloth]]
23945 *[[slug]]
23946 *[[smelt]]
23947 *[[snail]]
23948 *[[snake]]
23949 *[[snipe]]
23950 *[[snow leopard]]
23951 *[[sockeye salmon]]
23952 *[[sole]]
23953 *[[spaniel]]
23954 *[[sperm whale]]
23955 *[[spider]]
23956 *[[spider monkey]]
23957 *[[spoonbill]]
23958 *[[squid]]
23959 *[[squirrel]]
23960 *[[starfish]]
23961 *[[Star-nosed Mole|star-nosed mole]]
23962 *[[steelhead trout]]
23963 *[[stoat]]
23964 *[[stork]]
23965 *[[sturgeon]]
23966 *[[swallow]]
23967 *[[swan]]
23968 *[[swift]]
23969 *[[swordfish]]
23970 *[[swordtail]]
23971 *[[tabby cat]]
23972 *[[tahr]]
23973 *[[takin]]
23974 *[[tapeworm]]
23975 *[[tapir]]
23976 *[[tarantula]]
23977 *[[tasmanian devil]]
23978 *[[termite]]
23979 *[[tern]]
23980 *[[terrier]]
23981 *[[thrush]]
23982 *[[tiger]]
23983 *[[tiger shark]]
23984 *[[tigon]]
23985 *[[toad]]
23986 *[[tortoise]]
23987 *[[toucan]]
23988 *[[Toy Poodle|toy poodle]]
23989 *[[trapdoor spider]]
23990 *[[tree frog]]
23991 *[[trout]]
23992 *[[tuna]]
23993 *[[turkey]]
23994 *[[turtle]]
23995 *[[tyrannosaurus]]
23996 *[[urial]]
23997 *[[vampire bat]]
23998 *[[viper]]
23999 *[[vole]]
24000 *[[vulture]]
24001 *[[wallaby]]
24002 *[[walrus]]
24003 *[[wasp]]
24004 *[[warbler]]
24005 *[[water buffalo]]
24006 *[[weasel]]
24007 *[[whale]]
24008 *[[whitefish]]
24009 *[[whooping crane]]
24010 *[[wild cat]]
24011 *[[wildebeest]]
24012 *[[wildfowl]]
24013 *[[wolf]]
24014 *[[wolverine]]
24015 *[[wombat]]
24016 *[[woodpecker]]
24017 *[[worm]]
24018 *[[wren]]
24019 *[[yak]]
24020 *[[zebra]]
24021 {{col-end}}
24022
24023 ==References==
24024 *Klaus Nielsen. ''Animal Evolution: Interrelationships of the Living Phyla'' (2nd edition). Oxford Univ. Press, 2001.
24025 *Knut Schmidt-Nielsen. ''Animal Physiology: Adaptation and Environment''. (5th edition). Cambridge Univ. Press, 1997.
24026
24027 ==External links==
24028 {{Sisterlinks|Animalia}}
24029 {{wikispecies| Animalia}}
24030 * [http://tolweb.org/ Tree of Life Project]
24031 * [http://www.arkive.org ARKive] - multimedia database of worldwide endangered/protected species and of UK common species
24032 * [http://www.georgetown.edu/faculty/ballc/animals/animals.html Sounds of the World's Animals] - animal sounds in many languages
24033
24034
24035 [[Category:Animals]]
24036
24037 &lt;!-- interwiki --&gt;
24038
24039 [[af:Animalia]]
24040 [[als:Tiere]]
24041 [[an:Animal]]
24042 [[ast:Animal]]
24043 [[bg:ЖивоŅ‚ĐŊĐž]]
24044 [[bm:Bagan]]
24045 [[zh-min-nan:Tōng-buĖt]]
24046 [[ca:Animal]]
24047 [[cs:ÅŊivočichovÊ]]
24048 [[cy:Anifail]]
24049 [[da:Dyr]]
24050 [[de:Tiere]]
24051 [[et:Loomad]]
24052 [[el:ΖĪŽÎą]]
24053 [[es:Animal]]
24054 [[eo:Animalo]]
24055 [[fr:Animal]]
24056 [[fy:Dier]]
24057 [[ga:Ainmhí]]
24058 [[he:ב×ĸלי חיים]]
24059 [[hr:%C5%BDivotinje]]
24060 [[ko:동ëŦŧ]]
24061 [[io:Animalo]]
24062 [[id:Hewan]]
24063 [[ia:Animal]]
24064 [[it:Animali]]
24065 [[kw:Enyval]]
24066 [[ku:Ajal]]
24067 [[la:Animalia]]
24068 [[lv:DzÄĢvnieki]]
24069 [[lt:GyvÅĢnÅŗ karalystė]]
24070 [[lb:DÊiereräich]]
24071 [[li:Diere]]
24072 [[mk:ЖивоŅ‚ĐŊи]]
24073 [[ms:Haiwan]]
24074 [[nah:Yolkatl]]
24075 [[nl:Dieren (rijk)]]
24076 [[nds:Beest]]
24077 [[ja:動į‰Š]]
24078 [[no:Dyr]]
24079 [[pl:Zwierzęta]]
24080 [[pt:Animalia]]
24081 [[ru:ЖивоŅ‚ĐŊŅ‹Đĩ]]
24082 [[scn:Armali]]
24083 [[simple:Animal]]
24084 [[sl:ÅŊivali]]
24085 [[sr:ЖивоŅ‚иŅšĐ°]]
24086 [[fi:Eläinkunta]]
24087 [[sv:Djur]]
24088 [[th:ā¸Ēā¸ąā¸•ā¸§āšŒ]]
24089 [[uk:ĐĸваŅ€Đ¸ĐŊи]]
24090 [[zh:动į‰Š]]
24091 [[vi:Đáģ™ng váē­t]]
24092 [[chy:Hova]]</text>
24093 </revision>
24094 </page>
24095 <page>
24096 <title>Wikipedia:Adding Wikipedia articles to Nupedia</title>
24097 <id>724</id>
24098 <revision>
24099 <id>15899247</id>
24100 <timestamp>2003-03-17T11:02:55Z</timestamp>
24101 <contributor>
24102 <username>MyRedDice</username>
24103 <id>5862</id>
24104 </contributor>
24105 <minor />
24106 <comment>#REDIRECT [[Wikipedia:Nupedia and Wikipedia]] (moved to meta)</comment>
24107 <text xml:space="preserve">#REDIRECT [[Wikipedia:Nupedia and Wikipedia]]</text>
24108 </revision>
24109 </page>
24110 <page>
24111 <title>Astronomy/History</title>
24112 <id>727</id>
24113 <revision>
24114 <id>15899249</id>
24115 <timestamp>2002-09-01T17:24:05Z</timestamp>
24116 <contributor>
24117 <username>Bryan Derksen</username>
24118 <id>66</id>
24119 </contributor>
24120 <minor />
24121 <comment>bypassing double redirect</comment>
24122 <text xml:space="preserve">#REDIRECT [[History of astronomy]]</text>
24123 </revision>
24124 </page>
24125 <page>
24126 <title>List of anthropologists</title>
24127 <id>728</id>
24128 <revision>
24129 <id>42101343</id>
24130 <timestamp>2006-03-03T21:07:05Z</timestamp>
24131 <contributor>
24132 <username>Nigosh</username>
24133 <id>221949</id>
24134 </contributor>
24135 <minor />
24136 <comment>/* F */ + [[Raymond Firth]]</comment>
24137 <text xml:space="preserve">See [[Anthropology]].
24138
24139 A '''list of notable anthropologists'''.
24140
24141 {{compactTOC}} __NOTOC__
24142 ==A==
24143 *[[John Adair (anthropologist)|John Adair]]
24144 *[[Timothy Asch]]
24145
24146 ==B==
24147 *[[Nigel Barley]]
24148 *[[Fredrik Barth]]
24149 *[[Vasily Bartold]]
24150 *[[Keith H. Basso]]
24151 *[[Ruth Behar]]
24152 *[[Ruth Benedict]]
24153 *[[Theodore C. Bestor]]
24154 *[[Wilhelm Bleek]]
24155 *[[Franz Boas]]
24156 *[[Pere Bosch-Gimpera]]
24157 *[[Paul Pierre Broca]]
24158
24159 ==C==
24160 *[[Mauro Campagnoli]]
24161 *[[Joseph Campbell]]
24162 *[[NapolÊon Chagnon]]
24163 *[[Pierre Clastres]]
24164 *[[Carleton Coon]]
24165 *[[Frank Hamilton Cushing]]
24166
24167 ==D==
24168 *[[Raymond Dart]]
24169 *[[Ella Cara Deloria]]
24170 *[[Mary Douglas]]
24171 *[[Eugene Dubois]]
24172
24173 ==E==
24174 *[[Mircea Eliade]]
24175 *[[E. E. Evans-Pritchard]]
24176
24177 ==F==
24178 *[[Raymond Firth]]
24179 *[[Dian Fossey]]
24180 *[[James Frazer]]
24181
24182 ==G==
24183 *[[Clifford Geertz]]
24184 *[[Alfred Gell]]
24185 *[[Ernest Gellner]]
24186 *[[Max Gluckman]]
24187 *[[Jane Goodall]]
24188 *[[Robert J Gorden]]
24189 *[[Hilma Granqvist]]
24190 *[[Marcel Griaule]]
24191 *[[Jacob Grimm]]
24192 *[[Wilhelm Grimm]]
24193
24194 ==H==
24195 *[[Marvin Harris]]
24196 *[[Cassidy Hendrickson]]
24197 *[[Arthur Maurice Hocart]]
24198 *[[Earnest Hooton]]
24199 *[[Ales Hrdlicka|AleÅĄ Hrdli&amp;#269;ka]]
24200
24201 ==I==
24202 ==J==
24203 *[[William Jones (philologist)|William Jones]]
24204
24205 ==K==
24206 *[[Richard G. Klein]]
24207 *[[Dorinne K. Kondo]]
24208 *[[Conrad Kottak]]
24209 *[[Grover Krantz]]
24210 *[[Charles H. Kraft]]
24211 *[[Alfred L. Kroeber]]
24212 *[[Hilda Kuper]]
24213
24214 ==L==
24215 *[[William Labov]]
24216 *[[George Lakoff]]
24217 *[[Bruno Latour]]
24218 *[[Edmund Leach]]
24219 *[[Louis Leakey]]
24220 *[[Mary Leakey]]
24221 *[[Richard Leakey]]
24222 *[[Claude LÊvi-Strauss]]
24223 *[[Robert Lowie]]
24224
24225 ==M==
24226 *[[Bronislaw Malinowski]]
24227 *[[Marcel Mauss]]
24228 *[[Grant McCracken]]
24229 *[[Margaret Mead]]
24230 *[[Mervyn Meggitt]]
24231 *[[Nikolay Miklukho-Maklay]]
24232 *[[Sidney Mintz]]
24233 *[[Ashley Montagu]]
24234 *[[James Mooney]]
24235 *[[John H. Moore]]
24236 *[[Lewis H. Morgan]]
24237 *[[George Murdock]]
24238
24239 ==N==
24240 *[[Laura Nader]]
24241 *[[Raoul Naroll]]
24242
24243 ==O==
24244 *[[Gananath Obeyesekere]]
24245 *[[Marvin Opler]]
24246 *[[Morris Opler]]
24247
24248 ==P==
24249 *[[Glenn Petersen]]
24250 *[[Bronislav Pilsudski]]
24251 *[[Hortense Powdermaker]]
24252
24253 ==Q==
24254 ==R==
24255 *[[Wilhelm Radloff]]
24256 *[[Hans Ras]]
24257 *[[Alfred Reginald Radcliffe-Brown]]
24258 *[[Gerardo Reichel-Dolmatoff]]
24259 *[[W. H. R. Rivers]]
24260 *[[Eric Ross]]
24261
24262 ==S==
24263 *[[Marshall Sahlins]]
24264 *[[Roger Sandall]]
24265 *[[Edward Sapir]]
24266 *[[Wilhelm Schmidt]]
24267 *[[Tobias Schneebaum]]
24268 *[[Afanasy Shchapov]]
24269 *[[Marilyn Strathern]]
24270
24271 ==T==
24272 *[[Edward Burnett Tylor]]
24273 *[[Colin Turnbull]]
24274 *[[Victor Turner]]
24275
24276 ==U==
24277 ==V==
24278 *[[Christine VanPool]]
24279 *[[Karl Verner]]
24280
24281 ==W==
24282 *[[Camilla Wedgwood]]
24283 *[[Hank Wesselman]]
24284 *[[Leslie White]]
24285 *[[Ben White]]
24286 *[[Tim White]]
24287 *[[Benjamin Whorf]]
24288 *[[Clark Wissler]]
24289 *[[Eric Wolf]]
24290 *[[Sol Worth]]
24291
24292 ==X==
24293 ==Y==
24294 ==Z==
24295
24296 [[Category:Lists of people by occupation|Anthropologists]]
24297 [[Category:Anthropologists|*]]
24298
24299 [[es:Lista de antropÃŗlogos]]
24300 [[pl:Znani antropolodzy]]
24301 [[pt:Lista_de_antropÃŗlogos]]
24302 [[simple:Anthropologist]]
24303 [[sl:seznam antropologov]]
24304 [[zh:äēēįąģå­ĻåŽļåˆ—čĄ¨]]</text>
24305 </revision>
24306 </page>
24307 <page>
24308 <title>Astronomy and Astrophysics</title>
24309 <id>730</id>
24310 <revision>
24311 <id>36862446</id>
24312 <timestamp>2006-01-26T23:25:49Z</timestamp>
24313 <contributor>
24314 <username>Bluemoose</username>
24315 <id>178836</id>
24316 </contributor>
24317 <comment>[[WP:AWB|AWB assisted]] clean up</comment>
24318 <text xml:space="preserve">'''''Astronomy and Astrophysics''''' (abbreviated as ''A&amp;A'' in the astronomical literature, or else ''Astron. Astrophys.'') is a European Journal, publishing papers on theoretical, observational and instrumental [[astronomy]] and [[astrophysics]]. It was published by [[Springer-Verlag]] from [[1969]]-[[2000]], while [[EDP Sciences]] published the companion ''A&amp;A Supplement Series''. In 2000, the two journals merged, with the combined journal known simply as ''Astronomy and Astrophysics'', and published by EDP Sciences.
24319
24320 ''A&amp;A'' is one of the major journals of astronomy, alongside the ''[[Astrophysical Journal]]'', ''[[Astronomical Journal]]'' and the ''[[Monthly Notices of the Royal Astronomical Society]]''. While the first two are often the preferred journal of US-based researchers and the MNRAS is often the favoured journal for UK- and Commonwealth-based astronomers, A&amp;A tends to be the preferred journal of astronomers based in [[Europe]] (excluding the UK), particularly since page charges are waived for astronomers working in member countries.
24321
24322 ''A&amp;A'' was created from the merger in 1969 of six major European astronomical journals
24323 * ''Annales d'Astrophysique'' (France), founded in 1938
24324 * ''Arkiv for Astronomi'' (Sweden), founded in 1948
24325 * ''Bulletin of the Astronomical Institutes of the Netherlands'', founded in 1921
24326 * ''Bulletin Astronomique'' (France), founded in 1884
24327 * ''Journal des Observateurs'' (France), founded in 1915
24328 * ''Zeitschrift fur Astrophysik'' (Germany), founded in 1930
24329 and extended in 1992 by the incorporation of:
24330 * ''Bulletin of the Astronomical Institutes of Czechoslovakia'', founded in 1947
24331
24332 ==External links==
24333 *[http://www.aanda.org/ A&amp;A home page]
24334 *[http://www.edpsciences.org/journal/index.cfm?edpsname=aa A&amp;A Publisher's home page]
24335
24336 [[Category:Astronomy journals]]
24337
24338
24339 {{sci-journal-stub}}</text>
24340 </revision>
24341 </page>
24342 <page>
24343 <title>Astronomy and Astrophysics/History</title>
24344 <id>731</id>
24345 <revision>
24346 <id>15899252</id>
24347 <timestamp>2002-10-09T13:49:22Z</timestamp>
24348 <contributor>
24349 <username>Magnus Manske</username>
24350 <id>4</id>
24351 </contributor>
24352 <minor />
24353 <comment>#REDIRECT [[History of astronomy]]</comment>
24354 <text xml:space="preserve">#REDIRECT [[History of astronomy]]</text>
24355 </revision>
24356 </page>
24357 <page>
24358 <title>Actinopterygii</title>
24359 <id>734</id>
24360 <revision>
24361 <id>40010022</id>
24362 <timestamp>2006-02-17T13:44:26Z</timestamp>
24363 <contributor>
24364 <ip>209.158.165.30</ip>
24365 </contributor>
24366 <comment>/* Classification */</comment>
24367 <text xml:space="preserve">{{taxobox
24368 | color=pink
24369 | name=Ray-finned fish
24370 | image = Herring2.jpg
24371 | image_caption = [[Atlantic herring]]
24372 | regnum = [[Animal]]ia
24373 | phylum = [[Chordate|Chordata]]
24374 | classis = '''Actinopterygii'''
24375 | classis_authority = Klein 1885
24376 | subdivision_ranks = Subclasses
24377 | subdivision =
24378 [[Chondrostei]]&lt;br/&gt;
24379 [[Neopterygii]]&lt;br/&gt;
24380 See text for orders.}}
24381 The '''Actinopterygii''' are the '''ray-finned [[fish]]'''. They are the dominant group of [[vertebrate]]s, with over 27,000 species ubiquitous throughout [[fresh water]] and [[ocean|marine]] environments.
24382
24383 ==Classification==
24384 Traditionally three grades of Actinopterygii have been recognized: the '''[[Chondrostei]]''', '''[[Holostei]]''', and '''[[Teleostei]]'''. The second is [[paraphyletic]] and tends to be abandoned, however, while the first is now restricted to those forms closer to extant [[Chondrostei]] than to the other groups. Nearly all fish alive today are teleosts. A listing of the different groups is given below, down to the level of orders, arranged in what is believed to represent the evolutionary sequence down to the level of superorder.
24385
24386 * '''Subclass [[Chondrostei]]'''
24387 ** Order [[Polypteriformes]] (bichirs)
24388 ** Order [[Acipenseriformes]] (sturgeons, paddlefish)
24389 * '''Subclass [[Neopterygii]]'''
24390 ** Order [[Semionotiformes]] (gars)
24391 ** Order [[Amiiformes]] (bowfins)
24392 ** '''Infraclass [[Teleostei]]'''
24393 *** '''Superorder [[Osteoglossomorpha]]'''
24394 **** Order [[Osteoglossiformes]] (bony tongues, etc)
24395 **** Order [[Hiodontiformes]] (mooneye, etc)
24396 *** '''Superorder [[Elopomorpha]]'''
24397 **** Order [[Elopiformes]] (tarpons, etc)
24398 **** Order [[Albuliformes]] (bonefishes)
24399 **** Order [[Notacanthiformes]] (spiny eels)
24400 **** Order [[Anguilliformes]] (true eels, gulpers)
24401 **** Order [[Saccopharyngiformes]]
24402 *** '''Superorder [[Clupeomorpha]]'''
24403 **** Order [[Clupeiformes]] (herrings &amp; allies)
24404 *** '''Superorder [[Ostariophysi]]'''
24405 **** Order [[Gonorynchiformes]]
24406 **** Order [[Cypriniform]]es (minnows &amp; allies)
24407 **** Order [[Characiformes]] (characins &amp; allies)
24408 **** Order [[Gymnotiformes]] (electric eels, knifefishes)
24409 **** Order [[Siluriformes]] (catfishes)
24410 *** '''Superorder [[Protacanthopterygii]]'''
24411 **** Order [[Salmoniformes]] (salmon &amp; allies)
24412 **** Order [[Esociformes]] (pikes &amp; allies)
24413 **** Order [[Osmeriformes]] (smelts &amp; allies)
24414 *** '''Superorder [[Sternopterygii]]'''
24415 **** Order [[Ateleopodiformes]] (jellynose fishes)
24416 **** Order [[Stomiiformes]] (dragonfishes &amp; allies)
24417 *** '''Superorder [[Cyclosquamata]]'''
24418 **** Order [[Aulopiformes]] (lizardfishes)
24419 *** '''Superorder [[Scopelomorpha]]'''
24420 **** Order [[Myctophiformes]] (lanternfishes)
24421 *** '''Superorder [[Lampridiomorpha]]'''
24422 **** Order [[Lampridiformes]] (opahs, etc)
24423 *** '''Superorder [[Polymyxiomorpha]]'''
24424 **** Order [[Polymixiiformes]] (beardfishes)
24425 *** '''Superorder [[Paracanthopterygii]]'''
24426 **** Order [[Percopsiformes]] (trout-perches &amp; allies)
24427 **** Order [[Batrachoidiformes]] (toadfishes)
24428 **** Order [[Lophiiformes]] (goosefishes, etc)
24429 **** Order [[Gadiformes]] (cods &amp; allies)
24430 **** Order [[Ophidiiformes]] (cusk eels, etc)
24431 *** '''Superorder [[Acanthopterygii]]'''
24432 **** Order [[Mugiliformes]] (mullets &amp; allies)
24433 **** Order [[Atheriniformes]] (silversides &amp; allies)
24434 **** Order [[Beloniformes]] (needlefishes, etc)
24435 **** Order [[Cetomimiformes]] (whalefishes)
24436 **** Order [[Cyprinodontiformes]] (killifishes, etc)
24437 **** Order [[Stephanoberyciformes]] (pricklefishes, whalefishes, etc)
24438 **** Order [[Beryciformes]] (alfonsinos, etc)
24439 **** Order [[Zeiformes]] (dories, etc)
24440 **** Order [[Gasterosteiformes]] (sticklebacks, pipefishes, seahorses, etc)
24441 **** Order [[Synbranchiformes]] (swamp-eels, etc)
24442 **** Order [[Tetraodontiformes]] (triggerfishes &amp; allies)
24443 **** Order [[Pleuronectiformes]] (flatfishes &amp; allies)
24444 **** Order [[Scorpaeniformes]] (scorpionfishes &amp; allies)
24445 **** Order [[Perciformes]] (perches &amp; many allies)
24446
24447
24448 Subphulum Vertebrata
24449
24450 ==External links==
24451 * * [http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?name=actinopterygii NCBI Taxonomy entry]
24452
24453 ==References==
24454 * {{ITIS|ID=161061|year=2004|date=8 December|taxon=Actinopterygii}}
24455
24456 [[Category:Ray-finned fish| ]]
24457 [[Category:Bony fish]]
24458
24459 [[bg:ЛŅŠŅ‡ĐĩĐŋĐĩŅ€Đēи]]
24460 [[cs:Paprskoploutví]]
24461 [[da:StrÃĨlefinnede fisk]]
24462 [[de:Strahlenflosser]]
24463 [[fa:شؚاؚ‌باŲ„Ų‡]]
24464 [[fr:Actinopterygii]]
24465 [[ko:ėĄ°ę¸°ė–´ëĨ˜]]
24466 [[is:Geisluggar]]
24467 [[he:מקריני סנפיר]]
24468 [[la:Actinopterygii]]
24469 [[lt:Stipinpelekės Åžuvys]]
24470 [[nl:Straalvinnigen]]
24471 [[ja:æĄé°­äēœįļą]]
24472 [[no:StrÃĨlefinnede fisker]]
24473 [[pl:Promieniopłetwe]]
24474 [[pt:Actinopterygii]]
24475 [[fi:Viuhkaeväiset]]
24476 [[sv:Taggfeniga fiskar]]
24477 [[zh:čŧģ鰭魚]]</text>
24478 </revision>
24479 </page>
24480 <page>
24481 <title>Al Gore/Criticisms</title>
24482 <id>735</id>
24483 <revision>
24484 <id>15899255</id>
24485 <timestamp>2002-06-16T15:12:19Z</timestamp>
24486 <contributor>
24487 <username>Ortolan88</username>
24488 <id>1325</id>
24489 </contributor>
24490 <minor />
24491 <comment>*moved single para to main article, made this redirect</comment>
24492 <text xml:space="preserve">#REDIRECT [[Al Gore]]</text>
24493 </revision>
24494 </page>
24495 <page>
24496 <title>Albert Einstein</title>
24497 <id>736</id>
24498 <revision>
24499 <id>42155072</id>
24500 <timestamp>2006-03-04T04:33:46Z</timestamp>
24501 <contributor>
24502 <username>Licorne</username>
24503 <id>921428</id>
24504 </contributor>
24505 <comment>/* General relativity */</comment>
24506 <text xml:space="preserve">{{Redirect|Einstein}}
24507
24508 [[Image:Einstein In Overcoat.jpg|thumb|right|222px|Albert Einstein photographed by Oren J. Turner in 1947.]]
24509
24510 '''Albert Einstein''' ([[March 14]], [[1879]] – [[April 18]], [[1955]]) was a [[Germany|German]]-born [[theoretical physics|theoretical physicist]] widely regarded as the greatest [[science|scientist]] of the 20th century. He was the author of the [[general theory of relativity]] and made important contributions to the [[special theory of relativity]], [[quantum mechanics]], [[statistical mechanics]], and [[physical cosmology|cosmology]]. He was awarded the 1921 [[Nobel Prize in Physics|Nobel Prize for Physics]] for his explanation of the [[photoelectric effect]] in 1905 (his &quot;[[Annus Mirabilis Papers|miracle year]]&quot;) and &quot;for his services to Theoretical Physics.&quot;
24511
24512 After British [[solar eclipse]] expeditions in 1919 confirmed that light rays from distant stars were deflected by the gravity of the sun in the exact amount he predicted in his [[general theory of relativity]], Einstein became world-famous, an unusual achievement for a scientist. In his later years, his fame exceeded that of any other scientist in [[history of science and technology|history]]. In [[popular culture]], his name has become synonymous with great [[intelligence (trait)|intelligence]] and [[genius]].
24513
24514 ==Biography==
24515 [[Image:Young Albert Einstein.jpg|thumb|left|222px|Young Einstein before the Einsteins moved from [[Germany]] to [[Italy]].]]
24516 ===Youth and college===
24517 Einstein was born on [[March 14]], [[1879]] at [[Ulm]] in [[Baden-WÃŧrttemberg]], [[German Empire]], about 100 km east of [[Stuttgart]]. His parents were Hermann Einstein, a featherbed salesman who later ran an [[electrochemistry|electrochemical]] works, and Pauline, whose maiden name was Koch. They were married in Stuttgart-Bad Cannstatt. The family was [[Jew]]ish (non-observant); Albert attended a [[Catholic school|Catholic elementary school]] and, at the insistence of his mother, was given [[violin]] lessons. Though he initially disliked (and eventually discontinued) the lessons, he would later take great solace in [[Wolfgang Amadeus Mozart|Mozart]]'s [[violin sonata]]s.
24518
24519 When Albert was five, his [[father]] showed him a pocket [[compass]], and Einstein realized that something in &quot;empty&quot; space acted upon the [[needle]]; he would later describe the experience as one of the most revelatory of his life. Though he built [[model (physical)|model]]s and [[machine|mechanical device]]s for fun and showed great mathematical faculty early on, he was considered a slow learner, possibly due to [[dyslexia]], simple [[shyness]], or the significantly rare and unusual structure of [[Albert Einstein's brain|his brain]] (examined after his death).{{rf|1|brain}} He later credited his development of the theory of relativity to this slowness, saying that by pondering space and time later than most children, he was able to apply a more developed intellect. Some researchers have speculated that Einstein may have exhibited some traits of mild forms of [[autism]], although they concede that a reliable posthumous diagnosis is impossible.{{rf|2|autism}}
24520
24521 In 1889, a student named Max Talmud introduced Einstein to key science and [[philosophy]] texts including [[Immanuel Kant|Kant's]] ''[[Critique of Pure Reason]]''. Two of his uncles would further foster his intellectual interests during his late childhood and early adolescence by suggesting and providing books on science, mathematics and philosophy.
24522
24523 Einstein attended the [[Luitpold Gymnasium]] where he received a relatively progressive education. He began to learn [[mathematics]] around age twelve: in 1891, he taught himself [[Euclidean geometry|Euclidean plane geometry]] from a school booklet and began to study [[calculus]]. There is a recurring [[rumor]] that he failed mathematics later in his education, but this is untrue; a change in the way grades were assigned caused confusion years later. While there, he clashed with authority and resented the school regimen, believing the spirit of learning and creative thought were lost in such an endeavor as strict memorization.
24524
24525 In 1894, following the failure of Hermann's electrochemical business, the Einsteins moved from [[Munich]] to [[Pavia, Italy]] (near [[Milan]]). Einstein's first scientific work was written therein (called &quot;''The Investigation of the State of [[Aether]] in [[Magnetic Field]]s''&quot;). Albert remained behind in Munich lodgings to finish school, completing only one term before leaving the [[gymnasium (school)|gymnasium]] in spring 1895 to rejoin his family in Pavia. He quit without telling his parents and a year and a half prior to final examinations, Einstein convinced the school to let him go with a medical note from a friendly doctor, but this meant he had no secondary-school certificate.{{rf|3|Highfield1}} That year, at the age of 16, he performed the [[thought experiment]] known as Albert Einstein's mirror. After gazing into a mirror, he examined what would happen to his image if he were moving at the [[speed of light]]; his conclusion that the speed of light is independent of the observer would later become one of the two [[postulates of special relativity]].
24526
24527 Despite excelling in the mathematics and science portion, his failure of the liberal arts portion of the ''[[ETH Zurich|EidgenÃļssische Technische Hochschule]]'' (ETH, Swiss Federal Institute of Technology, in [[Zurich]]) entrance exam the following year was a setback; his family sent him to [[Aarau]], [[Switzerland]], to finish secondary school, where he studied the seldom-taught [[James Clerk Maxwell|Maxwell's]] [[classical electromagnetism|electromagnetic theory]] and received his diploma in September 1896. During this time he lodged with Professor Jost Winteler's family and became enamoured with Marie, their daughter, his first sweetheart. Albert's sister Maja was to later marry their son Paul, and his friend [[Michele Besso]] married their other daughter Anna.{{rf|4|Highfield2}} Einstein subsequently enrolled at the ''EidgenÃļssische Technische Hochschule'' in October and moved to Zurich, while Marie moved to [[Olsberg]] for a teaching post. The same year, he renounced his [[WÃŧrttemberg]] citizenship and became [[stateless person|stateless]].
24528
24529 In the spring of 1896, the [[Serbia]]n [[Mileva Maric|Mileva Marić]] started initially as a medical student at the [[University of Zurich]], but after a term switched to the same section as Einstein as the only woman that year to study for the same diploma. Einstein's relationship with Mileva developed into romance over the next few years.
24530
24531 In 1900, he was granted a teaching diploma by the ''EidgenÃļssische Technische Hochschule'' ([[ETH Zurich]]). Einstein then wrote his first published paper on the [[capillary action|capillary forces]] of a drinking straw, wherein he tried to unify the [[laws of physics]], an attempt he would continually make throughout his life. (It was titled &quot;''Folgerungen aus den Capillaritätserscheinungen'',&quot; which translated is &quot;''Consequences of the observations of capillarity phenomena'',&quot; found in &quot;''Annalen der Physik''&quot; volume 4, page 513.) Shortly following, Einstein was accepted as a Swiss citizen in 1901; he kept his Swiss passport for his whole life. Through his friend Michelle Besso, an [[engineer]], he was presented with the works of [[Ernst Mach]] and later would consider him &quot;the best sounding board in Europe&quot; for physical ideas. During this time Einstein discussed his scientific interests with a group of close friends, including Besso and Mileva. The men referred to themselves as the &quot;Olympia Academy.&quot; He and Mileva had an illegitimate daughter [[Lieserl Einstein|Lieserl]], born in January 1902.
24532
24533 ===Work and doctorate===
24534 [[Image:Einstein patentoffice.jpg|frame|right||Einstein in 1905, when he wrote the &quot;''[[Annus Mirabilis Papers]]''&quot;]]
24535
24536 Upon graduation, Einstein could not find a teaching post, mostly because his brashness as a young man had apparently irritated most of his professors. The father of a classmate helped him obtain employment as a technical assistant [[patent clerk|examiner]] at the Swiss Patent Office{{rf|5|www.ipi.ch.376}} in 1902. There, Einstein judged the worth of [[inventor]]s' [[patent]] applications for devices that required a knowledge of physics to understand — in particular he was chiefly charged to evaluate patents relating to electromagnetic devices.{{rf|6|Galison368}} He also learned how to discern the essence of applications despite sometimes poor descriptions, and was taught by the director how &quot;to express [him]self correctly&quot;. He occasionally rectified their design errors while evaluating the practicality of their work.
24537
24538 Einstein married [[Mileva Marić]] on [[January 6]], [[1903]]. Einstein's marriage to Marić, who was a mathematician, was both a personal and intellectual partnership: Einstein referred to Mileva as &quot;a creature who is my equal and who is as strong and independent as I am&quot;. [[Ronald W. Clark]], a biographer of Einstein, claimed that Einstein depended on the distance that existed in his and Mileva's marriage in order to have the solitude necessary to accomplish his work; he required intellectual isolation. [[Abram Joffe]], a Soviet physicist who knew Einstein, in an obituary of Einstein, wrote, &quot;The author of [the papers of 1905] was ... a bureaucrat at the Patent Office in Bern, Einstein-Marić&quot; and this has recently been taken as evidence of a collaborative relationship. However, according to Alberto A. Martínez of the Center for Einstein Studies at Boston University, Joffe only ascribed authorship to Einstein, as he believed that it was a Swiss custom at the time to append the spouse's last name to the husband's name.{{rf|7|physicsweb.org.377}} Whatever the truth, the extent of her influence on Einstein's work is a highly controversial and debated question.
24539
24540 On [[May 14]], [[1904]], the couple's first son, [[Hans Albert Einstein]], was born. In 1903, Einstein's position at the [[Swiss Patent Office]] had been made permanent, though he was passed over for promotion until he had &quot;fully mastered machine technology&quot;.{{rf|8|Galison370}} He obtained his [[Doctor of Philosophy|doctorate]] after submitting his thesis &quot;''A new determination of molecular dimensions''&quot; (&quot;''Eine neue Bestimmung der MolekÃŧldimensionen''&quot;) in 1905.
24541
24542 That same year, he wrote four articles that provided the foundation of modern physics, without much [[scientific literature]] to which he could refer or many scientific colleagues with whom he could discuss the theories. Most physicists agree that three of those papers (on [[Brownian motion]], the [[photoelectric effect]], and [[special relativity]]) deserved [[Nobel Prize]]s. Only the paper on the photoelectric effect would be mentioned by the Nobel committee in the award. This is ironic, not only because Einstein is far better-known for relativity, but also because the photoelectric effect is a quantum phenomenon, and Einstein became somewhat disenchanted with the path [[quantum mechanics|quantum theory]] would take. In each of these papers, Einstein boldly took an idea from theoretical physics to its logical consequences and managed to explain experimental results that had baffled scientists for decades.
24543 [[Image:Max-Planck-und-Albert-Einstein.jpg|thumb|left|222px|[[Max Planck]] and Einstein]]
24544
24545 ====Annus Mirabilis Papers====
24546 {{details|Annus Mirabilis Papers}}
24547
24548 Einstein submitted the series of papers to the &quot;''Annalen der Physik''&quot;. They are commonly referred to as the &quot;''[[Annus Mirabilis Papers]]''&quot; (from [[List of Latin phrases|''Annus mirabilis'']], [[Latin]] for 'year of wonders'). The International Union of Pure and Applied Physics ([[IUPAP]]) commemorated the 100th year of the publication of Einstein's extensive work in 1905 as the '[[World Year of Physics 2005]]'.
24549
24550 The first paper, named &quot;''On a Heuristic Viewpoint Concerning the Production and Transformation of Light''&quot;, (&quot;''Über einen die Erzeugung und Verwandlung des Lichtes betreffenden heuristischen Gesichtspunkt''&quot;) proposed that &quot;energy quanta&quot; (which are essentially what we now call [[photon]]s) were real, and showed how they could be used to explain such phenomena as the [[photoelectric effect]]. This paper was specifically cited for his Nobel Prize. [[Max Planck]] had made the formal assumption that energy was quantized in deriving his black-body radiation law, published in 1901, but had considered this to be no more than a mathematical trick. The photoelectric effect thus provided a simple confirmation of Max Planck's hypothesis of quanta.
24551
24552 His second article in 1905, named &quot;''On the Motion—Required by the Molecular Kinetic Theory of Heat—of Small Particles Suspended in a Stationary Liquid''&quot;, (&quot;''[[Über die von der molekularkinetischen Theorie der Wärme geforderte Bewegung von in ruhenden FlÃŧssigkeiten suspendierten Teilchen]]''&quot;) covered his study of [[Brownian motion]], and provided empirical evidence for the existence of atoms. Before this paper, [[atom]]s were recognized as a useful concept, but [[physicist]]s and [[chemist]]s hotly debated whether atoms were real entities. Einstein's statistical discussion of atomic behavior gave [[experimentalist]]s a way to count atoms by looking through an ordinary [[microscope]]. [[Wilhelm Ostwald]], one of the leaders of the anti-atom school, later told [[Arnold Sommerfeld]] that he had been converted to a belief in atoms by Einstein's complete explanation of Brownian motion. At the same time as Einstein, Brownian Motion was also described by [[Smoluchowski]].
24553
24554 Einstein's third paper that year, &quot;''On the Electrodynamics of Moving Bodies''&quot; (&quot;''Zur Elektrodynamik bewegter KÃļrper''&quot;), was published in September 1905. This paper introduced the [[special relativity|special theory of relativity]], a theory of time, distance, mass and energy which was consistent with [[electromagnetism]], but omitted the force of [[gravity]]. While developing this paper, Einstein wrote to Mileva about &quot;our work on relative motion&quot;, and this has led some to ask whether Mileva played a part in its development. A few historians of science believe that Einstein and his wife were both aware that the famous Frenchman [[Henri PoincarÊ]] had already published the equations of Relativity, a few weeks before Einstein submitted his paper; most believe their work independent, especially given Einstein's isolation at this time.
24555
24556 A fourth paper, &quot;''Does the Inertia of a Body Depend Upon Its Energy Content?''&quot;, (&quot;''Ist die Trägheit eines KÃļrpers von seinem Energieinhalt abhängig?''&quot;) published late in 1905, showed one further deduction from relativity's [[axiom]]s, the famous equation that the [[energy]] of a body at rest (''E'') equals its mass (''m'') times the speed of light (''c'') squared: ''[[E=mc²|E&amp;nbsp;=&amp;nbsp;mc&amp;sup2;]]''. &lt;!-- whether this is correct or should be included seems dubious: , this equation having been first correctly published by [[Henri PoincarÊ]] (1900), for the case of mass equivalence of electromagnetic [[radiation]]. Max Planck(1907) questioned the reasoning in Einstein's derivation, and H.E.Ives(1953) called Einstein's derivation a tautology. --&gt;
24557
24558 ===Middle years===
24559 [[Image:Einstein 1911 Solvay.jpg|frame|right|Einstein at the 1911 [[Solvay Conference]].]]
24560
24561 In 1906, Einstein was promoted to technical examiner second class. In 1908, Einstein was licensed in [[Bern]], Switzerland, as a [[Privatdozent]] (unsalaried teacher at a university). Einstein's second son, [[Eduard Einstein|Eduard]], was born on [[July 28]], [[1910]]. At this time, he described why the sky is blue in his paper on the phenomenon of [[critical opalescence]], which shows the cumulative effect of [[scattering]] of light by individual molecules in the atmosphere.[http://www.pbs.org/wgbh/nova/einstein/genius/] In 1911, Einstein became first associate [[professor]] at the [[University of Zurich]], and shortly afterwards full professor at the (German) [[University of Prague]], only to return the following year to [[Zurich]] in order to become full professor at the [[ETH Zurich]]. At that time, he worked closely with the [[mathematician]] [[Marcel Grossmann]]. In 1912, Einstein started to refer to [[time]] as the [[fourth dimension]] (although [[H.G. Wells]] had done this earlier, in 1895 in ''[[The Time Machine]]'').
24562
24563 In 1914, just before the start of [[World War I]], Einstein settled in [[Berlin]] as professor at the local [[University of Berlin|university]] and became a member of the [[Prussian Academy of Sciences]]. He took German citizenship. His [[pacifism]] and [[Jew]]ish origins irritated German nationalists. After he became world-famous, nationalistic hatred of him grew and for the first time he was the subject of an organized campaign to discredit his theories. From 1914 to 1933, he served as director of the [[Kaiser Wilhelm Institute]] for Physics in Berlin, and it was during this time that he was awarded his [[Nobel Prize]] and made his most groundbreaking discoveries. He was also an extraordinary professor at the [[Leiden University]] from 1920 until officially 1946, where he regularly gave guest lectures.
24564
24565 In 1917, Einstein published &quot;''On the Quantum Mechanics of Radiation''&quot; (&quot;''Zur Quantenmechanik der Strahlung''&quot;, Physkalische Zeitschrift 18, 121-128). This article introduced the concept of [[stimulated emission]], the physical principle that allows light amplification in the [[laser]]. He also published a paper that year that used the general theory of relativity to model the behavior of the entire universe, setting the stage for modern [[physical cosmology|cosmology]]. In this work he created his self-described &quot;worst blunder&quot;, the [[cosmological constant]].
24566
24567 Einstein divorced Mileva on [[February 14]], [[1919]], and married his cousin [[Elsa LÃļwenthal]] (born Einstein: LÃļwenthal was the surname of her first husband, Max) on [[June 2]], [[1919]]. Elsa was Albert's first cousin (maternally) and his second cousin (paternally). She was three years older than Albert, and had nursed him to health after he had suffered a partial nervous breakdown combined with a severe stomach ailment; there were no children from this marriage. The fate of Albert and Mileva's first child, Lieserl, is unknown. Some believe she died in infancy, while others believe she was given out for adoption. They later had two sons: Eduard and Hans Albert. Eduard intended to practice as a [[psychoanalyst|Freudian analyst]] but was institutionalized for [[schizophrenia]] and died in an asylum. [[Hans Albert Einstein|Hans Albert]], his older brother, became a professor of [[hydraulic engineering]] at the [[University of California, Berkeley]], having little interaction with his father.
24568 [[Image:Einstein theory triumphs.png|thumb|left|222px|&quot;Einstein theory triumphs,&quot; declared the ''[[New York Times]]'' on [[November 10]] [[1919]].]]
24569
24570 ====General relativity====
24571 In November 1915, Einstein presented a series of lectures before the Prussian Academy of Sciences in which he described his theory of gravity, known as [[general relativity]]. The final lecture climaxed with his introduction of an equation that replaced Newton's law of gravity, the Field Equation, which was first derived from a variational principle by [[David Hilbert]]. This theory considered all observers to be equivalent, not only those moving at a uniform speed. In general relativity, gravity is no longer a force (as it is in Newton's law of gravity) but is a consequence of the curvature of [[space-time]].
24572
24573 The theory provided the foundation for the study of [[physical cosmology|cosmology]] and gave scientists the tools for understanding many features of the universe that were discovered well after Einstein's death. A truly revolutionary theory, general relativity has so far passed every test posed to it and has become a powerful tool used in the analysis of many subjects in physics.
24574
24575 Initially, scientists were skeptical because the theory was derived by mathematical reasoning and rational analysis, not by experiment or observation. But in 1919, predictions made using the theory were confirmed by [[Arthur Stanley Eddington|Arthur Eddington]]'s measurements (during a [[solar eclipse]]), of how much the light emanating from a star was [[Gravitational lens|bent]] by the [[Sun]]'s gravity when it passed close to the Sun, an effect called gravitational lensing. The observations were carried out on [[May 29]], [[1919]], at two locations, one in [[Sobral, CearÃĄ]], [[Brazil]], and another in the island of [[Principe]], in the west coast of [[Africa]]. On [[November 7]], ''[[The Times]]'' reported the confirmation, cementing Einstein's fame.
24576
24577 Many scientists were still unconvinced for various reasons ranging from disagreement with Einstein's interpretation of the experiments, to not being able to tolerate the absence of an absolute frame of reference. In Einstein's view, many of them simply could not understand the mathematics involved. Einstein's public fame which followed the 1919 article created resentment among these scientists some of which lasted well into the 1930s.
24578
24579 In the early 1920s Einstein was the lead figure in a famous weekly physics colloquium at the University of Berlin. On [[March 30]], [[1921]], Einstein went to [[New York City|New York]] to give a lecture on his new Theory of Relativity, the same year he was awarded the Nobel Prize. Though he is now most famous for his work on relativity, it was for his earlier work on the [[photoelectric effect]] that he was given the Prize, as his work on general relativity was still disputed. The Nobel committee decided that citing his less-contested theory in the Prize would gain more acceptance from the scientific community.
24580
24581 Sir Edmund Whittaker(1953) stated that [[David Hilbert]] published the theory of general relativity ''nearly simultaneously'' with Einstein.
24582
24583 ====The &quot;Copenhagen&quot; interpretation====
24584 [[Image:Niels Bohr Albert Einstein by Ehrenfest.jpg|right|thumb|200px|Einstein and [[Niels Bohr]] sparred over [[quantum theory]] during the 1920s.]]
24585 Einstein's postulation that light can be described not only as a wave with no kinetic energy, but also as massless discrete packets of energy called quanta with measurable kinetic energy (now known as photons) was a landmark break with the classical physics. In 1909 Einstein presented his first paper on the quantification of light to a gathering of physicists and told them that they must find some way to understand waves and particles together.
24586
24587 In the mid-1920s, as the original quantum theory was replaced with a new theory of [[quantum mechanics]], Einstein balked at the [[Copenhagen interpretation]] of the new equations because it settled for a probabilistic, non-visualizable account of physical behaviour. Einstein agreed that the theory was the best available, but he looked for a more &quot;complete&quot; explanation, i.e., more [[scientific determinism|deterministic]]. He could not abandon the belief that physics described the laws that govern &quot;real things&quot;, the belief which had led to his successes with atoms, photons, and gravity.
24588
24589 In a 1926 letter to [[Max Born]], Einstein made a remark that is now famous:
24590 : ''Quantum mechanics is certainly imposing. But an inner voice tells me it is not yet the real thing. The theory says a lot, but does not really bring us any closer to the secret of the Old One. I, at any rate, am convinced that He does not throw dice.''
24591
24592 To this, [[Niels Bohr|Bohr]], who sparred with Einstein on quantum theory, retorted, &quot;Stop telling God what He must do!&quot; The [[Bohr-Einstein debates]] on foundational aspects of quantum mechanics happened during the [[Solvay Conference|Solvay conferences]].
24593
24594 Einstein was not rejecting probabilistic theories ''per se''. Einstein himself was a great statistician, using statistical analysis in his works on Brownian motion and photoelectricity and in papers published before the miraculous year 1905; Einstein had even discovered [[Gibbs ensemble]]s. He believed, however, that at the core reality behaved [[scientific determinism|deterministically]]. Many physicists argue that experimental evidence contradicting this belief was found much later with the discovery of [[Bell's Theorem]] and [[Bell's inequality]]. Nonetheless, there is still space for lively discussions about the [[interpretation of quantum mechanics]].
24595
24596 ====Bose-Einstein statistics====
24597 In 1924, Einstein received a short paper from a young [[India]]n physicist named [[Satyendra Nath Bose]] describing light as a gas of photons and asking for Einstein's assistance in publication. Einstein realized that the same statistics could be applied to atoms, and published an article in [[German language|German]] (then the [[lingua franca]] of physics) which described Bose's model and explained its implications. [[Bose-Einstein statistics]] now describe any assembly of these [[identical particles|indistinguishable particles]] known as [[boson]]s. The [[Bose-Einstein condensate]] phenomenon was predicted in the 1920s by Bose and Einstein, based on Bose's work on the statistical mechanics of photons, which was then formalized and generalized by Einstein. The first such condensate was produced by [[Eric Cornell]] and [[Carl Wieman]] in 1995 at the [[University of Colorado at Boulder]]. Einstein's original sketches on this theory were recovered in August 2005 in the library of [[Leiden University]].{{rf|10|www.lorentz.leidenuniv.nl.378}}
24598
24599 Einstein also assisted [[Erwin SchrÃļdinger]] in the development of the [[quantum Boltzmann distribution]], a mixed classical and quantum mechanical gas model although he realized that this was less significant than the Bose-Einstein model and declined to have his name included on the paper.
24600
24601 ====The Einstein refrigerator====
24602 [[Image:Einstein Refrigerator.png|thumb|right|222px|Einstein and [[LeÃŗ SzilÃĄrd|SzilÃĄrd]]'s refrigerator patent diagram.]]
24603
24604 Einstein and former student [[LeÃŗ SzilÃĄrd]] co-invented a unique type of [[refrigeration|refrigerator]] (usually called the [[Einstein refrigerator]]) in 1926.{{rf|11|gtalumni.org.379}} On [[November 11]], [[1930]], {{US patent|1,781,541}} was awarded to Albert Einstein and LeÃŗ SzilÃĄrd. The patent covered a thermodynamic refrigeration cycle providing cooling with no moving parts, at a constant [[pressure]], with only [[heat]] as an input. The refrigeration cycle used [[ammonia]], [[butane]], and [[water (molecule)|water]].
24605
24606 ====World War II====
24607 When [[Adolf Hitler]] came to power in January 1933, Einstein was a guest professor at [[Princeton University]], a position which he took in December 1932, after a invitation from the American educator, [[Abraham Flexner]]. In 1933, the [[Nazi]]s passed &quot;The Law of the Restoration of the Civil Service&quot; which forced all Jewish university professors out of their jobs, and throughout the 1930s a campaign to label Einstein's work as &quot;Jewish physics&quot;&amp;mdash;in contrast with &quot;German&quot; or &quot;Aryan physics&quot;&amp;mdash;was led by Nobel laureates [[Philipp Lenard]] and [[Johannes Stark]]. With the assistance of the [[SS]], the ''[[Deutsche Physik]]'' supporters worked to publish pamplets and textbooks denigrating Einstein's theories and attempted to politically [[blacklist]] German physicists who taught them, notably [[Werner Heisenberg]]. Einstein renounced his German citizenship and stayed in the [[United States]], where he was given permanent residency. He accepted a position at the newly founded [[Institute for Advanced Study]] in [[Princeton Township, New Jersey|Princeton Township]], [[New Jersey]]. He became an American citizen in 1940, though he still retained Swiss citizenship.
24608
24609 In 1939, under the encouragement of SzilÃĄrd, Einstein [[Einstein-SzilÃĄrd letter|sent a letter]] to President [[Franklin Delano Roosevelt]] urging the study of [[nuclear fission]] for military purposes, under fears that the Nazi government would be first to develop [[atomic weapon]]s.
24610 Roosevelt started a small investigation into the matter which eventually became the massive [[Manhattan Project]]. Einstein himself did not work on the bomb project, however.
24611
24612 The [[International Rescue Committee]] was founded 1933 at the request of Albert Einstein to assist opponents of Adolf Hitler.
24613
24614 For more information, see the section below on Einstein's [[#Political views|political views]].
24615
24616 ====Institute for Advanced Study====
24617 His work at the Institute for Advanced Study focused on the unification of the [[physical law|laws of physics]], which he referred to as the ''Unified Field Theory''. He attempted to construct a model which would describe all of the [[fundamental forces]] as different manifestations of a single force. This took the form of an attempt to unify the gravitational and electrodynamic forces. His attempt was hindered because the [[strong interaction|strong]] and [[weak nuclear force]]s were not understood independently until around 1970, fifteen years after Einstein's death. Einstein's goal of unifying the laws of physics under a single model survives in the current drive for [[Grand unification theory|unification of the forces]], embodied most notably by [[string theory]].
24618
24619 ====Generalized theory====
24620 Einstein began to form a [[generalized theory of gravitation]] with the Universal Law of Gravitation and the electromagnetic force in his first attempt to demonstrate the unification and simplification of the fundamental forces. In 1950 he described his work in a ''[[Scientific American]]'' article. Einstein was guided by a belief in a single statistical measure of variance for the entire set of physical laws.
24621
24622 Einstein's Generalized Theory of Gravitation is a universal mathematical approach to field theory. He investigated reducing the different phenomena by the process of logic to something already known or evident. Einstein tried to unify gravity and electromagnetism in a way that also led to a new subtle understanding of quantum mechanics.
24623
24624 Einstein postulated a four-dimensional space-time continuum expressed in axioms represented by five component vectors. Particles appear in his research as a limited region in space in which the field strength or the energy density are particularly high. Einstein treated subatomic particles as objects embedded in the unified field, influencing it and existing as an essential constituent of the unified field but not of it. Einstein also investigated a natural generalization of symmetrical tensor fields, treating the combination of two parts of the field as being a natural procedure of the total field and not the symmetrical and antisymmetrical parts separately. He researched a way to delineate the equations and systems to be derived from a [[variational principle]].
24625
24626 Einstein became increasingly isolated in his research on a generalised theory of gravitation and was ultimately unsuccessful in his attempts. In particular, his pursuit of a unification of the fundamental forces ignored work in the physics community at large, most notably the discovery of the [[strong nuclear force]] and [[weak nuclear force]].
24627 [[Image:Einstein house in Princeton.jpg|thumb|left|222px|Einstein's two-story house, white frame with front porch in [[Greek revival]] style, in [[Princeton, New Jersey|Princeton]] (112 Mercer Street).]]
24628
24629 ===Final years===
24630 In 1948, Einstein served on the original committee which resulted in the founding of [[Brandeis University]]. A portrait of Einstein was taken by [[Yousuf Karsh]] on [[February 11]] of that same year. In 1952, the [[Israel]]i government proposed to Einstein that he take the post of second president. He declined the offer, and remains the only United States citizen ever to be offered a position as a foreign head of state. On [[March 30]], [[1953]], Einstein released a revised unified [[Field (physics)|field theory]].
24631
24632 He died at 1:15 AM[http://faculty.washington.edu/chudler/ein.html] in Princeton hospital[http://www.princetonhistory.org/museum_alberteinstein.cfm] in [[Princeton, New Jersey]], on [[April 18]], [[1955]] at the age of 76 from internal bleeding, which was caused by the rupture of an [[aortic aneurism]], leaving the Generalized Theory of Gravitation unsolved. The only person present at his deathbed, a hospital nurse, said that just before his death he mumbled several words in [[German language|German]] that she did not understand. He was [[cremation|cremated]] without ceremony on the same day he died at [[Trenton, New Jersey]], in accordance with his wishes. His ashes were scattered at an undisclosed location.
24633
24634 An autopsy was performed on Einstein by Dr. [[Thomas Stoltz Harvey]], who removed and preserved [[Albert Einstein's brain|his brain]]. Harvey found nothing unusual with his brain, but in 1999 further analysis by a team at [[McMaster University]] revealed that his parietal [[Operculum (brain)|operculum]] region was missing and, to compensate, his inferior [[parietal lobe]] was 15% wider than normal.{{rf|12|news.bbc.co.uk.381}} The inferior parietal region is responsible for mathematical thought, visuospatial cognition, and imagery of movement. Einstein's brain also contained 73% more [[glial cells]] than the average brain.
24635
24636 ==Personality==
24637 Albert Einstein was much respected for his kind and friendly demeanor rooted in his [[pacifism]]. He was modest about his abilities, and had distinctive attitudes and fashions—for example, he minimized his wardrobe so that he would not need to waste time in deciding on what to wear. He was captivatingly simple, wearing mothy sweaters and sweatshirts and sans socks in his old age. He occasionally had a playful sense of humor, and enjoyed [[sailing]] and playing the [[violin]]. He was also the stereotypical bumbling &quot;[[absent-minded professor]]&quot;; he was often forgetful of everyday items, such as keys, and would focus so intently on solving physics problems that he would often become oblivious to his surroundings. In his later years, his appearance inadvertently created (or reflected) another stereotype of scientist in the process: the researcher with unruly white hair.
24638
24639 ===Religious views===
24640 Although he was raised [[Jewish]], he was not a believer in the religious aspect of [[Judaism]], though he still considered himself a Jew. He simply admired the beauty of nature and the universe. From a letter written in [[English language|English]], dated [[March 24]], [[1954]], Einstein wrote, ''&quot;It was, of course, a lie what you read about my religious convictions, a lie which is being systematically repeated. I do not believe in a personal God and I have never denied this but have expressed it clearly. If something is in me which can be called religious then it is the unbounded admiration for the structure of the world so far as our science can reveal it.&quot;''
24641
24642 He also said (in an essay reprinted in ''Living Philosophies'', vol. 13, 1931): ''&quot;A knowledge of the existence of something we cannot penetrate, our perceptions of the profoundest reason and the most radiant beauty, which only in their most primitive forms are accessible to our minds—it is this knowledge and this emotion that constitute true religiosity; in this sense, and this [sense] alone, I am a deeply religious man.&quot;''
24643
24644 The following is a response made to [[Rabbi Herbert Goldstein]] of the [[International Synagogue]] in [[New York City|New York]] which read, ''&quot;I believe in [[Baruch Spinoza|Spinoza's God]] who reveals himself in the orderly harmony of what exists, not in a God who concerns himself with the fates and actions of human beings.&quot;'' After being pressed on his religious views by [[Martin Buber]], Einstein exclaimed, ''&quot;What we [physicists] strive for is just to draw His lines after Him.&quot;'' He also quoted once ''&quot;When I read the [[Bhagavad Gita]], I ask myself how God created the universe. Everything else seems superfluous.&quot;'' Summarizing his religious beliefs, he once said: ''&quot;My [[religion]] consists of a humble admiration of the illimitable superior spirit who reveals himself in the slight details we are able to perceive with our frail and feeble mind.&quot;''
24645
24646 Einstein was an Honorary Associate of the [[Rationalist Press Association]] beginning in 1934, and was an admirer of [[Ethical Culture]].{{rf|13|ethicalculture.1}}
24647
24648 ===Political views===
24649 [[Image:Mikhoels and Einstein 1943.jpg|thumb|right|222px|Einstein and [[Solomon Mikhoels]], the chairman of the [[Soviet Union|Soviet]] [[Jewish Anti-Fascist Committee]], in 1943.]]
24650
24651 Einstein considered himself a [[pacifism|pacifist]]{{rf|14|www.amnh.org.382}} and [[Humanitarianism|humanitarian]],{{rf|15|www.amnh.org.383}} and in later years, a committed democratic [[socialism|socialist]]. He once said, ''&quot;I believe [[Mahatma Gandhi|Gandhi's]] views were the most enlightened of all the political men of our time. We should strive to do things in his spirit: not to use violence for fighting for our cause, but by non-participation of anything you believe is evil.&quot;'' Einstein's views on other issues, including socialism, [[McCarthyism]] and [[racism]], were controversial. In a 1949 article entitled &quot;Why Socialism?&quot;,{{rf|16|socialism}} Albert Einstein described the &quot;predatory phase of human development&quot;, exemplified by a chaotic [[capitalism|capitalist]] society, as a source of evil to be overcome. He disapproved of the [[totalitarian]] regimes in the [[Soviet Union]] and elsewhere, and argued in favor of a [[democratic socialism|democratic socialist]] system which would combine a [[planned economy]] with a deep respect for [[human rights]]. Einstein was a co-founder of the liberal [[German Democratic Party]] and a member of the [[AFL-CIO]]-affiliated union the [[American Federation of Teachers]].
24652
24653 Einstein was very much involved in the [[American Civil Rights Movement|Civil Rights movement]]. He was a close friend of [[Paul Robeson]] for over 20 years. Einstein was a member of several civil rights groups (including the Princeton chapter of the [[NAACP]]) many of which were headed by Paul Robeson. He served as co-chair with [[Paul Robeson]] of the ''American Crusade to End Lynching''. When [[W.E.B. DuBois]] was frivolously charged with being a communist spy during the McCarthy era while he was in his 80s, Einstein volunteered as a character witness in the case. The case was dismissed shortly after it was announced that he was to appear in that capacity. Einstein was quoted as saying that &quot;racism is America's greatest disease&quot;.
24654
24655 The U.S. [[Federal Bureau of Investigation|FBI]] kept a 1,427 page file on his activities and recommended that he be barred from immigrating to the United States under the [[Alien Exclusion Act]], alleging that Einstein ''&quot;believes in, advises, advocates, or teaches a doctrine which, in a legal sense, as held by the courts in other cases, 'would allow [[anarchy (word)|anarchy]] to stalk in unmolested' and result in 'government in name only'&quot;'', among other charges. They also alleged that Einstein ''&quot;was a member, sponsor, or affiliated with thirty-four [[communism|communist]] fronts between 1937-1954&quot;'' and ''&quot;also served as honorary chairman for three communist organizations&quot;''.{{rf|17|foia.fbi.gov.384}} It should be noted that many of the documents in the file were submitted to the FBI, mainly by civilian political groups, and not actually written by FBI officials.
24656
24657 [[Image:EinsteinSzilard.jpg|thumb|left|222px|In 1939, Einstein signed a letter, written by [[LeÃŗ SzilÃĄrd]], to [[Franklin D. Roosevelt|President Roosevelt]] arguing that the United States should start funding research into the development of [[nuclear weapon]]s.]]
24658
24659 Einstein opposed tyrannical forms of government, and for this reason (and his Jewish background), opposed the Nazi regime and fled Germany shortly after it came to power. At the same time, Einstein's [[libertarian socialism|anarchist]] nephew [[Carl Einstein]], who shared many of his views, was fighting the fascists in the [[Spanish Civil War]]. Einstein initially favored construction of the [[atomic bomb]], in order to ensure that [[Adolf Hitler|Hitler]] did not do so first, and even sent a letter{{rf|18|hypertextbook.com.385}} to President [[Franklin D. Roosevelt|Roosevelt]] (dated [[August 2]], [[1939]], before [[World War II]] broke out, and probably written by [[LeÃŗ SzilÃĄrd]]) encouraging him to initiate a program to create a nuclear weapon. Roosevelt responded to this by setting up a committee for the investigation of using [[uranium]] as a weapon, which in a few years was superseded by the [[Manhattan Project]].
24660
24661 After the war, though, Einstein lobbied for [[nuclear disarmament]] and a [[world government]]: &quot;I do not know how the Third World War will be fought, but I can tell you what they will use in the Fourth—rocks!&quot;{{rf|19|calaprice173}}
24662
24663 Einstein was a supporter of [[Zionism]]. He supported Jewish settlement of the ancient seat of Judaism and was active in the establishment of the [[Hebrew University]] in [[Jerusalem]], which published (1930) a volume titled ''About Zionism: Speeches and Lectures by Professor Albert Einstein'', and to which Einstein bequeathed his papers. However, he opposed nationalism and expressed skepticism about whether a Jewish nation-state was the best solution. He may have imagined Jews and Arabs living peacefully in the same land. In later life, in 1952, he was offered the post of second president of the newly created state of [[Israel]], but declined the offer, claiming that he lacked the necessary people skills. Einstein was disturbed by the violence taking place in the Palestine after the Second World War and expressed that he was disappointed with the Jewish Ultra-Nationalist Organization ([[Irgun]] and Stern Gang). Nonetheless, Einstein remained deeply committed to the welfare of Israel and the Jewish people for the rest of his life.
24664
24665 Einstein, along with [[Albert Schweitzer]] and [[Bertrand Russell]], fought against nuclear tests and bombs. As his last public act, and just days before his death, he signed the [[Russell-Einstein Manifesto]], which led to the [[Pugwash Conferences on Science and World Affairs]]. His letter to Russell read:
24666
24667 :Dear Bertrand Russell,
24668
24669 ::Thank you for your letter of April&amp;nbsp;5. I am gladly willing to sign your excellent statement. I also agree with your choice of the prospective signers.
24670
24671 :With kind regards, A. Einstein
24672
24673 ==Nationality: German, Swiss or American?==
24674 Einstein was born a [[Germany|German]] citizen. At the age of seventeen, on [[January 28]], [[1896]], he was released from the German citizenship by his own request and with the approval of his father. He remained [[stateless person|stateless]] for five years. On [[February 21]], [[1901]] he gained [[Switzerland|Swiss]] citizenship, which he never revoked. Einstein regained German citizenship in [[1914#January-April|April 1914]] when he entered German civil service, but due to the political situation and the persecution of Jewish people in [[Nazi Germany]], he left civil service in [[1933#March|March 1933]] and thus also lost the German citizenship. On [[1940#September-October|October 1, 1940]], Einstein became an [[United States citizen|American citizen]]. He remained both an American and a Swiss citizen until his death on [[1955#April|April 18, 1955]].
24675
24676 ==Popularity and cultural impact==
24677 Einstein's popularity has led to widespread use of Einstein in [[advertising]] and [[merchandising]], including the registration of &quot;Albert Einstein&quot; as a [[trademark]].
24678
24679 [[Image:Einstongue.jpg|thumb|right|222px|The photo (detail from the original) of this humorous expression was taken during Einstein's [[birthday]] on [[March 14]], [[1951]], [[United Press International|UPI]].]]
24680
24681 ===Entertainment===
24682 Albert Einstein has become the subject of a number of novels, [[film]]s and plays, including [[Jean-Claude Carrier]]'s 2005 French novel, Einstein S'il Vous Plait (Please Mr Einstein), [[Nicolas Roeg]]'s film ''[[Insignificance (film)|Insignificance]]'', [[Fred Schepisi]]'s film ''[[I.Q. (film)|I.Q.]]'', [[Alan Lightman]]'s novel ''Einstein's Dreams'', and [[Steve Martin]]'s comedic play &quot;[[Picasso at the Lapin Agile]]&quot;. He was the subject of [[Philip Glass]]'s groundbreaking 1976 [[opera]] ''[[Einstein on the Beach]]''. His humorous side is also the subject of [[Ed Metzger]]'s one-man play ''[[Albert Einstein: The Practical Bohemian]]''.
24683
24684 He is often used as a model for depictions of [[mad scientists|eccentric scientist]]s in works of fiction; his own character and distinctive hairstyle suggest eccentricity, or even lunacy and are widely copied or exaggerated. [[Time (magazine)|TIME]] magazine writer Frederic Golden referred to Einstein as &quot;a cartoonist's dream come true.&quot;
24685
24686 On Einstein's 72nd birthday in 1951, the [[UPI]] photographer Arthur Sasse was trying to coax him into smiling for the camera. Having done this for the photographer many times that day, Einstein stuck out his tongue instead.{{rf|20|www.mentalfloss.com.386}} The image has become an icon in pop culture for its contrast of the genius scientist displaying a moment of levity. [[Yahoo Serious]], an Australian film maker, used the photo as an inspiration for the intentionally anachronistic movie ''[[Young Einstein]]''.
24687
24688 ===Licensing===
24689 Einstein bequeathed his estate, as well as the use of his image (see [[personality rights]]), to the [[Hebrew University of Jerusalem]].{{rf|21|aip.org.387}} Einstein actively supported the university during his life and this support continues with the [[royalties]] received from licensing activities. [[The Roger Richman Agency]] [[licence|licences]] the commercial use of the name &quot;Albert Einstein&quot; and associated imagery and likenesses of Einstein, as [[agent (law)|agent]] for the [[Hebrew University of Jerusalem]]. As head licensee the agency can control commercial usage of Einstein's name which does not comply with certain standards (e.g., when Einstein's name is used as a [[trademark]], the â„ĸ symbol must be used){{rf|22|refbot.388}}. As of May, 2005, the Roger Richman Agency was acquired by [[Corbis]].
24690
24691 ===Honors===
24692 [[Image:Einstein TIME Person of the Century.jpg|thumb|right|159px|Einstein on the cover of ''TIME'' as Person of the Century.]]
24693
24694 Einstein has received a number of posthumous honors. For example:
24695 *In 1992, he was ranked #10 on [[Michael H. Hart]]'s [[The 100|list of the most influential figures in history]].
24696 *In 1999, he was named ''Person of the Century'' by [[Time (magazine)|TIME]] magazine.
24697 *Also in 1999, [[Gallup]] recorded him as the fourth most [[Gallup's List of Widely Admired People|admired]] person of the 20th century.
24698 *The year 2005 was designated as the &quot;[[World Year of Physics]]&quot; by [[UNESCO]] for its coinciding with the centennial of the &quot;[[Annus Mirabilis Papers|Annus Mirabilis]]&quot; papers, celebrated at the [[Einstein Symposium]].
24699 Among Einstein's many namesakes are:
24700 *a unit used in [[photochemistry]], the ''[[einstein (unit)|einstein]]''.
24701 *the [[chemical element]] 99, [[einsteinium]].
24702 *the [[asteroid]] [[2001 Einstein]].
24703 *the [[Albert Einstein Peace Prize]].
24704 *the Albert Einstein College of Medicine of Yeshiva University{{rf|23|refbot.389}} was named after Einstein upon his death in 1955.
24705 *the Albert Einstein Medical Center{{rf|24|www.einstein.edu.390}} in [[Philadelphia]], PA.
24706
24707 ==See also==
24708 * [[Special relativity]]
24709 * [[General relativity]]
24710 * [[History of special relativity]]
24711 * [[History of general relativity]]
24712 * [[Henri PoincarÊ]]
24713 * [[David Hilbert]]
24714 * [[Priority disputes about Einstein and the relativity theories]]
24715
24716 ==Works by Albert Einstein==
24717 [[Image:A clay portrait of Einstein by the sculptor Moshe Ziffer.jpg|thumb|right|155px|Clay portrait of Einstein by the sculptor [[Moshe Ziffer]].]]
24718 *''[http://www.worldscibooks.com/phy_etextbook/4454/4454_chap1.pdf The Investigation of the State of Aether in Magnetic Fields]''. (PDF)
24719 *''Ideas &amp; Opinions'' ISBN 0517003937
24720 *''The World As I See It'' ISBN 080650711X (translation of &quot;Mein Weltbild&quot;)
24721 *''[[wikisource:Relativity: The Special and General Theory|Relativity: The Special and General Theory]].'' ISBN 0517884410 ([http://www.gutenberg.net/browse/BIBREC/BR5001.HTM Project Gutenberg E-text])
24722 * &quot;[http://www.fourmilab.ch/etexts/einstein/specrel/www/ On the Electrodynamics of Moving Bodies]&quot; ''[[Annalen der Physik]].'' [[June 30]], [[1905]]
24723 * &quot;[http://www.fourmilab.ch/etexts/einstein/E_mc2/www/ Does the Inertia of a Body Depend Upon Its Energy Content?]&quot; ''[[Annalen der Physik]].'' [[September 27]], 1905.
24724 * &quot;[http://alberteinstein.info/gallery/pdf/CP6Doc3_English_pp16-18.pdf Inaugural Lecture to the Prussian Academy of Sciences].&quot; 1914. [PDF]
24725 * &quot;[http://hem.bredband.net/b153434/Works/Einstein.htm The Foundation of the General Theory of Relativity ].&quot; ''[[Annalen der Physik]],'' 49. 1916.
24726 * &quot;[[wikisource:Nobel_Lecture_Physics_1921|Fundamental ideas and problems of the theory of relativity]].&quot; ''1921 Nobel Lecture in Physics.'' Nordic Assembly of Naturalists at Gothenburg, [[11 July]] [[1923]].
24727 * Einstein A., Lorenz H. A., Weyl H. and Minkowski H. ''The Principle of Relativity.'' Trans. W. Perrett and [[George Barker Jeffery|G. B. Jeffery]]. New York: Dover Publications, 1923.
24728 * &quot;[http://www.monthlyreview.org/598einst.htm Why Socialism?]&quot; ''[[Monthly Review]].'' May 1949 ([http://www.amnh.org/exhibitions/einstein/global/popups/socialism.php original manuscript]).
24729 * ''[http://www.alberteinstein.info/db/ViewImage.do?DocumentID=34170&amp;Page=1 On the Generalized Theory of Gravitation]''. April, 1950.
24730
24731 ==References==
24732 * {{cite book | author = [[Edmund Blair Bolles | Bolles, Edmund Blair]] | year = 2004 | month = April | title = Einstein Defiant: Genius versus Genius in the Quantum Revolution | publisher = National Academy Press | id = ISBN 0309089980 }}
24733 * {{cite web | author = Butcher, Sandra Ionno | date = March 2005 | url = http://www.pugwash.org/publication/phs/phslist.htm | title = The Origins of the Russell-Einstein Manifesto }}
24734 * {{cite book | first = Alice | last = Calaprice | title = The new quotable Einstein | pages = p. 173 | publisher = Princeton University Press | year = 2005 | id = ISBN 0-691-12075-7 }}
24735 * {{cite book | author = [[Ronald W. Clark | Clark, Ronald W.]] | year = 1971 | title = Einstein: The Life and Times | publisher = Avon | id = ISBN 0-380-44123-3 }}
24736 * {{cite journal | author = Galison, Peter | authorlink = Peter Galison | title = Einstein's Clocks: The Question of Time | journal = Critical Inquiry | year = Winter 2000 | volume = 26 | issue = 2 | pages = 355&amp;ndash;389 }}
24737 [[IMAGE:Einstein Memorial.jpg | thumb | right | 215px | The [[Albert Einstein Memorial, Washington DC]] at the [[National Academy of Sciences]] in [[Washington, DC]].]]
24738 * {{cite book | author = Highfield, Roger; Carter, Paul | title = The Private Lives of Albert Einstein | publisher = Faber and Faber, London, Boston | year = 1993 | id = ISBN 0-571-17170-2 (US ed. ISBN 0312110472) }}
24739 * {{cite journal | author = Macrossan, Michael | title = A note on relativity before Einstein | journal = British Journal for the Philosophy of Science | year = 1986 | volume = 37 | pages = 232-234 }} [http://eprint.uq.edu.au/archive/00002307 Abstract and link to full text].
24740 * {{cite web | author = Martínez, Alberto A. | year = April 2004 | url = http://physicsweb.org/articles/world/17/4/2 | title = Arguing about Einstein's wife | publisher = Physics World | accessdate = 2005-11-23 }}
24741 * {{cite book | author = [[Abraham Pais | Pais, Abraham]] | year = 1982 | title = Subtle is the Lord. The Science and the Life of Albert Einstein | publisher = Oxford University Press | location = Oxford | id = ISBN 0-19-520438-7 }} This is the definitive scientific biography.
24742 * {{cite book | author = [[Abraham Pais | Pais, Abraham]] | year = 1994 | title = Einstein Lived Here | publisher = Oxford University Press | location = Oxford | id = ISBN 0198539940 }} This book discusses non-science aspects of Einstein; marriages, affairs, illegitimate daughter, public image.
24743 * {{cite book | author = [[Clifford A. Pickover | Pickover, Clifford A.]] | date = [[2005-09-09]] | title = Sex, Drugs, Einstein, and Elves: Sushi, Psychedelics, Parallel Universes, and the Quest for Transcendence | publisher = Smart Publications | id = ISBN 1890572179 }} Discusses the final disposition of Einstein's brain, hair, and eyes as well as the importance of Einstein and his work in the shaping of science and culture.
24744 * {{cite book | author = [[John Stachel | Stachel, John]] | date = 1998-03-30 | title = Einstein's Miraculous Year: Five Papers That Changed the Face of Physics | publisher = Princeton University Press | id = ISBN 0691059381 }}
24745 * {{cite book | author = [[Peter D. Smith | Smith, Peter D.]] | year = 2000 | title = Einstein (Life &amp; Times Series) | publisher = Haus Publishing | id = ISBN 1904341152 }}
24746 * {{cite book | authorlink = Kip Thorne | last = Thorne | first = Kip | year = 1995 | title = [[Black Holes and Time Warps | Black Holes and Time Warps: Einstein's Outrageous Legacy]] | publisher = W. W. Norton &amp; Company | edition = Reprint edition | date = [[January 1]] [[1995]] | id = ISBN 0393312763 }}
24747 * {{cite web | author = Levenson, Thomas | year = June 2005 | url = http://www.pbs.org/wgbh/nova/einstein/genius/ | title = Genius Among Geniuses | accessdate = 2006-02-25 }}
24748 * {{cite web | author = Golden, Frederic | year = 2000-01-03 | url = http://www.time.com/time/time100/poc/magazine/albert_einstein5a.html | title = Person of the Century: Albert Einstein | accessdate = 2006-02-25 }}
24749 * {{cite web | author = American Institute of Physics | year = 1996 | url = http://www.aip.org/history/einstein/index.html | title = Einstein-Image and Impact | accessdate = 2006-02-25 }}
24750 * {{cite web | author = Bodanis, David | year = June 2005 | url = http://www.pbs.org/wgbh/nova/einstein/bodanis.html | title = Einstein the Nobody | accessdate = 2006-02-25 }}
24751
24752 ==Notes==
24753 {{ent|1|brain}} [http://www.bioquant.com/gallery/einstein.html The Exceptional Brain of Albert Einstein].
24754 {{ent|2|autism}} {{news reference|author=Muir, Hazel|title=Einstein and Newton showed signs of autism|org=New Scientist|url=http://www.newscientist.com/article.ns?id=dn3676|date=2003-04-30|urldate=2006-01-04}} See also [[People speculated to have been autistic]].
24755 {{ent|3|Highfield1}} Highfield.
24756 {{ent|4|Highfield2}} Ibid.
24757 {{ent|5|www.ipi.ch.376}} {{cite web | title=The institute / IPI / Federal Institute of Intellectual Property | url=http://www.ipi.ch/E/institut/i1.shtm | accessdate=November 21 | accessyear=2005 }}
24758 {{ent|6|Galison368}} Galison p. 368.
24759 {{ent|7|physicsweb.org.377}} {{cite web | title=Arguing about Einstein's wife (April 2004) - Physics World - PhysicsWeb (See above) | url=http://physicsweb.org/articles/world/17/4/2 | accessdate=November 21 | accessyear=2005 }}
24760 {{ent|8|Galison370}} Galison p. 370.
24761 {{ent|9|Thorne}} [[David Hilbert]] actually published the field equation in an article dated five days before Einstein's lecture. But according to Thorne (pp. 117&amp;ndash;118), Hilbert had discovered the correct derivation after &quot;mulling over things he had learned&quot; on a recent visit by Einstein to Gottingen. However Thorne goes on to say &quot;Quite naturally, and in accord with Hilbert's view of things, the resulting law of warpage was quickly given the name the ''Einstein field equation'' rather than being named after Hilbert. Hilbert had carried out the last few mathematical steps to its discovery independently and almost simultaneously with Einstein, but Einstein was responsible for essentially everything that preceded those steps: the recognition that tidal gravity must be the same thing as a warpage of spacetime, the vision that the law of warpage must obey the reativity principle, and the first 90 percent of that law, the Einstein field equation. In fact without Einstein the general relativistic laws of gravity might not have been discovered until several decades later.&quot; See [[Priority disputes about Einstein and the relativity theories]] for more details.
24762 {{ent|9|www.lorentz.leidenuniv.nl.378}} {{cite web | title=Einstein archive at the Instituut-Lorentz | url=http://www.lorentz.leidenuniv.nl/history/Einstein_archive/ | accessdate=November 21 | accessyear=2005 }}
24763 {{ent|11|gtalumni.org.379}} {{cite web | title=Einstein's Refrigerator | url=http://gtalumni.org/StayInformed/magazine/sum98/einsrefr.html | accessdate=November 21 | accessyear=2005 }}
24764 {{ent|12|news.bbc.co.uk.381}} {{cite web | title=BBC News : Sci/Tech : Why size mattered for Einstein | url=http://news.bbc.co.uk/1/hi/sci/tech/371698.stm | accessdate=November 21 | accessyear=2005 }}
24765 {{ent|13|ethicalculture.1}} {{cite web | title=The Humanist Way: An Introduction to Ethical Humanist Religion | url=http://www.aeu.org/ericson2.html | accessdate=February 25 | accessyear=2006 }}
24766 {{ent|14|www.amnh.org.382}} {{cite web | title=Einstein : American Museum of Natural History | url=http://www.amnh.org/exhibitions/einstein/peace/index.php | accessdate=November 21 | accessyear=2005 }}
24767 {{ent|15|www.amnh.org.383}} Ibid.
24768 {{ent|16|socialism}} {{news reference|title=Why Socialism?|firstname=Albert|lastname=Einstein|org=Monthly Review|date=May 1949|url=http://www.monthlyreview.org/598einst.htm|urldate=2006-01-16}}
24769 {{ent|17|foia.fbi.gov.384}} {{cite web | title=Federal Bureau of Investigation - Freedom of Information Privacy Act | url=http://foia.fbi.gov/foiaindex/einstein.htm | accessdate=November 21 | accessyear=2005 }}
24770 {{ent|18|hypertextbook.com.385}} {{cite web | title=Einstein's Letters to Roosevelt | url=http://hypertextbook.com/eworld/einstein.shtml | accessdate=November 21 | accessyear=2005 }}
24771 {{ent|19|calaprice173}} Calaprice p. 173.
24772 {{ent|20|www.mentalfloss.com.386}} {{cite web | title=mental_floss library | url=http://www.mentalfloss.com/archives/archive2003-03-14.htm | accessdate=November 21 | accessyear=2005 }}
24773 {{ent|21|aip.org.387}} {{cite web | title=http://aip.org/history/esva/einuse.htm | url=http://aip.org/history/esva/einuse.htm | accessdate=November 21 | accessyear=2005 }}
24774 {{ent|22|refbot.388}} {{cite web | title=ALBRT EINSTEIN BRAND LOGO | url=http://www.albert-einstein.net/styleguide-readonly/brand.html | accessdate=November 21 | accessyear=2005 }}
24775 {{ent|23|refbot.389}} {{cite web | title= Albert Einstein College of Medicine of Yeshiva University | url=http://www.aecom.yu.edu | accessdate=November 21 | accessyear=2005 }}
24776 {{ent|24|www.einstein.edu.390}} {{cite web | title= Albert Einstein Medical Center | url=http://www.einstein.edu/facilities/aemc/ | accessdate=November 21 | accessyear=2005 }}
24777
24778 ==External links==
24779 {{wikiquote|Albert Einstein}}
24780 {{commons|Albert_Einstein}}
24781 {{sisterlinks|Albert Einstein}}
24782 * {{gutenberg author| id=Albert+Einstein | name=Albert Einstein}}
24783 * [[Nobel Prize in Physics]]: [http://www.nobel.se/physics/laureates/1921/press.html The Nobel Prize in Physics 1921]—[http://www.nobel.se/physics/laureates/1921/index.html Albert Einstein]
24784 * [[Annalen der Physik]]: [http://gallica.bnf.fr/Catalogue/noticesInd/FRBNF34462944.htm#listeUC Works by Einstein] digitalized at The University of Applied Sciences in Jena (Fachhochschule [[Jena]])
24785 * S. Morgan Friedman, &quot;[http://www.westegg.com/einstein/ Albert Einstein Online]&quot;—Comprehensive listing of online resources about Einstein.
24786 *[[TIME magazine]] 100: [http://www.time.com/time/time100/scientist/profile/einstein.html Albert Einstein]
24787 *[http://www.timelessquotes.com/author/Albert_Einstein.html Albert Einstein Quotes] - Hundreds of famous Albert Einstein quotes
24788 * ''Audio excerpts of famous speeches: '' [http://www.time.com/time/time100/poc/audio/einstein1.ram E=mc&amp;sup2; and relativity], [http://www.time.com/time/time100/poc/audio/einstein2.ram Impossibility of atomic energy], [http://www.time.com/time/time100/poc/audio/einstein3.ram arms race] (From Time magazine archives)
24789 * {{MacTutor Biography|id=Einstein}}
24790 * [[Leiden University]]: [http://www.lorentz.leidenuniv.nl/history/Einstein_archive/ Einstein Archive]
24791 * [[PBS]]: [http://www.pbs.org/wgbh/amex/truman/psources/ps_einstein.html Einstein's letter to Roosevelt]
24792 * PBS [http://www.pbs.org/wgbh/nova/einstein/ NOVA—Einstein]
24793 * PBS [http://www.pbs.org/opb/einsteinswife/ Einstein's wife]: Mileva Maric
24794 * [[FBI]]: [http://foia.fbi.gov/foiaindex/einstein.htm FBI files]—investigation regarding affiliation with the Communist Party
24795 * [[Johann Wolfgang Goethe University of Frankfurt am Main|University of Frankfurt]]: [http://www.th.physik.uni-frankfurt.de/~jr/physpiceinfam.html Einstein family pictures]
24796 * [[Salon.com]]: [http://dir.salon.com/people/feature/2000/07/06/einstein/index.html Did Einstein cheat?]
24797 * [http://www.germanheritage.com/biographies/atol/einstein.html Albert Einstein Biography from &quot;German-American corner: History and Heritage&quot;]
24798 * [http://www.alberteinstein.info/ Official Einstein Archives Online]
24799 * [http://www.alberteinstein.info/manuscripts/index.html Einstein's Manuscripts]
24800 * [http://www.albert-einstein.org/ Albert Einstein Archive]
24801 * [http://www.einstein.caltech.edu/ Einstein Papers Project]
24802 * [[Max Planck Institute]]: [http://living-einstein.mpiwg-berlin.mpg.de/living_einstein Living Einstein]
24803 * [[American Institute of Physics]]: [http://www.aip.org/history/einstein/index.html Albert Einstein] includes his life and work, audio files and full site available as a downloadable PDF for classroom use
24804 * [[American Museum of Natural History]]: [http://www.amnh.org/exhibitions/einstein/index.php Albert Einstein]
24805 * [http://www.aeinstein.org The Albert Einstein Institution]
24806 * [[The Economist]]: [http://www.economist.com/displaystory.cfm?story_id=3518580 &quot;100 years of Einstein&quot;]
24807 * Einstein@Home: [http://www.physics2005.org/events/einsteinathome/index.html Distributed computing project searching for gravitational waves predicted by Einstein's theories]
24808 * World Year of Physics 2005 [http://www.physics2005.org A celebration of Einstein's Miracle Year]
24809 * [http://www.einsteinyear.org/ Einstein Year 2005]
24810 * [[The Guardian]]: [http://www.guardian.co.uk/japan/story/0,7369,1521314,00.html Einstein's pacifist dilemma revealed]
24811 * [http://www.muppetlabs.com/~breadbox/txt/al.html Einstein's Theory of Relativity, In Words of Four Letters or Fewer]
24812 * [[Rabindranath Tagore|Rabindranath Tagore's]] [http://www.schoolofwisdom.com/tagore-einstein.html Conversation with Einstein]
24813 * [http://www.zionistarchives.org.il/ZA/SiteE/pShowView.aspx?GM=Y&amp;ID=48&amp;Teur=Protest%20against%20the%20suppression%20of%20Hebrew%20in%20the%20Soviet%20Union%20%201930-1931 Protest against the suppression of Hebrew in the Soviet Union 1930-1931]
24814 * [http://www.einsteinonrace.com/ Einstein on Race]
24815 * [http://www.stn-international.de/archive/stn_brochures/einstein_e.pdf Einstein brochure (PDF), 100 years special theory of relativity 2005]
24816 * [http://supernaturalminds.com/AlbertEinstein.html Albert Einstein Profile At Supernatural Minds]
24817 * [http://www.oxonianreview.org/issues/5-1/5-1foster.html Everyone Loves Einstein, The Oxonian Review of Books]
24818
24819 {{featured article}}
24820
24821 [[Category:1879 births|Einstein, Albert]]
24822 [[Category:1955 deaths|Einstein, Albert]]
24823 [[Category:Natives of Baden-WÃŧrttemberg|Einstein, Albert]]
24824 [[Category:Albert Einstein| ]]
24825 [[Category:Physicists|Einstein, Albert]]
24826 [[Category:Autodidacts|Einstein, Albert]]
24827 [[Category:Contributors to general relativity|Einstein, Albert]]
24828 [[Category:Cosmologists|Einstein, Albert]]
24829 [[Category:Formerly stateless people|Einstein, Albert]]
24830 [[Category:German physicists|Einstein, Albert]]
24831 [[Category:German-Americans|Einstein, Albert]]
24832 [[Category:Humanists|Einstein, Albert]]
24833 [[Category:Humanitarians|Einstein, Albert]]
24834 [[Category:Jewish-American scientists|Einstein, Albert]]
24835 [[Category:Jewish scientists|Einstein, Albert]]
24836 [[Category:Manhattan Project|Einstein, Albert]]
24837 [[Category:Naturalized citizens of the United States|Einstein, Albert]]
24838 [[Category:Nobel Prize in Physics winners|Einstein, Albert]]
24839 [[Category:Patent clerks|Einstein, Albert]]
24840 [[Category:Refugees|Einstein, Albert]]
24841 [[Category:Social justice|Einstein, Albert]]
24842 [[Category:Socialists|Einstein, Albert]]
24843 [[Category:Vegetarians|Einstein, Albert]]
24844 [[Category:World federalists|Einstein, Albert]]
24845 [[Category:Agnostics|Einstein, Albert]]
24846
24847 {{Link FA|cs}}
24848 {{Link FA|de}}
24849 {{Link FA|es}}
24850 {{Link FA|he}}
24851 {{Link FA|lv}}
24852 {{Link FA|pt}}
24853 {{Link FA|vi}}
24854
24855 [[af:Albert Einstein]]
24856 [[als:Albert Einstein]]
24857 [[ar:ØŖŲ„Ø¨ØąØĒ ØŖŲŠŲ†Ø´ØĒاŲŠŲ†]]
24858 [[an:Albert Einstein]]
24859 [[ast:Albert Einstein]]
24860 [[bg:АĐģĐąĐĩŅ€Ņ‚ АКĐŊŅ‰Đ°ĐšĐŊ]]
24861 [[be:АĐģŅŒĐąŅŅ€Ņ‚ АКĐŊŅˆŅ‚Đ°ĐšĐŊ]]
24862 [[bn:āĻ†āĻ˛āĻŦāĻžāĻ°ā§āĻŸ āĻ†āĻ‡āĻ¨āĻ¸ā§āĻŸāĻžāĻ‡āĻ¨]]
24863 [[bs:Albert Einstein]]
24864 [[br:Albert Einstein]]
24865 [[ca:Albert Einstein]]
24866 [[cs:Albert Einstein]]
24867 [[da:Albert Einstein]]
24868 [[de:Albert Einstein]]
24869 [[et:Albert Einstein]]
24870 [[el:ΆÎģÎŧĪ€ÎĩĪĪ„ ΑĪŠÎŊĪƒĪ„ÎŦΚÎŊ]]
24871 [[es:Albert Einstein]]
24872 [[eo:Albert EINSTEIN]]
24873 [[eu:Albert Einstein]]
24874 [[fa:ØĸŲ„Ø¨ØąØĒ ایŲ†Ø´ØĒیŲ†]]
24875 [[fr:Albert Einstein]]
24876 [[ga:Albert Einstein]]
24877 [[gd:Albert Einstein]]
24878 [[gl:Albert Einstein]]
24879 [[ko:ė•Œë˛ ëĨ´íŠ¸ ė•„ė¸ėŠˆíƒ€ė¸]]
24880 [[hr:Albert Einstein]]
24881 [[io:Albert Einstein]]
24882 [[ilo:Albert Einstein]]
24883 [[id:Albert Einstein]]
24884 [[ia:Albert Einstein]]
24885 [[is:Albert Einstein]]
24886 [[it:Albert Einstein]]
24887 [[he:אלברט איינשטיין]]
24888 [[jv:Albert Einstein]]
24889 [[kn:ā˛†ā˛˛āŗā˛Ŧā˛°āŗā˛Ÿāŗ ā˛ā˛¨āŗā˛¸āŗā˛Ÿā˛¨āŗ]]
24890 [[ka:აინშáƒĸაინი, ალბერáƒĸ]]
24891 [[ku:Albert Einstein]]
24892 [[lad:Albert Einstein]]
24893 [[la:Albertus Einstein]]
24894 [[lv:Alberts EinÅĄteins]]
24895 [[lt:Albertas EinÅĄteinas]]
24896 [[lb:Albert Einstein]]
24897 [[hu:Albert Einstein]]
24898 [[mk:АĐģĐąĐĩŅ€Ņ‚ АŅ˜ĐŊŅˆŅ‚Đ°Ņ˜ĐŊ]]
24899 [[mr:ā¤…ā¤˛āĨā¤Ŧā¤°āĨā¤Ÿ ā¤†ā¤ˆā¤¨āĨā¤¸āĨā¤Ÿā¤žā¤ˆā¤¨]]
24900 [[ms:Albert Einstein]]
24901 [[nl:Albert Einstein]]
24902 [[nds:Albert Einstein]]
24903 [[ja:ã‚ĸãƒĢベãƒĢトãƒģã‚ĸイãƒŗã‚ˇãƒĨã‚ŋイãƒŗ]]
24904 [[no:Albert Einstein]]
24905 [[nn:Albert Einstein]]
24906 [[os:Đ­ĐšĐŊŅˆŅ‚ĐĩĐšĐŊ, АĐģŅŒĐąĐĩŅ€Ņ‚]]
24907 [[pl:Albert Einstein]]
24908 [[pt:Albert Einstein]]
24909 [[ro:Albert Einstein]]
24910 [[ru:Đ­ĐšĐŊŅˆŅ‚ĐĩĐšĐŊ, АĐģŅŒĐąĐĩŅ€Ņ‚]]
24911 [[sco:Albert Einstein]]
24912 [[sq:Albert Einstein]]
24913 [[scn:Albert Einstein]]
24914 [[simple:Albert Einstein]]
24915 [[sk:Albert Einstein]]
24916 [[sl:Albert Einstein]]
24917 [[sr:АĐģĐąĐĩŅ€Ņ‚ АŅ˜ĐŊŅˆŅ‚Đ°Ņ˜ĐŊ]]
24918 [[fi:Albert Einstein]]
24919 [[sv:Albert Einstein]]
24920 [[tl:Albert Einstein]]
24921 [[ta:āŽ…āŽ˛ā¯āŽĒāŽ°ā¯āŽŸā¯ āŽāŽŠā¯āŽ¸ā¯āŽŸā¯€āŽŠā¯]]
24922 [[tt:Albert Einstein]]
24923 [[th:ā¸­ā¸ąā¸Ĩāš€ā¸šā¸´ā¸ŖāšŒā¸• āš„ā¸­ā¸™āšŒā¸Ēāš„ā¸•ā¸™āšŒ]]
24924 [[vi:Albert Einstein]]
24925 [[tpi:Albert Einstein]]
24926 [[tr:Albert Einstein]]
24927 [[uk:АĐģŅŒĐąĐĩŅ€Ņ‚ ЕйĐŊŅˆŅ‚ĐĩĐšĐŊ]]
24928 [[zh:é˜ŋ尔äŧ¯į‰šÂˇįˆąå› æ–¯åĻ]]</text>
24929 </revision>
24930 </page>
24931 <page>
24932 <title>Afghanistan</title>
24933 <id>737</id>
24934 <revision>
24935 <id>42144721</id>
24936 <timestamp>2006-03-04T02:52:16Z</timestamp>
24937 <contributor>
24938 <ip>24.195.129.231</ip>
24939 </contributor>
24940 <comment>/* Economy */</comment>
24941 <text xml:space="preserve">{{Infobox_Country|
24942 native_name = د اŲØēاŲ†ØŗØĒاŲ† اØŗŲ„اŲ…ŲŠ دŲˆŲ„ØĒ&lt;br /&gt;دŲˆŲ„ØĒ اØŗŲ„اŲ…ÛŒ اŲØēاŲ†ØŗØĒاŲ†&lt;br&gt; Da Afghanistan Islami Dawlat&lt;br&gt; Dawlate Islamiye Afghanistan &lt;br /&gt;Islamic Republic of Afghanistan |
24943 common_name = Afghanistan |
24944 image_flag = 2001.gif|
24945 image_coat = Afghanistan COA.png |
24946 image_map = LocationAfghanistan.png |
24947 national_motto = None |
24948 national_anthem = [[Soroud-e-Melli]] |
24949 official_languages = [[Pashto]], [[Persian language|Persian]] ([[Dari (Afghanistan)|Dari]]) |
24950 capital = [[Kabul]] |
24951 latd=34|latm=30|latNS=N|longd=69|longm=10|longEW=E|
24952 largest_city = [[Kabul]] |
24953 government_type = [[Islamic Republic]] |
24954 leader_titles = [[President of Afghanistan|President]] |
24955 leader_names = [[Hamid Karzai]] |
24956 area_rank = 40th |
24957 area_magnitude = 1_E11 |
24958 area = 647,500 |
24959 areami² = 250,001 |&lt;!-- Do not remove per [[WP:MOSNUM]] --&gt;
24960 percent_water = 0 |
24961 population_estimate = 29,928,987 |
24962 population_estimate_year = 2005 |
24963 population_estimate_rank = 38th |
24964 population_census =|
24965 population_census_year =|
24966 population_density = 43 |
24967 population_densitymi² = 111 |&lt;!-- Do not remove per [[WP:MOSNUM]] --&gt;
24968 population_density_rank= n/a |
24969 GDP_PPP_year= 2004 |
24970 GDP_PPP = $21.5 billion |
24971 GDP_PPP_rank = 105th |
24972 GDP_PPP_per_capita = $800 |
24973 GDP_PPP_per_capita_rank = 185th |
24974 HDI_year = 2003 |
24975 HDI = NA |
24976 HDI_rank = unranked |
24977 HDI_category = &lt;font color=gray&gt;NA&lt;/font&gt; |
24978 sovereignty_type = [[Independence]] |
24979 established_events = |
24980 established_dates = (from [[United Kingdom|UK]] control over Afghan affairs)&lt;br /&gt;1919 |
24981 currency = [[Afghani (currency)|Afghani &lt;small&gt;(Af)&lt;/small&gt;]] |
24982 currency_code = AFN |
24983 country_code = AFG |
24984 time_zone = |
24985 utc_offset = +4:30 |
24986 time_zone_DST = |
24987 utc_offset_DST = +4:30 |
24988 cctld = [[.af]] |
24989 calling_code = 93 |
24990 footnotes =
24991 }}
24992
24993 '''Afghanistan''' ([[Pashto language|Pashto]]/[[Dari (Afghanistan)|Dari-Persian]]: اŲØēاŲ†ØŗØĒاŲ†, Afğānistān) is a [[landlocked]] country at the crossroads of [[Asia]]. Generally considered a part of [[Central Asia]], it is sometimes ascribed to a regional bloc in either [[South Asia]] or the [[Middle East]], as it has cultural, ethno-linguistic, and geographic links with most of its neighbors. It is bordered by [[Iran]] in the west, [[Pakistan]] in the south and east, [[Turkmenistan]], [[Uzbekistan]] and [[Tajikistan]] in the north, and [[People's Republic of China|China]] to the east. It has a population of 30 million people, although this remains an estimate, as no official census has been taken for decades.
24994
24995 Afghanistan literally translates to 'land of the [[Afghan people|Afghans]]', but a plethora of other names have been applied to its general location in the past. Between the fall of the [[Taliban]] after the [[U.S. invasion of Afghanistan]] and the [[2003 Loya jirga]], Afghanistan was referred to by the Government of the United States as the ''Transitional Islamic State of Afghanistan''. Under its new [[Constitution of Afghanistan|constitution]], the country is now officially named the '''[[Islamic republic|Islamic Republic]] of Afghanistan'''.
24996
24997 &lt;!-- Orphaned information:
24998 Population of Kabul: 1,424,400 (1988)
24999 Land borders: 5,529 km
25000 Coastline: Landlocked
25001 [[National Day]]: [[18 August]]
25002 Religions: Sunni 84%, Shi'a 15%
25003 1 Afghani = 100 [[pul]]s
25004 --&gt;
25005 ==Origin and history of the name==
25006 The name of '''Afghanistan''' derives from word ''[[Afghan people|Afghan]]''. The [[Pushtun]]s appear to have begun using the term Afghan as a name for themselves from the [[Islam |Islamic]] period onwards. According to W.K. Frazier Tyler, M.C. Gillet and several other scholars, ''&quot;The word Afghan first appears in history in the [[Hudud ul-'alam min al-mashriq ila al-maghrib|Hudud-al-Alam]] in 982 AD.&quot;''
25007
25008 There are numerous views, regarding the origin of name Afghan, most of them being purely speculative as can be seen below:
25009
25010 Makhzan-i-Afghni by Nematullah written in 1612 CE, traces the Afghan or Pakhtun origin from the super-Patriarch [[Abraham]] down to one named King Talut or [[Saul]]. It states that Saul had a son Irmia (Jeremia), who had a son called Afghana. Upon the death of King Saul, Afghana was raised by David, and was later promoted to the chief command of the army during the reign of King [[Solomon]]. The progeny of this Afghana multiplied numerously, and came to be called ''Bani-Israel''. In the sixth century BCE, Bakhtunnasar, or [[Nebuchadnezzar]] king of [[Babul]], attacked [[Judah]] and exiled the progeny of Afghana to Ghor located in the center of what is now Afghanistan. In course of time, the exiled community came to be addressed as ''Afghan'' after the name of their ancestor, and the country got its name as Afghanistan. This traditional view has many historical discrepancies, and is therefore not accepted by modern scholarship---the last pleader for the ''Bani-Israel'' hypothesis being Mayor Raverty (The Pathans, 1958, Olaf Caroe).
25011
25012 Another version of Pushtun legend places Afghana, the professed eponymous ancestor of the Afghans or [[Pushtun]]s, as a contemporary of Muslim [[Prophet Mohammad]]. On hearing about the new faith of Islam, Qais from Aryana travelled to [[Medina]] to see the Muslim [[Muhammad |Prophet Muhammad]], and returned to Aryana as a Muslim. Qais Abdur Rashid purportedly had many sons, one of whom was Afghana. Afghana, in turn, had four sons who set out to the east to establish their separate lineages. The first son went to [[Swat]], the second to [[Lahore]] and [[India]], the third to [[Multan]], and the last one to [[Quetta]]. This legend is one of many traditional tales amongst the Pashtuns regarding their disparate origins. Again, it was this legendary Afghana who is stated to have given the Pushtuns their current name. It is notable that the Afghan of this legend is separated from the Afghana of [[Solomon]]'s times by at least 11 centuries.
25013 Dr H.W. Bellew, in his book ''An Enquiry into the Ethnography of Afghanistan'', believes that the name ''Afghan'' derives from the [[Latin]] term ''Alban'', used by [[Armenians]] as ''Alvan'' or ''Alwan'', which refers to mountaineers, and in the case of transliterated Armenian characters, would be pronounced as ''[[Caucasian Albania|Aghvan]]'' or ''Aghwan''. To the [[Persians]], this would further be altered to ''Aoghan'', ''Avghan'', and ''Afghan'' as a reference to the highlanders or &quot;mountaineers&quot; of the eastern [[Iranian plateau]].
25014
25015 Some people hold that the name derives from &quot;Abagan&quot; (i.e without God) which term the [[Persians]] are stated to have coined for the [[Pushtun]]s to describe them as ''Godless or non-believers''. It is claimed that word ''Abagan'' is antonym of the word Bagan (=believer in God) just as word apolitical is [[antonym]] of political in the English language.
25016
25017 There are also a few people who link &quot;Afghan&quot; to an [[Uzbek language|Uzbek]] word &quot;''Avagan''&quot; said to mean &quot;original&quot;. Still others believe that the name derives from [[Sanskrit]] ''upa-ganah'', said to mean &quot;allied tribes&quot;.
25018
25019 Another etymological view is that the name ''Afghan'' evidently derives from [[Sanskrit]] [[Ashvaka]] or [[Ashvakan]] (q.v), the Assakenoi of [[Arrian]]. This view was propounded by J. W. McCrindle and is supported by numerous modern scholars (including C. Lassen, S. Martin, Bishop, Crooks, W. Crooke, J. C. Vidyalnar, M. R. Singh, P. Smith, N. L. Dey, Dr J. L. Kamboj, S. Kirpal Singh and several others). In Sanskrit, word ''ashva'' ([[Iranian languages|Iranian]] ''aspa'', [[Prakrit]] ''assa'') means &quot;horse&quot;, and ''ashvaka'' (Prakrit ''assaka'') means &quot;horseman&quot;. Pre-Christian times knew the people of eastern Afghanistan as ''Ashvakas'' ([[cavalry |horsemen]]), since they raised a fine breed of horses and had a reputation for providing expert [[cavalrymen]]. The fifth-century-BCE [[India]]n grammarian [[Panini]] calls them ''Ashvayana'' and ''Ashvakayana''. Classical writers use the respective equivalents ''Aspasios'' (or Aspasii, Hippasii) and ''Assakenois'' (or Assaceni/Assacani, Asscenus). The Aspasios/Assakenois (= Ashvakas = cavalrymen) is stated to be another name for the [[Kambojas]] because of their [[equestrian]] characteristics (see [[List of country name etymologies]]).
25020
25021 The last part of the name ''Afghanistan'' originates from the [[Persian language|Persian]] word ''st&amp;#257;n'' (''country'' or ''land''). The English word ''Afghanland'' that appeared in various treaties between [[Qajars|Qajar-Persia]] and the [[United Kingdom]] dealing with the Eastern lands of the Persian kingdom (modern Afghanistan) was adopted by the Afghans and became ''Afghanistan''.
25022
25023 Before being called 'Afghanistan', the region had gone through several name changes in its long history of around 5000 years. One of the most ancient names, according to historians and scholars, was ''Ariana'' - the Greek pronunciation of the ancient [[Avestan]] ''Aryanam Vaeja'' or the [[Sanskrit]] &quot;Aryavarta&quot;, ''Land of the [[Aryans]]''. Today this Old-Persian, and [[Avestan]] expression is preserved in the name ''[[Iran]]'' and it is noted in the name of the Afghan national airline, ''[[Ariana Airlines]]''. The term 'Ariana Afghanistan' is still popular amongst Persian speakers in the country.
25024
25025 Many centuries later, Afghanistan was part of [[Greater Khorasan]], and hence was recognized with the name [[Khorasan]] (along with regions centered around [[Merv]] and [[Neishabur]]), which in [[Pahlavi]] means &quot;The Eastern Land&quot; (؎اŲˆØą Ø˛Ų…ÛŒŲ† in Persian). ''([[Dehkhoda]], p8457)''
25026
25027 ==History==
25028 {{main|History of Afghanistan}}
25029
25030 Afghanistan exists at a unique nexus-point where numerous Eurasian civilizations have interacted and often fought and was an important site of early historical activity. Through the ages, the region today known as ''Afghanistan'' has been invaded by a host of peoples, including the [[Indo-Iranians|Aryans]], [[Medes]], [[Achaemenids|Persians]], [[Greeks]], [[Mauryan Empire|Mauryans]], [[Kushans]], [[Sassanid Empire|Sassanians]], [[Arabs]], [[Turkic peoples|Turks]], [[British]], and [[Soviets]], but rarely have these groups managed to exert complete control over the region. On other occasions, native Afghan entities have invaded surrounding regions to form empires of their own.
25031 [[Image:Bamiyan.jpg|right|thumb|300px|Buddhas of Bamiyan, dating back to 1st century pre-Islamic Afghanistan, were the largest Buddha statues in the world. They were destroyed by the [[Taliban]] in 2001 calling them &quot;Us-Islamic&quot;. Photo by Hadi Zaheer]]
25032 Between 2000 and 1200 [[Common Era|BCE]], waves of [[Indo-European]]-speaking [[Indo-Iranians|Aryans]] are thought to have flooded into modern-day Afghanistan, setting up a nation that became known as ''Aryānām XÅĄaθra'', or &quot;Land of the Aryans.&quot; [[Zoroastrianism]] is speculated to have possibly originated in Afghanistan between 1800 to 800 BCE. Ancient Eastern Iranian languages such as [[Avestan]] may have been spoken in Afghanistan around a similar time-line with the rise of Zoroastrianism. Around 1000 BCE (or earlier), the [[Indo-Aryans|Indo-Aryan]] [[Vedic]] civilization may have arisen near the vicinity of the [[Kabul]] valley of eastern Afghanistan, but this remains speculative as more viable theories based upon archaeological finds tend to support the emergence of the Vedic civilization east of the [[Indus]] and/or [[Ganges]] in what is today Pakistan and India. By the middle of the 6th century BCE, the [[Achaemenids|Persian Empire]] supplanted the [[Medes]] and incorporated Aryana within its boundaries; and by 330 BCE, Alexander the Great had invaded the region. Following Alexander's brief occupation, the Hellenic successor states of the [[Seleucids]] and [[Bactrians]] controlled the area, while the [[Maurya]]ns from India annexed the southeast for a time and introduced [[Buddhism]] to the region until the area returned to the Bactrian rule.
25033
25034 During the 1st century [[Common Era|CE]], the [[Kushan]]s, a [[Tocharian]] people from Central Asia with Indo-European origins, occupied the region. Thereafter, Aryana fell to a number of Eurasian tribes &amp;mdash; including [[Parthians]], [[Scythians]], and [[Hepthalites|Huns]], as well as the [[Sassanian]] Persians and local rulers such as the [[Hindu]] [[Shahi]]s in Kabul &amp;mdash; until the 7th century CE, when Muslim [[Arab]] armies invaded the region.
25035
25036 The Arabs initially annexed parts of western Afghanistan in 652 and then conquered most of the rest of Afghanistan between 706-709 CE and administered the region as [[Khorasan]], and over time much of the local population converted to Islam, but retained their [[Iranian languages]]. Afghanistan became the center of various important empires, including the [[Ghaznavid Empire]] (962-1151), founded by a local [[Turkic peoples|Turkic]] ruler from [[Ghazni]] named [[Mahmud Ghaznavi|Yamin ul-Dawlah Mahmud]], that expanded its suzerainty over a vast area from [[Kurdistan]] to northern India. This empire was replaced by the Ghorid Empire (1151-1219), founded by another local ruler, this time of [[Tajik]] extraction, [[Muhammad Ghori]], whose domains included huge parts of Central and South Asia, and laid the foundations for the [[Delhi Sultanate]] in India.
25037
25038 In 1219, the region was overrun by the Mongols under [[Genghis Khan]], who devastated the land. Their rule continued with the [[Ilkhanate]]s, and was extended further following the invasion of [[Tamerlane]] (Timur Leng), a ruler from Central Asia. By 1400, all of Afghanistan came under his dominion, and he also laid the foundation of another Islamic empire in India, the [[Mughal Empire]]. The [[Uzbek]]-born [[Babur]], a descendant of both Tamerlane and Genghis Khan, established an empire with its capital at Kabul by 1504, and then expanded into South Asia in 1525 and established the Mughal Empire's rule throughout much of what is today Pakistan and northern India by 1527. As the empire shifted eastward, the [[Safavids]] of Persia challenged Mughal rule while the two superpower empires of the day battled over the fate of Afghanistan for decades with the Persians acquiring the area by the mid-17th century.
25039
25040 Local [[Ghilzai]] Pashtun tribesmen, lead by Khan Nashir, successfully overthrew Safavid rule, and under the [[Hotaki]] dynasty, briefly controlled all or parts of Persia itself from 1722 to 1736. Following a brief period under the rule (1736-1747) of the Turko-Iranian conqueror [[Nadir Shah]], one of his high-ranking military officers, [[Ahmad Shah Durrani|Ahmad Shah Abdali]], himself a Pashtun tribesman of the [[Durrani|Abdali]] clan, called for a ''loya jirga'' following Nadir Shah's assassination (for which many implicate Abdali) in 1747. The Afghans/Pashtuns came together at Kandahar in 1747 and chose Ahmad Shah, who changed his last name to Durrani (meaning 'pearl of pearls' in Persian), to be king. The Afghanistan nation-state as it is known today came into existence in 1747 as the [[Durrani Empire]], and expanded outward from traditional Pashtun territories to include all of what is today Afghanistan, a portion of [[Mashad]] in Iran, and all of Pakistan and Kashmir as well. The Durrani Empire lasted for nearly a century until internecine conflict and wars with the Persians and [[Sikhs]] diminished their empire by the early 19th century. However, the current borders of Afghanistan would not be determined until the coming of the British.
25041
25042 During the 19th century, following the [[Anglo-Afghan wars]] (fought in 1839-1842, 1878-1880, and lastly in 1919), Afghanistan saw much of its territory and autonomy ceded to the [[United Kingdom]]. The United Kingdom exercised a great deal of influence, and it was not until King [[Amanullah]] acceded to the throne in 1919 (see &quot;[[The Great Game]]&quot;) that Afghanistan regained complete independence. During the period of British intervention in Afghanistan, ethnic Pashtun territories were divided by the [[Durand Line]], and this would lead to strained relations between Afghanistan and [[British India]], and later the new state of Pakistan, over what came to be known as the [[Pashtunistan]] debate.
25043
25044 The historical rulers of Afghanistan were part of the Abdali tribe of the ethnic Afghans, whose name was changed to [[Durrani]] upon the accession of [[Ahmad Shah]]. They belonged to the Saddozay segment of the [[Popalzay]] clan, or to the Mohammadzay segment of the Barakzay clan, of the ethnic Afghans. The Mohammadzay frequently furnished the Sadozay kings with top counselors, who served occasionally as regents, and identified with the name Mohammadzay.
25045
25046 Since 1900, eleven monarchs and rulers have been unseated through undemocratic means: in 1919 (assassination), 1929 (abdication), 1929 (execution), 1933 (assassination), 1973 (deposition), 1978 (execution), 1979 (execution), 1979 (execution), 1987 (removal), 1992 (overthrow), 1996 (overthrow) and 2001 (overthrow).
25047
25048 The longest period of stability in Afghanistan was between 1933 and 1973, when the country was under the rule of King [[Mohammed Zahir Shah|Zahir Shah]]. However, in 1973, Zahir's brother-in-law, [[Sardar Mohammed Daoud]] launched a bloodless coup. Daoud and his entire family were murdered in 1978 when the [[communist]] [[People's Democratic Party of Afghanistan]] launched a coup known as the [[Khalq|Great Saur Revolution]] and took over the government.
25049
25050 Opposition against, and conflict within, the series of communist governments that followed, was considerable. As part of a [[Cold War]] strategy, the US government began to covertly fund and train anti-government [[Mujahideen]] forces through the Pakistani secret service agency known as Inter Services Intelligence or ISI, which were derived from discontented Muslims in the country who opposed the official atheism of the Marxist regime, in 1978. In order to bolster the local Communist forces the [[Soviet Union]] - citing the 1978 Treaty of Friendship, Cooperation and Good Neighborliness that had been signed between the two countries in 1978 - intervened on [[December 24]], 1979. The Soviet occupation resulted in a mass exodus of over 5 million Afghans who moved into refugee camps in neighboring Pakistan and Iran. More than 3 million alone settled in Pakistan. Faced with mounting international pressure and the loss of approximately 15,000 Soviet soldiers as a result of Mujahideen opposition forces trained by the [[United States]], Pakistan, and other foreign governments, the Soviets withdrew ten years later, in 1989. For more details, see [[Soviet war in Afghanistan]].
25051
25052 The Soviet withdrawal was seen as an ideological victory in the US, which ostensibly had backed the Mujahideen in order to counter Soviet influence in the vicinity of the oil-rich [[Persian Gulf]]. Following the removal of the Soviet forces in 1989, the US and its allies lost interest in Afghanistan and did little to help rebuild the war-ravaged country. The USSR continued to support the regime of Dr. Najubullah (formerly the head of the secret service, Khad) until its downfall in 1992. However, the absence of the Soviet forces resulted in the downfall of the government as it steadily lost ground to the guerrilla forces. [http://www.infoplease.com/ce6/world/A0856490.html]
25053
25054 As the vast majority of the elites and intellectuals had either been systematically eliminated by the Communists, or escaped to take refuge abroad, a dangerous leadership vacuum came into existence. Fighting continued among the various Mujahidin factions, eventually giving rise to a state of [[warlordism]]. The chaos and corruption that dominated post-Soviet Afghanistan in turn spawned the rise of the [[Taliban]] in response to the growing chaos. The most serious fighting during this growing civil conflict occurred in 1994, when 10,000 people were killed during factional fighting in Kabul.
25055
25056 Exploiting the chaotic situation in Afghanistan, a few regional bedfellows including fundamentalist Afghans trained in refugee camps in western Pakistan, the Pakistani secret intelligence service (ISI), the regional Mafia (well-established network that smuggled mainly Japanese electronics and tyres before the Russian invasion, now involved in drug smuggling) and Arab extremist groups (that were looking for a safe operational hub) joined forces and helped to create the [[Taliban]] movement (Rashid 2000).[http://www.ahmedrashid.com/] Backed by Pakistan, [[Saudi Arabia]] and other strategic allies, the Taliban developed as a politico-religious force, and eventually seized power in 1996. The Taliban were able to capture 90% of the country, aside from the [[Afghan Northern Alliance]] strongholds primarily found in the northeast in the [[Panjshir Valley]]. The Taliban sought to impose a strict interpretation of [[Islam]]ic ''[[Sharia]]'' law and gave safe haven and assistance to individuals and organizations that were implicated as terrorists, most notably [[Osama bin Laden]]'s [[Al-Qaeda]] network.
25057
25058 The United States and allied military action in support of the opposition following the [[September 11, 2001 Terrorist Attacks]] forced the Taliban's downfall. In late 2001, major leaders from the Afghan opposition groups and diaspora met in [[Bonn]], and agreed on a [[Bonn Agreement (Afghanistan)|plan]] for the formulation of a new government structure that resulted in the inauguration of [[Hamid Karzai]] as Chairman of the [[Afghan Interim Authority]] (AIA) on December 2001. After a nationwide ''[[Loya Jirga]]'' in 2002, Karzai was elected President.
25059
25060 On [[March 3]] and [[March 25]] [[2002]], a series of earthquakes struck Afghanistan, with a loss of thousands of homes and over 1800 lives. Over 4000 more people were injured. The earthquakes occurred at Samangan Province ([[March 3]]) and Baghlan Province ([[March 25]]). The latter was the worse of the two, and caused most of the casualties. International authorities assisted the Afghan government in dealing with the situation.
25061
25062 As the country continues to rebuild and recover, as of late 2005, it was still struggling against widespread poverty, continued warlordism, a virtually non-existent infrastructure, possibly the largest concentration of land mines on earth and other unexploded ordinance, as well as a sizable illegal poppy and heroin trade. Afghanistan also remains subject to occasionally violent political jockeying, and the nation's first elections were successfully held in 2004 as women parliamentarians were selected in record numbers. Parliamentary elections in 2005 helped to further stabilize the country politically, in spite of the numerous problems it faced, including inadequate international assistance. The country continues to grapple with occasional acts of violence from a few remaining [[al-Qaeda]] and [[Taliban]] and the instability caused by warlords.
25063
25064 See also: [[Afghanistan timeline]], [[Invasions of Afghanistan]]
25065
25066 ==Politics==
25067 ''Main article: [[Politics of Afghanistan]]''
25068
25069 Afghanistan is currently led by president [[Hamid Karzai]], who was elected in October of 2004. Before the election, Karzai led the country after having been hand-picked by the administration of [[United States]]' [[George W. Bush|President Bush]] to head an interim government, after the fall of the Taliban. His current cabinet includes members of the [[Afghan Northern Alliance]], and a mix from other regional and ethnic groups formed from the transitional government by the [[Loya jirga]] (grand council). Former [[monarch]] [[Mohammed Zahir Shah]] returned to the country, but was not reinstated as king, and only exercises limited ceremonial powers.
25070
25071 Under the [[Bonn Agreement (Afghanistan)|Bonn Agreement]] the [[Afghan Constitution Commission]] was established to consult with the public and formulate a draft constitution. The meeting of a constitutional ''loya jirga'' was held in December 2003, when a new constitution was adopted creating a presidential form of government with a bicameral legislature.
25072
25073 Troops and [[intelligence agencies]] from the United States and a number of other countries are present, some to keep the peace, others assigned to hunt for remnants of the [[Taliban]] and [[al Qaeda]]. A [[United Nations]] peacekeeping force called the [[International Security Assistance Force]] has been operating in Kabul since December 2001. [[NATO]] took control of this Force on [[August 11]], [[2003]]. Some of the country remains under the control of warlords. [http://www.newstatesman.com/200502070006]
25074
25075 On [[March 27]], [[2003]], Afghan deputy defense minister and powerful warlord General [[Abdul Rashid Dostum]] created an office for the [[North Zone of Afghanistan]] and appointed officials to it, defying then-interim president [[Hamid Karzai]]'s orders that there be no zones in Afghanistan.
25076
25077 [[Eurocorps]] took over the responsibility for the NATO-led [[International Security Assistance Force|ISAF]] in Kabul [[August 9]], [[2004]].
25078
25079 [[Afghan presidential election, 2004|National elections]] were held on [[October 9]], [[2004]]. Over 10 million Afghans were registered to vote. Most of the 17 candidates opposing Karzai [[boycott]]ed the election, charging fraud; [http://www.dw-world.de/dw/article/0,1564,1354517,00.html] an independent commission found evidence of fraud, but ruled that it did not affect the outcome of the poll. Karzai won 55.4% of the vote. [http://news.bbc.co.uk/2/hi/south_asia/3977677.stm] He was inaugurated as president on [[December 7]]. It was the country's first national election since 1969, when parliamentary elections were last held.
25080
25081 On [[September 18]] [[2005]], [[Afghan parliamentary election, 2005|parliamentary elections]] were held; the [[Wolesi Jirga|parliament]] opened on the following [[December 19]].
25082 On [[December 20]] Karzai's close ally and president of the first [[mujahideen]] government, [[Sibghatullah Mojadeddi]], was picked to head the 102-seat upper house.
25083 On [[December 21]], [[Yunus Qanuni]], Afghan opposition leader and Karzai's main opponent was chosen to lead the 249-seat lower house of parliament with 122 votes against 117 for his closest challenger.
25084
25085 see also: [[List of leaders of Afghanistan]], [[List of Afghanistan Governors]]
25086
25087 ==Subdivisions==
25088 Afghanistan is divided into 34 provinces (''velayat'') which are further divided into districts.
25089
25090 ''Main article: [[Provinces of Afghanistan]]''
25091 ''Main article: [[Districts of Afghanistan]]''
25092
25093 The 34 provinces are:
25094 {|
25095 |
25096 *&lt;small&gt;1&lt;/small&gt; [[Badakhshan Province|Badakhshan]]
25097 *&lt;small&gt;2&lt;/small&gt; [[Badghis Province|Badghis]]
25098 *&lt;small&gt;3&lt;/small&gt; [[Baghlan Province|Baghlan]]
25099 *&lt;small&gt;4&lt;/small&gt; [[Balkh Province|Balkh]]
25100 *&lt;small&gt;5&lt;/small&gt; [[Bamiyan Province|Bamiyan]]
25101 *&lt;small&gt;6&lt;/small&gt; [[Daikondi Province|Daikondi]]
25102 *&lt;small&gt;7&lt;/small&gt; [[Farah Province|Farah]]
25103 *&lt;small&gt;8&lt;/small&gt; [[Faryab Province|Faryab]]
25104 *&lt;small&gt;9&lt;/small&gt; [[Ghazni Province|Ghazni]]
25105 *&lt;small&gt;10&lt;/small&gt; [[Ghowr Province|Ghowr]]
25106 *&lt;small&gt;11&lt;/small&gt; [[Helmand Province|Helmand]]
25107 |
25108 *&lt;small&gt;12&lt;/small&gt; [[Herat Province|Herat]]
25109 *&lt;small&gt;13&lt;/small&gt; [[Jowzjan Province|Jowzjan]]
25110 *&lt;small&gt;14&lt;/small&gt; [[Kabul Province|Kabul]]
25111 *&lt;small&gt;15&lt;/small&gt; [[Kandahar Province|Kandahar]]
25112 *&lt;small&gt;16&lt;/small&gt; [[Kapisa Province|Kapisa]]
25113 *&lt;small&gt;17&lt;/small&gt; [[Khost Province|Khost]]
25114 *&lt;small&gt;18&lt;/small&gt; [[Konar Province|Konar]]
25115 *&lt;small&gt;19&lt;/small&gt; [[Kunduz Province|Kunduz]]
25116 *&lt;small&gt;20&lt;/small&gt; [[Laghman Province|Laghman]]
25117 *&lt;small&gt;21&lt;/small&gt; [[Lowgar Province|Lowgar]]
25118 *&lt;small&gt;22&lt;/small&gt; [[Nangarhar Province|Nangarhar]]
25119 |
25120 *&lt;small&gt;23&lt;/small&gt; [[Nimruz Province|Nimruz]]
25121 *&lt;small&gt;24&lt;/small&gt; [[Nurestan Province|Nurestan]]
25122 *&lt;small&gt;25&lt;/small&gt; [[Oruzgan Province|Oruzgan]]
25123 *&lt;small&gt;26&lt;/small&gt; [[Paktia Province|Paktia]]
25124 *&lt;small&gt;27&lt;/small&gt; [[Paktika Province|Paktika]]
25125 *&lt;small&gt;28&lt;/small&gt; [[Panjshir Province|Panjshir]]
25126 *&lt;small&gt;29&lt;/small&gt; [[Parvan Province|Parvan]]
25127 *&lt;small&gt;30&lt;/small&gt; [[Samangan Province|Samangan]]
25128 *&lt;small&gt;31&lt;/small&gt; [[Sar-e Pol Province|Sar-e Pol]]
25129 *&lt;small&gt;32&lt;/small&gt; [[Takhar Province|Takhar]]
25130 *&lt;small&gt;33&lt;/small&gt; [[Vardak Province|Vardak]]
25131 *&lt;small&gt;34&lt;/small&gt; [[Zabol Province|Zabol]]
25132 |
25133 [[Image:Afghanistan provinces numbered.png|thumb|250px|right|Map showing provinces of Afghanistan]]
25134 |}
25135
25136 ==Geography==
25137 [[Image:Afghanistan map.png|framed|Map of Afghanistan]]
25138 ''Main article: [[Geography of Afghanistan]]''
25139
25140 Afghanistan is a land-locked [[mountain]]ous country, with plains in the north and southwest. The highest point, at 7485 m (24,557 [[foot (unit of length)|ft]]) above sea level, is [[Nowshak]]. Large parts of the country are dry, and fresh water supplies are limited. Afghanistan has a continental climate, with hot summers and cold winters. The country is frequently subject to [[earthquake]]s.
25141
25142 The major cities of Afghanistan are its capital Kabul, [[Herat]], [[Jalalabad, Afghanistan|Jalalabad]], [[Mazar-e Sharif]] and [[Kandahar]].
25143
25144 See also [[List of cities in Afghanistan]], [[Places in Afghanistan]].
25145
25146 ==Economy==
25147 ''Main article: [[Economy of Afghanistan]]''
25148
25149 Afghanistan is an extremely impoverished country, being one of the world's poorest and least developed countries. Two-thirds of the population lives on less than US$2 a day. The economy has suffered greatly from the recent political and military unrest since the 1979-80 Soviet invasion and subsequent conflicts, while severe drought added to the nation's difficulties in 1998-2001.
25150
25151 About 70 percent of the population is under 30 according to Asian Development Bank. The total fertility rate is 6.8, the highest in South Asia (with a regional average at 3.3), but so are mortality rates. Infant mortality rate is 166 per 1000 births. The economically active population in 2002 was about 11 million (out of a total of an estimated 29 million). While there are no official unemployment rate estimates available, it is evident that it is high. The number of non-skilled young people is estimated at 3 million, which is likely to increase by some 300,000 per annum. (Fujimura, 2004a). [http://www.adbi.org/research-policy-brief/2004/10/15/698.afghan.economy.after.election/]
25152
25153 The country's natural resources include copper, zinc and iron ore in central areas; precious and semi-precious stones such as lapis, emerald and azure in the north-east and east; and (unproved) oil and gas reserves in the north. However, &quot;its significant mineral resources remain largely untapped because of the Afghan War of the 1980s and subsequent fighting&quot; (Encyclopaedia Britannica, 2005). A good portion of Afghanistan GDP comes from illicit drugs including opium, its derivtives morphine and heroin and hashish.
25154
25155
25156 [[Image:President Celal Bayar, King Zahir and Lord Nasher.jpg|thumb|Afghanistan was once a world-renowned producer of cotton. Here Turkish President Celal Bayar and King Zahir inspect the produce of Khan Nasher's Spinzar Cotton Company in 1966]]
25157
25158 On a positive note, international efforts to rebuild Afghanistan led to the formation of the Afghan Interim Authority (AIA) as a result of the December 2001 [[Bonn Agreement (Afghanistan)| Bonn Agreement]], and later addressed at the Tokyo Donors Conference for Afghan Reconstruction in January 2002, where $4.5 billion was committed in a trust fund to be administered by the [[World Bank Group]]. Priority areas for reconstruction include the rebuilding of education system, health, and sanitation facilities, enhancement of administrative capacity, the development of the agricultural sector, and the rebuilding of road, energy, and telecommunication links.
25159
25160 According to a 2004 report by the Asian Development Bank, the present reconstruction effort is two-pronged: first it focuses on rebuilding critical physical infrastructure, and second, on building modern public sector institutions from the remnants of Soviet style planning to ones that promote market-led development (Fujimura, 2004b). But macroeconomic planning and management at present is hampered by poor information, weak service delivery systems, and less than adequate law enforcement.
25161
25162 The country has been going through economic recovery since the Taliban were overthrown in October 2001. However, estimating Afghanistan's economy is problematic as it is impossible to gather reliable statistics while it is going through a significant change period in all fronts, with the added problem of less than ideal security situation. The best estimate that can be relied upon is that of the Central Statistical Office in 2003, from which the CIA Factbook seems to have drawn some data. Accordingly, the country's estimated gross domestic product (GDP) was $21.5 billion in 2003, a 28.6% growth over 2002 (CIA Factbook 2003) [http://www.cia.gov/cia/publications/factbook/geos/af.html]
25163
25164 Among the 232 listed countries in the CIA Factbook, Afghanistan ranks 108th in terms of GDP, which means per capita income of $800. A brief comparison shows that Afghanistan is the poorest country among its neighbors. Pakistan, with a GDP of $347 billion in 2003 had a per capita purchasing power of $2200 and Iran with its $517 billion had $7700. In the north, Turkmenistan had a GDP of $27.6 billion and a per capita income of $5700, Uzbekistan with its $48 billion had $1800, and Tajikistan despite a low GDP of only $8 billion had a per capita income of $1100 per head. The World Bank estimates that Afghanistan will remain in need of external financial help before it can stand on its own feet economically.
25165
25166 Ironically, Afghanistan's GDP ranks approximately at the same level as Jordan ($25.5bn) and Qatar ($19.5bn). However, considering that those oil-rich Arab states have smaller populations, Jordan per capita income amounts to $4500 and Qatar's to $23,200.
25167
25168 One of the main drivers for the current economic recovery is the return of over two million refugees from neighbouring countries and the West, who brought with them fresh energy, entrepreneurship and wealth-creating skills as well as much needed capital to start up small businesses. What is also helping is the estimated $2-3 billion in international assistance, the partial recovery of the agricultural sector, and the reestablishment of market institutions.
25169
25170 While the country's current account deficit is largely financed with the &quot;donor money&quot;, only a small portion - about 15% - is provided directly to the government budget. The rest is provided to non-budgetary expenditure and donor-designated projects through the UN system and NGOs. It needs to be mentioned that there are some (as yet unconfirmed) claims that most of this money is spent on the expenses of the UN and other non-governmental organizations as well as being funneled into illegitimate activities.
25171
25172 The government had a central budget of only $350 million in 2003 and an estimated $550 million in 2004. The country's foreign exchange reserves totals about $500 million. Revenue is mostly generated through customs, as income and corporate tax bases are negligible.
25173
25174 Inflation had been a major problem until 2002. However, the depreciation of the afghani in 2002 after the introduction of the new notes (which replaced 1,000 old afghani by 1 new afghani) coupled with the relative stability compared to previous periods has helped prices to stabilize and even decrease between December 2002 and February 2003, reflecting the turnaround appreciation of the new Afghani currency. Since then, the index has indicated stability, with a moderate increase toward late 2003 (Fujimura, 2004c).
25175
25176 The Afghan government and international donors seem to remain committed to improving access to basic necessities, infrastructure development, education, housing and economic reform. The central government is also focusing on improved revenue collection and public sector expenditure discipline. The rebuilding of the financial sector seems to have been so far successful. Money can now be transferred in and out of the country via official banking channels and according to accepted international norms. A new law on private investment provides 3-7 year tax holidays to eligible companies and a 4-year exemption from exports tariffs and duties.
25177
25178 While these improvements will help rebuild a strong basis for the nation in the future, for now, the majority of the population continues to suffer from insufficient food, clothing, housing, medical care, and other problems exacerbated by military operations and political uncertainties. The government is not strong enough to collect customs duties from all the provinces due to the power of the warlords. Fraud is widespread and “corruption is rife within all Afghan government organs, and central authority is barely felt in the lawless south and south-west” (The Economist, 2005). [http://www.economist.com/displaystory.cfm?story_id=4494134]
25179
25180 Expanding poppy cultivation and a growing opium trade is another huge problem for the country. The CIA estimates that one-third of the country's GDP comes from opium export, although the Asian Development Bank states a lower figure, namely $2.5 billion (12% of the GDP). At any rate, this is not only one of Kabul's most serious policy and law-enforcement challenges[http://www.cia.gov/cia/publications/factbook/rankorder/2001rank.html], but also one of the world's most serious problems.
25181
25182 The problem began with the Soviet invasion in 1979-80. As the government began to lose control of provinces, &quot;warlordism&quot; flourished and with it opium production as regional commanders searched for ways to generate money to purchase weapons, according to the UN. [http://www.irinnews.org/webspecials/opium/Chronology.asp] (At this time the West was pursuing an &quot;arms-length&quot; supporting strategy of the Afghan freedom-fighters or Mujahidin, the main purpose being to cripple the USSR slowly into withdrawal rather than a quick and decisive overthrow).
25183
25184 When the West abandoned Afghanistan after its perceived victory over the Soviet Union as the Red Army was forced to withdraw in 1989, a power vacuum was created. Various Mujahidin factions started fighting against each other for power. With the discontinuation of Western support, they resorted ever more to poppy cultivation to finance their military existence.
25185
25186 The regional mafia, who were looking for a safe operational hub, joined forces with the more fanatic sections of the Mujahidin supported by Arab extremists like Osama bin Laden as well as the Pakistani secret intelligence service [[ISI]] to form the [[Taliban]] movement towards the end of 1994 (Rashid, 2000); [http://www.ahmedrashid.com/] see also BBC report here [http://news.bbc.co.uk/1/hi/world/south_asia/1569826.stm].
25187
25188 The Taliban, having taken control of 90% of the country, actively encouraged poppy cultivation. With this, they not only fulfilled their promises and obligations to their partners - the regional mafia - but also increased their own desperately needed income through taxes. According to the above UN source, Afghanistan saw a bumper opium crop of 4,600 million tonnes in 1999, which was the height of the Taliban rule in Afghanistan. When they came under extreme international diplomatic pressure in 2002, they initiated a ban on poppy cultivation.
25189
25190 Following the US-led coalition war that led to the defeat of the [[Taliban]] in November 2001 which essentially collapsed the economy, the relatively few other sources of revenue forced many of the country's farmers to resort back to growing cash crops for export. A notable example of such a crop is the [[opium poppy]] (1,300 km&amp;sup2; in 2004 according to the [[United Nations]] Office on Drugs and Crime), the cultivation of which has largely increased during the last decade: Afghanistan has become the first illicit opium producer in the world, before [[Burma]] ([[Myanmar]]), part of the so-called &quot;[[Golden Triangle]]&quot;.
25191
25192 The main obstacle to eradicating poppy cultivation in Afghanistan is the US forces' need for the warlords and their forces in hunting terrorists. The warlords are the major culprits in poppy cultivation, but are also highly useful to the US forces in scouting, providing local intelligence, keeping their own territories clean from Al-Qaeda and Taliban insurgents, and even taking part in military operations - all for money. This also contributes to the lack of central government's real authority in provinces and discourages farmers from growing grain and fruit as they did for centuries previously.
25193
25194 In short, the Afghan economy is currently (December 2005) going through a hefty change period. On the one hand, there are encouraging signs of positive development and increasing wealth creation and management. But on the other hand, the security situation, the lingering war against terrorism and the opium problem have created tall barriers for Afghanistan to rejoin the international community in prosperity and economic development.
25195
25196 ===Economy References===
25197 - Fujimura, Manabu (2004) &quot;Afghan Economy After the Election&quot;, Asian Development Bank Institute
25198
25199 - CIA Factbook (2003), Afghanistan Section
25200
25201 - The Economist magazine, UK, October 2005
25202
25203 - UN Office for the Coordination of Human Affairs website
25204
25205 - Rashid, Ahmed (2000) &quot;Taliban - Militant Islam, Oil and Fundamentalism in Central Asia&quot;, Yale University Press
25206
25207 - The BBC
25208
25209 ==Demographics==
25210 ''Main article: [[Demographics of Afghanistan]]''
25211
25212 The population of Afghanistan is divided into a wide variety of ethnic groups largely composed of [[Iranian peoples|Iranian]] and [[Turkic peoples]]. Because a systematic census has not been held in the country in decades, exact figures about the size and composition of the various ethnic groups are not available.[http://news.bbc.co.uk/1/hi/world/south_asia/3717092.stm] Therefore most figures are approximations only. According to the CIA World FactBook (updated on [[17 May]] [[2005]]), an approximate ethnic group distribution is as follows:
25213
25214 [[Pashtun]] 30%, [[Tajiks|Tajik]] 29%,, [[Hazara]] 22%, [[Uzbek]] 11%, [[Aimak]] 5%, [[Turkmen people|Turkmen]] 3%, [[Baloch]] 2%, other 4% including sikhs.[http://www.cia.gov/cia/publications/factbook/geos/af.html#People]
25215
25216 The CIA factbook on languages in Afghanistan refers to the official languages of Afghanistan as being [[Persian language|Persian]] (local name: [[Dari]]) 50% and [[Pashtu]] 35%. Other languages include [[Turkic language]]s (primarily [[Uzbek language|Uzbek]] and [[Turkmen language|Turkmen]]) 11%, 30 minor languages (primarily [[Balochi]] and [[Pashai]]) 4%. Bilingualism is common.
25217
25218 Religiously, Afghans are overwhelmingly [[Muslim]] (approximately 80% [[Sunni]] and 19% [[Shi'a Islam|Shi'a]]). There are also small [[Hindu]] and [[Sikh]] minorities. Afghanistan was once home to a many-centuries-old [[Jew]]ish minority, numbering approximately 5,000 in 1948. Most Jewish families fled the country after the 1979 Soviet invasion, and only one individual remains today, [[Zablon Simintov]]. [http://www.washingtonpost.com/wp-dyn/articles/A39702-2005Jan26.html] With the fall of the Taliban a number of [[Sikhs]] have returned to the [[Ghazni]], [[Nangarhar]], [[Kandahar]] and [[Kabul]] Provinces of Afghanistan.
25219
25220 ==Constitution==
25221 ''Main article: [[Constitution of Afghanistan]]''
25222
25223 According to the 2004 constitution, Afghanistan is run by a president, who is elected by direct popular vote to a five-year term. The president may only serve two terms. A candidate for president must be at least forty years of age, a Muslim, and a citizen of Afghanistan. The country has two vice-presidents. The president serves as head of state and government, and is commander-in-chief of the armed forces. The president makes appointments for his cabinet, as well as posts in the military, police force, and provincial governorships, with the approval of parliament.
25224
25225 The legislative body of Afghanistan is a parliament consisting of two houses: the ''[[Wolesi Jirga]]'' (House of the People) and the ''[[Meshrano Jirga]]'' (House of Elders). The ''Wolesi Jirga'' consists of up to 250 members elected to five-year terms through direct elections in proportion to the population of each province. At least two women must be elected from each province. In the ''Meshrano Jirga'', one-third of the members are elected by provincial councils for four years, one-third are elected by district councils of each province for three years, and one-third are appointed by the president for five years, of whom half must be women.
25226
25227 The judicial system of Afghanistan consists of the ''[[Stera Mahkama]]'' (Supreme Court), appeals courts, and lower district courts designated by law. The ''Stera Mahkama'' is made up of nine judges appointed by the president, with the approval of parliament, to a ten-year term. Judges must be at least forty years of age, not belong to a political party, and have a degree in law or Islamic jurisprudence. The ''Stera Mahkama'' can judge the constitutionality of all laws in the country.
25228
25229 ==Culture==
25230 ''Main article: [[Culture of Afghanistan]]''
25231
25232 Afghans display pride in their country, ancestry, military prowess, and above all, their independence. Like other highlanders, Afghans are regarded with mingled apprehension and condescension, for their high regard for personal honor, for their clan loyalty and for their readiness to carry and use arms to settle disputes. (Heathcote, 2003). As clan warfare / internecine feuding has been one of their chief occupations since time immemorial, this individualistic trait has made it difficult for foreign invaders to hold the region.
25233
25234 Afghanistan has a complex history that has survived either in its current cultures or in the form of various languages and monuments. However, many of the country's historic monuments have been damaged in recent wars. The two famous statues of [[Buddhas of Bamiyan|Buddha]] in the [[Bamiyan Province]] were destroyed by the Taliban, who regarded them as [[Idolatry|idolatrous]]. Other famous sites include the very cities of [[Herat]], [[Ghazni]] and [[Balkh]]. The [[Minaret of Jam]], in the [[Hari Rud]] valley, is a [[UNESCO]] [[World Heritage site]].
25235
25236 The people of Afghanistan are prominent horsemen as the national [[sport]] is [[Buzkashi]]. [[Afghan hound]]s (a type of running [[dog]]s) also originated in Afghanistan.
25237
25238 Although literacy levels are very low, classic Persian poetry plays a very important role in Afghan culture. Poetry has always been one of the major educational pillars in both Iran and Afghanistan, to the level that it has integrated itself into culture. Private poetry competition events known as “musha’era” are quite common even among ordinary people. Almost every home owns one or more poetry collection of some sort, even if it is not read often.
25239
25240 The Afghan dialect of the Persian language [[Dari (Afghanistan)|Dari]] derives from &quot;Farsi-e Darbari&quot;, meaning 'Persian of the royal courts'. It is regarded by some scholars as the more original version of the language. Iran, having a larger population, a stronger economy and closer ties to the rest of the world has developed its language further in the course of history. Afghanistan took a more conservative approach mainly due to lack of resources. As a result, Dari has not changed much over the last few centuries.
25241
25242 Many of the famous Persian language poets of 10th to 15th centuries stem from what is now known as Afghanistan. They were mostly also scholars in many disciplines like languages, natural sciences, medicine, religion and astronomy. Examples are Mawlvi Balkhi ([[Rumi]]), born and educated in the Balkh province in the 13th century and moved to today’s Istanbul, [[Sanaayi]] Ghaznavi (12th century, native of Ghazni provice), [[Jami]] Heravi (15th century, native of Jam-e-Herat in western Afghanistan), [[Alisher Navoi|Nizam ud-Din Ali Sher Heravi Nava'i,]] (15th century, Heart province). Also, some of the contemporary Persian language poets and writers, who are relatively well-know in both Iran and Afghanistan includes [[Ustad Behtab]], [[Khalilullah Khalili]] [http://www.afghanmagazine.com/arts/khalili/khalili.html], Sufi Ghulam Nabi Ashqari [http://www.afghanmagazine.com/jan2000/music/kharaabat/], [[Parwin Pazwak]] and others.
25243
25244 In addition to poets, the region of Afghanistan produced numerous scientists as well including [[Avicenna]] (Ibn Sina Balkhi) who hailed from [[Balkh]]. Avicenna, who travelled to [[Isfahan]] later in life to establish a medical school there, is known by some scholars as &quot;the father of modern medicine&quot;. George Sarton called Ibn Sina &quot;the most famous scientist of Islam and one of the most famous of all races, places, and times.&quot; His most famous works are ''The Book of Healing'' and ''The Canon of Medicine'', also known as the Qanun. Avicenna's story even found way to the contemporary English literature through Noah Gordon's The Physician [http://www.noahgordonbooks.com/index.html], now published in many languages.
25245
25246 Before the Taliban gained power, the city of Kabul was home to many musicians who were masters of both traditional and modern Afghan music, especially during the [[Nauroz]]-celebration. Kabul in the middle part of the 20th century has been likened to [[Vienna]] during the 18th and 19th centuries.
25247
25248 The tribal system, which orders the life of most people outside metropolitan areas, is certainly as potent in political terms as the national state system of Europe 1914. Men feel a fierce loyalty to their own tribe, such that, if called upon, assemble in arms under the tribal chiefs and local clan leaders (Khans) in the same way that men throughout Europe &quot;flocked to the colours&quot; in 1914, forming up in regional divisions and battalions under the command of the local nobility and gentry. In theory, under Islamic law, every believer has an obligation to bear arms at the ruler's call ([[Ulul-Amr]]), but this was no more needed than was enforced conscription to fill the ranks of the British Army in 1914. The Afghan shepherd or peasant went to war for much the same mixture of reasons as the more &quot;civilised&quot; European clerk or factory worker - a desire for adventure, a desire not to be left out or lose esteem in the eyes of his fellows, a contempt for invading foreigners, revenge against those that ruined his family life or threatened his faith, perhaps even the chance of extra cash or enhanced personal prospects.
25249
25250 The tribal system is not something particularly backward or warlike. It is simply the best way of organizing large groups of people in a country that is geographically difficult, and in a society that has an uncomplicated lifestyle - from a materialistic point of view (Heathcote, 2003).
25251
25252 Reference:
25253
25254 Heathcote, Tony (1980, 2003) &quot;The Afghan Wars 1839 - 1919&quot;, Sellmount Staplehurst
25255
25256 See also: [[Radio Kabul]], [[music of Afghanistan]], [[Islam in Afghanistan]]
25257
25258 ==Education==
25259 ''Main article: [[Education in Afghanistan]]''
25260
25261 In the spring of 2003, it was estimated that 30% of Afghanistan's 7,000 schools had been seriously damaged during more than two decades of [[Soviet Union|Soviet]] occupation and civil war. Only half of the schools were reported to have clean water, while fewer than an estimated 40% had adequate sanitation. Education for boys was not a priority during the [[Taliban]] regime, and girls were banished from schools outright.
25262
25263 In regards to the poverty and violence of their surroundings, a study in 2002 by the [[Save the Children]] aid group said Afghan children were resilient and courageous. The study credited the strong institutions of family and community.
25264
25265 Up to four million Afghan children, possibly the largest number ever, are believed to have enrolled for class for the school year beginning in March of 2003. Education is available for both girls and boys.
25266
25267 Literacy of the entire population is estimated at 36%, Male Literacy rate is 51% and female literacy is 21%. The male literacy rate is higher because previous Taliban laws prohibited the education of women.
25268
25269 Higher Education - The American University of Afghanistan
25270
25271 Another aspect of education that is rapidly changing in Afghanistan is the face of Higher Education. In 2006 the American University of Afghanistan [http://www.auaf.edu.af] opens it's doors, with support from USAID [http://usinfo.state.gov/sa/Archive/2005/Apr/06-83303.html] and other donors. With the aim of providing a world-class, English-language, co-educational learning environment in Afghanistan, the university will take students from Afghanistan and the region.
25272
25273
25274 ==See also==
25275 {{sisterlinks|Afghanistan}}
25276
25277 *[[Afghan Scout Association]]
25278 *[[Communications in Afghanistan]]
25279 *[[Foreign relations of Afghanistan]]
25280 *[[List of sovereign states]]
25281 *[[Military of Afghanistan]]
25282 *[[Transportation in Afghanistan]]
25283 *[[Stamps and postal history of Afghanistan]]
25284 **[[List of birds on stamps of Afghanistan]]
25285 **[[List of fish on stamps of Afghanistan]]
25286 *[[Golden Needle Sewing School]]
25287 *[[Taliban treatment of women]]
25288 *[[Taliban]]
25289 *[[List of leaders of Afghanistan]]
25290
25291 ==Additional references==
25292 * Ghobar, Mit Gholam Mohammad. Afghanistan in the Cource of History, 1999, All Prints Inc.
25293 * Griffiths, John C. 1981. ''Afghanistan: A History of Conflict''. AndrÊ Deutsch, London. Updated edition, 2001. Andre Deutsch Ltd, 2002, ISBN 0233050531.
25294 * Levi, Peter. 1972. ''The Light Garden of the Angel King: Journeys in Afghanistan''. Collins, 1972, ISBN 0002110423. Bobbs-Merrill Company, 1973, Indianapolis/New York, ISBN 0672512521.
25295 * Moorcroft, William and Trebeck, George. 1841. ''Travels in the Himalayan Provinces of Hindustan and the Panjab; in Ladakh and Kashmir, in Peshawar, Kabul, Kunduz, and Bokhara... from 1819 to 1825'', Vol. II. Reprint: New Delhi, Sagar Publications, 1971. Oxford University Press, 1979, ISBN 0195771990.
25296 * Rashid, Ahmed (2000) &quot;Taliban - Militant Islam, Oil and Fundamentalism in Central Asia&quot;, Yale University Press
25297 *Toynbee, Arnold J. 1961. ''Between Oxus and Jumna''. Oxford University Press, London. ISBN B0006DBR44.
25298 * Wood, John. 1872. ''A Journey to the Source of the River Oxus''. New Edition, edited by his son, with an essay on the &quot;Geography of the Valley of the Oxus&quot; by Henry Yule. John Murray, London. Gregg Division McGraw-Hill, 1971, ISBN 0576033227.
25299 * Heathcote, T.A. The Afghan Wars 1839-1999, 1980,2003, Spellmount Staplehurst
25300
25301 ==External links==
25302 *{{wikitravel}}
25303 *[http://www.afghanplace.com - Afghanistan Directory]
25304 *[http://www.afghanchat.com - Large Website on Afghanistan Culture &amp; News]
25305 *[http://www.afghan2.com - Online dating Service for Afghans]
25306 *[http://www.afghanzone.com/ Afganistan Online News source].
25307 *[http://www.afghanunited.com/ Afghanistan Entertainment center].
25308 *[http://www.afgha.com Afgha.com - News, Discussions, and more about Afghanistan]
25309 *[http://www.kabuli.org/ Daily reports from Kabul in Farsi]
25310 *[http://afghanlord.blogspot.com/ Afghan LORD]
25311 *[http://www.afghanistan.sc/ Afghanistan Service Center with daily news]
25312 *[http://www.aims.org.af/ Afghanistan Information Management Service] - provided by joint UN projects
25313 *[http://news.bbc.co.uk/2/hi/world/south_asia/country_profiles/1162668.stm BBC News Country Profile - Afghanistan]
25314 * [http://www.cia.gov/cia/publications/factbook/geos/af.html CIA World Factbook - Afghanistan]
25315 * [http://www.state.gov/p/sa/ci/af/ US State Department - Afghanistan] includes Background Notes, Country Study (1997), Rebuilding, USAID and NATO
25316 *[http://dmoz.org/Regional/Asia/Afghanistan/ Open Directory Project - Afghanistan] directory category
25317 *[http://dir.yahoo.com/regional/countries/afghanistan/ Yahoo! - Afghanistan] directory category
25318 *[http://www.un.org/Depts/Cartographic/map/profile/afghanis.pdf 2002 UN map of Afghanistan] (PDF)
25319 *[http://www.ArianaNet.com/ News Service latest News about Afghanistan, Discussion board]
25320
25321 *[http://www.washingtonpost.com/wp-srv/world/asia/centralasia/afghanistan/returntoafghanistan/returntoafghanistan.htm Return to Afghanistan] - A series of short films by the Washington Post on the New Afghanistan
25322 *[http://www.mod.uk/rcds/bashir.htm British Royal College for Defense Studies analyses and proposes a war in August 2001]
25323 * [http://www.geopium.org Geopium: Geopolitics of Illicit Drugs in Asia (Afghanistan and Burma)]
25324 * [http://topics.developmentgateway.org/afghanistan Development Gateway's Afghanistan Reconstruction Portal]
25325 * [http://www.afghanan.net/index.php Afghanan Dot Net]
25326 * [http://www.AfghanMania.com Afghanistan Portal]
25327 * [http://www.sabawoon.com Sabawoon Online]
25328 * [http://www.afghan-web.com/index.html Afghanistan Online]
25329 * [http://www.afghanischerkulturverein.de/en/wirUeberUns_en.php Informative links and glossary about Afghanistan]
25330 * [http://www.whatisindia.com/issues/afghanis/index.html Afghanistan Portal on The Indian Analyst] Index of News, Analysis, and Opinion from many sources
25331 * [http://www.bh.org.il/Communities/Archive/Afghanistan.asp The Jews of Afghanistan]
25332 * [http://www.akdn.org AKDN]
25333 * [http://www.faizani.com Islam Way Online - Your Religion and Spirituality Portal] Books written by the celebrated Afghan Scholar [[Mawlana Faizani]]
25334 * [http://www.auaf.edu.af American University of Afghanistan]
25335 * [http://numismondo.com/pm/afg Afghanistan Paper Money]
25336 {{SAARC}}
25337
25338 {{Link FA|no}}
25339
25340
25341 [[Category:Afghanistan| ]]
25342 [[Category:Central Asian countries]]
25343 [[Category:Landlocked countries]]
25344 [[Category:Middle Eastern countries]]
25345 [[Category:Near Eastern countries]]
25346 [[Category:SAARC members]]
25347 [[af:Afghanistan]]
25348 [[als:Afghanistan]]
25349 [[an:AfganistÃĄn]]
25350 [[ar:ØŖŲØēاŲ†ØŗØĒاŲ†]]
25351 [[ast:AfganistÃĄn]]
25352 [[bg:АŅ„ĐŗĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25353 [[bs:Afganistan]]
25354 [[ca:Afganistan]]
25355 [[cs:AfghÃĄnistÃĄn]]
25356 [[cy:Afghanistan]]
25357 [[da:Afghanistan]]
25358 [[de:Afghanistan]]
25359 [[el:ΑĪ†ÎŗÎąÎŊΚĪƒĪ„ÎŦÎŊ]]
25360 [[eo:Afganio]]
25361 [[es:AfganistÃĄn]]
25362 [[et:Afganistan]]
25363 [[fa:اŲØēاŲ†ØŗØĒاŲ†]]
25364 [[fi:Afganistan]]
25365 [[fr:Afghanistan]]
25366 [[fur:Afghanistan]]
25367 [[fy:Afganistan]]
25368 [[ga:An AfganastÃĄin]]
25369 [[gd:Afghanistan]]
25370 [[gl:AfganistÃĄn - اŲØēاŲ†ØŗØĒاŲ†]]
25371 [[gu:āĒ…āĒĢāĒ˜āĒžāĒ¨āĒŋāĒ¸āĢāĒ¤āĒžāĒ¨]]
25372 [[he:אפגניסטן]]
25373 [[hi:ā¤…ā¤Ģā¤—ā¤žā¤¨ā¤ŋā¤¸āĨā¤¤ā¤žā¤¨]]
25374 [[hr:Afganistan]]
25375 [[ht:Afganistan]]
25376 [[hu:AfganisztÃĄn]]
25377 [[ia:Afghanistan]]
25378 [[id:Afganistan]]
25379 [[io:Afganistan]]
25380 [[is:Afganistan]]
25381 [[it:Afghanistan]]
25382 [[ja:ã‚ĸフã‚Ŧニ゚ã‚ŋãƒŗ]]
25383 [[ka:ავáƒĻანეთი]]
25384 [[ko:ė•„í”„ę°€ë‹ˆėŠ¤íƒ„]]
25385 [[ku:Afganistan]]
25386 [[la:Afgania]]
25387 [[lb:Afghanistan]]
25388 [[li:Afganistan]]
25389 [[lt:Afganistanas]]
25390 [[lv:Afganistāna]]
25391 [[ml:ā´…ā´Ģāĩā´—ā´žā´¨ā´ŋā´¸āĩā´Ĩā´žā´¨āĩâ€]]
25392 [[mo:АŅ„ĐŗĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25393 [[ms:Afghanistan]]
25394 [[na:Afganistan]]
25395 [[nds:Afghanistan]]
25396 [[nl:Afghanistan]]
25397 [[nn:Afghanistan]]
25398 [[no:Afghanistan]]
25399 [[os:АŅ„ĐŗŅŠĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25400 [[pl:Afganistan]]
25401 [[ps:اŲØēاŲ†ØŗØĒاŲ†]]
25402 [[pt:AfeganistÃŖo]]
25403 [[ro:Afganistan]]
25404 [[ru:АŅ„ĐŗĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25405 [[sa:ā¤…ā¤Ģā¤—ā¤žā¤¨ā¤¸āĨā¤Ĩā¤žā¤¨]]
25406 [[scn:Afganistàn]]
25407 [[se:Afghanistan]]
25408 [[simple:Afghanistan]]
25409 [[sk:Afganistan]]
25410 [[sl:Afganistan]]
25411 [[sq:Afganistani]]
25412 [[sr:АвĐŗĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25413 [[sv:Afghanistan]]
25414 [[ta:āŽ†āŽĒā¯āŽ•āŽžāŽŠāŽŋāŽ¸ā¯āŽ¤āŽžāŽŠā¯]]
25415 [[tg:АŅ„Ō“ĐžĐŊиŅŅ‚ĐžĐŊ]]
25416 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸ąā¸Ÿā¸ā¸˛ā¸™ā¸´ā¸Ēā¸–ā¸˛ā¸™]]
25417 [[tk:Owganystan]]
25418 [[tl:Afghanistan]]
25419 [[tr:Afganistan]]
25420 [[udm:АŅ„ĐŗĐ°ĐŊиŅŅ‚Đ°ĐŊ]]
25421 [[uk:АŅ„ĐŗĐ°ĐŊŅ–ŅŅ‚Đ°ĐŊ]]
25422 [[vi:Afghanistan]]
25423 [[zh:é˜ŋå¯Œæą—]]
25424 [[zh-min-nan:Afghanistan]]</text>
25425 </revision>
25426 </page>
25427 <page>
25428 <title>Albania</title>
25429 <id>738</id>
25430 <revision>
25431 <id>42150547</id>
25432 <timestamp>2006-03-04T03:47:37Z</timestamp>
25433 <contributor>
25434 <ip>68.43.190.132</ip>
25435 </contributor>
25436 <text xml:space="preserve">{{Infobox_Country|
25437 |native_name = Republika e ShqipÃĢrisÃĢ
25438 |common_name = Albania
25439 |image_flag = Flag of Albania.svg
25440 |image_coat = Albania state emblem.png|150px
25441 |image_map = LocationAlbania.png
25442 |national_motto = (not verified) Feja e Shqiptarit ÃĢshtÃĢ Shqiptaria ([[Albanian language|Albanian]]: The faith of the Albanian is Albanianism)
25443 |national_anthem = [[Hymni i Flamurit]]
25444 |official_languages = [[Albanian language|Albanian]]
25445 |capital = [[Tirana]]
25446 |latd=41 |latm=20 |latNS=N |longd=19 |longm=48 |longEW=E
25447
25448 |largest_city = [[Tirana]]
25449 |government_type = emerging [[democracy]]
25450 |leader_titles = &amp;bull; [[List of Presidents of Albania|President]] &lt;br&gt;&amp;bull; [[List of Prime Ministers of Albania|Prime Minister]]
25451 |leader_names = &amp;bull; [[Alfred Moisiu]] &lt;br&gt;&amp;bull; [[Sali Berisha]]
25452 |area_rank = 139th
25453 |area_magnitude = 1 E10
25454 |area = 28,748
25455 |areami² = 11,100 &lt;!--Do not remove--&gt;
25456 |percent_water = 4.7
25457 |population_estimate = 3,563,112
25458 |population_estimate_year = 2005
25459 |population_estimate_rank = 126
25460 |population_census =
25461 |population_census_year =
25462 |population_density = 123
25463 |population_densitymi² = 318.6 &lt;!--Do not remove--&gt;
25464 |population_density_rank = 63
25465 |GDP_PPP_year = 2003
25466 |GDP_PPP = $15.7 billion
25467 |GDP_PPP_rank = 112th
25468 |GDP_PPP_per_capita = $4,900
25469 |GDP_PPP_per_capita_rank = 105th
25470 |HDI_year = 2003
25471 |HDI = 0.780
25472 |HDI_rank = 72nd
25473 |HDI_category = &lt;font color=&quot;#FFCC00&quot;&gt;medium&lt;/font&gt;
25474 |sovereignty_type = [[Independence]]
25475 |established_events =
25476 |established_dates = From [[Ottoman Empire]] &lt;br&gt;&amp;nbsp;[[November 28]], [[1912]]
25477 |currency = [[Lek (currency)|Lek]]
25478 |currency_code = ALL
25479 |country_code = al
25480 |time_zone = [[Central European Time|CET]]
25481 |utc_offset = +1
25482 |time_zone_DST = [[Central European Summer Time|CEST]]
25483 |utc_offset_DST = +2
25484 |cctld = [[.al]]
25485 |calling_code = 355
25486 |footnotes =
25487 }}
25488 ''This article is about Albania, the country on the Adriatic coast of the Balkans. For other historic uses, see [[Albania (disambiguation)]].
25489
25490 '''Albania''' ([[Albanian language|Albanian]]: ''Republika e ShqipÃĢrisÃĢ'', [[International Phonetic Alphabet|IPA]] {{IPA|[ɾɛpublika ɛ ʃciəpəɾisə]}}) is a [[Mediterranean]] country in southeastern [[Europe]]. It is bordered by [[Serbia and Montenegro]] in the north, the [[Republic of Macedonia]] in the east, and [[Greece]] in the south; it has a coast on the [[Adriatic Sea]] in the west, and a coast on the [[Ionian Sea]] in the southwest. The country is an emerging [[democracy]] and is formally named the '''Republic of Albania'''.
25491
25492 == History ==
25493 ''Main articles: [[Illyria]], [[Illyricum]], [[Dalmatia]], [[History of Albania]].''
25494
25495 The earlier inhabitants were probably part of the pre-Indo-European populace that occupied the coastline of most parts of the Mediterranean. Their physical remains are scarce though, and concentrated on the coastal region. Soon, these first inhabitants were overrun by the Proto-Hellenic tribes that gradually occupied modern-day Greece, southern parts of what is now the Former Yugoslav Republic of Macedonia and the south of present-day Albania. This process was completed over the second millennium BC and did not really affect northern or central Albania, an area that at the time presented the image of a political vacuum (in essence a historical paradox).
25496
25497 Historians do not agree over the origin of the [[Illyrians]]. Some of them maintain that the Illyrians descended from the pre-Indo-European [[Pelasgians]], while most scholars place them in the later wave of Indo-European invasions. Their presence can be traced back to 900 BC, when their political structure was formulated in the [[7th century BC|7th]] and [[6th century BC|6th]] centuries BC. Excellent metal craftsmen and fierce warriors, the Illyrians formed warlord based kingdoms that fought amongst themselves for most of their history. Only during the 6th century did the Illyrians venture significant raids against their immediate neighbours: the kingdom of the [[Molossians]] in southern Albania, the kingdom of [[Macedon]], and the kingdom of [[Paionia]].
25498
25499 Besides warfare, the [[Illyrians]] were also peaceful traders of agricultural products and metal works. The [[Illyrian]] culture was heavily influenced by the [[Ancient Greece|Greek]] culture (mainly the south Illyrian tribes). Albania is also the site of several ancient [[Ancient Greece|Greek]] colonies.
25500
25501 === Macedonian Rule ===
25502 Probably their most important success was the slaughter of [[Perdiccas III of Macedon|Perdiccas III]], king of Macedon. Unfortunately for the [[Illyrians]], [[Perdiccas]] was succeeded by [[Philip II of Macedon|Philip II]], father of [[Alexander the Great]], who effectively terminated the [[Illyrian]] aggression, effectively ending any dominant control by the [[Illyrians]] in the region.
25503
25504 === Roman and Byzantine Rule ===
25505 After being conquered by the [[Roman Empire]], [[Illyria]] was reorganized as a [[Roman]] province, [[Illyricum]], later divided into the provinces of [[Dalmatia]] and [[Pannonia]], the lands comprising Albania mostly being included in [[Dalmatia]]. Later, the [[Byzantine Empire]] governed the region. It was also ruled by the [[Bulgarian Empire|Bulgarian]] and [[Serbian Empire]]. After centuries, use of the name ''Illyria'' to denote the region fell out of fashion.
25506
25507 === Ottoman Rule ===
25508 In the middle ages, the name ''Albania'' (see ''[[Origin and history of the name Albania]]'') began to be increasingly applied to the region now comprising the nation of Albania. From [[1443]] to [[1468]] [[Skanderbeg|Gjergj Kastrioti Skenderbeu]] led a successful resistance against the invading [[Ottomans]]. After the death of [[Skenderbeg]], resistance continued until [[1478]], although with only moderate success. The loyalties and alliances created and nurtured by [[Skenderbeg]] faltered and fell apart, and the [[Ottomans]] conquered the territory of Albania shortly after the fall of the [[castle]] [[Kruje]]. '''Albania''' then became part of the [[Ottoman Empire]]. Following this, many Albanians fled to neighboring [[Italy]], and the majority of the '''Albanian''' population that remained converted to [[Islam]]. They would remain a part of the [[Ottoman Empire]] until [[1912]].
25509
25510 === Effects of the Balkan Wars ===
25511 After the [[Balkan Wars|Second Balkan War]], the [[Ottomans]] were removed from Albania and there was a possibility of the lands being absorbed by [[Serbia]], and the southern tip by [[Greece]]. This decision angered the [[Italians]] who did not want [[Serbia]] to have an extended coastline, and it angered the [[German people|Germans]] who could build a railway to reach the Orient. [[Berlin]] then held discussions with [[Russia]] (the superpower in charge of [[Serbia]]) and with [[Greece]]. Eventually, it was decided that the country should not be divided but instead consolidated into the [[Principality]] of Albania under a German [[prince]],[[William of Wied]]. When the German [[prince]] was expelled by the [[Albanian]] people after 6 months as the self named &quot;King of Albania&quot;, [[Great Britain]], [[France]], and [[Italy]], as members the [[League of Nations]], wanted to divide the territory once and for all. Intervention by [[United States of America]] [[president]] [[Woodrow Wilson]] vetoed the vote and allowed Albania to retain its status. From [[1928]], the country was ruled by [[Zog of Albania|King Zog I]] until [[1938]] when it became a puppet of [[Italy]].
25512
25513 === World War II and Enver Hoxha Rule ===
25514 Albanian communists and nationalists actively fought a partisan war against the Italian and German invasions in WW II. Certain smaller organizations helped the foreign invaders, but it was the [[communists]] who took over after [[World War II]]. In November [[1944]] the communists gained control of the government under the leader of the resistance, [[Enver Hoxha]] . From [[1945]] until [[1990]] Albania had one of the most repressive governments in [[Europe]]. The [[communist party]] was created in [[1941]] with the help of [[Bolshevik]] [[Communist]] Parties. All those who opposed it were eliminated.
25515
25516 For the many decades under his domination, Hoxha created and destroyed relationships with Belgrade, Moscow, and China, always in his personal interests. The country was isolated, first from the West (Western Europe, North America and Australasia) and later even from the communist East.
25517
25518 === The Fall of Communism and Democratic Albania ===
25519
25520 In 1985, Enver Hoxha died and [[Ramiz Alia]] took his place. Initially, Alia tried to follow in Hoxha's footsteps, but in Eastern Europe changes had already started: [[Mikhail Gorbachev]] had appeared in the [[Soviet Union]] with new policies ([[Glasnost]] and [[perestroika]]). The Albanian totalitarian regime was under pressure from the [[United States|US]], Europe, and the anger and despair of its own people. After [[Nicolae Ceauşescu]] (the communist leader of [[Romania]]) was executed in a revolution, Alia knew he would be next if changes were not made. He signed the [[Helsinki Agreement]] (which was signed by other countries in 1975) that respected some [[human rights]]. He also allowed [[pluralism]], and even though his party won the election of 1991 it was clear that the change would not be stopped. In [[1992]] the general elections were won by the Democratic Party with 62% of the votes.
25521
25522 In the general elections of June, [[1996]] the Democratic Party tried to win an absolute majority and manipulated the results. In [[1997]] an epidemic of [[pyramid schemes]] sent shockwaves through the entire country's economy, and riots started. Police stations and military bases were looted of millions of weaponry, [[Kalashnikov]]s. Anarchy prevailed, and many cities were controlled by militia and less-organized armed citizens. Even US military advisors left the country for their own safety. In response to the anarchy, the Socialist Party won the early elections of [[1997]].
25523
25524 However, stability was far from being restored in the years after the 1997 riots. The power feuds raging inside the Socialist Party led to a series of short-lived Socialist governments. The country was flooded with refugees from neighboring [[Kosovo]] in [[1998]] and [[1999]]. In June, 2002, a compromise candidate, Alfred Moisiu, a former general and defense minister, was elected to succeed President Meidani. Parliamentary elections in July, [[2005]], brought back to power Sali Berisha, Leader of the Democratic Party, mostly owing to Socialist infighting and a series of corruption scandals plaguing the Nano government.
25525
25526 Since 1990 Albania has been diplomatically oriented towards the West, it was accepted to the Council of Europe and has requested membership of [[NATO]]. The work-force of Albania has continued to emigrate to Greece, Italy, Europe and North America. Corruption in the government is becoming more and more obvious. Any hope for a short and not too painful transition after Communism has long since been dashed.
25527
25528 == Politics ==
25529 ''Main article:'' [[Politics of Albania]]
25530
25531 The head of state is the president, who is elected by the ''[[Kuvendi]]'', or the Assembly of the Republic of Albania every 5 years. The main part of the Assembly's 140 members is elected every 4 years. 100 of the parliament's members are chosen by the people with a direct vote, while the other 40 members are chosen using a proportional system. The head of government is the Prime Minister who is assisted by a council of ministers. The Council of Ministers is selected by the Prime Minister (A process called &quot;forming the government&quot;) and then approved by a simple majority (71 votes) in the Assembly.
25532
25533 == Administrative divisions ==
25534 ''Main articles: [[Districts of Albania]] and [[Counties of Albania]]''
25535
25536 Albania is divided into 12 ''qark'' (county or prefecture), which are further divided into 36 ''rrethe'' (districts). The capital city, TiranÃĢ, has a special status. The districts are:
25537
25538 {|
25539 |-
25540 |
25541 *&lt;small&gt;1&lt;/small&gt; [[Berat District|Berat]]
25542 *&lt;small&gt;2&lt;/small&gt; [[BulqizÃĢ District|BulqizÃĢ]]
25543 *&lt;small&gt;3&lt;/small&gt; [[DelvinÃĢ District|DelvinÃĢ]]
25544 *&lt;small&gt;4&lt;/small&gt; [[Devoll District|Devoll]]
25545 *&lt;small&gt;5&lt;/small&gt; [[DibÃĢr District|DibÃĢr]]
25546 *&lt;small&gt;6&lt;/small&gt; [[DurrÃĢs District|DurrÃĢs]]
25547 *&lt;small&gt;7&lt;/small&gt; [[Elbasan District|Elbasan]]
25548 *&lt;small&gt;8&lt;/small&gt; [[Fier District|Fier]]
25549 *&lt;small&gt;9&lt;/small&gt; [[GjirokastÃĢr District|GjirokastÃĢr]]
25550 *&lt;small&gt;10&lt;/small&gt; [[Gramsh District|Gramsh]]
25551 *&lt;small&gt;11&lt;/small&gt; [[Has District|Has]]
25552 *&lt;small&gt;12&lt;/small&gt; [[KavajÃĢ District|KavajÃĢ]]
25553 |
25554 *&lt;small&gt;13&lt;/small&gt; [[KolonjÃĢ District|KolonjÃĢ]]
25555 *&lt;small&gt;14&lt;/small&gt; [[KorçÃĢ District|KorçÃĢ]]
25556 *&lt;small&gt;15&lt;/small&gt; [[KrujÃĢ District|KrujÃĢ]]
25557 *&lt;small&gt;16&lt;/small&gt; [[KuçovÃĢ District|KuçovÃĢ]]
25558 *&lt;small&gt;17&lt;/small&gt; [[KukÃĢs District|KukÃĢs]]
25559 *&lt;small&gt;18&lt;/small&gt; [[Kurbin District|Kurbin]]
25560 *&lt;small&gt;19&lt;/small&gt; [[LezhÃĢ District|LezhÃĢ]]
25561 *&lt;small&gt;20&lt;/small&gt; [[Librazhd District|Librazhd]]
25562 *&lt;small&gt;21&lt;/small&gt; [[LushnjÃĢ District|LushnjÃĢ]]
25563 *&lt;small&gt;22&lt;/small&gt; [[MalÃĢsi e Madhe District|MalÃĢsi e Madhe]]
25564 *&lt;small&gt;23&lt;/small&gt; [[MallakastÃĢr District|MallakastÃĢr]]
25565 *&lt;small&gt;24&lt;/small&gt; [[Mat District|Mat]]
25566 |
25567 *&lt;small&gt;25&lt;/small&gt; [[MirditÃĢ District|MirditÃĢ]]
25568 *&lt;small&gt;26&lt;/small&gt; [[Peqin District|Peqin]]
25569 *&lt;small&gt;27&lt;/small&gt; [[PÃĢrmet District|PÃĢrmet]]
25570 *&lt;small&gt;28&lt;/small&gt; [[Pogradec District|Pogradec]]
25571 *&lt;small&gt;29&lt;/small&gt; [[PukÃĢ District|PukÃĢ]]
25572 *&lt;small&gt;30&lt;/small&gt; [[SarandÃĢ District|SarandÃĢ]]
25573 *&lt;small&gt;31&lt;/small&gt; [[ShkodÃĢr District|ShkodÃĢr]]
25574 *&lt;small&gt;32&lt;/small&gt; [[Skrapar District|Skrapar]]
25575 *&lt;small&gt;33&lt;/small&gt; [[TepelenÃĢ District|TepelenÃĢ]]
25576 *&lt;small&gt;34&lt;/small&gt; [[TiranÃĢ District|TiranÃĢ]]
25577 *&lt;small&gt;35&lt;/small&gt; [[TropojÃĢ District|TropojÃĢ]]
25578 *&lt;small&gt;36&lt;/small&gt; [[VlorÃĢ District|VlorÃĢ]]
25579 |
25580 [[Image:AlbaniaNumberedDistricts.png|150px|right|Districts of Albania]]
25581 |}
25582
25583 See also: [[List of cities in Albania]] (''Note: some cities have the same name as the district they are in'').
25584
25585 == Geography ==
25586 ''Main article: [[Geography of Albania]]''
25587
25588 [[Image:Albania map.png|frame|Map of Albania]]
25589
25590 Albania consists of mostly [[hill]]y and [[mountain]]ous terrain, the highest mountain, Korab in the district of Dibra reaching up to 2,753 metres (9,032&amp;nbsp;[[foot (unit of length)|ft]]). The country mostly has a continental [[climate]], with cold [[winter]]s and hot [[summer]]s.
25591
25592 Besides capital city [[Tirana]], with 800,000 inhabitants, the principal cities are [[DurrÃĢs]], [[Elbasan]], [[ShkodÃĢr]], [[GjirokastÃĢr]], [[VlorÃĢ]] and [[KorçÃĢ]]. In Albanian grammar a word can have indefinite and definite forms, and this also applies to city names: so both TiranÃĢ and Tirana, ShkodÃĢr and Shkodra are used.
25593
25594 == Economy ==
25595 ''Main article: [[Economy of Albania]]''
25596
25597 In Albania, half of the economically-active population still engaged in [[agriculture]] and a fifth works abroad.
25598
25599 The country has almost no exports, and imports most if its goods from Greece and Italy. Money for imports comes from financial aid and from the money that [[immigrant]]s working abroad - mostly in neighbouring Greece - bring to Albania. This is a good [[status quo]] business for both Greece and Italy.
25600
25601 Albania's coastline on the Ionian Sea, near the Greek tourist island of [[Corfu]], is becoming increasingly popular with foreign visitors due to its relatively unspoilt nature and good beaches. However, the tourist industry is still in its infancy.
25602
25603 Growth was strong 2003-05 and inflation is not a problem.
25604
25605 GDP(purchasing power parity): 18.05 billion
25606 Note: Albania has a large gray economy that may be as large as 50% of official GDP. (2005 est.)
25607
25608 GDP (official exchange rate): 8.741 billion (2005 est.)
25609
25610 GDP (real growth rate): 6% (2005 est.)
25611
25612 GDP- composition by sector:
25613 agriculture: 23.6%
25614 industry: 20.5%
25615 services: 55.9% (2005 est.)
25616
25617 Exports: 708 million f.o.b. (2005 est.)
25618
25619 Imports: 2.473 billion f.o.b. (2005 est.)
25620
25621 Aid per Capita: 52 US$
25622
25623 External Debt: 1.41 billion (2003 est.)
25624
25625 Defence Expenditure: (n/a)
25626
25627 Children in Labour Force: 1 % of children aged 10-14 work
25628
25629 == Demographics ==
25630 ''Main article: [[Demographics of Albania]]''
25631
25632 Most of the population is ethnically Albanian (95% according to the [[CIA World Factbook]] Feb 2005), there is a [[Greece|Greek]] minority (3% of the population), this however could significally vary according to other sources, (note: in 1989, other estimates of the Greek population ranged from 1% (official Albanian statistics) to 12% (from a Greek organization) [http://www.cia.gov/cia/publications/factbook/geos/al.html#People]). Many ethnic Albanians also live in the bordering countries of [[Serbia and Montenegro]] (around 1,850,000; of that, around 1,800,000 in [[Serbia]] (around 1,700,000 in its province called [[Kosovo]] (officially [[Kosovo and Metohia]]) only) and around 50,000 in [[Montenegro]]) and the [[Republic of Macedonia]] (around 500,000) although a lot of Albanians believe that the number might be higher. Also a small number of ethnic Albanians live in Greece which are called Çam. Claims over Çam numbers have ranged from 90,000 to over one 1,000,000 but are believed to be understated because Athens has not considered the local Albanians to be a separate ethnic group.[http://www.frosina.org] Since [[1991]], large numbers of Albanians have emigrated, both legally and illegally, to [[Greece]] and [[Italy]].
25633
25634 The language is [[Albanian language|Albanian]], although [[Greek language|Greek]] is also spoken by the Greek minority in the southern regions of the country.
25635
25636 At the height of the Ottoman occupation, the majority of [[Albanians]] were mostly [[Muslim]] (70%), even though religion was prohibited during the communist era. The Albanian government proclaimed Albania the only officially atheistic country in the world. After the fall of the Communist Regime in 1989-1990 religions were reinstated. According to 1939 statistics, the [[Albanian Orthodox Church|Albanian Orthodox]] (20%) and [[Roman Catholic Church]] (10%) would be the other main religions in Albania. Religious fanaticism has never been a serious problem, with people from different religions living in peace and even getting married although this was not considered to be an optimal solution. 20% of the total Muslim population is [[Bektashi]], people who follow a faith originating in the Turkish migrations into Turkey, and came to Albania through the Ottoman [[Janissary|Janissaries]]. It has outwardly Shi'ite Islamic elements, but is really a Shamanic-Pantheistic faith.
25637
25638 == Culture ==
25639 ''Main article: [[Culture of Albania]]''
25640 *[[Albanian Literature]]
25641 *[[Cuisine of Albania]]
25642 *[[Music of Albania]]
25643 *[[Sport in Albania]]
25644 *[[Radio Televizioni Shqiptar]]
25645 *[[Top-Channel|Top-Channel TV]]
25646
25647 == Miscellaneous topics ==
25648 *[[List of Albania-related articles]]
25649 *[[List of Albanians]]
25650 *[[Islam in Albania]]
25651 *[[Albanian mythology]]
25652 *[[Beslidhja Skaut Albania]]
25653 *[[List of sovereign states]]
25654 *[[Communications in Albania]]
25655 *[[Education in Albania]]
25656 *[[Foreign relations of Albania]]
25657 *[[Military of Albania]]
25658 *[[Transportation in Albania]]
25659 *[[Public holidays in Albania]]
25660 *[[List of Albanian-Americans]]
25661 *[[ArbÃĢreshÃĢ|Albanians in Italy]]
25662 *[[Butrint National Park]]
25663 *[[The Jewish Community of Albania]]
25664 *[[Albanian-Actors]]
25665
25666 == External links ==
25667 {{sisterlinks|Albania}}
25668 *[http://www.vlora.it/ News and Fun from Albania] Albanian Language
25669 *[http://www.fotw.us/flags/al-index.html#pol List of Abanian flags] throughout history
25670 *[http://www.balkanforums.com Albania and the Balkans] Discussion Forum
25671 *[http://www.geocities.com/protoillyrian Albanian Etymological Dictionary]
25672 *[http://www.cia.gov/cia/publications/factbook/geos/al.html CIA - The World Factbook -- Albania] - [[CIA]]'s Factbook on Albania
25673 *[http://www.albanian.com/community/index.php General information on Albanians]
25674 *[http://www.gksoft.com/govt/en/al.html More links of the Albanian government]
25675 *[http://www.albaniafoto.com/en/ Albania Pictures]
25676 *[http://www.albeu.com An Albanian news portal] (in Albanian)
25677 *[http://www.opic.gov/links/countryInfo.asp?country=Albania&amp;region=euro OPIC Guide on Albania]
25678 *[http://www.travelconsumer.com/countries/albania.htm Travel guide to Albania]
25679 *[http://hotelkalemi.tripod.com Guide to Gjirokaster]
25680 *[http://www.freeworldmaps.net/europe/albania/map.html Map of Albania]
25681 *[http://vlib.iue.it/history/europe/albania.html WWW-VL: History: Albania]
25682
25683 ===Official government websites===
25684 *[http://www.albca.com/aclis Albanian Canadian League Information Service - ACLIS] ([[Albanian language|Albanian]] and [[English language|English]])
25685 *[http://www.tanmarket.com/php TanPortal Albanian Social Economic] ([[Albanian language|Albanian]])
25686 *[http://www.albca.com Albanian Canadian League - ACL] ([[Albanian language|Albanian]] and [[English language|English]])
25687 *[http://www.km.gov.al/english/default.asp Department of Information] ([[Albanian language|Albanian]] and [[English language|English]])
25688 *[http://www.parlament.al The Albanian Parliament] ([[Albanian language|Albanian]], [[English language|English]] and [[French language|French]])
25689 *[http://www.president.al Presidency of Albania] ([[Albanian language|Albanian]] and [[English language|English]])
25690 *[http://www.instat.gov.al Albanian Institute of Statistics] ([[Albanian language|Albanian]] and [[English language|English]])
25691
25692 {{Europe}}
25693
25694 [[Category:Albania| ]]
25695
25696 [[af:AlbaniÃĢ]]
25697 [[als:Albanien]]
25698 [[ang:Albania]]
25699 [[ar:ØŖŲ„باŲ†ŲŠØ§]]
25700 [[an:Albania]]
25701 [[roa-rup:Albanii]]
25702 [[ast:Albania]]
25703 [[bg:АĐģйаĐŊиŅ]]
25704 [[zh-min-nan:ShqipÃĢria]]
25705 [[be:АĐģŅŒĐąĐ°ĐŊŅ–Ņ]]
25706 [[bn:āĻ†āĻ˛āĻŦā§‡āĻ¨āĻŋāĻ¯āĻŧāĻž]]
25707 [[bs:Albanija]]
25708 [[ca:Albània]]
25709 [[chr:ᎠᎸᏇᏂᏯ]]
25710 [[cs:AlbÃĄnie]]
25711 [[cy:Albania]]
25712 [[da:Albanien]]
25713 [[de:Albanien]]
25714 [[et:Albaania]]
25715 [[el:ΑÎģβιÎŊÎ¯Îą]]
25716 [[es:Albania]]
25717 [[eo:Albanio]]
25718 [[eu:Albania]]
25719 [[fa:ØĸŲ„باŲ†ÛŒ]]
25720 [[fo:Albania]]
25721 [[fr:Albanie]]
25722 [[fy:Albaanje]]
25723 [[fur:Albanie]]
25724 [[gd:Albàinia]]
25725 [[gl:Albania - ShqipÃĢria]]
25726 [[ko:ė•Œë°”니ė•„]]
25727 [[ht:Albani]]
25728 [[hy:ÔąÕŦÕĸÕĄÕļÕĢÕĄ]]
25729 [[hi:ā¤…ā¤˛āĨā¤Ŧā¤žā¤¨ā¤ŋā¤¯ā¤ž]]
25730 [[hr:Albanija]]
25731 [[io:Albania]]
25732 [[id:Albania]]
25733 [[ia:Albania]]
25734 [[is:Albanía]]
25735 [[it:Albania]]
25736 [[he:אלבניה]]
25737 [[ka:ალბანეთი]]
25738 [[kw:Albani]]
25739 [[ku:Elbanya]]
25740 [[la:Albania]]
25741 [[lv:Albānija]]
25742 [[lt:Albanija]]
25743 [[lb:Albanien]]
25744 [[li:AlbaniÃĢ]]
25745 [[hu:AlbÃĄnia]]
25746 [[mk:АĐģйаĐŊиŅ˜Đ°]]
25747 [[mg:Albania]]
25748 [[mt:Albanija]]
25749 [[ms:Albania]]
25750 [[na:Albania]]
25751 [[nl:AlbaniÃĢ]]
25752 [[nds:Albanien]]
25753 [[ja:ã‚ĸãƒĢバニã‚ĸ]]
25754 [[no:Albania]]
25755 [[nn:Albania]]
25756 [[oc:Albania]]
25757 [[ps:اŲ„باŲ†ŲŠØ§]]
25758 [[pl:Albania]]
25759 [[pt:AlbÃĸnia]]
25760 [[ro:Albania]]
25761 [[ru:АĐģйаĐŊиŅ]]
25762 [[se:AlbÃĄnia]]
25763 [[sa:ā¤…ā¤˛āĨā¤Ŧā¤žā¤¨ā¤ŋā¤¯ā¤ž]]
25764 [[sq:ShqipÃĢria]]
25765 [[simple:Albania]]
25766 [[sk:AlbÃĄnsko]]
25767 [[sl:Albanija]]
25768 [[sr:АĐģйаĐŊиŅ˜Đ°]]
25769 [[fi:Albania]]
25770 [[sv:Albanien]]
25771 [[tl:Albanya]]
25772 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨āšā¸­ā¸Ĩāš€ā¸šāš€ā¸™ā¸ĩā¸ĸ]]
25773 [[tr:Arnavutluk Cumhuriyeti]]
25774 [[uk:АĐģйаĐŊŅ–Ņ]]
25775 [[zh:é˜ŋå°”åˇ´å°ŧäēš]]
25776 [[fiu-vro:Albaania]]</text>
25777 </revision>
25778 </page>
25779 <page>
25780 <title>Allah</title>
25781 <id>740</id>
25782 <revision>
25783 <id>42136152</id>
25784 <timestamp>2006-03-04T01:35:06Z</timestamp>
25785 <contributor>
25786 <username>Jossi</username>
25787 <id>60449</id>
25788 </contributor>
25789 <minor />
25790 <comment>Reverted edits by [[Special:Contributions/71.122.164.153|71.122.164.153]] ([[User talk:71.122.164.153|talk]]) to last version by El C</comment>
25791 <text xml:space="preserve">{{Islam}}
25792 :''For a king of [[Anglo-Saxon]] England, see [[Aella of Deira]] or [[Aelle II of Northumbria]] or [[Aelle of Sussex]].''
25793 :''Men's names &lt;u&gt;Allah-ed-din&lt;/u&gt; and similar are misspellings for [[Ala-ud-din]]; and see [[Arabic name#Mistakes made by Europeans and other non-Arabs|here]] for other sorts of error.''
25794 The word '''{{ArabDIN|Allāh}}''' is the [[Arabic language|Arabic]] term for &quot;[[God]]&quot;. In other languages, it is often used to refer specifically to the [[Islamic concept of God]]: see &quot;[[#Usage|Usage]]&quot; below.
25795
25796 ==Etymology==
25797 ===Usage===
25798 {{Arabicterm|اŲ„Ų„Ų‡|Allah, Allāh|The God}}
25799 Although, outside the Arab world, use of the word ''Allāh'' is most often associated with [[Islam]], it is not exclusive to that faith; [[Arab Christians]] and various Arabic-speaking [[Jew]]s (including the [[Teimanim]], several {{ArabDIN|[[Mizrahi Jews|Mizraá¸Ĩi]]}} communities and some [[Sephardim]]) also use it to refer to the [[monotheist]] [[deity]]. Arabic translations of the [[Bible]] also employ it, as do [[Roman Catholic Church|Roman Catholics]] in [[Malta]] (who pronounce it as &quot;Alla&quot;), [[Christians]] in [[Indonesia]], who say &quot;Allah Bapa&quot; (God the Father) and Christians in the [[Middle East]] who use the [[Aramaic language|Aramaic]] &quot;Allāha&quot;.
25800
25801 ===&quot;Allah&quot; as a word===
25802 Many [[Linguistics|linguists]] believe that the term ''Allāh'' is derived from a contraction of the Arabic words ''al'' (the) and ''ʞilāh'' (deity, masculine form) - ''al-ilāh'' meaning &quot;the god.&quot; In addition, one of the main pagan goddesses of pre-Islamic Arabia, [[Allat|Allāt]] (''al'' + ''ʞilāh'' + ''at'', or 'the goddess'), is cited as being [[Etymology|etymologically]] (though not synchronically) the feminine linguistic counterpart to the grammatically masculine Allāh. If so, the word ''Allāh'' is an abbreviated title, meaning 'the deity', rather than a name. For this reason, both Muslim and non-Muslim scholars often translate Allāh directly into [[English language|English]] as 'God'; this also explains why Arabic-speaking Jews and Christians freely refer to God as Allāh. However, some Muslim scholars feel that &quot;Allāh&quot; should not be translated, because they perceived the Arabic word to express the uniqueness of &quot;Allāh&quot; more accurately than the word &quot;god&quot;, which can take a plural &quot;gods&quot;, whereas the word &quot;Allāh&quot; has no plural form. This is a significant issue in [[translation of the Qur'an]].
25803 [[Image:Allah.jpg|thumb|right|200px|An example of ''{{ArabDIN|allāh}}'' written in simple [[Arabic calligraphy]].]]
25804
25805 The word ''Allāh'' is always written without an [[alif]] to spell the ''ā'' vowel. This is because the spelling was settled before Arabic spelling started habitually using [[alif]] to spell ''ā''. However, in vocalized spelling, a diacritic ''alif'' is added on top of the ''[[shadda|shaddah]]'' to indicate pronunciation. One exception is in the pre-Islamic [[History of the Arabic alphabet#Pre-Islamic Arabic inscriptions|Zabad inscription]], where it is spelled اŲ„اŲ‡.
25806
25807 [[Unicode]] has glyph reserved for Allah, {{ar|īˇ˛}} = U+FDF2, which can be combined with an alif to yield the post-consonantal form, {{ar|اīˇ˛}}, as opposed to the full spelling ''alif-lām-lām-hā'' {{ar|اŲ„Ų„Ų‡}} which may be rendered slightly differently, in particular featuring a diacritic ''alif'' on top of the ''shadda''. In this, Unicode imitates traditional Arabic typesetting, which also frequently featured special ''llāh'' types.
25808
25809 Also In ''[[Abjad numerals]]'', [[The Name Of Allah (&amp;#1575;&amp;#1604;&amp;#1604;&amp;#1607;) ]] numeric value is [[66]].
25810
25811 ==Islamic use of &quot;Allāh&quot;==
25812 From the point of view of traditional [[Islam]]ic [[theology]], Allāh is the most precious name of God because it is not a descriptive name like other [[Ninety-nine names of Allah|ninety-nine names of God]], but the name of God's own presence. Muslims believe that the name of Allah had existed before the time of [[Adam and Eve|Adam]]. It is the same God worshipped by [[Adam and Eve|Adam]], [[Noah]], [[Abraham]], [[Moses]], [[Jesus]], [[Muhammad]] and other [[prophets of Islam]]. In Islam, there is only one God and Muhammad is the last messenger.
25813
25814 The emphasis in Islamic culture on reciting the [[Qur'an]] in [[Arabic language|Arabic]] has resulted in ''Allāh'' often being used by [[Muslim]]s world-wide as the word for ''God'', regardless of their [[native language]]. Out of 114 [[Sura]]s in the [[Qur'an]], 113 begin with the [[Basmala]] (&quot;Bismi 'llāhi 'r-rahmāni 'r-rahÄĢm&quot; بØŗŲ… اŲ„Ų„Ų‡ اŲ„ØąØ­Ų…Ų† اŲ„ØąØ­ŲŠŲ…) which means &quot;In the name of God, the most kind, the most merciful&quot;.
25815 [[Muslim]]s, when referring to the name, often add the words &quot;Subhanahu wa Ta`ala&quot; after it, meaning &quot;Glorified and Exalted is He&quot; as a sign of reverence, or &quot;`Azza wa Jalla&quot; (ØšØ˛ Ųˆ ØŦŲ„). The entire religion of [[Islam]] is based on the idea of getting closer to God. Although commonly referred to as a &quot;He&quot;, God is considered genderless, but there is no [[neuter gender]] to express this in the Arabic language. When Greek or other [[Polytheism|polytheistic]] deities are discussed in Arabic, it is customary to use the expression ''ilāh'', a &quot;deity&quot; or lower-case &quot;god&quot;; sometimes the word ''ma`bÅĢd'', literally meaning &quot;worshipped [entity]&quot;, is used instead.
25816
25817 ===Uses of &quot;Allāh&quot; in phrases===
25818 There are many [[List of Arabic phrases#Phrases with Allah's name|phrases]] that contain the word Allāh:
25819 *[[Allahu Akbar|Allāhu Akbar]] (اŲ„Ų„Ų‡ ØŖŲƒØ¨Øą) (God is the greatest)
25820 *[[A'uzu billahi minashaitanir rajim]] (I seek refuge in Allah from Shaitan, the damned)
25821 *[[Basmala|Bismi-llāh]] (بØŗŲ… اŲ„Ų„Ų‡) (In the name of God)
25822 *[[Insha'Allah|Inshā'Allāh]] (ØĨŲ† Ø´Ø§ØĄ اŲ„Ų„Ų‡) (God-willing)
25823 :also the origin of the common [[Spanish language|Spanish]] [[interjection]] &quot;OjalÃĄ&quot;, which shares a similar meaning.
25824 :probably also the origin of the [[Portuguese (language)|Portuguese]] interjection ''OxalÃĄ'', &quot;let's hope for it&quot; or &quot;let's hope that...&quot;.
25825 *[[Yā Allāh]] (ŲŠØ§ اŲ„Ų„Ų‡)(Oh God)
25826 :may be the origin of the Spanish and Portuguese [[exclamation]] &quot;OlÊ!&quot;.
25827 *[[Masha Allah|Mā shā' Allāh]] (Ų…ا Ø´Ø§ØĄ اŲ„Ų„Ų‡) ([Look at] what God has willed!)
25828 *[[Subhan'allah|Subhān Allāh]] (ØŗبحاŲ† اŲ„Ų„Ų‡) (Glory be to God)
25829 *[[alhamdulillah|al-Hamdu li-llāh]] (اŲ„Ø­Ų…د Ų„Ų„Ų‡) (All praise be to God)
25830 *[[Allāhu A`alam]] (اŲ„Ų„Ų‡ ØŖØšŲ„Ų…) (God knows best)
25831 *[[Jazaka Allāhu khayran]] (ØŦØ˛Ø§Ųƒ اŲ„Ų„Ų‡ ØŽŲŠØąØ§Ų‹) (May God reward you for your deeds)
25832
25833 &quot;Allāh&quot; appears in a stylized form on the [[flag of Iran]], in the phrase &quot;Allāhu Akbar&quot; on the [[flag of Iraq]], and as part of the [[shahadah|shahādah]] on the [[flag of Saudi Arabia]].
25834
25835 &quot;Allah&quot; is not correctly used as a man's name. See [[Arabic name#Mistakes made by Europeans and other non-Arabs]].
25836
25837 ==Islamic concept of God==
25838 {{main|Islamic concept of God}}
25839
25840 The Islamic concept of mankind's place in the universe hinges on the notion that '''[[Allāh]]''', or '''[[God]]''', is the only true [[reality]]. There is nothing permanent other than Him. God is considered eternal and &quot;uncreated&quot;, whereas everything else in the universe is &quot;created.&quot; The Qur'an describes Him in [[Sura 112]]: &quot;Say: He is Allāh, [[Singular]]. Allāh, the Absolute. He begetteth not nor was begotten. And to Him have never been one equal.&quot; (see [[Tawhid]] for more). The Qur'an condemns and mocks the pre-Islamic Arabs for attributing daughters to Allāh ([[sura 53]]:19.)
25841
25842 Muslims believe that Allāh, or [[God]], is the only true God who deserves to be worshipped. This belief must be accompanied by the acknowledgement that Mohammad was a true prophet of God who was chosen to guide people to believing and worshipping God in the correct manner. God is considered eternal and uncreated; with no beginning, whereas everything else in the universe is created with a beginning. The Qur'an mentions, (approximated in English) [[Sura 112]]: &quot;Say: He is Allāh, Without partner. Allāh, the Absolute. He begetteth not nor was begotten. And to Him have never been one equal.&quot; (see [[Tawhid]] for more).
25843
25844 God is considered by Muslims to be [[Omnipotence|omnipotent]], [[Omnipresence|omnipresent]], and [[Omniscience|omniscient]]. In the Qur'an, God is described as being fully aware of everything that happens in the universe, and knows all things. God also knows what is in people's hearts and minds at all times. It is mentioned in the Qur'an (approximately), &quot;And He it is Who takes your souls at night (in sleep), and He knows what you acquire in the day, then He raises you up therein that an appointed term may be fulfilled; then to Him is your return, then He will inform you of what you were doing. ([[sura 6]]:60)&quot;
25845
25846 Placing God inside his creation, or suggesting that nature or creation simultaneously co-exist in God or vice versa, as in other religious traditions, completely compromises exclusive Islamic monotheism. Attributing a partner, spouse, father, son, daughter, mother or other relation(s) to Allah, literally or metaphorically, partially or completely, is considered unquestionably blasphemous by Muslims.
25847
25848 Therefore, Muslims consider it blasphemous to describe Jesus (or another man, woman child etc) as 'Son of God' whether literally or metaphorically. Similarly, Muslims do not believe that God resembles a man (old or young), woman, half man half woman, half man half animal , bird, elephant or other animal or other creation. It is forbidden for Muslims to view God [[anthropomorphism|anthropomorphically]].
25849
25850 Allah does not resemble any of his creations in any way whatsoever. Allah is not attributed with shape, colour, size, position, location, direction and indeed all of these attributes are found in the creatures Allah created.
25851
25852 Further, Muslims do not believe that Allah is located in a place, whether on Earth, below the Earth, in the Sky, above the Sky, on a Throne above the Sky or all of these places at once or anywhere else or everywhere, but rather, God exists without a place (given he created all places and locations) and the perfectness of his existence is not compromised by his existence not being bound to a created (by Allah) place or location.
25853
25854 God is attributed with complete perfection in his attributes and is free from any defects or any imperfections. Allah is attributed (amongst other attributes) with oneness (without a partner in God's self or attributes), non-beginningness, eternalness, complete freedom from needing others (i.e. each or any of his creations), complete power to do all things, Will (to do as he wills, as and when God decides without any obstruction), knowledge, (of all things simultaneously, past, present and future) hearing (of all sounds without needing any implement or organ to hear), sight (without needing eyes or any other organ or instrument nor light rays to illuminate an area or an object), life (unlike the human or other life which is created and limited, but that which befits him with no beginning or end), speech (unlike the human, created speech which is constituted of languages, letters and sounds but rather an eternal speech which is not a creation but an attribute of God) and the complete non-resemblence of any creation in his self or attributes.
25855
25856 ==History==
25857 It was used in pre-Islamic times by Pagans within the Arabian peninsula to signify the supreme creator. Pre-Islamic Jews referred to their supreme creator as [[Yahweh]] or [[Elohim]]. The pagan Arabs recognized &quot;Allāh&quot; as the supreme God in their [[Pre-Islamic mythology|pantheon]]; along with Allah, however, the pre-Islamic Arabs believed in a host of other gods, such as [[Hubal]] and 'daughters of Allāh' (the three daughters associated were [[Al-lat|al-Lāt]], [[Al-Uzza|al-`Uzzah]], and [[Manah]]) (Encyclopedia of World Mythology and Legend, ''&quot;The Facts on File&quot;'', ed. Anthony Mercatante, [[New York]], [[1983]], I:61). This view of Allah by the pre-Islamic pagans is viewed by Muslims as a latter development having arisen as a result of moving away from Abrahamic monotheism over time. Some of the names of these pagan gods are said to be derived from the descendants of Noah, whom latter generations firstly revered as saints, and then transformed into gods (although non-Muslims often view polytheism as having come before monotheism). The pagan Arabians also used the word &quot;Allāh&quot; in the names of their children; [[Muhammad]]'s father, who was born into pagan society, was named &quot;`Abdullāh&quot;, which translates &quot;servant of Allāh&quot;. &quot;`Abdullāh&quot; is still used for names of Muslim and non-Muslim arabs.
25858
25859 The [[Hebrew language|Hebrew]] word for deity, [[Names of God in Judaism#El|El]] (אל) or [[Names of God in Judaism#Elohim|Elōah]] (אלוה), was used as an [[Old Testament]] synonym for [[Yahweh]] (יהוה), which is the proper name for the Jewish God according to the [[Tanakh]]. The [[Aramaic]] word for God is ''alôh-ô'' ([[Syriac]] dialect) or elÃĸhÃĸ (Biblical dialect), which comes from the same Proto-[[Semitic languages|Semitic]] word (''*ĘžilÃĸh-'') as the Arabic and Hebrew terms; [[Jesus]] is described in [[Gospel of Mark|Mark]] 15:34 as having used the word on the cross, with the ending meaning &quot;my&quot;, when saying, &quot;My God, my God, why hast thou forsaken me?&quot; (transliterated in Greek as ''elō-i''). One of the earliest surviving translations of the word into a foreign language is in a [[Greek language|Greek]] translation of the [[Shahada]], from 86-96 AH ([[705]]-[[715]] AD), which translates it as ''ho theos monos''[http://www.islamic-awareness.org/History/Islam/Papyri/enlp1.html], literally &quot;the one god&quot;. Also the cognate Aramaic term appears in the Aramaic version of the ''New Testament'', called the [[Pshitta]] (or Peshitta) as one of the words Jesus used to refer to God, e.g., in the sixth Beatitude, &quot;Blessed are the pure in heart for they shall see Alāha.&quot; And in the Arabic Bible the same words ([[Matthew 5:8|Mt 5:8]]): &quot;ØˇŲŲˆØ¨ŲŽŲ‰ Ų„ØŖŲŽŲ†Ų’Ų‚ŲŲŠŲŽØ§ØĄŲ اŲ„Ų’Ų‚ŲŽŲ„Ų’بŲØŒ ŲŲŽØĨŲŲ†ŲŽŲ‘Ų‡ŲŲ…Ų’ ØŗŲŽŲŠŲŽØąŲŽŲˆŲ’Ų†ŲŽ اŲ„Ų„Ų‡&quot;
25860
25861 ==Other beliefs==
25862 [[The Nation of Gods and Earths]], one of the many sects created as the result of black separatist movements in the United States, holds that the word &quot;Allāh&quot; is the name of the original black man and stands for &quot;Arm, Leg, Leg, Arm, Head&quot;. [http://web.archive.org/web/20041019023127/http://www.ibiblio.org/nge/] [http://www.usatoday.com/news/opinion/2002-10-29-oped-goldblatt_x.htm] This concept is alien to mainstream Islam, which strictly opposes any attempt to portray Allāh as a human or in any other way. Mainstream Islam also prohibits attibuting divine qualities to, worshipping, or glorifying anything other than Allāh.
25863
25864 The [[BahÃĄ'í Faith]], whose [[:Category:BahÃĄ'í texts|scriptures]] are primarily written in [[Arabic]] and [[Farsi]], also uses '''Allah''' to mean God, though in practice the customary word for God in the local language is typically used when speaking in that language. Some particular uses are not translated, but the Arabic phrase is used. The chief example of this would be the BahÃĄ'í customary greeting '''AllÃĄh'u'abhÃĄ''' which is commonly translated as ''God is the All Glorious''.
25865
25866 ==See also==
25867 *[[God]]
25868 *[[Islam]]
25869 *[[99 Names of God]]
25870 *[[Muhammad]]
25871 *[[Monotheism]]
25872
25873 ==External Links==
25874 *[http://www.faizani.com/portal/allah.html Islam Way Online - Your Religion and Spirituality Portal] For further discussion on Allah, the word's etymology, and the Islamic concept
25875
25876
25877 [[Category:Islam]]
25878 [[Category:Arabian deities]]
25879 [[Category:Deities]]
25880 [[Category:Quran]]
25881 [[Category:Singular God]]
25882 [[Category:Aqidah]]
25883
25884 [[af:Allah]]
25885 [[ar:اŲ„Ų„Ų‡]]
25886 [[bs:Allah]]
25887 [[ca:Al¡là]]
25888 [[da:Allah]]
25889 [[de:Allah]]
25890 [[et:Allah]]
25891 [[es:AlÃĄ]]
25892 [[fa:اŲ„Ų„Ų‡]]
25893 [[fr:Allah]]
25894 [[ko:ė•Œëŧ]]
25895 [[id:Allah]]
25896 [[is:Allāh]]
25897 [[it:Allah]]
25898 [[hu:Allah]]
25899 [[ms:Allah]]
25900 [[nl:Allah]]
25901 [[ja:ã‚ĸッナãƒŧフ]]
25902 [[no:Allah]]
25903 [[nn:Allah]]
25904 [[pl:Allah]]
25905 [[pt:AlÃĄ]]
25906 [[ru:АĐģĐģĐ°Ņ…]]
25907 [[simple:Allah]]
25908 [[sr:АĐģĐ°Ņ…]]
25909 [[fi:Allah]]
25910 [[sv:Allah]]
25911 [[tt:Allah]]
25912 [[th:ā¸­ā¸ąā¸Ĩā¸Ĩā¸­ā¸Ģā¸ē]]
25913 [[tr:Allah]]
25914 [[uk:АĐģĐģĐ°Ņ…]]
25915 [[zh:厉拉]]</text>
25916 </revision>
25917 </page>
25918 <page>
25919 <title>Antarctica</title>
25920 <id>741</id>
25921 <revision>
25922 <id>42159026</id>
25923 <timestamp>2006-03-04T05:16:48Z</timestamp>
25924 <contributor>
25925 <username>Piotrus</username>
25926 <id>59002</id>
25927 </contributor>
25928 <minor />
25929 <comment>/* Gondwana breakup */</comment>
25930 <text xml:space="preserve">{{featured article}}
25931 {| border=1 align=right cellpadding=4 cellspacing=0 width=250 style=&quot;margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;&quot;
25932 |+&lt;big&gt;&lt;big&gt;'''Antarctica'''&lt;/big&gt;&lt;/big&gt;
25933 | align=center colspan=2 style=&quot;background:#f9f9f9;&quot; |
25934 [[Image:Flag of Antarctica.svg|left|100px]]
25935
25936 [[Image:LocationAntarctica.png|250px|Location of Antarctica]]
25937 |-
25938 | '''Area''' || 14,000,000&amp;nbsp;km² (280,000&amp;nbsp;km² ice-free, 13,720,000&amp;nbsp;km² ice-covered)
25939 |-
25940 | '''Population''' || ~1,000 (none permanent)
25941 |-
25942 | '''Government''' || None, governed by the [[Antarctic Treaty System]]
25943 |-
25944 | '''Partial Territorial claims''' || {{ARG}} &lt;br&gt; {{AUS}} &lt;br&gt; {{CHL}} &lt;br&gt; {{FRA}} &lt;br&gt; {{NZL}} &lt;br&gt; {{NOR}} &lt;br&gt; {{GBR}}
25945 |-
25946 | '''Internet [[Top-level domain|TLD]]''' || [[.aq]]
25947 |-
25948 | '''Calling Code''' || +672
25949 |}
25950
25951 :''For the [[Kim Stanley Robinson]] novel, see [[Antarctica (novel)]]''
25952 '''Antarctica''' ([[Greek language|Greek]], ''antarktikos'': &quot;opposite the [[Arctic]]&quot;&lt;ref&gt;Henry George Liddell, Robert Scott, ''A Greek-English Lexicon '' [http://www.perseus.tufts.edu/cgi-bin/ptext?doc=Perseus:text:1999.04.0057:entry=%239514 &quot;antarktikos&quot;]. Retrieved February 12, 2006.&lt;/ref&gt;) is a [[continent]] encircling the [[Earth|Earth's]] [[South Pole]], surrounded by the [[Southern Ocean]] and divided in two by the [[Transantarctic Mountains]]. It is a [[desert|cold desert]] and, on average, the coldest place on Earth. 98% of the continent is covered by [[ice]]. Its 14 million&amp;nbsp;km&amp;sup2; make it the fifth largest continent and the world's largest [[desert]]. There are no permanent human residents, and only cold-adapted plants and animals survive there, including [[penguins]], [[fur seals]], [[lichen]]s, and hundreds of types of [[algae]].
25953
25954 Although myths and speculation about a ''[[Terra Australis]]'' (&quot;Southern Land&quot;) go back to antiquity, the first commonly accepted sighting of the continent occurred in 1820 and the first verified landing in 1821 by the [[Russia]]n expedition of [[Mikhail Lazarev]] and [[Fabian Gottlieb von Bellingshausen]]. The continent had been largely neglected in the 19th century because of its hostile environment, lack of efficient resources, and its isolated location.
25955
25956 Antarctica is not under the political sovereignty of any nation, although seven countries ([[Argentina]], [[Australia]], [[Chile]], [[France]], [[Norway]], [[New Zealand]] and the [[United Kingdom]]) maintain territorial claims. Most other countries do not recognise these claims, and the claims of Argentina, Chile and the United Kingdom all overlap. Its usage is regulated by the [[Antarctic Treaty]], signed in 1959 by 12 countries, which prohibits any military activity, supports scientific research, and protects the continent's [[ecozone]]. Ongoing experiments are conducted yearly by more than 4,000 scientists of diverse backgrounds and interests.
25957
25958 ==Exploration==
25959 {{main|History of Antarctica}}
25960
25961 [[Image:Shackleton expedition.jpg|left|thumb|210px|''The Endurance'' at night during [[Ernest Shackleton]]'s [[Imperial Trans-Antarctic Expedition]] in 1914.]]
25962 In the Western world, beliefs in a ''[[Terra Australis]]''—a vast continent located in the far south of the globe to &quot;balance&quot; out the northern lands of Europe, Asia and north Africa—had existed for centuries. Even by late in the 17th century, after explorers had found that [[South America]] and [[Australia]] were not part of &quot;Antarctica&quot;, geographers believed the continent was much larger than its true size. European maps continued to show this land until [[Captain]] [[James Cook]] and the crews of his expedition's ships, ''[[HMS Resolution (Cook)|Resolution]]'' and ''[[HMS Adventure (1771)|Adventure]]'', crossed the [[Antarctic Circle]] on [[January 17]], [[1773]] and again in 1774.&lt;ref&gt;The Mariners' Museum [http://www.mariner.org/educationalad/ageofex/cook.php ''Age of Exploration - James Cook'']. Retrieved February 12, 2006.&lt;/ref&gt;
25963
25964 The first confirmed sighting of Antarctica cannot be accurately attributed to one single person. It can, however, be narrowed down to three individuals. According to various organizations (the [[National Science Foundation]],&lt;ref&gt;National Science Foundation. [http://www.nsf.gov/pubs/1997/antpanel/antpan05.pdf History of Antarctica] Retrieved February 6, 2006.&lt;/ref&gt; [[NASA]],&lt;ref&gt;NASA, U.S. Government [http://quest.arc.nasa.gov/antarctica/background/NSF/palmer.html Palmer biography] Retrieved February 6, 2006.&lt;/ref&gt; the [[University of California, San Diego]],&lt;ref&gt;University of California, San Diego [http://arcane.ucsd.edu/pstat.html Palmer Station] Retrieved February 5, 2006.&lt;/ref&gt; and other sources&lt;ref&gt;South-Pole [http://www.south-pole.com/p0000052.htm An Antarctic Time Line : 1519 - 1959]. Retrieved February 12, 2006&lt;/ref&gt;&lt;ref&gt;Polar Radar for Ice Sheet Measurements. [http://ku-prism.org/polarscientist/timeline/antarcticexplorers1800.html Antarctic Explorers Timeline: Early 1800s]. Retrieved February 12, 2006.&lt;/ref&gt;), three men all sighted Antarctica within days or weeks of each other: [[Fabian von Bellingshausen]] (a captain in the Russian Imperial Navy), [[Edward Bransfield]] (a captain in the British navy), and [[Nathaniel Palmer]] (an American sealer out of Stonington, Connecticut). Bransfield supposedly saw Antarctica on [[January 27]], [[1820]], three days before Palmer sighted land. It is certain that on [[January 28]], [[1820]] the expedition led by [[Fabian von Bellingshausen]] and [[Mikhail Petrovich Lazarev]] on two ships reached a point within 32&amp;nbsp;km (20&amp;nbsp;miles) of the Antarctic mainland and saw ice fields there.
25965
25966 In 1841 explorer [[James Clark Ross]] sailed through what is now known as the [[Ross Sea]] and discovered [[Ross Island]]. He sailed along a huge wall of ice that was later named the [[Ross Ice Shelf]]. [[Mount Erebus]] and [[Mount Terror (Antarctica)|Mount Terror]] are named after two ships from his expedition: ''[[HMS Erebus (1826)|HMS Erebus]]'' and ''[[HMS Terror (1813)|HMS Terror]]''.&lt;ref&gt;[http://www.south-pole.com/p0000081.htm James Clark Ross] South-Pole - Exploring Antarctica. Retrieved February 12, 2006.&lt;/ref&gt;
25967
25968 During an [[expedition]] by [[Ernest Shackleton]], parties led by [[T. W. Edgeworth David]] became the first to climb [[Mount Erebus]] and to reach the [[South Magnetic Pole]].&lt;ref&gt;Australian Antarctic Division. [http://www.aad.gov.au/default.asp?casid=6660 ''Tannatt William Edgeworth David''] Retrieved February 7, 2006.&lt;/ref&gt; On [[December 14]], [[1911]], a party led by Norwegian polar explorer [[Roald Amundsen]] from the ship ''[[Fram]]'' became the first to reach the [[South Pole]], using a route from the [[Bay of Whales]] and up the [[Axel Heiberg Glacier]].&lt;ref&gt;South-pole [http://www.south-pole.com/p0000101.htm ''Roald Amundsen''] South-Pole - Exploring Antarctica. Retrieved February 9, 2006.&lt;/ref&gt;
25969
25970 After [[Robert Falcon Scott]]'s journey, [[Richard Evelyn Byrd]] led several voyages to the Antarctic by plane in the 1930s and 1940s. He is credited with implementing mechanized land transport and conducting extensive geological and biological research.&lt;ref&gt;70South. [http://www.70south.com/resources/antarctic-history/explorers/richardbyrd/ Richard Byrd]. Retrieved February 12, 2006.&lt;/ref&gt; However, it was not until [[October 31]], [[1956]] that anyone set foot on the South Pole again; on that day a U.S. Navy group led by Rear Admiral [[George Dufek]] successfully landed on an aircraft.&lt;ref&gt;U.S. Navy. [http://www.history.navy.mil/wars/datesoct.htm Dates in American Naval History: October]. Retrieved February 12, 2006.&lt;/ref&gt;
25971
25972 ==Geography==
25973 {{Main|Geography of Antarctica}}
25974
25975 [[Image:Antarctica satellite orthographic.jpg|thumb|150px|A satellite composite image of Antarctica]]
25976 The continent of Antarctica is located mostly south of the [[Antarctic Circle]], surrounded by the [[Southern Ocean]]. Antarctica is the southernmost [[land mass]] on Earth comprising more than 14 million&amp;nbsp;km&amp;sup2; making it the 5th largest continent. The coastline measures 17,968&amp;nbsp;km. Physically, Antarctica is divided in two by the [[Transantarctic Mountains]] close to the neck between the [[Ross Sea]] and the [[Weddell Sea]]. The portion of the [[continent]] west of the Weddell Sea and east of the Ross Sea is called [[Western Antarctica]] and the remainder [[Eastern Antarctica]], because they correspond roughly to the Eastern and Western Hemispheres relative to the [[Greenwich meridian]]. Western Antarctica is covered by the [[West Antarctic Ice Sheet]]. About 98 percent of Antarctica is covered by an [[ice sheet]] that is, on average, 2.5 kilometers thick. [[Vinson Massif]], the highest peak in Antarctica at 4,892&amp;nbsp;meters, is located in the [[Ellsworth Mountains]]. The [[West Antarctic Ice Sheet]] has been of recent concern because of the slight possibility of its collapse. If it does break down, [[Sea level change|ocean level]]s would rise by a few meters in a relatively short period of time. Despite its zero rainfall in some areas, the continent has approximately 90% of the world's fresh water--in the form of ice.&lt;ref name=&quot;cia&quot;&gt;Central Intelligence Agency [http://www.cia.gov/cia/publications/factbook/geos/ay.html Factbook] Retrieved February 6, 2006.&lt;/ref&gt;
25977 [[Image:Mt erebus.jpg|thumb|left|[[Mt. Erebus]], an active volcano in [[Ross Island]].]]
25978 Although Antarctica is home to many volcanoes, only [[Deception Island]] and [[Mt. Erebus]] are active. Mount Erebus, located in [[Ross Island]], is the southernmost active volcano on Earth. Minor eruptions are frequent and lava flow has been observed in recent years. Other dormant volcanoes may potentially be active.&lt;ref&gt;British Antarctic Survey. [http://www.antarctica.ac.uk/About_Antarctica/Rock/Volcanoes.html Volcanoes]. Retrieved February 13, 2006.&lt;/ref&gt; In 2004, an underwater volcano was found in the [[Antarctic Peninsula]] by American and Canadian researchers. Recent evidence shows this unnamed volcano may be active.&lt;ref&gt;National Science Foundation. [http://www.nsf.gov/news/news_summ.jsp?cntn_id=100385 Scientists Discover Undersea Volcano Off Antarctica]. Retrieved February 13, 2006&lt;/ref&gt;
25979
25980 Antarctica is home to more than 70 [[lake]]s that lie thousands of metres under the surface of the continental ice sheet, including one under the South Pole itself. [[Lake Vostok]], discovered beneath [[Russia]]'s [[Vostok Station]] in 1996, is the largest of these [[subglacial lake]]s. It is believed that the lake has been sealed off for 35 million years. There is some evidence that Vostok's waters may contain [[microorganism|microbial life]]. Due to the lake's similarity to [[Europa]], a moon of [[Jupiter]], confirming that life can survive in Lake Vostok might strengthen the argument for the presence of life on Europa.&lt;ref&gt;National Science Foundation [http://www.nsf.gov/od/lpa/news/02/fslakevostok.htm Lake Vostok] Retrieved February 6, 2006.&lt;/ref&gt;&lt;ref&gt;NASA [http://astrobiology.arc.nasa.gov/stories/europa_vostok_0899.html Lake Vostok may teach us about Europa] Retrieved February 4, 2006.&lt;/ref&gt;
25981
25982 {{seealso|Extreme points of Antarctica|Antarctic territories}}
25983
25984 == Geology ==
25985 ===Gondwana breakup===
25986 More than 170 million years ago (Mya), Antarctica was part of the [[supercontinent]] [[Gondwana]]. [[Africa]] separated from Antarctica around 160 Mya follwed by [[India]] in the early Cretaceous (about 125 Mya). About 65 Mya, Antarctica (then still connected to [[Australia]]) had still tropical to subtropical climate, complete with a [[marsupial]] fauna, but by about 45 Mya [[Australia]]-[[New Guinea]] had separated from Antarctica and the first ice appeared. At around 25 Mya, due to the opening of the [[Drake Passage]] between Antarctica and [[South America]] and the resulting [[Antarctic Circumpolar Current]], the ice spread quickly, displacing the forests that then covered the continent. Since about 15 Mya, the continent has been mostly covered with ice.{{fact}}
25987 {{sect-stub}}
25988
25989 ==Climate==
25990 {{Main|Climate of Antarctica}}
25991
25992 [[Image:Lake Fryxell.jpg|thumb|left|225px|The [[Blue ice (glacial)|Blue ice]] covering [[Lake Fryxell]], in the [[Transantarctic Mountains]], comes from [[glacier|glacial]] meltwater from the [[Canada Glacier]] and other smaller glaciers.]]
25993 Antarctica is the coldest place on earth. Antarctica has little rainfall, with the South Pole getting none, making it a continental desert. Temperatures reach a minimum of between &amp;minus;85 and &amp;minus;90 degrees Celsius (&amp;minus;121 and &amp;minus;130 degrees Fahrenheit) in the winter and about 30&amp;nbsp;degrees higher in the summer months. Sunburn is often a health issue as the snow surface reflects over 90% of the sunlight falling on it.&lt;ref name=&quot;weather&quot;&gt;British Antarctic Survey. [http://www.antarctica.ac.uk/met/jds/weather/weather.htm ''Weather in the Antarctic''] Retrieved February 9, 2006.&lt;/ref&gt; Eastern Antarctica is colder than its western counterpart because of its higher elevation. [[Weather front]]s rarely penetrate far into the continent, leaving the center cold and dry. There is little [[precipitation (meteorology)|precipitation]] over the central portion of the continent, but [[ice]] there can last for extended time periods. However, heavy snowfalls are not uncommon on the coastal portion of the continent, where snowfalls of up to 1.22&amp;nbsp;meters (48&amp;nbsp;inches) in 48&amp;nbsp;hours have been recorded. At the edge of the continent, strong [[katabatic wind]]s off the polar plateau often blow at storm force. In the interior, however, wind speeds are often moderate. During summer more [[solar radiation]] reaches the surface at the South Pole than is received at the [[equator]] in an equivalent period.&lt;ref name=&quot;cia&quot; /&gt;
25994
25995 Depending on the latitude, long periods of constant darkness, or constant sunlight, mean that climates familiar to humans are not generally available on the continent. The [[aurora australis]], commonly known as the southern lights, is a glow observed in the night sky near the south pole. Another unique spectacle is [[diamond dust]]. Diamond dust refers to a ground-level cloud composed of tiny ice crystals. Diamond dust generally forms under otherwise clear or nearly clear skies, so people sometimes also refer to it as clear-sky precipitation. A [[sundog]], a frequent atmospheric [[optical phenomenon]], is a bright &quot;spot&quot; beside the true [[sun]].&lt;ref name=&quot;weather&quot; /&gt;
25996
25997 [[image:iceberg09.jpg|500px|thumb|center|Tabletop [[iceberg]]s in Antarctica]]
25998
25999 ==Population==
26000 {{seealso|Demographics of Antarctica}}
26001 [[Image:Antarctic researchers.jpg|thumb|Two American researchers studying [[plankton]] through [[microscope]]s.]]
26002 Although Antarctica has no permanent residents, a number of governments maintain permanent [[research station]]s throughout the continent. The population of persons doing and supporting science on the continent and its nearby islands varies from approximately 4,000 in summer to 1,000 in winter. Many of the stations are staffed around the year.
26003
26004 [[Emilio Marcos Palma]] was the first person born in Antarctica (Base Esperanza) in 1978, his parents being sent there along with seven other families by the Argentinean government to determine if family life was suitable in the continent. In 1986 Juan Pablo Camacho was born at the Presidente Eduardo Frei Montalva Base, becoming the first Chilean born in Antarctica. Several bases are now home to families with children attending schools at the station.&lt;ref&gt;''The Antarctic Sun'' [http://antarcticsun.usap.gov/oldissues2002-2003/answer.html Questions and answers] Retrieved February 9, 2006.&lt;/ref&gt;
26005
26006 ==Flora and fauna==
26007 {{seealso|Antarctic ecozone}}
26008 ===Flora===
26009 {{main|Antarctic flora}}
26010 [[Image:Lichen squamulose.jpg|thumb|left|More than 200 species of [[lichen]]s are known in Antarctica.]]
26011 The climate of Antarctica does not allow for much vegetation to exist. A combination of freezing temperatures, [[soil]] quality, lack of moisture and sunlight limit the chances for plants to exist. As a result, plant life is limited to mostly mosses and liverworts. The autotrophic community is made up of mostly [[protist]]s. The [[flora]] of the continent largely consists of [[lichen]]s, [[bryophyte]]s, [[algae]], and [[fungi]]. Growth generally occurs in the summer and only for a few weeks, at most.
26012
26013 There are more than 200 species of lichens and approximately 50 species of bryophytes, such as mosses. Seven hundred species of algae exist, most of which are [[phytoplankton]]. Multicolored [[snow algae]] and [[diatoms]] are especially abundant in the coastal regions during the summer. There are two species of flowering plants found in the Antarctic Peninsula: [[Antarctic hair grass]] and [[Antarctic pearlwort]].&lt;ref&gt;Australian Antarctic Division [http://www.aad.gov.au/default.asp?casid=5551 Antarctic Wildlife] Retrieved February 5, 2006.&lt;/ref&gt;
26014
26015 ===Fauna===
26016 [[Image:Emperor penguin.jpg|thumb|165px|[[Emperor Penguin]]s in [[Ross Sea]], Antarctica.]]
26017
26018 Land [[fauna (animals)|fauna]] is completely [[invertebrate]]. Such invertebrate life includes [[microscopic]] [[mite]]s, [[lice]], and [[springtail]]s. The [[midge]], just 12 [[millimeter|mm]] in size, is the largest land animal in Antarctica (other than man). The [[snow petrel]] is one of only three birds that breed exclusively in Antarctica and have been seen at the [[South Pole]].
26019
26020 A variety of marine animals exist, and they rely, directly or indirectly, on the phytoplankton. Antarctic sea life includes [[penguin]]s, [[blue whales]], and [[fur seal]]s. More specifically, the [[Emperor penguin]] is the only penguin that breeds during the winter in Antarctica. The [[AdÊlie Penguin]] breeds further south than any penguin. The [[Rockhopper penguin]] has distinctive feathers around the eyes; one could call them elaborate eyelashes. [[King penguin]]s are also predominant in the Antarctic. The [[Antarctic fur seal]] was very heavily hunted in the 18th and 19th centuries for its pelt by sealers from the United States and the United Kingdom. Antarctic krill, which congregate in large [[swarm|school]]s, is the [[keystone species]] of the [[ecosystem]] of the [[Southern Ocean]], and is an important food organism for whales, seals, [[leopard seal]]s, fur seals, [[squid]], [[icefish]], penguins, [[albatross]]es and many other birds.&lt;ref&gt;[http://www.knet.co.za/antarctica/fauna_and_flora.htm Creatures of Antarctica] Retrieved February 6, 2006.&lt;/ref&gt;
26021
26022 The approval of the [[Antarctic Conservation Act]] brought several restrictions to the continent. The introduction of alien plants or animals can bring a criminal penalty, as can the extraction of any indigenous species. The overfishing of krill, which plays a large role in the Antarctic ecosystem, led officials to enact regulations on fishing. The Convention for the Conservation of Antarctic Marine Living Resources (CCAMLR), a treaty enacted in 1980, requires that regulations managing all Southern Ocean fisheries consider potential effects on the entire Antarctic ecosystem.&lt;ref name=&quot;cia&quot; /&gt; Despite these new acts, unregulated and illegal fishing, particularly of [[Patagonian toothfish]], remains a serious problem. Particularly, the illegal fishing of toothfish has been increasing with estimates of 32,000&amp;nbsp;tonnes in 2000.&lt;ref&gt;BBC News. [http://news.bbc.co.uk/2/hi/science/nature/1492380.stm Toothfish at risk from illegal catches]. Retrieved February 11, 2006.&lt;/ref&gt;&lt;ref&gt;Australian Antarctic Division. [http://www.aad.gov.au/default.asp?casid=1539 Toothfish]. Retrieved February 11, 2006.&lt;/ref&gt;
26023 * [http://scilib.ucsd.edu/sio/nsf/fguide/index.html Underwater Field Guide to Ross Island &amp; McMurdo Sound, Antarctica]
26024
26025 ==Politics==
26026 Antarctica is considered a neutral territory in respect to politics. The [[Antarctic Treaty]], signed in 1959, and related agreements, collectively called the Antarctic Treaty System, regulate [[international relations]] with respect to Antarctica, Earth's only uninhabited continent. For the purposes of the treaty system, Antarctica is defined as all land and [[ice shelf|ice shelves]] south of the southern 60th [[circle of latitude|parallel]]. The treaty was signed by 12 countries, including the [[Soviet Union]] and the [[United States]], and set aside Antarctica as a scientific preserve, established freedom of scientific investigation, environmental protection, and banned military activity on that continent. This was the first [[arms control]] agreement established during the [[Cold War]]. The Antarctic Treaty prohibits any measures of a military nature in Antarctica, such as the establishment of military bases and fortifications, the carrying out of military maneuvers, or the testing of any type of weapon. It permits the use of military personnel or equipment for scientific research or for any other peaceful purposes.&lt;ref&gt;Scientific Committee on Antarctic Research. [http://www.scar.org/treaty/ ''Antarctic Treaty''] Retrieved February 9, 2006.&lt;/ref&gt;
26027
26028 Antarctica has no government. Various countries claim areas of it, but most countries do not recognize those claims. The area between 90 degrees west and 150 degrees west is the only land on Earth not claimed by any country.&lt;ref name=&quot;cia&quot; /&gt;
26029
26030 The only documented large-scale land military maneuver was &quot;[[OperaciÃŗn 90]]&quot;, undertaken 10 years before the Antarctic Treaty by the [[Military of Argentina|Argentinian military]].&lt;ref&gt;Antarctica Institute of Argentina. [http://www.dna.gov.ar/INGLES/DIVULGAC/ARGANT.HTM ''Argentina in Antarctica''] Retrieved February 9, 2006.&lt;/ref&gt;
26031
26032 The [[United States military]] issues the [[Antarctica Service Medal]] to military members or civilians who perform research duty on the Antarctica continent. The medal may include a winter-over bar issued to those who remain on the continent for two complete six-month seasons.&lt;ref&gt;U.S. Navy [http://www.history.navy.mil/medals/antarc.htm Antarctic Service Medal] Retrieved February 9, 2006.&lt;/ref&gt;
26033
26034 ===Antarctic territories===
26035 {{seealso|Antarctic territories}}
26036
26037 [[Image:antarctica.jpg|thumb|300px||Territorial claims of Antarctica]]
26038 {| class=&quot;wikitable&quot;
26039 !Flag
26040 !Territory
26041 !Claimant
26042 !Claim limits
26043 !Date
26044 |-
26045 |[[Image:Flag of France.svg|50px]]
26046 |[[Adelie Land]]
26047 |[[France]]
26048 |142°02'E to 136°'11'E
26049 |1924
26050 |-
26051 |[[Image:Flag of Argentina.svg|50px]]
26052 |[[Argentine Antarctica]]
26053 |[[Argentina]]
26054 |25°W to 74°W
26055 |1943
26056 |-
26057 |[[Image:Flag of Australia.svg|50px]]
26058 |[[ Australian Antarctic Territory]]
26059 |[[Australia]]
26060 |160°E to 142°02'E and 136°11'E to 44°38'E
26061 |1933
26062 |-
26063 |[[Image:Flag of Chile.svg|50px]]
26064 |[[AntÃĄrtica Chilena Province]]
26065 |[[Chile]]
26066 |53°W to 90°W
26067 |1940
26068 |-
26069 |[[Image:Flag of the British Antarctic Territory.png|50px]]
26070 |[[British Antarctic Territory]]
26071 |[[United Kingdom]]
26072 |20°W to 80°W
26073 |1908
26074 |-
26075 |[[Image:Flag of Norway.svg|50px]]
26076 |[[Dronning Maud Land]]&lt;br&gt;[[Peter I Island]]
26077 |[[Norway]]
26078 |44°38'E to 20°W&lt;br&gt; 68°50'S, 90°35'W
26079 |1939&lt;br&gt;1929
26080 |-
26081 |[[Image:Flag of New Zealand.svg|50px]]
26082 |[[Ross Dependency]]
26083 |[[New Zealand]]
26084 |150°W to 160°E
26085 |1923
26086 |}
26087
26088 The Argentinean, British and Chilean claims all overlap.
26089
26090 [[Germany]] also maintained a claim to Antarctica, known as [[New Swabia]] between 1939 and 1945. It was situated at 20°E and 10°W, overlapping Norway's claim.
26091
26092 ==Economy==
26093 {{main|Economy of Antarctica}}
26094 [[Image:Antarctic cod.jpg|thumb|The illegal capture and sale of the [[Patagonian toothfish]] has led to several arrests.]]
26095
26096 Although coal, hydrocarbons, iron ore, platinum, copper, chromium, nickel, gold and other minerals have been found, they exist in quantities too small to exploit. The 1991 [[Protocol on Environmental Protection to the Antarctic Treaty]] prevents such struggle for resources. In 1998 a compromise agreement was reached to add a 50-year ban on mining until the year 2048, further limiting economic development and exploitation. The primary agricultural activity is the capture and offshore trading of fish. Antarctic fisheries in 2000-01 reported landing 112,934 metric tons.&lt;ref name=&quot;cia&quot;&gt;&lt;ref&gt;Santa Barbara City College Biological Sciences [http://www.biosbcc.net/ocean/AAimportance.htm Importance of Antarctica] Retrieved February 5, 2006.&lt;/ref&gt;
26097
26098 Small-scale tourism has existed since 1957. As of 2006 several ships transport people into Antarctica for specific scenic locations. A total of 13,571 tourists visited in the 2002-03 antarctic summer with nearly all of them coming from commercial ships. The average stay is about two weeks.&lt;ref name=&quot;cia&quot;&gt;&lt;ref&gt;&lt;ref&gt;[http://www.knet.co.za/antarctica/political.htm Politics of Antarctica] Retrieved February 5, 2006.&lt;/ref&gt; Antarctic flights brought tourists from Australia and New Zealand until the fatal crash of [[Air New Zealand Flight 901]] in 1979 near [[Mount Erebus]].
26099
26100 ==Research==
26101 {{seealso|List of research stations in Antarctica}}
26102
26103 [[Image:Amundsen-Scott marsstation ray h edit.jpg|thumb|left|300px|A [[full moon]] and 25-second exposure allowed sufficient light into this photo taken at [[Amundsen-Scott South Pole Station]] during the long Antarctic night. The new station can be seen at far left, [[power plant]] in the center and the old mechanic's garage in the lower right.]]
26104 Each year, scientists from 27 different nations conduct [[experiment]]s not reproducible in any other place in the world but the Antarctic. In the summer more than 4,000 scientists operate [[research station]]s; this number decreases to nearly 1,000 in the winter.&lt;ref name=&quot;cia&quot; /&gt; The [[McMurdo Station]] is capable of housing more than a thousand scientists, visitors, and tourists.
26105
26106 Researchers include biologists, geologists, oceanographers, physicists, astronomers, glaciologists, and meteorologists. [[Geologist]]s tend to study plate tectonics in the Arctic region, meteorites from the [[outer space]], and resources from the breakup of the supercontinent [[Gondwanaland]]. [[Glaciologist]]s in Antarctica are concerned with the study of the history and dynamics of floating [[ice]], [[snow|seasonal snow]], [[glacier]]s, and [[ice sheet]]s. [[Biologist]]s, in addition to examining the wildlife, are interested in how harsh temperatures and the presence of people affect adaptation and survival strategies in a wide variety of organisms. [[Astrophysicist]]s in [[Amundsen-Scott South Pole Station]] are able to study the celestial dome and [[cosmic microwave background radiation]] because of the ozone hole and the location's dry, cold environment. Medical physicians have made discoveries concerning the spreading of viruses and the body's response to extreme seasonal temperatures.&lt;ref&gt;Antarctic Connection [http://www.antarcticconnection.com/antarctic/science/index.shtml Science in Antarctica] Retrieved February 4, 2006.&lt;/ref&gt;
26107
26108 Since the 1970s an important focus of study has been the [[ozone layer]] in the [[atmosphere]] above Antarctica. In 1998 [[NASA]] satellite data showed that the Antarctic [[ozone hole]] was the largest on record, covering 27&amp;nbsp;million square kilometers. In 2002 significant areas of ice shelves disintegrated in response to regional warming.&lt;ref name=&quot;cia&quot; /&gt;
26109
26110 [[Image:ALH84001.jpg|thumb|right|220px|Antarctic meteorite, named [[ALH84001]], from [[Mars]].]]
26111
26112 [[Meteorite]]s from Antarctica are a relatively recent resource for study of the material formed early in the [[solar system]]; most are thought to come from [[asteroid]]s, but some may have originated on larger [[planet]]s. The first meteorites in Antarctica were found in 1912. In 1969 the Japanese discovered nine meteorites in Antarctica. Most of these meteorites have fallen onto the [[ice sheet]] in the last one million years. Motion of the ice sheet tends to concentrate the meteorites at blocking locations such as mountain ranges, with wind erosion bringing them to the surface after centuries beneath accumulated snowfall. Compared with meteorites collected in more temperate regions on Earth, the Antarctic meteorites are relatively well preserved.&lt;ref name=&quot;meteorite&quot;&gt;NASA [http://www-curator.jsc.nasa.gov/antmet/index.cfm Meteorites from Antarctica] Retrieved February 9, 2006.&lt;/ref&gt;
26113
26114 This large collection of meteorites allows a better understanding of the abundance of meteorite types in the solar system and how meteorites relate to asteroids and comets. New types of meteorites and rare meteorites have been found. Among these meteorites are pieces blasted off the moon, and probably Mars, by impacts. These specimens, specifically [[ALH84001]] discovered by [[ANSMET]], are at the center of the controversy about possible evidence of microbial life on early Mars. Because meteorites in space absorb and record cosmic radiation, the time elapsed since the meteorite hit the Earth can be determined from laboratory studies. The elapsed time since fall, or terrestrial residence age, of a meteorite represents more information that might be useful in environmental studies of Antarctic ice sheets.&lt;ref name=&quot;meteorite&quot; /&gt;
26115
26116 ==See also==
26117 * [[List of antarctic and sub-antarctic islands]]
26118 * [[Antarctica ecozone]]
26119 * [[Antarctic Stamps]]
26120 * [[Antarctic Treaty System|Antarctic Treaty System]]
26121 * [[Argentine Antarctic Geopolitics]]
26122 * [[Brazil Antarctic Geopolitics]]
26123 * [[Chile Antarctic Geopolitics]]
26124 * [[Communications in Antarctica]]
26125 * [[Extreme points of Antarctica]]
26126 * [[Flags of Antarctica]]
26127 * ''[[Life in the Freezer]]'', a [[BBC]] natural history [[television]] series on life on and around Antarctica
26128 * [[Transportation in Antarctica]]
26129
26130 ==Footnotes==
26131 &lt;div style=&quot;font-size:90%;&quot;&gt;&lt;references /&gt;&lt;/div&gt;
26132
26133 ==External links==
26134 {{sisterlinks|Antarctica}}
26135 * [http://www.ats.aq Antarctic Treaty Secretariat]
26136 * [http://www.anetstation.com ANetStation] - radio station in Antarctica
26137 * [http://www.add.scar.org The Antarctic Digital Database - a source of digital topographic map data for Antarctica]
26138 * [http://www.aad.gov.au/ Australian Antarctic Division]
26139 * [http://www.antarctica.ac.uk British Antarctic Survey]
26140 * [http://www.planetavivo.org/english/ResearchPrograms/Antarctica/SlideShows/ArdleyIsland/ArdleyIsland1.html Biodiversity at Ardley Island, South Shetland archipelago, Antarctica]
26141 * [http://www.comnap.aq/ Council of Managers of National Antarctic Programs (COMNAP)], official homepage.
26142 * [http://www.awi-bremerhaven.de/Polar/index.html German Antarctic Ships and Stations]
26143 * [http://www.loc.gov/rr/international/frd/antarctica/antarctica.html Portals on the World - Antarctica] from the [[Library of Congress]]
26144 * [http://www.polarmuseum.sp.ru/Eng/ The Russian State Museum of Arctic and Antarctic]
26145 * [http://www.scar.org The Scientific Committee for Antarctic Research - coordinating body for Antarctic Science]
26146 * [http://www.cia.gov/cia/publications/factbook/geos/ay.html The World Factbook &amp;ndash; Antarctica] from the U.S. [[Central Intelligence Agency]]
26147 * [http://www.70south.com Latest Antarctic news and information by 70South]
26148 * [http://www.iaato.org International Association of Antarctic Tour Operators (IAATO)]
26149 * [http://www.usap.gov/ The United States Antartic Program]
26150 * [http://apc.mfa.government.bg Antarctic Place-names Commission of Bulgaria]
26151 * [http://www.geocities.com/peyre1347/ One of many journals by a tourist to Antarctica]
26152 {{Continent}}
26153 {{Region}}
26154
26155
26156 [[Category:Antarctica]]
26157 [[Category:Antarctica| ]]
26158 [[Category:Continents]]
26159 [[Category:Lists of coordinates]]
26160 [[Category:Outposts of Antarctica| ]]
26161 [[Category:Special territories]]
26162
26163 {{Link FA|de}}
26164 {{Link FA|ru}}
26165 {{Link FA|sl}}
26166
26167 [[an:Antartida]]
26168 [[ar:ØŖŲ†ØĒØ§ØąØĒŲŠŲƒØ§]]
26169 [[ast:AntÃĄrtida]]
26170 [[ba:АĐŊŅ‚Đ°Ņ€ĐēŅ‚иĐēĐ°]]
26171 [[be:АĐŊŅ‚Đ°Ņ€ĐēŅ‚Ņ‹Đ´Đ°]]
26172 [[bg:АĐŊŅ‚Đ°Ņ€ĐēŅ‚ида]]
26173 [[bn:āĻāĻ¨ā§āĻŸāĻžāĻ°ā§āĻ•āĻŸāĻŋāĻ•āĻž]]
26174 [[bs:Antarktik]]
26175 [[ca:Antàrtida]]
26176 [[cs:Antarktida]]
26177 [[cy:Antarctica]]
26178 [[da:Antarktis]]
26179 [[de:Antarktis]]
26180 [[el:ΑÎŊĪ„ÎąĪÎēĪ„ΚÎēÎŽ]]
26181 [[eo:Antarkto]]
26182 [[es:AntÃĄrtida]]
26183 [[eu:Antartika]]
26184 [[fa:ØŦŲ†ŲˆØ¨Ú¯Ø§Ų†]]
26185 [[fi:Etelämanner]]
26186 [[fo:Antarktis]]
26187 [[fr:Antarctique]]
26188 [[ga:Antartaice]]
26189 [[gl:AntÃĄrtida]]
26190 [[gu:āĒāĒ¨āĢāĒŸāĒžāĒ°āĢāĒ•āĒŸāĒŋāĒ•āĒž]]
26191 [[he:אנטארקטיקה]]
26192 [[hr:Antarktika]]
26193 [[hu:Antarktisz]]
26194 [[ia:Antarctica]]
26195 [[id:Antartika]]
26196 [[io:Antarktika]]
26197 [[is:Suðurskautslandið]]
26198 [[it:Antartide]]
26199 [[ja:南æĨĩ大陸]]
26200 [[ko:남극]]
26201 [[li:Antarctica]]
26202 [[lt:Antarktida]]
26203 [[lv:AntarktÄĢda]]
26204 [[mr:ā¤…ā¤‚ā¤Ÿā¤žā¤°āĨā¤•āĨā¤Ÿā¤ŋā¤•ā¤ž]]
26205 [[ms:Antartika]]
26206 [[nds:Antarktis]]
26207 [[nl:Antarctica]]
26208 [[nn:Antarktis]]
26209 [[no:Antarktika]]
26210 [[pl:Antarktyda]]
26211 [[pt:AntÃĄrtica]]
26212 [[ro:Antarctica]]
26213 [[ru:АĐŊŅ‚Đ°Ņ€ĐēŅ‚ида]]
26214 [[scn:Antartidi]]
26215 [[se:AntÃĄrktis]]
26216 [[simple:Antarctica]]
26217 [[sl:Antarktika]]
26218 [[sr:АĐŊŅ‚Đ°Ņ€ĐēŅ‚иĐē]]
26219 [[sv:Antarktis]]
26220 [[ta:āŽ…āŽŖā¯āŽŸāŽžāŽ°ā¯āŽŸāŽŋāŽ•ā¯āŽ•āŽž]]
26221 [[th:ā¸—ā¸§ā¸ĩā¸›āšā¸­ā¸™ā¸•ā¸˛ā¸ŖāšŒā¸ā¸•ā¸´ā¸ā¸˛]]
26222 [[tl:Antartika]]
26223 [[tr:Antarktika]]
26224 [[uk:АĐŊŅ‚Đ°Ņ€ĐēŅ‚ида]]
26225 [[vi:ChÃĸu Nam Cáģąc]]
26226 [[wa:Antartike]]
26227 [[yi:אַנטאַרקטיק×ĸ]]
26228 [[zh:å—æžæ´˛]]
26229 [[zh-min-nan:LÃĸm-keĖk-tāi-lioĖk]]</text>
26230 </revision>
26231 </page>
26232 <page>
26233 <title>Algorithms</title>
26234 <id>742</id>
26235 <revision>
26236 <id>15899261</id>
26237 <timestamp>2002-02-25T15:43:11Z</timestamp>
26238 <contributor>
26239 <ip>Conversion script</ip>
26240 </contributor>
26241 <minor />
26242 <comment>Automated conversion</comment>
26243 <text xml:space="preserve">#REDIRECT [[Algorithm]]
26244 </text>
26245 </revision>
26246 </page>
26247 <page>
26248 <title>Antigua And Barbuda</title>
26249 <id>743</id>
26250 <revision>
26251 <id>15899262</id>
26252 <timestamp>2002-02-25T15:51:15Z</timestamp>
26253 <contributor>
26254 <ip>Conversion script</ip>
26255 </contributor>
26256 <minor />
26257 <comment>Automated conversion</comment>
26258 <text xml:space="preserve">#REDIRECT [[Antigua and Barbuda]]
26259 </text>
26260 </revision>
26261 </page>
26262 <page>
26263 <title>Argentina</title>
26264 <id>744</id>
26265 <revision>
26266 <id>42158502</id>
26267 <timestamp>2006-03-04T05:11:09Z</timestamp>
26268 <contributor>
26269 <username>OneEuropeanHeart</username>
26270 <id>633536</id>
26271 </contributor>
26272 <minor />
26273 <comment>minor corrections</comment>
26274 <text xml:space="preserve">{{Otheruses}}
26275 {{Infobox_Country|
26276 native_name = RepÃēblica Argentina |
26277 common_name = Argentina |
26278 image_flag = Flag of Argentina.svg |
26279 image_coat = Argentina_coa.png |
26280 image_map = LocationArgentina.png |
26281
26282 national_motto = ''En UniÃŗn y Libertad''&lt;br&gt;([[English language|English]]: In Union and Liberty)|
26283 national_anthem = ''[[Argentine National Anthem|Himno Nacional Argentino]]'' |
26284 official_languages = [[Spanish language|Spanish]]|
26285 capital = [[Buenos Aires]] |
26286 latd=34|latm=20|latNS=S|longd=58|longm=30|longEW=W|
26287 largest_city = [[Buenos Aires]] |
26288 government_type= [[Democracy|Democratic]] [[Federal Republic]] |
26289 leader_titles = [[President of Argentina|President]]|
26290 leader_names = [[NÊstor Kirchner]] |
26291 area_rank = 8th |
26292 area_magnitude = 1_E12 |
26293 area=2,791,810*|
26294 areami² = 1,077,924*| &lt;!-- Do not remove --&gt;
26295 percent_water = 1.1 |
26296 population_estimate = 39,538,000 |
26297 population_estimate_year = 2005 |
26298 population_estimate_rank = 31st |
26299 population_census= 36,260,130|
26300 population_census_year= 2001|
26301 population_density = 13 |
26302 population_densitymi² = 33.7 | &lt;!-- Do not remove --&gt;
26303 population_density_rank= 165th|
26304 GDP_PPP_year=2005|
26305 GDP_PPP = US$ 537.2 billion [http://www.cia.gov/cia/publications/factbook/geos/ar.html#Econ]|
26306 GDP_PPP_rank =22nd |
26307 GDP_PPP_per_capita = US$ 14,087 |
26308 GDP_PPP_per_capita_rank = 52nd |
26309 HDI_year = 2003 |
26310 HDI = 0.863 |
26311 HDI_rank = 34th |
26312 HDI_category = &lt;font color=&quot;#009900&quot;&gt;high&lt;/font&gt; |
26313 sovereignty_type = [[Independence]]|
26314 established_events = - [[May Revolution]]&lt;br&gt; - Declared&lt;br&gt; - Recognised |
26315 established_dates = from [[Spain]]&lt;br&gt;[[25 May]] [[1810]]&lt;br&gt;[[9 July]] [[1816]]&lt;br&gt;in [[1821]] (by [[Portugal]]) |
26316 currency = [[Argentine Peso|Peso]] |
26317 currency_code = ARS |
26318 time_zone= ART |
26319 utc_offset= -3 |
26320 time_zone_DST= ARST |
26321 utc_offset_DST= -3 |
26322 cctld= [[.ar]] |
26323 calling_code = 54 |
26324 footnotes = &lt;sup&gt;*&lt;/sup&gt; Argentina also claims 1,000,000 km² of [[Antarctica]], the [[Falkland Islands]] and [[South Georgia and the South Sandwich Islands]]. For a total of 3,761,274 sq.&amp;nbsp;km (1,452,236&amp;nbsp;sq&amp;nbsp;mi).
26325 }}
26326 {{wiktionarypar|Argentina}}
26327
26328 The '''Argentine Republic''' ([[Spanish language|Spanish]]: ''RepÃēblica Argentina'', [[International Phonetic Alphabet|IPA]] {{IPA|[reˈpuβlika aÉžxɛnˈtina]}}) is a [[country]] in [[South America]], situated between the [[Andes]] in the west and the southern [[Atlantic Ocean]] in the east and south. It is bordered by [[Paraguay]] and [[Bolivia]] in the north, [[Brazil]] and [[Uruguay]] in the northeast, and [[Chile]] in the west and south. It also claims the [[British overseas territory|British overseas territories]] of the [[Falkland Islands]] ([[Spanish language|Spanish]]: ''Islas Malvinas'') and [[South Georgia and the South Sandwich Islands]]. Under the name of [[Argentine Antarctica]], it claims around 1,000,000 [[square kilometre]]s (386,000&amp;nbsp;[[square miles|sq.&amp;nbsp;mi]]) of [[Antarctica]], overlapping other claims by [[Chile]] and the [[United Kingdom]]. By area, it is the second largest country of South America after Brazil and the 8th largest country in the [[world]].
26329
26330 The country is formally named ''RepÃēblica Argentina'' {{audio|1=es-Argentina.ogg|2=(pronunciation)}} (Argentine Republic), while for purposes of [[Law of Argentina|legislation]] the form ''NaciÃŗn Argentina'' (Argentine Nation) is used.
26331
26332 ==Origin and history of the name==
26333 {{main|Origin and history of the name of Argentina}}
26334
26335 The name '''Argentina''' derives from the [[Latin]] ''argentum'' ([[silver]]). The first [[Spain|Spanish]] [[conquistador]]s called the River Plate the [[Río de la Plata]] (&quot;River of Silver&quot;). Indigenous people gave silver gifts to the survivors of the shipwrecked expedition, who were led by [[Juan Díaz de Solís]]. The legend of [[Sierra del Plata]] &amp;mdash; a mountain rich in silver &amp;mdash; reached Spain around [[1524]]. The name Argentina was first used in Ruy Díaz de GuzmÃĄn's 1612 book ''Historia del descubrimiento, poblaciÃŗn, y conquista del Río de la Plata'' (History of the discovery, population, and conquest of the Río de la Plata), naming the territory ''Tierra Argentina'' (Land of Silver).
26336
26337 ==History==
26338 {{main|History of Argentina}}
26339
26340 The area of present Argentina was sparsely populated until it was colonised by [[european|Europeans]]. The native people known as [[Diaguita]] lived in northwestern Argentina on the edge of the expanding [[Inca Empire]]; the [[Guaraní]] lived farther east.
26341
26342 Europeans arrived in [[1502]]. [[Spain]] established a permanent colony on the site of [[Buenos Aires]] in [[1580]], and the [[Viceroyalty of the Río de la Plata]] in [[1776]]. Independence from Spain was declared on [[July 9]] [[1816]]. Centralist and federationist groups were in conflict, until national unity was established and the [[Argentine constitution|constitution]] promulgated in [[1853]].
26343
26344 Foreign [[investment]] and [[Immigration in Argentina|immigration]] from Europe aided the introduction of modern agricultural techniques and integration of Argentina into the world economy in the late 19th century. In the 1880s the &quot;[[Conquest of the Desert]]&quot; subdued or exterminated the remaining native tribes throughout [[Patagonia]].
26345
26346 From [[1880]] to [[1930]] Argentina became one of the ten wealthiest nations. Conservative forces dominated Argentine politics until [[1916]], when their traditional rivals, the [[Radical Civic Union|Radicals]], won control of the government. The military forced [[HipÃŗlito Yrigoyen]] from power in 1930 leading to another decade of Conservative rule.
26347
26348 Political change led to the presidency of [[Juan PerÃŗn]] in [[1946]], who aimed at empowering the working class and greatly expanded the number of unionised workers. The [[RevoluciÃŗn Libertadora]] of [[1955]] deposed him.
26349
26350 In the 1950s and 1960s, military and civilian administrations traded power. When military governments failed to revive the economy and suppress escalating [[terrorism]] in the late 1960s and early 1970s, the way was open for PerÃŗn's return to the presidency in 1973, with his third wife, [[Isabel PerÃŗn|María Estela Isabel Martínez de PerÃŗn]], as Vice President. During this period, extremists on the [[political left|left]] and [[political right|right]] carried out [[terrorism|terrorist]] acts with a frequency that threatened public order.
26351
26352 [[Image:Buenos Aires-2672f-Banco de la NaciÃŗn Argentina.jpg|thumb|250px|Bank of the Argentine Nation, Buenos Aires]]
26353
26354 PerÃŗn died in [[1974]]. His wife succeeded him in office, but a military coup removed her from office in [[1976]], and the armed forces formally exercised power through a [[junta]] in charge of the self-appointed [[Proceso de ReorganizaciÃŗn Nacional|National Reorganisation Process]], until [[1983]]. The armed forces repressed opposition using harsh illegal measures (the &quot;[[Dirty War]]&quot;); thousands of dissidents were &quot;[[desaparecidos|disappeared]]&quot;, while the [[SIDE]] cooperated with the [[CIA]], [[DINA]] and other South American intelligence agencies in [[Operation Condor]]. Many of the military leaders that took part in the Dirty War were trained in the U.S. financed [[School of the Americas]]. Among them Argentine dictators [[Leopoldo Galtieri]] and [[Roberto Viola]].
26355
26356 Economic problems, charges of corruption, public revulsion in the face of [[human rights]] abuses and, finally, the country's [[1982]] defeat in the [[Falklands War]] discredited the Argentine military regime.
26357
26358 Democracy was restored in [[1983]]. [[RaÃēl Alfonsín]]'s Radical government took steps intending to account for the &quot;disappeared&quot;, establishing civilian control of the armed forces and consolidating democratic institutions. Failure to resolve endemic economic problems and an inability to maintain public confidence caused his early departure.
26359
26360 President [[Carlos Menem]] imposed [[Argentine peso|peso]]-[[US dollar|dollar]] [[fixed exchange rate]] in [[1991]] to stop [[hyperinflation]], and adopted far-reaching market-based policies, dismantling [[protectionism|protectionist]] barriers and business [[deregulation|regulations]], and implementing a privatisation program. These reforms contributed to significant increases in investment and growth with stable prices through most of the 1990s.
26361
26362 The Menem and [[Fernando de la RÃēa|de la RÃēa]] administrations faced diminished competitiveness of exports, massive imports which damaged national industry and reduced employment, chronic fiscal and trade deficits, and the contagion of several economic crises. The [[Asian financial crisis]] in [[1998]] precipitated an outflow of capital that mushroomed into a [[recession]], which led to a total freezing of the [[bank account]]s (the ''[[corralito]]''), and culminated in a financial panic in November 2001. The next month, amidst [[December 2001 riots (Argentina)|bloody riots]], President de la RÃēa resigned.
26363
26364 Several new presidents followed in quick succession. Argentina [[default (finance)|default]]ed on its international debt obligations. The peso's almost 12-year-old link with the dollar was abandoned, resulting in massive [[devaluation|currency depreciation]] and [[inflation]], in turn triggering a spike in unemployment and poverty. In [[2003]], [[NÊstor Kirchner]] became the president, and started implementing new policies based on re-industrialisation, [[import substitution]], increased exports, consistent fiscal surplus, and high exchange rate.
26365
26366 ==Politics==
26367 [[Image:Buenos Aires Congreso stock xchng 214239.jpg|thumb|250px|Congress building in Buenos Aires]]
26368 {{main|Politics of Argentina}}
26369 {{seealso|Law of Argentina}}
26370
26371 The [[Constitution of Argentina|Argentine constitution]] of 1853, as [[1994 reform of the Argentine Constitution|revised in 1994]], mandates a [[Separation of powers|separation of powers]] into [[Executive (government)|executive]], [[legislative]], and [[judiciary|judicial branch]]es at the national and provincial level. The [[president of Argentina|president]] and vice-president are directly elected to 4-year terms. Both are limited to two consecutive terms; they are allowed to stand for a third term or more after an interval of at least one term. The president appoints [[cabinet (government)|cabinet]] ministers, and the constitution grants him considerable power as both [[head of state]] and [[head of government]], including authority to enact laws by presidential decree under conditions of &quot;urgency and necessity&quot; and the [[line-item veto]].
26372
26373 Argentina's [[parliament]] is the bicameral [[National Congress]] or ''[[Argentine National Congress|Congreso de la NaciÃŗn]]'', consisting of a [[Senate]] (''[[Argentine Senate|Senado]]'') of 72 seats and a [[Chamber of Deputies]] (''[[Argentine Chamber of Deputies|CÃĄmara de Diputados]]'') of 257 members. Since 2001, senators have been directly elected, with each province, including the [[Federal Capital]], represented by three senators. Senators serve 6-year terms. One-third of the Senate stands for reelection every 2 years via a partial majority system in each district. Members of the Chamber of Deputies are directly elected to 4-year term via a system of [[proportional representation]]. Voters elect half the members of the [[lower house]] every 2 years.
26374
26375 ==Foreign relations==
26376 {{main|Foreign relations of Argentina}}
26377 {{seealso|Military of Argentina}}
26378
26379 Argentina is currently prompting the [[Mercosur]] as its first external priority, contrasting with the 1990s' emphasis in the relationship with the [[United States]].
26380
26381 ==Administrative divisions==
26382 [[Image:Argentina provinces.png|framed|Provinces of Argentina. Argentine Antarctica and Southern Atlantic Islands (23) not shown.]]
26383 {{main|Provinces of Argentina}}
26384 {{seealso|Governors in Argentina}}
26385
26386 Argentina is divided into 23 [[province]]s (''provincias''; singular: ''provincia''), and 1 [[autonomous city]] (commonly known as ''capital federal''), marked with an asterisk:
26387 {|
26388 |
26389 # [[Buenos Aires|Buenos Aires (City)]]&lt;sup&gt;*&lt;/sup&gt;
26390 # [[Buenos Aires Province|Buenos Aires (Province)]]
26391 # [[Catamarca Province|Catamarca]]
26392 # [[Chaco Province|Chaco]]
26393 # [[Chubut Province|Chubut]]
26394 # [[CÃŗrdoba Province (Argentina)|CÃŗrdoba]]
26395 # [[Corrientes Province|Corrientes]]
26396 # [[Entre Ríos Province|Entre Ríos]]
26397 # [[Formosa Province|Formosa]]
26398 # [[Jujuy Province|Jujuy]]
26399 # [[La Pampa Province|La Pampa]]
26400 # [[La Rioja Province (Argentina)|La Rioja]]
26401 |
26402 &lt;ol start=13&gt;
26403 &lt;li&gt; [[Mendoza Province|Mendoza]]
26404 &lt;li&gt; [[Misiones Province|Misiones]]
26405 &lt;li&gt; [[NeuquÊn Province|NeuquÊn]]
26406 &lt;li&gt; [[Río Negro Province|Río Negro]]
26407 &lt;li&gt; [[Salta Province|Salta]]
26408 &lt;li&gt; [[San Juan Province (Argentina)|San Juan]]
26409 &lt;li&gt; [[San Luis Province|San Luis]]
26410 &lt;li&gt; [[Santa Cruz Province (Argentina)|Santa Cruz]]
26411 &lt;li&gt; [[Santa Fe Province|Santa Fe]]
26412 &lt;li&gt; [[Santiago del Estero Province|Santiago del Estero]]
26413 &lt;li&gt; [[Tierra del Fuego Province (Argentina)|Tierra del Fuego, AntÃĄrtida e Islas del AtlÃĄntico Sur]]
26414 &lt;li&gt; [[TucumÃĄn Province|TucumÃĄn]]
26415 &lt;/ol&gt;
26416 |}
26417 &lt;sup&gt;*&lt;/sup&gt; The current official name for the [[federal district]] is &quot;Ciudad AutÃŗnoma de Buenos Aires&quot;.
26418
26419 Buenos Aires has been the capital of Argentina since its unification, but there have been projects to move the administrative centre elsewhere. During the presidency of RaÃēl Alfonsín a law was passed ordering the move of the federal capital to [[Viedma]], a city in the Patagonic province of Río Negro. Studies were underway when hyperinflation, in 1989, killed off the project. Though the law was never formally repealed, it has become a mere historical relic, and the project has been forgotten.
26420
26421 ===Urbanization===
26422 {{main|List of cities in Argentina}}
26423 [[Image:Tucuman_govthouse.JPG|thumb|250px|right|Government house of TucumÃĄn]]
26424 About 2.7 million people live in the Autonomous City of [[Buenos Aires]], and roughly 11.5 million in [[Gran Buenos Aires|Greater Buenos Aires]] (2001), making it one of the largest urban conglomerates in the world. Together with their respective [[metropolitan area]]s, the second and third largest cities in Argentina, [[CÃŗrdoba, Argentina|CÃŗrdoba]] and [[Rosario]], comprise about 1.3 and 1.1 million inhabitants, respectively.
26425
26426 Most European [[immigration in Argentina|immigrants to Argentina]] (coming in great waves especially around the World War I and II) settled in the cities, which offered jobs, education, and other opportunities that enabled newcomers to enter the [[middle class]]. Since the 1930s many rural workers have moved to the big cities.
26427
26428 The 1990s saw many rural towns become [[ghost town]]s when train services were abandoned and local products manufactured on a small scale were replaced by massive amounts of imported cheap goods, in part because of the monetary policy which kept the U.S. dollar exchange rate fixed and low. Many slums (''[[villa miseria|villas miseria]]'') sprouted in the outskirts of the largest cities, inhabited by empoverished low-class urban dwellers and migrants from smaller towns in the interior of the country. However, it is important to note that the majority of the people that live in these newly formed small shanty towns are people that came from neighboring countries during the time of convertibility and never left. This immigration of humble people from a low socioeconomic status represented an undesirable change because shanty towns and homeless people begging for money was something Argentines didn't know until the economic disaster of the 1990s. However, the government works actively to try to include these new inmigrants into Argentine society and considers their children born in Argentina to be Argentines. There are no plans to build any type of wall to keep these inmigrants out. Argentina adheres to a policy of allowing anybody who wants to come to Argentina to come freely without restrictive inmigration measures. In this respect Argentina is more progressive than many fully developed countries.
26429
26430 &lt;!-- to be filled in with middle class home data --&gt;
26431 Argentina's urban areas have a European look, reflecting the influence of their European settlers. Many towns and cities are built like Spanish cities around a main square called a plaza. A cathedral and important government buildings often face the plaza. The general layout of the cities is called a ''damero'', that is, a checkerboard, since it is based on a pattern of square blocks, though modern developments sometimes depart from it (for example, the city of La Plata, built at the end of the 19th century, is organised as a checkerboard plus diagonal avenues at fixed intervals).
26432
26433 In descending order by number of inhabitants, the major cities in Argentina are [[Buenos Aires]], [[CÃŗrdoba, Argentina|CÃŗrdoba]], [[Rosario]], [[Mendoza]], [[La Plata]], [[TucumÃĄn]], [[Mar del Plata]], [[Salta]], [[Santa Fe, Argentina|Santa Fe]], and [[Bahía Blanca]].
26434
26435 ==Geography==
26436 [[Image:Ar-map.png|200px|thumb|Map of Argentina]]
26437 {{main|Geography of Argentina}}
26438
26439 Argentina can roughly be divided into three parts: the fertile plains of the [[Pampa]]s in the central part of the country, the centre of Argentina's [[agriculture|agricultural]] wealth; the flat to rolling plateau of [[Patagonia]] in the southern half down to [[Tierra del Fuego]]; and the rugged [[Andes]] [[mountain range]] along the western border with [[Chile]], with the highest point being the [[Cerro Aconcagua]] at 6,960 metres (22,834 [[foot (unit of length)|ft]]).
26440
26441 Major rivers include the [[Paraguay River|Paraguay]], [[Bermejo River|Bermejo]], [[Colorado River (Argentina)|Colorado]], [[Uruguay River|Uruguay]] and the largest river, the [[ParanÃĄ River|ParanÃĄ]]. The latter two flow together before meeting the [[Atlantic Ocean]], forming the estuary of the [[Río de la Plata]]. The Argentine [[climate]] is predominantly [[temperate climate|temperate]] with extremes ranging from [[subtropical climate|subtropical]] in the north to arid/sub-Antarctic in far south.
26442
26443 === Enclaves and exclaves ===
26444 There is one Argentine [[exclave]]: the island of [[Martín García]] (co-ordinates {{coor dm|34|11|S|58|15|W}}). It is situated near the confluence of the ParanÃĄ and Uruguay rivers, a mere kilometre (0.62&amp;nbsp;mi) inside [[Uruguay]]an waters, about 3.5 kilometres (2.1 mi) from the Uruguayan coastline, near the small city of [[Martín Chico]] (itself about halfway between [[Nueva Palmira]] and [[Colonia del Sacramento]]).
26445
26446 An agreement reached by Argentina and Uruguay in 1973 reaffirmed Argentine jurisdiction over the island, ending a century-old dispute between the two countries. According to the terms of the agreement, Martín García is to be devoted exclusively to a natural preserve. Its area is about 2 square kilometres (500&amp;nbsp;[[acre]]s), and the population about 200 people.
26447
26448 ==Economy==
26449 [[Image:Buenos Aires Monserrat.jpg|thumb|250px|Subway station in Monserrat, Buenos Aires]]
26450 {{main|Economy of Argentina}}
26451 {{seealso|Tourism in Argentina}}
26452
26453 Argentina benefits from rich [[natural resource]]s, a highly [[literate]] population, an export-oriented [[agriculture|agricultural]] sector, and a diversified [[industry|industrial]] base. The country historically had a large middle class, compared to other Latin American countries, but this segment of the population was decimated by a succession of economic crises. Today, while a significant segment of the population is still financially well-off, they stay in sharp contrast with millions who live in poverty or on the brink of it.
26454
26455 Since the late 1970s the country piled up public debt and was plagued by bouts of high [[inflation]]. In 1991, the government [[fixed exchange rate|pegged]] the peso to the [[United States dollar|U. S. dollar]] and limited the growth in the [[monetary base]]. The government then embarked on a path of [[free trade|trade liberalisation]], [[deregulation]], and [[privatisation]]. Inflation dropped and [[gross domestic product|GDP]] grew, but external economic shocks and failures of the system diluted its benefits, causing it to crumble in slow motion, from 1995 and up to the [[Argentine economic crisis|collapse in 2001]].
26456
26457 By 2002 Argentina had [[default (finance)|default]]ed on its debt, its GDP had shrunk, [[unemployment]] was over 25%, the peso had [[devaluation|devalued]] 75% after being [[floating exchange rate|floated]], and inflation was hitting again. However, careful spending control and heavy [[tax]]es on now soaring exports gave the state the tools to regain resources and conduct [[monetary policy]].
26458
26459 In 2003, [[import substitution]] policies and soaring [[export]]s, coupled with a lower inflation and expansive economic measures, triggered a surge in the GDP, which was repeated in 2004, creating jobs and encouraging internal consumption. [[Capital flight]] decreased, and [[foreign investment]] slowly returned. The influx of foreign currency from exports created such a huge [[trade surplus]] that the Central Bank was forced to buy dollars from the market, which it continues to do at the time, to be accumulated as [[reserve currency|reserves]].
26460
26461 The situation in 2005 is much improved, but there are still large numbers of unemployed people that beg for some money or food, especially in the outskirts of [[Buenos Aires]]. Some of them are homeless, and there is at least one small non-profit humanitarian organisation which distributes free food to some of them most days of the week. However, the country is still the most developed country in Latin America. It boasts the highest GDP per capita, the highest levels of education measured by university attendance, and a reasonable infrastructure that in many aspects is equal in quality to that found in fully industrialized nations. In 2002 over 57% of the population was below the poverty line, at the end of 2005 it was 34%. In 2002 unemployement had reached over 25%, and now it is 10%. GDP per capita has surpassed the previous pre-recession peek of 1998. It is a very interesting time in Argentina because the experts agree that if the country makes the right decisions it could develop and reclaim its previosly held position in the first world. So far things are looking good; the economy grew 8.8% in 2003, 9.0% in 2004, and 9.1% in 2005. The floor is set so that the economy will grow between 6.0% and 7.5% in 2006 and the government is paying down the foreign debt; foreign debt now stands at 69% of GDP and is slowly decreasing. The Argentine economy has so much untapped potential that if the country manages to encourage the proper level of investment the country could experience growth rates of 9.0% for this year and years to come.
26462
26463 ==Demographics==
26464 [[Image:TeatroColon.JPG|thumb|right|300px|Night shot of the Colon Theatre in Buenos Aires, Argentina]]
26465 {{main|Demographics of Argentina}}
26466
26467 Unlike most of its neighbouring countries, Argentina's population descends overwhelmingly from [[Europe|Europeans]]. The basic demographic stock (97% of the population) [http://www.cia.gov/cia/publications/factbook/geos/ar.html] is made up of descendants of [[Spain|Spanish]], [[Italy|Italian]], [[Germany|German]] and other [[Europe|European]] settlers.
26468
26469 Waves of immigrants from [[Europe]]an countries arrived in the late [[19th century|19th]] and early [[20th century|20th centuries]]. The Patagonian [[Chubut Valley]] has a significant [[Welsh settlement in Argentina|Welsh-descended population]] and retains many aspects of [[Wales|Welsh]] culture. Other important immigrant groups came from [[Germany]] ([[Germany|German]] colonies were settled in the provinces of Entre Ríos, Misiones, Formosa, CÃŗrdoba and the Patagonian region, as well as in Buenos Aires itself), [[France]] (mostly settled in Buenos Aires city and province), [[Scandinavia]] (especially [[Sweden]]), the [[United Kingdom]] and [[Ireland]] (Buenos Aires and Patagonia), and [[Eastern Europe]]an nations, such as [[Poland]], [[Russia]], [[Ukraine]] and the [[Balkans]] region (especially [[Croatia]] and [[Serbia]]) and others. The overwhelming majority of Argentina's [[Jew|Jewish]] community, numbering about 395,379 [http://www.jewishvirtuallibrary.org/jsource/Judaism/jewpop.html], also derives from immigrants of Northern and Eastern European origin &amp;mdash; [[Ashkenazi Jews]]. It is the largest Jewish community in [[Latin America]] and fifth largest in the world.
26470
26471 [[Middle East]]ern immigrants number about 500,000, mainly in urban areas.{{Citation needed}}
26472
26473 Small numbers of people from [[Far East]] [[Asia]] have also settled Argentina, mainly in Buenos Aires. The first [[Asian-Argentines]] were of [[Japan]]ese descent, but [[Korea]]ns, [[Vietnam]]ese, and [[China|Chinese]] soon followed. There are also smaller numbers of people from the [[Indian subcontinent]].
26474
26475 ==Culture==
26476 [[Image:Buenos_Aires-Center-P3050007.JPG|thumb|European and modern styles in Buenos Aires]]
26477 {{main|Culture of Argentina}}
26478 {{seealso|List of Argentines}}
26479 Argentine culture has been primarily informed and influenced by its European roots. Buenos Aires is undeniably the most European city in [[South America]], due both to the prevalence of people of Italian, Spanish and German descent and to conscious imitation.
26480
26481 Argentine cinema has achieved international recognition with films such as &quot;[[The Official Story]]&quot; and &quot;[[Nine Queens]]&quot;, though it has only rarely been taken into account by mainstream popular viewers who prefer Hollywood-type movies. Even low-budget productions, however, have obtained prizes in cinema festivals (such as [[Cannes]]). The city of [[Mar del Plata]] organizes its own festival dedicated to this art.
26482
26483 The best-known element of Argentine culture is probably their music and dance, particularly [[tango (dance)|tango]]. In modern Argentina, tango music is enjoyed in its own right, especially since the radical [[Astor Piazzolla]] redefined the music of [[Carlos Gardel]]. It must be noted that while tango refers mostly to a particular dancing music for foreigners, the music together with the lyrics (often sung in a kind of slang called [[lunfardo]]) are what most Argentines primarily mean by tango. Tango lyrics can be considered a kind of poetry.
26484 Since the 1970s rock and roll is also widely appreciated in Argentina. First during the 1970s and then again at the mid 1980s and the beginning of the 1990s, national rock and roll and pop music experienced bursts of popularity, with many new bands (such as [[Soda Stereo]] and Sumo) and composers (like [[Charly García]] and [[Fito PÃĄez]]) becoming important referents of national culture.
26485 [[Buenos Aires]] is also considered the [[techno]]/[[electronica]] country in Latin America, that started with little raves, and nowadays is home of important events such as [[Creamfields]] (which has the world record of 65,000 people), South American Music Conference and many more.
26486
26487 [[European classical music]] is well-considered in Argentina, with the [[ColÃŗn Theater]] one of the best opera houses in the world. Musicians such as [[Martha Argerich]] and composers like [[Lalo Schifrin]] have become internationally famous.
26488
26489 See also the articles on the [[Cuisine of Argentina|cuisine]], the [[Music of Argentina|music]], and the [[Football in Argentina|football]] ([[Spanish language|Spanish]]: ''FÃētbol'') of Argentina. For a prevalent custom among Argentines, see [[Yerba Mate|mate]]. For the traditional Buenos Aires dance, see [[tango (dance)|tango]].
26490
26491 ===Language===
26492 {{main|List of Native American languages in Argentina}}
26493 {{seealso|Welsh settlement in Argentina}}
26494 [[Image:Buenos Aires-Puente de la Mujer.jpg|thumb|250px|Women's Bridge in Puerto Madero, Buenos Aires]]
26495 The only official language is [[Spanish language|Spanish]], although some immigrants and indigenous communities have retained their [[List of Native American languages in Argentina|original languages]] in specific points of the country. There are, for example many [[Welsh language|Welsh]]-speaking towns in Patagonia and [[German language|German]]-speaking cities in CÃŗrdoba, Buenos Aires and cities in the Patagonia. Italian and French is also widely spoken.
26496
26497 Argentina is the largest [[Spanish language|Spanish]]-speaking community in the world that employs ''[[voseo]]'' (the use of the [[pronoun]] ''vos'' instead of ''tÃē'', associated with some alternate verb conjugations). The most prevalent dialect is [[Rioplatense Spanish|Rioplatense]], with most speakers located in the basin of the [[Río de la Plata]].
26498
26499 ===Religion===
26500 {{main|Religion in Argentina}}
26501 Argentina is an overwhelmingly [[Christian]] country. The majority of Argentina's population (80%) is at least nominally [[Roman Catholic]]. Roman Catholicism is supported by the state, as stipulated in the Constitution. Evangelical churches gained a place in Argentina especially since the 1980s and now number more than 3.5 million or 10%. Members of the [[Church of Jesus Christ of Latter-day Saints]] ([[Mormons]]) number over 330,300, the seventh largest concentration in the world[http://www.lds.org.ar/noticias2005/noti_ene2005/info_noti_ene2005_05.htm]. Traditional [[Protestant]] communities are also present.
26502
26503 The country also hosts the largest [[Judaism|Jewish]] population in [[Latin America]], about 395,379 strong. It is also home to one of the largest [[mosque]]s in Latin America, serving Argentina's small [[Islam|Muslim]] community.
26504
26505 ==See also==
26506 &lt;!-- section with alphabetical order --&gt;
26507 * [[Argentine Antarctica]]
26508 * [[Communications in Argentina]]
26509 * [[Education in Argentina]]
26510 * [[Elections in Argentina]]
26511 * [[Foreign relations of Argentina]]
26512 * [[Governors in Argentina]]
26513 * [[Military of Argentina]]
26514 * [[National parks of Argentina]]
26515 * [[Public holidays in Argentina]]
26516 * [[Tourism in Argentina]]
26517 * [[Transportation in Argentina]]
26518
26519 ==References==
26520 &lt;!-- section with alphabetical order --&gt;
26521 * [http://members.tripod.com.ar/republica_argentina/index.htm General information]
26522 * [http://www.argentour.com/ar.html General information]
26523 * [http://www.mapsofworld.com/argentina/index.html General information and maps]
26524 * [http://www.todo-argentina.net/index.htm Geography and history]
26525 * [http://www.argentinaxplora.com/index.htm Geography and tourism]
26526 * [http://www.surdelsur.com/ History]
26527 * [http://www.monografias.com/cgi-bin/search.cgi?substring=0&amp;bool=and&amp;query=Argentina&amp;I1=Buscar Other information]
26528
26529 ==External links==
26530 {{sisterlinks|Argentina}}
26531 &lt;div style=&quot;font-size: 90%&quot;&gt;
26532 ===Government===
26533 *{{es icon}} [http://www.info.gov.ar Gobierno ElectrÃŗnico] - Official government website
26534 *{{es icon}} [http://www.presidencia.gov.ar Presidencia de la NaciÃŗn] - Official presidential website
26535 *{{es icon}} [http://www.senado.gov.ar Honorable Senado de la NaciÃŗn] - Official senatorial website
26536 *{{es icon}} [http://www.diputados.gov.ar Honorable CÃĄmara de Diputados de la NaciÃŗn] - Official lower house website
26537
26538 ===Directories===
26539 *{{en icon}} [http://www.loc.gov/rr/international/hispanic/argentina/argentina.html Library of Congress]
26540 *{{en icon}} [http://dmoz.org/Regional/South_America/Argentina Open Directory Project]
26541 *{{es icon}} [http://ar.todalanet.net Todalanet] - Search engine of Argentine only websites
26542
26543 ===News===
26544 *{{es icon}} [http://www.telam.com.ar TÊlam] (Official news agency)
26545 *{{de icon}} [http://www.tageblatt.com.ar Argentinisches Tageblatt] ([[Argentinisches Tageblatt|See article]])
26546 *{{en icon}} [http://www.buenosairesherald.com Buenos Aires Herald] ([[Buenos Aires Herald|See article]])
26547 *{{es icon}} [http://www.clarin.com Clarín] ([[Clarín (Newspaper)|See article]])
26548 *{{es icon}} [http://www.diariodecuyo.com.ar Diario de Cuyo] ([[San Juan, Argentina|San Juan]])
26549 *{{es icon}} [http://www.lacapital.com.ar La Capital] ([[La Capital|See article]])
26550 *{{es icon}} [http://www.diariouno.net.ar Diario UNO] ([[Mendoza]])
26551 *{{es icon}} [http://www.losandes.com.ar Diario Los Andes] ([[Mendoza]])
26552 *{{es icon}} [http://www.eldiariodeparana.com.ar El Diario] ([[ParanÃĄ]])
26553 *{{es icon}} [http://www.eltribuno.com.ar El Tribuno] ([[Salta]])
26554 *{{es icon}} [http://www.infobae.com Infobae] ([[Buenos Aires]])
26555 *{{es icon}} [http://www.lavozdelinterior.com.ar La Voz del Interior] ([[CÃŗrdoba, Argentina|CÃŗrdoba]])
26556 *{{es icon}} [http://www.lagaceta.com.ar La Gaceta] ([[TucumÃĄn]])
26557 *{{es icon}} [http://www.lanacion.com La NaciÃŗn] ([[La NaciÃŗn|See article]])
26558 *{{es icon}} [http://www.larazon.com.ar La RazÃŗn] ([[Buenos Aires]])
26559 *{{es icon}} [http://www.lanueva.com.ar La Nueva Provincia] ([[Bahía Blanca]])
26560 *{{es icon}} [http://www.pagina12.com.ar PÃĄgina/12] ([[PÃĄgina 12|See article]])
26561 *{{es icon}} [http://www.lacapitalnet.com.ar La Capital] ([[Mar del Plata]])
26562 *{{es icon}} [http://www.lavozdelpueblo.com.ar La Voz del Pueblo] (Tres Arroyos)
26563
26564 ===Images===
26565 *{{es icon}} [http://cometoargentina.tripod.com/ Mundo Argentina]
26566 *{{es icon}} [http://www.vester.com.ar/argentina/ Regions, landscapes and people]
26567 *{{en icon}} [http://www.geographicguide.com/south-america.htm South America Pictures]
26568 *{{en icon}} [http://www.geographicguide.com/south-america-map.htm South America Maps]
26569 *{{en icon}} [http://www.globe-images.com/south-america.htm South America Satellite Images]
26570 *{{es icon}} [http://www.fotos-de-argentina.com.ar/ Photos of Argentina]
26571
26572 ===Travel===
26573 *{{es icon}} [http://www.turismo.gov.ar/ Secretaria de Turismo de la Nacion] - Official tourism website
26574 *{{es icon}} [http://www.argentinatravelnet.com/ Directory of travel websites]
26575 *{{en icon}} [http://www.roadjunky.com/argentina/guide_argentina.shtml Travel tips and a deep look at Argentine culture]
26576 *{{en icon}} [http://www.argentinacafe.com/ Guidebook reviews and flight tips]
26577 *{{en icon}} [http://www.destination360.com/south-america/argentina/argentina.php Travel highlights]
26578 *{{en icon}} [http://www.thowra.com/argentina.html Interesting places]
26579 *{{en icon}} [http://www.VisitGayBA.com VisitGayBA.com]
26580 *{{en icon}} {{wikitravel}}
26581
26582 ===Other===
26583 *{{es icon}} [http://www.josemariarosa.galeon.com/ JosÊ María Rosa historian]
26584 *{{es icon}} [http://www.elhistoriador.com.ar/ Felipe Pigna historian]
26585 *{{en icon}} [http://www.argentina-information.com/ Essential facts and other information]
26586 *{{en icon}} [http://www.coha.org Council on Hemispheric Affairs]
26587 *{{en icon}} [http://www.latinbusinesschronicle.com/argentina Latin Business Chronicle]
26588 *{{en icon}} [http://www.cia.gov/cia/publications/factbook/geos/ar.html CIA World Factbook]
26589 &lt;/div&gt;
26590 {{Provinces of Argentina}}
26591 {{South America}}
26592
26593 [[Category:Argentina| ]]
26594 [[Category:South American countries|Argentina]]
26595
26596 {{Link FA|de}}
26597
26598 [[af:ArgentiniÃĢ]]
26599 [[ar:اŲ„ØŖØąØŦŲ†ØĒŲŠŲ†]]
26600 [[an:Archentina]]
26601 [[ast:Arxentina]]
26602 [[bg:АŅ€ĐļĐĩĐŊŅ‚иĐŊĐ°]]
26603 [[zh-min-nan:Argentina]]
26604 [[be:АŅ€ĐŗĐĩĐŊŅ‚Ņ‹ĐŊĐ°]]
26605 [[bn:āĻ†āĻ°ā§āĻœā§‡āĻ¨ā§āĻŸāĻŋāĻ¨āĻž]]
26606 [[bs:Argentina]]
26607 [[ca:Argentina]]
26608 [[cs:Argentina]]
26609 [[cy:Ariannin]]
26610 [[da:Argentina]]
26611 [[de:Argentinien]]
26612 [[et:Argentina]]
26613 [[el:ΑĪÎŗÎĩÎŊĪ„ΚÎŊÎŽ]]
26614 [[es:Argentina]]
26615 [[eo:Argentino]]
26616 [[eu:Argentina]]
26617 [[fr:Argentine]]
26618 [[gd:Argentina]]
26619 [[gl:Arxentina - Argentina]]
26620 [[ko:ė•„ëĨ´í—¨í‹°ë‚˜]]
26621 [[ht:Ajantin]]
26622 [[hi:ā¤…ā¤°āĨā¤œāĨ‡ā¤¨āĨā¤ŸāĨ€ā¤¨ā¤ž]]
26623 [[hr:Argentina]]
26624 [[io:Arjentinia]]
26625 [[id:Argentina]]
26626 [[ia:Argentina]]
26627 [[is:Argentína]]
26628 [[it:Argentina]]
26629 [[he:ארגנטינה]]
26630 [[hy:ԱրÕŖÕĨÕļÕŋÕĢÕļÕĄ]]
26631 [[ka:არგენáƒĸინა]]
26632 [[kw:Arghantina]]
26633 [[ku:ArjantÃŽn]]
26634 [[la:Argentina]]
26635 [[lv:ArgentÄĢna]]
26636 [[lt:Argentina]]
26637 [[lb:Argentinien]]
26638 [[li:ArgentiniÃĢ]]
26639 [[hu:Argentína]]
26640 [[mk:АŅ€ĐŗĐĩĐŊŅ‚иĐŊĐ°]]
26641 [[ms:Argentina]]
26642 [[nah:Arxentina]]
26643 [[na:Argentina]]
26644 [[nl:ArgentiniÃĢ]]
26645 [[nds:Argentinien]]
26646 [[ja:ã‚ĸãƒĢã‚ŧãƒŗチãƒŗ]]
26647 [[no:Argentina]]
26648 [[nn:Argentina]]
26649 [[oc:Argentina]]
26650 [[pl:Argentyna]]
26651 [[pt:Argentina]]
26652 [[ro:Argentina]]
26653 [[qu:Arxintina]]
26654 [[ru:АŅ€ĐŗĐĩĐŊŅ‚иĐŊĐ°]]
26655 [[sa:ā¤…ā¤°āĨā¤œā¤¨āĨā¤ŸāĨ€ā¤¨ā¤ž]]
26656 [[sq:Argjentina]]
26657 [[simple:Argentina]]
26658 [[sk:Argentína]]
26659 [[sl:Argentina]]
26660 [[sr:АŅ€ĐŗĐĩĐŊŅ‚иĐŊĐ°]]
26661 [[fi:Argentiina]]
26662 [[sv:Argentina]]
26663 [[tl:Arhentina]]
26664 [[ta:āŽ…āŽ°ā¯āŽœā¯†āŽŠā¯āŽŸāŽŋāŽŠāŽž]]
26665 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸˛ā¸ŖāšŒāš€ā¸ˆā¸™ā¸•ā¸´ā¸™ā¸˛]]
26666 [[vi:Argentina]]
26667 [[tr:Arjantin]]
26668 [[uk:АŅ€ĐŗĐĩĐŊŅ‚иĐŊĐ°]]
26669 [[yi:אַרג×ĸנטינ×ĸ]]
26670 [[zh:é˜ŋæ šåģˇ]]
26671 [[fiu-vro:Argentina]]</text>
26672 </revision>
26673 </page>
26674 <page>
26675 <title>Armenia</title>
26676 <id>745</id>
26677 <revision>
26678 <id>42152036</id>
26679 <timestamp>2006-03-04T04:03:02Z</timestamp>
26680 <contributor>
26681 <ip>68.41.31.120</ip>
26682 </contributor>
26683 <comment>/* Origin of the name */</comment>
26684 <text xml:space="preserve">{{otheruses1|the country in Eurasia}}
26685 &lt;!-- BEGIN INFOBOX --&gt;
26686 {{Infobox Country |
26687 native_name = Õ€ÕĄÕĩÕĄÕŊÕŋÕĄÕļÕĢ Õ€ÕĄÕļÖ€ÕĄÕēÕĨÕŋÕ¸Ö‚ÕŠÕĩուÕļ&lt;br /&gt; Hayastani Hanrapetutyun&lt;br /&gt; Republic of Armenia |
26688 common_name = Armenia |
26689 image_flag = Flag of Armenia.svg |
26690 image_coat = Coa_Armenia.jpg |
26691 national_motto = ''none'' |
26692 image_map = LocationArmenia.png |
26693 national_anthem = ''[[Mer Hayrenik]]'' |
26694 official_languages = [[Armenian language|Armenian]] |
26695 capital = [[Yerevan]] |latd=40|latm=16|latNS=N|longd=44|longm=34|longEW=E|
26696 government_type = [[Republic]] |
26697 leader_titles = [[President of Armenia|President]]&lt;br /&gt; [[Prime Minister of Armenia|Prime Minister]] |
26698 leader_names = [[Robert Kocharian]]&lt;br /&gt; [[Andranik Markaryan]] |
26699 largest_city = [[Yerevan]] |
26700 area = 29,800 |
26701 areami² = 11,506 | &lt;!--Do not remove --&gt;
26702 area_rank = 139th &lt;small&gt;1&lt;/small&gt; |
26703 area_magnitude = 1 E11 |
26704 percent_water = 4.7 |
26705 population_estimate = 2,982,904 |
26706 population_estimate_year = 2005 |
26707 population_estimate_rank = 133rd |
26708 population_census = 3,288,000 |
26709 population_census_year = 1989 |
26710 population_density = 100 |
26711 population_densitymi² = 259 | &lt;!--Do not remove --&gt;
26712 population_density_rank = 74th |
26713 GDP_PPP_year = 2005 |
26714 GDP_PPP = $13,650,000,000 |
26715 GDP_PPP_rank = 130th |
26716 GDP_PPP_per_capita = $4,600 |
26717 GDP_PPP_per_capita_rank = 119th |
26718 HDI_year = 2003 |
26719 HDI = 0.759 |
26720 HDI_rank = 83rd |
26721 HDI_category = &lt;font color=&quot;#FFCC00&quot;&gt;medium&lt;/font&gt; |
26722 sovereignty_type = [[Independence]] |
26723 established_events = &amp;nbsp;-&amp;nbsp;Declared&lt;br /&gt; &amp;nbsp;-&amp;nbsp;Established |
26724 established_dates = From the [[Soviet Union]]&lt;br/ &gt; [[August 23]] [[1990]]&lt;br/ &gt; [[September 21]] [[1991]] |
26725 currency = [[Dram (currency)|Dram]] |
26726 currency_code = AMD |
26727 time_zone = [[UTC]] |
26728 utc_offset = +4 |
26729 time_zone_DST = [[DST]] |
26730 utc_offset_DST = +5 |
26731 cctld = [[.am]] |
26732 calling_code = 374 |
26733 footnotes = &lt;small&gt;1: Area does not include [[Nagorno-Karabakh]].&lt;/small&gt; |
26734 }}
26735 &lt;!-- END INFOBOX --&gt;
26736 The '''Republic of Armenia''', or '''Armenia''' ([[Armenian language|Armenian]]: {{Hayeren|Õ€ÕĄÕĩÕĄÕŊÕŋÕĄÕļ}}, ''Hayastan'', {{Hayeren|Õ€ÕĄÕĩք}}, ''Hayq''), is a [[landlocked]] [[Eurasian]] country in the [[Caucasus]] region, bordered by [[Turkey]] to the west, [[Georgia (country)|Georgia]] to the north, [[Azerbaijan]] to the east, and [[Iran]] and the [[Nakhichevan]] [[exclave]] of Azerbaijan to the south. Armenia is a member of the [[Council of Europe]] and the [[Commonwealth of Independent States]] and for centuries has been on the crossroads between the east and west.
26737
26738 == Origin of the name ==
26739 The original [[Armenian language|Armenian]] name for the country was ''Hayq'', later ''Hayastan'', translated as ''the land of Haik'', and consisting of the name Haik and the [[Persian language|Persian]] suffix '[[-stan]]' (land). According to legend, [[Haik]] was a great-great-grandson of [[Noah]] (son of [[Togarmah]], who was a son of [[Gomer]], a son of Noah's son, [[Japheth]]), and according to an ancient Armenian tradition, a forefather of all [[Armenian people|Armenians]]. He is said to have settled below [[Mount Ararat]], travelled to assist in building the [[Tower of Babel]], and, after his return, defeated the [[Babylon|Babylonian]] king Bel (believed by some researchers to be [[Nimrod]]) on [[August 11]], [[25th century BC|2492 BC]] near [[Lake Van]], in the southern part of historic Armenia (presently in [[Turkey]]).
26740
26741 Hayq was given the name Armenia by the surrounding states, as it was the name of the strongest tribe living in the historic Armenian lands, who called themselves ''Armens''. It is traditionally derived from ''Armenak'' or ''Aram'' (the great-grandson of Haik's great-grandson, and another leader who is, according to Armenian tradition, the ancestor of all Armenians). Some Jewish and Christian scholars write that the name 'Armenia' was derived from ''Har-Minni'', that is 'Mountains of Minni' (or [[Mannai]]). Pre-Christian accounts suggest that ''Nairi'', meaning ''land of rivers'', was an ancient name for the country's mountainous region, first used by [[Assyrians]] around [[1200 BC]]; while the first recorded inscription bearing the name Armenia, namely the [[Behistun Inscription]] in [[Iran]], dates from [[521 BC]].
26742
26743 == History ==
26744 {{History of Armenia}}
26745 {{main|History of Armenia}}
26746
26747 Armenia has been populated by humans since prehistoric times, and has been proposed as the site of the Biblical [[Garden of Eden]].
26748
26749 Armenia was a regional empire with a rich culture in the years leading up to the [[1st century]], spanning from the shores of the [[Black Sea]] to the [[Caspian Sea]] and the [[Mediterranean Sea]] during the rule of [[Tigranes the Great]].
26750
26751 Armenia's strategic location between two continents has subjected it to invasions by many peoples, including the [[Assyrians]], [[Persians]], [[Greeks]], [[ancient Rome|Romans]], [[Byzantines]], [[Arabs]], [[Turkic peoples|Turks]] and [[Mongols]].
26752
26753 In [[Anno Domini|AD]] [[301]], Armenia became the first country in the world to adopt [[Christianity]] as its official [[state religion]], twelve years before the Roman Empire granted Christianity official toleration under [[Galerius]], and some 30-40 years before Constantine was baptised. There had been various [[paganism|pagan]] communities before Christianity, but they were converted by an influx of Christian missionaries.
26754
26755 Having changed between various dynasties -- including [[Parthian]] (Iranian), [[Ancient Rome|Roman]], [[Byzantine]], [[Arab]], [[Mongol]] and [[Iran|Persian]] occupations -- Armenia was substantially weakened. In 1500's, the [[Ottoman Empire]] and [[Safavid]] Persia divided Armenia among themselves.
26756
26757 In 1813 and 1828, present-day Armenia (consisting of the [[Erivan]] and [[Karabakh]] [[khanate]]s within Persia) was temporarily incorporated into the [[Russian Empire]]. After a short-lived independent republic established after the [[Bolshevik Revolution]] in [[Petrograd]], Armenia was incorporated into the [[Union of Soviet Socialist Republics|USSR]]. Between 1922 and 1936 it existed as the [[Transcaucasian Soviet Federated Socialist Republic]] (with Georgia, Armenia, and Azerbaijan), and from 1936 to 1991 as the [[Armenian SSR]].
26758
26759 During the final years of the [[Ottoman Empire]] ([[1915]]-[[1922]]), a large proportion of Armenians living in [[Anatolia]] perished as a result of what is termed the [[Armenian Genocide]], regarded by Armenians and the vast majority of Western historians to have been state-sponsored mass killings. Turkish authorities, however, maintain that the deaths were a result of a [[civil war]] coupled with disease and [[famine]], with casualties incurred by both sides. Most estimates for the number of Armenians killed range from [[Ottoman Armenian casualties|650,000 to 1,500,000]], and these events are traditionally commemorated yearly on [[April 24]]. Armenians and a handful of other countries worldwide have been campaigning for official recognition of the events as genocide for over 30 years, but there are also many countries who are pressured not to officially characterize the Armenian massacres as genocide.
26760
26761 Armenia remained preoccupied by a long conflict with [[Azerbaijan]] over [[Nagorno-Karabakh]], a mostly Armenian-populated [[enclave]] that, Armenians allege, [[Stalin]] had placed in Soviet Azerbaijan. A military conflict between Armenia and Azerbaijan began in 1988, and the fighting escalated after both countries gained independence from the Soviet Union in 1991. By May 1994, when a [[cease-fire]] took hold, &lt;!--ethnic WERE THEY ETHNIC OR ARMENIAN REPUBLIC FORCES&gt;/!--&gt;Armenian forces controlled not only [[Nagorno-Karabakh]] but also the surrounding districts of Azerbaijan proper. The economies of both countries have been hurt in the absence of a peaceful resolution.
26762
26763 == Politics ==
26764 {{main|Politics of Armenia}}
26765 The Government of Armenia's stated aim is to build a Western-style [[parliamentary democracy]] as the basis of its [[form of government]]. However, international observers have questioned the fairness of Armenia's parliamentary and presidential elections and constitutional referenda since 1995, citing polling deficiencies, lack of cooperation by the [[Electoral Commission|electoral commission]], and poor maintenance of electoral lists and polling places. For the most part however, Armenia is considered one of the more pro-democratic nations in the [[Commonwealth of Independent States]].
26766
26767 The [[unicameral parliament]] (also called the National Assembly) is controlled by a coalition of three political parties: the conservative Republican party [http://www.hhk.am], the [[Armenian Revolutionary Federation]], and the [[Country of Law]] party. The main opposition is composed of several smaller parties joined in the [[Justice Bloc]].
26768
26769 Armenians voted overwhelmingly for independence in a September 1991 referendum. [[Levon Ter-Petrossian]] was president until January 1998, when public demonstrations against his increasingly authoritarian regime and his domestic and foreign policies forced his resignation. In 1999, as the Prime Minister [[Vasgen Sarkissian|Vazgen Sargsian]], parliament Speaker [[Karen Demirchyan|Karen Demirchian]], and six other officials were killed in the attack on the National Assembly [http://www.aaainc.org/ArTW/article.php?articleID=468], the country experienced a period of political instability. President [[Robert Kocharian]] was successful in riding out the unrest, and currently rules with the support of the parliamentary coalition.
26770
26771 == Administrative Provinces ==
26772 [[Image:ArmeniaNumbered.png|right|200px|Provinces of Armenia]]
26773 Armenia is divided into 11 [[province]]s (''marzer'', singular - ''marz''):
26774
26775 #[[Aragatsotn]] ({{Hayeren|ÔąÖ€ÕĄÕŖÕĄÕŽÕ¸ÕŋÕļÕĢ Õ´ÕĄÖ€ÕĻ}})
26776 #[[Ararat (province)|Ararat]] ({{Hayeren|ÔąÖ€ÕĄÖ€ÕĄÕŋÕĢ Õ´ÕĄÖ€ÕĻ}})
26777 #[[Armavir (province)|Armavir]] ({{Hayeren|ÔąÖ€Õ´ÕĄÕžÕĢրÕĢ Õ´ÕĄÖ€ÕĻ}})
26778 #[[Gegharkunik]] ({{Hayeren|ÔŗÕĨÕ˛ÕĄÖ€Ö„Õ¸Ö‚ÕļÕĢքÕĢ Õ´ÕĄÖ€ÕĻ}})
26779 #[[Kotayk]] ({{Hayeren|ÔŋÕ¸ÕŋÕĄÕĩքÕĢ Õ´ÕĄÖ€ÕĻ}})
26780 #[[Lori (province)|Lori]] ({{Hayeren|ÔŧÕ¸Õŧու Õ´ÕĄÖ€ÕĻ}})
26781 #[[Shirak]] ({{Hayeren|ՇÕĢÖ€ÕĄÕ¯ÕĢ Õ´ÕĄÖ€ÕĻ}})
26782 #[[Syunik|Syunik']] ({{Hayeren|ՍÕĩուÕļÕĢքÕĢ Õ´ÕĄÖ€ÕĻ}})
26783 #[[Tavush]] ({{Hayeren|ÕÕĄÕžÕ¸Ö‚ÕˇÕĢ Õ´ÕĄÖ€ÕĻ}})
26784 #[[Vayots Dzor]] ({{Hayeren|ÕŽÕĄÕĩոց ՁորÕĢ Õ´ÕĄÖ€ÕĻ}})
26785 #[[Yerevan]] ({{Hayeren|ÔĩÖ€Ö‡ÕĄÕļ}})
26786 &lt;br clear=&quot;all&quot; /&gt;
26787
26788 == Geography ==
26789 [[Image:Armenia map.png|thumb|Map of Armenia]]
26790 {{main|Geography of Armenia}}
26791 Armenia is a [[landlocked]] country in the [[Transcaucasus|southern Caucasus]]. Located between the [[Black Sea|Black]] and [[Caspian Sea]]s, Armenia is bordered on the north and east by [[Georgia (country)|Georgia]] and [[Azerbaijan]], and on the south and west by [[Iran]] and [[Turkey]]. Though geographically in Western Asia, politically and culturally Armenia is closely aligned with Europe. Historically, Armenia has been at the crossroads between Europe and Southwest Asia, and is therefore seen as a transcontinental nation.
26792
26793 The Republic of Armenia, covering an area of 30,000 [[square kilometre]]s (11,600&amp;nbsp;[[square mile|sq.&amp;nbsp;mi]]), is located in the north-east of the [[Armenian Highland]] (covering 400,000 sq km or 154,000&amp;nbsp;sq.&amp;nbsp;mi), otherwise known as historic Armenia and considered as the original homeland of [[Armenians]].
26794
26795 The terrain is mostly [[mountain|mountainous]], with fast flowing [[rivers]] and few [[forests]]. The climate is highland [[Continental climate|continental]]: hot summers and cold winters. The land rises to 4,095 [[metre]]s (13,435&amp;nbsp;[[foot (unit of length)|ft]]) [[above sea-level]] at [[Mount Aragats]], and no point is below 400 metres (1,312&amp;nbsp;ft) above sea level. [[Ararat|Mount Ararat]], regarded by the Armenians as a [[symbol]] of their land, is the highest mountain in the region and used to be part of Armenia until around 1915, when it fell to the Turks.
26796
26797 Armenia is trying to address its [[environment|environmental]] problems. It has established a Ministry of Nature Protection and introduced taxes for air and water pollution and solid waste disposal, whose revenues are used for environmental protection activities. Armenia is interested in cooperating with other members of the [[Commonwealth of Independent States]] (CIS, a group of 12 former [[Soviet]] republics) and with members of the international community on environmental issues. The Armenian Government is working toward closing its Nuclear Power Plant at Medzamor near [[Yerevan]] as soon as alternative energy sources are identified.
26798
26799 == Economy ==
26800 {{main|Economy of Armenia}}
26801 Until independence, Armenia's economy was largely [[industry]]-based – [[chemical]]s, [[electronics]], machinery, processed [[food]], [[synthetic rubber]], and [[textile]] – and highly dependent on outside resources. [[Agriculture]] contributed only 20% of net material product and 10% of employment before the breakup of the Soviet Union in 1991. Armenian mines produce [[copper]], [[zinc]], [[gold]], and [[lead]]. The vast majority of energy is produced with [[fuel]] imported from Russia, including [[gas]] and nuclear fuel (for its one [[nuclear power plant]]); the main domestic energy source is [[hydroelectric]]. Small amounts of [[coal]], gas, and [[petroleum]] have not yet been developed.
26802
26803 Like other newly independent states of the former Soviet Union, Armenia's economy suffers from the legacy of a [[centrally planned economy]] and the breakdown of former Soviet trading patterns. Soviet investment in and support of Armenian industry has virtually disappeared, so that few major enterprises are still able to function. In addition, the effects of the 1988 [[Spitak Earthquake]], which killed more than 25,000 people and made 500,000 homeless, are still being felt. The conflict with Azerbaijan over Nagorno-Karabakh has not been resolved. The closure of Azerbaijani and Turkish borders has devastated the economy, because Armenia depends on outside supplies of energy and most raw materials. Land routes through Georgia and Iran are inadequate or unreliable. [[Gross domestic product|GDP]] fell nearly 60% from 1989 until 1992–[[1993]]. The national currency, the dram, suffered hyperinflation for the first years after its introduction in 1993.
26804
26805 Nevertheless, the government was able to make wide-ranging economic reforms that paid off in dramatically lower inflation and steady growth. The 1994 cease-fire in the Nagorno-Karabakh conflict has also helped the economy. Armenia has had strong economic growth since 1995, building on the turnaround that began the previous year, and inflation has been negligible for the past several years. New sectors, such as [[precious stone]] processing and [[jewelry]] making, [[information technology|information]] and [[communication technology]], and even [[tourism]] are beginning to supplement more traditional sectors in the economy, such as agriculture.
26806
26807 This steady economic progress has earned Armenia increasing support from international institutions. The [[International Monetary Fund]] (IMF), [[World Bank]], [[European Bank for Reconstruction and Development]] (EBRD), and other international financial institutions (IFIs) and foreign countries are extending considerable grants and loans. Loans to Armenia since 1993 exceed $1.1 billion. These loans are targeted at reducing the budget deficit, stabilizing the currency; developing private businesses; energy; the agriculture, food processing, transportation, and health and education sectors; and ongoing rehabilitation in the earthquake zone. The government joined the [[World Trade Organization]] on [[February 5]], [[2003]]. But one of the main sources of foreign direct investments remains the Armenian diaspora, which finances major parts of the reconstruction of infrastructure and other public projects. Being a growing democratic state, Armenia also hopes to get more financial aid from the Western World.
26808
26809 A liberal foreign investment law was approved in June 1994, and a Law on Privatization was adopted in 1997, as well as a program on state property privatization. Continued progress will depend on the ability of the government to strengthen its macroeconomic management, including increasing revenue collection, improving the investment climate, and making strides against corruption.
26810
26811 In the 2006 [[Index of Economic Freedom]], Armenia ranked 27th best, tied with [[Japan]] and ahead of countries like [[Norway]], [[Spain]], [[Portugal]] and [[Italy]]. However, Armenia ranked very low on property rights worse than countries like Botswana, Trinidad and Tobago.[http://www.heritage.org/research/features/index/]
26812
26813 In the 2005 Transparency International Corruption Index Armenia ranked 88, Highly Corrupt.[http://www.transparency.org/policy_and_research/surveys_indices/cpi/2005]
26814
26815 == Demographics ==
26816 {{main|Demographics of Armenia}}
26817 Armenia has a population of 2,982,904 (July 2005 est.) and is the second most densely populated of the former Soviet republics. There has been a problem of population decline due to elevated levels of [[emigration]] after the break-up of the [[USSR]]. The rates of emigration and population decline, however, have been decreasing in the recent years, a trend which is expected to continue. In fact Armenia is expected to resume its positive population growth by 2010.
26818
26819 Ethnic [[Armenians]] make up 97.9% of the population. [[Kurds]] make up 1.3%, and [[Russians]] 0.5%. There are smaller communities of [[Assyrians]], [[Georgians]], [[Greeks]] and [[Ukrainians]]. Most [[Azerbaijanis]], once a sizable population, have left since independence.
26820
26821 Nearly all of the Armenians in [[Azerbaijan]] (approximately 120,000) now live in the [[Nagorno-Karabakh]] region. Armenia has a very large [[Armenian Diaspora|diaspora]] (8 million by some estimates, greatly exceeding the 3 million population of Armenia itself), with communities existing across the globe, including [[France]], [[Lebanon]], and [[North America]].
26822
26823 The predominant religion in Armenia is [[Christianity]]. The roots of the [[Armenian Church]] go back to the [[1st century|1st]] century AD. According to tradition, the [[Armenian Church]] was founded by two of Jesus' twelve [[Twelve Apostles|apostle]]s--[[Saint Jude|Thaddaeus]] and [[Bartholomew]]--who preached Christianity in Armenia in the 40's-60's AD. Because of these two founding [[Twelve Apostles|apostle]]s, the official name of the [[Armenian Church]] is [[Armenian Apostolic Church]]. Armenia was the first nation to adopt Christianity as a state religion, in AD [[301]]. Over 93% of Armenian Christians belong to the [[Armenian Apostolic Church]], a form of Oriental (Non-[[Chalcedonian]]) Orthodoxy, which is a very ritualistic, conservative church, roughly comparable to the [[Coptic Church|Coptic]] and [[Syriac Orthodox Church|Syrian]] churches. Armenia also has a population of Catholics (both Roman and Mekhitarist - Armenian Uniate (180,000)), evangelical Protestantsand followers of the Armenian traditional religion. The [[Yazidi]] [[Kurds]], who live in the western part of the country, practise [[Yazidism]]. The [[Armenian Catholic Church]] is headquartered in [[Bzoummar]], [[Lebanon]].
26824
26825 Ethnic [[Azeris]] and [[Kurds]] who lived in the country before the [[Nagorno-Karabakh|Karabakh]] conflict practised [[Islam]], but most Azeris were driven out of Armenia into [[Azerbaijan]] between 1988 and 1991 at the beginning of the conflict. During the same period, Armenia also received a large influx of Armenians scattered throughout Azerbaijan and large number of Azeri population migrated to Azerbaijan.
26826
26827 == Culture ==
26828 [[Image:Yerewan with Ararat.jpg|thumb|right|Although located in [[Turkey]], [[Mount Ararat]], here seen from Yerevan, is the national symbol of Armenia.]]
26829 [[Image:Mother Armenia, Yerevan, Day.jpg|thumb|right|Mother Armenia (Mayr Hayastan) statue, located near Victory Park, in Yerevan.]]
26830 {{Main|Culture of Armenia}}
26831 Armenians have their own highly distinctive [[Armenian alphabet|alphabet]] and [[Armenian language|language]]. 96% of the people in the country speak Armenian, while 75.8% of the population speaks [[Russian language|Russian]] as well. The adult literacy rate in Armenia is 99% [http://www.cia.gov/cia/publications/factbook/geos/am.html]. Most adults in Yerevan can communicate in Russian, while [[English language|English]] is increasing in popularity.
26832
26833 [[Caucasus|Caucasian]] hospitality is legendary and stems from ancient tradition. Social gatherings focused around sumptuous presentations of course after course of elaborately prepared, well-seasoned (but not spicy-hot) food. The host or hostess will often put morsels on a guest's plate whenever it is empty or fill his or her glass when it gets low. After a helping or two it is acceptable to refuse politely or, more simply, just leave a little uneaten food.
26834
26835 The National Art Gallery in Yerevan has more than 16,000 works that date back to the [[Middle Ages]]. It houses paintings by many [[European]] masters. The Modern Art Museum, the Children’s Picture Gallery, and the [[Martiros Saryan]] Museum are only a few of the other noteworthy collections of fine art on display in Yerevan. Moreover, many private galleries are in operation, with many more opening each year. They feature rotating exhibitions and sales.
26836
26837 The world-class [[Armenian Philharmonic Orchestra]] performs at the beautifully refurbished city Opera House, where you can also attend a full season of opera. In addition, several chamber ensembles are highly regarded for their musicianship, including the [[National Chamber Orchestra of Armenia]] and the [[Serenade Orchestra]]. Classical music can also be heard at one of several smaller venues, including the State Music Conservatory and the Chamber Orchestra Hall. [[Jazz]] is popular, especially in the summer when live performances are a regular occurrence at one of the city’s many outdoor [[cafe|cafes]].
26838
26839 Yerevan’s Vernisage (arts and crafts market), close to Republic Square, bustles with hundreds of vendors selling a variety of crafts, many of superb workmanship, on weekends and Wednesdays (though the selection is much reduced mid-week). The market offers woodcarving, antiques, fine lace, and the hand-knotted wool carpets and kilims that are a Caucasus specialty. Obsidian, which is found locally, is crafted into an amazing assortment of jewelry and ornamental objects. Armenian gold smithery enjoys a long and distinguished tradition, populating one corner of the market with a selection of gold items. Soviet relics and souvenirs of recent Russian manufacture—nesting dolls, watches, enamel boxes and so on, are also available at the Vernisage.
26840
26841 Across from the Opera House, a popular art market fills another city park on the weekends. Armenia’s long history as a crossroads of the ancient world has resulted in a landscape with innumerable fascinating archaeological sites to explore. [[Medieval]], [[Iron Age]], [[Bronze Age]] and even [[Stone Age]] sites are all within a few hours drive from the city. All but the most spectacular remain virtually undiscovered, allowing visitors to view churches and fortresses in their original settings.
26842
26843 The American University of Armenia has graduate programs in Business and Law, among others. The institution owes its existence to the combined efforts of the Government of Armenia, the [[Armenian General Benevolent Union]], USAID, and the Boalt Hall School of Law at the [[University of California, Berkeley]].
26844
26845 The extension programs and the library at AUA form a new focal point for English-language intellectual life in the city. Many of the country’s most successful young entrepreneurs are graduates of this institution.
26846
26847 == See also ==
26848 *[[Artsakh]]
26849 *[[Armenian people]]
26850 *[[Armenian Genocide]]
26851 *[[First Republic of Armenia]]
26852 *[[Castles of Armenia]]
26853 *[[Hayastani Azgayin Scautakan Sharjum Kazmakerputiun]] - the Armenian National Scout Movement
26854 *[[Nagorno-Karabakh]]
26855 *[[Public holidays in Armenia]]
26856 *[[Music of Armenia]]
26857 *[[Armenian needlelace]]
26858 *[[List of Armenians]]
26859 *[[Khachkar]]s - intricate Armenian knotwork crosses
26860
26861 == Miscellaneous topics ==
26862 *[[Communications in Armenia]]
26863 *[[Foreign relations of Armenia]]
26864 *[[Military of Armenia]]
26865 *[[Transportation in Armenia]]
26866
26867 == External links and references==
26868 {{sisterlinks|Armenia}}
26869 *[http://www.armeniapedia.org Armeniapedia.org] - the Armenian Wiki with thousands of articles
26870 *[http://www.armenianhouse.org Armenianhouse.org] - Armenian literature and history
26871 *[http://www.heritage.org/research/features/index/ The Heritage Foundation] - publishes the index of economic freedom
26872 *[http://www.cia.gov/cia/publications/factbook/geos/am.html CIA] - The World Factbook -- Armenia
26873 *[http://www.gov.am/enversion/index.html Gov.am] - Government of Armenia
26874 *[http://www.loc.gov/rr/international/amed/armenia/armenia.html LoC.gov] - Library of Congress Portal on Armenia
26875 *[http://www.armeniainfo.am Armeniainfo.am] - Armenia information
26876 *[http://www.armgate.com Armgate.com] - Armenian News and pictures of Churches and Ararat Mountain
26877 *[http://hayastan.republika.pl/armenia.htm hayastan.republika.pl] - General information (Armenian, English, Polish)
26878 *Portals
26879 **[http://www.hayastan.com Hayastan.com] - Armenian portal with millions of visitors (Armenian,Russian,English)
26880 **[http://www.circle.am Circle.am] Armenian web ring
26881 **[http://www.armeniasearch.com Armeniasearch.com] - Armenian Search Engine and Directory
26882 *News sites
26883 **[http://www.panarmenian.net PanARMENIAN.Net] - Armenia &amp; Armenian News
26884 **[http://www.a1plus.am A1plus.am] - Fastest News from Armenia
26885 **[http://www.groong.org Groong.org] - Armenian News Network - Groong
26886 **[http://www.ArmeniaNow.com Armenia Now], edited by John Hughes
26887 **[http://www.caucaz.com/home_uk Caucaz.com] - Weekly online publishing articles and reports about Armenia and South Caucasus. Available in English and French
26888
26889 {{Europe}}
26890 {{Asia}}
26891 {{Southwest_Asia}}
26892 {{Commonwealth_of_Independent_States}}
26893
26894 [[Category:Armenia| ]]
26895
26896 [[af:ArmeniÃĢ]]
26897 [[ar:ØŖØąŲ…ŲŠŲ†ŲŠØ§]]
26898 [[an:Armenia]]
26899 [[ast:Armenia]]
26900 [[az:Ermənistan]]
26901 [[bg:АŅ€ĐŧĐĩĐŊиŅ]]
26902 [[zh-min-nan:Hayastan]]
26903 [[be:АŅ€ĐŧŅĐŊŅ–Ņ]]
26904 [[bn:āĻ†āĻ°ā§āĻŽā§‡āĻ¨āĻŋāĻ¯āĻŧāĻž]]
26905 [[bs:Armenija]]
26906 [[ca:Armènia]]
26907 [[cs:ArmÊnie]]
26908 [[cy:Armenia]]
26909 [[da:Armenien]]
26910 [[de:Armenien]]
26911 [[et:Armeenia]]
26912 [[el:ΑĪÎŧÎĩÎŊÎ¯Îą]]
26913 [[es:Armenia]]
26914 [[eo:Armenio]]
26915 [[fa:Ø§ØąŲ…Ų†ØŗØĒاŲ†]]
26916 [[fr:ArmÊnie]]
26917 [[fy:Armeenje]]
26918 [[gl:Armenia - Õ€ÕĄÕĩÕĄÕŊÕŋÕĄÕļ]]
26919 [[ko:ė•„ëĨ´ëŠ”니ė•„]]
26920 [[hy:Õ€ÕĄÕĩÕĄÕŊÕŋÕĄÕļ]]
26921 [[hi:ā¤†ā¤°āĨā¤ŽāĨ€ā¤¨ā¤ŋā¤¯ā¤ž]]
26922 [[hr:Armenija]]
26923 [[io:Armenia]]
26924 [[id:Armenia]]
26925 [[ia:Armenia]]
26926 [[is:Armenía]]
26927 [[it:Armenia]]
26928 [[he:ארמניה]]
26929 [[ka:სომხეთი]]
26930 [[kk:АŅ€ĐŧĐĩĐŊиŅ]]
26931 [[ku:Ermenistan]]
26932 [[la:Armenia]]
26933 [[lv:Armēnija]]
26934 [[lt:Armėnija]]
26935 [[li:ArmeniÃĢ]]
26936 [[hu:ÖrmÊnyorszÃĄg]]
26937 [[ms:Armenia]]
26938 [[mo:АŅ€ĐŧĐĩĐŊиŅ]]
26939 [[na:Armenia]]
26940 [[nl:ArmeniÃĢ]]
26941 [[nds:Armenien]]
26942 [[ja:ã‚ĸãƒĢãƒĄãƒ‹ã‚ĸ]]
26943 [[no:Armenia]]
26944 [[nn:Armenia]]
26945 [[pl:Armenia]]
26946 [[pt:ArmÊnia]]
26947 [[ro:Armenia]]
26948 [[ru:АŅ€ĐŧĐĩĐŊиŅ]]
26949 [[sa:ā¤†ā¤°āĨā¤ŽāĨ€ā¤¨ā¤ŋā¤¯ā¤ž]]
26950 [[sq:Armenia]]
26951 [[sh:Jermenija]]
26952 [[simple:Armenia]]
26953 [[sk:ArmÊnsko]]
26954 [[sl:Armenija]]
26955 [[sr:ЈĐĩŅ€ĐŧĐĩĐŊиŅ˜Đ°]]
26956 [[fi:Armenia]]
26957 [[sv:Armenien]]
26958 [[tl:Armenia]]
26959 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸˛ā¸ŖāšŒāš€ā¸Ąāš€ā¸™ā¸ĩā¸ĸ]]
26960 [[tr:Ermenistan]]
26961 [[uk:ВŅ–Ņ€ĐŧĐĩĐŊŅ–Ņ]]
26962 [[ur:ØĸØąŲ…ÛŒŲ†ÛŒØ§]]
26963 [[zh:äēžįžŽå°ŧäēž]]</text>
26964 </revision>
26965 </page>
26966 <page>
26967 <title>Azerbaijan</title>
26968 <id>746</id>
26969 <restrictions>move=:edit=</restrictions>
26970 <revision>
26971 <id>42040989</id>
26972 <timestamp>2006-03-03T11:31:48Z</timestamp>
26973 <contributor>
26974 <username>Stephen G. Brown</username>
26975 <id>117550</id>
26976 </contributor>
26977 <comment>rvt</comment>
26978 <text xml:space="preserve">:''For the region in northwest [[Iran]], see [[Iranian Azerbaijan]]''
26979 {{Infobox Country|
26980 native_name = Azərbaycan Respublikası&lt;br&gt;Republic of Azerbaijan|
26981 common_name = Azerbaijan |
26982 national_motto = none |
26983 national_anthem = [[Azərbaycan RespublikasÄąnÄąn DÃļvlət Himni]] |
26984 image_flag = Flag of Azerbaijan.svg |
26985 image_coat = Azericoat.gif |
26986 image_map = LocationAzerbaijan.png |
26987 capital = [[Baku]] |latd=40|latm=22|latNS=N|longd=49|longm=53|longEW=E|
26988 largest_city = [[Baku]] |
26989 official_languages = [[Azerbaijani language|Azerbaijani]] |
26990 government_type = [[Representative democracy]] |
26991 leader_titles = [[President of Azerbaijan|President]]&lt;br&gt;Prime Minister |
26992 leader_names = [[Ilham Aliyev]]&lt;br&gt;[[Artur Rasizade]] |
26993 sovereignty_type = [[Collapse of the Soviet Union|Independence]] |
26994 established_events = &amp;nbsp;- Declared&lt;br&gt; &amp;nbsp;- Formerly |
26995 established_dates = From the [[Soviet Union]]&lt;br&gt;[[August 30]], [[1991]]&lt;br&gt; [[Azerbaijan SSR]] |
26996 area = 86,600 |
26997 areami² = 33,436 | &lt;!-- Do not remove [[WP:MOSNUM]]--&gt;
26998 area_rank = 112th |
26999 area_magnitude = 1 E9 |
27000 percent_water = negligible |
27001 population_estimate = 7,911,974 |
27002 population_estimate_year = 2005 |
27003 population_estimate_rank = 91st |
27004 population_census = N/A |
27005 population_census_year = 2000|
27006 population_density = 90 |
27007 population_densitymi² = 233 | &lt;!-- Do not remove [[WP:MOSNUM]]--&gt;
27008 population_density_rank = 81st |
27009 GDP_PPP_year = 2004 |
27010 GDP_PPP = $37,841,000,000 |
27011 GDP_PPP_rank = 87th |
27012 GDP_PPP_per_capita = $4,500 |
27013 GDP_PPP_per_capita_rank = 112th |
27014 HDI_year = 2003 |
27015 HDI = 0.729 |
27016 HDI_rank = 101st |
27017 HDI_category = &lt;font color=&quot;#FFCC00&quot;&gt;medium&lt;/font&gt; |
27018 currency = [[Manat (Azerbaijan)|Manat]] |
27019 currency_code = AZN |
27020 time_zone = |
27021 utc_offset = +4 |
27022 time_zone_DST = |
27023 utc_offset_DST = +5 |
27024 cctld = [[.az]] |
27025 calling_code = 994 |
27026 footnotes = |
27027 }}
27028 The '''Republic of Azerbaijan''' ([[Azerbaijani language|Azerbaijani]]: Azərbaycan or Azərbaycan Respublikası) is a country in the [[Caucasus]], at the crossroads of [[Europe]] and [[Southwest Asia]], with a coast on the [[Caspian Sea]]. It has frontiers with [[Russia]] in the north, [[Georgia (country)|Georgia]] in the northwest, [[Armenia]] in the west, and [[Iran]] in the south. The [[Nakhichevan|Nakhichevan Autonomous Republic]] (an [[exclave]] of Azerbaijan) borders Armenia to the north and east, Iran to the south and west, and [[Turkey]] to the northwest.
27029
27030 Azerbaijan is a secular state, and has been a member of the [[Council of Europe]] since 2001. A majority of the population are [[Shi'a Muslim]] and of Western [[Turkic peoples|Turkic]] descent, known as [[Azerbaijanis]], or simply Azeris. The country is formally an emerging [[democracy]], however with strong [[Authoritarianism|authoritarian]] rule.
27031
27032 == Etymology ==
27033
27034 There are several hypotheses regarding the origins of the name &quot;Azerbaijan.&quot; The most common theory is that it is derived from &quot;Atropatan.&quot; [[Atropat]] was the [[satrap]] at the time of the [[Persian empire|Persian]] [[Achaemenid dynasty|Achaemenid dynasty]], and gained independence after [[Alexander the Great]] destroyed the Achaemenids. The region was known as ''[[Medes|Media]] Atropatia'' or ''[[Atropatene]]'' at the time.
27035
27036 There are also alternative opinions that the term is a slight Turkification of ''Azarbaijan'', in turn an Arabicized version of the original Persian name ''ÂzarÃĸbÃĸdagÃĸn'', made up of ''Ãĸzar+Ãĸbadag+Ãĸn'' (''Ãĸzar''=fire; ''ÃĸbÃĸdag''=cultivated area; ''Ãĸn''=suffix of pluralization); that it traditionally means &quot;the land of eternal flames&quot; or &quot;the land of fire&quot;, which is probabely implies [[Zoroastrian]] fire temples in this land. Some Azeri historians contend that the name is made up of four [[Azerbaijani language|Azerbaijani]] components: ''az+er+bay+can'', which means &quot;the land of the brave Az people&quot; or &quot;an elevated place for the wealthy and exalted.&quot; &lt;!--please name some of these Azeri historians who so contend--&gt;
27037
27038 Historically, a large part of the territory of the present-day Azerbaijan Republic has been called [[Arran (Azerbaijan)|Arran]], named after Arran, a legendary founder of [[Caucasian Albania]]. However, the precise location identified by this name has shifted somewhat over time, currently referring to the lowland Karabakh plains situated between the [[Kura]] and [[Araks]] rivers.
27039
27040 Some opponents of the name ''Azerbaijan'' assert that it is anachronistic to use it in a historical context before 1918, because, they say, the term was first introduced by the national intelligentsia in early 20th century and later was endorsed by the Bolsheviks, with intention of claiming the northern province of [[Persian Empire|Persia]]. To substantiate this claim they state that until the early 20th century the population of present-day Azerbaijan had no clear ethnic identification and referred to themselves primarily as &quot;Muslims.&quot;
27041
27042 == History ==
27043 ''Main article: [[History of Azerbaijan]]''
27044
27045 The earliest known inhabitants of what is today Azerbaijan were the [[Caucasian Albania]]ns, a [[Languages of the Caucasus|Caucasian]]-speaking people who appear to have been in the region prior to the host of peoples who would eventually invade the Caucasus. Historically Azerbaijan has been occupied by a variety of peoples, including [[Armenians]], [[Persians]], [[Roman Empire|Romans]], [[Arabs]], [[Turkic peoples|Turks]], [[Mongols]], [[Greek Empire]], and [[Russians]].
27046
27047 The first state to emerge in the territory of present-day Republic of Azerbaijan was [[Mannai|Mannae]] in the 9th century [[Anno Domini|BC]], lasting until 616 BC when it was overthrown by the [[Medes]]. The satrapies of Atropatene and [[Caucasian Albania]] were established in the [[4th century BC]] and included the approximate territories of present-day Azerbaijan and southern parts of [[Dagestan]].
27048
27049 [[Islam]] spread rapidly in Azerbaijan following the Arab conquests in the [[7th century|7th]]&amp;ndash;[[8th century|8th centuries]]. After the power of the Arab Khalifate waned, several semi-independent states have been formed, the Shirvanshah kingdom being one of them. In the 11th century, the conquering [[Seljuk Turks]] became the dominant force in Azerbaijan and laid the ethnic foundation of contemporary [[Azerbaijanis]] or Azeri Turks. In the [[13th century|13]]&amp;ndash;[[14th century|14th centuries]], the country experienced [[Mongol]]-[[Tatars|Tatar]] invasions.
27050
27051 Azerbaijan was part of the [[Safavids|Safavid state]] in [[15th century|15th]]&amp;ndash;[[18th century|18th centuries]]. It also underwent a brief period of feudal fragmentation in the mid-18th to early 19th centuries, and consisted of independent khanates. Following the two wars between the [[Qajars|Qajar dynasty]] of [[Persian Empire|Persia]] and the [[Russian Empire]], Azerbaijan was acquired by Russia through the [[Treaty of Gulistan]] in 1813, and the [[Treaty of Turkmenchay]] in 1828.
27052
27053 After the collapse of the Russian Empire during [[World War I]], Azerbaijan declared independence and established the [[Azerbaijan Democratic Republic]]. This first Muslim republic in the world lasted only two years, from 1918 to 1920, before the [[Soviet]] [[Red Army]] invaded Azerbaijan. Subsequently, Azerbaijan became part of the [[Soviet Union]].
27054
27055 Azerbaijan re-established its independence upon the collapse of the Soviet Union in 1991. Despite a [[cease-fire]] in place since 1994, Azerbaijan has yet to resolve its conflict with [[Armenia]] over the predominantly ethnic Armenian [[Nagorno-Karabakh]] region. Azerbaijan has lost control of 16% of its territory including Karabakh, and must support some 800,000 [[refugee]]s and internally [[displaced person]]s as a result of the conflict.
27056
27057 == Politics ==
27058 ''Main article: [[Politics of Azerbaijan]]''
27059 [[Image:Ilham aliyev.jpg|right|160px|thumb|[[Ilham Aliyev]], President of Azerbaijan]]
27060
27061 Azerbaijan is a [[presidential republic]]. The [[head of state]] and [[head of government]] are separate from the country’s law-making body. The people elect the [[president of Azerbaijan|president]] for a five-year term of office. The president appoints all [[cabinet]]-level government administrators. A fifty-member national assembly makes the country’s laws. The people of Azerbaijan elect the [[National Assembly]]. Azerbaijan has [[universal suffrage]] above the age of eighteen.
27062
27063 After the presidential elections of [[Azerbaijan presidential election, 2003|October 15, 2003]], an official release of the Central Election Committee (CEC) gave [[Isa Gambar]] — leader of the largest opposition bloc, [[Bizim Azerbaycan]] (&quot;Our Azerbaijan&quot;) — 14% percent of the electorate and the second place in election. Third, with 3.6%, came [[Lala Shevket|Lala Shevket Hajiyeva]], leader of the National Unity Movement, the first woman to run in presidential election in Azerbaijan. Nevertheless, the [[Organization for Security and Co-operation in Europe|OSCE]], the [[Council of Europe]], [[Human Rights Watch]] and other international organizations, as well as local independent political and [[Non-governmental organization|NGO]]s voiced concern about observed vote rigging and a badly flawed counting process.
27064
27065 Several independent local and international organizations that had been observing and monitoring the election directly or indirectly declared [[Isa Gambar]] winner in the [[Azerbaijan presidential election, 2003|15 October election]]. Another view shared by many international organisations is that in reality a second tour of voting should have taken place between the two opposition candidates Isa Gambar and Lala Shevket.
27066
27067 *[[Human Rights Watch]] commented on [[Azerbaijan presidential election, 2003|these elections]]: &quot;Human Rights Watch research found that the government has heavily intervened in the campaigning process in favor of Prime Minister Ilham Aliev, son of current President Heidar Aliev. The government has stacked the Central Election Commission and local election commission with its supporters, and banned local non-governmental organizations from monitoring the vote. As the elections draw nearer, government officials have openly sided with the campaign of Ilham Aliev, constantly obstructing opposition rallies and attempting to limit public participation in opposition events. In some cases, local officials have closed all the roads into town during opposition rallies, or have extended working and school hours—on one occasion, even declaring Sunday a workday—to prevent participation in opposition rallies.&quot; (source: [http://www.hrw.org/backgrounder/eca/azerbaijan/index.htm HTML format])
27068
27069 *OSCE’s final report (source: [http://www.osce.org/documents/html/pdftohtml/1151_en.pdf.html HTML format] or [http://www.osce.org/documents/odihr/2003/11/1151_en.pdf PDF format])
27070
27071 Azerbaijan held [[Azerbaijan parliamentary election, 2005|parliamentary elections]] on Sunday, [[6 November]] [[2005]].
27072
27073 == Subdivisions ==
27074 ''Main article: [[Subdivisions of Azerbaijan]]''
27075
27076 Azerbaijan is divided into:
27077 *59 [[raion]]s (rayonlar; rayon &amp;ndash; singular),
27078 *11 [[cities]] (şəhərlər; şəhər &amp;ndash; singular),
27079 *1 [[autonomous republic]] (muxtar respublika), which itself is divided into:
27080 **7 raions
27081 **1 city
27082
27083 == Geography ==
27084 [[Image:Map of Azerbaijan with cities.png|thumb|right|200px|Map of Azerbaijan]]
27085 ''Main article: [[Geography of Azerbaijan]]''
27086
27087 Azerbaijan has an [[arid]] [[climate]], except in the southeast. Temperatures vary by season. In the southeast [[lowland]], temperatures average 6°[[Celsius|C]] (43°[[Fahrenheit|F]]) in the winter and 26°C (80°F) in the summer &amp;mdash; though daily maxima typically reach 32°C (89°F). In the northern and western [[mountain range]]s, temperatures average 12°C (55°F) in the summer and &amp;ndash;9°C (20°F) in the winter.
27088
27089 Annual rainfall over most of the country varies from 200 to 400 millimetres (8 to 16&amp;nbsp;in) and is generally lowest in the northeast. In the far southeast, however, the climate is much moister and annual rainfall can be as high as 1300 [[millimetre]]s (51 [[inch|in]]). For most of the country, the wettest periods are in spring and autumn, with summers being the driest.
27090
27091 == Economy ==
27092 ''Main article: [[Economy of Azerbaijan]]''
27093
27094 The economy is largely based on [[industry]]. Industries include machine manufacture, [[petroleum]] and other [[mining]], petroleum [[refining]], [[textiles|textile]] production, and chemical processing. [[Agriculture]] accounts for one-third of Azerbaijan’s economy. Most of the nation’s farms are [[irrigation|irrigated]]. In the lowlands, farmers grow such crops as [[cotton]], [[fruit]], [[cereal|grain]], [[tea]], [[tobacco]], and many types of [[vegetable]]s. [[Silkworm]]s are raised for the production of natural [[silk]] for the clothing industry. Azerbaijan’s herders raise [[cattle]], [[domestic sheep]] and [[goat]]s near the mountain ranges. [[Seafood]] and [[fish]] are caught in the nearby [[Caspian Sea]]. Azerbaijan has a highly dynamic economy, mainly because of oil, and has a GDP growth rate of up to 11% a year.
27095
27096 == Demographics ==
27097 ''Main article: [[Demographics of Azerbaijan]]''
27098
27099 Azerbaijan has population of roughly 7,911,974 (July 2005 est.), 90.6% of whom are ethnic [[Azerbaijanis|Azerbaijani]] (also called Azeris; 1999 census figures). Azeris also form about 24% of the population of [[Iran]], predominating in the northern regions of the country. Most of Armenia’s Azeri minority have left since independence and the [[Nagorno-Karabakh]] war. The second largest ethnic group are [[Russians]], who now form roughly 1.8% of the population, most having emigrated since independence.
27100 The [[Talysh]], an Iranian people, predominate in the southernmost regions of the country around the Talysh mountains and across the border into Iran. Some people argue that the number of [[Talysh]] is greater than officially recorded, as many of them are counted as Azerbaijanis.
27101 Numerous 'Dagestani' peoples live around the border with [[Dagestan]]. The main peoples are the [[Lezgis]], [[Caucasian Avars|Avar]] and the [[Tsakhur]]. Smaller groups include the [[Budukh]], [[Udi]], [[Kryts]] and [[Khinalug]]/Ketsh around the village of [[Xinaliq]]. Around the town of [[Quba]] in the north live the [[Tats]], also known as the [[Mountain Jews]], who are also to be found in Dagestan. Many Tats have emigrated to [[Israel]] in recent years, though this trend has slowed and even reversed more recently.
27102 The country’s large Armenian population mostly fled to [[Armenia]] and to other countries with the beginning of the Armenian-Azeri conflict over Nagorno-Karabakh. During the same period, Azerbaijan also received a large influx of Azerbaijanis fleeing Armenia and later [[Nagorno-Karabakh]] and adjacent provinces occupied by the Armenians. Almost all of Azerbaijan’s Armenians now live in Nagorno-Karabakh.
27103 Azerbaijan also contains numerous smaller groups, such as [[Kurds]], [[Georgians]], [[Tatars]] and [[Ukrainians]].
27104
27105 Most Azerbaijanis (about 60–70%) are [[Twelver Shia]] [[Islam|Muslim]]. Other [[religion]]s or beliefs that are followed by many in the country are the orthodox [[Sunni]] Islam, the [[Armenian Apostolic Church]] (in Karabakh), the [[Russian Orthodox Church]], and various other Christian and Muslim sects. The Tat in [[Quba]], as well as several thousand [[Ashkenazim Jews]] in Baku, follow [[Judaism]]. Adherence to religious dogmas is nominal for the majority of the population and attitudes are secular. Traditionally, villages around Baku and the [[Lenkoran]] region are considered stronghold of Shi‘ism, and in some northern regions populated by Sunni Dagestani people, the Salafi sect has gained a following. Folk Islam is widely practiced, but an organized [[Sufi]] movement is absent.
27106
27107 == Culture ==
27108 ''Main article: [[Culture of Azerbaijan]]''
27109
27110 The official language of Azerbaijan is [[Azerbaijani language|Azerbaijani]], a member of the [[Oguz]] subdivision of the [[Turkic languages|Turkic language family]], and is spoken by around 95% of the republic’s population, as well as about a third of the population of Iran. Its closest relatives in language are [[Turkish language|Turkish]] and [[Turkmen language|Turkmen]]. As a result of the language policy of the [[Soviet Union]], [[Russian language|Russian]] is also commonly spoken as a second language among the urbane. There are also speakers of [[Persian language|Persian]] and [[Kurdish language|Kurdish]] in the state. Azerbaijan’s culture has long cultural roots with [[Iran]] and [[Iranian peoples]].{{fact}}
27111 * [[Music of Azerbaijan]]
27112 * [[Islam in Azerbaijan]]
27113 * [[Azerbaijani literature]]
27114
27115 == Miscellaneous topics ==
27116 * [[Communications in Azerbaijan]]
27117 * [[Transportation in Azerbaijan]]
27118 * [[Military of Azerbaijan]]
27119 * [[Foreign relations of Azerbaijan]]
27120 * [[Public holidays in Azerbaijan]]
27121 * [[List of Azerbaijanis]]
27122 * [[Scout Association of Azerbaijan]]
27123 * [[Nagorno-Karabakh]]
27124
27125 ==References==
27126 *Forrest, Brett (Nov. 28, 2005). &quot;Over a Barrel in Baku&quot;. ''[[Fortune (magazine)|Fortune]]'', pp. 54&amp;ndash;60.
27127
27128 == External links==
27129 {{sisterlinks|Azerbaijan}}
27130 * [http://www.cia.gov/cia/publications/factbook/geos/aj.html CIA World Factbook: ''Azerbaijan'']
27131 * [http://news.bbc.co.uk/1/hi/world/europe/country_profiles/1235976.stm BBC Country Profile: ''Azerbaijan'']
27132 * [http://dmoz.org/Regional/Asia/Azerbaijan Open Directory Project: ''Azerbaijan''] directory category
27133 *[http://www.loc.gov/rr/international/amed/azerbaijan/azerbaijan.html Library of Congress Portals to the World: Azerbaijan] directory category
27134 * [http://www.azerb.com/ Azerbaijan from A to Z]
27135 * [http://www.azer.com Azerbaijan International] world's largest website about Azerbaijan
27136 * [http://www.nationsencyclopedia.com/Asia-and-Oceania/Azerbaijan.html Encyclopedia of Nations — Azerbaijan]
27137 * [http://www.azadlig.org/ Democratic Youth Movement New Idea]
27138 * [http://www.zerbaijan.com/ Virtual Azerbaijan Republic]
27139 *[http://www.caucaz.com/home_uk Caucaz.com]: Weekly online magazine publishing articles and reports about Azerbaijan and South Caucasus. Available in English and French.
27140 *[http://www.bakutoday.net Baku Today]
27141 *[http://www.azadliq.az/ Independent newspaper Azadliq]
27142 *[http://www.azstat.org/indexen.php State Statistical Committee of the Azerbaijan Republic]
27143 *[http://www.un-az.org United Nations Office in Azerbaijan] with a [http://www.un-az.org/couinf.htm country report]
27144 *[http://ifex.org/en/content/view/full/179/ IFEX: Press Freedom in Azerbaijan]
27145 {{Azerbaijantie}}
27146
27147 {{Europe}}
27148
27149 [[Category:Azerbaijan| ]]
27150
27151 [[ar:ØŖØ°ØąØ¨ŲŠØŦاŲ†]]
27152 [[an:AzerbayÃĄn]]
27153 [[ast:AzerbaiyÃĄn]]
27154 [[az:Azərbaycan]]
27155 [[bg:АСĐĩŅ€ĐąĐ°ĐšĐ´ĐļĐ°ĐŊ]]
27156 [[zh-min-nan:Azerbaijan]]
27157 [[be:АСŅŅ€ĐąĐ°ĐšĐ´ĐļĐ°ĐŊ]]
27158 [[bn:āĻ†āĻœāĻžāĻ°āĻŦāĻžāĻ‡āĻœāĻžāĻ¨]]
27159 [[bs:AzerbejdÅžan]]
27160 [[ca:Azerbaidjan]]
27161 [[cs:ÁzerbÃĄjdÅžÃĄn]]
27162 [[cy:Azerbaijan]]
27163 [[da:Aserbajdsjan]]
27164 [[de:Aserbaidschan]]
27165 [[et:AserbaidÅžaan]]
27166 [[el:ΑÎļÎĩĪÎŧĪ€ÎąĪŠĪ„ÎļÎŦÎŊ]]
27167 [[es:AzerbaiyÃĄn]]
27168 [[eo:Azerbajĝano]]
27169 [[eu:Azerbaijan]]
27170 [[fa:ØŦŲ…Ų‡ŲˆØąÛŒ ØĸØ°ØąØ¨Ø§ÛŒØŦاŲ†]]
27171 [[fr:Azerbaïdjan]]
27172 [[fy:Azerbeidzjan]]
27173 [[gl:AcerbaixÃĄn - Azərbaycan]]
27174 [[ko:ė•„ė œëĨ´ë°”ė´ėž”]]
27175 [[hi:ā¤…ā¤œā¤ŧā¤°ā¤ŦāĨˆā¤œā¤žā¤¨]]
27176 [[hr:AzerbejdÅžan]]
27177 [[io:Azerbaijan]]
27178 [[id:Azerbaijan]]
27179 [[is:Aserbaídsjan]]
27180 [[it:Azerbaijan]]
27181 [[he:אזרבייג'ן]]
27182 [[ka:აზერბაიჯანი]]
27183 [[kk:Ķ˜ĐˇŅ–Ņ€ĐąĐ°ĐšĐļĐ°ĐŊ]]
27184 [[ku:Azerbeycan]]
27185 [[lv:AzerbaidŞāna]]
27186 [[lt:AzerbaidÅžanas]]
27187 [[lb:Aserbaidschan]]
27188 [[li:Azerbaidzjan]]
27189 [[hu:AzerbajdzsÃĄn]]
27190 [[ms:Azerbaijan]]
27191 [[na:Azerbaijan]]
27192 [[nl:Azerbeidzjan]]
27193 [[nds:Aserbaidschan]]
27194 [[ja:ã‚ĸã‚ŧãƒĢバイジãƒŖãƒŗ]]
27195 [[no:Aserbajdsjan]]
27196 [[nn:Aserbajdsjan]]
27197 [[os:АСĐĩŅ€ĐąĐ°ĐšĐ´ĐļĐ°ĐŊ]]
27198 [[pl:AzerbejdÅŧan]]
27199 [[pt:AzerbaijÃŖo]]
27200 [[ro:Azerbaidjan]]
27201 [[ru:АСĐĩŅ€ĐąĐ°ĐšĐ´ĐļĐ°ĐŊ]]
27202 [[sa:ā¤…ā¤œā¤°āĨā¤ŦāĨˆā¤œā¤žā¤¨]]
27203 [[sq:Azerbajxhani]]
27204 [[simple:Azerbaijan]]
27205 [[sk:AzerbajdÅžan]]
27206 [[sl:AzerbajdÅžan]]
27207 [[sr:АСĐĩŅ€ĐąĐĩŅ˜ŅŸĐ°ĐŊ]]
27208 [[fi:AzerbaidÅžan]]
27209 [[sv:Azerbajdzjan]]
27210 [[tl:Azerbaijan]]
27211 [[tt:Äzärbaycan]]
27212 [[th:ā¸›ā¸Ŗā¸°āš€ā¸—ā¸¨ā¸­ā¸˛āš€ā¸‹ā¸­ā¸ŖāšŒāš„ā¸šā¸ˆā¸˛ā¸™]]
27213 [[tr:Azerbaycan]]
27214 [[uk:АСĐĩŅ€ĐąĐ°ĐšĐ´ĐļĐ°ĐŊ]]
27215 [[ur:ØĸØ°ØąØ¨Ø§ØĻØŦاŲ†]]
27216 [[zh:é˜ŋåĄžæ‹œį–†]]</text>
27217 </revision>
27218 </page>
27219 <page>
27220 <title>Amateur astronomy</title>
27221 <id>748</id>
27222 <revision>
27223 <id>42139829</id>
27224 <timestamp>2006-03-04T02:08:03Z</timestamp>
27225 <contributor>
27226 <username>Mozasaur</username>
27227 <id>475997</id>
27228 </contributor>
27229 <minor />
27230 <comment>add amateur astro pics previously published by NASA</comment>
27231 <text xml:space="preserve">{{merge|Skygazing}}
27232 '''Amateur astronomy''', often called '''back yard astronomy''' in the US, is a [[hobby]] whose participants enjoy observing celestial objects. It is usually associated with viewing the [[night sky]] when most celestial objects and events are visible, but sometimes amateur astronomers also operate during the day for events such as [[sunspot]]s and [[solar eclipse]]s.
27233
27234 Amateur astronomers often look at the sky using nothing more than their eyes, but common tools for amateur astronomy include portable [[optical telescope|telescopes]] and [[binoculars]].
27235
27236 [[Image:AuroraAustralisDisplay.jpg|thumb|Aurora Australis Display Over Wellington NZ November 2001 Published by NASA SpaceWeather.com]]
27237 [[Image:CometNeat.jpg|thumb|Comet Neat over Wellington NZ 2003]]
27238
27239 == Amateur astronomy and scientific research ==
27240
27241 Unlike professional astronomy, scientific research is not always the ''main'' goal for many amateur astronomers. Work of scientific merit is certainly possible, however, and many amateurs contribute to the knowledge base of professional astronomers very successfully. Astronomy is often promoted as one of the few remaining sciences for which amateurs can still contribute useful data.
27242
27243 The majority of scientific contributions by amateur astronomers are in the area of data collection. In particular, this applies where large numbers of amateur astronomers with small telescopes are more effective than the relatively small number of large telescopes that are available to professional astronomers. Several organisations, such as the Center for Backyard Astrophysics [http://cba.phys.columbia.edu/], exist to help coordinate these contributions.
27244
27245 In particular, amateur astronomers often contribute toward activities such as monitoring the changes in brightness of [[variable star]]s, helping to track [[asteroid]]s, and observing [[occultation]]s to determine both the shape of asteroids and the shape of the terrain on the apparent edge of the [[Moon]] as seen from Earth.
27246
27247 In the past and present, amateur astronomers have also played a major role in discovering new [[comet]]s. Recently however, funding of projects such as the [[LINEAR|Lincoln Near-Earth Asteroid Research]] and [[Near Earth Asteroid Tracking]] projects has meant that ''most'' comets are now discovered by automated systems, long before it is possible for amateurs to see them.
27248
27249 A newer role for amateurs is searching for overlooked phenomena (e.g. [[Kreutz Sungrazers]]) in the vast libraries of digital images and other data captured by Earth and space based observatories, much of which is available over the Internet.
27250
27251 == Societies for amateur astronomy ==
27252
27253 There are a large number of [[astronomical society|amateur astronomical societies]] around the world that serve as a meeting point for those interested in amateur astronomy, whether they be people who are actively interested in observing or &quot;armchair astronomers&quot; who may be simply interested in the topic. Societies range widely in their goals, depending on a variety of factors such as geographic spread, local circumstances, size and membership. For instance, a local society in the middle of a large city may have regular meetings with speakers, focusing less on observing the night sky if the membership is less able to observe due to factors such as [[light pollution]].
27254
27255 It is common for local societies to hold regular meetings, which may include activities such as [[star party|star parties]]. Other activities could include [[amateur telescope making]], which was pioneered in America by [[Russell W. Porter]], who later played a major role in design and construction of the [[Hale Telescope]].
27256
27257 == Approaches to using amateur telescopes ==
27258
27259 Amateur telescopes come in many shapes and sizes, both commercial and home-built. The preferences of people who use them often differ.
27260
27261 === Star hopping ===
27262
27263 Some amateur astronomers prefer to learn the sky as accurately as they can, using maps to find their way between the stars. In this case a common approach is to use binoculars or a manually driven telescope, combined with star maps, to locate items of interest in the sky. The normal technique for doing this, by locating landmark stars and &quot;hopping&quot; between them, is called [[star hopping]].
27264
27265 === GOTO telescopes ===
27266
27267 More recently as technology has improved and prices have come down, automated &quot;GOTO&quot; telescopes have also become a popular choice. With these computer-driven telescopes, the user typically enters the name of the item they wish to look at, and the telescope finds it in the sky automatically with comparatively little further effort required by the user.
27268
27269 The main advantage of a &quot;GOTO&quot; telescope for an experienced amateur astronomer is the reduction of &quot;wasted&quot; time that may have otherwise been used in trying to find a particular object. This time can therefore be used more effectively for ''studying'' the object.
27270
27271 === Comparing methodologies ===
27272
27273 There is significant (though usually light-hearted) debate within the hobby about which method is better. Promoters of the [[star hopping]] approach for finding items in the sky usually argue that they know the sky much better as a result. The manual method also tends to require simpler equipment with less calibration and setup time, and is therefore more versatile. Promoters of &quot;GOTO&quot; telescopes often argue that they are more interested in studying objects, and the reward of finding them or learning exactly where they are is not as important to them.
27274
27275 It may also be argued that the money spent on complex electronics and mounting systems might be better spent on higher quality optics.
27276
27277 == Additional tools and activities ==
27278
27279 In addition to optical equipment, amateur astronomers use a variety of other tools such as celestial maps, and specialised computer software. There is a range of [[astronomy software]] available, from planetarium programs that simulate the sky to programs used to do various kinds of calculations pertaining to astronomical phenomena.
27280
27281 Most amateur astronomers also keep a record of their observations. This can take the form of an [[astronomical observing log|observing log]], in which they record details about which objects were observed and describing the details that were seen. [[Astrophotography]] and sketching are also popularly used to record observations.
27282
27283 == Beginning in amateur astronomy ==
27284
27285 There are a many ways for people to become involved in amateur astronomy and study the night sky. One option is to join a local [[astronomical society]], the members of which will often be very happy to help a newcomer take a more active part. Some people also prefer to simply teach themselves, in which case there are likely to be a large amount of books in the local library.
27286
27287 Common objects that are observed early are the [[Moon]] and [[planet]]s. Another thing that most newcomers to amateur astronomy become acquainted with are the more prominent [[constellation]]s in the night sky. When reading maps and interpreting instructions for future [[star hopping]], constellations are good starting points for identifying locations in the night sky. They are frequently referred to by amateur astronomers when discussing the location of items of interest when looked at with binoculars and telescopes.
27288
27289 === Beginning with a GOTO telescope ===
27290
27291 A relatively new ''type'' of beginning amateur astronomer, brought about by the increased affordability of powerful &quot;GOTO&quot; telescopes, is one who begins with such a telescope. It is possible for an inexperienced person to immediately look at a large amount of deep sky objects in the night sky without necessarily having any prior experience or training.
27292
27293 There is currently some debate among amateur astronomers about the merits of this approach to becoming involved in the hobby, and the effects that low-priced GOTO telescopes may be having. Amateur astronomy is exposed to more people, as an individual is less likely to be discouraged by the need to learn how to locate objects in the night sky before being able to see them. Some are concerned, however, that newcomers may become bored very quickly. A GOTO telescope does not distinguish between objects that are easy and hard to see, and newcomers may therefore begin with objects that require large amounts of experience or understanding to properly appreciate.
27294
27295 === Becoming acquainted with the night sky ===
27296
27297 Most tutors agree that it is very important to know one's way around the sky by means of the constellations. This ability forms a platform from which deeper explorations of the sky are then possible.
27298
27299 A planisphere can be used to find and identify the constellations. These devises show the location of the constellations for any time of the night or time of the year. An observer will also need a red flashlight to read star charts or the planisphere. Use of a red light helps preserve the dark adaptation of the eyes.
27300
27301 Having learned the main constellations, a beginner may want to extend their hobby and buy a pair of binoculars or a telescope.
27302
27303 ==== Using binoculars ====
27304
27305 With [[binoculars]] it is possible to see many [[deep sky object]]s (DSOs). Holding the binoculars can produce a shaky image. One way to improve the view is with the aid of a sturdy tripod mount to steady the view through the binoculars. Binoculars are still limited in range, although most of the [[Messier]] catalogue should be visible, as well as a great many [[New General Catalogue|NGC]]'s, especially near the [[Milky Way]]. An advantage of binoculars is that they allow more complete wide field views of the larger [[open clusters]] such as the [[Pleiades]], the [[Hyades]], the [[Coma Berenices]] cluster and [[Praesepe]], for example, of which only portions are usually observable in one [[field of view]] at higher magnifications.
27306
27307 ==== Using a telescope ====
27308
27309 With a telescope, the sky really comes alive, especially one that has an [[aperture]] of six inches or more. Some amateur telescopes are [[telescope making|built]] by their owners from scratch, but many good quality telescopes can be purchased from reputable companies. Thousands of DSOs are visible in a telescope and the determined amateur with a large (about 41 cm) telescope can push this to tens of thousands or more.
27310
27311 Another type of telescope to consider, especially if the amateur is observing with children, is a wide-field telescope, such as Edmund Scientific's f/4 Astroscan compact [[Reflecting_telescope|reflector]]. This type of telescope is typically a short tube [[reflector telescope|reflector]] and has an [[aperture]] of only 80 to 120 mm (3 1/4 to 4 3/4 inches), but is easier to target an object, since it offers a much wider field of view. With the aid of high power lenses (i.e. eyepieces), the amateur can zoom in on planets and some of the closer DSOs. It is the best of a blend of a telescope's narrow long range light gathering ability with a binocular's wider field of view.
27312
27313 Those who are particularly interested in observing the moon and planets may prefer a high-power design such as the [[Maksutov telescope]].
27314
27315 With any telescope, though, the mount is the most important feature. A tripod that doesn't shake every time one uses it is a must. Too many amateur astronomers give up because they have a hard time targeting an object. If the mounting tripod is rock solid, the amateur can enjoy their time observing the heavens instead of fighting with the telescope.
27316
27317 ==== Astrophotography ====
27318 [[Image:Comet_Hale_Bopp_reduced.jpg|thumbnail|right|A photo taken of Comet Hale Bopp using a standard [[35 mm film|35 mm]] camera with a 50 mm lens and 400 ISO film. The exposure was taken for 10 seconds on a tripod using a shutter cable release.]]
27319
27320 The next step in an amateur astronomer's quest for more space adventure could be the purchase of a good camera for [[Astrophotography]]. Starting out with a good 35 mm camera with a 50 mm lens mounted on a tripod and using a cable release and 400 or faster speed film, the amateur can capture some nice pictures of the planets and some larger nebula, like the [[Orion Nebula]]. Some of the larger comets and prolific meteor showers can be photographed this way as well.
27321
27322 As one progresses, cameras can be mounted directly on to telescopes, capturing on film many DSOs. Special films and even the technique of hypering the film has been employed by the amateur. Many publications accept these astrophotos in their [[magazines]], [[i.e.]], ''[[Astronomy (magazine)|Astronomy]]'' and ''[[Sky &amp; Telescope]]''.
27323
27324 A more recent development is the use of [[webcam|webcams]] to do [[speckle imaging]] (also known as ''video astronomy''). The resulting short exposure frames can be stacked using the [[shift-and-add]] method of [[speckle imaging]] or selected to do [[lucky imaging]], all using commercially available astronomy software.
27325
27326 ==== Sketching ====
27327 As an alternative to photography in order to make a record of observations, amateurs also use sketching. Sketching does not require the use of any specialized equipment and is therefore suitable for beginners as well as advanced amateur observers. There are different approaches to sketching that require different tools, simple pencil sketches can sometimes be used to make accurate renditions of what the observer sees through binoculars or a telescope. As the expewrience of the observer increases, more advanced drawing tools and techniques can be employed.
27328
27329 Sketching has the advantage of helping the observer scrutinize the object that is seen and can help bring out details that otherwise might have been overlooked.
27330
27331 === Suggested reading ===
27332
27333 Some good books for amateur astronomers to start with are:
27334
27335 * ''The Stars: A New Way to See Them'', by Hans Augusto Rey, ISBN 0-395-081211
27336 * ''NightWatch: An Equinox Guide to Viewing the Universe'', by [[Terence Dickinson]], ISBN 0-920-656897
27337 * ''The Backyard Astronomer's Guide'', by Terence Dickinson and Alan Dyer, ISBN 0-921-820119
27338 * ''Turn Left at Orion'', by [[Guy Consolmagno]], ISBN 0-521-34090-X
27339 * ''Skywatching'', by David H. Levy and John O'Byrne, ISBN 0-707-8354751-X
27340 * ''Seeing in the Dark: How Backyard Stargazers Are Probing Deep Space and Guarding Earth from Interplanetary Peril'', by Timothy Ferris, ISBN 0-684-865793
27341 * ''The Complete Manual Of Amateur Astronomy'', by P. Clay Sherrod
27342 * ''Burnham's Celestial Handbook: An Observer's Guide to the Universe Beyond the Solar System'' (3 vols.), by [[Robert Burnham, Jr.]], (Vol 1) ISBN 048623567X, (Vol 2) ISBN 0486235688, (Vol 3) ISBN 0486236730
27343
27344 == See also ==
27345
27346 * [[Amateur telescope making]]
27347 * [[Astronomical object]]
27348 * [[Astronomy]]
27349 * [[Observation]]
27350 * [[Observational astronomy]]
27351 * [[Skygazing]]
27352
27353 == External links ==
27354
27355 * [http://www.nightskygazing.net Night Sky Gazing] - information for newcomers to the hobby
27356 * [http://www.astroleague.org Astronomical League]
27357 * [http://www.popastro.com Society for Popular Astronomy] - the UK's biggest society for amateur astronomers
27358 * [http://www.licha.de astroscopic labs] - amateur astrophotography, reviews and articles
27359
27360 [[Category:Amateur astronomy| ]]
27361
27362 [[de:Amateurastronomie]]
27363 [[es:Astronomía amateur]]
27364 [[fr:Observation du ciel]]
27365 [[it:Astronomia amatoriale]]
27366 [[hu:AmatőrcsillagÃĄsz]]
27367 [[fi:Tähtitieteen harrastus]]
27368 [[th:ā¸”ā¸˛ā¸Ŗā¸˛ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒā¸Ēā¸Ąā¸ąā¸„ā¸Ŗāš€ā¸Ĩāšˆā¸™]]
27369 [[zh:业äŊ™å¤Šæ–‡å­Ļ]]</text>
27370 </revision>
27371 </page>
27372 <page>
27373 <title>Astronomers and Astrophysicists</title>
27374 <id>749</id>
27375 <revision>
27376 <id>15899267</id>
27377 <timestamp>2002-06-15T18:57:46Z</timestamp>
27378 <contributor>
27379 <username>DavidLevinson</username>
27380 <id>1689</id>
27381 </contributor>
27382 <comment>#REDIRECT [[Astronomer]] (merge content)</comment>
27383 <text xml:space="preserve">#REDIRECT [[Astronomer]]
27384 </text>
27385 </revision>
27386 </page>
27387 <page>
27388 <title>Aikido</title>
27389 <id>751</id>
27390 <revision>
27391 <id>41829883</id>
27392 <timestamp>2006-03-02T00:42:47Z</timestamp>
27393 <contributor>
27394 <username>PRehse</username>
27395 <id>410898</id>
27396 </contributor>
27397 <comment>currently the the article is written in British English - change all or none.</comment>
27398 <text xml:space="preserve">{| border=&quot;1&quot; cellpadding=&quot;2&quot; width=&quot;300&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; style=&quot;float:right;clear:right;&quot;
27399 ! colspan=&quot;2&quot; bgcolor=&quot;#FFCCCC&quot; | Aikido
27400 |-
27401 ! colspan=&quot;2&quot; | Japanese Name
27402 |-
27403 | width=&quot;150&quot; | [[Kanji]]
27404 | width=&quot;150&quot; | 合気道
27405 |-
27406 | width=&quot;150&quot; | [[Hiragana]]
27407 | width=&quot;150&quot; | あいきおう
27408 |-
27409 | colspan=&quot;2&quot; | [[image:nikyo omote.jpeg|300px]]
27410 |}
27411
27412 '''Aikido''' (合気道 ''Aikidō'', also 合æ°Ŗ道 using an older style of [[kanji]]), literally meaning 'joining energy way', is a [[gendai budo]] — a modern [[Japan]]ese [[martial art]]. Practitioners of Aikido are known as '''aikidoka'''. It was developed by [[Morihei Ueshiba]] (æ¤čŠį››åšŗ) (also known by Aikidoka as [[o-sensei]] (įŋå…ˆį”Ÿ) over the period of the [[1930s]] to the [[1960s]]. Technically, the major parts of Aikido are derived from [[Daito Ryu|Daitō-ryÅĢ Aiki-jÅĢjutsu]] (å¤§æąæĩåˆæ°—æŸ”čĄ“), a form of Jujutsu with many joint techniques, and [[kenjutsu]] (å‰Ŗ術), or Japanese sword technique (some believe the tactics in Aikido are especially influenced by [[Yagyu Shinkage-ryu|YagyÅĢ Shinkage-ryÅĢ]]). Aikido is also considered to contain a significant [[Spirituality|spiritual]] component.
27413
27414 ==History==
27415 The name aikido is formed of three Japanese characters, 合気道, usually romanised as ai, [[qi|ki]] and [[do]]. These are often translated as meaning union, universal energy and way, so aikido can be translated as 'the way to union with universal energy'. Another common interpretation of the characters is harmony, spirit and way, so Aikido can also mean 'the way of spiritual harmony'. Both interpretations draw attention to the fact that aikido's techniques are designed to control an attacker by controlling and redirecting their energy instead of blocking it. An analogy is often made of the way a flexible willow bends with the storm, whereas the stout oak will break if the wind blows too hard. (The Korean [[martial arts|martial art]] commonly known as [[hapkido]] uses the same three characters: some suggest a historical link through [[Daito-ryu]], the main origin of aikido).
27416
27417 Morihei Ueshiba developed aikido mainly from Daito-ryu [[aikijutsu]], incorporating training movements such as those for the ''[[yari]]'' ([[spear]]), ''[[jo (weapon)|jo]]'' (a short [[quarterstaff]]), and perhaps also ''juken'' ([[bayonet]]). But arguably the strongest influence is that of the [[katana]] ([[sword]]). In many ways, an aikido practitioner moves as an empty handed swordsman. The aikido strikes ''shomenuchi'' and ''yokomenuchi'' originated from weapon attacks, and resultant techniques likewise from weapon take-aways. Some schools of aikido do no weapons training at all; others, such as [[Iwama Ryu]] usually spend substantial time with ''[[bokken]]''/bokuto (wooden sword), ''[[jo (weapon)|jo]]'', and ''[[tanto]]'' (knife). In some lines of aikido, all techniques can be performed with a sword as well as unarmed.
27418
27419 Aikido was first brought to the West in [[1951]] by [[Minoru Mochizuki]] with a visit to [[France]]. It was introduced to the [[United States]] in [[1953]] by [[Kenji Tomiki]] and, a little later in the same year by [[Koichi Tohei]]. The [[United Kingdom]] followed in [[1955]], [[Germany]] and [[Australia]] in [[1965]]. Today there are many aikido [[dojo]]s available to train at throughout the world.
27420
27421 ==Technique==
27422 Aikido incorporates a wide range of techniques which use principles of energy and motion to redirect, neutralise and control attackers. One of the central martial philosophies of aikido is to be able to handle multiple-attacker circumstances fluidly. ''[[Randori]]'', practice against multiple opponents, is a key part of the curriculum in most aikido schools and is required for the higher level belts. Another tenet of aikido is that the aikidoka should gain control of their opponent as quickly as possible, while causing the least amount of damage possible to either party. If performed correctly, size and strength are not important for the techniques to be effective.
27423
27424 ===Training===
27425 The methods of training vary from organisation to organisation, and indeed even between different [[dojo]] in a single organisation. Typically, however, a class consists of a teacher demonstrating techniques or principles which the students then practice. Training is done through mutual technique, where the focus is on entering and blending (harmonising) with the attack, rather than on meeting force with force. ''Uke'', the receiver of the technique, usually initiates an attack against ''nage'' (also referred to as ''tori'' or ''shite'' depending on Aikido style), who neutralises it with an aikido technique. The uke and the nage have equally important roles. Uke's role is to be honest and committed in attack, to use positioning to protect oneself, and to learn proper technique through the imbalanced feeling created by nage's technique. Nage's role is to blend with and neutralise uke's attack without leaving an opening to further attacks. Simultaneously nage will be studying how to create a feeling of being centred (on balance) and controlled in the application of the Aikido technique. Therefore, students must practise both positions in order to learn proper technique. When O-Sensei taught, all his students were uke until he deemed them knowledgeable enough of the technique to be nage. Movement, awareness, precision, distance and timing are all important to the execution of techniques as students progress from rigidly defined exercises to more fluid and adaptable applications. Eventually, students take part in ''jiyu-waza'' (free attack) and/or [[randori]], where the attacks are less predictable. Most schools employ training methods wherein uke actively attempts to employ counter-techniques, or ''kaeshi-waza''.
27426
27427 O-Sensei did not allow competition in training because some techniques were considered too dangerous and because he believed that competition did not develop good character in students. Most styles of aikido continue this tradition although [[Tomiki Aikido|Shodokan Aikido]] (see [[#Styles|Styles]]) started with competitions early on. In the [[Ki Society]] there are forms (''[[taigi]]'') competitions held from time to time.
27428
27429 ====Defense====
27430 Aikido techniques are largely designed towards keeping the attacker off balance and locking joints. Much of aikido's repertoire of defenses can be performed either as throwing techniques (''nage-waza'') or as pins (''katame-waza''), depending on the situation. Entering, ''irimi'', and turning, ''tenkan'', are widely used aikido concepts, as is striking, ''atemi''. The use of striking techniques is dependent on the organization and, to some extent, the individual dojo. Some dojo teach the strikes that are integral to all aikido techniques as mere distractions used to make the application of an aikido technique easier, while others teach that strikes are to be used for more destructive reasons. O-Sensei himself wrote, while describing the aikido technique ikkyo, &quot;...first smash the eyes.&quot; (This might well refer to the fact that the classic opener for ikkyo is a knife-hand thrust towards the face, to make uke block and thus expose his or her arm to the joint control - thus, ''as though'' moving to smash uke's eyes.) Manipulation of uke's balance by entering is often referred to as &quot;taking uke's center&quot;. It is sometimes said that Aikido contains only defense, and the attacks that are performed are not really aikido. From a historical perspective this claim is questionable, but many if not most aikidoka have the defense techniques as the focus of their training.
27431
27432 ====Attacks====
27433 In the early days when Ueshiba began teaching to the public, students tended to be proficient in another martial art. Due to this, attacks per se are generally not focused on in contemporary aikido dojos. Students will learn the various attacks from which an Aikido technique can be practiced. Although attacks seldom are studied to the same extent as some arts, good attacks are needed to study correct and effective application of technique. &quot;Honest&quot; attacks are considered important. An &quot;honest&quot; attack would be an attack with full intention or a strong neutral (neither pulling or pushing) grab or hold. The speed of an attack may vary depending on the experience and level of the &quot;nage&quot; (the partner who executes the throw or technique). Whether the attack is fast or slow, the uke's intention to strike or control (if grabbing or pinning) should remain, in order to provide the nage a realistic training scenario.
27434
27435 Aikido attacks used in normal training include various stylized strikes and grabs such as ''shomenuchi'' (a vertical strike to the head), ''yokomenuchi'' (a lateral strike to the side of the head and/or neck), ''munetsuki'' (a straight punch), ''ryotedori'' (a two handed grab) or ''katadori'' (a shoulder grab). Many of the ''-uchi'' strikes resemble blows from a sword or other weapon. Kicks are sometimes used, but are not usually part of basic curricula. Most aikido techniques can also be applied to a response to an attack, e.g. to a block, and some schools use this as the &quot;basic&quot; form of a given class of technique. Beginners also tend to work with techniques executed in response to a grab. Grabs are considered good for basic practice because the connection with uke is very clear and strong, and it is easier to &quot;feel out&quot; body mechanics and lines of force.
27436
27437 There is also the matter of ''atemi'', or strikes employed during an aikido technique. The role and importance of atemi is a matter of some debate in aikido. Some view atemi as strikes to &quot;vital points&quot; that can be delivered during the course of a technique's application, to increase effectiveness. Others consider atemi to be methods of distraction, particularly when aimed at the face. For instance, if a movement would expose the aikido practitioner to a counter-blow, he or she may deliver a quick strike to distract the attacker or occupy the threatening limb. (Such a strike will also usually break the target's concentration, making them easier to throw than if they are able to focus on resisting.) Atemi can be interpreted as not only punches or kicks but also, for instance, striking with a shoulder or a large part of the arm. Some throws are arguably effected through an unbalancing or abrupt application of atemi. [http://www.tsuki-kage.com/ueshiba.html Many sayings about atemi] are attributed to [[Morihei Ueshiba]], although their precise content varies considerably based on the one doing the telling.
27438
27439 ====Weapons====
27440 Weapons training in aikido usually consists of [[jo (weapon)|jo]] (4-foot staff), [[bokken]] (wooden sword), and wooden (or sometimes rubber) [[tanto]] (knife). Both weapons-taking and weapons-retention are sometimes taught, to integrate the armed and unarmed aspects of aikido. For example, a technique done with a straight punch may be done with a tanto or jo thrust instead, or a grab technique may be illustrated as a way to draw/strike with a weapon while being grabbed.
27441
27442 Many schools use versions of [[Morihiro Saito]]'s weapons system: aiki-jo and aiki-ken. The system contains solo [[Kata (martial arts)|kata]] with jo, and paired exercises for both jo and bokken. Some lineages use bokken kata derived from older sword schools. Also, quite a few aikido teachers, such as [[Mitsugi Saotome]] and [[Kazuo Chiba]], have developed their own weapons systems. This is largely due to the fact that O'Sensei did not teach weapons to his students, excepting a few.
27443
27444 ===Clothing===
27445 The [[aikidogi]] used in Aikido is similar to the [[keikogi]] used in most other modern [[budo]] arts; simple trousers and a wraparound jacket, usually white. In some places a keikogi of [[karate]] cut is preferred, in others most people use [[judo]] keikogis. Keikogi made specially for aikido exist, but usually not in the lower price ranges. Many dojos insist that the sleeves are cut short to elbow length, to reduce the risk of trapped fingers and injuries in grab techniques to the wrist.
27446
27447 To the keikogi adds the traditional garment [[hakama]], wide pleated trousers. The hakama is usually black or dark blue and in most dojos, the hakama is reserved for practitioners with dan (black belt) ranks. Systems also exist where hakama is never worn or are worn from a specific kyu rank; others exist where women are allowed to wear it earlier than men.
27448
27449 The belt, ''obi'' is wrapped twice around the body similar to in karate or judo. Although some systems use many belt colours similar to the system in judo, the most common version is that dan ranks wear black belt, and kyu ranks white - sometimes with an additional brown belt for the highest kyu ranks. In some dojos it is common to have the same color belt at different levels.
27450
27451 ==Spirituality==
27452 The ending &quot;[[do]]&quot; in the word aikido indicates a spiritual path, unlike the ending &quot;jutsu&quot; in the word aikijujutsu, which indicates a system of techniques. Many people see this difference as important as well as regarding [[iaido|iaijutsu]] and [[iaido]], [[jujutsu]] and [[judo]], and [[kenjutsu]] and [[kendo]]. Others see this distinction as a historically incorrect and somewhat unnatural division. For example, literally, do refers to a path and jitsu to a technique: therefore, some argue, aikido involves both a way (do) and technical study (jutsu).
27453
27454 Ueshiba taught that, while it was important to become proficient in physical technique, this is not the ultimate purpose of training. He taught that the principles learned through training in physical technique are universal and are to be applied to all aspects of one's life. He once commented that he was teaching students not how to move their feet but, rather, how to move their minds.
27455
27456 Many agree that Ueshiba's style became softer, more fluid, and effortless as he grew older. Some suggest this was due to a shift in focus to the spiritual aspects of the art, while others suggest that this was simply a natural result of Ueshiba becoming more proficient in physical technique. Various interpretations have arisen since Ueshiba's death.
27457
27458 A range of aikido schools can be found, each placing a different emphasis on physical techniques, underlying principles, and spiritual concepts. This is largely a result of at what point the founder of each of these schools trained with Ueshiba--earlier or later in Ueshiba's life. The former tend to focus more on physical technique, while the latter tend to focus more on spiritual concepts. However, this should not be overstated, especially since there is considerable variance from sensei to sensei, and an &quot;aikido continuum&quot; is quite problematic to actually construct. Some aikidoka view &quot;physical vs. spiritual&quot; as a false separation, or a failed attempt to stereotype branches of aikido.
27459
27460 [[Ki Society]] is an example of a school that focuses heavily on the spiritual concepts of aikido, rather than physical technique.
27461
27462 ===Ki===
27463 [[Image:ki-obsolete.png|left|float|200px|Obsolete form of the ki kanji]]
27464 The Japanese character for [[Qi|ki]], is a symbolic representation of a lid covering a pot full of rice. The steam being contained within, is ki. This same word is applied to the ability to harness one's own 'breath power', 'power', or 'energy'. This 'ki' is the same as the 'qi' in [[Qigong|qi-gong]], but many people argue it is not the same as the 'chi' in [[Tai Chi Chuan|t'ai chi]]. When [[aikidoka]] say that someone is training with a lot of ki, they usually want to express that the person is very non-forcefully compelling in the execution of his technique. Timing, a sense for the correct distance and a centered (undisturbed) mind and body are particularly important. Most teachers claim to locate ki in the [[hara (Martial Arts)|hara]], which might be loosely defined as the body's center of gravity, situated in the lower abdomen, about two inches below and behind the navel. In training it is constantly emphasized that one should keep one's hara — that is, remain ''centered''. Very high ranking teachers sometimes reach a level of coordination that enables them to execute techniques with very little apparent movement, sometimes even without seeming to touch their opponent's body.
27465
27466 Essentially, ki corresponds to the physical concepts of center of gravity, center of momentum, and center of force. However, these centers are not necessarily the same, so ki also encompasses the biological and mental aspect of training oneself to have exquisite control over motion.
27467
27468 The &quot;spiritual&quot; interpretation of ki depends very much on what school of aikido one studies, as some emphasize it more than others. Ki Society dojos, for example, tend to spend much more time on ki-related training activities than do, for example, Yoshinkan dojos. The importance of ki in aikido cannot be denied -- the name of the martial art, after all, can be translated as &quot;the meeting of ki&quot;. But what ki is, is debated by many within the discipline. O-Sensei himself appears to have changed his views over time -- for example, Yoshinkan Aikido, which largely follows O-Sensei's teachings from before the war, is considerably more martial in nature, reflecting a younger, more violent and less spiritual O-Sensei. Within this school, ki perhaps could be better thought of as having its original Chinese meaning of breath, and aikido as coordination of movement with breath to maximize power. As O-Sensei evolved and his views changed, his teachings took on a much more ethereal feel, and many of his later students (almost all now high ranking senseis within the Aikikai) teach about ki from this perspective.
27469
27470
27471
27472
27473 See also: [[Qi]], [[Qigong]]
27474
27475 ==Body==
27476 Aikido training is for all-around physical fitness, flexibility, and [[relaxation]]. The human body in general can exert power in two ways: contractive and expansive (aikidofaq.com). Many fitness activities, for example weight-lifting, emphasize the former, which means that specific muscles or muscle groups are isolated and worked to improve tone, mass, and power. The disadvantage of this, however, is that whole body movement and coordination are rarely stressed. Thus, while muscle size and power may increase, there is no emphasis on the ways in which those muscles can work together most efficiently. Also, this sort of training tends to increase tension, decrease flexibility, and stress the joints. The result may be aesthetically pleasing, but when done to excess may actually be detrimental to overall health.
27477
27478 The second type of power, expansive, is mostly stressed in activities such as dance or gymnastics. In these activities, the body must learn to move in a coordinated manner and with relaxation. Aikido also mostly stresses this sort of training. While both types of power are important, it is interesting to note that a person who masters the second type of power can, in a martial context, often overcome a person who is much bigger or stronger. The reason for this is that the contractive power is only as great as the mass and power of your individual muscles. Expansive power, however, as used in Aikido, can be much greater than your size may lead you to believe. This is because you move with your whole body. Rather than stressing and tensing only a few muscles, you learn to relax and move from the center of your body, where you are most powerful. Power is then extended out naturally through the relaxed limbs, which become almost whip-like in their motion. Needless to say, the power behind an entire person's body will be more than that of someone's arm or leg alone.
27479
27480 Hence, aikido develops the body in a unique manner. Aerobic fitness is obtained through vigorous training. Flexibility of the joints and connective tissues is developed through various stretching exercises and through the techniques themselves. [[Relaxation]] is learned automatically, since without it the techniques will not function. A balanced use of contractive and expansive power is mastered, enabling even a small person to pit his entire body's energy against their opponent.
27481
27482 With this, different masters stress different aspects of training. Some masters stress importance of body posture while executing the technique in order to coordinate different parts of the body, while others deal with the physical aspects of it. With each way, comes a different means of interpretation of the same basic principles of the art which is discussed in more detail above.
27483
27484 ==Mind==
27485 Aikido training does not consider the body and mind as independent entities. The condition of one affects the other. For example, the physical relaxation learned in aikido also becomes a mental relaxation. Likewise, the confidence that develops mentally is manifested in a more confident style. [[Psychological]] or spiritual insight learned during training must become reflected in the body, else it will vanish under pressure, when more basic, ingrained patterns and reflexes take over. Aikido training requires the student to squarely face conflict, not to run away from it. Through this experience, an Aikido student may learn to face other areas of life in a similarly proactive fashion, rather than in with avoidance and fear.
27486
27487 ==Styles==
27488 The major styles of aikido each have their own [[Hombu Dojo]] in [[Japan]], have an international breadth and were founded by direct students of [[Morihei Ueshiba]]. Although there has been an explosion of &quot;independent styles&quot; generally only the first five listed have been considered major. [[Iwama style|Iwama Ryu]] is a debatable sixth as, although its influence is major, it has until recently been part of the [[Aikikai]] (see below).
27489 &lt;!-- Please see Talk concerning Styles and External Links. Entries should not act as a list of individual or dojo clusters. The length of such a list would be very long. If you disagree please discuss in Talk. --&gt;
27490 * [[Aikikai]] is the largest aikido organisation, and is led by the family of the founder. Numerous sub-organisations and teachers affiliate themselves with this umbrella organisation, which therefore encompasses a wide variety of aikido styles, training methods and technical differences. These sub-organisations are often centred around prominant [[Shihan]] and are usually organised at the national level, although sub-national and inter-national sub-organisations exist. Please see [[List of famous aikidoka]] for more detail.
27491
27492 *[[Yoshinkan]] Founded by [[Gozo Shioda]], has a reputation for being the most rigidly precise. Students of Yoshinkan aikido practise basic movements as solo kata, and this style has been popular among the Japanese police. The international organization associated with the Yoshinkan style of aikido is known as the Yoshinkai, and has active branches in many parts of the world.
27493
27494 *[[Yoseikan]] was founded by [[Minoru Mochizuki]], who was an early student of O-Sensei and also of Jigoro Kano at the [[Kodokan]]. This style includes elements of aiki-budo together with aspects of karate, judo and other arts. It is now carried on by his son, [[Hiroo Mochizuki]], the creator of [[Yoseikan Budo]].
27495
27496 *[[Tomiki Aikido|Shodokan Aikido]] (often called Tomiki aikido, after its founder) use sparring and rule based competition in training as opposed to most others. People tend to compete to train rather than to train to compete. [[Kenji Tomiki]], an early student of O-Sensei and also of judo's [[Jigoro Kano]], believed that introducing an element of competition would serve to sharpen and focus the practice since it was no longer tested in real combat. This latter view was the cause of a split with O-Sensei's family who firmly believed that there was no place for competition in aikido training. Tomiki said that at no point did O-Sensei actually cast him out.
27497
27498 *The [[Ki Society]], founded by former head-instructor of the Hombu dojo 10th dan [[Koichi Tohei]], emphasizes very soft flowing techniques and has a special program for the development of [[ki]]. It also has a special system of ki-ranks alongside the traditional [[kyu]] and [[dan]] system. This style is called [[Shin Shin Toitsu Aikido]] (or [[Ki-Aikido]]).
27499
27500 *[[Iwama style|Iwama Ryu]] emphasizes the relation between weapon techniques and barehand techniques, and a great deal of emphasis is placed on weapons training. Since the death of its founder [[Morihiro Saito]], the [[Iwama style]] has been practiced by clubs within the Aikikai and an independent organization headed by [[Hitohiro Saito]]. Saito sensei was a long time uchideshi of O-Sensei, beginning in 1946 and staying with him through his death. Many consider that Saito sensei was the student who spent most time directly studying with O-Sensei. Saito sensei said he was trying to preserve and teach the art exactly as the founder of aikido taught it to him. Technically, Iwama-ryu seems to resemble the aikido O-Sensei was teaching in the early 50s mainly in the Iwama dojo. The technical repertoire is fairly large. The new, separate from Aikikai, Iwama Ryu Aikido has been renamed Iwama Shin Shin Aikishurenkai.
27501
27502 *[[Shin'ei Taido]] Founded by the late [[Noriaki Inoue]], nephew of [[Morihei Ueshiba]].
27503
27504 *[[Yoshokai]] aikido, begun by then-hachidan Takashi Kushida of Yoshinkan aikido, is a remarkably centralized style of aikido, with test techniques yearly passed down with explanations from the home dojo. The syllabus contains a considerable amount of weapons study, and like Yoshinkan, Yoshokai includes many solo movements and exercises.
27505
27506 *[[Doshinkan]] aikido, begun by Yukio Utada of Yoshinkan aikido. Utada was a student of both the Yoshinkan founder Gozo Shioda and Yoshokai founder Takashi Kushida. Like Yoshokai, the syllabus also contains a considerable amount of weapons study, and like Yoshinkan, Doshinkan includes many solo movements and exercises. Doshinkan Aikido (Aikido Association of North America and Doshinkan Aikido International) is still affiliated with the International Yoshinkan Aikido Federation.
27507
27508 *[[Tendo-ryu Aikido|Tendoryu Aikido]] Headed by [[Kenji Shimizu]].
27509
27510 *[[Shin Budo Kai]] headed by [[Shizuo Imaizumi]].
27511
27512 *[[Kokikai]] aikido, founded by [[Shuji Maruyama]] in 1986, focuses on minimalist but effective technique. It emphasizes natural stances and [[ukemi]] that do not require high [[breakfalls]], and deemphasizes [[atemi]] and techniques that cause pain or undue discomfort to [[uke]]. As such, it is considered by some to be a &quot;soft&quot; style of aikido.
27513
27514 *[[Seidokan]] Aikido, founded by [[Rod Kobayashi]]. Tends to utilize movements which are very small and economical. Encourages students to discover an aikido which is truly their own, stresses the importance of doing away with the extraneous and focusing on that which works
27515
27516 *[[Nippon Kan]] Headed by [[Gaku Homma]].
27517
27518 *[[Nishio AIkido]] a part of the Aikikai although techically well defined according to its head [[Shoji Nishio]]. Nishio Sensei passed away in March 2005.
27519
27520 *[[Nihon Goshin Aikido]] Headed by Richard Bowe. It is considered a &quot;hard&quot; style of aikido, combining techniques from karate, Judo and Daito-Ryu Aikijutsu. There are roughly a dozen dojos in the United States and none left in Japan. Founded by Shoto Morita in Japan circa 1950. Derivative styles include Nihon Goshin Aikijutsu founded by Walter Kopitov in 2000. For more information see &quot;The Black Belt Master Course in Nihon Goshin Aikido&quot;.
27521
27522 *[[Takemusu Aiki Tomita Academy]]. Academy for the development of Takemusu Aiki founded in 1992 by [[Takeji Tomita]]. This training method incorporates [[Tai-Jutsu]], [[Aiki-Ken]] and [[Aiki-Jo]] for the study of the inter-related principles of Takemusu Aiki and Japanese [[Budo]].
27523
27524 *[[Aiki Manseido]] Headed by [[Kanshu Sunadomari]]. Independent style centred in [[Kyushu]], Japan.
27525 &lt;!-- Please see Talk concerning Styles and External Links. Entries should not act as a list of individual or dojo clusters. The length of such a list would be very long. If you disagree please discuss in Talk. --&gt;
27526
27527 ==Aikidoka==
27528 It is sometimes said that in [[Japan]] the term ''aikidoka'' (合気道åŽļ) mainly refers to a [[professional]] while in the west, any one who practices may call themselves an aikidoka. The term ''aikidoist'' is also used as a more general term, especially by those who prefer to maintain the more restricted, Japanese, meaning of the term aikidoka.
27529
27530 :''See [[List of famous aikidoka]]''
27531
27532 ==External links==
27533 &lt;!-- Please see Talk concerning Styles and External Links. Entries should not act as a list of individual or dojo clusters. The length of such a list would be very long. If you disagree please discuss in Talk. --&gt;
27534 * [http://www.aikiweb.com AikiWeb Aikido Information] is a comprehensive site on aikido, with essays, [http://www.aikiweb.com/forums/ forums], [http://www.aikiweb.com/gallery images], [http://www.aikiweb.com/reviews reviews], [http://www.aikiweb.com/columns columns], [http://www.aikiweb.com/wiki wiki], and other information. Chief among its notable content is its [http://www.aikiweb.com/search/ aikido dojo search engine].
27535 * [http://www.aikidofaq.com The Aikido FAQ] A large but loose collection of essays, multimedia, and humour
27536 * [http://aikidojournal.com/ Aikido Journal Website] the most comprehensive source of aikido historical information
27537 &lt;!-- Please see Talk concerning Styles and External Links. Entries should not act as a list of individual or dojo clusters. The length of such a list would be very long. If you disagree please discuss in Talk. --&gt;
27538
27539 {{commons|Aikido}}
27540
27541 [[Category:Aikido|*]]
27542 [[Category:Japanese martial arts]]
27543
27544 {{Link FA|eo}}
27545 {{Link FA|fr}}
27546
27547 [[ar:ØŖŲŠŲƒŲŠØ¯Ųˆ]]
27548 [[bg:АКĐēидО]]
27549 [[ca:Aikido]]
27550 [[cs:Aikido]]
27551 [[da:Aikido]]
27552 [[de:Aikidō]]
27553 [[es:Aikido]]
27554 [[eo:Aikido]]
27555 [[fr:Aïkido]]
27556 [[gl:Aikido]]
27557 [[hr:Aikido]]
27558 [[id:Aikido]]
27559 [[it:Aikidō]]
27560 [[he:אייקידו]]
27561 [[lt:Aikido]]
27562 [[hu:Aikido]]
27563 [[ms:Aikido]]
27564 [[nl:Aikido]]
27565 [[ja:合気道]]
27566 [[no:Aikido]]
27567 [[pl:Aikido]]
27568 [[pt:Aikido]]
27569 [[ro:Aikido]]
27570 [[ru:АКĐēидО]]
27571 [[sk:Aikido]]
27572 [[sl:Aikido]]
27573 [[sr:АиĐēидО]]
27574 [[fi:Aikido]]
27575 [[sv:Aikido]]</text>
27576 </revision>
27577 </page>
27578 <page>
27579 <title>Art</title>
27580 <id>752</id>
27581 <revision>
27582 <id>42116953</id>
27583 <timestamp>2006-03-03T22:58:12Z</timestamp>
27584 <contributor>
27585 <username>RexNL</username>
27586 <id>241337</id>
27587 </contributor>
27588 <minor />
27589 <comment>Reverted edits by [[Special:Contributions/24.203.146.34|24.203.146.34]] ([[User talk:24.203.146.34|talk]]) to last version by Dustimagic</comment>
27590 <text xml:space="preserve">{{otheruses}}
27591 [[Image:Winged victory.jpg|200px|thumb|[[Winged Victory of Samothrace]] exihibited in the [[Louvre]].]]
27592 By its original and broadest definition, '''''[[art]]''''' (from the [[Latin]] ''ars'', meaning &quot;skill&quot; or &quot;craft&quot;) is the product or process of the effective application of a body of knowledge and a set of skills; this meaning is preserved in such phrases as &quot;[[liberal arts]]&quot; and &quot;[[martial arts]]&quot;. However, in the modern use of the word, which rose to prominence during the [[Renaissance]], ''art'' is commonly understood to be the process or result of making material works (or '''artwork''') which, from concept to creation, adhere to the &quot;[[creativity|creative]] impulse&quot;&amp;mdash;that is, art is distinguished from other works by being in large part unprompted by necessity, by biological drive, or by any undisciplined pursuit of [[recreation]]. By both definitions of the word, artistic works have existed for almost as long as [[human|humankind]], from early [[pre-historic art]] to [[contemporary art]].
27593
27594 The '''creative arts''' are a collection of disciplines whose principal purpose is in the output of material that is compelled by a personal drive and echoes or reflects a message, mood, and [[symbolism]] for the viewer to interpret. As such, the term ''art'' may be taken to include forms as diverse as [[prose]] [[writing]], [[poetry]], [[dance]], [[acting]], [[music]], [[sculpture]] and [[painting]]. In addition to serving as a method of pure creativity and self-expression, the purpose of works of art may be to communicate ideas, such as in politically-, religiously-, and philosophically-motivated art, to create a sense of [[beauty]] (see ''[[aesthetics]]'' and ''[[fine art]]'') or pleasure, or to generate strong [[emotion]]s; the purpose may also be seemingly nonexistent.
27595
27596 As a form of [[culture|cultural]] expression, art may be defined by the pursuit of [[diversity]] and the usage of [[narrative]]s of liberation and exploration (i.e. [[art history]], [[art criticism]], and [[art theory]]) to mediate its boundaries. This distinction may be applied to objects or performances, current or historical, and its prestige extends to those who made, found, exhibit, or own them. Other than originality, there are no widely agreed-upon criteria for what is or isn't considered &quot;art&quot;, and there are many divergent definitions of ''art'' to seek more specific requirements.
27597
27598 ==Etymology==
27599 The word ''art'' derives from the [[Latin]] ''ars'', which roughly translates to &quot;skill&quot; or &quot;craft&quot;, and derives in turn from an [[Proto-Indo-European language|Indo-European root]] meaning &quot;arrangement&quot; or &quot;to arrange&quot;. This is the only near-universal definition of art: that whatever is described as such has undergone a deliberate process of arrangement by an agent. A few examples where this meaning proves very broad include [[artifact]], artificial, artifice, [[artillery]], [[Medicine|medical]] arts, and [[military]] arts. However, there are many other colloquial uses of the word, all with some relation to its [[etymology|etymological]] roots.
27600
27601 ==Art forms==
27602 There are a variety of arts, including visual arts and design, [[decorative art]]s, [[plastic arts]], and the [[performing arts]]. Artistic expression takes many forms: [[painting]], [[drawing]], [[printmaking]], [[sculpture]], [[music]], [[literature]], and [[architecture]] are the most widely recognised forms. However, since the advent of [[modernism]] and the technological revolution, new forms have emerged. These include [[photography]], [[film]], [[video art]], [[installation art]], [[conceptual art]], [[performance art]], [[community arts]], [[land art]], [[fashion]], [[comics]], [[computer art]], [[anime]], and, most recently, [[video game theory|video games]].
27603
27604 Within each form, a wide range of [[genre]]s may exist. For instance, a painting may be a [[still life]], a [[portrait]], or a [[Landscape art|landscape]] and may deal with [[History painting|historical]] or domestic subjects. In addition, a [[work (fine arts)|work of art]] may be representational or abstract.
27605
27606 Most forms of art fit under two main categories: [[fine arts]] and [[applied art]]s, though there is no clear dividing line. In the visual arts, the term ''fine arts'' most often refers to painting and sculpture, arts which have little or no practical function and are valued in terms of the visual pleasure they provide or their success in communicating ideas or feelings. Other visual arts typically designated as fine arts include printmaking, drawing, photography, film, and video, though the tools used to realize these media are often used to make applied or commercial art as well. Architecture typically confounds the distinctions between fine and applied art, since the form involves designing structures that strive to be both attractive and functional. The term ''applied arts'' is most often used to describe the design or decoration of functional objects to make them visually pleasing. Artists who create applied arts or crafts are usually referred to as [[design]]ers, [[artisan]]s, or craftspeople.
27607
27608 ==Defining art==
27609 There is often confusion about the meaning of the term ''art'' because multiple meanings of the word are used interchangeably. Individuals use the word ''art'' to identify painting, as well as singing.
27610
27611 ===Characteristics of art===
27612 There follow some generally accepted characteristics of art; after this there is some lengthier discussion of several of those facets perceived as universal or central to art:
27613
27614 * encourages an intuitive understanding rather than a rational understanding, as, for example, with an article in a scientific journal;
27615 * was created with the intention of evoking such an understanding, or an attempt at such an understanding, in the audience;
27616 * was created with no other purpose or function other than to be itself (a radical, &quot;pure art&quot; definition);
27617 * elusive, in that the work may communicate on many different levels of appreciation; one may take the example of [[Gericault]]'s ''[[Raft of the Medusa]]'', in the case of which special knowledge concerning the shipwreck the painting depicts is not a prerequisite to appreciating it, but allows the appreciation of Gericault's political intentions in the piece;
27618 * in relation to the above, the piece may offer itself to many different interpretations, or, though it superficially depicts a mundane event or object, invites reflection upon elevated themes;
27619 * demonstrates a high level of ability or fluency within a medium; this characteristic might be considered a point of contention, since many modern artists (most notably, conceptual artists) do not themselves create the works they conceive, or do not even create the work in a conventional, demonstrative sense (one might think of [[Tracey Emin]]'s controversial ''My Bed'');
27620 * the conferral of a particularly appealing or aesthetically satisfying structure or form upon an original set of unrelated, passive constituents.
27621
27622 ===Skill===
27623 Art can connote a sense of trained ability or mastery of a [[Recording medium|medium]]. An example of this is the contemporary young master Josignacio, creator of [[Plastic Paint Medium]]. It can also simply refer to the developed and efficient use of a [[language]] so as to convey meaning, with immediacy and or depth.
27624
27625 A common view is that the epithet 'art' (particular in its elevated sense) requires a certain level of creative expertise by the artist, whether this be a demonstration of technical ability (such as one might find in many works of the [[Rennaissance]] or in the plays of [[Shakespeare]]) or an originality in stylistic approach, or a combination of these two.
27626
27627 For example, a common contemporary criticism of some [[modern art|modern]] painting occurs along the lines of objecting to the apparent lack of skill or ability required in the production of the artistic object. One might take [[Tracey Emin|Tracey Emin]]'s ''My Bed'' or [[Damien Hirst|Hirst]]'s ''The Physical Impossibility of Death in the Mind of Someone Living'', as examples of pieces wherein the artist exercised little to no traditionally recognised sets of skills. In the first case, Emin simply slept (and engaged in other activities) in her bed before placing the result in a gallery. She has, however, been insistent that there is a high degree of selection and arrangement in this work, which includes objects such as underwear and bottles around the bed. In the second case, Hirst came up with the conceptual design for the artwork. Although he physically particpated in the creation of this piece, he has left the eventual creation of many other works to employed artisans. These approaches are exemplary of a particular kind of contemporary art: [[conceptual art]].
27628
27629 The exclusionary view that art requires a certain skill level to produce is often described as a [[lay critique]]. It derives from the fact that in [[Western culture]] at least, art has traditionally been pushed in the direction of [[representation (arts)|representationalism]], the literal presentation of reality through literal images. On the other hand, criticism has often been brought to bear on modern artists for having no creative involvement whatsoever in their creations: one might take Hirst's work again as emblematic of this approach. It may be further noted that certain forms of art outside a Western tradition, such as [[Islamic]] geometric designs and [[Islamic calligraphy|calligraphy]], [[Buddhist]] or [[Hindu]] [[mandalas]] and [[Celtic knotwork]], though they are non-representational, still require a measure of skill and certain creative involvement in their execution.
27630
27631 ===Judgments of value===
27632 Somewhat in relation to the above, the word ''art'' is also used to apply judgments of value, as in such expressions as &quot;that meal was a work of art&quot; (the cook is an artist), or &quot;the art of deception,&quot; (the highly attained level of skill of the deceiver is praised). It is this use of the word as a measure of high quality and high value that gives the term its flavor of subjectivity.
27633
27634 Making judgments of value requires a basis for criticism: at the simplest level, a way to determine whether the impact of the object on the senses meets the criteria to be considered ''art'', whether it is perceived to be attractive or repellent. Though perception is always colored by experience, and thus a reaction to art on these grounds is necessarily subjective, it is commonly taken that that which is not aesthetically satisfying in some fashion cannot be art. However, &quot;good&quot; art is not always, or even regularly, aesthetically appealing to a majority of viewers. In other words, an artist's prime motivation need not be the pursuit of the aesthetic, and art often depicts terrible images made for social, moral, or thought-provoking reasons; for example, [[Francisco Goya]]'s painting depicting the Spanish shootings of [[3rd of May]] [[1808]] is a graphic depiction of a firing squad executing several pleading civilians, yet at the same time, the horrific imagery demonstrates Goya's keen artistic ability in composition and execution, and his fitting social and political outrage. Thus the debate continues as to what mode of aesthetic satisfaction, if any, is required to define 'art'.
27635
27636 The assumption of new values or the rebellion against accepted notions of what is aesthetically superior need not occur concurrently with a complete abandonment of the pursuit of that which is aesthetically appealing. Indeed, the reverse is often true, that in the revision of what is popularly conceived of as being aesthetically appealing allows for a re-invigoration of aesthetic sensibility, and a new appreciation for the standards of art itself. Countless schools have proposed their own ways to define quality, yet they all seem to agree in at least one point: once their aesthetic choices are accepted, the value of the work of art is determined by its capacity to transcend the limits of its chosen medium in order to strike some universal chord, or by the rarity of the skill of the artist, or in its accurate reflection in what is termed the ''[[zeitgeist]]''.
27637
27638 ===Communicating emotion===
27639 Art appeals to human emotions. It can arouse [[aesthetic]] or [[morality|moral]] feelings, and can be understood as a way of communicating these feelings. [[artist|Artists]] have to express themselves so that their public is aroused, but they do not have to do so consciously. Art explores what is commonly termed as ''[[human condition|the human condition]]''; that is, essentially, what it is to be human, and art of a superior kind often brings about some new insight concerning humanity (not always positive) or demonstrates a level of skill so fine as to push forward the boundaries of collective human ability.
27640
27641 This is not to say that technical skill is a necessary prerequisite of art, but rather that a high degree of skill goes some way in conferring a judgement of high standard upon an artist or artwork.
27642
27643 ===Creative impulse===
27644 From one [[point of view|perspective]], art is a generic term for any product of the [[creative impulse]], out of which sprang all other human pursuits &amp;mdash; such as [[science]] via [[alchemy]], and [[religion]] via [[shamanism]]. The term 'art' offers no true definition besides those based within the cultural, historical and geographical context in which it is applied. Though to the artists themselves, the impulse to create is undeniable; an artist can no more deny that impulse than he/she could ignore breathing (one might compare [[Kandinsky]]'s [[inner necessity]] to this popular view). It is because of the overbearing need to create, in the face of financial ruin, public obscurity or political opposition, that artists are typically conceived of as unstable, even crazy, or misguided.
27645
27646 ==Differences in defining art==
27647 Definitions of art and [[aesthetic]] arguments usually proceed from one of several possible perspectives. Art may be defined by the intention of the artist as in the writings of [[John Dewey|Dewey]]. Art may be seen as being in the response/emotion of the viewer as [[Leo Tolstoy|Tolstoy]] claims. In [[Arthur Danto|Danto]]'s view, it can be defined as a character of the item itself or as a function of an object's context.
27648
27649 ===Plato===
27650 For [[Plato]], art is a pursuit whose adherents are not to be trusted; given that their productions imitate the sensory world (itself an imitation of the divine world of forms) art necessarily is an imitation of an imitation, and thus is hopelessly far from the source of the truth. Plato, it may be noted, barred artists from access to his ideal city, in his [[Republic]].
27651
27652 ===Aristotle===
27653 Aristotle saw art in less of a bad light; though he shared Plato's poor opinion of it, he nevertheless thought that art might serve the purpose of emotional catharsis. That is, by witnessing the sufferings and celebrations of actors onstage onlookers might vicariously experience these same feelings themselves, and thereby purge such negative feelings.
27654
27655 ===Institutional definition===
27656 Many people's opinions of what art is would fall inside a relatively small range of accepted standards, or &quot;institutional definition of art&quot; ([[George Dickie]] 1974). This derives from education and other social factors. Most people did not consider the depiction of a [[Brillo|Brillo Box]] or a store-bought [[urinal]] to be art until [[Andy Warhol]] and [[Marcel Duchamp]] (respectively) placed them in the context of art (i.e., the [[art gallery]]), which then provided the association of these objects with the values that define art (Although, strictly speaking, Warhol's artwork was not an actual Brillo box but an ''exact replica'' of one - so it met the traditional criterion of skill at the very least).
27657
27658 Most viewers of these objects initially rejected such associations, because the objects did not, themselves, meet the accepted criteria. The objects needed to be absorbed into the general consensus of what art is before they achieved the near-universal acceptance as art in the contemporary era. Once accepted and viewed with a fresh eye, the smooth, white surfaces of Duchamp's urinal are strikingly similar to classical marble sculptural forms, whether the artist intended it or not. This type of recontextualizing provides the same spark of connection expected from any traditionally created art. It should be noted, however, that Duchamps act might be as readily interpreted as a demonstration of the (not always beneficial) power of artistic institutions, rather than the universal art potentially inherent in all objects.
27659
27660 The placement of an object in an artistic context is not taken as a universal standard of art, but is a common characteristic of [[conceptual art]], prevalent since the 1960s; notably, the [[Stuckist]] art movement criticises this tendency of recent art.
27661
27662 ==Related issues==
27663 ===Social criticism===
27664 Art is often seen as belonging to one social class and excluding others. In this context, art is seen as a high-status activity associated with wealth, the ability to purchase art, and the leisure required to pursue or enjoy it. The [[Palace of Versailles|palaces of Versailles]] or the [[Hermitage]] in [[St. Petersburg]] with their vast collections of art, amassed by the fabulously wealthy royalty of Europe exemplify this view. Collecting such art is the preserve of the rich, in one viewpoint.
27665
27666 Before the [[13th century]] in [[Europe]], artisans were considered to belong to a lower [[caste]], since they were essentially manual labourers. After Europe was re-exposed to [[Renaissance Classicism|classical culture]] during the [[Renaissance]], particularly in the [[nation-state]]s of what is now Italy ([[Florence]], [[Siena]]), artists gained an association with high status. However, arrangements of &quot;fine&quot; and expensive goods have always been used by institutions of power as marks of their own status. This is seen in the 20th and [[21st century]] by the commissioning or purchasing of art by big businesses and corporations as decoration for their offices.
27667
27668 ===Utility===
27669 There are many who ascribe to certain arts the quality of being non-[[utilitarianism|utilitarian]]. This fits within the &quot;art as good&quot; system of definitions and suffers from a class prejudice against labor and utility. Opponents of this view argue that all human activity has some utilitarian function, and these objects claimed to be &quot;non-utilitarian&quot; actually have the rather mundane and banal utility of attempting to mystify and codify unworkable justifications for arbitrary social hierarchy. It might also be argued that non-utilitarian is, in this context, a mis-usage; that art is not in and of itself, useless, but rather that it particularly use does not manifest itself in any traditionally demonstrable way (though advances in neuroscience may arguably enable the isolation of those associated cortices of the brain concerned with the creation or appreciation of art).
27670
27671 Art is also used by art therapists and some psychotherapists and clinical psychologists as [[art therapy]]. The end product is not the principal goal in this case; rather a process of healing, through creative acts, is sought. The resultant piece of artwork may also offer insight into the troubles experienced by the subject and may suggest suitable approaches to be used in more conventional forms of psychiatric therapy.
27672
27673 The &quot;use&quot; of art from the artist’s standpoint is as a means of expression. When art is conceived as a device, it serves several context and perspective specific functions. From the artist’s perspective it allows one to symbolize complex ideas and emotions in an arbitrary language subject only to the interpretation of the self and peers.
27674
27675 In a social context, it can serve to soothe the soul and promote popular morale. In a more negative aspect of this facet, art is often utilised as a form of propaganda, and thus can be used to subtly influence popular conceptions or mood (in some cases, artworks are appropriated to be used in this manner, without the creator's initial intention).
27676
27677 From a more anthropological perspective, art is a way of passing ideas and concepts on to later generations in a (somewhat) universal language. The interpretation of this language is very dependent upon the observer’s perspective and context, and it might be argued that the very subjectivity of art demonstrates its importance in providing an arena in which rival ideas might be exchanged and discussed, or to provide a social context in which disparate groups of people might congregate and mingle.
27678
27679 ===History of art===
27680 {{main|History of Art}}
27681
27682 The term '[[art history]]' typically refers to a historical examination of the various trends of the visual arts through certain periods of human history. It may also be taken to encompass a study of the theories of art, which may or may not include an examination of their historical context.
27683
27684 ===Symbols===
27685 {{main|Symbols}}
27686
27687 Much of the development of individual artist deals with finding principles for how to express certain ideas through various kinds of [[symbolism]]. For example, [[Vasily Kandinsky]] developed his use of [[color]] in [[painting]] through a system of stimulus response, where over time he gained an understanding of the [[emotions]] that can be evoked by color and combinations of color. Contemporary artist [[Andy Goldsworthy]], on the other hand, chose to use the [[medium]] of found natural objects and materials to arrange temporary sculptures.
27688
27689 ==Cultural differences of art==
27690 Several genres of art are grouped by cultural relevance, examples can be found in terms such as:
27691
27692 *[[African art]]
27693 *[[American craft]]
27694 *[[Islamic art]]
27695 *[[Asian art]] as found in:
27696 **[[Buddhist art]]
27697 **[[Chinese art]]
27698 **[[Art and architecture of Japan|Japanese art]]
27699 **[[Tibetan art]]
27700 **[[Thai art]]
27701 **[[Laotian art]]
27702 *[[Visual arts of the United States]]
27703 *[[Latin American art]]
27704
27705 ==See also==
27706 {{portal}}
27707 * [[Aesthetics]], the philosophy of [[beauty]]
27708 * [[Art criticism]]
27709 * [[Art groups]]
27710 * [[Art history]]
27711 * [[Art sale]]
27712 * [[Art school]]
27713 * [[Art styles, periods and movements]]
27714 * [[Art techniques and materials]]
27715 * [[Art theft]]
27716 * [[Artist]]
27717 * [[Definition of music]]
27718 * [[Applied art]]
27719 * [[Fine art]]
27720 * [[Modern art]]
27721 * [[Psychedelic art]]
27722 * [[:Category:Aesthetics|Philosophy of art]]
27723 * ''[[What Is Art?]]''
27724
27725 == Further reading ==
27726 * [[Peter Magyar]], ''Thought palaces.'' Amsterdam: Architectura &amp; Natura Press, 1999
27727 * [[Aristotle]], ''Metaphysics''
27728 * [[Plato]], ''Theory of forms''
27729 * [[Carl Jung]], ''Man and his Symbols''
27730 * [[Gyorgy Doczi]], ''The Power of Limits''.
27731 * [[Benedetto Croce]], ''Aesthetic as Science of Expression and General Linguistic, 1902''
27732 * [[Louis Torres &amp; Michelle Marder Kamhi]], ''What Art Is: The Esthetic Theory of Ayn Rand,'' Open Court, 2000
27733
27734 ==External links==
27735 {{sisterlinks|Arts}}
27736 '''Resources'''
27737 * [http://www.deviantart.com] - Online Arts
27738 * [http://www.artlex.com ArtLex.com] - Dictionary of art terms
27739 * [http://www.artcyclopedia.com/ Artcyclopedia.com] - Reference site
27740 * [http://art.on-topic.net/art_terms_by_name/ Art.on-topic.net] Art Topic Reference site
27741 * [http://www.art-atlas.net Art-Atlas.Net] The International Art Directory
27742 * [http://www.nelepets.com/art The Art Millennium] - Comprehensive Art Encyclopedia
27743 * [http://www.all-art.org History of Art] - World History of Art
27744 * [http://www.hamiltonelectronics.com/hma/ Hamilton Museum of Art] - Online Educational Art Museum
27745 ==Professional Links==
27746 *[http://www.TheDirectorsForum.Org/ The Art Museum Partnership]
27747 *[http://www.aam-us.org/ American Association of Museums]
27748
27749 [[Category:Art|*Art]]
27750 [[Category:Top 10| Art]]
27751
27752 [[an:Arte]]
27753 [[ar:ŲŲ†]]
27754 [[ast:Arte]]
27755 [[bg:ИСĐēŅƒŅŅ‚вО]]
27756 [[br:Arz]]
27757 [[ca:Art]]
27758 [[co:Arti]]
27759 [[cs:Umění]]
27760 [[da:Kunst]]
27761 [[de:Kunst]]
27762 [[el:ΤέĪ‡ÎŊΡ]]
27763 [[eo:Arto]]
27764 [[es:Arte]]
27765 [[et:Kunst]]
27766 [[eu:Arte]]
27767 [[fa:Ų‡Ų†Øą]]
27768 [[fi:Taide]]
27769 [[fr:Art]]
27770 [[fy:Keunst]]
27771 [[gl:Arte]]
27772 [[he:אמנו×Ē]]
27773 [[hi:ā¤•ā¤˛ā¤ž]]
27774 [[hr:Umjetnost]]
27775 [[hu:MÅąvÊszet]]
27776 [[ia:Arte]]
27777 [[id:Seni]]
27778 [[io:Arto]]
27779 [[it:Arte]]
27780 [[ja:芸術]]
27781 [[ka:ხელოვნება]]
27782 [[ku:Huner]]
27783 [[kw:Art]]
27784 [[la:Ars]]
27785 [[lad:Arte]]
27786 [[lb:Konscht]]
27787 [[li:Kuns]]
27788 [[lt:Menas]]
27789 [[mi:Toi]]
27790 [[mk:ĐŖĐŧĐĩŅ‚ĐŊĐžŅŅ‚]]
27791 [[ms:Seni]]
27792 [[nah:Toltecayotl]]
27793 [[nap:Arte]]
27794 [[nds:Kunst]]
27795 [[nl:Kunst]]
27796 [[nn:Kunst]]
27797 [[no:Kunst]]
27798 [[os:Аивад]]
27799 [[pl:Sztuka]]
27800 [[pt:Arte]]
27801 [[ro:Artă]]
27802 [[ru:ИŅĐēŅƒŅŅŅ‚вО]]
27803 [[scn:Arti]]
27804 [[simple:Art]]
27805 [[sl:Umetnost]]
27806 [[sr:ĐŖĐŧĐĩŅ‚ĐŊĐžŅŅ‚]]
27807 [[sv:Konst]]
27808 [[sw:Usanifu]]
27809 [[tr:Sanat]]
27810 [[vi:Ngháģ‡ thuáē­t]]
27811 [[yi:קונסט]]
27812 [[zh:č‰ē术]]</text>
27813 </revision>
27814 </page>
27815 <page>
27816 <title>Actor</title>
27817 <id>753</id>
27818 <revision>
27819 <id>41749572</id>
27820 <timestamp>2006-03-01T13:47:07Z</timestamp>
27821 <contributor>
27822 <username>DabMachine</username>
27823 <id>922466</id>
27824 </contributor>
27825 <minor />
27826 <comment>disambiguation from [[Myth]] to [[Mythology]] - ([[WP:DPL|You can help!]])</comment>
27827 <text xml:space="preserve">{{otheruses}}
27828 {{unsourced}}
27829 [[Image:ActorsOffSetLaughing.jpg|thumb|right|Actors in period costume sharing a joke whilst waiting between takes during location filming.]]
27830 An '''actor''' is a person who [[acting|acts]], or plays a role, in an artistic production. The term commonly refers to someone working in [[film|movies]], [[television]], live [[Theater|theatre]], or [[radio programming|radio]], and can occasionally denote a street entertainer. Besides playing dramatic roles, actors may also sing or dance or work only on radio or as a [[voice artist]]. A [[female]] actor may be known as an '''actress''', although the term &quot;actor&quot;, is also used as a gender-neutral term.
27831
27832 An actor usually plays a [[fictional character]]. In the case of a true story (or a fictional story that portrays real people) an actor may play a real person (or a fictional version of the same). Occasionally, actors appear as themselves.
27833 ==Etymology==
27834 &quot;Actor&quot; is directly from the masculine [[Latin]] noun ''actor'' (feminine, ''actrix'') from the [[Latin verbs|verb]] ''agere'' &quot;'''to do''', to drive, to pass time&quot; + the suffix ''-or'' &quot;so./st. who performs the action indicated by the stem&quot;. Alternatively from [[Greek language|Greek]] {{polytonic|áŧ‚ÎēĪ„Ī‰Ī}} ''(aktor)'', leader, from the [[verb]] {{polytonic|áŧ‚ÎŗĪ‰}} ''(agō)'', to lead or carry, to convey, to bring.
27835
27836 ==History==
27837 The first recorded case of an actor performing took place in [[530s BC|534 BC]] (probably on [[23 November]], though the changes in calendar over the years make it hard to determine exactly) when the [[Greece|Greek]] performer [[Thespis]] stepped on to the stage at the ''Theatre Dionysus'' and became the first person to speak words as a character in a play. The machinations of storytelling were immediately revolutionized. Prior to Thespis' act, stories were told in [[song]] and dance and in [[Perspective (storytelling)|third person]] narrative, but no one had assumed the role of a character in a story. In honour of Thespis, actors are commonly called ''Thespians''. Theatrical [[Mythology|myth]] to this day maintains that Thespis exists as a mischievous spirit, and disasters in the theatre are sometimes blamed on his ghostly intervention.
27838
27839 Actors were traditionally not people of high status, and in the [[Early Middle Ages]] travelling acting troupes were often viewed with distrust. However, this negative perception dramaticaly changed in 20th Century as acting became an honored and popular profession and art. Part of the reason is due to the rise of the popular appeal and access to dramatic [[film]] entertainment and the resulting rise of the [[movie star]] in social status and the large salaries they commanded. The combination of public presence and wealth had a profound rehabilitation to the image.
27840
27841 In the past, only men could become actors. In the ancient and [[middle ages|medieval world]], it was considered disgraceful for a woman to go on the stage, and this belief continued right up until the 17th century, when in [[Venice]] it was broken. In the time of [[William Shakespeare]], women's roles were played by men or boys, though there is some evidence to suggest that women disguised as men also (illegally) performed.
27842
27843 ==Actors playing the opposite sex==
27844 Women sometimes play the roles of [[prepubescent]] boys, because in some regards a woman has a closer resemblance to a boy than does a man. The role of [[Peter Pan]], for example, is traditionally played by a woman. The tradition of the [[principal boy]] in [[pantomime]] may be compared. An adult playing a child occurs more in theater than in film. The exception to this is voice actors in [[animated]] films, where boys are generally voiced by women, as heard in ''[[The Simpsons]]''. [[Opera]] has several '[[pants role]]s' traditionally sung by women, usually [[mezzo-soprano]]s. Examples are Hansel in ''[[Hänsel und Gretel]]'', and [[The Marriage of Figaro#Characters|Cherubino]] in ''[[The Marriage of Figaro]]''.
27845
27846 [[Mary Pickford]] played the part of [[Little Lord Fauntleroy]] in the first film version of the book. [[Linda Hunt]] won an [[Academy Award for Best Supporting Actress]] in ''[[The Year of Living Dangerously]]'', in which she played the part of a man.
27847
27848 Having an actor play the opposite sex for comic effect is also a long standing tradition in comic theatre and film. Most of Shakespeare's comedies include instances of cross dressing, and both [[Dustin Hoffman]] and [[Robin Williams]] appeared in hit comedy films where they were required to play most scenes dressed as women. [[Tony Curtis]] and [[Jack Lemmon]] famously posed as women to escape gangsters in the [[Billy Wilder]] film ''[[Some Like It Hot]]''.
27849
27850 ==Techniques of acting==
27851 Actors employ a variety of techniques that are learned through training and experience. Some of these are:
27852
27853 #The rigorous use of the voice to communicate a character's lines and express emotion. This is achieved through attention to diction and projection through correct breathing and articulation. It is also achieved through the tone and emphasis that an actor puts on words
27854 #Physicalisation of a role in order to create a believable character for the audience and to use the acting space appropriately and correctly
27855 #Use of gesture to complement the voice, interact with other actors and to bring emphasis to the words in a play, as well as having symbolic meaning
27856
27857 [[Shakespeare]] is believed to have been commenting on the acting style and techniques of his era when [[Hamlet]] gives his famous advice to the players:
27858
27859 &lt;blockquote&gt;Speak the speech, I pray you, as I pronounced it to you, trippingly on the tongue: but if you mouth it, as many of your players do, I had as lief the town-crier spoke my lines. Nor do not saw the air too much with your hand, thus, but use all gently; for in the very torrent, tempest, and, as I may say, the whirlwind of passion, you must acquire and beget a temperance that may give it smoothness. O, it offends me to the soul to hear a robustious periwig-pated fellow tear a passion to tatters, to very rags, to split the ears of the groundlings, who for the most part are capable of nothing but inexplicable dumbshows and noise: I would have such a fellow whipped for o'erdoing Termagant; it out-herods Herod: pray you, avoid it.&lt;/blockquote&gt;
27860
27861 &lt;blockquote&gt;Be not too tame neither, but let your own discretion be your tutor: suit the action to the word, the word to the action; with this special observance: o'erstep not the modesty of nature: for any thing so overdone is from the purpose of playing, whose end, both at the first and now, was and is, to hold, as 'twere, the mirror up to nature; to show virtue her own feature, scorn her own image, and the very age and body of the time his form and pressure. Now this overdone, or come tardy off, though it make the unskilful laugh, cannot but make the judicious grieve; the censure of the which one must in your allowance o'erweigh a whole theatre of others. O, there be players that I have seen play, and heard others praise, and that highly, not to speak it profanely, that, neither having the accent of Christians nor the gait of Christian, pagan, nor man, have so strutted and bellowed that I have thought some of nature's journeymen had made men and not made them well, they imitated humanity so abominably.&lt;/blockquote&gt;
27862
27863 &lt;blockquote&gt;O, reform it altogether. And let those that play your clowns speak no more than is set down for them; for there be of them that will themselves laugh, to set on some quantity of barren spectators to laugh too; though, in the mean time, some necessary question of the play be then to be considered: that's villanous, and shows a most pitiful ambition in the fool that uses it. Go, make you ready.&lt;/blockquote&gt;
27864
27865 ==Acting awards==
27866 * [[Academy Award]]s, also known as the Oscars, for film
27867 * [[Golden Globe Award]]s for film and television
27868 * [[Emmy Award]]s for television
27869 * [[Genie Awards]] for film
27870 * [[Gemini Awards]] for television
27871 * [[BAFTA|British Academy of Film and Television Arts Award]] for film and television
27872 * [[Tony Award]]s for the theatre (specifically, [[Broadway theatre]])
27873 * [[European Theatre Awards]] for the theatre
27874 * [[Laurence Olivier Awards]] for the theatre
27875 * [[Screen Actors Guild]] Awards for actors in film and television
27876
27877 ==See also==
27878 * [[Acting]]
27879 * [[Celebrities]]
27880 * [[Charisma]]
27881 * [[Method acting]]
27882 * [[Movie star]]
27883 * [[Stunt work]]
27884 * [[:Category:Lists of actors|Lists of actors]]
27885
27886 ==Suggested reading==
27887
27888 * ''An Actor Prepares'' by [[Konstantin Stanislavski]] (Theatre Arts Books, ISBN 0878309837, 1989)
27889 * ''A Dream of Passion: The Development of the Method'' by [[Lee Strasberg]] (Plume Books, ISBN 0452261988, 1990)
27890 * ''Sanford Meisner on Acting'' by [[Sanford Meisner]] (Vintage, ISBN 0394750594, 1987)
27891 * ''Letters to a Young Actor'' by [[Robert Brustein]] (Basic Books, ISBN 0465008062, 2005).
27892 * ''The Alexander Technique Manual'' by [[Richard Brennan]] (Connections Book Publishing ISBN 1-85906-163-X 2004)
27893
27894 [[Category:Actors|*]]
27895 [[Category:Entertainment occupations]]
27896
27897 [[ast:Actor]]
27898 [[bg:АĐēŅ‚ŅŒĐžŅ€]]
27899 [[ca:Actor]]
27900 [[cs:Herec]]
27901 [[da:Skuespiller]]
27902 [[de:Schauspieler]]
27903 [[es:Actor]]
27904 [[eo:Aktoro]]
27905 [[fr:Acteur]]
27906 [[gl:Actor]]
27907 [[ko:ë°°ėš°]]
27908 [[id:Aktor]]
27909 [[it:Attore (spettacolo)]]
27910 [[he:שחקן קולנו×ĸ]]
27911 [[lt:Aktorius]]
27912 [[hu:SzínÊsz]]
27913 [[ms:Pelakon]]
27914 [[nl:Acteur]]
27915 [[ja:äŋŗå„Ē]]
27916 [[no:Skuespiller]]
27917 [[nn:Skodespelar]]
27918 [[pl:Aktor]]
27919 [[pt:Ator]]
27920 [[ru:АĐēŅ‚Ņ‘Ņ€]]
27921 [[sq:Aktor]]
27922 [[simple:Actor]]
27923 [[sk:Herec]]
27924 [[sl:Filmski igralec]]
27925 [[sr:ГĐģŅƒĐŧĐ°Ņ†]]
27926 [[fi:Näyttelijä]]
27927 [[sv:SkÃĨdespelare]]
27928 [[vi:Diáģ…n viÃĒn]]
27929 [[uk:КŅ–ĐŊОаĐēŅ‚ĐžŅ€]]
27930 [[zh:æŧ”å“Ą]]</text>
27931 </revision>
27932 </page>
27933 <page>
27934 <title>Albania/Government</title>
27935 <id>754</id>
27936 <revision>
27937 <id>15899271</id>
27938 <timestamp>2002-08-22T22:04:25Z</timestamp>
27939 <contributor>
27940 <username>Koyaanis Qatsi</username>
27941 <id>90</id>
27942 </contributor>
27943 <text xml:space="preserve">#REDIRECT [[Politics of Albania]]</text>
27944 </revision>
27945 </page>
27946 <page>
27947 <title>Albania/History</title>
27948 <id>755</id>
27949 <revision>
27950 <id>15899272</id>
27951 <timestamp>2002-02-25T15:43:11Z</timestamp>
27952 <contributor>
27953 <ip>Conversion script</ip>
27954 </contributor>
27955 <minor />
27956 <comment>Automated conversion</comment>
27957 <text xml:space="preserve">#REDIRECT [[History of Albania]]
27958
27959 :''See also :'' [[Albania]]</text>
27960 </revision>
27961 </page>
27962 <page>
27963 <title>Albania/Transportation</title>
27964 <id>756</id>
27965 <revision>
27966 <id>15899273</id>
27967 <timestamp>2002-02-25T15:43:11Z</timestamp>
27968 <contributor>
27969 <ip>128.227.167.184</ip>
27970 </contributor>
27971 <comment>*</comment>
27972 <text xml:space="preserve">#REDIRECT [[Transportation in Albania]]</text>
27973 </revision>
27974 </page>
27975 <page>
27976 <title>Albania/Military</title>
27977 <id>757</id>
27978 <revision>
27979 <id>15899274</id>
27980 <timestamp>2002-02-25T15:43:11Z</timestamp>
27981 <contributor>
27982 <ip>128.227.167.184</ip>
27983 </contributor>
27984 <comment>*</comment>
27985 <text xml:space="preserve">#REDIRECT [[Military of Albania]]</text>
27986 </revision>
27987 </page>
27988 <page>
27989 <title>Albania/Transnational Issues</title>
27990 <id>758</id>
27991 <revision>
27992 <id>15899275</id>
27993 <timestamp>2002-02-25T15:51:15Z</timestamp>
27994 <contributor>
27995 <ip>128.227.167.184</ip>
27996 </contributor>
27997 <comment>*</comment>
27998 <text xml:space="preserve">#REDIRECT [[Foreign relations of Albania]]</text>
27999 </revision>
28000 </page>
28001 <page>
28002 <title>Albania/People</title>
28003 <id>759</id>
28004 <revision>
28005 <id>15899276</id>
28006 <timestamp>2002-08-20T15:34:33Z</timestamp>
28007 <contributor>
28008 <username>Koyaanis Qatsi</username>
28009 <id>90</id>
28010 </contributor>
28011 <text xml:space="preserve">#REDIRECT [[Demographics of Albania]]</text>
28012 </revision>
28013 </page>
28014 <page>
28015 <title>Albania/Geography</title>
28016 <id>760</id>
28017 <revision>
28018 <id>15899277</id>
28019 <timestamp>2002-02-25T15:43:11Z</timestamp>
28020 <contributor>
28021 <ip>Conversion script</ip>
28022 </contributor>
28023 <minor />
28024 <comment>Automated conversion</comment>
28025 <text xml:space="preserve">#REDIRECT [[Geography of Albania]]
28026
28027 :''See also :'' [[Albania]]</text>
28028 </revision>
28029 </page>
28030 <page>
28031 <title>Albania/Economy</title>
28032 <id>761</id>
28033 <revision>
28034 <id>15899278</id>
28035 <timestamp>2002-02-25T15:43:11Z</timestamp>
28036 <contributor>
28037 <ip>128.227.167.184</ip>
28038 </contributor>
28039 <comment>*</comment>
28040 <text xml:space="preserve">#REDIRECT [[Economy of Albania]]</text>
28041 </revision>
28042 </page>
28043 <page>
28044 <title>Albania/Communications</title>
28045 <id>762</id>
28046 <revision>
28047 <id>15899279</id>
28048 <timestamp>2002-02-25T15:43:11Z</timestamp>
28049 <contributor>
28050 <ip>128.227.167.184</ip>
28051 </contributor>
28052 <comment>*</comment>
28053 <text xml:space="preserve">#REDIRECT [[Communications in Albania]]</text>
28054 </revision>
28055 </page>
28056 <page>
28057 <title>Albania/Foreign relations</title>
28058 <id>763</id>
28059 <revision>
28060 <id>15899280</id>
28061 <timestamp>2002-02-25T15:51:15Z</timestamp>
28062 <contributor>
28063 <ip>128.227.167.184</ip>
28064 </contributor>
28065 <comment>*</comment>
28066 <text xml:space="preserve">#REDIRECT [[Foreign relations of Albania]]</text>
28067 </revision>
28068 </page>
28069 <page>
28070 <title>Agnostida</title>
28071 <id>764</id>
28072 <revision>
28073 <id>40357311</id>
28074 <timestamp>2006-02-20T01:01:41Z</timestamp>
28075 <contributor>
28076 <username>Rich Farmbrough</username>
28077 <id>82835</id>
28078 </contributor>
28079 <minor />
28080 <text xml:space="preserve">{{Taxobox
28081 | color = pink
28082 | name = Agnostida
28083 | image = Peronopsis.jpg
28084 | image_width = 250px
28085 | image_caption = ''Peronopsis interstrictus''
28086 | regnum = [[Animal]]ia
28087 | phylum = [[Arthropod]]a
28088 | classis = [[Trilobita]]
28089 | ordo = '''Agnostida'''
28090 | ordo_authority = [[John William Salter|Salter]], 1864
28091 | subdivision_ranks = Families
28092 | subdivision =
28093 '''Suborder [[Agnostina]]'''&lt;br /&gt;
28094 *'''Superfamily [[Agnostoidea]]'''
28095 **[[Agnostidae]]
28096 **[[Ammagnostidae]]
28097 **[[Clavagnostidae]]
28098 **[[Diplagnostidae]]
28099 **[[Doryagnostidae]]
28100 **[[Glyptagnostidae]]
28101 **[[Metagnostidae]]
28102 **[[Peronopsidae]]
28103 **[[Ptychagnostidae]]
28104 *'''Superfamily&amp;nbsp;[[Condylopygoidea]]'''
28105 **[[Condylopygidae]]
28106 '''Suborder [[Eodiscina]]'''&lt;br /&gt;
28107 *'''Superfamily&amp;nbsp;[[Eodiscoidea]]'''
28108 **[[Calodiscidae]]
28109 **[[Eodiscidae]]
28110 **[[Hebediscidae]]
28111 **[[Tsunyidiscidae]]
28112 **[[Weymouthiidae]]
28113 **[[Yukoniidae]]
28114 }}
28115
28116 '''Agnostida''' (the '''agnostids''') is an [[order (biology)|order]] of [[trilobite]]. These small trilobites first appeared toward the end of the lower [[Cambrian]] and thrived in the middle Cambrian. The last agnostids held out until the late [[Ordovician]].
28117
28118 The Agnostida are divided into two suborders -- [[Agnostina]] and [[Eodiscina]] -- that are then divided into a number of [[family (biology)|families]]. The Eodiscina appear to be &quot;normal&quot; trilobites with only two or three segments in the thorax; some resemble trilobites of the order [[Ptychopariida]]. As a group, agnostids have ''[[Pygidium|pygidia]]'' (tails) that are similar in size and shape to their ''[[cephalon]]s'' (heads). Neither looks much like the corresponding regions of other trilobites. There has been more than one argument about which end is the &quot;head&quot;.
28119
28120 Agnostids were probably benthic (bottom-dwelling) creatures. Most agnostid species have no eyes. They likely lived on areas of the ocean floor that received little or no light and fed on detritus that descended from upper layers of the sea to the bottom.
28121
28122 Unfortunately, the appendages are known only for one [[genus]] of agnostid. The legs of that genus look much more like [[crustacean]] legs than the legs of other trilobites with preserved appendages. This has caused many [[Taxonomy|taxonomist]]s to question whether the agnostids are truly trilobites. Another view is that the agnostids represent the first line to have diverged from the trilobites. However, four orders of trilobites ([[Redlichiida]], [[Corynexochida]], [[Naraoidia]], [[Ptychopariida]]) considerably predate the earliest Agnostids in the [[fossil]] record.
28123
28124 Agnostina are generally referred to simply as &quot;agnostids&quot; even though they probably should be called &quot;agnostines&quot;.
28125
28126 ==External links==
28127 * [http://www.aloha.net/~smgon/ordagnostida.htm Agnostida fact sheet]
28128 * [http://www.trilobites.info/ordagnostida.htm A Guide to the 8 Orders of Trilobites] By Sam Gon III
28129
28130 [[Category:Prehistoric arthropods]]
28131
28132 [[de:Agnostida]]</text>
28133 </revision>
28134 </page>
28135 <page>
28136 <title>Abortion</title>
28137 <id>765</id>
28138 <revision>
28139 <id>42146960</id>
28140 <timestamp>2006-03-04T03:13:13Z</timestamp>
28141 <contributor>
28142 <username>Andrew c</username>
28143 <id>704413</id>
28144 </contributor>
28145 <minor />
28146 <comment>/* Mental health */ rm excessive spaces</comment>
28147 <text xml:space="preserve">&lt;!--Note to editors: This article has a long and intense history of terminology debates. Please review the talk page before making changes to lines to see if there is a previous established consensus or compromise. Thank you.--&gt;
28148 An '''abortion''' is the termination of a [[pregnancy]] associated with the death of an [[embryo]] or a [[fetus]]. This can occur spontaneously, in the form of a [[miscarriage]], or be intentionally induced through chemical, surgical, or other means. Generally, abortions are performed by [[gynaecology|gynaecologists]] or [[obstetrics|obstetricians]]. All [[Pregnancy (mammals)|mammalian pregnancies]] can be aborted; however, this article focuses exclusively on the abortion of [[human]] pregnancy.
28149
28150 There have been various methods of inducing an abortion [[History of abortion|throughout the centuries]]. In the [[20th century]], the [[ethics]] and [[morality]] of abortion became the subject of intense [[political]] [[debate]] in many areas of the world.
28151
28152 ==Definitions==
28153 [[Pregnancy]] is defined by the [[medicine|medical community]] as beginning at the [[implantation]] of the [[embryo]]. Others differ, however, placing this initiation at [[fertilisation|conception]]. The following medical terms are used to define an abortion:
28154
28155 * ''Spontaneous abortion ([[miscarriage]])'': An abortion due to accidental trauma or [[natural causes]].
28156 *''Induced abortion'': An abortion deliberately caused. Induced abortions are further subcategorized into therapeutic abortions and elective abortions:
28157 **''Therapeutic abortion''
28158 *** To save the life of the pregnant woman.
28159 *** To preserve the woman's physical or mental health.
28160 *** To terminate a pregnancy that would result in the birth of a child with defects which would be [[fatal|incompatible with life]] or associated with significant [[morbidity]].
28161 *** To [[selective reduction|selectively reduce]] the number of [[fetus]]es in a [[multiple birth|multiple pregnancy]] to lessen health risks involved.
28162 **''Elective abortion'': An abortion performed for any other reason.
28163
28164 Methods of birth control that prevent implantation, such as [[emergency contraception]], are not considered to be abortion; however, emergency contraception is generally considered equivalent to abortion by those who reject the medical definition of pregnancy.
28165
28166 A pregnancy that ends earlier than 37 completed weeks of gestation, and where an [[infant]] is born and survives, is termed a [[premature birth]]. A pregnancy that ends with an infant dead upon birth at any gestational stage, due to causes including spontaneous abortion or complications during delivery, is termed a [[stillbirth]].
28167
28168 In common parlance, the term &quot;abortion&quot; is synonymous with induced abortion of a human fetus.
28169
28170 ==Incidence==
28171 The incidence of and reasons for induced abortion vary in regions in which abortion is generally permitted.
28172
28173 It has been estimated that the total number of induced abortions performed globally is approximately 46 million per year. 26 million of these are said to occur in [[abortion law|places in which abortion is legal]]; the other 20 million happen where it is illegal. Some countries, such as [[Belgium]] and the [[Netherlands]], experience a low rate of induced abortion, while others like [[Russia]] and [[Vietnam]] have a comparatively high rate. {{ref|incidence2}}
28174
28175 A 1998 study aggregated data from studies in 27 countries on the reasons women seek to terminate their pregnancies. It concluded that common factors cited to have influenced the abortion decision were the desire to delay or end childbearing, concern over the interruption of [[employment|work]] or [[education]], issues of financial or relationship stability, and perceived immaturity. {{ref|incidence3}} In [[Finland]] and the [[United States]], concern for the health risks posed by pregnancy in individual cases was not a factor commonly given, whereas in [[Bangladesh]], [[India]], and [[Kenya]] such a concern was found to be more prevalent. A 2004 study in which [[United States|American]] women at [[abortion clinic|clinic]]s answered a [[questionnaire]] yielded similar results. {{ref|incidence4}}
28176
28177 Some abortions are undergone as the result of societal pressures, such as [[eugenics]], the stigmatization of [[disabled]] persons, preference for children of a specific [[sex]], disapproval of [[single parent|single motherhood]], insufficient economic support for [[family|families]], lack of access to or rejection of [[birth control|contraceptive]] methods, or efforts toward [[population control]] (such as [[China]]'s [[one-child policy]]). A combination of these factors can sometimes result in forced abortion, [[forced sterilization]], [[infanticide]], [[child abandonment]], or [[sex-selective abortion and infanticide]] — which is illegal in most countries, but difficult to stop. In many areas, especially in [[developing country|developing nations]] or where abortion is illegal, women sometimes resort to &quot;[[back-alley abortion|back-alley]]&quot; or [[self-induced abortion|self-induced]] procedures. The [[World Health Organization]] suggests that there are 19 million terminations annually which fit its criteria for an [[Abortion#Unsafe abortion|unsafe abortion]]. {{ref|unsafe1}} See [[Abortion#Social issues|social issues]] for more information on these subjects.
28178
28179 ==Forms of abortion==
28180
28181 ===Spontaneous abortion===
28182 {{main|Miscarriage}}
28183
28184 &lt;!--improve me!--&gt;
28185 Spontaneous abortions, generally referred to as miscarriages, occur when an embryo or fetus is lost due to natural causes. A miscarriage is spontaneous loss of the embryo or fetus before the 20th week of development. Spontaneous abortions after the 20th week are generally considered to be preterm deliveries. Most miscarriages occur very early in a pregnancy. Approximately 10-50% of pregnancies end in miscarriage, depending upon the age and health of the pregnant woman. {{ref|miscarriage1}}
28186
28187 The risk for spontaneous abortion is greater in those with a history of more than three previous (known) spontaneous abortions, those who have had a previous induced abortion, those with systemic diseases, and in women over age 35.
28188
28189 Other causes can be infection (of either the woman or the fetus), immune responses, or serious systemic diseases of the woman.
28190
28191 A spontaneous abortion can also be caused by accidental [[trauma]]; intentional trauma to cause miscarriage is considered an induced abortion. Some governments have laws increasing the criminal liability of a person who causes a miscarriage during an [[assault]] or other violent [[crime]].
28192
28193 ===Induced abortion===
28194
28195 A pregnancy can be intentionally aborted in a number of ways. The manner selected depends chiefly upon the [[gestational age]] of the [[fetus]], in addition to the legality, regional availability, and/or doctor-patient preference for specific procedures.
28196
28197 ====Surgical abortion====
28198 [[Image:PBAsigning_wide.jpg|thumb|240px|right|U.S. President George W. Bush signs the ''Partial-Birth Abortion Ban Act of 2003'']]
28199
28200 In the first fifteen weeks, [[suction-aspiration abortion|suction-aspiration]] or vacuum abortion is the most common method. ''[[Manual vacuum aspiration]]'', or MVA abortion, consists of removing the [[fetus]] or [[embryo]] by suction using a manual [[syringe]], while the ''[[Electric vacuum aspiration]]'' or EVA abortion method uses an electric [[pump]]. These techniques are equivalent, differing only in the mechanism use to apply suction. From the fifteenth week up until around the twenty-sixth week, a surgical [[dilation and evacuation]] (D &amp;amp; E) is used. D &amp;amp; E consists of opening the [[cervix]] of the [[uterus]] and emptying it using surgical instruments and suction.
28201
28202 ''[[Dilation and curettage]]'' (D &amp;amp; C) is a standard gynaecological procedure performed for a variety of reasons, including examination of the uterine lining for possible malignancy, investigation of abnormal bleeding, and abortion. ''[[Curettage]]'' refers to the cleaning of the walls of the [[uterus]] with a [[curette]]. The [[World Health Organization]] recommends this sort of procedure, also called Sharp Curettage, only when MVA is unavailable. {{ref|surgicalabortion1}} Sharp curettage only accounted for 2.4% of abortion procedures in the US in [[2002]]. {{ref|surgicalabortion2}} The term &quot;D and C&quot; can more generally be used to refer to the first trimester abortion procedure, irrespective of the method used to perform the procedure.
28203
28204 Other techniques must be used to induce abortion in the third [[trimester]]. Premature delivery can be induced with [[prostaglandin]]; this can be coupled with injecting the [[amniotic sac|amniotic fluid]] with caustic solutions containing [[saline (medicine)|saline]] or [[urea]]. Very late abortions can be brought about by [[intact dilation and extraction]] (intact D &amp;amp; X), which requires the surgical decompression of the fetus's head before evacuation, and is sometimes termed &quot;[[partial-birth abortion]].&quot; A [[hysterotomy abortion]], similar to a [[caesarian section]] but resulting in a terminated fetus, can also be used at late stages of pregnancy. It can be performed vaginally, with an incision just above the [[cervix]], in the late mid-trimester.
28205
28206 ====Chemical abortion====
28207 [[Image:Mifepristone.gif|thumb|right|170px|The molecular structure of the abortifacient drug Mifepristone.]]
28208 {{main|Chemical abortion}}
28209
28210 Effective in the first trimester of pregnancy, chemical (also referred to as a medical abortion), or non-surgical abortions comprise 10% of all abortions in the [[United States]] and [[Europe]]. The process begins with the administration of either [[methotrexate]] or [[mifepristone]], followed by [[misoprostol]]. When appropriately used, 98% of women undergoing medical termination of pregnancy will experience completed abortion without surgical intervention. The [[Food and Drug Administration]] currently approves the use of mifepristone up to 49 days gestation (7 weeks), though evidence based regimens exist for its use up to 61 days gestation with similar success rates. Misoprostol alone can also be used, though it is not FDA approved for this purpose. Misoprostol (Cytotec) alone has the advantage of costing less than one dollar for an effective dose, as opposed to several hundred dollars for an effective dose of mifepristone. In cases of failure of medical abortion, vacuum or manual aspiration is used to complete the abortion surgically.
28211
28212 ====Other means of abortion====
28213 Historically, a number of [[herb]]s reputed to possess [[abortifacient]] properties have been used in [[folk medicine]]: [[tansy]], [[pennyroyal]], [[black cohosh]], and the now-extinct [[silphium]] (see [[Abortion#History of abortion|history of abortion]]). The use of herbs in such a manner can cause serious — even lethal — side effects, such as [[multiple organ dysfunction syndrome|multiple organ failure]], and is not recommended by [[physician]]s. {{ref|othermethods1}}
28214
28215 Abortion is sometimes attempted through means of trauma to the [[abdomen]]. The degree of force applied, if severe, can cause serious internal injuries without necessarily succeeding in inducing [[miscarriage]]. {{ref|othermethods2}} Both accidental and deliberate abortions of this kind can be subject to criminal liability in many countries. In [[Myanmar|Burma]], [[Indonesia]], [[Malaysia]], the [[Philippines]], and [[Thailand]], there is an ancient tradition of attempting abortion through forceful abdominal [[massage]]. {{ref|othermethods3}}
28216
28217 Reported methods of unsafe, [[self-induced abortion]] include the misuse of the [[ulcer]] [[drug]] [[Misoprostol]] and the insertion of non-surgical implements such as [[knitting needle]]s and [[clothes hanger]]s into the [[uterus]].
28218
28219 ==Health effects==
28220
28221 &lt;!--MAJOR REORG NEEDED. Entire section is argumentative, and biased: See Talk. --&gt;
28222 Early-term surgical abortion is a simple procedure, and when performed by competent doctors (and in some states, nurse practitioners, nurse midwives and physician assistants) in first-world nations (before the 16th week), is safer than carrying the pregnancy to term. {{ref|healtheffects1}} &lt;!-- As I pointed out earlier, listing the negatives of this generally safe procedure first would be biased. --&gt;
28223
28224 As with most surgical procedures, the most common surgical abortion methods carry the risk of potentially serious complications. These risks include: a perforated uterus, perforated [[bowel]] or [[Urinary bladder|bladder]], [[septic shock]], sterility, and death. The risk of complications occurring can increase depending on how far the pregnancy has progressed, but may be counterbalanced by [[Complications of pregnancy|complications]] that would occur from carrying the pregnancy to term.
28225
28226 It is difficult to accurately assess the risks of induced abortion due to a number of factors. These factors include wide variation in the quality of abortion services in different [[Society|societies]] and among different [[socio-economic]] groups, a lack of uniform [[definition]]s of terms, and difficulties in patient follow-up and after-care. The degree of risk is also dependent upon the skill and experience of the practitioner; maternal age, health, and [[parity]]; [[gestational age]]; pre-existing conditions; methods and instruments used; [[medication]]s used; the skill and experience of those assisting the practitioner; and the quality of recovery and follow-up care. A highly-skilled practitioner, operating under ideal conditions, will tend to have a very low rate of complications; an inexperienced practitioner in an ill-equipped and ill-staffed facility, on the other hand, will often have a higher incidence of complications.
28227
28228 In the [[United Kingdom]], the number of deaths due to legal abortion between the years of 1991 and 1993 was 5, as compared to the 9 deaths caused by [[ectopic pregnancy]] during the same time frame. {{ref|mortality1}} In the [[United States]], during the year 1999, there were a total of 4 deaths due to legal abortion. {{ref|mortality2}} &lt;!--need to compare the number of abortions and the number of pregnancies for these numbers to relate --&gt;
28229
28230 Some practitioners advocate using minimal [[anesthesia]] so that the patient can alert them to possible complications. Others recommend [[general anesthesia]], in order to prevent patient movement, which might cause a perforation. General anesthesia carries its own risks, including death, which is why public health officials recommend against its routine use.
28231
28232 [[Dilation]] of the [[cervix]] carries the risk of cervical tears or perforations, including small tears that might not be apparent and might cause [[cervical incompetence]] in future pregnancies. Most practitioners recommend using the smallest possible dilators, and using [[osmotic]] rather than [[mechanical]] dilators after the first [[trimester]] of pregnancy.
28233
28234 Instruments are placed within the uterus to remove the fetus. These can, on rare occasions, cause [[perforation]] or [[laceration]] of the uterus, and damage to structures surrounding the uterus. Laceration or perforation of the uterus or cervix can, again on rare occasions, lead to even more serious complications.
28235
28236 Incomplete emptying of the uterus can cause [[hemorrhage]] and infection. Use of [[ultrasound]] verification of the location and duration of the pregnancy prior to abortion, with immediate follow-up of patients reporting continuing pregnancy symptoms after the procedure, will virtually eliminate this risk. The sooner a complication is noted and properly treated, the lower the risk of permanent injury or death.
28237
28238 In rare cases, the abortion will be unsuccessful and the pregnancy will continue. An unsuccessful abortion can also result in the delivery of a live [[neonate]], or infant. This, termed a failed abortion, is more likely to occur if the procedure is carried out later in the pregnancy. Some doctors faced with this situation have voiced concerns about the ethical and legal ramifications of then letting the neonate die. As a result, recent investigations have been launched in the [[United Kingdom]] by the Confidential Enquiry into Maternal and Child Health (CEMACH) and the Royal College of Obstetricians and Gynecologists, in order to determine how widespread the problem is and what an ethical response in the treatment of the infant might be. {{ref|failed}}
28239
28240 Use of other methods (e.g., overdose of various drugs, insertion of various objects into [[uterus]]) for abortion is potentially dangerous, carrying a significantly elevated risk for permanent injury or death compared to abortions done by [[physician]]s.
28241
28242 ===Suggested effects===
28243 There is controversy over a number of proposed risks and effects of abortion. Evidence, whether in support of or against such claims, might in part be influenced by the political and religious beliefs of the parties behind it.
28244
28245 ====Breast cancer====
28246 {{main|Abortion-breast cancer hypothesis}}
28247
28248 The ''abortion-breast cancer (ABC) hypothesis'' posits a [[causality| causal relationship]] between having an induced abortion and a higher risk of developing [[breast cancer]] in the future. An increased level of [[estrogen]] in early [[pregnancy]] helps to initiate [[cellular differentiation]] (growth) in the [[breast]] in preparation for [[lactation]]. If this process is terminated, through abortion, before full differentiation in the third [[trimester]], then more &quot;vulnerable&quot; undifferentiated cells will be left than there were prior to the pregnancy. It is proposed that this might result in an elevated risk of [[breast cancer]]. The majority of interview-based studies have indicated a link, and some have been demonstrated to be [[statistically significant]], {{ref|abc1}} but there remains debate as to their reliability because of possible [[response bias]].
28249
28250 Larger and more recent record-based studies, such as one in 1997 which used data from two national [[registry|registries]] in [[Denmark]], found the correlation to be negligible to non-existent after statistical adjustment. {{ref|abc2}} The [[National Cancer Institute]] conducted an official workshop with dozens of experts on the issue, between [[February 24]]-[[February 26]], [[2003]], which concluded from its examination of various evidence that it is &quot;well established&quot; that &quot;induced abortion is not associated with an increase in breast cancer risk.&quot; {{ref|abc3}} These findings and how the Denmark study statistically adjusted their overall results have been disputed by [[Joel Brind|Dr. Joel Brind]], {{ref|abc4}} an invitee to the workshop and the leading scientific advocate of the abortion-breast cancer hypothesis. Nevertheless, gaps and inconsistencies remain in the research, and the subject continues to be one of political and scientific contention.
28251
28252 ====Fetal pain====
28253 {{main|Fetal pain}}
28254
28255 The experience of the fetus during abortion is a matter of medical, ethical and public policy concern. Evidence is conflicting, with some authorities holding that the fetus is capable of feeling pain from the first [[trimester]], and others maintaining that the neuro-anatomical requirements for such experience do not exist until the second or third trimester.
28256
28257 [[Pain|Pain receptors]] begin to appear in the seventh week of pregnancy. The [[thalamus]], the part of the brain which receives signals from the [[nervous system]] and then relays them to the [[cerebral cortex]], starts to form in the fifth week. However, other anatomical structures involved in the [[pain|nociceptic]] process are not present until much later in gestation. Links between the thalamus and cerebral cortex aren't forged until around the 23rd week. {{ref|pain1}}
28258
28259 Researchers have observed changes in the heart rates and [[hormones| hormonal levels]] of newborn [[infants]] after [[circumcision]], [[blood tests]], and surgery — effects which were alleviated with the administration of [[anesthesia]]. {{ref|pain2}} Others suggest that the human experience of pain, being more than just physiological, cannot be measured in such [[reflexive]] responses.
28260
28261 ====Mental health====
28262 Some women will experience negative feelings as a result of elective abortion. However, whether this phenomenon is significant enough to warrant a general diagnosis, or even classification as an independent syndrome (see [[post-abortion syndrome]]), is a subject that is debated among members of the medical community.
28263
28264 Data on the incidence of [[clinical depression]], [[mental illness]], [[post-traumatic stress disorder]], and suicide in association with abortion remain inconclusive. {{ref|mental1}} A comparative analysis of the suicide rates among [[postnatal| postpartum]] and post-abortive women in [[Finland]] found a [[statistics| statistical]] correlation between abortion and suicide. {{ref|mental2}}
28265
28266 Other studies have suggested a link between the elective termination of an unwanted [[pregnancy]] and an improvement in reported mental well-being. {{ref|mental3}} Elective abortion may reduce the occurrence of depression in cases of unwanted pregnancy, as compared to cases in which the pregnancy has been carried to completion, but it is also sometimes reported as an additional [[stressor]] ([[ibid.]]). The majority of evidence would seem to indicate that adverse emotional reactions to the procedure are most strongly influenced by pre-existing [[psychology| psychological]] conditions and other negative factors ([[ibid.]]).
28267
28268 Spontaneous abortion, or [[miscarriage]], is known to present an increased risk of [[depression]] in women. {{ref|mental4}}
28269
28270 ==History of abortion==
28271 {{main|History of abortion}}
28272
28273 [[Image:TansyPills.jpg|thumb|right|90px|Bottom-most: &quot;Dr. Caton's Tansy Pills!&quot; An example of a clandestine advertisement.]]
28274
28275 The practice of induced abortion, according to some [[anthropologists]], can be traced to ancient times. There is evidence to suggest that, historically, pregnancies were terminated through a number of methods, including the administration of [[abortifacient]] herbs, the use of sharpened implements, the application of abdominal pressure, and other techniques.
28276
28277 [[Soranus]], a 2nd century [[Ancient Greece|Greek]] [[physician]], suggested in his work ''[[Gynecology]]'' that women wishing to abort their pregnancies should engage in violent exercise, energetic jumping, carrying heavy objects, and riding animals. He also prescribed a number of recipes for herbal bathes, [[pessary| pessaries]], and [[bloodletting]], but advised against the use of sharp instruments to induce miscarriage due to the risk of organ [[perforation]]. {{ref|history1}} It is also known that the ancient Greeks relied upon the herb [[silphium]] as both a [[contraceptive]] and an [[abortifacient]]. The plant, as the chief export of [[Cyrene]], was driven to [[extinction]], but it is suggested that it might have possessed the same abortive properties as some of its closest extant relatives in the [[Apiaceae|Apiaceae family]].
28278
28279 Such folk remedies, however, varied in effectiveness and were not without risk. [[Tansy]] and [[pennyroyal]], for example, are two [[poison|poisonous]] [[herbs]] with serious [[Adverse effect (medicine)|side effects]] that have at times been used to terminate pregnancy.
28280
28281 [[19th-century]] [[medicine]] saw advances in the fields of [[surgery]], [[anaesthesia]], and [[sanitation]], in the same era that doctors with the [[American Medical Association]] lobbied for bans on abortion in [[The United States]] and the [[British Parliament]] passed the Offences Against the Person Act. Demand for the procedure continued, however, as the disguised, but nonetheless open, advertisement of abortion services in Victorian times would seem to suggest. {{ref|history2}}
28282
28283 ==Social issues==
28284 A number of of complex issues exist in the debate over abortion. These, like the suggested effects upon health listed above, are a focus of research and a fixture of discussion among members on all sides the controversy.
28285
28286 ===Effect upon crime rate===
28287 {{Main|legalized abortion and crime effect}}
28288
28289 A controversial theory attempts to draw a [[correlation]] between the unprecedented nationwide decline of the overall [[crime rate]] witnessed in the [[United States]] during the 1990s and the decriminalization of abortion 20 years prior.
28290
28291 The suggestion was brought to widespread attention by a 1999 [[academic paper]], ''[[The Impact of Legalized Abortion on Crime]]'', authored by the [[economist]]s [[Steven Levitt| Steven D. Levitt]] and [[John Donohue]]. They attributed the drop in crime to a reduction in individuals said to have a higher statistical probability of committing crimes: unwanted children, especially those born to mothers who are [[African-American]], [[poverty| impoverished]], [[teenage pregnancy|adolescent]], [[education|uneducated]], and [[single parent|single]]. The change coincided with what would've been the adolescence, or peak years of potential criminality, of those who had not been born as a result of ''[[Roe v. Wade]]'' and similar cases. Donohue and Levitt's study also noted that states which legalized abortion before the rest of the nation experienced the lowering crime rate pattern earlier and that those with higher abortion rates had more pronounced reductions. {{ref|crimerate1}}
28292
28293 Fellow economists [[Christopher Foote]] and [[Christopher Goetz]] criticized the [[methodology]] in the Donahue-Levitt study, noting a lack of accommodation for statewide yearly variations such as [[cocaine]] use, and recalculating based on incidence of crime [[per capita]]; they found no [[statistically significant|statistically significant]] results. {{ref|crimerate2}} Levitt and Donohue responded to this by presenting an adjusted [[data set]] which took into account these concerns but, they claim, maintained the statistical significance of their initial paper. {{ref|crimerate3}}
28294
28295 Such research has been criticized by some as being [[utilitarian]], [[discrimination|discriminatory]] as to [[race]] and [[social class|socioeconomic class]], and as promoting [[eugenic]]s as a solution to [[crime]]. {{ref|crimerate4}} {{ref|crimerate5}} Levitt states in his book, ''[[Freakonomics]]'', that they are neither promoting nor negating any course of action &amp;ndash; merely reporting data as economists.
28296
28297 ===Sex-selective abortion===
28298 {{Main|sex-selective abortion and infanticide}}
28299
28300 The advent of both [[ultrasound]] and [[amniocentesis]] has allowed [[parent]]s to determine [[sex]] before [[childbirth|birth]]. This has lead to the occurrence of [[sex-selective abortion and infanticide|sex-selective abortion]] or the targeted termination of a [[fetus]] based upon its gender.
28301
28302 It is suggested that sex-selective abortion might be partially responsible for the noticeable disparities between the [[birth rate]]s of [[male]] and [[female]] children in some places. The preference for male children is reported in many areas of [[Asia]], and the use of abortion to limit female births has been reported in [[Mainland China]], [[Taiwan]], [[South Korea]], and [[India]]. {{ref|sexselective1}}
28303
28304 In [[India]], the [[economic]] role of [[men]], the costs associated with [[dowry| dowries]], and a [[Hindu]] tradition which dictates that [[funeral|funeral rites]] must be performed by a male relative have lead to a [[culture| cultural]] preference for [[son]]s. {{ref|sexselective2}} The widespread availability of diagnostic testing, during the 1970s and '80s, lead to advertisements for services which read, &quot;Invest 500 [[rupee]]s [for a sex test] now, save 50,000 rupees [for a dowry] later.&quot; {{ref|sexselective3}} In 1991, the male-to-female [[sex ratio]] in India was skewed from its biological norm of 105 to 100, to an average of 108 to 100. {{ref|sexselective4}} Researchers have asserted that between 1985 and 2005 as many as 10 million female fetuses may have been selectively aborted. {{ref|india1}} The Indian government passed an official ban of pre-natal sex screening in 1994 and moved to pass a complete ban of sex-selective abortion in 2002. {{ref|sexselective5}}
28305
28306 In the [[People's Republic of China]], there is also a historic son preference. The implementation of the [[one-child policy]] in 1979, in response to population concerns, lead to an increased disparities in the sex ratio as parents attempted to circumvent the law through sex-selective abortion or the abandonment of unwanted [[daughter]]s. {{ref|sexselective6}} Sex-selective abortion might be a part of what is behind the shift from the baseline male-to-female birth rate to an elevated national rate of 117:100 reported in 2002. The trend was more pronounced in rural regions: as high as 130:100 in [[Guangdong]] and 135:100 in [[Hainan]]. {{ref|sexselective7}} A ban upon the practice of sex-selective abortion was enacted in 2003. {{ref|sexselective8}}
28307
28308 ===Unsafe abortion===
28309 {{main|Unsafe abortions}}
28310
28311 Where and when access to safe abortion has been barred, due to explicit sanctions or general unavailability, women seeking to terminate their pregnancies have sometimes resorted to unsafe methods.
28312
28313 &quot;[[Back-alley abortion]]&quot; is a [[slang]] term for any abortion not practiced under ideal conditions of [[sanitation]] and [[professional| professionalism]]. The [[World Health Organization]] defines an unsafe abortion as being, &quot;a procedure...carried out by persons lacking the necessary skills or in an environment that does not conform to minimal medical standards, or both.&quot; {{ref|unsafe1}} This can include a person without medical training, a professional health provider operating in sub-standard conditions, or the woman herself.
28314
28315 Unsafe abortion remains a [[public health]] concern today due to the higher incidence and severity of its associated complications, such as incomplete abortion, [[sepsis]], [[hemorrhage]], and damage to internal organs. WHO estimates that 19 million unsafe abortions occur around the world annually and that 68,000 of these result in the death of a woman. {{ref|unsafe1}} Complications of unsafe abortion are said to account, globally, for approximately 13% of all [[maternal death|maternal mortalities]], with regional estimates including 12% in [[Asia]], 25% in [[Latin America]], and 13% in [[sub-Saharan Africa]]. {{ref|unsafe2}} [[Health education]], access to [[family planning]], and improvements in [[healthcare]] during and after abortion have been proposed to address this phenomenon. {{ref|unsafe3}}
28316
28317 ==Abortion debate==
28318 [[Image:Prolife-DC.JPG|thumb|right|240px||Pro-life activists in Washington, DC stage a silent demonstration before the Supreme Court.]]
28319 {{main|abortion debate}}
28320
28321 Over the course of the [[history of abortion]], induced abortions have been a source of considerable [[debate]] and [[controversy]] regarding the morality and legality of this practice. An individual's position on the complex [[ethical]], [[moral]], [[philosophical]], [[biological]], and [[legal]] issues have a strong relationship with that individual's [[value system]]. A person's position on abortion may be best described as a combination of their personal beliefs on the morality of abortion, and that person's beliefs on the ethical scope and responsibility of legitimate [[government|governmental]] and legal [[authority]]. Another factor for many individuals is [[religion|religious]] doctrine (see [[religion and abortion]]).
28322
28323 Abortion debates, especially pertaining to [[abortion law]]s, are often spearheaded by [[advocacy|advocacy groups]] belonging to one of two camps. Most often those in favor of legal prohibition of abortion describe themselves as [[pro-life]] while those against legal restrictions on abortion describe themselves as [[pro-choice]]. Both are used to indicate the central principles in arguments for and against abortion: &quot;Is the fetus a human being with a fundamental right to ''life''?&quot; for pro-life advocates, and, for those who are pro-choice, &quot;Does a woman have the right to ''choose'' whether or not to have an abortion?&quot;
28324
28325 In both public and private debate, arguments presented in favor of or against abortion focus on either the moral permissibility of an induced abortion, or justification of [[laws]] permitting or restricting abortion. Arguments on morality and legality tend to collide and combine, complicating the issue at hand.
28326
28327 Debate also focuses on whether the [[pregnancy|pregnant]] woman should have to notify and/or have the [[consent]] of others in distinct cases: a [[minor (law)|minor]] her parents; a [[marriage|legally-married]] or [[common-law marriage|common-law]] wife her husband; or a pregnant woman the biological father. In a 2003 [[Gallup]] poll in the [[United States]], 72% of respondents were in favor of spousal notification, with 26% opposed; of those polled, 79% of males and 67% of females responded in favor. {{ref|abortiondebate1}}
28328
28329 ===Public opinion===
28330 Political sides have largely been divided into [[moral absolutism|absolutes]]. The abortion debate, as such, tends to center around individuals who hold strong positions. However, public opinion varies from poll to poll, country to country, and region to region:
28331
28332 *'''Australia''': In a February 2005 [[AC Nielsen]] poll, as reported in [[The Age]], 56% thought the [[Abortion in Australia|current abortion laws]], which generally allow abortion for the sake of life or health, were &quot;about right,&quot; 16% want changes in law to make abortion &quot;more accessible,&quot; and 17% want changes to make it &quot;less accessible.&quot; {{ref|publicopinion1}} A 1998 poll, conducted by Roy Morgan Research, asked, &quot;Do you approve of the termination of unwanted pregnancies through surgical abortion?&quot; 65% of the [[Australia| Australians]] polled stated that they approved of surgical abortion and 25% stated that they disapproved of it. {{ref|publicopinion2}}
28333
28334 * '''Canada''': A recent poll of [[Canadians]], conducted in April 2005 by [[Gallup]], found that 52% of those polled want abortion laws to &quot;remain the same,&quot; 20% want the laws to be &quot;less strict,&quot; and 24% would prefer that the laws become &quot;more strict.&quot; An earlier Gallup poll, from December 2001, asked, &quot;Do you think abortions should be legal under any circumstances, legal only under certain circumstances or illegal in all circumstances and in what circumstances?&quot; 32% of Canadians responded that they believe abortion should be legal in all circumstance, 52% that it should be legal in certain circumstances, and 14% that it should be legal in no circumstances. See [[Abortion in Canada]].
28335
28336 *'''Ireland''': A 1997 [[Irish Times]]/MRBI poll of the [[Republic of Ireland|Republic of Ireland's]] electorate found that 18% believe that abortion should never be permitted, 35% that one should be allowed in the event that the woman's life is threatened, 18% if her health is at risk, 28% that &quot;an abortion should be provided to those who need it,&quot; and 5% were undecided. {{ref|publicopinion3}}
28337
28338 * '''The United Kingdom''': An online [[YouGov]]/[[Daily Telegraph]] poll in August 2005 found that 30% of [[The United Kingdom| Britons]] would back a measure to reduce the legal limit for abortion to 20 weeks, 19% support a limit of 12 weeks, 9% support a limit of less than 12 weeks, and 25% support maintaining the current limit of 24 weeks. 6% responded that abortion should never be allowed while 2% said it should be permitted throughout the entirety of pregnancy. {{ref|publicopinion4}}
28339
28340 * '''The United States''': In a January 2006 [[CBS News]] poll, which asked, &quot;What is your personal feeling about abortion?&quot;, 27% said that abortion should be &quot;permitted in all cases,&quot; 15% that it should be &quot;permitted, but subject to greater restrictions than it is now,&quot; 33% that it should be &quot;permitted only in cases such as rape, incest or to save the woman's life,&quot; 17% that it should &quot;only be permitted to save the woman's life,&quot; and 5% that it should &quot;never&quot; be permitted. {{ref|publicopinion5}} A November 2005 [[Pew Research Center]] poll asked &quot;In 1973 the Roe versus Wade decision established a woman's constitutional right to an abortion, at least in the first three months of pregnancy. Would you like to see the Supreme Court completely overturn its Roe versus Wade decision, or not?&quot;, with 29% indicating they want it overturned, and 65% that they do not. {{ref|publicopinion6}}
28341
28342 ==Abortion law==
28343 {{main|Abortion law}}
28344
28345 [[Image:AbortionLawsMap.png|thumb|250px|right|International status of abortion law]]
28346 The [[Soviet Union]] (1920) and [[Iceland]] (1935) were some of the first countries to generally allow abortion. The second half of the twentieth century saw the liberalization of abortion laws in many other countries. In 1973, the [[U.S. Supreme Court]] struck down state laws banning abortion, ruling that such laws violated an inferred [[right to privacy]] in the [[U.S. Constitution]]. The [[Supreme Court of Canada]], similarly, discarded its criminal code regarding abortion in 1988, after ruling that such restrictions violated the security of person guaranteed to women under in the [[Canadian Charter of Rights and Freedoms]] in the case of [[R. v. Morgentaler]]. Canada later struck down provincial regulations of abortion in the case of [[R. v. Morgentaler (1993)]]. [[Ireland]], on the other hand, added an [[Eighth Amendment of the Constitution of Ireland| amendment]] to its [[Constitution of Ireland|Constitution]] in 1983 by popular referendum, recognizing &quot;the right to life of the unborn&quot; (see [[Abortion in Ireland]]).
28347
28348 Current laws pertaining to abortion are diverse. Religious, moral, and cultural sensibilities continue to influence abortion laws throughout the world. The [[right to life]], the right to [[liberty]], and the right to [[security of person]] are major issues of [[human rights]] that are sometimes used as justification for the existence or the absence of laws controlling abortion. Many countries in which abortion is legal require that certain criteria be met in order for an abortion to be obtained, often, but not always, using a [[trimester]]-based system to regulate the window in which abortion is still legal to perform:
28349
28350 * In the [[United States]], some states impose a 24-hour waiting period before the procedure, prescribe the distribution of information on [[fetal development]], or require that parents be contacted if their [[Minor (law)|minor]] daughter requests an abortion.
28351 * In the [[United Kingdom]], as in some other countries, two doctors must first certify that an abortion is medically or socially necessary before it can be performed.
28352 Other countries, in which abortion is illegal, will allow one to be performed in the case of [[rape]], [[incest]], or danger to the pregnant woman's life or health. A handful of nations ban abortion entirely, such as [[Chile]], [[El Salvador]], and [[Malta]].
28353
28354 ==See also==
28355 *[[Abortion in Australia]]
28356 *[[Abortion in Canada]]
28357 *[[Abortion in Ireland]]
28358 *[[Abortion in the United Kingdom]]
28359 *[[Abortion in the United States]]
28360 *[[Adoption]]
28361 *[[Partial-birth abortion]]
28362 *[[Pregnancy]]
28363 *[[Religion and abortion]]
28364 *[[Selective reduction]]
28365 *[[Self-induced abortion]]
28366 *[[Wrongful abortion]]
28367
28368 ==Sources==
28369 #{{note|miscarriage1}} &quot;[http://wuphysicians.wustl.edu/dept.asp?pageID=8&amp;ID=35 Reproductive Endocrinology and Infertility: Recurrent Pregnancy Loss (Recurrent Miscarriage)].&quot; (n.d.) Retrieved [[2006-01-18]] from Washington University School of Medicine, Department of Obstetrics and Gynecology web site.
28370 #{{note|incidence2}} Henshaw, Stanley K., Singh, Susheela, &amp; Haas, Taylor. (1999). [http://www.guttmacher.org/pubs/journals/25s3099.html The Incidence of Abortion Worldwide]. ''International Family Planning Perspectives, 25 (Supplement)'', 30–8. Retrieved [[2006-01-18]].
28371 #{{note|incidence3}} Bankole, Akinrinola, Singh, Susheela, &amp; Haas, Taylor. (1998). [http://www.guttmacher.org/pubs/journals/2411798.html Reasons Why Women Have Induced Abortions: Evidence from 27 Countries]. ''International Family Planning Perspectives, 24 (3)'', 117-127 &amp; 152. Retrieved [[2006-01-18]].
28372 #{{note|incidence4}} Finer, Lawrence B., Frohwirth, Lori F., Dauphinee, Lindsay A., Singh, Shusheela, &amp; Moore, Ann M. (2005). [http://www.guttmacher.org/pubs/journals/3711005.pdf Reasons U.S. women have abortions: quantative and qualitative perspectives]. ''Perspectives on Sexual and Reproductive Health, 37 (3),'' 110-8. Retrieved [[2006-01-18]].
28373 # {{note|unsafe1}} World Health Organization. (2004). [http://www.who.int/reproductive-health/publications/unsafe_abortion_estimates_04/estimates.pdf Unsafe abortion: global and regional estimates of unsafe abortion and associated mortality in 2000]. Retrieved [[2006-01-12]].
28374 #{{note|incidenceaustralia}} Chan, Annabelle &amp; Sage, Leonie C. (2005). Estimating Australia’s abortion rates 1985–2003 [http://www.mja.com.au/public/issues/182_09_020505/cha10829_fm.html Electronic version]. ''Medical Journal of Australia, 182 (9),''447-52. Retrieved [[2006-01-17]].
28375 #{{note|populationaustralia}} Australian Bureau of Statistics. ([[2003-02-18]]). [http://www.abs.gov.au/AUSSTATS/abs@.nsf/ProductsbyReleaseDate/C947E831266D3234CA256CD000827941?OpenDocument Population, Australian States and Territories - Electronic delivery, Sep 2002]. Retrieved [[2006-01-28]].
28376 #{{note|incidencecanada}} Statistics Canada. ([[2005-02-11]]). [http://www.statcan.ca/Daily/English/050211/d050211a.htm Induced abortions]. ''The Daily.'' Retrieved [[2006-01-17]].
28377 #{{note|populationcanada}} Statistics Canada. ([[2003-12-18]]). [http://www.statcan.ca/Daily/English/031218/d031218c.htm Demographic statistics]. ''The Daily.'' Retrieved [[2006-01-28]].
28378 #{{note|incidencedenmark}} Dansmark Statistik. ([[2004-11-25]]). [http://www.statistikbanken.dk/statbank5a/SelectVarVal/Define.asp?MainTable=FOD6&amp;PLanguage=1&amp;PXSId=0 Legal abortions by region (counties) and age]. Retrieved [[2006-01-17]].
28379 #{{note|populationdenmark}} Statistics Denmark. ([[2005-02-01]]). [http://www.dst.dk/HomeUK/Statistics/Key_indicators/Population/pop.aspx Population 1st January]. Retrieved [[2006-01-28]].
28380 #{{note|incidencefrance}} Vilain, Annick. Ministry for Employment, Social Cohesion and Housing. (2005, October). [http://www.sante.gouv.fr/drees/etude-resultat/er431/er431.pdf Les interruptions volontaires de grossesse en 2003]. ''Études et RÊsultats, 431.'' Retrieved [[2006-01-17]].
28381 #{{note|populationfrance}} National Institute for Demographic Studies. (n.d.) [http://www.ined.fr/englishversion/figures/france/population/tabpyr2004A.html Total population of France 1st January 2004]. Retrieved [[2006-01-28]].
28382 #{{note|incidencegermany}} Federal Statistical Office Germany. ([[2005-03-09]]). [http://www.destatis.de/basis/e/gesu/gesutab18.htm Abortions in Germany, 1999 to 2004, by the Land of the place of residence and ratio per 1 000 births]. Retrieved [[2006-01-17]].
28383 #{{note|populationgermany}} Federal Statistical Office Germany. ([[2006-01-24]]). [http://www.destatis.de/basis/e/bevoe/bevoetab4.htm Population, by sex and citizenship]. Retrieved [[2006-01-28]].
28384 #{{note|incidencejapan}} &quot;[http://web-japan.org/stat/stats/18WME21.html Abortions (1984-2004)].&quot; (2005). Retrieved [[2006-01-17]] from Web Japan.
28385 #{{note|populationjapan}} Statistics Bureau. (2004). [http://www.stat.go.jp/english/data/jinsui/2004np/index.htm Current Population Estimates as of October 1, 2004]. Retrieved [[2006-01-28]].
28386 #{{note|incidencenewzealand}} Ewing, Ian. Statistics New Zealand. ([[2005-06-15]]). [http://www2.stats.govt.nz/domino/external/pasfull/pasfull.nsf/web/Hot+Off+The+Press+Abortions+Year+ended+December+2004?open Abortions (Year ended December 2004)]. Retrieved [[2006-01-17]].
28387 #{{note|populationnewzealand}} Statistics New Zealand. ([[2005-05-15]]). [http://www.stats.govt.nz/analytical-reports/dem-trends-04/tables.htm Demographic Trends 2004]. Retrieved [[2006-01-28]].
28388 #{{note|incidencenorway}} Statistics Norway. ([[2005-06-08]]). [http://www.ssb.no/abort_en/tab-2005-06-08-02-en.html Induced abortions, by woman's county of residence, 1980-2004]. Retrieved [[2006-01-17]].
28389 #{{note|populationnorway}} Statistics Norway. (2005). [http://www.ssb.no/folkemengde_en/tab-2005-03-11-01-en.html Population by age, sex, marital status and foreign citizenship]. Retrieved [[2006-01-28]].
28390 #{{note|incidencesouthafrica}} Health Systems Trust. (n.d.) [http://hst.org.za/healthstats/47/data TOPs (Terminations of Pregnancy)]. Retrieved [[2006-01-17]].
28391 #{{note|populationsouthafrica}} Statistics South Africa. ([[2001-07-02]]). [http://www.statssa.gov.za/publications/P0302/P03022001.pdf Mid-year estimates 2001]. Retrieved [[2006-01-28]].
28392 #{{note|incidencesweden}} Nilsson, Emma &amp; Ollars, Birgitta. The National Board of Health and Welfare. (2005, May). [http://www.socialstyrelsen.se/NR/rdonlyres/8013473F-C14A-467E-A2F7-F3BB1A082E0C/3573/2005423.pdf Aborter 2004]. Retrieved [[2006-01-17]].
28393 #{{note|populationsweden}} Statistics Sweden. ([[2006-01-13]]). [http://www.scb.se/templates/tableOrChart____25897.asp Preliminary population statistics per month, 2003-2005]. Retrieved [[2006-01-28]].
28394 #{{note|incidenceenglandwales}} Government Statistical Service for the Department of Health. ([[2005-07-27]]). [http://www.dh.gov.uk/PublicationsAndStatistics/Publications/PublicationsStatistics/PublicationsStatisticsArticle/fs/en?CONTENT_ID=4116461&amp;chk=6T9UTA Abortion statistics, England and Wales: 2004]. Retrieved [[2006-01-17]].
28395 #{{note|incidencescotland}} ISD Scotland. ([[2005-05-24]]). [http://www.isdscotland.org/isd/info3.jsp?pContentID=1919&amp;p_applic=CCC&amp;p_service=Content.show&amp; Number of abortions performed in Scotland]. Retrieved [[2006-01-17]].
28396 #{{note|populationunitedkingdom}} National Statistics. ([[2005-08-25]]). [http://www.statistics.gov.uk/CCI/nugget.asp?ID=6 Population Estimates: UK population approaches 60 million]. Retrieved [[2006-01-28]].
28397 #{{note|incidenceunitedstates}} Finer, Lawrence B. &amp; Henshaw, Stanley K. The Alan Guttmacher Institute. ([[2005-05-18]]). [http://www.guttmacher.org/pubs/2005/05/18/ab_incidence.pdf Estimates of U.S. Abortion Incidence in 2001 and 2002]. Retrieved January 17, 2006.
28398 #{{note|populationunitedstates}} U.S. Census Bureau. ([[2006-01-04]]). [http://www.census.gov/prod/www/statistical-abstract.html Statistical Abstract of the United States]. Retrieved [[2006-01-28]].
28399 #{{note|surgicalabortion1}} World Health Organization. (2003). [http://www.who.int/reproductive-health/impac/Procedures/Dilatetion_P61_P63.html Managing complications in pregnancy and childbirth: a guide for midwives and doctors]. Retrieved [[2006-02-24]].
28400 #{{note|surgicalabortion2}} Strauss, Lilo T., Herndon, Joy, Chang, Jeani, Parker, Wilda Y., Bowens, Sonya V., Berg, Cynthia J. Centers for Disease Control and Prevention. ([[2005-11-15]]). [http://www.cdc.gov/mmwr/preview/mmwrhtml/ss5407a1.htm Abortion Surveillance - United States, 2002]. ''Morbidity and Mortality Weekly Report''. Retrieved [[2006-02-20]].
28401 # {{note|othermethods1}} Ciganda, C., &amp; Laborde, A. (2003). [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=12807304&amp;query_hl=9 Herbal infusions used for induced abortion]. ''J Toxicol Clin Toxicol, 41(3),'' 235-9. Retrieved [[2006-01-25]].
28402 # {{note|othermethods2}} Education for Choice. ([[2005-05-06]]). [http://www.efc.org.uk/Foryoungpeople/Factsaboutabortion/Unsafeabortion Unsafe abortion]. Retrieved [[2006-01-11]].
28403 # {{note|othermethods3}} Potts, Malcolm, &amp; Campbell, Martha. (2002). [http://big.berkeley.edu/ifplp.history.pdf History of contraception]. ''Gynecology and Obstetrics'', vol. 6, chp. 8. Retrieved [[2005-01-25]].
28404 # {{note|healtheffects1}} Cates W., Jr, &amp; Tietze C. (1978). Standardized mortality rates associated with legal abortion: United States, 1972-1975 [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=639966&amp;dopt=Abstract Electronic version]. ''Family Planning Perspectives, 10 (2)'', 109-12. Retrieved [[2006-01-28]].
28405 # {{note|mortality1}} Department of Health. (1998). ''[http://www.archive.official-documents.co.uk/document/doh/wmd/wmd-hm.htm Why Mothers Die: Report on Confidential Enquiries into Maternal Deaths in the United Kingdom 1994–1996].'' London: The Stationery Office. Retrieved [[2006-01-11]].
28406 # {{note|mortality2}} Elam-Evans, Laurie. D., Strauss, Lilo T., Herndon, Joy, Parker, Wilda Y., Bowens, Sonya V., Zane, Suzanne, ''et al.'' Centers for Disease Control and Prevention. ([[2003-11-23]]). ''[http://www.cdc.gov/mmwr/preview/mmwrhtml/ss5212a1.htm Abortion Surveillance - United States, 2000].'' Morbidity and Mortality Weekly Report. Retrieved [[2006-01-11]].
28407 #{{note|failed}}Rogers, Lois. ([[2005-11-27]]). &quot;[http://www.timesonline.co.uk/article/0,,2087-1892696,00.html Fifty babies a year are alive after abortion].&quot; ''The Sunday Times.'' Retrieved [[2006-01-11]].
28408 # {{note|abc1}} [http://www.etters.net/cancerTP.htm#3 American abortion-breast cancer studies]
28409 # {{note|abc2}} Melbye M., Wohlfahrt, J., Olsen, J.H., Frisch, M., Westergaard, T., Helweg-Larsen, K., ''et al.'' (1997). Induced abortion and the risk of breast cancer [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=8988884 Electronic version]. ''New England Journal of Medicine, 336,'' 81-5. Retrieved [[2006-01-11]] from PubMed.
28410 # {{note|abc3}} National Cancer Institute. ([[2003-03-04]]). [http://www.cancer.gov/cancerinfo/ere-workshop-report Summary Report: Early Reproductive Events and Breast Cancer Workshop]. Retrieved [[2006-01-11]].
28411 # {{note|abc4}} National Cancer Institute. (2003). [http://www.cancer.gov/cancer_information/doc.aspx?viewid=15e3f2d5-5cdd-4697-a2ba-f3388d732642 Minority Dissenting Comment Regarding Early Reproductive Events and Breast Cancer Workshop]. Retrieved [[2006-01-11]].
28412 # {{note|pain1}} Parliamentary Office of Science and Technology. (1997). ''[http://www.parliament.uk/post/pn094.pdf Fetal Awareness].'' Retrieved [[2006-01-11]].
28413 # {{note|Emory}} Mulligan LaRossa, Maureen, &amp; Carter, Sheena L. ([[2005-02-07]]). ''Understanding How the Brain Develops.'' Retrieved [[2006-01-11]], from Emory University, Department of Pediatrics web site: [http://www.pediatrics.emory.edu/neonatology/dpc/brain.htm].
28414 # {{note|pain2}} Anand, K., Phil, D., &amp; Hickey, P.R. (1987). Pain and its effects on the human neonate and fetus. ''New England Journal of Medicine, 316 (21),'' 1321-9. Retrieved [[2006-01-11]] from [http://www.cirp.org/library/pain/anand/ The Circumcision Reference Library].
28415 # {{note|mental1}} Schmiege, S. &amp; Russo, N.F. (2005). Depression and unwanted first pregnancy: longitudinal cohort study [http://bmj.bmjjournals.com/cgi/content/full/331/7528/1303 Electronic version] . ''British Medical Journal, 331 (7528),'' 1303. Retrieved [[2006-01-11]].
28416 # {{note|mental2}} Gissler, M., Hemminki, E., &amp; Lonnqvist, J. (1996). Suicides after pregnancy in Finland, 1987-94: register linkage study [http://bmj.bmjjournals.com/cgi/content/full/313/7070/1431 Electronic version]. ''British Medical Journal, 313,'' 1431-4. Retrieved [[2006-01-11]].
28417 # {{note|mental3}} American Psychological Association. (2005). [http://web.archive.org/web/20050304001316/http://www.apa.org/ppo/issues/womenabortfacts.html APA Briefing Paper on The Impact of Abortion on Women]. Retrieved [[2006-01-15]] from [http://www.archive.org The Internet Archive].
28418 # {{note|mental4}} ''[http://www.medicinenet.com/script/main/art.asp?articlekey=619 Depression Risk Increased After Miscarriage].'' ([[2002-04-01]]). Retrieved [[2006-01-11]].
28419 # {{note|history1}} Lefkowitz, Mary R. &amp; Fant, Maureen R. (1992). ''[http://www.stoa.org/diotima/anthology/wlgr/ Women's life in Greece &amp; Rome: a source book in translation].'' Baltimore, MD: John Hopkins University Press. Retrieved [[2006-01-11]].
28420 # {{note|history2}} ''[http://users.telerama.com/~jdehullu/abortion/abhist.htm Histories of Abortion].'' (n.d.) Retrieved [[2006-01-11]].
28421 # {{note|crimerate1}} Donohue, John J. and Levitt, Steven D. (2001). [http://ssrn.com/abstract=174508 The impact of legalized abortion on crime].''Quarterly Journal of Economics.'' Retrieved [[2006-02-11]].
28422 # {{note|crimerate2}} Foote, Christopher L. and Goetz, Christopher F. (2005). [http://www.bos.frb.org/economic/wp/wp2005/wp0515.pdf Testing economic hypotheses with state-level data: a comment on Donohue and Levitt (2001)]. ''Working Papers, 05-15''. Retrieved [[2006-02-11]].
28423 # {{note|crimerate3}} Donohue, John J. and Levitt, Steven D. (2006). Measurement error, legalized abortion, and the decline in crime: a response to Foote and Goetz (2005). Retrieved [[2006-02-17]], from University of Chicago, Initiative on Chicago Price Theory web site: [http://pricetheory.uchicago.edu/levitt/Papers/ResponseToFooteGoetz2006.pdf http://pricetheory.uchicago.edu/levitt/Papers/ResponseToFooteGoetz2006.pdf].
28424 # {{note|crimerate4}} &quot;Crime-Abortion Study Continues to Draw Pro-life Backlash.&quot; ([[1999-08-11]]). ''The Pro-Life Infonet.'' Retrieved [[2006-02-17]] from [http://ohioroundtable.org/library/articles/life/crimeabortion.html Ohio Roundtable Online Library].
28425 # {{note|crimerate5}} &quot;[http://www.americancatholic.org/Messenger/Jan2000/Editorial.asp Abortion and the Lower Crime Rate].&quot; (2000, January). ''St. Anthony Messenger.'' Retrieved [[2006-02-17]].
28426 # {{note|sexselective1}} Banister, Judith. ([[1999-03-16]]). [http://www.census.gov/ipc/www/ebspr96a.html Son Preference in Asia - Report of a Symposium]. Retrieved [[2006-01-12]].
28427 # {{note|sexselective2}} Mutharayappa, Rangamuthia, Kim Choe, Minja, Arnold, Fred, &amp; Roy, T.K. (1997). [http://www2.eastwestcenter.org/pop/misc/subj-3.pdf Son Preferences and Its Effect on Fertility in India]. ''National Family Health Survey Subject Reports, Number 3.'' Retrieved [[2006-01-12]].
28428 # {{note|sexselective3}} Patel, Rita. (1996). The practice of sex selective abortion in India: may you be the mother of a hundred sons. Retrieved [[2006-01-11]], from University of North Carolina, University Center for International Studies web site: [http://www.ucis.unc.edu/resources/pubs/carolina/abortion.pdf http://www.ucis.unc.edu/resources/pubs/carolina/abortion.pdf].
28429 # {{note|sexselective4}} Sudha, S., &amp; Irudaya Rajan, S. (1999). [http://www.hsph.harvard.edu/organizations/healthnet/gender/docs/sudha.html Female Demographic Disadvantage in India 1981-1991: Sex Selective Abortion, Female Infanticide and Excess Female Child Mortality]. Retrieved [[2006-01-12]]
28430 # {{note|india1}} Reaney, Patricia. ([[2006-01-09]]). &quot;[http://www.alertnet.org/thenews/newsdesk/L06779563.htm Selective abortion blamed for India's missing girls].&quot; ''Reuters AlertNet.'' Retrieved [[2006-01-09]].
28431 # {{note|sexselective5}} Mudur, Ganapati. (2002). &quot;[http://bmj.bmjjournals.com/cgi/content/abridged/324/7334/385/b India plans new legislation to prevent sex selection].&quot; ''British Medical Journal: News Roundup.'' Retrieved [[2006-01-12]].
28432 # {{note|sexselective6}} Graham, Maureen J., Larsen, Ulla, &amp; Xu, Xiping. (1998). [http://www.agi-usa.org/pubs/journals/2407298.html Son Preference in Anhui Province, China]. ''International Family Planning Perspectives, 24 (2).'' Retrieved [[2006-01-12]].
28433 # {{note|sexselective7}} Plafker, Ted. ([[2002-05-25]]). [http://bmj.bmjjournals.com/cgi/content/full/324/7348/1233/a?maxtoshow=&amp;HITS=10&amp;hits=10&amp;RESULTFORMAT=&amp;fulltext Sex selection in China sees 117 boys born for every 100 girls]. ''British Medical Journal: News Roundup.'' Retrieved [[2006-01-12]].
28434 # {{note|sexselective8}} &quot;[http://www.china.org.cn/english/2003/Mar/59194.htm China Bans Sex-selection Abortion].&quot; ([[2002-03-22]]). ''Xinhua News Agency.'' Retrieved [[2006-01-12]].
28435 # {{note|unsafe2}} Salter, C., Johnson, H.B., and Hengen, N. (1997). [http://www.infoforhealth.org/pr/l10edsum.shtml Care for postabortion complications: saving women's lives]. ''Population Reports, 25 (1).'' Retrieved [[2006-02-22]].
28436 # {{note|unsafe3}} World Health Organization. (1998). [http://www.who.int/docstore/world-health-day/en/pages1998/whd98_10.html Address Unsafe Abortion]. Retrieved [[2006-03-01]].
28437 # {{note|abortiondebate1}} The Pew Research Center for the People and the Press. ([[2005-11-02]]). &quot;[http://people-press.org/commentary/display.php3?AnalysisID=122 Public Opinion Supports Alito on Spousal Notification Even as It Favors Roe v. Wade].&quot; ''Pew Research Center Pollwatch.'' Retrieved [[2006-03-01]].
28438 # {{note|publicopinion1}} Grattan, Michelle. ([[2005-02-16]]). &quot;[http://www.theage.com.au/news/National/Poll-backs-abortion-laws/2005/02/15/1108230007300.html Poll backs abortion laws].&quot; ''The Age.'' Retrieved [[2006-01-11]].
28439 # {{note|publicopinion2}} Roy Morgan International. ([[1998-03-03]]). [http://www.roymorgan.com/news/polls/1998/3058 Almost Two-Thirds Of Australians Approve Of Abortion]. Retrieved [[2006-01-11]].
28440 # {{note|publicopinion3}} Kennedy, Geraldine. ([[1997-12-11]]). &quot;[http://www.ireland.com/newspaper/front/1997/1211/archive.97121100003.html 77% say limited abortion right should be provided].&quot; ''The Irish Times.'' Retrieved [[2006-01-11]].
28441 # {{note|publicopinion4}} YouGov. ([[2005-07-30]]). [http://www.yougov.com/archives/pdf/TEL050101042_1.pdf YouGov/Daily Telegraph Survey Results]. Retrieved [[2006-01-11]].
28442 # {{note|publicopinion5}} ''[http://www.pollingreport.com/abortion.htm The Polling Report].'' (2006). Retrieved [[2006-01-11]].
28443 # {{note|publicopinion6}} The Pew Forum on Religion &amp; Public Life. ([[2005-11-29]]). [http://pewforum.org/docs/index.php?DocID=127 Abortion Seen as Most Important Issue for Supreme Court]. Retrieved [[2006-01-12]].
28444
28445 ==External links==
28446 {{wikiquote}}
28447 * [http://www.johnstonsarchive.net/policy/abortion Abortion Statistics and Other Data]
28448 *[http://annualreview.law.harvard.edu/population/abortion/abortionlaws.htm Abortion Laws of the World]
28449 * [http://www.un.org/esa/population/publications/abortion Abortion Policies: A Global Review]
28450
28451 &lt;!-- HELP KEEP THIS ARTICLE SHORT AND SIMPLE: DO NOT ADD MORE LINKS TO &quot;BIASED&quot; SECTION. ADD THEM TO WHICHEVER SUB-ARTICLE WOULD BE APPROPRIATE INSTEAD. ALSO, PLEASE UNDERSTAND THAT SITES CONTAINING SHOCK MATERIAL SHALL, IN NO CASE, BE ACCEPTED. THANKS! !--&gt;
28452 '''The following links may be biased:'''
28453
28454 * [http://www.abortion.com/ Abortion.com]
28455 * [http://agi-usa.org/ The Alan Guttmacher Institute]
28456 * [http://www.all.org/ American Life League]
28457 * [http://www.care-net.org/ CareNet]
28458 * [http://justfacts.com/abortion.htm Just Facts: Abortion]
28459 * [http://www.plannedparenthood.com Planned Parenthood]
28460
28461
28462 [[Category:Abortion|*]]
28463
28464 [[bg:АйОŅ€Ņ‚]]
28465 [[ca:Avortament]]
28466 [[cs:Interrupce]]
28467 [[da:Provokeret abort]]
28468 [[de:Schwangerschaftsabbruch]]
28469 [[es:Aborto]]
28470 [[eo:Aborto]]
28471 [[fr:Interruption volontaire de grossesse]]
28472 [[id:Gugur kandungan]]
28473 [[ia:Aborto]]
28474 [[it:Aborto]]
28475 [[he:הפלה מלאכו×Ēי×Ē]]
28476 [[lt:Abortas]]
28477 [[hu:MagzatelhajtÃĄs]]
28478 [[nl:Abortus]]
28479 [[ja:åĻŠå¨ ä¸­įĩļ]]
28480 [[no:Abort]]
28481 [[nn:Abort]]
28482 [[pl:Aborcja]]
28483 [[pt:InterrupçÃŖo da gravidez]]
28484 [[ru:АйОŅ€Ņ‚]]
28485 [[simple:Abortion]]
28486 [[sr:АйОŅ€Ņ‚ŅƒŅ]]
28487 [[fi:Abortti]]
28488 [[sv:Abort]]
28489 [[tl:Aborsiyon]]
28490 [[tr:KÃŧrtaj]]
28491 [[uk:АйОŅ€Ņ‚]]
28492 [[zh:å •čƒŽ]]
28493 [[pam:Abortion]]</text>
28494 </revision>
28495 </page>
28496 <page>
28497 <title>Abstract (law)</title>
28498 <id>766</id>
28499 <revision>
28500 <id>35547123</id>
28501 <timestamp>2006-01-17T15:28:03Z</timestamp>
28502 <contributor>
28503 <username>Edcolins</username>
28504 <id>51336</id>
28505 </contributor>
28506 <comment>moved law-related part to proper article</comment>
28507 <text xml:space="preserve">In [[law]], an '''abstract''' is a brief statement that contains the most important points of a long [[legal document]] or of several related legal papers.
28508
28509 ==Abstraction of Title==
28510
28511 The Abstraction of Title, used in [[real estate]] transactions, is the more common form of abstract. An abstract of title lists all the owners of a piece of land, a house, or a building before it came into possession of the present owner. The abstract also records all [[deed]]s, [[will (law)|wills]], [[mortgage]]s, and other documents that affect [[ownership]] of the property. An abstract describes a chain of transfers from owner to owner and any agreements by former owners that are binding on later owners.
28512
28513 ==Clear Title==
28514
28515 A Clear Title to property is one that clearly states any obligation in the deed to the property. It reveals no breaks in the chain of legal ownership. After the records of the property have been traced and the title has been found clear, it is sometimes guaranteed, or insured. In a few states, a more efficient system of insuring title real properties provides for registration of a clear title with public authorities. After this is accomplished, no abstract of title is necessary.
28516
28517 == Patent law ==
28518
28519 In the context of [[patent]] law and specifically in [[prior art]] searches, searching through abstracts is a common way to find relevant prior art document to question to [[novelty (patent)|novelty]] or [[Inventive step and non-obviousness|inventive step]] (or [[Inventive step and non-obviousness|non-obviousness]] in [[United States]] patent law) of an invention.
28520
28521 ==References==
28522 * [[World Book]] encyclopedia 1988
28523
28524 ==See also==
28525 *[[Academic conference]]
28526
28527 == External links ==
28528 * [http://www.wipo.int/pct/en/texts/rules/r8.htm Rule 8 PCT], defining the requirements regarding the abstract in an international application filed under [[Patent Cooperation Treaty]] (PCT)
28529 * [http://www.european-patent-office.org/legal/epc/e/ar85.html Article 85] and [http://www.european-patent-office.org/legal/epc/e/r33.html Rule 33 EPC], defining the abstract-related requirements in a [[European Patent Convention|European patent application]]
28530
28531 {{law-stub}}
28532
28533 [[Category:Legal research]]</text>
28534 </revision>
28535 </page>
28536 <page>
28537 <title>A.E. van Vogt</title>
28538 <id>767</id>
28539 <revision>
28540 <id>15899284</id>
28541 <timestamp>2002-02-25T15:51:15Z</timestamp>
28542 <contributor>
28543 <ip>Conversion script</ip>
28544 </contributor>
28545 <minor />
28546 <comment>Automated conversion</comment>
28547 <text xml:space="preserve">#REDIRECT [[A. E. van Vogt]]
28548 </text>
28549 </revision>
28550 </page>
28551 <page>
28552 <title>AOLamer</title>
28553 <id>768</id>
28554 <revision>
28555 <id>36881334</id>
28556 <timestamp>2006-01-27T01:59:20Z</timestamp>
28557 <contributor>
28558 <username>Bobblewik</username>
28559 <id>51235</id>
28560 </contributor>
28561 <minor />
28562 <comment>reduce linking to date elements</comment>
28563 <text xml:space="preserve">:''See also:'' [[Internet troll]]
28564 An '''AOLamer''' or AOL Lamer is a person using [[AOL]] that posts [[flamebait]] or other [[off-topic]] [[message]]s in a [[newsgroup]] in order to disrupt the newsgroup.
28565
28566 During the early 1990s, many regular non-AOL internet newsgroup users routinely killed all messages coming from AOL as many of the messages coming from AOL were non-informative.
28567
28568 In addition, the term '''AOLamer''' is often used as a derogatory term for AOL subscribers by users of other internet service providers, who view AOL as a provider associated with people who know little about computers.
28569
28570 [[Category:America Online]]
28571 [[Category:Internet trolling]]
28572 [[fr:AOLamer]]
28573 {{compu-stub}}</text>
28574 </revision>
28575 </page>
28576 <page>
28577 <title>Alan Alda</title>
28578 <id>769</id>
28579 <revision>
28580 <id>41784133</id>
28581 <timestamp>2006-03-01T18:55:12Z</timestamp>
28582 <contributor>
28583 <ip>140.247.179.110</ip>
28584 </contributor>
28585 <comment>/* After ''M*A*S*H'' */</comment>
28586 <text xml:space="preserve">[[Image:Hawkeyepierce.gif|thumb|200px|right|Alan Alda as Benjamin Franklin &quot;Hawkeye&quot; Pierce]]
28587 '''Alan Alda''' (born [[January 28]], [[1936]] as '''Alphonso Joseph D'Abruzzo''') is an [[United States|American]] [[actor]], [[writer]], [[film director|director]] and sometimes [[politics|political]] activist.
28588
28589 He is most famous for his role as [[Hawkeye Pierce]] in the [[television]] series ''[[M*A*S*H (TV series)|M*A*S*H]]''. In the [[1970s]] and [[1980s]] he was viewed as the archetypal &quot;sensitive male&quot;, though in recent years he has appeared in roles which counter that image.
28590
28591 ==Family and early life==
28592 Alda was born in [[New York City]]. His [[Italian American|Italian-American]] father, [[Robert Alda]] (born Alphonso Giuseppe Giovanni Roberto D'Abruzzo), was a successful actor, and his mother [[Joan Brown]] was crowned &quot;Miss New York&quot; in a [[beauty pageant]]. The adopted surname &quot;Alda&quot; is a contraction of &quot;'''AL'''phonso&quot; and &quot;'''D'A'''bruzzo&quot;.
28593
28594 When Alan Alda was growing up, his parents divorced.
28595
28596 Alan Alda contracted [[polio]] when he was seven years old, which kept him bedridden for two years as he received treatments.
28597
28598 Alan Alda's half-brother, [[Anthony Alda]] was christened '''Antonio D'Abruzzo''' on the 9th of [[December]] [[1956]].
28599
28600 He received his [[bachelor's degree]] from [[Fordham University]] in [[1956]]. During his junior year, he studied in [[Europe]] where he acted in a play in [[Rome]] and performed with his father on television in [[Amsterdam]]. After graduation, he joined the [[United States Army|U.S. Army Reserve]] and served a six-month tour of duty as a gunnery officer in Korea following the [[Korean War]]. A year after graduation, he married Arlene Weiss, with whom he has three daughters: Eve, Elizabeth and Beatrice. [[Arlene Alda]] is a well known photographer, author and clarinettist.
28601
28602 Raised as a devout [[Roman Catholic Church|Catholic]], he has since left the church but continues to celebrate religious holidays and events. His specific religious beliefs are difficult to define.
28603
28604 He is also an activist for [[feminism|feminist]] causes, and has been for many years.
28605
28606 ==Acting career, fame, and ''M*A*S*H''==
28607 Alda began his career in the [[1950s]] as a member of the [[Compass Players]] comedy revue.
28608
28609 In the eleven years (72-83) he starred in ''[[M*A*S*H (TV series)|M*A*S*H]]'', he was nominated for 21 [[Emmy Awards]] winning five. He wrote (or co-wrote) twenty episodes, and directed thirty episodes. When he won his first Emmy Award for writing, he was so happy that he performed a [[cartwheel]] before running up to the stage to accept the award. He also was the first person to win Emmy Awards for acting, writing, and directing for the same series. Interestingly enough, the late [[H. Richard Hornberger|Richard Hooker]], who wrote the novel on which ''M*A*S*H'' was based, did not like Alan Alda's portrayal of Hawkeye Pierce (Hooker had based Hawkeye on himself), though Hooker didn't care for the show in general.
28610
28611 ==After ''M*A*S*H''==
28612 Alda's prominence in the enormously successful ''M*A*S*H'' gave him a platform to speak out on political topics, and he has been a strong and vocal supporter of [[women's rights]]. As such, he has been something of a [[boogeyman]] for some political [[social conservative]]s who disagree with his views.
28613
28614 He has also appeared in at least two TV commercials. Both of these were in the small-computer industry, first for [[Atari]] and later, with the rest of the ''M*A*S*H'' cast, for [[International Business Machines|IBM]]'s [[PS/2]] product line with [[Micro Channel architecture|MicroChannel architecture]].
28615
28616 [[Image:Alan_Alda.jpg|thumb|left|Alan Alda as Senator Vinick.]]
28617 Alan Alda has also played [[Nobel Prize]]-winning physicist [[Richard Feynman]] in the play [[QED (play)|''QED'']], which has only one other character. Although [[Peter Parnell]] wrote the play, Alda both produced and inspired it. Alda has also appeared frequently in the films of [[Woody Allen]], and he has been a guest star five times on ''[[ER (TV series)|ER]]'', playing Dr. Gabriel Lawrence.
28618
28619 As of [[2004 in television|2004]], Alda is a regular cast member on the [[National Broadcasting Company|NBC]] program ''[[The West Wing (television)|The West Wing]]'', portraying [[Republican Party (United States)|Republican]] [[United States Senate|U.S. Senator]] and presidential hopeful [[Arnold Vinick]]. He made his premiere in the sixth season's tenth episode, &quot;In The Room&quot;, and was added to the opening credits with the thirteenth episode, &quot;King Corn.&quot;
28620
28621 Throughout his career, he has been nominated for the Emmy Award 31 times and the [[Tony Award]] twice, and has won seven [[People's Choice Award]]s, six [[Golden Globe]] awards, and three [[Director's Guild of America]] awards. However, it was not until [[2004]], after a long acting career, that Alda received his first nomination for an Academy Award. This was the [[Academy Award for Best Supporting Actor|Best Supporting Actor]] nomination for his role as Senator [[Ralph Owen Brewster]] in [[Martin Scorsese]]'s film ''[[The Aviator]]''.
28622
28623 In the spring of 2005, Alda starred as Shelly Levene in the Tony Award-winning Broadway revival of [[David Mamet]]'s ''[[Glengarry Glen Ross]],'' for which he received a Tony Award nomination for Best Featured Actor in a Play.
28624
28625 It has become quite normal for Alda in his later roles to have some reference to his early work in ''M*A*S*H''. For instance, both the senator he played in ''The Aviator'' and Hawkeye Pierce came from [[Maine]]. In a line on ''ER'', his character mentions that he uses a surgical technique he picked up in a &quot;military hospital&quot;. The same character also undergoes a mental acuity test where he has to identify pictures of objects. He sees a funnel and identifies it as a martini glass without the base (Hawkeye Pierce was very fond of martinis). Alda's ''West Wing'' character has also made at least one reference to [[Korea]] when he said, &quot;I could take these people to the [[Korean Demilitarized Zone|DMZ]] and it still wouldn't take their minds off ethanol and abortion&quot;).
28626
28627 In 2005, Alda published his first round of memoirs, ''Never Have Your Dog Stuffed: and Other Things I've Learned'', published by [[Random House]] (ISBN 1400064090). Among other stories, he recalls his [[intestine]]s becoming strangulated while on location in [[Chile]] for his PBS show ''[[Scientific American Frontiers]]''. He also talks about his mother's battle with [[schizophrenia]].
28628
28629 ==Filmography==
28630 *''[[Gone Are the Days!]]'' ([[1963]])
28631 *''[[Paper Lion]]'' ([[1968]])
28632 *''[[The Extraordinary Seaman]]'' ([[1969]])
28633 *''[[Jenny (TV movie)|Jenny]]'' ([[1970]])
28634 *''[[The Moonshine War]]'' ([[1970]])
28635 *''[[The Mephisto Waltz]]'' ([[1971]])
28636 *''[[To Kill a Clown]]'' ([[1972]])
28637 *''[[The Glass House]]'' ([[1972]])
28638 *''[[Kill Me If You Can(TV)]]'' ([[1977]])
28639 *''[[Same Time, Next Year]]'' ([[1978]])
28640 *''[[California Suite]]'' ([[1978]])
28641 *''[[The Seduction of Joe Tynan]]'' ([[1979]]) (also writer)
28642 *''[[The Four Seasons (movie)]]'' ([[1981]]) (also director and writer)
28643 *''[[Sweet Liberty]]'' ([[1986]]) (also director and writer)
28644 *''[[A New Life (1988 film)|A New Life]]'' ([[1988]]) (also director and writer)
28645 *''[[Crimes and Misdemeanors]]'' ([[1989]])
28646 *''[[Betsy's Wedding]]'' ([[1990]]) (also director and writer)
28647 *''[[Whispers in the Dark]]'' ([[1992]])
28648 *''[[Manhattan Murder Mystery]]'' ([[1993]])
28649 *''[[Canadian Bacon]]'' ([[1995]])
28650 *''[[Flirting with Disaster]]'' ([[1996]])
28651 *''[[Everyone Says I Love You]]'' ([[1996]])
28652 *''[[Murder at 1600]]'' ([[1997]])
28653 *''[[Mad City]]'' ([[1997]])
28654 *''[[The Object of My Affection]]'' ([[1998]])
28655 *''[[Keepers of the Frame]]'' ([[1999]]) (documentary)
28656 *''[[What Women Want]]'' ([[2000]])
28657 *''[[The Aviator]]'' (2004)
28658
28659 ==External links==
28660 *[http://www.pbs.org/saf/alan_bio2.htm Bio on ''Scientific American Frontiers'']
28661 *[http://helmi.home.pages.at/mash/english/cast/AlanAlda.html Comprehensive bio]
28662 *[http://www.military.com/Careers/Content1?file=trans_alan_alda.htm&amp;area=Content Military Service]
28663 *[http://www.geocities.com/TelevisionCity/5576/Alda.htm GeoCities fan site page]
28664 * {{imdb name|id=0000257|name=Alan Alda}}
28665 *[http://www.npr.org/templates/rundowns/rundown.php?prgId=13&amp;prgDate=21-Sep-05 Interview with Alda] on [[National Public Radio|NPR]]'s ''[[Fresh Air]]'' (September 21, 2005)
28666 *[http://www.alanaldabook.com/ Never Have Your Dog Stuffed] web site
28667 *[http://www.celebritypro.com/news/alan_alda Daily Alan Alda News]
28668
28669
28670
28671 [[Category:1936 births|Alda, Alan]]
28672 [[Category:Actors and actresses appearing on ER|Alda, Alan]]
28673 [[Category:Actors and actresses appearing on The West Wing|Alda, Alan]]
28674 [[Category:American film actors|Alda, Alan]]
28675 [[Category:American television actors|Alda, Alan]]
28676 [[Category:Best Supporting Actor Oscar Nominee|Alda, Alan]]&lt;!-- The Aviator --&gt;
28677 [[Category:Hollywood Walk of Fame|Alda, Alan]]
28678 [[Category:Italian-Americans|Alda, Alan]]
28679 [[Category:M*A*S*H actors|Alda, Alan]]
28680 [[Category:People from New York City|Alda, Alan]]
28681 [[Category:Roman Catholics|Alda, Alan]]
28682 [[Category:Worst Supporting Actor Razzie Nominee|Alda, Alan]]
28683 [[Category:Living people|Alda, Alan]]
28684 [[Category:United States Army officers|Alda, Alan]]
28685
28686 [[da:Alan Alda]]
28687 [[de:Alan Alda]]
28688 [[es:Alan Alda]]
28689 [[fr:Alan Alda]]
28690 [[hu:Alda]]
28691 [[nl:Alan Alda]]
28692 [[no:Alan Alda]]
28693 [[pl:Alan Alda]]
28694 [[simple:Alan Alda]]
28695 [[sv:Alan Alda]]</text>
28696 </revision>
28697 </page>
28698 <page>
28699 <title>American football</title>
28700 <id>770</id>
28701 <revision>
28702 <id>42083877</id>
28703 <timestamp>2006-03-03T18:44:51Z</timestamp>
28704 <contributor>
28705 <username>Gwernol</username>
28706 <id>266416</id>
28707 </contributor>
28708 <comment>Revert to revision 42048568 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
28709 <text xml:space="preserve">&lt;!-- NOTE TO EDITORS -- Remember, this is an *introductory* article to American football. It exists to give people who know little or nothing about the sport a basic understanding of the game. Information that does not fall under that description should go under [[American-football strategy]], [[American football rules]], etc. --&gt;
28710 [[Image:Wilson American football.jpg|thumb|250px|right|The ball used in American football has a pointed [[oval]] or [[vesica piscis]] shape, and usually has a large set of stitches along one side.]]
28711 {{about|the sport|the indie rock band|[[American Football (band)]]}}
28712 '''American football''', known in the [[United States]] &lt;!--but not Canada; what they call &quot;football&quot;is actually the similar (but NOT identical) sport of Canadian football--&gt; simply as '''football''', is a competitive team [[sport]]. The object of the game is to advance the football towards the opposing team's [[end zone]] and score points. The ball can be advanced by carrying the ball, or by throwing or handing it from one teammate to the other. Points can be scored in a variety of ways, including carrying the ball over the goal line, throwing the ball to another player past the goal line or [[placekicker|kicking]] it through the goal posts. The winner is the team with the most points when the time expires.
28713
28714 Outside of the [[United States]] and a few other countries such as [[American Samoa]], the sport is usually referred to as ''American football'' (or sometimes as [[gridiron]]) to differentiate it from other football games, especially [[football (soccer)|association football (soccer)]] and [[rugby football]]. American football evolved as a separate sport from rugby football in the late 19th century. [[Arena football]] is a variant of American football. In [[Canada]], the unqualified term &quot;football&quot; typically refers to [[Canadian football]], a game which is a close relative of American football but different in several respects.
28715
28716 ==Popularity==
28717 Since the 1960s, football has surpassed [[baseball]] as the most popular [[spectator sport]] in the United States. The 32-team [[National Football League]] (NFL) is the most popular and only [[major professional sports league|major]] professional American football [[Sports league|league]]. Its championship game, the [[Super Bowl]], is watched by nearly half of US television households, and is also televised in over 150 other countries. ''[[Super Bowl Sunday]]'' has become an annual ritual in late January or early February. Football is also the most watched sport on [[television]] in the US.
28718
28719 The NFL also operates a developmental league, [[NFL Europe]], with 6 teams based in European cities.
28720
28721 [[Image:College_Football_CSU_AF.jpg|thumb|left|250px|A [[Colorado State University]] player runs with the ball as an [[United States Air Force Academy|Air Force Academy]] player lines up a tackle.]]
28722 &lt;!-- Possible image copyright issue
28723 [[Image:American football tackle.jpg|thumb|250px|American football is a physically demanding sport.]]
28724 --&gt;
28725 [[College football]] is also extremely popular throughout the U.S., especially in markets not served by an NFL team. Several college football stadiums seat more than 100,000 fans -- which regularly sell out. Even [[high school]] football games can attract five-figure crowds, especially in [[hotbed]]s like Western [[Pennsylvania]], [[Nebraska]], [[Florida]], [[Georgia (U.S. state)|Georgia]] and most especially [[Texas]], [[Ohio]], and [[California]]. The weekly autumn ritual of college and high-school football -- which includes [[marching band]]s, [[cheerleading|cheerleaders]] and parties (including the ubiquitous [[tailgate party]]) -- is an important part of the culture in much of [[small-town|smalltown America]]. It is a long-standing tradition in the United States (though not universally observed) that high school football games are played on [[Friday]], college games on [[Saturday]], and professional games on [[Sunday]] (with an additional professional game on [[Monday]] nights--see ''[[Monday Night Football]]''). It is often said of an outstanding college football player that he is likely to &quot;be playing on Sundays one day&quot;, meaning that he is a good pro prospect.
28726
28727 Certain fall and winter [[holiday]]s--most notably [[Thanksgiving]], [[Christmas]], and [[New Years' Day]]--have traditional football games associated with them.
28728
28729 Football is also played recreationally by amateur club and youth teams (e.g., the [[Pop Warner]] little-league programs). There are also many &quot;semi-pro&quot; teams in leagues where the players are paid to play, but at a small enough salary that they generally must also hold a full-time job.
28730
28731 Pro football is played only in the United States and in the above-mentioned NFL Europe league. The sport is popular as an amateur activity in [[Mexico]] and [[American Samoa]] and to a lesser extent in [[Japan]], [[Europe]] and [[Australia]].
28732
28733 A very similar sport, [[Canadian football]], is widely played in [[Canada]].
28734
28735 Organized football is played almost exclusively by men and boys, although a few amateur and semi-professional women's leagues have begun play in recent years.
28736
28737 ==The rules of American football==
28738 {{See also|American football rules}}
28739 &lt;!--This section should only be a basic tutorial. Lengthy content should go to [[American football rules]]--&gt;
28740
28741 The object of American football is to score more points than the opposing team within a set time limit.
28742
28743 ===Field and players===
28744 [[Image:AmFBfield.png|right|frame|The numbers on the field indicate the number of [[yard]]s to the nearest end zone.]]
28745
28746 The field is often called the ''gridiron'' because the markings on the field resemble a [[Grill (cooking)|grill]]. The game is played on a rectangular field 120 [[yard]]s (110 [[metre]]s) long by 53 1/3 yards (49 metres) wide. The longer boundary lines are ''sidelines'', while the shorter boundary lines are ''end lines''. Near each end of the field is a ''goal line''; they are 100 yards apart. A scoring area called an ''[[end zone]]'' extends 10 yards beyond each goal line to each end line.
28747
28748 ''Yard lines'' cross the field every 5 yards, and are numbered from each goal line to the 50-yard line, or midfield (similar to a typical [[rugby league]] field). Two rows of lines, known as ''hash marks'', parallel the side lines near the middle of the field. All plays start with the ball on or between the hash marks.
28749
28750 At the back of each end zone are two ''goal posts'' (also called ''uprights'') that are 18.5 feet apart. The posts are connected by a crossbar 10 feet from the ground. Successful kicks must go above the crossbar and between the uprights. (At many fields the uprights and crossbar are attached by a curved bar to a post outside the field of play, to reduce the chance of players running into the supports.)
28751
28752 Each team has 11 players on the field at a time. However, teams may substitute for any or all of their players between plays. As a result, players have very specialized roles, and almost all of the 53 players on an NFL team will play in any given game. Thus, teams are divided into three separate units: the [[offensive team|offense]], the [[defensive team|defense]] and the [[special teams]] (see below). In the NFL, players' [[jersey number]]s are distributed according to a strict system (e.g. quarterbacks always wear between 1-19).
28753
28754 ===Game duration===
28755 A standard football game consists of four 15-minute (typically 12 minutes in high school football) periods (called quarters), with an intermission (called halftime) after the second quarter. The clock stops after certain plays; therefore, a game can last considerably longer (often more than three hours in real time). If an NFL game is tied after four quarters, the teams play up to another 15 minutes. In an NFL overtime game, the first team that scores wins; if neither team scores, the game is a tie. College overtime rules are more complicated and are described at [[Overtime (sport)]].
28756
28757 ===Advancing the ball===
28758 Advancing the ball in American football resembles the ''six-tackle rule'' and the ''play-the-ball'' in [[Rugby league|rugby league football]]. The team that takes possession of the ball (the '''offense''') has four attempts, called '''[[Down (football)|downs]]''', to advance the ball 10 yards towards their opponent's (the '''defense'''&lt;nowiki&gt;'&lt;/nowiki&gt;s) end zone. When the offense gains 10 yards, it gets a '''first down''', or another set of four downs to gain 10 yards. If the offense fails to gain a first down (10 yards) after 4 downs, it loses possession of the ball.
28759
28760 Except at the beginning of halves and after scores (see ''Kickoffs and free kicks'' below), the ball is always put into play by a '''[[Snap (American football)|snap]]'''. All players line up facing each other at the [[line of scrimmage]] (the position on the field where the play begins). One offensive player, the [[Center (football)|center]], then passes (or &quot;snaps&quot;) the ball between his legs to a teammate, usually the [[quarterback]].
28761
28762 Players can then advance the ball in two ways:
28763 * By running with the ball, also known as '''[[Rush (football)|rushing]]'''. One ball-carrier can hand the ball to another; this is known as a '''handoff'''.
28764 * By throwing the ball to a teammate, known as '''passing'''. The forward pass is a key factor distinguishing American and Canadian football from other football sports. The offense can throw the ball forward only once on a play and only from behind the line of scrimmage. The ball can be thrown sideways or backwards at any time. This type of pass is known as a '''[[Lateral pass|lateral]]''' and is much rarer in American football than in rugby league or rugby union, where a backwards pass is mandatory.
28765
28766 A play or down ends, and the ball becomes dead, after any of the following:
28767 * The player with the ball is forced to the ground or has his forward progress halted by members of the other team (as determined by an official).
28768 * A forward pass flies out of bounds or touches the ground before it is caught. This is known as an '''[[incomplete pass]]'''. The ball is returned to the original line of scrimmage for the next down.
28769 * The ball or the player with the ball goes beyond the dimensions of the field ('''out of bounds''').
28770 * A team scores.
28771 * A certain penalty is committed (such as false start) that causes the play to be blown dead and replayed.
28772 [[Official (American football)|Officials]] blow a whistle to notify all players that the play is over.
28773
28774 At all times, players and fans must be aware of the sequence of downs and the distance to a new first down. When a team has a first down, the scoreboard or television screen flashes &quot;1st and 10&quot; — that is, first down and 10 yards to go. If the team gains three yards on the first play, for example, the next down will be &quot;2nd and 7.&quot;
28775
28776 ===Changes of possession===
28777 The offense maintains possession of the ball unless one of the following things happens:
28778
28779 * The team fails to get a first down, that is, move the ball forward at least 10 yards in four downs. The defensive team takes over the ball at the spot where the play ends. A change of possession in this manner is commonly called a '''turnover on downs'''.
28780 * The offense scores a touchdown or field goal. The team that scored then kicks off the ball to the other team. (See Scoring and Kickoffs below.)
28781 * The offense punts the ball to the defense. A '''[[punt (football)|punt]]''' is a kick in which a player drops the ball and kicks it before it hits the ground. Punts are nearly always made on fourth down, when the offensive team does not want to risk giving up the ball to the other team at its current spot on the field (through a failed attempt to make a first down) and feels it is too far from the other team's goal posts to kick a field goal.
28782 * A defensive player catches a forward pass. This is called an '''[[interception]]''', and the player who makes the interception can run with the ball until tackled, forced out of bounds, or scores. After the intercepting player is tackled or forced out of bounds, his team's offensive unit returns to the field and takes over at his last position.
28783 * An offensive player drops the ball (a '''[[fumble]]''') and a defensive player picks it up. As with interceptions, a player recovering a fumble can run with the ball until tackled or forced out of bounds. Lost fumbles and interceptions are together known as '''turnovers'''.
28784 * The offensive team misses a field goal attempt. The defensive team gets the ball at the spot where the previous play began (or, in the NFL, at the spot of the kick). If the unsuccessful kick was attempted from within 20 yards of the end zone, the other team gets the ball at its own 20-yard line (that is, 20 yards from the end zone).
28785 * An offensive player is tackled, forced out of bounds, or commits certain penalties in his own end zone. This rare occurrence is called a '''[[Safety (football)|safety]]'''. (See ''Scoring'' below.)
28786
28787 ===Scoring===
28788 A team scores points by the following plays:
28789 * A '''[[touchdown]]''' (TD) is worth 6 points. A touchdown is scored when a player runs the ball into or catches a pass in his opponent's end zone.
28790 ** After a touchdown, the scoring team attempts a '''conversion'''. The ball is placed at the other team's 3-yard-line (the 2-yard-line in the NFL). The team can attempt to kick it over the crossbar and through the goal posts in the manner of a field goal for 1 point (an '''[[extra point]]'''), or run or pass it into the end zone in the manner of a touchdown for 2 points (a '''[[two-point conversion]]'''). In [[collegiate]] and [[professional]] leagues, the extra point is usually preferred; its success rate is 94% in the [[NFL]] and 93.8% in the [[NCAA]], compared to 43% in the [[NFL]] and 43.5% in the [[NCAA]] for two-point conversions. If the defense forces a turnover on an attempted conversion and runs the ball back to their opponent's endzone, they are awarded with 2 points (does not apply in the NFL).
28791 * A '''[[field goal]]''' (FG) is worth 3 points, and it is scored by kicking the ball over the crossbar and through the goal posts. Field goals may be placekicked (kicked when the ball is held vertically against the ground by a teammate) or drop-kicked. A field goal is usually attempted on fourth down instead of a punt when the ball is close to the goal line, or, when there is little or no time left to otherwise score.
28792 * A '''[[Safety (football)|safety]]''' is worth 2 points. A safety is scored by the ''defense'' when the offensive player in possession of the ball is forced back into his own end zone and is tackled there, or fumbles the ball out of the end zone. Certain penalties by the offense occurring in the end zone also result in a safety.
28793
28794 ===Kickoffs and free kicks===
28795 Each half begins with a [[Kickoff (American football)|kickoff]]. Teams also kick off after scoring touchdowns and field goals. The ball is kicked from a kicking tee, which is made from one's own 30-yard line in the NFL and from the 35-yard line in college football. The other team's kick returner tries to catch the ball and advance it as far as possible. Where he is stopped is the point where the offense will begin its '''drive''', or series of offensive plays. If a kick returner does not want to run with the ball, he has the option to signal for a &quot;fair catch&quot; by waving his hands in the air before the catch. He will then be allowed to catch the ball and kneel it down on the field without being tackled. If the kick returner catches the ball in his own end zone, he can either run with the ball, or elect for a '''[[touchback]]''' by kneeling in the end zone. The receiving team can then start its offensive drive from its own 20-yard line. A touchback can also occur when the kick goes out of the end zone. Punts and turnovers in the end zone can also end in touchbacks. If a kickoff goes out of bounds over the sidelines without being interfered by the receiving team, the ball will be placed 30 yards from the spot of the kickoff (traditionally at the receiving team's 40-yard line in the NFL or the 35-yard line in college football).
28796
28797 After safeties, there is a '''[[Safety (American football)#free kick|free kick]]''' instead of a kickoff. A free kick is made from a team's own 20-yard-line and can be punted or placekicked.
28798
28799 ===Penalties===
28800 Rule violations are punished with '''penalties'''. Most penalties result in moving the football either towards the endzone in the case of a defensive penalty, or away from the endzone in the case of an offensive penalty. Some defensive penalties give the offense an automatic first down. In addition, if a penalty gives the offensive team enough yardage to gain a first down, the first down is automatically given. If a penalty occurs during a play, an official throws a yellow flag near the spot of the foul. When the play is over, the team that did not commit the penalty has the option of taking either the penalty or the result of the play. For example, say a defensive player commits an offsides penalty on first down by passing the line of scrimmage before the snap, and the offense gains eight yards on the play. The team with the ball has the option of taking the penalty and repeat the first down with five yards to go, or declining the penalty and scrimmaging with 2nd and 2.
28801
28802 ====Some common penalties====
28803 * '''False start''': A player on the offense, other than a back moving parallel to the line of scrimmage, moves just prior to the snap. Five yards.
28804 * '''Offsides''': A player is on the wrong side of the ball at the start of a play. Five yards. Similar fouls: Touching an opponent before the snap is '''encroachment'''; lining up alongside the football instead of behind it is a '''neutral zone infraction'''.
28805 * '''Holding''': A blocker unfairly impedes a would-be tackler or pass receiver, by grabbing the player's jersey, hooking, or tackling. When commited by the offense, or by either team on a change of possession, the penalty is ten yards. When committed by the defense, the penalty is five yards and an automatic first down is awarded to the offense. If the penalty occurred beyond the line of scrimmage, the penalty would be enforced from the spot of the foul.
28806 * '''Pass interference''': After a pass is launched into the air, a defender pushes, hooks, grabs, or knocks down a would-be pass receiver, or if the receiver does the same to the defender to prevent an interception. First down at the spot of the foul if against the defense (15 yards from the previous spot in college football), or ten yards from the previous spot if against the offense. Similar penalties before a pass are called as '''holding''' or '''illegal contact'''.
28807 * '''Facemask''': a player places his hand on an opponent's facemask during a play. Five yards, or fifteen (a '''personal foul''') if the player hooks his fingers into the facemask or pulls on it.
28808 * '''Roughing the passer/kicker''': A player places a hard hit on a passer long enough after a pass has been thrown to consider the contact avoidable, or places a hard hit on a punter or place kicker. Fifteen yards and automatic first down.
28809 * '''Running into the kicker''': A lighter contact on a kicker, especially after the kick has been made. Five yards.
28810 * '''Intentional grounding''': The passer throws a forward pass not near any eligible receiver, without first leaving the area behind where the blocking linemen were standing before the snap (the &quot;pocket&quot;), or the passer throws a forward pass outside of the pocket which does not reach the original '''line of scrimmage''' and is not near any eligible receiver. Ten yards plus loss of down, except if the penalty occurred in the end zone, then it is ruled a safety, and the defense is awarded 2 points. In college football and high school football, the defense is also credited with a quarterback sack. Note that spiking the ball to stop the clock is exempt from this.
28811 * '''Ineligible receiver downfield''': On every play the offense must have 7 players on the line of scrimmage, the player furthest from the ball on each side are eligible receivers; the interior five players are considered ineligible to receive passes. This penalty is called if one of the 5 interior players is more than five yards past the line of scrimmage during a forward pass.
28812 * '''Dead ball personal foul''': After the play is blown dead, a player tackles or makes rough contact with a player on the other team. Fifteen yards, automatic first down if on defense.
28813 * '''Unnecessary roughness''': A catch-all for rough play that doesn't merit its own foul. An example is an avoidable late hit on a ball carrier who has run out of bounds. Fifteen yards.
28814 * '''Unsportsmanlike conduct''': Another catch-all call, commonly used for taunting, excessive celebration after a touchdown, and certain banned forms of pantomime (like slashing the throat). Fifteen yards.
28815
28816 ==The players==
28817 {{Main|American football positions}}
28818 As noted above, most football players have highly specialized roles. At the college and NFL levels, most play only offense or only defense.
28819
28820 ===Offense===
28821 * The '''[[offensive line]]''' consists of five players whose job is to protect the passer and clear the way for runners by blocking members of the defense. Except for the center, offensive linemen generally do not handle the ball.
28822 * The '''[[quarterback]]''' receives the ball on most plays. He then hands or tosses it to a running back, throws it to a receiver or runs with it himself.
28823 *'''[[Running back]]s''' line up behind or beside the QB and specialize in rushing with the ball. They also block, catch passes and, on rare occasions, pass the ball to others.
28824 *'''[[Wide receiver]]s''' line up near the sidelines. They specialize in catching passes.
28825 *'''[[Tight end]]s''' line up outside the offensive line. They can either play like wide receivers (try to catch passes) or like offensive linemen (protect the QB or create spaces for runners).
28826
28827 Not all of these types of players will be in on every offensive play. Teams can vary the number of wide receivers, tight ends and running backs on the field at one time.
28828
28829 ===Defense===
28830 * The '''[[defensive line]]''' consists of three to five players who line up across from the offensive line. They try to tackle the running backs before they can gain yardage or the quarterback before he can throw a pass.
28831 * At least three players line up as '''[[defensive back]]s'''. They cover the receivers and try to stop pass completions. They occasionally rush the quarterback.
28832 * The other players on the defense are known as '''[[linebacker]]s'''. They line up between the defensive line and backs and may either rush the quarterback or cover potential receivers.
28833
28834 ===Special teams===
28835 The units of players who handle kicking plays are known as '''[[special teams]]'''. Special-teams feature players that include the '''[[punter (football position)|punter]]''', who handles punts, and the '''[[placekicker]]''' or '''kicker''', who kicks off and attempts field goals and extra points.
28836
28837 ==Basic football strategy==
28838 {{Main|American football strategy}}
28839
28840 To many fans, the chief draw of football is the chess game that goes on between the two coaching staffs. Each team has a '''playbook''' of dozens to hundreds of plays. Plays are the directions for what the players should do on a down. Some plays are very safe; they are very likely to get a few yards, but not much more than that. Other plays have the potential for long gains but a greater risk of a loss of yardage or a turnover.
28841
28842 Generally speaking, rushing plays are less risky than passing plays. However, there are relatively safe passing plays and risky running plays. To fool the other team, there are passing plays designed to look like running plays and vice versa. There are many trick or gadget plays, such as when a team lines up like it is going to kick and then tries to run or pass for a first down. Such high-risk plays are a great thrill to the fans when they work. However, they can spell disaster if the opposing team realizes the deception and acts accordingly.
28843
28844 It has been said that football is the closest sport that strategically resembles real war, which may explain why it is by far the most popular sport in the American military. In fact, the [[United States Military Academy]], the [[United States Naval Academy]], and the [[United States Air Force Academy]] each field football teams that participate in [[Division I-A]] of the [[National Collegiate Athletic Association|NCAA]]. Army and Navy have a particularly historic [[Army-Navy Game|rivalry]].
28845
28846 ==A physical game==
28847 American football is a collision sport. To stop the offense from advancing the ball, the defense must tackle the player with the ball by knocking him down. As such, defensive players must use some form of physical contact to bring the ball-carrier to the ground, within certain rules and guidelines. Tacklers cannot kick, punch or trip the runner. They also cannot grab the face mask of the runner's helmet, lead into a tackle with their own helmet, or lift the ball carrier up off his feet and drop him. Despite these and other rules regarding unnecessary roughness, most other forms of tackling are legal. Blockers and defenders trying to evade them also have wide leeway in trying to force their opponents out of the way. Quarterbacks are regularly hit by defenders coming on full speed from outside the quarterback's field of vision.
28848
28849 The high level of physical contact in football makes it more dangerous than other major American team sports. To compensate for this, players must wear a good deal of special protective equipment, such as a padded plastic [[football helmet|helmet]], [[shoulder pads]], hip pads and knee pads. These protective &quot;paddings&quot; were introduced decades ago and improved ever since to help minimize lasting injury to players.
28850
28851 Despite protective equipment and rule changes to emphasize safety, injuries remain very common in football, due to its physical nature. Twenty-five football players, mostly high schoolers, died from injuries directly related to football from 2000-2004, according to the National Center for Catastrophic Sport Injury Research. [[concussion|Concussions]] are common, with an estimated 62,000 suffered every year among high school players according to the Brain Injury Association of Arizona. [http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=104&amp;STORY=/www/story/08-23-2005/0004093186&amp;EDATE=]. It is common to see injuries in the game, and deaths are not unheard of. The game is particularly risky when played by amateurs without proper gear, such as is common amongst Americans in backyards and parks across the country.
28852
28853 Some have criticized American football as a violent sport. American football is indeed quite physical in comparison to sports like [[basketball]] and [[soccer]] as well as other major American team sports. Tackle football is often banned in American schoolyards in favor of [[touch football]], which uses two-hand touching instead of tackling; or [[flag football]] in which a player is &quot;tackled&quot; when an opponent pulls a flag off a belt attached to the player's waist. School [[physical education]] classes often use the &quot;two-hand touch&quot; version of the game, leaving the tackles to the school's official after-school sports program which can provide the appropriate gear and supervision.
28854
28855 The level of physical aggression and risk of injury has also made football less appealing to females, as they generally lack the muscle and body mass to compete without serious risk. The tackle nature of football also tends to favor the largest and strongest players, along with the fastest. The average weight of players in the NFL has increased in recent years.
28856
28857 All these factors have brought the sport into controversy in the past few decades, joining the group of other &quot;violent&quot; and thus controversial sports such as [[dodgeball]], [[wrestling]], [[hockey]], and [[boxing]]. Critics argue that these sports emphasize size, physical strength, and brute force, and breed aggression and unhealthy competitive attitudes in children. Others argue that such sports teach sportsmanship and teamwork, and though [[contact sports]] are all violent to some degree, they always emphasize skill and strategy over mere belligerence.
28858
28859 ==Development of the game==
28860 {{Details|History of American football}}
28861
28862 Both American football and soccer have their origins in [[football|varieties of football]] played in the [[United Kingdom]] in the mid-19th century, and American football is directly descended from [[rugby football]].
28863
28864 Rugby was first introduced to North America in [[Canada]], brought by the [[British Army]] garrison in [[Montreal]] which played a series of games with [[McGill University]]. Both Canadian and American football evolved from this point. For an in-depth overview of the differences and similarities of [[Canadian football]] and American football see: [[Comparison of Canadian and American football]]
28865
28866 American colleges spearheaded the growth of football. The [http://www.scarletknights.com/football/history/first_game.htm first inter-collegiate football game] was played between Rutgers and Princeton Universities on November 6, 1869. The game was won by Rutgers (6-4) although &quot;The game, which bore little resemblance to its modern-day counterpart, was played with two teams of 25 men each under rugby-like rules, but like modern football, it was “replete with surprise, strategy, prodigies of determination, and physical prowess,” to use the words of one of the Rutgers players.&quot; - [http://www.scarletknights.com/football/history/first_game.htm Rutgers Football]
28867
28868 American football in its current form grew out of a series of three games between [[Harvard University]] and [[McGill University]] of [[Montreal]] in 1874. McGill played [[rugby football]] while Harvard played the [[Boston Game]], which was closer to soccer. As often happened in those days of far from universal rules, the teams alternated rules so that both would have a fair chance. The Harvard players liked having the opportunity to run with the ball, and in 1875 persuaded [[Yale University]] to adopt rugby rules for their annual game. In 1876 Yale, Harvard, [[Princeton University|Princeton]], and [[Columbia University|Columbia]] formed the [[Intercollegiate Football Association]], which used the rugby code, except for a slight difference in scoring.
28869
28870 In 1880 [[Walter Camp]] introduced the scrimmage in place of the rugby [[Scrum (rugby)|scrum]]. In 1882 the system of downs was introduced to thwart Princeton's and Yale's strategy of controlling the ball without trying to score. In 1883 the number of players was reduced, at Camp's urging, to eleven, and Camp introduced the soon standard arrangement of a seven-man offensive line with a quarterback, two halfbacks, and a fullback.
28871
28872 On [[September 3]], [[1895]] the first professional football game was played, in [[Latrobe, Pennsylvania]], between the Latrobe [[YMCA]] and the Jeannette Athletic Club. (Latrobe won the contest 12-0.).
28873
28874 By the 1890s interlocking offensive formations such as the flying wedge and the practice of teammates physically dragging ball-carrying players forward had made the game extremely dangerous. Despite restrictions on the flying wedge and other precautions, in 1905 eighteen players were killed in games. President [[Theodore Roosevelt]] informed the universities that the game must be made safer. To force them to respond to his concerns, he threatened to pressure Congress to make playing football a federal crime.
28875
28876 In 1906, two rival organizing bodies, the [[Intercollegiate Rules Committee]] and the [[Intercollegiate Athletic Association]], met in New York; eventually they agreed on several new rules intended to make the game safer, among them the addition of a neutral zone between the scrimmage lines and a requirement that at least six players from each team line up on them. The most far-reaching innovation they considered, though, was the legalization of the forward pass. This was very controversial at the time, much derided by purists. As an alternative means of opening out the play, Walter Camp would have preferred widening the field; but representatives from Harvard pointed to recently constructed [[Harvard Stadium]], which could not be widened, and the forward pass was adopted; it has come to shape the whole history of American football, as opposed to its cousins around the world.
28877
28878 In 1910, after further deaths, interlocking formations were finally outlawed; and in 1912 the field was changed to its current size, the value of a touchdown increased to 6 points, and a fourth down added to each possession. The game had achieved its modern form.
28879
28880 ==Problems in football==
28881 {{Main|Issues in American Football}}
28882
28883 Injuries are more common in American football than in many other sports, although rule changes made in the past 90 years (for instance, the elimination of &quot;[[Horse-collar tackle|horse-collar tackles]]&quot;) have gradually lowered the rates of injuries. In addition, protective equipment has become better - for example, the optional leather helmets introduced during the 1890s have been replaced (in several stages) by required high-tech padded plastic helmets with bars protecting the face.
28884
28885 More recently, the use of steroids and the extent thereof has become an object of debate in professional, college, and even high school football leagues.
28886
28887 Another problem with football is that it is an expensive sport. The specialized helmets, uniforms, and pads can cost hundreds of dollars. There is a widespread perception that football teams based in schools and public recreational leagues consume far more than their fair share of the sports budget, although sales of tickets to college (and to some extent high school) football games often make it a revenue-producing sport.
28888
28889 [[Image:DSCN4567_clevelandbrownsstadium_e2.jpg|thumb|300px|[[Cleveland Browns Stadium]] in [[Cleveland, Ohio]], home of the [[Cleveland Browns]].]]
28890
28891 ==Professional, college, and other leagues==
28892 Football is played at a number of levels in the United States. These include the following:
28893 * [[National Football League]] (NFL) - the top-level men's professional league
28894 * [[NFL Europe]] - semi-professional league in [[Europe]]
28895 * [[College football]] - played at many U.S. colleges
28896 * [[American Football Association]] National organization for the advancement and promotion of semi-pro/minor league football teams and leagues in the United States.
28897 * [[North American Football League]] - Amateur minor league with more than 100 member organizations since 1996
28898 * [[Women's American football]] - since 2000, there has been a surge of women's professional leagues.
28899 * High school football - played at most U.S. High Schools
28900 * [[Pop Warner Little Scholars|Pop Warner]] or youth football - involves younger children who are too young to play high school, generally in middle school.
28901 * [[Sprint football]] - players must weigh no more than 172 pounds
28902
28903 American football is also played in many nations around the world. Some of the organizations/leagues that play American football are:
28904 * [[Mexican College Football]] League or [[ONEFA]] - played by many Mexican colleges, with essentially NCAA rules
28905 * [[British Collegiate American Football League]] (BCAFL) - Fast-growing college football league in the UK
28906 * [[British American Football League]] (BAFL)-Higher League of American Football in the UK
28907 * [[European Federation of American Football]] (www.efaf.info) European organization that crowns its champion in the [[Euro Bowl]]
28908 * [[German Football League]]
28909 * [[Gridiron Australia]] - national body of several state-level leagues
28910 * [[International Federation of American Football]] International governing body for American football with 39 member associations from North America, Europe, Asia and Oceania. The IFAF also overseas the World Championship of American Football.
28911 * [[Okinawan Football League]] - Various football teams made up of U.S. servicemembers and one from Ryuku University
28912
28913 Other kinds of football with quite different rules:
28914 * [[Canadian Football League]] (CFL) - men's professional league based in [[Canada]], played using different rules known as [[Canadian football]]
28915 * [[Arena Football League]] - mid-level men's professional league. Played in indoor stadiums, hence the name &quot;arena&quot; football. One of the nation's fastest-growing sports.
28916 * [[Nine-man football]], [[Eight-man football]], and [[Six-man football]] - variations of high school football, usually played in sparsely populated areas
28917 * Amateur and youth league football
28918 * [[Flag football]] and [[Touch football (American)|Touch football]] - non-tackle; almost exclusively amateur
28919
28920 The descriptions in this article are based primarily on the current rules of the [[National Football League]] (NFL, 1920-present). Differences with college rules will be noted. Professional, college, high school, and amateur rules are similar.
28921
28922 Professional leagues that no longer exist:
28923 * [[World Football League]] (WFL, 1974-75)
28924 * [[United States Football League]] (USFL, 1983-1985)
28925 * [[XFL]] (XFL, 2001)
28926 * [[All-America Football Conference]] (AAFC, 1946-1949) (2 teams are now in the NFL)
28927 * [[World League of American Football]] (WLAF, 1991-1993 &amp;mdash; now [[NFL Europe]]),
28928 * [[American Football League]]s (AFL), four separate ones: I:1926, II: 1937-38, III: 1940-1941 and IV: 1960-1969). The fourth AFL (1960-1969) merged with the NFL in 1970 and now exists (mostly) as the [[American Football Conference|AFC]] with several new teams. The old NFL appeared as the [[National Football Conference|NFC]].
28929
28930 Fore more information: [[List of leagues of American football]]
28931
28932 ==References==
28933 * {{cite web
28934 | url=http://www.nfl.com/fans/
28935
28936 | title=Digest of Rules
28937 | publisher= National Football League
28938 | accessdate=December 28
28939 | accessyear=2005
28940 }}
28941 * {{cite web
28942 | url=http://www.nfl.com/history
28943 | title=History and the basics
28944 | publisher=National Football League
28945 | accessdate=December 28
28946 | accessyear=2005
28947 }}
28948 * {{cite web
28949 | url=http://www.thesportjournal.org/2005Journal/Vol8-No4/starkey.asp
28950 | title=Playing with the Percentages When Trailing by Two Touchdowns
28951 | publisher=Montana State University
28952 | accessdate=December 24
28953 | accessyear=2005
28954 }}
28955
28956 ==See also==
28957 *[[American football strategy]]
28958 *[[National Women's Football Association]]
28959 *[[Canadian Football League]]
28960 *[[German Football League]]
28961 *[[Glossary of American football| American football glossary]]
28962 *[[List of American football players]]
28963 *[[Pro Football Hall of Fame]]
28964 *[[List of defunct sports leagues]]
28965 *[[Fantasy Football]]
28966 *[[Gridiron football]]
28967
28968 ==External links==
28969 *The [http://www.nfl.com/ National Football League (NFL)] - the top professional league
28970 *[http://www.players.com NFL Players Association]
28971 *NCAA [http://www2.ncaa.org/media_and_events/ncaa_publications/playing_rules/ Playing Rules] (complete college football rules are available as a PDF file)
28972 *[http://www.afca.org American Football Coaches Association]
28973 *[http://memory.loc.gov/cgi-bin/query/S?ammem/papr:@FILREQ(@field(TITLE+@od1(Chicago-Michigan+football+game++))+@FIELD(COLLID+workleis)) Movie of 1903 football game between the University of Chicago and the University of Michigan]
28974 *[http://www.nfl.com/history/chronology/ Chronology of many events in the NFL]
28975 *[http://www.iwflsports.com The Women's League]
28976 *[http://www.unc.edu/depts/nccsi/SurveyofFootballInjuries.htm Annual Survey of Football Injury Research]
28977 *[http://www.playfootball.com/footballfacts/basics.html Football Basics]
28978 *[http://football.about.com/od/football101/ Football FAQ]
28979 *[http://football-plays-and-drills.com/encyclopedia Football Plays, Drills &amp; Fundamentals] - Resource for coaches &amp; players.
28980
28981 [[Category:American football| ]]
28982 [[Category:Team sports]]
28983
28984 {{Link FA|pt}}
28985
28986 [[bg:АĐŧĐĩŅ€Đ¸ĐēĐ°ĐŊŅĐēи Ņ„ŅƒŅ‚йОĐģ]]
28987 [[ca:Futbol americà]]
28988 [[cs:AmerickÃŊ fotbal]]
28989 [[da:Amerikansk fodbold]]
28990 [[de:American Football]]
28991 [[es:FÃētbol americano]]
28992 [[eo:Usona piedpilko]]
28993 [[fr:Football amÊricain]]
28994 [[ko:미ė‹ėļ•ęĩŦ]]
28995 [[it:Football americano]]
28996 [[he:פוטבול]]
28997 [[lv:Amerikāņu futbols]]
28998 [[nl:American football]]
28999 [[ja:ã‚ĸãƒĄãƒĒã‚ĢãƒŗフットボãƒŧãƒĢ]]
29000 [[no:Amerikansk fotball]]
29001 [[pl:Futbol amerykański]]
29002 [[pt:Futebol americano]]
29003 [[sh:Američki fudbal]]
29004 [[simple:American football]]
29005 [[sk:AmerickÃŊ futbal]]
29006 [[sr:АĐŧĐĩŅ€Đ¸Ņ‡Đēи Ņ„ŅƒĐ´ĐąĐ°Đģ]]
29007 [[fi:Amerikkalainen jalkapallo]]
29008 [[sv:Amerikansk fotboll]]
29009 [[th:ā¸­āš€ā¸Ąā¸Ŗā¸´ā¸ā¸ąā¸™ā¸Ÿā¸¸ā¸•ā¸šā¸­ā¸Ĩ]]
29010 [[zh:įžŽåŧæŠ„æŦ–įƒ]]</text>
29011 </revision>
29012 </page>
29013 <page>
29014 <title>American Revolutionary War</title>
29015 <id>771</id>
29016 <revision>
29017 <id>41962067</id>
29018 <timestamp>2006-03-02T22:26:17Z</timestamp>
29019 <contributor>
29020 <username>TexasAndroid</username>
29021 <id>271376</id>
29022 </contributor>
29023 <minor />
29024 <comment>Reverted edits by [[Special:Contributions/69.196.45.115|69.196.45.115]] ([[User talk:69.196.45.115|talk]]) to last version by Misza13</comment>
29025 <text xml:space="preserve">{{Warbox|
29026 conflict=American Revolutionary War
29027 |campaign=
29028 |image=[[Image:Sprit of '76.2.jpeg|200px]]
29029 |caption=
29030 |date=1775–1783
29031 |place=[[North America]]
29032 |result=[[Treaty of Paris (1783)]]
29033 |combatant1=[[Patriot (American Revolution)|American Revolutionaries]], [[France]], [[Netherlands]], [[Spain]], allies
29034 |combatant2=[[British Empire]], allies
29035 |commander1=[[George Washington]]&lt;br&gt;[[Comte de Rochambeau|Comte&amp;nbsp;de&amp;nbsp;Rochambeau]]&lt;br&gt;[[Nathanael Greene]]
29036 |commander2=[[William Howe, 5th Viscount Howe|William Howe]]&lt;br&gt;[[Henry Clinton (American War of Independence)|Henry Clinton]]&lt;br&gt;[[Charles Cornwallis|Charles&amp;nbsp;Cornwallis]]
29037 |}}
29038
29039 The '''American Revolutionary War''' (1775–1783), also known as the '''American War of Independence''', was the military component of the [[American Revolution]]. It was fought primarily between [[Kingdom of Great Britain|Great Britain]] and revolutionaries within [[13 colonies|thirteen British colonies]] in [[North America]], who proclaimed themselves as the [[United States|United States of America]] early in the war. The war began largely as a colonial revolt against the [[mercantilism|economic policies]] of the [[British Empire]], and eventually widened far beyond [[British North America]], with [[France]], [[Spain]], and the [[Netherlands]] entering the war against Great Britain. Additionally, many [[Native Americans in the United States|Native Americans]] fought on both sides of the conflict.
29040
29041 Throughout the war, the British were able to use their naval superiority to capture and occupy coastal cities, but control of the countryside (where most of the population lived) largely eluded them. French involvement proved decisive, with a naval [[Battle of the Chesapeake|victory in the Chesapeake]] leading to the surrender of a British army at the [[Battle of Yorktown (1781)|Battle of Yorktown]] in 1781. The [[Treaty of Paris (1783)|Treaty of Paris]] in 1783 recognized the independence of the [[United States|United States of America]].
29042
29043 The terms ''American Revolutionary War'' and ''American Revolution'' are often used interchangeably, though the American Revolution included political and social developments before and after the war itself. This article refers solely to the military campaign; for a broader perspective, including the origins and aftermath of the war, see the article on the [[American Revolution]].
29044
29045 == Combatants ==
29046 ===Choosing sides===
29047 Colonists were divided over which side to support in the war; in some areas, the struggle was a [[civil war]]. The [[Patriot (American Revolution)|Revolutionaries]] (also known as Americans or Patriots) had the support of about 40 to 45 percent of the colonial population. About 15 to 20 percent of the population supported the British Crown during the war, and were known as [[Loyalist (American Revolution)|Loyalists (or Tories)]]. Loyalists fielded perhaps 50,000 men during the war years in support of the British Empire. After the war, some 70,000 Loyalists departed, most going to [[Canada]], Great Britain, or to British colonies in the [[Caribbean]].{{ref|loyalists}}
29048
29049 When the war began, the Americans did not have a professional [[armed force|army]] (also known as a &quot;[[standing army]]&quot;). Each colony had traditionally provided for its own defenses through the use of local [[militia]]. Militiamen served for only a few weeks or months at a time, were generally reluctant to go very far from home, and would often come and go as they saw fit. Militia typically lacked the training and discipline of regular troops, but could be effective when an emergency energized them.
29050
29051 Seeking to coordinate military efforts, the [[Continental Congress]] established (on paper) a regular army—the [[Continental Army]]—in June 1775, and appointed [[George Washington]] as [[commander-in-chief]]. The development of the Continental Army was always a work in progress, and Washington reluctantly augmented the regular troops with militia throughout the war. Although as many as 250,000 men may have served as regulars or as militiamen for the Revolutionary cause in the eight years of the war, there were never more than 90,000 total men under arms for the Americans in any given year. Armies in North America were small by European standards of the era; the greatest number of men that Washington personally commanded in the field at any one time was fewer than 17,000.{{ref|continental}}
29052
29053 ===European nations===
29054 [[Image:Us unabhaengigkeitskrieg.jpg|thumb|right|300px|German troops serving with the British in North America. (C Ziegler after Conrad Gessner, 1799)]]
29055 Early in 1775, the British army consisted of about 36,000 men worldwide, but wartime [[recruitment]] steadily increased this number. Additionally, over the course of the war the British hired about 30,000 [[Ethnic German|German]] [[mercenaries]], popularly known in the colonies as &quot;[[Hessians]]&quot; because many of them came from [[Hesse-Kassel]]. Germans would make up about one-third of the British troop strength in North America. By 1779, the number of British and German troops stationed in North America was over 60,000, though these were spread from [[Canada]] to [[Florida]].{{ref|British}}
29056
29057 [[France]], the [[Netherlands]] and [[Spain]] entered the war against Great Britain in an attempt to dilute Britain's emerging [[superpower]] status. Early on, all three countries quietly provided financial assistance to the American rebels. [[France in the American Revolutionary War|France officially entered the war]] in 1778 and soon sent troops, ships, and military equipment to fight against the British for the remainder of the war. Spain entered the war in 1779, officially as an ally of France but not the United States&amp;mdash;Spain was not keen on encouraging similar rebellions in [[Spanish Empire|her own empire]]. The Netherlands entered the war late in 1780, but was soon overwhelmed by the British.
29058
29059 ===Blacks and Native Americans===
29060 [[African-Americans]], [[Slavery in the United States|slaves]] and [[free black]]s, served on both sides during the war. Black soldiers served in northern militias from the outset, but this was forbidden in the South, where slaveowners feared arming slaves. [[John Murray, 4th Earl of Dunmore|Lord Dunmore]], the Royal Governor of [[Virginia]], issued an emancipation proclamation in November 1775, promising freedom to runaway slaves who fought for the British; [[Henry Clinton (American War of Independence)|Sir Henry Clinton]] issued a similar edict in New York in 1779. Tens of thousands of slaves escaped to the British lines, although possibly as few as 1,000 served under arms. Many of the rest served as orderlies, mechanics, laborers, servants, scouts and guides, although more than half died in smallpox epidemics that swept the British forces, and a number were driven out of the British lines when food ran low. Despite Dunmore's promises, the majority were not given their freedom.{{ref|black_loyalists}}
29061
29062 In response, and because of manpower shortages, Washington lifted the ban on black enlistment in the Continental Army in January 1776. All-black units were formed in [[Rhode Island]] and [[Massachusetts]]; many were slaves promised freedom for serving in lieu of their masters. Another all-black unit came from [[Haiti]] with French forces. At least 5,000 black soldiers fought for the Patriot cause.{{ref|black_patriots}}
29063
29064 Most [[Native Americans in the United States|American Indian]] communities east of the [[Mississippi River]] were affected by the war, many divided over the question of which side to support. Most Native Americans who joined the fight fought against the United States, since native lands were threatened by expanding American settlement. An estimated 13,000 warriors fought on the British side; the largest group, the [[Iroquois Confederacy]], fielded about 1,500 warriors against the Americans.{{ref|warriors}}
29065
29066 == War in the North ==
29067 === Massachusetts, 1774 to 1776 ===
29068 [[Image:American Revolution Campaigns 1775 to 1781.jpg|250px|right|thumb|Map of campaigns in the Revolutionary War]]
29069
29070 In 1774, the [[Parliament of the United Kingdom|British parliament]] effectively [[Massachusetts Government Act|abolished the provincial government]] of [[Massachusetts]]. [[Lieutenant General]] [[Thomas Gage]], already the [[commander-in-chief]] of British troops in North America, was also appointed governor of Massachusetts and was instructed by [[George III of the United Kingdom|King George's]] government to enforce royal authority in the troublesome colony. However, popular resistance compelled the newly appointed royal officials in Massachusetts to resign or to seek refuge in [[Boston, Massachusetts|Boston]]. Gage commanded four [[regiment]]s of British regulars (about 4,000 men) from his headquarters in Boston, but the countryside was in the hands of the Revolutionaries.
29071
29072 On the night of [[April 18]] [[1775]], General Gage sent 900 men to seize [[munition]]s stored by the colonial militia at [[Concord, Massachusetts]]. Several riders—including [[Paul Revere]]—alerted the countryside, and when the British troops entered [[Lexington, Massachusetts|Lexington]] on the morning of April 19, they found 75 [[Minutemen (militia)|minutemen]] formed up on the village common. Shots were exchanged, and the British moved on to Concord, where there was more fighting. By the time the &quot;redcoats&quot; (as the British soldiers were called) began the return march, several thousand militiamen had gathered along the road. A running fight ensued, and the British detachment suffered heavily. With the [[Battle of Lexington and Concord]]—the &quot;[[shot heard 'round the world]]&quot;—the war had begun.
29073
29074 Afterwards, thousands of militiamen converged on Boston, [[siege of Boston|bottling up the British]] in the city. Late in May, Gage received by sea about 4,500 reinforcements and a trio of generals who would play a vital role in the war: [[William Howe, 5th Viscount Howe|William Howe]], [[John Burgoyne]], and [[Henry Clinton (American War of Independence)|Henry Clinton]]. They formulated a plan to break out of the city.
29075
29076 On [[June 17]], [[1775]], British forces under General Howe seized the Charleston peninsula at the [[Battle of Bunker Hill]]. The battle was technically a British victory, but losses were so heavy that the attack was not followed up. Thus the [[siege]] was not broken, and General Gage was soon replaced by General Howe as the British commander-in-chief.
29077
29078 In July 1775, newly appointed General Washington arrived outside Boston to take charge of the colonial forces. The standoff continued throughout the fall and winter. In early March 1776, heavy [[cannon]]s that had been [[Battle of Ticonderoga (1775)|captured by the Revolutionaries]] at [[Fort Ticonderoga]] were moved to Boston, a difficult feat engineered by [[Henry Knox]]. When the guns were placed on [[Dorchester Heights]], overlooking the British positions, Howe's situation became untenable. The British [[Evacuation Day|evacuated]] the city on [[March 17]], [[1776]] and sailed for temporary refuge in [[Halifax Regional Municipality, Nova Scotia|Halifax, Nova Scotia]]. The local militia dispersed and, in April, Washington took most of the Continental Army to fortify [[New York City]].
29079
29080 === Canada, 1775 to 1776 ===
29081 During the long standoff at Boston, the Continental Congress sought a way to seize the initiative elsewhere. Congress had initially invited [[French-Canadian]]s to join them as the fourteenth colony, but when that failed to happen, an [[Invasion of Canada (1775)|invasion of Canada]] was authorized in an attempt to drive the British from the primarily [[francophone]] colony of Quebec (comprising present-day [[Quebec]] and [[Ontario]]). Two expeditions were undertaken. On [[September 16]], [[1775]], Brigadier General [[Richard Montgomery]] marched north from Fort Ticonderoga with about 1,700 militiamen, capturing [[Montreal]] on November 13. General [[Guy Carleton, 1st Baron Dorchester|Guy Carleton]], the governor of Canada, escaped to [[Quebec City|Quebec City]].
29082
29083 [[Arnold Expedition|The second expedition]], led by Colonel [[Benedict Arnold]], set out from [[Fort Western]] (present day [[Maine]]) on September 25. The expedition was a logistical nightmare, and many men succumbed to [[smallpox]]. By the time Arnold reached Quebec City in early November, he had but 600 of his original 1,100 men. Nevertheless, Arnold demanded the surrender of the city, to no avail. Montgomery joined Arnold, and they [[Battle of Quebec (1775)|attacked Quebec City]] on December 31, but were soundly defeated by Carleton. Montgomery was killed, Arnold was wounded, and many men were taken prisoner. The Americans held on outside Quebec City until the spring of 1776, and then withdrew.
29084
29085 Another attempt was made by the Revolutionaries to push back towards Quebec, but failed at [[Battle of Trois-Rivières|Trois-Rivières]] on [[June 8]], [[1776]]. Carleton then launched his own invasion, and defeated Arnold in the [[Battle of Valcour Island]] in October. Arnold fell back to Fort Ticonderoga, where the invasion of Canada had begun. The invasion of Canada ended as an embarrassing disaster for the Revolutionaries, but Arnold's improvised navy on Lake Champlain delayed the fateful British counter thrust (the [[Saratoga Campaign]]) until 1777.
29086
29087 === New York and New Jersey, 1776 to 1777 ===
29088 Having withdrawn from Boston, the British now focused on [[New York Campaign|capturing New York City]]. General Howe, with the services of his brother, [[Richard Howe, 1st Earl Howe|Admiral Lord Howe]], began amassing troops on [[Staten Island]] in July 1776. General Washington, with a smaller army of about 20,000 men, unwittingly violated a cardinal rule of warfare, and divided his troops about equally between [[Long Island]] and [[Manhattan]], thus allowing the Howes to engage only one half of the Continental Army at a time.
29089
29090 In late August, the Howes transported about 22,000 men (including 9,000 &quot;Hessians&quot;) to Long Island. In the [[Battle of Long Island]] on [[August 27]], [[1776]], the British expertly executed a surprise flanking maneuver, driving the Revolutionaries back to the Brooklyn Heights fortifications. General Howe then laid siege to the works, but Washington skillfully managed a nighttime evacuation to Manhattan.
29091
29092 Having taken Long Island, the Howes moved to seize Manhattan. On September 15, General Howe [[Landing at Kip's Bay|landed about 12,000 men]] on lower Manhattan, quickly taking control of New York City. The Revolutionaries withdrew to Harlem Heights, where they [[Battle of Harlem Heights|skirmished the next day]], but held their ground.
29093
29094 When Howe moved to [[encirclement|encircle]] Washington's army in October, the Revolutionaries again fell back, and a [[Battle of White Plains|battle at White Plains]] was fought on [[October 28]], [[1776]]. Once more Washington retreated, but Howe, instead of aggressively pursuing the withdrawal, returned to Manhattan and captured [[Fort Washington]] in mid November, taking almost 3,000 prisoners. Four days later, [[Fort Lee, New Jersey|Fort Lee]], across the [[Hudson River]] from Fort Washington, was also taken.
29095
29096 [[Image:Washington Crossing the Delaware.png|thumb|right|300px|[[Emanuel Leutze]]'s 1851 painting ''[[Washington Crossing the Delaware]]'' is an [[icon]]ic image of [[American history]].]]
29097
29098 [[Charles Cornwallis, 1st Marquess Cornwallis|General Lord Cornwallis]] continued to chase Washington's army through [[New Jersey]], until the Revolutionaries withdrew across the [[Delaware River]] into [[Pennsylvania]] in early December. With the campaign at an apparent conclusion for the season, the British entered winter quarters. Although Howe had missed several opportunities to crush the diminishing rebel army, he had killed or captured over 5,000 Americans. He controlled much of New York and New Jersey, and was in a good position to resume operations in the spring, with the rebel capital of [[Philadelphia, Pennsylvania|Philadelphia]] in striking distance.
29099
29100 The outlook of the Continental Army—and thus the revolution itself—was bleak. &quot;These are the times that try men's souls,&quot; wrote [[Thomas Paine]], who was with the army on the retreat. The army had dwindled to fewer than 5,000 men fit for duty, and would be reduced to 1,400 after enlistments expired at the end of the year. Spirits were low, popular support was wavering, and Congress had abandoned Philadelphia in despair.
29101
29102 Washington reacted by taking the offensive, stealthily [[Battle of Trenton|crossing the Delaware]] on [[Christmas]] night and capturing nearly 1,000 Hessians at the [[Battle of Trenton]] on [[December 26]], [[1776]]. Cornwallis marched to retake Trenton, but was outmaneuvered by Washington, who successfully [[Battle of Princeton|attacked the British rearguard]] at [[Princeton, New Jersey|Princeton]] on [[January 3]], [[1777]]. Washington then entered winter quarters at [[Morristown, New Jersey]], having retaken much of New Jersey, and having secured two bold, morale-boosting victories in quick succession to reinvigorate the flagging revolution.
29103
29104 === Saratoga Campaign, 1777 ===
29105 In the summer of [[1777]], the British launched [[Saratoga Campaign|a new expedition]] from Canada. Led by General Burgoyne, the intention was to seize the Lake Champlain and Hudson River corridor, effectively isolating [[New England]] from the rest of the American colonies. Burgoyne's invasion had two components: he would lead about 10,000 men along Lake Champlain towards [[Albany, New York]], while a second column of about 2,000 men, led by [[Barry St. Leger]], would move down the [[Mohawk River]] valley and link up with Burgoyne in Albany.
29106
29107 Burgoyne set off in early July, [[Battle of Ticonderoga (1777)|recapturing Fort Ticonderoga]] from the retreating Revolutionaries without firing a shot. He then proceeded overland towards Albany, but Revolutionaries slowed his progress through the wilderness by destroying bridges and felling trees in his path. Running short on supplies, in August Burgoyne sent a detachment to raid nearby [[Bennington (town), Vermont|Bennington, Vermont]]. The raiders were [[Battle of Bennington|decisively defeated]] by local militia, depriving Burgoyne of nearly 1,000 men and the much-needed supplies.
29108
29109 [[Image:Joseph Brant painting by George Romney 1776.jpg|thumb|right|The [[Mohawk nation|Mohawk]] leader [[Joseph Brant]] commanded both American Indians and [[whites|white]] [[Loyalist (American Revolution)|Loyalists]] during the American Revolutionary War.]]
29110
29111 Meanwhile, St. Leger—half of his force American Indians led by [[Joseph Brant]]—had laid siege to [[Fort Stanwix]] on the Mohawk River. About 800 Revolutionary militiamen and their Indian allies marched to relieve the siege, but were ambushed and scattered by British and Indians on [[August 6]] at the [[Battle of Oriskany]]. [[Iroquois]] warriors fought on both sides of the battle, marking the beginning of a civil war within the Six Nations. When a second relief expedition approached, this time led by [[Benedict Arnold]], the siege was lifted, and St. Leger's expedition returned to Canada. Burgoyne was on his own.
29112
29113 Burgoyne pushed on towards Albany, his forces now reduced to about 6,000 men. A Revolutionary army of about 8,000 men, commanded by the newly arrived General [[Horatio Gates]], had entrenched about 10 miles (16 km) south of [[Saratoga, New York]]. Burgoyne sent 2,000 men to outflank the Revolutionary position, but was checked by Generals Benedict Arnold and [[Daniel Morgan]] in the [[Battle of Freeman's Farm|first battle of Saratoga]] on [[September 19]], [[1777]]. After the battle, the two armies dug in.
29114
29115 Burgoyne was in trouble now, but he hoped that help from the south might be on the way. All along, Burgoyne had suggested that his invasion from Canada might be supported by a British offensive up the Hudson River from Howe's location in New York City. However, [[George Germain, 1st Viscount Sackville|British war planners]] did not coordinate their efforts. General Howe had instead sailed away from New York on an expedition to capture Philadelphia (see next section). British General Henry Clinton, left in command at New York, did indeed sail up the Hudson in October, capturing several forts and burning [[Kingston (city), New York|Kingston]] (then the rebel capital of New York), but his efforts were not enough to affect the events at Saratoga.
29116
29117 Revolutionary militiamen, many of them outraged by the reported murder of [[Jane McCrae|an American woman]] at the hands of Burgoyne's Indian allies, flocked to Gates's army, swelling his force to 11,000 by the beginning of October. Burgoyne, his position becoming desperate, launched a new offensive, the [[Battle of Bemis Heights|second battle of Saratoga]] on October 7. The attack was repelled, and General Arnold, though relieved of command by Gates, rushed to the battle and led a decisive counterattack. Badly beaten, Burgoyne surrendered on October 17.
29118
29119 Saratoga is often regarded as the turning point of the war. Revolutionary confidence and determination, suffering from Howe's successful occupation of Philadelphia, was renewed. Even more importantly, the victory encouraged France to enter the war against Great Britain. Spain and the Netherlands soon did the same. For the British, the war had now become much more complicated.
29120
29121 === Philadelphia campaign, 1777 to 1778 ===
29122 Having secured New York City in his 1776 campaign, in 1777 General Howe concentrated on capturing Philadelphia, the seat of the Revolutionary government. He moved slowly, landing 15,000 troops in late August at the northern end of [[Chesapeake Bay]], about 55 miles (90 km) southwest of Philadelphia. Washington positioned his 11,000 men between Howe and Philadelphia, but was outflanked and driven back at the [[Battle of Brandywine]] on [[September 11]], [[1777]]. The Continental Congress once again abandoned the city. British and Revolutionary forces maneuvered around each other for the next several days, clashing in minor encounters such as the so-called &quot;[[Paoli Massacre]].&quot; On September 26, Howe finally outmaneuvered Washington and marched into Philadelphia unopposed.
29123
29124 After taking the city, the British [[garrison]]ed about 9,000 troops in [[Germantown, Philadelphia, Pennsylvania|Germantown]], five miles (8 km) above Philadelphia. Washington [[Battle of Germantown| unsuccessfully attacked Germantown]] in early October, and then retreated to watch and wait. Meanwhile, the British secured the Delaware River by taking (with difficulty) forts [[Fort Mifflin|Mifflin]] and [[Fort Mercer|Mercer]] in November.
29125
29126 General Washington's problems at this time were not just with the British. In the so-called [[Conway Cabal]], some politicians and officers unhappy with Washington's recent performance as commander-in-chief secretively discussed his removal. Washington, offended by the behind-the-scenes maneuvering, laid the whole matter openly before Congress. His supporters rallied behind him, and the episode abated.
29127
29128 Washington and his army encamped at [[Valley Forge]] in December 1777, about 20 miles (32 km) from Philadelphia, where they would stay for the next six months. Over the winter, 2,500 men (out of 10,000) died from disease and exposure. However, the army eventually emerged from Valley Forge in good order, thanks in part to a training program supervised by [[Baron von Steuben]].
29129
29130 Meanwhile, there was a shakeup in the British command, with General Clinton replacing Howe as commander-in-chief. French entry into the war had changed British war strategy, and Clinton was ordered by the government to abandon Philadelphia and defend New York City, now vulnerable to French naval power.
29131
29132 Washington's army shadowed Clinton on his withdrawal, and forced a [[Battle of Monmouth|battle at Monmouth]] on [[June 28]], [[1778]], the last major battle in the North. Washington's second-in-command, General [[Charles Lee (general)|Charles Lee]], ordered a controversial retreat during the battle, allowing Clinton's army to escape. By July, Clinton was in New York City, and Washington was again at White Plains. Both armies were back where they had been two years earlier. With the exception of scattered minor actions in the North, like the [[Battle of Stony Point]], the focus of the war now shifted elsewhere.
29133
29134 == War in the West ==
29135 ''Main article: [[Frontier warfare during the American Revolution]]''
29136
29137 [[Image:Ftsackville.gif|thumb|250px|left|[[George Rogers Clark]]'s 180 mile (290 km) trek in the dead of winter led to the capture of General [[Henry Hamilton]], Lieutenant-Governor of [[Canada]].]]
29138
29139 West of the [[Appalachian Mountains]], the American Revolutionary War was an &quot;[[Indian Wars|Indian War]].&quot; The British and the Continental Congress both courted [[Native Americans in the United States|American Indians]] as allies (or urged them to remain neutral), and many Native American communities became divided over what path to take. Like the [[Iroquois]] Confederacy, tribes such as the [[Cherokee]]s and the [[Shawnee]]s split into factions. [[Lenape|Delaware]]s under [[White Eyes]] signed the [[Treaty of Fort Pitt (1778)|first American Indian treaty]] with the United States, but other Delawares joined the British.
29140
29141 The British supplied their Indian allies from forts along the Great Lakes, and tribesmen staged raids on Revolutionary settlements in New York, [[Kentucky]], Pennsylvania and elsewhere. Joint Iroquois-Loyalist attacks in the [[Wyoming Valley Massacre|Wyoming Valley]] and at [[Cherry Valley Massacre|Cherry Valley]] in 1778 helped provoke the [[scorched earth]] [[Sullivan Expedition]] into western New York during the summer of 1779. On the western front, every man, woman, and child—regardless of race—was a potential casualty.
29142
29143 In the [[Ohio Country]], the [[Virginia]] [[frontier|frontiersman]] [[George Rogers Clark]] attempted to neutralize British influence among the Ohio tribes by capturing the outposts of [[Kaskaskia, Illinois|Kaskaskia]] and [[Battle of Vincennes|Vincennes]] in the summer of 1778. When General [[Henry Hamilton]], the British commander at [[Detroit]], retook Vincennes, Clark returned in a surprise march in February 1779 and captured Hamilton himself.
29144
29145 However, a decisive victory in the West eluded the United States even as their fortunes had risen in the East. The low point on the frontier came in 1782 with the [[Gnadenhutten massacre]], when Pennsylvania militiamen—unable to track down enemy warriors—executed nearly 100 [[Christian]] Delaware [[noncombatant]]s, mostly women and children. Later that year, in the last major encounter of the war, a party of Kentuckians was [[Battle of Blue Licks|soundly defeated]] by a superior force of British regulars and Native Americans.
29146
29147 == War in the South ==
29148 During the first three years of the American Revolutionary War, the primary military encounters were in the North. One notable exception was in June 1776, when General [[Henry Clinton (American War of Independence)|Henry Clinton]] sailed south to attack [[Charleston, South Carolina]]. This ended in humiliating defeat for the British, and the Patriots remained in control of the southern states for the next three years. Starting in 1778, the British once again turned their attention to [[Georgia (U.S. state)|Georgia]], [[South Carolina]], [[North Carolina]], and [[Virginia]], where they hoped to regain control by recruiting thousands of Loyalists.
29149
29150 On [[December 29]], [[1778]], an expeditionary corps of 3,500 men from Clinton's army in New York captured [[Savannah, Georgia]]. An attempt by French and Revolutionary forces to [[Siege of Savannah|retake Savannah]] failed on [[October 9]], [[1779]]. In this assault, Count [[Casimir Pulaski]], the [[Poland|Polish]] commander of American Revolutionary [[cavalry]], was mortally wounded. With Savannah secured, Clinton could now launch a new assault on Charleston, South Carolina, where he had failed in 1776.
29151
29152 === Carolinas, 1780 to 1781 ===
29153 [[Image:General_Sir_Banastre_Tarleton_by_Sir_Joshua_Reynolds.jpeg|thumb|right|200px|The young and dashing [[Banastre Tarleton]] was perhaps the best cavalry commander in the war—and the most hated man in the South. This portrait was painted by Sir [[Joshua Reynolds]] in 1782.]]
29154
29155 Clinton finally moved against Charleston in 1780, blockading the harbor in March, and building up about 10,000 troops in the area. Inside the city, General [[Benjamin Lincoln]] commanded about 2,650 Continentals and 2,500 militiamen. When British [[Colonel]] [[Banastre Tarleton]] cut off the city's supply lines in victories at [[Monck's Corner]] in April and [[Lenud's Ferry]] in early May, Charleston was surrounded.
29156
29157 On [[May 12]], [[1780]], General Lincoln surrendered his 5,000 men—the largest surrender of U.S. troops until the [[American Civil War]]. With relatively few casualties, Clinton had seized the South’s biggest city and seaport, winning perhaps the greatest British victory of the war, and paving the way for what seemed like certain conquest of the South.
29158
29159 The remnants of the southern Continental Army began to withdraw to [[North Carolina]], but were pursued by Colonel Tarleton, who defeated them at the [[Waxhaw Massacre|Battle of Waxhaws]] on [[May 29]], [[1780]]. Among the Americans , a story spread that Tarleton had massacred many Americans after they had surrendered (the truth of this charge is still debated). “Bloody Tarleton” became a hated name, and “Tarleton’s quarter”—referring to his reputed lack of mercy (or “quarter”)—soon became a rallying cry.
29160
29161 With these events, organized American military activity in the South had collapsed. The states however carried on their functions, and the war was carried on by partisans such as [[Francis Marion]]. General Clinton turned over British operations in the South to Lord Cornwallis. The Continental Congress dispatched General [[Horatio Gates]], to the rescue with a new army. But Gates promptly suffered one of the worst defeats in U.S. military history at the [[Battle of Camden]] on [[August 16]], [[1780]], setting the stage for Cornwallis to invade North Carolina.
29162
29163 The tables were quickly turned on Cornwallis, however. One wing of his army was utterly defeated at the [[Battle of Kings Mountain]] on [[October 7]], [[1780]], delaying his move into North Carolina. Kings Mountain was noteworthy because it was not a battle between British redcoats and colonial troops: it was a battle between American Loyalists and American Patriots. The British plan to raise large Loyalist armies failed; not enough Loyalists enlisted, and those who did were at risk once the British army moved on. Only in Georgia did the Crown manage to create a counter-revolutionary civil government.
29164
29165 Gates was replaced by George Washington's most dependable subordinate, General [[Nathanael Greene]]. Greene assigned about 1,000 men to General [[Daniel Morgan]], a superb tactician who crushed Tarleton’s troops at the [[Battle of Cowpens]] on [[January 17]], [[1781]]. Greene proceeded to wear down his opponents in a series of battles ([[Battle of Guilford Court House|Guilford Court House]], [[Battle of Hobkirk's Hill|Hobkirk's Hill]], [[Battle of Ninety Six|Ninety Six]], and [[Battle of Eutaw Springs|Eutaw Springs]]), each of them tactically a victory for the British, but giving no strategic advantage to the victors. Greene summed up his approach in a motto that would become famous: &quot;We fight, get beat, rise, and fight again.&quot; Unable to capture or destroy Greene's army, Cornwallis moved north to to Virginia.
29166
29167 === Virginia, 1775 to 1781 ===
29168 Virginia had been under revolutionary control since Loyalist forces (including runaway slaves) under [[John Murray, 4th Earl of Dunmore|Governor Dunmore]] had been defeated at the [[Battle of Great Bridge]] on [[December 9]], [[1775]]. After the defeat, Dunmore and his troops took refuge on British ships off of [[Norfolk, Virginia|Norfolk]], which Dunmore bombarded and burned on [[January 1]], [[1776]]. He was driven from an island in [[Chesapeake Bay]] that summer, never to return.
29169
29170 British forces raided Virginia sporadically during the war. In January 1781, the rebel capital of [[Richmond, Virginia|Richmond]] was put to the torch by none other than Benedict Arnold, now a turncoat, who had sold his services to the other side and was now a British general.
29171
29172 In March 1781, General Washington dispatched [[Marquis de Lafayette|Lafayette]] to defend Virginia. The young Frenchman had 3,200 men at his command, but British troops in the state, now reinforced and commanded by Cornwallis, totaled 7,200. Lafayette skirmished with Cornwallis, avoiding a decisive battle while gathering reinforcements. &quot;The boy cannot escape me,&quot; Cornwallis is supposed to have said. However, Cornwallis was unable to trap Lafayette, and so he moved his forces to [[Yorktown, Virginia]] in July in order to link up with the British navy.
29173
29174 == War at sea ==
29175 ''Main article: [[Naval operations in the American Revolutionary War]]''
29176
29177 Meanwhile the co-operation of the French became active. In July [[Comte de Rochambeau|Count Rochambeau]] arrived at Newport, Rhode Island. That place had been occupied by the British from 1776 to the close of 1779. An unsuccessful attempt was made to drive them out in 1778 by the Revolutionaries assisted by the French admiral [[Charles Hector, comte d'Estaing|d'Estaing]] and a French corps.
29178
29179 *[[First Battle of Ushant]] - [[July 27]], [[1778]]
29180 *[[John Paul Jones]]
29181 *[[Continental Navy]]
29182 *[[Battle of Cape St. Vincent (1780)]]
29183 *[[Second Battle of Ushant]] - [[December 12]], [[1781]]
29184
29185 ===Gulf Coast===
29186 After Spain declared war against Great Britain in June of 1779, Count [[Bernardo de GÃĄlvez]], the Spanish governor of [[Louisiana]], seized three British [[Mississippi River]] outposts: [[Battle of Fort Bute|Manchac]], [[Battle of Baton Rouge|Baton Rouge]], and [[Natchez, Mississippi|Natchez]]. GÃĄlvez then captured [[Battle of Fort Charlotte|Mobile]] on [[March 14]], [[1780]], and, in May of 1781, [[Battle of Pensacola (1781)|forced the surrender]] of the British outpost at [[Pensacola, Florida]]. On [[May 8]], [[1782]], GÃĄlvez captured the British naval base at New Providence in the Bahamas. Galvez also supplied soldiers to George Rogers Clark and had been supplying substantial quantities of war supplies to the American rebels from as early as 1777.
29187
29188 ===Caribbean===
29189 The [[Battle of the Saintes]] took place in 1782, during the American War of Independence, and was a victory of a [[Kingdom of Great Britain|British]] fleet under Admiral Sir [[George Rodney]] over a [[France|French]] fleet under the [[Comte de Grasse]]. The defeat dashed the hopes of France and Spain to take [[Jamaica]] and other colonies from the British.
29190
29191 ===India===
29192 The Franco-British war spilled over into [[India]] in 1780, in the form of the [[Second Anglo-Mysore War]]. The two chief combatants were [[Tipu Sultan]], ruler of the [[Kingdom of Mysore]] and a key French ally, and the British government of [[Madras Presidency|Madras]]. The Anglo-Mysore conflict was bloody but inconclusive, and ended in a draw at the [[Treaty of Mangalore]] in 1784.
29193
29194 ===Netherlands===
29195 Also in 1780, the British struck against the [[Dutch Republic|United Provinces]] of the [[Netherlands]] in the [[Fourth Anglo-Dutch War]] to preempt Dutch involvement in the [[League of Armed Neutrality]], directed primarily against the British Navy during the war. Agitation by Dutch radicals and a friendly attitude towards the United States by the Dutch government, both influenced by the American Revolution, also encouraged the British to attack.
29196
29197 The war lasted into 1784 and was disastrous to the Dutch mercantile economy.
29198
29199 ===Mediterranean===
29200 On [[February 5]], [[1782]], Spanish and French forces captured [[Minorca]], which had been under British control since the [[Treaty of Utrecht]] in 1713. A further Franco-Spanish effort to recover [[Gibraltar]] was unsuccessful. Minorca was ceded to Spain in the peace treaty.
29201
29202 === Whitehaven ===
29203 An interesting footnote to this war was the actual landing on [[Britain]] itself of a ship from the U.S. [[Navy]]. This occurred in 1778 when the port of [[Whitehaven]] in [[Cumberland]] was raided by [[John Paul Jones]]. The landing was a surprise attack, taken as an action of revenge by Jones, and was never intended as an invasion. Nevertheless, it caused hysteria in [[England]], with the attack showing a weakness that could be exploited by other states such as [[France]] or [[Spain]]. Its result was an intense period of fortification in British ports.
29204
29205 == War's end ==
29206 The northern, southern, and naval theaters of the war converged at [[Yorktown, Virginia|Yorktown]] in 1781. On [[September 5]], [[1781]], French naval forces defeated the British [[Royal Navy]] at the [[Battle of the Chesapeake]], cutting off Cornwallis's supplies and transport. Washington hurriedly moved his troops from [[New York]], and a combined Franco-American force of 17,000 troops commenced the [[Battle of Yorktown (1781)|Battle of Yorktown]] on [[October 6]], [[1781]]. Cornwallis's position quickly became untenable, and on [[October 19]] his army surrendered. The war was all but over.
29207
29208 [[Image:Yorktown80.JPG|thumb|325px|''Surrender of Cornwallis at Yorktown'' ([[John Trumbull]], 1797). On the right is the American flag, on the left is the French flag (white flag of the monarchy). Despite the painting's title, Cornwallis (claiming illness) was not present and is not depicted. [[George Washington|Washington]] is on horseback in the right background; because the British commander was absent, military protocol dictated that Washington have a subordinate—in this case [[Benjamin Lincoln]]—accept the surrender.]]
29209
29210 [[British Prime Minister]] [[Frederick North, 2nd Earl of Guilford|Lord North]] resigned soon after hearing the news from Yorktown. In April 1782, the [[British House of Commons]] voted to end the war in America. On [[November 30]], [[1782]] preliminary peace articles were signed in [[Paris]]; the formal end of the war did not occur until the [[Treaty of Paris (1783)|Treaty of Paris]] was signed on [[September 3]], [[1783]] and the United States Congress ratified the treaty on [[January 14]], [[1784]]. The last [[Evacuation Day (New York)|British troops left]] [[New York City]] on [[November 25]], [[1783]].
29211
29212 The reasons for Great Britain's misfortunes and defeat may be summarized as follows: Misconception by the home government of the temper and reserve strength of her colonists; disbelief at the outset in the probability of a protracted struggle covering the immense territory in America; consequent failure of the British to use their more efficient military strength effectively; the safe and [[Fabian Strategy|Fabian generalship]] of Washington; and perhaps most significantly, the French alliance and European combinations by which at the close of the conflict left Great Britain without a friend or ally on the continent.
29213
29214 Decisive victory eluded the United States on the western frontier. Great Britain negotiated the Paris peace treaty without consulting her Indian allies, however, and ceded much American Indian territory to the United States. Full of resentment, Native Americans reluctantly confirmed these land cessions with the United States in a series of treaties, but the result was essentially an armed truce—the fighting would be renewed in conflicts along the frontier, the largest being the [[Northwest Indian War]].
29215
29216 ===Casualties===
29217 The total loss of life resulting from the American Revolutionary War is unknown. As was typical in the wars of the era, disease claimed more lives than battle. The war took place in the context of a massive [[smallpox]] [[North American smallpox epidemic|epidemic]] in North America that probably killed more than 130,000 people. Historian [[Joseph J. Ellis]] suggests that Washington's decision to have his troops [[inoculation|inoculated]] may have been the commander-in-chief's most important strategic decision.{{ref|smallpox}}
29218
29219 Casualty figures for the American Revolutionaries have varied over the years; a recent scholarly estimate lists 6,824 killed and 8,445 wounded in action. The number of Revolutionary troop deaths from disease and other non-combat causes is estimated at about 18,500.{{ref|casualties}}
29220
29221 Approximately 1,200 Germans were killed in action and 6,354 died from illness or accident. About 16,000 of the remaining German troops returned home, but roughly 5,500 remained in the United States after the war for various reasons, many becoming American citizens. No reliable statistics exist for the number of casualties among other groups, including American Loyalists, British regulars, American Indians, French and Spanish troops, and civilians.
29222
29223 == See also ==
29224 *[[List of important people in the era of the American Revolution]]
29225 *[[Battles of the American Revolutionary War]]
29226 *[[Intelligence in the American Revolutionary War]]
29227 *[[American Revolution prisoners of war]]
29228 *[[British prison ships (New York)]]
29229 *[[France in the American Revolutionary War]]
29230 *[[Spain in the American Revolutionary War]]
29231 *[[The Netherlands in the American Revolutionary War]]
29232 *[[The Society of the Cincinnati]]
29233 *[[Daughters of the American Revolution]]
29234 *[[Timeline of United States revolutionary history (1760-1789)]]
29235 *[[Newburgh conspiracy]]
29236 *[[List of British Forces in the American Revolutionary War]]
29237 *[[List of Continental Forces in the American Revolutionary War]]
29238 *[[Last surviving United States war veterans]]
29239 *[[South Carolina during the American Revolution]]
29240 *[[New Jersey during the American Revolution]]
29241 *[[Evacuation Day (New York)]]
29242
29243 == Notes ==
29244 &lt;div style=&quot;font-size: 85%&quot;&gt;
29245 #{{note|loyalists}} Percentage of Loyalists and Revolutionaries: Robert M. Calhoon, &quot;Loyalism and Neutrality&quot; in ''The Blackwell Encyclopedia of the American Revolution'', p. 247; number of Loyalist troops: Boatner, p. 663.
29246 #{{note|continental}} Size of Revolutionary armies: Boatner, p. 264.
29247 #{{note|British}} British troop strength: Black, pp. 27-29. Number of Germans hired: Boatner, pp. 424-26.
29248 #{{note|black_loyalists}} British usage of escaped slaves: Kaplan &amp; Kaplan, pp. 71-89.
29249 #{{note|black_patriots}} Revolutionary all-black units: Kaplan &amp; Kaplan, pp. 64-69.
29250 #{{note|warriors}} Total number of warriors: James H. Merrell, &quot;Indians and the new republic&quot; in ''The Blackwell Encyclopedia of the American Revolution'', p. 393. Number of Iroquois warriors: Boatner, p. 545.
29251 #{{note|smallpox}} Smallpox epidemic: Fenn, p. 275. A great number of these smallpox deaths occurred outside the theater of war—in Mexico or among American Indians west of the Mississippi River. Washington and inoculation: Ellis, p. 87.
29252 #{{note|casualties}} Revolutionary dead and wounded: Chambers, p. 849.
29253 &lt;/div&gt;
29254
29255 == References ==
29256 *Black, Jeremy. ''War for America: The Fight for Independence, 1775-1783''. St. Martin's Press (New York) and Sutton Publishing (UK), 1991. ISBN 0312067135 (1991), ISBN 0312123469 (1994 paperback), ISBN 0750928085 (2001 paperpack).
29257 *Boatner, Mark Mayo, III. ''Encyclopedia of the American Revolution.'' New York: McKay, 1966; revised 1974. ISBN 0811705781.
29258 *Chambers, John Whiteclay II, ed. in chief. ''The Oxford Companion to American Military History''. Oxford: Oxford University Press, 1999. ISBN 0195071980.
29259 *Ellis, Joseph J. ''His Excellency: George Washington''. New York: Knopf, 2004. ISBN 1400040310.
29260 *Fenn, Elizabeth Anne. ''Pox Americana: The Great Smallpox Epidemic of 1775-82''. New York: Hill and Wang, 2001. ISBN 0809078201.
29261 *Greene, Jack P. and J.R. Pole, eds. ''The Blackwell Encyclopedia of the American Revolution''. Malden, Massachusetts: Blackwell, 1991; reprint 1999. ISBN 1557865477.
29262 *Kaplan, Sidney and Emma Nogrady Kaplan. ''The Black Presence in the Era of the American Revolution''. Amherst, Massachusetts: The University of Massachusetts Press, 1989. ISBN 0870236636.
29263 *Wood, W. J. ''Battles of the Revolutionary War, 1775-1781''. Originally published Chapel Hill, N.C.: Algonquin, 1990; reprinted by Da Capo Press, 1995. ISBN 0306806177 (paperback); ISBN 0306813297 (2003 paperback reprint).
29264
29265 ==Further reading==
29266 *[http://www.americanrevolution.org/navindex.html Allen, Gardner W. ''A Naval History of the American Revolution'' (1913)]
29267 *Black, Jeremy. ''War for America: The Fight for Independence, 1775-1783''. (1991), British viewpoint
29268 *Boatner, Mark Mayo, III. ''Encyclopedia of the American Revolution.'' New York: McKay, 1966; revised 1974. ISBN 0811705781.
29269 * Buchanan, John. ''The Road to Valley Forge: How Washington Built the Army That Won the Revolution'' (2004)
29270 * Fischer, David Hackett. ''Washington's Crossing'' (2004), Pulitzer prize-winning narrative of 1776-77
29271 * Higginbotham, Don. ''The War of American Independence: Military Attitudes, Policies, and Practice, 1763-1789'' (1983) Online in ACLS History E-book Project; overview of military topics
29272 *Kwasny, Mark V. ''Washington's Partisan War, 1775-1783'' (1996)
29273 *McCullough, David. ''1776'' (2005).
29274 *Mackesy, Piers. ''The War for America: 1775-1783'' (1992), British viewpoint.
29275 *Middlekauff, Robert. ''The Glorious Cause: The American Revolution, 1763-1789'' (1984)]
29276 *Miller, John C. ''Triumph of Freedom, 1775-1783'' (1948)
29277 *Schecter, Barnet. [http://www.thebattlefornewyork.com/''The Battle for New York - The City at the Heart of the American Revolution''] (2002) - The largest military venture of the entire war, and the British albatross
29278 *Thayer, Theodore. ''Nathanael Greene: Strategist of the American Revolution'' (1960)
29279 *Unger. Harlow Giles. ''Lafayette'' (2002)
29280 *Valentine; Alan. ''Lord George Germain'' (1962), the British War Minister
29281 *Ward, Christopher. ''The War of the Revolution'' (2 vol 1952), battle history
29282 *Weintraub, Stanley. ''Iron Tears: America's Battle for Freedom, Britain's Quagmire: 1775-1783'' (2005).
29283
29284 ==External links==
29285 *[http://www.dean.usma.edu/history/web03/atlases/american%20revolution/american%20revolution%20index.htm Battlefield atlas of the American Revolution] West Point Atlas
29286 *[http://members.aol.com/_ht_a/historiography/saratoga.html Histories of the Battle of Saratoga, 1777]
29287 *[http://users.snowcrest.net/jmike/amrevmil.html American Revolutionary War History Resources]
29288 *[http://www.army.mil/cmh-pg/reference/revbib/revwar.htm Entry to US Army Center for Military History, a huge bibliography]
29289 *[http://www.americanrevolution.org/hispanic.html Spain's role in the American Revolution from the Atlantic to the Pacific Ocean]
29290 *[http://www.americanrevolution.com/AfricanAmericansInTheRevolution.htm African-American soldiers in the Revolution]
29291 *[http://www.besthistorysites.net/USHistory_Independence.shtml American Revolution &amp; Independence]
29292
29293 [[Category:American Revolutionary War]]
29294 [[Category:National liberation movements]]
29295 [[Category:Rebellion]]
29296
29297 [[bn:āĻ†āĻŽā§‡āĻ°āĻŋāĻ•āĻžāĻ¨ āĻŦāĻŋāĻĒā§āĻ˛āĻŦ]]
29298 [[da:USA's uafhÃĻngighedskrig]]
29299 [[de:Amerikanischer Unabhängigkeitskrieg]]
29300 [[eo:Usona Revolucio]]
29301 [[es:Guerra de la Independencia de los Estados Unidos]]
29302 [[fi:Yhdysvaltain vapaussota]]
29303 [[fr:Guerre d'indÊpendance des États-Unis d'AmÊrique]]
29304 [[ga:Cogadh RÊabhlÃŗideach MheiriceÃĄ]]
29305 [[he:מלחמ×Ē ה×ĸ×Ļמאו×Ē של אר×Ļו×Ē הברי×Ē]]
29306 [[id:Perang Revolusi Amerika]]
29307 [[is:Bandaríska frelsisstríðið]]
29308 [[it:Guerra di indipendenza americana]]
29309 [[ja:ã‚ĸãƒĄãƒĒã‚Ģį‹ŦįĢ‹æˆĻäē‰]]
29310 [[ko:미ęĩ­ 독ëĻŊė „ėŸ]]
29311 [[nl:Amerikaanse Onafhankelijkheidsoorlog]]
29312 [[pl:Rewolucja amerykańska]]
29313 [[pt:Guerra da IndependÃĒncia dos Estados Unidos da AmÊrica]]
29314 [[sk:AmerickÃĄ vojna za nezÃĄvislosÅĨ]]
29315 [[sv:Amerikanska revolutionen]]
29316 [[zh:įžŽåœ‹į¨įĢ‹æˆ°įˆ­]]</text>
29317 </revision>
29318 </page>
29319 <page>
29320 <title>Ampere</title>
29321 <id>772</id>
29322 <revision>
29323 <id>40770189</id>
29324 <timestamp>2006-02-22T22:27:40Z</timestamp>
29325 <contributor>
29326 <username>DV8 2XL</username>
29327 <id>146684</id>
29328 </contributor>
29329 <comment>Revert to revision 39416945 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
29330 <text xml:space="preserve">:''For the different meanings of [[Ampère]], see the disambiguation page.''
29331 ----
29332
29333 The '''ampere''' (symbol: A) is the [[SI base unit]] of [[electric current]] equal to one [[coulomb]] per second. It is named after [[AndrÊ-Marie Ampère]], one of the main discoverers of [[electromagnetism]].
29334
29335 ==Definition==
29336 The ampere is that constant current which, if maintained in two straight parallel conductors of infinite length, of negligible circular cross-section, and placed 1 [[metre]] apart in vacuum, would produce between these conductors a force equal to 2{{e|–7}} [[newton]] per metre of length.
29337
29338 ==Explanation==
29339 Because it is a base unit, the definition of the ampere is not tied to any other electrical unit. The definition for the ampere is equivalent to fixing a value of the [[Permeability (electromagnetism)|permeability]] of vacuum to ''&amp;mu;''&lt;sub&gt;0&lt;/sub&gt; = 4&amp;pi;{{e|&amp;minus;7}} H/m. Prior to 1948, the so-called &quot;international ampere&quot; was used, defined in terms of the [[electrolysis|electrolytic]] deposition rate of [[silver]]. The older unit is equal to 0.999&amp;nbsp;85&amp;nbsp;A.
29340
29341 The ampere is most accurately realised using an [[ampere balance]], but is in practice maintained via [[Ohm's Law]] from the units of [[voltage]] and [[electrical resistance|resistance]], the [[volt]] and the [[ohm]], since the latter two can be tied to physical phenomena that are relatively easy to reproduce, the [[Josephson junction]] and the [[quantum Hall effect]], respectively.
29342
29343 The unit of [[electric charge]], the [[coulomb]], is defined in terms of the ampere: one coulomb is the amount of electric charge (formerly [[quantity of electricity]]) carried in a current of one ampere flowing for one [[second]]. [[Current (electricity)]], then, is the rate at which charge flows through a wire or surface. One ampere of current (I) is equal to a flow of one [[coulomb]] of charge (Q) per second of time (t):
29344
29345 :&lt;math&gt;\mathrm{I=Q/t} \,&lt;/math&gt;
29346
29347 Since a coulomb is approximately equal to 6.24{{e|18}} elementary charges, one ampere is equivalent to 6.24{{e|18}} elementary charges, such as [[electron]]s, moving through a surface in one second. More precisely, using the SI definitions for the conventional values of the [[Josephson constant|Josephson]] and [[von Klitzing constant|von Klitzing]] constants, the ampere can be defined as exactly 6.241&amp;nbsp;509&amp;nbsp;629&amp;nbsp;152&amp;nbsp;65{{e|18}} elementary charges per second.
29348
29349
29350 ==See also==
29351 *[[SI]]
29352 *[[Ohm's Law]]
29353 *[[Electric shock]]
29354
29355 ==External links==
29356 *[http://alpha.montclair.edu/~kowalskiL/SI/SI_PAGE.HTML A short history of the SI units in electricity]
29357
29358 [[Category:SI base units]]
29359 [[Category:Units of electrical current]]
29360
29361 [[ar:ØŖŲ…بŲŠØą]]
29362 [[bg:АĐŧĐŋĐĩŅ€]]
29363 [[br:Amper]]
29364 [[ca:Ampere]]
29365 [[cs:AmpÊr]]
29366 [[da:Ampere]]
29367 [[de:Ampere]]
29368 [[et:Amper]]
29369 [[es:Amperio]]
29370 [[eo:Ampero]]
29371 [[eu:Anpere]]
29372 [[fr:Ampère]]
29373 [[gl:Ampere]]
29374 [[ko:ė•”페ė–´]]
29375 [[hr:Amper]]
29376 [[id:Ampere]]
29377 [[it:Ampere]]
29378 [[he:אמפר]]
29379 [[lv:Ampērs]]
29380 [[lt:Amperas]]
29381 [[nl:Ampère]]
29382 [[ja:ã‚ĸãƒŗペã‚ĸ]]
29383 [[no:Ampere]]
29384 [[nn:Ampere]]
29385 [[pl:Amper]]
29386 [[pt:Ampère]]
29387 [[ru:АĐŧĐŋĐĩŅ€]]
29388 [[sq:Amperimetri]]
29389 [[sk:AmpÊr]]
29390 [[sl:Amper]]
29391 [[sr:АĐŧĐŋĐĩŅ€]]
29392 [[fi:Ampeeri]]
29393 [[sv:Ampere]]
29394 [[tr:Amper]]
29395 [[uk:АĐŧĐŋĐĩŅ€]]
29396 [[zh:厉埚]]</text>
29397 </revision>
29398 </page>
29399 <page>
29400 <title>Glossary of American football</title>
29401 <id>773</id>
29402 <revision>
29403 <id>41332303</id>
29404 <timestamp>2006-02-26T17:25:28Z</timestamp>
29405 <contributor>
29406 <username>Jcam</username>
29407 <id>273771</id>
29408 </contributor>
29409 <minor />
29410 <comment>3-3 stack</comment>
29411 <text xml:space="preserve">__NOTOC__
29412
29413 The following terms are used in [[American football]] and [[Canadian football]]. See also: [[wiktionary:Category:Football (American)]]
29414
29415 ==See also==
29416 *[[American football|Football]]
29417 *[[Football strategy]]
29418
29419 {{compactTOC2}}
29420
29421 ==0–9==
29422 ;''n''-''m'' defense:a defense with ''n'' down linemen and ''m'' linebackers, such as:
29423
29424 :;3-3: a defense with 3 lineman, 3 linebackers, and 5 defensive backs. Often called a '''3-3 stack.'''
29425 :;3-4 defense:a [[defensive team | defensive]] formation with 3 [[lineman (football)|linemen]] and 4 linebackers. A professional derivative in the 1970's of the earlier [[University of Oklahoma|Oklahoma]] or '''&quot;50&quot; defense''', which had 5 linemen and 2 linebackers. The 3-4 outside linebackers resemble &quot;stand-up ends&quot; in the older defense.
29426 :;4-3 defense:a defensive formation with 4 linemen and 3 linebackers. Several variations are employed. First used by coach [[Joe Kuharich]].
29427 :;4-6 defense :(pronounced ''four-six defense'') a defense with four (4) down linemen and six (6) linebackers
29428 ;[[46 defense]] :(pronounced ''forty-six defense'') a formation of the 4-3 defense (four linemen and three linebackers) in which three defensive backs (the two cornerbacks and the strong safety) crowd the line of scrimmage. The remaining safety, which is the free safety, stays in the backfield. It is also known as the &quot;Bear&quot; defense because it was popularized by [[Buddy Ryan]] while coaching for the [[Chicago Bears]]. Not to be confused with the 4-6 (four-six) defense.
29429 ;50 defense :a once popular college defense with 5 defensive linemen and 2 linebackers.
29430
29431 ==A==
29432 ;audible: (from [[Latin]] ''aud&amp;#299;re'' = to hear, to listen to) a play called by the quarterback at the line of scrimmage to change the play that was called in the huddle.
29433 ;automatic :see [[#A|audible]]
29434 ;automatic first down: for several of the most severe penalties, including '''pass interference''' and all personal fouls, a first down is rewarded to the offensive team even if the yardage of that penalty is less than the yardage needed for a first down.
29435
29436 ==B==
29437 ;back :A [[American and Canadian football position names|position]] behind the offensive line, or behind the linebackers on defense.
29438 ;[[blitz (American football)|blitz]] :a defensive maneuver in which one or more linebackers or defensive backs, who normally remain behind the line of scrimmage, instead charge into the opponents' backfield. However, in the 3-4 defense, one linebacker typically rushes the passer with the three down linemen. This is not considered a blitz. If an additional linebacker is sent, bringing the total number of rushers to five, it is a blitz.
29439 ;[[blocking (American football)|blocking]] :when a player obstructs another player's path with his body.
29440 ;[[bootleg play|bootleg]] :an offensive play predicated upon misdirection in which the quarterback pretends to hand the ball to another player, and then carries the ball in the opposite direction of the supposed ballcarrier with the intent of either passing or running (sometimes the quarterback has the option of doing either). A '''naked bootleg''' is a risky variation of this play when the quarterback has no blockers pulling out with him. Contrast with '''scramble''', '''sneak''', and '''draw'''
29441 ;the box :an area on the defensive side of the ball, directly opposite the offensive linemen and about 5 yards deep; having 8 players in the box means bringing in a defensive back, normally the strong safety, to help stop the offensive team's running game
29442
29443 ==C==
29444 ;[[Center (American football)|center]] :a player [[American and Canadian football position names|position]] on [[offensive team|offense]]. The center snaps the ball.
29445 ;centre :Canadian &quot;center&quot;
29446 ;chains :the 10-yard long chain that is used by the [[chain crew]] to measure for a new series of downs.
29447 ;check-off: see [[#A|audible]]
29448 ;chuck and duck : a style of offense with minimal pass protection requiring the Quarterback to &quot;chuck&quot; the ball then &quot;duck&quot; to avoid a defensive lineman.
29449 ;clipping :an illegal block in which the victim is blocked from the back and below the waist; the penalty is 15 yards. Originally, clipping was defined as any block from the back, but is now restricted to blocks below the waist. Other blocks from the back are now punished with 10-yard penalties.
29450 ;coffin corner :the corner of the field of play. A punter, if he is close enough, will often attempt to kick the ball out of bounds close to the receiving team's goal line and pin them back near their own end zone.
29451 ;contain :a defensive assignment. On outside runs such as the sweep, one defensive player (usually a [[cornerback]] or outside linebacker) is assigned to keep the rusher from getting to the edge of the play and turning upfield. If executed properly, the rusher will have to turn upfield before the play calls for it, giving the linebackers a better chance of stopping the play for little or no gain.
29452 ;[[cornerback]] (CB):a [[defensive back]] who lines up near the line of scrimmage across from a '''wide receiver'''. Their primary job is to disrupt passing routes and to defend against short and medium passes in the passing game, and to contain the rusher on rushing plays.
29453 ;counter :a running play in which the running back will take a step in the apparent direction of the play (ie, the direction the line is moving), only to get the handoff in the other direction. '''Weak side''' linemen will sometimes '''pull''' and lead the back downfield (sometimes called a '''counter trap'''), but not necessarily. The play is designed to get the defense to flow away from the action for a few steps as they follow the linemen, allowing more room for the running back.
29454 ;crackback block :an illegal block delivered below the opponent's waist by an offensive player who had left the area of close line play and then returned to it, or was not within it at the snap. The term is also used to describe a legal block (delivered from the front, or from the side with the offensive player's helmet in front of the blocked player) by a wide receiver on a player who lined up inside of him.
29455 ;cut
29456 # a sharp change of direction by a running player. Also called a [[Cutback (football move)|cutback]].
29457 # see &quot;cut blocking&quot; below
29458 ;cut blocking: a blocking technique in which offensive linemen, and sometimes other blockers, block legally below the waist (i.e., from the front of the defensive player) in an attempt to bring the defenders to ground, making them unable to pursue a running back for the short time needed for the back to find a gap in the defense. The technique is somewhat controversial, as it carries a risk of serious leg injuries to the blocked defenders. The [[NFL]]'s [[Denver Broncos]] are especially famous (or infamous) for using this technique.
29459
29460 ==D==
29461 ;[[dead ball]] :a ball which is no longer in play.
29462 ;[[defensive back]] :a cornerback or safety [[American_and_Canadian_football_position_names|position]] on the defensive team; commonly defends against wide receivers on passing plays. Generally there are 4 defensive backs playing at a time; but see '''nickel back''' and '''dime back'''.
29463 ;[[defensive end]] (DE):a player [[American_and_Canadian_football_position_names|position]] on [[defensive team| defense]] who lines up on the outside of the defensive line.
29464 ;[[defensive tackle]] (DT):a player [[American_and_Canadian_football_position_names|position]] on [[defensive team| defense]] on the inside of the defensive line. When a defensive tackle lines up directly across from the center, he is known often as a [[nose tackle]].
29465 ;[[defensive team]] :the team that begins a play from scrimmage not in possession of the ball.
29466 ;[[dime back]] :the second extra, or sixth total, defensive back. Named because a [[dime (U.S. coin)|dime]] has the same value as two [[nickel (U.S. coin)|nickel]]s.
29467 ;double reverse: a play in which the ball reverses direction twice behind the line of scrimmage. This is usually accomplished by means of two or three hand-offs, each hand-off going in an opposite direction as the previous one. Such a play is extremely infrequent in football.
29468
29469 :Some people confuse the ''double reverse'' with a ''reverse'', which is a play with two hand-offs instead of three.
29470 ;[[down (football)| down]] :one of a series of plays in which the offensive team must advance at least 10 yards or lose possession. '''First down''' is the first of the plays; fourth is the last down in American, and third in Canadian, football. A first down occurs after a change of possession of the ball, after advancing the ball 10 yards following a previous first down or after certain penalties.
29471 ;down lineman: a player stationed in front of his line of scrimmage and who has either one (three-point stance) or two (four-point stance) hands on the ground.
29472 ;[[draw play]] :a play in which the quarterback drops back as if to pass, then hands off to a running back or runs with the ball himself. Contrast with '''scramble'''
29473 ;drive
29474 *A continuous set of offensive plays gaining substantial yardage and several first downs, usually leading to a scoring opportunity.
29475 *A blocking technique - &quot;drive block&quot; - in which an offensive player through an advantaged angle or with assistance drive a defensive player out of position creating a hole for the ball carrier.
29476 ;[[drop kick]] :a kick in which the ball is dropped and kicked once it hits the ground and before it hits it again; a half-volley kick.
29477
29478 ==E==
29479 ;[[eligible receiver]]s :players who may legally touch a forward pass. On the passer's team, these are: the '''ends''' (see below), the '''backs''', and (except in the NFL), one player in position to take a hand-to-hand '''snap''', i.e. a T '''quarterback'''; provided the player's shirt displays a number in the ranges allowed for eligible receivers. All players of the opposing team are eligible receivers, and once the ball is touched by a player of the opposing team (anywhere in American, or beyond the lines of scrimmage in Canadian football), all players become eligible.
29480 ;encroachment: an illegal action by a player: to cross the [[line of scrimmage]] and make contact with an opponent before the ball is snapped, or to line up offside and remain there when the ball is put in play.
29481 ;[[End (football)|end]] :a player [[American and Canadian football position names|position]], either on [[offensive team| offense]] or [[defensive team| defense]] -- see '''linemen'''.
29482 ;[[end zone]] :the area between the end line (or deadline in Canadian amateur football) and the goal line, bounded by the sidelines.
29483 ;[[extra point]] :a single point scored in a conversion attempt by making what would be a field goal or a safety during general play.
29484
29485 ==F==
29486 ;[[fair catch]] :An unhindered catch of an opponent's kick. The player wanting to make one must signal for a fair catch by waving an arm overhead while the ball is in the air. After that signal, if he gains possession of the ball it is dead immediately and opponents will receive a fifteen yard penalty for hitting him.
29487 ;[[fantasy football (American)]] :A game in which the participants (called &quot;owners&quot;) each draft on their own or with the aid of software [http://www.thecoordinator.com] a team of real-life NFL players and then score points based on those players' statistical performance on the field.
29488 ;field of play: the area between both the goal lines and the sidelines, and in some contexts the space vertically above it.
29489 ;[[field goal]] :score of 3 points made by place- or drop-kicking the ball through the opponent's goal other than via a kickoff or free kick following a safety; formerly, &quot;goal from the field&quot;.
29490 ;flanker :a player [[American_and_Canadian_football_position_names|position]] on offense. A wide receiver who lines up 1 or more yards off the line of scrimmage outside of another receiver.
29491 ;flat :an area on the field between the line of scrimmage and 10 yards into the defensive backfield, and within 15 yards of the sideline. Running backs often run pass routes to the flat when they are the safety valve receiver.
29492 ;[[flea flicker (American football)|Flea flicker]] :a trick play in which a [[running back]] laterals the ball back to the [[quarterback]], who then throws a pass to a [[wide receiver]] or [[tight end]].
29493 ;formation :An arrangement of the offensive skill players. A formation usually is described in terms of how the running backs line up (e.g. [[I formation]], which refers to the half back is lined up about 7 yard deep, and the fullback is lined up about 5 yards deep, both directly behind the quarterback) or how the wide receivers line up (e.g. Trips left, in which three wide receivers line up to the left of the linemen). Frequently, the formation will allude to both, such as with Strong I Slot Right, in which the halfback is lined up 7 yards deep behind the quarterback, the fullback is 5 yards deep behind the guard or tackle on the strong side, and both wide receivers are lined up on the right side of the offensive line.There are rules limiting what is legal in a formation. All five offensive linemen must be on the line of scrimage (a small amount of leeway is given to tackles when lined up for pass protection). Also, there must be one receiver (usally one tight end and one wide receiver) lined up on the line on either side of the offensive line (it doesn't matter how close they are to the tackles, as long as they are on the line). A receiver who is on the line may not go in motion.
29494 ;[[forward pass]] :a pass that touches a person, object, or the ground closer to the opponent's end line than where it was released from, or is accidentally lost during a forward throwing motion.
29495 ;four-point stance: a down lineman's stance with four points on the ground, in other words, his two feet and his two hands
29496 ;free kick :a kick made to put the ball in play as a kickoff or following a safety (the score; &quot;safety touch&quot; in Canadian football) or fair catch.
29497 ;free safety (FS):a player [[American_and_Canadian_football_position_names|position]] on [[defensive team|defense]]. Free safeties typically play deep, or &quot;center field&quot;, and often have the pass defense responsibility of assisting other defensive backs in deep coverage (compared to strong safeties, who usually have an assigned receiver and run support responsibilities).
29498 ;[[fullback#American_football|fullback]] (FB):a player [[American_and_Canadian_football_position_names|position]] on [[offensive team| offense]]. Originally, lined up deep behind the '''quarterback''' in the '''T formation'''. In modern formations this position may be varied, and this player has more blocking responsibilities in comparison to the '''halfback''' or '''tailback'''.
29499 ;[[fumble]] :a ball that a player accidentally lost possession of; in Canadian football the term includes muffs.
29500
29501 ==G==
29502 ;[[Goal line|goal]] :a surface in space marked by a structure of two upright posts 18 feet 6 inches apart extending above a horizontal crossbar whose top edge is 10 feet off the ground. The goal is the surface above the bar and between the lines of the inner edges of the posts, extending infinitely upward, centered above each end line in American, and each goal line in Canadian football.
29503 ;goal area :the end zone in Canadian professional football.
29504 ;[[goal line]] :the front of the [[end zone]].
29505 ;gridiron :a football field, so called for its markings.
29506 ;[[Guard (American football)|guard]] :one of two player [[American and Canadian football position names|positions]] on [[offensive team| offense]] -- see '''linemen'''. A 5-player defensive line will have one, and a defensive line of 6 or more players, two guards, while a defensive line of fewer than 5 players has no guard.
29507
29508 ==H==
29509 ;[[Hail Mary pass|Hail Mary]] :a long pass play, thrown towards a group of receivers near the '''end zone''' in hope of a '''touchdown'''. Used by a team as a last resort as time is running out in either of two halfs (usually by a team trailing in the second half). Refers to the [[Roman Catholic Church|Catholic]] prayer.
29510 ;halfback :a player [[American and Canadian football position names|position]] on [[offensive team| offense]]. Also known as a '''tailback'''.
29511 ;[[halfback option play]] :a trick play in which the halfback throws a pass.
29512 ;halo violation : From 1983 until the end of the 2002 season, in the NCAA (college football) the halo rule was a penalty for interference with the opportunity to catch a kick. The so called '''halo''' rule stated that no player of the kicking team may be within two yards of a receiving team player positioned to catch a punt or kickoff (before that person has touched the ball). The rule was abolished beginning in the 2003 season.
29513 ;hand-off :(also known as backward pass) a player's handing of a live ball to another player. The hand-off goes either backwards or laterally, as opposed to a forward pass. Sometimes called a &quot;switch&quot; in touch football. (Note different usage of term from its rugby meaning.)
29514 ;hash marks :lines between which the ball begins each play. The lines are parallel to and a distance in from the side lines and marked as broken lines.
29515 ;[[H-back]] :a player listed in a [[roster]] or [[depth chart]] as a [[fullback]] and playing as a ''h''ybrid of a fullback and a [[tight end]]
29516 ;[[Holder (American football)|holder]] :a player who holds the ball upright for a place kick. Often backup quarterbacks are used for their superior ball-handling ability
29517 ;holding :there are two kinds of holding: offensive holding, illegally blocking a player from the opposing team by grabbing and holding his uniform or body; and defensive holding, called against defensive players who impede receivers who are more than 5 yards from the line of scrimmage, but who are not actively making an attempt to catch the ball (if the defensive player were to impede an offensive player in the act of catching the ball, that would be the more severe penalty of pass interference)
29518 ;huddle :an on-field gathering of members of a team in order to secretly communicate instructions for the upcoming play.
29519
29520 ==I==
29521 ;[[I formation]] :A formation that includes a '''fullback''' and '''tailback''' lined up with the fullback directly in front of the tailback. If a third back is in line, this is referred to as a &quot;full house I&quot;. If the third back is lined up along side the fullback, it is referred to as a &quot;Power I&quot;.
29522 ;[[incomplete pass]] :a forward pass of the ball which no player legally caught.
29523 ;inbounds lines :the hash marks.
29524 ;inside :
29525 # of a player's path: relatively close (in reference to the sides of the field) to where the ball was snapped from. Thus, a ballcarrier's path in crossing the neutral zone may be said to be &quot;inside&quot; of an opponent, or an &quot;inside run&quot; in general, and a rushing defensive player may be said to put on an &quot;inside move&quot; or &quot;inside rush&quot;.
29526 # of the movement of the ball between players: directed toward a player who cuts between a player in the backfield who throws or hands the ball and the place from which it was snapped. Thus, an &quot;inside pass&quot; or &quot;inside handoff&quot;. An &quot;inside reverse&quot; (sometimes called a scissors play) is a reverse play via an inside handoff.
29527 ;intentional grounding :An illegal forward pass thrown beyond the line of scrimmage without an intented reciever and no chance of completion to any offensive player. Intentional grounding is not called in the case of a '''spike''' or if the quarterback was outside the '''tackle box''' at the time of the pass.
29528 ;[[interception]] :the legal catching of a forward pass thrown by an opposing player.
29529
29530 ==J==
29531 ;[[I formation#Common variations|Jumbo]] :an offensive package which includes two tight ends, a full back and a half back. Similar to '''heavy jumbo''', in which either the half back or the fullback is replaced by another tight end. Often one or more of the &quot;tight ends&quot; is actually a linebacker (The New England Patriots use Mike Vrabel this way - he has 6 career regular season TDs) or offensive linemen. In these cases, the player must report in as an eligible receiver, whereas a tight end is assumed to be one.
29532
29533 ==K==
29534 ;kick :as a verb, to strike the ball deliberately with the foot; as a noun, such an action producing a [[Punt kick|punt]], [[place kick]], or [[drop kick]]
29535 ;[[Kickoff (American football)|kickoff]] :a free kick which starts each half, or restarts the game following a touchdown or field goal. The kickoff may be a place kick in American or Canadian football, or a drop kick in American football.
29536 ;kick returner :a player on the receiving team who specializes in fielding kicks and running them back.
29537 ;[[Quarterback kneel|kneel-down]] :a low risk play in which the quarterback kneels down after receiving the snap, ending the play. Used to run out the clock.
29538
29539 ==L==
29540 ;[[lateral pass|lateral]] :a pass thrown to the side or backward. Also called &quot;backward pass&quot; in American football, &quot;onside pass&quot; in Canadian football.
29541 ;[[line of scrimmage]]/scrimmage line :one of two vertical planes parallel to the goal line when the ball is to be put in play by scrimmage. For each team in American football, the line of scrimmage is through the point of the ball closest to their end line. The two lines of scrimmage are called ''offensive line of scrimmage'' and ''defensive line of scrimmage''
29542
29543 :In [[Canadian football]], the line of scrimmage of the [[defensive team]] is one yard their side of the ball.
29544 ;line to gain :a line parallel to the goal lines, such that having the ball dead beyond it entitles the offense to a new series of downs, i.e. a new &quot;first down&quot;. The line is 10 yards in advance of where the ball was to be snapped for the previous first down.
29545 ;[[linebacker]] :a player [[American and Canadian football position names|position]] on [[defensive team| defense]]. The linebackers typically play 1 to 3 yards behind the defensive '''linemen''' and have both run and pass defense responsibilities. However they are often called on to '''blitz''', and in some formations a linebacker may be designated as a &quot;rush linebacker&quot;, rushing the passer on almost every play.
29546 ;[[lineman (football)|lineman]] :a [[defensive team|defensive]] or [[offensive team|offensive]] [[American and Canadian football position names|position]] on the line of scrimmage.
29547 *On offense, the player snapping the ball is the '''center'''. The players on either side of him are the '''guard'''s, and the players to the outside of him are the '''tackle'''s. The players on the end of the line are the '''end'''s. This may be varied in an '''unbalanced line'''.
29548 *On defense, the outside linemen are '''end'''s, and those inside are '''tackle'''s. If there are 5 or 6 linemen, the inner most linemen are known as '''guard'''s. This is rare in professional football except for goal-line defense, but is sometimes seen in high school or college.
29549 ;live ball :any ball that is in play, whether it is a player's possession or not. The ball is live during plays from scrimmage and free kicks, including kickoffs.
29550 ;[[long snapper]] :a center who specializes in the long, accurate [[snap (football)|snap]]s required for punts and field goal attempts. Most teams employ a specialist long snapper instead of requiring the normal center to perform this duty.
29551 ;loose ball :any ball that is in play and not in a player's possession. This includes a ball in flight during a lateral or forward pass.
29552
29553 ==M==
29554 ;man coverage :same as man-to-man coverage
29555 ;man-in-motion :a player on offense who is moving backwards or parallel to the line of scrimmage just before the snap. In American football, only one offensive player can be in motion at a time, cannot be moving toward the line of scrimmage at the snap, and may not be a player who is on the line of scrimmage. In Canadian football, more than one back can be in motion, and may move in any direction as long as they are behind the line of scrimmage at the snap.
29556 ;man-to-man coverage :a defense in which all players in pass coverage, typically linebackers and defensive backs, cover a specific player. Pure man coverage is very rare; defenses typically mix man and zone coverage.
29557 ;mike :the ''m''iddle linebacker.
29558 ;mo :the other middle linebacker in a 3-4 formation.
29559 ;muff :a loose ball that is dropped or mishandled while the player is attempting to gain possession.
29560
29561 ==N==
29562 ;[[National Football League]] :the largest professional American football league.
29563 ;[[neutral zone (American football)|neutral zone]] :the region between the lines of scrimmage or between the free kick restraining lines
29564 ;[[National Football League|NFL]] :the National Football League
29565 ;[[nickel back]] :an extra, or fifth, defensive back. Named after the coin, worth five cents. Popularized by the [[Miami Dolphins]] in the 1970s, now common.
29566 ;[[no-huddle offense]] :a tactic wherein the offense quickly forms near the line of scrimmage without huddling before the next play.
29567 ;[[nose tackle]] :a tackle in a 3-man defensive line who lines up &quot;opposite the '''center''''s nose&quot;.
29568
29569 ==O==
29570 ;[[offensive team]] :the team with possession of the ball
29571 ;offside :
29572 *an infraction of the rule that requires both teams to be on their own side of their restraining line as or before the ball is put play. Offside is normally called on the defensive team.
29573 *in Canadian football, at the time a ball is kicked by a teammate, being ahead of the ball, or being the person who held the ball for the place kick
29574 ;one back formation :a formation where the '''offensive team''' has one '''running back''' in the backfield with the '''quarterback'''. Other '''eligible receivers''' are near the '''line of scrimmage'''.
29575 ;[[onside kick]] :a play in which the kicking team tries to recover the kicked ball.
29576 ;[[Option offense|option]] :
29577 *Usually, a type of play in which the quarterback has the option of handing off, keeping, or laterally passing to one or more backs. Often described by a type of formation or play action, such as triple option, veer option, or counter option. Teams running option plays often specialize in them.
29578 *Less often, a play in which a back may either pass or run
29579 ;outside :opposite of '''inside'''
29580
29581 ==P==
29582 ;package :the group of players on the field for a given play. For example, the Nickel Package substitutes a cornerback for either a linebacker or a defensive lineman (the latter is referred to as a 3-3-5 Nickel), or the Jumbo package substitutes a wide receiver with a tight end.
29583 ;[[pass interference]] :when a player illegally hinders an eligible receiver's opportunity to catch forward pass.
29584 ;passing play: a play in which a forward pass is made
29585 ;[[placekicker|place kick]] :kicking the ball from where it has been placed stationary on the ground or, where legal, on a tee.
29586 ;[[football play|play]]
29587 :the action between the '''snap''' of the ball, and the end of play signaled by the official's whistle for a '''tackle''' or out of bounds
29588 :the plan of action the offensive team has for each snap, for example a running play or pass play
29589 ;[[play action pass|play action]]
29590 : a tactic in which the quarterback fakes either a handoff or a throw in order to draw the defense away from the intended offensive method
29591 ;[[play clock]]: a timer used to increase the pace of the game between plays. The offensive team must [[Snap (American football)|snap]] the ball before the time expires. Currently, the [[National Football League|NFL]] uses 40 seconds (25 seconds after a time out).
29592 ;playing field: see [[#F|field of play]]
29593 ;pocket :an area on the offensive side of the line of scrimmage, where the offensive linemen attempt to prevent the defensive players from reaching the quarterback during passing plays
29594 ;[[American and Canadian football position names|position]] :a place where a player plays relative to teammates, and/or a role filled by that player
29595 ;prevent defense :a defensive strategy that utilizes deep zone coverage in order to prevent a big pass play from happening downfield, usually at the expense of giving up yards at shorter distances. Often used against '''hail mary''' plays, or at the end of the game when the defending team is protecting a lead. Disparaged by many fans. John Madden, legendary player, coach, and commentator, has been quoted as saying, &quot;The only thing a prevent defense prevents is a win.&quot;
29596 ;pulling :a term used to describe an offensive lineman who, instead of blocking the player in front of him, steps back and moves down the line(&quot;pulls&quot;) to block another player, usually in a &quot;trap&quot; or &quot;sweep.&quot;
29597 ;[[punt (football)|punt]] :a kick in which the ball is dropped and kicked before it reaches the ground. Used to give up the ball to the opposition after offensive '''downs''' have been used, as far down the field as possible.
29598 ;[[punter (football position)|punter]] :a kicker who specializes in punting as opposed to place kicking.
29599
29600 ==Q==
29601 ;[[quarterback]] (QB):an [[offensive team|offensive]] player who lines up behind the [[center (football)|center]], from whom he takes the [[snap (football)|snap]].
29602 ;[[quick kick]] :an unexpected punt.
29603
29604 ==R==
29605 ;[[wide receiver|receiver]] :a wide receiver.
29606 ;[[reception (American football)|reception]] :when a player catches (receives) the ball.
29607 ;red dog :a blitz.
29608 ;red zone :the area between the 20 yard line and the goal of the defensive team.
29609 ;referee (R): the official who directs the other officials on the field, He is one of seven officials.
29610 ;restraining line :a team's respective line of scrimmage
29611 :at a free kick, the line the ball is to be kicked from (for the kicking team), or a line 10 yards in advance of that (for the receiving team)
29612 ;[[Reverse (American football)|reverse]] :an offensive play in which a ballcarrier going toward one side of the field hands or tosses the ball to a teammate who is running in the opposite direction (if the second ballcarrier is an end, it is an &quot;end around&quot;).
29613 ;[[Run &amp; Shoot|run and shoot]] :an [[Offensive philosophy (American football)|offensive philosophy]] designed to force the defense to show its hand prior to the snap of the ball by splitting up receivers and sending them in motion. Receivers run patterns based on the play of the defenders, rather than a predetermined plan.
29614 ;[[running back]]
29615 :a player position on offense. Although the term usually refers to the halfback or tailback, fullbacks are also considered runningbacks.
29616 ;running play: a play where the offense attempts to advance the ball without passing.
29617 ;[[rush (American football) | rush]] :trying to tackle or hurry a player before he can throw a pass or make a kick
29618 :a running play
29619
29620 ==S==
29621 ;[[quarterback sack|sack]] :tackling a ball carrier who intends to throw a forward pass. A sack is also awarded if a player forces a fumble of the ball, or the ball carrier to go out of bounds, behind the line of scrimmage on an apparent intended forward pass play. The term gained currency ca. 1970.
29622 ;safety
29623 #a player position on [[defensive team|defense]] -- see '''free safety''' and '''strong safety'''.
29624 #a method of scoring (worth two points) by downing an opposing ballcarrier in his own end zone, forcing the opposing ballcarrier out of his own end zone AND out of bounds, or forcing the offensive team to fumble the ball so that it exits the end zone. A safety is also awarded if the offensive team commits a penalty within its own end zone. After a safety, the team that was scored upon must kick the ball to the scoring team from its own 20-yard line.&lt;br&gt;A safety scored during a try scores 1 point and is followed by a kickoff as for any other try.
29625 ;safety valve :a receiver whose job it is to get open for a short pass in case all other receivers are covered.
29626 ;sam :the ''s''trong side outside linebacker
29627 ;scramble :on a called passing play, when the quarterback runs from the pocket in an attempt to avoid being sacked, giving the receivers more time to get open or attempting to gain positive yards by running himself.
29628 ;[[screen pass]] :a short forward pass to a receiver who has blockers in front of him. The receiver in this play is usually a running back, although wide receiver and tight end screens are also used. Although the are both called screen passes, the wide receiver screen and the running back screen are used for very different reasons. In the case of a running back screen, the play is designed to allow the pass rushers by the offensive linemen, leaving the defender out of position to make a play. The play is usually employed to defuse the pass rush in the case of a running back screen. The Wide Receiver screen is a much faster developing play, designed to catch the defense off guard.
29629 ;scrimmage :see: [[play from scrimmage]]
29630 ;shift :when two or more offensive players move at the same time before the snap. All players who move in a shift must come to a complete stop prior to the snap.
29631 ;[[Shoot the gap|shooting]] :the action of a linebacker or defensive back to [[blitz (American football)|blitz]]
29632 ;[[shotgun formation]] :formation in which offensive team may line up at the start of a play. In this formation, the quarterback receives the snap 5-8 yards behind the center.
29633 ;sideline :
29634 # one of the lines marking each side of the field
29635 # as adjective: on the field near a sideline
29636 ;side zone :the area between a hash mark and a sideline
29637 ;[[single wing]] : a formation, now out of fashion, most popular about 1920-50, with an overload and wingback on one side and two backs about 5 yards deep to receive the snap.
29638 ;slobber-knocker : a particularly gruesome tackle or hit.
29639 ;slot :The area between a split end and the offensive line. A pass receiver lined up in the slot at the snap of the ball may be called a slotback or slot receiver.
29640 ;[[snap (football)|snap]] :the handoff or pass from the center that begins a play from scrimmage.
29641 ;[[Quarterback sneak|sneak]] :an offensive play in which the quarterback, immediately on receiving the snap dives forward with the ball. The play is used when a team needs a very short gain to reach either the goal line or the line to gain.
29642 ;[[special team]]s :the units that handle kickoffs, punts, free kicks and field goal attempts.
29643 ;spike :a play in which the quarterback throws the ball at the ground immediately after the snap. Technically an incomplete pass, it stops the clock. Note that a spike is not considered '''intentional grounding'''.
29644 ;splits :the distance between the feet of adjacent offensive linemen. Said to be wide, if there is a large gap between players, or narrow, if the gap is small.
29645 ;split end :a player position on offence. A receiver who lines up on the line of scrimmage, several yards outside the offensive linemen. The term is no longer used in American Football, having been long since replaced by the wide receiver or wideout, with no distinction between whether the receiver is on the line or not.
29646 ;[[squib kick]] :a type of '''kickoff''' in which the ball is intentionally kicked low to the ground, typically bouncing on the ground a few times before being picked up. This is done in the hopes of preventing a long return, as the ball is often picked up by one of the '''upmen''' as opposed to the designated kickoff returner.
29647 ;sticks : the pole attached to the end of the 10-yard chain that is used by the [[chain crew]] to measure for a new series of downs -- i.e. the line to gain a new &quot;first down&quot;.
29648 ;stiff-arm or straight-arm :a ballcarrier warding off a would-be tackler by pushing them away with a straight arm.
29649 ;strong i :a formation wherein the tailback is lined up deep directly behind the quarterback, and the fullback is lined up offset to the strong side of the formation.
29650 ;strong safety (SS):a kind of safety on [[defensive team|defense]], as opposed to a free safety. This is a central defensive back; originally, the term indicated that he lined up on the strong side of the field and covered the tight end. However, the modern usage of the term now indicates a central defensive back with responsibility for run and pass support, slightly favoring run support.
29651 ;strong side :simplistically speaking, the side of the field (left or right) that has the most players, but it depends on the formations of the teams. When a team uses one tight end, the strong side is the side of the field where the tight end lines up. If the offensive package uses no tight end, or more than one tight end, the strong side is the side of the field with the most offensive players on or just behind the line of scrimmage.
29652 ;[[stunt (football)|stunt]]:a tactic used by defensive linemen in which they switch roles in an attempt to get past the blockers. Both defenders will start with power rushes, with the stunting defender getting more of a push. The other lineman will then go around him, ideally using him as a pick to get free from his blocker.
29653 ;[[Sweep (American football)|sweep]] :a running play in which several blockers lead a running back on a designed play to the outside. Depending on the number of blockers and the design of the play this is sometimes referred to as a &quot;power sweep&quot; or &quot;student-body-right&quot; (or left).
29654
29655 ==T==
29656 ;[[T formation]] :a classic offensive formation with the quarterback directly behind the center and three running backs behind the quarterback, forming a 'T'. Numerous variations have been developed including the split-T, wing-T, and wishbone-T.
29657 ;[[tackle (football)|tackle]]
29658 *the act of forcing a ball carrier to the ground
29659 *a player position on the line, either an [[offensive tackle]] or a [[defensive tackle]]-- see '''linemen'''.
29660 ;tackle box: the area between where the two [[offensive tackle]]s line up prior to the snap.
29661 ;[[tailback]] :player position on [[offensive team| offense]] farthest (&quot;deepest&quot;) back, except in kicking formations. Also often referred to as the '''running back''', particularly in a '''one-back offense'''.
29662 ;[[three-and-out]]: when an offensive team fails to gain a first down on the first three plays of a drive, and thus is forced to punt on fourth down.
29663 ;three-point stance: a down lineman's stance with three points on the ground, in another words, his two feet and one of his hands
29664 ;[[tight end]] :a player position on [[offensive team| offense]], an eligible receiver ligned up on the line of scrimmage, next to the offensive tackle. Tight ends are used as blockers during running plays, and either run a route or stay in to block during passing plays.
29665 ;[[touchback]] :the act of downing the ball behind one's own goal line after the ball had been propelled over the goal by the opposing team. After a touchback, the team that downed it gets the ball at their own 20-yard line.
29666 ;touchdown :a play worth six points, accomplished by gaining legal possession of the ball in the opponent's end zone. It also allows the team a chance for one extra point by kicking the ball or a two point conversion; see &quot;try&quot; below.
29667 ;trap :a basic blocking pattern in which a defensive lineman is allowed past the line of scrimmage, only to be blocked at an angle by a &quot;pulling&quot; lineman. Designed to gain a preferred blocking angle and larger hole in the line.
29668 ;trips :a formation in which 3 wide receivers are lined up close to one another on the same side of the field. Also refers to those receivers. Used to create potential for confusion or collision between defenders as these receivers split up.
29669 ;[[two-point conversion]] :a play worth two points accomplished by gaining legal possession of the ball in the opponent's end zone after a touchdown has been made; see &quot;try&quot; below
29670 ;try :a scrimmage play, from close to their opponent's goal line, awarded to a team which has scored a touchdown, allowing them (and in some codes, their opponents) to score an additional 1 or 2 points; also called &quot;try-for-point&quot;, &quot;conversion&quot;, &quot;convert&quot; (Canadian), &quot;extra point(s)&quot;, &quot;point(s) after (touchdown)&quot; or PAT
29671
29672 ==U==
29673 ;unbalanced line :usually refers to an offensive formation which does not have an equal number of '''linemen''' on each side of the ball. Done to gain a blocking advantage on one side of the formation; typically one '''tackle''' or '''guard''' lines up on the other side of the ball. For example a common alignment would be E-G-C-G-T-T-E.
29674 ;upman :during a kickoff, every player on the return team is called an &quot;upman&quot; with the exception of the one or two designated kickoff returners, who stand furthest away from the starting point of the kicking team.
29675
29676 ==V==
29677 ;Veer :a type of '''option''' offense using 2 backs in the backfield, one behind each guard or tackle (referred to as split backs), allowing a triple option play (give to either back or quarterback keep).
29678
29679 ==W==
29680 ;weak i :a formation wherein the tailback is lined up deep directly behind the quarterback, and the fullback is lined up offset to the weak side of the formation.
29681 ;weak side :when one tight end is used, the side of the field opposite the tight end. In other offensive packages, the side of the field with the fewest offensive players on or just behind the line of scrimmage.
29682 ;[[West Coast offense]] :an [[Offensive philosophy (American football)|offensive philosophy]] that uses short, high-percentage passes as the core of a ball-control offense. Widely used but originally made popular by [[San Francisco 49ers]] coach [[Bill Walsh (football coach)|Bill Walsh]]. A main component of the west coast offense is use of all the eligible receivers in the short passing game.
29683 ;[[wide receiver]] :a player [[American_and_Canadian_football_position_names|position]] on [[offensive team| offense]]. He is split wide (usually about 10 yards) from the formation and plays on the line of scrimmage as a '''split end''' or one yard off as a '''flanker'''.
29684 ;will :the ''w''eak side linebacker
29685 ;wing back :a player [[American_and_Canadian_football_position_names|position]] in some [[offensive team| offensive]] formations. Lines up just outside the '''tight end''' and one yard off the '''line of scrimmage'''. May be a receiver but is more typically used as a blocking back.
29686 ;'''[[wishbone formation|wishbone]]''': a formation involving three running backs lined up behind the quarterback in the shape of a Y, similar to the shape of a [[wishbone]].
29687
29688 ==X==
29689 ;X-receiver :Term used in play calling that usually refers to the '''split end''', or the [[wide receiver]] that lines up on the line of scrimmage. For example, &quot;Split Right Jet 529 X Post&quot; tells the X-receiver to run a post route.
29690
29691 ==Y==
29692 ;Y-receiver :Term usually used in offensive play calling to refer to the '''tight end'''. For example, &quot;Buffalo Right 534 Boot Y Corner&quot; tells the Y-receiver to run a corner route.
29693
29694 ==Z==
29695 ;Z-receiver :a term used in offensive play calling that usually refers to the '''flanker''', or the [[wide receiver]] that lines up off the line of scrimmage. For example, &quot;Panther Gun 85 Slant Z Go&quot; tells the Z-receiver to run a '''go''' (also called a '''fly''' or '''streak''') route.
29696
29697 ;zone defense :a defense in which players who are in pass coverage cover zones of the field, instead of individual players. Pure zone packages are seldom used; most defenses employ some combination of zone and man coverage.
29698 ;[[zone blitz]] : A defensive package combining a blitz with zone pass coveragee. Allows the defense to choose the blitzer after the offense shows formation and pass coverage requirements, and features unpredictable blitzes from different linebackers and defensive backs. Invented by coach [[Dick LeBeau]].
29699
29700 {{compactTOC4}}
29701
29702 [[Category:American football terminology| ]]
29703 [[Category:Glossaries|American football]]</text>
29704 </revision>
29705 </page>
29706 <page>
29707 <title>Algorithm</title>
29708 <id>775</id>
29709 <revision>
29710 <id>41965420</id>
29711 <timestamp>2006-03-02T22:49:15Z</timestamp>
29712 <contributor>
29713 <username>Jidan</username>
29714 <id>258229</id>
29715 </contributor>
29716 <text xml:space="preserve">[[Image:flowchart.png|frame|right|[[Flowchart|Flowcharts]] are often used to represent algorithms.]]
29717
29718 In [[mathematics]] and [[computer science]], an '''algorithm''' is a procedure (a finite [[set]] of well-defined instructions) for accomplishing some task which, given an initial state, will [[termination|terminate]] in a defined end-state.
29719
29720 Informally, the concept of an algorithm is often illustrated by the example of a [[recipe]], although many algorithms are much more complex; algorithms often have steps that repeat ([[iteration|iterate]]) or require decisions (such as [[Boolean logic|logic]] or [[inequality|comparison]]).
29721
29722 The concept of an algorithm originated as a means of recording procedures for solving mathematical problems such as finding the common divisor of two numbers or multiplying two numbers. The concept was formalized in [[1936]] through [[Alan Turing]]'s [[Turing machines]] and [[Alonzo Church]]'s [[lambda calculus]], which in turn formed the foundation of [[computer science]].
29723
29724 Most algorithms can be implemented by [[computer program]]s.
29725
29726 == History ==
29727 The word ''algorithm'' comes from the name of the 9th century mathematician [[al-Khwarizmi|Abu Abdullah Muhammad bin Musa al-Khwarizmi]]. The word ''[[algorism]]'' originally referred only to the rules of performing [[arithmetic]] using [[Hindu-Arabic numeral system|Hindu-Arabic numerals]] but evolved via European Latin translation of al-Khwarizmi's name into ''algorithm'' by the 18th century. The word evolved to include all definite procedures for solving problems or performing tasks.
29728
29729 The first case of an algorithm written for a [[computer]] was [[Ada Lovelace|Ada Byron]]'s [[Ada Byron's notes on the analytical engine|notes on the analytical engine]] written in 1842, for which she is considered by many to be the world's first [[programmer]]. However, since [[Charles Babbage]] never completed his [[analytical engine]] the algorithm was never implemented on it.
29730
29731 The lack of [[mathematical rigor]] in the &quot;well-defined procedure&quot; definition of algorithms posed some difficulties for mathematicians and [[logic]]ians of the [[19th century|19th]] and early [[20th century|20th centuries]]. This problem was largely solved with the description of the [[Turing machine]], an abstract model of a [[computer]] formulated by [[Alan Turing]], and the demonstration that every method yet found for describing &quot;well-defined procedures&quot; advanced by other mathematicians could be emulated on a Turing machine (a statement known as the [[Church-Turing thesis]]). Nowadays, a formal criterion for an algorithm is that it is a procedure that can be implemented on a completely specified Turing machine or one of the equivalent [[formalism]]s.
29732 {{sect-stub}}
29733
29734 == Formalization of algorithms ==
29735 Algorithms are essential to the way [[computer]]s process information, because a [[computer program]] is essentially an algorithm that tells the computer what specific steps to perform (in what specific order) in order to carry out a
29736 specified task, such as calculating employees&amp;#8217; paychecks or printing students&amp;#8217; report cards. Thus, an algorithm can be considered to be any sequence of operations which can be performed by a [[Turing completeness|Turing-complete]] system.
29737
29738 Typically, when an algorithm is associated with processing information, data is read from an input source or device, written to an output sink or device, and/or stored for further use. Stored data is regarded as part of the internal state of the entity performing the algorithm. The state is stored in a [[data structure]].
29739
29740 For any such computational process, the algorithm must be rigorously defined: specified in the way it applies in all possible circumstances that could arise. That is, any conditional steps must be systematically dealt with, case-by-case; the criteria for each case must be clear (and computable).
29741
29742 Because an algorithm is a precise list of precise steps, the order of computation will almost always be critical to the functioning of the algorithm. Instructions are usually assumed to be listed explicitly, and are described as starting 'from the top' and going 'down to the bottom', an idea that is described more formally by ''[[control flow|flow of control]]''.
29743
29744 So far, this discussion of the formalization of an algorithm has assumed the premises of [[imperative programming]]. This is the most common conception, and it attempts to describe a task in discrete, 'mechanical' means. Unique to this conception of formalized algorithms is the [[assignment operation]], setting the value of a variable. It derives from the intuition of '[[memory]]' as a scratchpad. There is an example below of such an assignment.
29745
29746 See [[functional programming]] and [[logic programming]] for alternate conceptions of what constitutes an algorithm.
29747
29748 Some writers restrict the definition of ''algorithm'' to procedures that eventually finish. Others include procedures that could run forever without stopping, arguing that some entity may be required to carry out such permanent tasks. In the latter case, success can no longer be defined in terms of halting with a meaningful output. Instead, terms of success that allow for unbounded output sequences must be defined. For example, an algorithm that verifies if there are more zeros than ones in an infinite random binary sequence must run forever to be effective. If it is implemented correctly, however, the algorithm's output will be useful: for as long as it examines the sequence, the algorithm will give a positive response while the number of examined zeros outnumber the ones, and a negative response otherwise. Success for this algorithm could then be defined as eventually outputting only positive responses if there are actually more zeros than ones in the sequence, and in any other case outputting any mixture of positive and negative responses.
29749
29750 Summarizing the above discussion about what algorithm should consist.
29751
29752 * Zero or more Inputs
29753 * One or more Outputs
29754 * Finiteness or computability
29755 * Definitiveness or Preciseness
29756
29757 === Implementation ===
29758 An algorithm is a set of steps to perform a computation. Most algorithms will be implemented as [[computer programs]]. They can be expressed in any notation including [[English language|English]] for documenting and research purposes. A more preferred way is to embody (or sometimes called ''codify'') an algorithm by writing of its [[pseudocode]]. [[Pseudocode]] representation avoids ambiguities that are common in English statements. The pseudocode can also be translated into particular programming language more straightforwardly. Algorithms are implemented not only as [[computer program]]s, but often also by other means, such as in a biological [[neural network]] (for example, the [[human brain]] implementing [[arithmetic]] or an insect relocating food), in [[electric circuit]]s, or in a mechanical device.
29759
29760 == Example ==
29761 One of the simplest algorithms is to find the largest number in an (unsorted) list of numbers. The solution necessarily requires looking at every number in the list, but only once at each. From this follows a simple algorithm, which can be stated in [[English language|English]] as
29762
29763 # Let us assume the first item is largest.
29764 # Look at each of the remaining items in the list and make the following adjustment.
29765 #:a. If it is larger than the largest item we gathered so far, make a note of it.
29766 # The latest noted item is the largest in the list when the process is complete.
29767
29768 And here is a more formal coding of the algorithm in [[pseudocode]]:
29769
29770 {{algorithm-begin|name=LargestNumber}}
29771 Input: A non-empty list of numbers ''L''.
29772 Output: The ''largest'' number in the list ''L''.
29773
29774 ''largest'' &amp;larr; ''L''&lt;sub&gt;0&lt;/sub&gt;
29775 '''for each''' ''item'' '''in''' the list ''L&lt;sub&gt;&amp;ge;1&lt;/sub&gt;'', '''do'''
29776 '''if''' the ''item'' &gt; ''largest'', '''then'''
29777 ''largest'' &amp;larr; the ''item''
29778 '''return''' ''largest''
29779 {{algorithm-end}}
29780
29781 For a more complex example, see [[Euclid's algorithm]], which is one of the oldest algorithms.
29782
29783 === Algorithm analysis ===
29784
29785 As it happens, most people who implement algorithms want to know how much of a particular resource (such as time or storage) is required for a given algorithm. Methods have been developed for the [[analysis of algorithms]] to obtain such quantitative answers; for example, the algorithm above has a time requirement of O(''n''), using the [[big O notation]] with ''n'' as the length of the list. At all times the algorithm only needs to remember two values: the largest number found so far, and its current position in the input list. Therefore it is said to have a space requirement of ''O(1)''{{ref|space}}. (Note that the size of the inputs is not counted as space used by the algorithm.)
29786
29787 Different algorithms may complete the same task with a different set of instructions in less or more time, space, or effort than others. For example, given two different recipes for making potato salad, one may have ''peel the potato'' before ''boil the potato'' while the other presents the steps in the reverse order, yet they both call for these steps to be repeated for all potatoes and end when the potato salad is ready to be eaten. &lt;!-- poor example .. who would boil each potato separately? and making a salad in general requires no cooking ... --&gt;
29788
29789 The [[analysis of algorithms|analysis and study of algorithms]] is one discipline of [[computer science]], and is often practiced abstractly (without the use of a specific [[programming language]] or other implementation). In this sense, it resembles other mathematical disciplines in that the analysis focuses on the underlying principles of the algorithm, and not on any particular implementation. The pseudocode is simplest and abstract enough for such analysis.
29790
29791 == Classes ==
29792 There are various ways to classify algorithms, each with its own merits.
29793
29794 === Classification by implementation ===
29795 One way to classify algorithms is by implementation means.
29796
29797 * '''Recursion''' or '''iteration''': A [[recursive algorithm]] is one that invokes (makes reference to) itself repeatedly until a certain condition matches, which is a method common to [[functional programming]]. Iterative algorithms use repetitive constructs like loops and sometimes additional data structures like stacks to solve the given problems. Some problems are naturally suited for one implementation to other. For example, [[towers of hanoi]] is well understood in recursive implementation. Every recursive version has an equivalent (but possibly more or less complex) iterative version, and vice versa.
29798
29799 * '''Serial''' or '''parallel''': Algorithms are usually discussed with the assumption that computers execute one instruction of an algorithm at a time. Those computers are sometimes called serial computers. An algorithm designed for such an environment is called a serial algorithm, as opposed to [[parallel algorithm]]s, which take advantage of computer architectures where several processors can work on a problem at the same time. Parallel algorithms divide the problem into more symmetrical or asymmetrical subproblems and pass them to many processors and put the results back together at one end. The resource consumption in parallel algorithms is both processor cycles on each processors and also the communication overhead between the processors. Sorting algorithms can be parallelized efficiently, but their communication overhead is expensive. Recursive algorithms are generally parallelizable. Some problems have no parallel algorithms, and are called inherently serial problems. Those problems cannot be solved faster by employing more processors. Iterative [[numerical methods]], such as [[Newton's method]] or the [[three body problem]], are algorithms which are inherently serial.
29800
29801 * '''Deterministic''' or '''random''': Deterministic algorithms solve the problem with exact decision at every step of the algorithm. Random algorithms as their name suggests explore the search space randomly until an acceptable solution is found. Various heuristic algorithms (see below) generally fall into the random category.
29802
29803 * '''Exact''' or '''approximate''': While many algorithms reach an exact solution, [[approximation algorithm]]s seek an approximation which is close to the true solution. Approximation may use either a deterministic or a random strategy. Such algorithms have practical value for many hard problems.
29804
29805 === Classification by design paradigm ===
29806 Another way of classifying algorithms is by their design methodology or paradigm. There is a certain number of paradigms, each different from the other. Furthermore, each of these categories will include many different types of algorithms. Some commonly found paradigms include:
29807
29808 * '''Divide and conquer'''. A [[divide and conquer algorithm]] repeatedly reduces an instance of a problem to one or more smaller instances of the same problem (usually [[recursion|recursively]]), until the instances are small enough to solve easily. One such example of divide and conquer is merge sorting. Sorting can be done on each segment of data after dividing data into segments and sorting of entire data can be obtained in conquer phase by merging them. A simpler variant of divide and conquer is called '''decrease and conquer algorithm''', that solves an identical subproblem and uses the solution of this subproblem to solve the bigger problem. Divide and conquer divides the problem into multiple subproblems and so conquer stage will be more complex than decrease and conquer algorithms. An example of decrease and conquer algorithm is [[binary search algorithm]].
29809 * '''[[Dynamic programming]]'''. When a problem shows [[optimal substructure]], meaning the optimal solution to a problem can be constructed from optimal solutions to subproblems, and [[overlapping subproblems]], meaning the same subproblems are used to solve many different problem instances, we can often solve the problem quickly using ''dynamic programming'', an approach that avoids recomputing solutions that have already been computed. For example, the shortest path to a goal from a vertex in a weighted [[graph (mathematics)|graph]] can be found by using the shortest path to the goal from all adjacent vertices. Dynamic programming and [[memoization]] go together. The main difference between dynamic programming and divide and conquer is, subproblems are more or less independent in divide and conquer, where as the overlap of subproblems occur in dynamic programming. The difference between the dynamic programming and straightforward recursion is in caching or memoization of recursive calls. Where subproblems are independent, there is no chance of repetition and memoization does not help, so dynamic programming is not a solution for all. By using memoization or maintaining a table of subproblems already solved, dynamic programming reduces the exponential nature of many problems to polynomial complexity.
29810 * '''The greedy method'''. A [[greedy algorithm]] is similar to a [[dynamic programming|dynamic programming algorithm]], but the difference is that solutions to the subproblems do not have to be known at each stage; instead a &quot;greedy&quot; choice can be made of what looks best for the moment. Difference between dynamic programming and greedy method is, it extends the solution with the best possible decision (not all feasible decisions) at a algorithmic stage based on the current local optimum and the best decision (not all possible decisions) made in previous stage. It is not exhaustive, and does not give accurate answer to many problems. But when it works, it will be the fastest method. The most popular greedy algorithm is finding the minimal spanning tree as given by [[kruskal's algorithm|Kruskal]].
29811 * '''Linear programming'''. When solving a problem using [[linear programming]], the program is put into a number of linear [[inequality|inequalities]] and then an attempt is made to maximize (or minimize) the inputs. Many problems (such as the [[Maximum flow problem|maximum flow]] for directed [[graph (mathematics)|graphs]]) can be stated in a linear programming way, and then be solved by a 'generic' algorithm such as the [[simplex algorithm]]. A complex variant of linear programming is called integer programming, where the solution space is restricted to all integers.
29812 * '''[[Reduction (complexity)|Reduction]]''': It is another powerful technique in solving many problems by transforming one problem into another problem. For example, one [[selection algorithm]] for finding the median in an unsorted list is first translating this problem into sorting problem and finding the middle element in sorted list. The goal of reduction algorithms is finding the simplest transformation such that complexity of reduction algorithm does not dominate the complexity of reduced algorithm. This technique is also called ''transform and conquer''.
29813 * '''Search and enumeration'''. Many problems (such as playing [[chess]]) can be modeled as problems on [[graph theory|graphs]]. A [[graph exploration algorithm]] specifies rules for moving around a graph and is useful for such problems. This category also includes the [[search algorithm]]s and [[backtracking]].
29814 * '''The probabilistic and heuristic paradigm'''. Algorithms belonging to this class fit the definition of an algorithm more loosely.
29815 # [[Probabilistic algorithm]]s are those that make some choices randomly (or pseudo-randomly); for some problems, it can in fact be proven that the fastest solutions must involve some [[randomness]].
29816 # [[Genetic algorithm]]s attempt to find solutions to problems by mimicking biological [[evolution]]ary processes, with a cycle of random mutations yielding successive generations of &quot;solutions&quot;. Thus, they emulate reproduction and &quot;survival of the fittest&quot;. In [[genetic programming]], this approach is extended to algorithms, by regarding the algorithm itself as a &quot;solution&quot; to a problem. Also there are
29817 # [[Heuristic (computer science)|Heuristic]] algorithms, whose general purpose is not to find an optimal solution, but an approximate solution where the time or resources to find a perfect solution are not practical. An example of this would be [[local search (optimization)|local search]], [[taboo search]], or [[simulated annealing]] algorithms, a class of heuristic probabilistic algorithms that vary the solution of a problem by a random amount. The name &quot;simulated annealing&quot; alludes to the metallurgic term meaning the heating and cooling of metal to achieve freedom from defects. The purpose of the random variance is to find close to globally optimal solutions rather than simply locally optimal ones, the idea being that the random element will be decreased as the algorithm settles down to a solution.
29818
29819 === Classification by field of study ===
29820 Every field of science has its own problems and needs efficient algorithms. Related problems in one field are often studied together. Some example classes are [[search algorithm]]s, [[sort algorithm]]s, [[merge algorithm]]s, [[numerical analysis|numerical algorithms]], [[graph theory|graph algorithms]], [[string algorithms]], [[computational geometry|computational geometric algorithms]], [[combinatorial|combinatorial algorithms]], [[machine learning]], [[cryptography]], [[data compression]] algorithms and [[parsing|parsing techniques]].
29821
29822 ''See also:'' '''[[List of algorithms]]''' for more details.
29823
29824 Some of these fields overlap with each other and advancing in algorithms for one field causes advancement in many fields and sometimes completely unrelated fields. For example, dynamic programming is originally invented for optimisation in resource consumption in industries, but it is used in solving broad range of problems in many fields.
29825
29826 === Classification by complexity ===
29827 Some algorithms complete in linear time, and some complete in exponential amount of time, and some never complete. One problem may have multiple algorithms, and some problems may have no algorithms. Some problems have no known efficient algorithms. There are also mappings from some problems to other problems. So computer scientists found it is suitable to classify the problems rather than algorithms into equivalence classes based on the complexity.
29828
29829 ''See also:'' '''[[Complexity class]]es''' for more details.
29830
29831 == Legal issues ==
29832 Some countries allow algorithms to be [[patented]] when embodied in software or in hardware. Patents have long been a controversial issue (see, for example, the [[software patent debate]]).
29833
29834 Some countries do not allow certain algorithms, such as cryptographic algorithms, to be [[exported]] from that country.
29835
29836 ==See also==
29837 * [[Algorism]]
29838 * [[Approximation algorithms]]
29839 * [[Data structure]]
29840 * [[Randomized algorithm]]
29841 * [[Timeline of algorithms]]
29842 * [[b:A-Level Mathematics/D1/Algorithms|Wikibooks:Algorithms]]
29843
29844 ==Notes==
29845 {{note|space}} Although in this example the size of the numbers itself is unbounded, one could therefore argue that the space requirement is O(log ''n''), in practice, however, the space taken up by a number is fixed.
29846
29847 ==References==
29848 * [[List of important publications in computer science#Algorithms|Important algorithm-related publications]]
29849
29850 ==External links==
29851 * {{DADS|algorithm|algorithm}}
29852 * Gaston H. Gonnet and Ricardo Baeza-Yates: Example programs from [http://www.dcc.uchile.cl/~rbaeza/handbook/ ''Handbook of Algorithms and Data Structures.''] Free source code for many important algorithms.
29853 * [http://www.nist.gov/dads/ Dictionary of Algorithms and Data Structures]. &quot;This is a dictionary of algorithms, algorithmic techniques, data structures, archetypical problems, and related definitions.&quot;
29854 * [http://www.nr.com Numerical Recipes]
29855 * [http://dmoz.org/Computers/Algorithms/ Computers/Algorithms @ dmoz.org]
29856 * [http://musicalgorithms.ewu.edu/ ''Musicalgorithms''] An interesting way of using algorithms to make music.
29857 * [http://www.algorithmist.com/ The Algorithmist] is a web site dedicated to algorithms.
29858
29859 [[Category:Algorithms|*]]
29860 [[Category:Arabic words]]
29861 [[Category:Discrete mathematics]]
29862 [[Category:Mathematical logic]]
29863
29864 [[af:Algoritme]]
29865 [[an:Algoritmo]]
29866 [[ast:Algoritmu]]
29867 [[bg:АĐģĐŗĐžŅ€Đ¸Ņ‚ŅŠĐŧ]]
29868 [[bs:Algoritam]]
29869 [[ca:Algorisme]]
29870 [[cs:Algoritmus]]
29871 [[da:Algoritme]]
29872 [[de:Algorithmus]]
29873 [[el:ΑÎģÎŗĪŒĪÎšÎ¸ÎŧÎŋĪ‚]]
29874 [[eo:Algoritmo]]
29875 [[es:Algoritmo]]
29876 [[et:Algoritm]]
29877 [[fi:Algoritmi]]
29878 [[fr:Algorithmique]]
29879 [[gl:Algoritmo]]
29880 [[he:אלגורי×Ēם]]
29881 [[hr:Algoritam]]
29882 [[hu:Algoritmus]]
29883 [[id:Algoritma]]
29884 [[it:Algoritmo]]
29885 [[ja:ã‚ĸãƒĢゴãƒĒã‚ēム]]
29886 [[ko:ė•Œęŗ ëĻŦėĻ˜]]
29887 [[lb:Algorithmus]]
29888 [[lt:Algoritmas]]
29889 [[nl:Algoritme]]
29890 [[no:Algoritme]]
29891 [[pl:Algorytm]]
29892 [[pt:Algoritmo]]
29893 [[ro:Algoritm]]
29894 [[ru:АĐģĐŗĐžŅ€Đ¸Ņ‚Đŧ]]
29895 [[simple:Algorithm]]
29896 [[sk:Algoritmus]]
29897 [[sl:Algoritem]]
29898 [[sr:АĐģĐŗĐžŅ€Đ¸Ņ‚Đ°Đŧ]]
29899 [[su:Algoritma]]
29900 [[sv:Algoritm]]
29901 [[th:ā¸­ā¸ąā¸Ĩā¸ā¸­ā¸Ŗā¸´ā¸—ā¸ļā¸Ą]]
29902 [[tl:Algoritmo]]
29903 [[tr:Algoritma]]
29904 [[uk:АĐģĐŗĐžŅ€Đ¸Ņ‚Đŧ]]
29905 [[vi:Thuáē­t toÃĄn]]
29906 [[zh:įŽ—æŗ•]]
29907 {{featured article}}</text>
29908 </revision>
29909 </page>
29910 <page>
29911 <title>Asymmetric algorithm</title>
29912 <id>776</id>
29913 <revision>
29914 <id>23401673</id>
29915 <timestamp>2005-09-17T16:42:11Z</timestamp>
29916 <contributor>
29917 <username>Hurricane111</username>
29918 <id>99272</id>
29919 </contributor>
29920 <comment>Fixed double redirect; [[Wikipedia:Computer help desk/cleanup/double redirects/20050713|You can help!]].</comment>
29921 <text xml:space="preserve">#REDIRECT [[Public-key cryptography]]</text>
29922 </revision>
29923 </page>
29924 <page>
29925 <title>Annual plant</title>
29926 <id>777</id>
29927 <revision>
29928 <id>34476075</id>
29929 <timestamp>2006-01-09T08:59:46Z</timestamp>
29930 <contributor>
29931 <ip>70.107.141.78</ip>
29932 </contributor>
29933 <text xml:space="preserve">An '''annual plant''' is a [[plant]] that usually germinates, [[flower]]s and dies in one [[year]].
29934
29935 Annuals are often used in [[garden]]s to provide splashes of color, as they tend to produce more flowers than perennials. Some [[perennial plant|perennials]] and [[biennial plant|biennials]] are grown in gardens as annuals for convenience, particularly if they are not considered [[hardiness (plants)|hardy]] for the local climate. Also, many food plants are, or are grown as, annuals, including most domesticated [[Cereal|grain]]s.
29936
29937 The life-cycle of an annual can occur in a period as short as two or three [[month]]s in some species, though most last a bit longer. Vegetables grown in apartment container gardens can last up to two years, if they are maintained indoors during the winter months.
29938
29939 Examples of annual plants include [[pea]]s, [[cauliflower]]s, [[basil]], and [[marigold]]s.
29940
29941 ==See also==
29942 *[[Biennial plant]]
29943 *[[Perennial plant]]
29944
29945 ----
29946
29947 [[Category:Botany]]
29948 [[Category: gardening]]
29949
29950 [[ca:Planta anual]]
29951 [[de:Einjährige Pflanze]]
29952 [[is:EinÃĻr jurt]]
29953 [[ru:ОдĐŊĐžĐģĐĩŅ‚ĐŊĐĩĐĩ Ņ€Đ°ŅŅ‚ĐĩĐŊиĐĩ]]
29954 [[ta:āŽ†āŽŖā¯āŽŸā¯āŽ¤ā¯ āŽ¤āŽžāŽĩāŽ°āŽŽā¯]]</text>
29955 </revision>
29956 </page>
29957 <page>
29958 <title>Anthophyta</title>
29959 <id>779</id>
29960 <revision>
29961 <id>38941522</id>
29962 <timestamp>2006-02-09T17:50:41Z</timestamp>
29963 <contributor>
29964 <username>Brya</username>
29965 <id>449067</id>
29966 </contributor>
29967 <comment>slight expansion</comment>
29968 <text xml:space="preserve">'''''Anthophyta''''' is a [[descriptive botanical names|descriptive botanical name]] that may be used (Art 16, ''[[ICBN]]'') for what, these days, is more commonly known as ''[[Angiospermae]]'', although in some classifications it was used for what now is known as ''[[Spermatophyta]]''.
29969
29970 The name ''Anthophyta'' literally means &quot;[[flowering plant]]s&quot;; derived from the Greek 'anthos'=&quot;flower&quot; and 'phyton'= &quot;plant&quot;.
29971
29972 [[Category:Plants| sort31 Anthophyta]]
29973 [[category: plant taxonomy| sort31 Anthophyta]]</text>
29974 </revision>
29975 </page>
29976 <page>
29977 <title>Atlas (disambiguation)</title>
29978 <id>780</id>
29979 <revision>
29980 <id>42153502</id>
29981 <timestamp>2006-03-04T04:17:21Z</timestamp>
29982 <contributor>
29983 <username>CodemauL</username>
29984 <id>1026617</id>
29985 </contributor>
29986 <comment>/* In computers */</comment>
29987 <text xml:space="preserve">__NOTOC__
29988 :''This page is about the word &quot;atlas&quot;''. ''See also the abbreviation &quot;[[ATLAS]]&quot; (written in [[all caps]])''.
29989
29990 The most common meaning of '''atlas''' is [[atlas (cartography)]], a collection of maps. By extension, a [[road atlas]] is a collection of road maps.
29991
29992 Many other entities are also called &quot;atlas&quot;, some of which are listed below:
29993
29994 ===In science===
29995 *[[Atlas (anatomy)]] is the topmost cervical vertebra of the spine
29996 *Atlas [[beetle]], insect
29997 *Atlas [[cedar]], tree
29998 *[[Atlas (moon)]], a moon of Saturn
29999 *[[Atlas (crater)]], on the Earth's moon
30000 *[[Atlas (star)]], a star in the Pleiades star cluster
30001 *[[ATLAS_experiment|Atlas Experiment]] The particle detector experiment.
30002
30003 ===In computers===
30004 *[[Atlas Computer (Manchester)|Atlas Computer]], University of Manchester
30005 * [[Titan (computer)]], also know as Atlas 2, University of Cambridge
30006 *[[UNIVAC 1101]], Atlas Computer, Engineering Research Associates
30007 *[[UNIVAC 1103]], Atlas II computer, Engineering Research Associates
30008 *[[ATLAS Programming Language|ATLAS]], a programming language used for automated test equipment
30009 *[[ATLAS.ti]], a [[qualitative analysis]] software[http://www.atlasti.com/index.php]
30010 *[[ATLAS_(programming)]], Microsoft's implementation of [[Ajax_(programming)]] for [[ASP.NET]]
30011
30012 ===In books and literature===
30013 *''The Atlas'', a book by the American author [[William Vollmann]]
30014 *''Atlas'', a book of photography by the German artist [[Gerhard Richter]]
30015 *''[[Atlas Shrugged]]'', a novel by Ayn Rand
30016 *[[Atlas Games]], publisher
30017 *[[Atlas Comics (1950s)]] was, along with the 1940s' [[Timely Comics]], one of the two precursors of [[Marvel Comics]]
30018 *[[Atlas/Seaboard Comics]], a short-lived [[comic book]] company created in 1974
30019 *[[Atlas (comic series)|Atlas]], a comic book series published by [[Drawn &amp; Quarterly]]
30020 *[[Atlas (comics)|Atlas]], a Marvel Comics character
30021
30022 ===In Transportation===
30023 *[[Atlas (rocket)]]
30024 *[[Atlas Cheetah]] and [[Atlas Oryx]], aircraft
30025 *[[Atlas Van Lines]]
30026
30027 ===A last name of===
30028 *[[Charles Atlas]], there are several people who go by this name
30029 *[[Teddy Atlas]], boxing trainer of Mike Tyson
30030 *[[Natacha Atlas]], a female musician
30031 *Atlas is a fictional robot who is the rival of [[Astro Boy]] in the 1980 and 2003 animated series named after the latter
30032 *Atlas is a fictional character from Marvel Comics, best known as a member of the [[Thunderbolts (comics)]]
30033
30034 ===Other===
30035 *[[Atlas (mythology)]], the [[Titan (mythology)|Titan]] of [[Greek mythology]]
30036 *[[Atlas mountains]]
30037 *[[Atlas (architecture)]], the column
30038 *[[Atlas (topology)]], a collection of local coordinate charts in mathematics
30039 *[[CF Atlas]], a Mexican football team
30040 *[[Atlas Telecom]], Romanian communications company
30041 *[[Atlas Economic Research Foundation]], an [[Business incubator|incubator]] for [[Free market|free market]] [[Think tank|think tanks]].
30042
30043 {{disambig}}
30044
30045 [[cs:Atlas]]
30046 [[da:Atlas]]
30047 [[de:Atlas]]
30048 [[es:Atlas]]
30049 [[fr:Atlas]]
30050 [[hr:Atlas]]
30051 [[it:Atlante]]
30052 [[he:אטלס]]
30053 [[nl:Atlas]]
30054 [[pl:Atlas]]
30055 [[pt:Atlas]]
30056 [[ru:АŅ‚ĐģĐ°Ņ]]
30057 [[sk:Atlas]]
30058 [[sl:Atlas]]</text>
30059 </revision>
30060 </page>
30061 <page>
30062 <title>Mouthwash</title>
30063 <id>782</id>
30064 <revision>
30065 <id>41972980</id>
30066 <timestamp>2006-03-02T23:46:36Z</timestamp>
30067 <contributor>
30068 <ip>68.35.107.145</ip>
30069 </contributor>
30070 <text xml:space="preserve">[[Antiseptic]] mouth rinse, often called '''mouthwash''', is an [[oral hygiene]] product that claims to kill the [[germ]]s that cause [[Dental plaque|plaque]], [[gingivitis]], and [[bad breath]]. However, it is generally agreed that the use of mouthwash does not eliminate the need for both [[toothbrush|brushing]] and [[flossing]].
30071
30072 Common use involves rinsing one's mouth with about 20 [[milliliter|ml]] (2/3 [[ounce|oz]]) of mouthwash two times a day after brushing. The mouthwash is typically swished or [[gargling|gargled]] for about half a minute and then spit out.
30073
30074 Active ingredients in commercial brands of mouthwash can include [[thymol]], [[eucalyptol]], [[methyl salicylate]], [[menthol]], [[chlorhexidine gluconate]], [[hydrogen peroxide]] and sometimes [[enzymes]] and [[calcium]]. Ingredients also include [[water]], sweeteners such as [[sorbitol]] and [[Saccharine|Sodium saccharine]], and a significant amount of [[ethanol|alcohol]] (around 20%). Because of the alcohol content, it is possible to fail a [[breathalyzer]] test after rinsing one's mouth. Many newer brands are alcohol-free.
30075
30076 A '''salt mouthwash''' is a homemade treatment for mouth infections and is made by dissolving a teaspoon of [[Edible salt|salt]] in a cup of warm water.
30077
30078 [[Category:Dental equipment]]
30079 {{dentistry-stub}}
30080 [[zh-min-nan:Lo&amp;#781;k-chh&amp;#249;i-ch&amp;#250;i]]
30081 [[fi:Suuvesi]]</text>
30082 </revision>
30083 </page>
30084 <page>
30085 <title>Alexander the Great</title>
30086 <id>783</id>
30087 <revision>
30088 <id>42153285</id>
30089 <timestamp>2006-03-04T04:15:15Z</timestamp>
30090 <contributor>
30091 <username>Naconkantari</username>
30092 <id>676502</id>
30093 </contributor>
30094 <minor />
30095 <comment>Reverted edits by [[Special:Contributions/128.54.165.110|128.54.165.110]] ([[User talk:128.54.165.110|talk]]) to last version by InGenX</comment>
30096 <text xml:space="preserve">{{redirect|Alexander}}
30097
30098 [[Image:AlexanderAttackingDarius.jpg|thumb|300px|'''Alexander the Great''' fighting Persian king [[Darius III of Persia|Darius III]] (not in frame) ''[[Alexander Mosaic]]'' from [[Pompeii]], from a [[3rd century BC]] original Greek painting, now lost).]]
30099
30100 '''Alexander [[List of people known as The Great|the Great]]''' (in [[Greek language|Greek]] '''{{polytonic|ΜέÎŗÎąĪ‚ ΑÎģέΞιÎŊδĪÎŋĪ‚}}''', transliterated ''Megas Alexandros'') (Alexander III of Macedon) was born in [[Pella]], [[Macedon]], in [[July]], [[356 BC]], died in [[Babylon]], on [[June 10]], [[323 BC]], King of Macedon [[336 BC|336]]&amp;ndash;[[323 BC]], is considered one of the most successful military commanders in world history (if not the greatest), conquering most of the [[Ptolemy_world_map|known world]] before his death. Alexander is also known in the [[Zoroastrianism|Zoroastrian]] [[Middle Persian]] work ''[[Book of Arda Viraf|Arda Wiraz Nāmag]]'' as &quot;the accursed Alexander&quot; due to his conquest of the [[Persian Empire]] and the destruction of its capital [[Persepolis]]. He is also known in Middle Eastern traditions as ''[[Dhul-Qarnayn]]'' in [[Arabic language|Arabic]] and ''Dul-Qarnayim'' in [[Hebrew language|Hebrew]] and [[Aramaic language|Aramaic]] (the two-horned one), apparently due to an image on coins minted during his rule that seemingly depicted him with the two ram's horns of the Egyptian god [[Amun|Ammon]]. He is known as '''Sikandar''' in [[Hindi]]; in fact in [[India]], the term Sikandar is used as a synonym for &quot;expert&quot; or &quot;extremely skilled&quot;.
30101
30102 Following the unification of the multiple city-states of [[ancient Greece]] under the rule of his father, [[Philip II of Macedon]], (a labor Alexander had to repeat twice because the southern Greeks rebelled after Philip's death), Alexander conquered the [[Persian Empire]], including [[Anatolia]], [[Syria]], [[Phoenicia]], [[Gaza]], [[Egypt]], [[Bactria]] and [[Mesopotamia]] and extended the boundaries of his own [[empire]] as far as the [[Punjab region|Punjab]]. Alexander integrated foreigners (non-Macedonians, non-Greeks{{rf|1|MvsG1}}) into his army and administration, leading some scholars to credit him with a &quot;policy of fusion.&quot; He encouraged marriage between his army and foreigners, and practiced it himself. After twelve years of constant military campaigning, Alexander died, possibly of [[malaria]], [[typhoid]], viral [[encephalitis]] or even a drug overdose. His conquests ushered in centuries of Greek settlement and rule over foreign areas, a period known as the [[Hellenistic civilization|Hellenistic Age]]. Alexander himself lived on in the history and myth of both Greek and non-Greek cultures. Already during his lifetime, and especially after his death, his exploits inspired a literary tradition in which he appears as a towering legendary [[hero]] in the tradition of [[Achilles]].
30103
30104 ==Early life==
30105
30106 [[Image:AlexanderTheGreat Bust.jpg|thumb|right|[[Bust (sculpture)|Bust]] of Alexander III in the [[British Museum]].]]
30107 Alexander was the son of King Philip II of Macedon and of [[Epirus (region)|Epirote]] princess [[Olympias]]. According to [[Plutarch]] (''Alexander'' 3.1,3), Olympias was impregnated not by Philip, who was afraid of her and her affinity for sleeping in the company of snakes, but by [[Zeus]]. Plutarch (''Alexander'' 2.2-3) relates that both Philip and Olympias dreamt of their son's future birth. Olympias dreamed of a loud burst of thunder and of lightning striking her womb. In Philip's dream, he sealed her womb with the seal of the [[lion]]. Alarmed by this, he consulted the seer [[Aristander|Aristander of Telmessus]], who determined that his wife was pregnant and that the child would have the character of a lion.
30108
30109 [[Aristotle]] was Alexander's tutor; he gave Alexander a thorough training in [[rhetoric]] and [[literature]] and stimulated his interest in [[science]], [[medicine]], and [[philosophy]]. After his visit to the [[Oracle]] of [[Amun|Ammon]] at [[Siwa Oasis|Siwa]], according to all five of the extant historians ([[Arrian]], [[Quintus Curtius Rufus|Curtius]], [[Diodorus Siculus|Diodorus]], [[Junianus Justinus|Justin]], and [[Plutarch]]), rumors spread that the Oracle had revealed Alexander's father to be [[Zeus]], rather than Philip. According to Plutarch (''Alexander'' 2.1), his father descended from [[Heracles]] through [[Caranus]] and his mother descended from [[Aeacus]] through [[Neoptolemus]] and [[Achilles]]. Aristotle gave him a copy of the [[Illiad]] and a knife that he always hid under his pillow at night.
30110
30111 ===The ascent of Macedon===
30112 When Philip led an attack on [[Byzantium]] in [[340 BC]], Alexander, aged 16, was left in command of Macedonia. In [[339 BC]], Philip took a second wife, to the chagrin of Alexander's mother Olympias, which led to a quarrel between Alexander and his father and threw into question Alexander's succession to the Macedonian throne. In [[338 BC]], Philip created the [[League of Corinth]]. Alexander also assisted his father at the decisive battle of [[Battle of Chaeronea (338 BC)|Chaeronea]] in this year. The [[Companion cavalry|cavalry]] wing led by Alexander annihilated the [[Sacred Band of Thebes]], an elite corps previously regarded as invincible. Philip was content to deprive Thebes of her dominion over [[Boeotia]] and leave a Macedonian garrison in the citadel.
30113
30114 In [[336 BC]], Philip was assassinated at the wedding of his daughter Cleopatra to [[Alexander I of Epirus|King Alexander of Epirus]]. The [[assassin]] was supposedly a former lover of the king, the disgruntled young nobleman [[Pausanias (assassin)|Pausanias]], who held a grudge against Philip because the king had ignored a complaint he had expressed. Philip's murder was once thought to have been planned with the knowledge and involvement of Alexander or Olympias. Another possible instigator could have been [[Darius III of Persia|Darius III]], the recently crowned King of Persia. [[Plutarch]] mentions an irate letter from Alexander to Darius, where Alexander blames Darius and [[Bagoas]], his [[grand vizier]], for his father's murder, stating that it was Darius who had been bragging with the Greek cities of how he managed to assassinate Philip.
30115
30116 After Philip's death, the army proclaimed Alexander, then aged 20, as the new king of Macedon. Greek cities like [[Athens]] and [[Thebes, Greece|Thebes]], which had been forced to pledge allegiance to Philip, saw in the new king an opportunity to retake their full independence. Alexander moved swiftly and Thebes, which had been most active against him, submitted when he appeared at its gates. The assembled Greeks at the [[Isthmus of Corinth]], with the sole exception of the [[Sparta]]ns, elected him to the command against Persia, which had previously been bestowed upon his father.
30117
30118 The next year, ([[335 BC]]), Alexander felt free to engage the [[Thracians]] and the [[Illyria]]ns in order to secure the [[Danube]] as the northern boundary of the Macedonian kingdom. While he was triumphantly campaigning north, the Thebans and Athenians rebelled once again. Alexander reacted immediately and while the other cities once again hesitated, Thebes decided this time to resist with the utmost vigor. The resistance was useless; in the end, the city was conquered with great bloodshed. The Thebans encountered an ever harsher fate when their city was razed to the ground and its territory divided between the other Boeotian cities. Moreover, all of the city's citizens were sold into slavery, sparing only the priests, the leaders of the pro-Macedonian party and the descendants of [[Pindar]], whose house was the only one left untouched. The end of Thebes cowed Athens into submission and it readily accepted Alexander's demand for the exile of all the leaders of the anti-Macedonian party, [[Demosthenes]] first of all.
30119
30120 ==Period of conquests==
30121 [[Image:Map-alexander-empire.png|thumb|440px|Map of Alexander's empire.]]
30122
30123 ===The fall of the Persian Empire===
30124 Alexander's army had crossed the [[Hellespont]] with about 42,000 soldiers primarily Macedonians{{rf|2|MvsG2}} and Greeks, but also including some Thracians, [[Paionia]]ns and Illyrians. After an initial victory against Persian forces at the [[Battle of the Granicus|Battle of Granicus]], Alexander accepted the surrender of the Persian provincial capital and treasury of [[Sardis]] and proceeded down the [[Ionia|Ionian]] coast. At [[Halicarnassus]], Alexander successfully waged the first of many [[siege]]s, eventually forcing his opponents, the mercenary captain [[Memnon of Rhodes]] and the Persian [[satrap]] of [[Caria]], [[Orontobates]], to withdraw by sea. Alexander left Caria in the hands of [[Ada of Caria|Ada]], who was ruler of Caria before being deposed by her brother [[Pixodarus of Caria|Pixodarus]]. From Halicarnassus, Alexander proceeded into mountainous [[Lycia]] and the [[Pamphylia]]n plain, asserting control over all coastal cities and denying them to his enemy. From Pamphylia onward, the coast held no major ports and so Alexander moved inland. At [[Termessus]], Alexander humbled but did not storm the [[Pisidia]]n city. At the ancient Phrygian capital of [[Gordium]], Alexander &quot;undid&quot; the tangled [[Gordian Knot|Gordian knot]], a feat said to await the future &quot;king of [[Asia]].&quot; According to the most vivid story, Alexander proclaimed that it did not matter how the knot was undone, and he hacked it apart with his sword. Another version claims that he did not use the sword, but actually figured out how to undo the knot.
30125
30126 [[Image:AlexMos.jpg|thumb|350px|Alexander battling Darius at the [[Battle of Issus]], Pompei mosaic.]]
30127
30128 Alexander's army crossed the [[Cilician Gates]], met and defeated the main Persian army under the command of Darius III at the [[Battle of Issus]] in [[333 BC]]. Darius fled this battle in such a panic for his life that he left behind his wife, his children, his mother, and much of his personal treasure. [[Sisygambis]], the queen mother, never forgave Darius for abandoning her. She disowned him and adopted Alexander as her son instead. Proceeding down the [[Mediterranean]] coast, he took [[Tyre]] and [[Gaza]] after famous sieges (see [[Siege of Tyre]]). Alexander passed near but probably did not visit [[Jerusalem]].
30129
30130 In [[332 BC]] - [[331 BC]], Alexander was welcomed as a liberator in [[History of Greek and Roman Egypt|Egypt]] and was pronounced the son of Zeus by Egyptian priests of the god Ammon at the Oracle of the god at the [[Siwa Oasis]] in the [[Libya]]n desert. He founded [[Alexandria]] in Egypt, which would become the prosperous capital of the [[Ptolemaic]] dynasty after his death. Leaving Egypt, Alexander marched eastward into [[Assyria]] (now northern [[Iraq]]) and defeated Darius and a third Persian army at the [[Battle of Gaugamela]]. Darius was forced to flee the field after his charioteer was killed, and Alexander chased him as far as [[Arbela]]. While Darius fled over the mountains to [[Ecbatana]] (modern [[Hamadan]]), Alexander marched to [[Babylon]].
30131
30132 [[Image:UrumqiSoldier.jpg|thumb|180px|Statuette of a Greek soldier, from a 4th - 3rd century BC burial site north of the [[Tian Shan]], at the maximum extent of Alexander's advance in the East ([[ÜrÃŧmqi]], [[Xinjiang]] Museum, [[China]]) (drawing).]]
30133
30134 From Babylon, Alexander went to [[Susa]], one of the [[Achaemenid]] capitals, and captured its treasury. Sending the bulk of his army to [[Persepolis]], the Persian capital, by the [[Royal Road]], Alexander stormed and captured the Persian Gates (in the modern [[Zagros Mountains]]), then sprinted for [[Persepolis]] before its treasury could be looted. Alexander allowed the League forces to loot Persepolis. A fire broke out in the eastern palace of [[Xerxes]] and spread to the rest of the city. It was not known if it was a drunken accident or a deliberate act of revenge for the burning of the [[Athenian Acropolis]] during the [[Greco-Persian Wars|Second Persian War]]. The ''Book of Arda Wiraz'', a Zoroastrian work composed in the 3rd or 4th century AD, also speaks of archives containing &quot;all the [[Avesta]] and Zand, written upon prepared cow-skins, and with gold ink&quot; that were destroyed; but it must be said that this statement is often treated by scholars with a certain measure of skepticism, because it is generally thought that for many centuries the Avesta was transmitted mainly orally by the [[Magians]].
30135
30136 He then set off in pursuit of Darius, who was kidnapped, and then murdered by followers of [[Bessus]], his [[Bactria]]n satrap and kinsman. Bessus then declared himself Darius' successor as Artaxerxes V and retreated into [[Central Asia]] to launch a [[guerrilla warfare|guerrilla]] campaign against Alexander. With the death of Darius, Alexander declared the war of vengeance over, and released his Greek and other allies from service in the League campaign (although he allowed those that wished to re-enlist as [[mercenaries]] in his imperial army).
30137
30138 His three-year campaign against first Bessus and then the satrap of [[Sogdiana]], [[Spitamenes]], took him through [[Medes|Media]], [[Parthia]], [[Aria (place)|Aria]], [[Drangiana]], [[Arachosia]], [[Bactria]], and [[Scythia]]. In the process, he captured and refounded [[Herat]] and [[Samarkand|Maracanda]]. Moreover, he founded a series of new cities, all called Alexandria, including modern [[Kandahar]] in [[Afghanistan]], and [[Alexandria Eschate]] (&quot;The Furthest&quot;) in modern [[Tajikistan]]. In the end, both were betrayed by their men, Bessus in [[329 BC]] and Spitamenes the year after.
30139
30140 ====Hostility toward Alexander====
30141 During this time, Alexander adopted some elements of Persian dress and customs at his court, notably the custom of ''[[proskynesis]]'', a symbolic kissing of the hand that Persians paid to their social superiors, but a practice of which the Greeks disapproved. The Greeks regarded the gesture as the preserve of [[deities]] and believed that Alexander meant to deify himself by requiring it. This cost him much in the sympathies of many of his countrymen. Here, too, a plot against his life was revealed, and his [[Companion cavalry|companion]] [[Philotas]] was executed for treason for failing to bring the plot to his attention. [[Parmenion]], Philotas' father, who was at the head of an army at [[Ecbatana]], was assassinated by command of Alexander, who feared that Parmenion might attempt to avenge his son. Several other trials for treason followed, and many Macedonians were executed. Later on, in a drunken quarrel at [[Maracanda]], he also killed the man who had saved his life at Granicus, [[Clitus the Black]]. Later in the Central Asian campaign, a second plot against his life, this one by his own [[page (servant)|pages]], was revealed, and his official historian, [[Callisthenes]] of [[Olynthus]] (who had fallen out of favor with the king by leading the opposition to his attempt to introduce ''proskynesis''), was implicated on what many historians regard as trumped-up charges. However, the evidence is strong that Callisthenes, the teacher of the pages, must have been the one who persuaded them to assassinate the king.
30142
30143 ===The invasion of India===
30144 [[Image:AlexPorusCoin.JPG|thumb|300px|Coin commemorating Alexander's campaigns in India, struck in [[Babylon]] around [[323 BC]].&lt;br/&gt;
30145 '''Obv:''' Alexander standing, being crowned by [[Nike (mythology)|Nike]], fully armed and holding [[Zeus]]' [[thunderbolt]].&lt;br/&gt;
30146 '''Rev:''' Greek rider, possibly Alexander, attacking an Indian battle-elephant, possibly fleeing [[Porus]].]]
30147
30148 With the death of Spitamenes and his marriage to [[Roxana]] (Roshanak in [[Bactrian language|Bactrian]]) to cement his relations with his new Central Asian satrapies, in [[326 BC]] Alexander was finally free to turn his attention to [[India]]. King [[Taxiles|Ambhi]], ruler of [[Taxila]], surrendered the city to Alexander. Many people had fled to a high fortress called [[Aornos]]. Alexander took Aornos by storm. Alexander fought an epic battle against [[Porus]], a ruler of a region in the [[Punjab region|Punjab]] in the [[Battle of Hydaspes]] in ([[326 BC]]). After attaining victory, Alexander made an alliance with Porus and appointed him as satrap of his own kingdom. Alexander then named one of the two new cities that he founded, Bucephala, in honor of his noble mount who had brought him to India. Alexander continued on to conquer all the headwaters of the [[Indus River]].
30149
30150 East of Porus' kingdom, near the [[Ganges River]], was the powerful empire of [[Magadha]] ruled by the [[Nanda dynasty]]. Fearing the prospects of facing another powerful Indian army and exhausted by years of campaigning, his army mutinied at the [[Beas River|Hyphasis]] (modern Beas), refusing to march further east. Alexander, after the meeting with his officer, [[Coenus]], was convinced that it was better to return. Alexander was forced to turn south, conquering his way down the Indus to the Indian Ocean. He sent much of his army to [[Carmania]] (modern southern [[Iran]]) with his general [[Craterus]], and commissioned a fleet to explore the [[Persian Gulf]] shore under his admiral [[Nearchus]], while he led the rest of his forces back to Persia by the southern route through the [[Gedrosia]] (present day [[Makran]] in southern [[Pakistan]]).
30151
30152 ===After India===
30153 [[Image:Le Brun, Alexander and Porus.jpg|thumb|350px|''Alexander and [[Porus]]'' by [[Charles Le Brun]], [[1673]].]]
30154
30155 Discovering that many of his satraps and military governors had misbehaved in his absence, Alexander executed a number of them as examples on his way to Susa. As a gesture of thanks, he paid off the debts of his soldiers, and announced that he would send those over-aged and disabled veterans back to Macedonia under Craterus, but his troops misunderstood his intention and mutinied at the town of [[Opis]], refusing to be sent away and bitterly criticizing his adoption of Persian customs and dress and the introduction of Persian officers and soldiers into Macedonian units. Alexander executed the ringleaders of the mutiny, but forgave the rank and file. In an attempt to craft a lasting harmony between his Macedonian and Persian subjects, he held a mass marriage of his senior officers to Persian and other noblewomen at Opis, but few of those marriages seem to have lasted much beyond a year.
30156
30157 His attempts to merge Persian culture with his Greek soldiers also included training a regiment of Persian boys in the ways of Macedonians. It is not certain that Alexander adopted the Persian royal title of ''[[shah|shahanshah]]'' (&quot;great king&quot; or
30158 &quot;king of kings&quot;). However, most historians believe that he did.
30159
30160 Alexander let it be known that he intended to launch a campaign against the tribes of Arabia. After they were subjugated, it was assumed that Alexander would turn westwards and attack [[Carthage]] and [[Italy]].
30161
30162 After traveling to Ecbatana to retrieve the bulk of the Persian treasure, his closest friend and possible lover [[Hephaestion]] died of an illness. Alexander was distraught and on his return to Babylon, he fell ill and died.
30163
30164 ==Alexander's marriages and sexuality==
30165 Alexander's greatest emotional attachment is generally considered to have been to his companion, cavalry commander (''chiliarchos'') and probable lover, [[Hephaestion]]. They had most likely been best friends since childhood for Hephaestion too received his education at the court of Alexander's father. Hephaestion makes his appearance in history at the point when Alexander reaches [[Troy]]. There the two friends made sacrifices at the shrines of the two heroes [[Achilles]] and [[Patroclus]]; Alexander honoring Achilles, and Hephaestion honoring Patroclus. As [[Claudius Aelianus|Aelian]] in his ''Varia Historia'' (12.7) claims, &quot;He thus intimated that he was the object of Alexander's love, as Patroclus was of Achilles.&quot; Following Hephaestion's death, Alexander mourned him greatly, and did not eat for days.
30166
30167 Many have discussed Alexander's ambiguous sexuality. [[Quintus Curtius Rufus|Curtius]] reports that, &quot;He scorned [feminine] sensual pleasures to such an extent that his mother was anxious lest he be unable to beget offspring.&quot; To encourage a relationship with a woman, King Philip and Olympias brought in a high-priced [[Thessaly|Thessalian]] [[hetaira|courtesan]] named Callixena.
30168
30169 Later in life, Alexander married several princesses of former Persian territories, [[Roxana]] of [[Bactria]], [[Statira]], daughter of Darius III, and [[Parysatis]], daughter of [[Ochus]]. He fathered two children, ([[Heracles (Macedon)|Heracles]]), born by his concubine [[Barsine]] (the daughter of satrap [[Artabazus of Phrygia]]) in [[327 BC]], and [[Alexander IV of Macedon]], born by Roxana shortly after his death in [[323 BC]].
30170
30171 Curtius maintains that Alexander also took as a lover &quot;[[Bagoas (courtier)|Bagoas]], a [[eunuch]] exceptional in beauty and in the very flower of boyhood, with whom Darius was intimate and with whom Alexander would later be intimate,&quot; (VI.5.23). Bagoas is the only one who is actually named as the ''eromenos'' &amp;mdash; the beloved &amp;mdash; of Alexander. Their relationship seems to have been well known among the troops, as [[Plutarch]] recounts an episode (also mentioned by [[Dicaearchus]]) during some festivities on the way back from India) in which his men clamor for him to openly kiss the young man: &quot;Bagoas [...] sat down close by him, which so pleased the Macedonians, that they made loud acclamations for him to kiss Bagoas, and never stopped clapping their hands and shouting till Alexander put his arms round him and kissed him.&quot; At this point in time, the troops present were all survivors of the crossing of the desert. Bagoas must have endeared himself to them by his courage and fortitude during that harrowing episode. Whatever Alexander's relationship with Bagoas, it was no impediment to relations with his queen: six months after Alexander's death Roxana gave birth to his son and heir, Alexander IV. Besides Bagoas, Curtius mentions yet another possible lover of Alexander, Euxenippus, &quot;whose youthful grace filled him with enthusiasm&quot; (VII.9.19).
30172
30173 Allegations concerning Alexander's sexuality remain highly controversial and excite passions in some quarters. People of various national, ethnic and cultural origins regard him as their hero. Some argue that historical accounts describing Alexander's love for Hephaestion and Bagoas as sexual were written centuries after the fact, and thus it can never be established what the historical relationship between Alexander and his male companions were. Others argue that the same can be said about much of our information regarding Alexander. Such debates, however, are generally considered anachronistic by scholars of the period, who point out that the concept of homosexuality as understood today did not exist in [[Greco-Roman]] [[classical antiquity|antiquity]]. Sexual attraction between males was seen as a normal and universal part of [[human nature]] since it was believed that men were attracted to [[beauty]], an attribute of the young, regardless of gender. If Alexander's love life was transgressive, it was not for his love of beautiful youths but for his probable involvement with a man his own age, in a time when the standard model of male love was [[pederasty|pederastic]]. See [[Pederasty in ancient Greece]] for more information.
30174
30175 ==The army of Alexander the Great before the [[Battle of Gaugamela]]==
30176 {{main|Ancient Macedonian military}}
30177 The army of Alexander was, for the most part, that of his father Philip. It was composed of light and heavy troops and some engineers, medical and staff units. About one third of the army was composed of his Greek allies from the Hellenic League.
30178
30179 ===Infantry===
30180 [[Image:Macedonian battle formation.gif|right|thumb|330px|Macedonian battle formation, courtesy of The Department of History, United States Military Academy.]]
30181 The main infantry corps was the [[Macedonian phalanx|phalanx]], composed of six regiments (''taxies'') numbering about 2000 phalangites each. Each soldier had a long [[pike]] called a ''[[sarissa]]'', which was up to 21 feet long, and a short [[sword]]. For protection, the soldier wore a [[Phrygian cap|Phrygian-style]] [[helmet]] and a [[shield]]. [[Arrian]] mentions large shields (the ''[[aspis]]''), but this is disputed, as it is difficult to wield both a large pike and a large shield at the same time. Many modern historians claim the [[phalanx]] used a smaller shield, called a ''[[pelta]]'', the shield used by [[peltast]]s. It is unclear whether the phalanx used body armor, but heavy body armor is mentioned in Arrian (1.28.7) and other ancient sources. Modern historians believe most of the phalangites did not wear heavy body armor at the time of Alexander.
30182
30183 Another important unit were the [[hypaspist]]s (shield bearers), arranged into three battalions (''[[lochoi]]'') of 1000 men each. One of the battalions was named the ''[[Agema]]'' and served as the King's bodyguards. Their armament is unknown and it is difficult to get a clear picture from ancient sources. Sometimes hypaspists are mentioned in the front line of the battle just between the phalanx and the heavy [[cavalry]]. Moreover, they seem to have acted as an extension of the phalanx fighting as heavy infantry while keeping a link between the heavily clad phalangites and the companion cavalry. They also accompanied Alexander on flanking marches and were capable of fighting on rough terrain like light troops so it seems they could perform dual functions.
30184
30185 In addition to the units mentioned above, the army included some 6000 Greek allied and mercenary [[hoplite]]s, also arranged in phalanxes. They carried a shorter [[spear]], a ''[[dora]]'', which was six or seven feet long and a large ''aspis''.
30186
30187 Alexander also had light infantry units composed of [[peltast]]s, [[psiloi]] and others. Peltasts are considered to be light infantry, although they had a helmet and a small shield and were heavier than the ''psiloi''. The best peltasts were the [[Agrianians]] from [[Thrace]].
30188
30189 ===Cavalry===
30190 The heavy cavalry included the [[Companion cavalry]] raised from the Macedonian nobility, and the Thessalian cavalry. The Companion cavalry (''hetairoi'', friends) was divided into eight squadrons called ''ile'', 200 strong, except the Royal Squadron of 300. They were equipped with a 12 foot lance, the ''xyston'', and heavy body armor. The horses were partially clad in armor as well. The riders did not carry shields, as the xyston required both hands to wield. The organization of the Thessalian cavalry was similar to the Companion Cavalry, but they had a shorter spear and fought in a looser formation.
30191
30192 Of light cavalry, the ''prodromoi'' (forerunners) secured the wings of the army during battle and went on [[reconnaissance]] missions. Several hundred allied horses rounded out the cavalry.
30193
30194 ==Death==
30195 [[Image:Alexander the great 1.jpg|thumb|left|Contemporary [[bust (sculpture)|bust]] of Alexander the Great.]]
30196
30197 On the afternoon of [[June 10]] - [[June 11|11]], [[323 BC]], Alexander died of a mysterious illness in the palace of [[Nebuchadrezzar II|Nebuchadrezzar II of Babylon]]. He was just one month shy of attaining 33 years of age. Various theories have been proposed for the cause of his death which include [[poisoning]] by the sons of [[Antipater]] or others, sickness that followed a drinking party, or a relapse of the [[malaria]] he had contracted in [[336 BC]].
30198
30199 What is certain is that on May 29, Alexander participated in a banquet organized by his friend [[Medius of Larissa]]. After some heavy drinking, immediately or after a bath, he was forced to bed badly ill. The troops started rumors, more and more anxious, and on June 9, the generals decided to let the soldiers see their king alive one last time. They were admitted to his presence one at a time, while the king, too ill to speak, confined himself to move his hand. The day after, Alexander was dead.
30200
30201 The poisoning theory derives from the story held in antiquity by Justin and Curtius. The original story stated that [[Cassander]], son of [[Antipater]], viceroy of Greece, brought the poison to Alexander in Babylon in a mule's hoof, and that Alexander's royal cupbearer, [[Iollas]], brother of Cassander, administered it. Many had powerful motivations for seeing Alexander gone, and were none the worse for it after his death. Deadly agents that could have killed Alexander in one or more doses include hellebore and [[strychnine]]. In [[Robin Lane Fox|R. Lane Fox]]'s opinion, the strongest argument against the poison theory is the fact that twelve days had passed between the start of his illness and his death and in the ancient world, such long-acting poisons were probably not available (though this discounts the possibility of multiple doses).
30202
30203 However, the warrior culture of Macedon favored the sword over strychnine, and many ancient historians, like [[Plutarch]] and [[Arrian]], maintained that Alexander was not poisoned, but died of natural causes. Instead, it is likely that Alexander died of malaria or typhoid fever, which were rampant in ancient Babylon. Other illnesses could have also been the culprit, including [[acute pancreatitis]] or the [[West Nile virus|West Nile]] virus. Recently, theories have been advanced stating that Alexander may have died from the treatment not the disease. [[Hellebore]], believed to have been widely used as a medicine at the time but deadly in large doses, may have been overused by the impatient king to speed his recovery, with deadly results. Disease-related theories often cite the fact that Alexander's health had fallen to dangerously low levels after years of heavy drinking and suffering several appalling wounds (including one in [[India]] that nearly claimed his life), and that it was only a matter of time before one sickness or another finally killed him.
30204
30205 No story is conclusive. Alexander's death has been reinterpreted many times over the centuries, and each generation offers a new take on it. What is certain is that Alexander died of a high fever on June 10 or 11 of 323 BC. On his death bed, his marshals asked him to whom he bequeathed his kingdom. Since Alexander had only one heir, it was a question of vital importance. He answered famously, &quot;the strongest.&quot; Before dying, his final words were &quot;I foresee a great funeral contest over me.&quot; Alexander's 'funeral games', where his marshals fought it out over control of his empire, lasted for nearly forty years.
30206
30207 Alexander's death has been surrounded by as much controversy as many of the events of his life. Before long, accusations of foul play were being thrown about by his generals at one another, making it incredibly hard for a modern historian to sort out the propaganda and the half-truths from the actual events. No contemporary source can be fully trusted because of the incredible level of self-serving recording, and as a result what truly happened to Alexander the Great may never be known.
30208
30209 Alexander's body was placed in a gold anthropid [[sarcophagus]], which was in turn placed in a second gold casket and covered with a purple robe. Alexander's coffin was placed, together with his armor, in a gold carriage which had a vaulted roof supported by an Ionic peristyle. The decoration of the carriage was very rich and is described in great detail by Diodoros.
30210
30211 According to legend, Alexander was preserved in a clay vessel full of [[honey]] (which acts as a preservative) and interred in a glass [[coffin]]. According to Aelian (''Varia Historia'' 12.64), [[Ptolemy I Soter|Ptolemy]] stole the body and brought it to [[Alexandria]], where it was on display until Late Antiquity. It was here that [[Ptolemy IX of Egypt|Ptolemy IX]], one of the last successors of Ptolemy I, replaced Alexander's sarcophagus with a glass one, and melted the original down in order to strike emergency gold issues of his coinage. The citizens of Alexandria were outraged at this and soon after Ptolemy IX was killed. Its current whereabouts are unknown.
30212
30213 The so-called &quot;Alexander Sarcophagus,&quot; discovered near [[Sidon]] and now in the [[Istanbul Archaeological Museum]], is now generally thought to be that of [[Abdylonymus]], whom Hephaestion appointed as the king of Sidon by Alexander's order. The sarcophagus depicts Alexander and his companions hunting and in battle with the Persians.
30214
30215 ==Legacy and division of the empire==
30216 {{main|Diadochi}}
30217 [[Image:Alexander Aramaic coin.jpg|thumb|left|200px|Coin of Alexander bearing an [[Aramaic language]] inscription.]]
30218 After Alexander's death, his empire was divided among his officers, mostly with the pretense of first preserving a united kingdom. Later, his officers were focused on the explicit formation of rival monarchies and territorial states.
30219
30220 Ultimately, the conflict was settled after the [[Battle of Ipsus]] in [[Phrygia]] in [[301 BC]]. Alexander's empire was divided at first into four major portions: Cassander ruled in [[Macedon]], [[Lysimachus]] in [[Thrace]], [[Seleucus I Nicator|Seleucus]] in [[Mesopotamia]] and [[Iran]], and [[Ptolemy I Soter|Ptolemy]] in the [[Levant]] and [[Egypt]]. [[Antigonus I Monophthalmus|Antigonus]] ruled for a while in [[Asia Minor]] and [[Syria]] but was eventually defeated by the other generals at Ipsus ([[301 BC]]). Control over [[India]]n territory was short-lived when Seleucus was defeated by [[Chandragupta Maurya]], the first [[Mauryan]] emperor.
30221
30222 By [[270 BC]], [[Hellenistic]] states consolidated, with:
30223 :*The [[Antigonid dynasty|Antigonid Empire]] centered on Macedon.
30224 :*The [[Seleucid Empire]] in Asia
30225 :*The [[Ptolemaic dynasty|Ptolemaic kingdom]] in Egypt, Palestine and [[Cyrenaica]]
30226
30227 By the [[1st century BC]] though, most of the Hellenistic territories in the West had been absorbed by the [[Roman Republic]]. In the East, they had been dramatically reduced by the expansion of the [[Parthian Empire]] and the secession of the [[Greco-Bactrian]] kingdom.
30228
30229 Alexander's conquests also had long term [[cultural]] effects, with the flourishing of [[Hellenistic civilization]] throughout the [[Middle-East]] and [[Central Asia]], and the development of [[Greco-Buddhist art]] in the [[Indian subcontinent]].
30230 ===Influence on [[Ancient Rome]]===
30231 [[Image:Mosaica.jpg|thumb|200px|A mural in [[Pompeii]], depicting the marriage of Alexander to Barsine (Stateira) in 324 BC. The couple are apparently dressed as Ares and Aphrodite.]]
30232 Alexander and his exploits were admired by many Romans who wanted to associate themselves with his achievements, although very little is known about Roman-Macedonian diplomatic relations of that time. [[Julius Caesar]] wept in Spain at the mere sight of Alexander's statue and [[Pompey the Great]] rummaged through the closets of conquered nations for Alexander's 260-year-old cloak, which the Roman general then wore as the costume of greatness. However in his zeal to honor Alexander, [[Octavian Augustus]] accidentally broke the nose off the Macedonian's mummified corpse while laying a wreath at the hero's shrine in Alexandria, Egypt. The unbalanced emperor [[Caligula]] later took the dead king's armor from that tomb and donned it
30233 for luck. The Macriani, a Roman family that rose to the imperial throne in the [[3rd century]] A.D., always kept images of Alexander on their persons, either stamped into their bracelets and rings or stitched into their garments. Even their dinnerware bore Alexander's face, with the story of the king's life displayed around the rims of special bowls[[#Notes|&amp;sup1;]].
30234
30235 In the summer of [[1995]] during the archaeological work of the season centered on excavating the remains of domestic architecture of early-Roman date a statue of Alexander was recovered from the structure, which was richly decorated with mosaic and marble pavements and probably was constructed in the 1st century A.D. and occupied until the 3rd century[[#Notes|&amp;sup2;]].
30236 ====Notes====
30237 &lt;small&gt;1- Frank L. Holt. Alexander the Great and the Mystery of the Elephant
30238 Medallions. University of California Press.
30239
30240 &lt;small&gt;2- [http://www.egyptology.com/kmt/fall96/nile.html Salima Ikram. Nile Currents]
30241
30242 ==General timeline==
30243 {{atg-timeline}}
30244
30245 ==Alexander's character==
30246 {{npov-section}}
30247
30248 [[Image:Ac alexanderstatue.jpg|thumb|250px|Equestrian statue of [[Alexander the Great]], on the waterfront at [[Thessaloniki]], capital of [[Greek Macedonia]].]]
30249
30250 Modern opinion on Alexander has run the gamut from the idea that he believed he was on a divinely-inspired mission to unite the [[human race]], to the view that he was a [[Narcissism|megalomaniac]] bent on [[Global domination|world domination]]. Such views tend to be [[Anachronism|anachronistic]], however, and the sources allow for a variety of interpretations. Much about Alexander's personality and aims remains enigmatic.
30251
30252 Alexander is remembered as a legendary hero in [[Europe]] and much of both [[Southwest Asia]] and [[Central Asia]], where he is known as '''Iskander''' or '''Iskandar Zulkarnain'''. To [[Zoroastrians]], on the other hand, he is remembered as the destroyer of their first great empire and as the leveller of [[Persepolis]]. Ancient sources are generally written with an agenda of either glorifying or denigrating the man, making it difficult to evaluate his actual character. Most refer to a growing instability and megalomania in the years following Gaugamela, but it has been suggested that this simply reflects the Greek [[stereotype]] of an orientalizing king. The murder of his friend [[Clitus the Black|Clitus]], which Alexander deeply and immediately regretted, is often cited as a sign of his paranoia, as is his execution of Philotas and his general Parmenion for failure to pass along details of a plot against him. However, this may have been more prudence than paranoia.
30253
30254 Modern Alexandrists continue to debate these same issues, among others, in modern times. One unresolved topic involves whether Alexander was actually attempting to better the world by his conquests, or whether his purpose was primarily to rule the world.
30255
30256 Partially in response to the ubiquity of positive portrayals of Alexander, an alternate character is sometimes presented which emphasizes some of Alexander's negative aspects. Some proponents of this view cite the destructions of [[Thebes, Greece|Thebes]], [[Tyre]], [[Persepolis]], and [[Gaza]] as examples of atrocities, and argue that Alexander preferred to fight rather than negotiate. It is further claimed, in response to the view that Alexander was generally tolerant of the cultures of those whom he conquered, that his attempts at cultural fusion were severely practical and that he never actually admired Persian art or culture. To this way of thinking, Alexander was, first and foremost, a general rather than a statesman.
30257
30258 Alexander's character also suffers from the interpretation of historians who themselves are subject to the bias and idealisms of their own time. Good examples are [[W. W. Tarn]], who wrote during the late [[19th century]] and early [[20th century]], and who saw Alexander in an extremely good light, and [[Peter Green (historian)|Peter Green]], who wrote after [[World War II]] and for whom Alexander did little that was not inherently selfish or ambition-driven. Tarn wrote in an age where world conquest and warrior-heroes were acceptable, even encouraged, whereas Green wrote with the backdrop of [[the Holocaust]] and [[nuclear weapon]]s. As a result, Alexander's character is skewed depending on which way the historian's own culture is, and further muddles the debate of who he truly was.
30259
30260 ===Stories and legends===
30261 According to one story, the philosopher [[Anaxarchus]] checked the vainglory of Alexander, when he aspired to the honors of divinity, by pointing to Alexander's wound, saying, &quot;See the blood of a mortal, not the [[ichor]] of a god.&quot; In another version, Alexander himself pointed out the difference in response to a [[sycophant]]ic soldier. A strong oral tradition, although not attested in any extant primary source, lists Alexander as having [[epilepsy]], known to the Greeks as the Sacred Disease and thought to be a mark of divine favor.
30262
30263 Alexander had a legendary horse named [[Bucephalus]] (meaning &quot;ox-headed&quot;), supposedly descended from the [[Mares of Diomedes]]. Alexander himself, while still a young boy, tamed this horse after experienced horse-trainers failed to do so.
30264
30265 There is an apocryphal tale, appearing in a redaction of the pseudo-historical [[Alexander Romance]], which details another end for the last true Pharaoh of Egypt. Soon after Alexander's divinity was confirmed by the Oracle of Zeus Ammon, a rumor was begun that [[Nectanebo II]] did not travel to [[Nubia]] but instead to the court of Philip II of Macedon in the guise of an Egyptian magician. He coupled with Phillip's wife [[Olympias]] and from his issue came Alexander. This myth would hold strong appeal for Egyptians who desired continuity in rule and harbored a strong dislike for foreign rule.
30266
30267 Another legend tells of Alexander's campaign down into the Syrian world toward Egypt. On the way, he planned to lay siege to the city of [[Jerusalem]]. As the victorious armies of the Greeks approached the city, word was brought to the Jews in Jerusalem that the armies were on their way. The high priest at that time, who was a godly old man by the name of Jaddua (mentioned also in the [[Bible]] [[book of Nehemiah]]) took the sacred writings of [[Daniel the prophet]] and, accompanied by a host of other priests dressed in white garments, went forth and met Alexander some distance outside the city.
30268
30269 All this is from the report of [[Josephus]], the Jewish historian, who tells us that Alexander left his army and hurried to meet this body of priests. When he met them, he told the high priest that he had had a vision the night before in which God had shown him an old man, robed in a white garment, who would show him something of great significance to himself, according to the account, the high priest then opened the prophecies of Daniel and read them to Alexander.
30270
30271 In the prophecies Alexander was able to see the predictions that he would become that notable goat with the horn in his forehead, who would come from the West and smash the power of Persia and conquer the world. He was so overwhelmed by the accuracy of this prophecy and, of course, by the fact that it spoke about him, that he promised that he would save Jerusalem from siege, and sent the high priest back with honors.
30272
30273 ==Ancient sources==
30274 The ancient sources for Alexander's life are, from the perspective of ancient history, relatively numerous. Alexander himself left only a few inscriptions and some letter-fragments of dubious authenticity, but a large number of his contemporaries wrote full accounts. The key contemporary historians are considered [[Callisthenes]], his general [[Ptolemy I Soter|Ptolemy]], [[Aristobulus of Cassandreia|Aristobulus]], [[Nearchus]] and [[Onesicritus]]. Another influential account was penned by [[Cleitarchus]], who, while not a direct witness of Alexander's expedition, used the sources which had just been published. His work was to be the backbone of that of [[Timagenes]], who heavily influenced many surviving historians. Unfortunately, all these works were lost. Instead, the modern historian must rely on authors who used these and other early sources.
30275
30276 The five main accounts are by Arrian, Curtius, Plutarch, Diodorus, and Justin.
30277 * ''[[Anabasis Alexandri]]'' (''The Campaigns of Alexander'' in Greek) by the Greek historian [[Arrian]] of [[Nicomedia]], writing in the [[2nd century AD]], and based largely on Ptolemy and, to a lesser extent, Aristobulus and Nearchus. It is considered generally the most trustworthy source.
30278 * ''Historiae Alexandri Magni'', a biography of Alexander in ten books, of which the last eight survive, by the Roman historian [[Quintus Curtius Rufus]], written in the [[1st century AD]], and based largely on Cleitarchus through the mediation of Timagenes, with some material probably from Ptolemy;
30279 * ''Life of Alexander'' (see ''[[Parallel Lives]]'') and two orations ''On the Fortune or the Virtue of Alexander the Great'' (see ''[[Moralia]]''), by the Greek historian and biographer [[Plutarch]] of [[Chaeronea]] in the second century, based largely on Aristobulus and especially Cleitarchus.
30280 * ''Bibliotheca historia'' (''Library of world history''), written in Greek by the [[Sicilian]] historian [[Diodorus Siculus]], from which Book 17 relates the conquests of Alexander, based almost entirely on Timagenes's work. The books immediately before and after, on Philip and Alexander's &quot;Successors,&quot; throw light on Alexander's reign.
30281 * The ''Epitome of the Philippic History of Pompeius Trogus'' by [[Junianus Justinus|Justin]], which contains factual errors and is highly compressed. It is difficult in this case to understand the source, since we only have an epitome, but it is thought that also [[Gnaeus Pompeius Trogus|Pompeius Trogus]] may have limited himself to use Timagenes for his Latin history. To these five main sources some like to add the ''[[Metz Epitome]]'', an anonymous late Latin work that narrates Alexander's campaigns from [[Hyrcania]] to India. Much is also recounted incidentally in other authors, including [[Strabo]], [[Athenaeus]], [[Polyaenus]], [[Claudius Aelianus|Aelian]], and others.
30282
30283 The &quot;problem of the sources&quot; is the main concern (and chief delight) of Alexander-historians. In effect, each presents a different &quot;Alexander,&quot; with details to suit. Arrian is mostly interested in the military aspects, while Curtius veers to a more private and darker Alexander. Plutarch can't resist a good story, light or dark. All, with the possible exception of Arrian, include a considerable level of fantasy, prompting Strabo to remark, &quot;All who wrote about Alexander preferred the marvellous to the true.&quot; Nevertheless, the sources tell us much, and leave much to our interpretation and imagination.
30284
30285 ==Alexander's legend==
30286 Alexander was a legend in his own time. His court historian Callisthenes portrayed the sea in [[Cilicia]] as drawing back from him in [[proskynesis]]. Writing after Alexander's death, another participant, [[Onesicritus]], went so far as to invent a [[tryst]] between Alexander and [[Thalestris]], queen of the mythical [[Amazons]]. When Onesicritus read this passage to his patron, Alexander's general and later King [[Lysimachus]], Lysimachus reportedly quipped &quot;I wonder where I was at the time.&quot;
30287
30288 In the first centuries after Alexander's death, probably in [[Alexandria]], a quantity of the more legendary material coalesced into a text known as the ''[[Alexander Romance]]'', later falsely ascribed to the historian Callisthenes and therefore known as ''Pseudo-Callisthenes''. This text underwent numerous expansions and revisions throughout Antiquity and the [[Middle Ages]], exhibiting a plasticity unseen in &quot;higher&quot; literary forms. Latin and [[Syriac]] translations were made in Late Antiquity. From these, versions were developed in all the major languages of [[Europe]] and the [[Middle East]], including [[Armenian language|Armenian]], [[Georgian language|Georgian]], [[Persian language|Persian]], [[Arabic language|Arabic]], [[Turkish language|Turkish]], [[Hebrew language|Hebrew]], [[Serbian language|Serbian]], [[Slavic languages|Slavonic]], [[Romanian language|Romanian]], [[Hungarian language|Hungarian]], [[German language|German]], [[English language|English]], [[Italian language|Italian]], and [[French language|French]]. The &quot;Romance&quot; is regarded by most Western scholars as the source of the [[account of Alexander given in the Qur'an]] ([[Sura]] ''The Cave''). It is the source of many incidents in [[Ferdowsi]]'s &quot;[[Shahnama]]&quot;. A [[Mongol]]ian version is also extant.
30289
30290 Some believe that, excepting certain religious texts, it is the most widely-read work of pre-modern times.
30291
30292 ===Alexander's legend in non-Western sources===
30293 {{main|Alexander in the Qur'an (Theory)}}
30294 Alexander was often identified in Persian and Arabic-language sources as [[Dhul-Qarnayn]], Arabic for the &quot;Two-Horned One&quot;, possibly a reference to the appearance of a horn-headed figure that appears on coins minted during his rule and later imitated in ancient Middle Eastern coinage. If this theory is followed, [[Islamic]] accounts of the Alexander legend, particularly in the [[Qur'an]] and in Persian legends, combined the [[Pseudo-Callisthenes]] legendary, pseudo-religious material about Alexander. The same legends from the Pseudo-Callisthenes were combined in Persia with [[Sasanid]] [[Pahlavi languge|Persian]] ideas about Alexander in the [[Iskandarnamah]].
30295
30296 ==Main towns founded by Alexander==
30297 Around seventy towns or outposts are claimed to have been founded by Alexander. Some of the main ones are:
30298
30299 * [[Alexandria, Egypt|Alexandria]], [[Egypt]]
30300 * [[Alexandria Asiana]], [[Iran]]
30301 * [[Alexandria in Ariana]], [[Afghanistan]]
30302 * [[Alexandria of the Caucasus]], [[Afghanistan]]
30303 * [[Alexandria on the Oxus]], [[Afghanistan]]
30304 * [[Alexandria of the Arachosians]], [[Afghanistan]]
30305 * [[Alexandria on the Indus]] (Alexandria Bucephalous), [[Pakistan]]
30306 * [[Alexandria Eschate|Alexandria Eschate, &quot;The furthest&quot;]], [[Tajikistan]]
30307 * [[Iskenderun]] (Alexandretta), [[Turkey]]
30308 * [[Kandahar]] (Alexandropolis), [[Afghanistan]]
30309
30310 ==Alexander in popular media==
30311
30312 [[Image:Rogue shield.jpg|right|thumb|200px|The ''Smallville'' version of the Shield of Alexander the Great, as seen in the first season episode, &quot;Rogue&quot;]]
30313
30314 *A [[1956]] movie starring [[Richard Burton]] titled ''[[Alexander the Great (1956 film)|Alexander the Great]]'' was produced by [[Metro-Goldwyn-Mayer|MGM]].
30315 *A [[1941]] [[Hindi]] movie ''Sikandar'' directed by [[Sohrab Modi]] depicts Alexander the Great's Indian conquest.
30316 *[[Bond (band)|Bond]]'s 2000 album ''Born'' includes a song titled ''Alexander the Great''.
30317 *[[Oliver Stone]]'s film ''[[Alexander (film)|Alexander]]'', starring [[Colin Farrell]], was released on [[November 24]], [[2004]].
30318 *[[Baz Luhrmann]] had been planning to make a very different film about Alexander, starring [[Leonardo DiCaprio]], but the release of Stone's film eventually persuaded him to abandon the project. [http://www.imdb.com/news/wenn/2004-11-01#2]
30319 *Numerous [[television program|television series]] about Alexander have been created.
30320 *The British heavy metal band [[Iron Maiden]] had a song entitled &quot;[[Alexander the Great (song)|Alexander the Great]]&quot; on their album ''[[Somewhere in Time (album)|Somewhere in Time]]'' ([[1986]]). The song describes Alexander's life, but contains one inaccuracy: in the song it is stated that Alexander's army would not follow him into India.
30321 * Brazilian musician [[Caetano Veloso]]'s [[1998]] album ''Livro'' includes an epic song about Alexander called &quot;Alexandre.&quot;
30322 *From [[1969]] to [[1981]], [[Mary Renault]] wrote a historical fiction [[trilogy]], speculating on the life of Alexander: ''Fire from Heaven'' (about his early life), ''The Persian Boy'' (about his conquest of Persia, his expedition to India, and his death, seen from the viewpoint of a Persian [[eunuch]]), and ''Funeral Games'' (about the events following his death). Alexander also appears briefly in Renault's novel ''The Mask of Apollo''. In addition to the fiction, Renault also wrote a non-fiction biography, ''The Nature of Alexander''.
30323 *A 1965 [[Hindi]] movie ''Sikandar-e-Azam'' directed by [[Kedar Kapoor]] starring [[Dara Singh]] as Alexandar depicts Alexandar's Indian conquest with Porus.
30324 *A further trilogy of novels about Alexander was written in [[Italian language|Italian]] by [[Valerio Massimo Manfredi]] and subsequently published in an English translation, entitled ''The Son of the Dream'', ''The Sands of Ammon'' and ''The Ends Of The Earth''.
30325 * David Gemmel's &quot;Dark Prince&quot; features Alexander as the chosen vessel for a world-destroying demon king. ISBN 0345379101.
30326 *[[Steven Pressfield]]'s [[2004]] book ''The Virtues of War'' is told from the [[first-person narrative|first-person]] [[point of view (literature)|perspective]] of Alexander.
30327 *An [[epic poetry|epic]] [[science fiction]] [[animation|animated]] retelling of the story called ''[[Reign (anime)|Reign: The Conqueror]]'', based on the novel ''Alexander Senki'' by [[Hiroshi Aramata]], with character designs by [[Peter Chung]] of ''[[Aeon Flux]]'' fame, debuted in [[Japan]] in [[1997]] and on the [[Cartoon Network]]'s ''[[Adult Swim]]'' block variety show in [[2003]].
30328 * Alexander is a character in the [[computer game]] [[Civilization (computer game)|Civilization]].
30329 * The ''[[Smallville (TV series)|Smallville]]'' season 1 episode &quot;Rogue&quot;, [[Lex Luthor]] shows [[Superman|Clark Kent]] the shield that Alexander the Great wore in battle. The shield is gold, with red and blue diamonds (the colors that represent [[Superman]]), and a snake shaped like the letter S.
30330 * The [[1975]] film ''[[The Man Who Would Be King (film)|The Man Who Would Be King]]'' starring [[Sean Connery]] and [[Michael Caine]] is based on the [[Rudyard Kipling]] [[The Man Who Would Be King|story]] of two British adventurers who cross the Hindu Kush to the land of [[Kafiristan]], once conquered by Alexander. Daniel (Connery) is believed by the natives to be the return of Alexander and is crowned King.
30331
30332 ==Notes==
30333 {{ent|1|MvsG1}} Whether the [[Ancient Macedonians|Macedonians]] of Alexander's time and before were [[Hellenes]] (Greeks) is disputed by scholars. The question largely depends on the classification of the [[Ancient Macedonian language]]. By separating Macedonians and Greeks in this sentence and others, no position in this debate is implied.
30334 {{ent|2|MvsG2}} See note 1.
30335
30336 ==References==
30337 *[[J.F.C. Fuller|Fuller, J.F. C]]; ''A Military History of the Western World: From the earliest times to the Battle of Lepanto''; New York: Da Capo Press, Inc., 1987 and 1988. ISBN 0306803046
30338 *De Santis, Marc G. “At The Crossroads of Conquest.” &lt;u&gt;[[Military Heritage]]&lt;/u&gt;. December 2001. Volume 3, No. 3: 46-55, 97 (Alexander the Great, his military, his strategy at the Battle of Gaugamela and his defeat of Darius making Alexander the King of Kings).
30339
30340
30341 ==External links==
30342 '''Primary Sources'''
30343 *[http://www.livius.org/aj-al/alexander/alexander_z1b.html Alexander the Great: An annotated list of primary sources] from Livius.org
30344 *[http://www.thegreatalexander.com Alexander the Great - O Megas Alexandros] Alexander the Great forum, articles, and referenced information.
30345 *Wiki Classical Dictionary, [http://www.ancientlibrary.com/wcd/Alexander_the_Great%2C_extant_sources extant sources] and [http://www.ancientlibrary.com/wcd/Alexander_the_Great%2C_Fragmentary_and_lost_sources fragmentary and lost sources]
30346 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Plutarch/Lives/Alexander*/home.html Plutarch, ''Life of Alexander''] (in English)
30347 *[http://www.forumromanum.org/literature/justin/english/index.html Justin, ''Epitome of the Philippic History of Pompeius Trogus''] (in English)
30348 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Plutarch/Moralia/Fortuna_Alexandri*/home.html Plutarch, ''Of the Fortune or Virtue of Alexander the Great''] (in English)
30349 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Curtius/home.html Quintus Curtius Rufus, ''Histories of Alexander''] (in Latin)
30350 *[http://www.isidore-of-seville.com/alexander/5.html Alexander's Death] from Alexander the Great on the Web: 1,000 resources about Alexander the Great
30351
30352 *[http://www.3dsrc.com/alexandrelegrand/multimedia.php Alexander The Great in the french museum Le Louvre]
30353
30354 '''Projects'''
30355 *[http://www.isidore-of-seville.com/Alexanderama.html Alexander the Great on the Web], a comprehensive directory of some 1,000 sites
30356 *[http://www.petersommer.com/alexander.html In the footsteps of Alexander the Great]: an archaeological adventure across Turkey, with travel article and archaeological links
30357 *[http://www.livius.org/aj-al/alexander/alexander00.html Livius Project] articles on Alexander by Jona Lendering
30358 *[http://www.pothos.org Pothos.org: Alexander's Home on the Web]
30359 *[http://www.ancientlibrary.com/wcd/Category:Alexander_the_Great Wiki Classical Dictionary: Category Alexander the Great], a Mediawiki based project, with stricter guidelines and editors
30360 *[http://rg.ancients.info/alexander/ Alexander the Great Coins], a site depicting Alexander's coins and later coins featuring Alexander's image
30361 *[http://www.thegreatalexander.com Alexander the Great Site], a site dedicated to Alexander. Features Articles about Alexander, his life, armies, mysteries surrounding his death, and the Hellenistic Period that came after this great Hellenic Leader.
30362
30363 '''Narratives'''
30364 *[http://www.1stmuse.com/frames/ Alexander the Great of Macedon], a project by John J. Popovic
30365 *[http://www.androphile.org/preview/Library/Biographies/Alexander/Alexander.htm The loves of Alexander III of Macedon]
30366
30367 '''Discussion'''
30368 *[http://www.pothos.org/forum Pothos Forum]
30369 *[http://www.thegreatalexander.com/alexander-forum/ Alexander the Great Forum], a forum for Alexander the Great and the history surrounding him.
30370 '''Bibliography'''
30371 *[http://hum.ucalgary.ca/wheckel/bibl/alex-bibl.pdf PDF: A Bibliography of Alexander the Great] by Waldemar Heckel
30372
30373 {{start box}}
30374 |-
30375 | width=&quot;30%&quot; align=&quot;center&quot; | Preceded by:&lt;br /&gt;'''[[Philip II of Macedon|Philip II]]'''
30376 | width=&quot;40%&quot; align=&quot;center&quot; | '''[[Kings of Macedon|King of Macedon]]'''&lt;br /&gt;336&amp;ndash;323 BC
30377 | width=&quot;30%&quot; align=&quot;center&quot; rowspan=&quot;4&quot;| Succeeded by:&lt;br /&gt;'''[[Philip III of Macedon|Philip III]] &amp;amp; [[Alexander IV of Macedon|Alexander IV]]'''
30378
30379 |-
30380 | width=&quot;30%&quot; align=&quot;center&quot; rowspan=&quot;2&quot;| Preceded by:&lt;br /&gt;'''[[Darius III of Persia|Darius III]]'''
30381 | width=&quot;40%&quot; align=&quot;center&quot; | '''[[List of kings of Persia|Great King of Media and Persia]]'''&lt;br /&gt; 330&amp;ndash;323 BC
30382 |-
30383 | width=&quot;40%&quot; align=&quot;center&quot; | '''[[Pharaoh|Pharaoh of Egypt]]'''&lt;br /&gt;332&amp;ndash;323 BC
30384 |-
30385 {{end box}}
30386
30387 {{Plutarch's lives}}
30388
30389 [[Category:323 BC deaths]]
30390 [[Category:356 BC births]]
30391 [[Category:Alexander the Great| ]]
30392 [[Category:Ancient Greek generals]]
30393 [[Category:Ancient Greeks]]
30394 [[Category:City founders]]
30395 [[Category:Macedonian monarchs]]
30396 [[Category:Mummies]]
30397 [[Category:Nine Worthies]]
30398 [[Category:Pederastic lovers]]
30399
30400 {{Link FA|fi}}
30401 {{Link FA|no}}
30402 {{Link FA|sk}}
30403
30404 [[af:Alexander die Grote]]
30405 [[ar:اŲ„ØĨØŗŲƒŲ†Ø¯Øą اŲ„ØŖŲƒØ¨Øą]]
30406 [[ast:Aleixandre'l Grande]]
30407 [[bg:АĐģĐĩĐēŅĐ°ĐŊĐ´ŅŠŅ€ МаĐēĐĩĐ´ĐžĐŊŅĐēи]]
30408 [[bs:Aleksandar Veliki]]
30409 [[ca:Alexandre el Gran]]
30410 [[cs:Alexandr VelikÃŊ]]
30411 [[da:Alexander den Store]]
30412 [[de:Alexander der Große]]
30413 [[el:ΑÎģέΞιÎŊδĪÎŋĪ‚ Îŋ ΜέÎŗÎąĪ‚]]
30414 [[eo:Aleksandro la Granda]]
30415 [[es:Alejandro Magno]]
30416 [[et:Aleksander Suur]]
30417 [[eu:Alexandro Handia]]
30418 [[fa:اØŗÚŠŲ†Ø¯Øą Ų…Ų‚دŲˆŲ†ÛŒ]]
30419 [[fi:Aleksanteri Suuri]]
30420 [[fr:Alexandre le Grand]]
30421 [[fy:Aleksander de Grutte]]
30422 [[gl:Alexandre o Grande]]
30423 [[he:אלכסנדר הגדול]]
30424 [[hr:Aleksandar Veliki]]
30425 [[hu:Nagy SÃĄndor]]
30426 [[id:Alexander Agung]]
30427 [[is:Alexander mikli]]
30428 [[it:Alessandro Magno]]
30429 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗドロ゚3世]]
30430 [[ko:ė•Œë ‰ė‚°ë“œëĄœėŠ¤ 대ė™•]]
30431 [[ku:EskenderÃĒ Mezin]]
30432 [[la:Alexander Magnus]]
30433 [[lt:Aleksandras Didysis]]
30434 [[lv:Aleksandrs Lielais]]
30435 [[mk:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ МаĐēĐĩĐ´ĐžĐŊŅĐēи]]
30436 [[nl:Alexander de Grote]]
30437 [[no:Aleksander den store]]
30438 [[pl:Aleksander Macedoński]]
30439 [[pt:Alexandre, o Grande]]
30440 [[ro:Alexandru cel Mare]]
30441 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ МаĐēĐĩĐ´ĐžĐŊŅĐēиК]]
30442 [[scn:Lissandru lu Granni]]
30443 [[simple:Alexander the Great]]
30444 [[sk:Alexander VeÄžkÃŊ]]
30445 [[sl:Aleksander Veliki]]
30446 [[sq:Leka i Madh]]
30447 [[sr:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ МаĐēĐĩĐ´ĐžĐŊŅĐēи]]
30448 [[sv:Alexander den store]]
30449 [[tl:Alexander ang Dakila]]
30450 [[tr:BÃŧyÃŧk Ä°skender]]
30451 [[tt:İskändär]]
30452 [[uk:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ МаĐēĐĩĐ´ĐžĐŊŅŅŒĐēиК]]
30453 [[zh:äēšåŽ†åąąå¤§å¤§å¸]]</text>
30454 </revision>
30455 </page>
30456 <page>
30457 <title>Alfred Korzybski</title>
30458 <id>784</id>
30459 <revision>
30460 <id>40877655</id>
30461 <timestamp>2006-02-23T16:41:03Z</timestamp>
30462 <contributor>
30463 <ip>205.118.16.153</ip>
30464 </contributor>
30465 <comment>m</comment>
30466 <text xml:space="preserve">[[Image:Korzybski.jpg|thumb|135px|right|Alfred Korzybski]]
30467 '''Alfred Korzybski''' was born on [[July 3]], [[1879]] in [[Warsaw]], [[Poland]], and died on [[March 1]], [[1950]] in [[Lakeville, Connecticut]], [[United States|USA]]. He is probably best-remembered for developing the theory of [[general semantics]].
30468
30469 ==Early life and career==
30470 He came from an [[aristocratic]] family whose members had worked as [[Mathematics|mathematicians]], [[Science|scientists]], and [[Engineering|engineers]] for generations, and he chose to train as an engineer.
30471
30472 Korzybski was educated at the [[Warsaw University of Technology]]. During the [[World War I|First World War]] Korzybski served as an [[Military intelligence|intelligence officer]] in the [[Russia|Russian]] Army. After being wounded in his leg and suffering other injuries, he came to North America in [[1916]] (first to [[Canada]], then the [[United States]]) to coordinate the shipment of artillery to the war front. He also lectured to [[Polish-American]] audiences about the conflict, promoting the sale of war bonds. Following the war, he decided to remain in the United States, becoming a [[Naturalization|naturalized citizen]] in [[1940]]. His first book, &lt;cite&gt;Manhood of Humanity&lt;/cite&gt; was published in [[1921]]. In the book, he proposed and explained in detail a new theory of humankind: mankind as a [[time-binding]] class of life.
30473
30474 ==General semantics ==
30475 Korzybski's work culminated in the founding of a discipline that he called [[general semantics]] (GS). As Korzybski explicitly said, GS should not be confused with [[semantics]], a different subject. The basic principles of general semantics, which include time-binding, are outlined in &lt;cite&gt;Science and Sanity&lt;/cite&gt;, published in [[1933]]. In [[1938]] Korzybski founded the [[Institute of General Semantics]] and directed it until his death.
30476
30477 In simplified form, the &quot;essence&quot; of Korzybski's work was the claim that human beings are limited in what they know by (1) the structure of their nervous systems, and (2) the [[structure]] of their languages. Human beings cannot experience the world directly, but only through their &quot;abstractions&quot; (nonverbal impressions or &quot;gleanings&quot; derived from the nervous system, and verbal indicators expressed and derived from language). Sometimes our perceptions and our languages actually mislead us as to the &quot;facts&quot; with which we must deal. Our understanding of what is going on sometimes lacks ''similarity of structure'' with what is actually going on. He stressed training in awareness of abstracting, using techniques that he had derived from his study of mathematics and science. He called this awareness, this goal of his system, &quot;consciousness of abstracting.&quot; His system included modifying the way we approach the world, e.g., with an attitude of &quot;I don't know; let's see,&quot; to better discover or reflect its realities as shown by modern science. One of these techniques involved becoming inwardly and outwardly quiet, an experience that he called, &quot;silence on the objective levels.&quot;
30478
30479 == Korzybski and ''to be'' ==
30480 It is often said that Korzybski opposed the use of the verb &quot;to be,&quot; an unfortunate exaggeration. He thought that ''certain uses'' of the verb &quot;to be,&quot; called the &quot;is of identity&quot; and the &quot;is of predication,&quot; were faulty in structure, e.g., a statement such as &quot;Joe is a fool&quot; (said of a person named 'Joe' who has done something that we regard as dumb). Korzybski's remedy was to ''deny'' identity; in this example, to be continually aware that 'Joe' is ''not'' what we ''call'' him. We find Joe not in the verbal domain, the world of words, but the nonverbal domain. This was expressed in Korzybski's most famous premise, &quot;[[The map is not the territory|the map is not the territory]].&quot; Note that &quot;the map is not the territory,&quot; uses the phrase &quot;is not&quot;, a form of the verb &quot;to be.&quot; This example shows that he did not intend to abandon the verb as such.
30481
30482 == Anecdote about Korzybski ==
30483 One day, Korzybski was giving a lecture to a group of students, and he suddenly interrupted the lesson in order to retrieve a packet of biscuits, wrapped in white paper, from his briefcase. He muttered that he just had to eat something, and he asked the students on the seats in the front row, if they would also like a biscuit. A few students took a biscuit. &quot;Nice biscuit, don't you think&quot;, said Korzybski, while he took a second one. The students were chewing vigorously. Then he tore the white paper from the biscuits, in order to reveal the original packaging. On it was a big picture of a dog's head and the words &quot;Dog Cookies&quot;. The students looked at the package, and were shocked. Two of them wanted to throw up, put their hands in front of their mouths, and ran out of the lecture hall to the toilet. &quot;You see, ladies and gentlemen&quot;, Korzybski remarked, &quot;I have just demonstrated that people don't just eat food, but also words, and that the taste of the former is often outdone by the taste of the latter.&quot; Apparently his prank aimed to illustrate how human suffering originates from the confusion or conflation of linguistic representations of reality and reality itself. (Source: R. Diekstra, ''Haarlemmer Dagblad'', 1993, cited by L. Derks &amp; J. Hollander, ''Essenties van NLP'' (Utrecht: Servire, 1996), p. 58).
30484
30485 == Impact ==
30486 Korzybski's work influenced [[Neuro-linguistic programming]] (especially the [[metamodel]]), [[Gestalt Therapy]], [[Rational Emotive Behavior Therapy]] and individuals such as [[Albert Ellis]], [[Gregory Bateson]], [[Buckminster Fuller]], [[Alvin Toffler]], [[Robert A. Heinlein]], [[L. Ron Hubbard]], [[A. E. van Vogt]], [[Robert Anton Wilson]], Tommy Hall (lyricist for the [[13th Floor Elevators]]), and scientists such as William Alanson White (psychiatry), and W. Horsley Gantt (a student and colleague of Pavlov).
30487
30488
30489 {{wikiquote}}
30490
30491 ==See also==
30492 * [[General Semantics]]
30493 * [[The map is not the territory]]
30494 * [[Structural differential]]
30495 * [[E-Prime]]
30496 * [[Institute of General Semantics]]
30497 * [[Alfred Korzybski Memorial Lecture]]
30498
30499 ==External links==
30500 *[http://www.kcmetro.cc.mo.us/pennvalley/biology/lewis/gs.htm Korzybski's General Semantics]
30501 *[http://www.general-semantics.org Institute of General Semantics]
30502 *[http://www.gestalt.org/alfred.htm Alfred Korzybski and Gestalt Therapy Website]
30503 *[http://www.esgs.org/uk/gshome.htm]
30504
30505 == Further reading ==
30506 *&lt;cite&gt;Manhood of Humanity&lt;/cite&gt;, Alfred Korzybski, forward by Edward Kasner, notes by M. Kendig, Institute of General Semantics, 1950, hardcover, 2nd edition, 391 pages, ISBN 093729800X
30507 *&lt;cite&gt;Science and Sanity An Introduction to Non-Aristotelian Systems and General Semantics&lt;/cite&gt;, Alfred Korzybski, Preface by [[Robert P. Pula]], Institute of General Semantics, 1994, hardcover, 5th edition, ISBN 0937298018
30508 * ''Alfred Korzybski: Collected Writings 1920-1950'', Institute of General Semantics, 1990, hardcover, ISBN: 0685406164
30509
30510
30511 [[Category:1879 births|Korzybski, Alfred]]
30512 [[Category:1950 deaths|Korzybski, Alfred]]
30513 [[Category:Engineers|Korzybski, Alfred]]
30514 [[Category:Naturalized citizens of the United States|Korybski, Alfred]]
30515 [[Category:Neuro-Linguistic Programming predecessors]]
30516 [[Category:Polish engineers|Korzybski, Alfred]]
30517 [[Category:Polish philosophers|Korzybski, Alfred]]
30518
30519 [[fr:Alfred Korzybski]]
30520 [[nl:Alfred Korzybski]]</text>
30521 </revision>
30522 </page>
30523 <page>
30524 <title>Asteroids</title>
30525 <id>785</id>
30526 <revision>
30527 <id>41931398</id>
30528 <timestamp>2006-03-02T18:32:25Z</timestamp>
30529 <contributor>
30530 <username>John DiFool2</username>
30531 <id>658468</id>
30532 </contributor>
30533 <minor />
30534 <comment>/* Features */</comment>
30535 <text xml:space="preserve">{{otheruses4|the arcade game|the minor planet type of space object|Asteroid}}
30536 {{Infobox Arcade Game |title = Asteroids
30537 |image = [[Image:Asteroi1.png|250 px|Asteroids screenshot]]
30538 |developer = [[Atari Games|Atari]]
30539 |publisher = Atari
30540 |designer = [[Lyle Rains]] and [[Ed Logg]]
30541 |release = 1979
30542 |genre = [[Shoot 'em up#Multi-directional shooter|Multi-directional shooter]]
30543 |modes = Up to 2 players, alternating turns
30544 |cabinet = Upright and cocktail
30545 |arcade system =
30546 |monitor = [[Vector graphics|Vector]] 256 &amp;times; 231 (Horizontal) Colors: black and white, Size: 19[[inch|&quot;]]
30547 |input = Five buttons
30548 |ports = [[Atari 2600]], [[Atari 5200|5200]], [[Atari 7800|7800]], [[Atari Lynx]], [[PlayStation]], [[Nintendo 64]], [[Microsoft Windows|Windows]], [[Game Boy Color]]
30549 }}
30550 '''''Asteroids''''' is a popular [[vector graphics|vector-based]] video [[arcade game]] released in 1979 by [[Atari Games|Atari]]. The object of the game is for the player to shoot and destroy [[asteroid]]s without being hit by the fragments. It was one of the most popular and influential games of the [[Golden Age of Arcade Games]].
30551
30552 ==Description==
30553
30554 ''Asteroids'' was inspired, in a roundabout way, by the seminal ''[[Spacewar]]'', the first computer-based video game. In the early 1980s a stand-up arcade game version was produced as ''Space Wars'', which included a number of optional versions and added a floating asteroid as a visual device. ''Asteroids'' is essentially a one-player version of Spacewar, featuring the &quot;wedge&quot; ship from the original and promoting the asteroids to be the main opponent.
30555
30556 The game was conceived by [[Lyle Rains]] and programmed by [[Ed Logg]]. ''Asteroids'' was a hit in the [[United States]] and became one of Atari's best selling games of all time. Atari had been in the process of releasing a vector beam version of ''[[Lunar Lander]]'', but demand for ''Asteroids'' was so high they simply pulled them apart and converted them over. Today the ''Lunar Lander'' version is difficult to find. ''Asteroids'' was so popular that [[video arcade]] owners usually had to install larger boxes to hold all the coins this machine raked in.
30557
30558 One feature of the game was the ability for players to record their initials with their high scores, an innovation which is standard in arcade games to this day.
30559
30560 ''Asteroids'' was the first of several games to use Atari's &quot;Quadra-Scan&quot; vector-refresh system (although a [[Raster graphics|raster-based]] full-color version was developed for the [[Atari 2600]] home video game system). Later full-color Quadra-Scan games would include ''[[Tempest (game)|Tempest]]''.
30561
30562 ==Features==
30563
30564 The player's controls consisted of thrust and fire buttons, and rotate left/rotate right buttons (actually rotate counterclockwise and rotate clockwise respectively). The momentum of the player's ship was not conserved, and it would start to slow down if thrust was not applied. There was also a [[hyperspace]] button, which randomly teleported the player's ship somewhere on the screen, with the risk of exploding upon rematerialization (or rematerializing inside an asteroid).
30565
30566 The player's ship spawned in the middle of the screen, with 4 large asteroids drifting around. Each large asteroid (20 points) would break into 2 medium-sized ones (50 points) when shot, which in turn would break into 2 small (100 points) asteroids. The medium and small asteroids, once &quot;spawned&quot;, could travel at widely varying speeds. Periodically one of two types of flying saucers (&quot;UFOs&quot;) would fly onto the screen: the big one (worth 200 points) would shoot in random directions, while the small one (1000 points) would attempt to aim at the player; they tended to appear more often when few asteroids remained on the screen and/or the player hadn't shot an asteroid recently. The screen wrapped around, allowing the player's ship, as well as asteroids and shots but not saucers, to fly off the one edge of the screen and reappear on the opposite side. Once a level had been cleared of all asteroids and UFOs, a new set of large asteroids would appear, increasing by 2 each round up to a maximum of 12.
30567
30568 The maximum score possible was 99,990 points, after which it turned back over to zero. A player who desired to get onto the top score list then had to be careful to shoot just enough asteroids/UFOs to reach this score without going over (including committing suicide with the last ship left to reach the final total!).
30569
30570 On some early versions of the game it was possible to hide the ship in the score area indefinitely without being hit by asteroids.
30571
30572 ==Lurking==
30573 [[Image:Asteroids UFO.svg|thumb|right|150px|The small UFO is the key to high scores for many advanced players.]]
30574 Soon after the release of ''Asteroids'', some players discovered that small UFOs would be continually sent out when the asteroid count decreased to a certain level. Since these UFOs were worth 1,000 points each - a significant sum on this game - a strategy known as &quot;lurking&quot; soon developed around this. Players would shoot asteroids until there was only one small or mid-sized rock remaining, and then maneuver the ship to a spot approximately one inch from any corner of the screen. Small UFOs would then be ambushed as soon as they emerged (and before they were able to return fire), using wraparound fire if necessary. Because the small UFOs were unable to &quot;lead&quot; the player's ship with their fire (i.e. aiming ahead of the ship's flight path), a clever player could manuever, if necessary, in such a way as to virtually ensure they would never be hit by the small UFO (in fact the large UFO in a sense was seen as more of a threat precisely because of its unpredictable random shots). Since each 10,000 points awarded an extra life, players could continue almost indefinitely once the practice had been mastered. [http://www.gamearchive.com/General/Articles/ClassicNews/1981/Esquire2-81-pg62.htm] The designers abolished this practice in ''Asteroids Deluxe'' by causing the UFOs to either shoot at the remaining asteroids, thus ending the round, or shoot at the player as soon as they appeared on the screen-they also gained the ability to lead the player's ship as well, making them much more dangerous.
30575
30576 However it was also possible to succeed by shooting the asteroids instead; a shrewd &quot;asteroid hunting&quot; player would typically attempt to kill all the asteroids &quot;inside&quot; a large one before shooting another asteroid, thus minimizing the amount of &quot;clutter&quot; on the screen.
30577
30578 ==Technical Description==
30579 The ''Asteroids'' arcade machine is a so-called [[vector game]]. This means that the game graphics are composed entirely of lines which are drawn on a [[vector monitor]]. The hardware consists primarily of a standard [[MOS Technology 6502|MOS 6502]] [[central processing unit|CPU]], which executes the game program, and the [[Atari Digital Vector Generator|Digital Vector Generator]] (DVG), vector processing [[circuitry]] developed by [[Atari]] themselves. As the 6502 by itself was too slow to control both the game play and the vector hardware at the same time, the latter task was delegated to the DVG.
30580
30581 For each picture frame, the 6502 writes graphics commands for the DVG into a defined area of [[RAM]] (the vector RAM), and then asks the DVG to draw the corresponding vector image on the screen. The DVG reads the commands and generates appropriate signals for the vector monitor. There are DVG commands for positioning the cathode ray, for drawing a line to a specified destination, calling a subroutine with further commands, and so on.
30582
30583 ''Asteroids'' also features various sound effects, each of which is implemented by its own [[circuitry]]. The CPU activates these audio [[electrical network|circuits]] (and other hardware components) by writing to special memory addresses (memory mapped ports). The inputs from the player's controls (buttons) are also mapped into the CPU [[address space]]
30584
30585 The main ''Asteroids'' game program uses only 4 [[kilobyte|KB]] of [[Read-only memory|ROM]] code. Another 4 KB of vector ROM contain the descriptions of the main graphical elements (rocks, saucer, player's ship, explosion pictures, letters, and digits) in the form of DVG commands.
30586
30587 ==Legacy==
30588 The gameplay in ''Asteroids'' was imitated by many games that followed. For example, one of the objects of ''[[Sinistar]]'' is to shoot asteroids in order to get them to release resources which the player needs to collect.
30589
30590 Due to its success, ''Asteroids'' was followed by three sequels:
30591 * ''[[Asteroids Deluxe]]'' (1980)
30592 * ''[[Space Duel]]'' (1982)
30593 * ''[[Blasteroids]]'' (1987)
30594
30595 However, the original game was by far the most popular of the series.
30596
30597 The [[Killer List of Videogames]] (KLOV) credits this game as one of the &quot;Top 100 Videogames.&quot; Readers of the KLOV credit it as the seventh most popular game.
30598
30599 ==Ports==
30600 Being one of the most popular video games ever, ''Asteroids'' has been ported to multiple systems, including many of [[Atari]]'s systems ([[Atari 2600]], [[Atari 5200|5200]], [[Atari 7800|7800]], [[Atari Lynx]]) and many others. The 2600 port was the first game to utilize a bank-switched cartridge, doubling available ROM space. Also, a new version of ''Asteroids'' was developed for [[PlayStation]], [[Nintendo 64]], [[Microsoft Windows|Windows]], and the [[Game Boy Color]] in the late 1990s. A port was also included on Atari's [[Atari Cosmos|Cosmos]] system, but the system never saw release. Many of the recent [[TV Games]] series of old Atari games have included either the 2600 or arcade versions of ''Asteroids''. Atari has also used the game for its other late '90s anthology series. Essentially, if one looks for this game, one will be able to find it somewhere.
30601
30602 In 2005, ''Asteroids'' (Including both [[Atari 2600]] and the arcade original, along with [[Asteroids Deluxe]]) were included as part of ''[[Atari Anthology]]'' for both [[XBox]] and [[Playstation 2]], using Digital Eclipse's emulation technology..
30603
30604 ===Unofficial clones and variants===
30605
30606 [[Image:NovaBombs.jpg|thumb|right|150px|Avenger class fighter unleashes nova bombs in Starscape.]]
30607
30608 There have been countless unofficial versions of ''Asteroids'' produced. These include near-copies such as [[Acornsoft|Acornsoft's]] ''[[Meteors (game)|Meteors]]'', as well as those with expanded gameplay and background, such as ''[[Stardust (game)|Stardust]]'' and ''[[Starscape]]''.
30609
30610 ==Record breaking gameplay==
30611 In March 2004, [[Portland, Oregon]] resident '''Bill Carlton''' attempted to break the world record for playing an arcade version of ''Asteroids'', playing over 27 hours before his machine malfunctioned, ending his record run. He scored 12.7 million points, putting him in 5th place in the all-time ''Asteroids'' rankings. In November 1982 '''Scott Safran''' set the still unbroken record of 41 million points.
30612
30613 ==Song==
30614 In 1982, [[Buckner and Garcia]] recorded a song titled &quot;Hyperspace&quot;, using sound effects from the game, and released it on the album ''[[Pac-Man Fever (album)|Pac-Man Fever]]''.
30615
30616 ==External links==
30617 *[http://www.klov.com/game_detail.php?letter=A&amp;game_id=6939 The Killer List of Video Games entry on ''Asteroids'']
30618 *[http://www.ataritimes.com/features/asteroids.html Atari Times: All About ''Asteroids'']
30619 *{{moby game|id=/asteroids|name=''Asteroids''}}
30620 *[http://forums.krazyletter.com/index.php?act=Arcade&amp;do=play&amp;gameid=1 ''Asteroids'' - Flash Version]
30621 *[http://www.thedoteaters.com/play2sta2.htm Article at The Dot Eaters], featuring a history of Asteroids
30622 *[http://www.edepot.com/game.html ''Asteroids'' written for Sony PSP]
30623 *[http://www.moonpod.com/starscape ''Starscape'' ] Asteroids game for PC with heavily advanced gameplay.
30624
30625 [[Category: 1979 computer and video games]]
30626 [[Category:1979 arcade games]]
30627 [[Category:1981 computer and video games]]
30628 [[Category:Atari 2600 games]]
30629 [[Category: Atari 5200 games]]
30630 [[Category: Atari 7800 games]]
30631 [[Category: Atari Lynx games]]
30632 [[Category:Atari 8-bit family games]]
30633 [[Category: Apple Macintosh games]]
30634 [[Category: PlayStation games]]
30635 [[Category: PC games]]
30636 [[Category: Nintendo 64 games]]
30637 [[Category: Game Boy Color games]]
30638 [[Category:Shoot 'em ups]]
30639 [[Category: Arcade games]]
30640 [[Category:Atari arcade games]]
30641 [[Category:Vector arcade games]]
30642 [[Category: Mobile phone games]]
30643 [[de:Asteroids]]
30644 [[fr:Asteroids]]
30645 [[sv:Asteroids]]
30646 [[it:Asteroids]]</text>
30647 </revision>
30648 </page>
30649 <page>
30650 <title>Asparagales</title>
30651 <id>786</id>
30652 <revision>
30653 <id>40166879</id>
30654 <timestamp>2006-02-18T17:57:25Z</timestamp>
30655 <contributor>
30656 <username>Berton</username>
30657 <id>549980</id>
30658 </contributor>
30659 <minor />
30660 <comment>italics</comment>
30661 <text xml:space="preserve">{{Taxobox
30662 | color = lightgreen
30663 | name = Asparagales
30664 | image = Illustration Asparagus officinalis0.jpg
30665 | image_width = 200px
30666 | image_caption = [[Asparagus officinalis]]
30667 | regnum = [[Plant]]ae
30668 | divisio = [[Flowering plant|Magnoliophyta]]
30669 | classis = [[Liliopsida]]
30670 | ordo = '''Asparagales'''
30671 | ordo_authority = [[Edward French Bromhead|Bromhead]]
30672 | subdivision_ranks = Families
30673 | subdivision =
30674 &lt;small&gt;''according to the &lt;br /&gt;[[Angiosperm Phylogeny Group]]''&lt;/small&gt;&lt;hr&gt;
30675 *[[Agapanthaceae]]
30676 *[[Agavaceae]]
30677 *[[Alliaceae]]
30678 *[[Amaryllidaceae]]
30679 *[[Aphyllanthaceae]]
30680 *[[Asparagaceae]]
30681 *[[Asphodelaceae]]-
30682 &lt;small&gt;(optional synonym of Xanthorrhoeaceae)&lt;/small&gt;
30683 *[[Asteliaceae]]
30684 *[[Blandfordiaceae]]
30685 *[[Boryaceae]]
30686 *[[Doryanthaceae]]
30687 *[[Hemerocallidaceae]]
30688 *[[Hyacinthaceae]]
30689 *[[Hypoxidaceae]]
30690 *[[Iridaceae]]
30691 *[[Ixioliriaceae]]
30692 *[[Lanariaceae]]
30693 *[[Laxmanniaceae]]
30694 *[[Orchidaceae]]
30695 *[[Ruscaceae]]
30696 *[[Tecophilaeaceae]]
30697 *[[Themidaceae]]
30698 *[[Xanthorrhoeaceae]]
30699 }}
30700
30701 '''Asparagales''' is an [[order (biology)|order]] of [[monocot]]s which includes a number of families of non-woody plants. In older classification systems, the families now included in the Asparagales were included in order [[Liliales]], and some genera of which were even included in family [[Liliaceae]]. Some classification systems separate some of the families listed below into additional orders, including orders [[Orchidales]] and [[Iridales]], while other systems, especially the [[Angiosperm Phylogeny Group]]'s classification system, include the Orchidales and Iridales within the Asparagales. The order is named after the genus ''[[Asparagus (genus)|Asparagus]]''.
30702
30703 The Angiosperm Phylogeny Group's classification system is widely used by botanists, and was updated as the APG II in 2002 to include recent findings, especially in [[DNA]] analysis. Their 1998 scheme identified 29 families in order Asparagales. The APG II consolidates some families, and recognizes an alternative system of fewer, larger families, in which certain smaller families can be grouped within other larger families based on close genetic affinities and still follow the 'APG system'. Under the new classification system one could, for example, correctly include daylilies (''[[Hemerocallis]]'') in family [[Hemerocallidaceae]], or in family [[Xanthorrhoeaceae]]. The APG II classification of the Asparagales is as follows:
30704 *[[Alliaceae]]
30705 **[[Agapanthaceae]]
30706 **[[Amaryllidaceae]]
30707 *[[Asparagaceae]]
30708 **[[Agavaceae]]
30709 **[[Aphyllanthaceae]]
30710 **[[Hesperocallidaceae]]
30711 **[[Hyacinthaceae]]
30712 **[[Laxmanniaceae]]
30713 **[[Ruscaceae]]
30714 **[[Themidaceae]]
30715 *[[Asteliaceae]]
30716 *[[Blandfordiaceae]]
30717 *[[Boryaceae]]
30718 *[[Doryanthaceae]]
30719 *[[Hypoxidaceae]]
30720 *[[Iridaceae]]
30721 *[[Ixioliriaceae]]
30722 *[[Lanariaceae]]
30723 *[[Orchidaceae]]
30724 *[[Tecophilaeaceae]]
30725 *[[Xanthorrhoeaceae]]
30726 **[[Asphodelaceae]]
30727 **[[Hemerocallidaceae]]
30728
30729 Classification systems that separate the Asparagales, Orchidales and Iridales are generally organized as follows:
30730 * Asparagales, narrow sense
30731 ** Family [[Asparagaceae]] ([[asparagus]] family)
30732 ** Family [[Alliaceae]] (onion family)
30733 *** [[Chives]]
30734 *** [[Garlic]]
30735 *** [[Onion]]
30736 ** Family [[Agavaceae]] (agave family)
30737 *** [[Agave]]
30738 *** [[Yucca]]
30739 ** Family [[Amaryllidaceae]] ([[amaryllis]] family)
30740 ** Family [[Asphodelaceae]] (asphodel family)
30741 *** [[Aloe]]
30742 *** [[Asphodel]]
30743 ** Family [[Hyacinthaceae]] (hyacinth family)
30744 *** [[Hyacinthoides|Bluebell]]
30745 *** [[Hyacinth (flower)|Hyacinth]]
30746 ** ''Cetera''
30747 * [[Orchidales]]
30748 ** Family [[Geosiridaceae]]
30749 ** Family [[Burmanniaceae]]
30750 ** Family [[Corsiaceae]]
30751 ** Family [[Orchidaceae]] (orchid family)
30752 * [[Iridales]]
30753 ** Family [[Iridaceae]] (Iris family)
30754 ==Asparagales ''sensu'' Kubitzki (1998)==
30755 *[[Orchidaceae]]
30756 *[[Iridaceae]]
30757 *[[Doryanthaceae]]
30758 *[[Lanariaceae]]
30759 *[[Ixioliriaceae]]
30760 *[[Hypoxidaceae]]
30761 *[[Johnsoniaceae]]
30762 *[[Hemerocallidaceae]]
30763 *[[Tecophilaeaceae]]
30764 *[[Blandfordiaceae]]
30765 *[[Asteliaceae]]
30766 *[[Boryaceae]]
30767 *[[Asphodelaceae]]
30768 *[[Xanthorrhoeaceae]]
30769 *[[Aphyllanthaceae]]
30770 *[[Anemarrhenaceae]]
30771 *[[Amaryllidaceae]]
30772 *[[Agapanthaceae]]
30773 *[[Alliaceae]]
30774 *[[Themidaceae]]
30775 *[[Asparagaceae]]
30776 *[[Hyacinthaceae]]
30777 *[[Lomandraceae]]
30778 *[[Herreriaceae]]
30779 *[[Hostaceae]]
30780 *[[Anthericaceae]]
30781 *[[Agavaceae]]
30782 *[[Eriospermaceae]]
30783 *[[Ruscaceae]]
30784 *[[Behniaceae]]
30785 *[[Dracaenaceae]]
30786 *[[Convallariaceae]]
30787 *[[Nolinaceae]]
30788
30789 ==Reference==
30790 *Kubitzki, K.:Conspectus of Families treated in this Volume (1998).Kubitzki, K.(Editor): ''The Families and Genera of Vascular Plants'', Vol.3. Springer-Verlag. Berlin, Germany. ISBN 3-540-64060-6
30791
30792 ==External links==
30793
30794 [http://www.mobot.org/MOBOT/research/APweb/orders/asparagalesweb.htm Asparagales] in [http://www.mobot.org/MOBOT/research/APweb Angiosperm Phylogeny Website]
30795
30796 [[Category:Asparagales| ]]
30797
30798 [[co:Asparagales]]
30799 [[da:Asparges-ordenen]]
30800 [[de:Spargelartige]]
30801 [[es:Asparagales]]
30802 [[fr:Asparagales]]
30803 [[la:Asparagales]]
30804 [[nl:Asparagales]]
30805 [[no:Asparagales]]
30806 [[pt:Asparagales]]
30807 [[ru:Asparagales]]
30808 [[fi:Asparagales]]
30809 [[sv:Asparagales]]
30810 [[zh:夊門å†Ŧį›Ž]]</text>
30811 </revision>
30812 </page>
30813 <page>
30814 <title>Alismatales</title>
30815 <id>787</id>
30816 <revision>
30817 <id>41221508</id>
30818 <timestamp>2006-02-25T21:58:11Z</timestamp>
30819 <contributor>
30820 <ip>212.224.239.235</ip>
30821 </contributor>
30822 <text xml:space="preserve">{{Taxobox
30823 | color = lightgreen
30824 | name = Alismatids
30825 | image = Lemna trisulca0.jpg
30826 | image_width = 250px
30827 | image_caption = Ivy Duckweed (''Lemna trisulca'')
30828 | regnum = [[Plant]]ae
30829 | divisio = [[Flowering plant|Magnoliophyta]]
30830 | classis = [[Liliopsida]]
30831 | ordo = '''Alismatales''' &lt;small&gt;Dumort. ([[1829]])&lt;/small&gt;
30832 | subdivision_ranks = Families
30833 | subdivision =
30834 [[Alismataceae]]&lt;br/&gt;
30835 [[Aponogetonaceae]]&lt;br/&gt;
30836 [[Araceae]]&lt;br/&gt;
30837 [[Butomaceae]]&lt;br/&gt;
30838 [[Cymodoceaceae]]&lt;br/&gt;
30839 [[Hydrocharitaceae]]&lt;br/&gt;
30840 [[Juncaginaceae]]&lt;br/&gt;
30841 [[Limnocharitaceae]]&lt;br/&gt;
30842 [[Posidoniaceae]]&lt;br/&gt;
30843 [[Potamogetonaceae]]&lt;br/&gt;
30844 [[Ruppiaceae]]&lt;br/&gt;
30845 [[Scheuchzeriaceae]]&lt;br/&gt;
30846 [[Tofieldiaceae]]&lt;br/&gt;
30847 [[Zosteraceae]]
30848 }}
30849
30850 The order '''Alismatales''' contains the alismatids, a group of [[monocotyledon]]s (class [[Liliopsida]]). The order contains about 165 genera in 14 families, with cosmopolitic distribution. Most families are comprised of [[herb]]aceous non-[[succulent]] plants. These plants are commonly found in aquatic environmments. The [[flower]]s are usually arranged in [[inflorescence]]s, and the mature seeds lack [[endosperm]].
30851
30852 Traditionally, the order Alismatales was restricted to contain just three families (Alismataceae, Butomaceae and Limnocharitaceae). The other families were not considered as alismatids, and were assigned to various distinct orders, but this approach produced [[polyphyletic]] groups, and so the whole group of families is now placed into a single order.
30853
30854 The [[Petrosaviaceae]] have been placed in this order, but their actual affinity is not so clear. The alismatids have been considered the sister group of the [[Arales]] and the latter are now included here. As a result of this merger, the Araceae became the most important family in the order, accounting alone for over 2000 species in about 100 genera. The rest of families contain together just about 500 species.
30855
30856 == See also ==
30857 *[[Seagrass]]
30858
30859 == References ==
30860 * [[BarthÊlemy Charles Joseph du Mortier|B. C. J. du Mortier]] (1829). ''Analyse des Familles de Plantes : avec l'indication des principaux genres qui s'y rattachent'', 54. Imprimerie de J. Casterman, Tournay.
30861 * W. S. Judd, C. S. Campbell, E. A. Kellogg, P. F. Stevens, M. J. Donoghue (2002). ''Plant Systematics: A Phylogenetic Approach, 2nd edition.'' pp. 242-247 (Alismatales). Sinauer Associates, Sunderland, Massachusetts. ISBN 0878934030.
30862 * [http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Undef&amp;id=16360&amp;lvl=3&amp;lin=f&amp;keep=1&amp;srchmode=1&amp;unlock Alismatales on NCBI]
30863
30864 [[Category:Alismatales|*]]
30865
30866 [[da:Skeblad-ordenen]]
30867 [[de:FroschlÃļffelartige]]
30868 [[es:Alismatales]]
30869 [[fr:Alismatales]]
30870 [[it:Alismatales]]
30871 [[he:כ×Ŗ ×Ļפרד×ĸ (סדרה)]]
30872 [[nl:Alismatales]]
30873 [[no:Alismatales]]
30874 [[pl:Åģabieńcowce]]
30875 [[pt:Alismatales]]
30876 [[fi:Alismatales]]
30877 [[sv:Alismatales]]
30878 [[zh:枤į€‰į›Ž]]</text>
30879 </revision>
30880 </page>
30881 <page>
30882 <title>Apiales</title>
30883 <id>788</id>
30884 <revision>
30885 <id>37287677</id>
30886 <timestamp>2006-01-30T00:56:23Z</timestamp>
30887 <contributor>
30888 <username>Gdrbot</username>
30889 <id>263608</id>
30890 </contributor>
30891 <minor />
30892 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
30893 <text xml:space="preserve">{{Taxobox
30894 | color = lightgreen
30895 | name = Apiales
30896 | regnum = [[Plant]]ae
30897 | divisio = [[Flowering plant|Magnoliophyta]]
30898 | classis = [[Magnoliopsida]]
30899 | ordo = '''Apiales'''
30900 | ordo_authority = Nakai
30901 | subdivision_ranks = Families
30902 | subdivision =
30903 * [[Apiaceae]] ([[carrot]] family)
30904 * [[Araliaceae]] ([[ginseng]] family)
30905 * [[Pittosporaceae]]
30906 * [[Griselinia]]ceae
30907 * [[Torriceliaceae]]
30908 }}
30909
30910 The '''Apiales''' are an order of [[flowering plant]]s. The families given at right are typical of newer classifications, though there is some slight variation, and in particular the Torriceliaceae may be divided. These families are placed within the asterid group of [[dicotyledon]]s.
30911
30912 Under the older [[Cronquist system]], only the Apiaceae and Araliaceae were included here, and the restricted order was placed among the rosids rather than the asterids. The Pittosporaceae were placed within the [[Rosales]], and the other forms within the family [[Cornaceae]].
30913
30914 [[Category:Apiales]]
30915
30916 [[da:SkÃĻrmplante-ordenen]]
30917 [[de:DoldenblÃŧtlerartige]]
30918 [[es:Araliales]]
30919 [[fr:Apiales]]
30920 [[la:Apiales]]
30921 [[nl:Apiales]]
30922 [[ja:ã‚ģãƒĒį›Ž]]
30923 [[no:Apiales]]
30924 [[pl:Selerowce]]
30925 [[fi:Apiales]]
30926 [[zh:äŧžåŊĸį›Ž]]</text>
30927 </revision>
30928 </page>
30929 <page>
30930 <title>Asterales</title>
30931 <id>789</id>
30932 <revision>
30933 <id>40973981</id>
30934 <timestamp>2006-02-24T05:25:01Z</timestamp>
30935 <contributor>
30936 <username>FlaBot</username>
30937 <id>228773</id>
30938 </contributor>
30939 <minor />
30940 <comment>robot Adding: fi</comment>
30941 <text xml:space="preserve">{{Taxobox
30942 | color = lightgreen
30943 | name = Asterales
30944 | image = A_sunflower.jpg
30945 | image_width = 200px
30946 | image_caption = ''Helianthus annuus''
30947 | regnum = [[Plant]]ae
30948 | divisio = [[Flowering plant|Magnoliophyta]]
30949 | classis = [[Magnoliopsida]]
30950 | ordo = '''Asterales''' &lt;small&gt;[[John Lindley|Lindl.]] ([[1833]])&lt;/small&gt;
30951 | subdivision_ranks = [[Family (biology)|Families]]
30952 | subdivision =
30953 *[[Alseuosmiaceae]]
30954 *[[Argophyllaceae]]
30955 *[[Asteraceae]] - [[Daisy|Daisies]]
30956 *[[Calyceraceae]]
30957 *[[Campanulaceae]] (incl. [[Lobeliaceae]]) - [[Bellflower]]s
30958 *[[Goodeniaceae]]
30959 *[[Menyanthaceae]]
30960 *[[Pentaphragmaceae]]
30961 *[[Phellinaceae]]
30962 *[[Rousseaceae]] (incl. [[Carpodetaceae]])
30963 *[[Stylidiaceae]] (also [[Donatiaceae]])
30964 }}
30965
30966 The '''Asterales''' are an [[order (biology)|order]] of [[dicotyledon]]ous [[flowering plant]]s which include the composite family [[Asteraceae]] ([[sunflower]]s and [[Bellis|daisies]]) and its related families.
30967
30968 The order is cosmopolitic, and includes mostly herbaceous species, although a small number of trees (''Lobelia'') and shrubs is also present.
30969
30970 The Asterales can be characterized on the morphological and molecular level. Synapomorphies include the [[oligosaccharide]] [[inulin]] as the nutrients storage, and the stamens are usually aggregated densely around the style or even are fused into a tube around it. The last property is probably associated with the plunger (or secondary) [[pollination]], which is common among the families of the order.
30971
30972 == Families ==
30973 The '''Asterales''' include about eleven families, the largest of which is [[Asteraceae]] with about 25,000 species, and [[Campanulaceae]] with about 2,000 species. The remaining families count together for less than 500 species. The two large families are cosmopolitic with center of mass in the northern hemisphere, and the smaller ones are usually confined to Australia and the adjacent areas, or sometimes the South America.
30974
30975 Under the [[Cronquist system]], [[Asteraceae]] was the only family in the group, but newer systems (e. g. [[Angiosperm Phylogeny Group|APG]] II) have expanded it.
30976
30977 ==Evolution and biogeography==
30978 The Asterales order probably originated in [[Cretaceous]] on the supercontinent [[Gondwana]], in the area which is now Australia and Asia. Although most extant species are herbaceous, the examination of the basal families in the order suggests that the common ancestor of the order was an arborescent plant.
30979
30980 Fossil evidence of the Asterales is rare and belongs to rather recent epoques, so the precise estimation of the order's age is quite difficult. An [[Oligocene]] pollen is known for Asteraceae and Goodeniaceae, and seeds from Oligocene and [[Miocene]] are known for Menyanthaceae and Campanulaceae respectively.
30981
30982 (Bremer and Gustafsson, 1997)
30983
30984 ==Economical importance==
30985 The Asteraceae include some species grown for food, e. g. [[sunflower]] (''Helianthus annuus'') or [[chicory]] (''Cichorium''). Many spices and medicinal herbs are also present.
30986
30987 Of horticultural importance are the Asteraceae (e. g. [[chrysanthemum]]) and Campanulaceae.
30988
30989 ==References==
30990 {{commonscat|Asterales}}
30991 * K. Bremer, M. H. G. Gustafsson (1997). East Gondwana ancestry of the sunflower alliance of families. ''Proceedings of the National Academy of Sciences U.S.A.'' '''94''', 9188-9190. (Available online: [http://www.pnas.org/cgi/content/abstract/94/17/9188 Abstract] | [http://www.pnas.org/cgi/content/full/94/17/9188 Full text (HTML)] | [http://www.pnas.org/cgi/reprint/94/17/9188.pdf Full text (PDF)])
30992 * W. S. Judd, C. S. Campbell, E. A. Kellogg, P. F. Stevens, M. J. Donoghue (2002). ''Plant Systematics: A Phylogenetic Approach, 2nd edition.'' pp. 476-486 (Asterales). Sinauer Associates, Sunderland, Massachusetts. ISBN 0878934030.
30993 * [[John Lindley|J. Lindley]] (1833). ''Nixus Plantarum'', 20. Londini.
30994 * Smissen, R. D. (December 2002). Asterales (Sunflower). In: ''Nature Encyclopedia of Life Sciences''. Nature Publishing Group, London. (Available online: [http://dx.doi.org/10.1038/npg.els.0003736 DOI] | [http://www.els.net/ ELS site])
30995
30996 [[Category:Asterales| ]]
30997
30998 [[da:Kurvblomst-ordenen]]
30999 [[de:Asternartige]]
31000 [[es:Asterales]]
31001 [[fr:Asterales]]
31002 [[he:אסטראים]]
31003 [[la:Asterales]]
31004 [[nl:Asterales]]
31005 [[ja:キクį›Ž]]
31006 [[no:Asterales]]
31007 [[pl:Astrowce]]
31008 [[pt:Asterales]]
31009 [[fi:Asterales]]
31010 [[sv:Asterales]]
31011 [[zh:菊į›Ž]]</text>
31012 </revision>
31013 </page>
31014 <page>
31015 <title>Asteroid</title>
31016 <id>791</id>
31017 <revision>
31018 <id>42043436</id>
31019 <timestamp>2006-03-03T12:04:56Z</timestamp>
31020 <contributor>
31021 <ip>65.31.89.248</ip>
31022 </contributor>
31023 <comment>/* Asteroid exploration */</comment>
31024 <text xml:space="preserve">:''This page is about the astronomical body ''Asteroid''. For the arcade game, see [[Asteroids]]''.
31025
31026 An '''asteroid''' is a small, solid object in our [[Solar System]], orbiting the [[Sun]]. An asteroid is an example of a [[minor planet]] (or '''planetoid'''), which are much smaller than [[planet]]s. Most asteroids are believed to be remnants of the [[protoplanetary disc]] which were not incorporated into planets during the system's formation due to excessive gravitational perturbations by [[Jupiter]]. Some asteroids have [[Asteroid moon|moon]]s. The vast majority of the asteroids are within the main [[asteroid belt]], with [[ellipse|elliptical]] orbits between those of [[Mars (planet)|Mars]] and [[Jupiter]]. [[image:433eros.jpg|thumb|right|250px|This picture of [[433 Eros]] shows the view looking from one end of the asteroid across the gouge on its underside and toward the opposite end. Features as small as 35 m across can be seen.]]
31027
31028
31029
31030 ==Asteroids in the solar system==
31031 [[Image:4 Vesta 1 Ceres Moon at 20 km per px.png|thumb|right|Left to right: [[4 Vesta]], [[1 Ceres]], Earth's [[Moon]].]]
31032 Hundreds of thousands of asteroids have been discovered within the solar system, and the present rate of discovery is about 5000 per month. As of [[February 23]], [[2006]], from a total of 325,627 &lt;!--- astorb.dat record count ---&gt; registered minor planets, 120,437 have orbits known well enough to be given [[asteroid naming conventions|permanent official numbers]]. Of these, 12890&lt;!--- using http://cfa-www.harvard.edu/iau/lists/MPNames.html ---&gt; have official names (trivia: at least 610 of these names require [[diacritic]]s). The lowest-numbered but unnamed minor planet is [[(3360) 1981 VA]]; the highest-numbered named minor planet is [[117506 Wildberg]] [http://cfa-www.harvard.edu/iau/lists/NumberedMPs115001.html].
31033
31034 Current estimates put the total number of asteroids in the solar system at several million. The largest asteroid in the inner solar system is [[1 Ceres]], with a diameter of 900-1000 km. Two other large inner solar system belt asteroids are [[2 Pallas]] and [[4 Vesta]]; both have diameters of ~500 km. Vesta is the only main belt asteroid that is sometimes visible to the naked eye (in some very rare occasions, a near-Earth asteroid may be visible without technical aid; see [[99942 Apophis]]).
31035
31036 The mass of all the asteroids of the Main Belt is estimated to be about 2.3x10&lt;sup&gt;21&lt;/sup&gt;&amp;nbsp;kg, or about 3% of the mass of our moon. Of this, [[1 Ceres]] comprises 940 to 950x10&lt;sup&gt;18&lt;/sup&gt;&amp;nbsp;kg, some 40% of the total. Adding in the next three most massive asteroids, [[4 Vesta]] (12%), [[2 Pallas]] (9%), and [[10 Hygiea]] (4%), bring this figure up 66%; while the three after that, [[511 Davida]] (1.6%), [[704 Interamnia]] (1.4%), and [[3 Juno]] (1.2%), only add another 4% to the total mass. The number of asteroids then increases [[Exponential distribution|exponentially]] as their individual masses decrease.
31037
31038 See also a [[List of noteworthy asteroids]] in our Solar System, or a sequentially-ordered [[List of asteroids]].
31039
31040 ==Asteroid classification==
31041 Asteroids are commonly classified into groups based on the characteristics of their orbits and on the details of the [[visible spectrum|spectrum]] of sunlight they reflect.
31042
31043 ===Orbit groups and families===
31044 :''main articles: [[asteroid family]] and [[minor planet]]''
31045
31046 Many asteroids have been placed in groups and families based on their orbital characteristics. It is customary to name a group of asteroids after the first member of that group to be discovered. Groups are relatively loose dynamical associations, whereas families are much &quot;tighter&quot; and result from the catastrophic break-up of a large parent asteroid sometime in the past.
31047
31048 For a full listing of known asteroid groups and families, see [[minor planet]] and [[asteroid family]].
31049
31050 ===Spectral classification===
31051 [[Image:253 Mathilde small.jpg|thumb|right|[[253 Mathilde]], a [[C-type asteroid]].]]
31052 In 1975, an asteroid [[taxonomy|taxonomic]] system based on [[colour]], [[albedo]], and [[spectral line|spectral shape]] was developed by [[Clark R. Chapman]], [[David Morrison]], and [[Ben Zellner]]. These properties are thought to correspond to the composition of the asteroid's surface material. Originally, they classified only three types of asteroids:
31053
31054 *[[C-type asteroid]]s - carbonaceous, 75% of known asteroids
31055 *[[S-type asteroid]]s - silicaceous, 17% of known asteroids
31056 *[[M-type asteroid]]s - metallic, most of the remaining asteroids
31057
31058 This list has since been expanded to include a number of other asteroid types. The number of types continues to grow as more asteroids are studied. See [[Asteroid spectral types]] for more detail or [[:Category:Asteroid spectral classes]] for a list.
31059
31060 Note that the proportion of known asteroids falling into the various spectral types does not necessarily reflect the proportion of all asteroids that are of that type; some types are easier to detect than others, biasing the totals.
31061
31062 ====Problems with spectral classification====
31063
31064 Originally, spectral designations were based on inferences of an asteroid's composition:
31065
31066 * C - [[carbonate|Carbonaceous]]
31067 * S - [[silicate|Silicaceous]]
31068 * M - [[Metallic]]
31069
31070 However, the correspondence between spectral class and composition is not always very good, and there are a variety of classifications in use. This has led to significant confusion. While asteroids of different spectral classifications are likely to be composed of different materials, there are no assurances that asteroids within the same taxonomic class are composed of similar materials.
31071
31072 At present, the spectral classification based on several coarse resolution spectroscopic surveys in the 1990s is still the standard. Scientists have been unable to agree on a better taxonomic system, largely due to the difficulty of obtaining detailed measurements consistently for a large sample of asteroids (e.g. finer resolution spectra, or non-spectral data such as densities would be very useful).
31073
31074 ==Asteroid discovery==
31075 ===Historical discovery methods===
31076 Asteroid discovery methods have drastically improved over the past two centuries.
31077
31078 In the last years of the [[18th century]], Baron [[Franz Xaver von Zach]] organized a group of 24 astronomers to search the sky for the &quot;missing planet&quot; predicted at about 2.8 [[Astronomical unit|AU]] from the [[Sun]] by the [[Titius-Bode law]], partly as a consequence of the discovery, by Sir [[William Herschel]] in [[1781]], of the planet [[Uranus (planet)|Uranus]] at the distance &quot;predicted&quot; by the law. This task required that hand-drawn sky charts be prepared for all stars in the [[zodiac]]al band down to an agreed-upon limit of faintness. On subsequent nights, the sky would be charted again and any moving object would, hopefully, be spotted. The expected motion of the missing planet was about 30 seconds of arc per hour, readily discernable by observers.
31079
31080 Ironically, the first asteroid, [[1 Ceres]], was not discovered by a member of the group, but rather by accident in [[1801]] by [[Giuseppe Piazzi]] director, at the time, of the observatory of [[Palermo]], in [[Sicily]]. He discovered a new star-like object in [[Taurus]] and followed the displacement of this object during several nights. His colleague, [[Carl Friedrich Gauss]], used these observations to determine the exact distance from this unknown object to the Earth. Gauss' calculations placed the object between the planets [[Mars (planet)|Mars]] and [[Jupiter (planet)|Jupiter]]. Piazzi named it after [[Ceres (mythology)|Ceres]], the Roman goddess of agriculture.
31081
31082 Three other asteroids ([[2 Pallas]], [[3 Juno]], [[4 Vesta]]) were discovered over the next few years, with Vesta found in [[1807]]. After eight more years of fruitless searches, most astronomers assumed that there were no more and abandoned any further searches.
31083
31084 However, [[Karl Ludwig Hencke]] persisted, and began searching for more asteroids in [[1830]]. Fifteen years later, he found [[5 Astraea]], the first new asteroid in 38 years. He also found [[6 Hebe]] less than two years later. After this, other astronomers joined in the search and at least one new asteroid was discovered every year after that (except the wartime year 1945). Notable asteroid hunters of this early era were [[John Russell Hind|J. R. Hind]], [[Annibale de Gasparis]], [[Karl Theodor Robert Luther|Robert Luther]], [[Hermann Mayer Salomon Goldschmidt|H. M. S. Goldschmidt]], [[Jean Chacornac]], [[James Ferguson (astronomer)|James Ferguson]], [[Norman Robert Pogson]], [[Ernst Wilhelm Leberecht Tempel|E. W. Tempel]], [[James Craig Watson|J. C. Watson]], [[Christian Heinrich Friedrich Peters|C. H. F. Peters]], [[Alphonse Louis Nicolas Borrelly|A. Borrelly]], [[Johann Palisa|J. Palisa]], [[Paul Henry and Prosper Henry]] and [[Auguste Charlois]].
31085
31086 In [[1891]], however, [[Maximilian Franz Joseph Cornelius Wolf|Max Wolf]] pioneered the use of [[astrophotography]] to detect asteroids, which appeared as short streaks on long-exposure photographic plates. This drastically increased the rate of detection compared with previous visual methods: Wolf alone discovered 248 asteroids, beginning with [[323 Brucia]], whereas only slightly more than 300 had been discovered up to that point. Still, a century later, only a few thousand asteroids were identified, numbered and named. It was known that there were many more, but most astronomers did not bother with them, calling them &quot;vermin of the skies&quot;.
31087
31088 ===Modern discovery methods===
31089 Until [[1998]], asteroids were discovered by a four-step process. First, a region of the sky was [[photograph]]ed by a wide-field [[telescope]]. Pairs of photographs were taken, typically one hour apart. Multiple pairs could be taken over a series of days. Second, the two [[film]]s of the same region were viewed under a [[stereoscope]]. Any body in orbit around the Sun would move slightly between the pair of films. Under the stereoscope, the image of the body would appear to float slightly above the background of stars. Third, once a moving body was identified, its location would be measured precisely using a digitizing microscope. The location would be measured relative to known star locations [http://astrogeology.usgs.gov/About/People/CarolynShoemaker/].
31090
31091 These first three steps do not constitute asteroid discovery: the observer has only found an [[apparition]], which gets a [[Provisional designation in astronomy|provisional designation]], made up of the year of discovery, a code of two letters representing the week of discovery, and of a number so more than the one discovered one took place in this week (example: 1998 FJ74).
31092
31093 The final step of discovery is to send the locations and time of observations to [[Brian Marsden]] of the [[Minor Planet Center]]. Dr. Marsden has computer programs that compute whether an apparition ties together previous apparitions into a single orbit. If so, the object gets a number. The observer of the first apparition with a calculated orbit is declared the discoverer, and he gets the honour of naming the asteroid (subject to the approval of the [[International Astronomical Union]]) once it is numbered.
31094
31095 ===Latest technology: detecting hazardous asteroids===
31096 There is increasing interest in identifying asteroids whose orbits cross [[Earth|Earth's]] orbit, and that could, given enough time, collide with Earth (see [[Earth-crosser asteroid]]s). The three most important groups of [[near-Earth asteroid]]s are the [[Apollo asteroid|Apollos]], [[Amor_asteroid|Amors]], and the [[Aten_asteroid|Atens]]. Various [[asteroid deflection strategies]] have been proposed.
31097
31098 The [[near-Earth object|near-Earth]] asteroid [[433 Eros]] had been discovered as long ago as [[1898]], and the [[1930]]s brought a flurry of similar objects. In order of discovery, these were: [[1221 Amor]], [[1862 Apollo]], [[2101 Adonis]], and finally [[69230 Hermes]], which approached within 0.005 [[Astronomical Unit|AU]] of the [[Earth]] in [[1937]]. Astronomers began to realize the possibilities of Earth impact.
31099
31100 Two events in later decades increased the level of alarm: the increasing acceptance of [[Walter Alvarez]]' theory of [[K-T extinction|dinosaur extinction]] being due to an [[impact event]], and the [[1994]] observation of [[Comet Shoemaker-Levy 9]] crashing into [[Jupiter (planet)|Jupiter]]. The U.S. military also declassified the information that its military satellites, built to detect nuclear explosions, had detected hundreds of upper-atmosphere impacts by objects ranging from one to 10 metres across.
31101
31102 All of these considerations helped spur the launch of highly efficient automated systems that consist of Charge-Coupled Device ([[Charge-coupled device|CCD]]) cameras and computers directly connected to telescopes. Since [[1998]], a large majority of the asteroids have been discovered by such automated systems. A list of teams using such automated systems includes [http://neo.jpl.nasa.gov/programs]:
31103
31104 * The [[Lincoln Near-Earth Asteroid Research]] (LINEAR) team
31105 * The [[Near-Earth Asteroid Tracking]] (NEAT) team
31106 * [[Spacewatch]]
31107 * The [[LONEOS|Lowell Observatory Near-Earth-Object Search]] (LONEOS) team
31108 * The [[Catalina Sky Survey]] (CSS)
31109 * The [[Campo Imperatore Near-Earth Objects Survey]] (CINEOS) team
31110 * The [[Japanese Spaceguard Association]]
31111 * The [[Asiago-DLR Asteroid Survey]] (ADAS)
31112
31113 The LINEAR system alone has discovered 62,283 asteroids as of [[December 14]], [[2005]] [http://cfa-www.harvard.edu/iau/lists/MPDiscSites.html]. Between all of the automated systems, 3868 near-Earth asteroids have been discovered [http://cfa-www.harvard.edu/iau/lists/Unusual.html] including over 600 more than 1 km in diameter.
31114
31115 ==Naming asteroids==
31116 ===The naming format===
31117 Newly discovered asteroids are given a [[Provisional designation in astronomy|provisional designation]] consisting of the year of discovery and an alphanumeric code, such as 2001 FH. When its orbit is confirmed, it is given a number, and later may also be given a name (e.g. [[1 Ceres]]). The formal naming convention uses parentheses around the number (e.g. ''(433) Eros''), however, dropping the parentheses is quite common. Informally, especially when a name is repeated in running text, it is common to drop the number altogether, or to drop it after the first mention.
31118
31119 The [[Minor Planet Circular]] (MPC) of [[October 19]], [[2005]] was a historical one, as it saw the highest numbered asteroid jump from 99947 to 118161, causing a small &quot;[[Y2k]]&quot; like crisis for various automated data services &amp;mdash;up until then, only five digits were allowed in most data formats for the asteroid number. This has been addressed in some data fields by having the leftmost digit, the ten-thousands place, use the alphabet as a digit extension. A=10, B=11,â€Ļ, Z=35, a=36,â€Ļ, z=61. The highest number 120437 thus is cross-referenced as C0437 on some lists. Also, the fictional asteroid of ''[[The Little Prince]]'', '''B612''', now could be connected with the real (110612) 2001 TA&lt;sub&gt;142&lt;/sub&gt; which is listed as (B0612) 2001 TA&lt;sub&gt;142&lt;/sub&gt; in the compacted lists &amp;mdash;although it is already present as [[46610 BÊsixdouze]] (B612 in hexadecimal translates to 46610 in decimal notation).
31120
31121 ===Unnamed asteroids===
31122 Unnamed asteroids that have been given a number keep their provisional designation, e.g. [[(29075) 1950 DA]].
31123
31124 As modern discovery techniques have discovered vast numbers of new asteroids, they are increasingly being left unnamed. The first asteroid to be left unnamed was [[(3360) 1981 VA]]. On rare occasions, an asteroid's [[Provisional designation in astronomy|provisional designation]] may become used as a name in itself: the still unnamed [[(15760) 1992 QB₁]] gave its name to a group of asteroids which became known as [[cubewano]]s.
31125
31126 ===Sources for names===
31127 The first few asteroids were named after figures from [[Graeco-Roman mythology]], but as such names started to run out, others were used &amp;mdash;famous people, literary characters, the names of the discoverer's wives, children, and even television characters.
31128
31129 The first asteroid to be given a non-mythological name was [[20 Massalia]], named after the city of [[Marseille|Marseilles]]. For some time only female (or feminized) names were used; [[Alexander von Humboldt]] was the first man to have an asteroid named after him, but his name was feminized to [[54 Alexandra]]. This unspoken tradition lasted until [[334 Chicago]] was named; even then, oddly feminised names show up in the list for years afterward.
31130
31131 As the number of asteroids began to run into the hundreds, and eventually the thousands, discoverers began to give them increasingly frivolous names. The first hints of this were [[482 Petrina]] and [[483 Seppina]], named after the discoverer's pet dogs. However, there was little controversy about this until [[1971]], upon the naming of [[2309 Mr. Spock]] (which was not even named after the ''[[Star Trek]]'' character, but after the discoverer's cat who supposedly bore a resemblance to him). Although the [[International Astronomical Union|IAU]] subsequently banned pet names as sources, eccentric asteroid names are still being proposed and accepted, such as [[6042 Cheshirecat]], [[9007 James Bond]], or [[26858 Misterrogers]].
31132
31133 For a full list, see [[meanings of asteroid names]].
31134
31135 ===Special naming rules===
31136 Asteroid naming is not always a free-for-all: there are some types of asteroid for which rules have developed about the sources of names. For instance [[Centaur (planetoid)|Centaurs]] (asteroids orbiting between Saturn and Neptune) are all named after mythological [[centaur]]s, [[Trojan asteroid|Trojans]] after heroes from the [[Trojan War]], and [[trans-Neptunian objects]] after underworld spirits.
31137
31138 ==Asteroid symbols==
31139 The first few asteroids discovered were assigned symbols like the ones traditionally used to designate Earth, the Moon, the Sun and planets. The symbols quickly became ungainly, hard to draw and recognise. By the end of [[1851]] there were 15 known asteroids, each (except one) with its own symbol. The first four's main variants are shown here:
31140
31141 :1 Ceres [[Image:1 Ceres (0).png|15px|Old planetary symbol of Ceres]] [[Image:1 Ceres (1).png|15px|Variant symbol of Ceres]] [[Image:1 Ceres (2).png|15px|Sickle variant symbol of Ceres]] [[Image:1 Ceres (3).png|20px|Other sickle variant symbol of Ceres]]
31142 :2 Pallas [[Image:2 Pallas (0).png|15px|Old symbol of Pallas]] [[Image:2 Pallas (1).png|15px|Variant symbol of Pallas]]
31143 :3 Juno [[Image:3 Juno (0).png|15px|Old symbol of Juno]] [[Image:3 Juno (1).png|15px|Other symbol of Juno]]
31144 :4 Vesta [[Image:4 Vesta (0).png|15px|Old symbol of Vesta]] [[Image:100px-Simbolo di Vesta.jpg|15px|Old planetary symbol of Vesta]] [[Image:4 Vesta (1).png|15px|Modern astrological symbol of Vesta]]
31145
31146 [[Johann Franz Encke]] made a major change in the ''Berliner Astronomisches Jahrbuch'' (BAJ, &quot;Berlin Astronomical Yearbook&quot;) for [[1854]]. He introduced encircled numbers instead of symbols, although his numbering began with [[5 Astraea|Astraea]], the first four asteroids continuing to be denoted by their traditional symbols. This symbolic innovation was adopted very quickly by the astronomical community. The following year ([[1855]]), Astraea's number was bumped up to 5, but Ceres through Vesta would be listed by their numbers only in the [[1867]] edition. A few more asteroids ([[28 Bellona]], [[35 Leukothea]], and [[37 Fides]]) would be given symbols as well as using the numbering scheme.
31147
31148 The circle would become a pair of parentheses, and the parentheses sometimes omitted altogether over the next few decades.
31149
31150 For details, see [[James L. Hilton]], [[2001]], [http://aa.usno.navy.mil/hilton/AsteroidHistory/minorplanets.html ''When Did the Asteroids Become Minor Planets?''].
31151
31152 ==Asteroid exploration==
31153 Until the age of [[space travel]], asteroids were merely pinpricks of light in even the largest telescopes and their shapes and terrain remained a mystery.
31154
31155 The first [[close-up]] photographs of asteroid-like objects were taken in [[1971]] when the [[Mariner 9]] probe imaged [[Phobos (moon)|Phobos]] and [[Deimos (moon)|Deimos]], the two small moons of [[Mars (planet)|Mars]], which are probably captured asteroids. These images revealed the irregular, potato-like shapes of most asteroids, as did subsequent images from the [[Voyager program|Voyager]] probes of the small moons of the [[gas giant]]s.
31156
31157 [[Image:951 Gaspra.jpg|thumb|right|[[951 Gaspra]], the first asteroid to be imaged in close up.]]
31158 The first true asteroid to be photographed in close-up was [[951 Gaspra]] in [[1991]], followed in [[1993]] by [[243 Ida]] and its moon [[Dactyl (asteroid)|Dactyl]], all of which were imaged by the [[Galileo spacecraft|Galileo probe]] ''en route'' to [[Jupiter (planet)|Jupiter]].
31159
31160 The first dedicated asteroid probe was [[NEAR Shoemaker]], which photographed [[253 Mathilde]] in [[1997]], before entering into orbit around [[433 Eros]], finally landing on its surface in [[2001]].
31161
31162 Other asteroids briefly visited by spacecraft ''en route'' to other destinations include [[9969 Braille]] (by [[Deep Space 1]] in [[1999]]), and [[5535 Annefrank]] (by [[Stardust (spacecraft)|Stardust]] in [[2002]]).
31163
31164 In September [[2005]], the Japanese [[Hayabusa]] probe started studying [[25143 Itokawa]] in detail and will return samples of its surface to earth. Following that, the next asteroid encounters will involve the European [[Rosetta space probe|Rosetta probe]] (launched in [[2004]]), which will study [[2867 Steins|2867 &amp;#352;teins]] and [[21 Lutetia]] in [[2008]] and [[2010]].
31165
31166 As a consequence of cost overruns and technical problems, [[NASA]] cancelled its [[Dawn Mission]] in March, 2006. Dawn was originally scheduled to launch June 2006 (later rescheduled for 2007) and was to orbit both [[1 Ceres]] and [[4 Vesta]] in [[2011]]-[[2015]].
31167
31168 It has been suggested that asteroids might be used in the future as a source of materials which may be rare or exhausted on earth ([[asteroid mining]]).
31169
31170 ==Asteroids in fiction and film==
31171 Understandably, most fictional depictions of asteroids focus on their potential risk of striking Earth. Representations of the asteroid belt in film tend to make it unrealistically cluttered with dangerous rocks; in reality asteroids, even in the main belt, are spaced extremely far apart.
31172
31173 *[[Professor Moriarty]], [[Sherlock Holmes]]' arch-enemy, &quot;is the celebrated author of'' &quot;The Dynamics of an Asteroid&quot;'', a book which ascends to such rarefied heights of pure mathematics that it is said that there was no man in the scientific press capable of criticizing it&quot; ([[The Valley of Fear]], [[1914]], set in [[1888]]).
31174 *In ''[[The Little Prince]]'', a [[1943]] novel by [[Antoine de Saint-ExupÊry]], the [[title role|title character]] lives on an asteroid named &quot;B-6-12&quot;. The [[asteroid moon]] [[Petit-Prince (asteroid)|Petit-Prince]] was named after the character, and [[46610 BÊsixdouze]] after his asteroid.
31175 *'[[Catch that Rabbit]]', one of the short stories in [[Isaac Asimov]]'s collection ''[[I, Robot]]'' ([[1950]]), takes place on an asteroid, while ''[[Marooned Off Vesta]],'' Asimov's first published story, concerns the plight of a group of astronauts stranded in orbit around the asteroid [[4 Vesta]].
31176 *The Japanese science fiction film ''[[Chikyu Boeigun|The Mysterians]]'' aka ''[[Chikyu Boeigun]]'' ([[1957]]) reveals the solar system's asteroid belt as the remnants of the Mysterian's home planet, Mysteroid, after a nuclear war broke out.
31177 *In ''[[Green Slime]]'' (1968), a masterpiece of [[B-movie]]s, a rogue asteroid hurtles toward Earth. The astronauts leave [[Space station|Space Station]] Gamma 3 and place bombs on the asteroid, finding it inhabited by strange blobs of glowing slime that are drawn to the equipment. Unfortunately for everyone some of the slime was carried back on a [[space suit]] and soon evolves into tentacled creatures! See the review: [http://www.badmovies.org/movies/greenslime/]. The movie inspired the classic [[board game]] ''[[Awful Green Things from Outer Space]]''.
31178 *In the classic science-fiction movie ''[[2001: A Space Odyssey (film)|2001: A Space Odyssey]]'' ([[1968]]), the ''Discovery'' has a scientifically accurate &quot;close approach&quot; by a binary asteroid whilst en route to [[Jupiter (planet)|Jupiter]]. The scene simply cuts briefly to two lone rocks passing by the ship, with tens of thousands of kilometres to spare.
31179 * In [[James P. Hogan (writer)|James P. Hogan]]'s ''Inherit the Stars'' ([[1977]]), first book of the ''Gentle Giants'' series, Minerva was a planet that exploded to form the [[asteroid belt]] 50,000 years ago.
31180 *The [[disaster movie]] ''[[Meteor (movie)|Meteor]]'' ([[1979]]) depicts an asteroid named Orpheus hurtling toward Earth after its orbit is deflected by a [[comet]].
31181 *[[Atari]] released the arcade game [[Asteroids]] in [[1979]].
31182 *In ''[[The Empire Strikes Back]]'' ([[1980]]), [[Han Solo]] enters an asteroid field to flee from the [[Empire_(Star_Wars)|Imperial]] fleet, and [[C-3PO]] thinks it is a bad idea. Han then hides his ship, the ''[[Millennium Falcon]]'' inside a giant asteroid; The ship is then attacked by a vast monster that lives (inexplicably) within the asteroid in the vacuum of space.
31183 *In [[Orson Scott Card]]'s ''[[Ender's Game]]'' ([[1985]]), a school on [[433 Eros]] is dedicated to children learning to become fleet commanders.
31184 *[[Arthur C. Clarke]]'s novel ''[[2061: Odyssey Three]]'' ([[1986]]) depicts a journey through the asteroid belt and its ominous parallels with the journey of the ''[[RMS Titanic]]''.
31185 *[[L. Neil Smith]]'s novel ''Pallas'' ([[Tor Books]], [[1993]]) depicts a modernized hunting based life on the terraformed asteroid [[Pallas]] and introduces Emerson Ngu. The book was partly insired by the 1987 article &quot;The Worst Mistake in the History of the Human Race&quot; written by [[Jared Diamond]]. The book also includes a brief description of a way to encapsulate the entire surface of a small body such as an asteroid to enable creating an Earthlike environment.
31186 *[[Arthur C. Clarke]]'s novel ''[[The Hammer of God]]'' ([[1993]]) depicts mankind's efforts to stop an asteroid named Kali from hitting the Earth. The film ''[[Deep Impact (movie)|Deep Impact]]'' ([[1998]]) was based on Clarke's novel, although in the movie, the asteroid becomes a [[comet]].
31187 *In the [[LucasArts]] game ''[[The Dig]]'' (originally released in [[1995]]) and its novelization, the impact-threatening asteroid Attila turns out to be an alien probe.
31188 *In the [[1998]] movie ''[[Starship Troopers]]'', aliens launch an asteroid at Earth, completely wiping out [[Buenos Aires]]. This is the opening move in the war.
31189 *The film ''[[Armageddon (movie)|Armageddon]]'' (1998) is also about efforts to stop an asteroid hitting Earth. Its representation of an asteroid (and of space travel in general) is deeply unrealistic.
31190 *[[Ben Bova]]'s novel series ''[[The Asteroid Wars]]'' ([[2001]]-[[2004]]) focuses on a war over the mining of the asteroid belt.
31191 *In the [[BBC]] [[drama documentary]] ''[[Space Odyssey: Voyage to the Planets]]'' ([[2004]]), the ''Pegasus'' encounters a [[binary asteroid]] from much closer than expected, and dubs the rocks &quot;Hubris&quot; and &quot;Catastrophe&quot; as a result.
31192 *An episode of the political television drama, ''[[The West Wing (television)|The West Wing]]'' entitled &quot;Impact Winter&quot; included a subplot in which the [[White House]] staff prepared for a possible asteroid strike on the Earth. (First broadcast on [[December 15]], [[2004]]).
31193
31194 ==See also==
31195 * [[List of noteworthy asteroids]]
31196 * [[List of asteroids]]
31197 * [[List of asteroids named after important people]]
31198 * [[List of asteroids named after places]]
31199 * [[Meanings of asteroid names]]
31200 * [[Near-Earth object]]
31201 * [[Minor planet]]
31202 * [[Asteroid belt]]
31203 * [[Pronunciation of asteroid names]]
31204 * [[Minor Planet Center]]
31205 * [[:Category:Asteroid_groups_and_families|Asteroid groups and families]]
31206 * [[:Category:Asteroids|Asteroids]]
31207
31208 == References ==
31209
31210 *McSween and McSween, ''Meteorites and Their Parent Planets'', ISBN 0521587514
31211
31212 == External links ==
31213 * [http://www.armageddononline.org/asteroid.php Known Asteroid Impacts &amp; Their Effects]
31214 * [http://cfa-www.harvard.edu/iau/lists/MPNames.html Alphabetical list of minor planet names (ASCII)] (Minor Planet Center)
31215 * [http://www.ipa.nw.ru/PAGE/DEPFUND/LSBSS/englenam.htm Alphabetical and numerical lists of minor planet names (Unicode)] (Institute of Applied Astronomy) ('''Warning:''' some ''designation'' here might be incorrect)
31216 * [http://newton.dm.unipi.it/cgi-bin/neodys/neoibo Near Earth Objects Dynamic Site]
31217 * [http://hamilton.dm.unipi.it/cgi-bin/astdys/astibo Asteroids Dynamic Site ] Up-to date [[osculating orbit|osculating]] [[orbital elements]] and [[proper orbital elements]].
31218 * [http://quasar.ipa.nw.ru/PAGE/DEPFUND/LSBSS/statmpn.htm Asteroid naming statistics]
31219 * [http://neat.jpl.nasa.gov/ Near Earth Asteroid Tracking (NEAT)]
31220 * [http://www.spaceguarduk.com/ Spaceguard UK]
31221 * [http://aa.usno.navy.mil/hilton/AsteroidHistory/minorplanets.html When Did the Asteroids Become Minor Planets?]
31222 *[http://www.astrosurf.com/aude/map/us/AstFamilies2004-05-20.htm Large amount of information on asteroid groups collected by GÊrard Faure], translation Richard Miles.
31223 *[http://www.colorado.edu/physics/2000/applets/satellites.html Asteroid Simulator with Moon and Earth]
31224 &lt;br clear=&quot;all&quot;&gt;
31225 &lt;center&gt;''(asteroid navigator) | [[1 Ceres|First asteroid]] | ...''&lt;/center&gt;
31226 {{MinorPlanets_Footer}}
31227 {{Footer_SolarSystem}}
31228
31229 [[Category:Asteroids|*]]
31230
31231 {{Link FA|fr}}
31232
31233 [[bg:АŅŅ‚ĐĩŅ€ĐžĐ¸Đ´]]
31234 [[ca:Asteroide]]
31235 [[cs:Asteroid]]
31236 [[da:SmÃĨplanet]]
31237 [[de:Asteroid]]
31238 [[et:Asteroid]]
31239 [[es:Asteroide]]
31240 [[eo:Asteroido]]
31241 [[fr:AstÊroïde]]
31242 [[gl:Asteroide]]
31243 [[ko:ė†Œí–‰ė„ą]]
31244 [[io:Asteroido-zono]]
31245 [[id:Asteroid]]
31246 [[it:Asteroide]]
31247 [[he:אסטרואיד]]
31248 [[la:Asteroides]]
31249 [[ms:Asteroid]]
31250 [[nl:Planetoïde]]
31251 [[ja:小惑星]]
31252 [[lt:Asteroidas]]
31253 [[lv:AsteroÄĢds]]
31254 [[no:Asteroide]]
31255 [[nn:Asteroide]]
31256 [[pam:Asteroid]]
31257 [[pl:Planetoida]]
31258 [[pt:AsterÃŗide]]
31259 [[ro:Asteroid]]
31260 [[ru:АŅŅ‚ĐĩŅ€ĐžĐ¸Đ´]]
31261 [[scn:Astiroidi]]
31262 [[simple:Asteroid]]
31263 [[sk:Asteroid]]
31264 [[sl:Asteroid]]
31265 [[sr:АŅŅ‚ĐĩŅ€ĐžĐ¸Đ´]]
31266 [[fi:Asteroidi]]
31267 [[sv:Asteroid]]
31268 [[tl:Asteroyd]]
31269 [[tt:Asteroidlar]]
31270 [[th:ā¸”ā¸˛ā¸§āš€ā¸„ā¸Ŗā¸˛ā¸°ā¸ĢāšŒā¸™āš‰ā¸­ā¸ĸ]]
31271 [[tr:Asteroit]]
31272 [[zh:å°čĄŒæ˜Ÿ]]
31273 [[zh-min-nan:SiÃŗ-heĖk-chheâŋ]]</text>
31274 </revision>
31275 </page>
31276 <page>
31277 <title>Allocution</title>
31278 <id>794</id>
31279 <revision>
31280 <id>15899309</id>
31281 <timestamp>2005-05-23T05:38:11Z</timestamp>
31282 <contributor>
31283 <ip>208.186.187.78</ip>
31284 </contributor>
31285 <comment>Restored dropped comma; reformatted cross-reference to 'Confession'.</comment>
31286 <text xml:space="preserve">Generally, '''to allocute''' means &quot;to speak out formally.&quot; In the field of [[apologetics]], allocution is generally done in defense of a belief. In politics, one may allocute before a legislative body in an effort to influence their position on an issue. In law, it is generally meant to state specifically and in detail what one did &lt;nowiki&gt;and/or&lt;/nowiki&gt; why, often in relation to commission of a crime.
31287
31288 In most jurisdictions, a defendant is allowed the opportunity to allocute &amp;mdash; that is, explain himself, before sentence is passed. Some jurisdictions hold this as an absolute right, and in its absence, a sentence may potentially be overturned, with the result that a new sentencing hearing must be held.
31289
31290 Allocution is sometimes required of a defendant who pleads guilty to a crime in a [[plea bargain]] in exchange for a reduced sentence. In this instance, allocution can serve to provide closure for victims or their families. In principle, it removes any doubt as to the exact nature of the defendant's guilt in the matter. However, there have been many cases in which the defendant allocuted to a crime that he did not commit, often because this is a requirement to receiving a lesser sentence.
31291
31292 The term &quot;allocution&quot; is generally only in use in jurisdictions in the United States, though there are similar processes in other nations.
31293
31294 == See also ==
31295 * [[Confession]]
31296
31297 [[Category:Law]]</text>
31298 </revision>
31299 </page>
31300 <page>
31301 <title>Affidavit</title>
31302 <id>795</id>
31303 <revision>
31304 <id>38942603</id>
31305 <timestamp>2006-02-09T17:59:44Z</timestamp>
31306 <contributor>
31307 <ip>128.86.150.65</ip>
31308 </contributor>
31309 <text xml:space="preserve">An '''affidavit''' is a formal sworn statement of fact, written down, signed, and witnessed (as to the veracity of the signature) by a taker of oaths, such as a [[notary public]]. The name is [[Medieval Latin]] for ''he has declared upon oath''.
31310
31311 One use of affidavits is to allow evidence to be gathered from witnesses or participants that may not be available to testify in person before the court.
31312
31313 In American [[jurisprudence]], it is very unusual to allow an unsupported affidavit to be entered into evidence (as the person sworn in the affidavit is not subject to cross-examination) with regard to material facts which may be dispositive of the matter [[at bar]]. Affidavits from persons who are dead or otherwise incapacitated, or who cannot be located or made to appear may be accepted by the court, but usually only in the presence of [[corroborating evidence]]. A formerly written affidavit, which reflected a better grasp of the facts closer in time to the actual events, may be used to refresh a witness' recollection. Materials used to refresh recollection are admissible as evidence.
31314
31315 Some types of motions will not be accepted by a court unless accompanied by an independent sworn statement or other evidence, in support of the need for the motion. In such a case, the court will accept an affidavit from the filing attorney in support of the motion, as certain assumptions are made, to wit: The affidavit in place of sworn testimony promotes [[judicial economy]]. The lawyer is an [[officer of the court]] and knows that a false swearing by him, if found out, could be grounds for severe penalty up to and including [[disbarment]]. The lawyer if called upon would be able to present independent and more detailed evidence to prove the facts set forth in his affidavit.
31316
31317
31318
31319 == In the United Kingdom ==
31320 Affidavits are made by writing &quot;I (state full name) of (insert address)on this date (date in words) make oath and say as follows...&quot;. After this has been written, the facts to be sworn are listed, in pros or in bullet points. The document is then taken to a [[commisssioner for oaths]] (most [[solicitors]] are also commissioners for oaths). They will then ask you to swear on a holy book particular to your faith ([[The New Testament]], [[The Old Testament]], the [[Qur'an]], etc) and ask you to verify what has been stated.
31321
31322 An Affidavit is of equivalent value to sworn testimony.
31323
31324 [[Category:Evidence]]
31325 [[Category:Legal documents]]
31326
31327 [[de:Versicherung an Eides Statt]]
31328 [[he:×Ē×Ļהיר]]</text>
31329 </revision>
31330 </page>
31331 <page>
31332 <title>Alzheimers Disease</title>
31333 <id>797</id>
31334 <revision>
31335 <id>15899311</id>
31336 <timestamp>2002-04-27T16:46:33Z</timestamp>
31337 <contributor>
31338 <username>Maveric149</username>
31339 <id>62</id>
31340 </contributor>
31341 <comment>*link fix</comment>
31342 <text xml:space="preserve">#REDIRECT [[Alzheimer's disease]]
31343 </text>
31344 </revision>
31345 </page>
31346 <page>
31347 <title>Aries</title>
31348 <id>798</id>
31349 <revision>
31350 <id>41512192</id>
31351 <timestamp>2006-02-27T21:33:40Z</timestamp>
31352 <contributor>
31353 <username>BorgQueen</username>
31354 <id>382591</id>
31355 </contributor>
31356 <minor />
31357 <comment>Reverted edits by [[Special:Contributions/199.216.116.6|199.216.116.6]] ([[User talk:199.216.116.6|talk]]) to last version by That Guy, From That Show!</comment>
31358 <text xml:space="preserve">:''For other uses, see [[Aries (disambiguation)]]''
31359 {{Infobox Constellation|
31360 name = Aries |
31361 abbreviation = Ari |
31362 genitive = Arietis |
31363 symbology = the [[Domestic sheep|Ram]]|
31364 RA = 3 |
31365 dec= +20 |
31366 areatotal = 441 |
31367 arearank = 39th |
31368 numberstars = 2 |
31369 starname = [[Alpha Arietis|&amp;alpha; Ari]] (Hamal) |
31370 starmagnitude = 2.0 |
31371 meteorshowers =
31372 *[[May Arietids]]
31373 *[[Autumn Arietids]]
31374 *[[Delta Arietids]]
31375 *[[Epsilon Arietids]]
31376 *[[Daytime-Arietids]]
31377 *[[Aries-Triangulids]] |
31378 bordering =
31379 *[[Perseus (constellation)|Perseus]]
31380 *[[Triangulum]]
31381 *[[Pisces]]
31382 *[[Cetus]]
31383 *[[Taurus (constellation)|Taurus]] |
31384 latmax = 90 |
31385 latmin = 60 |
31386 month = December |
31387 notes=}}
31388 '''Aries''' ([[Latin]] for ''[[sheep|Ram]]'', symbol [[Image:Aries_symbol.png|20px]], [[Unicode]] ♈) is one of the [[constellation]]s of the [[zodiac]]. It lies between [[Pisces]] to the west and [[Taurus (constellation)|Taurus]] to the east.
31389
31390 == Notable features ==
31391 Aries' stars are rather faint except for [[Alpha Arietis|&amp;alpha; Ari]] (Hamal) and [[Beta Arietis|&amp;beta; Ari]] (Sharatan). Other important stars are [[Gamma Arietis|&amp;gamma; Ari]] (Mesarthim) and [[Delta Arietis|&amp;delta; Ari]] (Botein).
31392
31393 [[Teegarden's star]], in Aries, is one of our sun's closest neighbours.
31394
31395 == Notable deep sky objects ==
31396 The few [[deep sky object]]s in Aries are very dim. They include the [[galaxy|galaxies]] NGC 697 (northwest of &amp;beta;), NGC 772 (southeast of &amp;beta;), NGC 972 (in the constellation's northern corner), and NGC 1156 (northwest of &amp;delta;).
31397
31398 == Mythology ==
31399 When including fainter stars, visible to the naked eye, the area resembles the head of a [[sheep|ram]], having a general herbivore head shape and a spiral horn.
31400
31401 In [[Greek mythology]], this is believed to represent the ram which carried Athamas's son [[Phrixus]] and daughter [[Helle (mythology)|Helle]] to Colchis to escape their stepmother [[Ino]]. Helle fell off into the sea which later became the Hellespont. On reaching safety, Phrixis sacrificed the ram and hung its [[golden fleece|fleece]] in the Grove of Ares, where it turned to gold and later became the quest of [[Jason]] and the [[Argonauts]]. It appears that [[Babylonians]], [[Greeks]], [[Persians]] and [[Ancient Egypt|Egyptians]] all agreed on the name of the Ram for this [[constellation]].
31402
31403 The main area of the sky constituting the sign of Aries, containing part of [[Pisces]], the [[Pleiades]], and the constellation of [[Andromeda (constellation)|Andromeda]], may be the origin of the myth of the girdle of [[Hippolyte]], which forms part of [[The Twelve Labours]] of [[Hercules]].
31404
31405 ===Astrology===
31406 The Western [[astrological sign]] Aries of the [[tropical zodiac]] ([[March 21]]&amp;ndash;[[April 19]]) differs from the astronomical constellation and the Hindu astrological sign of the [[Sidereal astrology|sidereal zodiac]] ([[April 19]] - [[May 13]]).
31407
31408 In some cosmologies, Aries is associated with the [[classical element]] [[Fire (classical element)|Fire]], and thus called a fire sign (along with [[Sagittarius]] and [[Leo]]). It is the [[domicile (astrology)|domicile]] of [[Mars (god)|Mars]] and the [[Exaltation (astrology)|exaltation]] of the [[Sun]]. It is also one of the four [[Cardinal sign]]s (along with [[Libra]], [[Capricorn]], and [[Cancer (constellation)|Cancer]]). Its polar opposite is [[Libra]]. Each astrological sign is assigned a part of the body, viewed as the seat of its power. Aries rules the head and face. The symbol for Aries is the [[sheep|ram]].
31409 {{unreferenced}}
31410
31411 ==Notable and named stars==
31412 {| style=&quot;color:#000000; font-size:smaller;&quot; cellspacing=2 cellpadding=0
31413 |-
31414 ! style=&quot;background-color:#dddddd;&quot; | [[Bayer designation|BD]]
31415 ! style=&quot;background-color:#dddddd;&quot; | [[Flamsteed designation|F]]
31416 ! style=&quot;background-color:#dddddd;&quot; | Names and other designations
31417 ! style=&quot;background-color:#dddddd;&quot; | [[apparent magnitude|Mag.]]
31418 ! style=&quot;background-color:#dddddd;&quot; | [[Light year|Ly]] away
31419 ! style=&quot;background-color:#dddddd;&quot; | Comments
31420 |-
31421 | &amp;alpha; || 13 || [[Alpha Arietis]], Hamal, Hemal, Hamul, Ras Hammel, El Nath, Arietis || 2.01 || 65.9 ||
31422 * &lt; &amp;#1585;&amp;#1571;&amp;#1587; &amp;#1575;&amp;#1604;&amp;#1581;&amp;#1605;&amp;#1604; ''ra's[u] al-&amp;#295;amal'' Head of the ram
31423 * &lt; &amp;#1575;&amp;#1604;&amp;#1606;&amp;#1591;&amp;#1581; ''an-na&amp;#355;&amp;#295;'' The butting (horn)
31424 |- style=&quot;background-color:#eeeeee;&quot;
31425 | &amp;beta; || 6 || [[Beta Arietis]], Sheratan, Sharatan, Al Sharatain || 2.64 || 59.6 ||
31426 * &lt; &amp;#1575;&amp;#1604;&amp;#1588;&amp;#1585;&amp;#1575;&amp;#1591;&amp;#1575;&amp;#1606; ''a&amp;#353;-&amp;#353;ar&amp;#257;&amp;#355;&amp;#257;n'' The (two) signs (originally &amp;#946; and &amp;#947; Ari)
31427 |-
31428 | c || 41 || [[41 Arietis]], Bharani || 3.61 || 159 ||
31429 |- style=&quot;background-color:#eeeeee;&quot;
31430 | &amp;gamma;&amp;sup1;&lt;sup&gt;,&lt;/sup&gt;&amp;sup2; || 5 || [[Gamma Arietis]], Mesarthim, Mesartim || 3.88 || 204 ||
31431 * [[triple star system]]; component magnitudes: 4.75, 4.83, 9.6
31432 * &amp;gamma;&amp;sup2; is an [[Alpha2 Canum Venaticorum variable|Alpha2 Canum Venaticorum type]] [[variable star]]
31433 |-
31434 | &amp;delta; || 56 || [[Delta Arietis]], Botein || 4.35 || 168 ||
31435 * &lt; &amp;#1576;&amp;#1591;&amp;#1610;&amp;#1606; ''al-bu&amp;#355;ayn'' The belly [diminutive]
31436 |- style=&quot;background-color:#eeeeee;&quot;
31437 | || 39 || [[39 Arietis]] || 4.52 || ||
31438 |-
31439 | &amp;epsilon; || 48 || [[Epsilon Arietis]] || 4.63 || 293 ||
31440 * [[triple star system]]; component magnitudes: 5.2, 5.5, 12.7
31441 |- style=&quot;background-color:#eeeeee;&quot;
31442 | || 35 || [[35 Arietis]] || 4.65 || ||
31443 |-
31444 | &amp;lambda; || 9 || [[Lambda Arietis]] || 4.79 || 133 ||
31445 * [[binary star]]; component magnitudes: 4.9, 7.4
31446 |- style=&quot;background-color:#eeeeee;&quot;
31447 | &amp;zeta; || 58 || [[Zeta Arietis]] || 4.87 || 340 ||
31448 |-
31449 | || 14 || [[14 Arietis]] || 4.98 || ||
31450 |- style=&quot;background-color:#eeeeee;&quot;
31451 | &amp;kappa; || 12 || [[Kappa Arietis]] || 5.03 || 187 ||
31452 * [[spectroscopic binary]]
31453 |-
31454 | &amp;iota; || 8 || [[Iota Arietis]] || 5.09 || 660 ||
31455 * [[spectroscopic binary]]
31456 |- style=&quot;background-color:#eeeeee;&quot;
31457 | &amp;tau;&amp;sup2; || 63 || [[Tau Arietis|Tau-2 Arietis]] || 5.10 || 319 ||
31458 |-
31459 | || 38 || [[38 Arietis]] || 5.17 || ||
31460 |- style=&quot;background-color:#eeeeee;&quot;
31461 | &amp;eta; || 17 || [[Eta Arietis]] || 5.23 || 98.3 ||
31462 |-
31463 | &amp;pi; || 42 || [[Pi Arietis]] || 5.26 || 600 ||
31464 * close [[spectroscopic binary]]
31465 |- style=&quot;background-color:#eeeeee;&quot;
31466 | &amp;tau;&amp;sup1; || 61 || [[Tau Arietis|Tau-1 Arietis]] || 5.27 || 462 ||
31467 * [[eclipsing binary|eclipsing]] [[triple star system]]. Magnitude fluctuation: 5.26&amp;ndash;5.32. Component magnitudes: 5.4, 7.9, 8.4
31468 |-
31469 | || 33 || [[33 Arietis]] || 5.30 || ||
31470 |- style=&quot;background-color:#eeeeee;&quot;
31471 | &amp;nu; || 32 || [[Nu Arietis]] || 5.45 || 347 ||
31472 |-
31473 | || 52 || [[52 Arietis]] || 5.45 || ||
31474 * [[binary star]]; component magnitudes: 6.8, 7.0
31475 |- style=&quot;background-color:#eeeeee;&quot;
31476 | &amp;xi; || 24 || [[Xi Arietis]] || 5.48 || 600 ||
31477 |-
31478 | || 64 || [[64 Arietis]] || 5.50 || ||
31479 |- style=&quot;background-color:#eeeeee;&quot;
31480 | &amp;sigma; || 43 || [[Sigma Arietis]] || 5.52 || 480 ||
31481 |-
31482 | || 62 || [[62 Arietis]] || 5.55 || ||
31483 |- style=&quot;background-color:#eeeeee;&quot;
31484 | || 21 || [[21 Arietis]] || 5.57 || ||
31485 |-
31486 | &amp;theta; || 22 || [[Theta Arietis]] || 5.58 || 387 ||
31487 |- style=&quot;background-color:#eeeeee;&quot;
31488 | &amp;rho;&amp;sup3; || 46 || [[Rho Arietis|Rho-3 Arietis]], Rho Arietis || 5.58 || 115 ||
31489 |-
31490 | || 10 || [[10 Arietis]] || 5.64 || ||
31491 |- style=&quot;background-color:#eeeeee;&quot;
31492 | || 31 || [[31 Arietis]] || 5.64 || ||
31493 |-
31494 | || 15 || [[15 Arietis]] || 5.68 || ||
31495 |- style=&quot;background-color:#eeeeee;&quot;
31496 | || 19 || [[19 Arietis]] || 5.72 || ||
31497 |-
31498 | &amp;mu; || 34 || [[Mu Arietis]] || 5.74 || 338 ||
31499 |- style=&quot;background-color:#eeeeee;&quot;
31500 | || 55 || [[55 Arietis]] || 5.74 || ||
31501 |-
31502 | &amp;rho;&amp;sup2; || 45 || [[Rho Arietis|Rho-2 Arietis]], RZ Arietis || 5.76 || 404 ||
31503 * [[semiregular variable]]
31504 |- style=&quot;background-color:#eeeeee;&quot;
31505 | || 7 || [[7 Arietis]] || 5.76 || ||
31506 |-
31507 | &amp;omicron; || 37 || [[Omicron Arietis]] || 5.78 || 482 ||
31508 |- style=&quot;background-color:#eeeeee;&quot;
31509 | || 56 || [[56 Arietis]] || 5.78 || ||
31510 |-
31511 | || 20 || [[20 Arietis]] || 5.79 || ||
31512 |- style=&quot;background-color:#eeeeee;&quot;
31513 | || 47 || [[47 Arietis]] || 5.80 || ||
31514 |-
31515 | || 1 || [[1 Arietis]] || 5.83 || ||
31516 * [[binary star]]; component magnitudes 6.2, 7.3.
31517 |- style=&quot;background-color:#eeeeee;&quot;
31518 | || 40 || [[40 Arietis]] || 5.83 || ||
31519 |-
31520 | || 4 || [[4 Arietis]] || 5.86 || ||
31521 |- style=&quot;background-color:#eeeeee;&quot;
31522 | || 49 || [[49 Arietis]] || 5.91 || ||
31523 |-
31524 | || 59 || [[59 Arietis]] || 5.91 || ||
31525 |- style=&quot;background-color:#eeeeee;&quot;
31526 | || 29 || [[20 Arietis]] || 6.00 || ||
31527 |-
31528 | || 11 || [[11 Arietis]] || 6.01 || ||
31529 |- style=&quot;background-color:#eeeeee;&quot;
31530 | || 16 || [[16 Arietis]] || 6.01 || ||
31531 |-
31532 | || 30 || [[30 Arietis]] || 6.01 || ||
31533 * [[binary star]]; component magnitudes: 6.51, 7.09
31534 |- style=&quot;background-color:#eeeeee;&quot;
31535 | || 66 || [[66 Arietis]] || 6.03 || ||
31536 |-
31537 | || 65 || [[65 Arietis]] || 6.07 || ||
31538 |- style=&quot;background-color:#eeeeee;&quot;
31539 | || 53 || [[53 Arietis]] || 6.13 || ||
31540 |-
31541 | || 26 || [[26 Arietis]] || 6.14 || ||
31542 |- style=&quot;background-color:#eeeeee;&quot;
31543 | || 60 || [[60 Arietis]] || 6.14 || ||
31544 |-
31545 | || 27 || [[27 Arietis]] || 6.21 || ||
31546 |- style=&quot;background-color:#eeeeee;&quot;
31547 | || 54 || [[54 Arietis]] || 6.24 || ||
31548 |-
31549 | || 36 || [[36 Arietis]] || 6.40 || ||
31550 |- style=&quot;background-color:#eeeeee;&quot;
31551 | || 25 || [[25 Arietis]] || 6.45 || ||
31552 |-
31553 | || 3 || [[3 Arietis]] || 6.55 || ||
31554 |- style=&quot;background-color:#eeeeee;&quot;
31555 | || 51 || [[51 Arietis]] || 6.62 || ||
31556 |-
31557 | &amp;rho;&amp;sup1; || 44 || [[Rho Arietis|Rho-1 Arietis]] || 7.10 || ||
31558 |- style=&quot;background-color:#eeeeee;&quot;
31559 | || || [[HD 12661]] || 7.44 || 121 ||
31560 * has two planets
31561 |-
31562 | || || [[BD plus 20 307|BD+20&amp;deg;307]] || 9.01 || 300 ||
31563 |- style=&quot;background-color:#eeeeee;&quot;
31564 | || || [[TZ Arietis]] || 12.1 || 14.5 ||
31565 * [[flare star]]
31566 |-
31567 | || || [[Teegarden's star]], SO025300.5+165258 || 15.4 || 12.6 ||
31568 * nearby
31569 * high [[proper motion]]
31570 |}
31571 Source: &lt;cite&gt;The Bright Star Catalogue, 5th Revised Ed.&lt;/cite&gt;, &lt;cite&gt;The Hipparcos Catalogue, ESA SP-1200&lt;/cite&gt;
31572
31573 == See also ==
31574 {{Zodiac}}
31575 {{ConstellationsListedByPtolemy}}
31576 {{ConstellationList}}
31577
31578 == External links ==
31579 {{Commons|Aries}}
31580 * [http://www.allthesky.com/constellations/aries/ The Deep Photographic Guide to the Constellations: Aries]
31581
31582 [[Category:Aries constellation| ]]
31583 [[Category:Astrological signs]]
31584
31585 [[an:Aries]]
31586 [[ast:Aries]]
31587 [[ca:Àries]]
31588 [[cs:Beran (souhvězdí)]]
31589 [[da:VÃĻdderen (stjernetegn)]]
31590 [[de:Widder (Sternbild)]]
31591 [[es:Aries]]
31592 [[eo:Ŝafo (Zodiako)]]
31593 [[fr:BÊlier (constellation)]]
31594 [[ga:An Reithe]]
31595 [[ko:ė–‘ėžëĻŦ]]
31596 [[id:Aries]]
31597 [[it:Ariete (astronomia)]]
31598 [[ka:ვერáƒĢი]]
31599 [[ku:Beran (birç)]]
31600 [[la:Aries (sidus)]]
31601 [[lt:Avinas (astronomija)]]
31602 [[nl:Ram (sterrenbeeld)]]
31603 [[ja:ãŠã˛ã¤ã˜åē§]]
31604 [[pl:Baran (gwiazdozbiÃŗr)]]
31605 [[pt:Aries]]
31606 [[ru:ОвĐĩĐŊ (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
31607 [[sk:SÃēhvezdie Baran]]
31608 [[fi:Oinas]]
31609 [[sv:Väduren]]
31610 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§āšā¸ā¸°]]
31611 [[zh:į™ŊįžŠåē§]]</text>
31612 </revision>
31613 </page>
31614 <page>
31615 <title>Aquarius</title>
31616 <id>799</id>
31617 <revision>
31618 <id>41610629</id>
31619 <timestamp>2006-02-28T14:20:08Z</timestamp>
31620 <contributor>
31621 <username>Emre D.</username>
31622 <id>665265</id>
31623 </contributor>
31624 <minor />
31625 <comment>Revert to revision 40765528 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
31626 <text xml:space="preserve">{{Otheruses1|the constellation}}
31627 {{Infobox Constellation|
31628 name = Aquarius |
31629 abbreviation = Aqr |
31630 genitive = Aquarii |
31631 symbology = the Water-bearer |
31632 RA = 23 |
31633 dec= &amp;minus;15 |
31634 areatotal = 980 |
31635 arearank = 10th |
31636 numberstars = 2 |
31637 starname = [[Beta Aquarii|&amp;beta; Aqr]] (Sadalsuud) |
31638 starmagnitude = 2.9 |
31639 meteorshowers =
31640 *[[March Aquarids]]
31641 *[[Eta Aquarids]] (May&amp;nbsp;4)
31642 *[[Delta Aquarids]] (June&amp;nbsp;28)
31643 *[[Iota Aquarids]] |
31644 bordering =
31645 *[[Pisces]]
31646 *[[Pegasus (constellation)|Pegasus]]
31647 *[[Equuleus]]
31648 *[[Delphinus]]
31649 *[[Aquila (constellation)|Aquila]]
31650 *[[Capricornus]]
31651 *[[Piscis Austrinus]]
31652 *[[Sculptor (constellation)|Sculptor]]
31653 *[[Cetus]] |
31654 latmax = 65 |
31655 latmin = 90 |
31656 month = October |
31657 notes=}}
31658 '''Aquarius''' ([[Latin]] for the ''[[Water]]-bearer'' or ''Cup-bearer'', symbol [[Image:Aquarius_symbol_small.png|20px]], [[Unicode]] ♒) is the eleventh sign of the [[zodiac]], situated between Capricornus and Pisces. Its symbol is [[Image:Aquarius_symbol_small.png|20px]], representing part of a stream of water.
31659
31660 Aquarius is one of the oldest recognized constellations along the zodiac, the sun's apparent path. It is found in a region often called the [[Sea (astronomy)|Sea]] due to its profusion of watery constellations such as [[Cetus]], [[Pisces]], [[Eridanus (constellation)|Eridanus]], etc. Sometimes, the river Eridanus is depicted spilling from Aquarius' watering pot.
31661
31662 == Notable deep sky objects ==
31663 There are three [[deep sky object]]s that are on the [[Messier object|Messier catalog]], the [[Globular Cluster M2]], [[Globular Cluster M72]], and the [[Messier Object 73|Open Cluster M73]].
31664
31665 Two [[planetary nebula]]e are found in Aquarius: [[NGC 7009]], called the [[Saturn Nebula]] due to its resemblance to the [[Saturn (planet)|planet]], to the southeast of &amp;eta; Aquarii; and [[NGC 7293]], the famous [[Helix Nebula]], southwest of &amp;delta; Aquarii.
31666
31667 == History ==
31668 The constellation was immortalized in the [[1960s]], proclaimed the [[Age of Aquarius]]. However, there is no standard definition for astrological ages, so the age of Aquarius could begin in [[2150]] or even [[2660]], depending on the preferred definition. Based on the modern constellation boundaries of [[Pisces]] and Aquarius, the age of Aquarius would begin around 2660.
31669
31670 However, with so much of modern society reflecting the qualities of Aquarius most astrologers believe that this era has begun. Mass production, electricity, flight and space travel, electronic communications including computers the Internet, even the growing movement against capitalism in favour of a more socialist system of humanitarian development are all related to the Aquarian paradigm.
31671
31672 == Mythology ==
31673 The best-known myth identifies Aquarius with [[Ganymede (mythology)|Ganymede]], a beautiful youth with whom [[Zeus]] fell in love, and whom he (in the guise of an eagle, represented as the constellation [[Aquila (constellation)|Aquila]]) carried off to Olympus to be cupbearer to the gods. [[Crater (constellation)|Crater]] is sometimes identified as his cup.
31674
31675 Aquarius generally resembles the figure of a man, and when considering fainter humanly visible stars, it takes on the image of a man with a bucket from which is pouring a stream. Aquarius was also identified as the pourer of the waters which flooded the earth in the [[Deluge (mythology)|Great Flood]], in the [[Greek mythology|ancient Greek version]] of the myth. As such, the constellation [[Eridanus (constellation)|Eridanus]] was sometimes identified as being a river poured out by Aquarius.
31676
31677 It may also, together with the constellation [[Pegasus (constellation)|Pegasus]], be part of the origin of the myth of the [[Mares of Diomedes]], which forms one of [[The Twelve Labours]] of [[Heracles]]. Its association with pouring out rivers, and the nearby constellation of [[Capricornus]], may be the source of the myth of the [[Augean stable]], which forms another of the labours.
31678
31679 ===Astrology===
31680 The Western [[astrological sign]] Aquarius of the [[tropical zodiac]] ([[January 20]] - [[February 18]]) differs from the astronomical constellation and the Hindu astrological sign of the [[Sidereal astrology|sidereal zodiac]] ([[February 16]] - [[March 11]]).
31681
31682 In some cosmologies, Aquarius is associated with the [[classical element]] [[air (classical element)|Air]], and thus called an Air Sign (with [[Libra]] and [[Gemini]]). It is also one of the four Fixed signs (along with [[Leo]], [[Scorpius|Scorpio]], and [[Taurus]]). Its polar opposite is Leo. It is the domicile of [[Saturn (planet)|Saturn]] (since its discovery [[Uranus (planet)|Uranus]] has been considered Aquarius' ruling or co-ruling planet by many modern astrologers). Each astrological sign is assigned a part of the body, viewed as the seat of its power. Aquarius rules the [[circulatory system]] as well as the [[ankles]]. The symbol for Aquarius is the [[water bearer]].
31683
31684 ==Notable and named stars==
31685 {| style=&quot;color:#000000; font-size:smaller;&quot; cellspacing=2 cellpadding=0
31686 |-
31687 ! style=&quot;background-color:#dddddd;&quot; | [[Bayer designation|BD]]
31688 ! style=&quot;background-color:#dddddd;&quot; | [[Flamsteed designation|F]]
31689 ! style=&quot;background-color:#dddddd;&quot; | Names and other designations
31690 ! style=&quot;background-color:#dddddd;&quot; | [[apparent magnitude|Mag.]]
31691 ! style=&quot;background-color:#dddddd;&quot; | [[Light year|Ly]] away
31692 ! style=&quot;background-color:#dddddd;&quot; | Comments
31693 |-
31694 | &amp;beta; || 22 || [[Beta Aquarii]], Sadalsuud, Sadalsud, Sad es Saud, Sadalsund, Saad el Sund || 2.90 || 610 ||
31695 * &lt; Øŗؚد اŲ„ØŗØšŲˆØ¯Luck of ''sa&lt;sup&gt;c&lt;sup&gt;d as-su&lt;sup&gt;c&lt;sup&gt;ÅĢd'' ''sa&lt;sup&gt;c&lt;sup&gt;d as-su&lt;sup&gt;c&lt;sup&gt;ÅĢd'' Luck of lucks
31696 |- style=&quot;background-color:#eeeeee;&quot;
31697 | &amp;alpha; || 34 || [[Alpha Aquarii]], Sadalmelik, Sadal Melik, Sadalmelek, Sadlamulk, El Melik, Saad el Melik, Ruchbah || 2.95 || 760 ||
31698 * &lt; Øŗؚد اŲ„Ų…Ų„Ųƒ ''sa&lt;sup&gt;c&lt;sup&gt;d al-malik/mulk'' Luck of the king/kinghood
31699 * '''Rucbah''' shared with [[Delta Cassiopeiae|&amp;delta; Cassiopeiae]]
31700 |-
31701 | &amp;gamma; || 48 || [[Gamma Aquarii]], Sadachbia, Sadalachbia || 3.86 || 158 ||
31702 * &lt; Øŗؚد اŲ„ØŖ؎بŲŠØŠ ''sa&lt;sup&gt;c&lt;sup&gt;d[u] al-axbiyah'' Luck of the tents (homes) [''lit.'' hidings/shelters]
31703 |- style=&quot;background-color:#eeeeee;&quot;
31704 | &amp;delta; || 76 || [[Delta Aquarii]], Skat, Scheat, Seat, Sheat || 3.27 || 160 ||
31705 * &lt; ? ''ÅĄi'at'' A wish ?
31706 * '''Seat''' shared with [[Pi Aquarii|&amp;pi; Aquarii]]
31707 |-
31708 | &amp;zeta;&amp;sup1;&lt;sup&gt;,&lt;/sup&gt;&amp;sup2; || 55 || [[Zeta Aquarii]] || 3.65 || 105 ||
31709 * [[binary star]]; component magnitudes 4.42, 4.59
31710 |- style=&quot;background-color:#eeeeee;&quot;
31711 | c&amp;sup2; || 88 || [[88 Aquarii]] || 3.68 || 234 ||
31712 |-
31713 | &amp;lambda; || 73 || [[Lambda Aquarii]], Hydor, Ekkhysis || 3.73 || 392 ||
31714 * &lt; ''‘Ī…δĪ‰Ī'' The water; ''ÎĩÎēĪ‡Ī…ĪƒÎšĪ‚'' The outpouring
31715 |- style=&quot;background-color:#eeeeee;&quot;
31716 | &amp;epsilon; || 2 || [[Epsilon Aquarii]], Albali, Al Bali || 3.78 || 230 ||
31717 * &lt; اŲ„باŲ„Øš ''albāli&lt;sup&gt;c&lt;sup&gt;'' The swallower
31718 |-
31719 | b&amp;sup1; || 98 || [[98 Aquarii]] || 3.96 || 162 ||
31720 |- style=&quot;background-color:#eeeeee;&quot;
31721 | &amp;eta; || 62 || [[Eta Aquarii]] || 4.04 || 184 ||
31722 |-
31723 | &amp;tau;&amp;sup2; || 71 || [[Tau Aquarii|Tau-2 Aquarii]] || 4.05 || 380 ||
31724 |- style=&quot;background-color:#eeeeee;&quot;
31725 | &amp;theta; || 43 || [[Theta Aquarii]], Ancha || 4.17 || 191 ||
31726 * &lt; [[Old High German|OHG]] ancha &quot;the haunch&quot;
31727 |-
31728 | &amp;phi; || 90 || [[Phi Aquarii]] || 4.22 || 222 ||
31729 |- style=&quot;background-color:#eeeeee;&quot;
31730 | &amp;psi;&amp;sup1; || 91 || [[Psi Aquarii|Psi-1 Aquarii]] || 4.24 || 148 ||
31731 |-
31732 | &amp;iota; || 33 || [[Iota Aquarii]] || 4.29 || 173 ||
31733 |- style=&quot;background-color:#eeeeee;&quot;
31734 | b&amp;sup2; || 99 || [[99 Aquarii]] || 4.38 || ||
31735 |-
31736 | &amp;psi;&amp;sup2; || 93 || [[Psi Aquarii|Psi-2 Aquarii]] || 4.41 || 322 ||
31737 * [[Be star]]
31738 |- style=&quot;background-color:#eeeeee;&quot;
31739 | k || 3 || [[3 Aquarii]] || 4.43 || ||
31740 |-
31741 | c&amp;sup1; || 86 || [[86 Aquarii]] || 4.48 || ||
31742 |- style=&quot;background-color:#eeeeee;&quot;
31743 | &amp;omega;&amp;sup2; || 105 || [[Omega Aquarii|Omega-2 Aquarii]] || 4.49 || 154 ||
31744 |-
31745 | &amp;nu; || 13 || [[Nu Aquarii]], Albulaan || 4.50 || 164 ||
31746 * &lt; ? ''al-bula&lt;sup&gt;c&lt;sup&gt;ān'' The (two) swallowers
31747 * '''Albulaan''' shared with [[Mu Aquarii|&amp;mu; Aquarii]].
31748 |- style=&quot;background-color:#eeeeee;&quot;
31749 | &amp;pi; || 52 || [[Pi Aquarii]], Seat || 4.66 || 1100 ||
31750 * '''Seat''' shared with [[Delta Aquarii|&amp;delta; Aquarii]]
31751 * [[Gamma Cassiopeiae variable|Gamma Cassiopeiae type]] [[variable star]]
31752 |-
31753 | &amp;xi; || 23 || [[Xi Aquarii]] || 4.68 || 179 ||
31754 |- style=&quot;background-color:#eeeeee;&quot;
31755 | g || 66 || [[66 Aquarii]] || 4.68 || ||
31756 |-
31757 | b&amp;sup3; || 101 || [[101 Aquarii]] || 4.70 || ||
31758 |- style=&quot;background-color:#eeeeee;&quot;
31759 | c&amp;sup3; || 89 || [[89 Aquarii]] || 4.71 || ||
31760 |-
31761 | &amp;mu; || 6 || [[Mu Aquarii]], Albulaan || 4.73 || 155 ||
31762 * &lt; ? ''al-bula&lt;sup&gt;c&lt;sup&gt;ān'' The (two) swallowers
31763 * '''Albulaan''' shared with [[Nu Aquarii|&amp;nu; Aquarii]].
31764 |- style=&quot;background-color:#eeeeee;&quot;
31765 | &amp;omicron; || 31 || [[Omicron Aquarii]], Kae Uh || 4.74 || 381 ||
31766 * &lt; č“‹åą‹ (Mandarin ''gaÃŦwÅĢ'') The roof
31767 * [[Gamma Cassiopeiae variable|Gamma Cassiopeiae type]] [[variable star]]
31768 |-
31769 | &amp;sigma; || 57 || [[Sigma Aquarii]] || 4.82 || 265 ||
31770 |- style=&quot;background-color:#eeeeee;&quot;
31771 | A&amp;sup2; || 104 || [[104 Aquarii]] || 4.82 || ||
31772 * [[double star]]; component magnitudes 4.82, 8.58
31773 |-
31774 | &amp;chi; || 92 || [[Chi Aquarii]] || 4.93 || 640 ||
31775 |- style=&quot;background-color:#eeeeee;&quot;
31776 | &amp;omega;&amp;sup1; || 102 || [[Omega Aquarii|Omega-1 Aquarii]] || 4.97 || 134 ||
31777 |-
31778 | &amp;psi;&amp;sup3; || 95 || [[Psi Aquarii|Psi-3 Aquarii]] || 4.99 || 249 ||
31779 |- style=&quot;background-color:#eeeeee;&quot;
31780 | &amp;kappa; || 63 || [[Kappa Aquarii]], Situla || 5.04 || 234 ||
31781 * &lt; &quot;the water jar&quot;
31782 |-
31783 | d || 25 || [[25 Aquarii]] || 5.10 || ||
31784 |- style=&quot;background-color:#eeeeee;&quot;
31785 | || 47 || [[47 Aquarii]] || 5.12 || ||
31786 |-
31787 | || 1 || [[1 Aquarii]] || 5.15 || ||
31788 |- style=&quot;background-color:#eeeeee;&quot;
31789 | i&amp;sup3; || 108 || [[108 Aquarii]] || 5.17 || ||
31790 |-
31791 | || 97 || [[97 Aquarii]] || 5.19 || ||
31792 |- style=&quot;background-color:#eeeeee;&quot;
31793 | || 94 || [[94 Aquarii]] || 5.20 || ||
31794 |-
31795 | &amp;upsilon; || 59 || [[Upsilon Aquarii]] || 5.21 || 74.2 ||
31796 |- style=&quot;background-color:#eeeeee;&quot;
31797 | i&amp;sup1; || 106 || [[106 Aquarii]] || 5.24 || ||
31798 |-
31799 | || 68 || [[68 Aquarii]] || 5.24 || ||
31800 |- style=&quot;background-color:#eeeeee;&quot;
31801 | i&amp;sup2; || 107 || [[107 Aquarii]] || 5.28 || ||
31802 |-
31803 | || 32 || [[32 Aquarii]] || 5.29 || ||
31804 |- style=&quot;background-color:#eeeeee;&quot;
31805 | || 41 || [[41 Aquarii]] || 5.33 || ||
31806 |-
31807 | || 42 || [[42 Aquarii]] || 5.34 || ||
31808 |- style=&quot;background-color:#eeeeee;&quot;
31809 | &amp;rho; || 46 || [[Rho Aquarii]] || 5.35 || 740 ||
31810 |-
31811 | A&amp;sup1; || 103 || [[103 Aquarii]] || 5.36 || ||
31812 |- style=&quot;background-color:#eeeeee;&quot;
31813 | e || 38 || [[38 Aquarii]] || 5.43 || ||
31814 |-
31815 | h || 83 || [[83 Aquarii]] || 5.44 || ||
31816 |- style=&quot;background-color:#eeeeee;&quot;
31817 | || 18 || [[18 Aquarii]] || 5.48 || ||
31818 |-
31819 | || 21 || [[21 Aquarii]] || 5.48 || ||
31820 |- style=&quot;background-color:#eeeeee;&quot;
31821 | || 7 || [[7 Aquarii]] || 5.49 || ||
31822 |-
31823 | || 12 || [[12 Aquarii]] || 5.53 || ||
31824 * [[double star]]; component magnitudes: 5.89, 7.31
31825 |- style=&quot;background-color:#eeeeee;&quot;
31826 | || 49 || [[49 Aquarii]] || 5.53 || ||
31827 |-
31828 | || 77 || [[77 Aquarii]] || 5.53 || ||
31829 |- style=&quot;background-color:#eeeeee;&quot;
31830 | || 5 || [[5 Aquarii]] || 5.55 || ||
31831 |-
31832 | f || 53 || [[53 Aquarii]] || 5.55 || ||
31833 * [[double star]]; component magnitudes: 6.35, 6.57
31834 |- style=&quot;background-color:#eeeeee;&quot;
31835 | || 30 || [[30 Aquarii]] || 5.55 || ||
31836 |-
31837 | || 96 || [[96 Aquarii]] || 5.56 || ||
31838 |- style=&quot;background-color:#eeeeee;&quot;
31839 | || 26 || [[26 Aquarii]] || 5.66 || ||
31840 |-
31841 | &amp;tau;&amp;sup1; || 69 || [[Tau Aquarii|Tau-1 Aquarii]] || 5.68 || 260 ||
31842 |- style=&quot;background-color:#eeeeee;&quot;
31843 | || 19 || [[19 Aquarii]] || 5.71 || ||
31844 |-
31845 | || 44 || [[44 Aquarii]] || 5.75 || ||
31846 |- style=&quot;background-color:#eeeeee;&quot;
31847 | h || || [[h Aquarii]] || 5.76 || ||
31848 |-
31849 | || 50 || [[50 Aquarii]] || 5.76 || ||
31850 |- style=&quot;background-color:#eeeeee;&quot;
31851 | || 51 || [[51 Aquarii]] || 5.79 || ||
31852 |-
31853 | || 35 || [[35 Aquarii]] || 5.80 || ||
31854 |- style=&quot;background-color:#eeeeee;&quot;
31855 | || 74 || [[74 Aquarii]] || 5.80 || ||
31856 |-
31857 | || 15 || [[15 Aquarii]] || 5.83 || ||
31858 |- style=&quot;background-color:#eeeeee;&quot;
31859 | || 16 || [[16 Aquarii]] || 5.87 || ||
31860 |-
31861 | || 60 || [[60 Aquarii]] || 5.88 || ||
31862 |- style=&quot;background-color:#eeeeee;&quot;
31863 | || 45 || [[45 Aquarii]] || 5.96 || ||
31864 |-
31865 | || 2 || [[2 Aquarii]] || 5.99 || ||
31866 |- style=&quot;background-color:#eeeeee;&quot;
31867 | || 17 || [[17 Aquarii]] || 5.99 || ||
31868 |-
31869 | || 39 || [[39 Aquarii]] || 6.04 || ||
31870 |- style=&quot;background-color:#eeeeee;&quot;
31871 | || 82 || [[82 Aquarii]] || 6.18 || ||
31872 |-
31873 | || 70 || [[70 Aquarii]] || 6.19 || ||
31874 |- style=&quot;background-color:#eeeeee;&quot;
31875 | || 78 || [[78 Aquarii]] || 6.20 || ||
31876 |-
31877 | || 11 || [[11 Aquarii]] || 6.21 || ||
31878 |- style=&quot;background-color:#eeeeee;&quot;
31879 | || 81 || [[81 Aquarii]] || 6.23 || ||
31880 |-
31881 | || 100 || [[100 Aquarii]] || 6.24 || ||
31882 |- style=&quot;background-color:#eeeeee;&quot;
31883 | || 56 || [[56 Aquarii]] || 6.36 || ||
31884 |-
31885 | || 20 || [[20 Aquarii]] || 6.38 || ||
31886 |- style=&quot;background-color:#eeeeee;&quot;
31887 | || 29 || [[29 Aquarii]] || 6.39 || ||
31888 |-
31889 | || 58 || [[58 Aquarii]] || 6.39 || ||
31890 |- style=&quot;background-color:#eeeeee;&quot;
31891 | || 61 || [[61 Aquarii]] || 6.40 || ||
31892 |-
31893 | || 37 || [[37 Aquarii]] || 6.64 || ||
31894 |- style=&quot;background-color:#eeeeee;&quot;
31895 | || 24 || [[24 Aquarii]] || 6.66 || ||
31896 |-
31897 | || || [[EZ Aquarii]] || 12.66 || 11.26 ||
31898 * [[flare star]]
31899 * nearby
31900 |}
31901 Source: &lt;cite&gt;The Bright Star Catalogue, 5th Revised Ed.&lt;/cite&gt;, &lt;cite&gt;The Hipparcos Catalogue, ESA SP-1200&lt;/cite&gt;
31902
31903 == See also ==
31904 {{Zodiac}}
31905 {{ConstellationsListedByPtolemy}}
31906 {{ConstellationList}}
31907
31908 == References ==
31909 * {{1911}}
31910
31911 == External links ==
31912 {{Commons|Aquarius}}
31913
31914 * [http://www.allthesky.com/constellations/aquarius/ The Deep Photographic Guide to the Constellations: Aquarius]
31915 * [http://www.nightskyinfo.com/constellations/aquarius/ NightSkyInfo.com: Constellation Aquarius]
31916
31917 [[Category:Aquarius constellation|Aquarius constellation]]
31918 [[Category:Astrological signs]]
31919
31920 [[ca:Aquari (constel¡laciÃŗ)]]
31921 [[cs:VodnÃĄÅ™ (souhvězdí)]]
31922 [[da:Vandmanden (stjernebillede)]]
31923 [[de:Wassermann (Sternbild)]]
31924 [[es:Aquarius]]
31925 [[eo:Akvisto]]
31926 [[fr:Verseau]]
31927 [[ga:An tUisceadÃŗir]]
31928 [[ko:ëŦŧëŗ‘ėžëĻŦ]]
31929 [[id:Aquarius]]
31930 [[it:Acquario (astronomia)]]
31931 [[ka:მერáƒŦყáƒŖლი]]
31932 [[la:Aquarius (sidus)]]
31933 [[lt:Vandenis]]
31934 [[nl:Waterman]]
31935 [[ja:ãŋずがめåē§]]
31936 [[nn:Vassmannen]]
31937 [[pl:Wodnik (gwiazdozbiÃŗr)]]
31938 [[pt:Aquarius]]
31939 [[ru:ВодоĐģĐĩĐš (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
31940 [[sk:SÃēhvezdie VodnÃĄr]]
31941 [[fi:Vesimies]]
31942 [[sv:Vattumannen]]
31943 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§ā¸„ā¸™āšā¸šā¸ā¸Ģā¸Ąāš‰ā¸­ā¸™āš‰ā¸ŗ]]
31944 [[zh:å¯ļį“ļåē§]]</text>
31945 </revision>
31946 </page>
31947 <page>
31948 <title>Anime</title>
31949 <id>800</id>
31950 <revision>
31951 <id>42138622</id>
31952 <timestamp>2006-03-04T01:57:14Z</timestamp>
31953 <contributor>
31954 <username>Gmcfoley</username>
31955 <id>416367</id>
31956 </contributor>
31957 <minor />
31958 <comment>/* See also */</comment>
31959 <text xml:space="preserve">{{Portalpar|Anime and manga}}
31960 '''Anime''' (ã‚ĸãƒ‹ãƒĄ) is a style of [[animated cartoon|cartoon animation]] originating in [[Japan]]. Anime is characterized by character and background styles which may be created by hand or may be assisted by computers. Storylines may feature a variety of [[Fictional character|characters]] and may be set in different locations and in different eras. Anime is aimed at a broad range of audiences because there are a wide range of different [[genre]]s that any series may be categorised under. Anime may be broadcast on [[television]], distributed on media, such as [[DVD]]s, or published as [[console]] and [[computer]] [[games]]. Anime is often influenced by Japanese [[comics]] known as [[manga]]. Anime may also be adapted into [[live action]] television programs.
31961
31962 [[Image:Cowboy_bebop01.jpg|frame|A scene from ''[[Cowboy Bebop]]'' (1998)]]
31963 __TOC__
31964 &lt;br style=&quot;clear:both&quot; /&gt;
31965
31966 ==History==
31967 [[Image:Astroboy.png|right|thumb|Atom, star of the long-running science fiction series ''[[Astro Boy|Mighty Atom]]'' (also known as [[Astro Boy]] to Western audiences).]]
31968 {{main|History of anime}}
31969 The '''history of [[anime]]''' begins at the start of the 20th century, when [[Japan]]ese [[filmmaker]]s experimented with the [[animation]] techniques that were being explored in the West. During the 1970s, anime developed further, separating itself from its Western roots, and developing unique genres such as [[mecha]]. In the 1980s, anime was accepted in the [[mainstream]] in Japan, and experienced a [[boom]] in production. The 1990s and 2000s saw an increased acceptance of anime in overseas markets.
31970
31971 ==Terminology==
31972 The [[Japanese language|Japanese]] term for animation is ã‚ĸãƒ‹ãƒĄãƒŧã‚ˇãƒ§ãƒŗ
31973 (''animēshon'', pronounced: {{IPA|/ɑnimɛːʃɔn/}}), written in [[katakana]]. It is a direct [[transliteration]] and reborrowed [[loanword]] of the English term &quot;[[animation]].&quot; The Japanese term is abbreviated as ã‚ĸãƒ‹ãƒĄ (''anime'', pronounced: {{IPA|/ɑnimɛ/}} ). Both the original and abbreviated forms are valid and interchangeable in Japanese, but as could be expected the abbreviated form is more commonly used. The term is a broad one, and does not specify an animation's nation of origin or style.
31974
31975 '''Pronunciation'''
31976
31977 The [[English language|English]] word ''anime'' is a [[transliteration]] of the abbreviated version of this Japanese term, and it is typically pronounced as {{IPA|/ˈÃĻnÉĒˌmei/}}, or &quot;ANN ih may&quot; (&quot;AH nee may&quot; is a less common variant).
31978
31979 Some theorize the word comes from the [[French language|French]] ''animÊ'' (&quot;animated&quot;) or &quot;les dessins animÊs&quot; (animated drawings) and pronounce it as &quot;ah nee MAY&quot;, though the Japanese themselves deny this theory, and the fact that it is written in Japanese syllables as ã‚ĸãƒ‹ãƒĄ (''anime'') rather than ã‚ĸãƒ‹ãƒĄã‚¤ (''animei'') further lowers its credibility.
31980
31981 As with a few other Japanese words such as ''[[PokÊmon]]'' and [[Kobo Abe|Kobo AbÊ]], ''anime'' is sometimes spelled as ''animÊ'' in English with an [[acute accent]] over the final ''e'' to cue the reader that the letter is pronounced as {{IPA|[e]}}. Hence, the pronunciations &quot;ah NEEM&quot; and &quot;uh NEEM&quot; are generally considered incorrect.
31982
31983 '''Syntax'''
31984
31985 ''Anime'' can be used as a common [[noun]], ''&quot;Do you watch anime?&quot;'' or as a suppletive [[adjective]], ''&quot;The anime Guyver is different from the movie Guyver.&quot;'' It may also be used as a [[mass noun]], as in ''&quot;How much anime have you collected?&quot;'' and therefore is never pluralized &quot;animes&quot; (nouns are never pluralized in Japanese).
31986
31987 '''Synonyms'''
31988
31989 Anime is sometimes referred to by the [[blend (linguistics)|blend word]] '''Japanimation''', but this term has fallen into disuse. It saw the most usage during the 1970s and 1980s, which broadly comprise the first and second waves of anime [[fandom]]. The term survived at least into the early 1990s but seemed to fade away shortly before the mid-1990s anime resurgence. In general, the term now only appears in nostalgic contexts. The term is much more commonly used within Japan to refer to domestic animation. Since ''anime'' or ''animēshon'' is used to describe all forms of animation, ''Japanimation'' is used to distinguish Japanese work from that of the rest of the world.
31990
31991 In more recent years, anime has also frequently been referred to as ''manga'' in Europe, a practice that may stem from the Japanese usage: In Japan, ''[[manga]]'' can refer to both animation and comics (although the use of ''manga'' to refer to animation is mostly restricted to non-fans). Among English speakers, ''manga'' usually has the stricter meaning of &quot;Japanese comics&quot;. An alternate explanation is that it is due to the prominence of [[Manga Entertainment]], a distributor of anime to the US and UK markets; because Manga Entertainment started out in the UK, this use of the term is much more common in Europe.
31992
31993 ==Characteristics==
31994 [[Image:Dragonballz.jpg|thumb|230px|right|[[Dragon Ball Z]] is one of the most popular [[shōnen]] anime.]]
31995
31996 Anime features a wide variety of artistic styles which vary from artist to artist and is characterized by stark, colorful graphics and stylized, colorful images depicting vibrant characters in a variety of different settings and storylines, aimed at a wide range of audiences.
31997
31998 ===Genres===
31999 Anime has many genres, with as many as traditional, [[live action]] cinema. Such genres include adventure, [[science fiction]], children's stories, [[Romantic love|romance]], medieval [[fantasy]], [[erotica]] ([[hentai]]), occult/horror, action, and [[drama]].
32000
32001 Most anime includes content from several different genres, as well as a variety of thematic elements. This can make categorizing some titles very difficult. A show may have a seemingly simple surface plot, but at the same time may feature a far more complex, deeper storyline and character development. It is not uncommon for a strongly action themed anime to also involve humor, romance, and even poignant [[social commentary]]. The same can be applied to a romance themed anime in that it may involve a strong action element.
32002
32003 Genres and designations that are specific to anime and manga:
32004 :''(For other possible genres, see [[list of movie genres]].)''
32005 *[[Bishōjo]]: Japanese for 'beautiful girl', blanket term that can be used to describe any anime that features pretty girl characters, for example ''[[Magic Knight Rayearth]]''
32006 *[[Bishōnen]]: Japanese for 'beautiful boy' blanket term that can be used to describe any anime that features &quot;pretty&quot; and elegant boys and men, for example ''[[Fushigi YÅĢgi]]''
32007 *[[Ecchi]]: Japanese for 'indecent sexuality'. Contains mild sexual humor, for example ''[[Love Hina]]''.
32008 *[[Hentai]]: Japanese for 'abnormal' or 'perverted', and used by Western Audiences to refer to pornographic anime or [[erotica]]. However, in Japan the term used to refer to the same material is typically ''Poruno'' or ''Ero''.
32009 *[[Josei]]: Japanese for 'young woman', this is anime or manga that is aimed at young women, and is one of the rarest forms.
32010 *[[Kodomo]]: Japanese for 'child', this is anime or manga that is aimed at young children, for example ''[[Doraemon]]''.
32011 *[[Mecha]]: Anime or manga featuring giant robots, example ''[[Mobile Suit Gundam]]''.
32012 *[[MoÊ]]: Anime or manga featuring characters that are extremely perky or cute, for example ''[[Little Snow Fairy Sugar]]''.
32013 *[[progressive anime|Progressive]]: &quot;Art films&quot; or extremely stylized anime, for example ''[[Voices of a Distant Star]]''.
32014 *[[Seinen]]: Anime or manga similar to Shōnen, but targeted at teenage or young male adults, for example ''[[Oh My Goddess!]]''.
32015 *[[Super Sentai|Sentai/Super Sentai]]: Literally &quot;fighting team&quot; in Japanese, refers to any show that involves a superhero team, for example ''[[Cyborg 009]]''.
32016 *[[Shōjo]]: Japanese for 'young lady' or 'little girl', refers to anime or manga targeted at girls, for example ''[[Fruits Basket]]''.
32017 **[[Magical girl|Mahō Shōjo]]: Subgenre of Shoujo known for 'Magical Girl' stories, for example ''[[Sailor Moon]]''.
32018 *[[Shōjo-ai]]: Japanese for 'girl-love', refers to anime or manga that focus on love and romance between female characters, for example ''[[Revolutionary Girl Utena]]''.
32019 *[[Shōnen]]: Japanese for 'boys', refers to anime or manga targeted at boys, for example ''[[Dragon Ball Z]]''.
32020 *[[Shōnen-ai]]: Japanese for 'boy-love', refers to anime or manga that focus on love and romance between male characters. This term is being phased out in Japan due to references to [[pedophilia]], and is being replaced by the term &quot;Boys Love&quot; (BL). An example of this style is ''[[Gravitation (manga)|Gravitation]]''.
32021
32022 Some anime titles are written for a very specific audience, even narrower than those described above. For example, ''[[Initial D]]'' and ''[[EX-Driver|ÊX-Driver]]'' concern [[street racing]] and car tuning. ''[[Ashita No Joe]]'' is about [[boxing]]. ''[[Hanaukyo Maid Team]]'' is based on the [[French maid]] fantasy.
32023
32024 Recently, the ''National Child Exploitation Coordination Centre of Canada'' has incorrectly classified all anime as [[hentai]], giving an improper impression of the content of most anime and manga series. This occurred despite having linked to this Wikipedia page in order to establish a definition of terms. The site can be viewed at the following link: [http://ncecc.ca/fact_sheets/anime_e.htm]. Complaints about the article's content and improper citations caused the NCECC to revise the citations but not the content.
32025
32026 ===Music===
32027 Much like western live-action cinema, anime uses music as an important artistic tool. Anime soundtracks are big business in Japan, and are often times met with similar demand as [[chart-topper|chart topping]] pop albums. It is for this reason that anime music is often composed and performed by 'A-list' musicians, stars, and composers. Skilled BGM composers are highly respected in the anime fan community. Anime series with opening credits use the opening theme song as a quick introduction to the show.
32028
32029 The most frequent use of music in Anime is ''background music'' or ''BGM''. BGM is used to set the tone of a given scene, for example ''[[Neon Genesis Evangelion]]'' 's &quot;Decisive Battle&quot; is played when the characters are making battle preparations and it features heavy drum beats and a militaristic style which highlights the tension of the scene and hints at the action to follow.
32030
32031 The theme song (also referred to as the Opening song or abbreviated as OP) usually matches the overall tone of the show, and serves to get the viewer excited about the upcoming program. Insert songs and ending songs (abbr. ED) often make commentary about the plot or the program as a whole, and are often times used to highlight a particularly important scene. Opening and ending themes, as well as insert songs, are frequently performed by popular musicians or Japanese [[japanese idol|idols]], so in this way, songs become a very important component of an anime program. In addition to the themes, the seiyÅĢ for a specific anime also frequently releases CD for their character, called Image Albums. Despite the word &quot;image&quot; in the CD's name, it only contains music and/or &quot;voice messages&quot; (where the seiyÅĢ talks with the audience or about herself), making the listener think that the character him/herself is singing. Another type of Anime CDs release are Drama CD, featuring songs and tracks which makes use of the seiyÅĢ to tell a story, often not included in the main anime.
32032
32033 ==Animation style==
32034 [[Image:Lum-Uresei-Yatsura.png|thumb|250px|right|Lum from ''[[Urusei Yatsura]]'', an iconic anime character.]]
32035
32036 The drawing style used in anime is counter productive to the animation process, having far too many details and subsequently making it difficult to keep the number of drawings comparable to other cartoons with design ethics that stress simplicity. This may be due to a philosophy of applying more effort into each of a few drawings than less effort into one of many.
32037
32038 [[Osamu Tezuka]] adapted and simplified many [[Walt Disney Pictures|Disney]] animation precepts to reduce the budget costs and number of frames in the production, though it should be noted that Disney films made in the west are not anime. This was intended to be a temporary measure to allow him to produce one episode every week with an inexperienced animation staff. Anime studios have since perfected techniques to draw as little new animation as possible, using scrolling or repeating backgrounds, still shots of characters sliding across the screen, and dialogue which involves only animating mouths while the rest of the screen remains absolutely still, a technique not wholly unfamiliar to Western animation. The overall effect of these techniques, such as reduced [[frame rate]], several still shots and scrolling backgrounds, has led some critics to accuse anime of choppiness or poor quality in general. ''(See also [[limited animation]].)''
32039
32040 There are often scenes where the frame rate of the animation far exceeds the quality of the rest of the production. These are commonly referred to as &quot;money shots&quot; outside of Japan, where more effort is put into the animation of one scene to give it emphasis over the rest of the work. Animator [[Yasuo Otsuka]] was the pioneer of this technique.
32041
32042 Exceptions to these rules are early classic films, such as those produced by [[Toei Animation]] up until the mid 1960s, and recent big budget films, such as those produced by the enormously successful [[Studio Ghibli]]. These movies have much higher production values, due to their anticipated success at the box office. Some animators in Japan overcome production values by utilizing different techniques than the Disney or the old Tezuka/Otsuka methods of animating anime. Directors such as [[Hiroyuki Imaishi]] (''[[Cutey Honey]]'', ''[[Dead Leaves]]'') simplify backgrounds so that more attention can be paid to character animation. Other animators like Tatsuyuki Tanaka (in [[Koji Minamoto]]'s ''Eternal Family'' in particular) use [[squash and stretch]], an animation technique not often used by Japanese animators; Tanaka makes other shortcuts to compensate for this. Some higher-budgeted television and OVA ([[Original Video Animation]]) series also forego the shortcuts found in most other anime.
32043
32044 While different titles and different artists have their own unique artistic styles, many stylistic elements have become extremely common. Some examples have become so common that they are often described as being definitive of anime in general, and have been given names of their own. The most common is the large eyes style drawn on many anime characters, common mainly due to the influence of [[Osamu Tezuka]], who was inspired by the exaggerated features of Western cartoon characters such as [[Betty Boop]] and [[Mickey Mouse]] and from Disney's ''[[Bambi]]''. Tezuka found that large eyes allowed his characters to better express their emotions. Some Western audiences have interpreted such stylized eyes as more Caucasian. Cultural anthropologist [[Matt Thorn]] argues that Japanese animators and audiences do not perceive them as inherently more or less foreign. {{ref|refbot.15}} When Tezuka began drawing ''[[Princess Knight|Ribbon no Kishi]]'', the first manga specifically targeted at young girls, Tezuka further exaggerated the size of the characters' eyes. Indeed, through ''Ribbon no Kishi'', Tezuka set a stylistic template that later ''shōjo'' artists tended to follow. Another variation of this style is &quot;[[chibi]]&quot; or &quot;[[super deformed]]&quot;; which usually feature huge eyes, an enlarged head, and small body.
32045
32046 Other stylistic elements are common as well; often in comedic anime, characters that are shocked or surprised will perform a &quot;face fault&quot;, in which they display an extremely exaggerated expression. Angry characters may exhibit a &quot;vein&quot; or &quot;stressmark&quot; effect, where lines representing bulging veins will appear on their forehead. Angry women will sometimes summon a mallet from nowhere and strike someone with it, leading to the concept of [[Hammerspace]]. Male characters will develop a [[bloody nose]] around their female love interests (typically to indicate arousal) -- this is supposedly due to blood rushing to the face in an exaggerated blush. Embarrassed characters will invariably produce a massive [[sweat-drop]], which has become something of a stereotype of anime.
32047
32048 The degree of stylization varies from title to title. Some titles make extensive use of common stylization: ''[[FLCL]]'', for example, is known for its wild, exaggerated, stylization. In contrast, titles such as ''[[Only Yesterday]]'', a film by [[Isao Takahata]], take a much more realistic approach, and feature no stylistic exaggerations.
32049
32050 Another unique aspect of anime not found in other commercial animation markets is the lack of a directoral system. In most animation produced around the world animators are all forced to conform to a set style by the director or animation director. In Japan starting with the animation director [[Yoshinori Kanada]] (as a means to save time and money) each animator brings his/her own style to the work. The most extreme examples of this can be found in ''[[Mindgame]]'' or ''[[The Hakkenden]]''. ''The Hakkenden'' is particularly extreme, showing constantly shifting styles of animation based upon the key animator that worked on that particular episode. This approach combined with Otsuka's &quot;money shots&quot; make key animators important individuals in the style and production of an anime film.
32051
32052 Many non-Japanese cartoons are starting to incorporate mainstream anime shortcuts and symbols to appeal to anime's tremendously growing fanbase and cut costs.
32053
32054 ==Production types of anime==
32055 Most anime can be categorized as one of three types:
32056
32057 *'''Films''', which are generally released in theaters, represent the highest budgets and generally the highest video quality. Popular anime movies include ''[[Akira (film)|Akira]],'' ''[[Ghost in the Shell]]'', and ''[[Spirited Away]]''. Some anime [[film]]s are only released at film or animation festivals and are shorter and sometimes lower in production values. Some examples of these are ''[[Winter Days]]'', and [[Osamu Tezuka]]'s ''[[Legend of the Forest]]''. Other types of films include [[compilation movie]]s, which are television episodes edited together and presented in theaters for various reasons, and are hence a concentrated form of a television [[serial]]. These may, however, be longer than the average movie. There are also theatrical shorts derived from existing televisions series and billed in Japanese theaters together to form feature-length showing.
32058
32059 *'''Television series''' anime is [[Television syndication|syndicated]] and broadcast on television on a regular schedule. [[Television program|Television series]] are generally low quality compared to OVA ([[Original Video Animation]]) and film titles, because the production budget is spread out over many episodes rather than a single film or a short series. Most episodes are about 23 minutes in length, to fill a typical thirty-minute time slot with added [[Television commercial|commercials]]. One full season is 26 episodes, and many titles run half seasons, or 13 episodes. Most TV series anime episodes will have [[opening credits]], [[closing credits]], and often an &quot;[[eyecatch]]&quot;, a very short scene, often humorous or silly, that is used to signal the start or end of the commercial break (as &quot;bumpers&quot; in the United States are used in a similar fashion). &quot;Eyecatch&quot; scenes are often found in TV series anime and are generally similar throughout the series.
32060
32061 *'''OVA''' ('''[[Original Video Animation]]'''; sometimes '''OAV''', or '''Original Animated Video''') anime is often similar to a television [[miniseries]]. OVAs are typically two to twenty episodes in length; [[one-shot]]s are particularly short, usually less than film-length. They are most commonly released directly to video. As a general rule OVA anime tends to be of high quality, approaching that of films. Titles often have a very regular, continuous plot best enjoyed if all episodes are viewed in sequence. Popular OVA titles include ''[[FLCL]]'', ''[[Bubblegum Crisis]]'', and ''[[Tenchi Muyo!]]''. Opening credits, closing credits, and eyecatches may sometimes be found in OVA releases, but not universally.
32062
32063 '''Franchising'''
32064
32065 It is very common for one title to spawn several different releases. A title that starts as a popular television series might then have a movie produced at a later date. A good example is ''Tenchi Muyo!''. Originally an OVA, it spawned three movies, three television series, and several spinoff titles and specials.
32066
32067 Not all successors to an anime are a sequel to the original story. Prequels and alternate stories are commonly adapted from the original.
32068
32069 ==Licensing and distribution==
32070 Anime is available outside of Japan in localized form. Licensed anime is modified by [[Western world|Western]] distributors through [[Dubbing (filmmaking)|dubbing]] into the language of the country. The anime may also be [[edited movie|edited]] to alter cultural references that may not be understood by a non-Japanese person and companies may remove what may be perceived as objectionable content. For the fans who may object to the editing and dubbing of anime, DVDs may be their preference. DVD releases often include both the dubbed audio and the original Japanese audio with [[subtitle]]s, are typically unedited, and lack [[Television commercial|commercial]]s.
32071
32072 '''Fansubs'''
32073
32074 Although it is a violation of [[copyright]] laws in many countries, some fans watch [[fansub]]s, recordings of anime series that have been subtitled by fans. Watching subtitled Japanese versions is usually seen as the intended method of watching anime by enthusiasts. The ethical implications of producing, distributing, or watching fansubs is a topic of much controversy even when fansub groups do not profit from and cease distribution of their work once the series has been licensed.
32075
32076 :''See [[fansub]] for further discussion of ethical issues of fansubbing''
32077
32078 ==See also==
32079 [[Image:Laputa-robot-ghibli.jpg|right|thumb|250px|A life-size model of a [[robot]] from the animation ''[[The Castle in the Sky|Laputa]]'' on top of the [[Ghibli Museum]] in [[Mitaka, Tokyo]].]]
32080 *[[Animated cartoon]]
32081 *[[Animation]]
32082 *[[Anime industry]]
32083 *[[Anime physics]]
32084 *[[History of anime|History of Anime]]
32085 *[[Manga]]
32086 *[[Traditional animation]]
32087 *[[Amerime]]
32088 *[[Editing of anime in international distribution]]
32089
32090 '''Terminology'''
32091 *[[Anime music video|Anime Music Video]]
32092 *[[Catgirl]]
32093 *[[Chibi]]
32094 *[[Cosplay]]
32095 *[[Dōjinshi|Dōjinshi or Doujinshi]]
32096 *[[Dorama]]
32097 *[[Eroge]]
32098 *[[Ganguro]]
32099 *[[Guro]]
32100 *[[Hentai]]
32101 *[[J-pop]]
32102 *[[Lolicon]]
32103 *[[Otaku]]
32104 *[[SeiyÅĢ]]
32105 *[[Shota]]
32106 '''Licensing and translation'''
32107 *[[Editing of anime in international distribution]]
32108 *[[Fansub]]
32109 *[[Wikt:Glossary:Japanese film credit terms|Glossary:Japanese film credit terms]]
32110
32111 '''Lists'''
32112 *[[Animated television series]]
32113 *[[Anime characters|Anime Characters]]
32114 *[[List of anime companies|Anime Companies]]
32115 *[[List of anime conventions|Conventions]]
32116 *[[List of anime]]
32117 **[[Notable anime]]
32118 **[[Anime theatrically released in America]]
32119 *[[Notable names in anime]] (directors, creators, and so forth)
32120
32121 ==References==
32122 *Clements, Jonathan and Helen McCarthy. ''The Anime Encyclopedia''. Berkeley, Calif.: Stone Bridge Press, 2001. ISBN 1880656647.
32123 *Napier, Susan J. ''Anime: From Akira to Princess Mononoke''. New York: Palgrave, 2001. ISBN 031223862.
32124 *Poitras, Gilles. ''Anime Companion''. Berkeley, Calif.: Stone Bridge Press, 1998. ISBN 1880656329.
32125 *Poitras, Gilles. ''Anime Essentials''. Berkeley, Calif.: Stone Bridge Press, 2000. ISBN 1880656531.
32126 *Baricordi, Andrea and Pelletier, Claude. ''Anime: A Guide to Japanese Animation (1958-1988)''. Montreal, Canada.: Protoculture, 2000. ISBN 2980575909.
32127
32128 ==External links==
32129 '''Databases'''
32130 *[http://www.anidb.net/ AniDB]: database of anime series, hashes, fansub groups, and 'mylist' feature.
32131 *[http://www.animeacademy.com/ Anime Academy]: Anime database, community forum and articles on culture, style, and prominent figures.
32132 *[http://www.animelyrics.com/ Anime Lyrics]
32133 *[http://www.AnimeNfo.com/ AnimeNfo]: Anime database, reviews, and community forums.
32134 *[http://www.public.iastate.edu/~rllew/anitv.html Richard Llewellyn's Anime TV Series List]: Comprehensive anime title database.
32135
32136 '''Link sites'''
32137 *[http://www.animeallies.com Anime Allies Directory] Directory of anime sites and resources.
32138 *[http://www.anipike.com/ Anime Web Turnpike]
32139
32140 '''News'''
32141 *[http://www.animenewsnetwork.com/ Anime News Network]: Anime news site, also has weekly columns, forums, and an extensive encyclopedia of series, companies, and staff/cast.
32142
32143 '''Wikis'''
32144 *[http://www.anime-wiki.org/ Anime Wiki] Their goal is to build a wiki without copying other sources.
32145
32146 '''Review sites'''
32147 *[http://www.dannychoo.com/ Anime reviews, toys and opening movie intros]
32148 *[http://www.animeondvd.com/ Anime on DVD]: Extensive database of anime DVD reviews.
32149 *[http://www.animefridge.com/ Anime Fridge] An archive of anime, video games, manga, and related soundrack reviews.
32150 *[http://www.theanimereview.com/ The Anime Review] Reviews of current and past anime series.
32151 *[http://www.themanime.org/ THEM Anime] Indepth reviews and synopses of various anime titles.
32152 *[http://www.animefrontier.com/ Anime Frontier] Reviews of anime and manga, as well as other various resources.
32153
32154 '''Other reference'''
32155 *[http://www.japan-7.com/ Japan-7]: Webzine and an archive of anime music, ost, j-music.
32156 *[http://www.tvtropes.org/pmwiki/pmwiki.php/Main/AnimeTrope Anime Tropes]: Common cliches and visual cues.
32157 *[http://www.greencine.com/static/primers/anime.jsp GreenCine primer on Anime]
32158 *[http://www.anime.com.ru/ Anime portal in Russia]
32159
32160 ==Notes==
32161 # {{note | refbot.15 }} {{cite web | title = Do Manga Characters Look &quot;White&quot;? | url = http://www.matt-thorn.com/mangagaku/faceoftheother.html | accessdate = December 5 | accessyear = 2005 }}
32162
32163 &lt;!-- Please do NOT change the Esperanto link again. This one is correct, and 'Animeo' is not. Thank you. --&gt;
32164
32165 [[Category:Animation]]
32166 [[Category:Anime|*]]
32167 [[Category:Art genres]]
32168 [[Category:Cartooning]]
32169 [[Category:Film]]
32170
32171 [[ar:ØŖŲ†ŲŠŲ…ŲŠ]]
32172 [[ca:Anime]]
32173 [[cs:Anime]]
32174 [[da:Anime]]
32175 [[de:Anime]]
32176 [[el:Anime]]
32177 [[es:Anime]]
32178 [[eo:japana desegnita filmo]]
32179 [[fr:Anime]]
32180 [[gl:Anime]]
32181 [[ko:ėžŦ패니메ė´ė…˜]]
32182 [[id:Anime]]
32183 [[is:Anime]]
32184 [[it:Anime]]
32185 [[he:אנימה (אמנו×Ē יפני×Ē)]]
32186 [[lt:Anime]]
32187 [[hu:Anime]]
32188 [[ms:Anime]]
32189 [[nl:Anime]]
32190 [[ja:ã‚ĸãƒ‹ãƒĄ]]
32191 [[no:Anime]]
32192 [[pl:Anime]]
32193 [[pt:Anime]]
32194 [[ru:АĐŊиĐŧĐĩ]]
32195 [[sq:Anime]]
32196 [[sk:Anime]]
32197 [[sl:Anime]]
32198 [[fi:Anime]]
32199 [[sv:Anime]]
32200 [[tl:Anime]]
32201 [[th:ā¸­ā¸°ā¸™ā¸´āš€ā¸Ąā¸°]]
32202 [[tr:Anime]]
32203 [[vi:Anime]]
32204 [[zh:æ—ĨæœŦ动į”ģ]]</text>
32205 </revision>
32206 </page>
32207 <page>
32208 <title>Asterism</title>
32209 <id>801</id>
32210 <revision>
32211 <id>41953207</id>
32212 <timestamp>2006-03-02T21:21:56Z</timestamp>
32213 <contributor>
32214 <username>Timwi</username>
32215 <id>13051</id>
32216 </contributor>
32217 <minor />
32218 <comment>moved [[Asterism (disambiguation)]] to [[Asterism]]: Since the article without parentheses is a redirect...</comment>
32219 <text xml:space="preserve">'''Asterism''' may refer to:
32220
32221 *[[Asterism (astronomy)]]
32222 *[[Asterism (gemmology)]]
32223 *[[Asterism (typography)]]
32224
32225 {{disambig}}
32226
32227 [[fr:AstÊrisme]]
32228 [[it:Asterismo]]</text>
32229 </revision>
32230 </page>
32231 <page>
32232 <title>Ankara</title>
32233 <id>802</id>
32234 <revision>
32235 <id>41707805</id>
32236 <timestamp>2006-03-01T05:06:20Z</timestamp>
32237 <contributor>
32238 <username>SDC</username>
32239 <id>181435</id>
32240 </contributor>
32241 <minor />
32242 <comment>/* Shopping */</comment>
32243 <text xml:space="preserve">{{Infobox town TR
32244 |name = Ankara
32245 |map2 = Ankara_City_Center.jpg
32246 |map2 size = 250
32247 |map2 cap = Ankara from the Atakule Tower, looking N-NE
32248 |map = Ankara Turkey Provinces locator.gif
32249 |map size = 250
32250 |map cap = Location in [[Turkey]]
32251 |province = Ankara
32252 |population = 4,319,167
32253 |population_as_of = 2005
32254 |population_ref = []
32255 |pop_dens =
32256 |area =
32257 |lat_deg = 39
32258 |lat_min = 52
32259 |lat_hem = N
32260 |lon_deg = 32
32261 |lon_min = 52
32262 |lon_hem = E
32263 |elevation = 850
32264 |postal_code = 06x xx
32265 |area_code = 0312
32266 |licence = 06
32267 |mayor = Ä°. Melih GÃļkçek (Justice and Development Party)
32268 |website = [http://www.ankara.bel.tr/ http://www.ankara.bel.tr/]
32269 }}
32270
32271
32272 '''Ankara''' is the [[capital city|capital]] of [[Turkey]] and the country's second largest city after [[Ä°stanbul]]. The city has a population of 4,319,167 (Provience 5,153,000) ([[as of 2005]]), and a mean elevation of 850 m. (2800 ft.) It was formerly known as '''[[Angora]]''' or '''EngÃŧrÃŧ''', and in Roman times as '''Ancyra''', and in classical and Hellenistic periods as áŧŒÎŗÎēĪ…ĪÎą '''Áŋkyra'''.
32273
32274 It is also the capital of [[Ankara Province]].
32275
32276 Centrally located in [[Anatolia]], Ankara is an important commercial and industrial city. It is the center of the Turkish Government, and houses all foreign embassies. It is an important crossroads of trade, strategically located at the center of Turkey's highway and rail network, and serves as the marketing center for the surrounding agricultural area. The city was famous for its long-haired goat and its wool ([[Angora wool]]), a unique breed of cat ([[Turkish Angora|Ankara cat]]), white [[rabbits]], [[pear]], [[honey]], and the region's [[Muscat grape|muscat]] [[grapes]].
32277
32278 Ankara is situated upon a steep and rocky hill, which rises 500 ft. above the plain on the left bank of the ''Enguri Su'', a tributary of the [[Sakarya]] (Sangarius) river. The city is located 39&amp;deg;52'30&quot; North, 32&amp;deg;52' East (39.875, 32.8333). The city, which is one of the driest places in Turkey and surrounded by a barren featureless steppe vegetation, with various [[Hittite]], [[Phrygian]], [[Ottoman Empire|Ottoman]], [[Byzantine Empire|Byzantine]] and [[Roman empire|Roman]] [[archeological site]]s. It has a harsh dry [[continental climate]] with cold snowy winters and hot dry summers. Rainfall occurs mostly during spring and autumn.
32279
32280 The hill is crowned by the ruins of the old castle, which add to the picturesqueness of the view; but the town was not well built, many of its houses constructed of sun-dried mud bricks along narrow streets. &lt;sup&gt;[http://earth-info.nga.mil/gns/html/cntry_files.html]&lt;/sup&gt; There are, however, many finely preserved remains of [[Architecture of Ancient Greece|Greek]], [[Roman Empire|Roman]] and [[Byzantine architecture]], the most remarkable being the temple of [[Caesar Augustus|Augustus]], on the walls of which is the famous ''Monumentum Ancyranum''&lt;sup&gt;[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Augustus/Res_Gestae/home.html]&lt;/sup&gt;
32281
32282 == History ==
32283 [[Image:A Turkish Kaleidoscope (1926)- Ankara Bazaar.png|left|thumb|300px|Ankara Bazaar in [[1920s]].]]
32284 The region's vibrant history can be traced back to the [[Bronze Age]] [[Hattians|Hatti]] civilization, which was succeeded in the 2nd millennium BC by the [[Hittites|Hittites]], in the 10th century BC by the [[Phrygians]], then by the [[Lydians]] and [[Persia|Persians]].
32285
32286 Persian sovereignty lasted until the Persians' defeat at the hands of the Macedonian king [[Alexander the Great]]. In [[333 BC]], Alexander came from [[Gordium]] to Ankara and stayed in the city for a period of time. After his death at [[Babylon]] in [[323 BC]] and the subsequent division of his empire amongst his generals, Ankara and its environs fell into the share of [[Antigonus I Monophthalmus|Antigonus]].
32287
32288 In [[278 BC]], Ankara was occupied by the [[Gaul|Gaulish]] race of [[Galatia|Galatians]] who were the first to make Ankara their capital. It was then known as '''Ancyra''', meaning &quot;[[anchor]]&quot; in [[Greek language|Greek]]. Ankara's organized and written history starts with the [[Galatia|Galatians]].
32289
32290 [[Image:Ulus_Ankara.jpg|right|thumb|200px|A view from Ulus, the historical district of Ankara.]]
32291 The city subsequently fell to the [[Roman Empire]] in [[189 BC]] and became the capital of the Roman province of [[Galatia]]. Under Roman rule, Ankara became a gate to the east for Rome, and as such was well developed, achieving the status of &quot;city-state&quot; or [[polis]]. The city's military as well as logistical significance lasted well into the long [[Byzantine Empire|Byzantine]] reign, even after its capital was moved to [[Constantinople]]. Although Ankara fell into the hands of several Arab armies numerous times after the 6th century, it remained an important crossroads polis within the Byzantine Empire until the late 11th century.
32292
32293 In [[1071]] [[Seljuk Turks|Seljuk]] Sultan [[Alp Arslan|Alparslan]] threw open the door to Anatolia for the Turks by his victory at [[Battle of Manzikert|Malazgirt]]. He then annexed Ankara, an important location for military transportation and natural resources, to Turkish territory in [[1073]]. [[Orhan I]], second &quot;bey&quot; of the [[Ottoman Empire]] captured the city in [[1356]]. Another [[Turkic peoples|Turkic]] leader, [[Timur Lenk]] besieged Ankara as part of his campaign in [[Anatolia]], but in [[1403]] Ankara was again under Ottoman control.
32294
32295 At the close of [[World War I]], Turkey was under the control of the Ottoman sultan and having lost the war, was being shared by [[Greece|Greeks]], [[France|French]], [[United Kingdom|British]], and [[Italy|Italians]]. The leader of the Turkish nationalists, [[Kemal AtatÃŧrk]] established the headquarters of his resistance movement in Ankara in [[1919]] (See [[Treaty of Sèvres]] and [[Turkish War of Independence]]). After the War of Independence was won and the Ottoman Empire was dissolved, Turkey was declared a [[republic]] on [[October 29]], [[1923]], Ankara having replaced [[Ä°stanbul]] (formerly [[Constantinople]]) as the capital of the new [[Republic of Turkey]] on [[October 13]], [[1923]].
32296
32297 [[Image:Kizilay_Ankara.jpg|left|thumb|300px|A recent view from KÄązÄąlay, the central district of Ankara.]]
32298 After Ankara became the capital of the newly founded Republic of Turkey, new development divided the city into an old section, called '''Ulus''', and a new section, called '''Yenişehir'''. Ancient buildings reflecting Roman, Byzantine, and Ottoman history and narrow winding streets mark the old section. The new section, now centered around '''KÄązÄąlay''', has the trappings of a more modern city: wide streets, hotels, theaters, shopping malls, and high-rises. Government offices and foreign embassies are also located in the new section.
32299
32300 ==Attractions==
32301
32302 ===General attractions===
32303
32304 [[Image:Anitkabir.DO.jpg|right|thumb|300px|AnÄątkabir, AtatÃŧrk's mausoleum.]]
32305 [[AnÄątkabir]] is located on an imposing hill in the ''Anittepe'' quarter of the city stands the mausoleum of Mustafa Kemal AtatÃŧrk, founder of the Republic of Turkey. Completed in [[1953]], it is an impressive fusion of ancient and modern architecture. An adjacent museum houses a superior wax statue of AtatÃŧrk, his writings, letters and personal items, as well as an exhibition of photographs recording important moments in his life and in the establishment of the Republic (Anitkabir is open everyday, and the adjacent museum every day except Mondays).
32306
32307 '''The [[Ankara Ethnography Museum]] (''Etnoğrafya MÃŧzesi'')''': This museum is opposite the Opera House on Talat Pasa Boulevard, in Ulus district. There is a fine collection of folkloric as well as Seljuk- and Ottoman-era artifacts.
32308
32309 [[Image:AnatolianCivMuseum.DO.jpg|right|thumb|300px|An Hattian artifact, from 3rd millennium BC, in the Museum of Anatolian Civilizations]]
32310 '''The Museum of Anatolian Civilizations (''Anadolu Medeniyetleri MÃŧzesi'')''': Situated at the Ankara Castle entrance, it is an old &quot;bedesten&quot; (covered bazaar) that has been beautifully restored and now houses a unique collection of [[Paleolithic]], [[Neolithic]], [[Hatti]], [[Hittite]], [[Phrygia]]n, [[Urartu|Urartian]], and [[Roman Empire|Roma]]n works and showpiece [[Lydia]]n treasures.
32311
32312 '''The Çengelhan Rahmi M. Koç Museum (''Çengelhan Rahmi M. Koç MÃŧzesi'')''': is an industrial museum opposite the entrance to the Citadel, close to Anatolian Civilization Museum. Located in the historic Çengelhan - a former Caravanserai, built in 1522 - the Museum displays huge variety of exhibits on such diverse themes as Engineering, Road Transport, Scientific Instruments, Maritime, Medicine, and many others. The beautiful and atmospheric courtyard now houses the newly restored shop where the founder of the Koç Group, Mr Vehbi Koç started his working life. And when you have finished your museum visit, you can relax in either the Divan CafÊ or the sophisticated Divan Brasserie in the courtyard.
32313
32314 '''[[State Art and Sculpture Museum]] (The Painting and Sculpture Museum) (''Resim-Heykel MÃŧzesi'')''': Close to the Ethnography Museum and houses a rich collection of Turkish art from the late [[19th century]] to the present day. There are also galleries which host guest exhibitions.
32315
32316 '''The War of Independence Museum (''Kurtuluş SavaÅŸÄą MÃŧzesi'')''': In Ulus Square, is what was originally the first parliament building of the Republic of Turkey. There the War of Independence was planned and directed here as recorded in various photographs and items presently on exhibition. In another display, wax figures of former presidents of the Republic of Turkey are on exhibit.
32317
32318 '''The TCDD [[Locomotive]] Museum''': Near the railway station by Celal Bayar Blvd., is a very interesting open-air museum that traces the history of steam locomotion through the locomotives and artifacts on display.
32319
32320 ===Archeological sites===
32321
32322 [[Image:Ankara Citadel2.MarkHamilto.jpg|right|thumb|300px|Ankara Citadel.]]
32323 '''Ankara Citadel''': The foundations of the citadel were laid by the Galatians on a prominent [[lava]] outcrop, and the rest was completed by the Romans. The Byzantines and Seljuks further made restorations and additions. The area around and inside the citadel, being the oldest part of Ankara, contains many fine examples of traditional architecture. There are also recreational areas to relax. Many restored traditional Turkish houses inside the citadel area have found new life as restaurants, serving local cuisine, music and of course, [[Raki]].
32324
32325 '''Roman Theatre''': The remains, the stage, and the backstage, can be seen outside the castle. Roman statues that were found here are exhibited in the Museum of Anatolian Civilizations (see above). The seating area is still under excavation.
32326
32327 '''Temple of Augustus''': It was built by the Galatian King [[Pylamenes]] in [[AD 10]] as a tribute and sign of fidelity to [[Augustus]], and was reconstructed by the Romans on the ancient Ankara Acropolis in the 2nd century. It is important for the &quot;Monument Ancyranum&quot;, the sole surviving political testament of Augustus, detailing his achievements inscribed on its walls in [[Latin]] and [[Greek language|Greek]]. In the fifth century the temple was converted into a church by the [[Byzantine Empire|Byzantines]]. The temple is in the Ulus quarter of the city.
32328
32329 '''Roman Bath''': This bath has all the typical features of a classical [[Roman bath]]: a frigidarium (cold room), tepidarium (cool room) and caldarium (hot room). The bath was built in the reign of Emperor [[Caracalla|Caracalla]] in 3rd century AD to honour the [[Asclepios]], the God of Medicine. Today only the basement and first floors remain. Situated in Ulus quarter.
32330
32331 '''Column of Julian''': This column, in Ulus, was erected in AD 362, to commemorate a visit by the Roman Emperor [[Julian the Apostate]]. It stands fifteen meters high and has a typical leaf decoration on the capital.
32332
32333 ===Modern monuments===
32334
32335 '''Monument to a Secure, Confident Future''': This monument, in GÃŧven Park, BakanlÄąklar quarter, was erected in 1935 and bears AtatÃŧrk's advice to his people: &quot;Turk! Be proud, work hard, and believe in yourself.&quot;
32336
32337 '''Victory Monument (''Zafer AnÄątÄą'')''': Erected in 1927 in Zafer Square in the SÄąhhiye quarter, it depicts AtatÃŧrk in uniform.
32338
32339 '''Hatti Monument''': Built in the 1970's in SÄąhhiye Square, this impressive monument symbolizes the Hatti gods and commemorates Anatolia's earliest known civilization.
32340
32341 ===Mosques===
32342 [[Image:Kocatepe Mosque Ankara.jpg|left|thumb|200px|Kocatepe Mosque]]
32343
32344 '''Kocatepe Mosque''': This mosque was constructed in the late 20th century in accordance with classical Ottoman models, which emphasize the placement of four minarets. Its size and prominent location make it a landmark that can be seen from most anywhere in central Ankara.
32345
32346 '''[[Haci Bayram]] [[Mosque]]''': This mosque, in Ulus quarter next to the Temple of Augustus, was built in the early 15th century in Seljuk style and was subsequently restored by architect [[Sinan]] in the 16th century, with Kutahya tiles being added in the 18th century. The mosque was built in honor of Haci Bayram Veli, whose tomb is next to the mosque.
32347
32348 ===Parks===
32349 Ankara has many delightful parks and open spaces mainly established in the early years of the Republic and well maintained and expanded thereafter. The most important of these parks are: Gençlik Park (houses an amusement park with a large pond for rowing), the Botanical Garden, Seğmenler Park, Anayasa Park, Kuğulu Park (famous for the swans received as a gift from the [[China|Chinese]] government), Abdi Ipekci Park, GÃŧven Park (see above for the monument), Kurtuluş Park (has an ice-skating rink), AltÄąn Park (also a prominent exposition/fair area), Harikalar Diyari (said to be, Europe's Biggest Park inside city borders) and GÃļksu Park.
32350
32351 [[Image:Goksu Park Ankara.jpg|right|thumb|300px|GÃļksu Park located in Eryaman district was established in 2004]]
32352
32353 '''AtatÃŧrk Farm and Zoo (''AtatÃŧrk Orman Çiftliği, AOÇ'')''' is an expansive recreational farming area housing a [[zoo]], several small agricultural farms, [[greenhouse]]s, restaurants, a [[Dairy farming|dairy farm]] and a [[brewery]]. It is a pleasant place to spend a day with family, be it for having picnics, hiking, biking or simply enjoying good food and nature. There is also an exact replica of the house where AtatÃŧrk was born in [[1881]], in [[Thessaloniki]], [[Greece]]. Visitors to the &quot;Çiftlik&quot; (farm) as it is affectionately called by Ankarans, can sample such famous products of the farm as its excellent old-fashioned beer and ice cream, fresh dairy products and meat rolls/kebaps made on charcoal, through an excellent traditional restaurant (''Merkez Lokantasi'', Central Restaurant), cafÊs and other establishments scattered in the farm.
32354
32355 ===Shopping===
32356
32357 [[Image:Karum Inside.HB.jpg|left|thumb|200px|An inside view of Karum Shopping &amp; Business Center.]]
32358
32359 Foreign visitors to Ankara usually like to visit the old shops in ''Ã‡ÄąkrÄąkÃ§Äąlar Yokuşu'' (Weavers' road) near Ulus, where a myriad of things ranging from traditional fabrics, hand-woven carpets and leather products can be found for bargain prices. ''BakÄąrcÄąlar ÇarÅŸÄąsÄą'' (Bazaar of coppersmiths) is particularly popular, and many interesting items, not just of copper, can be found here...like jewelry, carpets, costumes, antiques and embroidery. Walking up the hill to the castle gate, you find many shops selling a huge and fresh collection of spices, dried fruits, nuts, and other produce.
32360
32361 [[Image:Beymen Ankara.jpg|right|thumb|200px|Beymen Store located in popular TunalÄą Hilmi Avenue]]
32362
32363 Modern shopping areas are mostly found in KÄązÄąlay, or on TunalÄą Hilmi Avenue, including the modern mall of Karum which is located to the end of the Avenue; and in the [[Atakule Tower]] in Çankaya. Çankaya being the quarter with the highest elevation in the city, the tower has a magnificent view over the whole city, and also has a [[revolving restaurant]] at the top where the complete panorama can be enjoyed in a more leisurely fashion.
32364
32365 As Ankara started expanding westward in the 1970s, there are several modern, suburbia-style developments and mini-cities along the western highway, also known as [[Eskisehir Province|Eskisehir]] road. The Armada mall on the highway, the Galleria in ÜmitkÃļy, and a huge mall in Bilkent Center offering North American and European style mall-shopping opportunities (These can be reached following the Eskişehir highway).
32366
32367 ==Universities==
32368 Ankara is known for the multitude of universities it is home to.
32369 These include the following, several of them being among the most
32370 reputable of the country:
32371
32372 * [[Ankara University]]
32373 * [[Atilim University|AtÄąlÄąm University]]
32374 * [[Baskent University|Başkent University]]
32375 * [[Bilkent University]]
32376 * [[Cankaya University|Çankaya University]]
32377 * [[Gazi University]]
32378 * [[Hacettepe University]]
32379 * [[Middle East Technical University]]
32380 * [[Ufuk University]]
32381
32382 ==Transportation==
32383 [[Image:Ankara_Metro.jpg|thumb|300px|right|Map of the Subway of Ankara.]]
32384 [[Esenboga International Airport]], located in the north of the city, is the main airport of Ankara. The bus lines constitute the main means of inter-city transportation in Turkey, and [http://www.asti.com.tr Ankara Intercity Bus Terminal] ([[Turkish language|Turkish]]: Ankara ŞehirlerarasÄą Terminal İşletmesi, AŞTÄ°) is an important part of the network. The railstation &quot;Ankara GarÄą&quot; of [[Turkish Republic Railways]] ([[Turkish language|Turkish]]: TÃŧrkiye Cumhuriyeti Devlet DemiryollarÄą, TCDD) is an important hub connecting western and eastern parts of the country.
32385
32386 [http://www.ego.gov.tr EGO] (Elektrik Gaz OtobÃŧs) operates the public transportation. There are currently two subway lines in the city and three more are under construction.
32387
32388 [[Image:Ankara subway.jpg|thumb|300px|left|A view from Ankara Metro.]]
32389
32390 ==Sports==
32391 The city has three [[football clubs]] currently competing in the [[Turkish Premier Super League]]: [[Genclerbirligi|Gençlerbirliği]] (finished 5th in the league), [[Ankaraspor|BÃŧyÃŧkşehir Belediye Ankaraspor]] (finished 7th in the league), and [[AnkaragÃŧcÃŧ]] (finished 13th in the league).
32392
32393 ==See also==
32394 * [[Synod of Ancyra]]
32395 * [[maNga (band)]]
32396
32397 ==External links==
32398 {{commons|Ankara}}
32399 *[http://www.worldturkey.com/gallery/categories.php?cat_id=12 Ankara City Life Photos Gallery]
32400 *[http://www.ankara.bel.tr/album.asp Photo Album of Municipality of Ankara]
32401 *[http://www.turkishclass.com/turkey_pictures_gallery_14 Pictures of Ankara]
32402 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Augustus/Res_Gestae/home.html Monumentum Ancyranum]
32403 *[http://goturkey.kultur.gov.tr/destinasyon_en.asp?belgeno=9572&amp;belgekod=9572&amp;Baslik=Ankara Turkish Ministry of Culture and Tourism's ''Ankara &amp; environs'' page]
32404 * [http://www.turkeyforecast.com/weather/ankara/ Ankara Weather Forecast Information]
32405 * [http://www.pbase.com/dosseman/ankara_turkey Pictures of the capital of this province]
32406 * [http://www.pbase.com/dosseman/ankara_museum_turkey Pictures of some of the oldest and finest finds in the country at Ankara Museum of Anatolian Civilizations]
32407 * [http://www.pbase.com/dosseman/ankara_anit_kabir AtatÃŧrk Mausoleum in Ankara]
32408
32409 [[Category:Archaeological sites in Turkey]]
32410 [[Category:Capitals in Asia]]
32411 [[Category:Cities in Turkey]]
32412 [[Category:Ankara]]
32413
32414 [[ar:ØŖŲ†Ų‚ØąØŠ]]
32415 [[az:Ankara]]
32416 [[bg:АĐŊĐēĐ°Ņ€Đ°]]
32417 [[bs:Ankara]]
32418 [[ca:Ancyra]]
32419 [[cs:Ankara]]
32420 [[cy:Ankara]]
32421 [[da:Ankara]]
32422 [[de:Ankara]]
32423 [[es:Ankara]]
32424 [[eo:Ankara]]
32425 [[fa:اØŗØĒاŲ† ØĸŲ†ÚŠØ§ØąØ§]]
32426 [[fr:Ankara]]
32427 [[gl:Ancara - Ankara]]
32428 [[ko:ė•™ėš´ëŧ]]
32429 [[hr:Ankara]]
32430 [[io:Ankara]]
32431 [[id:Ankara]]
32432 [[ia:Ankara]]
32433 [[it:Ankara]]
32434 [[he:אנקרה]]
32435 [[ku:Enqere]]
32436 [[la:Ancyra]]
32437 [[lt:Ankara]]
32438 [[lb:Ankara]]
32439 [[hu:Ankara]]
32440 [[nl:Ankara]]
32441 [[nds:Ankara]]
32442 [[ja:ã‚ĸãƒŗã‚Ģナ]]
32443 [[ka:ანკარა]]
32444 [[no:Ankara]]
32445 [[nn:Ankara]]
32446 [[pl:Ankara]]
32447 [[pt:Ancara]]
32448 [[ro:Ankara]]
32449 [[ru:АĐŊĐēĐ°Ņ€Đ°]]
32450 [[simple:Ankara]]
32451 [[sk:Ankara]]
32452 [[sl:Ankara]]
32453 [[sr:АĐŊĐēĐ°Ņ€Đ°]]
32454 [[fi:Ankara]]
32455 [[sv:Ankara]]
32456 [[tr:Ankara (şehir)]]
32457 [[uk:АĐŊĐēĐ°Ņ€Đ°]]
32458 [[zh:åŽ‰åĄæ‹‰]]</text>
32459 </revision>
32460 </page>
32461 <page>
32462 <title>Arabic language</title>
32463 <id>803</id>
32464 <revision>
32465 <id>41737407</id>
32466 <timestamp>2006-03-01T11:20:21Z</timestamp>
32467 <contributor>
32468 <username>Emrrans</username>
32469 <id>603651</id>
32470 </contributor>
32471 <minor />
32472 <comment>Correction.</comment>
32473 <text xml:space="preserve">{{Infobox Language
32474 |name=Arabic
32475 |nativename=اŲ„ØšØąØ¨ŲŠØŠ ''{{ArabDIN|al-Ęģarabiyyah}}''
32476 |pronunciation=/alˌʕa.raˈbij.ja/
32477 |states=[[Algeria]], [[Bahrain]], [[Egypt]], [[Iraq]], [[Jordan]], [[Kuwait]], [[Lebanon]], [[Libya]], [[Mauritania]], [[Morocco]], [[Oman]], [[Qatar]], [[Saudi Arabia]], [[Somalia]], [[Sudan]], [[Syria]], [[Tunisia]], [[United Arab Emirates]], [[Palestine (region)|Palestine (West Bank and Gaza)]], [[Western Sahara]] ([[Sahrawi Arab Democratic Republic|SADR]]), [[Yemen]] by a majority, and in many other countries, such as [[Israel]], as a minority language.
32478 |region=[[Arab world]]
32479 |speakers=206 million ([[Ethnologue]], native speakers of all dialects 1998 est.); 286 million (population of [[Arab]] countries, [[CIA World Factbook]] 2004 est.), excluding Arab minorities in other countries and bilingual speakers
32480 |rank=5 (by first language); slightly before [[Portuguese language|Portuguese]] and [[Bengali language|Bengali]]
32481 |familycolor=Afro-Asiatic
32482 |fam2=[[Semitic languages|Semitic]]
32483 |fam3=[[West Semitic languages|West Semitic]]
32484 |fam4=[[Central Semitic languages|Central Semitic]]
32485 |script=[[Arabic alphabet]]
32486 |nation=[[Algeria]], [[Bahrain]], [[Comoros]], [[Chad]], [[Djibouti]], [[Egypt]], [[Eritrea]], [[Iraq]], [[Israel]], [[Jordan]], [[Kuwait]], [[Lebanon]], [[Libya]], [[Mauritania]], [[Morocco]], [[Oman]], [[Palestine (region)|Palestine]], [[Qatar]], [[Western Sahara]] ([[Sahrawi Arab Democratic Republic|SADR]]), [[Saudi Arabia]], [[Somalia]], [[Sudan]], [[Syria]], [[Tunisia]], [[United Arab Emirates]], [[Yemen]];
32487 &lt;br&gt;A [[national language]] of: [[Mali]], [[Senegal]] ([[Hassaniya]]).&lt;br&gt;&lt;br&gt;
32488 International organizations: [[United Nations]], [[Arab League]], [[Organization of Islamic Conference]], [[African Union]]
32489 |agency=[[Egypt]]: [[Academy of the Arabic Language]]
32490 |iso1=ar|iso2=ara
32491 |lc1=ara|ld1=Arabic (generic)&lt;br&gt;''see [[varieties of Arabic]] for the individual codes''|ll1=none}}
32492
32493 '''Arabic''' ({{ar|اŲ„Ų„ØēØŠ اŲ„ØšØąØ¨ŲŠØŠ}}; ''{{ArabDIN|al-luÄĄatu-l-Ęģarabiyyatu}}'', less formally, {{ar|ØšØąØ¨ŲŠ}} ''{{ArabDIN|ĘģarabÄĢ}}'') is the largest member of the [[Semitic]] branch of the [[Afro-Asiatic]] [[language family]] (classification: South Central Semitic) and is closely related to [[Hebrew language|Hebrew]] and [[Aramaic language|Aramaic]]. It is spoken throughout the [[Arab world]] and is widely studied and known throughout the [[Islamic world]]. Arabic has been a [[literary language]] since at least the [[6th century]] and is the [[liturgical language]] of [[Islam]].
32494
32495 Quite a few [[English language|English]] words are ultimately derived from Arabic, often through other [[Europe]]an languages, especially [[Spanish language|Spanish]], among them every-day vocabulary like &quot;[[sugar]]&quot; (''sukkar''), &quot;[[cotton]]&quot; (''{{unicode|quáš­ÅĢn}}'') or &quot;[[magazine]]&quot; (''[[makhzen|{{ArabDIN|maá¸Ģāzin}}]]''). More recognizable are words like &quot;[[algebra]]&quot;, &quot;[[alcohol]]&quot; and &quot;zenith&quot; (see [[list of English words of Arabic origin]]).
32496
32497 ==Literary and Modern Standard Arabic==
32498 The term &quot;Arabic&quot; may refer either to [[literary Arabic]] or [[Modern Standard Arabic]] or to the many localized [[varieties of Arabic]] commonly called &quot;colloquial Arabic.&quot; Arabs consider literary Arabic as the standard language and tend to view everything else as mere dialects. [[Literary Arabic]], ''{{ArabDIN|al-luÄĄatu-l-Ęģarabiyyatu-l-fuášŖá¸Ĩā}}'' (Literally: &quot;the most eloquent Arabic language&quot; &amp;mdash; {{ar|اŲ„Ų„ØēØŠ اŲ„ØšØąØ¨ŲŠØŠ اŲ„ŲØĩØ­Ų‰}}) refers both to the language of present-day media across [[North Africa]] and the [[Middle East]] and to the more articulate language of the [[Qur'an]]. (The expression ''media'' here includes most television and radio, and all written matter, including all books, newspapers, magazines, documents of every kind, and reading primers for small children.) &quot;Colloquial&quot; or &quot;dialectal&quot; Arabic refers to the many national or regional varieties derived from Classical Arabic, spoken daily across [[North Africa]] and the [[Middle East]], which constitute the everyday spoken language. These sometimes differ enough to be mutually incomprehensible. These dialects are not typically written, although a certain amount of literature (particularly plays and poetry) exists in many of them. They are often used to varying degrees in informal spoken media, such as [[soap opera]]s and [[talk show]]s.
32499 Literary Arabic or classical Arabic is the official language of all Arab countries and is the only form of Arabic taught in schools at all stages.
32500
32501 The sociolinguistic situation of Arabic in modern times provides a prime example of the linguistic phenomenon of [[diglossia]]–the normal use of two separate varieties of the same language, usually in different social situations. In the case of Arabic, educated Arabs of any nationality can be assumed to speak both their local dialect and their school-taught literary Arabic (to an equal or lesser degree). This diglossic situation facilitates [[code switching]] in which a speaker switches back and forth unaware between the two varieties of the language, sometimes even within the same sentence. In instances in which Arabs of different nationalities engage in conversation only to find their dialects mutually unintelligible (e.g. a Moroccan speaking with a Lebanese), both should be able to code switch into Literary Arabic for the sake of communication.
32502
32503 Since the written Arabic of today differs from the written Arabic of the [[Qur'an]]ic era, it has become customary in western scholarship and among non-Arab scholars of Arabic to refer to the language of the Qur'an as [[Classical Arabic]] and the modern language of the media and of formal speech as [[Modern Standard Arabic]]. Arabs, on the other hand, often use the term ''{{Unicode|fuášŖá¸Ĩā}}'' to refer to both forms, thus placing greater emphasis on the similarities between the two. The difference between Arabic of the Qur'anic era and today's Classical Arabic is only in the degree of eloquence. The vocabulary, the syntactic and grammatical rules are the same.
32504
32505 ==Arabic and Islam==
32506 It is sometimes difficult to translate [[Islam]]ic concepts, and concepts specific to [[Arab culture]], without using the original Arabic terminology. The [[Qur'an]] is expressed in Arabic and traditionally [[Muslim]]s deem it impossible to translate in a way that would adequately reflect its exact meaning&amp;mdash;indeed, until recently, some schools of thought maintained that it should not be translated at all. A [[list of Islamic terms in Arabic]] covers those terms which are too specific to translate in one phrase. While Arabic is strongly associated with [[Islam]] (and is the language of [[salah]]), it is also spoken by [[Arab Christians]], Oriental {{Unicode|([[Mizrahi Jews|Mizraá¸Ĩi]])}} [[Jew]]s, and smaller sects such as Iraqi [[Mandaean]]s. Even so, a majority of the world's [[Muslims]] do not actually speak Arabic, but only know some fixed phrases of the language, such as those used in Islamic prayer. However, to counteract this trend, non-Arabic-speaking Muslims are strongly encouraged to learn the language.
32507
32508 ==Classification and related languages==
32509 [[Maltese language|Maltese]], which is spoken on the Mediterranean island of [[Malta]], is the only surviving European language to derive primarily from Arabic, though it contains a large number of [[Italian language|Italian]] and English borrowings.
32510
32511 ==Dialects==
32512 ''See [[varieties of Arabic]] for main article''
32513
32514 &quot;Colloquial Arabic&quot; is a collective term for the spoken languages or dialects of people throughout the Arab world, which, as mentioned, differ radically from the [[literary language]]. The main dialectal division is between the [[Maghreb]] dialects and those of the [[Middle East]], followed by that between sedentary dialects and the much more conservative [[Bedouin]] dialects. [[Maltese language|Maltese]], though descended from Arabic, is considered a separate language. Speakers of some of these dialects are unable to converse with speakers of another dialect of Arabic; in particular, while Middle Easterners can generally understand one another, they often have trouble understanding Maghrebis (although the converse is not true, due to the popularity of Middle Eastern&amp;mdash;especially Egyptian&amp;mdash;films and other media).
32515
32516 One factor in the differentiation of the dialects is influence from the languages previously spoken in the areas, which have typically provided a significant number of new words, and have sometimes also influenced pronunciation or word order; however, a much more significant factor for most dialects is, as among [[Romance languages]], retention (or change of meaning) of different classical forms. Thus Iraqi ''aku'', Levantine ''fiih'', and North African ''kayen'' all mean &quot;there is&quot;, and all come from Arabic (''yakuun'', ''fiihi'', ''kaa'in'' respectively), but now sound very different.
32517
32518 The major groups are:
32519
32520 *[[Egyptian Arabic]]
32521 *[[Maghreb Arabic]] ([[Algerian Arabic]], [[Moroccan Arabic]], [[Tunisian Arabic]] and western Libyan)
32522 *[[Levantine Arabic]] (Western Syrian, Lebanese, Palestinian, and western Jordanian, [[Cypriot Maronite Arabic]])
32523 *[[Iraqi Arabic]] ([[Khuzestani Arabic]]), which has significant [[Persian language|Persian]] influence and is not understood by most other Arabic speakers
32524 *[[Gulf Arabic]] (Eastern Syrian, Kuwaiti, Saudi Arabian, Persian Gulf coast from Iraq to Oman including much of Saudi Arabia's [[Eastern Province, Saudi Arabia|Eastern Province]], and minorities on the other side)
32525
32526 Other varieties include:
32527
32528 * {{unicode|[[Hassaniya|ḤassānÄĢya]]}} (in Mauritania and western Sahara)
32529 * [[Andalusi Arabic]] (extinct, but important role in literary history)
32530 * [[Maltese language|Maltese]]
32531 * [[Sudanese Arabic]] (with a dialect continuum into Chad)
32532 * [[Baharna Arabic]] (Bahrain, Saudi Eastern Province, and Oman)
32533 * [[Hijazi Arabic]] (west coast of Saudi Arabia, Northern Saudi Arabia, eastern Jordan, Western Iraq)
32534 * [[Najdi Arabic]] (Najd region of central Saudi Arabia)
32535 * [[Yemeni Arabic]] (Yemen to southern Saudi Arabia)
32536
32537 == Sounds ==
32538 {{IPA notice}}
32539 The phonemes below reflect the pronunciation of Standard Arabic.
32540
32541 ===Vowels===
32542
32543 Arabic has three vowels, with their long forms, plus two diphthongs: ''a'' {{IPA|[ɛĖˆ]}} (open ''e'' as in English ''bed'', but centralised), ''i'' {{IPA|[ÉĒ]}}, ''u'' {{IPA|[ʊ]}}; ''ā'' {{IPA|[ÃĻː]}}, ''ÄĢ'' {{IPA|[iː]}}, ''ÅĢ'' {{IPA|[uː]}}; ''ai'' (''ay'') {{IPA|[ɛĖˆÉĒ]}}, ''au'' (''aw'') {{IPA|[ɛĖˆĘŠ]}}. [[Allophone|Allophonically]], after velarized consonants (see following), the vowel ''a'' is pronounced {{IPA|[ɑ]}}, ''ā'' as {{IPA|[ɑː]}} (thus also after ''r''), ''ai'' as {{IPA|[ɑÉĒ]}} and ''au'' as {{IPA|[ɑʊ]}}.
32544
32545 ===Consonants===
32546
32547 {| class=&quot;wikitable&quot; style=&quot;text-align: center;&quot;
32548 |+ '''Standard Arabic consonant phonemes'''&lt;/CAPTION&gt;
32549 |-
32550 ! rowspan=&quot;2&quot; COLSPAN=2 | &amp;nbsp;
32551 ! rowspan=&quot;2&quot; | [[Bilabial]]
32552 ! rowspan=&quot;2&quot; | [[Interdental|Inter-&lt;br /&gt;dental]]
32553 ! colspan=&quot;2&quot; | [[Dental]]
32554 ! rowspan=&quot;2&quot; | [[Postalveolar|Post-&lt;br&gt;alveolar]]
32555 ! rowspan=&quot;2&quot; | [[Palatal]]
32556 ! rowspan=&quot;2&quot; | [[Velar]]
32557 ! rowspan=&quot;2&quot; | [[Uvular]]
32558 ! rowspan=&quot;2&quot; | [[Pharyngeal|Pharyn-&lt;BR&gt;geal]]
32559 ! rowspan=&quot;2&quot; | [[Glottal]]
32560 |-
32561 ! style=&quot;text-align: left; font-size: 80%;&quot; | &amp;nbsp;plain&amp;nbsp;
32562 ! style=&quot;text-align: left; font-size: 80%;&quot; | [[pharyngealization|emphatic]]
32563 |-
32564 ! style=&quot;text-align: left;&quot; ROWSPAN=2 | [[Stop]]
32565 ! style=&quot;text-align: left; font-size: 80%;&quot; | [[Voiceless consonant|voiceless]]
32566 | &amp;nbsp;
32567 | &amp;nbsp; || {{IPA|t}} || {{IPA|tˁ}} || &amp;nbsp; || &amp;nbsp; || {{IPA|k}} || {{IPA|q}}
32568 | &amp;nbsp; || {{IPA|ʔ}}
32569 |-
32570 ! style=&quot;text-align: left; font-size: 80%;&quot; | [[Voiced consonant|voiced]]
32571 | {{IPA|b}} || &amp;nbsp; || {{IPA|d}} || {{IPA|dˁ}} || {{IPA|dʒ}}&amp;sup1; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp;
32572 | &amp;nbsp; || &amp;nbsp;
32573 |-
32574 ! style=&quot;text-align: left;&quot; ROWSPAN=2 | [[Fricative]]
32575 ! style=&quot;text-align: left; font-size: 80%;&quot; | [[Voiceless consonant|voiceless]]
32576 | {{IPA|f}}
32577 | {{IPA|θ}} || {{IPA|s}} || {{IPA|sˁ}} || {{IPA|ʃ}} || &amp;nbsp; || {{IPA|x}} || &amp;nbsp; || {{IPA|ħ}} || {{IPA|h}}
32578 |-
32579 ! style=&quot;text-align: left; font-size: 80%;&quot; | [[Voiced consonant|voiced]]
32580 | &amp;nbsp; || {{IPA|ð}} || {{IPA|z}} || {{IPA|ðˁ}} || &amp;nbsp; || &amp;nbsp; || {{IPA|ÉŖ}} || &amp;nbsp;
32581 | {{IPA|ʕ}} || &amp;nbsp;
32582 |-
32583 ! style=&quot;text-align: left;&quot; COLSPAN=2 | [[Nasal]]
32584 | {{IPA|m}} || &amp;nbsp; || {{IPA|n}} || &amp;nbsp;
32585 | &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp;
32586 | rowspan=&quot;2&quot; | &amp;nbsp;
32587 | rowspan=&quot;2&quot; | &amp;nbsp;
32588 |-
32589 ! style=&quot;text-align: left;&quot; COLSPAN=2 | [[Lateral]]
32590 | &amp;nbsp; || &amp;nbsp;
32591 | {{IPA|l}} ² || &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp;
32592 |-
32593 ! style=&quot;text-align: left;&quot; COLSPAN=2 | [[Trill]]
32594 | &amp;nbsp;
32595 | &amp;nbsp; || {{IPA|r}} || &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || &amp;nbsp;
32596 | &amp;nbsp;
32597 |-
32598 ! style=&quot;text-align: left;&quot; COLSPAN=2 | [[Approximant]]
32599 | {{IPA|w}} || &amp;nbsp;
32600 | &amp;nbsp; || &amp;nbsp; || &amp;nbsp; || {{IPA|j}} || &amp;nbsp; || &amp;nbsp;
32601 | &amp;nbsp; || &amp;nbsp;
32602 |}
32603
32604 See [[Arabic alphabet]] for explanations on the [[International Phonetic Alphabet|IPA]] phonetic symbols found in this chart.
32605
32606 # {{IPA|[dʒ]}} is pronounced as {{IPA|[ɡ]}} by some speakers. This is especially characteristic of the Egyptian and southern Yemeni dialects. In many parts of North Africa and in the Levant, it is pronounced as {{IPA|[ʒ]}}.
32607 # {{IPA|/l/}} is pronounced {{IPA|[lˁ]}} only in {{IPA|/ʔalˁːɑːh/}}, the name of God, i.e. [[Allah]], when the word follows ''a'', ''ā'', ''u'' or ''ÅĢ'' (after ''i'' or ''ÄĢ'' it is unvelarised: ''bismi l-lāh'' {{IPA|/bÉĒsmÉĒlːÃĻːh/}}).
32608 # {{IPA|/ʕ/}} is usually a phonetic [[approximant]].
32609 # In many varieties (if not most), {{IPA|/ħ, ʕ/}} are actually [[epiglottal]] {{IPA|[ʜ, Ęĸ]}} (despite what is reported in many earlier works).
32610
32611 The consonants traditionally termed &quot;emphatic&quot; {{IPA|/tˁ, dˁ, sˁ, ðˁ/}} are either [[velarization|velarised]] {{IPA|[tË , dË , sË , ðˠ]}} or [[pharyngealization|pharyngealised]] {{IPA|[tˁ, dˁ, sˁ, ðˁ]}}. In some transcription systems, emphasis is shown by capitalizing the letter e.g. {{IPA|/dˁ/}} is written ‹Dâ€ē; in others the letter is underlined or has a dot below it e.g. ‹ḍâ€ē.
32612
32613 Vowels and consonants can be (phonologically) short or long. Long (geminate) consonants are normally written doubled in Latin transcription (i.e. bb, dd, etc.), reflecting the presence of the Arabic diacritic mark [[shaddah]], which marks lengthened consonants. Such consonants are held twice as long as short consonants. This consonant lengthening is phonemically contrastive: e.g. ''qabala'' &quot;he received&quot; and ''qabbala'' &quot;he kissed&quot;.
32614
32615 ===Syllable structure===
32616 Arabic has two kinds of syllable: open syllables (CV) and (CVV) - and closed syllables (CVC), (CVVC) and (CVCC). Every syllable begins with a consonant - or else a consonant is borrowed from a previous word through elision – especially in the case of the definite article THE, ''al'' (used when starting an utterance) or ''_l'' (when following a word), e.g. ''baytu –l mudiir'' “house (of) the director”, which becomes ''bay-tul-mu-diir'' when divided syllabically. By itself, definite ''mudiir'' would be pronounced {{IPA|/al mudiːr/}}.
32617
32618 ===Stress===
32619 Although word stress is not phonemically contrastive in Standard Arabic, it does bear a strong relationship to vowel length and syllable shape, and correct word stress aids intelligibility. In general, &quot;heavy&quot; syllables attract stress (i.e. syllables of longer duration - a closed syllable or a syllable with a long vowel). In a word with a syllable with one long vowel, the long vowel attracts the stress (e.g. ''ki-'taab'' and '' ‘kaa-tib''). In a word with two long vowels, the second long vowel attracts stress (e.g.''ma-kaa-'tiib''). In a word with a &quot;heavy&quot; syllable where two consonants occur together or the same consonant is doubled, the (last) heavy syllable attracts stress (e.g. ''ya-ma-’niyy'', ''ka-'tabt'', ''ka-‘tab-na'', ma-‘jal-lah,'' ‘mad-ra-sah'', ''yur-‘sil-na''). This last rule trumps the first two: ''ja-zaa-{{unicode|ʔ}}i-‘riyy''. Otherwise, word stress typically falls on the first syllable: '' ‘ya-man'', '' ‘ka-ta-bat'', etc. The Cairo ([[Egyptian Arabic]]) dialect, however, has some idiosyncrasies in that a heavy syllable may not carry stress more than two syllables from the end of a word, so that ''mad-‘ra-sah'' carries the stress on the second-to-last syllable, as does ''qaa-‘hi-rah''.
32620
32621 ===Dialectal variations===
32622 In some dialects, there may be more or fewer phonemes than those listed in the chart above. For example, non-Arabic {{IPA|[v]}} is used in the Maghreb dialects as well in the written language mostly for foreign names. Semitic {{IPA|[p]}} became {{IPA|[f]}} extremely early on in Arabic before it was written down; a few modern Arabic dialects, such as Iraqi (influenced by [[Persian language|Persian]]) distinguish between {{IPA|[p]}} and {{IPA|[b]}}. Interdental fricatives ({{IPA|[θ]}} and {{IPA|[ð]}}) are rendered as stops {{IPA|[t]}} and {{IPA|[d]}} in some dialects (principally Levantine and Egyptian) and as {{IPA|[s]}} and {{IPA|[z]}} in &quot;learned&quot; words from the Standard language. Early in the expansion of Arabic, the separate emphatic phonemes {{IPA|[dˁ]}} and {{IPA|[ðˁ]}} coallesced into a single phoneme, becoming one or the other. Predictably, dialects without interdental fricatives use {{IPA|[dˁ]}} exclusively, while those with such fricatives use {{IPA|[ðˁ]}}. Again, in &quot;learned&quot; words from the Standard language, {{IPA|[ðˁ]}} is rendered as {{IPA|[zˁ]}} in dialects without interdental fricatives. Another key distinguishing mark of Arabic dialects is how they render Standard {{IPA|[q]}} (a voiceless uvular stop): it retains its original pronunciation in widely scattered regions such as Yemen and Morocco (and among the [[Druze]]), while it is rendered {{IPA|[ÉĄ]}} in Gulf Arabic, Iraqi Arabic, Upper Egypt and less urban parts of the Levant (e.g. Jordan) and as a [[glottal stop]] {{IPA|[ʔ]}} in many prestige dialects, such as those spoken in Cairo, Beirut and Damascus. Thus, Arabs instantly give away their geographical (and class) origin by their pronunciation of a word such as ''qamar'' &quot;moon&quot;: {{IPA|[qamar]}}, {{IPA|[ÉĄamar]}} or {{IPA|[ʔamar]}}.
32623
32624 == Grammar ==
32625 ''See [[Arabic grammar]]''
32626
32627
32628 == Writing system ==
32629 ''Main article: [[Arabic alphabet]]''
32630
32631 The Arabic alphabet derives from the [[Aramaic alphabet|Aramaic]] script (which variety - [[Nabataean]] or [[Syriac]] - is a matter of scholarly dispute), to which it bears a loose resemblance like that of [[Coptic alphabet|Coptic]] or [[Cyrillic alphabet|Cyrillic script]] to [[Greek alphabet|Greek script]]. Traditionally, there were several differences between the Western (Maghrebi) and Eastern version of the alphabet&amp;mdash;in particular, the ''fa'' and ''qaf'' had a dot underneath and a single dot above respectively in the [[Maghreb]], and the order of the letters was slightly different (at least when they were used as numerals). However, the old Maghrebi variant has been abandoned except for calligraphic purposes in the Maghreb itself, and remains in use mainly in the Quranic schools ([[zaouia]]s) of West Africa. Arabic, like other [[Semitic]] languages, is written from right to left.
32632
32633 ===Calligraphy===
32634
32635 ''See [[Arabic calligraphy]] for a fuller overview.''
32636
32637 After the definitive fixing of the Arabic script around [[786]], by [[Khalil ibn Ahmad al Farahidi]], many styles were developed, both for the writing down of the Qur'an and other books, and for inscriptions on monuments as decoration.
32638
32639 &lt;center&gt;&lt;!-- Unsourced image removed: [[Image:Kufi.png|Kufic font]] --&gt;&lt;/center&gt;
32640
32641 Arabic calligraphy has not fallen out of use as in the Western world, and is still considered by Arabs as a major art form; calligraphers are held in great esteem. Being cursive by nature, unlike the [[Latin alphabet]], Arabic script is used to write down a [[ayah|verse]] of the Qur'an, a [[Hadith]], or simply a [[proverb]], in a spectacular composition. The composition is often abstract, but sometimes the writing is shaped into an actual form such as that of an animal. Two of the current masters of the genre are [[Hassan Massoudy]] and [http://arabworld.nitle.org/gallery.php?module_id=7 Khaled Al Saa’i].
32642
32643 ===Transliteration===
32644
32645 ''See [[Arabic transliteration]] and [[Arabic Chat Alphabet]] for more information.''
32646
32647 There are a number of different standards of [[Arabic transliteration]]: methods of accurately and efficiently representing Arabic with the [[Latin alphabet]]. The more scientific standards allow the reader to recreate the exact word using the [[Arabic alphabet]]. However, these systems are heavily reliant on [[diacritic]]al marks such as &quot;ÅĄ&quot; for the English ''sh'' sound. At first sight, this may be difficult to recognize. Less scientific, systems often use [[Digraph (orthography)|digraph]]s (like ''sh'' and ''kh''), which are usually more simple to read, but sacrifice the definiteness of the scientific systems. In some cases, the ''sh'' or ''kh'' sounds can be represented by italicizing or underlining them -- that way, they can be distinguished from separate ''s'' and ''h'' sounds or ''k'' and ''h'' sounds, respectively. (Compare ''gashouse'' to ''gash''.)
32648
32649 During the last few decades and especially since the 1990s, Western-invented text communication technologies have become prevalent in the [[Arab world]], such as [[personal computers]], the [[World Wide Web]], [[email]], [[Bulletin board system]]s, [[IRC]], [[instant messaging]] and [[mobile phone text messaging]]. Most of these technologies originally had the ability to communicate using the [[Latin alphabet]] only, and some of them still do not have the [[Arabic alphabet]] as an optional feature. As a result, Arabic speaking users communicated in these technologies by transliterating the Arabic text using the Latin script, sometime known as [[IM_Arabic]].
32650
32651 To handle those Arabic letters that cannot be accurately represented using the Latin script, numerals and other characters were appropriated. For example, the numeral &quot;3&quot; may be used to represent the Arabic letter &quot;Øš&quot;, ''ayn''. There is no universal name for this type of transliteration, but some have named it [[Arabic Chat Alphabet]]. Other systems of transliteration exist, such as using dots or capitalization to represent the &quot;emphatic&quot; counterparts of certain consonants. For instance, using capitalization, the letter &quot;د&quot;, or ''daal'', may be represented by '''d'''. Its emphatic counterpart, &quot;Øļ&quot;, may be written as '''D'''.
32652
32653 ==Literature==
32654 Kees Versteegh, ''The Arabic Language'', Edinburgh University Press (1997). [http://arabworld.nitle.org/texts.php?module_id=1&amp;reading_id=36] [http://arabworld.nitle.org/texts.php?module_id=1&amp;reading_id=17] [http://arabworld.nitle.org/texts.php?module_id=1&amp;reading_id=35] [http://arabworld.nitle.org/texts.php?module_id=1&amp;reading_id=113]
32655
32656 == See also ==
32657 *[[Varieties of Arabic]]
32658 *[[Wikibooks:en:Arabic|Learn Standard Arabic WikiBook]]
32659 *[[Arabist]]
32660 *[[Arabic literature]]
32661 *[[List of common phrases in various languages]]
32662 *[[Dictionary of Modern Written Arabic]]
32663
32664 == External links ==
32665 {{InterWiki|code=ar}}
32666 *[http://ar.openoffice.org/ Arabic OpenOffice] a multiplatform and multilingual office suite.
32667 *[http://arabic-media.com/ Arabic-Media] on-line access to Arabic newspapers, radio, and television
32668 * [http://www.nicoweb.com/sirpus/learn%20arabic%20course%20mp3.htm Arabic Writing and Reading '''with MP3''']. Arabic Writing and Reading Course Online with MP3 audio.
32669 *[http://pince31.free.fr/lang/arabic/liens.htm Links to learn Arabic language with online course]
32670 *[http://www.madinaharabic.com Arabic language learning course with audio]
32671 *[http://www.dailystar.com.lb/article.asp?edition_id=10&amp;categ_id=4&amp;article_id=6173 &quot;Antonyms in Arabic are a strange phenomenon&quot; by Tamim al-Barghouti]
32672 *[http://arabworld.nitle.org/texts.php?module_id=1&amp;reading_id=17 &quot;The Development of Classical Arabic&quot; by Kees Versteegh]
32673 *[http://arabworld.nitle.org/audiovisual.php?module_id=1&amp;selected_feed=118 Wellesley College Professor of Arabic on the forms and dialects of the language]
32674 *[http://www.uga.edu/islam/arabic_windows.html Multilingual Computing in Arabic with Windows, major word processors, web browsers, Arabic keyboards, and Arabic transliteration fonts]
32675 *[http://www.gomideast.com/arabic/index.htm gomideast - Learning to Speak Arabic phrases]
32676 *[http://language-directory.50webs.com/languages/arabic.htm List of online Arabic-related resources]
32677 *[http://acon.baykal.be/ ACON: online Arabic Verb Conjugator]
32678 *[http://www.cacac.org Center for Arabic Culture (CAC)]
32679 *[http://st-takla.org/Learn_Languages/01_Learn_Arabic-ta3leem-3araby/Learn-Arabic_00-index_El-Fehres.html Learn Arabic language online with audio pronunciation] from [http://St-Takla.org St. Takla Egyptian Church]
32680 *[http://www.tanzeelnet.com Arabic-translated program descriptions]
32681
32682 Web references and examples:
32683 * [http://transliteration.org/quran/Pronunciation/Letters/TashP.htm Arabic language pronunciation applet] with audio samples
32684 * [http://afl.ajeeb.com/freetour/lesson1/song/song1.html Learn Arabic]
32685 * [http://www.everything2.com/index.pl?node_id=1289272 E2 article]
32686 * [http://www.sprachprofi.de.vu/english/ar.htm Sprachprofi]
32687 * [http://www.websters-online-dictionary.org/definition/Arabic-english/ Arabic - English Dictionary]: from [http://www.websters-online-dictionary.org Webster's Online Dictionary] - the Rosetta Edition.
32688 * [http://www.ethnologue.com/show_language.asp?code=arb SIL's Ethnologue]
32689 * [http://www.nitle.org/arabworld/texts.php?module_id=1&amp;reading_id=113 Dialects of Arabic]
32690 * [http://www.muftah-alhuruf.com Muftah-Alhuruf.com]: Write and send Arabic emails without having an Arabic keyboard or operating system.
32691 * [http://dictionary.sakhr.com/ Number of Arabic Words According to different dictionaries] Over 4 millions words!
32692
32693 Arabic languages samples:
32694 * [http://www.language-museum.com/a/arabic.php Arabic]
32695 * [http://www.language-museum.com/a/arabic-chadian-spoken.php Arabic Chadian Spoken]
32696 * [http://www.language-museum.com/a/arabic-judeo-iraqi.php Arabic Judeo Iraqi]
32697 * [http://www.language-museum.com/a/arabic-north-levantine-spoken.php Arabic North Levantine Spoken]
32698 * [http://www.dicodialna.com Algerian-Arabic Dictionary]
32699
32700
32701 [[Category:Arabic language|*]]
32702 [[Category:Arab]]
32703
32704 [[af:Arabies]]
32705 [[ang:Arabisc sprĮŖc]]
32706 [[ar:Ų„ØēØŠ ØšØąØ¨ŲŠØŠ]]
32707 [[ast:Idioma Árabe]]
32708 [[bg:АŅ€Đ°ĐąŅĐēи ĐĩСиĐē]]
32709 [[bs:Arapski jezik]]
32710 [[ca:Llengua àrab]]
32711 [[cs:ArabÅĄtina]]
32712 [[cy:Arabeg]]
32713 [[da:Arabisk]]
32714 [[de:Arabische Sprache]]
32715 [[et:Araabia keel]]
32716 [[el:ΑĪÎąÎ˛ÎšÎēÎŽ ÎŗÎģĪŽĪƒĪƒÎą]]
32717 [[es:Idioma ÃĄrabe]]
32718 [[eo:Araba lingvo]]
32719 [[fa:ØšØąØ¨ÛŒ]]
32720 [[fr:Arabe]]
32721 [[fy:Arabysk]]
32722 [[ga:Araibis]]
32723 [[gl:Lingua ÃĄrabe]]
32724 [[ko:ė•„랍ė–´]]
32725 [[haw:ĘģŌlelo ĘģAlapia]]
32726 [[hi:ā¤…ā¤°ā¤ŦāĨ€ ā¤­ā¤žā¤ˇā¤ž]]
32727 [[io:Arabiana linguo]]
32728 [[id:Bahasa Arab]]
32729 [[is:Arabíska]]
32730 [[it:Lingua araba]]
32731 [[he:×ĸרבי×Ē]]
32732 [[ka:არაბáƒŖლი ენა]]
32733 [[kw:Arabek]]
32734 [[sw:Kiarabu]]
32735 [[la:Lingua Arabica]]
32736 [[lv:Arābu valoda]]
32737 [[lt:ArabÅŗ kalba]]
32738 [[li:Arabisch]]
32739 [[hu:Arab nyelv]]
32740 [[mk:АŅ€Đ°ĐŋŅĐēи Ņ˜Đ°ĐˇĐ¸Đē]]
32741 [[ms:Bahasa Arab]]
32742 [[nl:Arabisch]]
32743 [[nds:Araabsche Spraak]]
32744 [[ja:ã‚ĸナビã‚ĸčĒž]]
32745 [[no:Arabisk sprÃĨk]]
32746 [[nn:Arabisk sprÃĨk]]
32747 [[pl:Język arabski]]
32748 [[pt:Língua ÃĄrabe]]
32749 [[ro:Limba arabă]]
32750 [[ru:АŅ€Đ°ĐąŅĐēиК ŅĐˇŅ‹Đē]]
32751 [[simple:Arabic language]]
32752 [[sk:Arabčina]]
32753 [[sl:ArabÅĄÄina]]
32754 [[sr:АŅ€Đ°ĐŋŅĐēи Ņ˜ĐĩСиĐē]]
32755 [[fi:Arabian kieli]]
32756 [[sv:Arabiska]]
32757 [[tl:Wikang Arabo]]
32758 [[tt:Ğäräp tele]]
32759 [[th:ā¸ ā¸˛ā¸Šā¸˛ā¸­ā¸˛ā¸Ģā¸Ŗā¸ąā¸š]]
32760 [[tr:Arapça]]
32761 [[zh:é˜ŋ拉äŧ¯č¯­]]
32762 [[kn:ā˛…ā˛°ā˛Ŧāŗā˛Ŧāŗ€ ā˛­ā˛žā˛ˇāŗ†]]</text>
32763 </revision>
32764 </page>
32765 <page>
32766 <title>Aztecs</title>
32767 <id>804</id>
32768 <revision>
32769 <id>15899318</id>
32770 <timestamp>2005-06-13T21:08:10Z</timestamp>
32771 <contributor>
32772 <username>Hajor</username>
32773 <id>23076</id>
32774 </contributor>
32775 <minor />
32776 <comment>#REDIRECT [[Aztec]]</comment>
32777 <text xml:space="preserve">#REDIRECT [[Aztec]]</text>
32778 </revision>
32779 </page>
32780 <page>
32781 <title>Amir</title>
32782 <id>805</id>
32783 <revision>
32784 <id>15899319</id>
32785 <timestamp>2003-02-02T21:17:03Z</timestamp>
32786 <contributor>
32787 <username>Vera Cruz</username>
32788 <id>5753</id>
32789 </contributor>
32790 <minor />
32791 <text xml:space="preserve">#REDIRECT [[Emir]]</text>
32792 </revision>
32793 </page>
32794 <page>
32795 <title>Apocalypse Now</title>
32796 <id>806</id>
32797 <revision>
32798 <id>41826845</id>
32799 <timestamp>2006-03-02T00:19:12Z</timestamp>
32800 <contributor>
32801 <ip>68.110.117.88</ip>
32802 </contributor>
32803 <comment>/* Music */</comment>
32804 <text xml:space="preserve">{{Infobox Film |
32805 name = Apocalypse Now |
32806 image = Apocalypse-now-dvd-cover.jpg |
32807 imdb_id = 0078788 |
32808 producer = [[Francis Ford Coppola]] |
32809 director = [[Francis Ford Coppola]] |
32810 writer = [[Joseph Conrad]] (novel)&lt;br&gt;[[John Milius]] &amp; [[Francis Ford Coppola]] (screenplay), [[Michael Herr]] (narration) |
32811 starring = [[Martin Sheen]]&lt;br&gt;[[Marlon Brando]]&lt;br&gt;[[Robert Duvall]] |
32812 music = [[Carmine Coppola]] &amp; [[Francis Ford Coppola]] |
32813 cinematography = [[Vittorio Storaro]] |
32814 editing = [[Lisa Fruchtman]]&lt;br&gt;[[Gerald B. Greenberg]] &lt;br&gt;[[Walter Murch]] |
32815 distributor = [[United Artists]] |
32816 released = [[May 10]], [[1979]] |
32817 runtime = 153 min.&lt;br/&gt;202 min. (Redux) |
32818 language = [[English language|English]] |
32819 budget = $31,500,000|
32820 }}
32821
32822 '''''Apocalypse Now''''' is a [[1979 in film|1979]] [[United States|American]] [[film]] directed by [[Francis Ford Coppola]] from a script by [[John Milius]] (rewritten by Coppola) which was inspired by [[Joseph Conrad]]'s classic [[novella]] ''[[Heart of Darkness]]''. Set during the [[Vietnam War]], the film tells the story of a taciturn American soldier who is sent to &quot;terminate with extreme prejudice&quot; the command of a rogue [[United States Army Special Forces]] [[colonel]]. The narrative of his journey and its culmination are studded with events which, while bizarre, are based on real Vietnam stories. The soldier's journey becomes increasingly nonlinear and hallucinatory. Coppola's agenda clearly involves larger themes; the film's subtext concerns a journey into the darkness of the human [[psyche]].
32823
32824 The film features performances by [[Martin Sheen]] as Captain Benjamin L. Willard (Marlow in Conrad's novel), [[Marlon Brando]] as Colonel Walter E. Kurtz, [[Dennis Hopper]] as a fast-talking [[Psychedelics, dissociatives and deliriants|hallucinogen]]-using photojournalist, and [[Robert Duvall]] in an [[Academy Award|Oscar]]-nominated turn as the borderline-[[psychosis|psychotic]] [[Lt. Colonel]] Kilgore. Several other actors who were (or later became) prominent stars had minor or supporting roles in the movie including [[Harrison Ford]], [[R. Lee Ermey]] and [[Laurence Fishburne]] (who, only fourteen years old when shooting began in March 1976, was credited as 'Larry Fishburne').
32825
32826 The movie poster art for ''Apocalypse Now'' is one of the more famous paintings by [[Bob Peak]], who is considered an influential artist in the world of film when it comes to [[movie poster]]s.
32827
32828 ==Background==
32829 Filmed in the [[Philippines]] (most notably the [[Pagsanjan River]] and [[Hidden Valley Springs]]), the film went far over budget and schedule: a [[typhoon]] destroyed many of the sets, the Philippine Air Force helicopters used for shooting were constantly called back by President [[Ferdinand Marcos]] to be used in actual combat, the lead role was recast (Martin Sheen replaced [[Harvey Keitel]] after shooting had begun), Sheen then had a near-fatal [[Myocardial infarction|heart attack]], Brando was intractable and out of shape, and Coppola himself was mentally fragile. Being similar in appearance and remarkably similar in voice, Martin Sheen's brother [[Joe Estevez]] [[Stand-in|stood in]] for the unwell Sheen in much of the film and some of the narration is by him.
32830
32831 After the first edit, the film was six hours long and had to be severely edited; the original released version was just over two and a half hours long. (Coppola re-released the film in [[2001]] under the title ''Apocalypse Now Redux'', restoring footage and sequences and lifting the running time to 200 minutes. Recent rumors have persisted that Coppola is considering releasing the true original cut on DVD, but there has been no fruition or conformation of this.) For background information on the film, see [[Eleanor Coppola]]'s documentary, ''[[Hearts of Darkness: A Filmmaker's Apocalypse]]'', released in [[1991]].
32832
32833 ==Synopsis==
32834 {{spoiler}}
32835
32836 U.S. Army Captain Benjamin L. Willard is stationed in [[Saigon]]; a seasoned veteran, he is deeply troubled and apparently no longer fit for civilian life. A group of [[Military intelligence|intelligence]] officers approach him with a special mission up-river into the remote [[Cambodia|Cambodian]] jungle to find Colonel Walter E. Kurtz, a former member of the [[United States Army Special Forces]].
32837
32838 They state that Kurtz, once considered a model officer and future [[general]], has apparently gone [[insane]] and is commanding a legion of his own [[Degar|Montagnard]] troops deep in [[Neutral country|neutral]] Cambodia. Their claims are supported by very disturbing radio broadcasts and/or recordings made by Kurtz himself. Willard is asked to undertake a mission to find Kurtz and dispose of him &quot;with extreme prejudice.&quot;
32839
32840 Willard studies the intelligence files during the boat ride to the river entrance and learns that Kurtz, isolated in his compound, has assumed the role of a warlord and is worshipped by the natives and his own loyal men. Another officer, sent earlier to kill Kurtz, has apparently become one of his lieutenants.
32841
32842 Willard will begin his trip up the [[Mekong River]] on a PBR ([[Patrol boat, rigid|Patrol Boat, River]]), with an eclectic crew composed of by-the-book and formal [[Chief Petty Officer|Chief]] Phillips, a black Navy boat commander; [[Petty Officer Third Class|GM3]] Lance B. Johnson, a tanned all-American [[California]] surfer; [[Petty Officer Third Class|GM3]] Tyrone, AKA &quot;Clean&quot;, a black 17-year-old from [[The Bronx]]; and the [[Cajun]] Engineman, Jay &quot;Chef&quot; Hicks.
32843
32844 [[Image:Apocalype Now Huey.jpg|thumbnail|The village attack scene in ''Apocalypse Now''.]]
32845
32846 The PBR arrives at a [[Landing Zone]] where Willard and the crew meet up with [[Lt. Colonel]] [[Bill Kilgore]], the merciless commander of the [[air cavalry|AirCav]] in the region, following a massive and hectic mopping-up operation of a conquered enemy town. Kilgore, a keen surfer, befriends Johnson. Later, he learns from one of his men that the beach down the coast which marks the opening to the river is perfect for [[surfing]], a factor which persuades him to capture it. The problem is, his troops say, it's &quot;[[Viet Cong|Charlie]]'s point&quot; and heavily fortified. Dismissing this complaint with the explanation that &quot;Charlie don't surf!&quot;, Kilgore orders his men to saddle up in the morning so that the AirCav can capture the town and the beach. Riding high above the coast in a fleet of [[UH-1 Iroquois|Huey]]s accompanied by [[Hughes H-6|H-6]]s, Kilgore launches an attack on the beach. The scene, famous for its use of [[Richard Wagner]]'s epic &quot;[[Ride of the Valkyries]]&quot;, ends with the soldiers surfing the barely claimed beach amidst skirmishes between infantry and VC. After helicopters swoop over the village and demolish all visible signs of resistance, a giant [[napalm]] strike in the nearby jungle dramatically marks the [[climax (narrative)|climax]] of the battle. &quot;I love the smell of [[napalm]] in the morning; smells like...victory,&quot; Kilgore exults to Willard. The quote made it to #12 onto the [[American Film Institute]]'s [[AFI's 100 Years... 100 Movie Quotes]], a list of top movie quotes.
32847
32848 [[Image:Apocalypse_Now_Smell_Like_Victory.jpg|thumbnail|&quot;I love the smell of napalm in the morning...It smells like...victory.&quot;]]
32849
32850 The lighting and mood darken as the boat navigates upstream and Willard's silent obsession with Kurtz deepens. Episodes on the journey include a run-in with a [[tiger]] while Willard and Chef search for [[mango]] fruits, an impromptu inspection of a Vietnamese [[sampan]] that leads to massacre, a surreal stop at the last American outpost during a Vietnamese attack against a wood bridge under construction there, and the shocking deaths of both &quot;Clean&quot; and Chief Phillips during a gunfire ambush with hidden Viet Cong soldiers and a spear thrown by a native on the shore, respectively.
32851
32852 Once arrived at Kurtz's compound, Willard leaves Chef behind with orders to call in an [[air strike]] on the village if he does not return. They are met by a borderline-psychotic freelance photographer (Hopper) who explains Kurtz's greatness and [[philosophy|philosophic]] skills to provoke his people into following him. Brought before Kurtz and held in captivity in a darkened temple, Willard’s constitution appears to weaken as Kurtz lectures him on his theories of war, [[humanity]], and [[civilization]]. Kurtz explains his motives and philisophy in a famous and haunting monolgue:
32853
32854 '' I've seen horrors... horrors that you've seen. But you have no right to call me a murderer. You have a right to kill me. You have a right to do that... but you have no right to judge me. It's impossible for words to describe what is necessary to those who do not know what horror means. Horror. Horror has a face... and you must make a friend of horror. Horror and moral terror are your friends. If they are not then they are enemies to be feared. They are truly enemies. I remember when I was with Special Forces. Seems a thousand centuries ago. We went into a camp to inoculate the children. We left the camp after we had inoculated the children for Polio, and this old man came running after us and he was crying. He couldn't see. We went back there and they had come and hacked off every inoculated arm. There they were in a pile. A pile of little arms. And I remember... I... I... I cried. I wept like some grandmother. I wanted to tear my teeth out. I didn't know what I wanted to do. And I want to remember it. I never want to forget it. I never want to forget.
32855
32856 ''And then I realized... like I was shot... like I was shot with a diamond... a diamond bullet right through my forehead. And I thought: My God... the genius of that. The genius. The will to do that. Perfect, genuine, complete, crystalline, pure. And then I realized they were stronger than we. Because they could stand that these were not monsters. These were men... trained cadres. These men who fought with their hearts, who had families, who had children, who were filled with love... but they had the strength... the strength... to do that. If I had ten divisions of those men our troubles here would be over very quickly. You have to have men who are moral... and at the same time who are able to utilize their primordial instincts to kill without feeling... without passion... without judgment... without judgment.'' '''Because it's judgment that defeats us'''.''
32857
32858 While bound outside in the pouring rain, Willard is approached by Kurtz, who places the severed head of Chef in his lap. Coppola makes little explicit, but we come to believe that Willard and Kurtz develop an understanding nonetheless; Kurtz wishes to die at Willard's hands, and Willard, having subsequently granted Kurtz his wish, is offered the chance to succeed him in his warlord-[[demigod]] role. Juxtaposed with a ceremonial slaughtering of a [[water buffalo]], Willard enters Kurtz's chamber during one of his message recordings, and kills him with a machete (This entire sequence is set to [[The End (The Doors song)|The End]] by [[The Doors]]). Lying bloody and dying on the ground, Kurtz whispers &quot;The horror...the horror.&quot; (This line is taken directly from Conrad's novella.) Willard walks through the now-silent crowd of natives until he comes upon Lance, who seems to have integrated himself into the society. The two of them make their way to the PBR and float away as Kurtz's final words echo in the wind as the screen fades to black.
32859
32860 ===''Redux''===
32861 In 2001 Coppola released ''Apocalypse Now: Redux'', which restored 49 minutes of scenes that were cut from the original film, including stopovers at a [[French people|French]] [[rubber]] plantation wherein Mr. Clean is buried and a rain-soaked American base camp. Nudity absent from the original was also included in the Redux, most notably at the French plantation and in an additional scene with the Playboy playmates (from the [[United Service Organizations|USO]] show.)
32862
32863 In this version, Willard steals Kilgore's surfboard, which can still be seen briefly onboard the PBR in the original cut.
32864
32865 ===Alternate Endings===
32866 Coppola denied having any actual alternative endings. In the [[DVD]] commentary, he states that they simply had a massive amount of footage to edit with and thus had some choices to make. They did consider using the explosion footage made during their destruction of the Kurtz compound, but he later decided that implying that the air strike had been called in was contrary to his wish to offer some slight hope that we could overcome the horrors of [[war]].
32867
32868 However, there are multiple slightly varying versions of the ending credits.
32869
32870 One version, from the 70mm release, ends with no credits, and shows the boat pulling away. Another version, for the 35mm wide release, rolls the credits while the Kurtz compound is destroyed in what must be assumed was an air strike. Yet another version ends silently, without the explosions, and the credits roll over a black background.
32871
32872 ==Themes==
32873 ''Apocalypse Now'' is a thematically rich film. The primary motif of the film is that of ''[[Heart of Darkness]]'', i.e. an odyssey into the darkness of humanity.
32874
32875 Willard's constant narration gives us a glimpse into his fractured psychological state particularly in the opening scenes where he lies in his bed and stares blankly into the ceiling. He relates that he is on his second tour of duty and that he returned because he was unable to re-integrate himself into civilian life.
32876
32877 :''Saigon... shit; I'm still only in Saigon... Every time I think I'm gonna wake up back in the jungle. When I was home after my first tour, it was worse. I'd wake up and there'd be nothing. I hardly said a word to my wife, until I said &quot;yes&quot; to a divorce. When I was here, I wanted to be there; when I was there, all I could think of was getting back into the jungle. I'm here a week now... waiting for a mission... getting softer; every minute I stay in this room, I get weaker, and every minute Charlie squats in the bush, he gets stronger. Each time I looked around, the walls moved in a little tighter.''
32878
32879 This chilling monologue besides suggesting how man is connected to war is also an allusion to [[post traumatic stress disorder]], a condition common to many Vietnam veterans. Willard's quest for Kurtz's compound parallels Kurtz's own descent into madness. He never tells his fellow shipmates of the PBR the true purpose of the mission and in a chilling scene, after his crew massacres people sailing on a sampan, Willard murders the surviving girl. Kurtz who was a committed family man and a highly respected colonel is driven insane after witnessing a vile incident commited by his enemies while on a peacekeeping mission. He realised that he can never win the war unless he surrenders his morality and kill without judgment. For Kurtz, this action drove him insane and so he gathered other disillusioned soldiers and started a strange, bizarre civilization in the Cambodian forest.
32880
32881 This is a subtle allusion to the bureaucracy that directs soldiers in the war. The bureaucrats propagandized the [[Vietnam War]] as a just cause to save the world from the evil of [[Communism]].
32882
32883 The general public and several Vietnam war veterans fiercely condemned the war and believed that the government lied and misled the public.
32884
32885 Even Willard who is assigned the mission is cynical about his mission from the beginning :
32886 : ''Charging a man with murder in this place was like handing out speeding tickets at the Indy 500''
32887
32888 {{spoiler}}
32889
32890 The climax at Kurtz's compound is the most confusing and the most frequently debated aspect of the film. Several critics believe it to be anticlimactic after the earlier more action oriented scenes and also the fact that it differs greatly from other war films in that there's no final battle scenario.
32891
32892 [[Roger Ebert]] in his original review defends the ending:
32893
32894 :''Coppola doesn't have an ending, if we or he expected the closing scenes to pull everything together and make sense of it. Nobody should have been surprised. &quot;Apocalypse Now&quot; doesn't tell any kind of a conventional story, doesn't have a thought-out message for us about Vietnam, has no answers, and thus needs no ending.The way the film ends now, with Brando's fuzzy, brooding monologues and the final violence, feels much more satisfactory than any conventional ending possibly could.''
32895
32896 When Willard arrives, he is captured and put into containment as he is 'interrogated' by Kurtz who lectures and drones on about his philosophies. While other interpretations exist, it can be assumed that Kurtz wishes to die a soldier's death and has been waiting for his death. But his followers refuse to kill him and Colby([[Scott Glenn]]) who was sent to kill him ended up joining his 'tribe'. He wishes or rather hopes that Willard would be able to do so. Willard, at first does not want to as he too is converted by Kurtz's beliefs but after Kurtz's monologue and his statement on judgment, Willard understands Kurtz's desire and so decides to complete his mission by subverting his moral judgment and justifies it to himself
32897
32898 :''Everybody wanted me to do it, him most of all. I felt like he was up there, waiting for me to take the pain away. He just wanted to go out like a soldier, standing up, not like some poor, wasted, rag-assed renegade. Even the jungle wanted him dead, and that's who he really took his orders from anyway.''
32899
32900 The 'jungle' is seen as a metaphor to nature or more specifically man's human nature. After killing Kurtz, Willard is revered by the denizens of Kurtz's tribe but he instead leaves suggesting that perhaps he is capable of escaping the horror of war.
32901
32902 ==Responses==
32903 ''Apocalypse Now'' premiered in [[1979]] to mixed reviews and received polarized responses from the audiences. It is said that it was as lauded as it was reviled. Many critics slammed the film, calling it overly pretentious, while others felt that it ended anticlimatically after a splendid first act.
32904
32905 [[Roger Ebert]], who hailed it as the best film of [[1979]] and added it to his list of Great Movies stated:
32906 :&quot;Apocalypse Now is the best Vietnam film, one of the greatest of all films, because it pushes beyond the others, into the dark places of the soul. It is not about war so much as about how war reveals truths we would be happy never to discover.&quot;
32907
32908 Today, the film is regarded by many as a masterpiece of the [[New Hollywood]] era. It is on the [[AFI's 100 Years... 100 Movies]] list at number 28. Kilgore's quote &quot;I love the smell of napalm in the morning&quot; was number 12 on the [[AFI's 100 Years... 100 Movie Quotes]] list. ''[[Sight and Sound]]'' magazine polled several critics to name the best film of the last 25 years and ''Apocalypse Now'' was named number 1.
32909
32910 The catastrophic production of the film unfortunately made it symbol of the dangers of excessive directorial control over a film. The production was said to have taken a toll on Coppola, both mentally and emotionally. To many cinephiles, ''Apocalypse Now'' is the last great film of a legendary director whose subsequent films have failed to match it in quality.
32911
32912 ==Adaptation==
32913 Although inspired by Joseph Conrad's ''Heart of Darkness'', the film deviates extensively from it. The novel takes place in the [[Belgian Congo]] in the [[19th century]]; Kurtz and Marlow (who is named Willard in the movie) are commercial agents of a [[Belgium|Belgian]] [[ivory]] company that brutally exploits its [[Africa|African]] native workers. In the novel, Marlow is sent to bring the ailing Kurtz home; in the movie, Willard is sent to kill Kurtz.
32914
32915 The character of Kilgore is an invention of the screenwriters. Nevertheless, Coppola has maintained many episodes (the spear and arrow attack on the boat, for example) that respect the spirit of the novel and in particular its critique of the concept of civilization and progress. The fact that Coppola substituted [[Europe|European]] colonization with [[United States|American]] [[interventionism (politics)|interventionism]] does not change the universal message of the book. [http://www.cyberpat.com/essays/coppola.html]
32916
32917 ==Influence==
32918 As one of the most [[icon]]ic films of the [[1900s|20th century]], the film has been referenced and [[parody|parodied]] countless times.
32919
32920 ===Film===
32921 * The film was parodied in a short film called ''[[Porklips Now]]'', about health inspector Will Dullard, who makes a trip to inspect the meat processing shop of a man named Mertz.
32922 * British film ''[[Nil by Mouth (film)|Nil by Mouth]]'', by ''[[Gary Oldman]]'', has a scene where the character Danny (played by ''[[Steve Sweeney]]'') dubs the scene that the photojournalist talks to Cap. Willard (when he is in the wood cage), as the film is played on a TV.
32923 * In ''[[True Romance]]'', [[Clarence Worley]] calls ''Apocalypse Now'' &quot;the greatest Vietnam film ever made&quot;.
32924 * ''[[Apocalypse Pooh]]'' is a nine-minute short which marries visuals from ''[[Winnie the Pooh]]'' cartoons with audio from ''Apocalypse Now''. Amazingly, they fit perfectly, following the basic [[plot]] well.
32925 * ''[[Hot Shots! Part Deux]]'' starring Sheen's son [[Charlie Sheen]] parodies the film. Martin Sheen, appearing once again as Willard, and Charlie Sheen's character ''Topper'' are depicted staring at each other while passing in opposite directions on PBRs on a river. As they meet each shouts in unison, &quot;I loved you in [[Wall Street (movie)|Wall Street]]!&quot;.
32926 * Another movie starring Charlie Sheen, ''[[The Chase (1994 film)|The Chase]]'', has a gag scene after the end credits, in which Sheen quotes Kilgore's famous napalm line.
32927 * In ''[[Jarhead (film)|Jarhead]]'', shortly before &quot;Swoff&quot; and the guys are sent into action, they are watching ''Apocalypse Now'' in a theater inside the base, singing along and interacting with the infamous helicopter attack scene, much in the way one would at a ''[[Rocky Horror Picture Show]]'' screening. Oddly enough, Walter Murch was editor/sound designer for both Apocalypse Now &amp; Jarhead.
32928 * In ''[[Back to the Future Part II (film)|Back to the Future 2]]'', right after Marty meets up with Doc and the police take Jennifer away, you can see a sign behind them reading &quot;Surf Vietnam.&quot;
32929
32930 ===Television===
32931 * In an episode of ''[[Seinfeld]]'', [[Elaine Benes]] visits her employer, [[J. Peterman]], in a scene that parodies Willard's eventual meeting with Kurtz.
32932 * The same scene is also parodied in an episode of ''[[Sealab 2021]]'', with Captain Murphy as Kurtz and Marco as Willard.
32933 * Parodied in the episode &quot;[[Kamp Krusty]]&quot; of ''[[The Simpsons]]'' with [[Bart Simpson|Bart]] assuming the role of Kurtz. [[Marge Simpson]] also tells her husband, [[Homer Simpson|Homer]], in another episode, ''&quot;your character provides the comic relief, like Marlon Brando in Apocalypse Now&quot;''. The 'Ride of the Valkyries' helicopter sequence was humorously homaged in a &quot;[[Treehouse of Horror]]&quot; short.
32934 * In an episode of ''[[The Critic]]'', one of the films Jay Sherman reviews is a [[musical]] remake titled &quot;Apocalypse Wow.&quot;
32935 * The episode &quot;Eekpocalypse Now!&quot; of the cartoon series ''[[Eek! the Cat]]'' cast Eek as Willard, Elmo the Elk as Colonel Kilgore and Sharky the Sharkdog as Colonel Kurtz.
32936 * In the ''[[Buffy the Vampire Slayer]]'' episode &quot;Restless,&quot; contains [[Xander]]'s dream version of ''Apocalypse Now'', including [[Principal Snyder]] as Kurtz.
32937 * [[Claymation]] cartoonist Corky Quakenbush produced &quot;''A Pack of Gifts Now''&quot;, which is part of his [[Rudolph the Red-Nosed Reindeer (television special)|Rudolph]] Trilogy (the other two being &quot;''Raging Rudolph''&quot; and &quot;''The Reinfather''.&quot;) The short is set in [[Saskatchewan]], with Rudolph in the Willard role and [[Santa Claus]] in the Kurtz role. Rudolph's mission is to &quot;terminate the Kringle (Santa) with extreme prejudice.&quot; This short would air on the Christmas edition of ''[[MadTV]]'' in 1999.
32938 * In the TV series ''[[Scrubs (TV show)|Scrubs]]'', the episode &quot;My Heavy Meddle&quot; ends with the janitors comment: &quot; The horror!&quot;, quoting Kurtz.
32939 * In an episode of ''[[Animaniacs]]'', [[Warner Brothers]] sends Yakko, Wakko and Dot Warner on a mission to stop a crazed movie director (a parody of [[Jerry Lewis]]) from filming a movie the studio had cancelled. The trio find the director, who has created a kingdom for himself in which [[stunt double]]s worship him. They stop the film and smash him with a 50 ton weight. His last words are &quot;The hurting... the hurting...&quot; Throughout the episode, a singer who looks very much like [[Jim Morrison]] drones &quot;This is the ending, the ending of our story, the ending.&quot;
32940 * &quot;Musings of a Cigarette Smoking Man,&quot; an ''[[X-Files]]'' episode features a flashback scene where &quot;the Cigarette Smoking Man&quot; is tasked with the assassination of [[John F. Kennedy]]. The scene has many things similar or identical to the Scene where Willard is tasked with the assassination of Kurtz, most prominently both have a question that goes something like &quot;have you ever met myself this man or the general before?&quot; to which Willard and the CSM both reply &quot;Not personally&quot;.
32941 * The cartoon ''[[Yvon of the Yukon]]'' has an episode that parodies the opening scene, as well as a helicopter pilot stating &quot;I love the smell of lip balm in the morning&quot;
32942 * In a sketch in [[Alas Smith and Jones]], [[Mel Smith]] sits in a darkened room and expresses philosophies similar to that of Kurtz at length to a man who has been sent to find him, at the end of the sketch [[Griff Rhys Jones]] switches on the light to reveal that they are in fact sitting in a rather mundane bathroom with Smith sitting in the bath. Jones (a fairly dull [[Her Majesty's Revenue and Customs|tax inspector]] perched on the toilet) reveals that he is merely investigating Smith for [[Child benefit]] fraud.
32943
32944 ===Music===
32945 * [[Iron Maiden]]'s &quot;The Edge of Darkness&quot; on their album ''[[The X Factor (album)|The X Factor]]'' (1995) is very closely based on the film. Most lyrics are very close to being a direct quote from the movie.
32946 * The [[Canada|Canadian]] band [[Death From Above 1979]] take their name from the 'Death From Above' motto on Kilgore's helicopter.
32947 * The band [[Dismember]] uses the quote &quot;I love the smell of napalm in the morning!&quot; to start of their song &quot;Let the Napalm Rain.&quot;
32948 * The band [[Sodom (band)|Sodom]] uses the full quote, including &quot;smells like... victory&quot; in their song &quot;Napalm in the Morning&quot;.
32949 * The band [[Ministry (band)|Ministry]] uses a sample of Dennis Hopper saying &quot;Alright, it's alright&quot; on their song &quot;N.W.O.&quot;
32950 * The band [[The Clash]]'s song &quot;Charlie Don't Surf&quot; from their album [[Sandinista!]] derives its title and concept from the movie.
32951 * The band [[Milhaven]] samples extensively from Kurtz's monologue at the end of the film in their song &quot;Drink a Pint of Blood a Day.&quot;
32952 * [[Jedi Mind Tricks]] use a few clips on their CD release Violent By Design.
32953 * [[2Pacalypse Now]] was rapper [[Tupac Shakur]]'s debut album, released in November 1991.
32954 * [[The Dead Milkmen]] song &quot;Beach Party Vietnam&quot; is a parody of the surfing scene, and the Vietnam War in general.
32955 * [[Fall Silent]] incorporates a clip of Marlow's &quot;The Horror...the horror&quot; in their song entitled &quot;The Great White Death.&quot;
32956
32957 ===Video games===
32958 * In the videogame ''[[World of Warcraft]]'', a series of quests in the Stranglethorn Vale zone take you to the camp of a crazed Colonel Kurzen who has [[brainwash]]ed his men, in an attempt to kill the Colonel.
32959 *In a homage to the infamous village attack scene, the computer game &quot;[[Battlefield Vietnam]]&quot; offers up &quot;[[Ride of the Valkyries]]&quot; as a song to be played while inside helicopters and other vehicles.
32960 * The Half-Life singleplayer mod 'Heart of Evil' is partly inspired by the film (the Vietnam War setting, a U.S. Army captain sent to assassinate a rogue colonel, the helicopter ride with &quot;[[Ride of the Valkyries]]&quot; in the background, the boat ride to the colonel's compound).
32961 *In [[StarCraft]], one of the Firebat's quotes is &quot;I love the smell of napalm.&quot; The Firebats are flamethrower wielding infantry.
32962
32963 ===Literature===
32964 * The ''[[Star Wars]]'' novel ''[[Shatterpoint]]'', written by [[Matthew Stover]], is based on ''Apocalypse Now''.
32965 * Before the members of the SAS patrol leave England in the book [[Bravo Two Zero]] by [[Andy McNab]], they watch ''Apocalypse Now''.
32966
32967 ==Primary cast==
32968 *[[Marlon Brando]] - Col. Walter E. Kurtz
32969 *[[Martin Sheen]] - [[Captain#Army, Marine Corps and Air Force|Capt.]] Benjamin L. Willard
32970 *[[Dennis Hopper]] - &quot;American [[photojournalist]]&quot;
32971 *[[Robert Duvall]] - Lt. Col. Bill Kilgore
32972 *[[Frederic Forrest]] - &quot;Chef&quot;, sailor
32973 *[[Albert Hall]] - Chief Phillips, Navy boat commander
32974 *[[Sam Bottoms]] - Lance B. Johnson, sailor and famous surfer
32975 *[[Laurence Fishburne]] - Tyrone, AKA &quot;Clean&quot;, sailor
32976 *[[G. D. Spradlin]] - Gen. Corman, [[military intelligence|G-2]]
32977 *[[Harrison Ford]] - Col. Lucas, aide to Corman
32978 *[[Scott Glenn]] - Lt. Richard M. Colby, previously assigned Willard's current mission
32979 *[[Tom Mason]] - supply sgt.
32980 *[[Colleen Camp]] - [[Playmate]], &quot;Miss May&quot;
32981
32982 '''Award wins:'''
32983 *[[Cannes Film Festival]] : [[Palme d'Or]]
32984 *[[Academy Award for Best Cinematography]] ([[Vittorio Storaro]])
32985 *[[Academy Award for Sound]] ([[Richard Beggs]], [[Mark Berger]], [[Nathan Boxer]] and [[Walter Murch]])
32986 *[[Golden Globe Award for Best Director - Motion Picture|Golden Globe Award for Best Director]] ([[Francis Ford Coppola]])
32987 *[[Golden Globe Award for Best Supporting Actor - Motion Picture|Golden Globe Award for Best Supporting Actor]] ([[Robert Duvall]])
32988 *[[Golden Globe|Golden Globe Award for Best Original Score - Motion Picture]] ([[Carmine Coppola]] &amp; [[Francis Ford Coppola]])
32989
32990 In 2000 the United States [[Library of Congress]] deemed the film &quot;[[cultural significance|culturally significant]]&quot; and selected it for preservation in the [[National Film Registry]].
32991
32992 It is widely believed that ''Apocalypse Now'' did not win the Best Picture Oscar in 1979 due to the fact that another Vietnam epic, ''[[The Deer Hunter]]'', had just won the previous year. It is often regarded as a far superior film to the 1979 winner of the award, ''[[Kramer vs. Kramer]]''.
32993
32994 '''Award nominations:'''
32995 *[[Academy Award for Best Picture]]
32996 *[[Golden Globe Award for Best Motion Picture - Drama]]
32997 *[[Academy Award for Best Supporting Actor]] - ([[Robert Duvall]])
32998 *[[Academy Award for Best Art Direction|Academy Award for Best Art Direction - Set Decoration]] ([[Angelo P. Graham]], [[George R. Nelson]] and [[Dean Tavoularis]])
32999 *[[Academy Award for Directing]] ([[Francis Ford Coppola]])
33000 *[[Academy Award for Film Editing]] ([[Lisa Fruchtman]], [[Gerald B. Greenberg]], [[Richard Marks]] and [[Walter Murch]])
33001 *[[Academy Award for Writing Adapted Screenplay|Best Writing, Screenplay Based on Material from Another Medium]] ([[Francis Ford Coppola]] &amp; [[John Milius]])
33002 *[[Writers Guild of America|WGA Award for Best Drama Written Directly for the Screen]] ([[John Milius]] &amp; [[Francis Ford Coppola]])
33003 *[[Grammy Award for Best Score Soundtrack Album for a Motion Picture, Television or Other Visual Media|Grammy Award for Best Original Score Written for a Motion Picture]] ([[Carmine Coppola]] &amp; [[Francis Ford Coppola]])
33004
33005 ==Quotes==
33006 * &quot;You smell that? Do you smell that? ... Napalm, son. Nothing else in the world smells like that. I love the smell of napalm in the morning. You know, one time we had a hill bombed, for twelve hours. When it was all over I walked up. We didn't find one of 'em, not one stinkin' dink body. The smell, you know that gasoline smell, the whole hill. Smelled like ... victory. Someday this war's gonna end.&quot; - Lt. Col. Bill Kilgore
33007 * &quot;I watched a snail crawl along the edge of a straight razor. That's my dream. That's my nightmare. Crawling, slithering, along the edge of a straight razor, and surviving.&quot; - Col. Walter E. Kurtz (on tape)
33008 * &quot;We train young men to drop fire on people, but their commanders won't allow them to write &lt;nowiki&gt;'fuck'&lt;/nowiki&gt; on their airplanes because ... it's obscene!&quot; - Col. Walter E. Kurtz
33009 * &quot;They were gonna make me a major for this, and I wasn't even in their fuckin' army anymore.&quot; - Captain Willard
33010 * &quot;Charging a man with murder in this place was like handing out speeding tickets at the Indy 500&quot; - Willard, when beginning his assigned mission
33011 * &quot;What are they going to say? That he was a kind man? That he was a wise man? That he had plans? Bullshit!&quot; - The photojournalist to Willard, on how Kurtz will be remembered
33012 * &quot;Never get out of the boat!&quot; - Chef
33013 * &quot;I wanted a mission, and for my sins they gave me one. Brought it up to me like room service. It was a real choice mission, and after it was done, I'd never want another.&quot; - Willard.
33014
33015 ==External links==
33016 {{wikiquote}}
33017 *{{imdb title|id=0078788|title=Apocalypse Now}}
33018 *{{filmsite|id=apoc|title=Apocalypse Now}}
33019
33020 &lt;!-- Robert Duvall --&gt;
33021
33022 [[Category:1979 films]]
33023 [[Category:Best Picture Oscar Nominee]]
33024 [[Category:Best Supporting Actor Oscar Nominee (film)]]
33025 [[Category:Cult films]]
33026 [[Category:Films based on short fiction]]
33027 [[Category:Films directed by Francis Ford Coppola]]
33028 [[Category:Palme d'Or winners]]
33029 [[Category:United States National Film Registry]]
33030 [[Category:Vietnam War films]]
33031 [[Category:Anti-Military Movies]]
33032
33033 [[da:Apocalypse Now]]
33034 [[de:Apocalypse Now]]
33035 [[es:Apocalypse Now]]
33036 [[fr:Apocalypse Now]]
33037 [[io:Apocalypse Now]]
33038 [[it:Apocalypse Now]]
33039 [[he:אפוקליפסה ×ĸכשיו]]
33040 [[nl:Apocalypse Now]]
33041 [[ja:地į„ぎéģ™į¤ē録]]
33042 [[no:Apokalypse nÃĨ!]]
33043 [[pl:Czas Apokalipsy]]
33044 [[pt:Apocalypse Now]]
33045 [[ru:АĐŋĐžĐēĐ°ĐģиĐŋŅĐ¸Ņ ŅĐĩĐŗОдĐŊŅ (Ņ„иĐģŅŒĐŧ)]]
33046 [[sk:Apokalypsa (film)]]
33047 [[sv:Apocalypse]]
33048 [[zh:įŽ°äģŖ启į¤ēåŊ•]]</text>
33049 </revision>
33050 </page>
33051 <page>
33052 <title>AlbaniaCommunications</title>
33053 <id>807</id>
33054 <revision>
33055 <id>15899321</id>
33056 <timestamp>2002-10-09T13:51:13Z</timestamp>
33057 <contributor>
33058 <username>Magnus Manske</username>
33059 <id>4</id>
33060 </contributor>
33061 <minor />
33062 <comment>#REDIRECT [[Communications in Albania]]</comment>
33063 <text xml:space="preserve">#REDIRECT [[Communications in Albania]]</text>
33064 </revision>
33065 </page>
33066 <page>
33067 <title>Alfred Hitchcock</title>
33068 <id>808</id>
33069 <revision>
33070 <id>42010697</id>
33071 <timestamp>2006-03-03T05:03:26Z</timestamp>
33072 <contributor>
33073 <ip>24.5.197.100</ip>
33074 </contributor>
33075 <comment>/* Hollywood */</comment>
33076 <text xml:space="preserve">{{Infobox Celebrity
33077 | name = Alfred Hitchcock
33078 | image = Alfred Hitchcock.JPG
33079 | caption = Alfred Hitchcock introduces the ''[[Alfred Hitchcock Presents]]'' episode &quot;The Sorcerer's Apprentice.&quot;
33080 | birth_date = [[13 August]] [[1899]]
33081 | birth_place = [[Leytonstone]], [[London]], [[United Kingdom|UK]]
33082 | death_date = [[29 April]] [[1980]]
33083 | death_place = [[Bel-Air, Los Angeles, California|Bel Air]], [[Los Angeles, California|Los Angeles]], [[United States|USA]]
33084 | occupation = [[film]] [[film director|director]] and [[film producer|producer]]
33085 | spouse = [[Alma Reville]]
33086 }}
33087 '''Sir Alfred Joseph Hitchcock''' [[Order of the British Empire|KBE]] ([[13 August]] [[1899]]&amp;ndash;[[29 April]] [[1980]]) was a [[United Kingdom|British]]-born [[film]] [[film director|director]] and [[film producer|producer]], closely associated with the [[suspense]] [[thriller]] genre. He began directing in the [[United Kingdom]] before working mostly in the [[United States]] from 1939 onwards, taking out dual citizenship in 1956. He directed more than fifty feature films in a career spanning six decades, from the [[silent film]] era, through the invention of [[talkie]]s, to the [[color]] era. Hitchcock remains one of the best known and most popular directors of all time, famous for his expert and largely unrivaled control of pace and suspense throughout his movies.
33088
33089 Hitchcock's films draw heavily on both [[fear]] and [[fantasy]], and are known for their droll humour. They often portray innocent people caught up in circumstances beyond their control or understanding. This often involves a ''[[transference]] of guilt'' in which the &quot;innocent&quot; character's failings are transferred to another character and magnified. Another common theme is the exploration of the compatibility of men and women; Hitchcock's films often take a [[cynicism|cynical]] view of traditional romantic relationships.
33090
33091 Although Hitchcock was an enormous [[superstar|star]] during his lifetime, he was not usually ranked highly by contemporaneous [[film critic]]s. ''[[Rebecca (film)|Rebecca]]'' was the only one of his films to win the [[Academy Award for Best Picture]], although four others were nominated. Hitchcock never won the Academy Award for Best Director. He was awarded the [[Irving G. Thalberg Memorial Award]] for lifetime achievement in 1967, but never personally received an [[Academy Award|Academy Award of Merit]]. The [[French New Wave]] critics, especially [[Éric Rohmer]], [[Claude Chabrol]], and [[François Truffaut]], were among the first to promote his films as having [[artistic merit]] beyond entertainment. Hitchcock was one of the first directors to whom they applied their [[auteur theory]], which stresses the artistic authority of the director in the film-making process.
33092
33093 Through his fame, public persona, and degree of creative control, Hitchcock transformed the role of the director, which had previously been eclipsed by that of the producer. He is seen today as the quintessential director who managed to combine art and entertainment in a way very few have ever matched. His innovations and vision have influenced a great number of filmmakers, producers, and [[actor]]s.
33094
33095 ==Biography==
33096 &lt;!--- The following is okay, with more biographical material, some trimming of minor films, and less of a &quot;laundry-list&quot; exposition ---&gt;
33097
33098 ===Early life===
33099 Alfred Hitchcock was born on [[August 13]], [[1899]], in [[Leytonstone]], [[London]], the second son and youngest of the three children of William Hitchcock, a greengrocer, and his wife, Emma Jane Hitchcock (nee Whelan). His family was mostly [[Irish Catholic]]. Hitchcock was sent to Catholic boarding schools in London. He has said his childhood was very lonely and sheltered.
33100
33101 At an early age, after acting childishly, Hitchcock claimed that his father sent him to the local police station carrying a note. When he presented the police officer on duty with the note, he was locked in a cell for a few moments, petrifying the young child. This was a favorite anecdote of his, one which is often suggested to be the cause for the theme of distrust of police which runs through many of his films.
33102
33103 At 14, Hitchcock lost his father and left the Jesuit-run [[St Ignatius' College]] in [[Stamford Hill]], his school at the time, to study at the School for Engineering and Navigation. After graduating, he became a [[technical drawing|draftsman]] and [[advertising]] designer with a cable company.
33104
33105 About that time, Hitchcock became intrigued by [[photography]] and started working in film in London. In 1920, he obtained a full-time job at Islington Studios under its American owners, [[Famous Players Film Company|Players]]-Lasky, and their British successors, [[Gainsborough Pictures]], designing the titles for silent movies.
33106
33107 ===Pre-war British career===
33108 As a major talent in a new industry with plenty of opportunity, he rose quickly. In 1925, [[Michael Balcon]] of Gainsborough Pictures gave him a chance to direct his first film, ''[[The Pleasure Garden (1925 film)|The Pleasure Garden]]'', made at the [[Universum Film AG|Ufa studios]] in Germany. However, the commercial failure of this film, and his second, ''[[The Mountain Eagle]]'', threatened to derail his promising career, until he attached himself to the thriller genre. The resulting film, ''[[The Lodger: A Story of the London Fog]]'', was released in [[1927 in film|1927]] and was a major commercial and critical success. Like many of his earlier works it was influenced by [[German Expressionism|Expressionist]] techniques he had witnessed first hand in Germany. In it, attractive blondes are strangled and the new lodger ([[Ivor Novello]]) in the Bunting family's upstairs apartment falls under heavy suspicion. This is the first truly &quot;Hitchcockian&quot; film, incorporating such themes as the &quot;wrong man&quot;.
33109
33110 Following the success of ''The Lodger'', Hitchcock began his first efforts to promote himself in the media, and hired a publicist to cement his growing reputation as one of the British film industry's rising stars. In 1926, he was to marry his assistant director [[Alma Reville]]. They had a daughter, Patricia, in 1928. Alma was Hitchcock's closest collaborator. She wrote some of his screenplays and worked with him on every one of his films.
33111
33112 In 1929, he began work on ''[[Blackmail (1929 film)|Blackmail]]'', his tenth film. While the film was in production, the studio decided to make it one of Britain's first sound pictures. With the climax of the film taking place on the dome of the [[British Museum]], ''Blackmail'' also began the Hitchcock tradition of using famous landmarks as the backdrop to a story.
33113
33114 In 1933, Hitchcock was once again working for Michael Balcon at Gaumont-British Picture Corporation. His first film for the company, ''[[The Man Who Knew Too Much (1934 film)|The Man Who Knew Too Much]]'' (1934), was a success, while his second, ''[[The 39 Steps (1935 film)| The 39 Steps]]'' (1935), is often considered one of the best films from his early period. It was also one of the first to introduce the concept of the &quot;[[MacGuffin]]&quot;, a plot device around which a whole story would revolve. In ''The 39 Steps'', the MacGuffin is a stolen set of blueprints.
33115
33116 His next major success was in 1938, ''[[The Lady Vanishes]]'', a clever and fast-paced film about the search for a kindly old Englishwoman ([[Dame May Whitty]]), who disappears while on board a train in the fictional country of Vandrika (a thinly-veiled version of [[Nazi]] [[Germany]]).
33117
33118 By the end of the 1930s, Hitchcock was at the top of his game artistically, and in a position to name his own terms when [[David O. Selznick]] managed to entice the Hitchcocks across to Hollywood.
33119
33120 ===Hollywood===
33121 Hitchcock's ''[[gallows humour]]'' continued in his American work, together with the suspense that became his trademark. However, working arrangements with his new producer were less than optimal. Selznick suffered from perennial money problems and Hitchcock was often unhappy with the amount of creative control demanded by Selznick over his films. Subsequently, Selznick ended up &quot;loaning&quot; Hitchcock to the larger studios more often than producing Hitchcock's films himself.
33122
33123 With the prestigious picture ''[[Rebecca (film)|Rebecca]]'' in 1940, Hitchcock made his first American movie, although it was set in England and based on a novel by English author Dame [[Daphne du Maurier]]. This [[Gothic novel|Gothic]] [[melodrama]] explores the fears of a naïve young bride who enters a great English country home and must grapple with a distant husband, a predatory housekeeper, and the legacy of her husband's late wife. It has also subsequently been noted for the lesbian undercurrents in [[Judith Anderson]]'s performance. The film won the [[Academy Award]] for [[Academy Award for Best Picture|Best Picture]] of 1940. Hitchcock's second American film, the European-set thriller ''[[Foreign Correspondent]]'' was also nominated for Best Picture that year.
33124
33125 Hitchcock's work during the 1940's was very diverse, ranging from the romantic comedy, ''[[Mr. &amp; Mrs. Smith (1941 film)|Mr. &amp; Mrs. Smith]]'' (1941) and the courtroom drama ''[[The Paradine Case]]'' (1947), to the dark and disturbing ''Shadow of a Doubt'' (1943).
33126
33127 ''[[Shadow of a Doubt]]'', his personal favorite, was about young Charlotte &quot;Charlie&quot; Newton ([[Teresa Wright]]), who suspects her beloved uncle Charlie Spencer ([[Joseph Cotten]]) of murder. In its use of overlapping characters, dialogue, and closeups it has provided a generation of film theorists with psychoanalytic potential, including [[Jacques Lacan]] and [[Slavoj ÅŊiÅžek]]. The film also harkens to one of Cotten's better known films, ''[[Citizen Kane]]''.
33128
33129 ''[[Spellbound (1945 film)|Spellbound]]'' explored the then very fashionable subject of [[psychoanalysis]] and featured a dream sequence which was designed by [[Salvador Dali]]. The actual dream sequence in the film was considerably cut from the original planned scene that was to run for some minutes but proved too disturbing for the finished film.
33130
33131 ''[[Notorious]]'' (1946) marked Hitchcock's first film as a producer as well as director. As Selznick failed to see the subject's potential, he allowed Hitchcock to make the film for [[RKO]]. From this point on, Hitchcock would produce his own films, giving him a far greater degree of freedom to pursue the projects that interested him. Starring [[Ingrid Bergman]] and Hitchcock regular [[Cary Grant]], and featuring a plot about Nazis, uranium, and South America, ''[[Notorious]]'' was a huge box office success and has remained one of Hitchcock's most acclaimed films. Its inventive use of suspense and props briefly led to Hitchcock being under surveillance by the [[CIA]] due to his use of [[uranium]] as a plot device.
33132
33133 ''[[Alfred Hitchcock's Rope|Rope]]'' (his first color film) came next in 1948. Here Hitchcock experimented with marshalling suspense in a confined environment, as he had done earlier with ''[[Lifeboat (film)|Lifeboat]]''. He also experimented with exceptionally long takes - up to ten minutes (see [[Alfred Hitchcock#Themes and devices|Themes and devices]]). Featuring [[James Stewart]] in the leading role, ''Rope'' was the first of an eventual four films Stewart would make for Hitchcock. Based on the [[Leopold and Loeb]] case of the 1920s, ''Rope'' is also among the earliest openly gay-themed films to emerge from the [[Hays Office]] controlled Hollywood studio era.
33134
33135 ''[[Under Capricorn]]'', set in nineteenth-century Australia, also used this short-lived technique, but to a more limited extent. For these two films he formed a production company with Sidney Bernstein, called Transatlantic Pictures, which folded after these two unsuccessful pictures.
33136
33137 ===Peak years and decline===
33138 With ''[[Strangers on a Train]]'' (1951), his first epic film based on the novel by [[Patricia Highsmith]], Hitchcock combined many of the best elements from his preceding British and American films. Two men casually meet and speculate on removing people who are causing them difficulty. One of the men, though, takes this banter entirely seriously. With [[Farley Granger]] reprising some elements of his role from ''Rope'', ''Strangers'' continued the director's interest in the narrative possiblities of homosexual blackmail and murder.
33139
33140 Three very popular films, all starring [[Grace Kelly]], followed. ''[[Dial M for Murder]]'' was adapted from the popular stage play by Frederick Knott. This was originally another experimental film, with Hitchcock using the technique of [[3-D film|3D]] cinematography, although the film was never released in this format. ''[[Rear Window]]'', starred James Stewart again, as well as [[Thelma Ritter]] and [[Raymond Burr]]. Here the wheelchair-bound Stewart observes the movements of his neighbours across the courtyard and becomes convinced one of them has murdered his wife. Like ''[[Lifeboat]]'' and ''[[Rope]]'', the movie was photographed almost entirely within the confines of a small space: Stewart's tiny studio apartment overlooking the massive courtyard set. ''[[To Catch a Thief]]'', set in the French Riviera, starred Kelly and [[Cary Grant]].
33141
33142 In 1956, Hitchcock also remade his 1934 film ''[[The Man Who Knew Too Much (1956 film)|The Man Who Knew Too Much]]'', this time with [[James Stewart]] and [[Doris Day]].
33143
33144 1958's ''[[Vertigo (film)|Vertigo]]'' again starred Stewart, this time with [[Kim Novak]] and [[Barbara Bel Geddes]]. The film was a commercial failure, but has come to be viewed by many as one of Hitchcock's masterpieces.
33145
33146 Hitchcock followed ''Vertigo'' with three very different films, which were all massive commercial successes. All are also recognised as among his very best films: ''[[North by Northwest]]'' (1959), ''[[Psycho]]'' (1960), and ''[[The Birds (film)|The Birds]]'' (1963). The latter two were particularly notable for their unconventional soundtracks, both by [[Bernard Herrmann]]: the screeching strings in the murder scene in ''Psycho'' pushed the limits of the time, and ''The Birds'' dispensed completely with conventional instruments, using an electronically produced soundtrack. These were his last great films, after which his career slowly wound down. In 1972 Hitchcock returned to [[London]] to film ''[[Frenzy]]'', his last major success. For the first time, Hitchcock allowed nudity and profane language, which had before been taboo, in one of his films.
33147
33148 Failing health slowed down his output over the last two decades of his life.
33149
33150 ''[[Family Plot]]'' (1976) was his last film. It related the escapades of &quot;Madam&quot; Blanche Tyler played by [[Barbara Harris (actress)|Barbara Harris]], a fraudulent spiritualist, and her taxi driver lover [[Bruce Dern]] making a living from her phony powers. [[William Devane]] and [[Katherine Helmond]] co-starred.
33151
33152 Hitchcock was created a [[Order of the British Empire|Knight Commander of the Order of the British Empire]] by [[Elizabeth II of the United Kingdom|Queen Elizabeth II]] in the 1980 [[New Years Honours]]. He died just four months later, on [[April 29]], before he had the opportunity to be formally invested by the Queen. He was nevertheless entitled to be known as '''Sir Alfred Hitchcock''' and to use the postnominal letters [[KBE]], because he remained a British subject when he adopted American citizenship in 1956.
33153
33154 Alfred Hitchcock died from [[renal failure]] in his [[Bel Air]], [[Los Angeles]], home aged 80, and was survived by his wife [[Alma Reville]], and their daughter, Patricia Hitchcock O'Connell. His body was cremated, and apparently there was no public funeral or memorial service.
33155
33156 ==Themes and devices==
33157 Hitchcock preferred the use of suspense over surprise in his films. In surprise, the director assaults the viewer with frightening things. In suspense, the director tells or shows things to the audience which the characters in the film do not know, and then artfully builds tension around what will happen when the characters finally learn the truth.
33158
33159 Further blurring the moral distinction between the innocent and the guilty, occasionally making this indictment clear, Hitchcock also makes voyeurs of his &quot;respectable&quot; audience. In ''Rear Window'' ([[1954 in film|1954]]), after L. B. Jeffries (played by James Stewart) has been staring across the courtyard at him for most of the film, Lars Thorwald (played by [[Raymond Burr]]) confronts Jeffries by saying &quot;What do you want of me?&quot; Burr might as well have been addressing the audience. In fact, shortly before asking this, Thorwald turns to face the camera directly for the first time &amp;mdash; at this point, audiences often gasp.
33160
33161 One of Hitchcock's favourite devices for driving the plots of his stories and creating suspense was what he called the &quot;[[MacGuffin]].&quot; The plots of many of his suspense films revolve around a &quot;MacGuffin&quot;: a detail which, by inciting curiosity and desire, drives the plot and motivates the actions of characters within the story, but whose specific identity and nature is unimportant to the spectator of the film. In ''[[Vertigo (film)|Vertigo]]'', for instance, &quot;Carlotta Valdes&quot; is a MacGuffin; she never appears and the details of her death are unimportant to the viewer, but the story about her ghost's haunting of Madeleine Elster is the spur for Scottie's investigation of her, and hence the film's entire plot. In ''[[Notorious]]'' the uranium that the main characters must recover before it reaches Nazi hands serves as a similarly arbitrary motivation: any dangerous object would suffice. And state secrets of various kinds serve as MacGuffins in several of the spy films, like ''[[The 39 Steps (1935 film)| The 39 Steps]]''.
33162
33163 Most of Hitchcock's films contain [[cameo role|cameo]] [[List of Alfred Hitchcock cameo appearances|appearances by Hitchcock himself]]: the director would be seen for a brief moment boarding a bus, crossing in front of a building, standing in an apartment across the courtyard, or appearing in a photograph. This playful gesture became one of Hitchcock's signatures. As a recurring theme he would carry a musical instrument &amp;mdash; especially memorable was the large double bass case that he wrestles onto the train at the beginning of ''[[Strangers on a Train]]''.
33164
33165 In his earliest appearances he would fill in as an obscure extra, standing in a crowd or walking through a scene in a long camera shot. But he became more prominent in his later appearances, as when he turns to see [[Jane Wyman]]'s disguise when she passes him on the street in ''[[Stage Fright]]'', and in stark silhouette in his final film ''[[Family Plot]]''. In another amusing cameo, albeit just a photograph, Hitchcock's picture is seen in the &quot;before&quot;
33166 side of a newspaper weight loss ad in ''[[Lifeboat]]''. (See a [[list of Hitchcock cameo appearances]].)
33167
33168 Hitchcock includes the consumption of brandy in nearly every sound film. &quot;I'll get you some brandy. Drink this down. Just like medicine ...&quot; says James Stewart's character to [[Kim Novak]], in ''Vertigo.'' In a real life incident, Hitchcock dared Montgomery Clift at a dinner party around the filming of ''I Confess'' to swallow a carafe of brandy, which caused his lead actor to pass out, almost immediately. This near obsession with brandy remains unexplained.
33169
33170 Another almost inexplicable feature of any Hitchcock film is the inclusion of a staircase. Of course, stairways inspire many suspenseful moments, most notably [[Farley Granger]]'s character visit to the murderer in ''[[Strangers On A Train]]'' or the detective's demise in the Bates' mansion in ''Psycho.'' However, a completely nonfunctional staircase adorns the apartment of the James Stewart character in ''[[Rear Window]]'', as if Hitchcock feels compelled to its inclusion by some unspoken superstition.
33171
33172 Hitchcock seemed to delight in the technical challenges of filmmaking. In ''Lifeboat'', Hitchcock sets the entire action of the movie in a small boat, yet manages to keep the cinematography from monotonous repetition. His trademark cameo appearance was a dilemma, given the claustrophobic setting; so Hitchcock appeared on camera in a fictitious newspaper ad for a weight loss product.
33173
33174 In ''Spellbound'' two unprecedented point-of-view shots were achieved by constructing a large wooden hand (which would appear to belong to the character whose point of view the camera took) and outsized props for it to hold: a bucket-sized glass of milk and a large wooden gun. For added novelty and impact, the climactic gunshot was hand-colored red on some copies of the black-and-white print of the film.
33175
33176 ''Rope'' (1948) was another technical challenge: a film that appears to have been shot entirely in a single take. The film was actually shot in eight takes of approximately 10 minutes each, which was the amount of film that would fit in a single camera reel; the transitions between reels were hidden by having a dark object fill the entire screen for a moment. Hitchcock used those points to hide the cut, and began the next take with the camera in the same place.
33177
33178 His 1958 film ''Vertigo'' contains a camera trick that has been imitated and re-used so many times by filmmakers, it has become known as the [[Hitchcock zoom]].
33179
33180 Although famous for inventive camera angles, Hitchcock generally avoided points of view that were physically impossible from a human perspective. For example, he would never place the camera looking out from inside a refrigerator.
33181
33182 Regarding Hitchcock's sometimes less than pleasant relationship with actors, there was a persistent rumor that he had said that actors were cattle. Hitchcock later denied this, typically [[tongue-in-cheek]], clarifying that he had only said that actors should be treated like cattle. [[Carole Lombard]], tweaking Hitchcock and drumming up a little publicity, brought some cows along with her when she reported to the set of ''[[Mr. and Mrs. Smith]]''.
33183
33184 Hitchcock often dealt with matters that he felt were sexually preverse or kinky, and many of his films darring subverted the restrictive Hollywood Production Code that prohibited any mention of [[homosexuality]].
33185
33186 ==His character and its effects on his films==
33187 Hitchcock's films sometimes feature male characters struggling in their relationships with their mothers. In ''[[North by Northwest]]'' (1959), Roger Thornhill ([[Cary Grant]]'s character) is an innocent man ridiculed by his mother for insisting that shadowy, murderous men are after him (in this case, they are). In ''[[The Birds (film)|The Birds]]'' (1963), the [[Rod Taylor]] character, an innocent man, finds his world under attack by vicious birds, and struggles to free himself of a clinging mother ([[Jessica Tandy]]). The killer in ''[[Frenzy]]'' (1972) has a loathing of women but idolizes his mother. The villain Bruno in ''[[Strangers on a Train]]'' hates his father, but has an incredibly close relationship with his mother (played by [[Marion Lorne]]). Norman Bates' troubles with his mother in ''[[Psycho]]'' are infamous.
33188
33189 Hitchcock heroines tend to be lovely, cool blondes who seem at first to be proper but, when aroused by passion or danger, respond in a more sensual, animal, perhaps criminal way. As noted, the famous victims in ''The Lodger'' are all blondes. In ''[[The 39 Steps (1935 film)| The 39 Steps]]'', Hitchcock's glamorous blonde star, [[Madeleine Carroll]], is put in handcuffs. In ''[[Marnie]]'' (1964), glamorous blonde [[Tippi Hedren]] is a [[kleptomania]]c. In ''[[To Catch a Thief]]'' (1955), glamorous blonde [[Grace Kelly]] offers to help someone she believes is a cat burglar. After becoming interested in Thorwald's life in ''Rear Window'', Lisa breaks into Thorwald's apartment. And, most notoriously, in ''Psycho'', [[Janet Leigh]]'s character steals $40,000 and gets murdered by a young man named [[Norman Bates]] (played by [[Anthony Perkins]]) who thought he was his own mother. His last blonde heroine was French actress [[Claude Jade]] as the secret agent's worried daughter, Michele, in '''Topaz''' (1969).
33190
33191 Hitchcock saw that reliance on actors and actresses was a holdover from the theater tradition. He was a pioneer in using camera movement, camera set ups and montage to explore the outer reaches of cinematic art.
33192
33193 Most critics and Hitchcock scholars, including Donald Spoto and Roger Ebert, agree that ''[[Vertigo (film)|Vertigo]]'' is probably the director's most personal and revealing film, dealing with the obsessions of a man who crafts a woman into the woman he desires. ''Vertigo'' explores more frankly and at greater length his interest in the relation between sex and death than any other film in his filmography.
33194
33195 Hitchcock often said that his personal favourite was ''[[Shadow of a Doubt]]''.
33196
33197 ==His style of working==
33198 Hitchcock once commented, &quot;The writer and I plan out the entire script down to the smallest detail, and when we're finished all that's left to do is to shoot the film. Actually, it's only when one enters the studio that one enters the area of compromise. Really, the novelist has the best casting since he doesn't have to cope with the actors and all the rest.&quot; Hitchcock was often critical of his actors and actresses as well, dismissing, for example, Kim Novak's performance in ''[[Vertigo (film)|Vertigo]]'', and once famously remarking that actors were to be treated like cattle. (In response to being accused of saying 'actors are cattle', he said 'I never said they were cattle; I said they were to be ''treated'' like cattle'.)
33199
33200 The first book devoted to the director is simply named ''Hitchcock''. It is a document of a one-week interview by [[François Truffaut]] in 1967. (ISBN 0671604295)
33201
33202 ==Awards==
33203 The [[Academy of Motion Picture Arts and Sciences]] awarded Hitchcock the [[Irving G. Thalberg Memorial Award]], in 1967. However, despite six earlier nominations, he never won an [[Academy Award|Oscar]] in a contested category. His unsuccessful Oscar nominations were:
33204
33205 * for [[Academy Award for Best Director|Best Director]]: ''Rebecca'' (1940), ''[[Lifeboat (film)|Lifeboat]]'' (1944), ''[[Spellbound (1945 film)|Spellbound]]'' (1945), ''[[Rear Window]]'', and ''[[Psycho]]''; and
33206 * as a producer, for [[Academy Award for Best Picture|Best Picture]]: ''[[Suspicion]]'' (1941).
33207
33208 However ''Rebecca'', which Hitchcock did direct, won the 1940 [[Academy Award for Best Picture|Best Picture]] Oscar for its producer [[David O. Selznick]]. Three other films Hitchcock directed were unsuccessfully nominated for Best Picture.
33209
33210 Hitchcock was knighted in 1980.
33211
33212
33213
33214 ==Other notes==
33215 From [[1955 in television|1955]] to [[1965 in television|1965]], Hitchcock was the host and producer of a long-running [[television]] series entitled ''[[Alfred Hitchcock Presents]]''. While his films had made Hitchcock's name strongly associated with suspense, the TV series made Hitchcock a celebrity himself. His [[irony]]-tinged voice, image, and mannerisms became instantly recognizable and were often the subject of parody. He directed a few episodes of the TV series himself and he upset a number of movie production companies when he insisted on using his TV production crew to produce his motion picture ''[[Psycho]]''. In the late 1980s, a new version of ''Alfred Hitchcock Presents'' was produced for television, making use of Hitchcock's original introductions.
33216
33217 Alfred Hitchcock is also immortalised in print and appeared as himself in the very popular juvenile detective series, ''Alfred Hitchcock and the Three Investigators''. The long-running detective series was clever and well written, with characters much younger than the [[Hardy Boys]]. In ghost-written introductions, &quot;Alfred Hitchcock&quot; formerly introduced each case at the beginning of the book, often giving them new cases to solve. At the end of each book, Alfred Hitchcock would discuss the specifics of the case with Jupiter Jones, Bob Andrews and Peter Crenshaw and every so often the three boys would give Alfred Hitchcock mementos of their case.
33218
33219 When Alfred Hitchcock passed away, his chores as the boys' mentor/friend would be done by a fictional character: a retired detective named Hector Sebastian. Due to the popularity of the series, ''Alfred Hitchcock and the Three Investigators'' scored several reprints and out of respect, the latter reprints were changed to just ''[[The Three Investigators]]''. Over the years, more than one name has been used to replace Alfred Hitchcock's character, especially for the earlier books when his role was emphasised.
33220
33221 At the height of Hitchcock's success, he was also asked to introduce a set of books with his name attached. The series was a collection of short stories by popular short story writers, primarily focused on suspense and thrillers. These titles included ''Alfred Hitchcock's Monster Museum'', ''Alfred Hithcock's Supernatural Tales of Terror and Suspense'', ''Alfred Hitchcock's Spellbinders in Suspense'', ''Alfred Hitchcock's Witch's Brew'', ''Alfred Hitchcock's Ghostly Gallery'' and ''Alfred Hitchcock's Haunted Houseful.'' Hitchcock himself was not actually involved in the reading, reviewing, editing or selection of the short stories; in fact, even his introductions were ghost-written. The entire extent of his involvement with the project was to lend his name and collect a check.
33222
33223 Some notable writers whose works were used in the collection include [[Shirley Jackson]] (''Strangers in Town'', ''[[The Lottery]]''), [[T.H. White]] (''[[The Sword in the Stone]]''), [[Robert Bloch]], [[H. G. Wells]] (''[[The War of the Worlds (novel)|The War of the Worlds]]''), [[Robert Louis Stevenson]], [[Sir Arthur Conan Doyle]], [[Mark Twain]] and the creator of ''[[The Three Investigators]]'', [[Robert Arthur (writer)|Robert Arthur]].
33224
33225 ==Filmography==
33226 (all dates are for release)
33227
33228 ===Silent films===
33229 *No. 13 (Unfinished, also known as ''Mrs. Peabody'') (1922)
33230 *Always Tell Your Wife (Uncredited) (1923)
33231 *''[[The Pleasure Garden (1927 film)|The Pleasure Garden]]'' (1925)
33232 *''[[The Mountain Eagle]]'' (1926)
33233 *''[[The Lodger: A Story of the London Fog]]'' (1927)
33234 *''[[Downhill (film)|Downhill]]'' (1927)
33235 *''[[Easy Virtue]]'' (1928), based on a [[Noel Coward]] play
33236 *''[[The Ring (1927 film)|The Ring]]'' (1927), an original story by Hitchcock.
33237 *''[[The Farmer's Wife]]'' (1928)
33238 *''[[Champagne (film)|Champagne]]'' (1928)
33239 *''[[The Manxman]]'' (1929)
33240 *''[[Blackmail (1929 film)|Blackmail]]'' (1929), silent version of the more famous [[talkie]]
33241
33242 ===Sound films===
33243 *''[[Blackmail (1929 film)|Blackmail]]'' (1929), the first British [[talkie]]
33244 *''[[Juno and the Paycock]]'' (1930)
33245 *''[[Murder!]]'' (1930)
33246 *''[[Elstree Calling]]'' (1930), made jointly with Adrian Brunel, Andre Charlot, Jack Hulbert and Paul Murray
33247 *''[[The Skin Game]]'' (1931)
33248 *''[[Mary (film)|Mary]]'' (1931)
33249 *''[[Number Seventeen]]'' (1932)
33250 *''[[Rich and Strange]]'' (1932)
33251 *''[[Waltzes from Vienna]]'' (1933)
33252 *''[[The Man Who Knew Too Much (1934 film)|The Man Who Knew Too Much]]'' (1934)
33253 *''[[The 39 Steps (1935 film)| The 39 Steps]]'' (1935), with [[Robert Donat]]
33254 *''[[Secret Agent]]'' (1936), loosely based on [[Somerset Maugham]]'s &quot;Ashenden&quot; stories
33255 *''[[Sabotage (film)|Sabotage]]'' (aka &quot;A woman alone&quot;) (1936), adapted from [[Joseph Conrad]]'s ''The Secret Agent''
33256 *''[[Young and Innocent]]'' (1937)
33257 *''[[The Lady Vanishes]]'' (1938), with [[Michael Redgrave]]
33258 *''[[Jamaica Inn (film)|Jamaica Inn]]'' (1939), starring [[Charles Laughton]]
33259 *''[[Rebecca (film)|Rebecca]]'' (1940), his only film to win the [[Academy Award for Best Picture]]
33260 *''[[Foreign Correspondent]]'' (1940)
33261 *''[[Mr. &amp; Mrs. Smith (1941 film)|Mr. &amp; Mrs. Smith]]'' (1941), written by [[Norman Krasna]]
33262 *''[[Suspicion (film)|Suspicion]]'' (1941)
33263 *''[[Saboteur (film)|Saboteur]]'' (1942), often seen as a dry run for ''[[North by Northwest]]''
33264 *''[[Shadow of a Doubt]]'' (1943)
33265 *''[[Lifeboat (film)|Lifeboat]]'' (1944), [[Tallulah Bankhead]]'s most famous film role
33266 *''[[Aventure Malgache]]'' (1944), a French language short made for the British Ministry of Information
33267 *''[[Bon Voyage (1944 film)|Bon Voyage]]'' (1944), another French language propaganda short
33268 *''[[Spellbound (1945 film)|Spellbound]]'' (1945), includes dream sequences designed by [[Salvador Dali]]
33269 *''[[Notorious]]'' (1946)
33270 *''[[The Paradine Case]]'' (1947)
33271 *''[[Alfred Hitchcock's Rope|Rope]]'' (1948)
33272 *''[[Under Capricorn]]'' (1949)
33273 *''[[Stage Fright]]'' (1950), his first film in Britain since 1939
33274 *''[[Strangers on a Train]]'' (1951)
33275 *''[[I Confess (movie)|I Confess]]'' (1953)
33276 *''[[Dial M for Murder]]'' (1954)
33277 *''[[Rear Window]]'' (1954)
33278 *''[[To Catch a Thief]]'' (1955)
33279 *''[[The Trouble with Harry]]'' (1955)
33280 *''[[The Man Who Knew Too Much (1956 film)|The Man Who Knew Too Much]]'' (1956), remake of his 1934 film
33281 *''[[The Wrong Man]]'' (1956)
33282 *''[[Vertigo (film)|Vertigo]]'' (1958)
33283 *''[[North by Northwest]]'' (1959)
33284 *''[[Psycho]]'' (1960)
33285 *''[[The Birds (film)|The Birds]]'' (1963)
33286 *''[[Marnie]]'' (1964)
33287 *''[[Torn Curtain]] '' (1966)
33288 *''[[Topaz (1969 film)|Topaz]]'' (1969)
33289 *''[[Frenzy]]'' (1972)
33290 *''[[Family Plot]]'' (1976)
33291
33292 ===Television episodes===
33293 *''[[Alfred Hitchcock Presents]]'': &quot;Revenge&quot; (1955)
33294 *''[[Alfred Hitchcock Presents]]'': &quot;Breakdown&quot; (1955)
33295 *''[[Alfred Hitchcock Presents]]'': &quot;The Case of Mr. Pelham&quot; (1955)
33296 *''[[Alfred Hitchcock Presents]]'': &quot;Back for Christmas&quot; (1956)
33297 *''[[Alfred Hitchcock Presents]]'': &quot;Wet Saturday&quot; (1956)
33298 *''[[Alfred Hitchcock Presents]]'': &quot;Mr. Blanchard's Secret&quot; (1956)
33299 *''[[Alfred Hitchcock Presents]]'': &quot;One More Mile to Go&quot; (1957)
33300 *''[[Suspicion (TV series)|Suspicion]]'': &quot;Four O'Clock&quot; (1957)
33301 *''[[Alfred Hitchcock Presents]]'': &quot;The Perfect Crime&quot; (1957)
33302 *''[[Alfred Hitchcock Presents]]'': &quot;Lamb to the Slaughter&quot; (1958)
33303 *''[[Alfred Hitchcock Presents]]'': &quot;Dip in the Pool&quot; (1958)
33304 *''[[Alfred Hitchcock Presents]]'': &quot;Poison&quot; (1958)
33305 *''[[Alfred Hitchcock Presents]]'': &quot;Banquo's Chair&quot; (1959)
33306 *''[[Alfred Hitchcock Presents]]'': &quot;Arthur&quot; (1959)
33307 *''[[Alfred Hitchcock Presents]]'': &quot;The Crystal Trench&quot; (1959)
33308 *''[[Ford Startime]]'': &quot;Incident at a Corner&quot; (1960)
33309 *''[[Alfred Hitchcock Presents]]'': &quot;Mrs. Bixby and the Colonel's Coat&quot; (1960)
33310 *''[[Alfred Hitchcock Presents]]'': &quot;The Horseplayer&quot; (1961)
33311 *''[[Alfred Hitchcock Presents]]'': &quot;Bang! You're Dead&quot; (1961)
33312 *''[[Alfred Hitchcock Presents|The Alfred Hitchcock Hour]]'': &quot;I Saw the Whole Thing&quot; (1962)
33313
33314 ==Frequent collaborators==
33315 &lt;!--- This needs to be fleshed out. A simple laundry list does no justice. ---&gt;
33316
33317 [[Sara Allgood]],
33318 [[Charles Bennett]] (screenwriter),
33319 [[Ingrid Bergman]],
33320 [[Carl Brisson]],
33321 [[Robert Burks]] (cinematographer),
33322 [[Madeleine Carroll]],
33323 [[Leo G. Carroll]],
33324 [[Joseph Cotten]],
33325 [[Hume Cronyn]],
33326 [[Robert Cummings]],
33327 [[Joan Fontaine]],
33328 [[John Forsythe]],
33329 [[Farley Granger]],
33330 [[Cary Grant]],
33331 [[Clare Greet]],
33332 [[Lilian Hall-Davis]],
33333 [[Gordon Harker]],
33334 [[Ben Hecht]] (writer),
33335 [[Tippi Hedren]],
33336 [[Bernard Herrmann]] (composer),
33337 [[Hannah Jones]],
33338 [[Malcolm Keen]],
33339 [[Grace Kelly]],
33340 [[Charles Laughton]],
33341 [[John Longden]],
33342 [[Peter Lorre]],
33343 [[Miles Mander]],
33344 [[Vera Miles]],
33345 [[Ivor Novello]],
33346 [[Anny Ondra]],
33347 [[Gregory Peck]],
33348 [[Jessie Royce Landis]],
33349 [[James Stewart (actor)|James Stewart]],
33350 [[John Williams (actor)|John Williams]]
33351
33352 ==See also==
33353 *[[Unproduced Hitchcock Projects]]
33354
33355 ==Further reading==
33356 * [[François Truffaut|Truffaut, François]]: ''Hitchcock''. Simon and Schuster, 1985. A series of interviews of Hitchcock by the influential French director. This is an important source, but some have criticised Truffaut for taking an uncritical stance.
33357 * Leitch, Thomas: ''The Encyclopedia of Alfred Hitchcock''. Checkmark Books, 2002. An excellent single-volume encyclopedia of all things Hitchcock.
33358 * DeRosa, Steven: ''Writing with Hitchcock''. Faber and Faber, 2001. An examination of the collaboration between Hitchcock and screenwriter John Michael Hayes, his most frequent writing collaborator in Hollywood. Their films include ''Rear Window'' and ''The Man Who Knew Too Much''.
33359 * Deutelbaum, Marshall; Poague, Leland (ed.): ''A Hitchcock Reader''. Iowa State University Press, 1986. A wide-ranging collection of scholarly essays on Hitchcock.
33360 * Spoto, Donald: ''The Art of Alfred Hitchcock''. Anchor Books, 1992. The first detailed critical survey of Hitchcock's work by an American.
33361 * Spoto, Donald: ''The Dark Side of Genius''. Ballantine Books, 1983. A biography of Hitchcock, featuring a controversial exploration of Hitchcock's psychology.
33362 * Gottlieb, Sidney: ''Alfred Hitchcock: Interviews''. University Press of Mississippi, 2003. A collection of Hitchcock interviews.
33363 * Conrad, Peter: ''The Hitchcock Murders''. Faber and Faber, 2000. A highly personal and idiosyncratic discussion of Hitchcock's oeuvre.
33364 * Rebello, Stephen: ''Alfred Hitchcock and the Making of [[Psycho]]''. St. Martin's, 1990. Intimately researched and detailed history of the making of ''Psycho,'' praised as one of the best books on moviemaking ever. &lt;!--- Doesn't this properly belong at the Psycho article, not here? ---&gt;
33365 * McGilligan, Patrick: ''Alfred Hitchcock: A Life in Darkness and Light''. Regan Books, 2003. A comprehensive biography of the director.
33366 * Modleski, Tania: ''The Women Who Knew Too Much: Hitchcock And Feminist Theory''. Routledge, 2005 (2nd edition). A collection of critical essays on Hitchcock and his films, argues that Hitchcock's portrayal of women was an ambivalent one, not misogynist nor sympathetic (as widely thought). An important text to consider, given the abundance of female heroes and victims in his films.
33367 * Wood, Robin: ''Hitchcock's Films Revisited''. Columbia University Press, 2002 (2nd edition). Another collection of critical essays, now revisited by the author in this 2nd edition to supplement and annotate the highly-lauded entries from before with the additional insight and changes that time and personal experience has brought him (including his own coming-out as a gay man).
33368
33369 ==External links==
33370 {{wikiquote}}
33371 * {{imdb name|id=0000033|name=Alfred Hitchcock}}
33372 * [http://hitchcock.tv Alfred Hitchcock -- The Master of Suspense]
33373 * [http://www.sensesofcinema.com/contents/directors/05/hitchcock.html Senses of Cinema's Alfred Hitchcock Page]
33374 * [http://www.screenonline.org.uk/tours/hitch/tour1.html ''Hitchcock's Style''] -- online exhibit from [[screenonline]], a website of the [[British Film Institute]]
33375 * [http://alfredhitchcock.directorscut.info/ Multi-Language Website]
33376 * [http://www.hitchcockpresentsdvd.com/ Official Universal Website]
33377 * [http://www.soundtrackinfo.com/search.asp?q=hitchcock Hitchcock at the SoundtrackINFO project]
33378 * [http://warnervideo.com/hitchcock/home.html Warner Video: Alfred Hitchcock]
33379 * [http://www.labyrinth.net.au/~muffin/ The MacGuffin Web Page] - the online extension of the Alfred Hitchcock journal ''The MacGuffin''
33380 * [http://www.writingwithhitchcock.com/ Writing With Hitchcock] - Companion site to Steven DeRosa's book of the same name, includes original interviews, essays, script excerpts, and extensive material on Hitchcock's unproduced works.
33381 * [http://www.daveyp.com/hitchcock/ The Hitchcock DVD Information Site] - details of Hitchcock DVD releases from around the world
33382 * [http://tesla.liketelevision.com/liketelevision/tuner.php?channel=133&amp;format=movie&amp;theme=guide The Man Who Knew Too Much] - Watch the movie online for free
33383 * [http://www.borgus.com/think/hitch.htm Basic Hitchcock Film Techniques] A checklist of his top 13 film techniques.
33384
33385 {{Link FA|pl}}
33386
33387 {{Link FA|fr}}
33388
33389 [[Category:1899 births|Hitchcock, Sir Alfred]]
33390 [[Category:1980 deaths|Hitchcock, Sir Alfred]]
33391 [[Category:British film directors|Hitchcock, Sir Alfred]]
33392 [[Category:British film producers|Hitchcock, Sir Alfred]]
33393 [[Category:British television directors|Hitchcock, Sir Alfred]]
33394 [[Category:Naturalized citizens of the United States|Hitchcock, Sir Alfred]]
33395 [[Category:Old Ignatians|Hitchcock, Sir Alfred]]
33396 [[Category:Roman Catholics|Hitchcock, Sir Alfred]]
33397 [[Category:Londoners|Hitchcock, Sir Alfred]]
33398 [[Category:Knights Commander of the British Empire|Hitchcock, Alfred]]
33399
33400 [[ilo:Alfred Hitchcock]]
33401
33402 [[bg:АĐģŅ„Ņ€ĐĩĐ´ ĐĨиŅ‡ĐēĐžĐē]]
33403 [[bs:Alfred Hitchcock]]
33404 [[ca:Alfred Hitchcock]]
33405 [[cs:Alfred Hitchcock]]
33406 [[cy:Alfred Hitchcock]]
33407 [[da:Alfred Hitchcock]]
33408 [[de:Alfred Hitchcock]]
33409 [[et:Alfred Hitchcock]]
33410 [[es:Alfred Hitchcock]]
33411 [[eo:Alfred HITCHCOCK]]
33412 [[fa:ØĸŲ„ŲØąØ¯ Ų‡ÛŒÚ†ÚŠØ§ÚŠ]]
33413 [[fr:Alfred Hitchcock]]
33414 [[ko:ė•¨í”„ëĻŦ드 히ėš˜ėŊ•]]
33415 [[hr:Alfred Hitchcock]]
33416 [[io:Alfred Hitchcock]]
33417 [[id:Alfred Hitchcock]]
33418 [[is:Alfred Hitchcock]]
33419 [[it:Alfred Hitchcock]]
33420 [[he:אלפרד הי×Ļ'קוק]]
33421 [[lb:Alfred Hitchcock]]
33422 [[hu:Alfred Hitchcock]]
33423 [[nl:Alfred Hitchcock]]
33424 [[ja:ã‚ĸãƒĢフãƒŦッドãƒģヒッチã‚ŗック]]
33425 [[no:Alfred Hitchcock]]
33426 [[pl:Alfred Hitchcock]]
33427 [[pt:Alfred Hitchcock]]
33428 [[ro:Alfred Hitchcock]]
33429 [[ru:ĐĨиŅ‡ĐēĐžĐē, АĐģŅŒŅ„Ņ€ĐĩĐ´]]
33430 [[sq:Alfred Hitchcock]]
33431 [[sh:Alfred Hitchcock]]
33432 [[simple:Alfred Hitchcock]]
33433 [[sk:Alfred Hitchcock]]
33434 [[sl:Alfred Hitchcock]]
33435 [[sr:АĐģŅ„Ņ€ĐĩĐ´ ĐĨиŅ‡ĐēĐžĐē]]
33436 [[fi:Alfred Hitchcock]]
33437 [[sv:Alfred Hitchcock]]
33438 [[th:ā¸­ā¸ąā¸Ĩāš€ā¸Ÿā¸Ŗāš‡ā¸” ā¸Žā¸´ā¸•ā¸ŠāšŒā¸„āš‡ā¸­ā¸]]
33439 [[vi:Alfred Hitchcock]]
33440 [[tr:Alfred Hitchcock]]
33441 [[zh:希æ˛ģé–Ŗ]]</text>
33442 </revision>
33443 </page>
33444 <page>
33445 <title>Anaconda</title>
33446 <id>809</id>
33447 <revision>
33448 <id>42042622</id>
33449 <timestamp>2006-03-03T11:54:38Z</timestamp>
33450 <contributor>
33451 <username>KnightRider</username>
33452 <id>430793</id>
33453 </contributor>
33454 <minor />
33455 <comment>warnfile Modifying: es</comment>
33456 <text xml:space="preserve">{{otheruses}}
33457 {{Taxobox
33458 | color = pink
33459 | name = Anacondas
33460 | image = Eunectes_notaeus.jpg
33461 | image_width = 240px
33462 | image_caption = Yellow Anaconda, ''Eunectes notaeus''
33463 | regnum = [[Animal]]ia
33464 | phylum = [[Chordate|Chordata]]
33465 | classis = [[Reptile|Reptilia]]
33466 | ordo = [[Squamata]]
33467 | subordo = [[Serpentes]]
33468 | familia = [[Boidae]]
33469 | genus = '''''Eunectes'''''
33470 | genus_authority = [[Johann Georg Wagler|Wagler]], [[1830]]
33471 | subdivision_ranks = Species
33472 | subdivision =
33473 See text.
33474 }}
33475
33476 '''Anacondas''' (JibÃŗia and Sucuri, local names) are three species of aquatic [[boa]] inhabiting the swamps and rivers of the dense forests of tropical [[South America]] as well as the southern swamps of the island of [[Trinidad]] .
33477
33478 There are two possible origins for the word 'anaconda': It is perhaps an alteration of the [[Sinhalese]] word 'henakanday', meaning 'whip snake', or more likely, the [[Tamil]] word 'anaikolra', which means 'elephant killer', as early [[Spain|Spanish]] settlers in South America referred to the anaconda as 'matatoro', or 'bull killer'. It is unclear how the name originated so far from the snake's native habitat, it is likely due to its vague similarity to the large [[Asia]]n [[python]]s.&lt;sup&gt;[http://news2.nationalgeographic.com/news/2002/08/photogalleries/0802_snakes1.html]&lt;/sup&gt;
33479
33480 Two species are well-known:
33481
33482 * The '''Green Anaconda''' (''[[Eunectes murinus]]''), which has been reported at over 10 meters (32.8 feet) in length (although most are considerably smaller). Although shorter than the longest recorded species, the [[Reticulated python|Reticulated Python]], it is considerably heavier. In fact, it is the heaviest [[snake]] species in existence. It can weigh 250 kg (551 pounds) and have a girth of more than 30 cm (11.8 inches) in diameter. Females are larger than males, averaging 22-26 feet and 12-16 feet respectively. These are found mainly in northern [[South America]], in [[Venezuela]], [[Colombia]], [[Brazil]], northern [[Bolivia]], northeast [[Peru]], [[Guyana]], and [[Trinidad]]. Although charismatic, very little information was known about the anacondas until [[1992]] when the first study (and so far the only) was made on the field biology of this species in the Venezuelan [[llanos]] by Dr. Jesus Rivas. &lt;sup&gt;[http://www.anacondas.org]&lt;/sup&gt;
33483
33484 * The '''Yellow Anaconda''' (''[[Eunectes notaeus]]''), which reaches a relatively smaller average adult length of 3 metres (9.8 feet). These live further south in Bolivia, [[Paraguay]], [[Uruguay]], western Brazil, and northeast [[Argentina]].
33485
33486 The third lesser known species is:
33487
33488 * The '''Dark-Spotted''' or '''Deschauense's Anaconda''' (''[[Eunectes deschauenseei]]'') found in northeast Brazil.
33489
33490 ''Eunectes murinus'' (formerly called ''Boa murina'') differs from [[Boa]] by the snout being covered with shields instead of small scales, the inner of the three nasal shields being in contact with that of the other side. The general colour is dark olive-[[brown]], with large oval [[black]] spots arranged in two alternating rows along the back, and with smaller white-eyed spots along the sides. The belly is whitish, spotted with black spots. The anaconda combines an arboreal with an aquatic life, and feeds chiefly upon [[bird]]s, [[mammal]]s and [[caiman]], mostly during the night. It lies submerged in the water, with only a small part of its head above the surface, waiting for any suitable prey, or it establishes itself upon the branches of a tree which overhangs the water or the track of game.
33491
33492 Like almost all boas, anacondas give birth to live young.
33493
33494 == Giant Anacondas ==
33495
33496 The largest known anacondas measure about 10.6 meters (30.7 feet) long, but unverified reports of much larger snakes have occasionally been made.
33497
33498 One notable account was reported by adventurer [[Percy Fawcett]]. In [[1906]], Fawcett wrote that he had shot and wounded an anaconda in South America; he reported the snake measured some 18.9 meters (62 feet) from nose to tail.
33499
33500 Once publicized, Fawcett’s account of the giant snake was widely ridiculed, although he insisted his account was both truthful and accurate. [[Bernard Heuvelmans]] came to his defense arguing that Fawcett was generally honest and reliable when relating things. Furthermore, Heuvelmans noted that mainstream experts were repeatedly forced to revise their limits regarding the maximum size of snakes when confronted with specimens that defied the generally-accepted estimates. At one point in time, 6 meters (20 feet) in length was the widely-accepted maximum size of an anaconda. These giant snakes are very capable of killing and consuming an adult human being.
33501
33502 When it sheds, an adult anaconda relieves itself of an average of 2 pounds of skin. An anaconda's skin can stretch up to 30% larger than the original size of the snake.
33503
33504 == In captivity ==
33505
33506 Anacondas have a reputation for bad temperament; that plus the massive size of the green species mean that anacondas are comparatively less popular as pets than other boas, but they are fairly commonly available in the exotic pet trade, with the exception of ''E. deschauenseei''.
33507
33508 == References ==
33509
33510 * Bernard Heuvelmans, ''On The Track Of Unknown Animals'', Hill and Wang, [[1958]]
33511
33512 ==External links==
33513
33514 *[http://www.junglephotos.com/amazon/amanimals/amreptiles/anaconda.shtml Anaconda photos and information]
33515 *[http://animaldiversity.ummz.umich.edu/site/accounts/information/Eunectes_murinus.html ADW: Eunectes murinus (green anaconda)]
33516
33517 [[Category:Boas]]
33518 [[Category:Fauna of Brazil]]
33519 [[Category:Fauna of the Amazon]]
33520 [[Category:Wildlife of South America]]
33521 [[Category:Fauna of Trinidad and Tobago]]
33522
33523 [[ar:ØŖŲ†Ø§ŲƒŲˆŲ†Ø¯Ø§]]
33524 [[da:Anakonda]]
33525 [[de:Anakondas]]
33526 [[es:Eunectes]]
33527 [[fa:ØĸŲ†Ø§ÚŠŲˆŲ†Ø¯Ø§]]
33528 [[ko:ė•„나ėŊ˜ë‹¤]]
33529 [[he:אנאקונדה]]
33530 [[lt:Anakonda]]
33531 [[nl:Anaconda]]
33532 [[ja:ã‚ĸナã‚ŗãƒŗダ]]
33533 [[no:Anakonda]]
33534 [[pl:Anakonda]]
33535 [[pt:Anaconda]]
33536 [[fi:Anakonda]]
33537 [[sv:Anakonda]]
33538 [[uk:АĐŊĐ°ĐēĐžĐŊĐ´Đ°]]</text>
33539 </revision>
33540 </page>
33541 <page>
33542 <title>All Saints</title>
33543 <id>810</id>
33544 <revision>
33545 <id>37885228</id>
33546 <timestamp>2006-02-02T19:59:53Z</timestamp>
33547 <contributor>
33548 <username>JzG</username>
33549 <id>760284</id>
33550 </contributor>
33551 <minor />
33552 <comment>Reverted edits by [[Special:Contributions/198.234.202.130|198.234.202.130]] ([[User talk:198.234.202.130|talk]]) to last version by Dominick</comment>
33553 <text xml:space="preserve">:''This article is about the Christian holiday. For other meanings see [[All Saints (disambiguation)]] and [[All Hallows (disambiguation)]]''
33554 [[Image:Wszystkich swietych cmentarz.jpg|thumb|right|300px|All Saints in Poland]]
33555 The [[festival]] of '''All Saints''', also sometimes known as &quot;All Hallows,&quot; or &quot;Hallowmas,&quot; is a feast celebrated in their honour. '''All Saints''' is also a Christian formula invoking all the faithful [[saint]]s and [[martyr]]s, known or unknown.
33556
33557 The [[Roman Catholic Church|Roman Catholic]] holiday (''Festum omnium sanctorum'') falls on [[November 1]], followed by [[All Souls Day]] on [[November 2]], and is a [[Holy Day of Obligation]], with a [[vigil]] and an [[Octave (disambiguation)|octave]]. The [[Eastern Orthodoxy|Eastern Orthodox]] Church's '''All Saints''' is the first Sunday after [[Pentecost]] and as such marks the close of the [[Easter]] season.
33558
33559 Common commemorations by several churches of the deaths of martyrs began to be celebrated in the 4th century. The first trace of a general celebration is attested in [[Antioch]] on the Sunday after [[Pentecost]]. This custom is also referred to in the 74th homily of [[John Chrysostom]] ([[407]]) and is maintained to the present day in the [[Eastern Orthodoxy|Eastern Orthodox]] Church.
33560
33561 The date of festival was changed to November 1 by [[Pope Gregory III]] ([[731]]&amp;ndash;[[741]]) to coincide with the ancient [[Celts |Celtic]] New Year's festival [[Samhain]]. He designated November 1 as the date of the anniversary of the consecration of a chapel in St. Peter's for the relics &quot;of the holy apostles and of all saints, martyrs and confessors, of all the just made perfect who are at rest throughout the world&quot;. By the time of the reign of [[Charlemagne]], the November festival of All Saints was widely celebrated. November 1 was decreed a day of obligation by the [[Franks|Frankish]] king [[Louis the Pious]] in [[835]] issued &quot;at the instance of [[Pope Gregory IV]] and with the assent of all the bishops.&quot;
33562
33563 In [[Portugal]], [[Spain]] and [[Mexico]], ''ofrendas'' (offerings) are made on this day. In Spain, the play [[Don Juan Tenorio]] is traditionally performed. In [[Portugal]] and [[France]], people offer flowers to dead relatives. In [[Poland]] and [[Germany]], the tradition is to light candles and visit the graves of deceased relatives. In the [[Philippines]], the day is spent visiting the graves of deceased relatives, where they offer prayers, lay flowers, and light candles, often in a picnic-like atmosphere. In English speaking countries, the festival is celebrated with the hymn &quot;For All the Saints&quot;, set to music by [[Ralph Vaughan Williams]].
33564
33565 The festival was retained after the [[Reformation]] in the calendar of the [[Church of England]] and in many [[Lutheranism|Lutheran]] churches. In the Lutheran churches, such as the [[Church of Sweden]], it assumes a role of general commemoration of the dead (similar to the ''All Souls'' commemoration in the Eastern Orthodox Church that takes place two Saturdays before the beginning of [[Lent]]). In the [[Holidays in Sweden|Swedish calendar]], the observance takes place on the first Saturday of November. In many Lutheran Churches however, the festival has fallen into disuse.
33566
33567 ==See also==
33568 *[[Veneration of the dead]]
33569 *[[Halloween]]
33570 *[[Dziady]]
33571 *[[Day of the Dead]]
33572
33573 ==Compare==
33574 *[[Saturnalia]] and [[Yule]]
33575
33576 ==Reference==
33577 *[http://www.newadvent.org/cathen/01315a.htm All Saints' Day] article in the [[Catholic Encyclopedia]]
33578 &lt;!-- Categories --&gt;
33579 [[Category:Liturgical Calendar]]
33580 [[Category:Sainthood|*All Saints]]
33581 &lt;!-- Interwiki links --&gt;
33582
33583 ==External links==
33584 * [http://www.americancatholic.org/Features/Saints/faqs.asp American Catholic - Saints FAQs, All Saints and All Souls Day]
33585
33586 [[cs:VÅĄech svatÃŊch]]
33587 [[da:Allehelgensdag]]
33588 [[de:Allerheiligen]]
33589 [[es:Día de Todos Los Santos]]
33590 [[fr:Toussaint]]
33591 [[is:Allraheilagramessa]]
33592 [[la:Sollemnitas Omnium Sanctorum]]
33593 [[nl:Allerheiligen]]
33594 [[ja:čĢ¸č–äēēぎæ—Ĩ]]
33595 [[pl:Wszystkich Świętych]]
33596 [[pt:Dia de Todos-os-Santos]]
33597 [[sl:Dan spomina na mrtve]]
33598 [[sv:Alla helgons dag]]
33599 [[zh:čĢ¸č–æ—Ĩ]]</text>
33600 </revision>
33601 </page>
33602 <page>
33603 <title>AlwaysLeaveSomethingUndoneDebate</title>
33604 <id>811</id>
33605 <revision>
33606 <id>15899325</id>
33607 <timestamp>2003-06-19T20:55:07Z</timestamp>
33608 <contributor>
33609 <username>Toby Bartels</username>
33610 <id>1078</id>
33611 </contributor>
33612 <minor />
33613 <comment>Re-redirect -- please people, you have to do this with the talk pages also!</comment>
33614 <text xml:space="preserve">#REDIRECT [[wikipedia talk:Make omissions explicit]]</text>
33615 </revision>
33616 </page>
33617 <page>
33618 <title>Afghanistan/History</title>
33619 <id>813</id>
33620 <revision>
33621 <id>15899327</id>
33622 <timestamp>2002-02-25T15:43:11Z</timestamp>
33623 <contributor>
33624 <ip>Conversion script</ip>
33625 </contributor>
33626 <minor />
33627 <comment>Automated conversion</comment>
33628 <text xml:space="preserve">#REDIRECT [[History of Afghanistan]]
33629
33630 :''See also :'' [[Afghanistan]]</text>
33631 </revision>
33632 </page>
33633 <page>
33634 <title>Afghanistan/Geography</title>
33635 <id>814</id>
33636 <revision>
33637 <id>15899328</id>
33638 <timestamp>2002-02-25T15:43:11Z</timestamp>
33639 <contributor>
33640 <ip>Conversion script</ip>
33641 </contributor>
33642 <minor />
33643 <comment>Automated conversion</comment>
33644 <text xml:space="preserve">#REDIRECT [[Geography of Afghanistan]]
33645
33646 :''See also :'' [[Afghanistan]]</text>
33647 </revision>
33648 </page>
33649 <page>
33650 <title>Afghanistan/Government</title>
33651 <id>815</id>
33652 <revision>
33653 <id>15899329</id>
33654 <timestamp>2002-08-01T05:30:57Z</timestamp>
33655 <contributor>
33656 <username>Koyaanis Qatsi</username>
33657 <id>90</id>
33658 </contributor>
33659 <comment>fix redirect to wikiproject standards</comment>
33660 <text xml:space="preserve">#REDIRECT [[Politics of Afghanistan]]</text>
33661 </revision>
33662 </page>
33663 <page>
33664 <title>Afghanistan/People</title>
33665 <id>816</id>
33666 <revision>
33667 <id>15899330</id>
33668 <timestamp>2002-08-20T15:34:29Z</timestamp>
33669 <contributor>
33670 <username>Koyaanis Qatsi</username>
33671 <id>90</id>
33672 </contributor>
33673 <text xml:space="preserve">#REDIRECT [[Demographics of Afghanistan]]</text>
33674 </revision>
33675 </page>
33676 <page>
33677 <title>Afghanistan/Economy</title>
33678 <id>817</id>
33679 <revision>
33680 <id>15899331</id>
33681 <timestamp>2002-02-25T15:43:11Z</timestamp>
33682 <contributor>
33683 <ip>Conversion script</ip>
33684 </contributor>
33685 <minor />
33686 <comment>Automated conversion</comment>
33687 <text xml:space="preserve">#REDIRECT [[Economy of Afghanistan]]
33688
33689 :''See also :'' [[Afghanistan]]</text>
33690 </revision>
33691 </page>
33692 <page>
33693 <title>Afghanistan/Communications</title>
33694 <id>818</id>
33695 <revision>
33696 <id>15899332</id>
33697 <timestamp>2002-09-13T13:38:56Z</timestamp>
33698 <contributor>
33699 <username>Andre Engels</username>
33700 <id>300</id>
33701 </contributor>
33702 <minor />
33703 <comment>removing 'see also' from redirect page</comment>
33704 <text xml:space="preserve">#REDIRECT [[Communications in Afghanistan]]</text>
33705 </revision>
33706 </page>
33707 <page>
33708 <title>Afghanistan/Transportation</title>
33709 <id>819</id>
33710 <revision>
33711 <id>15899333</id>
33712 <timestamp>2002-02-25T15:43:11Z</timestamp>
33713 <contributor>
33714 <ip>Conversion script</ip>
33715 </contributor>
33716 <minor />
33717 <comment>Automated conversion</comment>
33718 <text xml:space="preserve">#REDIRECT [[Transportation in Afghanistan]]
33719
33720 :''See also :'' [[Afghanistan]]</text>
33721 </revision>
33722 </page>
33723 <page>
33724 <title>Afghanistan/Military</title>
33725 <id>820</id>
33726 <revision>
33727 <id>15899334</id>
33728 <timestamp>2002-02-25T15:43:11Z</timestamp>
33729 <contributor>
33730 <ip>Conversion script</ip>
33731 </contributor>
33732 <minor />
33733 <comment>Automated conversion</comment>
33734 <text xml:space="preserve">#REDIRECT [[Military of Afghanistan]]
33735
33736 :''See also :'' [[Afghanistan]]</text>
33737 </revision>
33738 </page>
33739 <page>
33740 <title>Afghanistan/Transnational Issues</title>
33741 <id>821</id>
33742 <revision>
33743 <id>15899335</id>
33744 <timestamp>2002-02-25T15:51:15Z</timestamp>
33745 <contributor>
33746 <ip>Conversion script</ip>
33747 </contributor>
33748 <minor />
33749 <comment>Automated conversion</comment>
33750 <text xml:space="preserve">#REDIRECT [[Foreign relations of Afghanistan]]
33751
33752 :''See also :'' [[Afghanistan]]</text>
33753 </revision>
33754 </page>
33755 <page>
33756 <title>Afghanistan (1911 Encyclopedia)</title>
33757 <id>822</id>
33758 <revision>
33759 <id>15899336</id>
33760 <timestamp>2004-01-06T22:27:09Z</timestamp>
33761 <contributor>
33762 <username>Angela</username>
33763 <id>8551</id>
33764 </contributor>
33765 <comment>#redirect [[Afghanistan]] - see talk page</comment>
33766 <text xml:space="preserve">#redirect [[Afghanistan]]</text>
33767 </revision>
33768 </page>
33769 <page>
33770 <title>Altaic languages</title>
33771 <id>824</id>
33772 <revision>
33773 <id>42001331</id>
33774 <timestamp>2006-03-03T03:39:11Z</timestamp>
33775 <contributor>
33776 <ip>71.131.202.249</ip>
33777 </contributor>
33778 <comment>/* See also */</comment>
33779 <text xml:space="preserve">'''Altaic''' is a proposed [[Language families and languages|language family]] which includes 60 [[language]]s spoken by about 250 million people, mostly in and around [[Central Asia]] and the [[Far East]]. The relationships among these languages remain a matter of debate among historical linguists. Some scholars consider the obvious similarity between these languages as genetically inherited; others propose the idea of the [[Sprachbund]].
33780
33781 Its proponents traditionally considered it to include [[Korean language|Korean]], the [[Turkic languages]], the [[Mongolic languages]], the [[Tungusic languages]] (or Manchu-Tungus), and [[Japanese language|Japanese]]. [[Ainu language|Ainu]] has occasionally been suggested as a member of Altaic, but that hypothesis is generally rejected. CastrÊn (1862) put forward a similar view, but classified Turkic with what we would now call [[Uralic languages|Uralic]]. In 1857 [[Anton Boller]] suggested adding Korean and Japanese; for Korean, G. J. Ramstedt and E. D. Polivanov put forward more etymologies in the 1920's. Korean has commonly been linked to [[Japonic_languages|Japonic]], and in [[1971]], [[Roy Miller]] suggested relating it to both Korean and Altaic. These suggestions have been taken up and developed by various historical linguists such as [[John Whitman]], [[Sergei Starostin]], and [[Alexander Vovin]] (who now rejects a genetic connection between Korean and Japanese).
33782
33783 There have been some attempts to extend the Altaic family borders by including Ainu (e.g., Street 1962, Patrie 1982), [[Tamil language|Tamil]], [[Nivkh language|Nivkh]], or [[Hungarian language|Hungarian]], but these proposals have been rejected by the majority of scholars.
33784
33785 ==Controversy==
33786
33787 There are two main schools of thought about the Altaic theory. One is that the proposed constituent language families (Turkic, Mongolic, and Tungusic in the basic theory, with the addition of Korean and Japanese in extended versions) are genetically or &quot;divergently&quot; related by descent from a common ancestor, &quot;Proto-Altaic.&quot; The other school rejects this theory (so it is often called the &quot;Anti-Altaic&quot; school) and argues that the member languages are related by convergence (mainly loan influence).
33788
33789 The Altaic theory is claimed by its opponents to be based mainly on typological similarities, such as [[vowel harmony]], lack of [[grammatical gender]], an [[agglutinative]] typology, and [[loanword]]s. In fact, its proponents have put together a large variety of grammatical, lexical, and syntactic regular correspondences between the sub-groups of Altaic (e.g., Ramstedt, [[Nicholas Poppe|Poppe]], Martin, Starostin). However, its opponents explain these as [[loanword]]s, mutual influence, or [[convergence]], arguing that, although the Turkic, Mongolian, and Tungusic families do have similarities, they are the result of intensive borrowing and long contact among speakers.
33790
33791 The Altaic theory is highly controversial. While some support it, others (e.g., Doerfer 1963) do not regard Altaic as a valid group and see it as three (or more) separate language families. Other linguists, such as [[Bernard Comrie]] (1992, 2003), argue that Altaic may be part of a larger grouping, such as [[Nostratic]] or [[Eurasiatic languages|Eurasiatic]]. In contrast, [[J. Marshall Unger]] (1990) believes that languages such as Korean and Japanese may be part of a &quot;macro-Tungusic&quot; family. Vovin rejected the claim for a Koreo-Japonic branch of Altaic on the basis that they have no [[comparative_method|shared innovation]]s.
33792
33793 ==See also==
33794 * [[Altay language]]
33795 * [[Language families and languages]]
33796 * [[Nostratic]]
33797
33798 ==External links==
33799 *[http://starling.rinet.ru/ Starling Etymological Databases]
33800 *[http://altaica.narod.ru/Engl.htm/ Monumenta Altaica - Altaic Linguistics]
33801
33802 [[Category:Altai]]
33803 [[Category:Altaic languages| ]]
33804
33805 [[ar:ØŖŲ„ØˇŲŠØŠ]]
33806 [[ast:Familia altaica]]
33807 [[bg:АĐģŅ‚Đ°ĐšŅĐēи ĐĩСиŅ†Đ¸]]
33808 [[be:АĐģŅ‚Đ°ĐšŅĐēŅ–Ņ ĐŧОвŅ‹]]
33809 [[de:Altaisprachen]]
33810 [[es:Lenguas altaicas]]
33811 [[fa:Ø˛Ø¨Ø§Ų†â€ŒŲ‡Ø§ÛŒ ØĸŲ„ØĒایی]]
33812 [[fr:Langues altaïques]]
33813 [[ko:ė•Œíƒ€ė´ė–´ėĄą]]
33814 [[io:Altaika linguaro]]
33815 [[id:Bahasa Altai]]
33816 [[lt:Altajaus kalbos]]
33817 [[hu:AltÃĄji nyelvcsalÃĄd]]
33818 [[nl:Altaïsche talen]]
33819 [[ja:ã‚ĸãƒĢã‚ŋイčĢ¸čĒž]]
33820 [[pl:Języki ałtajskie]]
33821 [[pt:Línguas altaicas]]
33822 [[ro:Limbi altaice]]
33823 [[ru:АĐģŅ‚Đ°ĐšŅĐēиĐĩ ŅĐˇŅ‹Đēи]]
33824 [[sl:Altajski jeziki]]
33825 [[fi:Altailaiset kielet]]
33826 [[sv:Altaiska sprÃĨk]]
33827 [[vi:Háģ‡ ngôn ngáģ¯ Altai]]
33828 [[uk:АĐģŅ‚Đ°ĐšŅŅŒĐēŅ– ĐŧОви]]
33829 [[zh:é˜ŋ尔æŗ°č¯­įŗģ]]</text>
33830 </revision>
33831 </page>
33832 <page>
33833 <title>Austrian German</title>
33834 <id>825</id>
33835 <revision>
33836 <id>41866943</id>
33837 <timestamp>2006-03-02T06:09:48Z</timestamp>
33838 <contributor>
33839 <username>Svenska84</username>
33840 <id>214985</id>
33841 </contributor>
33842 <comment>/* Influence of popular culture */ Linguistic research has consistently shown the media don't cause dialect death. Also, if ialects are dying out in most other places in Europe that needs citation</comment>
33843 <text xml:space="preserve">'''Austrian German''' is any variety of the [[German language]] spoken in [[Austria]]. There is no unitary Austrian [[language]], but a variety of [[High Germanic languages|High German]] [[dialect]]s are spoken. Besides the Germanic languages discussed here, [[minority language]]s such as [[Slovenian language|Slovenian]], [[Croatian language|Croatian]], and [[Hungarian language|Hungarian]] are spoken in parts of the country.
33844
33845 ==Overview==
33846 * [[Standard German]], called ''&quot;High German&quot;'' (German: ''standardsprache'' (by philologists), generally (incorrectly) referred to as ''Hochdeutsch'') in Austria.
33847 * [[Vorarlbergerisch]], spoken in [[Vorarlberg]], is an [[Alemannic German|Alemannic]] dialect similar to [[Swiss German]].
33848 * All other dialects belong to the [[Austro-Bavarian]] group, which is a common language throughout much of the country.
33849
33850 ==Subgroups==
33851 Ordinarily, the latter dialects are considered to belong either to the [[Central Austro-Bavarian]] or [[Southern Austro-Bavarian]] subgroups, with the latter encompassing the languages of the [[Tyrol]], [[Carinthia (state)|Carinthia]], and [[Styria (state)|Styria]] and the former including the dialects of [[Vienna]], [[Upper Austria]], and [[Lower Austria]]. The dialect spoken in Vorarlberg is more closely related to [[Swiss German]] than it is to other Austrian dialects, so Austrians from outside Vorarlberg normally cannot understand it.
33852
33853 ==Intercomprehensiblity and regional accents==
33854 While strong forms of the various dialects are not normally comprehensible to Northern [[Germany|Germans]], there is virtually no communication barrier to speakers from [[Bavaria]]. The [[Central Austro-Bavarian]] dialects are more intelligible to speakers of Standard German than the [[Southern Austro-Bavarian]] dialects of [[Tyrol (state)|Tirol]]. [[Viennese language|Viennese]], the Austro-Bavarian dialect of [[Vienna]], is most frequently used in [[Germany]] for impersonations of the typical inhabitant of Austria. The people of [[Graz]], the capital of [[Styria (state)|Styria]], speak yet another dialect which is not very Styrian and more easily understood by people from other parts of Austria than other Styrian dialects, for example from western [[Styria (state)|Styria]].
33855
33856 Simple words in the various dialects are very similar, but pronunciation is distinct for each and it is very easy for an Austrian after a few spoken words to judge which Austrian dialect someone speaks. However, if it goes into the dialects of the deeper valleys of [[Tyrol]], sometimes even other Tyroleans are helpless to understand the dialect. Speakers from the different [[States of Austria|states]] of Austria can usually easily be distinguished from each other by their particular accents (probably more so than Bavarians), with those of [[Carinthia (state)|Carinthia]], [[Styria (state)|Styria]], [[Vienna]], [[Upper Austria]], and the Tyrol being very characteristic. Speakers from those regions, even those speaking [[Standard German]], can usually be easily identified by their accent, even by an untrained listener.
33857
33858 Several of the dialects have been influenced by contact with non-Germanic linguistic groups, such as the dialect of Carinthia, where in the past many speakers were bilingual with [[Slovenian language|Slovenian]], and the dialect of Vienna, which has been influenced by immigration during the [[Austria-Hungary|Austro-Hungarian]] period, particularly from what is today the [[Czech Republic]].
33859
33860 Interestingly, the geographic borderlines between the different accents coincide strongly with the borders of the states and also with the border to [[Bavaria]], with Bavarians having a markedly different rhythm of speech in spite of the similarities in the language as such.
33861
33862 ==Standard German in Austria==
33863 With German being a [[pluricentric language]], Austrian dialects should not be confused with the variety of [[Standard German]] spoken by most Austrians, which is distinct from that of [[Germany]] or [[Switzerland]]. Distinctions in vocabulary persist, for example, in [[culinary]] terms, where communication with Germans is frequently difficult, and [[administration|administrative]] and [[law|legal]] language, which is due to Austria's exclusion from the development of a German [[nation-state]] in the late [[19th century]] and its manifold particular traditions.
33864
33865 Austrians speaking Standard German can almost always be recognised by their accent, much more so than speakers from most regions of [[Germany]].
33866
33867 When Austria became a member of the European Union, the Austrian variety of the German language (limited to 23 agricultural terms) was “protected” in the so-called Protocol no. 10 regarding the use of specific Austrian terms of the German language in the framework of the European Union, which forms part of the Austrian EU accession treaty. Austrian German is the only variety of a pluricentric language recognised under international law / EU primary law. All facts concerning “Protocol no. 10” are documented in Markhardt, Heidemarie: Das Ãļsterreichische Deutsch im Rahmen der EU, Peter Lang, 2005.
33868 ==Influence of popular culture==
33869 Dialects are receding in Austria as they are in some other areas of [[Europe]], but it can safely be said that they are more persistent than in most of Germany. Dialects are frequently used in TV series or movies in situation where it is appropriate for the particular character and situation. A classic example of a strong form of Viennese working-class dialect, for example, would be ''[[Ein echter Wiener geht nicht unter]]''. However, strong varieties of dialect are not used quite as much as, for example, in Switzerland. For example, educated people in Vienna usually speak a very slight form of dialect or simply Standard German, but with the characteristic Viennese accent and, where it exists, particular Austrian and Viennese vocabulary.
33870
33871 A good reference for the Austrian, Bavarian and other German dialects are the dialect (&quot;Mundart&quot;) editions of [[Asterix]] and [[Obelix]] comic books which are available in [[Viennese language|Viennese]] (three editions with different dialects from inside [[Vienna]]) and at least one for the common Tyrolean dialect and one for a deep Styrian dialect.
33872
33873 ==See also==
33874 *[[Austro-Bavarian]]
33875 *[[Viennese German]]
33876
33877 [[Category:High Germanic languages]]
33878 [[Category:Languages of Austria|*]]
33879
33880 [[de:Sprachgebrauch in Österreich]]
33881 [[it:Differenze tra tedesco e austriaco]]
33882 [[lt:Austriacizmas]]</text>
33883 </revision>
33884 </page>
33885 <page>
33886 <title>Austria/Geography</title>
33887 <id>826</id>
33888 <revision>
33889 <id>15899340</id>
33890 <timestamp>2002-08-04T10:32:35Z</timestamp>
33891 <contributor>
33892 <username>Ellmist</username>
33893 <id>2214</id>
33894 </contributor>
33895 <comment>move to Geography of Austria</comment>
33896 <text xml:space="preserve">#REDIRECT [[Geography of Austria]]</text>
33897 </revision>
33898 </page>
33899 <page>
33900 <title>Austria/People</title>
33901 <id>827</id>
33902 <revision>
33903 <id>15899341</id>
33904 <timestamp>2002-08-20T14:14:10Z</timestamp>
33905 <contributor>
33906 <username>-- April</username>
33907 <id>166</id>
33908 </contributor>
33909 <minor />
33910 <comment>fix redirect</comment>
33911 <text xml:space="preserve">#REDIRECT [[Demographics of Austria]]</text>
33912 </revision>
33913 </page>
33914 <page>
33915 <title>Austria/Government</title>
33916 <id>828</id>
33917 <revision>
33918 <id>15899342</id>
33919 <timestamp>2002-08-20T10:19:23Z</timestamp>
33920 <contributor>
33921 <username>Koyaanis Qatsi</username>
33922 <id>90</id>
33923 </contributor>
33924 <text xml:space="preserve">#REDIRECT [[Politics of Austria]]</text>
33925 </revision>
33926 </page>
33927 <page>
33928 <title>Austria/Economy</title>
33929 <id>829</id>
33930 <revision>
33931 <id>15899343</id>
33932 <timestamp>2002-08-04T10:34:47Z</timestamp>
33933 <contributor>
33934 <username>Ellmist</username>
33935 <id>2214</id>
33936 </contributor>
33937 <comment>move to Economy of Austria</comment>
33938 <text xml:space="preserve">#REDIRECT [[Economy of Austria]]</text>
33939 </revision>
33940 </page>
33941 <page>
33942 <title>Austria/Communications</title>
33943 <id>830</id>
33944 <revision>
33945 <id>15899344</id>
33946 <timestamp>2002-08-20T10:19:37Z</timestamp>
33947 <contributor>
33948 <username>Koyaanis Qatsi</username>
33949 <id>90</id>
33950 </contributor>
33951 <minor />
33952 <text xml:space="preserve">#REDIRECT [[Communications in Austria]]</text>
33953 </revision>
33954 </page>
33955 <page>
33956 <title>Austria/Transportation</title>
33957 <id>831</id>
33958 <revision>
33959 <id>15899345</id>
33960 <timestamp>2002-08-20T10:19:55Z</timestamp>
33961 <contributor>
33962 <username>Koyaanis Qatsi</username>
33963 <id>90</id>
33964 </contributor>
33965 <minor />
33966 <text xml:space="preserve">#REDIRECT [[Transportation in Austria]]</text>
33967 </revision>
33968 </page>
33969 <page>
33970 <title>Austria/Transnational issues</title>
33971 <id>832</id>
33972 <revision>
33973 <id>15899346</id>
33974 <timestamp>2002-08-20T10:20:19Z</timestamp>
33975 <contributor>
33976 <username>Koyaanis Qatsi</username>
33977 <id>90</id>
33978 </contributor>
33979 <minor />
33980 <text xml:space="preserve">#REDIRECT [[Foreign relations of Austria]]</text>
33981 </revision>
33982 </page>
33983 <page>
33984 <title>Austria/Military</title>
33985 <id>833</id>
33986 <revision>
33987 <id>15899347</id>
33988 <timestamp>2002-08-04T10:37:54Z</timestamp>
33989 <contributor>
33990 <username>Ellmist</username>
33991 <id>2214</id>
33992 </contributor>
33993 <comment>move to Military of Austria</comment>
33994 <text xml:space="preserve">#REDIRECT [[Military of Austria]]</text>
33995 </revision>
33996 </page>
33997 <page>
33998 <title>Austria/Foreign relations</title>
33999 <id>834</id>
34000 <revision>
34001 <id>15899348</id>
34002 <timestamp>2002-08-04T10:37:21Z</timestamp>
34003 <contributor>
34004 <username>Ellmist</username>
34005 <id>2214</id>
34006 </contributor>
34007 <comment>move to Foreign relations of Austria</comment>
34008 <text xml:space="preserve">#REDIRECT [[Foreign relations of Austria]]</text>
34009 </revision>
34010 </page>
34011 <page>
34012 <title>Austria/History</title>
34013 <id>835</id>
34014 <revision>
34015 <id>15899349</id>
34016 <timestamp>2002-02-25T15:43:11Z</timestamp>
34017 <contributor>
34018 <username>LA2</username>
34019 <id>445</id>
34020 </contributor>
34021 <comment>*</comment>
34022 <text xml:space="preserve">#REDIRECT [[History of Austria]]</text>
34023 </revision>
34024 </page>
34025 <page>
34026 <title>Acronym/List</title>
34027 <id>836</id>
34028 <revision>
34029 <id>15899350</id>
34030 <timestamp>2004-03-06T15:24:27Z</timestamp>
34031 <contributor>
34032 <username>Timwi</username>
34033 <id>13051</id>
34034 </contributor>
34035 <minor />
34036 <text xml:space="preserve">#REDIRECT [[List of acronyms and initialisms]]</text>
34037 </revision>
34038 </page>
34039 <page>
34040 <title>Acronym/Medical List</title>
34041 <id>837</id>
34042 <revision>
34043 <id>15899351</id>
34044 <timestamp>2003-05-15T03:18:07Z</timestamp>
34045 <contributor>
34046 <username>Minesweeper</username>
34047 <id>7279</id>
34048 </contributor>
34049 <minor />
34050 <comment>fix double redir</comment>
34051 <text xml:space="preserve">#REDIRECT [[List_of_medical_abbreviations]]</text>
34052 </revision>
34053 </page>
34054 <page>
34055 <title>Anglican Church</title>
34056 <id>839</id>
34057 <revision>
34058 <id>15899353</id>
34059 <timestamp>2003-02-07T17:05:42Z</timestamp>
34060 <contributor>
34061 <username>TUF-KAT</username>
34062 <id>8351</id>
34063 </contributor>
34064 <minor />
34065 <comment>oops</comment>
34066 <text xml:space="preserve">#redirect [[Anglican Communion]]</text>
34067 </revision>
34068 </page>
34069 <page>
34070 <title>Axiom of choice</title>
34071 <id>840</id>
34072 <revision>
34073 <id>42010989</id>
34074 <timestamp>2006-03-03T05:06:29Z</timestamp>
34075 <contributor>
34076 <username>Sikon</username>
34077 <id>293268</id>
34078 </contributor>
34079 <comment>/* Results requiring ÂŦAC */</comment>
34080 <text xml:space="preserve">In [[mathematics]], the '''axiom of choice''', or '''AC''', is an [[axiom]] of [[set theory]]. It was formulated in [[1904]] by [[Ernst Zermelo]]. While it was originally controversial, it is now used without embarrassment by most mathematicians. However, there are still schools of mathematical thought, primarily within set theory, that either reject the axiom of choice, or even investigate consequences of axioms inconsistent with AC.
34081
34082 Intuitively speaking, AC says that given a collection of bins, each containing at least one object, then exactly one object from each bin can be picked and gathered in another bin - even if there are [[infinite]]ly many bins, and there is no &quot;rule&quot; for which object to pick from each.
34083
34084 == Statement ==
34085
34086 The axiom of choice states:
34087 :Let ''X'' be a [[set]] of [[non-empty]] sets. Then we can [[choice function|choose]] a member from each set in ''X''.
34088 Stated more formally:
34089 :Let ''X'' be a set of non-empty sets. Then there exists a [[choice function]] ''f'' defined on ''X''. In other words, there exists a function ''f'' defined on ''X'', such that for each set ''s'' in ''X'', ''f''(''s'') is an element of ''s''.
34090 Another formulation of the axiom of choice states:
34091 :Given any set of mutually disjoint non-empty sets, there exists at least one set that contains exactly one element in common with each of the non-empty sets.
34092
34093 == Usage ==
34094
34095 Until the late 19th century, the axiom of choice was often used implicitly. For example, after having established that the set ''X'' contains only non-empty sets, a mathematician might have said &quot;let ''F(s)'' be one of the members of ''s'' for all ''s'' in ''X''.&quot; In general, it is impossible to prove that ''F'' exists without the axiom of choice, but this seems to have gone unnoticed until Zermelo.
34096
34097 Not every situation requires the axiom of choice. For finite sets ''X'', the axiom of choice follows from the other axioms of set theory. In that case it is equivalent to saying that if we have several (a finite number of) boxes, each containing at least one item, then we can choose exactly one item from each box. Clearly we can do this: We start at the first box, choose an item; go to the second box, choose an item; and so on. There are only finitely many boxes, so eventually our choice procedure comes to an end. The result is an explicit choice function: a function that takes the first box to the first element we chose, the second box to the second element we chose, and so on. (A formal proof for all finite sets would use the principle of [[mathematical induction]].)
34098
34099 For certain infinite sets ''X'', it is also possible to avoid the axiom of choice. For example, suppose that the elements of ''X'' are sets of natural numbers. Every nonempty set of natural numbers has a least element, so to specify our choice function we can simply say that it takes each set to the least element of that set. This gives us a definite choice of an element from each set and we can write down an explicit expression that tells us what value our choice function takes. Any time it is possible to specify such an explicit choice, the axiom of choice is unnecessary.
34100
34101 The difficulty appears when there is no natural choice of elements from each set. If we cannot make explicit choices, how do we know that our set exists? For example, suppose that ''X'' is the set of all non-empty subsets of the [[real number]]s. First we might try to proceed as if ''X'' were finite. If we try to choose an element from each set, then, because ''X'' is infinite, our choice procedure will never come to an end, and consequently, we will never be able to produce a choice function for all of ''X''. So that won't work. Next we might try the trick of specifying the least element from each set. But some subsets of the real numbers don't have least elements. For example, the open interval (0,1) does not have a least element: If ''x'' is in (0,1), then so is ''x''/2, and ''x''/2 is always strictly smaller than ''x''. So taking least elements doesn't work, either.
34102
34103 The reason that we are able to choose least elements from subsets of the natural numbers is the fact that the natural numbers are [[well-order]]ed: Every subset of the natural numbers has a unique least element. Perhaps if we were clever we might say, &quot;Even though the usual ordering of the real numbers does not work, it may be possible to find a different ordering of the real numbers which is a well-ordering. Then our choice function can choose the least element of every set under our unusual ordering.&quot; The problem then becomes constructing such an ordering, and it turns out that every set can be well-ordered if and only if the axiom of choice is true.
34104
34105 A proof requiring the axiom of choice is always [[nonconstructive proof|nonconstructive]]: even if the proof produces an object then it is impossible to say exactly what that object is. Consequently, while the axiom of choice asserts that there is a well-ordering of the real numbers, it does not give us an example of one. Yet the reason why we chose above to well-order the real numbers was so that for each set in ''X'', we could explicitly choose an element of that set. If we cannot write down the well-ordering we are using, then our choice is not very explicit. This is one of the reasons why some mathematicians dislike the axiom of choice. For example, [[constructivism (mathematics)|constructivists]] posit that all existence proofs should be totally explicit; it should be possible to construct anything that exists. They reject the axiom of choice because it asserts the existence of an object without telling what it is.
34106
34107 == Independence of AC ==
34108
34109 By work of [[Kurt GÃļdel]] and [[Paul Cohen]], the axiom of choice is [[logically independent]] of the other axioms of [[Zermelo-Fraenkel set theory]] (ZF). This means that neither it nor its negation can be proven to be true in ZF. Consequently, assuming the axiom of choice, or its negation, will never lead to a contradiction that could not be obtained without that assumption.
34110
34111 So the decision whether or not it is appropriate to make use of the axiom of choice in a proof cannot be made by appeal to other axioms of set theory. The decision must be made on other grounds.
34112
34113 One argument given in favor of using the axiom of choice is that it is convenient to use it: using it cannot hurt (cannot result in contradiction) and makes it possible to prove some propositions that otherwise could not be proved.
34114
34115 The axiom of choice is not the only significant statement which is independent of ZF. For example, the [[generalized continuum hypothesis]] (GCH) is not only independent of ZF, but also independent of ZF plus the axiom of choice (ZFC). However, ZF plus GCH implies AC, making GCH a strictly stronger claim than AC, even though they are both independent of ZF.
34116
34117 One reason that some mathematicians dislike the axiom of choice is that it implies the existence of some bizarre counter-intuitive objects. An example of this is the [[Banach–Tarski paradox]] which says in effect that it is possible to &quot;carve up&quot; the 3-dimensional solid unit ball into finitely many pieces and, using only rotation and translation, reassemble the pieces into two balls each with the same volume as the original. Note that the proof, like all proofs involving the axiom of choice, is an existence proof only: it does not tell us how to carve up the unit sphere to make this happen, it simply tells us that it can be done.
34118
34119 On the other hand, the [[negation]] of the axiom of choice is also bizarre. For example, the statement that for any two sets ''S'' and ''T'', the [[cardinality]] of ''S'' is less than or equal to the cardinality of ''T'' or the cardinality of ''T'' is less than or equal to the cardinality of ''S'' is equivalent to the axiom of choice. Put differently, if the axiom of choice is false, then there are sets ''S'' and ''T'' of incomparable size: neither can be mapped in a one-to-one fashion onto a subset of the other.
34120
34121 A third possibility is to prove theorems using neither the axiom of choice nor its negation, a tactic preferred in constructive mathematics. Such statements will be true in any [[model theory|model]] of Zermelo–Fraenkel set theory, regardless of the truth or falsity of the axiom of choice in that particular model. This renders any claim that relies on either the axiom of choice or its negation undecidable. For example, under such an assumption, the Banach–Tarski paradox is neither true nor false: It is impossible to construct a decomposition of the unit ball which can be reassembled into two unit balls, and it is also impossible to prove that it can't be done. However, the Banach–Tarski paradox can be rephrased as a statement about models of ZF by saying, &quot;In any model of ZF in which AC is true, the Banach–Tarski paradox is true.&quot; Similarly, all the statements listed below under [[#Results requiring AC|Results requiring AC]] are undecidable in ZF, but since each is provable in any model of ZFC, there are models of ZF in which each statement is true.
34122
34123 == Weaker forms of AC ==
34124
34125 There are several weaker statements which are not equivalent to the axiom of choice, but which are closely related. A simple one is the [[axiom of countable choice]], which states that a choice function exists for any countable set ''X''. This usually suffices when trying to make statements about the real numbers, for example, because the rational numbers, which are countable, form a dense subset of the reals. See also the [[Boolean prime ideal theorem]], the [[ultrafilter lemma]], the [[axiom of dependent choice]], and the [[Uniformization (set theory)|axiom of uniformization]].
34126
34127 == Results requiring AC (or weaker forms) ==
34128
34129 One of the most interesting aspects of the axiom of choice is the large number of places in mathematics that it shows up. There are also a remarkable number of important statements that, assuming the axioms of ZF but neither AC nor ÂŦAC, are equivalent to the axiom of choice. The most important among them are [[Zorn's lemma]] and the [[well-ordering theorem]]: every set can be well-ordered. In fact, Zermelo initially introduced the axiom of choice in order to formalize his proof of the well-ordering principle. Here are some statements that require the axiom of choice in the sense that they are not provable from ZF but are provable from ZFC (ZF plus AC). Equivalently, these statements are true in all models of ZFC but false in some models of ZF.
34130
34131 * [[Set theory]]
34132 ** Any [[union (set theory)|union]] of [[countable|countably many]] countable sets is itself countable.
34133 ** If the set ''A'' is [[infinite]], then there exists an [[injective function|injection]] from the [[natural number]]s '''N''' to ''A''.
34134 ** If the set ''A'' is infinite, then ''A'' and ''A''×''A'' have the same [[cardinality]]. ''(This statement is equivalent to AC (over ZF))''
34135 ** [[Trichotomy]]: If two sets are given, then they either have the same cardinality, or one has a smaller cardinality than the other. ''(This statement is equivalent to AC (over ZF))''
34136 ** The product of any nonempty family of nonempty sets is nonempty. ''(This statement is equivalent to AC (over ZF))''
34137 ** Every infinite [[determinacy#Basic notions|game]] &lt;math&gt;G(T,X)&lt;/math&gt; where &lt;math&gt;X&lt;/math&gt; is either [[open set|open]] or [[closed set|closed]] is [[determinacy#Basic notions|determined]].
34138
34139 * [[Measure theory]]
34140 ** The [[Vitali set|Vitali theorem]] on the existence of [[non-measurable set]]s.
34141 ** The [[Hausdorff paradox]].
34142 ** The [[Banach–Tarski paradox]].
34143
34144 * [[Algebra]]
34145 ** Every [[vector space]] has a [[basis (linear algebra)|basis]]. ''(This statement is equivalent to AC (over ZF))''
34146 ** Every unital [[ring (mathematics)|ring]] other than the trivial ring contains a [[maximal ideal]].
34147 ** Every [[field (mathematics)|field]] has an [[algebraic closure]].
34148 ** Every [[field extension]] has a [[transcendence basis]].
34149 ** Every [[category (category theory)|category]] has a [[skeleton (category theory)|skeleton]].
34150 ** [[Stone's representation theorem for Boolean algebras]] needs the [[Boolean prime ideal theorem]].
34151 ** The [[Nielsen-Schreier theorem]], that every subgroup of a free group is free.
34152 ** The [[additive group]]s of '''[[real numbers|R]]''' and '''[[complex numbers|C]]''' are isomorphic. [http://www.cs.nyu.edu/pipermail/fom/2006-February/009959.html]
34153
34154 * [[Functional analysis]]
34155 ** The [[Hahn-Banach theorem]] in [[functional analysis]], allowing the extension of [[linear map|linear functionals]]
34156 ** The theorem that every [[Hilbert space]] has an orthonormal basis.
34157 ** The [[Banach-Alaoglu theorem]] about [[compactness]] of sets of functionals.
34158 ** The [[Baire category theorem]] about [[complete space|complete]] [[metric space]]s, and its consequences, such as the [[open mapping theorem]] and the [[closed graph theorem]].
34159
34160 * [[General topology]]
34161 ** [[Tychonoff's theorem]] stating that every [[product topology|product]] of [[compact]] [[topological space]]s is compact. ''(This statement is equivalent to AC (over ZF))''
34162 ** In the product topology, the [[closure (topology)|closure]] of a product of subsets is equal to the product of the closures.
34163 ** Any product of [[complete space|complete]] [[uniform space]]s is complete.
34164 ** A uniform space is compact if and only if it is complete and totally bounded.
34165 ** Every [[Tychonoff space]] has a [[Stone-Cech compactification]].
34166
34167 == Results requiring ÂŦAC ==
34168
34169 There are models of Zermelo-Fraenkel set theory in which the axiom of choice is false. We will abbreviate &quot;Zermelo-Fraenkel set theory plus the negation of the axiom of choice&quot; by ZFÂŦC. For certain models of ZFÂŦC, it is possible to prove the negation of some standard facts.
34170 Note that any model of ZFÂŦC is also a model of ZF, so for each of the following statements, there exists a model of ZF in which that statement is true.
34171
34172 *There exists a model of ZFÂŦC in which there is a function ''f'' from the real numbers to the real numbers such that ''f'' is not continuous at ''a'', but for any sequence {''x&lt;sub&gt;n&lt;/sub&gt;''} converging to ''a'', lim&lt;sub&gt;''n''&lt;/sub&gt; f(''x&lt;sub&gt;n&lt;/sub&gt;'')=f(a).
34173 *There exists a model of ZFÂŦC in which real numbers are a countable union of countable sets.
34174 *There exists a model of ZFÂŦC in which there is a field with no algebraic closure.
34175 *In all models of ZFÂŦC there is a vector space with no basis.
34176 *There exists a model of ZFÂŦC in which there is a vector space with two bases of different cardinalities.
34177
34178 For proofs, see Thomas Jech, ''The Axiom of Choice'', American Elsevier Pub. Co., New York, 1973.
34179
34180 *There exists a model of ZFÂŦC in which every set in R&lt;sup&gt;''n''&lt;/sup&gt; is [[measurable]]. Thus it is possible to exclude counterintuitive results like the [[Banach–Tarski paradox]] which are provable in ZFC. Furthermore, this is possible whilst assuming the [[Axiom of dependent choice]], which is weaker than AC but sufficient to develop most of [[real analysis]].
34181 *In all models of ZFÂŦC, the [[Continuum hypothesis|generalized continuum hypothesis]] does not hold.
34182
34183 == Results requiring choice in intuitionistic logic, though not classically ==
34184 Interestingly, in various varieties of [[constructive logic]] (in particular, [[intuitionistic logic]]) in which the [[law of excluded middle]] is not assumed, the assumption of the axiom of choice is sufficient to obtain the law of excluded middle as a theorem. To see this, for any proposition &lt;math&gt;P\,,&lt;/math&gt; let &lt;math&gt;U\,&lt;/math&gt; be the set &lt;math&gt;\{x \in \{0, 1\} : (x = 0) \vee P\}&lt;/math&gt; and let &lt;math&gt;V\,&lt;/math&gt; be the set &lt;math&gt;\{x \in \{0, 1\} : (x = 1) \vee P\}&lt;/math&gt; (see [[Set-builder notation]]). By the axiom of choice, there will exist a choice function &lt;math&gt;f\,&lt;/math&gt; for the set &lt;math&gt;\{U, V\}\,&lt;/math&gt; (note that, although the axiom of choice isn't classically required in order to obtain choice functions for finite sets, it is necessary here in intuitionistic logic). Since &lt;math&gt;f(U) \in U&lt;/math&gt; and &lt;math&gt;f(V) \in V&lt;/math&gt;, this implies &lt;math&gt;[(f(U) = 0) \vee P] \wedge [(f(V) = 1) \vee P]&lt;/math&gt;, which implies &lt;math&gt;f(U) \neq f(V) \vee P&lt;/math&gt;. Since &lt;math&gt;P\,&lt;/math&gt; implies &lt;math&gt;U = V = \{0, 1\}\,&lt;/math&gt;, it must be that &lt;math&gt;P\,&lt;/math&gt; implies &lt;math&gt;f(U) = f(V)\,&lt;/math&gt;, so &lt;math&gt;f(U) \neq f(V) \vee P&lt;/math&gt; would imply &lt;math&gt;\neg P \vee P&lt;/math&gt;. As this could be done for any proposition &lt;math&gt;P\,&lt;/math&gt;, this completes the proof that the axiom of choice implies the law of the excluded middle.
34185
34186 The above proof is not valid in all intuitionistic deductive systems. For example, in the [[intuitionistic type theory]] of [[Per Martin-LÃļf]], the axiom of choice is a theorem, yet excluded middle is not.
34187
34188 == Quotes ==
34189
34190 :The Axiom of Choice is obviously true, the [[Well-ordering theorem|well-ordering principle]] obviously false, and who can tell about [[Zorn's lemma]]?
34191 ::&amp;mdash;&amp;nbsp;[[Jerry Bona]]
34192
34193 :::This is a joke that although the axiom of choice, the well-ordering principle, and Zorn's lemma are mathematically equivalent, most mathematicians find the axiom of choice to be intuitive, the well-ordering principle to be counterintuitive, and Zorn's lemma to be too complex for any intuition.
34194
34195 :The Axiom of Choice is necessary to select a set from an infinite number of socks, but not an infinite number of shoes.
34196 ::&amp;mdash;&amp;nbsp;[[Bertrand Russell]]
34197
34198 :::The observation here is that one can define a function to select from an infinite number of pairs of shoes by stating for example, to choose the left shoe. Without the axiom of choice, one cannot assert that such a function exists for pairs of socks, because left and right socks are (presumably) identical to each other.
34199
34200 :The axiom gets its name not because mathematicians prefer it to other axioms.
34201 ::&amp;mdash;&amp;nbsp;[[A. K. Dewdney]]
34202
34203 :::From the famous [[April Fool's Day]] article in the ''computer recreations'' column of the ''[[Scientific American]]'', April 1989.
34204
34205 == External links ==
34206
34207 * There are many people still doing work on the axiom of choice and its consequences. If you are interested in more, look up [http://www.emunix.emich.edu/~phoward/ Paul Howard at EMU].
34208
34209 == References ==
34210 * Zermelo, Ernst, &quot;Beweis, dass jede Menge wohlgeordnet werden kann&quot;, ''[[Mathematische Annalen]]'', '''59''', 514-516, 1904
34211 * Zermelo, Ernst, &quot;Untersuchungen Ãŧber die Grundlagen der Mengenlehre I&quot;, ''Mathematische Annalen'', '''65''', 261-281, 1908
34212
34213 [[Category:Axioms of set theory]]
34214 [[Category:Model theory]]
34215
34216 [[cs:Axiom vÃŊběru]]
34217 [[da:Udvalgsaksiomet]]
34218 [[de:Auswahlaxiom]]
34219 [[fr:Axiome du choix]]
34220 [[ko:ė„ íƒęŗĩëĻŦ]]
34221 [[it:Assioma della scelta]]
34222 [[he:אקסיומ×Ē הבחירה]]
34223 [[hu:KivÃĄlasztÃĄsi axiÃŗma]]
34224 [[nl:Keuzeaxioma]]
34225 [[ja:選択å…Ŧį†]]
34226 [[pl:Aksjomat wyboru]]
34227 [[pt:axioma da escolha]]
34228 [[ru:АĐēŅĐ¸ĐžĐŧĐ° вŅ‹ĐąĐžŅ€Đ°]]
34229 [[sv:Urvalsaxiomet]]</text>
34230 </revision>
34231 </page>
34232 <page>
34233 <title>Attila the Hun</title>
34234 <id>841</id>
34235 <restrictions>move=:edit=</restrictions>
34236 <revision>
34237 <id>41933099</id>
34238 <timestamp>2006-03-02T18:47:06Z</timestamp>
34239 <contributor>
34240 <username>Ghirlandajo</username>
34241 <id>147410</id>
34242 </contributor>
34243 <minor />
34244 <comment>/* Appearance, character, and name */ [[List of Hunnish rulers]]</comment>
34245 <text xml:space="preserve">{{featured article}}
34246 :''For other uses, see [[Attila (disambiguation)]].''
34247 [[Image:Checa-HunCharge.jpg|right|thumb|300px|The [[Huns]], led by Attila (right, foreground), ride into [[Italy]].]]
34248
34249 '''Attila the Hun''' ([[Old Norse]]: ''Atle, Atli''; [[Middle High German]]: ''Etzel''; ca. [[406]]&amp;ndash;[[453]] [[Anno Domini|AD]]) was the last and most powerful king of the [[Huns]]. &lt;!--He was from [[Bulgars]] [[clan]] of [[Dulo]]. This information looks bogus. References please--&gt; He reigned over what was then [[Europe]]'s largest [[empire]], from [[434]] until his death. His empire stretched from [[Central Europe]] to the [[Black Sea]] and from the [[Danube|Danube River]] to the [[Baltic Sea|Baltic]]. During his rule he was among the direst enemies of the Eastern and Western [[Roman Empire]]s: he invaded the [[Balkans]] twice and encircled [[Constantinople]] in the second invasion. He marched through [[Gaul]] (later [[France]]) as far as [[Orleans]] before being turned back at [[Battle of Chalons|Chalons]]; and he drove the western emperor [[Valentinian III]] from his [[capital]] at [[Ravenna]] in [[452]].
34250
34251 Though his empire died with him and he left no remarkable [[legacy]], he has become a legendary figure in the [[history of Europe]]. In much of [[Western Europe]], he is remembered as the epitome of cruelty and rapacity. In contrast, some histories lionize him as a great and noble king, and he plays major roles in three [[Norse saga]]s.
34252
34253 ==Background and beginnings==
34254 :''Main article: [[Huns]]''
34255
34256 The European [[Huns]] are often thought to have been a western extension of the [[Xiongnu]] (''XiōngnÃē''), (匈åĨ´) n., a group of [[nomad]] tribes from north-eastern [[China]] and [[Central Asia]]. These people achieved military superiority over their rivals (most of them highly cultured and civilized) by their state of readiness for combat, amazing mobility, and weapons like the [[Hun bow]].
34257
34258 Attila was born around 406. Nothing certain is known about his childhood; the supposition that at a young age he was already a capable leader and a capable warrior is reasonable but unknowable.
34259
34260 Following [[negotiation]] of peace terms in [[418]], the young Attila, at the age of 12, was sent as a child [[hostage]] to the Roman [[Royal court|court]] of Emperor [[Flavius Augustus Honorius|Honorius]]. In return, the Huns received [[Flavius Aetius]], in a child hostage exchange arranged by the Romans.
34261
34262 Most likely the empire schooled Attila in its courts, customs and traditions and in its luxurious [[lifestyle]], in the hope that he would carry an appreciation of these things back to his own nation, thus serving to extend Roman influence. The Huns would probably have hoped that Attila would enhance [[espionage]] capabilities by the exchange.
34263
34264 Attila attempted escape during his stay in Rome but failed. He turned his attention to an intense study of the empire while outwardly ceasing to struggle against his hostage status. He studied the internal and [[Foreign policy|foreign policies]] of the Romans. He often secretly observed them in [[Diplomacy|diplomatic]] conference with [[foreign minister]]s. He learned about [[leadership]], [[Protocol (diplomacy)|protocol]] and other essentials suited to future rulers and diplomats.
34265
34266 ==Shared kingship==
34267 [[Image:Huns empire.png|thumb|300px|left|The Hunnish empire stretched from the [[steppe]]s of Central Asia into modern [[Germany]], and from the Danube river to the Baltic Sea]]
34268
34269 By [[432]], the Huns were united under [[Ruga]]. In [[434]] Ruga died, leaving his [[nephew]]s Attila and [[Bleda]], the sons of his brother [[Mundjuk]], in control over all the united Hun tribes. At the time of their accession, the Huns were [[bargain]]ing with [[Theodosius II]]'s envoys over the return of several [[renegade]] tribes who had taken refuge within the [[Byzantine Empire]]. The following year, Attila and Bleda met with the imperial legation at Margus (present-day [[Pozarevac|PoÅžarevac]]) and, all seated on horseback in the Hunnic manner, negotiated a successful [[treaty]]: the Romans agreed not only to return the fugitive tribes (who had been a welcome aid against the [[Vandals]]), but also to double their previous tribute of 350 Roman pounds (ca. 114.5 kg) of gold, open their markets to Hunnish traders, and pay a ransom of eight ''[[solidus (coin)|solidi]]'' for each Roman taken prisoner by the Huns. The Huns, satisfied with the treaty, decamped from the empire and departed into the interior of the [[continent]], perhaps to consolidate and strengthen their empire. Theodosius used this opportunity to strengthen the [[walls of Constantinople]], building the city's first [[sea wall]], and to build up his border defenses along the Danube.
34270
34271 The Huns remained out of Roman sight for the next five years. During this time, they were conducting an [[invasion]] of the [[Persian Empire]]. However, in [[Armenia]], a Persian counterattack resulted in a defeat for Attila and Bleda, and they ceased their efforts to conquer Persia. In [[440]], they reappeared on the borders of the empire, attacking the merchants at the market on the north bank of the Danube that had been arranged for by the treaty. Attila and Bleda threatened further war, claiming that the Romans had failed to fulfil their treaty obligations and that the [[bishop]] of Margus (not far from modern [[Belgrade]]) had crossed the Danube to ransack and desecrate the royal Hun graves on the Danube's north bank. They crossed the Danube and laid waste to [[Illyria]]n cities and forts on the river, among them, according to [[Priscus]], [[Viminacium]], which was a city of the [[Moesian]]s in Illyria. Their advance began at Margus, for when the Romans discussed handing over the offending bishop, he slipped away secretly to the barbarians and betrayed the city to them.
34272
34273 Theodosius had stripped the river's defenses in response to the Vandal [[Geiseric]]'s capture of [[Carthage]] in [[440]] and the [[Sassanid dynasty|Sassanid]] [[Yazdegerd II of Persia|Yazdegerd II]]'s invasion of [[Armenia]] in [[441]]. This left Attila and Bleda a clear path through Illyria into the Balkans, which they invaded in 441. The Hunnish army, having sacked Margus and Viminacium, took Sigindunum (modern [[Belgrade]]) and [[Sirmium]] before halting its operations. A lull followed during [[442]], when Theodosius recalled his troops from [[North Africa]] and ordered a large new issue of coins to finance operations against the Huns. Having made these preparations, he thought it safe to refuse the Hunnish kings' demands.
34274
34275 Attila and Bleda responded by renewing their [[Military campaign|campaign]] in [[443]]. Striking along the Danube, they overran the military centers of [[Ratiara]] and successfully besieged Naissus (modern [[NiÅĄ]]) with [[battering ram]]s and rolling towers&amp;mdash;military sophistication that was new in the Hun repertory&amp;mdash;then pushing along the [[Nisava]] they took Serdica ([[Sofia]]), Philippopolis ([[Plovdiv]]), and [[Arcadiopolis]]. They encountered and destroyed the Roman force outside Constantinople and were only halted by their lack of [[siege|siege equipment]] capable of breaching the city's massive walls. Theodosius admitted defeat and sent the court official [[Anatolius]] to negotiate peace terms, which were harsher than the previous treaty: the Emperor agreed to hand over 6,000 Roman pounds (ca. 1,963 kg) of gold as punishment for having disobeyed the terms of the treaty during the invasion; the yearly tribute was tripled, rising to 2,100 Roman pounds (ca. 687 kg) in gold; and the ransom for each Roman prisoner rose to 12 ''solidi''.
34276
34277 Their desires contented for a time, the Hun kings withdrew into the interior of their empire. According to [[Jordanes]] (following [[Priscus]]), sometime during the peace following the Huns' withdrawal from Byzantium (probably around [[445]]), Bleda died (killed by his brother, according to the classical sources), and Attila took the throne for himself. Now undisputed lord of the Huns, he again turned towards the eastern Empire.
34278 *[http://www29.homepage.villanova.edu/christopher.haas/embassy.htm Priscus of Panium: fragments from the Embassy to Attila]
34279
34280 ==Sole ruler==
34281 Constantinople suffered major [[natural disaster|natural]] (and man-made) disasters in the years following the Huns' departure: bloody [[riot]]s between the [[Chariot racing#Byzantine chariot racing|racing factions]] of the [[Hippodrome of Constantinople|Hippodrome]]; [[Pandemic|plague]]s in [[445]] and [[446]], the second following a [[famine]]; and a four-month series of [[earthquake]]s which levelled much of the [[defensive wall|city wall]] and killed thousands, causing another [[epidemic]]. This last struck in [[447]], just as Attila, having consolidated his power, again rode south into the empire through [[Moesia]]. The [[Roman military history|Roman army]], under the [[Goths|Gothic]] ''[[magister militum]]'' [[Arnegisclus]], met him on the river [[Vid]] and was defeated&amp;mdash;though not without inflicting heavy losses. The Huns were left unopposed and rampaged through the Balkans as far as [[Thermopylae]]; Constantinople itself was saved by the intervention of the prefect [[Flavius Constantinus]], who organized the citizenry to reconstruct the earthquake-damaged walls, and in some places to construct a new line of fortification in front of the old. An account of this invasion survives:
34282
34283 : ''The barbarian nation of the Huns, which was in [[Thrace]], became so great that more than a hundred cities were captured and Constantinople almost came into danger and most men fled from it. â€Ļ And there were so many murders and blood-lettings that the dead could not be numbered. Ay, for they took captive the [[churches]] and [[monasteries]] and slew the monks and maidens in great numbers.''
34284 ::&amp;mdash; Callinicus, in his ''Life of Saint Hypatius''
34285 [[Image:MorThanFeastofAttila.jpg|thumb|right|275px|[[MÃŗr Than]]'s painting ''The Feast of Attila'', based on a fragment of [[Priscus]] (depicted at right, dressed in white and holding his history):&lt;br&gt; &lt;small&gt;&quot;When evening began to draw in, torches were lighted, and two barbarians came forward in front of Attila and sang songs which they had composed, hymning his victories and his great deeds in war. And the banqueters gazed at them, and some were rejoiced at the songs, others became excited at heart when they remembered the wars, but others broke into tears&amp;mdash;those whose bodies were weakened by time and whose spirit was compelled to be at rest.&quot; &lt;/small&gt;]]
34286
34287 Attila demanded, as a condition of peace, that the Romans should continue paying [[tribute]] in gold&amp;mdash;and evacuate a strip of land stretching three hundred miles east from Sigindunum ([[Belgrade]]) and up to a hundred miles south of the Danube. Negotiations continued between Roman and Hun for approximately three years. The [[historian]] [[Priscus]] was sent as emissary to Attila's encampment in [[448]], and the fragments of his reports preserved by Jordanes offer the best glimpse of Attila among his numerous wives, his [[Scythia]]n fool, and his [[Moors|Moor]]ish [[dwarf]], impassive and unadorned amid the splendor of the courtiers:
34288
34289 :''A luxurious meal, served on [[silver]] plate, had been made ready for us and the barbarian guests, but Attila ate nothing but meat on a wooden trencher. In everything else, too, he showed himself temperate; his cup was of wood, while to the guests were given goblets of gold and silver. His dress, too, was quite simple, affecting only to be clean. The sword he carried at his side, the latchets of his Scythian shoes, the bridle of his horse were not adorned, like those of the other Scythians, with gold or gems or anything costly.''
34290
34291 &quot;The floor of the room was covered with woollen mats for walking on,&quot; Priscus noted.
34292
34293 During these three years, according to a legend recounted by Jordanes, Attila discovered the &quot;Sword of Mars&quot;:
34294 :''The historian Priscus says it was discovered under the following circumstances: &quot;When a certain shepherd beheld one heifer of his flock limping and could find no cause for this wound, he anxiously followed the trail of blood and at length came to a sword it had unwittingly trampled while nibbling the grass. He dug it up and took it straight to Attila. He rejoiced at this gift and, being ambitious, thought he had been appointed ruler of the whole world, and that through the sword of Mars supremacy in all wars was assured to him.''
34295 ::&amp;mdash; Jordanes, ''[[The Origin and Deeds of the Goths]]'' ch. XXXV [http://www.boudicca.de/jordanes3-e.htm (e-text)]
34296
34297 Later scholarship would identify this legend as part of a pattern of sword worship common among the nomads of the [[Central Asia]]n steppes.
34298
34299 ==Attila in the west==
34300 [[Image:AttilaTheHun.jpg|frame|An inaccurate sketch of Attila the Hun, probably from the [[19th century]]&lt;!-- my guess --mirv --&gt;, depicts him as [[European]], though the only extant description of his appearance by a Roman court historian states that Atilla had &quot;a flat nose, swarthy dark complexion, broad chest, short stature and small eyes, but full of confidence&quot; among his features, suggesting physical features common among [[Mongolia]]ns.]]
34301
34302 As late as [[450]], Attila had proclaimed his intent to attack the powerful [[Visigoth]] kingdom of [[Toulouse]] in [[military alliance|alliance]] with Emperor [[Valentinian III]]. He had previously been on good terms with the western Empire and its ''[[de facto]]'' ruler [[Flavius AÃĢtius]]&amp;mdash;Aetius had spent a brief [[exile]] among the Huns in [[433]], and the troops Attila provided against the [[Goths]] and [[Bagaudae]] had helped earn him the largely honorary title of ''magister militum'' in the west. The gifts and diplomatic efforts of [[Geiseric]], who opposed and feared the Visigoths, may also have influenced Attila's plans.
34303
34304 However Valentinian's sister [[Justa Grata Honoria|Honoria]], in order to escape her forced betrothal to a [[Roman Senate|senator]], had sent the Hunnish king a plea for help&amp;mdash;and her [[engagement ring|ring]]&amp;mdash;in the spring of 450. Though Honoria may not have intended a proposal of marriage, Attila chose to interpret her message as such; he accepted, asking for half of the western Empire as [[dowry]]. When Valentinian discovered the plan, only the influence of his mother [[Galla Placidia]] convinced him to exile, rather than kill, Honoria; he also wrote to Attila strenuously denying the legitimacy of the supposed marriage proposal. Attila, not convinced, sent an embassy to [[Ravenna]] to proclaim that Honoria was innocent, that the proposal had been legitimate, and that he would come to claim what was rightfully his.
34305
34306 Meanwhile, Theodosius having died in a riding accident, his successor [[Marcian]] cut off the Huns' tribute in late 450; and multiple invasions, by the Huns and by others, had left the Balkans with little to plunder. The king of the [[Salian Franks]] had died, and the succession struggle between his two sons drove a rift between Attila and Aetius: Attila supported the elder son, while Aetius supported the younger{{ref|rift}}. [[J.B. Bury]] believes that Attila's intent, by the time he marched west, was to extend his kingdom&amp;mdash;already the strongest on the continent&amp;mdash;across [[Gaul]] to the [[Atlantic Ocean|Atlantic]] shore{{ref|atlantic}}. By the time Attila had gathered his [[vassal]]s&amp;mdash;[[Gepids]], [[Ostrogoths]], [[Rugians]], [[Scirians]], [[Heruls]], [[Thuringians]], [[Alans]], [[Burgundians]], et al.&amp;mdash;and begun his march west, he had declared intent of alliance both with the Visigoths and with the Romans.
34307
34308 In [[451]], his arrival in [[Belgica]] with an army exaggerated by Jordanes to half a million strong soon made his intent clear. On [[April 7]] he captured [[Metz]], and Aetius moved to oppose him, gathering troops from among the [[Franks]], the [[Burgundians]], and the [[Celts]]. A mission by [[Avitus]], and Attila's continued westward advance, convinced the Visigoth king [[Theodoric I]] (Theodorid) to ally with the Romans. The combined armies reached [[Orleans]] ahead of Attila{{ref|orleans}}, thus checking and turning back the Hunnish advance. Aetius gave chase and caught the Huns at a place usually assumed to be near [[ChÃĸlons-en-Champagne]]. The two armies clashed in the [[Battle of Chalons]], whose outcome commonly, though erroneously, is attributed to be a victory for the Gothic-Roman alliance. Theodoric was killed in the fighting. Aetius failed to press his advantage, and the alliance quickly disbanded. Attila withdrew to continue his campaign against Italy.
34309
34310 ==Invasion of Italy and death==
34311 Attila returned in [[452]] to claim his marriage to Honoria anew, invading and ravaging [[Italy]] along the way; his army sacked numerous cities and razed [[Aquileia]] completely, leaving no trace of it behind. Valentinian fled from [[Ravenna]] to [[Rome]]; Aetius remained in the field but lacked the strength to offer battle. Attila finally halted at the [[Po]], where he met an embassy including the [[prefect]] [[Trigetius]], the [[consul]] [[Aviennus]], and [[Pope Leo I]]. After the meeting he turned his army back, having claimed neither Honoria's hand nor the territories he desired.
34312
34313 [[Image:Leoattila-Raphael.jpg|thumb|275px|right|[[Raphael]]'s ''The Meeting between Leo the Great and Attila'' shows Leo I, with [[Saint Peter]] and Saint Paul above him, going to meet Attila]]
34314
34315 Several explanations for his actions have been proffered. The [[Pandemic|plague]] and [[famine]] which coincided with his invasion may have caused his army to weaken, or the troops that Marcian sent across the Danube may have given him reason to retreat, or perhaps both. [[Priscus]] reports that superstitious fear of the fate of [[Alaric I|Alaric]]&amp;mdash;who died shortly after sacking Rome in [[410]]&amp;mdash;gave the Hun pause. [[Prosper of Aquitaine]]'s pious &quot;fable which has been represented by the pencil of [[Raphael]] and the chisel of [[Algardi]]&quot; (as [[Edward Gibbon|Gibbon]] called it) says that the Pope, aided by [[Saint Peter]] and [[Paul of Tarsus|Saint Paul]], convinced him to turn away from the city. Various historians (e.g. [[Isaac Asimov]]) have supposed that the embassy brought a large amount of gold to the Hunnish leader and persuaded him to abandon his campaign.
34316
34317 Whatever his reasons, Attila left Italy and returned to his palace across the Danube. From there he planned to strike at Constantinople again and reclaim the tribute which Marcian had cut off. However, he died in the early months of [[453]]; the conventional account, from Priscus, says that on the night after a feast celebrating his latest marriage (to a beautiful Goth named [[Ildico]]), he suffered a severe [[nosebleed]] and choked to death in a stupor. An alternative to the nosebleed theory is that he succummed to internal bleeding after heavy drinking. His warriors, upon discovering his death, mourned him by cutting off their hair and gashing themselves with their swords so that, says Jordanes, &quot;the greatest of all warriors should be mourned with no feminine lamentations and with no tears, but with the blood of men.&quot; His horsemen galloped in circles around the silken tent when Attila lay in state, singing in his [[dirge]], according to [[Cassiodorus]] and Jordanes, &quot;Who can rate this as death, when none believes it calls for vengeance?&quot; then celebrating a ''[[strava]]'' over his burial place with great feasting. He was buried in a triple coffin&amp;mdash;of gold, silver, and iron&amp;mdash;with the spoils of his conquest, and his funeral party was killed to keep his burial place secret. After his death, he lived on as a legendary figure: the characters of ''Etzel'' in the ''[[Nibelungenlied]]'' and ''Atli'' in both the ''[[Volsunga saga]]'' and the ''[[Poetic Edda]]'' were both loosely based on his life.
34318
34319 An alternate story of his death, first recorded eighty years after the fact by the Roman chronicler [[Count Marcellinus]], reports: &quot;''Attila rex Hunnorum Europae orbator provinciae noctu mulieris manu cultroque confoditur.''&quot; (&quot;Attila, King of the Huns and ravager of the provinces of Europe, was pierced by the hand and blade of his wife.&quot;){{ref|marcellinus}} The ''Volsunga saga'' and the ''Poetic Edda'' claim that King Atli died at the hands of his wife [[Gudrun]].{{ref|atli_death}} Most scholars reject these accounts as no more than romantic fables, preferring instead the version given by Attila's contemporary Priscus. The &quot;official&quot; account by Priscus, however, has recently come under renewed scrutiny by Michael A. Babcock (''The Night Attila Died: Solving the Murder of Attila the Hun'', Berkley Books, 2005 ISBN 0425202720). Based on detailed [[philological]] analysis, Babcock concludes that the account of natural death, given by Priscus, was an ecclesiastical &quot;cover story&quot; and that Emperor Marcian (who ruled the Eastern Roman Empire from [[450]]-[[457]]) was the political force behind Attila's death.
34320
34321 His sons [[Ellak]] (his appointed successor), [[Dengizik]], and [[Ernakh]] fought over the division of his legacy&amp;mdash;&quot;what warlike kings with their peoples should be apportioned to them by lot like a family estate&quot; and, divided, were defeated and scattered the following year in the [[Battle of Nedao]] by the Gepids, under [[Ardaric]], whose pride was stirred by being treated with his people like chattel, and the Ostrogoths. Attila's empire did not outlast him.
34322
34323 ==Appearance, character, and name==
34324 [[Image:Atli.jpg|thumb|270px|left|Atilla. &lt;br&gt; From an illustration to the [[Poetic Edda]].]]
34325
34326 The main source for information on Attila is [[Priscus]], a historian who traveled with [[Maximin]] on an embassy from Theodosius II in [[448]]. He describes the village the nomadic Huns had built and settled down in as the size of the great city with solid wooden walls. He described Attila himself as:
34327
34328 : ''&quot;short of stature, with a broad chest and a large head; his eyes were small, his beard thin and sprinkled with gray; and he had a flat nose and a swarthy complexion, showing the evidences of his origin.&quot;''
34329
34330 Attila's physical appearance was most likely that of an [[Eastern Asia|Eastern Asian]] or more specifically a [[Mongol]], or perhaps a mixture of this type and the Turkic peoples of [[Central Asia]]. Indeed, he probably exhibited the characteristic Eastern Asian facial features, which Europeans were not used to seeing, and so they often described him in harsh terms.
34331
34332 Attila is known in Western history and tradition as the grim &quot;Scourge of God&quot;, and his name has become a byword for cruelty and [[Barbarian|barbarism]]. Some of this may arise from a conflation of his traits, in the popular imagination, with those perceived in later [[steppe]] warlords such as the [[Mongol]] [[Great Khan]] [[Genghis Khan]] and [[Timur|Tamerlane]]: all run together as cruel, clever, and sanguinary lovers of battle and pillage. The reality of his character may be more complex. The Huns of Attila's era had been mingling with Roman civilization for some time, largely through the Germanic ''[[foederati]]'' of the border&amp;mdash;so that by the time of Theodosius's embassy in 448, Priscus could identify [[Hunnic language|Hunnic]], [[Gothic language|Gothic]], and [[Latin]] as the three common languages of the horde. Priscus also recounts his meeting with an eastern Roman captive who had so fully [[cultural assimilation|assimilated]] into the Huns' way of life that he had no desire to return to his former country, and the Byzantine historian's description of Attila's humility and simplicity is unambiguous in its admiration.
34333
34334 The historical context of Attila's life played a large part in determining his later public image: in the waning years of the western Empire, his conflicts with Aetius (often called the &quot;last of the Romans&quot;) and the strangeness of his culture both helped dress him in the mask of the ferocious barbarian and enemy of civilization, as he has been portrayed in any number of films and other works of art. The Germanic epics in which he appears offer more nuanced depictions: he is both a noble and generous ally, as [[Etzel]] in the ''Nibelungenlied'', and a cruel miser, as Atli in the ''Volsunga Saga'' and the ''Poetic Edda''. Some national histories, though, always portray him favorably; in [[Hungary]] and [[Turkey]] the names of Attila (sometimes as Atilla in [[Turkish language|Turkish]]) and his last wife IldikÃŗ remain popular to this day. In a similar vein, the Hungarian author [[GÊza GÃĄrdonyi]]'s novel ''A lÃĄthatatlan ember'' (published in English as ''Slave of the Huns'', and largely based on Priscus) offered a sympathetic portrait of Attila as a wise and beloved leader.
34335
34336 The name Attila may mean &quot;Little Father&quot; in Gothic (''atta'' &quot;father&quot; plus diminutive suffix ''-la'') as many Goths were known to serve under Attila. It could also be of pre-[[Turkish language|Turkish]] ([[Altaic languages|Altaic]]) origin (compare it with [[Ataturk|AtatÃŧrk]] and ''Alma-Ata'', now called [[Almaty]]). It most probably originates from ''atta'' (&quot;father&quot;) and ''il'' (&quot;land&quot;), meaning &quot;Land-Father&quot;. [[Atil]] was also the [[Altaic]] name of the present-day [[Volga]] river which may have given its name to Attila.
34337
34338 &lt;table width = 75% border=&quot;2&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse;&quot;&gt;
34339 &lt;tr&gt;&lt;td width = 35% align=&quot;center&quot;&gt;
34340 Preceded by:&lt;br&gt;'''[[Bleda]]'''&lt;/td&gt;
34341 &lt;td width = 30% align=&quot;center&quot;&gt;[[List of Hunnish rulers|List of Hun monarchs]]&lt;/td&gt;
34342 &lt;td width = 35% align=&quot;center&quot;&gt;
34343 Succeeded by:&lt;br&gt;'''[[Ernakh]]'''&lt;/td&gt;
34344 &lt;/tr&gt;&lt;/table&gt;
34345
34346 ==Notes==
34347 #{{note|rift}} This younger son may have been [[Merovech]], founder of the [[Merovingian]] line, though the sources&amp;mdash;[[Gregory of Tours]] and a later roster from the [[Battle of Chalons]]&amp;mdash;are not conclusive.
34348 #{{note|atlantic}}[[J.B. Bury]], ''The Invasion of Europe by the Barbarians'', lecture IX [http://www.northvegr.org/lore/bury/017.php (e-text)]
34349 #{{note|orleans}}Later accounts of the battle place the Huns either already within the city or in the midst of storming it when the Roman-Visigoth army arrived; Jordanes mentions no such thing. See Bury, ibid.
34350 #{{note|marcellinus}}[[Marcellinus Comes]], ''Chronicon'' [http://www.thelatinlibrary.com/marcellinus.html (e-text)], quoted in Hector Munro Chadwick: ''The Heroic Age'' (London, [[Cambridge University Press]], 1926), p. 39 n. 1.
34351 #{{note|atli_death}} ''Volsunga Saga'', [http://www.northvegr.org/lore/volsunga/021.php Chapter 39]; ''Poetic Edda'', [http://www.sacred-texts.com/neu/poe/poe35.htm Atlamol En GrÃļnlenzku, The Greenland Ballad of Atli]
34352
34353 ==See also==
34354 *[[Attila the Hun to Charlemagne]]
34355 *[[Huns]]
34356 *[[History of Europe]]
34357 *[[History of the Balkans]]
34358 *[[List of military commanders]]
34359 *[[Mule (Foundation)|The Mule]]
34360
34361 ==References==
34362 Classical texts include:
34363 *Priscus: ''Byzantine History'', available in the original Greek in Ludwig Dindorf : ''Historici Graeci Minores'' (Leipzig, B.G. Teubner, 1870) and available online as a translation by [[J.B. Bury]]: ''[http://ccat.sas.upenn.edu/jod/texts/priscus.html Priscus at the court of Attila]''
34364 *Jordanes: ''[http://www.ucalgary.ca/~vandersp/Courses/texts/jordgeti.html The Origin and Deeds of the Goths]''
34365
34366 Recommended modern works are:
34367 *Babcock, Michael A.: &quot;The Night Attila Died: Solving the Murder of Attila the Hun&quot; (Berkley Publishing Group, ISBN 0425202720)
34368 *Blockley, R.C.: ''The Fragmentary Classicising Historians of the Later Roman Empire'', vol. II (ISBN 0905205154) (a collection of fragments from Priscus, Olympiodorus, and others, with original text and translation)
34369 *C.D. Gordon: ''The Age of Attila: Fifth-century Byzantium and the Barbarians'' (Ann Arbor, University of Michigan Press, 1960) is a translated collection, with commentary and annotation, of ancient writings on the subject (including those of Priscus).
34370 * J. Otto Maenchen-Helfen (ed. Max Knight): ''The World of the Huns: Studies in Their History and Culture'' (Berkeley, University of California Press, 1973) is a useful scholarly survey.
34371 *E. A. Thompson : ''A History of Attila and the Huns'' (London, [[Oxford University Press]], 1948) is the authoritative English work on the subject. It was reprinted in 1999 as ''The Huns'' in the ''Peoples of Europe'' series (ISBN 0631214437). Thompson did not enter controversies over Hunnic origins, and his revisionist view of Attila read his victories as achieved only while there was no concerted opposition.
34372
34373 ==External links==
34374 * A reconstructed [http://www.reportret.info/gallery/attilathehun1.html portrait of Attila the Hun], based on historical sources, in a contemporary style.
34375 * Edward Gibbon describes Attila in his classic [http://www.ccel.org/g/gibbon/decline/volume1/chap34.htm The Decline and Fall of the Roman Empire]
34376 * Excerpt from 'Leadership Secrets of Attila The Hun' By Wess Roberts, Ph.D describing Attila's [http://worldservicecorps.us/attila%20intro.htm experience in Rome].
34377
34378 [[Category:400s births]]
34379 [[Category:453 deaths]]
34380 [[Category:Ancient Roman enemies and allies]]
34381 [[Category:History of Europe]]
34382 [[Category:History of Hungary]]
34383 [[Category:History of the Germanic peoples]]
34384 [[Category:Late Antiquity]]
34385 [[Category:Huns]]
34386
34387 [[ar:ØŖØĒŲŠŲ„ا اŲ„Ų‡ŲˆŲ†ŲŠ]]
34388 [[bg:АŅ‚иĐģĐ°]]
34389 [[cs:Attila]]
34390 [[da:Attila]]
34391 [[de:Attila]]
34392 [[es:Atila]]
34393 [[eo:Atilo la Huno]]
34394 [[fr:Attila]]
34395 [[ko:ė•„틸ëŧ]]
34396 [[hr:Atila]]
34397 [[id:Atilla]]
34398 [[it:Attila]]
34399 [[he:אטילה ההוני]]
34400 [[lt:Atila]]
34401 [[hu:Attila (hun uralkodÃŗ)]]
34402 [[ms:Atilla]]
34403 [[nl:Attila de Hun]]
34404 [[ja:ã‚ĸッテã‚Ŗナ]]
34405 [[no:Attila]]
34406 [[pl:Attyla]]
34407 [[pt:Átila o Huno]]
34408 [[ro:Attila]]
34409 [[ru:АŅ‚Ņ‚иĐģĐ°]]
34410 [[scn:Attila]]
34411 [[sl:Atila]]
34412 [[sr:АŅ‚иĐģĐ°]]
34413 [[fi:Attila]]
34414 [[sv:Attila]]
34415 [[tr:Attila]]
34416 [[uk:АŅ‚Ņ‚Ņ–ĐģĐ°]]
34417 [[zh:é˜ŋ提拉]]</text>
34418 </revision>
34419 </page>
34420 <page>
34421 <title>Aegean Sea</title>
34422 <id>842</id>
34423 <revision>
34424 <id>42124188</id>
34425 <timestamp>2006-03-03T23:55:45Z</timestamp>
34426 <contributor>
34427 <username>Flauto Dolce</username>
34428 <id>30706</id>
34429 </contributor>
34430 <minor />
34431 <comment>Disambiguate [[Samos]] to [[Samos Island]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
34432 <text xml:space="preserve">[[Image:Aegean Sea map.png|thumb|right|The Aegean Sea.]]
34433
34434 The '''Aegean Sea''' is an arm of the [[Mediterranean Sea]], located between the Greek peninsula and [[Asia Minor]]. It is connected to the [[Marmara Sea]] and [[Black Sea]] by the [[Dardanelles]] and [[Bosporus]].
34435
34436 == Etymology ==
34437 In ancient times there were various explanations for the name Aegean. It was said to have been named after the town of [[Aegae]], or [[Aegea]], a queen of the [[Amazons]] who died in the sea, or [[Aegeus]], the father of [[Theseus]], who drowned himself in the sea when he thought his son had died.
34438
34439 The [[Greek language|Greek]] name for the sea is {{Polytonic|Αáŧ°ÎŗÎąáŋ–ÎŋÎŊ ΠέÎģÎąÎŗÎŋĪ‚}} (Aigaion Pelagos, [[Modern Greek language|Modern Greek]] EjÊon PÊlaÎŗos) and Ege Denizi in [[Turkish language|Turkish]]. A possible etymology is a derivation from the dialect word {{Polytonic|ÎąáŧļÎŗÎĩĪ‚}} (aiges) &quot;waves&quot; ([[Hesychius of Alexandria|Hesychius]]; metaphorical use of {{Polytonic|Îąáŧ´Îž}} (aix) &quot;goat&quot;), hence &quot;wavy sea&quot;, cf. also {{Polytonic|Îąáŧ°ÎŗΚιÎģĪŒĪ‚}} (aigialos) &quot;coast&quot;.
34440
34441 == History ==
34442 In ancient times the sea was the birthplace of two ancient civilizations - the [[Minoan civilization|Minoans]] of [[Crete]], and the [[Mycenaean Greece|Mycenean]] Civilization of the [[Peloponnese]]. Later arose the city-states of Athens and Sparta among many others that constituted the [[Hellenic Civilization]]. The Aegean Sea was later inhabited by [[Persian Empire|Persians]], [[Roman Republic|Romans]], the [[Byzantine Empire]], the [[Venice|Venetians]], the [[Seljuk Turks]], and the [[Ottoman Empire]]. The Aegean was the site of the original [[democracy|democracies]], and it allowed for contact between several diverse civilizations of the Eastern Mediterranean.
34443
34444 == Geography ==
34445 [[Image:Aegeansea.jpg|thumb|left|Satellite Image]]
34446 The [[Aegean islands]] can be simply divided into seven groups: the [[Thracian Sea]] group, the East Aegean group, the Northern [[Sporades]], the [[Cyclades]], the [[Saronic Islands]] (or [[Argo-Saronic Islands]]), the [[Dodecanese]] and Crete. The word ''[[archipelago]]'' was originally applied specifically to these islands. Many of the Aegean islands, or chains of islands, are actually extensions of the mountains on the mainland. One chain extends across the sea to [[Chios]], another extends across [[Euboea]] to [[Samos Island|Samos]], and a third extends across the [[Peloponnese]] and [[Crete]] to [[Rhodes]], dividing the Aegean from the Mediterranean. Many of the islands have safe harbours and bays, but navigation through the sea is generally difficult. Many of the islands are [[volcano|volcanic]], and [[marble]] and [[iron]] are mined on other islands. The larger islands have some fertile valleys and plains. There are two islands of considerable size belonging to [[Turkey]] on the Aegean Sea: [[Bozcaada]] ([[Greek language|Greek]]: ΤέÎŊÎĩδÎŋĪ‚ ''[[Tenedos]]'') and [[GÃļkçeada]] ([[Greek language|Greek]]: ΊÎŧβĪÎŋĪ‚ ''[[Imvros]]'').
34447
34448 The bays in gulfs counterclockwise includes on [[Crete]], the [[Mirabelli Gulf|Mirabelli]], [[Almyros Bay|Almyros]], [[Souda Bay|Souda]] and [[Gulf of Chania|Chania]] bays or gulfs, on the mainland the [[Myrtoan Sea]] to the west, the [[Saronic Gulf]] northwestward, the [[Petalies Gulf]] which connects with the [[South Euboic Sea]], the [[Pagasetic Gulf]] which connects with the [[North Euboic Sea]], the [[Thermian Gulf]] northwestward, the [[Chalkidiki]] Peninsula including the [[Cassandra Gulf|Cassandra]] and the [[Singitic Gulf]]s, northward the [[Strymonian Gulf|Strymonian]] Gulf and the [[Gulf of Kavala]] and the rest are in [[Turkey]]; [[Saros Gulf]], [[Edremit]] Gulf, Dikili Gulf, ÇandarlÄą Gulf, [[Ä°zmir]] Gulf, [[KuşadasÄą]] Gulf, GÃļkova Gulf, GÃŧllÃŧk Gulf.
34449
34450 ==Port towns==
34451
34452 The Aegean Sea has many ports especially on the islands, for ports, see the island chains or its gulfs and bays.
34453
34454 ==See also==
34455 *[[Aegean civilization]]
34456 *[[Aegean dispute]]
34457 *[[List of traditional Greek place names]]
34458
34459 [[Category:Mediterranean]]
34460
34461 [[ar:Ø¨Ø­Øą ØĨŲŠØŦØŠ]]
34462 [[ast:Mar ExÊu]]
34463 [[bg:ЕĐŗĐĩĐšŅĐēĐž ĐŧĐžŅ€Đĩ]]
34464 [[ca:Mar Egea]]
34465 [[cs:EgejskÊ moře]]
34466 [[da:ÆgÃĻiske Hav]]
34467 [[de:Ägäis]]
34468 [[et:Egeuse meri]]
34469 [[el:ΑιÎŗÎąÎ¯Îŋ ΠέÎģÎąÎŗÎŋĪ‚]]
34470 [[es:Mar Egeo]]
34471 [[eo:Egea Maro]]
34472 [[fr:Mer ÉgÊe]]
34473 [[gl:Mar Exeo]]
34474 [[ko:ė—ę˛Œ 해]]
34475 [[it:Mar Egeo]]
34476 [[he:הים האגאי]]
34477 [[la:Mare Aegaeum]]
34478 [[lt:Egėjo jÅĢra]]
34479 [[nl:Egeïsche Zee]]
34480 [[ja:エãƒŧã‚˛æĩˇ]]
34481 [[no:Egeerhavet]]
34482 [[pl:Morze Egejskie]]
34483 [[pt:Mar Egeu]]
34484 [[ru:Đ­ĐŗĐĩĐšŅĐēĐžĐĩ ĐŧĐžŅ€Đĩ]]
34485 [[sk:EgejskÊ more]]
34486 [[sl:Egejsko morje]]
34487 [[sr:ЕĐŗĐĩŅ˜ŅĐēĐž ĐŧĐžŅ€Đĩ]]
34488 [[fi:Aigeianmeri]]
34489 [[sv:Egeiska havet]]
34490 [[tr:Ege AdalarÄą]]
34491 [[uk:ЕĐŗĐĩĐšŅŅŒĐēĐĩ ĐŧĐžŅ€Đĩ]]
34492 [[zh:įˆąį´æĩˇ]]</text>
34493 </revision>
34494 </page>
34495 <page>
34496 <title>A Clockwork Orange</title>
34497 <id>843</id>
34498 <revision>
34499 <id>42121758</id>
34500 <timestamp>2006-03-03T23:36:25Z</timestamp>
34501 <contributor>
34502 <username>Trevor Andersen</username>
34503 <id>175193</id>
34504 </contributor>
34505 <minor />
34506 <comment>punct (see [[Wikipedia:Manual of Style]])</comment>
34507 <text xml:space="preserve">[[image:clockworkorange2.jpg|200px|thumb|right|''A Clockwork Orange'' book cover]]
34508
34509 ''This article describes the novel by Anthony Burgess. For other uses of the term '''Clockwork Orange''', see '[[Clockwork Orange (disambiguation)]]'.
34510
34511
34512 '''''A Clockwork Orange''''' is a [[science fiction]] and [[dystopian]] [[1962]] [[novel]] by [[Anthony Burgess]], and forms the basis for the [[A Clockwork Orange (film)|1971 film adaptation]] by [[Stanley Kubrick]].
34513
34514 It is one of Burgess's &quot;terminal novels&quot;, written to provide posthumous income for his wife after Burgess had allegedly been diagnosed with an inoperable brain tumour.
34515
34516 Burgess wrote that the title came from an old [[Cockney]] expression &quot;As queer as a clockwork orange.&quot; [[#References|&amp;sup1;]] Due to his time serving the British [[Colonial Office]] in [[Malaya]], Burgess thought that the phrase could be used to punningly refer to a mechanically responsive (clockwork) non-human (orang, [[Malay language|Malay]] for &quot;person&quot;). The Italian title, &quot;Un'Arancia ad Orologeria&quot; was interpreted to refer to a grenade. Burgess wrote in his later introduction, &quot;A Clockwork Orange Resucked,&quot; that a creature who can only perform good or evil is &quot;a clockwork orange&amp;mdash;meaning that he has the appearance of an organism lovely with colour and juice but is in fact only a clockwork toy to be wound up by [[god (monotheism)|God]] or the [[Devil]].&quot;
34517
34518 In his essay &quot;Clockwork Oranges&quot;[[#References|&amp;sup2;]] he says that &quot;this title would be appropriate for a story about the application of [[Ivan Pavlov|Pavlovian]], or mechanical, laws to an organism which, like a fruit, was capable of colour and sweetness.&quot; This title alludes to the protagonist's negatively conditioned responses to feelings of evil which prevent the exercise of his free will.
34519
34520 The book was partly inspired by an event in [[1944]], when Burgess' pregnant wife Lynne was robbed and beaten by four [[desertion |U.S. GI deserters]] in a [[London]] street, suffering a [[miscarriage]] and chronic [[gynecology|gynaecological]] problems[[#References|&amp;sup3;]]. According to Burgess, writing the novel was both a catharsis and an &quot;act of charity&quot; towards his wife's attackers - the story is narrated by and essentially sympathetic to one of the attackers rather than their victim.
34521
34522 ==Synopsis==
34523 {{spoiler}}
34524 Set in the near future, the book centres around the life of the fifteen year old protagonist [[Alex DeLarge]]. Alex and his gang roam the streets at night, committing crimes purely for enjoyment. The crimes described in the book increase in severity, from assault, to robbery, to a fight with rival gang, culminating when the gang breaks into the house of F.D. Alexander and rapes his wife. The gang returns to a bar where Alex hits one of his gang members, Dim, as punishment for Dim's rude behaviour towards a woman who was singing the chorus of ''[[Ode to Joy]]'', classical music being Alex's other passion, apart from violence. This sparks off a tense moment between the two gang members.
34525
34526 The next day, after fighting Dim and George to re-establish his control of the gang following the previous night's dispute Alex agrees, on Pete's suggestion, to rob a house in a rich part of town. Alex tries to persuade the woman living in the house to open the door. The woman refuses and calls the police as a precaution. He gains access to the house through a window, but is confronted by the defiant woman, who defends herself with unexpected strength, he goes for a bust of [[Ludwig van Beethoven|Beethoven]] and she scratches his face, he manages to knock her out with a silver statue he had previously taken. As he runs out the front door he is struck by Dim who runs off with the rest of the gang just as the police arrive. At the police station we learn that the woman has died.
34527
34528 In prison, Alex hears about an experimental rehabilitation programme called &quot;the Ludovico technique&quot;, which promises that the prisoner will be released upon completion of the two week treatment and will not commit crimes afterwards and manages to become the first patient. The Ludovico technique itself is a form of [[aversion therapy]], where Alex is given a drug that induces extreme nausea while being forced to watch graphically violent films. At the end of the treatment Alex is unable to carry out or even contemplate violent acts as doing so induces crippling nausea.
34529
34530 He is released from prison, but upon returning home he is rejected by his parents. Dejected, Alex contemplates suicide, going to the public library in order to discover what sort of poison he might take to end his life. There he is spotted by one of his former victims, who accompanied by his friends extracts his revenge. Alex is unable to strike back and the police is alerted. The police arrive, but they turn out to be Dim, and Billy Boy, the former leader of a rival gang. They take Alex, beat him up and dump him by the side of the road out in the country.
34531
34532 Alex stumbles to the nearest house for help, which turns out to be that of F.D. Alexander, whose wife Alex had raped and beaten earlier in the book. At first Alex is not recognised as he had always worn a mask, but the reader discovers that F.D. Alexander is in a wheel chair and his wife died from her injuries. Realising that Alex is the same person who had attacked him and his wife some years ago, F.D. Alexander drugs him, locks him in a room and plays Beethoven’s [[Symphony No. 9 (Beethoven)|9th Symphony]] at full volume. Although previously his favourite piece of music the Ninth was also used as a soundtrack for one of the films that Alex was forced to watch as part of the Ludovico treatment, hence it produces the same nauseating effects on him. Unable to stand the pain Alex throws himself out of the window to try to kill himself. He survives the fall with broken bones and wakes up in hospital informed that his tormentors have been arrested and the Ludovico treatment reversed.
34533
34534 The final chapter begins identically to the first, Alex having formed a new gang and reverted to his previous criminality. But on this particular night he decides not to join them and goes for a walk on his own instead. In a cafe he bumps into one of his old gang member Pete, who is married and has become a respectable member of society. Pete's wife giggles at Alex's rhetoric, and asks Pete &quot;why does he speak like that?&quot; After conversing with Pete and his wife, Alex has an epiphany, renouncing violence on one hand, but on the other concluding that his behaviour was an unavoidable part of youth, and that if he had a son, he would not be able to stop him from doing what he did.
34535
34536 Although the book is divided into three parts, each containing seven chapters, twenty-one being a symbolic number as it was the age that which a child earns his rights at the time, the 21st chapter was omitted from the versions published in the US. The [[Film|film]] adaptation which was directed by [[Stanley Kubrick]] follows the American version of the book, ending prior the events of the 21st chapter. Kubrick claimed that he had not read the original version until he had virtually finished the screenplay, but that he certainly never gave any serious consideration to using it.
34537
34538 ==Analysis==
34539 The book, narrated by Alex, contains many words in a slang dialect which Burgess invented for the book, called [[nadsat]]. It is a mix of modified [[Russian_language|Russian]] words, [[English_language|English]] slang and words invented by Burgess himself. It serves two functions, firstly Burgess, while wanting to provide his young characters with their own register did not want to use contemporary slang, fearing that this would &quot;date&quot; the book too much. Secondly, the novel graphically describes horrific scenes of violence, which would be shocking even by today's standards, so nadsat is used as a &quot;linguistic veil&quot; to distance the reader from the action on the page.
34540
34541 ==Influence==
34542 {{main|List of cultural references to A Clockwork Orange}}
34543 Both the story and individual elements have had a strong influence on [[popular culture]] in general and [[popular music]] in particular.
34544
34545 ==Trivia==
34546 * Alex's age at the end of the novel is the same age that the Burgesses' miscarried child would have been at the date of publication, had the child survived the attack on Lynne, been born and grown up.
34547 * The allegedly Cockney phrase ''A Clockwork Orange'' is totally unknown to history: the first recorded use of it is Burgess's title. Quoted in a ''[[Rolling Stone]]'' article, Burgess claimed to have first heard the expression &quot;from a very old Cockney in 1945.&quot;
34548 *Burgess claimed that he had typed the title ''A Clockwork Orange'' and then sat down to think of a story to go with it. One early idea apparently involved a strike or riot among apprentices under Elizabeth I.
34549 *As with many writers and their most popular books, this was one of Burgess's least favourite of the books he wrote, and he thought it was overrated.
34550 *Since, in ''A Clockwork Orange,'' the author F. Alexander wrote a book entitled ''A Clockwork Orange'' and it is his wife who is attacked by the droogs, it seems likely Burgess directly inserted some of his own feelings and characteristics into the novel in the form of this character.
34551
34552 == See also ==
34553 * [[A Clockwork Orange (film)]]
34554 * [[Aestheticization of violence]]
34555 * [[Nadsat]], a fictional slang used in the book
34556 * [[Dystopia]]
34557
34558 ==References==
34559
34560 # ''A Clockwork Orange: A play with music''. Century Hutchinson Ltd. (1987). &amp;mdash; An extract is quoted on several web sites: [http://pers-www.wlv.ac.uk/~fa1871/burgess.html], [http://pages.eidosnet.co.uk/johnnymoped/aclockworktestament/aclockworktestament_anthonyburgessonaclockworkorange_page2.html], [http://kubricks0.tripod.com/burgesam.htm].
34561 # Burgess, Anthony (1978). Clockwork Oranges. In ''1985''. London: Hutchinson. ISBN 0091360803 ([http://pages.eidosnet.co.uk/johnnymoped/aclockworktestament/aclockworktestament_beingtheadventures_page1.html extracts quoted here])
34562 # [[Gore Vidal|Vidal, Gore]]. &quot;Why I am eight years younger than Anthony Burgess,&quot; in ''At home : essays, 1982-1988'', p. 411. New York: Random House, 1988. ISBN 0394570200.
34563
34564 == External links ==
34565 {{wikiquote}}
34566 * {{isfdb title | id=12305 | title=A Clockwork Orange}}
34567 * {{isfdb title | id=25722 | title=A Clockwork Orange (1977)}}
34568 * A Prophetic Masterpiece: http://www.city-journal.org/html/16_1_oh_to_be.html
34569
34570 [[Category:1962 books|Clockwork Orange, A]]
34571 [[Category:Dystopian novels|Clockwork Orange, A]]
34572 [[Category:English novels|Clockwork Orange, A]]
34573 [[Category:Modern Library 100 best novels|Clockwork Orange, A]]
34574 [[Category:Science fiction novels|Clockwork Orange, A]]
34575 [[Category:Twentieth century British novels|Clockwork Orange, A]]
34576 [[Category:Anthony Burgess books|Clockwork Orange, A]]
34577 [[Category:Time Magazine 100 best novels|Clockwork Orange, A]]
34578 &lt;!-- There are two interwikis for de: es: fr: pt:, because book and movie are on separate articles on those four wikis. --&gt;
34579
34580 [[de:A Clockwork Orange (Buch)]]
34581 [[es:La naranja mecÃĄnica]]
34582 [[fr:L'Orange mÊcanique]]
34583 [[he:ה×Ēפוז המכני]]
34584 [[nl:A Clockwork Orange]]
34585 [[ja:æ™‚č¨ˆã˜ã‹ã‘ãŽã‚ĒãƒŦãƒŗジ]]
34586 [[ko:ė‹œęŗ„ 태ė—Ŋ ė˜¤ë Œė§€]]
34587 [[pl:Mechaniczna pomarańcza]]
34588 [[pt:Laranja MecÃĸnica]]</text>
34589 </revision>
34590 </page>
34591 <page>
34592 <title>Amsterdam</title>
34593 <id>844</id>
34594 <revision>
34595 <id>42041031</id>
34596 <timestamp>2006-03-03T11:32:24Z</timestamp>
34597 <contributor>
34598 <username>Garion96</username>
34599 <id>397881</id>
34600 </contributor>
34601 <comment>/* Famous Amsterdammers */ rm some</comment>
34602 <text xml:space="preserve">{{otheruses}}
34603 &lt;div class=&quot;townBox&quot; style=&quot;border:1px solid #dddddd;margin-left:0.5em; width: 200px;&quot;&gt;
34604 &lt;center&gt;'''Amsterdam'''&lt;/center&gt;
34605 [[Image:Canals_of_Amsterdam.jpg|200px|Canals of the Jordaan neighbourhood]]
34606 ;Location
34607 [[Image:LocationAmsterdam.png|200px|Location of Amsterdam]]
34608 ;Flag
34609 [[Image:Flag of Amsterdam.svg|200px|Flag of Amsterdam]]
34610 ;Country
34611 :[[Netherlands]]
34612 ;Province
34613 :[[North Holland]]
34614 ;Population
34615 :742,951([[1 January]] [[2005]])
34616 ;Coordinates
34617 :{{coor dm|52|22|N|4|54|E|}}
34618 ;Website
34619 :[http://www.amsterdam.nl www.amsterdam.nl]
34620 ;[[Mayor of Amsterdam|Mayor]]
34621 :[[Job Cohen]]
34622 &lt;/div&gt;
34623 '''Amsterdam''', ({{Pronunciation|Nl-Amsterdam.ogg}}) the [[capital]] of the [[Netherlands]], lies on the banks of two bodies of water, the [[IJ (bay)|IJ bay]] and the [[Amstel]] river. Founded in the late [[12th century]] as a small fishing village on the banks of the [[Amstel]], it is now the largest city in the country and its financial and cultural centre. As of 2005, the population of the city proper is 742,951{{ref|population}}; the population of the greater Amsterdam area is approximately one and a half million.
34624
34625 Amsterdam has one of the largest historic city centres in Europe, dating largely from the 17th century, the Golden Age of the Netherlands, of which it was the focal point. At this time, a series of concentric, semi-circular canals were built around the older city centre, which still defines its layout and appearance today. Many fine houses and mansions are situated along the canals; most are lived in, others are now offices, and some are public buildings. Some of the narrow brick houses are gradually sinking because they are built on [[pile|piles]] to cope with the marshy subsoil.
34626
34627 The city is noted for many outstanding museums, including the [[Rijksmuseum]], the [[Van Gogh Museum]], the [[Stedelijk Museum]], [[Rembrandt House Museum]], the [[Anne Frank House]], and its world-class symphony orchestra, the [[Concertgebouworkest]], whose home base is the [[Concertgebouw]]. Notable are also its [[red-light district]], ''[[de Wallen]]'', and its numerous &quot;[[coffee shop]]s&quot; selling [[cannabis (drug)|cannabis]].
34628
34629 Although Amsterdam is the capital of the Netherlands, it is neither the capital of the province in which it is located, [[North Holland]] (which is [[Haarlem]]), nor the seat of government (which is [[The Hague]]).
34630
34631 ==History==
34632 ''Main article: [[History of Amsterdam]]''
34633
34634 [[Image:Amsterdam airphoto.jpg|thumb|200px|right|Historical centre]]
34635 Amsterdam was founded as a fishing village in the [[13th century]]. According to legend Amsterdam was founded by two [[Frisian]] fishermen, who landed on the shores of the Amstel in a small boat with their dog. The damming of the river [[Amstel]] gave it its name. It was given [[City rights in the Netherlands|city rights]] in [[1300]] or [[1301]]. From the [[14th century]] on, Amsterdam flourished, largely on the basis of trade with the cities of the [[Hanseatic League]].
34636
34637 The [[16th century]] brought a rebellion by the Dutch against [[Philip II of Spain]] and his successors, escalating into the [[Eighty Years' War]] which ultimately led to Dutch independence. The Dutch Republic became known for its relative religious tolerance and [[Jew]]s from [[Spain]] and [[Portugal]], prosperous merchants from [[Antwerp]] (economic and religious refugees from the part of the Low Countries still controlled by Spain), [[Huguenots]] from [[France]] (persecuted for their religion) sought safety in Amsterdam. It was the rich, refined migrants from Flanders who set the tone (their Brabant dialects became the basis of standard written Dutch) and made Holland a [[Mercantilism|mercantile]] power.
34638
34639 [[Image:AmsterdamDamsquar.jpg|thumb|left|Dam Square in the late 17th century: painting by Jan Adriaensz. Berckheyde (Gemäldegalerie, Dresden)]]
34640 The [[17th century]] is considered Amsterdam's &quot;Golden Age&quot;. In the early 17th century Amsterdam was the richest city in Europe. Ships sailed from Amsterdam to [[North America]], [[Africa]] and present-day [[Indonesia]] and [[Brazil]] and formed the basis of a worldwide trading network. Amsterdam's merchants had the biggest share in the [[Dutch East India Company|VOC]] and [[Dutch West India Company|WIC]]. These companies acquired the overseas possessions which formed the seeds of the later Dutch colonies. Amsterdam was the most important point for the trans-shipment of goods in Europe and it was the leading financial centre of the world. Amsterdam's stock exchange was the first to trade continuously.
34641
34642 The population grew from slightly over 10,000 around 1500 to 30,000 around 1570, 60,000 around 1600, 105,000 in 1622 and almost 200,000 around 1700 (a twenty fold increase in 200 years). Thereafter, the population did not change much for another century and a half. During the century before World War II it almost quadrupled to 800,000, but then remained fairly constant again to this day.
34643
34644 [[Image:River Amstel by Night - Frans Koppelaar.jpg|thumb|200px|River Amstel by Night&lt;br/&gt;&lt;small&gt;Painting by [[Frans Koppelaar|Koppelaar]]&lt;/small&gt;]]The 18th and early 19th centuries saw a decline in Amsterdam's prosperity. The wars of the Dutch Republic with the [[United Kingdom]] and [[France]] took their toll on Amsterdam. During the [[Napoleonic Wars]] Amsterdam's fortunes reached their lowest point. However, with the establishment of the Kingdom of the Netherlands in [[1815]], things slowly began to improve. In Amsterdam new developments were started by people like [[Sarphati]] who found their inspiration in Paris.
34645
34646 The end of the 19th century is sometimes called Amsterdam's second Golden Age. New museums, a train station, and the Concertgebouw were built. At this time the [[Industrial Revolution]] reached Amsterdam. The ''[[Amsterdam-Rhine Canal]]'' was dug to give Amsterdam a direct connection to the [[Rhine]] and the ''[[North Sea Canal]]'' to give the port a shorter connection to the [[North Sea]]. Both projects improved communication with the rest of Europe and the world dramatically.
34647
34648 [[Image:annefrankmuseum.jpg|thumb|200px|&lt;font size='1'&gt;In 2004, 936,432 people visited the museum adjoining #263 Prinsengracht, better known as the Anne Frank House.&lt;/font&gt;]]
34649 Shortly before the [[First World War]] the city began expanding and new suburbs were built. During [[World War I]], the Netherlands remained neutral. Amsterdam suffered a food shortage and heating fuel became scarce. The shortages sparked riots in which several people were killed.
34650
34651 Germany invaded the Netherlands in [[10 May]] [[1940]], taking control of the country after five days of fighting. The Germans installed a Nazi civilian government in Amsterdam that cooperated in the persecution of Jews. More than 80,000 [[Jew]]s were deported to concentration camps, of whom perhaps the most famous was a young German girl, [[Anne Frank]]. Only 5,000 Jews survived the war. In the last months of the war communication with the rest of the country broke down and food and fuel became scarce. Many inhabitants of the city had to travel to the countryside to collect food. Most of the trees in Amsterdam were cut down for fuel.
34652
34653 ==Coat of arms==
34654 [[Image:Wapen amsterdam.jpg|frame|left]]
34655 The coat of arms of Amsterdam is composed of three [[Saint Andrew|St Andrew]]'s crosses, aligned vertically, but rotated 90 degrees for the flag. Historians believe they represent the three dangers which have traditionally plagued the city: flood, fire, and pestilence. The city's official motto, ''Heldhaftig, Vastberaden, Barmhartig'' (&quot;Valiant, Resolute, Merciful&quot;) which is displayed on the coat of arms, was bestowed on it by [[Queen Wilhelmina]] in 1947 in recognition of the city's bravery during World War II. The lions were added in the sixteenth century.
34656
34657 The crown was awarded to the city in 1489 by [[Maximilian I, Holy Roman Emperor]], out of gratitude for services and loans. The crown was a sign of imperial protection and acted as a seal of approval for Amsterdam merchants abroad. The Westertoren also features the imperial crown.
34658
34659 ==City government==
34660 ''Main article: [[Amsterdam (municipality)]]''
34661
34662 [[Image:Amsterdam 4.89943E 52.37109N.jpg|thumb|right|200px|Satellite image of Amsterdam]]
34663
34664 As all Dutch municipalities, Amsterdam is governed by a mayor, his ''wethouders'' (aldermen), and the municipal council. However, unlike most other Dutch municipalities, Amsterdam is subdivided into fifteen ''stadsdelen'' (boroughs), a system that was implemented in the 1980s to improve local governance. The ''stadsdelen'' are responsible for many activities that previously had been run by the central city. Fourteen of these have their own council, chosen by a popular election. The fifteenth, Westerpoort, covers the harbour of Amsterdam, has very few inhabitants, and is governed by the central municipal council. Local decisions are made at borough level, and only affairs pertaining to the whole city, such as major infrastructure projects, are handled by the central city council.
34665
34666 ''See also:'' [[List of mayors of Amsterdam]]
34667
34668 ==Demography==
34669 &lt;center&gt;{{Demography 12col|830px|[[1300]]|[[1400]]|[[1500]]|[[1600]]|[[1650]]|[[1796]]|[[1830]]|[[1849]]|[[1879]]|[[1899]]|[[1925]]|[[1999]]
34670 |1,000|3,000|12,000|60,000|140,000|200,600|202,400|224,000|317,000|510,900|714,200|727,100}}&lt;/center&gt;
34671
34672 ==Academia==
34673 Amsterdam has two universities: the [[University of Amsterdam]] (Universiteit van Amsterdam), and the [[Vrije Universiteit]]. Other institutions for higher education include an art school, De Rietveldacademie, the Hogeschool van Amsterdam, the Hogeschool voor Economische Studies Amsterdam and the Amsterdamse Hogeschool voor de Kunsten, which includes the Sweelinck Conservatorium. Amsterdam's [[International Institute of Social History]] is one of the world's largest documentary and research institutions concerning social history, and especially the history of the labour movement. Amsterdam's [[Hortus Botanicus (Amsterdam)|Hortus Botanicus]], founded in the early 1600s, is one of the oldest [[botanical garden]]s in the world, with many old and rare specimens, amongst which the coffee plant that served as the parent for the entire coffee culture in Central and South America.
34674
34675 [[Image:Java_Island_Architecture.jpg|thumb|Java Island, in [[IJ (bay)|'t IJ]], is known for its modern architecture.]]
34676
34677 ==Public transport==
34678 Public transport in Amsterdam, operated by [[Gemeentelijk Vervoerbedrijf]], [[Connexxion]], and [[Nederlandse Spoorwegen]], consists of:
34679
34680 * national and international [[train]] connections
34681 * 3 [[metro]] lines and 1 [[light rail]] line, together the [[Amsterdam metro]]
34682 * 16 [[tram]] lines
34683 * An express tram line (IJtram)
34684 * 55 local bus lines
34685 * regional bus lines
34686 * several [[ferries]] for pedestrians and cyclists across the [[IJ (bay)|IJ]] (free of charge)
34687 * a Fast Flying Ferry towards [[Velsen]]-Zuid on the North Sea shore
34688
34689 A new underground line, the [[North/South Line]] (''Noord/Zuidlijn'') is under construction. (See also [[Gemeentelijk Vervoerbedrijf]], [[Amsterdam metro]], [[Amsterdam Centraal]]).
34690
34691 ===History===
34692 During the construction of the [[Amsterdam metro]], plans to demolish the entire [[Jew]]ish neighbourhood near the [[Nieuwmarkt]] led to strong protests. The metro was still built (wall decorations at the [[Nieuwmarkt]] station are dedicated to the protests), but plans to build a highway through the neighbourhood in the centre of Amsterdam were abolished. In 1975 there was an incident where a planned bombing of the Venserpolder station led to a political scandal when mayor Ivo Samkalden and everyone in the city council, except for [[Roel van Duijn]], instantly and erroneously blamed the left-wing protesters, which was exactly the objective of the right-wing bombers.
34693
34694 [[Image:Amster.jpg|thumb|right|Some of the ubiquitous cyclists in Amsterdam]]
34695
34696 ==Private transport==
34697 Many people in Amsterdam use [[bicycle|bicycles]] to get around. Most main streets have bike paths. Bike racks are ubiquitous throughout the city. In the city centre, driving a car is complicated by traffic jams and limited and expensive parking space.
34698
34699 ==Airport==
34700 [[Schiphol Airport|Schiphol]], about twenty minutes by train from downtown Amsterdam, is the biggest airport in the Netherlands, and the fourth largest in Europe. It handles about 42 million passengers a year and is home base to [[KLM]].
34701
34702 ==Sports==
34703 Amsterdam is the home town of [[Ajax Amsterdam|Ajax]], a team in the [[Dutch Football League]]. Its home base is the modern stadium [[Amsterdam ArenA]], located in the south-east of the city. The team shares that facility with the [[Amsterdam Admirals]], an [[American football]] team.
34704
34705 In 1928, Amsterdam hosted the [[1928 Summer Olympics|Games of the IXth Olympiad]]. The [[Olympisch Stadion (Amsterdam)|Olympic Stadium]] built for the occasion has been completely restored and is now used for cultural and sporting events.
34706
34707 Amsterdam also is home to a famous [[ice rink]], the [[Jaap Eden]] baan. The [[Amstel Tijgers]] play in this arena in the Dutch [[ice hockey]] premier league. In [[speed skating]] many international championships have been fought in the 400-meter lane of this ice rink.
34708
34709 The city also has a [[baseball]] team, the [[Amsterdam pirates]] who play in the Dutch Major League. Three [[field hockey]] teams, Amsterdam, PinokÊ and Hurley, and a [[basketball]] team, the [[Amsterdam Astronauts]] who play in the Dutch premier division and play their games in the Sporthallen Zuid, near the Olympic Stadium.
34710
34711 ==Periodic events==
34712 * [[Koninginnedag]], ''Queen's day'', [[30 April]], the former [[Queen_of_the_Netherlands|Queen's]] ([[Juliana_of_the_Netherlands|Juliana]]) birthday
34713 * [[Uitmarkt]], last weekend in August, the start of the cultural season
34714 * ''Amsterdam Roots'', last week of June. International music festival
34715 * ''Amsterdam Pride'', mid-August, [[gay pride]] weekend
34716 * ''Amsterdam Marathon'', mid-October
34717 * [[Sail Amsterdam]], a five-yearly event, when [[tall ship]]s from all over the world can be visited.
34718 * [[Cannabis Cup]], mid-November annual cannabis competition, hosted by [[High Times]].
34719
34720 ==Famous Amsterdammers==
34721 {{col-begin|width=}}
34722 {{col-break}}
34723 * [[Karel Appel]] - painter
34724 * [[Dennis Bergkamp]] - football player
34725 * [[Frits Bolkestein]] - politician
34726 * [[Breitner|George Hendrik Breitner]] - painter
34727 * [[Simon Carmiggelt]] - writer and columnist
34728 * [[Johan Cruijff]] - football player
34729 * [[Candy Dulfer]] - saxophonist
34730 * [[Max Euwe]] - chess player
34731 * [[Anne Frank]] - Holocaust diarist
34732 * [[Theo van Gogh (film director)|Theo van Gogh]] - filmmaker and colummnist
34733 * [[Vincent van Gogh]] - painter
34734 * [[Ruud Gullit]] - football player
34735
34736 {{col-break}}
34737 * [[AndrÊ Hazes]] - singer
34738 * [[Freddy Heineken]] - beer magnate
34739 * [[Meindert Hobbema]] - painter
34740 * [[Jozef IsraÃĢls]] - painter
34741 * [[Wim Kok]] - former prime minister
34742 * [[Karel Miljon]] - boxer
34743 * [[Harry Mulisch]] - writer
34744 * [[Multatuli]] - writer
34745 * [[Rembrandt Harmenszoon van Rijn|Rembrandt]] - painter
34746 * [[Frank Rijkaard]] - football player
34747 * [[Baruch Spinoza]] - philosopher
34748 * [[Paul Verhoeven]] - film director
34749 {{col-end}}
34750
34751 ==Notes==
34752 &lt;div style=&quot;font-size: 90%&quot;&gt;
34753 # {{note|population}} [http://www.os.amsterdam.nl/tabel/5425/ City of Amsterdam statistics service in Dutch]
34754 &lt;/div&gt;
34755
34756 ==External links==
34757 {{commons|Amsterdam}}
34758 * {{wikitravelpar|Amsterdam}}
34759 * [http://amsterdam.nl/ Official website of the city of Amsterdam] ([http://www.iamsterdam.com/ English Version])
34760
34761 {{Province North Holland}}
34762 {{Olympic Summer Games Host Cities}}
34763
34764
34765 [[Category:Amsterdam| ]]
34766 [[Category:Capitals in Europe|Netherlands, Amsterdam]]
34767 [[Category:Cities in the Netherlands]]
34768 [[Category:Eurovision host cities]]
34769 [[Category:Host cities of the Summer Olympic Games]]
34770 [[Category:North Holland]]
34771
34772 [[af:Amsterdam (Nederland)]]
34773 [[ar:ØŖŲ…ØŗØĒØąØ¯Ø§Ų…]]
34774 [[be:АĐŧŅŅ‚ŅŅ€Đ´Đ°Đŧ]]
34775 [[bg:АĐŧŅŅ‚ĐĩŅ€Đ´Đ°Đŧ]]
34776 [[bs:Amsterdam]]
34777 [[ca:Amsterdam]]
34778 [[cs:Amsterdam]]
34779 [[da:Amsterdam]]
34780 [[de:Amsterdam]]
34781 [[et:Amsterdam]]
34782 [[el:ΆÎŧĪƒĪ„ÎĩĪÎŊĪ„ÎąÎŧ]]
34783 [[es:Amsterdam]]
34784 [[eo:Amsterdamo]]
34785 [[fr:Amsterdam]]
34786 [[fy:Amsterdam]]
34787 [[gl:Ámsterdam - Amsterdam]]
34788 [[ko:ė•”ėŠ¤í…ŒëĨ´ë‹´]]
34789 [[hr:Amsterdam]]
34790 [[io:Amsterdam]]
34791 [[id:Amsterdam]]
34792 [[is:Amsterdam]]
34793 [[it:Amsterdam]]
34794 [[he:אמסטרדם]]
34795 [[csb:Amsterdam]]
34796 [[lv:Amsterdama]]
34797 [[la:Amstelodamum]]
34798 [[lt:Amsterdamas]]
34799 [[lb:Amsterdam]]
34800 [[li:Amsterdam]]
34801 [[na:Amsterdam]]
34802 [[nl:Amsterdam]]
34803 [[ja:ã‚ĸム゚テãƒĢダム]]
34804 [[no:Amsterdam]]
34805 [[nn:Amsterdam]]
34806 [[pl:Amsterdam]]
34807 [[pt:AmsterdÃŖo]]
34808 [[ro:Amsterdam]]
34809 [[ru:АĐŧŅŅ‚ĐĩŅ€Đ´Đ°Đŧ]]
34810 [[scn:Amsterdam]]
34811 [[simple:Amsterdam]]
34812 [[sk:Amsterdam]]
34813 [[sl:Amsterdam]]
34814 [[sr:АĐŧŅŅ‚ĐĩŅ€Đ´Đ°Đŧ]]
34815 [[fi:Amsterdam]]
34816 [[sv:Amsterdam]]
34817 [[tr:Amsterdam]]
34818 [[uk:АĐŧŅŅ‚ĐĩŅ€Đ´Đ°Đŧ]]
34819 [[zh:é˜ŋ姆斯į‰šä¸š]]</text>
34820 </revision>
34821 </page>
34822 <page>
34823 <title>Museum of Work</title>
34824 <id>846</id>
34825 <revision>
34826 <id>40357438</id>
34827 <timestamp>2006-02-20T01:02:43Z</timestamp>
34828 <contributor>
34829 <username>Rich Farmbrough</username>
34830 <id>82835</id>
34831 </contributor>
34832 <minor />
34833 <comment>External links per MoS.</comment>
34834 <text xml:space="preserve">[[Image:Strykjärnet Motala strÃļm NorrkÃļping april 2005.jpg|thumb|200px|''The Iron'' is a famous 19th century landmark in central NorrkÃļping]]
34835 The '''Museum of Work''', or ''Arbetets museum'', is a [[museum]] located in [[NorrkÃļping]], [[Sweden]]. The museum can be found in the 19th century building ''The Iron'' in the [[Motala strÃļm]] river in central NorrkÃļping.
34836
34837 ''See also: [[List of museums in Sweden]], [[Culture of Sweden]]''
34838
34839 ==External links==
34840 *[http://www.arbetetsmuseum.se/ Museum of Work] - Official site
34841
34842 [[Category:Museums in Sweden]]
34843 [[Category:NorrkÃļping]]</text>
34844 </revision>
34845 </page>
34846 <page>
34847 <title>Automobile</title>
34848 <id>847</id>
34849 <revision>
34850 <id>42122808</id>
34851 <timestamp>2006-03-03T23:44:21Z</timestamp>
34852 <contributor>
34853 <ip>24.211.126.187</ip>
34854 </contributor>
34855 <comment>/* Innovation */</comment>
34856 <text xml:space="preserve">{{redirect|Car}}
34857 [[Image:Automobiles.jpg|300px|thumb|right|A small variety of cars, the most popular kind of automobile.]]
34858
34859 An '''automobile''' is a [[wheel]]ed [[vehicle]] that carries its own [[motor]]. Different types of automobiles include cars, [[bus]]es, [[truck]]s, [[van]]s, and [[motorcycles]], with cars being the most popular. The term is derived from Greek 'autos' (''self'') and Latin 'movÊre' (''move''), referring to the fact that it 'moves by itself'. Earlier terms for automobile include '[[Brass Era car|horseless carriage]]' and 'motor car'. An automobile has seats for the [[driving|driver]] and, almost without exception, one or more passengers. It is the main source of [[transportation]] across the world.
34860
34861 [[As of 2005]] there are 500 million cars worldwide (0.074 per capita), of which 220 million are located in the [[United States]] (0.75 per capita).
34862
34863 ==History==
34864 {{main|History of the automobile}}
34865
34866 ===The history of automobiles=== The modern automobile powered by the Otto gasoline engine was invented in Germany by [[Karl Benz]]. Even though Karl Benz is credited with the invention of the modern automobile, several other German engineers worked on building the first automobile at the same time. These inventors are: [[Karl Benz]] on [[July 3]], [[1886]] in [[Mannheim]], [[Gottlieb Daimler]] and [[Wilhelm Maybach]] in [[Stuttgart]] (also inventors of the first motor bike) and in 1888/89 [[Germany|German]]-[[Austrian]] inventor [[Siegfried Marcus]] in [[Vienna]], although Marcus didn't go beyond the prototype stage.
34867 {{Automobile history eras}}
34868
34869 ==='''Steam powered vehicles'''===
34870 [[Steam-power]]ed self-propelled cars were devised in the late [[18th century]]. The first self-propelled car was built by [[Nicolas-Joseph Cugnot]] in [[1769]], it could attain speeds of up to 6 km/h. In [[1771]] he designed another steam-driven car, which ran so fast that it rammed into a wall, producing the world’s first [[car accident]].
34871
34872 ===The Internal Combustion Engine===
34873 In 1806 [[Fransois Isaac de Rivaz]], a Swiss, designed the first [[internal combustion engine]] (sometimes abbreviated &quot;ICE&quot; today). He subsequently used it to develop the world’s first vehicle to run on such an engine, one that used a mixture of [[hydrogen]] and [[oxygen]] to generate [[energy]]. It was not very successful, as was the case with the British inventor, Brown, and the American inventor, Morey, who produced clumsy IC-engine-powered vehicles about 1826.
34874
34875 Etienne Lenoir produced the first successful internal-combustion engine in 1860, and within a few years, about 400 were in operation in Paris. In about 1863, Lenoir installed his engine in a vehicle. It seems to have been powered by city lighting-gas in bottles, and was said by Lenoir to have &quot;travelled slower than a man could walk, with breakdowns being frequent.&quot; Lenoir, in his patent of 1860, included the provision of a carburettor, so liquid fuel could be substituted for gas, particularly for mobile purposes, i.e., vehicles. Lenoir is said to have tested liquid fuel, such as alcohol, in his stationary engines; but it doesn't appear he used them in his vehicle. If he did, he most certainly didn't use gasoline, as this was not well-known and was considered a waste product.
34876
34877 The next innovation comes in the late 1860s, with [[Siegfried Marcus]], a German working in Vienna, Austria. He developed the idea of using gasoline as a fuel in a two-stroke internal-combustion engine. In 1870, he built a crude vehicle, with no seats, steering or brakes, but it was spectacular for one reason: it was the world's first internal-combustion-engine-powered vehicle fueled by gasoline. It was tested in Vienna in September of 1870. In 1888/1889, he built a second car, this one with seats, brakes and steering, and a four-stroke engine of his own design.
34878
34879 The four-stroke engine had already been written down and patented in 1862 by the Frenchman Beau de Rochas in a long-winded and rambling pamphlet. He printed about 300 copies of his pamphlet and they were distributed in Paris, but nothing came of this, with the patent expiring soon after and the pamphlet disappearing into total obscurity. In fact, hardly anyone knew of it to begin with. Beau de Rochas never built a single engine.
34880
34881 Most historians agree that Nikolaus Otto of Germany built the world's first four-stroke engine. He knew nothing of Beau de Rochas's patent or idea, and came upon the idea entirely on his own; in fact, he began thinking about it in 1861, but abandoned the idea until the mid-1870's. There is some evidence, although not conclusive, that one Christian Reithmann, an Austrian living in Germany, had built a four-stroke engine entirely on his own by 1873. Reithmann had been experimenting with IC-engines as early as 1852.
34882
34883 In 1883, Edouard Delamare-Deboutteville and Leon Malandin of France installed an internal-combustion engine powered by a tank of city gas on a tricycle. As they tested the vehicle, the tank hose came loose, resulting in an explosion. In 1884, Delamare-Deboutteville and Malandin built and patented a second vehicle. This one consisted of two four-stroke, liquid-fueled engines mounted to an old four-wheeled horse cart. The patent, and presumably the vehicle, contained many innovations, some of which wouldn't be used for decades. However, during the vehicle's first test, the frame broke apart, the vehicle literally &quot;shaking itself to pieces,&quot; in Malandin's own words. No more vehicles were built by the two men, and their venture went completely unnoticed and their patent unexploited. No one else knew of the vehicles and experiments until years later.
34884
34885 Supposedly in the late 1870's, an Italian named Murnigotti patented the idea of installing an IC engine on a vehicle, although there is no evidence one was built. In 1884, Enrico Bernardi, another Italian, installed an IC engine on his son's tricycle. Although nothing more than a toy, it is said to have operated somewhat successfully in one source, but another says the engine's power was too feeble to make the vehicle move.
34886
34887 But if all of the above experiments hadn't taken place, the development of the automobile wouldn't have been retarded by so much as a moment, since they were unknown experiments that went no further than the testing stage. The internal-combustion-engined car really can be said to have begun with Benz and Daimler in 1886, for their vehicles were successful, they went into series-production, and they inspired others.
34888
34889 Benz, after building his first three-wheeled car in 1885, built improved versions in 1886 and 1887, and went into production in 1888 -- the world's first vehicle to do so. Approximately 25 were built until 1893, when his first four-wheeler was introduced. They were powered with four-stroke engines of his own design. Emile Roger of France, already producing Benz engines under license, now added the Benz car to his line of products. Because France was more open to the automobile in general, more were built and sold in France than by Benz himself in Germany.
34890
34891 Daimler built a car in 1886 - a new horse carriage fitted with his new high-speed 4-stroke engine. In 1889, he built two vehicles from scratch, with several innovations. From about 1890-1895 about 30 vehicles were built by Daimler and his innovative assistant, Maybach, either at the Daimler works or in the Hotel Hermann, where they set up shop after having a falling out with their backers.
34892
34893 In 1890, Emile Levassor and Armand Peugeot of France began series-producing vehicles with Daimler engines, and so laid the foundation of the motor industry in France. They were inspired by Daimler's Stalhradwagen of 1889, which was exhibited in Paris in 1889.
34894
34895 The first American automobile with gasoline-powered [[internal combustion engine]]s was supposedly designed in 1877 by [[George Baldwin Selden]] of [[Rochester, New York]], who applied for a patent on the automobile in 1879. Selden didn't build a single car until 1905, when he was forced to do so due to the lawsuit. Selden received his patent and later sued the Ford Motor Company for infringing his patent. Henry Ford was notoriously against the American patent system, and Selden's case against Ford went all the way to the [[Supreme Court of the United States|Supreme Court]], who ruled that Ford and everyone else was free to build automobiles without paying royalties to Selden, since automobile technology had improved since Selden's patent, and no one was building those antiquated designs.
34896
34897
34898 Meanwhile, notable advances in steam power evolved in [[Birmingham]], England by the [[Lunar Society]]. It was here that the term [[horsepower]] was first used. It was in Birmingham also that the first British four wheel [[petrol]]-driven automobiles were built in 1895 by [[Frederick William Lanchester]] who also patented the [[disc brake]] in the city. [[Electric vehicle]]s were produced by a small number of manufacturers.
34899
34900 ===Innovation===
34901 [[Image:Olds2.jpg|thumb|left|250px|Ransom E. Olds, the creator of the Assembly line]]
34902 The first automobile [[patent]] in the [[United States]] was granted to [[Oliver Evans]] in 1789; in 1804 Evans demonstrated his first successful self-propelled vehicle, which not only was the first automobile in the US but was also the first [[amphibious vehicle]], as his steam-powered vehicle was able to travel on [[wheel]]s on land and via a [[paddle wheel]] in the water.
34903
34904 On [[5 November]], [[1895]], [[George B. Selden]] was granted a United States patent for a [[two-stroke cycle|two-stroke]] automobile engine ({{US patent|549160}}). This patent did more to hinder than encourage development of autos in the USA. A major breakthrough came with the historic drive of [[Bertha Benz]] in 1888. Steam, electric, and gasoline powered autos competed for decades, with gasoline internal combustion engines achieving dominance in the 1910s.
34905
34906 [[Image:Bentley Continental GT dashboard.jpg|thumb|right|260px|The interior of a modern luxury car, a [[Bentley Continental GT]]]]
34907
34908 The large scale, [[production-line]] manufacturing of affordable automobiles was debuted by [[Oldsmobile]] in 1902, then greatly expanded by [[Henry Ford]] in the 1910s. Development of automotive technology was rapid, due in part to the hundreds of small manufacturers competing to gain the world's attention. Key developments included electric [[ignition system|ignition]] and the electric self-starter (both by [[Charles Kettering]], for the [[Cadillac (automobile)|Cadillac]] Motor Company in 1910-1911), independent suspension, and four-wheel brakes.
34909
34910 ===Model changeover and design change===
34911 [[Image:1989 Ford Sierra GLS.jpg|thumb|right|250px|An English 1989 Ford Sierra GLS Sports Saloon. No longer in production]]
34912 [[Image:2000 Ford Taurus.jpg|thumb|right|250px|A [[Ford Taurus]], a modern family car which has gone through a number of changes.]]
34913 Cars are not merely continually perfected mechanical contrivances; since the 1920s nearly all have been mass-produced to meet a market, so marketing plans and manufacture to meet them have often dominated automobile design. It was [[Alfred P. Sloan]] who established the idea of different makes of cars produced by one firm, so that buyers could &quot;move up&quot; as their fortunes improved. The makes shared parts with one another so that the larger production volume resulted in lower costs for each price range. For example, in the 1950s, [[Chevrolet]] shared hood, doors, roof, and windows with [[Pontiac]]; the LaSalle of the 1930s, sold by [[Cadillac]], used the cheaper mechanical parts made by the Oldsmobile division.
34914
34915 ==Alternative fuels and batteries==
34916 {{main|Alternative fuel cars}}
34917 With heavy [[tax]]es on fuel, particularly in [[Europe]] and tightening environmental [[law]]s, particularly in [[California]], and the possibility of further restrictions on [[greenhouse gas]] emissions, work on alternative power systems for vehicles continues.
34918
34919 [[Diesel]]-powered cars can run with little or no modification on 100% pure [[biodiesel]], a fuel that can be made from [[vegetable oil]]s. Many cars that currently use gasoline can run on ethanol, a fuel made from plant sugars. Most cars that are designed to run on gasoline are capable of running with 15% ethanol mixed in, and with a small amount of redesign, gasoline-powered vehicles can run on ethanol concentrations as high as 85%. All petrol fuelled cars can run on [[Liquified petroleum gas|LPG]]. There has been some concern that the ethanol-gasoline mixtures prematurely wear down seals and gaskets. Further, the use of higher levels of alcohol requires that the automobile carry/use twice as much. Therefore, if your vehicle is capable of 300 miles on a 15-gallon tank, the efficiency is reduced to approximately 150 miles. Of course, certain measures are available to increase this efficiency, such as different camshaft configurations, altering the timing/spark output of the ignition, or simply, using a larger fuel tank.
34920
34921 In the [[United States]], alcohol fuel was produced in corn-alcohol [[still]]s until [[Prohibition]] criminalized the production of alcohol in 1919. [[Brazil]] is the only country which produces ethanol-running cars, since the late 1970s.
34922
34923 Attempts at building viable [[battery (electricity)|battery]]-powered electric vehicles continued throughout the 1990s (notably [[General Motors]] with the [[EV1]]), but cost, speed and inadequate driving range made them uneconomical. Battery powered cars have used [[lead-acid batteries]] which are greatly damaged in their recharge capacity if discharged beyond 75% on a regular basis and [[Nickel metal hydride|NiMH batteries]].
34924
34925 Current research and development is centered on &quot;[[Hybrid electric vehicle|hybrid]]&quot; vehicles that use both electric power and internal combustion. The first hybrid vehicle available for sale in the USA was the [[Honda Insight]]. As of 2005, The car is still in production and achieves around 60 mpg.
34926
34927 Other R&amp;D efforts in alternative forms of power focus on developing [[fuel cells]], alternative forms of combustion such as [[Gasoline Direct Injection|GDI]] and [[HCCI]], and even the stored energy of compressed air (see [[water Engine]]).
34928
34929 ==Safety==
34930 [[Image:Eurocar.jpg|thumb|300px|A [[Mini]] in Paris, France]]
34931 Automobiles were a significant improvement in safety on a per passenger mile basis, over the horse based travel that they replaced. Millions have been able to reach medical care much more quickly when transported by [[ambulance]].
34932
34933 [[Car accident|Accidents]] seem as old as automobile vehicles themselves. [[Joseph Cugnot]] crashed his steam-powered &quot;Fardier&quot; against a wall in 1770. The first recorded automobile fatality was [[Bridget Driscoll]] on [[1896-08-17]] in [[London]] and the first in the [[United States]] was [[Henry Bliss]] on [[1899-09-13]] in [[New York City, NY]].
34934
34935 Cars have two basic safety problems: They have human drivers who make mistakes, and the wheels lose traction near a half gravity of deceleration. [[Automated highway system|Automated control]] has been seriously proposed and successfully prototyped. Shoulder-belted passengers could tolerate a 32[[Gee|G]] emergency stop (reducing the safe intervehicle gap 64-fold) if high-speed roads incorporated a steel rail for emergency braking. Both safety modifications of the roadway are thought to be too expensive by most funding authorities, although these modifications could dramatically increase the number of vehicles that could safely use a high-speed highway.
34936
34937 Early safety research focused on increasing the reliability of brakes and reducing the flammability of fuel systems. For example, modern engine compartments are open at the bottom so that fuel vapors, which are heavier than air, vent to the open air. Brakes are hydraulic so that failures are slow leaks, rather than abrupt cable breaks. Systematic research on crash safety started in 1958 at [[Ford Motor Company]]. Since then, most research has focused on absorbing external crash energy with crushable panels and reducing the motion of human bodies in the passenger compartment.
34938
34939 There are standard tests for safety in new automobiles, like the [[EuroNCAP]] and the [http://www.nhtsa.dot.gov/cars/testing/ncap/ US NCAP] tests. There are also tests run by organizations such as [http://www.hwysafety.org/ IIHS] and backed by the insurance industry.
34940
34941 Despite technological advances, there is still significant loss of life from car accidents: About 40,000 people die every year in the [[U.S.]], with similar figures in [[Europe]]. This figure increases annually in step with rising population and increasing travel if no measures are taken, but the rate [[per capita]] and per mile travelled decreases steadily. The death toll is expected to nearly double worldwide by 2020. A much higher number of accidents result in injury or permanent [[disability]]. The highest accident figures are reported in China and India. The European Union has a rigid program to cut the death toll in the EU in half by 2010 and member states have started implementing measures.
34942
34943 ==Current Production==
34944 In 2005 63 million cars and light trucks were produced worldwide. The world's biggest car producer (including light trucks) is the European Union with 29% of the world's production. In non-EU Eastern Europe another 4% are produced. The second largest manufacturer is NAFTA with 25.8%, followed by Japan with 16.7%, China with 8.1%, MERCOSUR with 3.9%, India with 2.4% and the rest of the world with 10.1%. (vda-link)
34945
34946 Large free trade areas like EU, NAFTA and MERCOSUR attract manufacturers worldwide to produce their products within them and without currency risks or customs, additionally to being close to customers. Thus the production figures do not show the technological ability or business skill of the areas. In fact much if not most of the Third World car production is used western technology and car models (and sometimes even complete obsolete western factories shipped to the country), which is reflected in the patent statistic as well as the locations of the r&amp;d centers.
34947
34948 The automobile industry is dominated by relatively few large corporations (not to be confused with the much more numerous brands), the biggest of which (by numbers of produced cars) are currently [[General Motors]], [[Toyota]] and [[Ford Motor Company]]. It is expected, that Toyota will reach the No.1 position in 2006. The most profitable per-unit carmaker of recent years has been Porsche due to their premium price tag.
34949
34950 The automotive industry at large still suffers from high under-utilization of its manufacturing potential.
34951
34952 ==Future of the car==
34953 In order to limit deaths, there has been a push for self-driving automobiles. Much of the drive for computer-driven vehicles has been led by [[DARPA]] with their [http://www.grandchallenge.org/ Grand Challenge] race.
34954
34955 A current and powerful invention was ESP by Bosch and many followers that reduces deaths by about 30% and is recommended by many lawmakers and carmakers to be a standard feature in all cars sold in the EU. ESP recognizes dangerous situations and corrects the drivers input for a short moment to stabilize the car.
34956
34957 The biggest threat to automobiles is the declining supply of oil, which does not completely stop car usage but makes it significantly more expensive. Beginning of 2006 a gallon of gas costs approx. 6 US$ in Germany and other European countries. If no cheap solution can be found in the relatively near future individual mobility might suffer a major setback. Nevertheless, individual mobility is highly prized in modern societies so the demand for automobiles will remain just with a different power source.
34958
34959 Looking at automotive technology some areas appear to have the most need of development. For example, both the rubber tires and the batteries currently used by most cars seem rather antiquated when compared to,say, modern-day engines and traction-control systems. These are like jets with cardboard wings or PCs with 10 KB hard drives respectively. While slow moving cars can control their wheels via ESP reasonably well, fast moving vehicles like a Bugatti Veyron need a special tire checkup before approaching 400 km/h. Also the existing batteries are barely fit to handle the cars electronics but are far off from the ability to store enough energy for moving the car unassisted.
34960
34961 ==See also==
34962 {{wiktionarypar2|car|automobile}}
34963 *[[Carfree movement]]
34964 *[[Effects of the automobile on societies]]
34965 *[[List of automobile manufacturers]]
34966 *[[List of recent automobile models by type]]
34967 *[[U.S. Automobile Production Figures]]
34968 *[[Car dealership]]
34969 *[[Car handling]]
34970 *[[Car safety]]
34971 *''[[Unsafe at Any Speed]]'' by [[Ralph Nader]]
34972 *[[Crash test dummy]]
34973 *[[Car washing techniques]]
34974 *[[List of automotive superlatives]], [[Lists of automobiles]] for a [[structured list]].
34975 *[[List of automotive packages]] (cosmetic and functional features sold as a group)
34976 *[[Road traffic accident]]
34977 *[[hybrid cars]]
34978 *[[Portal:Cars]]
34979
34980 ==Major possible subsystems==
34981 *[[engine]]
34982 **[[carburetor]] or [[fuel injection]]
34983 **[[fuel pump]]
34984 **[[engine configuration]]: [[Wankel engine|Wankel]] or [[reciprocating engine|reciprocating]] ([[v engine|V]], [[inline engine|inline]], [[flat engine|flat]]).
34985 **[[electronic control unit|engine management system]]s
34986 **[[exhaust pipe|exhaust system]]
34987 **[[ignition system]]
34988 **[[Automobile self starter|self starter]]
34989 **[[Automobile emissions control|emissions control]] devices
34990 **[[turbocharger]]s and [[supercharger]]s
34991 **[[front engine]]
34992 **[[rear engine]]
34993 **[[mid engine]]
34994
34995 *[[Automobile ancillary power|Ancillary power]] - mechanical, electrical, hydraulic, vacuum, air
34996
34997 *[[drivetrain]]
34998 **[[transmission (automobile)|transmission]] ([[gearbox]])
34999 ***[[manual transmission]]
35000 ***[[semi-automatic transmission]]
35001 ***[[fully-automatic transmission]]
35002 **Layout
35003 ***[[FF layout]]
35004 ***[[FR layout]]
35005 ***[[MR layout]]
35006 ***[[RR layout]]
35007 **Drive Wheels
35008 ***[[2 wheel drive]]
35009 ***[[4 wheel drive]]
35010 ***[[Front wheel drive]]
35011 ***[[Rear wheel drive]]
35012 ***[[All wheel drive]]
35013 **[[differential (mechanics)|differential]]
35014 ***[[limited slip differential]]
35015 ***[[locking differential]]
35016 **[[axle]]
35017 **[[Live axle]]
35018
35019 *[[brake]]s
35020 **[[disc brake]]s
35021 **[[drum brake]]s
35022 **[[anti-lock braking system]]s (ABS)
35023
35024 *[[wheel]]s and [[tire]]s
35025 **[[custom wheel]]s
35026
35027 *[[steering]]
35028 **[[rack and pinion]]
35029 **[[Ackermann steering geometry]]
35030 **[[Caster angle]]
35031 **[[Camber angle]]
35032 **[[Kingpin]]
35033
35034 *[[suspension (vehicle)|suspension]]
35035 **[[MacPherson strut]]
35036 **[[wishbone suspension|wishbone]]
35037 **[[double wishbone]]
35038 **[[multi-link suspension|multi-link]]
35039 **[[torsion beam suspension|torsion beam]]
35040 **[[semi-trailing arm suspension|semi-trailing arm]]
35041 **[[axle]]
35042
35043 *body
35044 **[[crumple zone]]s
35045 **[[monocoque]] (or unibody) construction
35046 **[[:Category:Car doors]]
35047 **[[Spoiler (automotive)|spoiler]]
35048 **[[Japan Black]] (fore-runner of modern automotive finishes)
35049
35050 *interior equipment
35051 **[[passive safety]]
35052 ***[[seat belt]]s
35053 ***[[airbag]]s
35054 ***[[child safety lock]]s
35055 **[[dashboard]]
35056 **[[shifter]] for selecting gear ratios
35057 **[[wikt:ancillary|ancillary]] equipment such as [[car audio|stereos]], [[air conditioning]], [[cruise control]], [[car phone]]s, [[Global Positioning System|positioning system]]s, cup holders, etc.
35058
35059 *exterior equipment
35060 **windows
35061 ***[[Power window]]
35062 ***[[windshield]]
35063 ***[[Daytime running lamp]]s
35064
35065 ==External links==
35066 {{cleanup-spam}}
35067
35068 {{commons|Automobile}}
35069 *[http://www.dmv.org/ Department of Motor Vehicles]
35070 *[http://www.autoweek.com/ Autoweek.com]
35071 *[http://www.detnews.com/autosinsider/index.htm Auto Insider]
35072 *[http://www.edmunds.com/ Edmunds.com]
35073 *[http://www.kbb.com/ Kelley Blue Book]
35074 *[http://www.hwysafety.org/ Insurance Institute for Highway Safety]
35075 *[http://nhtsa.gov/ NHTSA.gov]
35076 *[http://www.naftc.wvu.edu/ Alternative Fuel Vehicle Training]
35077 *[http://www.becomeacardealer.com/ How To Become a Car Dealer]
35078 *[http://www.vda.de/de/service/jahresbericht/auto2005/pdf_charts/2_32.pdf/ Worldwide car production]
35079 *[http://www.topgear.com/ Top Gear cool automobile show from the BBC UK]
35080 *[http://www.automotoportal.com/ Automotive industry portal]
35081 [[Category:Automobiles|*]]
35082
35083 {{Link FA|eo}}
35084
35085 [[bg:АвŅ‚ĐžĐŧОйиĐģ]]
35086 [[ca:AutomÃ˛bil]]
35087 [[cs:Automobil]]
35088 [[da:Bil]]
35089 [[de:Automobil]]
35090 [[es:AutomÃŗvil]]
35091 [[eo:AÅ­tomobilo]]
35092 [[fa:ØŽŲˆØ¯ØąŲˆ]]
35093 [[fr:Automobile]]
35094 [[gl:AutomÃŗbil]]
35095 [[ko:ėžë™ė°¨]]
35096 [[hr:Automobil]]
35097 [[id:Mobil]]
35098 [[it:Autovettura]]
35099 [[he:מכוני×Ē]]
35100 [[la:Autocinetum]]
35101 [[lt:Automobilis]]
35102 [[mk:АвŅ‚ĐžĐŧОйиĐģ]]
35103 [[ms:Kereta]]
35104 [[na:Auto]]
35105 [[nv:Chidí]]
35106 [[nl:Auto]]
35107 [[ja:č‡Ē動čģŠ]]
35108 [[no:Bil]]
35109 [[nn:Bil]]
35110 [[os:ĐĨÃĻĐ´Ņ‚ŅƒĐģĐŗÃĻ]]
35111 [[pl:SamochÃŗd]]
35112 [[pt:AutomÃŗvel]]
35113 [[ro:Automobil]]
35114 [[ru:АвŅ‚ĐžĐŧОйиĐģŅŒ]]
35115 [[simple:Car]]
35116 [[sk:Automobil]]
35117 [[sl:Avtomobil]]
35118 [[sr:АŅƒŅ‚ĐžĐŧОйиĐģ]]
35119 [[su:Otomotif]]
35120 [[fi:Auto]]
35121 [[sv:Bil]]
35122 [[th:ā¸Ŗā¸–ā¸ĸā¸™ā¸•āšŒ]]
35123 [[tr:Otomobil]]
35124 [[uk:АвŅ‚ĐžĐŧОйŅ–ĐģŅŒ]]
35125 [[zh:æąŊčŊĻ]]</text>
35126 </revision>
35127 </page>
35128 <page>
35129 <title>Audi</title>
35130 <id>848</id>
35131 <revision>
35132 <id>41903912</id>
35133 <timestamp>2006-03-02T14:29:36Z</timestamp>
35134 <contributor>
35135 <username>Mushin</username>
35136 <id>271938</id>
35137 </contributor>
35138 <minor />
35139 <comment>/* History */ rw</comment>
35140 <text xml:space="preserve">[[Image:Audi_logo.png|none|right|200px|Audi logo]]
35141 '''Audi''' is an [[automobile]] maker in [[Germany]], and is a wholly-owned subsidiary of the [[Volkswagen Group]]. The company is headquartered in [[Ingolstadt]], [[Bavaria]], [[Germany]].
35142
35143 Audi's German [[tagline]] is &quot;[[Vorsprung durch Technik]]&quot;. The [[tagline]] is used either in original or in its English translation &quot;Progress through Technology&quot;.
35144
35145 ==History==
35146 [[Image:Audi NSU range (1969).jpg|thumb|right|250px|Press photograph of the then newly merged Audi NSU range, 1969.]]
35147 ===The origins of Audi===
35148 The company traces its origins back to 1899 and [[August Horch]]. The first Horch automobile was produced in 1901 in [[Zwickau]], in former [[East Germany]]. In 1910, Horch was forced out of the company he had founded. He then started a new company in Zwickau and continued using the Horch brand. His former partners sued him for [[trademark]] infringement and a German court determined that the Horch brand belonged to his former company. August Horch was forced to refrain from using his own [[family name]] in his new car business. As the word &quot;horch!&quot; translates to &quot;listen!&quot; in [[German language|German]], August Horch settled on the [[Latin]] equivalent of his name - &quot;audi!&quot;. It is also popularly believed that Audi is an acronym which stands for &quot;Auto Union [[Germany|Deutschland]] [[Ingolstadt]]&quot;. Audi produces over 2 million vehicles annually at its main production site in [[Ingolstadt]]. Audi has another production plant in Neckarsulm.
35149
35150 Audi started with a 2612 [[Cubic centimetre|cc]] model followed by a four cylinder model with 3564 cc, as well as 4680 cc and 5720 cc models. These cars were successful even in sporting events. August Horch left the Audi company in 1920. The first six cylinder model (4655 cc) appeared in 1924. In 1928, the company was acquired by [[J S Rasmussen]], owner of [[DKW]], who bought the same year the remains of the US [[automobile manufacturer]], [[Rickenbacker]] including the manufacturing equipment for eight cylinder engines. These engines were used in ''Audi Zwickau'' and ''Audi Dresden'' models that were launched in 1929. At the same time, six cylinder and a small four cylinder (licensed from [[Peugeot]]) models were manufactured. Audi cars of that era were luxurious cars equipped with special bodywork.
35151
35152 ===The Auto Union era===
35153 In 1932 Audi merged with [[Horch]], [[DKW]] and [[Wanderer (car)|Wanderer]] to form the [[Auto Union]].
35154 Before [[World War II]], Auto Union used the four interlinked rings that make up the Audi badge today, representing these four brands. This badge was used, however, only on Auto Union racing cars in that period while the member companies used their own names and emblems. The technological development became more and more concentrated and some Audi models were propelled by Horch or Wanderer built engines.
35155
35156 ===Pause and a new start===
35157 Auto Union plants were heavily bombed and partly destroyed during [[World War II]]. After the war, Zwickau soon became part of the [[German Democratic Republic]] and Audi headquarters were moved to [[Ingolstadt]]. In that period, the four interlinked rings were used together with the DKW badge. The company focused efforts on the DKW brand, but their [[two-stroke]] engines became unpopular. In 1958, [[Daimler-Benz]] acquired 88 per cent of Auto Union and the next year became its sole owner. Daimler-Benz developed a 72 hp (54 kW) four-door sedan, with a modern [[four stroke engine]] driving the front wheels. This model appeared in September 1965, &quot;relaunching&quot; the Audi brand. Daimler-Benz sold the company to [[Volkswagen]] in 1964; subsequently, Volkswagen's purchase of Auto Union has led to the modernization of VW to which it gained expertise in manufacturing water-cooled vehicles. Today, aircooled powerplants once produced by VW are no longer placed into production vehicles since December 23, 2005.
35158 [[image:Audi_60.jpg|thumb|right|250px|Audi 60 (1968 - 1972)]]
35159 In 1969, Audi merged with [[NSU Motorenwerke AG|NSU]], based in [[Neckarsulm]] near [[Stuttgart]]. In the [[1950s]] NSU had been the world's largest manufacturer of [[motorcycle]]s but had moved on to produce small cars like the [[NSU Prinz]] (the TT and TTS versions are still popular as vintage race cars). NSU then focused on new rotary engines according to the ideas of [[Felix Wankel]]. In 1967, the new [[NSU Ro 80]] was a space-age car well ahead of its time in technical details such as aerodynamics, light weight, safety, et cetera, but teething problems with the rotary engines put an end to the independence of NSU. Presently several lines of Audi cars are produced in Neckarsulm.
35160
35161 The mid-sized car that NSU had been working on, the K70, was intended to slot between the rear-engined Prinz models and the futuristic Ro 80. However, Volkswagen took the K70 for its own range, spelling the end of NSU as a separate brand.
35162
35163 ===The modern era of Audi===
35164 [[image:audi.quatro.arp.750pix.jpg|thumb|right|250px|Audi Quattro]]
35165 [[Image:Audi.tt.arp.750pix.jpg|thumb|right|250px|Audi TT]]
35166
35167 The first Audi of the modern era was the [[Audi 100]] of 1968. This was soon joined by the [[Audi 80|Audi 80/Fox]] (which formed the basis for the 1973 [[Volkswagen Passat]]) in 1972.
35168
35169 The Audi image at this time was a conservative one, and so, a proposal from chassis engineer [[Jorg Bensinger]] was accepted to develop the [[four-wheel drive]] technology in [[Volkswagen]]'s [[Iltis]] military vehicle for an Audi performance car and [[Rallying|rally]] racing car. The performance car was named the &quot;[[Quattro]],&quot; a turbocharged coupÊ which was also the first production vehicle to feature full-time all-wheel drive through a center [[differential]]. Commonly referred to as the &quot;Ur-Quattro&quot; (the &quot;[[Ur-]]&quot; prefix is a German [[augmentative]] used, in this case, to mean &quot;original&quot; and is also applied to the first generation of Audi's S4 and S6 sport sedans, as in &quot;UrS4&quot; and &quot;UrS6&quot;), few of these vehicles were produced (all hand-built by a single team) but the model was a great success in rallying. Prominent wins proved the viability of all-wheel drive racecars, and the Audi name became associated with advances in automotive technology,
35170
35171 In 1986, as the Passat-based Audi 80 was beginning to develop a kind of &quot;grandfather's car&quot; image, the type 89 was introduced. This completely new development sold extremely well. However, its modern and dynamic exterior belied the low performance of its base engine, and its base package was quite spartan (even the passenger-side mirror was an option.) In 1987, Audi put forward a new and very elegant [[Audi 90]], which had a much superior set of standard features. In the early nineties, sales began to slump for the Audi 80 series, and some basic construction problems started to surface.
35172
35173 This decline in sales was not helped in the [[United States|USA]] by a ''[[60 Minutes]]'' report which purported to show that Audi automobiles suffered from &quot;unintended acceleration&quot;. The ''60 Minutes'' report was based on customer reports of acceleration when the brake pedal was pushed. Independent investigators concluded that this was most likely due to a close placement of the accelerator and brake pedals (unlike American cars), and the inability, when not paying attention, to distinguish between the two. (In race cars, when manually downshifting under heavy braking, the accelerator has to be used in order to match revs properly, so both pedals have to be close to each other to be operated by the right foot at once, toes on the brake, heels on the gas. US citizens are used to automatic gearboxes and only two well separated pedals). This was never an issue in Europe, as Europeans in general use manual transmission gears, and have a &quot;feeling&quot; for vehicle revs in comparison to the speed of the car.
35174
35175 ''60 Minutes'' ignored this fact and rigged a car to perform in an uncontrolled manner. The report immediately crushed Audi sales, and Audi renamed the affected model (The 5000 became the 100/200 in 1989, as in Germany and elsewhere). Audi had contemplated withdrawing from the American market until sales began to recover in the mid-1990s. The turning point for Audi was the sale of the new A4 in 1996, and with the release of the A4/6/8 series, which was developed together with VW and other sister brands (so called &quot;platforms&quot;).
35176
35177 Currently, Audi's sales are growing strongly in Europe, and the company is renowned for having the best build quality of any mainstream auto manufacturer. 2004 marked the 11th straight increase in sales, selling 779,441 vehicles worldwide. Record figures were recorded from 21 out of about 50 major sales markets. The largest sales increases came from Eastern Europe (+19.3%), Africa (+17.2%) and the Middle East (+58.5%). In March of 2005, Audi is building its first two dealerships in India following its high increase in sales in that region. Though its brand still doesn't have the global cachet of [[Mercedes-Benz]] or [[BMW]], Audi's reputation for quality and understated style has once again made it a highly desirable marque.
35178
35179 However, after 2003, with the release of the new A4, and in 2004 with the new A6, Audi's dedication to quality had finally paid off when it started to receive news reports and various vehicle critics praising Audis over [[Mercedes-Benz]] and [[BMW]].
35180
35181 ==Auto racing==
35182 Audi has competed in (and sometimes dominated) numerous forms of [[auto racing]]. Audi's rich tradition in motorsport began with the [[Auto Union]] in the 1930s. In the 1990s Audi dominated the Touring and Super Touring categories of motor racing after success in circuit racing Stateside.
35183
35184 ===Rallying===
35185 In 1980 Audi released the [[Audi Quattro|Quattro]], an [[all wheel drive]] turbocharged car that went on to win [[rally racing|rallies]] and races worldwide. It is considered one of the most significant rally cars of all time because it was one of the first to take advantage of the then-recently changed rules which allowed the use of all-wheel-drive in competition racing. Many critics doubted the viability of all-wheel-drive racers, thinking them to be too heavy and complex, yet the Quattro was an instant success, winning its first rally on its first outing. It won competition after competition for the next two years.
35186
35187 In 1984 Audi launched the &quot;[[Quattro|Sport Quattro]]&quot; car which dominated races in [[Monte Carlo]] and [[Sweden]] with Audi taking all podium finishes but succumbed to problems further into [[WRC|World Rally Championship]] contention. After another season mired in mediocre finishes, Walter RÃļhrl finished the season in his Sport Quattro S1 and helped place Audi second in the manufacturer's points. Audi also received rally honors in the [[Hong Kong]] to [[Beijing]] rally in that same year. Michèle Mouton, the first female WRC driver to win a championship and a driver for Audi, took the Sport Quattro S1, now simply called the S1 and raced in the [[Pikes Peak|Pikes Peak Hill Climb]]. The climb race pits a driver and car to drive up a 4,302 meter high mountain in [[Colorado]] and in 1985, Michèle Mouton set a new record of 11:25.39 and being the first woman to set a Pikes Peak record. In 1986, Audi formally left international rally racing following an accident in Portugal involving driver Joaquim Santos in his RS200. Santos swerved to avoid hitting spectators in the road, and left the track into the crowd of spectators on the side, killing three and injuring 30. [[Bobby Unser]] used an Audi in that same year to claim a new record for the Pikes Peak Hill Climb at 11:09.22.
35188
35189 ===Motorsports in the USA===
35190 In 1987, Walter RÃļhrl claimed the title for Audi setting a new record of 10:47.85 in his Audi S1 he retired from the WRC in 2 years earlier. The Audi S1 employed Audi's time-tested 5-cylinder turbo charged engine and generated over 600 hp (447 kW). The engine was mated to a 6-speed gearbox and ran on Audi's famous all-wheel drive system. All of Audi's top drivers drove this beast, Hannu Mikkola, Stig Blomqvist, Walter RÃļhrl and the female driver, Michèle Mouton. The Audi S1 enjoys a 0-60 mph (0-100 km/h) time of 2.3 s. This Audi S1 started the S-series of cars for Audi which now represents an increased level of sports options and quality to the Audi line up.
35191
35192 As Audi moved away from rallying and into circuit racing, they chose first into America with the [[Trans-Am Series|Trans-Am]] in 1988,
35193
35194 In 1989, Audi moved to [[International Motor Sports Association|IMSA GTO]] with the [[Audi 90|90]], however as they avoided the two major endurance events (Daytona and Sebring) despite winning on a regular basis, they would lose out on the title.
35195 ===Touring cars===
35196 In 1990, having completed their objective to market cars in the United States, Audi returned to Europe turning first to the [[Deutsche Tourenwagen Meisterschaft|DTM]] series with the [[Audi V8]], then in 1993, being unwilling to build cars for the new formula, they turned their attention to the fast growing [[Supertouring]] series, which took place nationally, first in the [[French Supertourisme]] and [[Italian Superturismo]]. In the following year, Audi would switched to the German [[Super Tourenwagen]] (known as STW) and then to [[BTCC]] (British Touring Car Championship) the year after that.
35197
35198 The [[FIA]], having difficulty regulating the Quattro system and what impact it had on the competitors, would eventually ban all four wheel drive cars from competiting in 1998, by then Audi switched all their works efforts to sportscar racing.
35199
35200 By 2000, Audi would still compete in the US with their [[Audi RS4|RS4]] for the [[SPEED World Challenge|SCCA Speed World GT Challenge]], through dealer/team [[Champion Racing]] competing against Corvettes, Vipers, and smaller BMWs (where it is one of the few series to permit 4WD cars). In 2003, Champion Racing entered an [[Audi RS6|RS6]]. Once again, the quattro was superior and Champion Audi won the championship. They returned in 2004 to defend their title but a newcomer, Cadillac, gave them a run for their money. After four victories in a row, the Audis were sanctioned with several negative changes that deeply affected the car's performance.
35201
35202 In 2004, after years of competiting with the TT-R in the revitalised DTM series, with privateer team [[Abt|Abt Racing]] taking the 2002 title with [[Laurent Aiello]], Audi returned as a full factory effort to touring car racing by entering two factory supported [[Joest Racing]] [[Audi A4|A4s]].
35203
35204 ===Sports car racing===
35205 Beginning in 1999, Audi built the [[Audi R8 Race Car|Audi R8]] to compete in [[sports car racing]], including the [[Le Mans Prototype|LMP900]] class at the [[24 hours of Le Mans]]. The factory supported Joest Racing team won at Le Mans three times in a row (2000 - 2002), as well as winning every race in the [[American Le Mans]] Series in its first year. Audi also sold the car to customer teams such as [[Champion Racing]]. In 2003, two [[Bentley]] [[Bentley Speed 8|Speed 8]]s, with engines designed by Audi and driven by Joest drivers ''loaned'' to the fellow VW company, competed in the GTP class and finished the race in the top two positions, while the Champion Racing R8 finished third overall and first in the LMP900 class. Audi returned to the winner's circle at the 2004 race, with the top three finishers all driving R8s: Audi Sport Japan Team Goh finished first, Audi Sport UK Veloqx second, and Champion Racing third.
35206
35207 At the 2005 24 Hours of Le Mans, Champion Racing entered two R8s along with an R8 from the Audi PlayStation Team [[Oreca]]. The R8s (which were built to old LMP900 regulations) received a more narrow air inlet restrictor, cutting power, and an additional 50 kg of weight compared to the newer LMP1 chassis. On average, the R8s were about 2-3 seconds off pace compared to the [[Pescarolo]]-[[Judd]]. But with a team of excellent drivers and experience, both Champion R8s were able to take first and third while the ORECA team took fourth. The Champion team was also the first American team to win Le Mans since the Gulf Ford GT's in 1967. This also ends the long era of the R8, however its replacement for 2006, called the [[Audi R10]], was unveiled on December 13, 2005. the R10 employs many new features, including a twin-turbocharged diesel engine. Its first race will likely be the 2006 12 Hours of Sebring as a race-test for the 2006 24 Hours of Le Mans.
35208
35209 ==Technology==
35210 Audi is the only car manufacturer that produces 100% [[galvanize]]d vehicles to prevent corrosion. Along with other precautionary measures, the thus achieved full-body [[zinc]] coating has proved to be very effective in preventing rust and [[corrosion perforation]]. The body's resulting durability even surpassed Audi's own expectations, causing the manufacturer to extend its original 10-year [[warranty]] against corrosion perforation to currently 12 years. An all-[[aluminium]] car was brought forward by Audi, and in 1994 the Audi A8 was launched, which introduced aluminium [[space frame]] technology. Audi introduced a new series of vehicles in the mid-nineties and continues to pursue leading-edge technology and high performance.
35211
35212 The all-aluminium concept was extended to the company's new [[sub-compact]], the [[Audi A2]] which was launched in 2001.
35213
35214 In the 1970's, some vehicle manufacturers including Audi (and [[Subaru]]) designed their own [[all wheel drive]] systems in passenger vehicles. In the 1980's, all-wheel drive systems in cars became a fad, and other manufacturers like [[Porsche]] and [[Mercedes-Benz]] offered all-wheel drive systems in their cars to compete in the marketplace. Unfortunately, the all-wheel drive system in the Mercedes-Benz vehicles were riddled with problems right from the design sheet. The system also was not popular in Porsche vehicles because owners wanted the traditional performance of the [[rear wheel drive]] they got used to in older Porsches. Although Porsche and Mercedes-Benz offer all-wheel drive systems in some cars today, neither manufacturer was able to ride the fad and come out on top like Audi has. Today, after many decades of class-leading technology and engineering, the name ''[[quattro]]'' is an identifiable symbol and trademark that shows would-be competitors the level of quality they have to achieve in order to attempt to compete with Audi.
35215
35216 In the 1980s, Audi was the champion of the inline 5 cylinder, [[Engine displacement|2.1/2.2 L]] engine as a longer lasting alternative to more traditional 6 cylinder engines. This engine was used in not only production cars but also their race cars. The 2.1 L inline 5 cylinder engine was used as a base for the rally cars in the 1980's, providing well over 400 [[horsepower]] (298 kW) after modification. Before 1990, there were engines produced with a displacement between 2.0 L and 2.3 L. This range of engine capacity was a good combination of good fuel economy which was on the mind of every motorist in the 1980's, and a good amount of power the customer wants.
35217 Through the early 1990's, Audi began to move more towards the position of being a real competitor in it's target market against Mercedes-Benz and BMW. This began with the release of the Audi V8 in 1990. It was essentially a new engine fitted to the Audi 100/200, but with noticeable bodywork differences. Most obvious was the new grille that was now incorprated in the bonnet.
35218
35219 By 1991, Audi had the 4 cylinder [[Audi 80|Audi 80]], the 5 cylinder [[Audi 80|Audi 90]] and [[Audi 100|Audi 100]], the turbocharged [[Audi 100|Audi 200]] and the [[Audi V8|Audi V8]]. There was also a coupe version of the 80/90 with both 4 and 5 cylinder engines.
35220
35221 Although the five cylinder engine was a successful and very robust powerplant, it was still a little too different for the target market. With the introduction of an all-new Audi 100 in 1992, Audi introduced a 2.8l V6 engine. This engine was also fitted to a face-lifted Audi 80 (all 80 and 90 models were now badged 80 except for the USA), giving this model a choice of 4, 5 and 6 cylinder engines, in sedan, coupe and cabriolet body styles.
35222
35223 The 5 cylinder was soon dropped as a major engine choice, however a turbocharged 230BHP (169kW) version remained. The engine, initially fitted to the 200 quattro 20V of 1991, was a derivative of the engine fitted to the Sport Quattro. It was fitted to the Audi Coupe and named the S2 and also to the Audi 100 body, and named the [[Audi S4|S4]]. These two models were the beginning of the mass produced S series of performance cars.
35224
35225 The [[Audi A8|Audi A8]] replaced the [[Audi V8|V8]] in 1994, with a revolutionary Aluminium Space Frame (ASF) to save weight. The weight reduction was offset by the quattro all-wheel drive system, however it meant the car had similar performance to its rivals, but far superior handling.
35226
35227 The next major model change was in 1995 when the [[Audi A4|Audi A4]] replaced the [[Audi 80|Audi 80]]. The new nomenclature scheme was applied to the Audi 100 to become the Audi A6 (with a minor facelift). This also meant the S4 became the [[Audi S6|S6]] and a new S4 was introduced in the A4 body. The S2 was discontinued. The [[Audi Cabriolet]] continued on (based on the Audi 80 platform) until 1999, gaining the engine upgrades along the way. A new [[Audi A3|A3]] (based on the [[VW Golf|Volkswagen Golf]]) was introduced to the range in 1997, and the radical [[Audi TT|TT]] coupe and roadster were debuted in 1998 based on the same underpinnings. Another interesting model introduced was the [[Mercedes Benz|Mercedes-Benz]] A-Class competitor, the [[Audi A2|Audi A2]]. The model sold relatively well in Europe, however Audi decided not to develop a new model and it has since been discontinued as of 2004.
35228
35229 The engines available throughout the range were now a 1.4 L, 1.6 L and 1.8 L 4 cylinder, 1.8 turbo, 2.6 L and 2.8 L V6, 2.2 L turbo-charged 5 cylinder and the 4.2 L V8. The V6's were replaced by new 2.4 and 2.8 L 30V V6's in 1998, with marked improvement in power, torque and smoothness. Further engines were added along the way, including a 3.7 L V8 and 6.0 L W12 for the A8.
35230
35231 At the turn of the century, Audi introduced the [[direct shift gearbox]] (DSG), a manual transmission driveable like an automatic transmission. The system includes dual electrohydraulically controlled clutches instead of a [[torque converter]]. This is implemented in some [[Volkswagen Golf]], [[Audi A3]] and [[Audi TT|TT]] models. The engine range was continually upgraded, with a 2.7 L twin turbo V6 being offered in the Audi S4, A6 and allroad, the 2.8 L V6 was replaced by a 3.0 L unit.
35232
35233 New models of the A3, A4, A6 and A8 have been introduced, with the 1.8 L engine now 2.0 L and the 3.0 L V6 is now 3.1 L in size. Audi has now introduced [[FSI|FSI]] on some of their engines, including the 1.6 L 4 cylinder, a new 2.0 L (Audi was the first manufacturer in the world to utilize a turbo charger and FSI on the same powerplant), and the 3.1 L V6. This is a direct fuel-injection technique that Audi had also used on its diesel engines since the early 1980s.
35234
35235 As a premium member of the VW Group, technologies are frequently first introduced to the mass market with Audi vehicles before being 'trickled down' to more value oriented brands such as VW, [[SEAT]] and [[Å koda Auto|Å koda]]. Recent examples of this include DSG and FSI.
35236
35237 Audi now has an impressive range of cars, engines and transmissions available, which continue to lead the way and introduce new technologies into the market.
35238
35239 ==Models==
35240 ===Production cars===
35241 * [[Audi A2|A2]]
35242 * [[Audi A3|A3]]
35243 ** [[Audi S3|S3]]
35244 * [[Audi A4|A4]]
35245 ** [[Audi S4|S4]]
35246 ** [[Audi RS4|RS4]]
35247 * [[Audi A6|A6]]
35248 ** [[Audi S6|S6]]
35249 ** [[Audi RS6|RS6]]
35250 * [[Audi Q7|Q7]]
35251 * [[Audi A8|A8]]
35252 ** [[S8]]
35253 * [[Audi TT|TT]]
35254
35255 ===Historical models===
35256 * [[Audi 50]]
35257 * [[Audi 80|Audi 80/90/4000]]
35258 * [[Audi 100|Audi 100/200/5000]]
35259 * [[Audi Quattro]]
35260 * [[Audi V8]]
35261 * [[Audi UrS4/S6]]
35262 * model
35263
35264 ===Future models===
35265 ''The following is a list of models Audi ostensibly plans to offer in the future.''
35266
35267 * [[Audi A5|A5]]
35268 * [[Audi RS4|RS4]]
35269 * [[Audi Q5|Q5]]
35270 * [[Audi R8 Road Car (2006-).|R8]]
35271
35272 ===Concepts===
35273 ''The following is a partial list of [[concept car]]s.''
35274
35275 * [[Audi RSQ]] designed exclusively for the 2004 film [[I, Robot (movie)|I, Robot]].
35276 * [[Audi Allroad Quattro Concept]]
35277 * [[Audi Shooting Brake]], design study for the next generation TT
35278 * [[Audi Avus Quattro]]
35279 * [[Audi Quattro Spyder]]
35280 * [[Audi Avantissimo]]
35281 * [[Audi Pikes Peak]]
35282 * [[Audi Nuvolari Quattro]]
35283 * [[Audi Le Mans Quattro]]
35284 * [[Audi Roadjet]]
35285
35286 ==See also==
35287 {{commons|Audi}}
35288 * [[Audi Centre of Excellence]]
35289 * [[Audi Driving Experience]]
35290 * [[Austin Audi Club]]
35291
35292 ==External links==
35293 * [http://www.audi.com Official website]
35294 * [http://www.audiworld.com AudiWorld.com Enthusiast Website]
35295 * [http://www.fourtitude.com Fourtitude.com Enthuiast Forum]
35296 * [http://www.audiclubna.org Audi Club North America - The Official Audi Owners Club for North America.]
35297 * [http://www.joestracing.de Joest Racing]
35298 * [http://audi100.selbst-doku.de/Main/EnglishHomepage Audi100.Selbst-Doku.De - most complete english/german Audi 100, 5000, A6 info site]
35299 * [http://www.audiforums.com Audi Forums] Enthusiast forums, recalls, TSBs, photo galleries, and general tech help.
35300 * [http://www.audi-forums.com Audi Forum]
35301 * [http://www.automotoportal.com/ Automotive industry portal with Audi news]
35302
35303 {{Audi}}
35304
35305 [[Category:Audi|Audi]]
35306 [[Category:Bavaria]]
35307 [[Category:German automobile manufacturers]]
35308 [[Category:Luxury car manufacturers]]
35309 [[Category:Saxony]]
35310 [[Category:Volkswagen]]
35311
35312 [[bg:АŅƒĐ´Đ¸]]
35313 [[cs:Audi]]
35314 [[da:Audi]]
35315 [[de:Audi]]
35316 [[es:Audi]]
35317 [[fi:Audi]]
35318 [[fr:Audi]]
35319 [[he:אאודי]]
35320 [[id:Audi]]
35321 [[it:Audi]]
35322 [[ja:ã‚ĸã‚Ļデã‚Ŗ]]
35323 [[nl:Audi]]
35324 [[no:Audi]]
35325 [[pl:Audi]]
35326 [[pt:Audi]]
35327 [[ru:АŅƒĐ´Đ¸]]
35328 [[sk:Audi]]
35329 [[sv:Audi]]
35330 [[tr:Audi]]
35331 [[zh:åĨĨčŋĒ]]</text>
35332 </revision>
35333 </page>
35334 <page>
35335 <title>Aircraft</title>
35336 <id>849</id>
35337 <revision>
35338 <id>42156837</id>
35339 <timestamp>2006-03-04T04:52:45Z</timestamp>
35340 <contributor>
35341 <username>Rogerd</username>
35342 <id>205136</id>
35343 </contributor>
35344 <minor />
35345 <comment>Reverted edits by [[Special:Contributions/24.57.130.124|24.57.130.124]] ([[User talk:24.57.130.124|talk]]) to last version by Blimpguy</comment>
35346 <text xml:space="preserve">[[image:jal.747.newcolours.arp.750pix.jpg|thumb|right|350px|A [[Japan Airlines]] [[Boeing]] [[Boeing 747-400|747-400]]. This is a wide-bodied long-haul '''aircraft''']]
35347 An '''aircraft''' is any [[machine]] capable of [[Earth's atmosphere|atmospheric]] [[flight]].
35348
35349 &lt;!--English word &quot;aircraft&quot; is singuar and plural with no &quot;s&quot;. See also the link to Wiktionary below.--&gt;
35350 ==Categories and classification==
35351 Aircraft fall into two broad categories:
35352
35353 ===Heavier than air===
35354 Heavier than air [[aerodyne]]s, including [[autogyro]]s, [[helicopter]]s and variants, and conventional [[fixed-wing aircraft]] (airplanes or aeroplanes). Fixed-wing aircraft generally use an [[internal-combustion engine]] in the form of a [[piston engine]] (with a [[propeller]]) or a [[Turbine|turbine engine]] ([[Jet engine|jet]] or [[turboprop]]), to provide [[thrust]] that moves the craft forward through the air. The movement of air over the airfoil produces [[lift (force)|lift]] that causes the aircraft to fly. Exceptions are [[glider]]s which have no engines and gain their thrust, initially, from [[winch]]es or tugs and then from gravity and thermal currents. For a glider to maintain its forward speed it must descend in relation to the air (but not necessarily in relation to the ground). Helicopters and autogyros use a spinning rotor (a ''rotary wing'') to provide lift; helicopters also use the rotor to provide thrust. The abbreviation [[VTOL]] is applied to aircraft other than helicopters that can take off or land vertically. [[STOL]] stands for Short Take Off and Landing.
35355
35356 ===Lighter than air===
35357 [[image:yellow.balloon.takesoff.in.bath.arp.jpg|thumb|right|200px|A hot air balloon takes off from Royal Victoria Park, Bath, England]]
35358
35359 [[Lighter than air]] [[aerostat]]s: [[hot air balloon]]s and [[airship]]s. Aerostats use [[buoyancy]] to float in the air in much the same manner as ships float on the water. In particular, these aircraft use a relatively low density gas such as [[helium]], [[hydrogen]] or heated air, to displace the air around the craft. The distinction between a balloon and an airship is that an airship has some means of controlling both its forward motion and steering itself, while balloons are carried along with the wind.
35360
35361 ===Types of aircraft===
35362 :''See also: [[List of aircraft]]''
35363
35364 There are several ways to classify aircraft. Below, we describe classifications by design, propulsion and usage.
35365
35366 ====By design====
35367 [[image:Size-comparison.jpg|thumb|right|350px|A size Comparation of some of the largest airplanes in the world. The Airbus A380-800, the Boeing 747-400 (largest airliner to date) The Antonov An-225 (aircraft with the greatest payload) and the Hughes H-4 &quot;Spruce Goose&quot; (largest airplane in the world) designed by the famous [[Howard Hughes]] ]]
35368 A first division by design among aircraft is between lighter-than-air, '''aerostat''', and heavier-than-air aircraft, '''aerodyne'''.
35369
35370 Examples of lighter-than-air aircraft include non-steerable [[balloon]]s, such as [[hot air balloon]]s and [[gas balloon]]s, and steerable [[airship]]s (sometimes called dirigible balloons) such as [[blimp]]s (that have non-rigid construction) and [[rigid airship|rigid airships]] that have an internal frame. The most successful type of rigid airship was the [[Zeppelin]]. Several accidents, such as the [[Hindenburg disaster|Hindenburg]] fire at [[Lakehurst]], NJ, in [[1937]] led to the demise of large rigid airships.
35371
35372 In heavier-than-air aircraft, there are two ways to produce lift: aerodynamic lift and engine lift. In the case of aerodynamic lift, the aircraft is kept in the air by wings or rotors (see [[aerodynamics]]). With engine lift, the aircraft defeats gravity by use of [[vertical]]
35373 Examples of engine lift aircraft are [[rocket]]s, and [[VTOL]] aircraft such as the [[Hawker-Siddeley Harrier]].
35374
35375 Among aerodynamically lifted aircraft, most fall in the category of [[fixed-wing aircraft]], where horizontal airfoils produce [[lift (force)|lift]], by profiting from airflow patterns determined by [[Bernoulli's equation]] and, to some extent, the [[Coanda effect]].
35376
35377 The forerunner of these type of aircraft is the [[Kite flying|kite]]. Kites depend upon the tension between the cord which anchors it to the ground and the force of the [[wind]] currents. Much aerodynamic work was done with kites until test aircraft, wind tunnels and now computer modelling programs became available.
35378
35379 In a &quot;conventional&quot; configuration, the lift surfaces are placed in front of a control surface or [[tailplane]]. The other configuration is the [[canard]] where small horizontal control surfaces are placed forward of the wings, near the nose of the aircraft. Canards are becoming more common as [[supersonic]] [[aerodynamic]]s grows more mature and because the forward surface contributes lift during straight-and-level flight.
35380
35381 The number of lift surfaces varied in the pre-[[1950]] period, as [[biplane]]s (two wings) and [[triplane]]s (three wings) were numerous in the early days of aviation. Subsequently most aircraft are [[monoplane]]s. This is principally an improvement in [[structure]]s and not aerodynamics.
35382
35383 Other possibilities include the [[delta-wing]], where lift and horizontal control surfaces are often combined, and the [[flying wing]], where there is no separate vertical control surface (e.g. the [[B-2 Spirit]]).
35384
35385 A variable geometry ('swing-wing') has also been employed in a few examples of combat aircraft (the [[General Dynamics F-111|F-111]], [[Panavia Tornado]], [[F-14 Tomcat]] and [[B-1 Lancer]], among others).
35386
35387 The [[lifting body]] configuration is where the body itself produce lift. So far the only significant practical application of the lifting body is in the [[Space Shuttle]], but many aircraft generate lift from nothing other than wings alone.
35388
35389 A second category of aerodynamically lifted aircraft are the [[rotary-wing aircraft]]. Here, the lift is provided by rotating [[aerofoil]]s or [[rotor]]s. The best-known examples are the [[helicopter]], the [[autogyro]] and the [[tiltrotor]] aircraft (such as the [[V-22 Osprey]]). Some craft have reaction-powered rotors with gas jets at the tips but most have one or more lift rotors powered from engine-driven shafts.
35390
35391 A further category might encompass the [[ground effect|wing-in-ground-effect]] types, for example the Russian [[ekranoplan]] also nicknamed the &quot;Caspian Sea Monster&quot; and [[hovercraft]]; most of the latter employing a skirt and achieving limited ground or water clearance to reduce friction and achieve speeds above those achieved by [[boat]]s of similar weight.
35392
35393 A recent innovation is a completely new class of aircraft, the [[fan wing]]. This uses a fixed wing with a forced airflow produced by cylindrical fans mounted above. It is (2005) in development in the [[United Kingdom]].
35394
35395 And finally the flapping-wing [[ornithopter]] is a category of its own. These designs may have potential but are not yet practical.
35396
35397 ====By propulsion====
35398 [[Image:WestCoastAirFloatplane.jpg|thumb|right|250px|A [[turboprop]]-engined [[De Havilland Canada DHC-6 Twin Otter|DeHavilland Twin Otter]] adapted as a [[floatplane]].]]
35399 Some types of aircraft, such as the balloon or [[glider]], do not have any propulsion. Balloons drift with the wind, though normally the pilot can control the altitude either by heating the air or by releasing ballast, giving some directional control (since the wind direction changes with altitude). For gliders, takeoff takes place from a high location, or the aircraft is pulled into the air by a ground-based winch or vehicle, or towed aloft by a powered &quot;tug&quot; aircraft. [[Airship]]s combine a balloon's [[buoyancy]] with some kind of propulsion, usually [[propeller]] driven.
35400
35401 Until [[World War II]], the [[Internal combustion engine|internal combustion piston engine]] was virtually the only type of propulsion used for powered aircraft. (See also: [[Aircraft engine]].) The piston engine is still used in the majority of aircraft produced, since it is efficient at the lower altitudes used by small aircraft, but the [[radial engine]] (with the cylinders arranged in a circle around the [[crankshaft]]) has largely given way to the [[horizontally-opposed engine]] (with the cylinders lined up on two sides of the crankshaft). Water cooled [[V engine]]s, as used in automobiles, were common in high speed aircraft, until they were replaced by jet and turbine power. Piston engines typically operate using [[avgas]] or regular gasoline, though some new ones are being designed to operate on diesel or jet fuel. Piston engines normally become less efficient above 7,000-8,000 ft (2100-2400 m) above sea level because there is less oxygen available for combustion; to solve that problem, some piston engines have mechanically powered compressors (blowers) or turbine-powered [[turbocharger]]s or turbonormalizers that compress the air before feeding it into the engine; these piston engines can often operate efficiently at 20,000 ft (6100 m) above sea level or higher, altitudes that require the use of supplemental oxygen or cabin pressurisation.
35402 During the forties and especially following the [[1973 energy crisis]], development work was done on propellers with swept tips or even scimitar-shaped blades for use in high-speed commercial and military transports.
35403
35404 Pressurised aircraft, however, are more likely to use the [[turbine|turbine engine]], since it is naturally efficient at higher altitudes and can operate above 40,000 ft. Helicopters also typically use turbine engines. In addition to turbine engines like the [[turboprop]] and [[jet engine|turbojet]], other types of high-altitude, high-performance engines have included the [[ramjet]] and the [[pulse jet]]. [[Rocket aircraft]] have occasionally been experimented with. They are restricted to rather specialised niches, such as [[spaceflight]], where no oxygen is available for combustion (rockets carry their own oxygen).
35405
35406 ====By usage====
35407 The major distinction in aircraft usage is between [[military aviation]], which includes all uses of aircraft for military purposes (such as combat, patrolling, search and rescue, reconnaissance, transport, and training), and [[civil aviation]], which includes all uses of aircraft for non-military purposes.
35408
35409 =====[[Military aircraft]]=====
35410 [[Image:4781.jpg|thumb|right|250px|A prototype of [[Hindustan Aeronautics]]' [[Light Combat Aircraft]].]]
35411 Combat aircraft like fighters or bombers represent only a minority of the category. Many civil aircraft have been produced in separate models for military use, such as the civil [[Douglas DC-3]] airliner, which became the military [[C-47]]/C-53/R4D transport in the U.S. military and the &quot;Dakota&quot; in the U.K. and the [[Commonwealth]]. Even the small fabric-covered two-seater [[Piper Cub|Piper J3 Cub]] had a military version, the L-4 liaison, observation and trainer aircraft. In the past, gliders and balloons have also been used as military aircraft; for example, balloons were used for observation during the [[American Civil War]] and [[World War I]], and cargo gliders were used during [[World War II]] to land intruding German troops in a few European countries in the 1940-42 period, while Allied troops used them in landings on [[Sicily]] and [[Italy]], 1943, and in Western Europe [France and Holland] on [[D-Day]] (the [[Normandy]] 6 June 1944 [[Operation Overlord]] invasion) and in [[Operation Anvil-Dragoon]] (1944) and in [[Operation Market Garden]] (1944).
35412
35413 Combat aircraft themselves, though used a handful of times for reconnaissance and [[surveillance aircraft|surveillance]] during the [[Italo-Turkish War]], did not come into widespread use until the [[Balkan War]] when [[first air-dropped bomb]] was invented and widely used by [[Bulgarian air force]] against [[Turkey]]. During [[World War I]] many types of aircraft were adapted for attacking the ground or enemy vehicles/ships/guns/aircraft, and the first aircraft designed as [[bomber]]s were born. In order to prevent the enemy from bombing, [[fighter aircraft]] were developed to intercept and shoot down enemy aircraft. [[Tanker (aircraft)|Tanker]]s were developed after [[World War II]] to refuel other aircraft in mid-air, thus increasing their operational range. By the time of the [[Vietnam War]], [[helicopter]]s had come into widespread military use, especially for transporting, supplying, and supporting ground troops.
35414
35415 =====Civil aviation=====
35416 [[image:heli.g-code.750pix.jpg|thumb|right|250px|[[Bell 206|Bell 206B JetRanger III]] '''[[helicopter]]''']]
35417 Civil aviation includes both scheduled airline flights and [[general aviation]], a catch-all covering other kinds of private and commercial use. The vast majority of flights flown around the world each day belong to the general aviation category, ranging from recreational balloon flying to civilian flight training to business trips to firefighting to medevac flights to cargo transportation on [[freight aircraft]].
35418
35419 Within general aviation, the major distinction is between private flights (where the pilot is not paid for time or expenses) and commercial flights (where the pilot is paid by a customer or employer). Private pilots use aircraft primarily for personal travel, business travel, or recreation. Usually these private pilots own their own aircraft and take out loans from banks or specialized lenders to purchase them. Commercial general aviation pilots use aircraft for a wide range of tasks, such as flight training, pipeline surveying, passenger and freight transport, policing, crop dusting, and medical transport ([[medevac]]). Piston-powered propeller aircraft (single-engine or twin-engine) are especially common for both private and commercial general aviation, but even private pilots occasionally own and operate helicopters like the [[Bell 206|Bell JetRanger]] or turboprops like the [[Beechcraft King Air]]. Business jets are typically flown by commercial pilots, although there is a new generation of small jets arriving soon for private pilots.
35420
35421 == See also ==
35422 {{Aviation portal}}
35423 *[[List of aircraft by category]]
35424 *[[List of aircraft by date and usage category]]
35425 *[[List of civil aircraft]]
35426 *[[List of helicopter models]]
35427 *[[List of military aircraft]]
35428 *[[List of notable aircraft]]
35429 *[[List of World War II jet aircraft]]
35430 *[[List of aircraft engines]]
35431 *[[List of aircraft engine manufacturers (alphabetical)]]
35432
35433 *[[Aerial refuelling]]
35434 *[[Aeronautics]]
35435 *[[Aircraft carrier]]
35436 *[[Aircraft spotting]]
35437 *[[Airline call sign]]s
35438 *[[Airliner]]
35439 *[[Air safety]]
35440 *[[Aviation]]
35441 *[[Contrail]]
35442 *[[First flying machine]]
35443 *[[Flight controls]]
35444 *[[Flight instruments]]
35445 *[[Gliding]]
35446 *[[Lifting body]]
35447 *[[List of early flying machines]]
35448 *[[Model aircraft]]
35449 *[[Category:Notable Aircraft]]
35450 *[[Richard Pearse]]
35451 *[[Spacecraft propulsion]]
35452 *[[Spacecraft]]
35453 *[[Steam aircraft]]
35454 *[[Successful aircraft types]]
35455 *[[Undercarriage]]
35456 *[[Wright brothers]]
35457 *[[List of aviation, aerospace and aeronautical terms]]
35458
35459 ==External links==
35460 {{Wiktionary}}
35461 {{commons|Aircraft}}
35462
35463 '''History'''
35464 *[http://www.nasm.si.edu/ Smithsonian Air and Space Museum] - Excellent online collection with a particular focus on history of aircraft and spacecraft
35465 *[http://invention.psychology.msstate.edu/Tale_of_Airplane/taleplane.html Virtual Museum]
35466 *[http://www.centennialofflight.gov/essay/Prehistory/PH-OV.htm Prehistory of Powered Flight]
35467 *[http://www.hq.nasa.gov/office/pao/History/SP-468/contents.htm The Evolution of Modern Aircraft (NASA)]
35468 *[http://www.flightinternational.com/Articles/2005/12/20/203709/Clipped+wings.html On Aircraft never built (Flight Global)]
35469 *[http://www.anythingplanes.net Aircraft community ]
35470
35471 '''Information'''
35472 *[http://www.flightinternational.com Flight International]
35473 *[http://www.aircraft-info.net Aircraft-Info.net]
35474 *[http://www.airliners.net/info/ Airliners.net]
35475 *[http://www.HomebuiltAircraft.com HomebuiltAircraft.com]- Information Portal about Homebuilt Aircraft
35476 * [http://www.DefenceTalk.com Airforces ]
35477 * [http://www.challoner.com/aviation/index.html Series of Photo Essays on British Aviation]
35478 *[http://www.usenet-replayer.com/webrings/aviation.html Pictures of Aircraft] published on [[Usenet]]
35479 * [http://www.sulman4paf.tk PAF Procedures and Information, Wallpapers, Picture Gallery, Updated News]
35480
35481 '''Patents'''
35482 * US[http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PALL&amp;p=1&amp;u=/netahtml/srchnum.htm&amp;r=1&amp;f=G&amp;l=50&amp;s1=821393.WKU.&amp;OS=PN/821393&amp;RS=PN/821393 821393] -- ''Flying machine'' -- O. &amp; W. Wright
35483
35484 {{airlistbox}}
35485
35486 &lt;!-- The below are interlanguage links. --&gt;
35487
35488 [[Category:Aircraft]]
35489 [[Category:Aviation]]
35490 [[Category:Notable Aircraft]]
35491
35492 [[ar:ØˇØ§ØĻØąØŠ]]
35493 [[af:Vliegtuig]]
35494 [[bg:ЛĐĩŅ‚Đ°Ņ‚ĐĩĐģĐĩĐŊ Đ°ĐŋĐ°Ņ€Đ°Ņ‚]]
35495 [[zh-min-nan:Hui-hÃĒng-ki]]
35496 [[ca:Aeronau]]
35497 [[cs:Letadlo]]
35498 [[da:Luftfartøj]]
35499 [[de:Luftfahrzeug]]
35500 [[es:Aeronave]]
35501 [[eo:Flugmaŝino]]
35502 [[eu:Hegazkin]]
35503 [[fa:Ų‡ŲˆØ§Ú¯ØąØ¯]]
35504 [[fr:AÊronef]]
35505 [[fy:LoftfartÃēch]]
35506 [[ko:항ęŗĩ기]]
35507 [[io:Aeronavo]]
35508 [[id:Pesawat]]
35509 [[it:Aeromobile]]
35510 [[he:כלי טיס]]
35511 [[la:Aeroplanum]]
35512 [[ms:Pesawat udara]]
35513 [[nl:Vliegtuig]]
35514 [[ja:čˆĒįŠē抟]]
35515 [[no:Luftfartøy]]
35516 [[pl:Statek powietrzny]]
35517 [[pt:Aeronave]]
35518 [[ru:ВоздŅƒŅˆĐŊĐžĐĩ ŅŅƒĐ´ĐŊĐž]]
35519 [[simple:Aircraft]]
35520 [[sl:Zrakoplov]]
35521 [[sr:ВаздŅƒŅ…ĐžĐŋĐģОв]]
35522 [[fi:Lentokone]]
35523 [[sv:Flygmaskin]]
35524 [[vi:Khí cáģĨ bay]]
35525 [[zh:éŖžæœē]]</text>
35526 </revision>
35527 </page>
35528 <page>
35529 <title>Aphex Twin</title>
35530 <id>850</id>
35531 <revision>
35532 <id>41236145</id>
35533 <timestamp>2006-02-25T23:52:17Z</timestamp>
35534 <contributor>
35535 <username>Keenan Pepper</username>
35536 <id>124371</id>
35537 </contributor>
35538 <comment>rv POV</comment>
35539 <text xml:space="preserve">{{Infobox Band |
35540 band_name = Aphex Twin |
35541 years_active = [[1991]] &amp;ndash; present |
35542 origin = [[Cornwall, England |Cornwall]], [[United Kingdom]] |
35543 music_genre = [[Intelligent dance music|IDM]], [[Drum and Bass]], [[Acid (electronic music)|Acid]], [[Ambient music|Ambient]], [[Prepared Piano]], [[Techno]] |
35544 image = [[Image:Afx.jpg|250px]] |
35545 record_label = [[Rephlex Records]] &lt;br /&gt; [[Warp Records]] |
35546 current_members = Richard David James |
35547 }}
35548 {{redirect|Aphex|the audio signal processing equipment company|[[Aphex Systems]]}}
35549 '''Aphex Twin''' (born '''Richard David James''', [[August 18]], [[1971]], [[Ireland]]) is a [[United Kingdom|UK]]-based [[electronic music]] artist, credited with pushing forward the genres of [[techno music|techno]], [[ambient music|ambient]], [[Acid (electronic music)|acid]], and [[drum and bass]]. He has been described as &quot;the most inventive and influential figure in contemporary electronic music&quot; ([http://www.guardian.co.uk/friday_review/story/0,3605,563163,00.html]).
35550
35551 ==Biography==
35552 Richard David James was born to [[Wales|Welsh]] parents Lorna and Derek James in [[1971]] in [[Limerick, Ireland]]. James spent his childhood in [[Cornwall, United Kingdom]]. As a teenager, he became a [[DJ]] and [[musician]] on the local [[rave party|rave]] scene, taking on the [[moniker]] &quot;Aphex Twin&quot;. James formed the [[Rephlex Records]] label in [[1991]] with his friend [[Grant Wilson-Claridge]] and released his first records on this label, as well as [[Mighty Force]] and [[R&amp;S Records]] of [[Belgium]]. After success with his early work, James relocated to [[London]] and released a slew of albums and [[EP (format)|EPs]] on the [[Warp Records]] label, under a bewildering set of aliases (from AFX and Polygon Window to the lesser known Gak and Power Pill).
35553
35554 In [[1996]], he began releasing more material composed on computers, and embraced a more [[drum and bass]] sound mixed with a nostalgic childhood theme and strange computer generated acid lines. The early adoption of [[Native Instruments]]' softsynthesizers predated the later popularity of using computers to make music. The late 1990s saw his music become more popular and mainstream, as he released two singles, &quot;Come to Daddy&quot;, and &quot;Windowlicker&quot;, which were shown on [[MTV]] and the covers of music magazines including [[NME]].
35555
35556 [[Image:Aphex Twin logo.png|frame|right|The Aphex Twin Logo, present on most Aphex Twin/AFX releases.]]
35557
35558 In [[2001]] Aphex Twin released his most personal album yet, ''[[drukqs]]'', a 2-CD album which featured [[prepared piano]] songs under the influence of [[Erik Satie]] and [[John Cage]]. Also included were abrasive, fast, and meticulously programmed computer-made songs. The level of detail and artistry was so high, that reviewers and fans complained that the music was less in the style of innovative pop music, and more about detailed beautiful and personal musical art. ''[[drukqs]]'' is perhaps Richard's most controversial album to date; the album lacked the novelty found in his other albums, so reviewers guessed this album was released as a contract breaker with Warp Records - a credible guess, as James' next big release came out on his own Rephlex label. It is also rumored that the album drukqs was released as it was because he had almost all of these songs on a creative jukebox that he forgot and left on a plane, and in fear of all of the tracks being leaked to the internet, its release was rushed as to avoid this.
35559
35560 In late 2004, rumours of James' return to a more [[acid techno]] based sound were realised with the ''[[Analord]]'' series. For these records, James used his extensive collection of [[Roland Corporation|Roland]] [[drum machine]]s which he bought when they were still at bargain prices. Also he used one of the rarest, and most desirable [[synthesizer]]s of his generation, the [http://www.soundonsound.com/sos/feb99/articles/syntonfenix883.htm Synton Fenix], and the notoriously difficult to program [[Roland MC-4]] [[sequencer]] (a sequencer with a reputation for excellent timing), as well as the infamous [[Roland TB-303]] for his trademark acid melodies.
35561
35562 Apart from music, Richard D. James is a talented [[photography|photographer]], having done his own artwork direction for many of his albums. On the &quot;Windowlicker&quot; single, James hid a picture of his face (created most likely with [http://www.uisoftware.com/MetaSynth/index.html Metasynth]) in the second track (commonly referred to as &quot;[Formula]&quot;, &quot;[Symbol]&quot;, or &quot;[Equation]&quot;), which can be seen in a [http://www.wired.com/news/culture/0,1284,52426,00.html spectral] [http://www.bastwood.com/aphex.php analysis] of the track. The picture illustrates his famous toothy, evil grin.
35563
35564 ===Aphex Twin's influences===
35565
35566 James has stated in numerous interviews that he has no musical influences other than himself. [http://www.guardian.co.uk/friday_review/story/0,3605,563163,00.html] He claims to have listened rarely to songs on the [[radio]] as a child and that he is unable to read [[Musical notation|sheet music]].
35567
35568 Conversely, James has said that he has listened to many bands and artists for inspiration and sampling (notably [[Pink Floyd]] and [[Led Zeppelin]] for their [[Break (music)|breaks]] (used as break beats), but he has also expressed appreciation for [[The Fall (band)|The Fall]]). He signed fellow musicans and personal friends Tom &quot;[[Squarepusher]]&quot; Jenkinson and Mike Paradinas ([[Âĩ-ziq]]) to his [[Rephlex Records|Rephlex]] record label, as well as [[Luke Vibert]].
35569
35570 Other debated influences include:
35571
35572 &lt;!--Please keep list alphabetical--&gt;
35573 * [[808 State]] for whom he has done remix work.
35574 * [[John Cage]] and his [[prepared piano]] technique (itself inspired by [[Henry Cowell]] and [[Erik Satie]] independently) in the piano pieces on ''Drukqs''
35575 * [[Coil (band)|Coil]]
35576 * [[Tod Dockstader]] An electronic musician who worked with tape, mangling sounds into music of the frequency and dynamics spectrum.
35577 * [[Mike Dred]] Acid Techno pioneer and [[Techno]] [[Electroacoustic]] hybrid pioneer (together with Peter Green) on Dred's &quot;Machine Codes&quot; label. James is quoted as saying that he listened to Dred &amp; Green's ''Virtual Farmer'' LP 21 times in a row when he first heard it.
35578 * [[Brian Eno]] pioneer of ambient music, and for the artwork of his ambient records.
35579 * [[Larry Heard]] (One song on ''Analord 02'' is called Laricheard, an obvious [[pun]] on the names Larry Heard and Richard, as the song resembles Mr. Fingers/Larry Heard track &quot;Amnesia&quot;.)
35580 * [[Kraftwerk]] and their electropop styles.
35581 * Kevin 'Master Reese' Saunderson
35582 * [[Derrick May]] Techno pioneer.
35583 * [[Joe Meek]], especially ''I Heard A New World'' album of this pioneering 1960s UK producer.
35584 * [[Erik Satie]] whose melodic style was borrowed on ''Drukqs''.
35585 * [[Squarepusher]] and [[Luke Vibert]] for their extreme versions of drum and bass.
35586
35587 ===Influence of Aphex Twin on others===
35588 Fans and journalists coined the genre names [[intelligent dance music|IDM]] and [[drill and bass]] to describe Aphex Twin's novel approach to dance music. Richard's own Rephlex Records label, which he co-owns with [[Grant Wilson-Claridge]] prefers the term &quot;Braindance&quot;.
35589
35590 These labels have proven useful for upcoming artists looking to find a genre name for their own music, influenced by Aphex Twin and Warp Records. In Aphex Twin's words on the 'Intelligent Dance Music' label: &quot;I just think it's really funny to have terms like that. It's basically saying 'this is intelligent and everything else is stupid.' It's really nasty to everyone else's music. (laughs) It makes me laugh, things like that. I don't use names. I just say that I like something or I don't.&quot;
35591
35592 Aphex Twin tends to distance himself from rock/pop music, yet he has still had an influence on the rock bands like [[Radiohead]], [[Nine Inch Nails]] and [[Peace Burial at Sea]]. Aphex Twin dismissed going on tour with Radiohead: &quot;I wouldn't play with them since I don't like them.&quot;[http://www.kludgemagazine.com/interviews.php?id=82]
35593
35594 ==Aphex Twin's press==
35595 Aphex Twin press interviews are generally entertaining, eccentric, and confusing.
35596
35597 Aphex Twin has a reputation for lying in interviews, which he has [http://www.guardian.co.uk/friday_review/story/0,3605,563163,00.html admitted] to the Guardian newspaper. It is now been confirmed that Richard does own a tank (actually a 1950s armoured scout car, the [[Daimler]] Ferret Mark 3), a [[submarine]] bought from Russia, composing ambient techno at age 13 (contradicting most music history), having &quot;over 100 hours&quot; of unreleased music (including songs on his [[answering machine]] that could be wiped away by leaving a message), being able to incorporate [[lucid dreaming]] into the process of making music.
35598 He lives in a converted bank in SE16 London, which was formerly the Bank of Cyprus and then HSBC.
35599
35600 It has now been confirmed by Richard`s close friends that he has built his own synthesizers and samplers from scratch in his early years. Richard once built a sampler box for his degree in microelectronics, and a photograph and article of it was taken for a UK electronic music magazine Future music. Richard is experienced in electronics and electricity, and has modified and [[circuit bending|circuit bent]] his equipment from a young age.
35601
35602 He has made his own software to compose with, including algorithmic processes which automatically generate beats and melodies.
35603
35604 [[Image:Richard_d_james_album_cover.jpg|frame|right|The cover to the ''[[Richard D. James Album]]''.]]
35605
35606 == Discography under Aphex Twin ==
35607 ===Albums===
35608 * ''[[Selected Ambient Works 85-92]]'' ([[1992]])
35609 * ''[[Selected Ambient Works Volume II]]'' ([[1994]])
35610 * ''[[I Care Because You Do|...I Care Because You Do]]'' ([[1995]])
35611 * ''[[Richard D. James Album]]'' ([[1996]])
35612 * ''[[Drukqs]]'' ([[2001]])
35613 * ''[[Analord|Chosen Lords]]'' ([[2006]])
35614
35615 ===EPs and Singles===
35616 * ''[[Digeridoo (single)|Digeridoo]]'' ([[1992]])
35617 * ''[[Xylem Tube EP]]'' ([[1992]])
35618 * ''[[On]]/On Remixes'' ([[1993]])
35619 * ''[[Ventolin (music)|Ventolin]]/Ventolin Remixes'' [[EP (format)|EP]] ([[1995]])
35620 * ''[[Donkey Rhubarb (single)|Donkey Rhubarb]]'' ([[1995]])
35621 * ''[[Girl/Boy EP]]'' (1996)
35622 * ''[[Come to Daddy]] [[EP (format)|EP]]'' ([[1997]])
35623 * ''[[Windowlicker]]'' ([[1999]])
35624 * ''Analord 10'' in the ''[[Analord]]'' Series (2004)
35625
35626 ===Promos and Compilations===
35627 * ''Words &amp; Music'' (1994) (Interview and tracks from ''[[Selected Ambient Works Volume II]]'')
35628 * ''[[Classics (Aphex Twin album)|Classics]]'' (1995) (Compilation of early singles, rare and live tracks)
35629 * ''51/13 Singles Collection'' (1996) ([[Australia]] and [[Japan]] -only release)
35630 * ''Cock 10/54 Cymru beats'' ([[drukqs]] promo)
35631 * ''[[26 Mixes for Cash]]'' ([[2003]]), Compilation of material &quot;remixed&quot; for other artists (plus four original tracks)
35632 * ''2 Mixes on a 12&quot; for Cash'' (2003), a ''[[26 Mixes for Cash|26 Mixes]]'' promo
35633 * ''Falling Free, Curve Remix'' (2005), a ''[[26 Mixes for Cash|26 Mixes]]'' LP
35634
35635 == Discography under various aliases ==
35636 '''AFX'''
35637 * ''[[Analogue Bubblebath]]'' ([[1991]])
35638 * ''[[Analogue Bubblebath 2]]'' (1992)
35639 * ''[[Analogue Bubblebath 3]]'' ([[1993]])
35640 * ''[[Analogue Bubblebath 4]]'' (1994)
35641 * ''[[Analogue Bubblebath 5]]'' (1995 unreleased)
35642 * ''[[Analogue Bubblebath 3.1]]'' (1997)
35643 * ''[[Hangable Auto Bulb]]'' (1995 EP, 2005 CD)
35644 * ''[[Hangable Auto Bulb|Hangable Auto Bulb 2]]'' (1995 EP, 2005 CD)
35645 * ''2 Remixes By AFX'' (2001)
35646 * ''Smojphace EP'' (2003)
35647 * &quot;Mangle 11 (Circuit Bent V.I.P. Mix)&quot; (appears on ''Rephlexions'' compilation album (2003))
35648 * ''[[Analord]]'' (EP series, mostly as AFX) (2005)
35649 * ''AFX/[[LFO (British group)|LFO]]'' (split 12&quot; between AFX/LFO) (2005) &lt;!--http://www.warprecords.com/?mart=WAP195--&gt;
35650
35651 '''Bradley Strider'''
35652 * ''Bradley's Beat'' (1991)/(1995 re-issue)
35653 * ''Bradley's Robot'' (1993)
35654
35655 '''Caustic Window'''
35656 * ''Joyrex J4'' (1992)
35657 * ''Joyrex J5'' (1992)
35658 * ''Joyrex J9'' (1993)
35659 * ''CAT 023'' (unreleased, only 4 copies pressed)
35660 * ''[[Compilation (album)|Compilation]]'' ([[1998]])
35661
35662 '''Gak'''
35663 * ''GAK'' (1994)
35664
35665 '''[[Universal Indicator (music)|Universal Indicator]]''' series with [[Mike Dred]]:
35666 * Universal Indicator: ''Red'' ([[1992]])
35667 * Universal Indicator: ''Green'' ([[1993]])
35668 * Universal Indicator &quot;Blue&quot; ([[1992]]) &amp; &quot;Yellow&quot; ([[1992]]) are by [[Mike Dred]]
35669
35670 '''Polygon Window'''
35671 * ''[[(Surfing On Sine Waves)]]'' (1993, re-released 2001)
35672 * ''(Quoth)'' (1993)
35673
35674 '''Power Pill'''
35675 * ''Pac-Man'' (1992)
35676
35677 '''Q-Chastic'''
35678 * ''Q-Chastic EP'' (1992 unreleased)
35679
35680 '''Various others'''
35681 * ''[[Melodies From Mars]]'' (1995, this is an unreleased RDJ album that was given to friends at Rephlex and Warp Records on C-90 cassettes) This release supposedly includes selections from over 200 tracks James offered video game companies to use as soundtracks.
35682 * With [[Squarepusher]], contributed &quot;Freeman Hardy &amp; Willis Acid&quot; to the [[Warp Records|Warp]] compilation ''WAP100''.
35683 * As &quot;Rich&quot; of &quot;Mike and Rich&quot; on the album ''[[Mike &amp; Rich]]'' (&quot;Mike&quot; being [[Mike Paradinas]], also known as ''Âĩ-ziq'')
35684 * A remixed version of ''afx237 v7'' from the album ''drukqs'' was used as the soundtrack to the short film &quot;[[Rubber Johnny]]&quot;, directed by [[Chris Cunningham]].
35685 * The AFX logo was featured in the video games '[[Worms Armageddon]]' and '[[Worms World Party]]'.
35686 * &quot;The Diceman&quot; - Polygon Window (Track 1) - Artificial Intelligence - (Warp 6) - Compilation released by Warp Records in 1992
35687 * ''[[Acoustica: Alarm Will Sound Performs Aphex Twin]]'' (2005), performed by [[Alarm Will Sound]]
35688
35689 == See also ==
35690 * [[Snare Rush]]
35691 * [[Rephlex Records]]
35692 * [[Warp Records]]
35693
35694 == External links ==
35695 * [http://xltronic.com/discography/artist/1/aphex-twin Complete Aphex Twin discography] at xltronic.com
35696 * [http://xltronic.com/nostalgia/aphextwin.nu/v4/ The Aphex Twin Community] at xltronic.com
35697 * [http://www.discogs.com/artist/Aphex+Twin Aphex Twin discography] at [[Discogs]]
35698 * [http://cl4.org/music/lyrics/aphex.php Complete Aphex Twin lyrics] at CL4.org
35699 * [http://dmoz.org/Arts/Music/Bands_and_Artists/A/Aphex_Twin/ Aphex Twin links] at [[Open Directory Project]]
35700 * [http://www.bastwood.com/aphex.php The Aphex Face] - [[spectrogram]] screenshots of spectral analyses, including that of &quot;Windowlicker&quot;
35701
35702 [[Category:Electronic musicians|Aphex Twin]]
35703 [[Category:IDM musicians|Aphex Twin]]
35704 [[Category:Remixers|Aphex Twin]]
35705 [[Category:Cornish people]]
35706 [[Category:1971 births|Aphex Twin]]
35707 [[Category:Living people|Aphex Twin]]
35708
35709 &lt;!-- In other languages, alphabetically by language (not code) name --&gt;
35710
35711 [[da:Aphex Twin]]
35712 [[de:Aphex Twin]]
35713 [[es:Aphex Twin]]
35714 [[fr:Aphex Twin]]
35715 [[hu:Aphex Twin]]
35716 [[nl:Aphex Twin]]
35717 [[he:אפקס טווין]]
35718 [[ja:エイフェック゚ãƒģツイãƒŗ]]
35719 [[pl:Aphex Twin]]
35720 [[ru:АŅ„ĐĩĐēŅ ĐĸвиĐŊ]]
35721 [[simple:Aphex Twin]]
35722 [[fi:Richard D. James]]
35723 [[sv:Aphex Twin]]</text>
35724 </revision>
35725 </page>
35726 <page>
35727 <title>Alfred Nobel</title>
35728 <id>851</id>
35729 <revision>
35730 <id>41383827</id>
35731 <timestamp>2006-02-26T23:55:10Z</timestamp>
35732 <contributor>
35733 <ip>68.0.192.101</ip>
35734 </contributor>
35735 <comment>/* Personal background */</comment>
35736 <text xml:space="preserve">[[Image:AlfredNobel.jpg|thumb|200px|Alfred Nobel]]
35737
35738 {{Audio|sv-Alfred_Nobel.ogg|'''Alfred Bernhard Nobel'''}} ([[October 21]], [[1833]], [[Stockholm]], [[Sweden]] &amp;ndash; [[December 10]], [[1896]], [[San Remo, Italy]]) was a [[Sweden|Swedish]] chemist, engineer, pacifist, innovator, armaments manufacturer and the [[inventor]] of [[dynamite]]. He owned [[Bofors]], a major armaments manufacturer, that he had redirected from its previous role as an iron and steel mill. In his last will, he used his enormous fortune to institute the [[Nobel Prize]]s. The [[synthetic element]] [[Nobelium]] was named after him.
35739
35740 ==Personal background==
35741 Alfred Nobel, a descendant of the 17th century scientist, [[Olaus Rudbeck]] (1630-1702), was the third son of [[Immanuel Nobel]] (1801-1872). Born in [[Stockholm]], he went with his family at an early age to [[Saint Petersburg|St. Petersburg]], where his father (who had invented modern [[plywood]]) started a [[naval mine|&quot;torpedo&quot;]] works. In 1859 this was left to the care of the second son, [[Ludvig Nobel|Ludvig Emmanuel]] (1831-1888), by whom it was greatly enlarged, and Alfred, returning to Sweden with his father after the bankruptcy of their family business, devoted himself to the study of [[explosives]], and especially to the safe manufacture and use of [[nitroglycerine]] (discovered in 1847 by [[Ascanio Sobrero]], one of his fellow-students under [[ThÊophile-Jules Pelouze]] at the [[University of Torino]]). Several explosions were reported at their family-owned factory in [[Heleneborg, Sweden|Heleneborg]], and a disastrous one in 1864 killed Alfred's younger brother Emil and several other workers.
35742
35743 Less well known is that Alfred Nobel was also a playwright. His only play, ''[[Nemesis (Nobel)|Nemesis]]'', a prose tragedy in four acts about [[Beatrice Cenci]], partly inspired by [[Percy Bysshe Shelley]]'s blank verse tragedy in five acts [[The Cenci]], was printed when he was dying, and the whole stock except for three copies was destroyed immediately after his death, being regarded as scandalous and blasphemous. The first surviving edition (bilingual Swedish-[[Esperanto]]) was published in Sweden in 2003. The play has not yet (May 2003) been translated into any language other than Esperanto.
35744
35745 Alfred Nobel is buried in the [[Norra begravningsplatsen]] in [[Stockholm]].
35746
35747 == Dynamite ==
35748 Nobel found that when [[nitroglycerin]] was incorporated in an absorbent inert substance like [[diatomaceous earth|kieselguhr]] (diatomaceous earth) it became safer and more convenient to manipulate, and this mixture he [[patent]]ed in 1867 as [[dynamite]].
35749
35750 He next combined nitroglycerin with another high explosive, [[gun-cotton]], and obtained a transparent, jelly-like substance, which was a still more powerful explosive than dynamite. [[Gelignite|Blasting gelatin]], as it was called, was patented in 1876, and was followed by a host of similar combinations, modified by the addition of [[potassium nitrate]], wood-pulp and various other substances.
35751
35752 Some years later Nobel produced [[ballistite]], one of the earliest of the nitroglycerin [[smokeless gunpowder]]s, containing in its latest forms about equal parts of gun-cotton and nitroglycerin. This powder was a precursor of [[cordite]], and Nobel's claim that his patent covered the latter was the occasion of vigorously contested law-suits between him and the [[United Kingdom|British]] Government in 1894 and 1895. Cordite also consists of nitroglycerin and gun-cotton, but the form of the latter which its inventors wished to use was the most highly nitrated variety, which is not soluble in mixtures of [[diethyl ether|ether]] and [[ethanol|alcohol]], whereas Nobel contemplated using a less nitrated form, which is soluble in such mixtures. The question was complicated by the fact that it is in practice impossible to prepare either of these two forms without admixture of the other; eventually the courts decided against Nobel. Cordite became a mainstay munition of the British empire throughout the late 19th and early 20th century.
35753
35754 From the manufacture of dynamite and other explosives, and from the exploitation of the [[Baky|Baku]] oil-fields, in the development of which he and his brothers, Ludvig and Robert Hjalmar (1829-1896), took a leading part, he amassed an immense fortune.
35755
35756 ==Armaments Manufacturer==
35757 A less well remembered aspect of his life was his role in setting up a major armaments manufacturer, [[Bofors]] Defence AB. He was Bofors most famous owner, and owned the company from 1894 until his death in December of 1896. He had the key role in reshaping this iron manufacturer to a modern cannon manufacturer and chemical industry.
35758
35759 Bofors went on to become a major supplier of howitzers, cannons and field guns to armies around the world, including the USA and many Third-World dictatorships.
35760
35761 == The Prizes ==
35762
35763 The erroneous publication in 1888 of a [[List of premature obituaries|premature obituary]] of Nobel by a French newspaper, condemning his invention of dynamite, is said to have made him decide to leave a better legacy to the world after his death.
35764
35765 On [[November 27]], [[1895]] at the Swedish-Norwegian Club in [[Paris]], Nobel signed his last will and testament and set aside the bulk of his estate to establish the [[Nobel Prize]]s, to be awarded annually without distinction of nationality. He died of a [[stroke]] on [[December 10]], [[1896]] at [[San Remo]], [[Italy]]. The amount set aside for the Nobel Prize foundation was 31 million kronor.
35766
35767 The first three of these prizes are for eminence in [[Nobel Prize in Physics|physical science]], in [[Nobel Prize in Chemistry|chemistry]] and in [[Nobel Prize in Physiology or Medicine|medical science or physiology]]; the fourth is for the most remarkable [[Nobel Prize for Literature|literary work]] &quot;in an ideal direction&quot; and [[Nobel Peace Prize|the fifth]] is to be given to the person or society that renders the greatest service to the cause of international brother/sisterhood, in the suppression or reduction of standing armies, or in the establishment or furtherance of [[peace]] congresses.
35768
35769 The formulation about the literary prize, &quot;in an ideal direction&quot; (Swedish ''i idealisk riktning''), is cryptic and has caused much consternation. For many years, the Swedish Academy interpreted &quot;ideal&quot; as &quot;idealistic&quot; (in Swedish ''idealistisk''), and used it as a pretext to not give the prize to important but less [[Romanticism|romantic]] authors, such as [[Henrik Ibsen]], [[August Strindberg]] and [[Leo Tolstoy]]. This interpretation has been revised, and the prize given to, for example, [[Dario Fo]] and [[JosÊ Saramago]], who definitely do not belong to the camp of literary idealism.
35770
35771 When reading ''Nemesis'' in its original Swedish and looking at his own philosophical and literary standpoint, it seems possible that his intention might have been rather the opposite of that first believed - that the prize should be given to authors who fight for their ideals ''against'' such authorities as God, Church and State.
35772
35773 There was also quite a lot of room for interpretation by the bodies he had named for deciding on the physical sciences and chemistry prizes, given that he had not consulted them before making the will. In his one-page testament he stipulated that the money should go to discoveries or inventions in the physical sciences and to discoveries or improvements in chemistry. He had opened the door to technological awards, but he had not left instructions on how to do the split between science and technology. Since the deciding bodies he had chosen in these domains were more concerned with science than technology it is not surprising that the prizes went to scientists and not to engineers, technicians or other inventors. In a sense the technological prizes announced recently by the [[World Technology Network]] are an indirect (and thus not funded by the Nobel foundation) continuation of the wishes of Nobel, as he set them out in his testament.
35774
35775 In 2001, his great-grandnephew, Peter, asked the Bank of Sweden to differentiate its award to economists given &quot;in Alfred Nobel's memory&quot; from the five other awards. This has caused much controversy whether the prize for [[Economics]] is actually a &quot;Nobel Prize&quot; (see [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel]]).
35776
35777 ==Nobel Prize rumors==
35778 * There is no Nobel Prize for mathematics. A common legend states that Nobel decided against a prize in mathematics because a woman he proposed to (or his wife, or his mistress) rejected him or cheated on him with a famous mathematician, often claimed to be [[GÃļsta Mittag-Leffler]]. There is no historical evidence to support the story, and Nobel was never married.
35779
35780 == References ==
35781 *[[1911 EncyclopÃĻdia Britannica]]
35782 * SchÃŧck, H, and Sohlman, R., (1929). The Life of Alfred Nobel. London: William Heineman Ltd.
35783 * [http://www.dprix.com/biblio/nobel/nobel.html Alfred Nobel US Patent No 78,317, dated May 26, 1868]
35784
35785 == External links ==
35786 *[http://www.nobel.se/nobel/alfred-nobel/index.html Alfred Nobel - Man behind the Prizes]
35787 *[http://www.nobel.no/eng_com_will1.html Biography at the Norwegian Nobel Institute]
35788 *[http://nobelprize.org// Nobelprize.org]
35789 *[http://www.chabad.org/article.asp?AID=271383 The Man who Changed his Life after Reading his Obituary]
35790
35791 {{NobelPrizes}}
35792
35793 [[Category:1833 births|Nobel, Alfred]]
35794 [[Category:1896 deaths|Nobel, Alfred]]
35795 [[Category:Swedish inventors|Nobel, Alfred]]
35796 [[Category:Swedish businesspeople|Nobel, Alfred]]
35797 [[Category:Nobel Prize|Nobel, Alfred]]
35798 [[Category:Stockholmians|Nobel, Alfred]]
35799 [[Category:Premature obituaries|Nobel, Alfred]]
35800
35801 {{Link FA|id}}
35802
35803 [[als:Alfred Nobel]]
35804 [[ang:Ælfred Nobel]]
35805 [[ar:ØŖŲ„ŲØąŲŠØ¯ Ų†ŲˆØ¨Ų„]]
35806 [[bg:АĐģŅ„Ņ€ĐĩĐ´ НобĐĩĐģ]]
35807 [[zh-min-nan:Alfred Nobel]]
35808 [[be:АĐģŅŒŅ„Ņ€ŅĐ´ НобĐĩĐģŅŒ]]
35809 [[bs:Alfred Nobel]]
35810 [[ca:Alfred Nobel]]
35811 [[cs:Alfred Nobel]]
35812 [[cy:Alfred Nobel]]
35813 [[da:Alfred Nobel]]
35814 [[de:Alfred Nobel]]
35815 [[et:Alfred Nobel]]
35816 [[el:ΆÎģĪ†ĪÎĩÎŊĪ„ ΝĪŒÎŧĪ€ÎĩÎģ]]
35817 [[es:Alfred Nobel]]
35818 [[eo:Alfred NOBEL]]
35819 [[eu:Alfred Nobel]]
35820 [[fa:ØĸŲ„ŲØąØ¯ Ų†ŲˆØ¨Ų„]]
35821 [[fr:Alfred Nobel]]
35822 [[fy:Alfred Nobel]]
35823 [[ga:Alfred Nobel]]
35824 [[gl:Alfred Nobel]]
35825 [[ko:ė•Œí”„레드 노벨]]
35826 [[hr:Alfred Nobel]]
35827 [[io:Alfred Nobel]]
35828 [[id:Alfred Nobel]]
35829 [[it:Alfred Nobel]]
35830 [[he:אלפרד נובל]]
35831 [[lv:Alfrēds Nobels]]
35832 [[lt:Alfredas Nobelis]]
35833 [[hu:Alfred Nobel]]
35834 [[nl:Alfred Bernhard Nobel]]
35835 [[ja:ã‚ĸãƒĢフãƒŦッドãƒģノãƒŧベãƒĢ]]
35836 [[no:Alfred Nobel]]
35837 [[nn:Alfred Nobel]]
35838 [[pl:Alfred Nobel]]
35839 [[pt:Alfred Nobel]]
35840 [[ro:Alfred Nobel]]
35841 [[ru:НобĐĩĐģŅŒ, АĐģŅŒŅ„Ņ€ĐĩĐ´ БĐĩŅ€ĐŊŅ…Đ°Ņ€Đ´]]
35842 [[sq:Alfred Nobel]]
35843 [[scn:Alfred Nobel]]
35844 [[simple:Alfred Nobel]]
35845 [[sk:Alfred Nobel]]
35846 [[sl:Alfred Nobel]]
35847 [[sr:АĐģŅ„Ņ€ĐĩĐ´ НобĐĩĐģ]]
35848 [[su:Alfred Nobel]]
35849 [[fi:Alfred Nobel]]
35850 [[sv:Alfred Nobel]]
35851 [[vi:Alfred Nobel]]
35852 [[tr:Alfred Nobel]]
35853 [[uk:НобĐĩĐģŅŒ АĐģŅŒŅ„Ņ€ĐĩĐ´ БĐĩŅ€ĐŊĐ°Ņ€Đ´]]
35854 [[zh:é˜ŋ尔åŧ—é›ˇåžˇÂˇč¯ēč´å°”]]</text>
35855 </revision>
35856 </page>
35857 <page>
35858 <title>Alexander Graham Bell</title>
35859 <id>852</id>
35860 <revision>
35861 <id>42085266</id>
35862 <timestamp>2006-03-03T18:56:34Z</timestamp>
35863 <contributor>
35864 <username>Antandrus</username>
35865 <id>57658</id>
35866 </contributor>
35867 <minor />
35868 <comment>Reverted edits by [[Special:Contributions/38.139.36.119|38.139.36.119]] ([[User talk:38.139.36.119|talk]]) to last version by RexNL</comment>
35869 <text xml:space="preserve">{{Infobox Celebrity
35870 | name = Alexander Graham Bell
35871 | image = Alexander Graham Bell.jpg
35872 | caption =
35873 | birth_date = [[March 3]], [[1847]]
35874 | birth_place = [[Edinburgh]], [[Scotland]]
35875 | death_date = [[August 2]], [[1922]]
35876 | death_place = [[Baddeck, Nova Scotia|Baddeck]], [[Canada]]
35877 | occupation = [[Scientist]] and [[inventor]].
35878 | salary =
35879 | networth =
35880 | website =
35881 | footnotes =
35882 }}
35883 '''Alexander Graham Bell''' ([[March 3]], [[1847]] &amp;ndash; [[August 2]], [[1922]]) was a [[Canada|Canadian]] and [[Scotland|Scottish]]-[[United States|American]] [[scientist]] and [[inventor]]. Today, he is still widely considered to be the inventor of the [[telephone]], although this matter has become [[Invention of the telephone#Controversy|controversial]], with a number of people claiming that [[Antonio Meucci]] was the 'real' inventor and others holding out for [[Elisha Gray]], the founder of the [[Western Electric]] Manufacturing Company. In addition to his work in [[telecommunications]] technology, he was responsible for important advances in [[aviation]] and [[hydrofoil]] technology.
35884
35885 ==Biography==
35886 Born '''Alexander Bell''' in [[Edinburgh]], he later adopted the middle name ''Graham'' out of admiration for Alexander Graham, a family friend. Many called him &quot;the father of the Deaf.&quot; This title is somewhat ironic due to his belief in the practice of Eugenics. He hoped to one day eradicate deafness from the population.
35887
35888 His family was associated with the teaching of [[elocution]]: his grandfather in [[London]], his uncle in [[Dublin]], and his father, [[Alexander Melville Bell]], in Edinburgh, were all professed elocutionists. The latter has published a variety of works on the subject, several of which are well known, especially his treatise on [[Visible Speech]], which appeared in Edinburgh in 1868. In this he explains his method of instructing [[deaf mutes]], by means of their [[eyesight]], how to articulate words, and also how to read what other persons are saying by the motions of their [[lip]]s.
35889
35890 Alexander Graham Bell was educated at the [[Royal High School]] of Edinburgh, from which he graduated at the age of 13. At the age of 16 he secured a position as a pupil-teacher of elocution and music in [[Weston House Academy]], at [[Elgin, Moray|Elgin]], [[Moray]], Scotland. The next year he spent at the [[University of Edinburgh]]. He was graduated from University College London.
35891
35892 From 1866 to 1867, he was an instructor at [[Somersetshire College]] at [[Bath, England|Bath]], [[Somerset]], [[England]].
35893
35894 While still in Scotland he is said to have turned his attention to the science of [[acoustics]], with a view to ameliorate the deafness of his mother.
35895
35896 In 1870, at the age of 23, he [[emigrated]] with his family to [[Canada]] where they settled at [[Brantford]]. Before he left Scotland, Bell had turned his attention to [[telephony]], and in Canada he continued an interest in communication machines. He designed a piano which could transmit its music to a distance by means of electricity. In 1873, he accompanied his father to [[Montreal]], Canada, where he was employed in teaching the system of visible speech. The elder Bell was invited to introduce the system into a large day-school for mutes at [[Boston, Massachusetts|Boston]], but he declined the post in favor of his son, who became Professor of Vocal Physiology and Elocution at [[Boston University]]'s School of Oratory.
35897
35898 [[Image:1876 Bell Speaking into Telephone.jpg|thumb|Bell speaking into prototype model of the telephone]]
35899 At [[Boston University]] he continued his research in the same field, and endeavored to produce a telephone which would not only send musical notes, but articulate speech. With financing from his American father-in-law, on [[March 7]], [[1876]], the [[United States Patent and Trademark Office|U.S. Patent Office]] granted him [[Patent]] Number 174,465 covering &quot;the method of, and apparatus for, transmitting vocal or other sounds telegraphically ... by causing electrical undulations, similar in form to the vibrations of the air accompanying the said vocal or other sound&quot;, the [[telephone]].
35900
35901 After obtaining the patent for the telephone, Bell continued his many experiments in communication, which culminated in the invention of the photophone-transmission of sound on a beam of [[light]] &amp;mdash; a precursor of today's [[fiber optics|optical fiber]] systems. He also worked in medical research and invented techniques for teaching speech to the deaf. The range of Bell's inventive genius is represented only in part by the eighteen patents granted in his name alone and the twelve he shared with his collaborators. These included fourteen for the telephone and [[Telegraphy|telegraph]], four for the [[photophone]], one for the [[phonograph]], five for aerial vehicles, four for hydroairplanes, and two for a [[selenium]] cell.
35902
35903 Bell had many great ideas that are now real inventions. During his Volta Laboratory period, Bell and his associates considered impressing a magnetic field on a record, as a means of reproducing sound. Although the trio briefly experimented with the concept, they were unable to develop a workable prototype. They abandoned the idea, never realizing they had glimpsed a basic principle which would one day find its application in the tape recorder, the computer, and the CD-ROM.
35904
35905 Bell's own home used a primitive form of air conditioning, in which fans blew currents of air across great blocks of ice. He also anticipated modern concerns with fuel shortages and industrial pollution. Methane gas, he reasoned, could be produced from the waste of farms and factories. At his [[Canada|Canadian]] estate in [[Beinn Bhreagh, Nova Scotia|Beinn Bhreagh]], [[Nova Scotia]], he experimented with composting toilets and devices to capture water from the atmosphere. In a magazine interview published shortly before his death, he reflected on the possibility of using solar panels to heat houses.
35906
35907 In 1882, he became a [[naturalized citizen]] of the United States. In 1888, he was one of the founding members of the [[National Geographic Society]] and became its second president. He was the recipient of many honors. The [[France|French Government]] conferred on him the decoration of the [[LÊgion d'honneur]] (Legion of Honor), the [[AcadÊmie française]] bestowed on him the [[Volta Prize]] of 50,000 francs, the [[Royal Society of Arts]] in London awarded him the [[Albert medal]] in 1902, and the University of [[WÃŧrzburg]], [[Bavaria]], granted him a Ph.D. He was awarded the [[AIEE]]'s [[Edison Medal]] in 1914 for &quot;For meritorious achievement in the invention of the telephone.&quot;
35908
35909 Bell married Mabel Hubbard, who was one of his pupils at Boston University, as well as a deaf-mute, on [[July 11]], [[1877]]. His invention of the telephone was actually a device he was trying to create that would allow him to communicate with his wife and his deaf mother. He died at Beinn Bhreagh, located on [[Nova Scotia]]'s [[Cape Breton Island]] near the village of [[Baddeck, Nova Scotia|Baddeck]], in 1922 and is buried alongside his wife atop Beinn Bhreagh mountain overlooking [[Bras d'Or Lake]]. He was survived by two of their four children.
35910
35911 Bell was listed among the [[100 Greatest Britons]], [[The Greatest American|the 100 Greatest Americans]] and in the top ten [[The Greatest Canadian|Greatest Canadians]], the only person to be on more than one list.
35912
35913 ====Bell and decibel====
35914 The ''bel'' (B) is a unit of measurement invented by [[Bell Labs]] and named after Bell. The bel was too large for everyday use, so the [[decibel]] (dB), equal to 0.1 B, became more commonly used.
35915 The dB is commonly used as a unit for measuring sound intensity.
35916
35917 ===The photophone===
35918 Another of Bell's inventions was the [[photophone]], a device enabling the transmission of sound over a beam of light, which he developed together with [[Charles Sumner Tainter]]. The device employed light-sensitive cells of crystalline [[selenium]], which has the property that its [[electrical resistance]] varies inversely with the illumination (i.e., the resistance is higher when the material is in the dark, and lower when it is lighted). The basic principle was to modulate a beam of light directed at a receiver made of crystalline selenium, to which a [[telephone]] was attached. The modulation was done either by means of a vibrating mirror, or a rotating disk periodically obscuring the light beam.
35919
35920 This idea was by no means new. Selenium had been discovered by [[JÃļns Jakob Berzelius]] in 1817, and the peculiar properties of crystalline or granulate selenium were discovered by [[Willoughby Smith]] in 1873. In 1878, one writer with the initials J.F.W. from [[Kew]] described such an arrangement in ''[[Nature (journal)|Nature]]'' in a column appearing on [[June 13]], asking the readers whether any experiments in that direction had already been done. In his paper on the photophone, Bell credited one [[A. C. Browne]] of [[London]] with the independent discovery in 1878&amp;mdash;the same year Bell became aware of the idea. Bell and Tainter, however, were apparently the first to perform a successful experiment, by no means any easy task, as they even had to produce the selenium cells with the desired resistance characteristics themselves.
35921
35922 In one experiment in [[Washington, D.C.]] the sender and the receiver were placed on different buildings some 700 [[Foot (unit of length)|feet]] (213 [[metre]]s) apart. The sender consisted of a mirror directing sunlight onto the mouthpiece, where the light beam was modulated by a vibrating mirror, focused by a [[optical device|lens]] and directed at the receiver, which was simply a [[parabolic]] reflector with the selenium cells in the [[focus]] and the telephone attached. With this setup, Bell and Tainter succeeded to communicate clearly.
35923
35924 The photophone was [[patent]]ed on [[December 18]] [[1880]], but the quality of communication remained poor and the research was not pursued by Bell.
35925
35926 ===Metal detector===
35927 Bell is also credited with the invention of the [[metal detector]] in 1881. The device was hurriedly put together in an attempt to find the bullet in the body of [[President of the United States|U.S. President]] [[James Garfield]]. The metal detector worked, but didn't find the bullet because the metal bedframe the President was lying on confused the instrument. Bell gave a full account of his experiments in a paper read before the [[American Association for the Advancement of Science]] in August 1882. Though unsuccessful in its first incarnation, this achievement would eventually change the nature of physical security.
35928
35929 ===Experimental aircraft===
35930 Bell was also interested in [[aircraft]] and was a supporter of [[aerospace engineering]] research through the [[Aerial Experiment Association]]. The Association was officially formed at Baddeck, Nova Scotia in October 1907 at the suggestion of Mrs. Mabel Bell and with her financial support. It was headed by the inventor himself. The founding members were four young men, American [[Glenn Curtiss|Glenn H. Curtiss]], a motorcycle manufacturer who would later be awarded the Scientific American Trophy for the first official one-kilometre flight in the Western hemisphere and later be world-renowned as an airplane manufacturer; [[Frederick W. &quot;Casey&quot; Baldwin]], the first Canadian and first British subject to pilot a public flight in [[Hammondsport, New York]]; J.A.D. McCurdy; and Lieutenant [[Thomas Selfridge]], an official observer of the U.S. government. One of the project's inventions, the [[aileron]], is a standard component of aircraft today. (Note that the aileron was also invented independently by [[Robert Esnault-Pelterie]].)
35931
35932 In 1909, Bell's ''[[Silver Dart]]'' made the first controlled powered flight in Canada. However, a series of Canadian flights failed to interest the Canadian military in developing the airplane.
35933
35934 ===The hydrofoil===
35935 The March 1906 ''[[Scientific American]]'' article by American [[hydrofoil]] pioneer William E. Meacham explained the basic principle of hydrofoils. Bell considered the invention of the [[Hydrofoil|hydroplane]] as a very significant achievement. Based on information gained from that article he began to sketch concepts of what is now called a hydrofoil boat.
35936
35937 Bell and Casey Baldwin began hydrofoil experimentation in the summer of 1908 as a possible aid to airplane takeoff from water. Baldwin studied the work of the Italian inventor [[Enrico Forlanini]] and began testing models. This led him and Bell to the development of practical hydrofoil watercraft.
35938
35939 During his world tour of 1910&amp;ndash;1911 Bell and Baldwin met with Forlanini in Italy. They had rides in the Forlanini hydrofoil boat over Lake Maggiore. Baldwin described it as being as smooth as flying. On returning to Baddeck a number of designs were tried culminating in the HD-4, using Renault engines. A top speed of 54 miles per hour was achieved, with rapid acceleration, good stability and steering, and the ability to take waves without difficulty.
35940 Bell's report to the navy permitted him to obtain two 350 [[horsepower]] (260 [[Watt|kW]]) engines in July 1919. On [[September 9]] [[1919]] the HD-4 set a world's marine speed record of 70.86 miles per hour. This record stood for ten years.
35941
35942 ==Eugenics==
35943 Along with many very prominent thinkers and scientists of the time, Bell was connected with the [[eugenics]] movement in the United States. From 1912 until 1918 he was the chairman of the board of scientific advisors to the [[Eugenics Record Office]] associated with [[Cold Spring Harbor Laboratory]] in [[New York]], and regularly attended meetings. In 1921 he was the honorary president of the [[Second International Congress of Eugenics]] held under the auspices of the [[American Museum of Natural History]] in New York. Organizations such as these advocated passing laws (with success in some states) that established the [[compulsory sterilization]] of people deemed to be, as Bell called them, a &quot;defective variety of the human race&quot;.
35944
35945 Much of his thoughts about people he considered defective centered on the deaf because of his long contact with them in relation to his work in [[deaf education]]. In addition to advocating sterilization of the deaf, Bell wished to prohibit deaf teachers from being allowed to teach in schools for the deaf, he worked to outlaw the marriage of deaf individuals to one another, and he was an ardent supporter of [[oralism]] over [[manualism]]. His avowed goal was to eradicate the language and culture of the deaf so as to force them to integrate into the hearing culture for their own long-term benefit and for the benefit of society at large. Although this attitude is widely seen as paternalistic and arrogant today, it was accepted in that era.
35946
35947 Although he supported what many would consider harsh and inhumane policies today, he was not unkind to deaf individuals who proved his theories of oralism. He was a personal and longtime friend of [[Helen Keller]], and his wife Mabel was deaf, though none of their children were. Bell was well known as a kindly father and loving family man who took great pleasure playing with his many grandchildren.
35948
35949 == Tribute ==
35950
35951 In the early 1970s, UK Rock Group [[The Sweet]] recorded a tribute to Bell and the telephone, suitably titled &quot;Alexander Graham Bell&quot;. The song tells a fictional account of the invention, in which Bell devises the telephone so he can talk to his girlfriend who lives on the other side of the United States from him. The song reached the top 40 in the UK and went on to sell over one million recordings world-wide.
35952
35953 ==External links==
35954 {{wikiquote}}{{commons|Alexander Graham Bell}}
35955 *[http://www.biographi.ca/EN/ShowBio.asp?BioId=42027 Biography at the ''Dictionary of Canadian Biography Online'']
35956 *[http://bell.uccb.ns.ca/ Alexander Graham Bell Institute]
35957 *[http://www.bellhomestead.ca/ Bell Homestead, National Historic Site]
35958 *[http://www.alexanderbell.com/ Alexander Bell.com - Telecom Pioneers by Phonebook of the World.com]
35959 *[http://histv2.free.fr/bell/bell1.htm Bell's speech] before the American Association for the Advancement of Science in [[Boston, Massachusetts|Boston]] on [[August 27]], [[1880]], presenting the [[photophone]]. Very clear description. Published as &quot;On the Production and Reproduction of Sound by Light&quot; in the ''American Journal of Sciences'', Third Series, vol. '''XX''', #118, October 1880, pp. 305 - 324; and as &quot;[[Selenium]] and the Photophone&quot; in ''[[Nature (journal)|Nature]]'', September 1880.
35960 *[http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PALL&amp;p=1&amp;u=/netahtml/srchnum.htm&amp;r=1&amp;f=G&amp;l=50&amp;s1=174465.WKU.&amp;OS=PN/174465&amp;RS=PN/174465 United States Patent and Trademark Office], patent US174465 for the telephone.
35961 *[http://memory.loc.gov/ammem/bellhtml/bellhome.html Alexander Graham Bell family papers] Online version at the Library of Congress comprises a selection of 4,695 items (totaling about 51,500 images) containing correspondence, scientific notebooks, journals, blueprints, articles, and photographs documenting Bell invention of the telephone and his involvement in the first telephone company, his family life, his interest in the education of the deaf, and his aeronautical and other scientific research.
35962
35963 &lt;!-- Categorization --&gt;
35964 [[Category:1847 births|Bell, Alexander Graham]]
35965 [[Category:1922 deaths|Bell, Alexander Graham]]
35966 [[Category:American eugenicists|Bell, Alexander Graham]]
35967 [[Category:American entrepreneurs|Bell, Alexander Graham]]
35968 [[Category:American inventors|Bell, Alexander Graham]]
35969 [[Category:American physicists|Bell, Alexander Graham]]
35970 [[Category:Autodidacts|Bell, Alexander Graham]]
35971 [[Category:British eugenicists|Bell, Alexander Graham]]
35972 [[Category:Canadian inventors|Bell, Alexander Graham]]
35973 [[Category:Canadian physicists|Bell, Alexander Graham]]
35974 [[Category:Canadian eugenicists|Bell, Alexander Graham]]
35975 [[Category:Canadian businesspeople|Bell, Alexander Graham]]
35976 [[Category:Edinburghers|Bell, Alexander Graham]]
35977 [[Category:History of Scotland|Bell, Alexander Graham]]
35978 [[Category:Legion of Honor recipients|Bell, Alexander Graham]]
35979 [[Category:Moray|Bell, Alexander Graham]]
35980 [[Category:Naturalized citizens of the United States|Bell, Alexander Graham]]
35981 [[Category:People from Massachusetts|Bell, Alexander Graham]]
35982 [[Category:People from Victoria County, Nova Scotia|Bell, Alexander Graham]]
35983 [[Category:Scottish-Americans|Bell, Alexander Graham]]
35984 [[Category:Scottish business people|Bell, Alexander Graham]]
35985 [[Category:Scottish physicists|Bell, Alexander Graham]]
35986 [[Category:Scottish inventors|Bell, Alexander Graham]]
35987 [[Category:Bath and North East Somerset|Bell, Alexander Graham]]
35988 [[Category:Telecommunications history|Bell, Alexander Graham]]
35989 [[Category:Unitarians|Bell, Alexander Graham]]
35990 [[Category:UCL alumni|Bell, Alexander Graham]]
35991 [[Category:University of Edinburgh alumni|Bell, Alexander Graham]]
35992
35993 &lt;!-- Localization --&gt;
35994
35995 [[ar:اŲ„ŲƒØŗŲ†Ø¯Øą ØēØąØ§Ų‡Ø§Ų… بŲŠŲ„]]
35996 [[bs:Alexander Graham Bell]]
35997 [[ca:Alexander Graham Bell]]
35998 [[cs:Alexander Graham Bell]]
35999 [[da:Alexander Graham Bell]]
36000 [[de:Alexander Graham Bell]]
36001 [[es:Alexander Graham Bell]]
36002 [[eo:Alexander Graham BELL]]
36003 [[fr:Alexandre Graham Bell]]
36004 [[fy:Alexander Graham Bell]]
36005 [[hr:Alexander Graham Bell]]
36006 [[id:Alexander Graham Bell]]
36007 [[it:Alexander Graham Bell]]
36008 [[he:אלכסנדר גרהם בל]]
36009 [[lt:Aleksandras Grehemas Belas]]
36010 [[mr:ā¤…ā¤˛āĨ‡ā¤•āĨā¤ā¤žā¤‚ā¤Ąā¤° ā¤—āĨā¤°āĨ…ā¤šāĨ…ā¤Ž ā¤ŦāĨ‡ā¤˛]]
36011 [[nl:Alexander Graham Bell]]
36012 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗダãƒŧãƒģグナハムãƒģベãƒĢ]]
36013 [[ko:ė•Œë ‰ė‚°ë” ꡸레ė´ė—„ 벨]]
36014 [[no:Alexander Graham Bell]]
36015 [[pl:Alexander Graham Bell]]
36016 [[pt:Alexander Graham Bell]]
36017 [[ro:Alexander Graham Bell]]
36018 [[ru:БĐĩĐģĐģ, АĐģĐĩĐēŅĐ°ĐŊĐ´ĐĩŅ€ ГŅ€ŅĐŧ]]
36019 [[sco:Alexander Graham Bell]]
36020 [[sh:Alexander Graham Bell]]
36021 [[simple:Alexander Graham Bell]]
36022 [[sk:Alexander Graham Bell]]
36023 [[sr:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ ГŅ€Đ°Ņ…Đ°Đŧ БĐĩĐģ]]
36024 [[fi:Alexander Graham Bell]]
36025 [[sv:Alexander Graham Bell]]
36026 [[sw:Alexander Graham Bell]]
36027 [[ta:āŽ…āŽ˛ā¯†āŽ•ā¯āŽ¸āŽžāŽŖā¯āŽŸāŽ°ā¯ āŽ•āŽŋāŽ°āŽšāŽžāŽŽā¯ āŽĒā¯†āŽ˛ā¯]]
36028 [[th:ā¸­āš€ā¸Ĩāš‡ā¸ā¸‹ā¸˛ā¸™āš€ā¸”ā¸­ā¸ŖāšŒ āš€ā¸ā¸Ŗāšā¸Žā¸Ą āš€ā¸šā¸Ĩā¸ĨāšŒ]]
36029 [[tr:Alexander Graham Bell]]
36030 [[uk:БĐĩĐģĐģ АĐģĐĩĐēŅĐ°ĐŊĐ´ĐĩŅ€ ŌŅ€ĐĩŅ…ĐĩĐŧ]]
36031 [[zh:äēšåŽ†åąąå¤§Âˇæ ŧæ‹‰æą‰å§†Âˇč´å°”]]</text>
36032 </revision>
36033 </page>
36034 <page>
36035 <title>AmhrÃĄn na bhFiann</title>
36036 <id>853</id>
36037 <revision>
36038 <id>40627918</id>
36039 <timestamp>2006-02-21T22:53:04Z</timestamp>
36040 <contributor>
36041 <ip>87.80.100.62</ip>
36042 </contributor>
36043 <comment>/* Lyrics */</comment>
36044 <text xml:space="preserve">'''''AmhrÃĄn na bhFiann'''''&lt;sup&gt;1&lt;/sup&gt; is the [[national anthem]] of the [[Republic of Ireland]]. Although usually sung in the [[Irish language]], a translation of the original, it is also known by the English-language title, '''''A Soldier's Song''''', as well as '''The National Anthem of Ireland''' ('''AmhrÃĄn NÃĄisiÃēnta na hÉireann'''). The lyrics of the song are by [[Peadar Kearney]] and the music by both Kearney and [[Patrick Heeney]]. It was composed in [[1907]] and was first published in ''[[Irish Freedom]]'' in [[1912]]. The [[Irish language]] version of the original was the work of [[Bulmer Hobson]].
36045
36046 The song is regarded by many [[Irish nationalism|nationalists]] as the national anthem of the whole of [[Ireland]], and it is therefore sung, for example, at [[Gaelic Athletic Association]] matches held anywhere on the island. [[Unionists (Ireland)|Unionist]]s, however, reject this use of ''AmhrÃĄn na bhFiann'', and at international games played by the all-Ireland [[Ireland national rugby union team|Irish Rugby Football Union]] team the song ''[[Ireland's Call]]'' is sung instead of, or (in the [[Republic of Ireland]]) as well as, ''AmhrÃĄn na bhFiann''.
36047
36048 ==History==
36049 ''AmhrÃĄn na bhFiann'' was relatively unknown until it was sung by rebels in the [[General Post Office (Dublin)|General Post Office]] (GPO) during the [[Easter Rising]] of [[1916]], and afterwards in British internment camps. The song became the official state anthem in [[1926]] when it replaced the unofficial anthem, ''[[God Save Ireland]]''.
36050
36051 ''[[God Save the Queen|God Save the King]]'' was the official anthem of the [[United Kingdom of Great Britain and Ireland]] until the independent [[Irish Free State]] was established in [[1922]]. The continued use of ''God Save the King'' by some Irish people caused embarrassment to the new Irish state and, on one famous occasion, [[James McNeill|Governor-General James McNeill]] refused to attend a public function in [[Trinity College, Dublin|Trinity College]] when he discovered that the university intended playing the anthem during his visit. Even after the adoption of ''AmhrÃĄn na bhFiann'' as the official anthem of the Irish Free State in July [[1926]], a minority continued to sing the British anthem, and to pray for the King and Queen in religious ceremonies, for a number of years.
36052
36053 In [[1934]], the Irish state acquired the copyright of the song for the sum of ÂŖ1,200.[http://www.irishstatutebook.ie/gen121934a.html]
36054
36055 Controversy also surrounds the change in the wording of ''AmhrÃĄn na bhFiann'' over the years. In the original translation, the first line read as ''Sinne Laochra Gaedheal'' (literally &quot;we the heroes of Ireland&quot;). This has since been replaced by ''Sinne Fianna FÃĄil'', which to some people is evidence that the anthem has been hijacked by the [[Fianna FÃĄil]] party.[http://www.ireland.com/newspaper/letters/2005/1101/]
36056
36057 In recent years, a number of Irish newspapers and columnists have proposed replacing ''AmhrÃĄn na bhFiann'' with a new national anthem, arguing that the current wording is excessively militant and anti-[[United Kingdom|British]]. Others have argued that the melody is difficult for bands to play. Problems have sometimes been witnessed at international sporting events, where either the entire song (not just the chorus that constitutes the anthem) has been played (as occurred, for example, at the [[1984 Summer Olympics|Los Angeles Olympics]]) or the right part has been played but at the wrong speed, as occurred at the [[2000 Summer Olympics|Sydney Olympics]] in [[2000]].
36058
36059 Some have proposed that the anthem be replaced with the Irish Rugby Football Union's song, ''Ireland's Call''. The suggestion has also been made that, as occurred in [[Germany]] after [[World War II]], the government might change the words of the anthem while keeping the original melody.
36060
36061 ==Lyrics==
36062 The Irish national anthem consists of the chorus only of ''AmhrÃĄn na bhFiann'', and is almost always sung in Irish. The first two lines of the anthem and the last two, played together, form the Irish ''Presidential Salute'', which is played when the [[President of Ireland]] attends official events. The chorus of ''AmhrÃĄn na bhFiann'', as used for the anthem, is given below.
36063
36064 ===Irish version===
36065 :Sinne Fianna FÃĄil
36066 :AtÃĄ faoi gheall ag Éirinn,
36067 :Buíon dÃĄr slua
36068 :Thar toinn do rÃĄinig chughainn,
36069 :Faoi mhÃŗid bheith saor.
36070 :Sean-tír ÃĄr sinsear feasta
36071 :Ní fhÃĄgfar faoin tiorÃĄn nÃĄ faoin trÃĄill
36072 :Anocht a thÊam sa bhearna baoil,
36073 :Le gean ar Ghaeil chun bÃĄis nÃŗ saoil
36074 :Le gunna scrÊach faoi lÃĄmhach na bpilÊar
36075 :Seo libh canaig AmhrÃĄn na bhFiann.
36076
36077 ===Phonetic version===
36078 :shin-na fee-in-na fall
36079 :a-thaw fay yeol egg erin
36080 :bween dar slew
36081 :harr thin the raw ne gooin
36082 :Fway vawid veh sair
36083 :shawn-tier awr shinshir fasta
36084 :nee-owg fur fay teer-awn naw feign trawl
36085 :an nocht a hame saw varna vwail
36086 :lay gown owr gwale cunn boss no sale
36087 :le gunna sh-rake fay law buck naw bell air
36088 :shull liv con-ig arawn naveen
36089
36090 ===English version===
36091 :Soldiers are we
36092 :whose lives are pledged to Ireland;
36093 :Some have come
36094 :from a land beyond the wave.
36095 :Sworn to be free,
36096 :No more our ancient sireland
36097 :Shall shelter the despot or the slave.
36098 :Tonight we man the ''bearna baoil'' &lt;sup&gt;2&lt;/sup&gt;
36099 :In Erin's cause, come woe or weal;
36100 :'Mid cannon's roar and rifles' peal,
36101 :We'll chant a soldier's song.
36102
36103 ==Complete Lyrics==
36104 The Following is the full lyrics of AmhrÃĄn na bhFiann, in Irish and English.
36105
36106 ===Irish lyrics===
36107 :Seo dhibh a chÃĄirde duan Óglaigh,
36108 :CathrÊimeach briomhar ceolmhar,
36109 :Ár dtinte cnÃĄmh go buacach tÃĄid,
36110 :'S an spÊir go min rÊaltogach
36111 :Is fonnmhar faobhrach sinn chun gleo
36112 :'S go tiÃēnmhar glÊ roimh thíocht do'n lÃŗ
36113 :FÊ chiÃēnas chaomh na hoiche ar seol:
36114 :Seo libh canaídh AmhrÃĄn na bhFiann.
36115
36116 :CurfÃĄ:
36117 :Sinne Fianna FÃĄil
36118 :A tÃĄ fÊ gheall ag Éirinn,
36119 :buion dÃĄr slua
36120 :Thar toinn do rÃĄinig chugainn,
36121 :FÊ mhÃŗid bheith saor.
36122 :Sean tír ÃĄr sinsir feasta
36123 :Ní fhagfar fÊ'n tiorÃĄn nÃĄ fÊ'n trÃĄil
36124 :Anocht a thÊam sa bhearna bhaoil,
36125 :Le gean ar Ghaeil chun bÃĄis nÃŗ saoil
36126 :Le guna screach fÊ lÃĄmhach na bpilÊar
36127 :Seo libh canaídh AmhrÃĄn na bhFiann.
36128
36129 :Cois bÃĄnta rÊidhe, ar ÃĄrdaibh slÊibhe,
36130 :Ba bhuachach ÃĄr sinsir romhainn,
36131 :Ag lÃĄmhach go trÊan fÊ'n sÃĄr-bhrat sÊin
36132 :TÃĄ thuas sa ghaoith go seolta
36133 :Ba dhÃēchas riamh d'ÃĄr gcine chÃĄidh
36134 :Gan iompÃĄil siar Ãŗ imirt ÃĄir,
36135 :'S ag siÃēl mar iad i gcoinne nÃĄmhad
36136 :Seo libh, canaídh AmhrÃĄn na bhFiann.
36137
36138 :CurfÃĄ
36139
36140 :A bhuíon nÃĄch fann d'fhuil Ghaeil is Gall,
36141 :Sin breacadh lae na saoirse,
36142 :Ta scÊimhle 's scanradh i gcroíthe namhad,
36143 :Roimh ranna laochra ÃĄr dtire.
36144 :Ár dtinte is trÊith gan sprÊach anois,
36145 :Sin luisne ghlÊ san spÊir anoir,
36146 :'S an bíobha i raon na bpilÊar agaibh:
36147 :Seo libh, canaídh AmhrÃĄn na bhFiann.
36148
36149 :CurfÃĄ
36150
36151 ===English lyrics===
36152 :We'll sing a song, a soldier's song,
36153 :With cheering rousing chorus,
36154 :As round our blazing fires we throng,
36155 :The starry heavens o'er us;
36156 :Impatient for the coming fight,
36157 :And as we wait the morning's light,
36158 :Here in the silence of the night,
36159 :We'll chant a soldier's song.
36160
36161 :Chorus:
36162 :Soldiers are we
36163 :whose lives are pledged to Ireland;
36164 :Some have come
36165 :from a land beyond the wave.
36166 :Sworn to be free,
36167 :No more our ancient sire land
36168 :Shall shelter the despot or the slave.
36169 :Tonight we man the gap of danger
36170 :In Erin's cause, come woe or weal
36171 :'Mid cannons' roar and rifles peal,
36172 :We'll chant a soldier's song.
36173
36174 :In valley green, on towering crag,
36175 :Our fathers fought before us,
36176 :And conquered 'neath the same old flag
36177 :That's proudly floating o'er us.
36178 :We're children of a fighting race,
36179 :That never yet has known disgrace,
36180 :And as we march, the foe to face,
36181 :We'll chant a soldier's song.
36182
36183 :Chorus
36184
36185 :Sons of the Gael! Men of the Pale!
36186 :The long watched day is breaking;
36187 :The serried ranks of Inisfail
36188 :Shall set the Tyrant quaking.
36189 :Our camp fires now are burning low;
36190 :See in the east a silv'ry glow,
36191 :Out yonder waits the Saxon foe,
36192 :So chant a soldier's song.
36193
36194 :Chorus
36195
36196 ==Footnote==
36197 # ''AmhrÃĄn na bhFiann'' is pronounced &quot;ow-rawn na veean&quot;
36198 # Meaning &quot;gap of danger&quot; and pronounced &quot;vair-na vwail&quot; ''(See article on [[Battle of New Ross 1798#Attack|Battle of New Ross]] for explanation of origin)
36199
36200 ==External links==
36201 {{wikisource}}
36202 *[http://www.taoiseach.gov.ie/index.asp?docID=792]Text of National Anthem published on Department of Taoiseach website
36203 *[http://www.irishroots.org/aoh/anthem.htm] Complete Lyrics
36204
36205 ===Media files===
36206 * [http://www.lengua-translations.de/anthems/ireland.mid MIDI file] 7.6 KB simple sequence
36207 * [http://www.taoiseach.gov.ie/getFile.asp?FC_ID=288&amp;docID=241 MP3 file] 1 MB anthem played by the Army Band
36208 * [http://thetvroom.com/video-4/BE-AR-RTE1-ANTHEM-94-02.rm RealMedia file] 3.9 MB audio-visual as used on [[Radio Telefís Éireann|RTE]] television in the 1980s/90s
36209
36210 [[Category:National anthems]]
36211 [[Category:Republic of Ireland]]
36212 [[Category:Irish songs]]
36213
36214 [[cs:IrskÃĄ hymna]]
36215 [[cy:AmhrÃĄn na bhFiann]]
36216 [[de:Nationalhymne der Republik Irland]]
36217 [[es:AmhrÃĄn na bhFiann]]
36218 [[fr:AmhrÃĄn na bhFiann]]
36219 [[ga:AmhrÃĄn na bhFiann]]
36220 [[it:AmhrÃĄn na bhFiann]]
36221 [[he:המנון אירלנד]]
36222 [[hu:Ír himnusz]]
36223 [[nl:AmhrÃĄn na bhFiann]]
36224 [[ja:ã‚ĸイãƒĢナãƒŗドぎå›Ŋ歌]]
36225 [[nn:AmhrÃĄn na bhFiann]]
36226 [[pl:Hymn Irlandii]]
36227 [[pt:Hino nacional da Irlanda]]
36228 [[ru:ГиĐŧĐŊ ИŅ€ĐģĐ°ĐŊдии]]
36229 [[sr:ĐĨиĐŧĐŊĐ° ИŅ€ŅĐēĐĩ]]
36230 [[fi:AmhrÃĄn na bhFiann]]
36231 [[sv:AmhrÃĄn na bhFiann]]
36232 [[tr:Ä°rlanda Ulusal MarÅŸÄą]]</text>
36233 </revision>
36234 </page>
36235 <page>
36236 <title>Anatolia</title>
36237 <id>854</id>
36238 <revision>
36239 <id>41799125</id>
36240 <timestamp>2006-03-01T20:55:01Z</timestamp>
36241 <contributor>
36242 <username>OrphanBot</username>
36243 <id>621721</id>
36244 </contributor>
36245 <comment>Removing image with no copyright information. Such images that are older than seven days may be deleted at any time.</comment>
36246 <text xml:space="preserve">[[Image:Anatolia composite NASA.png|thumb|200px|right|Asia Minor lies east of the [[Bosporus]], between the Black Sea and the Mediterranean.]]
36247
36248 '''Anatolia''' ([[Turkish language|Turkish]]: &quot;Anadolu&quot;,[[Greek language|Greek]]: &quot;AÎŊÎąĪ„ÎŋÎģÎŽ&quot; ''Αnatolē'' or ΑÎŊÎąĪ„ÎŋÎģÎ¯Îą ''AnatolÃŦa'') is a region of [[Southwest Asia]] which corresponds today to the [[Asia]]n portion of [[Turkey]], as opposed to the [[Europe]]an portion, [[Rumelia]]. It means &quot;rising of the sun&quot; or &quot;East&quot;. The Turkish word '''Anadolu''' derives from the original Greek version. It also often called by the [[Latin]] name of '''Asia Minor'''.
36249
36250 Because of its strategic location at the intersection of Asia and [[Europe]], Anatolia has been a cradle for several [[civilization]]s since [[prehistoric]] ages, with [[Neolithic]] settlements such as [[ÇatalhÃļyÃŧk]] (Pottery Neolithic), [[ÇayÃļnÃŧ]] ([[Pre-Pottery Neolithic A]] to pottery Neolithic), [[Nevali Cori]] ([[Pre-Pottery Neolithic B]]), [[Hacilar]] (Pottery Neolithic), [[GÃļbekli Tepe]] ([[Pre-Pottery Neolithic A]]) and [[Mersin]]. The settlement of [[Troy]] starts in the Neolithic and continues forward into the Iron Age.
36251 Major civilizations and peoples that have settled in or conquered Anatolia include the [[Colchians]], [[Hattians]], [[Luwian]]s, [[Hittites]], [[Phrygia]]ns, [[Cimmerian]]s, [[Lydia]]ns, [[Persians]], [[Celt]]s, [[Tabal]]s, [[Meshech]]s, [[Ancient Greece|Greeks]], [[Pelasgians]], [[Armenians]], [[Roman Empire|Romans]], [[Goths]], [[Kurds]], [[Byzantine Empire|Byzantines]], [[Seljuk Turks]], and [[Ottoman Empire|Ottomans]]. These peoples belonged to many varied [[ethnic]] and [[linguistic]] traditions. Through recorded history, Anatolians have spoken both [[Indo-European languages|Indo-European]] and [[Semitic languages|Semitic]] languages, as well as many languages of uncertain affiliation. In fact, given the antiquity of the Indo-European [[Hittite language|Hittite]] and Luwian languages, some scholars have proposed Anatolia as the hypothetical center from which the Indo-European languages have radiated. Other authors have proposed an Anatolian origin for the [[Etruscans]] of ancient [[Italy]].
36252 &lt;!-- Image with unknown copyright status removed: [[Image:Asia Minor Ancient Map.jpg|right|200px|thumb|Asia Minor in Antiquity]] --&gt;
36253 Today the inhabitants of Anatolia are mostly native speakers of the [[Turkish language]], which was introduced with the conquest of Anatolia by [[Turkic peoples]] and the rise of the [[Seljuk Empire]] in the [[11th century]]. However, Anatolia remained multi-ethnic until the early [[20th century]] (see [[Rise of Nationalism under the Ottoman Empire]]). The Turks in [[Thrace]] were forced to leave their homes and settle in Anatolia during the [[Balkan Wars]]. The last population exchange, as result of the [[Treaty of Lausanne]], between Turkey and Greece eliminated the majority of Turks in Greece and Greeks in Turkey. A significant [[Kurdish people|Kurdish]] ethnic and linguistic minority exists in the south eastern regions, while [[Armenian people|Armenians]] have a waning presence in the northeast and in cities.
36254
36255 == States of Anatolia ==
36256 Anatolia has been the center of many great states throughout history. The first known state was built by Hittites.
36257 {{Template:History_of_Anatolia}}
36258 {|style=&quot;border:1px solid #8888aa; background-color:#f7f8ff; padding:2px; font-size:85%;&quot; align=center
36259 | colspan=&quot;3&quot; rowspan=&quot;1&quot; style=&quot;text-align: center; background-color: rgb(204, 153, 51);&quot; | States that existed over the Anatolia
36260 |-
36261 |[[History of Hattians and Hittites|Old Kingdom]]
36262 |[[Ionia]]
36263 |[[Byzantine Empire]]
36264 |-
36265 |[[History of the New Kingdom|New Kingdom]]
36266 |[[Hellenistic Greece]]
36267 |[[Nicaean Empire]]
36268 |-
36269 |[[History of the Neo-Hittite Kingdoms|Neo-Hittite]]
36270 |[[Pergamon]]
36271 |[[Ottoman Empire]]
36272 |-
36273 |[[Urartu]]
36274 |[[Achaemenid Empire|Persian Empire]]
36275 |[[Roman Greece]]
36276 |[[Turkey|Republic of Turkey]]
36277 |}
36278
36279 == Ottoman Rule of Asia Minor after 1885==
36280 After 1885, with the governing reforms of [[Tanzimat]], the control of the Ottoman land in Asia Minor divided into 15 [[vilayet]]s, one [[sanjak]] and one mutersaflik of the vilayet of [[Constantinople]] (both being on the asiatic side of the [[Bosporus]]).
36281
36282 Every vilayet was further divided in a number of sanjaks.
36283
36284 More specifically the political division of Asia Minor in 1915 was as follows;
36285
36286 * Vilayet of [[Izmir]] divided in the sanjaks of [[Manisa]], Izmir, [[Aydin]], [[Denizli]], [[Mentese]]
36287 * Independent vilayet of the [[Dardanelles]]
36288 * Vilayet of [[Bursa Province|Bursa]] divided in the sanjaks of [[Balikesir]], Bursa, Erdogrul, [[Kutahya]], [[Afyon]]
36289 * Vilayet of [[Konya]] divided in the sanjaks of [[Burdur]], [[Hamid abad]], [[Atalya]], Konya, [[Nigde]]
36290 * Vilayet of [[Kastamonu]] divided in the sanjaks of [[Bolu]], [[Cankiri]], Kastamonu, [[Sinop]]
36291 * Vilayet of [[Ankara]] divided in the sanjaks of Ankara, [[Kirsehir]], [[Yozgat]], [[Kayseri]]
36292 * Vilayet of [[Adana]], divided in the sanjaks of Icel([[Mersin]]), Adana, Hozan, Jebel-i-Bereket
36293 * Vilayet of [[Sivas]] divided in the sanjaks of Sivas, [[Tokat]], [[Amasya]], Karahisar-Sarki
36294 * Vilayet of [[Trabzon]] divided in the sanjaks of [[Samsun]], Trabzon, Argiropolis, [[Lazistan]]
36295 * Vilayet of [[Erzurum]]
36296 * Vilayet of [[Bitlis]] divided in the sanjaks of [[Mus]], Ghen, [[Siirt]]
36297 * Vilayet of [[Van]] divided in the sanjaks of Van, [[Hakkari]]
36298 * Vilayet of Mosul divided in the sanjaks of Mosul, Sehrizan, Suleymanih
36299 * Vilayet of Mamure-ul-Azil divided in the sanjak of [[Diyarbakir]] and the mutersaflik of Zor
36300 * Vilayet of Halep divided in the sanjaks of Halep, [[Urfa]], [[Kahramanmaraş|Maras]]
36301 Also the
36302 * Independent mutersaflik of [[Izmit]] and
36303 * the sanjak of [[Uskudar]]
36304
36305 == Ethnic distribution in Asia Minor in the early 20th century (before the [[Treaty of Lausanne]]) ==
36306
36307 Based on French [[census]] files of [[1915]] the total population of Asia Minor (not including [[Eastern Thrace]], the vilayets of the orient &amp; the city of Constantinople) was 10,372,411 persons of all nationalities and religions.
36308
36309 More specifically the distribution of differerent [[ethnic group]]s as per [[Vilayet]] and [[Sanjak]] is as follows;
36310
36311 {| class=&quot;wikitable&quot;
36312 |- style=&quot;background-color:#C9C9C9&quot;
36313
36314 |- style=&quot;background-color:#E9E9E9&quot;
36315 ! Sanjak or Vilayet !! Greeks !! Turks !! Armenians !! Rest !! Total
36316 |-
36317 |'''Sanjak of Uskudar''' || 74,457 || 124,281 || 35,560 || 24,192 || 258,490
36318 |-
36319 |'''Mutersaflik of Izmit''' || 73,134 || 116,949 || 48,635 || 3,615 || 242,333
36320 |- style=&quot;background-color:#E9E9E9&quot;
36321 | '''Vilayet of the Dardanelles''' || 32,830 || 138,902 || 2,336 || &amp;nbsp; || 177,894
36322 |- style=&quot;background-color:#E9E9E9&quot;
36323 |colspan=&quot;7&quot;|'''Vilayet of Izmir''':
36324 |-
36325 | Sanjak of Izmir || 449,044 || 219,494 || 11,395 || &amp;nbsp; || 754,046
36326 |-
36327 | Sanjak of Manisa || 83,625 || 247,778 || 3,960 || &amp;nbsp; ||337,925
36328 |-
36329 | Sanjak of Aydin || 54,633 || 162,554 || 634 || &amp;nbsp; ||219,959
36330 |-
36331 | Sanjak of Mentese || 27,798 || 197,317 || 430 || &amp;nbsp; ||205,457
36332 |-
36333 | Sanjak of Denizli || 7,710 || 113,700 || 0 || &amp;nbsp; ||142,142
36334 |- style=&quot;background-color:#E9E9E9&quot;
36335 |colspan=&quot;7&quot;|'''Vilayet of Bursa''':
36336 |-
36337 | Sanjak of Bursa || 82,503 || 215,492 || 50,809 || &amp;nbsp; ||353,976
36338 |-
36339 | Sanjak of Balikesir || 150,946 || 194,391 || 17,882 || &amp;nbsp; ||239,236
36340 |-
36341 | Sanjak of Kutahya || 16,800 || 244,698 || 5,040 || &amp;nbsp; ||250,938
36342 |-
36343 | Sanjak of Afyon || 1,200 || 291,317 || 8,800 || &amp;nbsp; ||317,017
36344 |-
36345 | Sanjak of Erdogrul (Bilecig) || 26,970 || 246,851 || 7,495 || &amp;nbsp; ||408,957
36346 |- style=&quot;background-color:#E9E9E9&quot;
36347 |colspan=&quot;7&quot;|'''Vilayet of Konya''':
36348 |-
36349 | Sanjak of Konya || 8,589 || 294,191 || 6,900 || &amp;nbsp; ||325,180
36350 |-
36351 | Sanjak of Atalya || 10,253 || 196,087 || 489 || &amp;nbsp; ||207,258
36352 |-
36353 | Sanjak of Burdur || 2,565 || 149,968 || 987 || &amp;nbsp; ||153,565
36354 |-
36355 | Sanjak of Nigde || 55,518 || 174,140 || 753 || &amp;nbsp; ||230,490
36356 |-
36357 | Sanjak of Hamid Abad (Isparta) || 10,096 || 174,337 || 600 || &amp;nbsp; ||185,056
36358 |- style=&quot;background-color:#E9E9E9&quot;
36359 |colspan=&quot;7&quot;|'''Vilayet of Ankara''':
36360 |-
36361 | Sanjak of Ankara || 3,154 || 265,283 || 14,019 || &amp;nbsp; ||283,043
36362 |-
36363 | Sanjak of Kirsehir || 717 || 116,999 || 346 || &amp;nbsp; ||118,062
36364 |-
36365 | Sanjak of Kayseri || 23,201 || 157,331 || 44,985 || &amp;nbsp; ||226,912
36366 |-
36367 | Sanjak of Yozgat || 18,801 || 128,787 || 39,448 || &amp;nbsp; ||194,281
36368 |- style=&quot;background-color:#E9E9E9&quot;
36369 |colspan=&quot;7&quot;|'''Vilayet of Kastamonu''':
36370 |-
36371 | Sanjak of Kastamonu || 10,783 || 334,337 || 1,424 || &amp;nbsp; ||346,552
36372 |-
36373 | Sanjak of Sinop || 7,986 || 319,224 || 507 || &amp;nbsp; ||324,738
36374 |-
36375 | Sanjak of Kankiri || 1,143 || 165,407 || 960 || &amp;nbsp; ||167,510
36376 |-
36377 | Sanjak of Bolu || 5,007 || 119,467 || 314 || &amp;nbsp; ||129,846
36378 |- style=&quot;background-color:#E9E9E9&quot;
36379 |colspan=&quot;7&quot;|'''Vilayet of Sivas''':
36380 |-
36381 | Sanjak of Sivas || 7,702 || 451,214 || 64,070 || &amp;nbsp; ||522,986
36382 |-
36383 | Sanjak of Amasya || 36,739 || 198,000 || 50,600 || &amp;nbsp; ||285,339
36384 |-
36385 | Sanjak of Karahisar-Sarki || 27,761 || 38,500 || 18,046 || &amp;nbsp; ||84,307
36386 |-
36387 | Sanjak of Tokat || 27,174 || 151,800 || 37,919 || &amp;nbsp; ||216,893
36388 |- style=&quot;background-color:#E9E9E9&quot;
36389 |colspan=&quot;7&quot;|'''Vilayet of Trebzon''':
36390 |-
36391 | Sanjak of Trabzon || 154,774 || 404,656 || 26,321 || &amp;nbsp; ||583,751
36392 |-
36393 | Sanjak of Samsun (Djanik) || 136,087 || 233,454 || 22,585 || &amp;nbsp; ||392,126
36394 |-
36395 | Sanjak of Lazistan || 2,924 || 231,885 || 0 || &amp;nbsp; ||234,809
36396 |-
36397 | Sanjak of Argiropolis (Gumus-Haneh) || 59,748 || 87,871 || 1,718 || &amp;nbsp; ||149,337
36398 |}
36399
36400 ==See also==
36401 *[[Hayastan]] (Greater Armenia)
36402 *[[Cilicia]] (Lesser Armenia)
36403 *[[Western Armenia]] (Ottoman Armenia)
36404 *[[Kurdistan]]
36405 *[[Lazistan]]
36406 *[[Pontus]]
36407 *[[Ajaria]]
36408 *[[List of ethnic groups]]
36409 *[[Levant]]
36410 *[[Ancient Near East]]
36411 *[[Middle East]]
36412 *[[History of Ottoman Armenia]]
36413 [[Category:Anatolia| ]]
36414 [[Category:Middle East]]
36415 [[Category:Near East]]
36416
36417 {{Region}}
36418
36419 [[ar:ØŖŲ†Ø§ØļŲˆŲ„]]
36420 [[ast:Anatolia]]
36421 [[bg:МаĐģĐ° АСиŅ]]
36422 [[ca:AnatÃ˛lia]]
36423 [[cs:MalÃĄ Asie]]
36424 [[da:Anatolien]]
36425 [[de:Kleinasien]]
36426 [[et:Anatoolia]]
36427 [[el:ΜιÎēĪÎŦ ΑĪƒÎ¯Îą]]
36428 [[es:Anatolia]]
36429 [[eo:Malgrand-Azio]]
36430 [[fa:ØĸŲ†Ø§ØĒŲˆŲ„ÛŒ]]
36431 [[fr:Anatolie]]
36432 [[gl:Anatolia]]
36433 [[ko:ė†Œė•„ė‹œė•„]]
36434 [[hr:Anatolija]]
36435 [[id:Anatolia]]
36436 [[is:AnatÃŗlía]]
36437 [[it:Anatolia]]
36438 [[he:אסיה הקטנה]]
36439 [[ku:Anatoliya]]
36440 [[la:Asia Minor]]
36441 [[lb:Anatolien]]
36442 [[nl:AnatoliÃĢ]]
36443 [[nds:Anatolien]]
36444 [[ja:ã‚ĸナトãƒĒã‚ĸ半åŗļ]]
36445 [[ka:ანაáƒĸოლია]]
36446 [[no:Anatolia]]
36447 [[pl:Anatolia (Turcja)]]
36448 [[pt:AnatÃŗlia]]
36449 [[ru:МаĐģĐ°Ņ АСиŅ]]
36450 [[simple:Asia Minor]]
36451 [[sl:Anatolija]]
36452 [[fi:Anatolia]]
36453 [[sv:Anatolien]]
36454 [[th:ā¸­ā¸™ā¸˛āš‚ā¸•āš€ā¸Ĩā¸ĩā¸ĸ]]
36455 [[tr:Anadolu]]
36456 [[uk:МаĐģĐ° АСŅ–Ņ]]
36457 [[zh:厉é‚Ŗ托刊äēš]]</text>
36458 </revision>
36459 </page>
36460 <page>
36461 <title>Abiotic</title>
36462 <id>855</id>
36463 <revision>
36464 <id>15899369</id>
36465 <timestamp>2005-03-13T01:44:12Z</timestamp>
36466 <contributor>
36467 <username>Woohookitty</username>
36468 <id>159678</id>
36469 </contributor>
36470 <comment>Fix Double Redirect - [[WP:WS|Please help out by clicking here to fix someone else's Wiki syntax]].</comment>
36471 <text xml:space="preserve">#REDIRECT [[Ecology]]</text>
36472 </revision>
36473 </page>
36474 <page>
36475 <title>Apple Computer</title>
36476 <id>856</id>
36477 <revision>
36478 <id>42159476</id>
36479 <timestamp>2006-03-04T05:21:49Z</timestamp>
36480 <contributor>
36481 <username>Hohohob</username>
36482 <id>354391</id>
36483 </contributor>
36484 <comment>/* Current products */</comment>
36485 <text xml:space="preserve">{{applecomputer}}
36486 &lt;!--Please keep this article focused on the company. Try to refrain from turning this into an article on their products or innovations, except when relevant to the manufacturers. Although not terribly long, any reduction in length that does not hurt content is nice.--&gt;
36487 '''Apple Computer, Inc. '''({{nasdaq|AAPL}} and {{lse|ACP}}) is an [[United States|American]] [[computer]] technology company. Its headquarters are located at 1 [[Infinite Loop (street)|Infinite Loop]], [[Cupertino, California|Cupertino]], [[California]], part of [[Silicon Valley]]. Apple was a major player in the [[personal computer]] revolution in the 1970s.
36488
36489 The [[Apple II]] [[microcomputer]], introduced in 1977, was a hit with home users. In 1983, Apple introduced the first commercial personal computer to use a [[graphical user interface]] (GUI), the [[Apple Lisa|Lisa]]. In 1984, Apple introduced the revolutionary [[Apple Macintosh|Macintosh]]. The Macintosh (commonly called the &quot;Mac&quot;) was the first successful commercial implementation of a GUI, which is now used in all major computers.
36490
36491 Apple is known for its innovative, well-designed hardware and software, such as the [[Apple iPod | iPod]] and the [[iMac]], as well as the well-known [[iTunes]] application (part of the [[iLife]] suite) and [[Mac OS X]], its current [[operating system]].
36492
36493 ==History==
36494 {{main|History of Apple Computer}}
36495
36496
36497 ===1976 to 1980 - The founding of Apple===
36498 Apple Computer was founded in [[Los Gatos, California]] on [[April 1]], [[1976]] by [[Steve Jobs]], [[Steve Wozniak]] and [[Ronald Wayne]], to sell the [[Apple I]] personal computer kit at $666.66. They were hand-built in Jobs' parents' garage, and the Apple I was first shown to the public at the [[Homebrew Computer Club]].
36499
36500 Jobs and Wozniak, (&quot;the two Steves&quot;) had been friends since 1971. Jobs managed to interest Wozniak in assembling a personal computer and selling it. Jobs approached a local computer store, The Byte Shop, who, after Jobs' famous persuasion, ordered fifty units and paid $500 for each unit. Jobs then ordered components from Cramer Electronics, a national electronic parts distributor. Using a variety of methods, including borrowing space from friends and family and selling various items including a [[VW Type 2|Volkswagen Type 2 bus]], Jobs managed to secure the parts needed while Wozniak and another friend, [[Ronald Wayne]], assembled the Apple I. They were delivered in June, and paid for on delivery. Eventually 200 Apple I computers were built.
36501
36502 Note that the original Apple I was actually a motherboard, it was not a full computer as we know it today.
36503
36504 The [[Apple II]] was introduced on [[April 16]], [[1977]] at the first [[West Coast Computer Faire]]. It was popular with home users and was occasionally sold to business users, particularly after the release of the first spreadsheet for any computer called [[VisiCalc]]. (See the timeline for dates of Apple II family model releases&amp;mdash;the 1977 Apple II and its younger siblings, the II Plus, IIe, IIc and IIGS.) But it was a mild success for the small computer company.
36505
36506 By now, Jobs and his partners had a staff of computer designers and a production line. The Apple II was succeeded by the [[Apple III]] in May 1980 as the company struggled to compete against [[IBM]] and [[Microsoft]] in the lucrative business and corporate computing market. The designers of the Apple III were forced to comply with Jobs' request to omit the cooling fan, and this ultimately resulted in thousands of recalled units due to overheating. An updated version was introduced in 1983 but it was also a failure due to bad press and discouraged buyers. Nevertheless, the principals of the company persevered with further innovations and marketing.
36507
36508 Jobs and several other Apple employees including [[Jef Raskin]] visited [[Xerox PARC]] in December 1979, to see the [[Alto (computer)|Alto computer]]. Xerox granted Apple engineers three days of access to the PARC facilities in return for selling them one million dollars in pre-[[IPO]] Apple stock (approximately $18 million net).
36509
36510 ===1981 to 1989 - Lisa and Macintosh===
36511 [[Image:Ad_apple_1984.jpg|left|thumb|250px|The protagonist of Apple's well known [[1984 (television commercial)|1984 ad]], set in a [[dystopia]]n future modeled after the [[Orwellian]] novel [[Nineteen Eighty-Four]].]]
36512 In the early 1980s, IBM and Microsoft continued to gain market share at Apple's expense in the personal computer industry. Using a fundamentally different business model, [[IBM]] marketed an open hardware standard created with the [[IBM PC]], which was bundled with [[Microsoft]]'s [[MS-DOS]] (MicroSoft-Disk Operating System). In 1983, Apple introduced the first [[personal computer]] to be sold to the public with a [[graphical user interface]] (GUI), named the [[Apple Lisa|Lisa]]. Using a GUI, the user communicates with the computer by interacting with icons onscreen that resemble real-world items (folders, documents, images). However, the Lisa was a commercial failure as a result of its high price tag ($9995) and limited software titles.
36513
36514 After the Lisa, Apple began work on a similar but less expensive computer to be called the [[Apple Macintosh|Macintosh]]. It was launched in 1984 with the now famous [[1984 (television commercial)|Super Bowl advertisement]] based on [[George Orwell]]'s novel ''[[1984 (novel)|1984]]''. It was an immediate success, particularly in the world of graphic and communications design, where its [[GUI]] (which was to become the industry standard) and ability to handle large graphic files surpassed anything else on the market. The Macintosh also spawned the concept of [[Apple evangelist|Mac evangelism]] among users, which was pioneered by Apple employee and later Apple Fellow, [[Guy Kawasaki]].
36515
36516 In anticipation of the Macintosh launch, [[Bill Gates]], co-founder and chairman of [[Microsoft]], was given several Macintosh prototypes in 1983 to develop software for the &quot;Mac&quot;. In 1985, Microsoft launched [[Microsoft Windows]], with its own GUI for IBM PCs using many of the elements of the Macintosh OS.
36517
36518 An internal power struggle developed between Jobs and new CEO [[John Sculley]] in 1985. Apple's board of directors sided with Sculley, and Jobs was asked to resign from the company. Jobs then founded [[NeXT]] Inc., a computer company that built machines with futuristic designs and ran the UNIX-derived [[NEXTSTEP|NeXTstep]] operating system. Although powerful, NeXT computers never caught on with buyers, due in part to their high purchase price.
36519
36520 ===1990 to 1993 - PowerBook and decline===
36521 Having learned several painful lessons after introducing the bulky [[Macintosh Portable]] in 1989, Apple turned to industrial designers and adopted a product strategy based in three portable devices. One portable was built by [[Sony]], which had a strong reputation for designing small, durable and functional electronics devices. Sony took the specs of the Mac Portable, put in a smaller two-hour battery, a much smaller (physically) twenty [[megabyte]] [[Hard disk|hard drive]] and a smaller nine-inch [[Liquid crystal display|passive matrix screen]].
36522
36523 Called the [[Powerbook|PowerBook 100]], this landmark product was introduced in 1991 and established the modern form and [[ergonomics|ergonomic]] layout of the [[laptop computer]]. This solidified Apple's reputation as a quality manufacturer, both of desktop and now portable machines. The success of the PowerBook and several other Apple products during this period led to increasing revenue. The [[magazine]] ''[[MacAddict]]'' named the period between 1989 to 1991 the &quot;first golden age&quot; of the Macintosh.
36524
36525 This golden age was not to last. The introduction of [[Microsoft Windows]] presented an interface that many people thought was close enough to the Macintosh in terms of ease of use and overall look and feel. Apple thought that Windows was ''too'' close, and sued [[Microsoft]] for theft of intellectual property.
36526
36527 At about the same time, Apple branched out into consumer electronics. One example of this product diversification was the [[Apple QuickTake]] digital camera (which never caught on). A more famous example was the [[Apple Newton|Newton]], an early [[Personal digital assistant|PDA]] that was introduced in 1993. Though it failed commercially, it defined and launched the new category of computing and was a forerunner and inspiration of devices such as [[BlackBerry]], [[Palm Pilot]] and its descendants-[[PocketPC]]s.
36528
36529 During the 1990s, Apple greatly expanded its computer lineup as well. It offered a multitude of different models, yet it failed to adequately explain to the public why it should choose one model over another.
36530
36531 The costs involved in making such a wide variety of products, coupled with some highly-publicized product recalls and the growing popularity of Microsoft Windows, all lead to the near-bankruptcy of Apple in the mid-to-late 1990s.
36532
36533
36534 === 1994 to 1997 - Attempts at reinvention ===
36535
36536 By the mid-1990s, Apple realized that it had to reinvent the Macintosh in order to stay competitive in the computer world. The needs of both computer users and computer programs were becoming, for a variety of technical reasons, harder for the existing hardware and operating system to address.
36537
36538 In 1994, Apple surprised its loyalists by allying with its long-time competitor IBM and Motorola in the so-called [[AIM alliance]]. This was a bid to create a new computing platform (the [[PowerPC Reference Platform]] or PReP) which would use IBM and [[Motorola]] hardware coupled with Apple's software. The AIM alliance hoped that PReP's performance and Apple's software would leave the PC far behind, thus countering Microsoft, which had become Apple's chief competitor.
36539
36540 Towards this end, Apple tried to recruit other companies that would build PReP-compliant computers. Apple hoped to expand the Mac OS market share by licensing the operating system to these other companies, like Microsoft had promoted DOS and Windows by licensing them to external manufacturers. Only a few companies--notably [[Power Computing]] and [[UMAX]]--agreed to produce these computers. But eventually the licensing program was suspended.
36541
36542 As the first step toward launching the PReP platform, Apple started the [[Power Macintosh]] line in 1994, using IBM's [[PowerPC]] processor. This processor utilized a [[RISC]] architecture, which differed substantially from the Motorola [[68k]] series that had been used by all previous Macs. Apple's OS's were rewritten so that most software for the older Macs could run on the PowerPC series (in [[emulation]]).
36543
36544 Also throughout the mid to late 1990s, Apple tried to improve its operating system's multitasking and memory management. After first attempting to modify its existing code, Apple realized that it would be better to start with an entirely new operating system and then modify it to fit the Macintosh interface. Apple did some preliminary work with IBM towards this goal with the [[Taligent]] project, but that project never produced a replacement operating system. They then investigated using [[Be Incorporated|Be]]'s [[BeOS]], [[NeXT]]'s [[NeXTstep]] OS, and also Microsoft's [[Windows NT]] OS. NeXTstep was chosen, and this supplied the platform for the modern OS X.
36545
36546 On [[February 4]], [[1997]], Apple completed its purchase of NeXT and its NeXTstep operating system, thus bringing Steve Jobs back into Apple. On [[July 9]], [[1997]], [[Gil Amelio]] was ousted as CEO of Apple by the board of directors after overseeing a 12-year record-low stock price and crippling financial losses, despite an outstanding decade of innovation. Jobs stepped in as the interim CEO and began a critical restructuring of the company's product line.
36547
36548 ===1998 to 2005 - New beginnings===
36549 [[Image:Steve Jobs with iMac.jpg|thumb|250px|right|[[Steve Jobs]] introducing the original [[iMac]] computer in 1998.]]
36550 In 1998, a year after Jobs had returned to the company, Apple introduced a new all-in-one Macintosh (echoing the original [[Macintosh 128K]]): the [[iMac]], a new design that eliminated most Apple-standard connections like [[SCSI]] and [[Apple Desktop Bus|ADB]] in favor of two [[Universal Serial Bus|USB]] ports. While technically not impressive (it was aimed at a general market), it featured an innovative new design - its translucent plastic case, originally [[Bondi blue (color)|Bondi Blue]] and [[white]], and later many other colors, is considered an industrial design hallmark of the late-[[1990s|90s]].
36551
36552 The iMac design team was led by Jonathan Ive (who later also designed the iPod). The iMac proved to be phenomenally successful, with 800,000 units sold in 1998, making the company a profit that year of $309 million - Apple's first profitable year since [[Michael Spindler]] took the position of CEO of the company in 1993. The Power Macintosh was redesigned along similar lines, and continues to evolve to this day.
36553
36554 At the [[National Association of Broadcasters]] Apple purchased the Final Cut software from [[Macromedia]], beginning their entry into the [[digital video]] editing market. [[iMovie]] was released in [[1999]], for consumers, and [[Final Cut Pro]] was released for professionals in the same year. Final Cut Pro has gone on to be a significant video editing program. Similarly, in [[2000]], Apple bought [[Astarte]]'s DVDirector software, which morphed into [[iDVD]] (for consumers) and [[DVD Studio Pro]] (for professionals) at the [[Macworld Conference and Expo]] of [[2001]].
36555
36556 In 2001, Apple introduced [[Mac OS X]], the operating system based on NeXT's [[NEXTSTEP|NeXTstep]] and [[BSD]] Unix. Aimed at consumers and professionals alike, Apple claims that OS X marries stability, reliability and security of the [[Unix]] operating system with the ease of a completely overhauled user interface. To aid users in moving their applications from OS 9, the new operating system allowed the use of [[Mac OS 9]] applications through OS X's [[Classic (Mac OS X)|Classic environment]]. Apple's [[Carbon (API)|Carbon]] API also allowed developers to adapt their OS 9 software to use Mac OS X's features with a (claimed) simple re-compile.
36557
36558 [[Image:Applecomputerheadquarters.jpg|left|thumb|200px|Company headquarters on [[Infinite Loop (street)|Infinite Loop]] in [[Cupertino]], [[California]].]]
36559 In May 2001, after much speculation, Apple announced the opening of the [[Apple Store (retail)|Apple retail store]]s, to be located in major U.S. consumer locations. These stores were designed for two purposes: to stem the tide of Apple's declining share of the computer market and to counter a poor record of marketing Apple products by third-party retail outlets.
36560
36561 In late 2001, Apple introduced its first [[iPod]] portable [[digital audio player]], a move that has proven to be phenomenally successful with over 42 million units sold even though it was not originally perceived to be a successful product.&lt;ref&gt;[http://news.bbc.co.uk/2/hi/business/4625262.stm BBC News story on Apple's first quarter 2006 earnings report]&lt;/ref&gt; Combined with a scheme to offer downloadable songs at US 99 cents per song through Apple's [[ITunes Music Store|iTunes Music Store]], there had been over [http://www.apple.com/itunes/1billion/ 1,000,000,000] downloads for iPod players by February 2006&lt;ref&gt;[http://www.apple.com/quicktime/qtv/mwsf06/ Steve Jobs' January 2006 MacWorld keynote address]&lt;/ref&gt;.
36562
36563 In [[2002]], Apple purchased [[Nothing Real]], and their advanced digital compositing application, [[Shake (software)|Shake]], raising Apple's professional commitment even higher. In the same year they also acquired [[Emagic]], and with it, obtained their professional-quality music productivity application, [[Logic Pro|Logic]], which led to the development of their consumer-level [[GarageBand]] application. With [[iPhoto]]'s release in 2002 as well, this completed Apple's collection of consumer and professional level creativity software, with the consumer-level applications being collected together into the [[iLife]] suite.
36564
36565 On March 10, 2005 Apple Computer announced its support for [[Sony]]'s [[Blu-Ray]] technology and joined the [[Blu-ray Disc Association]], or BDA. In a keynote address on [[June 6]], [[2005]], Steve Jobs officially announced that Apple would begin producing Intel-based Macintosh computers beginning in 2006.&lt;ref&gt;Apple press release [http://www.apple.com/pr/library/2005/jun/06intel.html Apple to Use Intel Microprocessors Beginning in 2006]&lt;/ref&gt; Jobs confirmed [[Mac rumors community|rumor]]s that the company had secretly been producing versions of its current operating system [[Mac OS X]] for both PowerPC and Intel processors for the previous five years, and that the transition to Intel processor systems would last until the end of 2007.
36566
36567 Jobs surprised the industry at Macworld 2006 however, by announcing the first Intel based Apple computers would begin selling January 2006 and that the transition would be complete by the end of that same year. Mac OS X is based on [[OPENSTEP]], an operating system originally available for many platforms. Apple's own [[Darwin (operating system)|Darwin]], the [[open source]] underpinnings of OS X, is also compiled for Intel's ''x''86 architecture.&lt;ref&gt;See articles from [http://news.com.com/Apple+shakes+hands+with+Intel/2009-1006_3-5733319.html news.com], [http://www.appleinsider.com/article.php?id=1112 Apple insider], and [http://nytimes.com/2005/06/06/technology/06apple.html The New York Times]&lt;/ref&gt;
36568
36569 With the introduction of the [[Power Mac G5]] in [[June 2003]], Apple abandoned flashy colors in favor of white [[polycarbonate]] for consumer lines such as the iMac and iBook, as well as the educational [[eMac]], and anodized [[aluminum]] or [[titanium]] for professional products like the [[Power Mac G5]], [[PowerBook G4]] and [[MacBook Pro]], as well as the low-cost [[Mac mini]].
36570
36571 [[Image:MacBook.jpg|right|thumb|The new [[MacBook Pro]] is Apple's first consumer laptop with an Intel microprocessor.]]
36572
36573 ===2006 to present - Start of the Intel era===
36574 {{main|Apple Intel transition}}
36575 On [[January 10]], [[2006]], Apple released its first [[Intel]] chip computers, a new [[notebook computer]] known as the [[MacBook Pro]] (a 15.4 inch laptop which replaced the [[PowerBook]] G4 line and offers a 4X speed improvement) and a new (though identical) [[iMac]] with a 2-3 times faster performance increase. Both used Intel's [[Intel Core|Core Duo]] chip technology.
36576
36577 The current operating system, OS X Tiger 10.4(.5), runs natively on the new Intel machines, as do many applications, such as iLife '06. Other applications, such as [[Microsoft Office]] and [[Adobe Photoshop]], compiled for the PowerPC, run in emulation mode, using a technology known as [[Rosetta (software)|Rosetta]].
36578
36579 (see [[Apple Intel transition]] for more information regarding the transition)
36580
36581 The Intel-based machines do not support Classic (as it has not been translated to x86 binaries), so applications that run only in Mac OS 9 and earlier will not run on these machines. All Macintosh product lines are expected to transition to Intel processors by the end of 2006. The Apple online store sold out of 17-inch iMac G5 computers in [[February 2006]], and Apple ended the life of its 15 inch PowerBook G4 on Wednesday the 22nd of February 2006.
36582
36583 The Apple/Intel partnership has coined a new catch-phrase among computer users: &quot;Mactel&quot;, in response to the phrase &quot;[[Wintel]],&quot; an informal moniker that describes all Intel-powered systems running the Microsoft Windows operating system. This moniker has never been used seriously by Apple's PR or exceutives, mainly in use only in Apple fanatic circles.
36584
36585 ==Current products==
36586 [[Image:Ipod 5th Generation white.jpg|thumb|right|The [[Apple iPod | iPod]], shown here, is one of Apple's most successful products. The latest iPod, with a 60 [[gigabyte]] sized hard drive, is capable of playing video.]]
36587
36588 Hardware :
36589
36590 * Power Mac G5
36591 * MacBook Pro
36592 * PowerBook (G4)
36593 * iMac (Intel)
36594 * iMac (G5)
36595 * Mac mini (Intel)
36596 * iBook (G4)
36597 * Xserve
36598
36599 * iPod 5G
36600 * iPod Nano
36601 * Various iPod acessories
36602
36603
36604
36605
36606
36607
36608
36609
36610 Software :
36611
36612 * Mac OS X
36613 * iLife (iPhoto, iMovie, iDVD, iWeb, Garageband)
36614 * iWork (Pages, Keynote)
36615 * Final Cut Pro
36616 * Final Cut Express
36617 * Aperture
36618 * Logic Pro
36619 * Logic Express
36620 * Shake
36621 * Motion
36622 * Etc.
36623
36624 ===Hardware===
36625 Apple introduced the [[Apple Macintosh]] family in 1984 and today makes consumer, professional, and educational computers. The [[Mac mini]] is the company's consumer sub-desktop computer, introduced in January 2005 and designed to motivate [[Microsoft Windows|Windows]] users to switch to the Macintosh platform. The [[iMac]] is a consumer desktop computer that was first introduced by Apple in 1998, and its popularity helped save the company from bankruptcy. Now in its third design iteration, the iMac is similar in concept to the original Macintosh in that the monitor and computer are housed in a single unit. The [[Power Mac G5]], Apple's desktop computer for the professional and creative market, is a member of the [[Power Macintosh]] series first introduced in 1994. The [[eMac]] is Apple's cheaper alternative to the iMac for the education market. Apple's server range includes the [[Xserve]], a single-processor, dual-processor, and cluster-node server range, and the [[Xserve RAID]] for server storage options.
36626
36627 Apple introduced the [[iBook]] consumer portable computer as a companion to the iMac; it is Apple's lowest cost portable computer. The [[MacBook Pro]] is the professional portable computer alternative to the iBook intended for the professional and creative market and replaced the [[PowerBook]] range. PowerBooks are still being manufactured and sold, but is expected that Apple will phase out both the PowerBook and iBook lines upon arrival of the heavily rumoured MacBook, the low end version of the [[MacBook Pro]] and [[Intel]]-based version of the [[iBook]]. The Powerbook range was first introduced in 1991 and helped Apple's profits increase during the 1990s.
36628
36629 In 2001, Apple introduced the [[Apple iPod |iPod]] [[digital music player]] and currently sells the iPod (with video), available in 30 and 60 GB models; the [[iPod nano]], available in 1 GB, 2GB and 4 GB models; and the [[iPod shuffle]], available in 512 MB and 1 GB models.
36630
36631 [[Image:MacminiWhiteBGSmall.jpg|thumb|right|The [[Mac mini]] is Apple's lowest cost desktop computer.]]
36632 Apple sells a variety of computer accessories for Macintosh computers including the [[iSight]] video conferencing camera, the [[AirPort]] wirelss networking products; [[Apple Cinema Display|Apple Cinema HD Display]] and [[Apple Displays]] computer displays; [[Apple Mighty Mouse|Mighty Mouse]] and [[Apple Wireless Mouse]] computer mice; the [[Apple Wireless Keyboard]] computer keyboard and the [[Apple USB Modem]].
36633
36634 ===Software===
36635 Apple independently develops [[computer software]] titles for its [[Mac OS X]] operating system. Much of the software Apple develops is bundled with its computers. An example of this is the consumer-oriented [[iLife]] software package which bundles [[iDVD]], [[iMovie|iMovie HD]], [[iPhoto]], [[iTunes]], [[GarageBand]], and [[iWeb]]. Both [[iTunes]] and a feature-limited version of the [[QuickTime]] media player are available as free downloads for both Mac OS X and Windows. For presentation and page layout, [[iWork]] is available.
36636
36637 Apple also offers a range of professional software titles. Their range of server software includes the [[Mac OS X Server]] operating system; [[Apple Remote Desktop]], a remote desktop control application; [[WebObjects]], [[Java 2 Platform, Enterprise Edition|Java]] [[World Wide Web|Web]] [[application server]]; and [[Xsan]], a [[Storage Area Network]] file system. For the professional creatives market, there is [[Aperture (software)|Aperture]] for professional [[RAW]]-format [[photo]] processing; [[Final Cut Studio]], a video software package, as well as [[Final Cut Express HD]], a cut-down version, for [[Standard-definition television|SD]] and [[High-definition television|HD]] video editors; [[Logic Pro]], a comprehensive music toolkit, and [[Logic Express]], its prosumer cousin; and [[Shake (software)|Shake]], an advanced effects composition program.
36638
36639 Apple also offers online services with [[.Mac]] which bundles [[Web page|.Mac HomePage]], [[E-mail|.Mac Mail]], .Mac Groups [[social network service]], [[iDisk|.Mac iDisk]], [[Backup (backup software)|.Mac Backup]], [[iSync|.Mac Sync]], and Learning Center online tutorials.
36640
36641 :See also:
36642 :*[[List of Macintosh models grouped by CPU]]
36643 :*[[List of Macintosh software]]
36644 :*[[List of products discontinued by Apple Computer]]
36645
36646 ==Corporate affairs==
36647 ===Logo===
36648 [[Image:Originalapplelogo.jpg|thumb|left|110px|The original Apple logo featuring [[Isaac Newton]] under the fabled apple tree.]]
36649 [[Image:Striped apple logo.png|thumb|right|110px|The rainbow Apple logo, used from late 1976 to early 1998.]]
36650 [[Image:Apple-logo.png|thumb|right|110px|The current Apple logo. On products, a simple gray version of the Apple is used, without embellishing it as has been done to computerized images.]]
36651
36652 The original Apple logo was designed by [[Steve Jobs]] and [[Ron Wayne]] and depicts Isaac Newton sitting under an apple tree. However this design was soon to be replaced by the now famous [[rainbow]] apple with a &quot;bite&quot; taken out of it. It was one of a set of designs [[Rob Janoff]] presented Jobs in 1976 &lt;ref&gt;[http://wired-vig.wired.com/news/mac/0,2125,60597,00.html Wired News: Apple Doin' the Logo-Motion]&lt;/ref&gt;.
36653
36654 In the book Zeroes and Ones, author [[Sadie Plant]] speculates that the rainbow Apple logo was a homage to [[Alan Turing]], the homosexual father of modern computer science who committed suicide by eating a cyanide-laced apple in imitation of the movie ''[[Snow White and the Seven Dwarfs (1937 film)|Snow White and the Seven Dwarfs]]''. This seems to be an [[urban legend]] as the Apple logo was designed two years before [[Gilbert Baker]]'s [[Rainbow flag|rainbow pride flag]], and did not follow the same color pattern.
36655
36656 In 1998, the logo became single-colored, though no specific color is prescribed; for example, it is grey on the [[Power Mac G5]] and [[iMac G5|Apple iMac]], blue (by default) in [[Mac OS X]], chrome on the 'About this Mac' panel and the boot screen in OS X 10.3 and 10.4, red on many [[Software]] packages, and white on the [[iBook]], [[PowerBook G4]] and [[MacBook Pro]]. The logo's shape is one of the most recognized brand symbols in the world, and is featured quite prominently on all Apple products and retail stores.
36657
36658 ===Criticism===
36659 Apple was criticized for its [[vertical integration|vertically integrated]] business model, which runs against the &quot;received wisdom&quot; of some economists, particularly those who study the computer industry. However, the company is profitable. Others criticize the company by suggesting it has been personality-driven, especially during the two eras of Steve Jobs' tenure. Some even regard the company as a cult or at least having cult-like features. Jobs' charisma, infamously referred to as his [[reality distortion field]], has drawn criticism.
36660
36661 From a technical standpoint, Apple was also criticized for having a closed and proprietary architecture with the original Macintosh and refusing to adopt open standards; for many years a &quot;[[Not Invented Here]]&quot; (NIH) culture seemed to prevail. The [[ITunes Music Store|iTunes Music Store]] continues this trend, utilizing a proprietary [[Digital rights management|Digital Rights Management]] system called [[FairPlay]] that requires burning and re-ripping a CD to place purchased songs on any [[digital audio player]] besides the [[Apple iPod | iPod]].
36662
36663 That trend was largely reversed with [[Mac OS X]], and the company now has an official policy of adopting relevant open industry standards. Mac OS X is based on a [[free software]] / [[Open-source software|open source software]] [[Kernel (computer science)|kernel]] and core operating system called [[Darwin (operating system)|Darwin]]. Apple also uses an open source framework called [[WebKit]] in its [[Safari (web browser)|Safari web browser]].
36664
36665 Apple has used industry-standard hardware technologies for many years. Many Apple technologies have also become industry standards where no former standard existed, for example [[Zeroconf|Bonjour]] zero-configuration networking, and [[FireWire]]. Some non-Apple technologies only gained wide industry acceptance after Apple adopted them, including 3.5-inch [[floppy disk]]s, [[SCSI]], the [[Universal Serial Bus]] (USB), [[Wi-Fi]] and, of course, graphical user interfaces (GUIs). Apple has recently adopted an Intel-based architecture. Apple's industry-standard software implementations include [[iCalendar]], as well as a host of other networking protocols.
36666
36667 [[Open-source software|Open source software]] advocates are often critical of Apple's attempt to appeal to their particular movements. Such advocates claim that such a marketing scheme is not taken seriously enough by Apple because Mac OS X has many proprietary technologies in essential areas. Other open source advocates make a counter-argument that Apple has done much more for open source software than many other major commercial software developers by releasing large portions of source code to the public through the [[Apple Public Source License]] (APSL). Some third-party developers are also critical of the competing factions within Apple itself, noting an apparent rivalry between the developers of [[Cocoa (API)|Cocoa]], which came from NeXT, and those of [[Carbon (API)|Carbon]], which came from Apple. This rivalry is seen as counterproductive and unnecessary by many developers.
36668
36669 Apple's retail initiative has had a mixed reception despite its success promoting the Apple brand. Retailers have suggested that Apple-owned retail stores receive preference when receiving Apple hardware, obtaining limited stock product earlier and at lower prices. This accusation is denied by Apple.
36670
36671 &lt;!-- Image with unknown copyright status removed: [[Image:Steve Jobs2 cropped.png|thumb|100px|right|Steve Jobs, the current [[Chief executive officer|CEO]].]] --&gt;
36672
36673 ===Apple CEOs, 1977-present===
36674 &lt;!--If you change the title of this section, please change the link at [[List of Apple Computer CEOs]] correspondingly.--&gt;
36675 * 1977 - 1981: [[Michael Scott (Apple Computer)|Michael &quot;Scotty&quot; Scott]]
36676 * 1981 - 1983: [[Mike Markkula]]
36677 * 1983 - 1993: [[John Sculley]]
36678 * 1993 - 1996: [[Michael Spindler]]
36679 * 1996 - 1997: [[Gil Amelio]]
36680 * 1997 - present: [[Steve Jobs]]
36681
36682 ===Current Apple Board of Directors===
36683 * [[Fred D. Anderson]], managing director of [[Elevation Partners]]
36684 * [[Bill Campbell (CEO)|Bill Campbell]], chairman of [[Intuit, Inc.]]
36685 * [[Millard Drexler]], chairman and CEO of [[J.Crew]]
36686 * [[Al Gore]], former [[Vice President of the United States]]
36687 * [[Steve Jobs]], CEO of Apple and [[Pixar]]
36688 * [[Arthur D. Levinson]], chairman and CEO of [[Genentech]]
36689 * [[Jerry York (CEO)|Jerry York]], chairman, president and CEO of [[Harwinton Capital]]
36690
36691 ===Current Apple executives===
36692 * [[Steve Jobs]], CEO
36693 * [[Timothy D. Cook]], [[chief operating officer]]
36694 * [[Jon Rubinstein]], senior vice president of [[iPod]] division
36695 * [[Philip W. Schiller]], senior vice president of worldwide [[product marketing]]
36696 * [[Bertrand Serlet]], senior vice president of [[software engineering]]
36697 * [[Nancy R. Heinen]], senior vice president and general counsel
36698 * [[Ron Johnson (Apple)|Ron Johnson]], senior vice president of retail
36699 * [[Sina Tamaddon]], senior vice president of applications
36700 * [[Peter Oppenheimer]], senior vice president and [[Chief Financial Officer|CFO]]
36701 * [[Avie Tevanian]], chief software technology officer
36702
36703 ==User culture==
36704 :''See Also: [[Cult of Mac]]''
36705
36706 Some Apple customers are devoted to their brand. Some refuse to buy from competitors and stridently uphold their belief in the perceived superiority of Apple products; according to surveys by [[J. D. Power]], Apple has the highest brand and repurchase loyalty of any computer manufacturer. While this brand loyalty is considered unusual for any product, Apple appears not to have gone out of its way to create it. At one time, [[Apple evangelist]]s were actively engaged by the company, but this was after the phenomenon was already firmly established. As [[Guy Kawasaki]] has said, &quot;[the brand fanaticism was] something that was stumbled upon&quot;.&lt;ref&gt;[http://www.creatingcustomerevangelists.com/resources/evangelists/guy_kawasaki.asp The father of evangelism marketing] by Ben McConnell and Jackie Huba&lt;/ref&gt;
36707
36708 Macintosh users meet at the [[Apple Expo]] and [[MacWorld Expo]] trade shows where Apple introduces new products each year to the industry and public. Many users show their loyalty and devotion by wearing Apple [[t-shirt]]s. Another example of Apple's user culture is the [[Apple_Store_%28retail%29|Apple Store]] openings where many wait and sleep outside of stores for days prior to their openings.
36709
36710 [[John Sculley]], former Apple CEO, told the Guardian newspaper in 1997: &quot;''People talk about technology, but Apple was a marketing company, It was the marketing company of the decade.''&quot;.&lt;ref&gt;[http://www.wired.com/news/culture/mac/0,56677-0.html Wired News: Apple: It's All About the Brand]&lt;/ref&gt;
36711
36712 ==Notable litigation==
36713 {{main|Notable litigation of Apple Computer}}
36714 Apple's earliest court action dates to 1978 when [[Apple Records|Apple Corps]], [[The Beatles]]-founded record label, filed suit against Apple Computer for trademark infringement. The suit settled in 1981 with an amount of $80,000 being paid to Apple Corps. As a condition of the settlement, Apple Computer agreed to stay out of the music business. The case arose in 1989 again when Apple Corps sued, claiming violation of the 1981 settlement agreement. In 1991 another settlement of around $26.5 million was reached. &lt;ref&gt;[http://news.com.com/Apple+vs.+Apple+Perfect+harmony/2100-1027_3-5378401.html news.com: Apple vs. Apple: Perfect harmony?]&lt;/ref&gt; In September 2003 Apple Computer was sued by Apple Corps again, this time for introducing [[iTunes]] and the [[Apple iPod | iPod]] which Apple Corps believed was a violation of the previous agreement by Apple not to distribute music. &lt;ref&gt;[http://www.legalzoom.com/articles/article_content/article11325.html legalzoom.com: Apple v Apple: What is at the core of The Beatles’ Apple Records vs. Apple Ipodâ€Ļ]&lt;/ref&gt; The date for this trial has been set for [[March 27]], [[2006]] in the UK. At the present time [[the Beatles]]' songs are not available for download from any legal music download sites, including the [[iTunes Music Store]].
36715
36716 In 1982 Apple filed a lawsuit against [[Franklin Computer Corp.]], alleging that Franklin's ACE 100 personal computer used illegal copies of Apple's [[operating system]] and [[Read-only memory|ROM]]. [[Apple v. Franklin]] established the fundamental basis of copyright of computer software. As a result, Apple began embedding an encrypted image in ROM. This icon displays &quot;Stolen from Apple Computer&quot;.
36717
36718 In 1988 Apple sued Microsoft and [[Hewlett-Packard]] on the grounds that they infringed Apple's copyright on a GUI. The [[Apple Computer, Inc. v. Microsoft Corp.]] trial lasted for four years. The ruling was decided against Apple, and the concept of a GUI was no longer the domain of Apple alone.
36719
36720 In July 1998 [[Abdul Traya]] registered the domain name ''appleimac.com'', two months after Apple announced the [[iMac]], in an attempt to draw attention to a web-hosting business. &lt;ref&gt;[http://news.com.com/2100-1023-221921.html news.com: Teen in dispute with Apple over domain]&lt;/ref&gt; After a legal dispute that lasted until April 1999, Traya and Apple settled out of court with Apple paying legal fees and giving Traya a &quot;''token payment''&quot; in exchange for the domain name. &lt;ref&gt;[http://www.macobserver.com/news/99/april/990427/applevsteen.html macobserver.com: Battle For Domain Name Between Apple And Teen Resolved]&lt;/ref&gt;
36721
36722 In 1994 Apple was sued by the astronomer and science popularizer [[Carl Sagan]] for using his name as the internal code-name for the [[Power Macintosh 7100]]. Sagan lost the suit twice. See the Carl Sagan [[Carl Sagan#Personality|article]] for details.
36723
36724 In November 2000, [[Benjamin Cohen]] of [http://www.cyberbritain.co.uk CyberBritain] registered the domain name &quot;itunes.co.uk&quot; for an MP3 search engine. Apple was granted a UK restricted (non music) trademark for ITUNES on [[March 23]], [[2001]], and launched its popular iTunes music store service in the UK in 2004. In 2005, Apple took the matter to the Dispute Resolution Service operated by [[.uk]] [[domain|domain name]] [[registry]] [[Nominet UK]], stating that they had rights in the name &quot;iTunes&quot;. An expert decided in Apple's favor in the dispute. Cohen launched a media offensive stating that the DRS was biased towards large businesses and made frequent threats of lawsuits against Nominet.
36725
36726 In November 2004, two popular [[weblog]] sites that feature [[Mac rumors community|Apple rumors]] publicly revealed information about an unreleased Apple product code-named &quot;Asteroid&quot;, also known as &quot;Project Q97&quot;. The sites, &quot;AppleInsider&quot; and &quot;PowerPage&quot;, were subpoenaed for information about their sources in the [[Apple v. Does]] case. In February 2005 it was decided by a court official in California that the bloggers do not have the same [[shield law]] protection as do journalists. In a related case, the websites went on to fight the journalistic status decision. In a separate matter, Apple filed a lawsuit against website [[Think Secret]] in January 2005, claiming that the site's reports about forthcoming Apple products violated trade secret law.
36727
36728 In May 2005 Apple entered into a [[class action]] settlement &lt;ref&gt;[http://www.appleipodsettlement.com http://www.appleipodsettlement.com]&lt;/ref&gt;, upheld on December 20, 2005 following an appeal, regarding the battery life of [[Apple iPod | iPod]] music players sold prior to May 2004. Eligible members of the class are entitled to extended warranties, store credit, cash compensation, or battery replacement.
36729
36730 ==See also==
36731 *[[Apple Computer financial history]]
36732 *[[Apple Developer Connection]] — Developer relations program
36733 *[[Apple Intel transition]]
36734 *[[Apple typography]] — Apple's [[typography|type]] related endeavors, technological and artistic
36735 *[[Inside Macintosh]]
36736 *[[List of Apple Computer slogans]]
36737 *[[Macintosh clones]] — Discussion of Apple's licensing of the Macintosh platform
36738 *[[Mac rumors community]] — in recent years, a subculture has developed around rumored products
36739 *[[Pirates of Silicon Valley]] - A movie based on the rise of Apple and Microsoft.
36740
36741 ==References==
36742 &lt;references /&gt;
36743
36744 ==Further reading==
36745 * Gil Amelio, William L. Simon (1999) ''In the Firing Line: My 500 days at Apple'' ISBN 0887309194
36746 * Jim Carlton, ''Apple: The Inside Story of Intrigue, Egomania and Business Blunders'' ISBN 0887309658
36747 * Owen Linzmayer (2004), ''Apple Confidential 2.0'', No Starch Press ISBN 1593270100
36748 * Michael Malone (1999), ''Infinite Loop'' ISBN 0385486847
36749 * [[Steven Levy]], ''Insanely Great: The Life and Times of Macintosh, the Computer That Changed Everything'' ISBN 0140291776
36750 * [[Andy Hertzfeld]] (2004), ''Revolution in the Valley'', O'Reilly Books ISBN 0596007191
36751 * [http://folklore.org/index.py Folklore.org: Macintosh stories], retrieved [[November 25]], [[2005]]
36752
36753 ==External links==
36754 &lt;!-- Please do not add unnecessary links to this section: Wikipedia is not a link repository. See the Talk page for this article, and http://en.wikipedia.org/wiki/Wikipedia:What_Wikipedia_is_not --&gt;
36755 {{commons|Category:Apple_Computer|Apple Computer}}
36756
36757 *[http://www.apple.com/ Apple Computer Official Website]
36758 *[http://www.applematters.com/ Apple Matters - Apple news and opinion site]
36759 *[http://www.macnn.com/ MacNN - Apple news site]
36760 *[http://www.macfixit.com/ MacFixIt - Mac troubleshooting site]
36761 *[http://apple.slashdot.org Slashdot: Apple]
36762 *[http://www.macuser.co.uk/ MacUser's Apple news site]
36763 *[http://www.maccentral.com/ Macworld's Apple news site]
36764 *[http://www.macintouch.com/ MacInTouch - Apple and Mac news site]
36765 *[http://www.macdailynews.com/ MacDailyNews - Apple and Mac news site]
36766 *[http://www.insanely-great.com/ Insanely Great mac - Apple news site]
36767 *[http://www.theapplemuseum.com/ The Apple Museum]
36768 *[http://www.apple-history.com/ Apple-History.com - Mac OS X Hints, tips, and troubleshooting]
36769 *[http://applepedia.com/ ApplePedia.com - An Apple-centric wiki]
36770 *[http://www.macinformation.com/pages/articles/article1.html The Branding of Apple]
36771 *[http://www.buyblue.org/node/251/view/summary Apple Computer Inc Profile] at [[BuyBlue.org]]
36772 *[http://guides.macrumors.com/ Mac Guides - MacRumors.com Guide pages (wiki)]
36773 *[http://www.spymac.com/ Spymac - the world's largest Mac community]
36774
36775 {{Apple_Articles}}
36776
36777 [[Category:1976 establishments]]
36778 [[Category:Apple Computer|*]]
36779 [[Category:Brands]]
36780 [[Category:Companies based in California]]
36781 [[Category:Electronics companies]]
36782 [[Category:Home computer hardware companies]]
36783 [[Category:Human-computer interaction notables]]
36784
36785 {{Link FA|he}}
36786
36787 [[bg:ЕĐŋŅŠĐģ]]
36788 [[ca:Apple Computer]]
36789 [[cs:Apple]]
36790 [[da:Apple Computer]]
36791 [[de:Apple]]
36792 [[es:Apple Computer]]
36793 [[eo:Apple]]
36794 [[fa:Ø´ØąÚŠØĒ ØąØ§ÛŒØ§Ų†Ų‡â€ŒØ§ÛŒ اŲžŲ„]]
36795 [[fr:Apple Computer]]
36796 [[gl:Apple Computer]]
36797 [[ko:ė• í”Œ ėģ´í“¨í„°]]
36798 [[hr:Apple Computer]]
36799 [[id:Apple Computer]]
36800 [[ia:Apple Computer]]
36801 [[it:Apple Computer]]
36802 [[he:אפל מחשבים]]
36803 [[la:Apple Computatores]]
36804 [[lt:Apple]]
36805 [[hu:Apple Computer]]
36806 [[ms:Apple]]
36807 [[nl:Apple Computer]]
36808 [[nds:Apple]]
36809 [[ja:ã‚ĸップãƒĢã‚ŗãƒŗピãƒĨãƒŧã‚ŋ]]
36810 [[no:Apple]]
36811 [[pl:Apple Computer]]
36812 [[pt:Apple Computer, Inc.]]
36813 [[ro:Apple Computer]]
36814 [[ru:Apple Computer]]
36815 [[simple:Apple Computer]]
36816 [[sk:Apple Computer]]
36817 [[fi:Apple Computer]]
36818 [[sv:Apple Computer]]
36819 [[th:āšā¸­ā¸›āš€ā¸›ā¸´ā¸Ĩ ā¸„ā¸­ā¸Ąā¸žā¸´ā¸§āš€ā¸•ā¸­ā¸ŖāšŒ]]
36820 [[tr:Apple Computer]]
36821 [[zh:č‹šæžœį”ĩ脑]]</text>
36822 </revision>
36823 </page>
36824 <page>
36825 <title>Aberdeenshire</title>
36826 <id>857</id>
36827 <revision>
36828 <id>41953767</id>
36829 <timestamp>2006-03-02T21:25:44Z</timestamp>
36830 <contributor>
36831 <username>Bluebot</username>
36832 <id>527862</id>
36833 </contributor>
36834 <comment>unicodify using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
36835 <text xml:space="preserve">{{cleanup-date|December 2005}}
36836
36837 :''For other uses, see [[Aberdeenshire (disambiguation)]].''
36838 {{infobox Scotland council area|
36839 |Council= Aberdeenshire
36840 |Image= [[Image:ScotlandAberdeenshire.png]]
36841 |SizeRank= 4th
36842 |Size= [[1 E9 m²|6,313]] [[square kilometre|km&amp;sup2;]]
36843 |Water= ?
36844 |AdminHQ= [[Aberdeen]]
36845 |ISO= GB-ABD
36846 |ONS= 00QB
36847 |PopulationRank= 6th
36848 |PopulationDate= 2004
36849 |Population= 232,850
36850 |PopulationDensity=37 / km&amp;sup2;
36851 |CouncilDetails= Aberdeenshire Council&lt;br /&gt;http://www.aberdeenshire.gov.uk/
36852 |Control= Liberal Democrat/Independent Control
36853 |MPs= &lt;ul&gt;&lt;li&gt;[[Malcolm Bruce]]&lt;li&gt;[[Alex Salmond]]&lt;li&gt;[[Robert Smith (UK politician)|Robert Smith]]&lt;/ul&gt;
36854 |MSPs= &lt;ul&gt;&lt;li&gt;[[Stewart Stevenson]]&lt;li&gt;[[Nora Radcliffe]]&lt;li&gt;[[Mike Rumbles]]&lt;/ul&gt;
36855 }}
36856 '''Aberdeenshire''' (''Siorrachd Obar Dheathain'' in [[Scottish Gaelic|Gaelic]]) is one of the 32 [[unitary authority|unitary]] [[council areas]] in [[Scotland]].
36857
36858 Present day Aberdeenshire does not include the [[City of Aberdeen]] which is a unitary authority in its own right. However Aberdeenshire council has its headquarters at Woodhill House, Westburn Road, in [[Aberdeen]] - The only Scottish council whose headquarters are based outside of the council area. It also borders [[Angus]], [[Perth and Kinross]], [[Highland]], and [[Moray]].
36859
36860 ==History==
36861 The present council area is named after the historic [[Aberdeenshire (historic)|county of Aberdeenshire]] which had different boundaries and was abolished in [[1975]]. Between 1975 and 1996 the area became part of the [[Regions of Scotland|region]] of [[Grampian]]. When the Scottish regions were abolished, a new unitary council area of Aberdeenshire was created, which revived the name of the former county but with different boundaries.
36862
36863 ==Aberdeenshire council==
36864 Aberdeenshire Council was established in April [[1996]], replacing three [[District council]]s ([[Banff and Buchan]], [[Gordon, Scotland|Gordon]] and [[Kincardine and Deeside]]) and part of the area of [[Grampian Region]]al Council.
36865
36866 There are 68 [[councillor]]s; in 2004 they were 28 [[Liberal Democrats (UK)|Liberal Democrat]], 15 [[Scottish National Party|SNP]], 14 Independent and 11 [[Conservative Party (UK)|Conservative]].
36867
36868 The Council's net expenditure is ÂŖ399.1m a year (2003/04).
36869
36870 Education takes the largest share of expenditure (55%), followed by Social Work and Housing (19%), Transportation and Infrastructure (11%), and Joint Services such as Fire and Police (10%). 22% of revenue is raised locally through the Council Tax. Average Band D [[Council Tax]] is the eighth lowest in mainland Scotland at ÂŖ966 (2003/04).
36871
36872 The council area has a population of 226,871, representing 4.5% of Scotland's total, and a 20% increase since 1981, 50% since 1971. Major towns are Peterhead (17,947), Fraserburgh (12,454), Inverurie (10,882), Stonehaven (9,577), Westhill (9,498) and Ellon (8,754). The population has a higher proportion of younger age groups than the rest of Scotland, reflecting employment-driven in-migration in recent decades.
36873
36874 The council has devolved power to six [[area committee]]s:
36875 *[[Banff &amp; Buchan]],
36876 *[[Buchan]],
36877 *[[Formartine]],
36878 *[[Garioch]],
36879 *[[Marr]],
36880 *[[Kincardine &amp; Mearns]]
36881
36882 ;'''Banff &amp; Buchan'''
36883 Population 35,742 (2001 Census)
36884
36885 Fishing and agriculture are important industries, together with associated processing and service activity.
36886
36887 The area is relatively self-contained, and in recent years has seen a small decline in population. It does, however, have tourism assets in its coastline, coastal villages and [[visitor attraction]]s. Economic dependency, peripherality, and the future of the Common Fisheries/Agricultural Policies, are key issues. The Buchan Local Action Plan will address some of these concerns. The Area qualifies for [[European Union Objective 2]] structural funding.
36888
36889 ;'''Buchan'''
36890 Population 39,160 (2001 Census)
36891
36892 [[Peterhead]] is the largest town in Aberdeenshire; the principal white fish landing port in Europe; and a major oil industry service centre. Equally important, is the nearby gas terminal at [[St Fergus]].
36893
36894 Attempts are being made to counter the negative effects of several recent key company closures and economic threats. Inland, the area is dependent upon agriculture, and many villages have seen a decline in population and services. Issues affecting Banff and Buchan also apply here, as does the future of the oil and gas industry. Part of Buchan benefits from EU aid coverage. Opportunities exist through the Buchan Local Action Plan to safeguard and enhance the economic future of Peterhead and Buchan.
36895
36896 ;'''Formartine'''
36897 Population 36,478 (2001 Census)
36898
36899 Formartine has experienced rapid population growth, particularly around [[Ellon]] and [[Oldmeldrum]], and in the south east where development has spread outwith the city of Aberdeen. By contrast, the area around [[Turriff]] retains strong dependency on the traditional agricultural economy. The area's coastline and rural environment offer recreation potential.
36900
36901 ;'''Garioch'''
36902 Population 42,947 (2001 Census)
36903
36904 Centred on [[Inverurie]], a traditional rural market town, Garioch has also experienced rapid growth due to its proximity to the city of Aberdeen. Significant growth in population, services and employment is anticipated in the [[A96 road|A96]] corridor and in [[Westhill]]. The area is largely agricultural, but is strongly affected by the City's economy and the oil and gas sector. Garioch holds growing potential for tourism, in its environment and archaeological heritage.
36905
36906 ;'''Marr'''
36907 Population 34,038 (2001 Census)
36908
36909 To the west, the mountain environment of the [[Cairngorms]] [[National Park]] sustains a well developed tourist industry based on heritage and outdoor pursuits. Forestry and livestock farming are key industries, particularly in remoter areas. Part of the area has qualified for EU financial assistance. To the east, Marr has experienced population growth due to its strong commuter links with the city of Aberdeen.
36910
36911 ;'''Kincardine and Mearns'''
36912 Population 38,506 (2001 Census)
36913
36914 Transport links with Aberdeen have encouraged very rapid population growth, especially to the north of the area. Existing settlements such as [[Portlethen]] and [[Stonehaven]] have greatly expanded, along with industrial activity. The southern part is more self-contained, with the fertile Mearns area sustaining a strong agricultural economy. Small scale tourism activity exists along its attractive coastline and former fishing villages.
36915
36916 {{Scotland subdivisions}}
36917
36918 [[Category:Unitary authorities of Scotland]]
36919 [[Category:Aberdeenshire| ]]
36920
36921 [[de:Aberdeenshire]]
36922 [[fr:Aberdeenshire]]
36923 [[no:Aberdeenshire]]
36924 [[pl:Aberdeenshire]]
36925 [[zh:é˜ŋäŧ¯ä¸éƒĄ]]</text>
36926 </revision>
36927 </page>
36928 <page>
36929 <title>AU</title>
36930 <id>858</id>
36931 <revision>
36932 <id>15899372</id>
36933 <timestamp>2003-11-01T09:47:13Z</timestamp>
36934 <contributor>
36935 <username>Docu</username>
36936 <id>8029</id>
36937 </contributor>
36938 <minor />
36939 <comment>au is sometimes capitalized AU</comment>
36940 <text xml:space="preserve">#REDIRECT [[au]]</text>
36941 </revision>
36942 </page>
36943 <page>
36944 <title>Aztlan Underground</title>
36945 <id>859</id>
36946 <revision>
36947 <id>36881488</id>
36948 <timestamp>2006-01-27T02:00:32Z</timestamp>
36949 <contributor>
36950 <username>Bobblewik</username>
36951 <id>51235</id>
36952 </contributor>
36953 <minor />
36954 <comment>reduce linking to date elements</comment>
36955 <text xml:space="preserve">'''Aztlan Underground''' is a fusion band from [[Los Angeles, California|Los Angeles]]. Since the early 1990s, Aztlan Underground has played [[Rapcore]]. Indigenous drums, flutes, and rattles are commonplace in its musical compositions.
36956
36957 This unique sound is the backdrop for the band's message of dignity for indigenous people, all of humanity, and Earth. Aztlan Underground has been cultivating a grass roots audience across the country, which has become a large and loyal underground following. Their music includes spoken word pieces and elements of punk, hip hop, rock, funk, jazz, and indigenous music, among others.
36958
36959 The artists are Chenek &quot;DJ Bean&quot; (turntables, samples and percussion), Yaotl (vocals, indigenous percussion), Joe &quot;Peps&quot; (bass, rattles), Zo Rock (Guitars), Ace (drums, indigenous percussion), and Bulldog (vocals, flute).
36960
36961 Aztlan Underground appeared on television on [[Culture Clash]] on Fox in [[1993]], was part of ''Breaking Out'', a concert on pay per view in [[1998]], and was featured in the independent films ''Algun Dia'' and ''Frontierlandia''.
36962
36963 The band has been mentioned or featured in various newspapers and magazines: the [[Vancouver Sun]], [[Northshore News]] (Vancouver, Canada newspaper), [[New Times]] (Los Angeles weekly entertainment newspaper), BLU Magazine (underground hip hop magazine), [[BAM Magazine]] (Southern California), [[La Banda Elastica Magazine]], and the [[Los Angeles Times]] Calendar section. It is also the subject of a chapter in ''It's Not About A Salary'', by Brian Cross.
36964
36965 It was nominated in the New Times 1998 &quot;Best Latin Influenced&quot; category, the BAM Magazine 1999 &quot;Best Rock en EspaÃąol&quot; category, and the [[LA Weekly]] 1999 &quot;Best Hip Hop&quot; category.
36966
36967 Mailing address: Aztlan Underground, P.O. Box 921776, San Fernando, CA 91392.
36968
36969 [[Category:American musical groups]]</text>
36970 </revision>
36971 </page>
36972 <page>
36973 <title>Aland</title>
36974 <id>860</id>
36975 <revision>
36976 <id>15899374</id>
36977 <timestamp>2003-03-06T17:23:57Z</timestamp>
36978 <contributor>
36979 <username>Mic</username>
36980 <id>6273</id>
36981 </contributor>
36982 <minor />
36983 <text xml:space="preserve">#REDIRECT [[Åland]]</text>
36984 </revision>
36985 </page>
36986 <page>
36987 <title>Anschluss</title>
36988 <id>862</id>
36989 <restrictions>move=sysop</restrictions>
36990 <revision>
36991 <id>41894341</id>
36992 <timestamp>2006-03-02T12:43:12Z</timestamp>
36993 <contributor>
36994 <username>Rich Farmbrough</username>
36995 <id>82835</id>
36996 </contributor>
36997 <minor />
36998 <text xml:space="preserve">{{featured article}}
36999 [[Image:1anschluss.gif|thumb|right|250px|German troops march into [[Austria]] on [[12 March]] [[1938]].]]
37000 The '''Anschluss'''{{ref|spelling}} ([[German language|German]]: ''connection'', or ''political union''), also known as the '''Anschluss Österreichs''', was the 1938 inclusion of [[Austria]] into &quot;[[Großdeutschland|Greater Germany]]&quot; by the [[Nazi Germany|Nazi regime]].
37001
37002 The events of [[March 12]], [[1938]], were the first major steps in [[Adolf Hitler]]'s long-desired expansion of [[Germany]]. The Anschluss followed the return to Germany of the [[Saarland#History|Saar]] region, which had been under the control of the [[League of Nations]] for 15 years by the terms of the [[Treaty of Versailles]]. It was followed by the inclusion of the [[Sudetenland]] later in 1938, the invasion of the remainder of [[Czechoslovakia]] in 1939, and the [[Polish September Campaign|invasion of Poland]].
37003
37004 The Anschluss was preceded by a period of growing political pressure on [[Austria]], exerted by Germany, demanding recognition of the outlawed Austrian National-Socialist party and later, their share of Government. In 1938 Austrian chancellor [[Kurt Schuschnigg]], in a last bid to retain Austrian independence, announced a referendum to determine independence or union with Germany. Germany then pressured Schuschnigg into handing over power to the Nazi party. This well-planned [[Coup d'Êtat|internal overthrow]] by the [[Austrian National Socialism|Austrian Nazi Party]] of Austria's state institutions in [[Vienna]] on [[March 11]] meant that when [[Wehrmacht]] troops entered into Austria to enforce the Anschluss, no fighting ever took place. The international response to the Anschluss was mild: The [[World War I]] [[Allies]] only lodged diplomatic protests, and no concrete action was taken to reverse the Anschluss, even though the allies were, on paper, committed to upholding the terms of the Treaty of Versailles, which specifically prohibited the union of Austria and Germany. Austria ceased to exist as an independent nation until a preliminary Austrian government was finally reinstated on [[April 27]], [[1945]], and was legally recognized by the [[Allies of World War II|Allies]] in the following months.
37005
37006 ==Situation before the Anschluss==
37007 [[Image:Österreich-Ungarns Ende.png|thumb|right|400px|The dissolution of [[Austria-Hungary]]
37008 {{legend-line|gray solid 2px|Border of Austria-Hungary in 1914}}
37009 {{legend-line|black solid 2px|Borders in 1914}}
37010 {{legend-line|red solid 2px|Borders in 1920}}
37011 {{legend|#EB955C|[[Empire of Austria]] in 1914}}
37012 {{legend|#FAF0EE|[[Kingdom of Hungary]] in 1914}}
37013 {{legend|#92A2CB|[[Bosnia and Herzegovina]] in 1914}}
37014 ]]
37015 :''Main articles: [[German Empire]] and [[Austrofascism]]''
37016
37017 The idea of grouping all German people into one state had been the subject of inconclusive debate since the end of the [[Holy Roman Empire]] in 1806. Prior to 1866, it was generally thought that the unification of the German peoples could only succeed under Austrian leadership (''[[Grossdeutschland]]''), but the loss of the [[Austro-Prussian War]] by Austria allowed [[Otto von Bismarck]] to establish the [[Prussia]]n-dominated [[German Empire]] in 1871 without the German-speaking parts of [[Austria-Hungary]] (''[[Kleindeutschland]]''). When the latter broke up in 1918, many German-speaking Austrians hoped to join with Germany in the realignment of Europe, but the [[Treaty of Versailles]] and the [[Treaty of Saint-Germain]] of 1919 explicitly vetoed the inclusion of Austria within a German state, because [[France]] and [[United Kingdom|Britain]] feared the power of a larger Germany.
37018
37019 In the early 1930s, popular support for union with Germany remained overwhelming, and the Austrian government looked to a possible [[customs union]] with Germany in 1931. However Hitler's and the [[Nazi]]s' rise to power in Germany left the Austrian government with little enthusiasm for such formal ties. Hitler, born in Austria, had promoted an &quot;all-German Reich&quot; from the early beginnings of his leadership in the [[NSDAP]] and had publicly stated as early as 1924 in ''[[Mein Kampf]]'' that he would attempt a union, by force if necessary.
37020
37021 [[Austria]] shared the economic turbulence of post-1929 Europe with a high unemployment rate and unstable commerce and industry. Similar to its northern and southern neighbours these uncertain conditions made the young democracy very vulnerable. The [[First Republic]], dominated from the late 1920s by the Catholic nationalist [[Christian Social Party]] (CS), gradually disintegrated from 1933 (dissolution of parliament and ban of the Austrian National Socialists) to 1934 ([[Austrian Civil War]] in February and ban of all remaining parties except the CS) and evolved into a pseudo-[[fascist]], [[corporatist]] model of one-party government which combined the CS and the paramilitary [[Heimwehr]] with absolute state domination of [[labour relations]] and no [[freedom of the press]] (see [[Austrofascism]] and [[Patriotic Front (Austria)|Patriotic Front]]). Power was centralized in the office of the [[Chancellor of Austria|Chancellor]] who was empowered to [[rule by decree]]. The predominance of the Christian Social Party (whose economic policies were based on the [[pope|papal]] [[encyclical]] ''[[Rerum novarum]]'') was an Austrian phenomenon in that Austria's national identity had strong Catholic elements which were incorporated into the movement by way of clerical authoritarian tendencies which are certainly not to be found in Nazism. Both [[Engelbert Dollfuss]] and his successor [[Kurt Schuschnigg]] turned to Austria's other fascist neighbour, [[Italy]], for inspiration and support. Indeed, the statist corporatism often referred to as Austrofascism bore more resemblance to [[Fascism|Italian Fascism]] than German National Socialism. [[Benito Mussolini]] was able to support the independent aspirations of the Austrian dictatorship until his need for German support in [[Ethiopia]] forced him into a client relationship with Berlin that began with the 1937 [[Axis Powers|Berlin-Rome Axis]].
37022
37023 When Chancellor Dollfuss was assassinated by the illegal [[Austrian National Socialism|Austrian Nazi party]] on [[25 July]] [[1934]] in a failed coup, the second civil war within only one year followed, lasting until August 1934. After the failed Nazi coup, many leading Austrian Nazis fled to [[Germany]] and continued to coordinate their steps from there while the remaining Austrian Nazis started to make use of terrorist attacks against the Austrian governmental institutions (causing a death toll of more than 800 between 1934 and 1938). Dollfuss' successor Schuschnigg, who followed the political course of Dollfuss, took drastic actions against the Nazis, for instance the rounding up of Nazis (but also Social Democrats) in [[internment camps]].
37024
37025 ==The Anschluss of 1938==
37026 ===Hitler's first moves===
37027 [[Image:1ajansa.jpg|thumb|right|150px|Alfred Jansa was forced to retire as Chief of Staff in January 1938]]
37028
37029 In early 1938 Hitler had consolidated his power in Germany and was ready to reach out to fulfil his long-planned expansion. After a lengthy period of pressure by Germany, Hitler met Schuschnigg on [[12 February]] [[1938]] in [[Berchtesgaden]] ([[Bavaria]]) and instructed him to lift the ban of the Austrian Nazi party, reinstate full party freedoms, release all imprisoned members of the [[Nazi]] party and let them participate in the government. Otherwise he would take military action. Schuschnigg complied with Hitler's demands and appointed [[Arthur Seyss-Inquart]], a Nazi lawyer, as [[Interior Minister]] and another Nazi, [[Edmund Glaise-Horstenau]], as Minister without Portfolio.{{ref|encarta}}
37030
37031 Even before the February meeting, Schuschnigg was under considerable pressure from Germany. This may be seen in the demand to remove the chief of staff of the [[Austrian Army]] [[Alfred Jansa]] from his office in January 1938. Jansa and his staff had developed a scenario for Austria's defence against a German attack, a situation Hitler wanted to avoid at all costs. Schuschnigg subsequently complied with the demand.{{ref|wienerzeitung}}
37032
37033 During the following weeks Schuschnigg realized that his newly appointed ministers were gradually working on taking over his authority. Schuschnigg tried to gather support throughout Austria and inflame [[patriotism]] among the people. For the first time since [[12 February]] [[1934]] (the time of the [[Austrian Civil War]]), socialists and communists could legally appear in public again. The [[communists]] announced their unconditional support for the Austrian government, understandable in light of Nazi pressure on Austria. The [[socialists]] demanded further concessions from Schuschnigg before they were willing to side with him.
37034
37035 ===Schuschnigg announces a referendum===
37036 On [[9 March]], as a last resort to preserve Austria's independence, Schuschnigg scheduled a [[plebiscite]] on the [[independence]] of Austria for [[13 March]]. To secure a large majority in the referendum, Schuschnigg set the minimum voting age at 24 in order to exclude younger voters who largely sympathized with Nazi ideology. Holding a referendum was a highly risky gamble for Schuschnigg, and on the next day it became apparent that Hitler would not simply stand by while Austria declared its independence by public vote. Hitler declared that the plebiscite would be subject to major fraud and that Germany would not accept it. In addition the German Ministry of Propaganda issued press reports that riots had broken out in Austria and that large parts of the Austrian population were calling for German troops to restore order. Schuschnigg immediately publicly replied that the reports of riots were nothing but lies—as they actually were.
37037
37038 Hitler sent an [[ultimatum]] to [[Schuschnigg]] on [[11 March]], demanding that he hand over all power to the [[Austrian National Socialism|Austrian National Socialists]] or face an invasion. The ultimatum was set to expire at noon, but was extended by two hours. However, without waiting for an answer, Hitler had already signed the order to send troops into Austria at one o'clock, issuing it to [[Hermann GÃļring]] only hours later.
37039
37040 Schuschnigg desperately sought support for Austrian independence in the hours following the [[ultimatum]], but, realizing that neither [[France]] nor the [[United Kingdom]] were willing to take steps, he resigned as Chancellor that evening. In the radio broadcast in which he announced his [[resignation]], he argued that he accepted the changes and allowed the Nazis to take over the government in order to avoid bloodshed. Meanwhile, Austrian President [[Wilhelm Miklas]] refused to appoint [[Artur Seyss-Inquart|Seyss-Inquart]] Chancellor and asked other Austrian politicians such as Michael Skubl and Sigismund Schilhawsky to assume the office. However, the Nazis were well organised. Within hours they managed to take control of many parts of Vienna, including the Ministry of Internal Affairs (controlling the Police). As Miklas continued to refuse to appoint a Nazi government and Seyss-Inquart still could not send a telegram in the name of the Austrian government demanding German troops to restore order, Hitler became furious. At about 10 pm, well after Hitler had signed and issued the order for the invasion, GÃļring and Hitler gave up on waiting and published a forged telegram containing a request by the Austrian Government for German troops to enter Austria. Around midnight, after nearly all critical offices and buildings had fallen into Nazi hands in Vienna and the main political party members of the old government had been arrested, Miklas finally conceded to appoint Seyss-Inquart Chancellor.{{ref|wienerzeitung_a}}
37041
37042 ===German troops march into Austria===
37043 &lt;!-- [[Image:Stimzettel-Anschluss.jpg|thumb|right|250px|Voting ballot from [[10 April]] [[1938]]. The ballot text reads &quot;Do you agree with the reunification of Austria with the German Empire that was enacted on [[13 March]] [[1938]], and do you vote for the party of our leader Adolf Hitler?,&quot; the large circle is labelled &quot;Yes,&quot; the smaller &quot;No.&quot;]] --&gt;
37044 [[Image:Voting-booth-Anschluss-10-April-1938.jpg|thumb|right|250px|Propaganda even in the voting booth on [[10 April]] [[1938]], with a poster instructing voters how to vote &quot;Yes&quot;.]]
37045
37046 On the morning of [[12 March]] the 8th Army of the German [[Wehrmacht]] crossed the German-Austrian border. They did not face resistance by the [[Austrian Army]] — on the contrary, the German troops were greeted by cheering Austrians. Although the invading forces were badly organized and coordination between the units was poor, it mattered little because no fighting took place. It did, however, serve as a warning for commanders in future German military operations such as that against [[Czechoslovakia]]. Curiously, the invasion claimed its first fatality within only a few hours: the Nazi [[Heinrich Kurz von Goldstein]] died of a heart attack during the celebrations in [[Salzburg]].
37047
37048 Hitler's car crossed the border in the afternoon at [[Braunau]], his birthplace. In the evening, he arrived at [[Linz]] and was given an enthusiastic welcome in the city hall. The atmosphere was so intense that GÃļring in a telephone call that evening stated: &quot;There is unbelievable jubilation in Austria. We ourselves did not think that sympathies would be so intense.&quot;
37049
37050 Hitler's further travel through Austria changed into a triumphal tour that climaxed in [[Vienna]], when around 200,000 Austrians gathered on the [[Heldenplatz]] (Square of Heroes) to hear Hitler proclaim the Austrian Anschluss ([http://www.aeiou.at/aeiou.film.data.film/f107a.mpg Video: Hitler proclaims Austria's inclusion in the Reich (2MB)]). Hitler later commented: &quot;Certain foreign newspapers have said that we fell on Austria with brutal methods. I can only say: even in death they cannot stop lying. I have in the course of my political struggle won much love from my people, but when I crossed the former frontier (into Austria) there met me such a stream of love as I have never experienced. Not as tyrants have we come, but as liberators.&quot;{{ref|hitlerspeech}}
37051
37052 The Anschluss was given immediate effect by legislative act on [[13 March]], subject to ratification by a plebiscite. Austria became the [[province]] of [[Ostmark]], and Seyss-Inquart was appointed Governor. The plebiscite was held on [[10 April]] and officially recorded a support of 99.73 % of the voters.{{ref|doew}}
37053 While historians concur that the result itself was not manipulated, the voting process was not free or secret. Officials were present directly beside the voting booths and received the voting ballot by hand (in contrast to a secret vote where the voting ballot is inserted into a closed box). In addition, Hitler's brutal methods to emasculate any opposition had been immediately implemented in the weeks preceding the referendum. Even before the first German soldier crossed the border, [[Heinrich Himmler]] and a few [[SS]] officers landed in Vienna to arrest prominent representatives of the First Republic such as [[Richard Schmitz]], [[Leopold Figl]], [[Friedrich Hillegeist]] and [[Franz Olah]]. During the weeks following the Anschluss (and before the plebiscite), Social Democrats, Communists, and other potential political dissenters, as well as Jews, were rounded up and either imprisoned or sent to concentration camps. Within only a few days of [[12 March]], 70,000 people had been arrested. The [[referendum]] itself was subject to large-scale [[propaganda]] and to the abrogation of the voting rights of around 400,000 people (nearly 10 % of the eligible voting population), mainly former members of left-wing parties and Jews.{{ref|doew_a}}
37054 Interestingly, in some remote areas of Austria the referendum on the independence of Austria on [[13 March]] was held despite the [[Wehrmacht]]'s presence in Austria (it took up to 3 days to occupy every part of Austria). For instance, in the village of [[Innervillgraten]] a majority of 95 % voted for Austria's independence.{{ref|wienerzeitung_b}}
37055
37056 Austria remained part of the [[Third Reich]] until the end of [[World War II]] when a preliminary Austrian Government declared the Anschluss void and null on [[April 27]] [[1945]]. After the war then [[allied]] occupied Austria was recognized and treated as a separate country, but was not restored to [[sovereignty]] until the [[Austrian State Treaty]] and Austrian [[Declaration of Neutrality]], both of 1955, largely due to the rapid development of the [[Cold War]] and disputes between the [[Soviet Union]] and its former allies over its foreign policy.
37057
37058 ==Reactions and consequences of the Anschluss==
37059 [[Image:karl-renner.jpg|thumbnail|right|180px|Social Democrat Karl Renner publicly announced his support for the Anschluss]]
37060
37061 The picture of Austria in the first days of its existence in the [[Third Reich]] is one of contradictions: At one and the same time, Hitler's terror regime began to tighten its grip in every area of society, beginning with mass arrests and thousands of Austrians attempting to flee in every direction; yet Austrians could be seen cheering and welcoming German troops entering Austrian territory. Many Austrian political figures did not hesitate to announce their support of the Anschluss and their relief that it happened without violence.
37062
37063 Cardinal [[Theodor Innitzer]] (a political figure of the CS) declared as early as [[12 March]]: &quot;The Viennese Catholics should thank the Lord for the bloodless way this great political change has occurred, and they should pray for a great future for Austria. Needless to say, everyone should obey the orders of the new institutions.&quot; The other Austrian bishops followed suit some days later. [[Vatican Radio]], however, immediately broadcast a vehement denunciation of the German action, and Cardinal [[Pius XII|Pacelli]] ordered Innitzer to report to Rome. Before meeting with the pope, Innitzer met with Pacelli, who had been outraged by Innitzer's statement. He made it clear that Innitzer needed to retract; he was made to sign a new statement, issued on behalf of all the Austrian bishops, which provided: ''“The solemn declaration of the Austrian bishops ... was clearly not intended to be an approval of something that was not and is not compatible with God's law”''. The Vatican newspaper also reported that the bishops' earlier statement had been issued without the approval from Rome.
37064
37065 Robert Kauer, President of the [[Protestants]] in Austria, greeted Hitler on [[13 March]] as &quot;saviour of the 350,000 German Protestants in Austria and liberator from a five-year hardship.&quot; Even [[Karl Renner]], the most famous Social Democrat of the First Republic announced his support for the Anschluss and appealed to all Austrians to vote in favour of it on [[10 April]].{{ref|wienerzeitung_c}}
37066
37067 The international response to the expansion of Germany may be described as ''moderate''. ''[[The Times]]'' commented that 200 years ago Scotland had joined England as well and that this event would not really differ much. On [[14 March]] the [[British Prime Minister]] [[Neville Chamberlain]] noted in the [[House of Commons]]:
37068
37069 [[Image:Neville Chamberlain2.jpg|thumb|right|220px|British [[appeasement]] policy led to the [[Treaty of Munich]], the next major step for [[Hitler]] to create an all-German Reich]]
37070 &lt;blockquote&gt;
37071 His Majesty's Government have throughout been in the closest touch with the situation. The Foreign Secretary saw the German Foreign Minister on the 10th&amp;nbsp;of March and addressed to him a grave warning on the Austrian situation and upon what appeared to be the policy of the German Government in regard to it. . . . Late on the 11th&amp;nbsp;of March our Ambassador in Berlin registered a protest in strong terms with the German Government against such use of coercion, backed by force, against an independent State in order to create a situation incompatible with its national independence.
37072 &lt;/blockquote&gt;
37073 However the speech concluded:
37074 &lt;blockquote&gt;I imagine that according to the temperament of the individual the events which are in our minds to-day will be the cause of regret, of sorrow, perhaps of indignation. They cannot be regarded by His Majesty's Government with indifference or equanimity. They are bound to have effects which cannot yet be measured. The immediate result must be to intensify the sense of uncertainty and insecurity in Europe. Unfortunately, while the policy of appeasement would lead to a relaxation of the economic pressure under which many countries are suffering to-day, what has just occurred must inevitably retard economic recovery and, indeed, increased care will be required to ensure that marked deterioration does not set in. This is not a moment for hasty decisions or for careless words. We must consider the new situation quickly, but with cool judgement... As regards our defence programmes, we have always made it clear that they were flexible and that they would have to be reviewed from time to time in the light of any development in the international situation. It would be idle to pretend that recent events do not constitute a change of the kind that we had in mind. Accordingly we have decided to make a fresh review, and in due course we shall announce what further steps we may think it necessary to take. {{ref|speech}}&lt;/blockquote&gt;
37075
37076 The lenient reaction to the Anschluss was the first major consequence of the strictly followed [[appeasement]] British foreign policy strategy. The international reaction on the events of [[March 12]]th 1938 led Hitler to conclude that he could use even more aggressive tactics in his ''roadmap'' to expand the [[Third Reich]], as he would later in annexing the [[Sudetenland]]. The relatively bloodless Anschluss helped pave the way for the [[Treaty of Munich]] in September 1938 and the annexation of [[Czechoslovakia]] in 1939, because it reinforced [[appeasement]] as the right way for Britain to deal with Hitler's [[Germany]].
37077
37078 ==Legacy of the 1938 Anschluss==
37079 ===The Anschluss: annexation or union?===
37080 Some historical sources, for instance [[EncyclopÃĻdia Britannica]] and the [[Encarta|Encarta Encyclopedia]] describe the Anschluss as an &quot;annexation&quot; {{ref|encarta_sidebar}}. Outside this context &quot;Anschluss&quot; is properly translated as &quot;join&quot;, &quot;connection&quot;, &quot;[[unification]]&quot; or &quot;political union&quot;. The German word &quot;Annektierung&quot; would mean military annexation unambiguously. However, the word commonly used in German for the process of spring 1938 is ''Anschluss''.
37081
37082 The precise character of the Anschluss remains a difficulty essential to Austria's understanding of its history and the obligations it entails.
37083
37084 ===The appeal of Nazism to Austrians===
37085 The Anschluss can be misunderstood as ''simply'' a military annexation of an unwilling Austria, but this lends itself to confusion with other German military occupations of European countries. It also tends to conceal the culpability of many Austrians in Nazi crimes, most of all the [[Holocaust]], by perpetuating the myth of Austria as the first victim of Hitler's expansionism. Despite the subversion of Austrian political process by Hitler's sympathisers and associates in Austria, Austrian acceptance of direct government by Hitler's Berlin is a very different phenomenon from the administration of other collaborationist countries.
37086
37087 With the break-up of the [[Austria-Hungary|Austro-Hungarian monarchy]] in 1918, popular opinion was for unification with Germany, in realization of the [[Grossdeutschland]] concept- this however was forbidden by the [[Treaty of St. Germain]], to which the newly formed Austrian republic was obliged. This was in stark contrast to the general concept of [[self-determination]] which governed the [[Treaty of Versailles|Versailles talks]], as was the inclusion of the [[Sudetenland]], a German-populated area of the former Austro-Hungarian province of [[Bohemia]] (whose population favoured joining German-speaking Austria), in the newly formed [[Czechoslovakia|Czechoslovak]] republic, giving rise to [[revisionism|revisionist]] sentiment. This laid the grounds for the general willingness of the populations of both Austria and the Sudetenland for inclusion into the [[Third Reich]], as well as the relative acceptance of the Western Governments, who made little protest until March 1939, when the [[irredentism|irredentist]] argument lost its value following the annexation of the rest of Czech-speaking Bohemia, as well as Moravia and Czech Silesia.
37088 [[Image:Grossdeutschland.jpg|thumb|right|Nazi propaganda poster]]
37089
37090 The small Republic of Austria was seen by many of its citizens as economically unviable, a feeling that was exacerbated by the [[Great Depression|Depression]] of the 1930s. In contrast the Nazi dictatorship appeared to have found a solution to the economic crisis of the 1930s. Furthermore, the break-up had thrown Austria into a crisis of identity, and many Austrians, of both the left and the right, felt that Austria should be part of a larger German nation.
37091
37092 Politically, Austria had not had the time to develop a strongly democratic society to resist the onslaught of [[totalitarianism]]. The final version of the First Republic's constitution had only lasted from 1929 to 1933. The [[First Republic]] was ridden by violent strife between the different political camps; the [[Christian Social Party]] were complicit in the murder of large numbers of adherents of the decidedly left-wing [[Social Democratic Party of Austria|Social Democratic Party]] by the police during the [[July Revolt of 1927]]. In fact, with the end of democracy in 1933 and the establishment of [[Austrofascism]], Austria had already purged its democratic institutions and instituted a dictatorship long before the Anschluss. There is thus little to distinguish radically the ''institutions'' of at least the post-1934 Austrian government before or after [[12 March]] [[1938]].
37093
37094 The members of the leading [[Christian Social Party]] were fervent Catholics, but not particularly [[anti-semitism|anti-semitic]]. For instance [[Jew|Jews]] were not prohibited from exercising any profession, in sharp contrast to the [[Third Reich]]. Many prominent Austrian scientists, professors, and lawyers at the time were Jewish; in fact [[Vienna]], with its Jewish population of about 200,000, was considered a [[safe haven]] from 1933 to 1938 by many Jews who fled Nazi Germany. However, the Nazis' anti-Semitism found fertile soil in Austria. Anti-Semitic elements had emerged as a force in Austrian politics in the late nineteenth century, with the rise in prominence of figures such as [[Georg Ritter von SchÃļnerer]] and [[Karl Lueger]] (who had influenced the young Hitler), and in the 1930s anti-Semitism was rampant, as Jews were a convenient scapegoat for economic problems.
37095
37096 In addition to the economic appeal of the Anschluss, the popular underpinning of Nazi politics as a total art form (the refinement of film propaganda exemplified by [[Leni Riefenstahl|Riefenstahl's]] ''[[Triumph of the Will]]'' and mythological [[aestheticism]] of a broadly conceived national destiny of the [[German people]] within a &quot;Thousand-Year Reich&quot;) gave the Nazis a massive advantage in advancing their claims to power. Moreover [[Austrofascism]] was less grand in its appeal than the choice between [[Stalin]] and [[Hitler]] to which many European intellectuals of the time believed themselves reduced by the end of the decade. Austria had effectively no alternative view of its historical mission when the choice was upon it. In spite of Dollfuss' and Schuschnigg's hostility to Nazi political ambitions, the Nazis succeeded in convincing many Austrians to accept what they viewed as the historical destiny of the German people rather than continue as part of a distinct sovereign nation.
37097
37098 ===The Second Republic===
37099 ====The Moscow Declaration====
37100 [[Image:Seyss-inquartmugshot.JPG|thumb|right|250px|[[Arthur Seyss-Inquart]] [[1945]] mugshot for the [[Nuremberg Trials]].]]
37101
37102 The [[Moscow Declaration]] of 1943, signed by the [[United States of America]], the [[Union of Soviet Socialist Republics]], and the [[United Kingdom]] included a &quot;Declaration on Austria,&quot; which stated the following:
37103
37104 &lt;blockquote&gt;
37105 &lt;p&gt;The governments of the United Kingdom, the Soviet Union and the United States of America are agreed that Austria, the first free country to fall a victim to Hitlerite aggression, shall be liberated from German domination.&lt;/p&gt;
37106
37107 &lt;p&gt;They regard the annexation imposed on Austria by Germany on [[15 March]] [[1938]], as null and void. They consider themselves as in no way bound by any charges affected in Austria since that date. They declare that they wish to see re-established a free and independent Austria and thereby to open the way for the Austrian people themselves, as well as those neighbouring States which will be face with similar problems, to find that political and economic security which is the only basis for lasting peace.&lt;/p&gt;
37108
37109 &lt;p&gt;Austria is reminded, however that she has a responsibility, which she cannot evade, for participation in the war at the side of Hitlerite Germany, and that in the final settlement account will inevitably be taken of her own contribution to her liberation. {{ref|moskauermemo}}&lt;/p&gt;
37110 &lt;/blockquote&gt;
37111
37112 To judge from the last paragraph and subsequent determinations at the [[Nuremberg Trial]], the Declaration was intended to serve as [[propaganda]] aimed at stirring Austrian resistance (although there are Austrians counted as [[Righteous Among the Nations]], there never was an effective Austrian armed resistance of the sort found in other countries under German occupation) more than anything else, although the exact text of the declaration is said to have a somewhat complex drafting history.{{ref|nybooks}} At Nuremberg [[Arthur Seyss-Inquart]] {{ref|seyss-inquart}} and [[Franz von Papen]] {{ref|vonpapen}}, in particular, were both indicted under count one (conspiracy to commit crimes against peace) specifically for their activities in support of the Austrian Nazi Party and the Anschluss, but neither was convicted of this count. In acquitting von Papen, the court noted that his actions were in its view political immoralities but not crimes under its charter. Seyss-Inquart was convicted of other serious war crimes, most of which took place in [[Poland]] and the [[Netherlands]], and was sentenced to death.
37113
37114 ====Austrian identity and the &quot;victim theory&quot;====
37115 [[Image:1heldeplatz.jpg|thumb|right|250px|Heldenplatz, &quot;Day of the Austrian legion,&quot; [[2 April]] [[1938]].]]
37116
37117 After [[World War II]], many Austrians sought comfort in the myth of Austria as the Nazis' first victim. Although the Nazi party was promptly banned, Austria did not have the same thorough process of de-Nazification at the top of government which was imposed on Germany for a time. Lacking outside pressure for political reform, factions of Austrian society tried for a long time to advance the view that the Anschluss was ''only'' an annexation at bayonet point.
37118
37119 This view of the events of 1938 has deep roots in the ten years of Allied occupation and the struggle to regain Austrian sovereignty: The ''victim theory'' played an essential role in the negotiations on the [[Austrian State Treaty]] with the Soviets, and by pointing to the Moscow Declaration Austrian politicians heavily relied on it to achieve a solution for Austria different from the division into East and West in Germany. The State Treaty, alongside with the subsequent Austrian declaration of permanent [[Neutral country|neutrality]] marked important milestones for the solidification of Austria's independent [[nation]]al identity during the following decades.
37120
37121 As Austrian politicians of the left and right attempted to reconcile their differences in order to avoid the violent conflict that had dominated the first republic, discussions of both Austrofascism and Austria's role in Nazism were largely avoided. Still, the [[Austrian People's Party]] (ÖVP) has advanced and still sometimes advances the argument that the establishment of the Dollfuss dictatorship was necessary in order to maintain Austrian independence, while the [[Austrian Social Democratic Party]] (SPÖ) argues that the dictatorship stripped the country of the democratic resources necessary to repel Hitler.
37122
37123 ====Political events====
37124 For decades, the victim theory established in the Austrian mind remained largely undisputed. The Austrian public was only rarely forced to confront the legacy of the Third Reich (most notably during the events of 1965 concerning [[Taras Borodajkewycz]], a professor of economic history notorious for anti-Semitic remarks, when [[Ernst Kirchweger]], a concentration camp survivor, was killed by a right-wing protester during riots). It was not until the 1980s that Austrians were finally massively confronted with their past. The main catalyst for the start of a ''[[Vergangenheitsbewältigung]]'' was the so-called [[Kurt Waldheim|Waldheim affair]]. The Austrian reply to allegations during the 1986 Presidential election campaign that successful candidate and former [[United Nations Secretary-General|UN Secretary-General]] [[Kurt Waldheim]] had been a member of the Nazi party and of the infamous [[Sturmabteilung|SA]] (he was later absolved of direct involvement in [[war crimes]]) was that scrutiny was an unwelcome intervention in the country's [[internal affairs]]. Despite the politicians' reactions to international criticism of Waldheim, the Waldheim affair started the first serious major discussion on Austria's past and the Anschluss.
37125
37126 Another main factor for Austria and its coming to terms with the past emerged in the 1980s: [[JÃļrg Haider]] and the rise of the [[FPÖ]]. The party had combined elements of the [[pan-German]] right with free-market liberalism since its foundation in 1955, but after Haider had ascended to the party chairmanship in 1986, the liberal elements became increasingly marginalized while Haider began to openly use nationalist and anti-immigrant rhetoric. He was often criticised for tactics such as the ''vÃļlkisch'' (ethnic) definition of national interest (&quot;Austria for Austrians&quot;) and his apologism for Austria's past, notably calling members of the [[Waffen-SS]] &quot;men of honour&quot;. Following an enormous electoral rise in the 1990s peaking in the [[Austria legislative election, 1999|1999 elections]], the FPÖ, now purged of its liberal elements, entered a coalition with the [[ÖVP]] led by [[Wolfgang SchÃŧssel]] that met international condemnation in 2000. This coalition triggered the regular ''Donnerstagsdemonstrationen'' (Thursday demonstrations) in protest against the government, which took place on the [[Heldenplatz]], where Hitler had greeted the masses during the Anschluss. Haider's tactics and rhetoric, which were often criticised as sympathetic to Nazism, again forced Austrians to reconsider their relationship to the past.
37127
37128 But it is not [[JÃļrg Haider]] alone who has made questionable remarks on Austria's past: [[JÃļrg Haider]]'s coalition partner the current Chancellor [[Wolfgang SchÃŧssel]] in an interview with the [[Jerusalem Post]] as late as 2000 stated that Austria was the first victim of Hitler-Germany.{{ref|jerusalem}}
37129
37130 ====Literature====
37131 Tearing into the simplism of the ''victim theory'' and the time of the [[Austrofascism]], [[Thomas Bernhard|Thomas Bernhard's]] last play, ''Heldenplatz'', was highly controversial even before it appeared on stage in 1988, fifty years after Hitler's visit. Bernhard's achievement was to make the elimination of references to Hitler's reception in Vienna emblematic of Austrian attempts to claim their history and culture under questionable criteria. Many politicians from all political factions called Bernhard a ''Nestbeschmutzer'' (so. damaging the reputation of his country) and openly demanded that the play should not be staged in Vienna's [[Burgtheater]]. [[Kurt Waldheim]], who was at that time still Austrian president called the play ''a crude insult to the Austrian people''.{{ref|bernhard}}
37132
37133 ===The Historical Commission and outstanding legal issues===
37134 In the context of the postwar [[Federal Republic of Germany]], one encounters a ''[[Vergangenheitsbewältigung]]'' (&quot;struggle to come to terms with the past&quot;) that has been partially institutionalised, variably in literary, cultural, political, and educational contexts (its development and difficulties have not been trivial; see, for example, the [[Historikerstreit]]). Austria formed a ''Historikerkommission''{{ref|historikerkommission}} (&quot;Historian's Commission&quot; or &quot;Historical Commission&quot;) in 1998 with a mandate to review Austria's role in the Nazi expropriation of Jewish property from a scholarly rather than legal perspective, partly in response to continuing criticism of its handling of property claims. Its membership was based on recommendations from various quarters, including [[Simon Wiesenthal]] and [[Yad Vashem]]. The Commission delivered its report in 2003. {{ref|report}} Noted Holocaust historian [[Raul Hilberg]] refused to participate in the Commission and in an interview stated his strenuous objections in terms both personal and in reference to larger questions about Austrian culpability and liability, comparing what he to be relative inattention to the settlement governing the [[Switzerland|Swiss]] bank holdings of those who died or were displaced by the Holocaust:
37135
37136 &lt;blockquote&gt;
37137 I personally would like to know why the WJC &amp;#91;[[World Jewish Congress]]&amp;#93; has hardly put any pressure on Austria, even as leading Nazis and SS leaders were Austrians, Hitler included... Immediately after the war, the US wanted to make the Russians withdraw from Austria, and the Russians wanted to keep Austria neutral, therefore there was a common interest to grant Austria victim status. And later Austria could cry poor - though its per capita income is as high as Germany's. And, most importantly, the Austrian PR machinery works better. Austria has the opera ball, the imperial castle, Mozartkugeln [a chocolate]. Americans like that. And Austrians invest and export relatively little to the US, therefore they are less vulnerable to blackmail. In the meantime, they set up a commission in Austria to clarify what happened to Jewish property. Victor Klima, the former chancellor, has asked me to join. My father fought for Austria in the First World War and in 1939 he was kicked out of Austria. After the war they offered him ten dollars per month as compensation. For this reason I told Klima, no thank you, this makes me sick. {{ref|Hilberg}}
37138 &lt;/blockquote&gt;
37139
37140 The [[Simon Wiesenthal Center]] continues to criticise Austria (as recently as June 2005) for its alleged historical and ongoing unwillingness aggressively to pursue investigations and trials against Nazis for war crimes and crimes against humanity from the seventies onwards. Its 2001 report offered the following characterization:
37141 &lt;blockquote&gt;
37142 Given the extensive participation of numerous Austrians, including at the highest levels, in the implementation of the Final Solution and other Nazi crimes, Austria should have been a leader in the prosecution of Holocaust perpetrators over the course of the past four decades, as has been the case in Germany. Unfortunately relatively little has been achieved by the Austrian authorities in this regard and in fact, with the exception of the case of Dr. Heinrich Gross which was suspended this year under highly suspicious circumstances (he claimed to be medically unfit, but outside the court proved to be healthy) not a single Nazi war crimes prosecution has been conducted in Austria since the mid-seventies.{{ref|Simon}}
37143 &lt;/blockquote&gt;
37144
37145 In 2003 the Center launched a worldwide effort named &quot;Operation: Last Chance&quot; in order to collect further information about those Nazis still alive that are potentially subject to prosecution. Although reports issued shortly thereafter credited Austria for initiating large-scale investigations, there has been one case where criticism of Austrian authorities arose recently: The Center has put 92-year old [[Croatia]]n [[Milivoj Asner]] on its 2005 top ten list. Asner fled to Austria in 2004 after Croatia announced it would start investigations in the case of war crimes he may have been involved in. In response to objections about Asner's continued freedom, Austria's federal government has deferred to either extradition requests from Croatia or prosecutorial actions from [[Klagenfurt]], neither of which appears forthcoming (as of June 2005). {{ref|asner}} Extradition is not an option since Asner also holds Austrian [[citizenship]], having lived in the country from 1946 to 1991. {{ref|asner_citizen}}
37146
37147 &lt;!--to be completed--&gt;
37148
37149 ==Austrian political and military leaders in Nazi Germany==
37150 *[[Arthur Seyss-Inquart]]
37151 *[[Ernst Kaltenbrunner]]
37152 *[[Odilo Globocnik]]
37153 *[[Amon GÃļth]]
37154 *[[Lothar Rendulic]]
37155 *[[Alfred Ritter von Hubicki]]
37156 *[[Alexander LÃļhr]]
37157 *[[Franz BÃļhme]]
37158
37159 ==See also==
37160 *''[[The Sound of Music]]'' (an account of the Anschluss, dramatized but based on actual events)
37161 *''[[The Great Dictator]]'' (a fictitious account of the invasion of &quot;Osterlich&quot; by &quot;Tomania&quot;, modeled on the Anschluss)
37162 *[[Third Reich]]
37163 *[[Kurt Schuschnigg]]
37164 *[[History of Austria]]
37165
37166 ==Notes==
37167 &lt;!-- Instructions for adding a footnote:
37168 NOTE: Footnotes in this article use names, not numbers. Please see [[Wikipedia:Footnote3]] for details.
37169 1) Assign your footnote a unique name, for example TheSun_[[9 December]].
37170 2) Add the macro {{ref|TheSun_[[9 December]]}} to the body of the article, where you want the new footnote.
37171 3) Take note of the name of the footnote that immediately proceeds yours in the article body.
37172 4) Add #{{Note|TheSun_[[9 December]]}} to the list, immediately below the footnote you noted in step3.
37173 5) Multiple footnotes to the same reference will not work: you must insert two uniquely-named footnotes.
37174 NOTE: It is important to add the Footnote in the right order in the list.
37175 --&gt;
37176 #{{Note|spelling}} Until the [[German spelling reform of 1996]], ''Anschluss'' was written ''Anschluß'' in German. (See also the article on [[ß]].) In English-language typography and style conventions, &quot;ß&quot; was often transliterated as &quot;ss,&quot; making the spelling currently accepted in German a valid, if not predominant, option before 1996.
37177 #{{Note|encarta_sidebar}} [http://encarta.msn.com/sidebar_761593988/The_Anschluss.html The Anschluss], MSN Encarta. (accessed [[8 July]] [[2005]]),[http://www.britannica.com/ebc/article?tocId=9355453&amp;query=plebiscite&amp;ct= Anschluss], Britannica, (accessed [[8 July]] [[2005]]), some historical sources refer to the Anschluss as an annexation.
37178 #{{Note|encarta}} [http://encarta.msn.com/sidebar_461500064/1938_Austria.html 1938: Austria], MSN Encarta. (accessed [[10 June]] [[2005]]).
37179 #{{Note|wienerzeitung}} &quot;[http://www.wienerzeitung.at/linkmap/personen/miklaspopup.htm Österreichs Weg zum Anschluss im März 1938],&quot; ''Wiener Zeitung'', [[25 May]] [[1998]] (detailed article the on the events of the Anschluss, in German).
37180 #{{note|wienerzeitung_a}} Ibid.
37181 #{{Note|hitlerspeech}} [http://www.spartacus.schoolnet.co.uk/2WWanschluss.htm Anschluss], Spartacus Schoolnet (reactions on the Anschluss).
37182 #{{Note|doew}} &quot;[http://www.doew.at/thema/thema_alt/wuv/maerz38_2/propaganda.html Die propagandistische Vorbereitung der Volksabstimmung],&quot; Austrian Resistance Archive, Vienna, 1988 (accessed [[10 June]] [[2005]]).
37183 #{{note|doew_a}} Ibid.
37184 #{{note|wienerzeitung_b}} See note 2 above.
37185 #{{note|wienerzeitung_c}} See note 2 above.
37186 #{{Note|speech}} Neville Chamberlain, &quot;[http://web.jjay.cuny.edu/~jobrien/reference/ob92.html Statement of the Prime Minister in the House of Commons, [[14 March]] [[1938]]].&quot;
37187 #{{Note|moskauermemo}} [http://www.ibiblio.org/pha/policy/1943/431000a.html Moscow Conference: Joint Four-Nation Declaration], October 1943 (full text of the Moscow Memorandum).
37188 #{{Note|nybooks}} Gerald Stourzh, &quot;[http://www.nybooks.com/articles/4859 Waldheim's Austria],&quot; ''The New York Review of Books'' 34, no. 3 (February 1987).
37189 #{{Note|seyss-inquart}} &quot;[http://www.nizkor.org/hweb/imt/tgmwc/judgment/j-defendants-seyss-inquart.html Judgment, The Defendants: Seyss-Inquart],&quot; The Nizkor Project.
37190 #{{Note|vonpapen}} &quot;[http://www.nizkor.org/hweb/imt/tgmwc/judgment/j-defendants-von-papen.html The Defendants: Von Papen],&quot; The Nizkor Project.
37191 #{{Note|jerusalem}} [http://www.salzburg.com/cgi-bin/sn/printArticle.pl?xm=165129 Short note on SchÃŧssel's interview in the Jerusalem Post (in German)], ''Salzburger Nachrichten'', [[11 November]] [[2000]].
37192 #{{Note|bernhard}} [http://www.kirjasto.sci.fi/bernhard.htm Thomas Bernhard], Books and Writers (article on Bernhard with a short section on Heldenplatz).
37193 #{{Note|historikerkommission}} [http://www.historikerkommission.gv.at/ Austrian Historical Commission].
37194 #{{Note|report}} [http://www.austria.org/press/318.html Press statement on the report of the Austrian Historical Commission] Austrian Press and Information Service, [[28 February]] [[2003]]
37195 #{{Note|Hilberg}} [http://www.normanfinkelstein.com/article.php?pg=3&amp;ar=5 Hilberg interview with the ''Berliner Zeitung,''] as quoted by [[Norman Finkelstein]]'s web site.
37196 #{{Note|Simon}} Efraim Zuroff, &quot;[http://www.dickinson.edu/magazine/fall02/wiesenthal.html Worldwide Investigation and Prosecution of Nazi War Criminals, 2001–2002],&quot; Simon Wiesenthal Center, Jerusalem (April 2002).
37197 #{{Note|asner}} &quot;[http://www.worldjewishcongress.org/nfo/article.cfm?id=2283 Take action against Nazi war criminal Milivoj Asner],&quot; World Jewish Congress, [[19 November]] [[2004]].
37198 #{{Note|asner_citizen}} [http://derstandard.at/?id=2183360 Mutmaßlicher Kriegsverbrecher Asner wird nicht an Zagreb ausgeliefert], [[Der Standard]], [[September 23]], [[2005]]
37199 &lt;!--READ ME!! PLEASE DO NOT JUST ADD NEW NOTES AT THE BOTTOM. See the instructions above on ordering. --&gt;
37200
37201 ==References==
37202 ===Books===
37203 * Bukey, Evan Burr (1986). ''Hitler's Hometown: Linz, Austria, 1908-1945.'' Indiana University Press ISBN 0-253-32833-0.
37204 * Parkinson, F. (ed.) (1989). ''Conquering the Past: Austrian Nazism Yesterday and Today.'' Wayne State University Press. ISBN 0814320546.
37205 * Pauley, Bruce F. (1981). ''Hitler and the Forgotten Nazis: A History of Austrian National Socialism'' University of North Carolina Press. ISBN 0807814563 .
37206 * Scheuch, Manfred (2005). ''Der Weg zum Heldenplatz: eine Geschichte der Ãļsterreichischen Diktatur. 1933-1938.'' ISBN 3825877124.
37207 * Schuschnigg, Kurt (1971). ''The brutal takeover: The Austrian ex-Chancellor's account of the Anschluss of Austria by Hitler''. Weidenfeld and Nicolson. ISBN 0297003216.
37208 * Stuckel, Eva-Maria (2001). ''Österreich, Monarchie, Operette, und Anschluss: Antisemtismus, Faschismus, und Nationalsozialismus im Fadenkreuz von Ingeborg Bachman und Elias Canetti.''
37209
37210 ===Electronic articles and journals===
37211 * [http://www.wienerzeitung.at/linkmap/personen/miklaspopup.htm Österreichs Weg zum Anschluss im März 1938],&quot; ''Wiener Zeitung'', [[25 May]] [[1998]] (detailed article the on the events of the Anschluss, in German).
37212 * [http://www.doew.at/thema/thema_alt/wuv/maerz38_2/propaganda.html Die propagandistische Vorbereitung der Volksabstimmung],&quot; Austrian Resistance Archive, Vienna, 1988 (accessed [[10 June]] [[2005]]).
37213 * [http://encarta.msn.com/sidebar_461500064/1938_Austria.html 1938: Austria], MSN Encarta. (accessed [[10 June]] [[2005]]).
37214 * [http://www.uwm.edu/People/abuchner/crisisyear.htm The Crisis Year of 1934] Buchner, A. From the Destruction of the Socialist Lager to National Socialist Coup Attempt (accessed [[10 June]] [[2005]]).
37215
37216 ==External links==
37217 *[http://www.historikerkommission.gv.at/ Austrian Historical Commission]
37218 *[http://www.bbc.co.uk/history/war/genocide/austria_nazism_01.shtml BBC article by Robert Knight, who served on the Historikercommission]
37219 *[http://www.nybooks.com/articles/4859 exchange in the ''New York Review of Books'' between Gerald Stourzh and Gordon Craig over the latter's review, &quot;Waldheim's Austria&quot;]
37220 *[http://www.ibiblio.org/pha/policy/1943/431000a.html full text of the Moscow Declaration]
37221 *[http://www.wiesenthal.com/ Simon Wiesenthal Center]
37222 *[http://www.aeiou.at/aeiou.film.data.film/f107a.mpg Mpg-video Declaration by Adolf Hitler on the Heldeplatz 2.0MB]
37223 *[http://xroads.virginia.edu/~MA04/wood/mot/html/austria.htm Time magazine coverage of the events of the Anschluss]
37224
37225 [[Category:German loanwords]]
37226 [[Category:History of Austria]]
37227 [[Category:History of Germany]]
37228 [[Category:Nazi Germany]]
37229 [[Category:Vergangenheitsbewältigung]]
37230
37231 [[bg:АĐŊŅˆĐģŅƒŅ]]
37232 [[da:Anschluss]]
37233 [[de:Anschluss (Österreich)]]
37234 [[es:Anschluss]]
37235 [[fi:Anschluss]]
37236 [[fr:Anschluss]]
37237 [[he:אנשלוס]]
37238 [[ia:Anschluss]]
37239 [[it:Anschluss]]
37240 [[ja:ã‚ĸãƒŗã‚ˇãƒĨãƒĢã‚š]]
37241 [[nl:Anschluss]]
37242 [[pl:Anschluss Austrii]]
37243 [[ru:АĐŊŅˆĐģŅŽŅ]]
37244 [[sl:Anschluss]]
37245 [[sv:Anschluss]]
37246 [[tr:AvusturyanÄąn ilhakÄą]]
37247 [[uk:АĐŊŅˆĐģŅŽŅ]]</text>
37248 </revision>
37249 </page>
37250 <page>
37251 <title>American Civil War</title>
37252 <id>863</id>
37253 <revision>
37254 <id>42107265</id>
37255 <timestamp>2006-03-03T21:48:11Z</timestamp>
37256 <contributor>
37257 <ip>68.77.6.128</ip>
37258 </contributor>
37259 <comment>/* Economics */</comment>
37260 <text xml:space="preserve">{{Infobox Military Conflict|
37261 image=[[Image:American Civil War Montage.jpg|300px]]|
37262 caption=(clockwise from upper right) Confederate prisoners at [[Battle of Gettysburg|Gettysburg]]; [[Battle of Fort Hindman]], Arkansas; [[William Rosecrans|Rosecrans]] at [[Battle of Stones River|Stones River]], Tennessee|
37263 conflict=American Civil War|
37264 partof=|
37265 date=[[1861]]-[[1865]]|
37266 place=Principally in the [[Southern United States]]|
37267 Southwestern regions]]|
37268 result=Union victory; Southern states [[Reconstruction|reconstructed]]; slavery abolished|
37269 combatant1=[[United States|United States&lt;br&gt;of America]]&lt;br&gt;[[Image:Us flag large 35 stars.png|100px|]]|
37270 combatant2=[[Confederate States of America|Confederate States&lt;br&gt;of America]]&lt;br&gt;[[Image:3rdnational.png|73px|]]|
37271 commander1=[[Abraham Lincoln]]&lt;br&gt;[[Ulysses S. Grant]]|
37272 commander2=[[Jefferson Davis]]&lt;br&gt;[[Robert E. Lee]]|
37273 strength1=1,556,678 |
37274 strength2=1,064,200|
37275 casualties1='''[[Killed in action|KIA]]:''' 110,100&lt;br&gt;'''Total dead:''' 359,500&lt;br&gt;'''Wounded:''' 275,200|
37276 casualties2='''KIA:''' 74,500&lt;br&gt;'''Total dead:''' 198,500&lt;br&gt;'''Wounded:''' 137,000+&amp;nbsp;|
37277 }}
37278
37279 The '''American Civil War''' (1861&amp;ndash;1865) was a [[civil war]] between the [[United States |United States of America]], called the [[Union (American Civil War)|Union]], and the [[Confederate States of America]], formed by eleven [[Southern United States|Southern states]] that had [[secession|seceded]]&lt;small&gt;&lt;small&gt;[[Confederate States of America#International Diplomacy and Legal Status|[1]]]&lt;/small&gt;&lt;/small&gt; from the Union. The Union won a decisive victory, followed by a period of [[Reconstruction]]. The war produced more than 970,000 casualties (3 percent of population), including approximately 560,000 deaths. The [[Origins of the American Civil War|causes of the war]], the reasons for the outcome, and even [[Naming the American Civil War|the name of the war itself]], are subjects of much controversy, even today.
37280
37281
37282
37283 ==Historiography: Multiple explanations of why War began ==
37284 :''Main articles: [[Origins of the American Civil War]], [[Timeline of events leading to the American Civil War|Timeline of events]]''
37285
37286 The '''origin of the American Civil War''' lay in the complex issues of [[slavery]], [[Second Party System|politics]], disagreements over the scope of [[States' rights]] versus federal power, [[expansionism]], [[sectionalism]], economics, modernization, and competing nationalism of the [[Antebellum]] period. Although there is little disagreement among historians on the details of the events that led to war, there is disagreement on exactly what caused what and the relative importance. There is no consensus on whether the war could have been avoided, or if it should have been avoided.
37287
37288 ===Failure to compromise===
37289 In 1854 the old political system broke down after passage of the [[Kansas-Nebraska Act]]. The Whig Party disappeared, and the new [[United States Republican Party|Republican Party]] arose in its place. It was the nation's first major political party with only sectional appeal; though it had much of the old Whig economic platform, its popularity rested on its commitment to stop the expansion of slavery into new territories. Open warfare in the Kansas Territory, the [[panic of 1857]], and John Brown's raid on Harper's Ferry further heightened sectional tensions and helped Republicans sweep elections in 1860. In 1860, [[U.S. presidential election, 1860|the election of Abraham Lincoln]], who met staunch opposition from Southern slave-owning interests, triggered Southern secession from the union. The new president decided to resort to arms, if necessary, to preserve the nation's territorial integrity.
37290
37291 Historians in the 1930s such as [[James G. Randall]] argued that the rise of mass democracy, the breakdown of the [[Second Party System|old two-party system]], and increasingly virulent and hostile sectional rhetoric made it highly unlikely, if not impossible, to bring about the compromises of the past (such as the [[Missouri Compromise]] and the [[Compromise of 1850]]) necessary to avoid crisis. Although numerous compromises were proposed, none were successful in reuniting the country. One possible &quot;compromise&quot; was peaceful secession agreed to by the United States, which was seriously discussed in late 1860&amp;mdash;and supported by many abolitionists&amp;mdash;but was rejected by both Buchanan's conservative Democrats and the Republican leadership.
37292
37293 ===Southern nationalism: Psychological nationhood===
37294 Most historians agree, following [[Ulrich B. Phillips]], [[Avery Craven]], and [[Eugene Genovese]] that the South had grown apart from the North psychologically and in terms of its value systems. One by one the common elements that bound the nation together were broken. For example the major Protestant denominations split along North-South lines. Fewer travelers or students or businessmen went from one region to the other. The last common elements were the Constitution (which was in dispute after the [[Dred Scott]] ruling of 1857); the political parties (which split along regional lines in 1860), and Congress, which was in constant turmoil after 1856.
37295
37296 ===Slavery as a cause of the War===
37297 Focus on the slavery issue has been cyclical. It was considered the main cause in the 1860&amp;ndash;1890 era. From 1900 to 1960, historians considered anti-slavery agitation to be less important than constitutional, economic, and cultural issues. Since the 1960s historians have returned to an emphasis on slavery as a major cause of the war. Specifically, they note that the South insisted on protecting it and the North insisted on weakening it. A small but militant abolitionist movement existed in the North--a matter of a few thousand advocates. Their insistence that slavery was a sin and slave owners were deeply guilty angered the South. Historians have looked at many slave owners and decided that they felt neither guilt nor shame, but were angry at what they considered unchristian hate speech from abolitionists. By the 1830s there was a widespread ideological defense of the &quot;peculiar institution&quot; everywhere in the South.
37298
37299 As [[United States territorial acquisitions|territorial expansion]] forced the nation to confront the question of whether new territories were to become &quot;slave&quot; or &quot;free,&quot; and as multiplying free states became a majority in the Union, the [[Slave Power]] in national politics waned.
37300
37301 ===Economics===
37302 The North and South did have different economies but they were complementary and not in competition. The South made money by exporting cotton (and other unique crops like tobacco). The North made money by exporting food and manufactured items. Many northern business interests were closely tied to the Southern economy and pleaded for union and compromise. Some Southerners thought they paid too much in tariffs--but they themselves had written and voted for the tariff laws in effect.
37303
37304 The cotton-growing export business or &quot;[[King Cotton]],&quot; as it was touted, was so important to the world economy, southerners argued, that they could stand alone. Indeed, being tied to the North was a hindrance and an economic burden. The South would do better by trading directly with Europe and avoiding extortionate Yankee middlemen.
37305
37306 ===Ideologies===
37307 In the view of many northern Republicans, the [[Slave Power]] ruled the South, not democracy. This &quot;Slave Power&quot; was a small group of very wealthy slave owners, especially cotton planters, who dominated the politics and society of the South. However, historians more recently have emphasized that the South was much more democratic than the Republicans of North believed.
37308 Both North and South believed strongly to republican values of democracy and civic virtue. But their conceptualizations were diverging. Each side though the other was aggressive, and was violating both the Constitution and the core values of American republicanism. Nationalism was the dominant force in Europe in the 19th century and likewise in America. The South was much more explicit in defining nationalism as a regional characteristic. The North paid less attention to nationalism before 1860, but then focused its mind on it and stressed the whole country, North and South, was the unit of nationalism.
37309
37310 This economic differentiation had social and political consequences beyond the issue of slavery itself; for instance, Pennsylvania politicians pushed for a protective tariff to help the iron industry, while the cotton-exporting South wanted to keep the existing policy of nearly free trade.
37311
37312 At a deeper level industrialization in the Northeast and farming in the Midwest depended on free labor, which could not exist alongside slave labor, as Lincoln kept emphasizing. The nation had to be all free or all slave, said Lincoln.
37313 (Historians [[Charles Beard|Charles and Mary Beard]] went so far as to argue in 1928 that this sectional conflict was a &quot;Second American Revolution&quot;&amp;mdash;a revolutionary watershed in the rise of modern industrial society in the United States.)
37314
37315 ===States Rights===
37316 The States' rights debate cut across the issues. Southern politicians argued that the federal government had no power to prevent slaves from being carried into new territories, but they also demanded federal jurisdiction over slaves who escaped into the North; Northern politicians took reversed, though equally contradictory, stances on these issues.
37317
37318
37319 ===Slavery in the Territories===
37320 The specific political crisis that culminated in secession and civil war stemmed from a dispute over the expansion of slavery into new territories. The reason was that Congress had power over slavery in the territories, but not in the states. With new territories being formed--especially Kansas--the issue of slaver had to be confronted. This argument grew out of the acquisition of vast new lands during the [[Mexican War]] (1846&amp;ndash;48). Free-state politicians such as David Wilmot, who personally had no sympathy for abolitionism, feared that slaves would provide too much competition for free labor, and thus effectively keep free-state migrants out of newly opened territories. Slaveholders felt that any ban on slaves in the territories was a discrimination against their peculiar form of property, and would undercut both the financial value of slaves and the institution itself. (Slaves comprised the second most valuable form of property in the South, after real estate.) In Congress, the end of the Mexican War was overshadowed by a fight over the [[Wilmot Proviso]], a provision that Wilmot tried (and failed) to enact to bar slavery from all lands acquired in the conflict.
37321
37322 The dispute led to open warfare after the [[Kansas]] Territory was organized in the [[Kansas-Nebraska Act]] of 1854. This act repealed the prohibition on slavery there under the Missouri Compromise of 1820, and put the fate of slavery in the hands of the territory's settlers, a process known as &quot;popular sovereignty.&quot; Proslavery Missourians expected that Kansas, due west of their state, would naturally become a slave state, and were alarmed by an organized migration of antislavery New Englanders. Soon heavily armed &quot;border ruffians&quot; from Missouri battled antislavery forces under [[John Brown]], among other leaders. Hundreds were killed or wounded. Southern congressmen, perceiving a Northern conspiracy to keep slavery out of Kansas, insisted that it be admitted as a slave state. Northerners, pointing to the large and growing majority of antislavery voters there, denounced this effort. By 1860, sectional divisions had grown deep and bitter.
37323 [[Image:Lincolnhead.jpg|frame|left|'''[[Abraham Lincoln]]'''&lt;br&gt;16th President (1861&amp;ndash;1865)]]
37324
37325 ===Southern fears of Modernity===
37326 Southern secession was triggered by the election of Republican [[Abraham Lincoln]] because it was feared that he would make good on his promise to stop the expansion of slavery and put it on a course toward extinction. If not Lincoln, then sooner or later another Yankee, many Southerners said; it was time to quit the Union. The slave states had lost the balance of power in the Electoral College and the Senate, and were facing a future as a perpetual minority. In a broader sense the North was rapidly modernizing its economy and its world view; slavery had no role in modern America. Historian James McPherson (1983 p 283) explains:
37327
37328 {{Quotation|When secessionists protested in 1861 that they were acting to preserve traditional rights and values, they were correct. They fought to preserve their constitutional liberties against the perceived Northern threat to overthrow them. The South's concept of republicanism had not changed in three-quarters of a century; the North's had. ... The ascension to power of the Republican Party, with its ideology of competitive, egalitarian free-labor capitalism, was a signal to the South that the Northern majority had turned irrevocably towards this frightening, revolutionary future.|James McPherson|&quot;Antebellum Southern Exceptionalism: A New Look at an Old Question,&quot; Civil War History 29 (Sept. 1983)}}
37329
37330 ===Secession===
37331 Before Lincoln took office, seven states seceded from the Union, and established an independent Southern government, the [[Confederate States of America]] on [[February 9]], [[1861]]. They took control of federal forts and property within their boundaries, with little resistance from President Buchanan. By seceding, the rebel states gave up any claim to the Western territories that were in dispute, canceled any obligation for the North to return fugitive slaves to the Confederacy, and assured easy passage in Congress of many bills and amendments they had long opposed.
37332
37333 The Civil War began when, under orders from [[President of the Confederate States | Confederate President]] [[Jefferson Davis]], Confederate General [[P.G.T. Beauregard]] opened fire upon [[Fort Sumter]] in [[Charleston, South Carolina]], on [[April 12]], [[1861]]. There were no casualties from enemy fire in this battle.
37334
37335 ==Division of the country==
37336 ===The Union States ===
37337 {{main|Union (American Civil War)}}
37338 There were 23 Union States: [[California]], [[Connecticut]], [[Delaware]], [[Illinois]], [[Indiana]], [[Iowa]], [[Kansas]], [[Kentucky]], [[Maine]], [[Maryland]], [[Massachusetts]], [[Michigan]], [[Minnesota]], [[Missouri]], [[New Hampshire]], [[New Jersey]], [[New York]], [[Ohio]], [[Oregon]], [[Pennsylvania]], [[Rhode Island]], [[Vermont]], and [[Wisconsin]]. The Union counted [[Virginia]] as well, and added [[Nevada]] and [[West Virginia]]. It added [[Tennessee]], [[Louisiana]], and other rebel states as soon as they were reconquered.
37339
37340 The territories of [[Colorado Territory|Colorado]], [[Dakota Territory|Dakota]], [[Nebraska Territory|Nebraska]], [[Nevada Territory|Nevada]], [[New Mexico Territory|New Mexico]], [[Utah Territory|Utah]], and [[Washington Territory|Washington]] also fought on the Union side. There was a civil war inside the [[Oklahoma territory]].
37341
37342 ===The Confederacy===
37343 {{main|Confederate States of America}}
37344
37345 Seven states seceded by March 1861:
37346 *[[South Carolina]] ([[December 21]] [[1860]]),
37347 *[[Mississippi]] ([[January 9]] [[1861]]),
37348 *[[Florida]] ([[January 10]] [[1861]]),
37349 *[[Alabama]] ([[January 11]] [[1861]]),
37350 *[[Georgia (U.S. state)|Georgia]] ([[January 19]] [[1861]]),
37351 *[[Louisiana]] ([[January 26]] [[1861]]),
37352 *[[Texas]] ([[February 1]] [[1861]]).
37353
37354 These states of the [[Deep South]], where [[slavery]] and [[cotton]] were most dominant, formed the Confederate States of America ([[February 4]] [[1861]]), with [[Jefferson Davis]] as president, and a governmental structure closely modeled on the [[U.S. Constitution]] ''(see also: [[Confederate States Constitution]])''.
37355 [[Image:Civilwarmap2.jpg|250px|thumb|right|Map of the division of the states during the Civil War. Blue represents Union states; light blue, Union states that permitted [[Slavery in Colonial America|slavery]]; gray, Confederate states; green, Territories.]]
37356 After the surrender of [[Fort Sumter]], [[April 13]], [[1861]], Lincoln called for troops from all states to put down the insurrection, resulting in the secession of four more states:
37357
37358 *[[Virginia]] ([[April 17]] [[1861]]),
37359 *[[Arkansas]] ([[May 6]] [[1861]]),
37360 *[[North Carolina]] ([[May 20]] [[1861]]), and
37361 *[[Tennessee]] ([[June 8]] [[1861]]).
37362
37363 ===Border states===
37364 ''Main article: [[Border states (Civil War)]]''
37365
37366 Along with the northwestern portion of Virginia (whose residents did not wish to secede and eventually entered the Union in 1863 as [[West Virginia]]), four of the five northernmost &quot;[[slave state]]s&quot; ([[Maryland]], [[Delaware]], [[Missouri]], and [[Kentucky]]) did not secede, and became known as the [[Border States (Civil War)|Border States]]. There was considerable anti-war or &quot;[[Copperhead]]&quot; sentiment in the southern parts of Ohio, Indiana, and Illinois, and some men volunteered for Confederate service; however much larger numbers, led by [[John A. Logan]], joined the Union army.
37367
37368 [[Maryland]] had numerous pro-Confederate officials, but after [[Baltimore riot of 1861|rioting in Baltimore]] and other events had prompted a Federal declaration of [[martial law]], Union troops moved in, and arrested the pro-Confederates. Both [[Missouri]] and [[Kentucky]] remained in the Union, but factions within each state organized governments in exile that were recognized by the CSA.
37369
37370 In Missouri, an elected convention on secession voted decisively to remain within the Union. However, pro-Southern Governor [[Claiborne F. Jackson]] called out the state militia, which was attacked in St. Louis by federal forces under General [[Nathaniel Lyon]], who chased the governor and the rest of the State Guard to the southwestern corner of the state. (''See also: [[Missouri secession]]'').
37371
37372 [[Image:Map of CSA 3.png|thumb|300px|Map of territory claimed by the Confederacy]]
37373
37374 Although Kentucky did not secede, for a time it declared itself [[neutral]]. During a brief invasion by Confederate forces, Southern sympathizers organized a secession convention, inaugurated a Confederate Governor, and gained recognition from the Confederacy. However, the military occupation of [[Columbus, Kentucky | Columbus]] by Confederate General [[Leonidas Polk]] in September 1861 turned general popular opinion in Kentucky against the Confederacy, and the state subsequently reaffirmed its loyal status and expelled the Confederate government.
37375
37376 Residents of the northwestern counties of Virginia organized a secession from Virginia and entered the Union in 1863 as [[West Virginia]]. Similar secessions were supported in some other areas of the Confederacy (such as eastern [[Tennessee]]), but were suppressed by declarations of martial law by the Confederacy.
37377 &lt;!-- California not unique in having split sentiments
37378 [[History of California#California and the Civil War|California]] was a [[free state]] and a part of the Union. Lincoln had won a [[plurality]] there, but there were a number of Southern sympathizers. 2% of its votes went to the Southern Democrat candidate, [[John C. Breckinridge]]. California's soldiers were kept under state control and were used to keep the land routes between the Mississippi and the state open. California gold helped finance the Union war effort.[http://www.militarymuseum.org/HistoryCW.html]
37379 --&gt;
37380
37381 ==Narrative summary: 1861 to Fort Sumter==
37382 [[Image:American Civil War Battles by Theater, Year.png|thumb|right|350px|Battles of the American Civil War by Theater, Year]]
37383 Lincoln's victory in the [[U.S. presidential election, 1860|presidential election of 1860]] triggered South Carolina's secession from the Union. By [[February 1]], [[1861]], six more Southern states had seceded. On [[February 7]], the seven states adopted a provisional constitution for the Confederate States of America and established their capital at [[Montgomery, Alabama]]. The pre-war February [[peace conference of 1861]] met in Washington, as one last attempt to avoid war; it failed. The remaining southern states as yet remained in the Union. Confederate forces seized all but three federal forts within their boundaries (they did not take Fort Sumter); President Buchanan made no military response, but governors in Massachusetts, New York and Pennsylvania began secretly buying weapons and training militia units to ready them for immediate action.
37384
37385 On [[March 4]], [[1861]], Abraham Lincoln was sworn in. In his [[Inauguration|inaugural address]], he argued that the Constitution was a ''more perfect union'' than the earlier [[Articles of Confederation|Articles of Confederation and Perpetual Union]], that it was a binding contract, and called the secession &quot;legally void&quot;. He stated he had no intent to invade southern states, but would use force to maintain possession of federal property. His speech closed with a plea for restoration of the bonds of union. The South did send delegations to Washington and offered to pay for the federal properties, but they were turned down. Lincoln refused to negotiate with any Confederate agents because he insisted the Confederacy was not a legitimate government.
37386
37387 On [[April 12]], Confederate soldiers fired upon the Federal troops stationed at [[Fort Sumter]] in [[Charleston, South Carolina]], until the troops surrendered. Lincoln called for all of the states in the Union to send troops to recapture the forts and preserve the Union. Most Northerners hoped that a quick victory for the Union would crush the nascent rebellion, and so Lincoln only called for volunteers for 90 days. Four states, Tennessee, Arkansas, North Carolina, and&amp;mdash;most importantly, Virginia&amp;mdash;which had repeatedly rejected Confederate overtures now decided that they could not send forces against the seceding states. They seceded and to reward Virginia the Confederate capital was moved to [[Richmond, Virginia]], a highly vulnerable location at the end of the supply line.
37388
37389 Even though the Southern states had seceded, there was considerable anti-secessionist sentiment within several of the seceding states. Eastern Tennessee, in particular, was a hotbed for pro-Unionism. [[Winston County, Alabama]] issued a resolution of secession from the state of Alabama. The ''[[Red Strings (American politics)|Red Strings]]'' were a prominent Southern anti-secession group.
37390
37391 [[Winfield Scott]] created the [[Anaconda Plan]] to win the war with as little bloodshed as possible. His idea was that a [[Union blockade]] would strangle the rebel economy, then capture of the Mississippi would split the South. Lincoln adopted the plan but overruled Scott's warnings against an immediate attack on Richmond.
37392
37393 ===Naval war and blockade===
37394 {{see details|Naval Battles of the American Civil War}}[[Union blockade]] and [[Confederate States Navy]]
37395 In May 1861 Lincoln proclaimed the [[Union blockade]] of all southern ports, which shut down nearly all international traffic and most local port-to-port traffic. Although few naval battles were fought and few men were killed, the blockade shut down [[King Cotton]] and ruined the southern economy. British investors built small, very fast &quot;blockade runners&quot; that brought in military supplies (and civilian luxuries) from Cuba and the Bahamas and took out some cotton and tobacco. When the blockade captured one the ship and cargo were sold and the proceeds given to the Union sailors. The crews were British, so when they were captured they were released and not held as prisoners of war. The most famous naval battle was the [[Battle of Hampton Roads]] (often called &quot;the Battle of the ''Monitor'' and the ''Merrimac''&quot;) in March 1862, in which Confederate efforts to break the blockade were frustrated. Other naval battles included [[Battle of Island Number Ten | Island No. 10]], [[Battle of Memphis | Memphis]], [[Battle of Drewry's Bluff | Drewry's Bluff]], [[Battle of Fort Hindman | Arkansas Post]], and [[Battle of Mobile Bay | Mobile Bay]].
37396
37397 ===Eastern Theater 1861&amp;ndash;1863===
37398 {{see details|Eastern Theater of the American Civil War}}
37399 Because of the fierce resistance of a few initial Confederate forces at [[Manassas, Virginia]], in July 1861, a march by Union troops under the command of Maj. Gen. [[Irvin McDowell]] on the Confederate forces there was halted in the [[First Battle of Bull Run]], or ''First Manassas'', whereupon they were forced back to [[Washington, D.C.]], by Confederate troops under the command of Generals [[Joseph E. Johnston]] and P.G.T. Beauregard. It was in this battle that Confederate General [[Stonewall Jackson|Thomas Jackson]] received the name of &quot;Stonewall&quot; because he stood like a stone wall against Union troops. Alarmed at the loss, and in an attempt to prevent more slave states from leaving the Union, the [[Congress of the United States|U.S. Congress]] passed the [[Crittenden-Johnson Resolution]] on [[July 25]] of that year, which stated that the war was being fought to preserve the Union and not to end [[slavery]].
37400
37401 Major General [[George B. McClellan]] took command of the Union [[Army of the Potomac]] on [[July 26]] (he was briefly general-in-chief of all the Union armies, but was subsequently relieved of that post in favor of Maj. Gen. [[Henry W. Halleck]]), and the war began in earnest in [[1862]].
37402
37403 Upon the strong urging of President Lincoln to begin offensive operations, McClellan invaded Virginia in the spring of 1862 by way of the [[Virginia Peninsula|peninsula]] between the [[York River (Virginia)|York River]] and [[James River (Virginia)|James River]], southeast of Richmond. Although McClellan's army reached the gates of Richmond in the [[Peninsula Campaign]], [[Joseph E. Johnston]] halted his advance at the [[Battle of Seven Pines]], then [[Robert E. Lee]] defeated him in the [[Seven Days Battles]] and forced his retreat. McClellan was stripped of many of his troops to reinforce [[John Pope (military officer)|John Pope]]'s Union [[Army of Virginia]]. Pope was beaten spectacularly by Lee in the [[Northern Virginia Campaign]] and the [[Second Battle of Bull Run]] in August.
37404
37405 [[Image:conf_dead_chancellorsville.jpg|thumb|300px|Confederate dead behind the stone wall of Marye's Heights, Fredericksburg, Virginia, killed during the Battle of Chancellorsville, May 1863.]]
37406
37407 Emboldened by Second Bull Run, the Confederacy made its first invasion of the North, when General Lee led 55,000 men of the [[Army of Northern Virginia]] across the [[Potomac River]] into [[Maryland]] on [[September 5]]. Lincoln then restored Pope's troops to McClellan. McClellan and Lee fought at the [[Battle of Antietam]] near [[Sharpsburg, Maryland]], on [[September 17]] [[1862]], the bloodiest single day in American history. Lee's army, checked at last, returned to Virginia before McClellan could destroy it. Antietam is considered a Union victory because it halted Lee's invasion of the North and provided justification for Lincoln to announce his [[Emancipation Proclamation]].
37408
37409 When the cautious McClellan failed to follow up on Antietam, he was replaced by Maj. Gen. [[Ambrose Burnside]]. Burnside suffered near-immediate defeat at the [[Battle of Fredericksburg]] on [[December 13]] [[1862]], when over ten thousand Union soldiers were killed or wounded. After the battle, Burnside was replaced by Maj. Gen. [[Joseph Hooker|Joseph &quot;Fighting Joe&quot; Hooker]]. Hooker, too, proved unable to defeat Lee's army; despite outnumbering the Confederates by more than two to one, he was humiliated in the [[Battle of Chancellorsville]] in May 1863. He was replaced by Maj. Gen. [[George G. Meade]] during Lee's second invasion of the North, in June. Meade defeated Lee at the [[Battle of Gettysburg]] ([[July 1]]&amp;ndash;[[July 3|3]], [[1863]]), the largest battle in North American history, which is sometimes considered the war's [[Turning point of the American Civil War|turning point]]. Lee's army suffered 28,000 casualties (versus Meade's 23,000), again forcing it to retreat to Virginia, never to launch a full-scale invasion of the North again. Lincoln was angry that Meade failed to intercept Lee's retreat, and decided to turn to the Western Theater for new leadership.
37410
37411 On the use of balloons, see [[Aerial warfare]] section on the American Civil War.
37412
37413 ===Western Theater 1861&amp;ndash;1863===
37414 {{see details|Western Theater of the American Civil War}}
37415 While the Confederate forces had numerous successes in the Eastern theater, they crucially failed in the West. They were driven from Missouri early in the war as result of the [[Battle of Pea Ridge]]. [[Leonidas Polk]]'s invasion of [[Kentucky]] enraged the citizens there who previously had declared neutrality in the war, turning that state against the Confederacy.
37416
37417 [[Nashville, Tennessee]], fell to the Union early in 1862. Most of the [[Mississippi River|Mississippi]] was opened with the taking of [[Battle of Island Number Ten|Island No. 10]] and [[New Madrid, Missouri]], and then [[Memphis, Tennessee]]. [[New Orleans, Louisiana]], was captured in May 1862, allowing the Union forces to begin moving up the Mississippi as well. Only the fortress city of [[Vicksburg, Mississippi]], prevented unchallenged Union control of the entire river.
37418
37419 [[Braxton Bragg]]'s second Confederate invasion of Kentucky was repulsed by [[Don Carlos Buell]] at the confused and bloody [[Battle of Perryville]] and he was narrowly defeated by [[William S. Rosecrans]] at the [[Battle of Stones River]] in [[Tennessee]].
37420
37421 The one clear Confederate victory in the West was the [[Battle of Chickamauga]] in [[Georgia (U.S. state)|Georgia]], near the [[Tennessee]] border, where Bragg, reinforced by the corps of [[James Longstreet]] (from Lee's army in the east), defeated Rosecrans, despite the heroic defensive stand of [[George Henry Thomas]], and forced him to retreat to [[Chattanooga, Tennessee|Chattanooga]], which Bragg then besieged.
37422
37423 The Union's key strategist and tactician in the west was Maj. Gen. [[Ulysses S. Grant]], who won victories at: Forts [[Battle of Fort Henry|Henry]] and [[Battle of Fort Donelson|Donelson]], by which the Union seized control of the [[Tennessee River |Tennessee]] and [[Cumberland River|Cumberland]] Rivers; [[Battle of Shiloh|Shiloh]]; the [[Battle of Vicksburg]], cementing Union control of the Mississippi River and considered one of the [[Turning point of the American Civil War |turning points]] of the war; and the [[Battle of Chattanooga III|Battle of Chattanooga, Tennessee]], driving Confederate forces out of Tennessee and opening an invasion route to [[Atlanta, Georgia |Atlanta]] and the heart of the Confederacy.
37424
37425 ===Trans-Mississippi Theater 1861&amp;ndash;1865===
37426 {{see details| Trans-Mississippi Theater of the American Civil War}}
37427 Though geographically isolated from the battles to the east, a number of small-scale military actions took place west of the Mississippi River. Confederate incursions into Arizona and New Mexico were repulsed in 1862. Guerilla activity turned much of Missouri and Indian Territory (Oklahoma) into a battleground. Late in the war the Federal [[Red River Campaign]] was a failure. Texas remained in Confederate hands throughout the war, but was cut off after the capture of [[Vicksburg]] in 1863 gave the Union control of the Mississippi River.
37428
37429 ===End of the War 1864&amp;ndash;1865===
37430 [[Image:President-Jefferson-Davis.jpg|thumb|left|[[Jefferson Davis]], first and only President of the Confederate States of America]]
37431
37432 At the beginning of 1864, Lincoln made Grant commander of all Union armies. Grant made his headquarters with the Army of the Potomac, and put Maj. Gen. [[William Tecumseh Sherman]] in command of most of the western armies. Grant understood the concept of [[total war]] and believed, along with Lincoln and Sherman, that only the utter defeat of Confederate forces and their economic base would bring an end to the war. He devised a coordinated strategy that would strike at the heart of Confederacy from multiple directions: Generals Grant, Meade, and [[Benjamin Franklin Butler (politician)|Benjamin Butler]] would move against Lee near Richmond; General [[Franz Sigel]] (and later [[Philip Sheridan]]) would [[Valley Campaigns of 1864|invade the Shenandoah Valley]]; General Sherman would and capture [[Atlanta]] and march to the sea; Generals [[George Crook]] and [[William W. Averell]] would operate against railroad supply lines in [[West Virginia]]; and General [[Nathaniel Prentiss Banks|Nathaniel Banks]] would capture [[Mobile, Alabama]].
37433
37434 Union forces in the East attempted to maneuver past Lee and fought several battles during that phase (&quot;Grant's [[Overland Campaign]]&quot;) of the Eastern campaign. An attempt to outflank Lee from the south failed under Butler, who was trapped inside the [[Bermuda Hundred Campaign | Bermuda Hundred]] river bend. Grant was tenacious and, despite astonishing losses (over 66,000 casualties in six weeks), kept pressing Lee's Army of Northern Virginia back to Richmond. He pinned down the Confederate army in the [[Siege of Petersburg]], where the two armies engaged in [[trench warfare]] for over nine months.
37435
37436 Grant finally found a commander, General [[Philip Sheridan]], aggressive enough to prevail in the [[Valley Campaigns of 1864]]. Sheridan proved to be more than a match for [[Jubal Anderson Early|Jubal Early]], and defeated him in a series of battles, including a final decisive defeat at [[Battle of Cedar Creek|Cedar Creek]], Sheridan then proceeded to destroy the agricultural base of the Valley, a strategy similar to the tactics Sherman would later employ in Georgia.
37437
37438 Meanwhile, Sherman marched from [[Chattanooga]] to Atlanta, defeating Confederate Generals [[Joseph E. Johnston]] and [[John B. Hood]]. The fall of Atlanta, on September 2, 1864, was a significant factor in the re-election of Abraham Lincoln, as President of the Union. Leaving Atlanta, and his base of supplies, Sherman's army marched with an unclear destination, laying waste to about 20% of the farms in Georgia in his celebrated &quot;[[Sherman's March to the Sea|March to the Sea]]&quot;, and reaching the [[Atlantic Ocean]] at [[Savannah, Georgia]] in December 1864. Burning plantations as they went, Sherman's army was followed by thousands of freed slaves. When Sherman turned north through South Carolina and North Carolina to approach the Virginia lines from the south, it was the end for Lee and his men, and for the Confederacy.
37439
37440 Lee attempted to escape from the besieged Petersburg and link up with Johnston in [[North Carolina]], but he was overtaken by Grant. He surrendered his Army of Northern Virginia on [[April 9]], [[1865]], at [[Appomattox Court House]]. Johnston surrendered his troops to Sherman shortly thereafter at a [[Bennett Place|local family's farmhouse]] in [[Durham, North Carolina]]. The [[Battle of Palmito Ranch]], fought on [[May 13]], [[1865]], in the far south of [[Texas]], was the last Civil War land battle and ended, ironically, with a Confederate victory. All Confederate land forces surrendered by June 1865.
37441
37442 ==Analysis of the outcome==
37443 Why the Union prevailed (or why the Confederacy was defeated) in the Civil War has been a subject of extensive analysis and debate.
37444
37445 Could the South have won? A significant number of scholars believe that the Union held an insurmountable advantage over the Confederacy in terms of industrial strength, population, and the determination to win. Confederate actions, they argue, could only delay defeat. Southern historian [[Shelby Foote]] expressed this view succinctly in Ken Burns's television series on the Civil War: &quot;I think that the North fought that war with one hand behind its back.... If there had been more Southern victories, and a lot more, the North simply would have brought that other hand out from behind its back. I don't think the South ever had a chance to win that War.&quot; [Ward 1990 p 272]
37446
37447 Other historians, however, suggest that the South had a chance to win its independence. As James McPherson has observed, the Confederacy remained on the defensive, which required fewer military resources. The Union, committed to the strategic offensive, faced enormous manpower demands that it often had difficulty meeting. War weariness among Union civilians mounted along with casualties, in the long years before Union advantages proved decisive. Thus, the inevitability of Union victory remains hotly contested among scholars.
37448
37449 The goals were not symmetric. To win independence the South had to convince the North it could not win, but it did not have to invade the North. To restore the Union the North had to conquer vast stretches of territory. In the short run (a matter of months) the two sides were evenly matched. But in the long run (a matter of years) the North had advantages that increasingly came into play.
37450
37451 Both sides had long-term advantages but the Union had more of them. The Union had to control the entire coastline, defeat all the main Confederate armies, seize Richmond, and control most of the population centers. As the occupying force they had to station hundreds of thousands of soldiers to control railroads, supply lines, and major towns and cites. The long-term advantages widely credited by historians to have contributed to the Union's success include:
37452 [[Image:Advantages.jpg|right|350px|US economic advantages over CSA]]
37453 *The more industrialized economy of the North, which aided in the production of arms, munitions and supplies, as well as finances, and transportation. The graph shows the relative advantage of the USA over the CSA.
37454 *A [[Second Party System| party system]] that enabled the Republicans to mobilize soldiers and support at the grass roots, even when the war became unpopular. The Confederacy deliberately did not use parties.
37455 *The Union population was 22 million and the South 9 million in 1861; the disparity grew as the Union controlled more and more southern territory with garrisons, and cut off the trans-Mississippi part of the Confederacy.
37456 *Excellent railroad links between Union cities, which allowed for the quick and cheap movement of troops and supplies. Transportation was much slower and more difficult in the South which was unable to augment its much smaller system or repair damage, or even perform routine maintenance.
37457 *The Union devoted much more of its resources to medical needs, thereby overcoming the unhealthy disease environment that sickened (and killed) more soldiers than combat did.
37458 *The Union at the start controlled over 80% of the shipyards, steamships, river boats, and the Navy. It augmented these by a massive shipbuilding program. This enabled the Union to control the river systems and to blockade the entire southern coastline.
37459 *The Union's more established government, particularly a mature executive branch which accumulated even greater power during wartime, may have resulted in less regional infighting and a more streamlined conduct of the war. Failure of Davis to maintain positive and productive relationships with state governors damaged the Confederate president's ability to draw on regional resources.
37460 *The Confederacy's tactic of engaging in major battles at the cost of heavy manpower losses, when it could not easily replace its losses.
37461 *The Confederacy's [http://www.findarticles.com/p/articles/mi_m0HZY/is_1_14/ai_78397581 failure] to fully use its advantages in guerrilla warfare against Union communication and transportation infrastructure. However, as Lee warned, such warfare would prove devastating to the South, and (with the exception of Confederate partisans in Missouri) Confederate leaders shrank from it.
37462 *Despite the Union's many tactical blunders like the [[Seven Days Battle]], those commited by Confederate generals, such as Lee's miscalculations at the [[Battle of Gettysburg]] and [[Battle of Antietam]], were far more serious&amp;mdash;if for no other reason than that the Confederates could so little afford the losses.
37463 *Lincoln proved more adept than Davis in replacing unsuccessful generals with better ones.
37464 *Strategically the location of the capital Richmond tied Lee to a highly exposed position at the end of supply lines. (Loss of Richmond, everyone realized, meant loss of the war.)
37465 *Lincoln grew as a grand strategist, in contrast to Davis. The Confederacy never developed an overall strategy. It never had a plan to deal with the blockade. Davis failed to respond in a coordinated fashion to serious threats, such as Grant's campaign against Vicksburg in 1863 (in the face of which, he allowed Lee to invade Pennsylvania).
37466 *The Confederacy's failure to win diplomatic or military support from any foreign powers. Its [[King Cotton]] misperception of the world economy led to bad diplomacy, such as the refusal to ship cotton before the blockade started.
37467 * Most important, the Union had the will to win, and leaders like Lincoln, Seward, Stanton, Grant, and Sherman would do whatever it took to achieve victory. The Confederacy, as Beringer et al (1986) argue, may have lacked the total commitment needed to win. It took time, however, for leaders such as Grant, Sherman, and Sheridan to emerge; in the meantime, Union public opinion wavered, and Lincoln worried about losing the election of 1864, until victories in the Shenandoah Valley and Atlanta made victory seem likely.
37468
37469 ==Major land battles==
37470 There were as many as 10,000 hostile engagements during the war. The costliest and most significant are listed in [[Battles of the American Civil War]].
37471
37472 ==Civil War leaders and soldiers==
37473 [[Image:Lincoln and Davis Statue.jpg|thumb|right|250px|Statues of [[Abraham Lincoln]] and [[Jefferson Davis]] at [[Vicksburg National Military Park]].]]
37474
37475 One of the reasons that the U.S. Civil War wore on as long as it did and the battles were so fierce was that most important generals on both sides had formerly served in the [[United States Army]]&amp;mdash;some, including [[Ulysses S. Grant]] and [[Robert E. Lee]], during the [[Mexican-American War]] between 1846 and 1848. Most were graduates of the [[United States Military Academy]] at West Point.
37476 Southern military commanders and strategists included [[Jefferson Davis]], [[Robert E. Lee]], [[Joseph E. Johnston]], [[Stonewall Jackson|Thomas J. &quot;Stonewall&quot; Jackson]], [[James Longstreet]], [[P.G.T. Beauregard]], [[John Mosby]], [[Braxton Bragg]], [[John Bell Hood]], [[JEB Stuart|James Ewell Brown (JEB) Stuart]], [[William Mahone]], [[Judah P. Benjamin]], [[Jubal Anderson Early|Jubal Early]], and [[Nathan Bedford Forrest]].
37477
37478 Northern military commanders and strategists included [[Abraham Lincoln]], [[Edwin M. Stanton]], [[Ulysses S. Grant]], [[William Tecumseh Sherman]], [[George H. Thomas]], [[George B. McClellan]], [[Henry W. Halleck]], [[Joseph Hooker]], [[Ambrose Burnside]], [[Irvin McDowell]], [[Winfield Scott]], [[Philip Sheridan]], [[George Crook]], [[George Armstrong Custer]], [[George G. Meade]], and [[Winfield Hancock]]
37479
37480 After 1980, scholarly attention turned to ordinary soldiers, and to women and African Americans involved with the War. As James McPherson observed &quot;The profound irony of the Civil War was that Confederate and Union soldiers ... interpreted the heritage of 1776 in opposite ways. Confederates fought for liberty and independence from what they regarded as a tyrannical government; Unionists fought to preserve the nation created by the founders from dismemberment and destruction.&quot;(McPherson 1994 p 24)
37481
37482 ==The Question of Slavery==
37483 Given the painfulness of the historical memory of slavery for many Americans, its role in the war remains controversial to this day. To understand its place in the conflict, it is necessary to divide the issue in two: slavery as a motivation for secession, and abolition as a Union war aim.
37484
37485 In the weeks and months preceding the secession of the Confederate states, Southern leaders spoke openly about their desire to preserve slavery, and their fears for the &quot;peculiar institution&quot; if the South remained within the Union. Almost all of the ordinances of secession cited the preservation of slavery as a primary, even the foremost, reason for departure from the Union. And yet many individual Southern soldiers fought for reasons quite apart from the defense of slavery: to protect their families and communities, to defend their home states, and out of a nascent sense of nationality.
37486
37487 On the Union side, Lincoln initially declared his purpose in prosecuting the war to be the preservation of the Union, not emancipation. He had no wish to alienate the thousands of slaveholders in the Union border states. The long war, however, had a radicalizing effect on federal policies. With the [[Emancipation Proclamation]], announced in September 1862 and put into effect four months later, Lincoln adopted the abolition of the [[Slave Power]] as a second mission&amp;mdash;that is slaves owned by rebels had to be taken away from them and freed. One goal was to destroy the economic basis of the Confederate leadership class, and another goal was to actually liberate the 4 million slaves, which was accomplished by 1865.
37488
37489 The Emancipation Proclamation declared all slaves held in territory then under Confederate control to be &quot;then, thenceforth, and forever free,&quot; but did not affect slaves in areas under Union control. It did, however, show the Union that slavery's days were numbered, increasing abolitionist support in the North. The border states (except Kentucky) abolished slavery on their own.
37490
37491 ==Foreign diplomacy==
37492 Because of the Confederacy's attempt to create a new state, recognition and support from the European powers were critical to its prospects. The Union, under [[United States Secretary of State|Secretary of State]] [[William Henry Seward]] attempted to block the Confederacy's efforts in this sphere. The Confederates hoped that the importance of the cotton trade to Europe (the idea of [[cotton diplomacy]]) and shortages caused by the war, along with early military victories, would enable them to gather increasing European support and force a turn away from neutrality.
37493
37494 President Lincoln's decision to announce a [[Union blockade|blockade of the Confederacy]], a clear act of war, enabled Britain, followed by other European powers, to announce their neutrality in the dispute. This enabled the Confederacy to begin to attempt to gain support and funds in Europe. President Jefferson Davis had picked [[Robert Toombs]] of [[Georgia (U.S. state)|Georgia]] as his first Secretary of State. Toombs, having little knowledge in foreign affairs, was replaced several months later by [[Robert M. T. Hunter]] of [[Virginia]], another choice with little suitability. Ultimately, on [[March 17]], [[1862]], Davis selected [[Judah P. Benjamin]] of [[Louisiana]] as Secretary of State, who although having more international knowledge and legal experience with international slavery disputes still failed in the end to create a dynamic foreign policy for the Confederacy.
37495
37496 The first attempts to achieve European recognition of the Confederacy were dispatched on [[February 25]], [[1861]] and led by [[William Lowndes Yancey]], [[Pierre A. Rost]], and [[Ambrose Dudley Mann]]. The British foreign minister [[Lord John Russell]] met with them, and the French foreign minister [[Edouard Thouvenel]] received the group unofficially. However, at this point, the two countries had agreed to coordinate and cooperate and would not make any rash moves.
37497
37498 [[Charles Francis Adams]] proved particularly adept as ambassador to Britain for the Union, and Britain was reluctant to boldly challenge the Union's blockade. The Confederacy also attempted to initiate propaganda in Europe through journalists [[Henry Hotze]] and [[Edwin De Leon]] in [[Paris]] and [[London]]. However, public opinion against slavery created a political liability for European politicians, especially in Britain. A significant challenge in Anglo-Union relations was also created by the [[Trent Affair]], involving the Union boarding of a British mail steamer to seize [[James M. Mason]] and [[John Slidell]], Confederate diplomats sent to Europe. However, the Union was able to smooth over the problem to some degree.
37499
37500 As the war continued, in late 1862, the British considered initiating an attempt to mediate the conflict. However, the Union victory in the [[Battle of Antietam]] caused them to delay this decision. Additionally, the issuing of the [[Emancipation Proclamation]] further reinforced the political liability of supporting the Confederacy. As the war continued, the Confederacy's chances with Britain grew more hopeless, and they focused increasingly on France. [[NapolÊon III]] proposed to offer mediation in January 1863, but this was dismissed by Seward. Despite some sympathy for the Confederacy, France's own [[French intervention in Mexico|concerns in Mexico]] ultimately deterred them from substantially antagonizing the Union. As the Confederacy's situation grew more and more tenuous and their pleas increasingly ignored, President Davis sent [[Duncan F. Kenner]] to Europe, in November 1864, to test whether a promised Confederate emancipation of its slaves could lead to possible recognition. The proposal was strictly rejected by both Britain and France.
37501
37502 ==Aftermath==
37503 {{main|Reconstruction}}
37504 [[Image:Peace_Monument_Chattanooga.jpg|thumb|right|The ''Peace Monument'' at [[Lookout Mountain]], [[Tennessee]] depicts a Union and Confederate soldier shaking hands.]]
37505 Northern leaders agreed that the war would be over when Confederate nationalism was dead, and slavery was dead. They disagreed sharply on how to identify these goals. They also disagreed on the degree of federal control that should be imposed on the South.
37506 The fighting ended with the surrender of all the Confederate forces. There was no significant guerrilla warfare. Many senior Confederate leaders escaped to Europe, but Davis was captured and imprisoned, but never brought to trial. The question became how much the Union could trust the ex-Confederates to be truly loyal to the United States. The second main question in Reconstruction dealt with the destruction of slavery. The XIII Amendment (1865) officially abolished it legally, but the issue was whether [[black codes]] indicated a sort of semi-slavery, and whether Freedmen should have the vote to protect those rights.
37507 In 1867 Radicals in Congress pushed aside President Johnson and imposed new rules. Freedmen gained the right to vote and formed Republican political coalitions that took control of each state for varying periods. One by one the white conservatives or &quot;[[Redeemers]]&quot; gained back control of their states, often through lethal force. The final three were redeemed by the [[Compromise of 1877]]. After that the hatreds between North and South rapidly diminished until by 1900 the nation was no longer divided by the war, though it did remain divided by race.
37508
37509 Ghosts of the conflict still persist in America. For decades after the war, Northern politicians &quot;waved the bloody shirt,&quot; bringing up memories of the Civil War as an electoral tactic, while the &quot;solid South&quot; as a block in national politics was built on memories of the war and a determination to maintain segregation. The [[Civil Rights Movement]] of the 1960s had its [[neoabolitionist]] roots in the failure of Reconstruction. A few debates surrounding the legacy of the war continue, especially regarding memorials and celebrations of Confederate heroes and [[Flags of the Confederate States of America#Controversy|battle flags]]. The question is a deep and troubling one: Americans with Confederate ancestors cherish the memory of their bravery and determination, yet their cause remains one ultimately tied to the shameful history of African American slavery.
37510
37511 ==Further reading==
37512 ===Overviews===
37513 * Beringer, Richard E., Archer Jones, and Herman Hattaway, ''Why the South Lost the Civil War'' (1986) analysis of factors
37514 * [[Bruce Catton|Catton, Bruce]], ''The Civil War'', American Heritage, 1960, ISBN 0-8281-0305-4, illustrated narrative
37515 * Donald, David ed. ''Why the North Won the Civil War'' (1977) (ISBN: 0020316607), short interpretive essays
37516 * Donald, David et al. ''The Civil War and Reconstruction'' (latest edition 2001); 700 page survey
37517 * Eicher, David J., ''The Longest Night: A Military History of the Civil War'', Simon &amp; Schuster, 2001, ISBN 0-684-84944-5.
37518 * Fellman, Michael et al. ''This Terible War: The Civil War and its Aftermath'' (2003), 400 page survey
37519 * Esposito, Vincent J. [http://www.dean.usma.edu/history/web03/atlases/american%20civil%20war/american%20civil%20war%20index.htm ''West Point Atlas of American Wars'' (1959)], these maps are online
37520 * [[Shelby Foote | Foote, Shelby]]. ''[[The Civil War: A Narrative]]'' (3 volumes), Random House, 1974, ISBN 0-394-74913-8. Highly detailed narrative covering all fronts
37521 * [[James M. McPherson | McPherson, James M.]] ''Battle Cry of Freedom: The Civil War Era'' (1988), survey; Pulitzer prize
37522 * Mark E. Neely Jr.; &quot;Was the Civil War a Total War?&quot; ''Civil War History'', Vol. 50, 2004 pp 434+ in JSTOR
37523 * [[Allan Nevins | Nevins, Allan]]. ''[[Ordeal of the Union]]'', an 8-volume set (1947-1971). the most detailed narrative
37524 ** 1. Fruits of Manifest Destiny, 1847-1852; 2. A House Dividing, 1852-1857; 3. Douglas, Buchanan, and Party Chaos, 1857-1859; 4. Prologue to Civil War, 1859-1861; 5. The Improvised War, 1861-1862; 6. War Becomes Revolution, 1862-1863; 7. The Organized War, 1863-1864; 8. The Organized War to Victory, 1864-1865
37525 * Rhodes, James Ford. [http://www.bartleby.com/252/ ''History of the Civil War, 1861-1865 (1918)], Pulitzer Prize; a short version of his 5-volume history
37526 * Ward, Geoffrey C. ''The Civil War'' (Alfred Knopf, 1990), based on PBS series by [[Ken Burns]]; visual emphasis
37527 * Weigley, Russell Frank. ''A Great Civil War: A Military and Political History, 1861-1865'' (2004); primarily military
37528
37529 ===Reference books and bibliographies===
37530 * Blair, Jayne E. ''The Essential Civil War: A Handbook to the Battles, Armies, Navies And Commanders'' (2006)
37531 * Carter, Alice E. and Richard Jensen. ''The Civil War on the Web: A Guide to the Very Best Sites-'' 2nd ed. (2003)
37532 * Current, Richard N., et al eds. ''Encyclopedia of the Confederacy'' (1993) (4 Volume set; also 1 vol abridged version) (ISBN: 0132759918)
37533 * Faust, Patricia L. (ed.) ''Historical Times Illustrated Encyclopedia of the Civil War'' (1986) (ISBN: 0061812617) 2000 short entries
37534 * Eicher, David J., ''The Civil War in Books: An Analytical Bibliography'', University of Illinois, 1997, ISBN 0-252-02273-4
37535 * Heidler, David Stephen. ''Encyclopedia of the American Civil War: A Political, Social, and Military History'' (2002), 1600 entries in 2700 pages in 5 vol or 1-vol editions
37536 * Wagner, Margaret E. Gary W. Gallagher, and Paul Finkelman, eds. ''The Library of Congress Civil War Desk Reference'' (2002)
37537 * Woodworth, Steven E. ed. ''American Civil War: A Handbook of Literature and Research'' (1996) (ISBN: 0313290199), 750 pages of historiography and bibliography
37538
37539 ===Biographies===
37540 * Eicher, John H., &amp; Eicher, David J., ''Civil War High Commands'', Stanford University Press, 2001, ISBN 0-8047-3641-3
37541 * [[Douglas S. Freeman|Freeman, Douglas S.]], [http://penelope.uchicago.edu/Thayer/E/Gazetteer/People/Robert_E_Lee/FREREL/home.html ''R. E. Lee, A Biography''] (4 volumes), Scribners, 1934
37542 * Freeman, Douglas S., ''Lee's Lieutenants: A Study in Command'' (3 volumes), Scribners, 1946, ISBN 0-684-85979-3
37543 * [[Jean Edward Smith | Smith, Jean Edward]], ''Grant'', Simon and Shuster, 2001, ISBN 0-684-84927-5
37544 * Warner, Ezra J., ''Generals in Blue: Lives of the Union Commanders'', Louisiana State University Press, 1964, ISBN 0-8071-0882-7
37545 * Warner, Ezra J., ''Generals in Gray: Lives of the Confederate Commanders'', Louisiana State University Press, 1959, ISBN 0-8071-0823-5
37546
37547 ===Soldiers===
37548 * Frank, Joseph Allan and George A. Reaves. ''Seeing the Elephant: Raw Recruits at the Battle of Shiloh'' (1989)
37549 * Hess, Earl J. ''The Union Soldier in Battle: Enduring the Ordeal of Combat'' (1997)
37550 * McPherson, James. ''What They Fought For, 1861-1865'' (Louisiana State University Press, 1994)
37551 * McPherson, James. ''For Cause and Comrades: Why Men Fought in the Civil War '' (1998)
37552 * Wiley, Bell Irvin. ''The Life of Johnny Reb: The Common Soldier of the Confederacy'' (1962) (ISBN: 0807104752)
37553 * Wiley, Bell Irvin. ''Life of Billy Yank: The Common Soldier of the Union'' (1952) (ISBN: 0807104760)
37554
37555 ===Primary sources===
37556 * U.S. War Dept., [http://cdl.library.cornell.edu/moa/browse.monographs/waro.html ''The War of the Rebellion: a Compilation of the Official Records of the Union and Confederate Armies''], U.S. Government Printing Office, 1880&amp;ndash;1901. 70 very large volumes of letters and reports written by both armies. Online at [http://cdl.library.cornell.edu/moa/browse.monographs/waro.html]
37557 *Bedwell, Randall, ''War is All Hell: A Collection of Civil War Quotations'', Cumberland House Publishing, 1999, ISBN 1-58182-419-X
37558 * Commager, Henry Steele (ed.). ''The Blue and the Gray. The Story of the Civil War as Told by Participants.'' (1950), often reprinted
37559 * Eisenschiml, Otto; Ralph Newman; eds. ''The American Iliad: The Epic Story of the Civil War as Narrated by Eyewitnesses and Contemporaries'' (1947)
37560 * Hesseltine, William B. ed.; ''The Tragic Conflict: The Civil War and Reconstruction'' (1962)
37561 *Woodword, C. Vann, Ed., ''Mary Chesnut's Civil War'', Yale University Press, 1981, ISBN 0-300-02979-9 Pulitzer Prize
37562
37563 ===Novels about the war===
37564 *[[Stephen Crane|Crane, Stephen]], ''[[The Red Badge of Courage]]''
37565 *[[E.L. Doctorow|Doctorow, E.L.]], ''[[The March]]''
37566 *[[Charles Frazier|Frazier, Charles]], ''[[Cold Mountain]]''
37567 *[[Margaret Mitchell|Mitchell, Margaret]], ''[[Gone with the Wind]]''
37568 *[[Ishmael Reed|Reed, Ishmael]], ''Flight to Canada''
37569 *[[Jeffrey Shaara|Shaara, Jeffrey]], ''[[Gods and Generals]]''
37570 *[[Jeffrey Shaara|Shaara, Jeffrey]], ''[[The Last Full Measure]]''
37571 *[[Michael Shaara|Shaara, Michael]], ''[[The Killer Angels]]''
37572 *[[James Street|Street, James]], ''By Valour and Arms''
37573 *[[Jules Verne|Verne, Jules]], ''[[Texar's Revenge, or, North Against South]]'' (''Nord Contre Sud'')
37574 *[[Gore Vidal|Vidal, Gore]], ''Lincoln''
37575
37576 ===Films about the war===
37577 *''[[The Birth of a Nation]]'' ([[1915]])
37578 *''[[Gone With the Wind]]'' ([[1939]])
37579 *''[[The Good, the Bad and the Ugly]]'' ([[1966]])
37580 *''[[The Blue and the Gray]]''([[1982]])
37581 *''[[Glory (film)|Glory]]'' ([[1989]])
37582 *''[[Gettysburg (movie)|Gettysburg]]'' ([[1993]])
37583 *''[[Gods and Generals]]'' ([[2003]])
37584 *''[[Cold Mountain]]'' ([[2003]])
37585
37586 ===Documentaries about the war===
37587 *''[[The Civil War (documentary)|The Civil War]]'', directed by [[Ken Burns]]
37588
37589 ==See also==
37590 *[[African Americans in the Civil War]]
37591 *[[California and the Civil War]]
37592 *[[Canada and the American Civil War]]
37593 *[[Casualties of the American Civil War]]
37594 *[[Illinois in the Civil War]]
37595 *[[Military history of the Confederate States]]
37596 *[[Military history of the United States]]
37597 *[[National Civil War Museum]]
37598 *[[Naming the American Civil War]]
37599 *[[List of American Civil War topics]]
37600 *[[List of people associated with the American Civil War]]
37601 *[[Official Records of the American Civil War]]
37602 *[[Origins of the American Civil War]]
37603 *[[Photography and photographers of the American Civil War]]
37604 *[[Rail transport in the American Civil War]]
37605 *[[U.S. Congress Joint Committee on the Conduct of the War]]
37606 *[[Union Army Balloon Corps]]
37607 *[[Union blockade]]
37608
37609 ==External links==
37610 {{commonscat|American Civil War}}
37611 *[http://sunsite.utk.edu/civil-war/ The American Civil War Homepage]
37612 *[http://www.archives.gov/research_room/research_topics/civil_war/civil_war_photos.html Civil War photos] at the [[National Archives and Records Administration | National Archives]]
37613 * [http://www.virginia.org/site/features.asp?FeatureID=198 Civil War in Virginia]
37614 *Civil War Research &amp; Discussion Group - [http://groups.yahoo.com/group/FieldsOfConflict/ Fields Of Conflict] - Containing 1500+ Links And 400+ Articles.
37615 *[http://www.civilwar-pictures.com Civil War Pictures Database]
37616 *[http://www.cr.nps.gov/history/books-title.htm Online texts of Civil War books] at the [[National Park Service]]
37617 *[http://www.brucegourley.com/civilwar/gourleyhistor1.htm Religion and the American Civil War]
37618 *[http://sunsite.utk.edu/civil-war/generals.html University of Tennessee: U.S. Civil War Generals]
37619 *[http://www.civilwarhome.com Shotgun's Home of the American Civil War]
37620 *[http://www.us-civilwar.com American Civil War]
37621 *[http://www.thelatinlibrary.com/chron/civilwar.html American Civil War Detailed Chronology]
37622 *[http://www.pbs.org/civilwar ''The Civil War''], a [[Public Broadcasting Service|PBS]] documentary by [[Ken Burns]]
37623 * Individual state's contributions to the Civil War: [http://www.militarymuseum.org/HistoryCW.html California], [http://www.floridamemory.com/OnlineClassroom/FloridaCivilWar/index.cfm Florida], [http://www.illinoiscivilwar.org/ Illinois #1], [http://www.rootsweb.com/~ilcivilw/ Illinois #2], [http://www.ohiocivilwar.com/ Ohio], [http://www.pacivilwar.com/ Pennsylvania]
37624 *State declarations of the causes of secession: [http://www.civilwar.com/decms.htm Mississippi], [http://www.civilwar.com/decga.htm Georgia], [http://www.civilwar.com/dectx.htm Texas], [http://www.civilwar.com/decsc.htm South Carolina]
37625 *[http://members.aol.com/jfepperson/ordnces.html Ordinances of Secession for all CSA states]
37626 *[http://teachingamericanhistory.org/library/index.asp?documentprint=76 Alexander Hamilton Stephens' Cornerstone Speech]
37627 * [http://www.civilwartrails.org/ Civil War Trails] &amp;mdash; A project to map out sites related to the Civil War in Maryland, Virginia, and North Carolina
37628 *[http://www.learnoutloud.com/Content/Topic-Pages/Experience-the-Civil-War-with-Your-Ears/21 Civil War Audio Resources]
37629 *[http://www.hoardmuseum.org/ Hoard Historical Museum] in [[Fort Atkinson, Wisconsin]]
37630 *[http://www.tsha.utexas.edu/handbook/online/articles/CC/qdc2.html ''The Handbook of Texas Online:'' Civil War]
37631 *[http://www.brotherswar.com The Brothers War]
37632 *[http://digital.library.wisc.edu/1711.dl/MillsSpColl.BandBooks Civil War Band Collection: 1st Brigade Band of Brodhead, Wisconsin] A digital collection of first person narrative accounts from Wisconsin soldiers and citizens, documenting their wartime experiences.
37633 *[http://digital.library.wisc.edu/1711.dl/WI.WIWar Wisconsin Goes to War: Our Civil War Experience]
37634 *[http://www.worldbook.com/wc/popup?path=features/civilwar&amp;page=html/index.html&amp;direct=yes &quot;A Divided Nation&quot;]. One of ''World Book Encyclopedia'''s monthly features, this one on the American Civil War.
37635
37636 {{UShistoryFooter}}
37637
37638 [[Category:American Civil War| ]]
37639 [[Category:Civil wars]]
37640 [[Category:Emergency laws]]
37641 [[Category:Rebellions in the United States]]
37642 [[Category:Wars of the United States]]
37643
37644 {{Link FA|he}}
37645 {{Link FA|pt}}
37646
37647 [[ast:Guerra de SecesiÃŗn]]
37648 [[bs:Američki građanski rat]]
37649 [[ca:Guerra civil dels Estats Units]]
37650 [[cs:AmerickÃĄ občanskÃĄ vÃĄlka]]
37651 [[da:Den amerikanske borgerkrig]]
37652 [[de:Sezessionskrieg]]
37653 [[es:Guerra de SecesiÃŗn]]
37654 [[eo:Usona Enlanda Milito]]
37655 [[fr:Guerre de SÊcession]]
37656 [[ko:남ëļ ė „ėŸ]]
37657 [[hr:Američki građanski rat]]
37658 [[ia:Guerra civil american]]
37659 [[it:Guerra civile americana]]
37660 [[he:מלחמ×Ē האזרחים האמריקני×Ē]]
37661 [[hu:Amerikai polgÃĄrhÃĄborÃē]]
37662 [[mr:ā¤…ā¤ŽāĨ‡ā¤°ā¤ŋā¤•ā¤¨ ā¤—āĨƒā¤šā¤¯āĨā¤ĻāĨā¤§]]
37663 [[nl:Amerikaanse burgeroorlog]]
37664 [[nds:Amerikaansche BÃļrgerorlog]]
37665 [[ja:南北æˆĻäē‰]]
37666 [[no:Den amerikanske borgerkrigen]]
37667 [[nn:Borgarkrigen i USA]]
37668 [[pl:Wojna secesyjna]]
37669 [[pt:Guerra Civil Americana]]
37670 [[ru:ГŅ€Đ°ĐļĐ´Đ°ĐŊŅĐēĐ°Ņ вОКĐŊĐ° в ХША]]
37671 [[sh:Američki građanski rat]]
37672 [[simple:American Civil War]]
37673 [[sk:AmerickÃĄ občianska vojna]]
37674 [[sl:AmeriÅĄka drÅžavljanska vojna]]
37675 [[fi:Yhdysvaltojen sisällissota]]
37676 [[sv:Amerikanska inbÃļrdeskriget]]
37677 [[th:ā¸Ēā¸‡ā¸„ā¸Ŗā¸˛ā¸Ąā¸ā¸Ĩā¸˛ā¸‡āš€ā¸Ąā¸ˇā¸­ā¸‡ā¸­āš€ā¸Ąā¸Ŗā¸´ā¸ā¸˛]]
37678 [[zh:南北战äē‰]]</text>
37679 </revision>
37680 </page>
37681 <page>
37682 <title>Andy Warhol</title>
37683 <id>864</id>
37684 <revision>
37685 <id>42140817</id>
37686 <timestamp>2006-03-04T02:16:50Z</timestamp>
37687 <contributor>
37688 <username>Antandrus</username>
37689 <id>57658</id>
37690 </contributor>
37691 <minor />
37692 <comment>Reverted edits by [[Special:Contributions/220.239.31.24|220.239.31.24]] ([[User talk:220.239.31.24|talk]]) to last version by Sylvea</comment>
37693 <text xml:space="preserve">[[Image:Helmut Newton- Andy Warhol.jpg|thumb|250PX|Andy Warhol, photographed by [[Helmut Newton]].]]
37694 '''Andy Warhol''' ([[August 6]], [[1928]] – [[February 22]], [[1987]]) was an [[United States|American]] painter, filmmaker, publisher, actor, and a major figure in the [[Pop Art]] movement.
37695
37696 == Biography ==
37697 Warhol was born as '''Andrew Warhola''' in [[Forest City, Pennsylvania]]. His parents, Ondrej (Andrew) Warhola and Julia Zavacky, were working class immigrants of [[Rusyns|Ruthenian ethnicity]] from [[Mikova]], in northeast [[Slovakia]]; his father worked in the coal mines of [[Pennsylvania]]. The family was [[Roman Catholic Church|Catholic]] but Warhol's mother had a [[Jewish]] grandmother.[http://www.amazon.com/gp/product/0815410085/qid=1141095641/sr=1-33/ref=sr_1_33/104-6359540-7548710?s=books&amp;v=glance&amp;n=283155]
37698
37699 Warhol showed early artistic talent and studied [[commercial art]] at [[Carnegie Mellon University]] in [[Pittsburgh]]. In 1949 he moved to [[New York City]] and began a successful career in [[magazine]] illustration and [[advertising]]. He became well-known mainly for his whimsical ink drawings of shoes done in a loose, blotted style.
37700
37701 In the 1960s, Warhol began to make paintings of famous American products such as [[Campbell Soup Company|Campbell's soup]] cans and [[Coca-Cola]]. He switched to [[silkscreen]] prints, seeking not only to make art of mass produced items, but to mass produce the art itself. He said that he wanted to be like a robot. He hired and supervised &quot;art workers&quot; engaged in making prints, shoes, films, books and other items at his studio, ''[[The Factory]]'', located on [[Union Square (New York City)|Union Square]] in New York City. Warhol's body of work furthermore includes commissioned portraits and commercials.
37702
37703 A lot of Warhol's works revolve around the concept of [[Americana]] and American culture. He painted money, dollar signs, food, groceries, women's shoes, celebrities, and newspaper clippings. To him, these subjects represented American cultural values. For instance, Coca-Cola represents democratic equality because
37704
37705 :&quot;What’s great about this country is that America started the tradition where the richest consumers buy essentially the same things as the poorest. You can be watching TV and see Coca-Cola, and you know that the President drinks Coke, Liz Taylor drinks Coke, and just think, you can drink Coke, too. A Coke is a Coke and no amount of money can get you a better Coke than the one the bum on the corner is drinking. All the Cokes are the same and all the Cokes are good. Liz Taylor knows it, the President knows it, the bum knows it, and you know it.&quot;
37706
37707 He used popular imagery and methods to visualize the American cultural identity of the 20th century. This popular redefinition of American culture is a theme and result of Warhol's art. Because American culture has had great international influence, Warhol did as well.
37708
37709 Outside of the art world, Andy Warhol is best known for saying that &quot;In the future, everyone will be world famous for [[15 minutes of fame|15 minutes]].&quot; He later told reporters, humorously, &quot;My new line is, 'In fifteen minutes everybody will be famous.'&quot;
37710
37711 === Socialite and Recluse ===
37712 Warhol used to socialize at [[Serendipity (nightclub)|Serendipity]] and [[Studio 54]], nightclubs in New York City. Warhol was generally regarded as quiet, shy, and as a meticulous observer. More than one person jokingly referred to him as &quot;death warmed over.&quot;
37713
37714 Warhol was openly gay, rare for celebrities of his stature at the time. Many people think of Warhol as [[asexual]] and as merely a [[voyeur]], but these notions have been debunked by biographers (like [[Fred Guiles]]), scholars (e.g. [[Richard Meyer]]), personal accounts of relationships by ex-lovers such as Jed Johnson and Billy Name, and by the overtly campy and homoerotic nature of his work itself. Throughout his career, Warhol produced erotic photography and drawings of male nudes. Many of his most famous works (portraits of [[Liza Minelli]], [[Judy Garland]], [[Elizabeth Taylor]], and films like &quot;My Hustler&quot;, &quot;[[Blow Job (film)|Blow Job]]&quot;, and &quot;Lonesome Cowboys&quot;) draw from gay underground culture and/or openly explore the complexity of sexuality and desire. In fact, many of his films premiered in gay porn theaters. The first works that he submitted to a gallery in the pursuit of a career as an artist were, in fact, homoerotic drawings of male nudes. They were rejected for being too openly gay.
37715
37716 A meticulous collector, he organized almost every piece of paper, fan mail&amp;mdash;after taking off the stamps&amp;mdash;and magazine related to his fame along with personal notes, gay pornography and found artifacts into hundreds of numbered boxes and set them aside, never to open them again. Warhol referred to these boxes as his &quot;time capsule&quot;. Many exist today and are available for research at his Pittsburgh [[Carnegie Museums of Pittsburgh|museum]]. Warhol's house was filled to the brim with his collected art, artifacts, and Americana.
37717
37718 Many of his later commissioned portraits were a direct or indirect result of this networking. As a famous artist, Warhol and his Factory attracted and facilitated many &quot;groupies&quot; and friends that Warhol would include in films and happenings. Warhol promoted these [[the factory|factory]] regulars to fame, creating the [[Warhol superstars]]. They would appear in and help him make his work, play in his movies, write his books, hang out and generally become his following.
37719
37720 When Warhol was asked to give a series of university lectures that he didn't feel like doing, one of his friends put on a wig and white make-up, and pretended to be him by sitting quietly on the stage. Other Superstars explained Warhol's work to the audience, and urged them to drop out of college. The University eventually found out Warhol's &quot;fraud&quot; and the following dispute had to be settled with a refund.
37721
37722 Warhol would regularly volunteer at the homeless shelters in New York, particularly during the busier times of the year. He described himself as a religious person, although not fully accepted by religion because of his homosexuality. Many of his later works contain almost hidden religious themes or subjects, and a body of religious-themed works was found posthumously in his estate.
37723
37724 === Shooting ===
37725 On [[June 3]], [[1968]], [[Valerie Solanas]], a [[The Factory|Factory]] regular, entered Warhol's studio and fired three shots at Warhol, nearly killing him. Although the first two rounds missed, the third passed through Warhol's left [[lung]], [[spleen]], [[stomach]], [[liver]], [[esophagus]], and right lung. Solanas then turned the gun on a companion of Warhol, Mario Amaya, injuring his thigh. Warhol survived his injuries, but he never fully recovered. Earlier, Solanas had given a script to Warhol, in hopes that he would make a film out of it. Warhol never did. Apparently, she had visited the Factory earlier in the day to ask that they give the script back to her. It had, however, been lost. She later explained that she had attacked Warhol because, &quot;he had too much control over [her] life.&quot; The story of Valerie Solanas was made into the 1996 film ''[[I Shot Andy Warhol]]'', starring [[Lili Taylor]] and directed by [[Mary Harron]].
37726
37727 In the hospital, his doctors had already declared him deceased, after which he was resuscitated. Warhol later joked that he was now invulnerable, since he had gone through death and came out alive. The shooting and Warhol's &quot;death&quot; received wide media coverage.
37728
37729 One of Warhol's associates, [[Paul Morrissey]], later satirized the event in his movie [[&quot;Women In Revolt&quot;]], calling a group similar to Solanas' [[S.C.U.M.]] ('''Society for Cutting Up Men'''), ''P.I.G.'' ('''Politically Involved Girls''').
37730
37731 In [[1990 in music|1990]] [[Lou Reed]] recorded the album ''[[Songs for Drella]]'' (one of Warhol's nicknames was Drella, a combination of Dracula and Cinderella) with fellow [[The Velvet Underground|Velvet Underground]] alumnus [[John Cale]].
37732
37733 Warhol had adopted Reed's band the Velvet Underground as one of his projects in the 1960s, &quot;producing&quot; their first album [[The Velvet Underground and Nico]] as well as providing the album art, widely regarded as some of the greatest album art of all time. The album itself is also regarded as one of the greatest (and most influential) albums in rock history. After the band became successful Warhol and band leader Reed started to disagree more and more about the direction the band should take, and the contact between them faded. On the album, Reed apologizes and comes to terms with his part in their conflict.
37734
37735 === Death ===
37736 Warhol died in New York City following routine gallbladder surgery at the age of 58. Warhol was afraid of hospitals and doctors, so he had delayed having his recurring gall bladder problems checked.
37737
37738 He is interred at St. John the Baptist Catholic Cemetery in Bethel Park, south of Pittsburgh. Fellow artist [[Yoko Ono]] was among the speakers at his funeral.
37739
37740 Andy Warhol had so many posessions it took [[Sotheby's]] 9 days to auction his estate after his death for a total gross amount of over 20,000,000 (USD).
37741
37742 == Work ==
37743 === Paintings ===
37744 When he decided to pursue a career as an artist, Warhol had already established a reputation as a commercial illustrator. In school he had made paintings, but his work afterwards had mainly consisted of &quot;blotted ink&quot; illustrations for warehouses and magazines. He felt that he was not being taken seriously as an illustrator, and wanted to become a &quot;real&quot; artist.
37745
37746 When he started painting, he looked to find a niche for himself. At that time Pop Art - as it was later to be called - was already experimented with by several artists turning away from abstract expressionism, and Warhol turned to this new way of making art, where popular subjects could be part of the artist's vocabulary. His early paintings show images taken from cartoons and advertisements, in a hand-painted style, with paint drips. He added these drips to give his paintings a &quot;serious&quot; feel, to emulate a bit of the style of the abstract expressionists, that were en vogue at the time, in other words to be taken seriously or to sell his paintings, which may have had the same meaning to Warhol.
37747
37748 To Warhol, part of defining a niche was defining his subject matter. Cartoons were already being &quot;done&quot; by [[Roy Liechtenstein]], typography by [[Jasper Johns]], et-cetera; Warhol wanted a distinguishing subject. His friends suggested that he should paint the things he loved the most. In his signature way of taking things literally, for his first major exhibition he painted his famous cans of Campbell's Soup, that he had for lunch most of his life. Warhol loved money, so he later painted money. He loved celebrities, so he painted them as well.
37749
37750 From these beginnings he developed his later style and themes. Instead of working on a signature subject matter, as he started out to do, he worked more and more on a signature style, slowly eliminating the hand-made from the artistic process. Warhol went from painting to silk-screening, his later drawings were traced from slide projections. In other words, Warhol went from being a painter to being a designer of paintings. At the height of his fame as a painter, Warhol had several assistants who produced his silk-screen multiples, in different versions and variations after his directions.
37751
37752 It has been suggested by many that Warhol would just take images of things that were hip in his time and cover them in &quot;Warhol gravy&quot;, but for Warhol there was always a personal relation between him and his subjects. For instance the Campbell's Soup did not (only) function as an illustration of commercial industry and advertisement, it was an intrinsical part of Warhol's life and memories. As a child his mother had given him this soup when he was sick, and Warhol loved it very much as a grown up. For him (and many other Americans) the soup represented a feeling of being &quot;home&quot;.
37753
37754 Another criterion that is important in the way Warhol chose his subjects is that the subjects should also represent a more philosophical notion, should have a metaphorical quality. When Warhol paints money, he paints it because he wants to own it - canvases filled with money. Partly, his work was meant to provide him with this money (and success and fame and maybe even love). At the same time these paintings speak of art as a commercial commodity: the paintings of dollar bills represent monetary value as well, as investments. In this way, instead of merely depicting dollar bills, these paintings touch on notions like (artistic) value, or may be perceived as a comment on art practice.
37755
37756 Similarly, when Warhol paints photographs of disasters in bright colors (&quot;Red Car Crash&quot;, &quot;Purple Jumping Man&quot;, &quot;Orange Disaster&quot;) they point at the horror of the event in the picture, and its media value, but also at the way in which these images are trivialized by the media. By turning these &quot;random&quot; clippings into paintings, Warhol turns them into monuments for personal tragedies. As such they represent a personal experience as well as a social comment as well as an illustration of a time when the media grew to be more and more important.
37757
37758 On a personal level a lot of Warhol's work is motivational in nature, and speaks of notions like democracy, being able to change things, optimistic materialism, being heard. But Warhol wasn't naively optimistic about these things, his work also deals with loss, death, loneliness and the such.
37759 Warhol knew how to juggle many levels of meaning and interpretation, and to combine these in seemingly simple, sometimes even dumb-looking works of art. In general his work has a very high &quot;Duh!&quot; level.
37760 Although a bit of a generalization, it may be accurate to say that Warhol depicted highly his very personal approach to subjects that everyone knows, in a way that these subjects become symbolic.
37761
37762 Warhol's work became more and more conceptual and more reflective of art itself. His series of Do-It-Yourself-Paintings and Rorschach-blots are intended as pop-comments on art and what art could be. His Cow Wallpaper (literally wallpaper with a cow motif) and his Oxidation Paintings (canvases prepared with copper paint that show oxidated urine stains) are also noteworthy in this context. Warhol later did a series of his old works in negative, as a comment on his own position as an artist.
37763
37764 In the beginning of his career Warhol worked on a growing oeuvre of American forms and values, newspaper clippings, disasters, money, commercial products, Coca-Cola bottles, postal stamps, movie stars, criminals, shoes, clothes, etc. defining a position, researching and making statements. As recognition -- and the value of his work -- grew, he went back to his roots as a commercial illustrator, and starts to take commissions, most noticeably for portraits. These are sometimes viewed as Warhol's sell-out (the revolutionary painter that became a jester), but it can also be argued that his self-supporting way of working fit his world-views. At any rate, his body of portraits -- that include many celebrities, athletes, movie stars, politicians, dictators, royalty, his mother, transvestites -- have became a document of an era. Having the money or the relations to be portrayed by Warhol meant that you might be able to enter into immortality. Warhol's commercial effort also include advertisements for Chanel, Apple and more.
37765
37766 There are three more periods that are noteworthy in Warhol's oeuvre as a painter.
37767 His self-portraits, of which he made many, with his silver wig, painted over with camouflage print may represent Warhol studying his own identity. Warhol has spoken about himself and was spoken about as being empty, hollow, a reflection or a mirror. The second series is his paintings of shadows. These may represent Warhol's study of the abstract. Again there is a relation with Warhol personally, as he has also depicted himself as &quot;The Shadow,&quot; the character from the radio show. Thirdly, Warhol produced many &quot;portfolios,&quot; series of small paintings meant for commercial sale. These series would be grouped around a theme; for instance, &quot;famous Jews&quot;, &quot;cars&quot;, or &quot;animals&quot;.
37768
37769 At one point Warhol publicly declared that he had stopped being a painter, and that he would only make films from then on; but at the end of his life, Warhol took up painting again. His last paintings and drawings are of da Vinci's ''[[Last Supper]]'', which he was working on when he died.
37770
37771 === Films ===
37772 Warhol worked across a wide range of mediums - painting, photography, drawing, and sculpture. He was also a highly prolific filmmaker. Between 1963 and 1968, he made more than sixty films. One of his most famous films, ''[[Sleep (film)|Sleep]]'' (1963), shows a man ([[John Giorno]], who had a relationship with Warhol) sleeping for eight hours. In the 35 minute film ''[[Blow Job (film)|Blow Job]]'' (1963), he shows the face of [[David Pelman]] receiving [[fellatio]]. Another, [[Empire (1964 film)|''Empire'']] (1964), consists of eight hours of footage of the [[Empire State Building]] in New York City at dusk. Warhol's 1965 film ''[[Vinyl (1965 film)|''Vinyl'']]'' is an adaptation of [[Anthony Burgess]]' popular [[Dystopia|dystopian]] novel ''[[A Clockwork Orange]]''. Others record improvised encounters between Factory regulars such as Brigid Berlin, [[Viva]], [[Edie Sedgwick]], [[Candy Darling]], [[Holly Woodlawn]], Ondine, [[Nico]], and [[Jackie Curtis]]. Legendary underground artist [[Jack Smith (actor)|Jack Smith]] appears in the film ''Camp''.
37773
37774 His most popular and critically successful film was ''[[Chelsea Girls]]'' (1966). The film was highly innovative in that it consisted of two 16-mm films being projected simultaneously, with two different stories being shown in tandem. From the projection booth, the sound would be raised for one film to elucidate that &quot;story&quot; while it was lowered for the other. Then it would be the other film's turn to bask in the glory of sound. The multiplication of images evoked Warhol's seminal silk-screen works of the early 1960s. The film's influence could be felt as late as 2000 in [[Mike Figgis]]' ''[[Timecode (film)|Timecode]]''.
37775
37776 Other important films include ''[[My Hustler (1965 film)|My Hustler]]'', ''[[Midnight Cowboy (1969 film)|Midnight Cowboy]]'', and ''[[Lonesome Cowboys (1968 film)|Lonesome Cowboys]]'' (1968), a raunchy pseudo-western. ''[[Blue Movie]]'', a film in which Warhol superstar [[Viva (Warhol Superstar)|Viva]] makes love and fools around in bed with a man for 33 minutes of the film's playing-time, was Warhol's last film as director. The film was at the time scandalous for its frank approach to a sexual encounter. For many years Viva refused to allow it to be screened. It was publicly screened in New York in 2005 for the first time in over thirty years.
37777
37778 After his [[June 3]], [[1968]] shooting, a reclusive Warhol relinquished his personal involvement in filmmaking. His acolyte and assistant director, [[Paul Morrissey]], took over the film-making chores for the [[The Factory|Factory]] collective, steering Warhol-branded cinema towards more mainstream, narrative-based, B-movie exploitation fare with ''[[Flesh (film)|Flesh]]'', ''[[Trash (film)|Trash]]'', and ''[[Heat (film)|Heat]]''. All of these films, including the later ''[[Blood for Dracula|Andy Warhol's Dracula]]'' and ''[[Flesh for Frankenstein|Andy Warhol's Frankenstein]]'', were far more mainstream than anything Warhol as a director had attempted. These latter &quot;Warhol&quot; films, all of which frankly were made to make money, starred [[Joe Dallesandro]], who was more of a Morrissey star than a true Warhol superstar.
37779
37780 In order to facilitate the success of these Warhol-branded, Morrissey-directed movies in the marketplace, all of Warhol's earlier avant-garde films were removed from distribution and exhibition by [[1972]].
37781
37782 The first volume of a catalogue raisonÊ for the Factory film archive is to be published in the spring of 2006.
37783
37784 As an actor, Warhol appeared as a bartender in [[The Cars]]' [[music video]] for their [[single (music)|single]] &quot;Hello Again&quot;, and [[Curiosity Killed The Cat]]'s video for their &quot;Misfit&quot; single (both videos, and others, were produced by Warhol's video production company). He also appeared in an episode of [[The Love Boat]].
37785
37786 Warhol's character has also been represented in several motion pictures. He has been portrayed by [[Crispin Glover]], [[David Bowie]], and [[Jared Harris]], in ''[[The Doors (film)|The Doors]]'', ''[[Basquiat]]'', and ''[[I Shot Andy Warhol]],'' respectively.
37787
37788 === Filmography ===
37789 &lt;!-- These have been reorganised chronologically from oldest to most recent --&gt;
37790 * ''[[Blow Job (film)|Blow Job]]'' (1963)
37791 * ''[[Eat (film)|Eat]]'' (1963)
37792 * ''[[Haircut (film)|Haircut]]'' (1963)
37793 * ''[[Kiss (film, 1963)|Kiss]]'' (1963)
37794 * ''[[Naomi's Birthday Party]]'' (1963)
37795 * ''[[Sleep (film)|Sleep]]'' (1963)
37796 * ''[[13 Most Beautiful Women]]'' (1964)
37797 * ''[[Batman Dracula]]'' (1964)
37798 * ''[[Clockwork (film)|Clockwork]]'' (1964)
37799 * ''[[Couch (film, 1964)|Couch]]'' (1964)
37800 * ''[[Drunk (film)|Drunk]]'' (1964)
37801 * ''[[Empire (1964 film)|Empire]]'' (1964)
37802 * ''[[The End of Dawn]]'' (1964)
37803 * ''[[Lips (film)|Lips]]'' (1964)
37804 * ''[[Mario Banana I]]'' (1964)
37805 * ''[[Mario Banana II]]'' (1964)
37806 * ''[[Messy Lives]]'' (1964)
37807 * ''[[Naomi and Rufus Kiss]]'' (1964)
37808 * ''[[Tarzan and Jane Regained... Sort of]]'' (1964)
37809 * ''[[The Thirteen Most Beautiful Boys]]'' (1964)
37810 * ''[[Beauty No. 2|Beauty #2]]'' (1965)
37811 * ''[[Bitch (film)|Bitch]]'' (1965)
37812 * ''[[Camp (1965 film)|Camp]]'' (1965)
37813 * ''[[Harlot (film)|Harlot]]'' (1965)
37814 * ''[[Horse (film)|Horse]]'' (1965)
37815 * ''[[Kitchen (film)|Kitchen]]'' (1965)
37816 * ''[[The Life of Juanita Castro]]'' (1965)
37817 * ''[[My Hustler]]'' (1965)
37818 * ''[[Poor Little Rich Girl]]'' (1965)
37819 * ''[[Restaurant (film)|Restaurant]]'' (1965)
37820 * ''[[Space (film)|Space]]'' (1965)
37821 * ''[[Taylor Mead's Ass]]'' (1965)
37822 * ''[[Vinyl (1965 film)|''Vinyl'']]'' (1965)
37823 * ''[[Screen Test (film)|Screen Test]]'' (1965)
37824 * ''[[Screen Test No. 2|Screen Test #2]]'' (1965)
37825 * ''[[Ari and Mario]]'' (1966)
37826 * ''[[Hedy]]'' (1966)
37827 * ''[[Kiss the Boot]]'' (1966)
37828 * ''[[Milk (film)|Milk]]'' (1966)
37829 * ''[[Salvador Dalí (film)|Salvador Dalí]]'' (1966)
37830 * ''[[Shower (film)|Shower]]'' (1966)
37831 * ''[[Sunset (film)|Sunset]]'' (1966)
37832 * ''[[Superboy (film)|Superboy]]'' (1966)
37833 * ''[[The Closet (1966 film)|The Closet]]'' (1966)
37834 * ''[[Chelsea Girls]]'' (1966)
37835 * ''[[The Beard]]'' (1966)
37836 * ''[[More Milk, Yvette]]'' (1966)
37837 * ''[[Outer and Inner Space]]'' (1966)
37838 * ''[[The Velvet Underground and Nico (film)|The Velvet Underground and Nico]]'' (1966)
37839 * ''[[The Andy Warhol Story]]'' (1967)
37840 * ''[[Tiger Morse]]'' (1967)
37841 * ''[[**** (film)|****]]'' (1967)
37842 * ''[[Imitation of Christ (film)|The Imitation of Christ]]'' (1967)
37843 * ''[[The Nude Restaurant]]'' (1967)
37844 * ''[[Bike Boy]]'' (1967)
37845 * ''[[I, a Man]]'' (1967)
37846 * ''[[San Diego Surf]]'' (1968)
37847 * ''[[The Loves of Ondine]]'' (1968)
37848 * ''[[Blue Movie]]'' (1969)
37849 * ''[[Lonesome Cowboys]]'' (1969)
37850 * ''[[L'Amour]]'' (1972)
37851
37852 === Books and Print ===
37853 Warhol &quot;wrote&quot; several books.
37854 *''[[A, a novel]]'' (1968, ISBN 0-8021-3553-6) is a literal transcription - containing spelling errors and phonetically written background noise and mumbling - of audio recordings of [[Ondine]] and several of Andy Warhol's friends hanging out at the Factory, talking, going out.
37855 *''[[The Philosophy of Andy Warhol; from A to B and back again]]'' (1975, ISBN 0-15-671720-4) - according to Pat Hackett's introduction to ''The Andy Warhol Diaries'', Pat Hackett did the transcriptions and text for the book based on daily phone conversations, sometimes (when Warhol was traveling) using audio cassettes that Andy Warhol gave her. Said cassettes contained conversations with [[Brigid Berlin]] (aka Brigid Polk) and former ''Interview'' magazine editor [[Bob Colacello]].
37856 *''[[Popism: The Warhol Sixties]]'' (1980, ISBN 0-15-672960-1), authored by Warhol and [[Pat Hackett]] is a retrospective view of the sixties and the role of Pop Art.
37857 *''[[The Andy Warhol Diaries]]'' (1989, ISBN 0-446-39138-7, edited by Pat Hackett) is an edited diary that was dictated by Warhol to Hackett in daily phone conversations. Warhol started keeping a diary to keep track of his expenses after being audited.
37858
37859 Warhol created the fashion magazine ''[[Interview (magazine)|Interview]]'' that is still published today. The loopy title script on the cover is thought to be either his own handwriting or that of his mother, Julia Warhola, who would often do text work for his early commercial pieces.
37860
37861 ===Other Media===
37862 As stated, although Andy Warhol is most known for his paintings and films, he has authored works in many different media.
37863
37864 * Drawing: Warhol started his carreer drawing commercial illustrations in &quot;blotted-ink&quot; style for warehouses and magazines. Most well known are his pictures of shoes. Some of his drawings were published in little booklets, like &quot;Yum, Yum, Yum&quot; (about food), &quot;Ho, Ho, Ho&quot; (about Christmas) and (of course) &quot;Shoes, Shoes, Shoes&quot;. His most artistically acclaimed book of drawings is probably &quot;The Gold Book&quot;, compiled of sensitive, personal drawings of young men. &quot;The Gold Book&quot; is thus dubbed because of the leaf-gold that decorates the pages.
37865
37866 * Sculpture: Warhol's most famous sculpture is probably his &quot;Brillo Boxes&quot;; silkscreened wooden replicas of Brillo soap boxes. Other famous works include the &quot;Silver Floating Pillows&quot;; gas-filled, silver, pillow-shaped balloons that were floated out of the window during the presentation.
37867
37868 * Audio: At one point Warhol carried a portable recorder with him wherever he went, taping everything everybody said and did. He referred to this device as his &quot;wife&quot;. Some of these tapes were the basis for his literary work. Another audio-work of Warhol's was his &quot;Invisible Sculpture,&quot; a presentation in which burglar alarms would go off when entering the room. Warhol's cooperation with the musicians of The Velvet Underground was driven by an expressed desire to become a music producer.
37869
37870 * Television: Andy Warhol dreamed of a television show that he wanted to call &quot;The Nothing Special&quot;, a Special about his favorite subject: Nothing. Later in his career he did create two cable television shows, &quot;Andy Warhol's TV&quot; in 1982 and &quot;Andy Warhol's Fifteen Minutes&quot; for MTV in 1986. Besides his own shows he regularly made guest-appearances in shows like &quot;Love Boat&quot;.
37871
37872 * Fashion: Warhol is quoted for having said: &quot;I'd rather buy a dress and put it up on the wall, than put a painting, wouldn't you?&quot; One of his most well-known Superstars, Edie Sedgwick, aspired to be a fashion designer, and his good friend Halston was a famous one. Warhol's work in fashion includes silkscreened dresses, a short sub-career as a catwalk-model and books on fashion as well as paintings with fashion (shoes) as a subject.
37873
37874 * Performance Art: Warhol and his friends staged happenings; theatrical multimedia presentations during parties, containing music, film, slide projections and Gerard Malanga in an S&amp;M outfit cracking a whip. The [[Exploding Plastic Inevitable]] is the culmination of this area of his work.
37875
37876 * Photography: To produce his silkscreens, Warhol made photographs or had them made by his friends and assistants. These pictures were mostly taken with a specific model of Polaroid camera that Polaroid kept in production especially for Warhol. This photographic approach to painting and his snapshot method of taking pictures has had a great effect on artistic photography. His late oeuvre contains black and white photos sewn together.
37877
37878 === Product ===
37879 In many of his efforts Warhol has taken the position of a producer or director, rather than a creator. From an artist he gradually became the person that determined the direction and was the public face of a company, having a staff of sorts to do the actual labor involved in his products. He would coin an idea and oversee its execution, his Factory evolved from an atelier into an office.
37880
37881 As this position proved to work out, he found himself able to expand his activities into other fields. He founded the gossip magazine Interview, creating a stage for celebrities he &quot;endorsed&quot; and creating jobs for his friends. He adopted the young painter Jean-Michel Basquiat, and the band The Velvet Underground and presented them to the public as his latest interest, cooperating with them, shaping their public personas. He would produce things and people, and they were part of his artistic product. He endorsed products, appeared in commercials, made business deals and even &quot;sold&quot; the film-making branch of his company when he decided to spend less time filming himself.
37882
37883 In this respect Warhol talked about &quot;Art Business&quot; and &quot;Business Art&quot;, and how he thought business was the best type of art. This was a radical new stance, as artists had always presented themselves as flamboyant, individual, visionairy outsiders - commenting on the normal part of society, but never really being a part of it. And receiving appreciation for that position on basis of their idealism, rare talents and personalities. Warhol and other pop-artists helped redefine the artist's position as professional, commercial, popular; a logical and valuable part of society. He did this using methods, imagery and talents that were (or at least seemed to be) available to everyone. Perhaps that has been the most meaningful result of (his) Pop Art: a philosophical and practical incorporation of art into society, art as a product of society.
37884
37885 === Museums ===
37886 The [[Andy Warhol Museum]] is located in Pittsburgh, Pennsylvania. It is the largest American art museum dedicated to a single artist, holding more than 4,000 works by the artist himself.
37887
37888 Among others, Andy's brother, John Warhola, and the Warhol Foundation in New York, established in 1991 the Warhol Family Museum of Modern Art in the remote town of [[Medzilaborce]], [[Slovakia]]. Andy's mother, Julia Warhola, was born 15 kilometers away in the village of Mikova. The museum houses several originals donated mainly by the Andy Warhol Foundation in New York and also personal items donated by Warhol's relatives
37889
37890 === Further Reading on Warhol ===
37891 Jennifer Doyle, Jonathan Flatley, and [[JosÊ Esteban MuÃąoz]], &lt;u&gt;Pop Out: Queer Warhol&lt;/u&gt; (Durham: Duke University Press, 1996).
37892
37893 Fred Lawrence Guiles, &lt;u&gt;Lover at the Ball: The Life of Andy Warhol&lt;/u&gt; (New York: Bantam, 1989).
37894
37895 [[Wayne Koestenbaum]], &lt;u&gt;Andy Warhol&lt;/u&gt; (New York: Penguin, 2003).
37896
37897 Richard Meyer, &lt;u&gt;Outlaw Representation&lt;/u&gt; (New York: Beacon, 2003).
37898
37899 Steven Watson, &lt;u&gt;Factory Made: Warhol and the Sixties&lt;/u&gt; (New York: Pantheon, 2003).
37900
37901 == See also ==
37902 * [[Electric Circus (nightclub)]] - Warhol had a section called &quot;La Dom&quot; on a lower floor
37903
37904 == External links ==
37905 {{wikiquote}}
37906 {{commons|Andy_Warhol}}
37907 * {{imdbname|id=0912238|name=Andy Warhol}}
37908 * [http://www.visite-virtuelle-france.com/perso/andy_warhol/andy_warhol.htm Virtual visit] in MusÊe d'Art Contemporain de Lyon.
37909 * [http://www.warholfoundation.org/ Warhol Foundation] in New York, New York.
37910 * [http://www.warhol.org/ The Andy Warhol Museum] in [[Pittsburgh]], Pennsylvania
37911 * [http://www.artquotes.net/masters/warhol-andy.htm Andy Warhol Profile] Includes a biography, selection of images, famous quotes, and links to the artist.
37912 * [http://x-traonline.org/vol5_1/warhol_responses.html Two short articles about Warhol's 2002 museum retrospective from the art magazine &quot;X-Tra&quot;]
37913 * [http://www.artfacts.net/index.php/pageType/artistInfo/artist/328 Actual exhibitions with Andy Warhol on Artfacts] ''Andy Warhol's works are still widely at present in various shows and permanent collections in museums or galleries throughout the world.''
37914 * [http://www.geocities.com/joopbersee/andy3.html Andy Warhol Poetry Tribute]
37915 * [http://www.the3graces.info/random_warhol.htm http://www.the3graces.info] A warholesque biography of Andy Warhol.
37916 *[http://www.accuracyproject.org/cbe-Warhol,Andy.html Internet Accuracy Project - Andy Warhol]
37917 * [http://www.doubletakeart.com/cgi-bin/dtg/dtg.psearch?a1=00594 Doubletake Gallery] Online Catalog of Limited Editions
37918 * [http://www.malarze.walhalla.pl/galeria.php5?art=70 Art Gallery - Andy Warhol]
37919 * [http://www.gagosian.com/artists/andywarhol/ Andy Warhol] at Gagosian Gallery
37920 * [http://www.freeinfosociety.com/site.php?postnum=66 Biography and Pictures]
37921
37922 ===Listening===
37923 *[http://www.wnyc.org/studio360/show121005.html &quot;Warhol, Soup Cans, Cowboys&quot;] (''Studio 360'' radio program, December 10, 2005)
37924
37925 &lt;!-- interwiki --&gt;
37926
37927 [[Category:1928 births|Warhol, Andy]]
37928 [[Category:1987 deaths|Warhol, Andy]]
37929 [[Category:American film directors|Warhol, Andy]]
37930 [[Category:American experimental filmmakers|Warhol, Andy]]
37931 [[Category:American artists|Warhol, Andy]]
37932 [[Category:Gay artists|Warhol, Andy]]
37933 [[Category:Greenwich Village Scene|Warhol, Andy]]
37934 [[Category:Lesbian, gay, bisexual, or transgender people|Warhol, Andy]]
37935 [[Category:People from Pennsylvania|Warhol, Andy]]
37936 [[Category:Roman Catholics|Warhol, Andy]]
37937
37938 [[bg:АĐŊди ĐŖĐžŅ€Ņ…ĐžĐģ]]
37939 [[ca:Andy Warhol]]
37940 [[cs:Andy Warhol]]
37941 [[cy:Andy Warhol]]
37942 [[da:Andy Warhol]]
37943 [[de:Andy Warhol]]
37944 [[es:Andy Warhol]]
37945 [[eo:Andy WARHOL]]
37946 [[fr:Andy Warhol]]
37947 [[gl:Andy Warhol]]
37948 [[ko:ė•¤ë”” ė›Œí™€]]
37949 [[hr:Andy Warhol]]
37950 [[it:Andy Warhol]]
37951 [[he:אנדי וורהול]]
37952 [[jv:Andy Warhol]]
37953 [[lt:Andy Warhol]]
37954 [[li:Andy Warhol]]
37955 [[lmo:Andy Warhol]]
37956 [[hu:Andy Warhol]]
37957 [[mk:ЕĐŊди ВоŅ€Ņ…ĐžĐģ]]
37958 [[nl:Andy Warhol]]
37959 [[ja:ã‚ĸãƒŗデã‚Ŗãƒŧãƒģã‚Ļã‚ŠãƒŧホãƒĢ]]
37960 [[no:Andy Warhol]]
37961 [[pl:Andy Warhol]]
37962 [[pt:Andy Warhol]]
37963 [[ro:Andy Warhol]]
37964 [[ru:ĐŖĐžŅ€Ņ…ĐžĐģ, Đ­ĐŊди]]
37965 [[sh:Andy Warhol]]
37966 [[simple:Andy Warhol]]
37967 [[sk:Andy Warhol]]
37968 [[sr:ЕĐŊди ВоŅ€Ņ…ĐžĐģ]]
37969 [[fi:Andy Warhol]]
37970 [[sv:Andy Warhol]]
37971 [[zh:厉čŋĒÂˇæ˛ƒčˇ]]</text>
37972 </revision>
37973 </page>
37974 <page>
37975 <title>AmeriKKKa's Most Wanted</title>
37976 <id>865</id>
37977 <revision>
37978 <id>41619114</id>
37979 <timestamp>2006-02-28T15:40:10Z</timestamp>
37980 <contributor>
37981 <ip>84.178.165.137</ip>
37982 </contributor>
37983 <text xml:space="preserve">{{Album infobox
37984 | Name = AmeriKKKa's Most Wanted
37985 | Type = [[Album (music)|Album]]
37986 | Artist = [[Ice Cube]]
37987 | Cover = AmeriKKKa.jpg
37988 | Background = Orange
37989 | Released = [[May 16]], [[1990]]
37990 | Recorded = [[1989]]
37991 | Genre = [[Gangsta rap]]
37992 | Length = 49:36
37993 | Label = [[Priority Records|Priority]]
37994 | Producer = [[Ice Cube]], [[Hank Shocklee]], [[Chuck D]], [[Sir Jinx]], [[Yo-Yo]]
37995 | Reviews = &lt;nowiki&gt;&lt;/nowiki&gt;
37996 *''[[All Music Guide]]'' [[Image:5 out of 5.png|5 out of 5 stars]] [http://www.allmusic.com/cg/amg.dll?p=amg&amp;sql=10:fvh1z8hajyv2 link]
37997 |
37998 | Last album =
37999 | This album = '''''AmeriKKKa's Most Wanted'''''&lt;br /&gt;(1990)
38000 | Next album = ''[[Kill At Will]]''&lt;br /&gt;(1990)
38001 }}
38002 '''''AmeriKKKa's Most Wanted''''' was [[Ice Cube]]'s debut solo album after his acrimonious split from [[N.W.A.]]. It was originally released [[May 16]], [[1990]] (see [[1990 in music]]).
38003
38004 The title of the album is controversial. It is a spoof of a television show called &quot;[[America's Most Wanted]]&quot;, wherein real-life crimes are reenacted and viewers are asked to call in if they have seen the alleged perpetrators. The show has taken some criticism for the reenactments, which critics claim perpetuate beliefs in the criminality of [[African-American]] men and other minorities. The [[alternative political spellings|political spelling]] of &quot;America&quot; with &quot;KKK&quot; equates both the show and the status quo of society in the [[United States]] with the [[Ku Klux Klan]], a [[white supremacy|white-supremacist]] organization.
38005
38006 ''AmeriKKKa's Most Wanted'' is a [[gangsta rap]] album, and the songs are tales of a young black man living in the [[ghetto]] and dealing with such issues as [[drug addiction]], [[racism]] and [[poverty]]. To understand the album's statement, it is important to note the environment of [[Los Angeles, California|Los Angeles]] in the early 1990s. Riots would rack the city following the [[Rodney King]] verdict, seen by many (including Ice Cube) as an example of the racism inherent in the judicial and law enforcement systems. Also, the [[O. J. Simpson]] trial would provoke further racial tension in the country, especially Los Angeles. Unlike many other albums from the same period, Cube did not allow the subject matter to infuse the album with inherent negativity. He attacks perceived racist social structures, far more than many gangsta rappers were doing at the time and since. Though he describes with detail the conditions of the ghetto, he does so in order to condemn those that allow ghetto despair to occur, instead of glorifying it.
38007
38008 Cube takes some controversial stands, referring to certain types of African-Americans as &quot;Oreo cookies&quot;, implying that they appear to be black but are actually willing participants in the racial hierarchy that keeps the majority of African-Americans living in poverty-stricken and drug-riddled ghettos; specifically, this is aimed at soft-pop-R&amp;B radio stations broadcasting a watered-down sound. [[Arsenio Hall]] is specifically mentioned as being such a &quot;sell-out&quot;. The titular song on the album directly parodies the television show, &quot;America's Most Wanted&quot;, exposing the perceived racism inherent in watching largely African-American men being arrested for entertainment.
38009
38010 :&quot;I think back to when I was robbin' my own kind,
38011 :the police didn't pay it no mind.
38012 :But when I start robbin the white folks?
38013 :Now I'm in the pen with the soap on a rope&quot;
38014
38015 A later song (&quot;Get Off My Dick Nigga, and Tell Yo Bitch to Come Here&quot;) returns to the same theme at the end, with newscaster [[Peter Jennings]] reporting on rioting: &quot;Outside the [[South Los Angeles|south central]] area, few cared about the violence because it didn't affect them.&quot; Also of interest is &quot;It's a Man's World&quot;, a rap-conversation with [[Yo-Yo]]; the two verbally spar and trade sexist barbs back and forth; outside of this song, the album received criticism for alleged [[sexism]], as in &quot;You Can't Fade Me&quot;, a humorous track where Cube fantasizes about kicking a former one-night stand in the stomach because she is pregnant with his baby. &quot;Nigga You Love To Hate&quot; is also notable for a chorus chanting &quot;Fuck you, Ice Cube&quot;, setting the tone for the album and introducing a pattern of obscenity and profanity.
38016
38017 Produced by [[the Bomb Squad]] ([[Public Enemy]]) and [[Da Lench Mob]], ''AmeriKKKa's Most Wanted'' received accolades for innovation in production upon release. However, many critics do not feel that the beats in the album have aged very well. Since this time, West Coast rap has largely taken a different direction from Ice Cube's style, heading more towards the smooth drawl of [[Dr. Dre]] and [[Snoop Dogg]]; this album sounds dated as a result.
38018
38019 Before striking out on his own, Ice Cube was a member of the legendary West Coast rap group [[N.W.A.]] (''[[Straight Outta Compton]]'' - [[1989]]). Thus, Ice Cube's lyrical style is descended from West Coast rappers like [[Ice T]] (''[[Iceberg/Freedom of Speech...Just Watch What You Say]]'' - [[1989]]) and [[Too Short|Too $hort]] (''[[Life Is Too Short|Life Is...Too $hort]]''). Musically, [[Public Enemy]] (''[[Yo! Bum Rush the Show]]'' - [[1987]])'s spare, hollow beats, [[old school rap]]pers like [[Eric B. &amp; Rakim]] (''[[Paid in Full]]'' - [[1987]]) and [[Kurtis Blow]] (''[[Kurtis Blow (album)|Kurtis Blow]]'' - [[1980]]) and 1970s [[funk]] ([[Parliament (band)|Parliament]] - ''[[Motor Booty Affair]]'' - [[1978]]; [[Gap Band]] - ''[[The Gap Band II]]'') and [[soul music|soul]] ([[Sly &amp; the Family Stone]] - ''[[There's a Riot Goin' On]]'' - [[1971]]; [[Curtis Mayfield]] - ''[[Let's Do It Again]]'' - [[1975]]) influenced Ice Cube's sound, partially through his producers, [[the Bomb Squad]].
38020
38021 Ice Cube influenced later West Coast rappers, including the stoned drawl of [[Cypress Hill]] (''[[Cypress Hill (album)|Cypress Hill]]'' - [[1991]]) and [[The Pharcyde]] (''[[Bizarre Ride II to the Pharcyde]]'' - [[1992]]), as well as later [[G Funk]] rappers like [[Dr. Dre]] (''[[The Chronic]]'' - [[1992]]) and [[Snoop Doggy Dogg]] (''[[Doggystyle]]'' - [[1993]]). Though Ice Cube's popularity among mainstream listeners has not continued into the late 1990s, and his sound is distinctively [[old school rap|old school]] to modern ears, many rappers themselves have been influenced by his innovative lyrical techniques. Rappers like [[Eminem]] (''[[The Slim Shady LP]]'' - [[1999]]), [[Nas (rapper)|Nas]] (''[[Illmatic]]'' - [[1994]]) and [[Tupac Shakur]] (''[[2Pacalypse Now]]'' - [[1992]]) similarly use cartoonish and unrealistic images of thug violence to protest the conditions of the poor and working class. While Ice Cube most often described true circumstances in outlandish fashion, such as a fairy tale in &quot;A Gangsta's Fairytale&quot;, later rappers took this to the extreme of describing physically impossible acts of violence in an outrageously exaggerated manner.
38022
38023 The album spawned the hit single soulful and depressing ''Dead Homiez'' on the charts.
38024
38025 ==Track listing==
38026 #&quot;Better off Dead&quot; ([[Brian Holt]]/[[Ice Cube]])
38027 #&quot;The Nigga Ya Love to Hate&quot; (Ice Cube/[[E. Sadler]])
38028 #&quot;Amerikkka's Most Wanted&quot; (Ice Cube/Sadler/[[Keith Shocklee]])
38029 #&quot;What They Hittin' Foe&quot; ([[Average White Band]]/Ice Cube)
38030 #&quot;You Can't Fade Me/JD's Gaffilin'&quot; (Ice Cube/Sadler)
38031 #&quot;Once upon a Time in the Projects&quot; (Ice Cube/[[Sir Jinx]])
38032 #&quot;Turn off the Radio&quot; (D./Ice Cube/Sadler/[[Betty Shabazz]])
38033 #&quot;Endangered Species (Tales from the Darkside)&quot; ([[Chuck D]]/Ice Cube/Sadler/Sir Jinx)
38034 #&quot;A Gangsta's Fairytale&quot; (Ice Cube/Sadler)
38035 #&quot;I'm Only Out for One Thang&quot; ([[Flavor Flav]]/Ice Cube/Sir Jinx/[[Stevie Wonder]])
38036 #&quot;Get off My Dick and Tell Yo Bitch to Come Here&quot; (Ice Cube/Sadler)
38037 #&quot;The Drive By&quot; (Shocklee/Sir Jinx)
38038 #&quot;Rollin' Wit the Lench Mob&quot; (Ice Cube/Sadler)
38039 #&quot;Who's the Mack?&quot; (Ice Cube/[[JBs]])
38040 #&quot;It's a Man's World&quot; (Ice Cube/Sir Jinx/[[Yo Yo]])
38041 #&quot;The Bomb&quot; (Ice Cube/Sir Jinx)
38042 #&quot;Endangered Species (Tales From the Darkside)(Remix)&quot;
38043 #&quot;Jackin’ For Beats&quot;
38044 #&quot;Get Off My Dick and Tell Yo Bitch To Come Here(Remix)&quot;
38045 #&quot;The Product&quot;
38046 #&quot;Dead Homiez&quot;
38047 #&quot;JD’s Gaffilin’ (Part 2)&quot;
38048 #&quot;I Gotta Say What Up!!!&quot;
38049 Tracks 17-23 are on the 2003 re-release, originally on the out-of-print 1990 EP ''Kill At Will''.
38050
38051 ==Personnel==
38052 #[[The Bomb Squad]] - [[Record Producer]]
38053 #Mario Castellanos - [[Photography]]
38054 #[[Chris Champion]] - Assistant Engineer
38055 #[[Chuck D.]] - Performer
38056 #[[Da Lench Mob]] - [[Vocals]] (bckgr), Producer
38057 #[[(Ex) Cat Heads]] - Vocals (bckgr)
38058 #[[Flavor Flav]] - Vocals, Performer
38059 #[[Ricky Harris]] - Vocals (bckgr)
38060 #[[Al Hayes]] - [[Bass Guitar]], [[Guitar]]
38061 #[[Vincent Henry]] - [[Flute]], [[Saxophone]]
38062 #[[Brian Holt]] - Vocals
38063 #Kevin Hosmann - Art Direction
38064 #[[Ice Cube]] - Vocals, Producer
38065 #[[J. Dee]] - Vocals (bckgr)
38066 #[[Tim Rollins]] - [[Piano]]
38067 #[[E. Sadler]] - Producer
38068 #[[Nick Sansano]] - Engineer
38069 #Shannon - Vocals (bckgr)
38070 #Christopher Shaw - Engineer
38071 #[[Keith Shocklee]] - [[Scratching]]
38072 #[[Sir Jinx]] - Vocals (bckgr), Producer
38073 #[[Howie Weinberg]] - Mastering
38074 #Dan Wood - Vocals (bckgr), Engineer
38075 #[[Yo-Yo (rapper)|Yo-Yo]] - Vocals, Performer
38076
38077 ==Chart positions==
38078 [[Billboard Music Charts]] (North America) - album
38079 1990 The Billboard 200 No. 19
38080 1990 Top R&amp;B/Hip-Hop Albums No. 6
38081 Billboard (North America) singles
38082 1990 Amerikkka's Most Wanted Hot Rap Singles No. 1
38083
38084 ==External links==
38085 *[http://www.leoslyrics.com/albums/1520/ for lyrics]
38086
38087
38088 [[Category:Ice Cube albums]]
38089 [[Category:1990 albums]]</text>
38090 </revision>
38091 </page>
38092 <page>
38093 <title>Afrika Bambaataa</title>
38094 <id>866</id>
38095 <revision>
38096 <id>42007869</id>
38097 <timestamp>2006-03-03T04:40:43Z</timestamp>
38098 <contributor>
38099 <ip>70.186.181.23</ip>
38100 </contributor>
38101 <comment>/* Discography */</comment>
38102 <text xml:space="preserve">[[Image:Bambaat7a.jpg|thumb]]
38103
38104 '''Afrika Bambaataa''' (born [[April 10]] or [[October 4]], [[1957]] or [[1960]], though his birthdate is hotly debated; he himself refuses to comment on his age) is a DJ and community leader from the South [[Bronx]], who was instrumental in the early development of [[hip hop music|hip hop]] throughout the 1970s.
38105
38106 Afrika Bambaataa's birthname has been mistakenly listed as Kevin Donovan; however, Kevin Donovan was actually another man and leader of the Harlem Underground Band.
38107
38108 During Bambaataa's early years, he was a founding member of the Bronxdale Projects-area [[street gang]], The Savage Seven. Due to the explosive growth of the gang, it later became known as the [[Black Spades]], and Bambaataa rose to the position of Division Leader. After a life-changing visit to Africa, he changed his name to '''Afrika Bambaataa Aasim'''. Bambaataa was influenced by the depiction of the [[Zulu]] warriors attacking British troops at Rorke's Drift in the [[Michael Caine]] film ''[[Zulu (film)|Zulu]]''. He took his name, which roughly translated to &quot;affectionate leader&quot;, from the film.
38109
38110 After the visit, Bambaataa decided to use his leadership to turn those involved in the gang life into something more positive to the community. This began the development of [[The Organization]], which soon later became known as the [[Zulu Nation]], a group of racially and politically aware rappers, [[B-boy]]s, [[graffiti]] artists and other people involved in hip hop culture that gained fame in the early eighties to mid nineties. By [[1977]], inspired by DJ [[Kool Herc]], Bambaataa had begun organizing [[block parties]] all around the South Bronx, and he was soon renowned as one of the best DJs in the business. In [[1980]], he produced [[Soul Sonic Force]]'s landmark single, &quot;[[Zulu Nation Throwdown]]&quot;. In 2000 [[Rage Against The Machine]] covered Afrika's song Renegades of Funk for their album &quot;[[Renegades (album)|Renegades]]&quot;.
38111
38112 In [[1982]], Bambaataa organised the very first European hip hop tour. Along with himself were rapper and graffiti artist [[Rammellzee]], Zulu Nation DJ [[Grand Mixer DXT]] (formerly Grand Mixer D.St), B-boy and B-girl crews the [[Rock Steady Crew]], and the Double Dutch Girls, as well as legendary graffiti artists [[Fab 5 Freddy]], [[Phase 2]], [[Futura 2000]], and [[Dondi]].
38113
38114 Also in 1982, Bambaataa became a solo artist (having produced several other singles) and released &quot;[[Jazzy Sensation]]&quot; on [[Tommy Boy Records]] in that year. &quot;[[Planet Rock - The Album|Planet Rock]]&quot;, a popular single, came out that June under the name Afrika Bambaataa and the [[Soul Sonic Force]]. The song melded electronic hip hop beats with the main melody from [[Kraftwerk]]'s [[Trans-Europe Express (album)|Trans-Europe Express]], as well as portions from records by [[Ennio Morricone]] and [[Captain Sky]] - thus creating a new style of music altogether, [[electro funk]]. It influenced many styles of [[electronic music|electronic]] and [[dance music]], e.g. [[house music]] and [[techno music]]. In [[1984]], Bambaataa recorded &quot;[[Unity]]&quot; with [[James Brown (musician)|James Brown]] and released &quot;[[World Destruction]]&quot; under the name [[Time Zone]] (with [[John Lydon]]). [[Shango Funk Theology]], a full length album, came out under the name Shango. This was followed by &quot;[[Funk You]]&quot; in [[1985]] and then his formal full album debut, [[Beware (The Funk Is Everywhere)]].
38115
38116 Bambaataa then left Tommy Boy and signed with [[Capitol Records]], released [[The Light]] (as Afrika Bambaataa &amp; the Family), which included aid from [[George Clinton (funk musician)|George Clinton]], [[Bootsy Collins]], [[Boy George]] and [[UB40]]. [[1990-2000: Decade of Darkness]] was released in [[1991]]. It included both [[hip house]] tracks that were produced by the Italian team De Point (most of those have been collected on ZYX record's &quot;The 12&quot; Mixes&quot; Compilation) as well as hip hop and electro funk tracks. On &quot;Warlocks and Witches&quot;, Bam (as his name is often abbreviated) focused on hip hop. From the mid-1990s, Bam returned to his electro roots, collaborating with [[Westbam]] (who was named after him) and culminating in 2004's excellent album &quot;Dark Matter Moving at the Speed of Light&quot; which featured [[Gary Numan]] and many others.
38117
38118 ==Discography==
38119 {| cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; style=&quot;border:3px solid grey;&quot;
38120 |-
38121 ! '''Year''' || '''Title''' || '''Label'''
38122 |-
38123 | 1982 || ''[[Planet Rock (with Soul Sonic Force)]]'' || [[Tommy Boy Records |Tommy Boy Records (12&quot;)]]
38124 |-
38125 | 1982 || ''[[Looking For The Perfect Beat (with Soul Sonic Force)]]'' || Tommy Boy Records (12&quot;)
38126 |-
38127 | 1983 || ''[[Renegades Of Funk]]'' || Tommy Boy Records (12&quot;)
38128 |-
38129 | 1983 || ''[[Wildstyle]]'' || [[Celluloid Records (12&quot;)]]
38130 |-
38131 | 1984 || ''[[Frantic Situation (with Shango from the motion picture soundtrack &quot;Beat Street&quot;)]]'' || Tommy Boy Records
38132 |-
38133 | 1985 || ''[[Sun City (Artists United Against Apartheid)]]'' || [[EMI]]
38134 |-
38135 | 1986 || ''[[Planet Rock - The Album]]'' || Tommy Boy Records (12&quot;)
38136 |-
38137 | 1986 || ''Beware (The Funk Is Everywhere)''
38138 | Tommy Boy Records
38139 |-
38140 | 1987 || ''Death Mix Throwdown'' || Blatant
38141 |-
38142 | 1988 || ''The Light'' || [[EMI]] America
38143 |-
38144 | 1991 || ''The Decade of Darkness 1990-2000'' || [[EMI]] Records USA
38145 |-
38146 | 1992 || ''Don't Stop... Planet Rock (The Remix EP)'' || Tommy Boy (EP)
38147 |-
38148 | 1993 || &quot;Zulu War Chant&quot; || Profile (12&quot;)
38149 |-
38150 | 1993 || &quot;What's the Name of this Nation?... Zulu&quot; || Profile (12&quot;)
38151 |-
38152 | 1994 || &quot;Feel the Vibe&quot; || DFC (12&quot;) (with Khayan)
38153 |-
38154 | 1996 || &quot;Jazzin'&quot; by Khayan || ZYX
38155 |-
38156 | 1996 || ''[[Lost Generation]]'' || [[Hot]]
38157 |-
38158 | 1996 || ''[[Warlocks and Witches, Computer Chips, Microchips and You]]'' || [[Profile]]
38159 |-
38160 | 1997 || ''Zulu Groove'' || Hudson Vandam (Compilation)
38161 |-
38162 | 1998 || &quot;Agharta - The City of Shamballa&quot; || Low Spirit (12&quot;) (with Westbam)
38163 |-
38164 | 1999 || ''Electro Funk Breakdown'' || [[DMC]]
38165 |-
38166 | 1999 || ''Return to Planet Rock'' || [[Berger Music]]
38167 |-
38168 | 2000 || ''Hydraulic Funk'' || Strictly Hype
38169 |-
38170 | 2001 || ''Electro Funk Breakdown'' || DMX (Compilation)
38171 |-
38172 | 2001 || ''Looking for the Perfect Beat: 1980-1985'' || Tommy Boy Records (Compilation)
38173 |-
38174 | 2004 || ''Dark Matter Moving at the Speed of Light'' || Tommy Boy Records
38175 |-
38176 | 2005 || ''Metal'' || Tommy Boy Records
38177 |-
38178 | 2005 || ''Metal Remixes'' || Tommy Boy Records
38179 |}
38180
38181 ==See also==
38182 *[[Nuwaubianism]]
38183
38184 ==External links==
38185 {{wikiquote}}
38186 * {{musicbrainz artist|id=fe3503fb-146f-4d68-a591-a7e5798c321f|name=Afrika Bambaataa}}
38187 [[Category:1957 births|Bambaataa, Afrika]]
38188 [[Category:Living people|Bambaataa, Afrika]]
38189 [[Category:1960 births|Bambaataa, Afrika]]
38190 [[Category:Living people|Bambaataa, Afrika]]
38191 [[Category:Hip hop DJs|Bambaata, Afrika]]
38192 [[Category:African American musicians|Bambaata, Afrika]]
38193
38194 [[als:Afrika Bambaata]]
38195 [[de:Afrika Bambaataa]]
38196 [[fr:Afrika Bambaataa]]
38197 [[nl:Afrika Bambaataa]]
38198 [[pl:Kevin Donovan]]
38199 [[pt:Afrika Bambaataa]]
38200 [[sv:Afrika Bambaataa]]</text>
38201 </revision>
38202 </page>
38203 <page>
38204 <title>Alp Arslan</title>
38205 <id>868</id>
38206 <revision>
38207 <id>41127491</id>
38208 <timestamp>2006-02-25T05:37:07Z</timestamp>
38209 <contributor>
38210 <username>OrphanBot</username>
38211 <id>621721</id>
38212 </contributor>
38213 <comment>Removing image with no source information. Such images that are older than seven days may be deleted at any time.</comment>
38214 <text xml:space="preserve">&lt;!-- Unsourced image removed: [[Image:Alparslan.JPG|thumb|right|250px|''Alp Arslan'']] --&gt;
38215
38216 '''Muhammed ben Da'ud''' ([[1029]]–[[December 15]], [[1072]]) was the second sultan of the dynasty of [[Seljuk Turks]], in [[Iran|Persia]], and great-grandson of [[Seljuk]], the founder of the dynasty. He assumed the name of Muhammed when he embraced [[Islam]], and on account of his military prowess and personal valor and fighting skills he obtained the surname '''Alp Arslan''', which signifies &quot;a valiant lion.&quot;
38217
38218 He succeeded his father [[Da'ud]] as ruler of [[Khorasan]] in [[1059]], and his uncle [[ToghrÃŧl|ToğrÃŧl]] as sultan of [[Iran]] and [[Baghdad]] in 1063, and thus became sole monarch of [[Iran|Persia]] from the river [[Oxus]] to the [[Tigris]]. In consolidating his empire and subduing contending factions he was ably assisted by [[Nizam ul-Mulk]], his [[Persians|Persian]] [[vizier]], and one of the most eminent statesmen in early [[Muslim]] history. With Peace and security established in his dominions, he convoked an assembly of the states and declared his son [[Malik Shah I]] his heir and successor. With the hope of acquiring immense booty in the rich church of [[St. Basil]] in [[Caesarea Mazaca]], the capital of [[Cappadocia]], he placed himself at the head of the Turkish cavalry, crossed the [[Euphrates]] and entered and plundered that city. He then marched into [[Armenia]] and [[History of Georgia (country)|Georgia]], which he conquered in [[1064]].
38219
38220 ==Byzantine struggle==
38221 In [[1068]] Alp Arslan invaded the [[Byzantine Empire]]. The [[Byzantine Emperors|emperor]] [[Romanus IV]] Diogenes, assuming the command in person, met the invaders in [[Cilicia]]. In three arduous campaigns, the first two of which were conducted by the emperor himself while the third was directed by Manuel Comnenus (great-uncle of Emperor [[Manuel Comnenus]]), the Turks were defeated in detail in [[1070]] driven across the Euphrates. In [[1071]] Romanus again took the field and advanced with 100,000 men, including a contingent of the Turkish tribe of the [[Uzes]] as well as contingents of [[France|French]] and [[Normans]], under [[Ursel of Bahol]], into [[Armenia]].
38222
38223 At [[Manzikert]], on the [[Murad Tchai]], north of [[Lake Van]], he was met by Alp Arslan. The sultan proposed terms of peace, which were rejected by the emperor, and the two forces met in the [[Battle of Manzikert]], in which the Byzantines, after a terrible slaughter, were totally routed; a result due mainly to the betrayal of Romanus by his political enemies during the battle and the rapid tactics of the Turkish cavalry.
38224
38225 Emperor Romanus IV was himself taken prisoner and conducted into the presence of Alp Arslan, who treated him with generosity, and terms of peace having been agreed to, dismissed him, loaded with presents and respectfully attended by a military guard. This famous conversation is recorded to have taken place after Romanus IV was brought as a prisoner before the Sultan:
38226
38227 :''Alp Arslan'': &quot;What would you do if I was brought before you as a prisoner?&quot;
38228 :''Romanus'': &quot;Perhaps I'd kill you, or exhibit you in the streets of Constantinople.&quot;
38229 :''Alp Arslan'': &quot;My punishment is far heavier. I forgive you, and set you free.&quot;
38230
38231 Unfortunately for Romanus, the Emperor's subjects were far less kind than his enemy, making the mercy of Alp Arlsan a curse: Romanus was blinded and finally killed after great torment.
38232
38233 After Alp Arslan's victories the balance in the near Asia changed completely in favour of [[Seljuk Turks]] and [[Sunnite|Sunni]] Muslims. While the Byzantine Empire was to continue for nearly another four centuries, and the Crusades would contest the issue for some time, their victory at Manzikert signalled the beginning of Turkish ascendancy in the [[Middle East]]. Most historians, including Edward Gibbons, date the defeat at Manzikert as the beginning of the end of the Eastern Roman Empire. Certainly the entry of Turkic farmers following their horsemen ended the themes in Anatolia which had furnished the Empire with men and treasure. The importance of this battle, and the skill of Alp Arslan in fighting it, cannot be overstated.
38234
38235 ==State organization==
38236 Alp Arslan's strength lay in the military realm, domestic affairs being handled by his Persian vizier, [[Nizam al-Mulk]]; founder of the administrative organization which characterized and strengthened the sultanate during the reigns of Alp Arslan and his son, Malik Shah. Military fiefs, governed by Seljuk princes, were established to provide support for the soldiery and to accommodate the nomadic Turks to the established Persian agricultural scene. This type of military fiefdom enabled the nomadic Turks to draw on the resources of the sedantary Persians, and other established cultures within the Seljuk realm, and allowed Alp Arslan to field a huge standing army, without depending on tribute from conquest to pay his soldiery. He not only had enough food from his subjects to maintain his military, but the taxes collected from traders and merchants added to his coffers sufficiently to fund his continuous wars.
38237
38238 ==Death==
38239 The dominion of Alp Arslan after Manzikert extended over much of western [[Asia]]. He soon prepared to march to the conquest of [[Turkestan]], the original seat of his ancestors. With a powerful army he advanced to the banks of the Oxus. Before he could pass the river with safety, however, it was necessary to subdue certain fortresses, one of which was for several days vigorously defended by the governor, [[Yussuf el-Harezmi]], a [[Khwarezmid Empire|Khwarezmian]]. He was, however, obliged to surrender and was carried a prisoner before the sultan, who condemned him to a cruel death. Yussuf, in desperation, drew his dagger and rushed upon the sultan. Alp Arslan motioned to his guards not to interfere and drew his bow, but his foot slipped, the arrow glanced aside and he received the assassin's dagger in his breast. Alp Arslan died four days later from this wound on [[November 25]], [[1072]] in his 42nd year, and was taken to [[Merv]] to be buried next to his father [[ÇağrÄą Bey]]. Upon his tomb lies the following inscription:
38240
38241 :“''O those who saw the sky-high grandeur of Alp Arslan, behold! He is under the black soil now''...”
38242
38243 As he lay dying, Alp Arslan whispered to his son that his vanity had killed him. &quot;Alas,&quot; he is recorded to have said, &quot;surrounded by great warriors devoted to my cause, guarded night and day by them, I should have allowed them to do their job. I had been warned against trying to protect myself, and against letting my courage get in the way of my good sense. I forgot those warnings, and here I lay, dying in agony. Remember well the lessons learned, and do not allow your vanity to overreach your good sense...&quot;
38244
38245 ==Reference==
38246 {{wikiquote}}
38247 *[http://www.bookrags.com/biography-alp-arslan/index.html Biography]
38248
38249 {{s-start}}
38250 {{s-bef|before=[[ToghrÃŧl]]}}
38251 {{s-ttl|title=[[Seljuk Turks#Rulers of Seljuk Dynasty 1037-1157|Sultan of Great Seljuk]]|years=[[1063]]–[[1072]]}}
38252 {{s-aft|after=[[Malik Shah I]]}}
38253 {{end}}
38254
38255 [[Category:1029 births]]
38256 [[Category:1072 deaths]]
38257 [[Category:Monarchs of Persia]]
38258 [[Category:Seljuk Turks]]
38259
38260 [[bg:АĐģĐŋ АŅ€ŅĐģĐ°ĐŊ]]
38261 [[de:Alp Arslan]]
38262 [[fr:Alp Arslan]]
38263 [[he:אל×Ŗ ארסלאן]]
38264 [[nl:Alp Arslan]]
38265 [[pl:Alp Arslan]]
38266 [[fi:Alp Arslan]]
38267 [[sv:Alp Arslan]]
38268 [[tk:Alp Arslan]]
38269 [[tr:Alp Arslan]]</text>
38270 </revision>
38271 </page>
38272 <page>
38273 <title>American Film Institute</title>
38274 <id>869</id>
38275 <revision>
38276 <id>38775301</id>
38277 <timestamp>2006-02-08T15:58:11Z</timestamp>
38278 <contributor>
38279 <username>Cookie90</username>
38280 <id>733900</id>
38281 </contributor>
38282 <minor />
38283 <text xml:space="preserve">The '''American Film Institute''' ('''AFI''') is an independent [[non-profit]] organization created by the [[National Endowment for the Arts]], which was established in [[1967]] when President [[Lyndon B. Johnson]] signed the National Foundation on the Arts and the Humanities Act.
38284
38285 George Stevens, Jr., was the first CEO and Director. In 1980 [[Jean Picker Firstenberg]] became Director and CEO, a position she still holds.
38286
38287 The American Film Institute focuses on training through hands-on experience with established figures in the [[AFI Conservatory]], as well as on preserving old film, which is subject to degradation of its [[film stock]]. In spite of its name, AFI does not focus exclusively on [[film]], but also on [[television]] and [[video]].
38288
38289 In [[1973]], the AFI established a [[AFI Life Achievement Award|Life Achievement Award]].
38290
38291 In [[1998]], the 100th anniversary of American film, AFI began its [[100 Years Series]], celebrating and promoting interest in film history.
38292
38293 They recently opened the [[AFI Silver]] theatre in [[Silver Spring, Maryland]] near [[Washington, D.C.]]
38294
38295 ==See also==
38296 * [[AFI 100 Years series]]
38297 * [[2005 American Film Institute Awards|AFI Awards 2005]]
38298 * [[2004 American Film Institute Awards|AFI Awards 2004]]
38299 * [[2003 American Film Institute Awards|AFI Awards 2003]]
38300 * [[2002 American Film Institute Awards|AFI Awards 2002]]
38301 * [[2001 American Film Institute Awards|AFI Awards 2001]]
38302
38303 ==External links==
38304 *[http://www.afi.com/ AFI Website]
38305 *[http://www.afi.com/about/history.aspx History of AFI]
38306 *[http://www.afifest.com AFI Fest (AFI Los Angeles Film Festival) Official Website]
38307 *[http://www.ukhotmovies.com/film-festivals/los-angeles-film-festival/information.html AFI Los Angeles Film Festival - History and Information]
38308
38309 [[Category:Cinema of the United States]]
38310 [[Category:Film schools]]
38311
38312 [[de:American Film Institute]]
38313 [[fr:American Film Institute]]
38314 [[it:American Film Institute]]
38315 [[fi:American Film Institute]]
38316 [[simple:American Film Institute]]</text>
38317 </revision>
38318 </page>
38319 <page>
38320 <title>Auteur theory</title>
38321 <id>870</id>
38322 <revision>
38323 <id>40359338</id>
38324 <timestamp>2006-02-20T01:17:57Z</timestamp>
38325 <contributor>
38326 <username>Rich Farmbrough</username>
38327 <id>82835</id>
38328 </contributor>
38329 <minor />
38330 <text xml:space="preserve">The '''auteur theory''' is the theory that a film (or a body of work) by a director (or, rarely, a producer) reflects the personal vision and preoccupations of that director, as if he or she were the work's primary &quot;author&quot; ([[auteur]]). The auteur theory has had a major impact on [[film criticism]] worldwide ever since it was first advocated by [[François Truffaut]] in 1954. &quot;Auteurism&quot; is the method of analyzing films based on this theory (or, alternately, the characteristics of a director's work that makes him an auteur). Both the Auteur Theory and the auteurism method of film analysis are frequently associated with the [[French New Wave]] and the film critics who wrote for the [[Cahiers du cinÊma]].
38331
38332 ''For a list of directors who are considered '''auteurs''', go to the article [[Auteur]]''.
38333 __NOTOC__
38334 ==Truffaut's theory==
38335
38336 In his [[1954]] essay ''Une certaine tendance du cinÊma français'' (&quot;a certain tendency in the French cinema&quot;) [[François Truffaut]] coined the phrase &quot;la politique des auteurs&quot;, and asserted that the worst of [[Jean Renoir]]'s movies would always be more interesting than the best of [[Jean Delannoy]]'s. &quot;Politique&quot; might very well be translated as &quot;policy,&quot; &quot;polemic&quot; or &quot;program&quot;; it involves a conscious decision to look at movies and to value them in a certain way. Truffaut provocatively said, &quot;There are no good and bad movies, only good and bad directors.&quot;
38337
38338 Much of Truffaut's writing of this period (as too that of his colleagues at the film criticism magazine ''[[Cahiers du cinÊma]]'') was designed to lambast post-war French cinema, and especially the big production films of the ''cinÊma de qualitÊ'' (&quot;quality films&quot;) that Truffaut's circle referred to with disdain as ''cinÊma de papa'' (or &quot;Dad's cinema&quot;). Their sudden discovery of a host of great American movies which flooded France at the end of the war (the [[Vichy France|Nazi occupation]] had prevented the French from seeing such classics as [[The Maltese Falcon]] and [[Citizen Kane]]) incited Truffaut to take up arms against what he considered to be an old-fashioned and sterile cinema. (One of the unfortunate ironies of the auteur theory is that, at the very moment Truffaut was writing, the Hollywood [[studio system]] of the 1950's had destroyed much of what he had appreciated.)
38339
38340 Truffaut's thinking was indebted to the work of [[AndrÊ Bazin]], co-founder of the ''Cahiers du cinÊma'' (where Truffaut worked), who promoted the idea that films should reflect a director's personal vision and who championed such filmmakers as [[Howard Hawks]], [[Alfred Hitchcock]] and [[Jean Renoir]]. Although Bazin provided a forum for auteurism to flourish, he himself remained wary of its excesses.
38341
38342 Another key element of Truffaut's theory comes from [[Alexandre Astruc]]'s notion of the ''camÊra-stylo'' or &quot;camera-pen&quot; and the idea that directors should wield their cameras like writers use their pens and that they need not be hindered by traditional storytelling.
38343
38344 Truffaut and the members of the ''Cahiers'' recognized that moviemaking was an industrial process. However, they proposed an ideal to strive for: the director should use the commercial apparatus the way a writer uses a pen and, through the [[mise en scène]], imprint his or her vision on the work (conversely, the role of the screenwriter was minimized in their eyes). While recognizing that not all directors reached this ideal, they valued the work of those who neared it.
38345
38346 Truffaut's theory maintains that all good directors (and many bad ones) have such a distinctive style or consistent theme that their influence is unmistakable in the body of their work. Truffaut himself was appreciative of both directors with a marked visual style (such as [[Alfred Hitchcock]]), and those whose visual style was less pronounced but who had nevertheless a consistent theme throughout their movies (such as [[Jean Renoir]]'s humanism).
38347
38348 ==Impact of the &quot;auteur theory&quot;==
38349
38350 The ''auteur theory'' was used by the directors of the ''[[nouvelle vague]]'' (New Wave) movement of French cinema in the 1960s (many of whom were also critics at the ''Cahiers du cinÊma'') as justification for their intensely personal and idiosyncratic films.
38351
38352 The approach soon found a home in English-language film criticism. In the U.K., ''Movie'' adopted auteurism and in the U.S., [[Andrew Sarris]] introduced it in the essay, &quot;Notes on the Auteur Theory&quot; in 1962. This essay is where the half-French, half-English term, &quot;auteur theory,&quot; originated. To be classified as an &quot;auteur&quot;, according to Sarris, a director must accomplish technical competence in his or her technique, personal style in terms of how the movie looks and feels, and interior meaning (although many of Sarris's auterist criteria were left vague). Later in the decade, Sarris published ''The American Cinema: Directors and Directions, 1929-1968'', which quickly became the unofficial bible of auteurism.
38353
38354 The auteurist critics&amp;mdash;[[François Truffaut|Truffaut]], [[Jean-Luc Godard|Godard]], [[Claude Chabrol|Chabrol]], [[Éric Rohmer|Rohmer]]&amp;mdash;wrote mostly about directors (as they were directors themselves), although they also produced some shrewd appreciations of actors. Later writers of the same general school have emphasized the contributions of star personalities like [[Mae West]]. However, the stress was on directors, and screenwriters, producers and others have reacted with a good deal of hostility. Writer [[William Goldman]] has said that, on first hearing the auteur theory, his reaction was, &quot;What's the punchline?&quot;
38355
38356 ==Criticism of the &quot;auteur theory&quot;==
38357
38358 Starting in the 1960s, there has been a backlash against the auteur theory. [[Pauline Kael]] and [[Andrew Sarris|Sarris]] feuded in the pages of ''[[The New Yorker]]'' and various film magazines. One reason for the backlash is the collaborative aspect of shooting a film (one person cannot do everything) and in the theory's privileging of the role of the director (whose name, at times, has become more important than the movie itself). In [[Pauline Kael|Kael]]'s review of [[Citizen Kane]], a classic film for the auteur model, she points out how the film involved the talents of co-writer [[Herman J. Mankiewicz]] and cinematographer [[Gregg Toland]] and would have been hurt without their distinctive ability. Also, the very people who championed the auteur theory backed away from it. [[Jean-Luc Godard|Godard]] handed over much creative control to others (most notably [[Jean-Pierre Gorin]]) in his later films while, in a twist of irony, Truffaut's later films embraced the same formalism he rejected early on in his career. Also, with costly films like [[Michael Cimino]]'s [[Heaven's Gate (film)|Heaven's Gate]], the excesses of auteurism not only created uncreative films, they put studios out of business.
38359
38360 However, even with the reevaulation of auteurism, the auteur theory continues to influence new filmmakers to this day.
38361
38362 ==See also==
38363 * [[mise en scène]]
38364
38365 ==External links==
38366 * [http://movies.groups.yahoo.com/group/a_film_by/ An auteurist film discussion group]
38367
38368
38369 [[Category:Film theory]]</text>
38370 </revision>
38371 </page>
38372 <page>
38373 <title>Action film</title>
38374 <id>871</id>
38375 <revision>
38376 <id>15899384</id>
38377 <timestamp>2002-08-04T00:46:59Z</timestamp>
38378 <contributor>
38379 <username>Maveric149</username>
38380 <id>62</id>
38381 </contributor>
38382 <minor />
38383 <text xml:space="preserve">#REDIRECT [[Action movie]]</text>
38384 </revision>
38385 </page>
38386 <page>
38387 <title>Akira Kurosawa</title>
38388 <id>872</id>
38389 <revision>
38390 <id>41926506</id>
38391 <timestamp>2006-03-02T17:51:18Z</timestamp>
38392 <contributor>
38393 <ip>208.250.29.8</ip>
38394 </contributor>
38395 <text xml:space="preserve">{{redirect|Kurosawa}}
38396
38397 {| id=&quot;toc&quot; width=&quot;300&quot; align=&quot;right&quot; border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; style=&quot;float:right; margin: 0em 0em 0em 0.5em; width:300px;&quot;
38398 |-
38399 ! align=&quot;center&quot; colspan=&quot;2&quot; style=&quot;background:#efefef;&quot; | &lt;big&gt;Akira Kurosawa&lt;/big&gt;
38400 |-
38401 | align=&quot;center&quot; colspan=&quot;2&quot;| Japanese Film director
38402 |-
38403 | align=&quot;center&quot; colspan=&quot;2&quot; style=&quot;background:#efefef;&quot; | ''[[Wikiquote:{{PAGENAME}}|&quot;There is something that might be called cinematic beauty. It can only be expressed in a film, and it must be present for that film to be a moving work. When it is very well expressed, one experiences a particularly deep emotion while watching that film. I believe that it is this quality that draws people to come and see a film, and that it is the hope of attaining this quality that inspires the director to make the film in the first place.&quot;]]''
38404 |-
38405 ! '''Born''' || [[23 March]], [[1910]]&lt;br /&gt;[[Ota, Tokyo]], [[Japan]]
38406 |-
38407 ! '''Died''' || [[6 September]], [[1998]]&lt;br /&gt;[[Setagaya, Tokyo]], [[Japan]]
38408 |}
38409
38410 '''Akira Kurosawa''' (éģ’枤 明 ''Kurosawa Akira'', also éģ’æ˛ĸ 明 in [[Wiktionary:Shinjitai|Shinjitai]], [[23 March]], [[1910]] &amp;ndash; [[6 September]], [[1998]]) was a prominent [[Japan|Japanese]] [[film director]], [[film producer]], and [[screenwriter]].
38411
38412 Few filmmakers have had a career so long or so acclaimed as Akira Kurosawa, perhaps Japan's best-known filmmaker. His films greatly influenced an entire generation of filmmakers the world over, ranging from George Lucas to Sergio Leone.
38413
38414 His first credited film (''[[Sanshiro Sugata (1943 film)|Sugata Sanshiro]]'') was released in 1943; his last (''[[Madadayo]]'') in 1993. His many awards include the [[Legion d'Honneur]] and an [[Academy Awards|Oscar]] for Lifetime Achievement.
38415
38416 == Early Career ==
38417 Kurosawa was born in [[Ota, Tokyo|Omori]], [[Tokyo]], the youngest of seven children. He trained as a painter and began work in the film industry as an assistant director to Kajiro Yamamoto in 1936. He made his directorial debut in 1943 with ''[[Sanshiro Sugata (1943 film)|Sugata Sanshiro]]''. His first few films were made under the watchful eye of the wartime Japanese government and sometimes contained nationalistic themes. For instance, ''[[The Most Beautiful|The Most Beautiful]]'' is a propaganda film about Japanese women working in an armaments factory. ''[[Sanshiro Sugata Part II|Judo Saga 2]]'' has been held to be explicitly anti-American in the way that it portrays Japanese [[judo]] as superior to western (American) [[boxing]].
38418
38419 His first post-war film ''No regrets for our youth'', by contrast, is critical of the old Japanese regime and is about the wife of a left-wing dissident arrested for his political leanings. Kurosawa made several more films which deal with contemporary Japan, most notably ''[[Drunken Angel]]'' and ''[[Stray Dog]]''. However it was a period film ''[[Rashomon (film)|Rashomon]]'' which made him internationally famous and won the Grand Prix at the [[Venice Film Festival]].
38420
38421 == Characteristics ==
38422 Kurosawa is best-known for his period pieces or {{nihongo|''[[jidaigeki]]''|時äģŖ劇|}} like ''[[Seven Samurai]]'' and ''[[Ran (1985 film)|Ran]]'', but several of his films dealt with contemporary Japan: for example ''[[Stray Dog]]'', which looks at the criminal underworld just after the end of the war, and ''[[Ikiru]]'', which deals with a Japanese bureaucrat who discovers that he is suffering from cancer but eventually steps out of depression and struggles against bureacratic inertia to leave his small contribution to the world in the form of a small community park before he dies.
38423
38424 Kurosawa had a distinctive cinematic technique, which he had developed by the 1950s, and which gave his films a unique look. He liked using telephoto lenses for the way they flattened the frame and also because he believed that placing cameras farther away from his actors produced better performances. He also liked using multiple cameras, which allowed him to shoot an action from different angles. Another Kurosawa trademark was the use of weather elements to heighten mood: for example the heavy rain in the final battle in ''Seven Samurai'' and the fog in ''Throne of Blood''. Kurosawa also liked using left-to-right frame wipes as a transition device.
38425
38426 He was known as &quot;Tenno&quot;, literally &quot;Emperor&quot;, for his dictatorial directing style. He was a perfectionist who spent enormous amounts of time and effort to achieve the desired visual effects. In ''[[Rashomon]]'', he dyed the rain water black with calligraphy ink in order to achieve the effect of heavy rain, and ended up using up the entire local water supply of the location area in creating the rainstorm. In ''[[Throne of Blood]]'', in the final scene in which Mifune is shot by arrows, Kurosawa used real arrows shot by expert archers from a short range, landing within centimetres of Mifune's body.
38427
38428 Other stories include demanding a stream be made to run in the opposite direction in order to get a better visual effect, and having the roof of a house removed, later to be replaced, because he felt the roof's presence to be unattractive in a short sequence filmed from a train.
38429
38430 == Influences ==
38431 A notable feature of Kurosawa's films is the breadth of his artistic influences. Some of his plots are adaptations of [[William Shakespeare]]'s works. ''[[The Bad Sleep Well]]'' is based on ''[[Hamlet]]'', ''[[Ran (1985 film)|Ran]]'' is based on ''[[King Lear]]'' and ''Throne of Blood'' is based on ''[[Macbeth]]''. Kurosawa also directed film adaptations of Russian novels, including ''[[The Idiot (novel)|The Idiot]]'' by [[Dostoevsky]] and ''[[The Lower Depths]]'' by [[Maxim Gorky]]. ''Ikiru'' was based on [[Leo Tolstoy]]'s ''[[The Death of Ivan Ilyich]]''. ''[[High and Low]]'' was based on ''[[King's Ransom]]'' by [[United States|American]] [[crime]] writer [[Ed McBain]]. ''[[Stray Dog]]'' was inspired by the detective novels of [[Georges Simenon]]. The American film director [[John Ford]] also had a large influence on his work.
38432
38433 Despite criticism by some Japanese critics that Kurosawa was &quot;too Western&quot;, he was deeply influenced by Japanese culture as well, including the [[Kabuki]] and [[Noh]] theaters and the jidaigeki (period drama) genre of Japanese cinema.
38434
38435 == His influence ==
38436 Kurosawa's films had a huge influence on world cinema. Most explicitly, ''[[Seven Samurai]]'' was remade as the [[western movie|western]] ''[[The Magnificent Seven]]'', [[science fiction]] movie ''[[Battle Beyond the Stars]]'', and Pixar's ''[[A Bug's Life]]''. It also inspired two [[Hindi films]], [[Ramesh Sippy]]'s ''[[Sholay]]'' and Rajkumar Santhoshi's ''[[China Gate]]'', with similar plots. The story has also inspired [[novel]]s, among them [[Stephen King]]'s fifth ''[[The Dark Tower (series)|Dark Tower]]'' novel, ''[[Wolves of the Calla]]''.
38437
38438 ''[[Yojimbo (film)|Yojimbo]]'' was the basis for the [[Sergio Leone]] western ''[[A Fistful of Dollars]]'', the [[Coen Brothers]] film ''[[Miller's Crossing (film)|Miller's Crossing]]'', and the [[Bruce Willis]] prohibition-era ''[[Last Man Standing (film)|Last Man Standing]]''.
38439
38440 ''[[The Hidden Fortress]]'' had an influence on [[George Lucas]]'s earliest ''[[Star Wars]]'' film, especially in the characters of R2-D2 and C3PO.
38441
38442 ''[[Rashomon (film)|Rashomon]]'' not only helped open Japanese cinema to the world but virtually entered the English language as a term for fractured, inconsistent narratives as well as influencing other works, including episodes of television series and many motion pictures.
38443
38444 == Collaboration ==
38445 During his most productive period, from the late 40s to the mid-60s, Kurosawa often worked with the same group of collaborators. [[Fumio Hayasaka]] composed music for seven of his films; notably ''Rashomon'', ''Ikiru'' and ''Seven Samurai''. Many of Kurosawa's scripts, including ''Throne of Blood'', ''Seven Samurai'' and ''Ran'' were co-written with [[Hideo Oguni]]. [[Yoshiro Muraki]] was Kurosawa's [[production designer]] or [[art director]] for most of his films after ''Stray Dog'' in 1949 and [[Asakazu Naki]] was his [[cinematographer]] on 11 films including ''Ikiru'', ''Seven Samurai'' and ''Ran''. Kurosawa also liked recycling the same group of actors, especially [[Takashi Shimura]] and [[Toshiro Mifune]]. His collaboration with the latter is one of the greatest director-actor combinations in cinema history. It began with 1948's ''[[Drunken Angel]]'' and ended with 1964's ''[[Red Beard]]''.
38446
38447 == Later films ==
38448 Red Beard marked a turning point in Kurosawa's career in more ways than one. In addition to being his last film with Mifune, it was his last in black-and-white. It was also his last as a major director within the Japanese studio system making roughly a film a year. Kurosawa was signed to direct a Hollywood project, ''[[Tora! Tora! Tora!]]''; but [[20th Century Fox]] replaced him with [[Kinji Fukasaku]] before it was completed. His next few films were a lot harder to finance and were made at intervals of five years. The first, ''[[Dodesukaden]]'', about a group of poor people living around a rubbish dump, was not a success.
38449
38450 After an attempted suicide, Kurosawa went on to make several more films although arranging domestic financing was highly difficult despite his international reputation. ''[[Dersu Uzala]]'', made in the [[Soviet Union]] and set in Siberia in the early 20th century, was the only Kurosawa film made outside Japan and not in Japanese. It is about the friendship of a Russian explorer and a nomadic hunter. It won the [[Academy Award for Best Foreign Language Film|Oscar]] for Best Foreign Language Film. ''[[Kagemusha]]'', financed with the help of the director's most famous admirers, [[George Lucas]] and [[Francis Ford Coppola]], is the story of a man who is the double of a medieval Japanese lord and takes over his identity. Most important was ''[[Ran (1985 film)|Ran]]'', Kurosawa's version of King Lear set in medieval Japan. It was the great project of Kurosawa's late career, and he spent a decade planning it and trying to obtain funding, which he was finally able to do with the help of the French producer Serge Silberman. The film was a phenomenal international success and is generally considered Kurosawa's last masterpiece.
38451
38452 Kurosawa made three more films during the 1990s which were more personal than his earlier works. ''[[Dreams (1990 film)|Dreams]]'' is a series of vignettes based on his own dreams. ''[[Rhapsody in August]]'' is about memories of the [[Nagasaki]] atom bomb and his final film: ''[[Madadayo]]'' is about a retired teacher and his former students. Kurosawa died in [[Setagaya, Tokyo]], at age 88.
38453
38454 ==Trivia==
38455
38456 Kurosawa was a notoriously lavish gourmet, and spent huge quantities of money on film sets providing an uneatably large quantity and quality of delicacies, especially meat, for the cast and crew.
38457
38458 ==Awards==
38459 *1951- Golden Lion at the Venice Film Festival for Rashomon
38460 *1954- Silver Lion at the Venice Film Festival for Seven Samurai
38461 *1976- Academy Award: Best Foreign Language Film for Dersu Uzala
38462 *1980- Golden Palm at the Cannes Film Festival for Kagemusha
38463 *1982- Career Golden Lion at the Venice Film Festival
38464 *1984- Legion d'Honneur
38465 *1990- Honorary Academy Award
38466
38467 ==Filmography==
38468
38469 [[Image:derzuuzala.jpg|thumb|450px|[[Maxim Munzuk]] as Dersu Uzala (left) and [[Yury Solomin]] as [[Vladimir Arsenyev]] (right) in the [[1975]] film ''[[Dersu Uzala]]''.]]
38470
38471 *''[[Sugata Sanshiro (1943 film)|Sanshiro Sugata]]'' (1943)
38472 *''[[The Most Beautiful]]'' (1944)
38473 *''[[Sanshiro Sugata Part II]]'' aka ''Judo Saga 2'' (1945)
38474 *''[[They Who Step on the Tiger's Tail]]'' (1945)
38475 *''[[No Regrets for Our Youth]]'' (1946)
38476 *''[[One Wonderful Sunday]]'' (1946)
38477 *''[[Drunken Angel]]'' (1948)
38478 *''[[The Quiet Duel]]'' (1949)
38479 *''[[Stray Dog (film)|Stray Dog]]'' (1949)
38480 *''[[Scandal (1950 film)|Scandal]]'' (1950)
38481 *''[[Rashomon (film)|Rashomon]]'' (1950)
38482 *''[[Hakuchi (film)|The Idiot]]'' (1951)
38483 *''[[Ikiru]]'' aka ''To Live'' (1952)
38484 *''[[The Seven Samurai]]'' (1954)
38485 *''[[Record of a Living Being]]'' aka ''I Live in Fear'' (1955)
38486 *''[[Throne of Blood|The Throne of Blood]]'' aka ''Spider Web Castle'' (1957)
38487 *''[[The Lower Depths]]'' (1957)
38488 *''[[The Hidden Fortress]]'' (1958)
38489 *''[[The Bad Sleep Well]]'' (1960)
38490 *''[[Yojimbo (film)|Yojimbo]]'' aka ''The Bodyguard'' (1961)
38491 *''[[Tsubaki SanjÅĢrō|Sanjuro]]'' (1962)
38492 *''[[High and Low]]'' aka ''Heaven and Hell'' (1963)
38493 *''[[Red Beard]]'' (1965)
38494 *''[[Dodesukaden]]'' (1970)
38495 *''[[Dersu Uzala (1975 film)|Dersu Uzala]]'' (1975)
38496 *''[[Kagemusha]]'' aka ''Shadow Warrior'' (1980)
38497 *''[[Ran (1985 film)|Ran]]'' (1985)
38498 *''[[Dreams (1990 film)|Dreams]]'' aka ''Akira Kurosawa's Dreams'' (1990)
38499 *''[[Rhapsody in August]]'' (1991)
38500 *''[[Madadayo]]'' aka ''Not Yet'' (1993)
38501
38502 ==Further reading==
38503 * Mitsuhiro Yoshimoto ''Kurosawa: Film Studies and Japanese Cinema'' ISBN: 0822325195
38504 * Akira Kurosawa. ''Something Like An Autobiography''. Vintage Books USA, 1983. ISBN 0394714393
38505 * Stephen Prince. ''The Warrior's Camera''. Princeton University Press, 1999. ISBN 0691010463
38506 * Donald Richie, Joan Mellen. ''The Films of Akira Kurosawa''. University of California Press, 1999. ISBN 0520220374
38507 * Stuart Galbraith IV. ''The Emperor and the Wolf: The Lives and Films of Akira Kurosawa and Toshiro Mifune''. Faber &amp; Faber, 2002. ISBN 0571199828
38508
38509 == See also ==
38510 * [[Cinema of Japan]]
38511
38512 ==External links==
38513 * {{imdb name|id=0000041|name=Akira Kurosawa}}
38514 *[http://www.sensesofcinema.com/contents/directors/02/kurosawa.html Senses of Cinema: Great Directors Critical Database]
38515 *[http://www.japan-zone.com/modern/kurosawa_akira.shtml Profile at Japan Zone]
38516 *[http://www2.tky.3web.ne.jp/~adk/kurosawa/AKpage.html Akira Kurosawa Database]
38517 *[http://www.boheme-magazine.net/july03/ikiru.html Bohème Magazine] ''Ikiru'': The Art of Living
38518 *[http://www.quad4x.net/yojinbo/ Japanese Film - Kurosawa]
38519 *[http://www.pbs.org/wnet/gperf/shows/kurosawa/kurosawa.html Great Performances: Kurosawa (PBS)]
38520 {{kurosawa}}
38521 [[Category:1910 births|Kurosawa, Akira]]
38522 [[Category:1998 deaths|Kurosawa, Akira]]
38523 [[Category:Japanese film directors|Kurosawa, Akira]]
38524 [[Category:People from Tokyo|Kurosawa, Akira]]
38525
38526 [[ar:ØŖŲƒŲŠØąØ§ ŲƒŲˆØąŲˆØŗاŲˆØ§]]
38527 [[bs:Akira Kurosawa]]
38528 [[ca:Akira Kurosawa]]
38529 [[cs:Akira Kurosawa]]
38530 [[da:Akira Kurosawa]]
38531 [[de:Akira Kurosawa]]
38532 [[et:Akira Kurosawa]]
38533 [[es:Akira Kurosawa]]
38534 [[eo:KUROSAWA Akira]]
38535 [[fr:Akira Kurosawa]]
38536 [[ko:ęĩŦ로ė‚Ŧė™€ ė•„키ëŧ]]
38537 [[id:Akira Kurosawa]]
38538 [[it:Akira Kurosawa]]
38539 [[he:אקירה קורוסאווה]]
38540 [[kn:ā˛…ā˛•ā˛ŋā˛°ā˛ž ā˛•āŗā˛°āŗ‹ā˛¸ā˛žā˛ĩā˛ž]]
38541 [[ka:კáƒŖროსავა აკირა]]
38542 [[hu:Kuroszava Akira]]
38543 [[nl:Akira Kurosawa]]
38544 [[ja:éģ’枤明]]
38545 [[no:Akira Kurosawa]]
38546 [[pl:Akira Kurosawa]]
38547 [[pt:Akira Kurosawa]]
38548 [[ro:Akira Kurosawa]]
38549 [[ru:КŅƒŅ€ĐžŅĐ°Đ˛Đ°, АĐēиŅ€Đ°]]
38550 [[fi:Akira Kurosawa]]
38551 [[sv:Akira Kurosawa]]
38552 [[tr:Akira Kurosawa]]
38553 [[uk:АĐēŅ–Ņ€Đž КŅƒŅ€ĐžŅĐ°Đ˛Đ°]]
38554 [[zh:éģ‘枤明]]</text>
38555 </revision>
38556 </page>
38557 <page>
38558 <title>Ancient civilization</title>
38559 <id>873</id>
38560 <revision>
38561 <id>15899386</id>
38562 <timestamp>2002-08-03T03:13:56Z</timestamp>
38563 <contributor>
38564 <ip>195.149.37.94</ip>
38565 </contributor>
38566 <comment>#REDIRECT [[Ancient history]]</comment>
38567 <text xml:space="preserve">#REDIRECT [[Ancient history]]</text>
38568 </revision>
38569 </page>
38570 <page>
38571 <title>Ancient Egypt</title>
38572 <id>874</id>
38573 <revision>
38574 <id>42054072</id>
38575 <timestamp>2006-03-03T14:06:56Z</timestamp>
38576 <contributor>
38577 <ip>207.203.140.254</ip>
38578 </contributor>
38579 <text xml:space="preserve">{{AID}}
38580
38581 '''Ancient Egypt''' was a [[civilization]] located along the Lower [[Nile]], reaching from the [[Nile Delta]] in the north to as far south as [[Jebel Barkal]] at the time of its greatest extension (15th century BC). It lasted for three [[millennia]], from ''circa'' [[3200 BC]] to [[343 BC]], ending when [[Artaxerxes III]] conquered [[Egypt]]. As a civilization based on [[irrigation]] it is the quintessential example of a [[hydraulic empire]].[[Image:Egypt.Giza.Sphinx.01.jpg |thumb|right|450px|[[Khafre's Pyramid]] ([[Fourth dynasty of Egypt|4th dynasty]]) and [[Great Sphinx of Giza]] (c.[[2600 BC]] or perhaps earlier)]]
38582
38583 ==Background==
38584 [[Image:Map Ancient Egypt.png|thumb|right|275px|Map of Ancient Egypt]]Egypt is a [[transcontinental nation]] located mostly in [[North Africa]], with the [[Sinai Peninsula]] lying in [[Asia]]. The country has shorelines on the [[Mediterranean Sea]], the [[Red Sea]], the [[Gulf of Suez]] and the [[Gulf of Aqaba]]. It borders [[Libya]] to the west; [[Sudan]] to the south; and the [[Gaza Strip]], [[Palestine (region)|Palestine]] and [[Israel]] to the east. Ancient Egypt was divided into two kingdoms, known as [[Upper and Lower Egypt]]. The [[Nile]] river flows northward from a southerly point to the [[Mediterranean Sea|Mediterranean]]. The Nile river, around which much of the population of the country clusters, has been the lifeline for Egyptian culture since the [[Stone Age]] and [[Naqada]] cultures.
38585
38586 The area around the Nile was called Kemet (&quot;the black land&quot;, in [[Ancient Egyptian]] ''Kmt''), the name for the dark soil deposited by the Nile floodwaters. In contrast, the desert was called Deshret (&quot;the red land&quot;, in [[Ancient Egyptian]] ''Dsrt''), c.f. [[Herodotus]]: &quot;Egypt is a land of black soil.... We know that [[Libya]] is a redder earth&quot; (Histories, 2:12). The vowels within the consonants K-M-T are not known with certainty. [[Coptic language|Coptic]], however, provides some indication.
38587
38588 Nomadic hunter-gatherers began living along the Nile during the [[Pleistocene]]. Traces of these early peoples appear in the form of artifacts and rock carvings along the terraces of the Nile and in the oases. By about 6000 B.C., organized agriculture and large building construction had appeared in the Nile Valley.
38589
38590 ==People==
38591 Many theories have been proposed regarding the origins of early Egyptians, a subject still imbued with controversy today. [[Controversy over race of Ancient Egyptians]] has more information about this subject.
38592
38593 Egyptian society was a merging of [[Berbers|North]] and [[Northeast Africa]]n as well as [[Southwest Asia]]n peoples. Modern [[genetic genealogy|genetics]] reveals {{ref|www.ncbi.nlm.nih.gov.348}} {{ref|www.ncbi.nlm.nih.gov.349}} that the Egyptian population today is characterized by [[Haplogroup#Y chromosome DNA haplogroups|paternal]] lineages common to [[Berbers|North Africans]] primarily, and to some [[Near East]]ern peoples. Studies based on the [[Haplogroup#Mitochondrial DNA haplogroups|maternal]] lineages closely links modern Egyptians with people from modern [[Ethiopia]] {{ref|www.ncbi.nlm.nih.gov.350}}, {{ref|www.ncbi.nlm.nih.gov.351}}. The ancient Egyptians themselves traced their origin to a land they called [[Land of Punt|Punt]], or &quot;Ta Nteru&quot; (&quot;Land of the Gods&quot;), which most Egyptologists locate in the area encompassing the [[Ethiopian Highlands]].
38594
38595 A recent bioanthropological study on the dental morphology of ancient Egyptians confirms dental traits most characteristic of [[Berbers|North African]] and to a lesser extent [[Southwest Asia]]n populations. The study also establishes biological continuity from the [[Predynastic Egypt|predynastic]] to the post-pharaonic periods. Among the samples included is skeletal material from the [[Gallery of Fayum mummy portraits|Hawara tombs of Fayum]], which was found to most closely resemble the [[Badarian]] series of the predynastic {{ref|www.ncbi.nlm.nih.gov.352}}, {{ref|www.world-science.net.353}}. A study based on stature and body proportions suggests that [[Nilotic]] or tropical body characteristics were also present in some later groups {{ref|Zakrzewski}} as the Egyptian empire expanded southward.
38596
38597 [[Jean-François Champollion|Champollion the Younger]], who deciphered the [[Rosetta Stone]], claimed in ''Expressions et Termes Particuliers'' that ''kmt'' referred to a 'negroid' population. Modern day professional Egyptologists, anthropologists, and linguists, however, overwhelmingly agree that the term referred to the dark soil of the Nile Valley rather than the people, which contrasted with ''dSrt'' or the &quot;red land&quot; of the [[Sahara]] desert.
38598
38599 In c. 450 BC, [[Herodotus]] wrote, &quot;the Colchians are Egyptians... on the fact that they are swarthy (''melanchrôs'') and wooly-haired (''oulothrix'')&quot; (Histories Book 2:104). ''Melanchros'' was also used by [[Homer]] to describe the sunburnt complexion of [[Odysseus]] (Od. 16.176).
38600
38601 Although analyzing the hair of ancient Egyptian [[Mummy|mummies]] from the Late [[Middle Kingdom]] has revealed evidence of a stable diet {{ref|www.ncbi.nlm.nih.gov.354}}, mummies from circa [[3200 BC]] show signs of severe [[anemia]] and [[Hematology|hemolitic disorders]] {{ref|www.ncbi.nlm.nih.gov.355}}. [[Image:Memnon2.jpg|right|thumb|200px|[[Colossus]] of [[Memnon]].]]
38602
38603 ==History==
38604 :''Main article: [[History of ancient Egypt]]''
38605 Egyptian culture was remarkably stable and changed little over a period of nearly 3000 years. This includes religion, customs, art expression, architecture and social structure.
38606
38607 The [[history of ancient Egypt]] proper starts with Egypt as a unified state, which occurred sometime around [[3000 BC]]. [[Narmer]], who unified Upper and Lower Egypt, was the first [[pharaoh]]; though [[Archaeology|archaeological]] evidence indicates that a developed Egyptian [[society]] existed for a much longer period (see [[Predynastic Egypt]]).
38608
38609 Along the [[Nile]], in [[10th millennium BC]], a [[cereal|grain]]-[[grinding]] [[culture]] using the earliest type of [[sickle]] [[blade]]s had been replaced by another culture of [[hunting|hunters]], [[fishing|fishers]], and [[hunter-gatherer|gathering]] peoples using [[stone tool]]s. Evidence also indicates human habitation in the southwestern corner of Egypt, near the [[Sudan]] border, before [[8000 BC]]. Climate changes and/or overgrazing around [[8th millennium BC|8000 BC]] began to desiccate the pastoral lands of [[Egypt]], eventually forming the [[Sahara]] (c.[[2500 BC]]), and early tribes naturally migrated to the Nile river where they developed a settled [[agriculture|agricultural]] [[Economic system|economy]] and more centralized [[society]] (see [[Nile#History|Nile: History]]). There is evidence of [[pastoralism]] and cultivation of [[cereal]]s in the East [[Sahara]] in the [[7th millennium BC]]. By [[6000 BC]] ancient Egyptians in the southwestern corner of Egypt were [[herding]] cattle and [[construction|constructing]] large buildings. [[Mortar (masonry)]] was in use by [[4000 BC]]. The [[Predynastic Egypt|Predynastic Period]] continues through this time, variously held to begin with the [[Naqada]] culture. Some authorities however begin the [[Predynastic Egypt|Predynastic Period]] earlier, in the [[Lower Paleolithic]] (see [[Predynastic Egypt]]).
38610
38611 Egypt unified as a single state circa [[3000 BC]]. [[Egyptian chronology]] involves assigning beginnings and endings to various dynasties beginning around this time. The [[conventional Egyptian chronology]] is the accepted developments during the 20th century, but do not include any of the major revision proposals that have also been made in that time. Even within a single work, often archeologists will offer several possible dates or even several whole chronologies as possibilities. Consequently, there may be discrepancies between dates shown here and in articles on particular rulers. Often there are also several possible spellings of the names. Typically, Egyptologists divide the history of pharaonic civilization using a schedule laid out first by [[Manetho]]'s ''Aegyptaica''.
38612
38613 * '''[[List of pharaohs]]''': The pharaohs stretch from before [[3000 BC]] to around [[30 BC]].
38614 * '''Dynasties''' (see also: [[List of Egyptian dynasties]]):
38615 ** [[Early Dynastic Period of Egypt]] (1st to 2nd Dynasties; until ca. [[27th century BC]])
38616 ** [[Old Kingdom]] (3rd to 6th Dynasties; 27th to 22nd centuries [[Anno Domini|BC]])
38617 ** [[First Intermediate Period]] (7th to 11th Dynasties)
38618 ** [[Middle Kingdom of Egypt]] (11th to 14th Dynasties; 20th to 17th centuries BC)
38619 ** [[Second Intermediate Period]] (14th to 17th Dynasties)
38620 *** [[Hyksos]] (15th to 16th Dynasties)
38621 ** [[New Kingdom of Egypt]] (18th to 20th Dynasties; 16th to 11th centuries BC)
38622 ** [[Third Intermediate Period]] (21st to 25th Dynasties; 11th to 7th centuries BC)
38623 ** [[Late Period of Ancient Egypt]] (26th to 31st Dynasties; [[7th century BC]] to [[332 BC]])
38624 *** [[Achaemenid Dynasty]]
38625 ** [[History of Greek and Roman Egypt|Graeco-Roman Egypt]] ([[332 BC]] to AD [[639]])
38626 *** [[Ptolemaic Dynasty]]
38627 *** [[Roman Empire]]
38628
38629 === Taxation ===
38630 The Egyptian government imposed a number of different taxes upon its people. As there was no known form of currency during that time period, taxes were paid for &quot;in kind&quot; (with produce or work). The Vizier controlled the taxation system through the departments of state. The departments had to report daily on the amount of stock availible, and how much was expected in the future. Taxes were paid for depending on a persons craft or duty. Landowners paid their taxes in grain and other produce grown on their property. Craftsmen paid their taxes in the goods that they produced. Hunters and fishermen paid their taxes with produce from the river, marshes, and desert. One person from every household was required to pay a labor tax by doing public work for a few weeks every year, such as digging canals or mining. However, a richer noble could hire a poorer man to do his labor tax.
38631
38632 ==Language==
38633 {{main|Egyptian language}}
38634 Ancient Egyptian constitutes an independent branch of the [[Afro-Asiatic]] language [[phylum (linguistics)|phylum]]. Its closest relatives are the [[Berber languages|Berber]], [[Semitic languages|Semitic]], and [[Beja language|Beja]] groups of languages. Written records of the [[Egyptian language]] have been dated from about [[32nd century BC|3200 BC]], making it one of the oldest and longest documented languages. Scholars group Egyptian into six major chronological divisions:
38635 *'''[[Archaic Egyptian]]''' (before 3000 BC)
38636 :Consists of inscriptions from the late [[Predynastic Period|Predynastic]] and [[Early Dynastic Period|Early Dynastic]] period. The earliest known evidence of Egyptian [[hieroglyphic]] writing appears on [[Naqada]] II pottery vessels.
38637 *'''[[Old Egyptian]]''' (3000&amp;ndash;2000 BC)
38638 :The language of the [[Old Kingdom]] and [[First Intermediate Period]]. The [[Pyramid Texts]] are the largest body of literature written in this phase of the language. Tomb walls of elite Egyptians from this period also bear autobiographical writings representing Old Egyptian. One of its distinguishing characteristics is the tripling of [[ideogram]]s, phonograms, and determinatives to indicate the plural. Overall, it does not differ significantly from the next stage.
38639 *'''[[Middle Egyptian]]''' (2000&amp;ndash;1300 BC)
38640 :Often dubbed '''Classical Egyptian''', this stage is known from a variety of textual evidence in [[hieroglyphic]] and [[hieratic]] scripts dated from about the [[Middle Kingdom]]. It includes funerary texts inscribed on [[sarcophagi]] such as the [[Coffin Texts]]; wisdom texts instructing people on how to lead a life that exemplified the ancient Egyptian philosophical worldview (see the [[Ipuwer papyrus]]); tales detailing the adventures of a certain individual, for example the [[The Story of Sinuhe|Story of Sinhue]]; medical and scientific texts such as the [[Edwin Smith Papyrus]] and the [[Ebers papyrus]]; and poetic texts praising a god or a [[pharaoh]], like the [[Hymn to the Nile]]. The Egyptian [[vernacular]] already began to change from the written language as evidenced by some Middle Kingdom hieratic texts, but classical Middle Egyptian continued to be written in formal contexts well into the Late Dynastic period (sometimes referred to as [[Late Middle Egyptian]]).
38641 *'''[[Late Egyptian]]''' (1300&amp;ndash;700 BC)
38642 :Records of this stage appear in the second part of the [[New Kingdom]], considered by many as the &quot;Golden Age&quot; of ancient Egyptian civilization. It contains a rich body of religious and secular literature, comprising such famous examples as the [[Story of Wenamun]] and the [[Instructions of Ani]]. It was also the language of [[Ramesside]] administration. Late Egyptian is not totally distinct from Middle Egyptian, as many &quot;classicisms&quot; appear in historical and literary documents of this phase. However, the difference between Middle and Late Egyptian is greater than that between Middle and Old Egyptian. It's also a better representative than Middle Egyptian of the spoken language in the New Kingdom and beyond. Hieroglyphic [[orthography]] saw an enormous expansion of its [[grapheme|graphemic]] inventory between the Late Dynastic and [[Ptolemaic]] periods.
38643 *'''[[Demotic Egyptian]]''' (7th century BC&amp;ndash;4th century AD)
38644 {{main|Demotic Egyptian}}
38645 *'''[[Coptic language|Coptic]]''' (3rd&amp;ndash;17th century AD)
38646 {{main|Coptic language}}
38647
38648 ===Writing===
38649 For many years, the earliest known hieroglyphic inscription was the [[Narmer Palette]], found during excavations at [[Hierakonpolis]] (modern Kawm al-Ahmar) in the [[1890s]], which has been dated to c.[[3200 BC]]. However recent [[Archaeology|archaeological]] findings reveal that symbols on [[Gerzean]] pottery, ''c.''[[4000 BC]], resemble the traditional hieroglyph forms {{ref|www.touregypt.net.356}}. Also in 1998 a German archeological team under [[Gunter Dreyer]] excavating at [[Abydos, Egypt|Abydos]] (modern [[Umm el-Qa'ab]]) uncovered tomb [[U-j]], which belonged to a [[Predynastic Egypt|Predynastic]] ruler, and they recovered three hundred clay labels inscribed with [[proto-hieroglyphics]] dating to the [[Naqada IIIA]] period, circa [[33rd century BC]] {{ref|www.exn.ca.357}}, {{ref|www.findarticles.com.358}}.
38650
38651 Egyptologists refer to Egyptian writing as '''[[Egyptian hieroglyph|hieroglyph]]s''', today standing as the world's earliest known [[writing system]]. The hieroglyphic script was partly [[syllabic]], partly [[ideographic]]. '''[[Hieratic]]''' is a cursive form of Egyptian hieroglyphs and was first used during the First Dynasty (c. 2925 BC &amp;ndash; c. 2775 BC). The term '''[[Demotic Egyptian|Demotic]]''', in the context of Egypt, came to refer to both the script and the language that followed the Late Ancient Egyptian stage, i.e. from the [[Nubian]] [[Twenty-fifth dynasty of Egypt|25th dynasty]] until its marginalization by the Greek [[Koine]] in the early centuries AD. After the conquest of [[Amr ibn al-A'as]] in the 7th century AD, the [[Coptic language]] survived as a spoken language into the [[Middle Ages]]. Today, it continues to be the liturgical language of the [[Christian]] minority.
38652
38653 Beginning from around [[2700 BC]], Egyptians used [[pictogram]]s to represent [[Egyptian hieroglyph#Script|vocal sounds]] -- both [[vowel]] and [[consonant]] vocalizations (see [[Egyptian hieroglyph#Script|Hieroglyph: Script]]). By [[2000 BC]], 26 [[pictogram]]s were being used to represent 24 (known) main [[Egyptian hieroglyph#Script|vocal sounds]]. The world's [[Middle Bronze Age alphabets|oldest known alphabet]] (c. [[1800 BC]]) is only an [[abjad]] system and was derived from these [[Egyptian hieroglyph#Script|uniliteral signs]] as well as other [[Egyptian hieroglyph]]s.
38654
38655 The hieroglyphic script finally fell out of use around the [[4th century]] AD. Attempts to decipher it began after the [[15th century]] (see ''[[Hieroglyphica]]'').
38656
38657 ===Literature===
38658 * c. [[19th century BC|1800 BC]]: [[The Story of Sinuhe|Story of Sinuhe]]
38659 * c. 1800 BC: [[Ipuwer papyrus]]
38660 * c. [[16th century BC|1600 BC]]: [[Westcar Papyrus]]
38661 * c. 1180 BC: [[Papyrus Harris I]]
38662 * c. [[11th century BC|1000 BC]]: [[Story of Wenamun]]
38663
38664 ==Culture==
38665 {{see also|Ancient Egyptian architecture}}
38666 The Egyptian religions, embodied in [[Egyptian mythology]], were a succession of beliefs held by the people of Egypt, as early as [[Predynastic Egypt|predynastic]] times and all the way until the coming of [[Christianity]] and [[Islam]] in the [[History of Greek and Roman Egypt|Graeco-Roman]] era. These were conducted by Egyptian [[priest]]s or [[magician]]s, but the use of [[magic and religion|magic]] and [[spell (paranormal)|spell]]s is questioned.
38667
38668 Every animal portrayed and worshipped in ancient Egyptian art, writing and religion is indigenous to [[Africa]], all the way from the [[Predynastic Egypt|predynastic]] until the [[History of Greek and Roman Egypt|Graeco-Roman]] eras, over 3000 years. The [[Dromedary]], [[Domestication|domesticated]] first in [[Arabia]], first appears in Egypt (and North Africa) beginning in the 2nd millennium BCE.
38669
38670 The religious nature of ancient Egyptian civilization influenced its contribution to the [[arts of the ancient world]]. Many of the great works of ancient Egypt depict gods, goddesses, and pharaohs, who were also considered divine. [[Ancient Egyptian art]] in general is characterized by the idea of order.
38671
38672 Evidence of [[Mummy#Mummies in other civilizations|mummies]] and [[Pyramid#Structures|pyramids outside ancient Egypt]] indicate reflections of ancient Egyptian belief values on other [[prehistory|prehistoric]] cultures, transmitted in one way over the [[Silk Road]]. Ancient Egypt's [[Foreign contacts of Ancient Egypt|foreign contacts]] included [[Nubia]] and [[Punt]] to the south, the [[Aegean]] and [[Ancient Greece|ancient Greece]] to the north, the [[Levant]] and other regions in the [[Near East]] to the east, and also [[Libya]] to the west.
38673
38674 Some scholars have speculated that Egypt's art pieces are sexually [[Symbolism|symbolic]].
38675
38676 ==Ancient achievements==
38677 [[image:Egypte louvre 316.jpg|right|thumb|150px|[[Louvre Museum]] antiquity]]
38678 See [[Predynastic Egypt]] for inventions and other significant achievements in the [[Civilization#Sahara Region|Sahara region]] before the [[Protodynastic Period of Egypt|Protodynastic Period]].
38679
38680 The art and science of [[engineering]] was present in Egypt, such as accurately determining the position of points and the distances between them (known as [[surveying]]). These skills were used to outline [[pyramid]] bases. The [[Egyptian pyramids]] took the geometric shape formed from a polygonal base and a point, called the apex, by triangular faces. [[Cement|Hydraulic Cement]] was first invented by the Egyptians. The [[Al Fayyum]] [[Irrigation]] (water works) was one of the main agricultural breadbaskets of the ancient world. There is evidence of ancient Egyptian pharaohs of the [[Twelfth dynasty of Egypt|twelfth dynasty]] using the natural lake of the Fayyum as a reservoir to store surpluses of water for use during the dry seasons. From the time of the [[First dynasty of Egypt|First dynasty]] or before, the Egyptians [[Mining|mined]] [[turquoise]] in [[Sinai Peninsula]].
38681
38682 The earliest evidence (circa [[1600 BC]]) of traditional [[empiricism]] is credited to Egypt, as evidenced by the [[Edwin Smith Papyrus|Edwin Smith]] and [[Ebers papyrus|Ebers papyri]]. The roots of the [[Scientific method#History|Scientific method]] may be traced back to the ancient Egyptians. The ancient Egyptians are also credited with devising the world's earliest known [[alphabet]], [[decimal system]] {{ref|www-groups.dcs.st-and.ac.uk.360}} and complex [[Timeline of mathematics|mathematical formularizations]], in the form of the [[Moscow and Rhind Mathematical Papyri]]. An awareness of the [[golden ratio]] seems to be reflected in many constructions, such as the [[Egyptian pyramids]].
38683
38684 The art of glass making is of very ancient origin with the Egyptians, as is evident from the glass jars, figures and ornaments discovered in the tombs. The paintings on the tombs have been interpreted as descriptive of the process of glass blowing. These illustrations representing smiths blowing
38685 their fires by means of reeds tipped with clay. Therefore it can be concluded that glass-blowing is apparently of Egyptian origin.
38686
38687 ===Timeline===
38688 ''(All dates are approximate.)''
38689 ====Predynastic====
38690 ''See main article and timeline: [[Predynastic Egypt]].''
38691 * [[3500 BC]]: [[Senet]], world's oldest (confirmed) [[board game]]
38692 * [[3500 BC]]: [[Faience]], world's earliest known earthenware
38693
38694 ====Dynastic====
38695 [[Image:Pyramide_Kheops.JPG|thumb|200px|[[The Great Pyramid of Giza]].]]
38696 [[Image:Egyptian Glass.jpg|thumb|200px|Egypt was first to create glass objects. {{3d_glasses}}]]
38697 * [[33rd century BC|3300 BC]]: [[Bronze]] works (see [[Bronze Age#Near East Bronze Age|Bronze Age]])
38698 * [[3200 BC]]: [[Egyptian hieroglyph]]s fully developed (see [[First dynasty of Egypt]])
38699 * [[3200 BC]]: [[Narmer Palette]], world's earliest known [[historical document]]
38700 * [[3100 BC]]: [[Decimal|Decimal system]], {{ref|www-groups.dcs.st-and.ac.uk.360}}, world's earliest (confirmed) use
38701 * [[3100 BC]]: [[Wine cellar]]s, world's earliest known {{ref|www.touregypt.net.361}}
38702 * [[3100 BC]]: [[Mining]], [[Sinai Peninsula#History|Sinai Peninsula]]
38703 * [[3100 BC|3050 BC]]: [[Shipbuilding]] in [[Abydos, Egypt|Abydos]], {{ref|xoomer.virgilio.it.362}}
38704 * [[3000 BC]]: [[Export]]s from [[Nile]] to [[Israel]]: [[wine]] (see [[Narmer]])
38705 * [[3000 BC]]: [[Copper]] [[plumbing]] (see [[Copper#History|Copper: History]])
38706 * [[3000 BC]]: [[Papyrus]], world's earliest known [[paper]]
38707 * [[3000 BC]]: [[History of medicine#Egyptian medicine|Medical Institutions]]
38708 * [[2900 BC]]: possible [[steel]]: [[carbon]]-containing [[iron]], {{ref|www.touregypt.net.363}}
38709 * [[2700 BC]]: [[Surgery#History of surgery|Surgery]], world's earliest known
38710 * [[2700 BC]]: precision [[Surveying#Origins|Surveying]]
38711 * [[2700 BC]]: [[Egyptian hieroglyph#Script|Uniliteral signs]], forming basis of world's [[History of alphabets|earliest known alphabet]]
38712 * [[2600 BC]]: [[Great Sphinx of Giza|Sphinx]], still today the world's largest single-stone [[statue]]
38713 * [[2600 BC|2600s]]&amp;ndash;[[2500 BC]]: [[Shipping]] expeditions: [[Sneferu|King Sneferu]] and [[Sahure#History|Pharaoh Sahure]]. See also {{ref|www.msichicago.org.364}}, {{ref|www.touregypt.net.365}}.
38714 * [[2600 BC]]: [[Barge]] transportation, stone blocks (see [[Egyptian pyramids#Construction techniques|Egyptian pyramids: Construction]])
38715 * [[2600 BC]]: [[Pyramid of Djoser]], world's earliest known large-scale stone building
38716 * [[2600 BC]]: [[Menkaure's Pyramid]] &amp; [[Red Pyramid]], world's earliest known works of carved [[granite]]
38717 * [[2600 BC]]: [[Red Pyramid]], world's earliest known &quot;true&quot; smooth-sided pyramid; solid [[granite]] work
38718 * [[2600 BC|2580 BC]]: [[Great Pyramid of Giza]], the [[World's tallest structures|world's tallest structure]] until [[1300|AD 1300]]
38719 * [[2500 BC]]: [[Beekeeping]], {{ref|www.vftn.org.366}}
38720 * [[2400 BC]]: [[Egyptian calendar|Astronomical Calendar]], used even in the [[Middle Ages]] for its [[mathematics|mathematical]] regularity
38721 * [[2200 BC]]: [[Beer]], {{ref|www.touregypt.net.367}}
38722 * [[1900 BC|1860 BC]]: possible [[Suez Canal|Nile-Red Sea Canal]] ([[Twelfth dynasty of Egypt]])
38723 * [[1800 BC]]: [[History of the alphabet|Alphabet]], world's oldest known
38724 * [[1800 BC]]: [[Timeline of mathematics|Berlin Mathematical Papyrus]], {{ref|www.math.buffalo.edu.368}}, 2nd order [[algebraic equations]]
38725 * [[1800 BC]]: [[Moscow Papyrus|Moscow Mathematical Papyrus]], generalized formula for volume of [[frustum]]
38726 * [[1650s BC|1650 BC]]: [[Rhind Mathematical Papyrus]]: [[geometry]], [[cotangent]] analogue, [[algebraic equations]], [[arithmetic series]], [[geometric series]]
38727 * [[1600 BC]]: [[Edwin Smith papyrus]], medical tradition traces as far back as c. [[3000 BC]]
38728 * [[1550s BC|1550 BC]]: [[Ebers papyrus|Ebers Medical Papyrus]], traditional [[empiricism]]; world's earliest known documented [[tumors]] (see [[History of medicine#Egyptian medicine|History of medicine]])
38729 * [[1500 BC]]: [[Glass|Glass-making]], world's earliest known
38730 * [[1250s BC|1258 BC]]: [[Peace treaty]], world's earliest known (see [[Ramesses II#Life|Ramesses II]], {{ref|www.touregypt.net.369}})
38731 * [[1160s BC|1160 BC]]: [[Turin papyrus]], world's earliest known [[geology|geologic]] and [[topographic]] map
38732 * [[1000 BC]]: [[Tar|Petroleum tar]] used in [[Mummy|mummification]]{{ref|www.geotimes.org.feb05}} &lt;!-- world's earliest known use of petroleum???? need documentation --&gt;
38733 * [[500s BC|5th]]&amp;ndash;[[400s BC|4th century BC]] (or perhaps earlier): battle games ''petteia'' and ''seega''; possible precursors to [[Chess]] (see [[Origins of chess]])
38734 ====Other====
38735 ** c.[[2500 BC]]: [[Westcar Papyrus]]
38736 ** c.[[1800 BC]]: [[Ipuwer papyrus]]
38737 ** c.[[1800 BC]]: [[Papyrus Harris I]]
38738 ** c.[[1400 BC]]: [[Tulli Papyrus]]
38739 ** c.[[1300 BC]]: [[Ebers papyrus|Brugsch Papyrus]]
38740 ** Unknown date: [[Rollin Papyrus]]
38741 &lt;!-- shouldn't this section just be merged withthe above? why list it as Other? --&gt; &lt;!-- No achievements are represented here; e. g., the Tulli Papyrus does not physically exist! And it is a controversial ancient account of UFOs! --&gt;
38742
38743 ===Open problems===
38744 {{main|Unsolved problems in Egyptology}}
38745
38746 There is a question as to the sophistication of ancient Egyptian technology, and there are several [[open problem]]s concerning real and alleged ancient Egyptian achievements. Certain artifacts and records do not fit with conventional technological development systems. It is not known why there is no neat progression to an Egyptian [[Iron Age]] nor why the historical record shows the Egyptians taking so long to begin using [[iron]]. It is unknown how the Egyptians shaped and worked [[granite]]. The exact date the Egyptians started producing [[glass]] is debated.
38747
38748 Some question whether the Egyptians were capable of long distance [[navigation]] in their [[boat]]s and when they became knowledgeable sailors. It is contentiously disputed as to whether or not the Egyptians had some understanding of [[electricity]] and if the Egyptians used [[engine]]s or [[Baghdad Battery|batteries]]. The [[Dendera light|relief at Dendera]] is interpreted in various ways by scholars. The topic of the [[Saqqara Bird]] is controversial, as is the extent of the Egyptians' understanding of [[aerodynamics]]. It is unknown for certain if the Egyptians had [[kite]]s or [[glider]]s.
38749
38750 [[Beekeeping]] is known to have been particularly well developed in Egypt, as accounts are given by several [[Ancient Rome|Roman]] writers &amp;mdash; [[Virgil]], [[Gaius Julius Hyginus]], [[Marcus Terentius Varro|Varro]] and [[Columella]]. It is unknown whether Egyptian [[beekeeping]] developed independently or as an [[import]] from [[Southern Asia]].
38751
38752 ==See also==
38753 {{commonscat|Ancient Egypt}}{{portal}}
38754 * [[List of Ancient Egyptians]]
38755 * [[List of pharaohs]]
38756 * [[Egyptology]]
38757 * [[Unsolved problems in Egyptology]]
38758 * [[History of Egypt]]
38759 * [[List of Ancient Egyptian sites]]
38760 * [[Egyptian Museum]]
38761 * [[Race of the Ancient Egyptians]]
38762 * [[Egypt in the European imagination]]
38763
38764 ==Further reading==
38765 *[[John Baines]] &amp; Jaromir Malek, ''The Cultural Atlas of Ancient Egypt'', revised edition, Facts on File, 2000. ISBN 0816040362
38766 *[[Barry Kemp]], ''Ancient Egypt: Anatomy of a Civilization'', Routledge, 1991. ISBN 0415063469
38767 *Bill Manley (ed.), ''The Seventy Great Mysteries of Ancient Egypt''. Thames &amp; Hudson, ISBN 0500051232
38768 *Ian Shaw, ''The Oxford History of Ancient Egypt'', Oxford University Press, 2003. ISBN 0192804588
38769
38770 ==External links==
38771 *[http://www.ancientegypt.co.uk/ Ancient Egypt] - maintained by the [[British Museum]], this site provides a useful introduction to Ancient Egypt for older children and young adolescents
38772 *[http://archaeology.about.com/od/ancientegypt/ Ancient Egypt and Egyptians] articles and resources from About Archaeology
38773 *[http://www.bbc.co.uk/history/ancient/egyptians/ BBC History: Egyptians] - provides a reliable general overview and further links
38774 *[http://www.mysteries-in-stone.co.uk Ancient Egyptian History] - A comprehensive &amp; consise educational website focusing on the basic and the advanced in all aspects of Ancient Egypt
38775 *[http://www.ancientneareast.net/egypt.html Ancientneareast.net: Ancient Egypt] - provides a comprehensive listing of resources relating to the archaeology of Ancient Egypt
38776 *[http://www.newton.cam.ac.uk/egypt/ Egyptology Resources] - maintained by Dr Nigel Strudwick, offers one reliable guide to online documentation of Ancient Egypt
38777 *[http://www.kv5.com/ The Theban Mapping Project] - although focusing on the Theban region (modern [[Luxor]]), this site holds much of general interest relating to Ancient Egypt
38778 *[http://www.projectshum.org/Ancient/egypt.html Ancient Civilizations - Ancient Egypt] children's site
38779
38780 == Notes ==
38781 &lt;!-- How to add a footnote:
38782 NOTE: Footnotes in this article use names, not numbers. Please see [[Wikipedia:Footnotes]] for details.
38783 1) Assign your footnote a unique name, for example TheSun_Dec9.
38784 2) Add the macro {{ref|TheSun_Dec9}} to the body of the article, where you want the new footnote.
38785 3) Take note of the name of the footnote that immediately precedes yours in the article body.
38786 4) Add #{{Note|TheSun_Dec9}} to the list, immediately below the footnote you noted in step 3. No need to re-number anything!
38787 5) Multiple footnotes to the same reference: see [[Wikipedia:Footnotes]] for a how-to.
38788 NOTE: It is important to add footnotes in the right order in the list!
38789 --&gt;
38790 # {{note|www.ncbi.nlm.nih.gov.348}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15202071&amp;query_hl=6&amp;itool=pubmed_docsum | accessdate=January 24 | accessyear=2006 }}
38791 # {{note|www.ncbi.nlm.nih.gov.349}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=12495079 | accessdate=December 5 | accessyear=2005 }}
38792 # {{note|www.ncbi.nlm.nih.gov.350}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15457403&amp;query_hl=11&amp;itool=pubmed_docsum | accessdate=January 24 | accessyear=2006 }}
38793 # {{note|www.ncbi.nlm.nih.gov.351}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=14748828| accessdate=December 5 | accessyear=2005 }}
38794 # {{note|Zakrzewski}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?dmd=Retrieve&amp;db=PubMed&amp;list_uids=12772210&amp;dopt=Abstract|accessdate=January 27 | accessyear=2006 }}
38795 # {{note|www.ncbi.nlm.nih.gov.352}} {{cite web | title=Who were the Ancient Egyptians? | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=16331657&amp;query_hl=16&amp;itool=pubmed_docsum | accessdate=January 24 | accessyear=2006 }}
38796 # {{note|www.world-science.net.353}} {{cite web | title=Study traces Egyptians’ stone-age roots | url=http://www.world-science.net/exclusives/exclusives-nfrm/051217_egypt1.htm | accessdate=January 24 | accessyear=2006 }}
38797 # {{note|www.ncbi.nlm.nih.gov.354}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=10091248&amp;itool=iconabstr | accessdate=December 5 | accessyear=2005 }}
38798 # {{note|www.ncbi.nlm.nih.gov.355}} {{cite web | title=Entrez PubMed | url=http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=11148985&amp;itool=iconabstr | accessdate=December 5 | accessyear=2005 }}
38799 # {{note|www.touregypt.net.356}} {{cite web | title=Egypt: History - Predynastic Period | url=http://www.touregypt.net/ebph5.htm | accessdate=December 5 | accessyear=2005 }}
38800 # {{note|www.exn.ca.357}} {{cite web | title=:: Discovery Channel CA :: | url=http://www.exn.ca/egypt/story.asp?st=Lifestyles | accessdate=December 5 | accessyear=2005 }}
38801 # {{note|www.findarticles.com.358}} {{cite web | title=Accounting Historians Journal, The: oldest writings, and inventory tags of Egypt, The | url=http://www.findarticles.com/p/articles/mi_qa3657/is_200206/ai_n9107461 | accessdate=December 5 | accessyear=2005 }}
38802 # {{note|www-groups.dcs.st-and.ac.uk.359}} {{cite web | title=Overview of Egyptian Mathematics | url=http://www.touregypt.net/ebph5.htm | accessdate=December 5 | accessyear=2005 }}
38803 # {{note|www-groups.dcs.st-and.ac.uk.360}} {{cite web | title=Overview of Egyptian Mathematics | url=http://www-groups.dcs.st-and.ac.uk/~history/HistTopics/Egyptian_mathematics.html | accessdate=December 5 | accessyear=2005 }}
38804 # {{note|www.touregypt.net.361}} {{cite web | title=Wine in Ancient Egypt | url=http://www.touregypt.net/magazine/mag11012000/magf2.htm | accessdate=December 5 | accessyear=2005 }}
38805 # {{note|xoomer.virgilio.it.362}} {{cite web | title=Francesco Raffaele Egyptology News | url=http://xoomer.virgilio.it/francescoraf/hesyra/news.htm | accessdate=December 5 | accessyear=2005 }}
38806 # {{note|www.touregypt.net.363}} {{cite web | title=Egypt: Science and chemistry in ancient Egypt | url=http://www.touregypt.net/science.htm | accessdate=December 5 | accessyear=2005 }}
38807 # {{note|www.msichicago.org.364}} {{cite web | title=MSIChicago : Exhibits : Ships Through the Ages | url=http://www.msichicago.org/exhibit/ships/ | accessdate=December 5 | accessyear=2005 }}
38808 # {{note|www.touregypt.net.365}} {{cite web | title=The Ancient Egyptian Navy | url=http://www.touregypt.net/featurestories/navy.htm | accessdate=December 5 | accessyear=2005 }}
38809 # {{note|www.vftn.org.366}} {{cite web | title=apiary2 | url=http://www.vftn.org/projects/bryant/navbar_pages/apiary_2.htm | accessdate=December 5 | accessyear=2005 }}
38810 # {{note|www.touregypt.net.367}} {{cite web | title=Egypt: Tour Egypt Monthly: Anceint Egyptian Alcohol and Beer | url=http://www.touregypt.net/magazine/mag04012001/magf2.htm | accessdate=December 5 | accessyear=2005 }}
38811 # {{note|www-groups.dcs.st-and.ac.uk.368}} {{cite web | title=Overview of Egyptian Mathematics | url=http://www-groups.dcs.st-and.ac.uk/~history/HistTopics/Egyptian_mathematics.html | accessdate=December 5 | accessyear=2005 }}
38812 # {{note|www.touregypt.net.369}} {{cite web | title=Egypt: Ramses the Great, The Pharaoh Who Made Peace with his Enemies And the First Peace Treaty in History | url=http://www.touregypt.net/featurestories/treaty.htm | accessdate=December 5 | accessyear=2005 }}
38813 # {{note|www.geotimes.org.370}} {{cite web | title=Geotimes - February 2005 - Mummy tar in ancient Egypt | url=http://www.geotimes.org/feb05/NN_mummytar.html | accessdate=January 9 | accessyear=2006 }}
38814
38815 {{Ancient Egypt}}
38816
38817 [[Category:Ancient Egypt| ]]
38818
38819 [[ar:Ų‚دŲ…Ø§ØĄ اŲ„Ų…ØĩØąŲŠŲŠŲ†]]
38820 [[bg:ДŅ€ĐĩвĐĩĐŊ ЕĐŗиĐŋĐĩŅ‚]]
38821 [[ca:Antic Egipte]]
38822 [[da:Det gamle Ægypten]]
38823 [[de:Altes Ägypten]]
38824 [[eo:Egipta civilizo]]
38825 [[es:Antiguo Egipto]]
38826 [[fa:Ų…ØĩØą باØŗØĒاŲ†]]
38827 [[fi:Muinainen Egypti]]
38828 [[fr:Égypte antique]]
38829 [[gl:Antigo Exipto]]
38830 [[he:מ×Ļרים ה×ĸ×Ēיקה]]
38831 [[hu:Ókori Egyiptom]]
38832 [[ja:古äģŖエジプト]]
38833 [[ko:ė´ė§‘트 ëŦ¸ëĒ…]]
38834 [[lv:Senā ĒÄŖipte]]
38835 [[mk:АĐŊŅ‚иŅ‡Đēи ЕĐŗиĐŋĐĩŅ‚]]
38836 [[ms:Mesir purba]]
38837 [[nds:Ole Ägypten]]
38838 [[nl:Oude Egypte]]
38839 [[no:Oldtidens Egypt]]
38840 [[oc:Egipte]]
38841 [[pl:StaroÅŧytny Egipt]]
38842 [[ru:ДŅ€ĐĩвĐŊиК ЕĐŗиĐŋĐĩŅ‚]]
38843 [[sl:Stari Egipt]]
38844 [[sr:ĐĄŅ‚Đ°Ņ€Đ¸ ЕĐŗиĐŋĐ°Ņ‚]]
38845 [[uk:ĐĄŅ‚Đ°Ņ€ĐžĐ´Đ°Đ˛ĐŊŅ–Đš ЄĐŗиĐŋĐĩŅ‚]]
38846 [[zh:古埃及]]</text>
38847 </revision>
38848 </page>
38849 <page>
38850 <title>Analog Brothers</title>
38851 <id>875</id>
38852 <revision>
38853 <id>41300881</id>
38854 <timestamp>2006-02-26T11:12:46Z</timestamp>
38855 <contributor>
38856 <username>Urthogie</username>
38857 <id>106482</id>
38858 </contributor>
38859 <comment>/* External links */ remove category overlap</comment>
38860 <text xml:space="preserve">'''Analog Brothers''' is an experimental rap crew featuring Ice Oscillator a.k.a. [[Ice T]] (keyboards, drums, voc), Keith Korg a.k.a. [[Kool Keith]] (bass, strings, vocals), Mark Moog (drums, ''violyns'' and vocals) and Silver Synth (''synthasizer'', ''lazar bell'' and vocals). Their CD ''Pimp To Eat'' featured guest appearances by various members of the [[Rhyme Syndicate]], [[Odd Oberheim]], [[Jacky Jasper]], D.J. Cisco from S.M. and H Bomb, the [[Synth-a-Size Sisters]] and Teflon.
38861
38862 ==Discography==
38863 * 2000 ''[[Pimp to Eat]]'' (Ground Control/Nu Gruv)
38864
38865 ==External links==
38866 *{{AMG Artist|sql=11:5f47gjlr26ib|artist=Analog Brothers}}
38867 *[http://www.discogs.com/artist/Analog+Brothers Analog Brothers] at [[Discogs]]
38868
38869 [[Category:American hip hop groups]]
38870 [[Category:Alternative hip hop musicians]]
38871 {{hip-hop-stub}}</text>
38872 </revision>
38873 </page>
38874 <page>
38875 <title>Motor neurone disease</title>
38876 <id>876</id>
38877 <revision>
38878 <id>42160271</id>
38879 <timestamp>2006-03-04T05:30:24Z</timestamp>
38880 <contributor>
38881 <ip>71.251.77.2</ip>
38882 </contributor>
38883 <comment>/* History and prominent patients */</comment>
38884 <text xml:space="preserve">{{DiseaseDisorder infobox |
38885 Name = Motor neurone disease |
38886 ICD10 = {{ICD10|G|12|2|g|10}} |
38887 ICD9 = {{ICD9|335.2}} |
38888 }}
38889 The '''''motor neurone diseases''''' (MND) are a group of progressive neurological disorders that destroy [[motor neuron]]s, the cells that control voluntary muscle activity such as speaking, walking, breathing, and swallowing. [[Amyotrophic lateral sclerosis]] (ALS), sometimes called [[Lou Gehrig]]'s disease, [[progressive muscular atrophy]] (PMA), [[spinal muscular atrophy]] (SMA), progressive or pseudo-bulbar palsy (PBP) and [[primary lateral sclerosis]] (PLS) are all forms of motor neurone disease.
38890
38891 ==Terminology==
38892 In this article, MND refers to a group of diseases which affect the motor neurons. In the [[United States]], the term [[ALS]] is more commonly used, where it is also known as [[Lou Gehrig|Lou Gehrig's]] disease, after the [[baseball]] player. Although previously described by other neurologists of the 19th century, it was [[Jean-Martin Charcot]], a [[France|French]] [[neurologist]], who suggested grouping together a number of disparate conditions all affecting the lateral horn of the spinal cord in [[1869]]. In France the disease is sometimes known as Maladie de Charcot (Charcot's disease), although it may also be referred to by the direct translation of ALS, Sclerose Laterale Amyotrophique (SLA). To help prevent confusion, the annual scientific research conference dedicated to the study of MND is called the International ALS/MND Symposium.
38893
38894 ==Signs and symptoms==
38895 Neurological examination presents specific signs associated with upper and lower motor neuron degeneration. Signs of [[upper motor neuron]] damage include [[spasticity]], brisk [[reflex action|reflexes]] and the [[Babinski sign]]. Signs of [[lower motor neuron]] damage include weakness and muscle atrophy.
38896
38897 Note that every muscle group in the body requires both upper and lower motor neurons to function. It is a common misconception that &quot;upper&quot; motor neurons control the arms, whilst &quot;lower&quot; motor neurons control the legs. The signs described above can occur in any muscle group, including the arms, legs, torso, and bulbar region.
38898
38899 Symptoms usually present between the ages of 50-70, and include progressive weakness, muscle wasting, and muscle fasciculations; spasticity or stiffness in the arms and legs; and overactive tendon reflexes. Patients may present with symptoms as diverse as a dragging foot, unilateral muscle wasting in the hands, or slurred speech.
38900
38901 The symptoms described above may resemble a number of other rare diseases, known as &quot;MND Mimic Disorders&quot;. These include, but are not limited to [[multifocal motor neuropathy]], [[kennedy's disease]], [[hereditary spastic paraplegia]], [[spinal muscular atrophy]] and [[monomelic amyotrophy]]. A small subset of familial MND cases occur in children, such as &quot;juvenile ALS&quot;, Madras syndrome, and individuals who have inherited the ALS2 gene. However, these are not typically referred to as MND, but by their specific names.
38902
38903 ==Diagnosis==
38904 The diagnosis of MND is a clinical one, established by a neurologist on the basis of history and neurological examination. There is no diagnostic test for MND. Investigations such as blood tests, [[electromyography]] (EMG), [[magnetic resonance imaging]] (MRI), and sometmies [[genetic testing]] are useful to rule out other disorders that may mimic MND. However, the diagnosis of MND remains a clinical one. Having excluded other diseases, a relatively rapid progression of symptoms is a strong diagnostic factor. Although an individual's progression may sometimes &quot;plateau&quot;, it will not recover or slow down. A set of diagnostic criteria called the El Escorial criteria have been defined by the World Federation of Neurologists for use in research, particularly as inclusion/exclusion criteria for clinical trials. Due to a lack of clincial diagnostic criteria, some neurologists use the El Escorial criteria during the diagnostic process, although strictly speaking this is [[functionality creep]].
38905
38906 MND in the presence of both upper and lower motor neuron degeneration is ALS. Where the illness affects only the upper motor neurons it is PLS, and where it affects only the lower motor neurons it is PMA. Progressive bulbar palsy is degneration of the lower motor neurons innervating the bulbar region (mouth, face, and throat), whilst pseudobulbar palsy refers to degeneration of the upper motor neurons to the same region.
38907
38908 ==Prognosis==
38909 Most cases of MND progess quite quickly, with noticeable decline occuring over the course of months. Although symptoms may present in one region, they will typically spread. If restricted to one side of the body they are more likely to progress to the same region on the other side of the body before progressing to a new region. After several years, most patients require help to carry out activities of daily living such as self care, feeding, and transportation.
38910
38911 MND is typically fatal within 2-5 years. Around 50% die within 14 months of diagnosis. The remaining 50% will not necessarily die within the next 14 months as the distribution is significantly skewed. As a rough estimate, 1 in 5 patients survive for 5 years, and 1 in 10 patients survive 10 years. [[Stephen Hawking]] is a well-known example of a person with MND, and has lived for more than 40 years with the disease.
38912
38913 Mortality results when the muscles that control breathing are no longer able to expel carbon dioxide. One exception is PLS, which may last for upwards of 25 years. Given the typical age of onset, this effectively leaves most PLS patients with a normal life span. PLS can progress to ALS, decades later.
38914
38915 ==Pathology==
38916 ===Causes===
38917 About 90% of cases of MND are &quot;sporadic&quot;, meaning that the patient has no family history of ALS and the case appears to have occurred with no known cause. Genetic factors are suspected to be important in determining an individual's susceptibility to disease, and there is some weak evidence to suggest that onset can be &quot;triggered&quot; by as yet unknown environmental factors (see 'Epidemiology' below).
38918
38919 Approximately 10% of cases are &quot;familial MND&quot;, defined either by a family history of MND or by testing positive for a known genetic mutation associated with the disease. The following genes are known to be linked to ALS: Cu/Zn superoxide dismutase ''SOD1'', ''ALS2'', ''NEFH''(a small number of cases), senataxin (SETX) and vesicle associated protein B (''VAPB'').
38920
38921 Of these, SOD1 mutations account for some 20% of familial MND cases. The ''SOD1'' gene codes for the enzyme [[superoxide dismutase]], a [[radical (chemistry)|free radical]] scavenger that reduces the [[oxidative stress]] of cells throughout the body. So far over 100 different mutations in the SOD1 gene have been found, all of which cause some form of ALS([http://www.alsod.org ALSOD database]). In North America, the most commonly occurring mutation is known as A4V and occurs in up to 50% of SOD1 cases. In people of [[Scandinavia]]n extraction there is a relatively benign mutation called D90A which is associated with a slow progression. Future research is concentrating on identifying new genetic mutations and the clinical syndrome associated with them. Familial MND may also confer a higher risk of developing cognitive changes such as frontotemporal dementia or executive dysfunction (see 'extra-motor change in MND' below).
38922
38923 It is thought that ''SOD1'' mutations confer a toxic gain, rather than a loss, of function to the enzyme. SOD1 mutations may increase the propensity for the enzyme to form protein aggregates which are toxic to nerve cells.
38924
38925 ===Pathophysiology===
38926 [[Skeletal muscle]]s are innervated by a group of neurons (''lower motor neurons'') located on the ventral surface of the spinal cord which project to the muscle cells. These nerve cells are themselves innervated by the corticospinal tract or ''upper motor neurons'' that project from the [[motor cortex]] of the brain. On macroscopic pathology, there is a degeneration of the ventral horns of the spinal cord, as well as atrophy of the ventral roots. In the brain, atrophy may be present in the frontal and temporal lobes. On microscopic examination, neurones may show spongiosis, the presence of astrocytes, and a number of inclusions including characteristic &quot;skein-like&quot; inclusions, bunina bodies, and vacuolisation.
38927
38928 There is a role in excitotoxicity and oxidative stress, presumably secondary to mitochondrial dysfunction. In animal models, death by [[apoptosis]] has also been identified.
38929
38930 ==Emotional lability / pseudobulbar affect==
38931 {{main|labile affect}}
38932
38933 Around a third of all MND patients experiece [[labile affect]], also known as emotional lability, pseudobulbar affect, or pathological laughter and crying. Patients with pseudobulbar palsy are particuarly likely to be affected, as are patients with PLS.
38934
38935 ==Extra-motor change in MND==
38936 [[Cognitive]] change can and does occur in between 33&amp;ndash;50% of patients. A small proportion exhibit a form of [[frontotemporal dementia]] characterised by behavioural abnormalities such as [[disinhibition]], [[apathy]], and personality changes. A small proportion of patients may also suffer from an [[aphasia]], which causes difficulty in naming specific objects. A larger proportion (up to 50%) suffer from a milder version of cognitive change which primarily affects what is known as [[executive function]]. Briefly, this is the ability of an individual to initiate, inhibit, sustain, and switch attention and is involved in the organisation of complex tasks down to smaller components. Often patients with such changes find themselves unable to do the family finances or drive a car. [[clinical depression|Depression]] is surprisingly rare in MND (around 5&amp;ndash;20%) relative to the frequency with which it is found in other, less severe, neurological disorders e.g. ~50% in [[multiple sclerosis]] and [[Parkinson's disease]], ~20% in Epilepsy. Depression does not necessarily increase as the symptoms progress, and in fact many patients report being happy with their [[quality of life]] despite profound disability. This may reflect the use of [[Coping (psychology)|coping strategies]] such as reevaluating what is important in life.
38937
38938 Although traditionally thought only to affect the motor system, sensory abnormalities are not necessarily absent, with some patients finding altered sensation to touch and heat, found in around 10% of patients. Patients with a predominantly upper motor neurone syndrome, and particularly PLS, often report an enhanced startle reflex to loud noises.
38939
38940 Neuroimaging and neuropathology has demonstrated extra-motor changes in the frontal lobes including the inferior frontal gyrus, superior frontal gyrus, anterior cingulate cortex, and superior temporal gyrus. The degree of pathology in these areas has been directly related to the degree of cognitive change experienced by the patient, if any. Patients with MND and dementia have been shown to exhibit marked frontotemporal lobe atrophy as revealed by [[MRI]] or [[SPECT]] [[neuroimaging]].
38941
38942 ==Epidemiology==
38943 The incidence of MND is approximately 1&amp;ndash;5 out of 100,000 people. Men have a slightly higher incidence rate than women. Approximately 5,600 cases are diagnosed in the U.S. every year. By far the greatest risk factor is age, with symptoms typically presenting between the ages of 50-70. Cases under the age of 50 years are called &quot;young onset MND&quot;, whilst incidence rates appear to tail off after the age of 85.
38944
38945 Tentative environmental risk factors identified so far include: exposure to severe electrical shock leading to coma, having served in the first [[Gulf War]], and playing professional [[football (soccer)]]. However, these findings have not been firmly identified and more research is needed.
38946
38947 There are three &quot;hot spots&quot; of MND in the world. One is in the Kii pensinula of Japan, one amongst a tribal population in Papua New Guinea. Until the 1960s, Chamorro inhabitants from the island of [[Guam]] in the [[Oceania|Pacific Ocean]] had an increased risk of developing a form of MND known as Guamanian ALS-PD-dementia complex or &quot;lytico bodig&quot;, but since then the incidence rates have returned to near normal, and nobody born since 1940 has developed the disease. Putative theories involve neurotoxins in local wildlife including [[cycad]] nuts and other traditional foodstuffs[http://www.boston.com/news/science/articles/2003/12/09/flying_fox_linked_to_disease/].
38948
38949 ==Treatment==
38950 Currently, there is no cure for ALS. The only drug that affects the course of the disease is [[riluzole]]. The drug functions by blocking the effects of the neurotransmitter glutamate, and is thought to extend the lifespan of an ALS patient by only a few months.
38951
38952 The lack of effective medications to slow the progression of ALS does not mean that patients with ALS cannot be medically cared for. Instead, treatment of patients with ALS focuses on the relief of symptoms associated with the disease. This involves a variety of health professionals including neurologists, physical therapists, occupational therapists, dieticians, respiratory therapists, social workers, palliative care specialists, specialist nurses and psychologists. A list of neurology clinics that specialize in the care of patients with ALS can be found on the World Federation of Neurology website (http://www.wfnals.org/clinics/).
38953
38954 ==Research Efforts==
38955 The search for a drug that will slow ALS disease progression is underway. For example, recent research using mouse models suggests that [[minocycline]], a common antibiotic, may also be effective in extending the lifespan of ALS sufferers. This drug must pass [[clinical trials]] with ALS patients before it may be used as a general treatment for ALS.
38956
38957 [[Minocycline]] extends the lifespan of ALS mice with SOD1 mutations, but it does not prevent their eventual death. Other agents that are currently in trials include ceftriaxone, arimoclomol, IGF-1 and coenzyme Q10 to name but a few. A list of US-based clinical ALS trials may be found at www.clinicaltrials.org or by contacting your local ALS/MND charity.
38958
38959 ==Etymology==
38960 ''Amyotrophic'' comes from the [[Greek language]]: ''A-'' means &quot;no&quot;, ''myo'' refers to &quot;muscle&quot;, and ''trophic'' means &quot;nourishment&quot;; ''amyotrophic'' therefore means &quot;no muscle nourishment,&quot; which describes the characteristic [[atrophy|atrophication]] of the sufferer's disused muscle tissue. ''Lateral'' identifies the areas in a person's spinal cord where portions of the nerve cells that are affected are located. As this area degenerates it leads to scarring or hardening (&quot;[[sclerosis]]&quot;) in the region.
38961
38962 ==History and prominent patients==
38963 [[United States|U.S.]] baseball player [[Lou Gehrig]] brought national and international attention to the disease in [[1939]] when he abruptly retired after being diagnosed with ALS/MND; he would die two years later. Former guitar virtuoso [[Jason Becker]], [[Theoretical physics|theoretical physicist]] [[Stephen Hawking]], and ex-[[Celtic F.C.|Celtic]] [[Football (soccer)|football]] player [[Jimmy Johnstone]] also suffer from the disease.
38964
38965 Founder of care homes [[Leonard Cheshire]] VC, owner from 1957-1966 of [[Athelhampton]] House in Dorset Sir Robert Cooke F.R.C.S., [[Theoretical physics|theoretical physicist]] [[Victor Emery]], [[Rangers F.C.|Rangers]] [[football (soccer)|football]]er [[Sam English]], [[Baseball Hall of Fame|Hall of Fame]] [[pitcher]] [[Catfish Hunter|Jim &quot;Catfish&quot; Hunter]], [[blues]] singer and guitarist [[Leadbelly]], [[China|Chinese]] Chairman [[Mao Zedong]], [[jazz]] giant [[Charles Mingus]], [[Hollywood]] actor [[David Niven]], legendary [[Leeds United F.C.|Leeds United]] manager [[Don Revie]], teacher and book subject [[Morrie Schwartz]], American television actor [[Lane Smith]], linguist [[Larry Trask]], ''[[The Guardian|Guardian]]'' journalist [[Jill Tweedie]], avant-garde guitarist [[Derek Bailey]], American [[soap opera]] veteran [[Michael Zaslow]], and libertarian writer, politician, and investment analyst, [[Harry Browne]] died from the disease.
38966
38967 [[Diane Pretty]] was a British woman with the disease who was involved in a prominent [[right-to-die]] case in the early [[2000s]].
38968
38969 ==See also==
38970 * [[Kennedy disease]]
38971 * [[Monomelic amyotrophy]]
38972 * [[Primary lateral sclerosis]]
38973 * [[Progressive muscular atrophy]]
38974 * [[Riluzole]]
38975
38976 ==Sources and references==
38977 * [http://www.ninds.nih.gov/disorders/motor_neuron_diseases/motor_neuron_diseases.htm NINDS Motor Neuron Diseases Information Page]
38978 :Motor Neuron Diseases information sheet compiled by the National Institute of Neurological Disorders and Stroke (NINDS).
38979 * [http://www.alsod.org/ ALSOD Database of all known SOD1 mutations]
38980 * Some information gathered from Dr. M Norenberg, [[University of Miami]] ([[October 26]] [[2004]]).
38981 * ''Crossing the Finishing Line&amp;mdash;Last Thoughts of Leonard Cheshire VC'', ed. [[Reginald C. Fuller]] (London 1998).
38982 * ''[[De Standaard]]'' ([[Dutch language]] newspaper), [[12 September]] [[2005]].
38983 * Zhu S, Stavrovskaya IG, Drozda M, Kim BY, Ona V, Li M, Sarang S, Liu AS, Hartley DM, Wu du C, Gullans S, Ferrante RJ, Przedborski S, Kristal BS, Friedlander RM. &quot;Minocycline inhibits cytochrome c release and delays progression of amyotrophic lateral sclerosis in mice.&quot; Nature. 2002 [[May 2]];417(6884):74-8.
38984 * Van Den Bosch L, Tilkin P, Lemmens G, Robberecht W. &quot;Minocycline delays disease onset and mortality in a transgenic model of ALS.&quot; Neuroreport. 2002 [[12 June]];13(8):1067-70.
38985 * Kriz J, Nguyen MD, Julien JP. &quot;Minocycline slows disease progression in a mouse model of amyotrophic lateral sclerosis.&quot; Neurobiol Dis. 2002 Aug;10(3):268-78.
38986
38987 ==Information about Clinical Trials==
38988 * [http://clinicaltrials.gov/search/term=Motor%20Neuron%20%20Diseases List of United States government funded clinical trials relating to MND]
38989 * [http://www.alsa.org/patient/drug.cfm?id=59 Information on the ALS Association's Website about clinical trials of minocycline as an ALS treatment]
38990
38991 ==Other Resources==
38992 * [http://www.als.net/ ALS Therapy Development Foundation]
38993 * [http://www.alsa.org/ ALS Association]
38994 * [http://www.alsmndalliance.org/index.shtml ALS/MND Alliance]
38995 * [http://www.mndassociation.org/full-site/home.shtml MND Association]
38996 * [http://www.ALSLIGA.be ALS Liga Belgium (dutch and french language)]
38997 * [http://hereditarymnd.org.au/index.html The Hereditary Motor Neurone Disease Foundation] - Australian group seeking to find a cure for familial Motor Neurone Disease.
38998 * [http://brain.hastypastry.net/forums/forumdisplay.php?f=77/ BrainTalk Communities Forum for people with ALS/MND (US-Based)]
38999 * [http://www.magimedia.co.uk/buildforum/ BUILD-UK Forum for people with ALS/MND (UK-Based)]
39000 * [http://www.als.ca/ ALS Canada]
39001 * [http://www.projectals.org/ Project A.L.S]
39002
39003 [[Category:Disability]]
39004 [[Category:Motor Neuron Disease| ]]
39005 [[Category:Neurological disorders]]
39006
39007 [[de:Amyotrophe Lateralsklerose]]
39008 [[es:Esclerosis Lateral AmiotrÃŗfica]]
39009 [[fr:SclÊrose latÊrale amyotrophique]]
39010 [[ja:į­‹čŽį¸Žæ€§å´į´ĸįĄŦ化į—‡]]
39011 [[nl:Amyotrofische laterale sclerose]]
39012 [[no:Amyotrofisk lateral sklerose]]
39013 [[sv:Amyotrofisk lateralskleros]]
39014 [[zh:肌肉萎įŧŠį—‡]]</text>
39015 </revision>
39016 </page>
39017 <page>
39018 <title>Abjad</title>
39019 <id>877</id>
39020 <revision>
39021 <id>40025728</id>
39022 <timestamp>2006-02-17T16:13:15Z</timestamp>
39023 <contributor>
39024 <username>Phil Boswell</username>
39025 <id>24373</id>
39026 </contributor>
39027 <comment>[[WP:AWB|AWB assisted]] migrate {{[[template:book reference|book reference]]}} to {{[[template:cite book|cite book]]}}</comment>
39028 <text xml:space="preserve">:''For the traditional ordering of the letters of the Arabic alphabet, see [[Abjadi order]], [[Abjad numerals]].''
39029
39030 An '''abjad''' is a type of [[writing system]] in which there is one symbol per [[consonant|consonantal]] [[phoneme]], sometimes also called a '''consonantary'''. Abjads differ from [[alphabet|alphabets]], in that in an abjad, each basic [[grapheme]] represents a consonant, although [[vowel]]s may be indicated by [[vowel mark]]s on the basic graphemes. An alphabet has basic graphemes for both consonants and vowels. Abjads also differ from [[abugida|abugidas]]. In an abjad, each basic grapheme represents only a consonant. In an abugida, each basic grapheme represents a syllable consisting of a consonant and a vowel; the same consonant with a different vowel -- or with no vowel -- is represented by a modified or marked form of the same basic grapheme.
39031
39032 ==Etymology==
39033 The system takes its name from the first nonsense 'word' of the mnemonic sequence for the letters of the [[Arabic alphabet]] in the older [[Arabic alphabet#Abjadi order|abjadi order]]. It has been suggested that the word 'Abjad' may have earlier roots in [[Phoenician languages|Phoenician]] or [[Ugaritic language|Ugaritic]].
39034
39035 ==History==
39036 All known abjads belong to the Semitic family of scripts, and derive from the original Northern Linear Abjad. The reason for this is that [[Semitic languages]] have a [[Morphology (linguistics)|morphemic structure]] which makes the denotation of vowels redundant or unnecessary in most cases.
39037
39038 ==Impure abjads==
39039 &quot;Impure&quot; abjads (such as Arabic) may have characters for some vowels as well (called ''matres lectionis'', 'mothers of reading', singular [[ mater lectionis]]), or optional vowel diacritics, or both; however, the term's originator, [[Peter T. Daniels]], insists that it should be applied only to scripts entirely lacking in vowel indicators, thus excluding [[Arabic alphabet|Arabic]], [[Hebrew alphabet|Hebrew]], and [[Syriac alphabet|Syriac]].
39040
39041 Impure abjads develop when, due to [[phonetics|phonetic]] change, a previous [[consonant]] or [[diphthong]] becomes a vowel. Later generations, who receive their [[orthography]] without knowing that letter originally signified a consonant there, understand it to mean a [[vowel]] as it is in their spoken language. They then use that letter as a vowel in other places where it was never a consonant. For example, the Hebrew word הורישׁ probably underwent the following pronunciation change: {{unicode|*hi'''w'''riʃ}} → {{unicode|*ho'''w'''riʃ}} → {{unicode|h'''o'''riʃ}}. The ו, which was originally the consonant w, became the vowel o. Later, probably in the [[Second Temple]] period, the vowel use of ו was expanded to places where no consonant ever existed.
39042
39043 ===Addition of vowels===
39044 Many scripts derived from abjads have been extended with vowel symbols to become full [[alphabet]]s. This has mostly happened when the script was adapted to a non-Semitic language, the most famous case being the derivation of the [[Greek alphabet]] from the Phoenician abjad. The Greeks did not need the letters for the [[guttural consonant|guttural]] (&amp;#1488;, &amp;#1492;, &amp;#1495;, &amp;#1506;) and [[co-articulated consonant|co-articulated]] (&amp;#1510;, &amp;#1511;) consonants. They dropped some of them and turned others into vowels.
39045
39046 In other cases, the vowel signs come in the form of little points or hooks attached to the consonant letters, producing an [[abugida]] such as the system of writing [[Amharic]] (written using the Ge'ez alphabet, which was formerly an abjad before a vocalization occurred sometime after the 5th century BCE but before the 4th century CE).
39047
39048 ==Related concepts==
39049 Surprisingly, many non-Semitic languages such as English can be written without vowels and read with little difficulty. For example, the previous sentence could be written ''Srprsngly, mny nn-Smtc lnggs sch `s `nglsh cn b wrttn wtht vwls `nd rd wth lttl dffclty.'' This fact can be used to semi-bowdlerise offensive language, a practice known as [[disemvoweling]].
39050
39051 Some usages of [[1337speak]] drop vowels, especially for small words.
39052
39053 ==See also==
39054 * [[Abjad numerals]]
39055
39056 ==References==
39057 * {{cite book|author=Wright, W.|title=A Grammar of the Arabic Language | edition = 3&lt;sup&gt;rd&lt;/sup&gt; ed.|publisher=Cambridge University Press|year=1971|id=ISBN 0-521-09455-0}}, v. 1, p. 28.
39058
39059 ==External links==
39060 * [http://www.abjad.com/ Abjad - The Arabic Alphabet learning system]
39061
39062
39063 [[Category:Writing systems]]
39064
39065 [[br:Abjad]]
39066 [[ca:Abjad]]
39067 [[de:Konsonantenschrift]]
39068 [[es:Abyad]]
39069 [[fa:ابØŦد]]
39070 [[fr:Abjad]]
39071 [[gl:Abxad]]
39072 [[wa:Abdjad]]</text>
39073 </revision>
39074 </page>
39075 <page>
39076 <title>Abugida</title>
39077 <id>878</id>
39078 <revision>
39079 <id>41075774</id>
39080 <timestamp>2006-02-24T22:13:33Z</timestamp>
39081 <contributor>
39082 <ip>139.76.128.71</ip>
39083 </contributor>
39084 <text xml:space="preserve">{{IndicText}}
39085 An '''abugida''', '''alphasyllabary''', or '''syllabics''' is a [[writing system]] composed of signs ([[grapheme]]s) denoting [[consonant]]s with an inherent following [[vowel]], which are consistently modified to indicate other vowels, or, in some cases, the lack of a vowel. Examples include the various scripts of the [[Brahmic family]], Ethiopic [[Ge'ez language|Ge’ez]], and [[Canadian Aboriginal Syllabics]].
39086
39087 A typical abugida is [[Devanagari]]. There is no basic sign representing the consonant ''k;'' rather the unmodified letter ā¤• represents the syllable ''ka;'' the ''a'' is the so-called &quot;inherent&quot; vowel. The vowel may be changed by adding vowel marks to the basic character, producing other syllables beginning with ''k-,'' such as ā¤•ā¤ŋ ''ki'', ā¤•āĨ ''ku'', ā¤•āĨ‡ ''ke'', ā¤•āĨ‹ ''ko''. These [[diacritic]]s are applied systematically to other consonantal characters. For example, from ā¤˛ ''la'' is formed ā¤˛ā¤ŋ ''li'', ā¤˛āĨ ''lu'', ā¤˛āĨ‡ ''le'', ā¤˛āĨ‹ ''lo''. Such a consonant with either an inherent or marked vowel is called an [[akshara]].
39088
39089 In many abugidas, there is also a diacritic to suppress the inherent vowel, yielding the bare consonant. In Devanagari, ā¤•āĨ is ''k,'' and ā¤˛āĨ is ''l''. This is called the ''[[virama]]'' in [[Sanskrit]], or ''halant'' in [[Hindi]]. It may be used to form [[consonant cluster]]s, or to indicate that a consonant occurs at the end of a word. Other means of expressing these functions include special [[conjunct]] forms in which two or more consonant characters are merged to express a cluster, such as Devanagari: ā¤•āĨā¤˛ ''kla.'' (Note that on some fonts display this as ā¤•āĨ followed by ā¤˛, rather than forming a conjunct.)
39090
39091 The diacritics may appear above (ā¤•āĨ‡), below (ā¤•āĨ), to the left (ā¤•ā¤ŋ), or to the right (ā¤•āĨ‹) of the consonantal character, or may surround it as in [[Tamil script|Tamil]] āŽ•ā¯Œ = ''kau,'' from āŽ• ''ka''. In many of the Brahmic scripts, a syllable beginning with a cluster is treated as a single character for purposes of vowel marking, so a vowel marker like ā¤ŋ ''-i,'' falling before the character it modifies, may appear several positions before the place where it is pronounced. For example, the game [[cricket]] in [[Hindi language|Hindi]] is ā¤•āĨā¤°ā¤ŋā¤•āĨ‡ā¤Ÿ ''krikeÅŖ;'' the diacritic for /i/ appears before the [[consonant cluster]] /kr/, not before the /r/. A more unusual example is seen in the [[Batak alphabet]]: Here the syllable ''bim'' is written ''ba-ma-i-(virama)''. That is, the vowel diacritic and virama are both written after the consonants for the whole syllable.
39092
39093 In Ge’ez, the prototype abugida, the form of the letter itself may be altered. For example, ሀ ''hä'' (basic form), ሁ ''hu'' (with a right-side diacritic that does not alter the letter), ሂ ''hi'' (with a subdiacritic compresses the letter, so that the whole fidel (akshara) occupies the same amount of space), ህ ''he'' (where the letter is modified with a kink in the left arm).
39094
39095 In the family of abugidas known as [[Canadian Aboriginal Syllabics]], vowels are indicated by modification (rotation and reflection) of the akshara. For example, Inuktitut ᐹ ''pi,'' áŗ ''pu,'' ᐸ ''pa;'' ᑎ ''ti,'' ᑐ ''tu,'' ᑕ ''ta''.
39096
39097 The [[RÃŗng]] script used for the [[Lepcha language]] goes further than other abugidas in that each akshara is a full syllable: Not only the vowel, but any final consonant is indicated by a diacritic. For example, the syllable [sok] would written as something like {{IPA|sĖĨĖŊ}}, here with an underring representing /o/ and an overcross representing the diacritic for final /k/. There are several abugidas of Indonesia which also indicate final consonants with diacritics, but usually these are restricted to one or two [[nasal consonant|nasals]] such as /ŋ/.
39098
39099 The [[Pahawh Hmong]] script represents both consonants and vowels with full letters. However, the graphic order is vowel-consonant even though they are pronounced as consonant-vowel. This is rather like the /o/ vowel in the Indic abugidas. Pahawh Hmong is unusual in that, while the inherent vowel /au/ is unwritten, so is the inherent consonant /k/. For the syllable /kau/, which requires one or the other of the inherent sounds to be overt, it is /au/ that is written. That is, a Pahawh akshara appears to be a vowel with an inherent consonant rather than the other way around.
39100
39101 It is difficult to draw a dividing line between abugidas and other [[segment (linguistics)|segmental]] scrips. For example, the [[Meroitic script]] of ancient [[Sudan]] did not indicate an inherent ''a'' (one symbol stood for both ''m'' and ''ma,'' for example), and is thus similar to Brahmic family abugidas. However, the other vowels were indicated with full letters, not diacritics or modification, so the system was essentially an alphabet that did not bother to write the most common vowel.
39102
39103 [[Thaana]] is also like an abugida in that vowels are marked with diacritics. However, all vowels are marked, as is the absence of a vowel; there is no inherent vowel. Normally no letter may occur without a diacritic. That is, it is equivalent to an [[abjad]] with obligatory vowel marking, like the [[Arabic alphabet]] as used for [[Kurdish language|Kurdish]] in Iraq, as is thus essentially alphabetic. Note that it developed among a population that was already literate with an abugida for their language.
39104
39105 Several systems of [[shorthand]] use diacritics for vowels, but they do not have an inherent vowel, and are thus more similar to Thaana and Kurdish than to the Brahmic scripts. The [[Sam Pollard|Pollard]] script, which was based on shorthand, also uses diacritics for vowels; the placements of the vowel relative to the consonant indicates [[tone (linguistics)|tone]].
39106
39107 As the term ''alphasyllabary'' suggests, abugidas have been considered an intermediate step between [[alphabet]]s and [[syllabary|syllabaries]]. Historically, abugidas appear to have evolved from [[abjad|abjads]] (vowelless alphabets). They contrast with syllabaries, where there is a distinct symbol for each syllable or consonant-vowel combination, and where these have no systematic similarity to each other. Compare the Devanagari examples above to sets of syllables in the Japanese [[hiragana]] syllabary: か ''ka'', き ''ki'', く ''ku'', け ''ke'', こ ''ko'' have nothing in common to indicate ''k;'' while ら ''ra'', り ''ri'', る ''ru'', れ ''re'', ろ ''ro'' have neither anything in common for ''r'', nor anything do indicate that they have the same vowels as the ''k'' set.
39108
39109 The term ''abugida'' is taken from a conventional name for the Ge'ez script, derived from its first four letters (አቡጊá‹ŗ) as ordered
39110 in some religious contexts. This order corresponds to the ancestral [[Semitic]] character order, ''aleph, beth, gimel, daleth,'' or A B C D.
39111
39112 Historically, abugidas appear to have first evolved from abjads (perhaps [[Aramaic alphabet|Aramaic]]) with the [[KharoášŖáš­hÄĢ]] and [[BrāhmÄĢ]] scripts. The Kharosthi family does not survive today, but Brahmi's descendents include most of the modern scripts of [[South Asia|South]] and [[Southeast Asia]]. Canadian Syllabics was derived from Devanagari, and is thus in the Brahmic family, or was at least influenced by Devanagari in its creation. Although Ge’ez derived from a different abjad, its evolution into an abugida may have been due to the influence of Christian missionaries from India.
39113
39114 == Partial list of abugidas ==
39115
39116 ;True abugidas
39117 *[[BrāhmÄĢ|Brahmic]] family, from the 4th (maybe 6th) century BC
39118 **[[Balinese alphabet]]
39119 **[[Bengali script|Bengali]]
39120 **[[Burmese alphabet|Burmese]]
39121 **[[Devanagari]] (used to write [[Sanskrit]], [[Pāli|Pali]], modern [[Hindi language|Hindi]], [[Marathi language|Marathi]] etc.)
39122 **[[Gujarati script|Gujarati]]
39123 **[[Gurmukhi script]]
39124 **[[Kannada language|Kannada]]
39125 **[[Khmer script|Khmer]]
39126 **[[Lao alphabet|Lao]]
39127 **[[Malayalam script|Malayalam]]
39128 **[[Siddham]] used to write [[Sanskrit]]
39129 **[[Sinhala script|Sinhala]]
39130 **[[Tamil script|Tamil]]
39131 **[[Telugu script|Telugu]]
39132 **[[Thai alphabet|Thai]]
39133 **[[Tibetan script|Tibetan]]
39134 *[[KharoášŖáš­hÄĢ]] (extinct), from the 3rd century BC
39135 *[[Ge'ez language|Ge'ez]] (Ethiopic), from the 4th century AD
39136 *[[Canadian Aboriginal Syllabics]]
39137 *[[Baybayin]], pre-colonial script of [[Tagalog language | Tagalog]]
39138
39139 ;Abugida-like scripts
39140
39141 *[[Meroitic script|Meroitic]] (extinct)
39142 *[[Thaana]]
39143 *[[Pitman shorthand]]
39144 *[[Pollard script]]
39145
39146 ==External links==
39147 *[http://www.omniglot.com/writing/syllabaries.htm Syllabaries] - [http://www.omniglot.com/ Omniglot's] list of syllabaries and abugidas, including examples of various writing systems
39148
39149 [[Category:Writing systems]]
39150
39151 [[am:አቡጊá‹ŗ]]
39152 [[br:Abugida]]
39153 [[ca:Abugida]]
39154 [[de:Abugida]]
39155 [[es:Abugida]]
39156 [[fr:Alphasyllabaire]]
39157 [[gl:Alfasilabario]]
39158 [[ko:ė•„ëļ€ę¸°ë‹¤]]
39159 [[nl:Abugida]]
39160 [[sl:Abugida]]</text>
39161 </revision>
39162 </page>
39163 <page>
39164 <title>AIDS</title>
39165 <id>879</id>
39166 <revision>
39167 <id>42130717</id>
39168 <timestamp>2006-03-04T00:47:59Z</timestamp>
39169 <contributor>
39170 <username>Grcampbell</username>
39171 <id>353882</id>
39172 </contributor>
39173 <minor />
39174 <comment>/* Origin of HIV/AIDS */</comment>
39175 <text xml:space="preserve">{{DiseaseDisorder infobox |
39176 Name = Acquired immunodeficiency syndrome (AIDS) |
39177 ICD10 = B24 |
39178 ICD9 = {{ICD9|042}} |
39179 }}
39180 '''Acquired immunodeficiency syndrome''', or '''acquired immune deficiency syndrome''' (or [[Acronym and initialism|acronym]] '''AIDS''' or '''Aids'''), is a [[syndrome|collection of symptoms and infections]] resulting from the specific damage to the [[immune system]] caused by [[infection]] with the [[HIV|human immunodeficiency virus]] (HIV).&lt;ref name=Marx&gt;{{
39181
39182 cite journal |
39183 author=Marx, J. L. | title=New disease baffles medical community |
39184 journal=Science | year=1982 | pages=618-621 | volume=217 | issue=4560 | id={{PMID |7089584}}
39185
39186 }}&lt;/ref&gt; It results from the latter stages of advanced HIV infection in [[human]]s, thereby leaving compromised individuals prone to [[opportunistic infection]]s and [[tumor]]s. Although treatments for both AIDS and HIV exist to slow the virus' progression in a human patient, there is no known cure.
39187
39188 Most researchers believe that HIV originated in [[sub-Saharan Africa]] &lt;ref name=Gao&gt;{{
39189
39190 cite journal |
39191 author=Gao, F., Bailes, E., Robertson, D. L., Chen, Y., Rodenburg, C. M., Michael, S. F., Cummins, L. B., Arthur, L. O., Peeters, M., Shaw, G. M., Sharp, P. M. and Hahn, B. H. |
39192 title=Origin of HIV-1 in the Chimpanzee Pan troglodytes troglodytes |
39193 journal=Nature | year=1999 | pages=436-441 | volume=397 | issue=6718 | id={{PMID |9989410}}
39194
39195 }}&lt;/ref&gt; during the twentieth century; it is now a global epidemic. [[UNAIDS]] and the [[World Health Organization]] (WHO) estimate that AIDS has killed more than 25 million people since it was first recognized on [[December 1]], [[1981]], making it one of the most destructive pandemics in recorded history. In 2005 alone, AIDS claimed between an estimated 2.8 and 3.6 million, of which more than 570,000 were children.&lt;ref name=UNAIDS&gt;{{
39196
39197 cite web |
39198 author=[[UNAIDS]] | publisher= | year= 2005 |
39199 url=http://www.unaids.org/Epi2005/doc/EPIupdate2005_pdf_en/epi-update2005_en.pdf |
39200 title=AIDS epidemic update, 2005 | accessdate=2006-01-17
39201
39202 }}&lt;/ref&gt; In countries where there is access to [[antiretroviral drug|antiretroviral]] treatment, both [[mortality]] and [[morbidity]] of HIV infection have been reduced &lt;ref name=Palella&gt;{{
39203
39204 cite journal |
39205 author=Palella, F. J. Jr, Delaney, K. M., Moorman, A. C., Loveless, M. O., Fuhrer, J., Satten, G. A., Aschman and D. J., Holmberg, S. D. |
39206 title=Declining morbidity and mortality among patients with advanced human immunodeficiency virus infection. HIV Outpatient Study Investigators |
39207 journal=N. Engl. J. Med | year=1998 | pages=853-860 | volume=338 | issue=13 | id={{PMID |9516219}}
39208
39209 }}&lt;/ref&gt;. However, side-effects of these antiretrovirals have also caused problems such as [[lipodystrophy]], [[dyslipidaemia]], [[insulin resistance]] and an increase in [[cardiovascular]] risks &lt;ref name=Montessori&gt;{{
39210
39211 cite journal |
39212 author=Montessori, V., Press, N., Harris, M., Akagi, L., Montaner, J. S. |
39213 title=Adverse effects of antiretroviral therapy for HIV infection. |
39214 journal=CMAJ | year=2004 | pages=229-238 | volume=170 | issue=2 | id={{PMID |14734438}}
39215
39216 }}&lt;/ref&gt;. The difficulty of consistently taking the medicines has also contributed to the rise of [[viral escape]] and [[viral resistance|resistance]] to the medicines &lt;ref name=Becker&gt;{{
39217
39218 cite journal |
39219 author=Becker, S., Dezii, C. M., Burtcel, B., Kawabata, H. and Hodder, S. |
39220 title=Young HIV-infected adults are at greater risk for medication nonadherence |
39221 journal=MedGenMed | year=2002 | pages=21 | volume=4 | issue=3 | id={{PMID |12466764}}
39222
39223 }}&lt;/ref&gt;.
39224 [[Image:Red_ribbon.png|right|thumbnail|120px|The Red Ribbon is the global symbol for solidarity with HIV-positive people and those living with AIDS.]]
39225
39226 ==Infection by HIV==
39227 [[Image:HIV-budding.jpg|right|thumbnail|300px|[[Scanning electron microscope|Scanning electron micrograph]] of HIV-1 budding from cultured [[lymphocyte]].]]
39228 AIDS is the most severe manifestation of infection with HIV. HIV is a [[retrovirus]] that primarily infects vital components of the human [[immune system]] such as CD4+ [[T cell]]s, [[macrophage]]s and [[dendritic cell]]s. It also directly and indirectly destroys CD4+ T cells. As CD4+ T cells are required for the proper functioning of the immune system, when enough CD4+ cells have been destroyed by HIV, the immune system barely works, leading to AIDS. Acute HIV infection progresses over time to clinical latent HIV infection and then to early symptomatic HIV infection and later, to AIDS, which is identified on the basis of the amount of [[CD4]] positive cells in the blood and the presence of certain infections.
39229 {{details|HIV}}
39230 In the absence of antiretroviral therapy, progression from HIV infection to AIDS occurs at a [[median]] of between nine to ten years and the median survival time after developing AIDS is only 9.2 months &lt;ref name=Morgan2&gt;{{
39231
39232 cite journal
39233 | author=Morgan, D., Mahe, C., Mayanja, B., Okongo, J. M., Lubega, R. and Whitworth, J. A.
39234 | title=HIV-1 infection in rural Africa: is there a difference in median time to AIDS and survival compared with that in industrialized countries?
39235 | journal=AIDS | year=2002 | pages=597-632 | volume=16 | issue=4 | id={{PMID |11873003}}
39236
39237 }}&lt;/ref&gt;. However, the rate of clinical disease progression varies widely between individuals, from two weeks up to 20 years. Many factors affect the rate of progression. These include factors that influence the body's ability to defend against HIV, including the infected person's genetic inheritance, general immune function &lt;ref name=Clerici&gt;{{
39238
39239 cite journal
39240 | author=Clerici, M., Balotta, C., Meroni, L., Ferrario, E., Riva, C., Trabattoni, D., Ridolfo, A., Villa, M., Shearer, G.M., Moroni, M. and Galli, M.
39241 | title=Type 1 cytokine production and low prevalence of viral isolation correlate with long-term non progression in HIV infection
39242 | journal=AIDS Res. Hum. Retroviruses. | year=1996 | pages=1053-1061 | volume=12 | issue=11
39243 | id={{PMID |8827221}}
39244
39245 }}&lt;/ref&gt;&lt;ref name=Morgan&gt;{{
39246
39247 cite journal
39248 | author=Morgan, D., Mahe, C., Mayanja, B. and Whitworth, J. A.
39249 | title=Progression to symptomatic disease in people infected with HIV-1 in rural Uganda: prospective cohort study
39250 | journal=BMJ | year=2002 | pages=193-196 | volume=324 | issue=7331
39251 | id={{PMID |11809639}}
39252
39253 cite journal
39254 | author=Tang, J. and Kaslow, R. A.
39255 | title=The impact of host genetics on HIV infection and disease progression in the era of highly active antiretroviral therapy
39256 | journal=AIDS | year=2003 | pages=S51-S60 | volume=17 | issue=Suppl 4
39257 | id={{PMID |15080180}}
39258
39259 }}&lt;/ref&gt;, access to health care, age and other coexisting infections &lt;ref name=Morgan2&gt;{{
39260
39261 cite journal
39262 | author=Morgan, D., Mahe, C., Mayanja, B., Okongo, J. M., Lubega, R. and Whitworth, J. A.
39263 | title=HIV-1 infection in rural Africa: is there a difference in median time to AIDS and survival compared with that in industrialized countries?
39264 | journal=AIDS | year=2002 | pages=597-632 | volume=16 | issue=4
39265 | id={{PMID |11873003}}
39266 }}&lt;/ref&gt;&lt;ref name=Gendelman&gt;{{
39267
39268 cite journal
39269 | author=Gendelman, H. E., Phelps, W., Feigenbaum, L., Ostrove, J. M., Adachi, A., Howley, P. M., Khoury, G., Ginsberg, H. S. and Martin, M. A.
39270 | title=Transactivation of the human immunodeficiency virus long terminal repeat sequences by DNA viruses
39271 | journal=Proc. Natl. Acad. Sci. U. S. A. | year=1986 | pages=9759-9763 | volume=83 | issue=24
39272 | id={{PMID |2432602}}
39273
39274 }}&lt;/ref&gt;&lt;ref name=Bentwich&gt;{{
39275
39276 cite journal
39277 | author=Bentwich, Z., Kalinkovich., A. and Weisman, Z.
39278 | title=Immune activation is a dominant factor in the pathogenesis of African AIDS.
39279 | journal=Immunol. Today | year=1995 | pages=187-191 | volume=16 | issue=4
39280 | id={{PMID |7734046}}
39281
39282 }}&lt;/ref&gt;. Different strains of HIV &lt;ref name=Quinones&gt;{{
39283
39284 cite journal
39285 | author=QuiÃąones-Mateu, M. E., Mas, A., Lain de Lera, T., Soriano, V., Alcami, J., Lederman, M. M. and Domingo, E.
39286 | title=LTR and tat variability of HIV-1 isolates from patients with divergent rates of disease progression
39287 | journal=Virus Research | year=1998 | pages=11-20 | volume=57 | issue=1
39288 | id={{PMID |9833881}}
39289
39290 }}&lt;/ref&gt;&lt;ref name=Campbell&gt;{{
39291
39292 cite journal
39293 | author=Campbell, G. R., Pasquier, E., Watkins, J., Bourgarel-Rey, V., Peyrot, V., Esquieu, D., Barbier, P., de Mareuil, J., Braguer, D., Kaleebu, P., Yirrell, D. L. and Loret E. P.
39294 | title=The glutamine-rich region of the HIV-1 Tat protein is involved in T-cell apoptosis
39295 | journal=J. Biol. Chem. | year=2004 | pages=48197-48204 | volume=279 | issue=46
39296 | id={{PMID |15331610}}
39297
39298 }}&lt;/ref&gt; may also cause different rates of clinical disease progression.
39299 {{details|HIV Disease Progression Rates}}
39300
39301 ==Diagnosis==
39302 ===AIDS and HIV case definitions===
39303 Since June 18, 1981, many different definitions have been developed for epidemiological surveillance such as the [[Bangui definition]] and the [[1994 expanded World Health Organization AIDS case definition]]. However, these were never intended to be used for clinical staging of patients, for which they are neither sensitive nor specific. The [[World Health Organization]]s (WHO) staging system for HIV infection and disease, using clinical and laboratory data, can be used in developing countries and the [[Centers for Disease Control and Prevention|Centers for Disease Control]] (CDC) Classification System can be used in developed nations.
39304
39305 ====WHO Disease Staging System for HIV Infection and Disease====
39306 {{main|WHO Disease Staging System for HIV Infection and Disease}}
39307 In 1990, the [[World Health Organization]] (WHO) grouped these infections and conditions together by introducing a staging system for patients infected with HIV-1 &lt;ref name=WHO&gt;{{
39308
39309 cite journal
39310 | author=World Health Organisation
39311 | title=Interim proposal for a WHO staging system for HIV infection and disease
39312 | journal=WHO Wkly Epidem. Rec. | year=1990 | pages=221-228 | volume=65 | issue=29
39313 | id={{PMID |1974812}}
39314
39315 }}&lt;/ref&gt;. This was updated in September 2005. Most of these conditions are [[opportunistic infections]] that can be easily treated in healthy people.
39316
39317 : ''Stage I:'' HIV disease is asymptomatic and not categorized as AIDS
39318 : ''Stage II:'' include minor mucocutaneous manifestations and recurrent upper respiratory tract infections
39319 : ''Stage III:'' includes unexplained chronic diarrhea for longer than a month, severe bacterial infections and pulmonary tuberculosis or
39320 : ''Stage IV'' includes [[toxoplasmosis]] of the brain, [[candidiasis]] of the esophagus, trachea, bronchi or lungs and [[Kaposi's sarcoma]]; these diseases are used as indicators of AIDS.
39321
39322 ====CDC Classification System for HIV Infection====
39323 {{main|CDC Classification System for HIV Infection}}
39324 In the [[USA]], the definition of AIDS is governed by the [[Centers for Disease Control and Prevention]] (CDC). In 1993, the CDC expanded their definition of AIDS to include healthy HIV positive people with a CD4 positive T cell count of less than 200 per Âĩl of blood. The majority of new AIDS cases in the United States are reported on the basis of a low [[T cell]] count in the presence of HIV infection &lt;ref name=MMWR&gt;{{
39325
39326 cite web | author=[[CDC]] | publisher=CDC | year=1992
39327 | url=http://www.cdc.gov/mmwr/preview/mmwrhtml/00018871.htm
39328 | title=1993 Revised Classification System for HIV Infection and Expanded Surveillance Case Definition for AIDS Among Adolescents and Adults
39329 | accessdate=2006-02-09
39330
39331 }}&lt;/ref&gt;
39332
39333 ===HIV test===
39334 {{main|HIV test}}
39335 Approximately half of those infected with HIV don't know that they are infected until they are diagnosed with AIDS. HIV test kits are used to screen donor blood and blood products, and to diagnose HIV in individuals. Typical HIV tests, including the HIV enzyme immunoassay and the Western blot assay, detect HIV antibodies in serum, plasma, oral fluid, dried blood spot or urine of patients. Other tests to look for HIV antigens, HIV-RNA, and HIV-DNA are also commercially available and can be used to detect HIV infection prior to the development of detectable antibodies. However, these assays are not specifically approved by the U.S. Food and Drug Administration for the diagnosis of HIV infection.
39336
39337 ==Symptoms and Complications==
39338 [[Image:Hiv-timecourse.png|400px|thumb|right|A generalized graph of the relationship between HIV copies (viral load) and CD4 counts over the average course of untreated HIV infection; any particular individuals' disease course may vary considerably.]]
39339 The symptoms of AIDS are primarily the result of conditions that do not normally develop in individuals with healthy [[immune system]]s. Most of these conditions are infections caused by [[bacteria]], [[virus|viruses]], [[fungus|fungi]] and [[parasite]]s that are normally controlled by the elements of the immune system that HIV damages. [[Opportunistic infection]]s are common in people with AIDS &lt;ref name=Holmes&gt;{{
39340
39341 cite journal
39342 | author=Holmes, C. B., Losina, E., Walensky, R. P., Yazdanpanah, Y., Freedberg, K. A.
39343 | title=Review of human immunodeficiency virus type 1-related opportunistic infections in sub-Saharan Africa
39344 | journal=Clin. Infect. Dis. | year=2003 | pages=656-662 | volume=36 | issue=5
39345 | id={{PMID |12594648}}
39346
39347 }}&lt;/ref&gt;. Nearly every [[organ system]] is affected. People with AIDS also have an increased risk of developing various cancers such as [[Kaposi sarcoma]], [[cervical cancer]] and cancers of the immune system known as [[lymphoma]]s.
39348
39349 Additionally, people with AIDS often have systemic symptoms of infection like [[fever]]s, [[sweat]]s (particularly at night), swollen glands, chills, weakness, and weight loss &lt;ref name=Guss&gt;{{
39350
39351 cite journal
39352 | author=Guss, D. A.
39353 | title=The acquired immune deficiency syndrome: an overview for the emergency physician, Part 1
39354 | journal=J. Emerg. Med. | year=1994 | pages=375-384 | volume=12 | issue=3
39355 | id={{PMID |8040596}}
39356
39357 }}&lt;/ref&gt;&lt;ref name=Guss2&gt;{{
39358
39359 cite journal
39360 | author=Guss, D. A.
39361 | title=The acquired immune deficiency syndrome: an overview for the emergency physician, Part 2
39362 | journal=J. Emerg. Med. | year=1994 | pages=491-497 | volume=12 | issue=4
39363 | id={{PMID |7963396}}
39364
39365 }}&lt;/ref&gt;. After the diagnosis of AIDS is made, the current average survival time with antiretroviral therapy is estimated to be between 4 to 5 years &lt;ref name=Schneider&gt;{{
39366
39367 cite journal
39368 | author=Schneider, M. F., Gange, S. J., Williams, C. M., Anastos, K., Greenblatt, R. M., Kingsley, L., Detels, R., and Munoz, A.
39369 | title=Patterns of the hazard of death after AIDS through the evolution of antiretroviral therapy: 1984-2004
39370 | journal=AIDS | year=2005 | pages=2009-2018 | volume=19 | issue=17
39371 | id={{PMID|16260908}}
39372
39373 }}&lt;/ref&gt;, but because new treatments continue to be developed and because HIV continues to evolve resistance to treatments, estimates of survival time are likely to continue to change. Without antiretroviral therapy, progression to death normally occurs within a year &lt;ref name=Morgan2&gt;{{
39374
39375 cite journal
39376 | author=Morgan, D., Mahe, C., Mayanja, B., Okongo, J. M., Lubega, R. and Whitworth, J. A.
39377 | title=HIV-1 infection in rural Africa: is there a difference in median time to AIDS and survival compared with that in industrialized countries?
39378 | journal=AIDS | year=2002 | pages=597-632 | volume=16 | issue=4
39379 | id={{PMID |11873003}}
39380
39381 }}&lt;/ref&gt;. Most patients die from opportunistic infections or malignancies associated with the progressive failure of the immune system &lt;ref name=Lawn&gt;{{
39382
39383 cite journal
39384 | author=Lawn, S. D.
39385 | title=AIDS in Africa: the impact of coinfections on the pathogenesis of HIV-1 infection
39386 | journal=J. Infect. Dis. | year=2004 | pages=1-12 | volume=48 | issue=1
39387 | id={{PMID |14667787}}
39388
39389 }}&lt;/ref&gt;.
39390
39391 The rate of clinical disease progression varies widely between individuals and has been shown to be affected by many factors such as host susceptibility &lt;ref name=Clerici&gt;{{
39392
39393 cite journal
39394 | author=Clerici, M., Balotta, C., Meroni, L., Ferrario, E., Riva, C., Trabattoni, D., Ridolfo, A., Villa, M., Shearer, G.M., Moroni, M. and Galli, M.
39395 | title=Type 1 cytokine production and low prevalence of viral isolation correlate with long-term non progression in HIV infection.
39396 | journal=AIDS Res. Hum. Retroviruses. | year=1996 | pages=1053-1061 | volume=12 | issue=11
39397 | id={{PMID |8827221}}
39398
39399 }}&lt;/ref&gt;&lt;ref name=Morgan&gt;{{
39400
39401 cite journal
39402 | author=Morgan, D., Mahe, C., Mayanja, B. and Whitworth, J. A.
39403 | title=Progression to symptomatic disease in people infected with HIV-1 in rural Uganda: prospective cohort study
39404 | journal=BMJ | year=2002 | pages=193-196 | volume=324 | issue=7331
39405 | id={{PMID |11809639}}
39406
39407 }}&lt;/ref&gt;&lt;ref name=Tang&gt;{{
39408
39409 cite journal
39410 | author=Tang, J. and Kaslow, R. A.
39411 | title=The impact of host genetics on HIV infection and disease progression in the era of highly active antiretroviral therapy
39412 | journal=AIDS | year=2003 | pages=S51-S60 | volume=17 | issue=Suppl 4
39413 | id={{PMID |15080180}}
39414
39415 }}&lt;/ref&gt;, health care and co-infections &lt;ref name=Morgan2&gt;{{
39416
39417 cite journal
39418 | author=Morgan, D., Mahe, C., Mayanja, B., Okongo, J. M., Lubega, R. and Whitworth, J. A.
39419 | title=HIV-1 infection in rural Africa: is there a difference in median time to AIDS and survival compared with that in industrialized countries?
39420 | journal=AIDS | year=2002 | pages=597-632 | volume=16 | issue=4
39421 | id={{PMID |11873003}}
39422
39423 }}&lt;/ref&gt;&lt;ref name=Lawn&gt;{{
39424
39425 cite journal
39426 | author=Lawn, S. D.
39427 | title=AIDS in Africa: the impact of coinfections on the pathogenesis of HIV-1 infection
39428 | journal=J. Infect. Dis. | year=2004 | pages=1-12 | volume=48 | issue=1
39429 | id={{PMID |14667787}}
39430
39431 }}&lt;/ref&gt;, and peculiarities of the [[viral strain]] &lt;ref name=Campbell&gt;{{
39432
39433 cite journal
39434 | author=Campbell, G. R., Pasquier, E., Watkins, J., Bourgarel-Rey, V., Peyrot, V., Esquieu, D., Barbier, P., de Mareuil, J., Braguer, D., Kaleebu, P., Yirrell, D. L. and Loret E. P.
39435 | title=The glutamine-rich region of the HIV-1 Tat protein is involved in T-cell apoptosis
39436 | journal=J. Biol. Chem. | year=2004 | pages=48197-48204 | volume=279 | issue=46
39437 | id={{PMID |15331610}}
39438
39439 }}&lt;/ref&gt;&lt;ref name=Campbell2&gt;{{
39440
39441 cite journal
39442 | author=Campbell, G. R., Watkins, J. D., Esquieu, D., Pasquier, E., Loret, E. P. and Spector, S. A.
39443 | title=The C terminus of HIV-1 Tat modulates the extent of CD178-mediated apoptosis of T cells
39444 | journal=J. Biol. Chem. | year=2005 | pages=38376-39382 | volume=280 | issue=46
39445 | id={{PMID |16155003}}
39446
39447 }}&lt;/ref&gt;&lt;ref name=Senkaali&gt;{{
39448
39449 cite journal
39450 | author=Senkaali, D., Muwonge, R., Morgan, D., Yirrell, D., Whitworth, J. and Kaleebu, P.
39451 | title=The relationship between HIV type 1 disease progression and V3 serotype in a rural Ugandan cohort
39452 | journal=AIDS Res. Hum. Retroviruses. | year=2005 | pages=932-937 | volume=20 | issue=9
39453 | id={{PMID |15585080}}
39454
39455 }}&lt;/ref&gt;. Also, the specific opportunistic infections that AIDS patients develop depends in part on the prevalence of these infections in the geographic area in which the patient lives.
39456
39457 ===The major pulmonary illnesses===
39458 *'''''Pneumocystis jiroveci'' pneumonia''': [[Pneumocystis jiroveci pneumonia|''Pneumocystis jiroveci'' pneumonia]] (originally known as ''Pneumocystis carinii'' pneumonia, often abbreviated PCP) is relatively rare in normal, [[immunocompetent]] people but common among HIV-infected individuals. Before the advent of effective treatment and diagnosis in Western countries it was a common immediate cause of death. In developing countries, it is still one of the first indications of AIDS in untested individuals, although it does not generally occur unless the CD4 count is less than 200 per Âĩl &lt;ref name=Feldman&gt;{{
39459
39460 cite journal
39461 | author=Feldman, C.
39462 | title=Pneumonia associated with HIV infection
39463 | journal=Curr. Opin. Infect. Dis. | year=2005 | pages=165-170 | volume=18 | issue=2
39464 | id={{PMID|15735422}}
39465
39466 }}&lt;/ref&gt;.
39467
39468 *'''Tuberculosis''': Among infections associated with HIV, [[tuberculosis]] (TB) is unique in that it may be transmitted to immunocompetent persons via the respiratory route, is easily treatable once identified, may occur in early-stage HIV disease, and is preventable with drug therapy. However, multi-drug resistance is a potentially serious problem. Even though its incidence has declined because of the use of directly observed therapy and other improved practices in Western countries, this is not the case in developing countries where HIV is most prevalent. In early-stage HIV infection (CD4 count &amp;gt;300 cells per Âĩl), TB typically presents as a pulmonary disease. In advanced HIV infection, TB may present atypically and extrapulmonary TB is common infecting [[bone marrow]], [[bone]], urinary and [[gastrointestinal tract]]s, liver, regional lymph nodes, and the central nervous system &lt;ref name=Decker&gt;{{
39469
39470 cite journal
39471 | author=Decker, C. F. and Lazarus, A.
39472 | title=Tuberculosis and HIV infection. How to safely treat both disorders concurrently
39473 | journal=Postgrad Med. | year=2000 | pages=57-60, 65-68 | volume=108 | issue=2
39474 | id={{PMID|10951746}}
39475
39476 }}&lt;/ref&gt;.
39477
39478 ===The major gastro-intestinal illnesses===
39479 * '''Esophagitis''': [[Esophagitis]] is an inflammation of the lining of the lower end of the [[esophagus]] (gullet or swallowing tube leading to the stomach). In HIV infected individuals, this could be due to fungus ([[candidiasis]]), virus ([[Herpes simplex virus|herpes simplex-1]] or [[cytomegalovirus]]). In rare cases, it could be due to [[mycobacteria]] &lt;ref name=Zaidi&gt;{{
39480
39481 cite journal
39482 | author=Zaidi, S. A. and Cervia, J. S.
39483 | title=Diagnosis and management of infectious esophagitis associated with human immunodeficiency virus infection
39484 | journal=J. Int. Assoc. Physicians AIDS Care (Chic Ill) | year=2002 | pages=53-62 | volume=1 | issue=2
39485 | id={{PMID|12942677}}
39486
39487 }}&lt;/ref&gt;.
39488
39489 * '''Unexplained chronic diarrhea''': In HIV infection, there are many possible causes of [[diarrhea]], including common bacterial (''[[Salmonella]]'', ''[[Shigella]]'', ''[[Listeria]]'', ''[[Campylobacter]]'', or ''[[Escherichia coli]]'') and parasitic infections, and uncommon opportunistic infections such as [[cryptosporidiosis]], [[microsporidiosis]], ''[[Mycobacterium avium]]'' complex (MAC) and cytomegalovirus (CMV) colitis. Diarrhea may follow a course of antibiotics (common for ''[[Clostridium difficile]]''). It may also be a side effect of several drugs used to treat HIV, or it may simply accompany HIV infection, particularly during primary HIV infection. In the later stages of HIV infection, diarrhea is thought to be a reflection of changes in the way the intestinal tract absorbs nutrients, and may be an important component of HIV-related wasting &lt;ref name=Guerrant&gt;{{
39490
39491 cite journal
39492 | author=Guerrant, R. L., Hughes, J. M., Lima, N. L., Crane, J.
39493 | title=Diarrhea in developed and developing countries: magnitude, special settings, and etiologies
39494 | journal=Rev. Infect. Dis. | year=1990 | pages=S41-S50 | volume=12 | issue=Suppl 1
39495 | id={{PMID|2406855}}
39496
39497 }}&lt;/ref&gt;.
39498
39499 ===The major neurological illnesses===
39500 * '''Toxoplasmosis''': [[Toxoplasmosis]] is a disease caused by the single-celled parasite called ''Toxoplasma gondii''. ''T. gondii'' usually infects the brain causing toxoplasma encephalitis. It can also infect and cause disease in the eyes and lungs &lt;ref name=Luft&gt;{{
39501
39502 cite journal
39503 | author=Luft, B. J. and Chua, A.
39504 | title=Central Nervous System Toxoplasmosis in HIV Pathogenesis, Diagnosis, and Therapy
39505 | journal=Curr. Infect. Dis. Rep. | year=2000 | pages=358-362 | volume=2 | issue=4
39506 | id={{PMID|11095878}}
39507
39508 }}&lt;/ref&gt;.
39509
39510 * '''Progressive multifocal leukoencephalopathy''': [[Progressive multifocal leukoencephalopathy]] (PML) is a [[demyelinating disease]], in which the [[myelin]] sheath covering the [[axons]] of nerve cells is gradually destroyed, impairing the transmission of nerve impulses. It is caused by a virus called [[JC virus]] which occurs in 70% of the population in [[latent]] form, causing disease only when the immune system has been severly weakened, as is the case for AIDS patients. It progresses rapidly, usually causing death within months of diagnosis &lt;ref name=Sadler&gt;{{
39511
39512 cite journal
39513 | author=Sadler, M. and Nelson, M. R.
39514 | title=Progressive multifocal leukoencephalopathy in HIV
39515 | journal=Int. J. STD AIDS | year=1997 | pages=351-357 | volume=8 | issue=6
39516 | id={{PMID|9179644}}
39517
39518 }}&lt;/ref&gt;.
39519
39520 * '''HIV-associated dementia''': HIV-1 associated dementia (HAD) is a metabolic [[encephalopathy]] induced by HIV infection and fueled by immune activation of brain [[macrophage]]s and [[microglia]] &lt;ref name=Gray&gt;{{
39521
39522 cite journal
39523 | author=Gray, F., Adle-Biassette, H., ChrÊtien, F., Lorin de la Grandmaison, G., Force, G., Keohane, C.
39524 | title=Neuropathology and neurodegeneration in human immunodeficiency virus infection. Pathogenesis of HIV-induced lesions of the brain, correlations with HIV-associated disorders and modifications according to treatments
39525 | journal=Clin. Neuropathol. | year=2001 | pages=146-155 | volume=20 | issue=4
39526 | id={{PMID|11495003}}
39527
39528 }}&lt;/ref&gt;. These cells are actively infected with HIV and secrete neurotoxins of both host and viral origin. Specific neurologic impairments are manifested by cognitive, behavioral, and motor abnormalities that occur after years of HIV infection and is associated with low CD4+ T cell levels and high plasma viral loads. Prevalence is between 10-20% in Western countries &lt;ref name=Grant&gt;{{
39529
39530 cite book
39531 | author = Grant, I., Sacktor, H., and McArthur, J.
39532 | year = 2005
39533 | title = The Neurology of AIDS
39534 | chapter = HIV neurocognitive disorders
39535 | chapterurl = http://www.hnrc.ucsd.edu/publications_pdf/2005grant1.pdf
39536 | editor = H. E. Gendelman, I. Grant, I. Everall, S. A. Lipton, and S. Swindells. (ed.)
39537 | edition = 2nd
39538 | pages = 357-373
39539 | publisher = Oxford University Press
39540 | location = London, U.K.
39541 | id = ISBN 0198526105
39542
39543 }}&lt;/ref&gt; and has only been seen in 1-2% of India based infections &lt;ref name=Satischandra&gt;{{
39544
39545 cite journal
39546 | author=Satishchandra, P., Nalini, A., Gourie-Devi, M., Khanna, N., Santosh, V., Ravi, V., Desai, A., Chandramuki, A., Jayakumar, P. N., and Shankar, S. K.
39547 | title=Profile of neurologic disorders associated with HIV/AIDS from Bangalore, south India (1989-96)
39548 | journal=Indian J. Med. Res. | year=2000 | pages=14-23 | volume=11 | issue=
39549 | id={{PMID|10793489}}
39550
39551 }}&lt;/ref&gt;&lt;ref name=Wadia&gt;{{
39552
39553 cite journal
39554 | author=Wadia, R. S., Pujari, S. N., Kothari, S., Udhar, M., Kulkarni, S., Bhagat, S., and Nanivadekar, A.
39555 | title=Neurological manifestations of HIV disease
39556 | journal=J. Assoc. Physicians India | year=2001 | pages=343-348 | volume=49 | issue=
39557 | id={{PMID|11291974}}
39558
39559 }}&lt;/ref&gt;.
39560
39561 * '''Cryptococcal meningitis''' This infection of the [[meninges]] (the membrane covering the brain and spinal cord) by the fungus ''[[Cryptococcus]] neoformans'' can cause fevers, headache, fatigue, nausea, and vomiting. Patients may also develop seizures and confusion. If untreated, it can be lethal.
39562
39563 ===The major HIV-associated malignancies===
39564 Patients with HIV infection have substantially increased incidence of several malignancies &lt;ref name=Boshoff&gt;{{
39565
39566 cite journal
39567 | author=Boshoff, C. and Weiss, R.
39568 | title=AIDS-related malignancies
39569 | journal=Nat. Rev. Cancer | year=2002 | pages=373-382 | volume=2 | issue=5
39570 | id={{PMID|12044013}}
39571
39572 }}&lt;/ref&gt;&lt;ref name=Yarchoan&gt;{{
39573
39574 cite journal
39575 | author=Yarchoan, R., Tosatom G. and Littlem R. F.
39576 | title=Therapy insight: AIDS-related malignancies - the influence of antiviral therapy on pathogenesis and management
39577 | journal=Nat. Clin. Pract. Oncol. | year=2005 | pages=406-415 | volume=2 | issue=8
39578 | id={{PMID|16130937}}
39579
39580 }}&lt;/ref&gt;. Several of these, [[Kaposi's sarcoma]], high-grade [[lymphoma]], and [[cervical cancer]] confer a diagnosis of AIDS when they occur in an HIV-infected person.
39581
39582 * '''Kaposi's sarcoma:''' [[Kaposi's sarcoma]] is the most common tumor in HIV-infected patients. The appearance of this tumor in young gay men in 1981 was one of the first signals of the AIDS epidemic. It is caused by a gammaherpesvirus called [[Kaposi's sarcoma-associated herpes virus]] (KSHV). It often appears as purplish nodules on the skin, but other organs, especially the mouth, gastrointestinal tract, and lungs can be affected.
39583
39584 * '''High-grade lymphoma:''' Several high-grade B cell lymphomas have substantially increased incidence in HIV-infected patients and often portend a poor prognosis. The most common AIDS-defining lymphomas are [[Burkitt's lymphoma]], Burkitt's-like lymphoma, and diffuse large B-cell lymphoma (DLBCL), including primary central nervous system lymphoma. [[Primary effusion lymphoma]] is less common. Many of these lymphomas are caused by either [[Epstein-Barr virus]] (EBV) or KSHV.
39585
39586 * '''Cervical cancer:''' [[Cervical cancer]] in HIV-infected women is also considered AIDS-defining. It is caused by [[human papillomavirus]] (HPV).
39587
39588 * '''Other tumors:''' In addition to the AIDS-defining tumors listed above, HIV-infected patients are also at increased risk of certain other tumors, such as [[Hodgkin's disease]] and [[anal carcinoma|anal]] and [[rectal carcinoma|rectal carcinomas]]. However, the incidence of many common tumors, such as [[breast cancer]] or [[colon cancer]], are not increased in HIV-infected patients. Most AIDS-associated malignancies are caused by co-infection of patients with an oncogenic DNA virus, especially [[Epstein-Barr virus]] (EBV), [[Kaposi's sarcoma-associated herpesvirus]] (KSHV), and [[human papillomavirus]] (HPV). In areas where [[HAART]] is extensively used to treat AIDS, the incidence of many AIDS-related malignancies has decreased, but at the same time malignancies overall have become the most common cause of death of HIV-infected patients &lt;ref name=Bonnet&gt;{{
39589
39590 cite journal
39591 | author=Bonnet, F., Lewden, C., May, T., Heripret, L., Jougla, E., Bevilacqua, S., Costagliola, D., Salmon, D., Chene, G. and Morlat, P.
39592 | title=Malignancy-related causes of death in human immunodeficiency virus-infected patients in the era of highly active antiretroviral therapy
39593 | journal=Cancer | year=2004 | pages=317-324 | volume=101 | issue=2
39594 | id={{PMID|15241829}}
39595
39596 }}&lt;/ref&gt;.
39597
39598 ===Other opportunistic infections===
39599 Patients with AIDS and severe immunosuppression often develop opportunistic infections that present with non-specific symptoms, especially low grade fevers and weight loss. These include infection with ''[[Mycobacterium avium]]-intracellulare'' and [[cytomegalovirus]] (CMV). CMV can also cause colitis, as described above, and CMV retinitis can cause blindness. [[Penicilliosis]] due to ''[[Penicillium marneffei]]'' is now the third most common opportunistic infection (after extrapulmonary tuberculosis and cryptococcosis) in HIV-positive individuals within the endemic area of Southeast Asia &lt;ref name=Skoulidis&gt;{{
39600
39601 cite journal
39602 | author=Skoulidis, F., Morgan, M. S., and MacLeod, K. M.
39603 | title=Penicillium marneffei: a pathogen on our doorstep?
39604 | journal=J. R. Soc. Med.| year=2004 | pages=394-396 | volume=97 | issue=2
39605 | id={{PMID|15286196}}
39606
39607 }}&lt;/ref&gt;.
39608
39609 ==Transmission==
39610 Since the beginning of the [[epidemic]], three main transmission routes of HIV have been identified:
39611
39612 * '''Sexual route.''' The majority of HIV infections have been, and still are, acquired through unprotected sexual relations. Sexual transmission occurs when there is contact between sexual secretions of one partner with the rectal, genital or mouth [[Mucous membrane|mucous membranes]] of another.
39613
39614 * '''Blood or blood product route.''' This transmission route is particularly important for intravenous drug users, [[Haemophilia|hemophiliac]]s and recipients of [[blood transfusion]]s and blood products. Health care workers (nurses, laboratory workers, doctors etc) are also concerned, although more rarely. Also concerned by this route are people who give and receive tattoos and piercings.
39615
39616 * '''Mother-to-child route (vertical transmission).''' The transmission of the virus from the mother to the child can occur ''in utero'' during the last weeks of pregnancy and at childbirth. Breast feeding also presents a risk of infection for the baby. In the absence of treatment, the transmission rate between the mother and child was 20%. However, where treatment is available, combined with the availability of [[Cesarian section]], this has been reduced to 1%.
39617
39618 HIV has been found in the [[saliva]], [[tears]] and [[urine]] of infected individuals, but due to the low concentration of virus in these biological liquids, the risk is considered to be negligible.
39619
39620 ==Prevention==
39621 {| class=&quot;wikitable&quot; align=right border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
39622 |- bgcolor=&quot;#efefef&quot;
39623 ! colspan=5 style=&quot;border-right:0px;&quot;;| Estimated per act risk for acquisition of HIV, &lt;br /&gt;by exposure route, assuming no condom use
39624 |- bgcolor=&quot;#efefef&quot;
39625 | '''Exposure Route'''
39626 | '''Risk per 10,000 exposures &lt;br /&gt;to an infected source'''
39627 |-
39628 | Blood Transfusion || 9,000&lt;ref name=Donegan&gt;{{
39629
39630 cite journal | author=Donegan, E., Stuart, M., Niland, J. C., Sacks, H. S., Azen, S. P., Dietrich, S. L., Faucett, C., Fletcher, M. A., Kleinman, S. H., Operskalski, E. A., et al. | title=Infection with human immunodeficiency virus type 1 (HIV-1) among recipients of antibody-positive blood donations | journal=Ann. Intern. Med. | year=1990 | pages=733-739 | volume=113 | issue=10
39631 | id={{PMID|2240875}}
39632
39633 }}&lt;/ref&gt;
39634 |-
39635 | Needle-sharing injection drug use || 67 &lt;ref name=Kaplan&gt;{{
39636
39637 cite journal | author=Kaplan, E. H. and Heimer, R. | title=HIV incidence among New Haven needle exchange participants: updated estimates from syringe tracking and testing data | journal=J. Acquir. Immune Defic. Syndr. Hum. Retrovirol. | year=1995 | pages=175-176 | volume=10 | issue=2
39638 | id={{PMID|7552482}}
39639
39640 }}&lt;/ref&gt;
39641 |-
39642 | Receptive anal intercourse || 50 &lt;ref name=ESG&gt;{{
39643
39644 cite journal | author=European Study Group on Heterosexual Transmission of HIV | title=Comparison of female to male and male to female transmission of HIV in 563 stable couples | journal=BMJ. | year=1992 | pages=809-813 | volume=304 | issue=6830 | id={{PMID|1392708}}
39645
39646 }}&lt;/ref&gt;&lt;ref name=Varghese&gt;{{
39647
39648 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39649
39650 }}&lt;/ref&gt;
39651 |-
39652 | Percutaneous needle stick || 30 &lt;ref name=Bell&gt;{{
39653
39654 cite journal | author=Bell, D. M. | title=Occupational risk of human immunodeficiency virus infection in healthcare workers: an overview. | journal=Am. J. Med. | year=1997 | pages=9-15 | volume=102 | issue=5B | id={{PMID|9845490}}
39655
39656 }}&lt;/ref&gt;
39657 |-
39658 | Receptive penile-vaginal intercourse || 10 &lt;ref name=ESG&gt;{{
39659
39660 cite journal | author=European Study Group on Heterosexual Transmission of HIV | title=Comparison of female to male and male to female transmission of HIV in 563 stable couples | journal=BMJ. | year=1992 | pages=809-813 | volume=304 | issue=6830 | id={{PMID|1392708}}
39661
39662 }}&lt;/ref&gt;&lt;ref name=Varghese&gt;{{
39663
39664 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39665
39666 }}&lt;/ref&gt;&lt;ref name=Leynaert&gt;{{
39667
39668 cite journal | author=Leynaert, B., Downs, A. M. and de Vincenzi, I. | title=Heterosexual transmission of human immunodeficiency virus: variability of infectivity throughout the course of infection. European Study Group on Heterosexual Transmission of HIV | journal=Am. J. Epidemiol. | year=1998 | pages=88-96 | volume=148 | issue=1 | id={{PMID|9663408}}
39669
39670 }}&lt;/ref&gt;
39671 |-
39672 | Insertive anal intercourse || 6.5 &lt;ref name=ESG&gt;{{
39673
39674 cite journal | author=European Study Group on Heterosexual Transmission of HIV | title=Comparison of female to male and male to female transmission of HIV in 563 stable couples | journal=BMJ. | year=1992 | pages=809-813 | volume=304 | issue=6830 | id={{PMID|1392708}}
39675
39676 }}&lt;/ref&gt;&lt;ref name=Varghese&gt;{{
39677
39678 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39679
39680 }}&lt;/ref&gt;
39681 |-
39682 | Insertive penile-vaginal intercourse || 5 &lt;ref name=ESG&gt;{{
39683
39684 cite journal | author=European Study Group on Heterosexual Transmission of HIV | title=Comparison of female to male and male to female transmission of HIV in 563 stable couples | journal=BMJ. | year=1992 | pages=809-813 | volume=304 | issue=6830 | id={{PMID|1392708}}
39685
39686 }}&lt;/ref&gt;&lt;ref name=Varghese&gt;{{
39687
39688 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39689
39690 }}&lt;/ref&gt;
39691 |-
39692 | Receptive oral intercourse || 1 &lt;ref name=Varghese&gt;{{
39693
39694 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39695
39696 }}&lt;/ref&gt;
39697 |-
39698 | Insertive oral intercourse || 0.5 &lt;ref name=Varghese&gt;{{
39699
39700 cite journal | author=Varghese, B., Maher, J. E., Peterman, T. A., Branson, B. M. and Steketee, R. W. | title=Reducing the risk of sexual HIV transmission: quantifying the per-act risk for HIV on the basis of choice of partner, sex act, and condom use | journal=Sex. Transm. Dis. | year=2002 | pages=38-43 | volume=29 | issue=1 | id={{PMID|11773877}}
39701
39702 }}&lt;/ref&gt;
39703 |}
39704 The diverse transmission routes of HIV are well-known and established. Also well-known is how to prevent transmission of HIV. However, recent epidemiological and behavioral studies in Europe and North America have suggested that a substantial minority of young people continue to engage in high-risk practices and that despite HIV/AIDS knowledge, young people underestimate their own risk of becoming infected with HIV &lt;ref name=Dias&gt;{{
39705
39706 cite journal
39707 | author=Dias, S. F., Matos, M. G. and Goncalves, A. C.
39708 | title=Preventing HIV transmission in adolescents: an analysis of the Portuguese data from the Health Behaviour School-aged Children study and focus groups
39709 | journal=Eur. J. Public Health | year=2005 | pages=300-304 | volume=15 | issue=3
39710 | id={{PMID|15941747}}
39711
39712 }}&lt;/ref&gt;. However, transmission of HIV between intravenous drug users has clearly decreased, and HIV transmission by blood transfusion has become quite rare in developed countries.
39713
39714 ===Prevention of sexual transmission of HIV===
39715 ====Underlying science====
39716 Unprotected receptive sexual acts are at more risk than unprotected insertive sexual acts, with the risk for transmitting HIV from an infected partner to an uninfected partner through unprotected insertive anal intercourse greater than the risk for transmission through vaginal intercourse or oral sex. Oral sex is not without its risks as it has been established that HIV can be transmitted through both insertive and receptive oral sex &lt;ref name=Rothenberg&gt;{{
39717
39718 cite journal | author=Rothenberg, R. B., Scarlett, M., del Rio, C., Reznik, D. and O'Daniels, C.
39719 | title=Oral transmission of HIV | journal=AIDS | year=1998 | pages=2095-2105 | volume=12 | issue=16
39720 | id={{PMID|9833850}}
39721
39722 }}&lt;/ref&gt;.
39723
39724 [[Sexually-transmitted infection]]s (STI) increase the risk of HIV transmission and infection because they cause the disruption of the normal epithelial barrier by genital ulceration and/or microulceration; and by accumulation of pools of HIV-susceptible or HIV-infected cells ([[lymphocyte]]s and [[macrophage]]s) in semen and vaginal secretions. Epidemiological studies from sub-Saharan Africa, Europe and North America have suggested that there is approximately a four times greater risk of becoming HIV-infected in the presence of a genital ulcer such as caused by [[syphilis]] and/or [[chancroid]]; and a significant though lesser increased risk in the presence of STIs such as [[gonorrhoea]], [[chlamydia]]l infection and [[trichomoniasis]] which cause local accumulations of lymphocytes and macrophages &lt;ref name=Laga&gt;{{
39725
39726 cite journal
39727 | author=Laga, M., Nzila, N., Goeman, J.
39728 | title=The interrelationship of sexually transmitted diseases and HIV infection: implications for the control of both epidemics in Africa
39729 | journal=AIDS | year=1991 | pages=S55-S63 | volume=5 | issue=Suppl 1
39730 | id={{PMID|1669925}}
39731
39732 }}&lt;/ref&gt;.
39733
39734 Transmission of HIV depends on the infectiousness of the [[index case]] and the susceptibility of the uninfected partner. Infectivity seems to vary during the course of illness and is not constant between individuals. An undetectable plasma viral load does not mean that you have a low viral load in the seminal liquid or genital secretions. Each 10 fold increment of seminal HIV RNA is associated with an 81% increased rate of HIV transmission &lt;ref name=Laga&gt;{{
39735
39736 cite journal
39737 | author=Laga, M., Nzila, N., Goeman, J.
39738 | title=The interrelationship of sexually transmitted diseases and HIV infection: implications for the control of both epidemics in Africa
39739 | journal=AIDS | year=1991 | pages=S55-S63 | volume=5 | issue=Suppl 1
39740 | id={{PMID|1669925}}
39741
39742 }}&lt;/ref&gt;&lt;ref name=Tovanabutra&gt;{{
39743
39744 cite journal
39745 | author=Tovanabutra, S., Robison, V., Wongtrakul, J., Sennum, S., Suriyanon, V., Kingkeow, D., Kawichai, S., Tanan, P., Duerr, A. and Nelson, K. E.
39746 | title=Male viral load and heterosexual transmission of HIV-1 subtype E in northern Thailand
39747 | journal=J. Acquir. Immune. Defic. Syndr. | year=2002 | pages=275-283 | volume=29 | issue=3
39748 | id={{PMID|11873077}}
39749
39750 }}&lt;/ref&gt;. Women are more susceptible to HIV-1 infection due to hormonal changes, vaginal microbial ecology and physiology, and a higher prevalence of sexually transmitted diseases &lt;ref name=Sagar&gt;{{
39751
39752 cite journal
39753 | author=Sagar, M., Lavreys, L., Baeten, J. M., Richardson, B. A., Mandaliya, K., Ndinya-Achola, J. O., Kreiss, J. K., and Overbaugh, J.
39754 | title=Identification of modifiable factors that affect the genetic diversity of the transmitted HIV-1 population
39755 | journal=AIDS | year=2004 | pages=615-619 | volume=18 | issue=4
39756 | id={{PMID|15090766}}
39757
39758 }}&lt;/ref&gt;&lt;ref name=Lavreys&gt;{{
39759
39760 cite journal
39761 | author= Lavreys, L., Baeten, J. M., Martin, H. L. Jr., Overbaugh, J., Mandaliya, K., Ndinya-Achola, J., and Kreiss, J. K.
39762 | title=Hormonal contraception and risk of HIV-1 acquisition: results of a 10-year prospective study
39763 | journal=AIDS | year=2004 | pages=695-697 | volume=18 | issue=4
39764 | id={{PMID|15090778}}
39765
39766 }}&lt;/ref&gt;. Also, people who are infected with HIV can still be infected by other, more virulent strains.
39767
39768 ====Prevention strategies====
39769 During a sexual act, only [[condom]]s, be they male or female, can reduce the chances of infection with HIV and other STIs and the chances of becoming pregnant. They must be used during all penetrative sexual intercourse with a partner who is HIV positive or whose status is unknown &lt;ref name=Cayley&gt;{{
39770
39771 cite journal
39772 | author=Cayley, W. E. Jr.
39773 | title=Effectiveness of condoms in reducing heterosexual transmission of HIV
39774 | journal=Am. Fam. Physician | year=2004 | pages=1268-1269 | volume=70 | issue=7
39775 | id={{PMID|15508535}}
39776
39777 }}&lt;/ref&gt;. The effective use of condoms and screening of blood transfusion in North America, Western and Central Europe is credited with the low rates of AIDS in these regions.
39778
39779 Promoting condom use, however, has often proved controversial and difficult. Many religious groups, most visibly the [[Roman Catholic Church]], have opposed the use of condoms on religious grounds, and have sometimes seen condom promotion as an affront to the promotion of marriage, monogamy and sexual morality. Other religious groups have argued that preventing HIV infection is a moral task in itself and that condoms are therefore acceptable or even praiseworthy from a religious point of view.
39780
39781 [[Image:ThreeColoredRolledUpCondoms.jpg|thumb|right|Condoms in many colors]]
39782 ''The male latex condom'' is the single most efficient available technology to reduce the sexual transmission of HIV and other sexually transmitted infections. In order to be effective, they must be used correctly during each sexual act. Lubricants containing oil, such as petroleum jelly, or butter, must not be used as they weaken [[latex]] condoms and make them porous. If necessary, lubricants made from water are recommended. However, it is not recommended to use a lubricant for fellatio. Also, condoms have standards and expiration dates. It is essential to check the expiration date and if it conforms to European (EC 600) or American (D3492) standards before use.
39783
39784 ''[[Condom#Female condoms|The female condom]]'' is an alternative to the male condom and is made from [[polyurethane]], which allows it to be used in the presence of oil-based lubricants. They are larger than male condoms and have a stiffened ring-shaped opening, and are designed to be inserted into the vagina. The female condom also contains an inner ring which keeps the condom in place inside the vagina - inserting the female condom requires squeezing this ring.
39785 With consistent and correct use of condoms, there is a very low risk of HIV infection. Studies on couples where one partner is infected show that with consistent condom use, HIV infection rates for the uninfected partner are below 1% per year &lt;ref name=WHOCondoms&gt;{{
39786
39787 cite web
39788 | author=[[WHO]] | publisher= | year= 2003
39789 | url=http://www.wpro.who.int/media_centre/fact_sheets/fs_200308_Condoms.htm
39790 | title=Condom Facts and Figures
39791 | accessdate=2006-01-17
39792
39793 }}&lt;/ref&gt;.
39794
39795 ====Governmental programs====
39796 The U.S. government and U.S. health organizations both endorse the '''''ABC Approach''''' to lower the risk of acquiring AIDS during sex:
39797
39798 : '''A'''bstinence or delay of sexual activity, especially for youth,
39799 : '''B'''eing faithful, especially for those in committed relationships,
39800 : '''C'''ondom use, for those who engage in risky behavior.
39801
39802 This approach has been very successful in [[Uganda]], where HIV prevalence has decreased from 15% to 5%. However, the ABC approach is far from all that Uganda has done, as &quot;''Uganda has pioneered approaches towards reducing stigma, bringing discussion of sexual behavior out into the open, involving HIV-infected people in public education, persuading individuals and couples to be tested and counseled, improving the status of women, involving religious organizations, enlisting traditional healers, and much more.''&quot; (Edward Green, [[Harvard]] medical anthropologist). Also, it must be noted that there is no conclusive proof that abstinence-only programs have been successful in any country in the world in reducing HIV transmission. This is why condom use is heavily co-promoted. There is also considerable overlap with the '''''CNN Approach'''''. This is:
39803
39804 : '''C'''ondom use, for those who engage in risky behavior.
39805 : '''N'''eedles, use clean ones
39806 : '''N'''egotiating skills; negotiating safer sex with a partner and empowering women to make smart choices
39807
39808 The '''ABC approach''' has been criticized, because a faithful partner of an unfaithful partner is at risk of AIDS &lt;ref name=EconomistABC&gt;{{
39809
39810 cite web
39811 | author=[[The Economist]] | publisher= | year=2005
39812 | url=http://www.economist.com/opinion/displayStory.cfm?story_id=4223619
39813 | title=Too much morality, too little sense
39814 | accessdate=2006-01-17
39815
39816 }}&lt;/ref&gt;. Many think that the combination of the CNN approach with the ABC approach will be the optimum prevention platform.
39817
39818 ====Circumcision====
39819 Current research is clarifying the relationship between male circumcision and HIV in differing social and cultural contexts. UNAIDS believes that it is premature to recommend male circumcision services as part of HIV prevention programmes &lt;ref name=WHOcircumcision&gt;{{
39820
39821 cite web
39822 | author=[[WHO]] | publisher= | year=2005
39823 | url=http://www.who.int/mediacentre/news/releases/2005/pr32/en/
39824 | title=UNAIDS statement on South African trial findings regarding male circumcision and HIV
39825 | accessdate=2006-01-17
39826
39827 }}&lt;/ref&gt;. Moreover, South African medical experts are concerned that the repeated use of unsterilised blades in the ritual circumcision of adolescent boys may be spreading HIV &lt;ref name=Kaisercircum&gt;{{
39828
39829 cite web
39830 | author=Various | publisher=Kaisernetwork.org | year=2005
39831 | url=http://www.kaisernetwork.org/daily_reports/rep_index.cfm?DR_ID=31199
39832 | title=Repeated Use of Unsterilized Blades in Ritual Circumcision Might Contribute to HIV Spread in S. Africa, Doctors Say
39833 | accessdate=2006-01-17
39834
39835 }}&lt;/ref&gt;.
39836
39837 ===Prevention of blood or blood product route of HIV transmission===
39838 ====Underlying science====
39839 Sharing and reusing syringes contaminated with HIV-infected blood represents a major risk for infection with not only HIV but also [[hepatitis B]] and [[hepatitis C]]. In the United States a third of all new HIV infections can be traced to needle sharing and almost 50% of long-term addicts have hepatitis C. The risk of being infected with HIV from a single prick with a needle that has been used on an HIV infected person though is thought to be about 1 in 150 ([[AIDS#Prevention|see table above]]). [[Post-exposure prophylaxis]] with anti-HIV drugs can further reduce that small risk &lt;ref name=Fan&gt;{{
39840
39841 cite book
39842 | author =Fan, H. | year = 2005
39843 | title =AIDS: science and society | chapter = | chapterurl =
39844 | editor = Fan, H., Conner, R. F. and Villarreal, L. P. eds
39845 | edition = 4th | pages =
39846 | publisher =Jones and Bartlett Publishers
39847 | location = Boston, MA
39848 | id = ISBN 076370086X
39849
39850 }}&lt;/ref&gt;. Universal precautions are frequently not followed in both sub-Saharan Africa and much of Asia because of both a shortage of supplies and inadequate training. The WHO estimates that approximately 2.5% of all HIV infections in sub-Saharan Africa are transmitted through unsafe healthcare injections &lt;ref name=WHOJapan&gt;{{
39851
39852 cite web
39853 | author=[[WHO]] | publisher= | year= 2003
39854 | url=http://64.233.179.104/search?q=cache:adH68_6JGG8J:tokyo.usembassy.gov//e/p/tp-20030317a3.html+site:tokyo.usembassy.gov+HIV+healthcare+injection&amp;hl=en&amp;gl=us&amp;ct=clnk&amp;cd=1
39855 | title=WHO, UNAIDS Reaffirm HIV as a Sexually Transmitted Disease
39856 | accessdate=2006-01-17
39857
39858 }}&lt;/ref&gt;. Because of this, the [[United Nations General Assembly]], supported by universal medical opinion on the matter, has urged the nations of the world to implement universal precautions to prevent HIV transmission in health care settings &lt;ref name=PHR&gt;{{
39859
39860 cite web
39861 | author=Physicians for Human Rights | publisher=Partners in Health | year=2003
39862 | url=http://www.phrusa.org/campaigns/aids/who_031303.html
39863 | title=HIV Transmission in the Medical Setting: A White Paper by Physicians for Human Rights | accessdate=2006-03-01
39864
39865 }}&lt;/ref&gt;&lt;ref name=UNGA&gt;{{
39866
39867 cite web
39868 | author=United Nations General Assembly | publisher= | year=2001
39869 | url=http://www.un.org/ga/aids/coverage/FinalDeclarationHIVAIDS.html
39870 | title=Declaration of Commitment on HIV/AIDS ''Global Crisis — Global Action''
39871 | accessdate=2006-03-01
39872
39873 }}&lt;/ref&gt;.
39874
39875 ====Prevention strategies====
39876 In countries where improved donor selection and antibody tests have been introduced, the risk of transmitting [[HIV]] infection to [[blood transfusion]] recipients is extremely low. But according to the [[WHO]], the overwhelming majority of the world's population does not have access to safe blood and &quot;between 5% and 10% of HIV infections worldwide are transmitted through the transfusion of infected blood and blood products&quot; &lt;ref name=WHO070401&gt;{{
39877
39878 cite web
39879 | author=[[WHO]] | publisher= | year= 2001
39880 | url=http://www.who.int/inf-pr-2000/en/pr2000-25.html
39881 | title=Blood safety....for too few
39882 | accessdate=2006-01-17
39883
39884 }}&lt;/ref&gt;.
39885
39886 Medical workers who follow [[universal precautions]] or body substance isolation such as wearing latex gloves when giving injections and washing the hands frequently can help prevent infection of HIV.
39887
39888 All AIDS-prevention organizations advise drug-users not to share needles and other material required to prepare and take drugs (including syringes, cotton balls, the spoons, water for diluting the drug, straws, crack pipes etc). It is important that people use new or properly sterilized needles for each injection. Information on cleaning needles using bleach is available from health care and addiction professionals and from [[needle exchange]]s. In the United States and some other countries, clean needles are available free in some cities, at needle exchanges or [[safe injection site]]s. Additionally, many states within the United States and some other nations have decriminalized needle possession and made it possible to buy injection equipment from pharmacists without a prescription.
39889
39890 ===Mother to child transmission===
39891 ====Underlying science====
39892 There is a 15–30% risk of transmission of HIV from mother to child during pregnancy, labour and delivery &lt;ref name=Orendi&gt;{{
39893
39894 cite journal
39895 | author=Orendi, J. M., Boer, K., van Loon, A. M., Borleffs, J. C., van Oppen, A. C., Boucher, C. A.
39896 | title=Vertical HIV-I-transmission. I. Risk and prevention in pregnancy
39897 | journal=Ned. Tijdschr. Geneeskd | year=1998 | pages=2720-2724 | volume=142 | issue=50
39898 | id={{PMID|10065235}}
39899
39900 }}&lt;/ref&gt;. In developed countries the risk can of transmission of HIV from mother to child can be as low as 0-5%. A number of factors influence the risk of infection, particularly the viral load of the mother at birth (the higher the load, the higher the risk). Breastfeeding increases the risk of transmission by 10–15%. This risk depends on clinical factors and may vary according to the pattern and duration of breastfeeding.
39901
39902 ====Prevention strategies====
39903 Studies have shown that antiretroviral drugs, cesarean delivery and formula feeding reduce the chance of transmission of HIV from mother to child &lt;ref name=Sperling&gt;{{
39904
39905 cite journal
39906 | author=Sperling, R. S., Shapirom D. E., Coombsm R. W., Todd, J. A., Herman, S. A., McSherry, G. D., O'Sullivan, M. J., Van Dyke, R. B., Jimenez, E., Rouzioux, C., Flynn, P. M. and Sullivan, J. L.
39907 | title=Maternal viral load, zidovudine treatment, and the risk of transmission of human immunodeficiency virus type 1 from mother to infant
39908 | journal=N. Engl. J. Med. | year=1996 | pages=1621-1629 | volume=335 | issue=22
39909 | id={{PMID|8965861}}
39910
39911 }}&lt;/ref&gt;. When replacement feeding is acceptable, feasible, affordable, sustainable and safe, HIV-infected mothers are recommended to avoid breast feeding their infant. Otherwise, exclusive breastfeeding is recommended during the first months of life and should be discontinued as soon as possible &lt;ref name=UNAIDS&gt;{{
39912
39913 cite web
39914 | author=[[UNAIDS]] | publisher= | year= 2005
39915 | url=http://www.unaids.org/Epi2005/doc/EPIupdate2005_pdf_en/epi-update2005_en.pdf
39916 | title=AIDS epidemic update, 2005
39917 | accessdate=2006-01-17
39918
39919 }}&lt;/ref&gt;.
39920
39921 ==Treatment==
39922 {{main|Antiretroviral drug}}
39923 {{see|HIV vaccine}}
39924 There is currently no cure for [[HIV]] or AIDS. Infection with HIV usually leads to AIDS and ultimately death. However, in western countries, most patients survive many years following diagnosis because of the availability of the highly active antiretroviral therapy ([[HAART]])&lt;ref name=Schneider&gt;{{
39925
39926 cite journal
39927 | author=Schneider, M. F., Gange, S. J., Williams, C. M., Anastos, K., Greenblatt, R. M., Kingsley, L., Detels, R., and Munoz, A.
39928 | title=Patterns of the hazard of death after AIDS through the evolution of antiretroviral therapy: 1984-2004
39929 | journal=AIDS | year=2005 | pages=2009-2018 | volume=19 | issue=17
39930 | id={{PMID|16260908}}
39931
39932 }}&lt;/ref&gt;. In the absence of HAART, progression from HIV infection to AIDS occurs at a [[median]] of between nine to ten years and the median survival time after developing AIDS is only 9.2 months&lt;ref name=Morgan2&gt;{{
39933
39934 cite journal
39935 | author=Morgan, D., Mahe, C., Mayanja, B., Okongo, J. M., Lubega, R. and Whitworth, J. A.
39936 | title=HIV-1 infection in rural Africa: is there a difference in median time to AIDS and survival compared with that in industrialized countries?
39937 | journal=AIDS | year=2002 | pages=597-632 | volume=16 | issue=4 | id={{PMID |11873003}}
39938
39939 }}&lt;/ref&gt;. HAART dramatically increases the time from diagnosis to death, and treatment research continues.
39940
39941 Current optimal HAART options consist of combinations (or &quot;cocktails&quot;) consisting of at least three drugs belonging to at least two types, or &quot;classes,&quot; of [[anti-retroviral]] agents. Typical regimens consist of two [[nucleoside analogue reverse transcriptase inhibitor]]s (NRTIs) plus either a [[protease inhibitor (pharmacology)|protease inhibitor]] or a non nucleoside reverse transcriptase inhibitor (NNRTI). This treatment is frequently referred to as [[HAART]] (highly-active anti-retroviral therapy) &lt;ref name=DhhsHivTreatment&gt;{{
39942
39943 cite web
39944 | author=[[Department of Health and Human Services]] | publisher=
39945 | year=January, 2005
39946 | url=http://www.hab.hrsa.gov/tools/HIVpocketguide05/PktGARTtables.htm
39947 | title=A Pocket Guide to Adult HIV/AIDS Treatment January 2005 edition
39948 | accessdate=2006-01-17
39949
39950 }}&lt;/ref&gt;. Anti-retroviral treatments, along with medications intended to prevent AIDS-related opportunistic infections, have played a part in delaying complications associated with AIDS, reducing the symptoms of HIV infection, and extending patients' life spans. Over the past decade the success of these treatments in prolonging and improving the quality of life for people with AIDS has improved dramatically &lt;ref name=Wood&gt;{{
39951
39952 cite journal
39953 | author=Wood, E., Hogg, R. S., Yip, B., Harrigan, P. R., O'Shaughnessy, M. V. and Montaner, J. S.
39954 | title=Is there a baseline CD4 cell count that precludes a survival response to modern antiretroviral therapy?
39955 | journal=AIDS | year=2003 | pages=711-720 | volume=17 | issue=5
39956 | id={{PMID|12646794}}
39957
39958 }}&lt;/ref&gt;&lt;ref name=Chene&gt;{{
39959
39960 cite journal
39961 | author=Chene, G., Sterne, J. A., May, M., Costagliola, D., Ledergerber, B., Phillips, A. N., Dabis, F., Lundgren, J., D'Arminio Monforte, A., de Wolf, F., Hogg, R., Reiss, P., Justice, A., Leport, C., Staszewski, S., Gill, J., Fatkenheuer, G., Egger, M. E. and the Antiretroviral Therapy Cohort Collaboration.
39962 | title=Prognostic importance of initial response in HIV-1 infected patients starting potent antiretroviral therapy: analysis of prospective studies
39963 | journal=Lancet | year=2003 | pages=679-686 | volume=362 | issue=9385
39964 | id={{PMID|12957089}}
39965
39966 }}&lt;/ref&gt;.
39967
39968 Because HIV disease progression in children is more rapid than in adults, and laboratory parameters are less predictive of risk for disease progression, particularly for young infants, treatment recommendations from the DHHS have been more aggressive in children than in adults, the current guidelines were published [[November 3]] [[2005]] &lt;ref name=2005dhhsHivChildren&gt;{{
39969
39970 cite web
39971 | author=[[Department of Health and Human Services]] Working Group on Antiretroviral Therapy and Medical Management of HIV-Infected Children
39972 | publisher= | year=[[November 3]], [[2005]]
39973 | url=http://www.aidsinfo.nih.gov/ContentFiles/PediatricGuidelines_PDA.pdf
39974 | title=Guidelines for the Use of Antiretroviral Agents in Pediatric HIV Infection
39975 | accessdate=2006-01-17
39976
39977 }}&lt;/ref&gt;.
39978
39979 The DHHS also recommends that doctors should assess the viral load, rapidity in CD4 decline, and patient readiness while deciding when to recommend initiating treatment &lt;ref name=2005DhhsHivTreatment&gt;{{
39980
39981 cite web
39982 | author=[[Department of Health and Human Services]] Panel on Clinical Practices for Treatment of HIV Infection
39983 | publisher= | year=[[October 6]], [[2005]]
39984 | url=http://aidsinfo.nih.gov/ContentFiles/AdultandAdolescentGL.pdf
39985 | title=Guidelines for the Use of Antiretroviral Agents in HIV-1-Infected Adults and Adolescents
39986 | accessdate=2006-01-17
39987
39988 }}&lt;/ref&gt;.
39989
39990 There are several concerns about antiretroviral regimens. The drugs can have serious side effects&lt;ref name=Saitoh&gt;{{
39991
39992 cite journal
39993 | author=Saitoh, A., Hull, A. D., Franklin, P. and Spector, S. A.
39994 | title=Myelomeningocele in an infant with intrauterine exposure to efavirenz
39995 | journal=J. Perinatol. | year=2005 | pages=555-556 | volume=25 | issue=8
39996 | id={{PMID|16047034}}
39997
39998 }}&lt;/ref&gt;. Regimens can be complicated, requiring patients to take several pills at various times during the day, although treatment regimens have been greatly simplified in recent years. If patients miss doses, drug resistance can develop &lt;ref name=Dybul&gt;{{
39999
40000 cite journal
40001 | author=Dybul, M., Fauci, A. S., Bartlett, J. G., Kaplan, J. E., Pau, A. K.; Panel on Clinical Practices for Treatment of HIV.
40002 | title=Guidelines for using antiretroviral agents among HIV-infected adults and adolescents
40003 | journal=Ann. Intern. Med. | year=2002 | pages=381-433 | volume=137 | issue=5 Pt 2
40004 | id={{PMID|12617573}}
40005
40006 }}&lt;/ref&gt;. Also, anti-retroviral drugs are costly, and the majority of the world's infected individuals do not have access to medications and treatments for HIV and AIDS.
40007
40008 Research to improve current treatments includes decreasing side effects of current drugs, further simplifying drug regimens to improve adherence, and determining the best sequence of regimens to manage drug resistance.
40009
40010 A number of studies have shown that measures to prevent opportunistic infections can be beneficial when treating patients with HIV infection or AIDS. Vaccination against hepatitis A and B is advised for patients who are not infected with these viruses and are at risk of getting infected. In addition, AIDS patients should receive vaccination against [[Streptococcus pneumoniae]] and should receive yearly vaccination against [[influenza virus]]. Patients with substantial immunosuppression are generally advised to receive prophylactic therapy for [[Pneumocystis jiroveci pneumonia]] (PCP), and many patients may benefit from prophylactic therapy for [[toxoplasmosis]] and [[Cryptococcus]] meningitis.
40011
40012 ===Alternative medicine===
40013 Ever since AIDS entered the public consciousness, various forms of [[alternative medicine]] have been used to try to treat symptoms or to try to affect the course of the disease itself. In the first decade of the epidemic when no useful conventional treatment was available, a large number of people with AIDS experimented with [[alternative medicine|alternative therapies]]. The definition of &quot;alternative therapies&quot; in AIDS has changed since that time. During that time, the phrase often referred to community-driven treatments, not being tested by government or pharmaceutical company research, that some hoped would directly suppress the virus or stimulate immunity against it. These kinds of approaches have become less common over time as AIDS drugs have become more effective.
40014
40015 The phrase then and now also refers to other approaches that people hoped would improve their symptoms or their quality of life--for instance, massage, herbal and flower remedies and [[acupuncture]]; when used with conventional treatment, many now refer to these as &quot;complementary&quot; approaches. None of these treatments have been proven in controlled trials to have any effect in treating HIV or AIDS directly. However, some may improve feelings of well-being in people who believe in their value. Additionally, people with AIDS, like people with other illnesses such as [[cancer]], also sometimes use [[marijuana]] to treat pain, combat nausea and stimulate appetite.
40016
40017 ==Epidemiology==
40018 {{main|AIDS pandemic}}
40019 [[Image:Africa HIV-AIDS 300px.png|300px|thumb|right|Map of Africa coloured according to the percentage of the Adult (ages 15-49) population with HIV/AIDS.]]
40020 [[UNAIDS]] and the WHO estimate that AIDS has killed more than 25 million people since it was first recognized in 1981, making it one of the most destructive epidemics in recorded history. Despite recent, improved access to antiretroviral treatment and care in many regions of the world, the AIDS epidemic claimed an estimated 3.1 million (between 2.8 and 3.6 million) lives in 2005 of which more than half a million (570,000) were children &lt;ref name=UNAIDS&gt;{{
40021
40022 cite web
40023 | author=[[UNAIDS]] | publisher= | year= 2005
40024 | url=http://www.unaids.org/Epi2005/doc/EPIupdate2005_pdf_en/epi-update2005_en.pdf
40025 | title=AIDS epidemic update, 2005
40026 | accessdate=2006-01-17
40027
40028 }}&lt;/ref&gt;.
40029
40030 Globally, between 36.7 and 45.3 million people are currently living with HIV &lt;ref name=UNAIDS&gt;{{
40031
40032 cite web
40033 | author=[[UNAIDS]] | publisher= | year= 2005
40034 | url=http://www.unaids.org/Epi2005/doc/EPIupdate2005_pdf_en/epi-update2005_en.pdf
40035 | title=AIDS epidemic update, 2005
40036 | accessdate=2006-01-17
40037
40038 }}&lt;/ref&gt;. In 2005, between 4.3 and 6.6 million people were newly infected and between 2.8 and 3.6 million people with AIDS died, an increase from 2004 and the highest number since 1981.
40039
40040 [[AIDS pandemic#Sub-Saharan Africa|Sub-Saharan Africa]] remains by far the worst-affected region, with an estimated 23.8 to 28.9 million people currently living with HIV. More than 60% of all people living with HIV are in sub-Saharan Africa, as are more than three quarters (76%) of all women living with HIV &lt;ref name=UNAIDS&gt;{{
40041
40042 cite web
40043 | author=[[UNAIDS]] | publisher= | year= 2005
40044 | url=http://www.unaids.org/Epi2005/doc/EPIupdate2005_pdf_en/epi-update2005_en.pdf
40045 | title=AIDS epidemic update, 2005
40046 | accessdate=2006-01-17
40047
40048 }}&lt;/ref&gt;. [[AIDS pandemic#South and South-East Asia|South &amp;amp; South East Asia]] are second most affected with 15%. AIDS accounts for the deaths of 500,000 children.
40049
40050 The latest evaluation report of the World Bank's Operations Evaluation Department assesses the development effectiveness of the World Bank's country-level HIV/AIDS assistance defined as policy dialogue, analytic work, and lending with the explicit objective of reducing the scope or impact of the AIDS epidemic &lt;ref name=Worldbank&gt;{{
40051
40052 cite web
40053 | author=[[World Bank]] | publisher= | year=2005
40054 | url=http://www.worldbank.org/oed/aids/main_report.html
40055 | title=Evaluating the World Bank's Assistance for Fighting the HIV/AIDS Epidemic
40056 | accessdate=2006-01-17
40057
40058 }}&lt;/ref&gt;. This is the first comprehensive evaluation of the World Bank's HIV/AIDS support to countries, from the beginning of the epidemic through mid-2004. Because the Bank's assistance is for implementation of government programs by government, it provides important insights on how national AIDS programs can be made more effective.
40059
40060 The development of [[HAART]] as effective therapy for HIV infection and AIDS has substantially reduced the death rate from this disease in those areas where it is widely available. This has created the misperception that the disease has gone away. In fact, as the life expectancy of persons with AIDS has increased in countries where HAART is widely used, the number of persons living with AIDS has increased substantially. In the United States, for example, the number of persons with AIDS increased from about 35,000 in 1988 to over 220,000 in 1996 &lt;ref name=CDC1996&gt;{{
40061
40062 cite journal |
40063 author=[[CDC]] |
40064 title=U.S. HIV and AIDS cases reported through December 1996 |
40065 journal=HIV/AIDS Surveillance Report | year=1996 | pages=1-40 | volume=8 | issue=2 | url=http://www.cdc.gov/hiv/stats/hivsur82.pdf
40066
40067 }}&lt;/ref&gt;.
40068
40069 ==Origin of HIV/AIDS==
40070 {{main|AIDS origin}}
40071 The official date for the beginning of the AIDS epidemic is marked as [[June 18]], [[1981]], when the U.S. [[Centers for Disease Control and Prevention|Center for Disease Control]] and Prevention reported a cluster of [[Pneumocystis jiroveci pneumonia|''Pneumocystis carinii'' pneumonia]] (now classified as Pneumocystis jiroveci pneumonia) in five gay men in [[Los Angeles]] &lt;ref name=MMWR2&gt;{{
40072
40073 cite web
40074 | author=[[CDC]] | publisher=CDC | year=1981
40075 | url=http://www.cdc.gov/mmwr/preview/mmwrhtml/june_5.htm
40076 | title=Pneumocystis Pneumonia --- Los Angeles
40077 | accessdate=2006-01-17
40078
40079 }}&lt;/ref&gt;. Originally dubbed GRID, or Gay-Related [[Immunodeficiency|Immune Deficiency]], health authorities soon realized that nearly half of the people identified with the syndrome were not gay. In 1982, the CDC introduced the term AIDS to describe the newly recognized syndrome.
40080
40081 Three of the earliest known instances of HIV infection are as follows:
40082 #A plasma sample taken in 1959 from an adult male living in what is now the Democratic Republic of Congo &lt;ref name=Zhu&gt;{{
40083
40084 cite journal
40085 | author=Zhu, T., Korber, B. T., Nahmias, A. J., Hooper, E., Sharp, P. M. and Ho, D. D. | title=An African HIV-1 Sequence from 1959 and Implications for the Origin of the Epidemic
40086 | journal=Nature | year=1998 | pages=594-597 | volume=391 | issue=6667
40087 | id={{PMID|9468138}}
40088
40089 }}&lt;/ref&gt;.
40090 #HIV found in tissue samples from an American teenager who died in St. Louis in 1969.
40091 #HIV found in tissue samples from a Norwegian sailor who died around 1976.
40092
40093 Two species of HIV infect humans: HIV-1 and HIV-2. HIV-1 is more virulent and more easily transmitted. HIV-1 is the source of the majority of HIV infections throughout the world, while HIV-2 is less easily transmitted and is largely confined to [[West Africa]] &lt;ref name=Reeves&gt;{{
40094
40095 cite journal
40096 | author=Reeves, J. D. and Doms, R. W
40097 | title=Human Immunodeficiency Virus Type 2
40098 | journal=J. Gen. Virol. | year=2002 | pages=1253-1265 | volume=83 | issue=Pt 6
40099 | id={{PMID|12029140}}
40100
40101 }}&lt;/ref&gt;. Both HIV-1 and HIV-2 are of primate origin. The origin of HIV-1 is the [[Common Chimpanzee|Central Common Chimpanzee]] (''Pan troglodytes troglodytes''). The origin of HIV-2 has been established to be the [[Sooty Mangabey]] (''Cercocebus atys''), an Old World monkey of Guinea Bissau, Gabon, and Cameroon.
40102
40103 One currently controversial possibility for the origin of HIV/AIDS was discussed in a [[1992]] Rolling Stone magazine article by freelance journalist Tom Curtis. He put forward the theory that AIDS was inadvertantly caused in the late 1950's in the [[Belgian Congo]] by [[Hilary Koprowski]]'s research into a [[polio]] [[vaccine]] &lt;ref name=Curtis&gt;{{
40104
40105 cite journal |
40106 author=Curtis, T. |
40107 title=The origin of AIDS|
40108 journal=Rolling Stone | year=1992 | pages=54-59, 61, 106, 108 | volume= | issue=626 | url=http://www.uow.edu.au/arts/sts/bmartin/dissent/documents/AIDS/Curtis92.html
40109
40110 }}&lt;/ref&gt;. Although subsequently retracted due to [[libel]] issues surrounding its claims, the Rolling Stone article motivated another freelance journalist, [[Edward Hooper]], to probe more deeply into this subject. Hooper's research resulted in his publishing a 1999 book, [[The River]], in which he alleged that an experimental oral [[polio]] [[vaccine]] prepared using [[chimpanzee]] kidney tissue was the route through which [[SIV]] crossed into humans to become HIV, thus starting the
40111 human AIDS pandemic&lt;ref name=Hooper&gt;{{
40112
40113 cite book
40114 | author = Hooper, E.
40115 | year = 1999
40116 | title = The River : A Journey to the Source of HIV and AIDS
40117 | edition = 1st
40118 | pages = 1-1070
40119 | publisher = Little Brown &amp; Co
40120 | location = Boston, MA
40121 | id = ISBN 0316372617
40122
40123 }}&lt;/ref&gt;.
40124
40125 {{details|OPV AIDS hypothesis}}
40126
40127 ==Alternative theories==
40128 {{main|AIDS reappraisal}}
40129 A minority of scientists and activists question the connection between HIV and AIDS &lt;ref name=Duesberg&gt;{{
40130
40131 cite journal
40132 | author=Duesberg, P. H.
40133 | title=HIV is not the cause of AIDS
40134 | journal=Science | year=1988 | pages=514, 517 | volume=241 | issue=4865
40135 | id={{PMID |3399880}}
40136
40137 }}&lt;/ref&gt;, or the existence of HIV &lt;ref name=Papadopulos&gt;{{
40138
40139 cite journal
40140 | author=Papadopulos-Eleopulos, E., Turner, V. F., Papadimitriou, J., Page, B., Causer, D., Alfonso, H., Mhlongo, S., Miller, T., Maniotis, A. and Fiala, C.
40141 | title=A critique of the Montagnier evidence for the HIV/AIDS hypothesis
40142 | journal=Med Hypotheses | year=2004 | pages=597-601 | volume=63 | issue=4
40143 | id={{PMID |15325002}}
40144
40145 }}&lt;/ref&gt;, or the validity of current testing methods. These claims are met with resistance by, and often evoke frustration and hostility from, most of the scientific community, who accuse the dissidents of ignoring evidence in favor of HIV's role in AIDS, and irresponsibly posing a dangerous threat to [[public health]] by their continued activities &lt;ref name=Cohen&gt;{{
40146
40147 cite journal
40148 | author=Cohen, J.
40149 | title=The Duesberg phenomenon
40150 | journal=Science | year=1994 | pages=1642-1644 | volume=266 | issue=5191
40151 | id={{PMID |7992043}}
40152 | url=http://www.sciencemag.org/feature/data/cohen/266-5191-1642a.pdf
40153
40154 }}&lt;/ref&gt;. Dissidents assert that the current mainstream approach to AIDS, based on HIV causation, has resulted in inaccurate diagnoses, psychological terror, toxic treatments, and a squandering of public funds. The debate and controversy regarding this issue from the early 1980s to the present has provoked heated emotions and passions from both sides.
40155
40156 ==References==
40157 &lt;div style=&quot;font-size:85%&quot;&gt;
40158 &lt;references/&gt;
40159 &lt;/div&gt;
40160
40161 ==External links==
40162 * [http://www.unaids.org/en/default.asp UNAIDS] The Joint United Nations Programme on HIV/AIDS
40163 * [http://www.eldis.org/hivaids/ Eldis HIV and AIDS] - latest research and other resources on HIV and AIDS in developing countries
40164 * [http://www.iasociety.org/ International AIDS Society] - the world's leading independent association of HIV/AIDS professionals
40165 * [http://www.aegis.org/ AEGiS.org] AIDS Education Global Information System
40166 * [http://www.worldaidsday.org/ World AIDS Day] World AIDS Day [[1 December]] - Show your support
40167 * [http://www.worldbank.org/oed/aids AIDS Assistance] Evaluating the World Bank's Assistance for Fighting the HIV/AIDS Epidemic
40168 * [http://www.aids.org/ AIDS.ORG]: Comprehensive HIV/AIDS Information
40169 * AIDSinfo 2002 [http://aidsinfo.nih.gov/Glossary/GlossaryDefaultCenterPage.aspx?MenuItem=AIDSinfoTools The Glossary of HIV/AIDS-Related Terms 4th Edition]
40170 * [http://www.aidsmeds.com AIDSmeds.com]: Comprehensive lessons on HIV/AIDS and their treatments
40171 * US Center for Disease Control (2005) [http://www.cdc.gov/hiv/dhap.htm Divisions of HIV/AIDS Prevention]
40172 * [http://fightaidsathome.scripps.edu/index.html FightAIDS@Home] Distributed computing project against AIDS
40173 * Health Action AIDS (2003) [http://www.phrusa.org/campaigns/aids/who_031303.html HIV Transmission in the Medical Setting]
40174 * NIAID/NIH 2003 [http://www.niaid.nih.gov/daids/vaccine/basicinfo.htm Basic Information About AIDS and HIV]
40175 * NIAID/NIH 2003 [http://www.niaid.nih.gov/factsheets/evidhiv.htm Evidence That HIV causes AIDS]
40176 * NIAID/NIH 2004 [http://www.niaid.nih.gov/factsheets/howhiv.htm How HIV Causes AIDS]
40177 * NIH 2001 [http://history.nih.gov/NIHInOwnWords/index.html History of AIDS Research in the NIH]
40178 * The Body 2005 [http://www.thebody.com/index.shtml The Body: The Complete HIV/AIDS Resource]
40179 * Origin of Aids Video [http://www.documentary-film.net/search/video-listings.php?e=5 Watch Free online : Origin of Aids Video]
40180 * Journal Watch 2005 [http://aids-clinical-care.jwatch.org/ AIDS Clinical Care]
40181 * UNAIDS Scenarios to 2025 [http://www.unaids.org/NetTools/Misc/DocInfo.aspx?LANG=en&amp;amp;href=http%3a%2f%2fgva-doc-owl%2fWEBcontent%2fDocuments%2fpub%2fPublications%2fIRC-pub06%2fAIDS-scenarios-2025_report_en%26%2346%3bhtm Document regarding three scenarios for HIV/AIDS in Africa for the year 2025 (Large PDF file)]
40182 * AIDS dissident websites [http://www.reviewingaids.com/awiki/index.php/List_of_dissident_websites AIDS Wiki's comprehensive list of dissident websites]
40183 * The Body's list of resources criticizing the &quot;AIDS reappraisal&quot; movement [http://www.thebody.com/whatis/cause.html The Body: AIDS Denialism]
40184 * Gestalt Therapy and AIDS [http://ourworld.compuserve.com/homepages/gik_gestalt/rosenblatt.html Treatment Issues with AIDS Patients (1993)]
40185 * Documentation on the oral polio vaccine (OPV) theory of AIDS origin [http://www.aidsorigins.com/ AIDSOrigin.com]
40186
40187 ==AIDS News==
40188 {{wikinews|UN/WHO making progress in treating HIV/AIDS, but will miss 2005 target}}
40189 * Nov 2005 - Progress in HIV vaccine research -[http://www.isracast.com/transcripts/011205a_trans.htm - Recorded interview with Prof. Robert Gallo (HIV discoverer)]
40190
40191 {{AIDS}}
40192
40193 [[Category:HIV/AIDS]]
40194 [[Category:Immune system disorders]]
40195 [[Category:Infectious diseases]]
40196 [[Category:Pandemics]]
40197 [[Category:Sexually-transmitted diseases]]
40198 [[Category:Virology]]
40199
40200 {{Link FA|fr}}
40201 {{Link FA|he}}
40202 {{Link FA|vi}}
40203
40204 [[af:VIGS]]
40205 [[als:AIDS]]
40206 [[ar:Ų…ØĒŲ„Ø§Ø˛Ų…ØŠ Ų†Ų‚Øĩ اŲ„Ų…Ų†Ø§ØšØŠ اŲ„Ų…ŲƒØĒØŗب]]
40207 [[bg:СПИН]]
40208 [[bm:Sida]]
40209 [[be:СНІД]]
40210 [[bs:Sida]]
40211 [[ca:SIDA]]
40212 [[cs:AIDS]]
40213 [[da:Aids]]
40214 [[de:Aids]]
40215 [[es:SIDA]]
40216 [[eo:Aidoso]]
40217 [[eu:HIES]]
40218 [[fa:Ø§ÛŒØ¯Ø˛]]
40219 [[fr:Syndrome d'immunodÊficience acquise]]
40220 [[ko:ė—ė´ėĻˆ]]
40221 [[hi:ā¤ā¤ĄāĨā¤¸]]
40222 [[hr:SIDA]]
40223 [[he:איידס]]
40224 [[sw:Ukimwi]]
40225 [[ku:AIDS]]
40226 [[lv:AIDS]]
40227 [[lt:AIDS]]
40228 [[ln:Sida]]
40229 [[hu:AIDS]]
40230 [[ms:AIDS]]
40231 [[nl:Aids]]
40232 [[ja:垌夊性免į–Ģ不全į—‡å€™įž¤]]
40233 [[no:AIDS]]
40234 [[nn:HIV/AIDS]]
40235 [[pl:ZespÃŗł nabytego niedoboru odporności]]
40236 [[ps:Ø§ÛÚ‰Ø˛]]
40237 [[pt:Síndrome da imuno-deficiÃĒncia adquirida]]
40238 [[qu:SIDA]]
40239 [[ru:СПИД]]
40240 [[simple:AIDS]]
40241 [[sk:AIDS]]
40242 [[sl:AIDS]]
40243 [[sr:СИДА]]
40244 [[fi:AIDS]]
40245 [[sv:Aids]]
40246 [[ta:āŽŽāŽ¯ā¯āŽŸā¯āŽ¸ā¯]]
40247 [[tt:AÄ°DS]]
40248 [[th:āš€ā¸­ā¸”ā¸ĒāšŒ]]
40249 [[vi:AIDS]]
40250 [[tr:AIDS]]
40251 [[uk:СНІД]]
40252 [[zh:艾æģ‹į—…]]</text>
40253 </revision>
40254 </page>
40255 <page>
40256 <title>ABBA</title>
40257 <id>880</id>
40258 <revision>
40259 <id>42058359</id>
40260 <timestamp>2006-03-03T14:46:11Z</timestamp>
40261 <contributor>
40262 <ip>205.251.103.38</ip>
40263 </contributor>
40264 <comment>/* Trivia */</comment>
40265 <text xml:space="preserve">{{Infobox_band |
40266 band_name = ABBA|
40267 image = [[Image:ABBApromotional.jpg]] |
40268 caption = ''Clockwise from top: Andersson, Ulvaeus, Lyngstad, Fältskog'' |
40269 origin = [[Stockholm]], [[Sweden]] |
40270 status = |
40271 years_active = 1972-1982|
40272 music_genre = [[Rock (music)|Rock]]&lt;br /&gt; [[Europop]]&lt;br /&gt;[[Pop music|Pop]]&lt;br /&gt;[[Disco]] |
40273 record_label = [[Polar Music]]&lt;br /&gt;[[Atlantic Records]]&lt;br /&gt;[[Epic Records]]&lt;br /&gt;[[Universal Music]]&lt;br /&gt;[[Polydor Records]] |
40274 current_members = |
40275 past_members = [[Benny Andersson]]&lt;br /&gt;[[Agnetha Fältskog]]&lt;br /&gt;[[Anni-Frid Lyngstad|Anni-Frid &quot;Frida&quot; Lyngstad]]&lt;br /&gt;[[BjÃļrn Ulvaeus]] |
40276 }}
40277
40278 '''ABBA''' ([[1972]]–[[1983]]) was a [[Sweden|Swedish]] [[pop music]] group. They remain the most successful Swedish music act and were one of the most popular groups in the world. The group dominated charts worldwide during the mid-to-late 1970s and early 1980s, selling many [[ABBA discography|hit singles and albums]]. Estimates of ABBA's total worldwide sales vary from 300 to 400 million (there seems to be no reliable source for this information) which could make them the second most successful band of all time after [[The Beatles]]. They were the first act from the European mainland to become a regular fixture in [[UK Singles Chart|British]], [[Hot 100 Singles Sales|American]] and [[ARIA Charts|Australian]] charts, and their success subsequently opened the doors for many other European acts. Their lasting legacy is the legitimising of the Swedish music industry as a mainstream player.
40279
40280 ABBA was formed around [[1972]] with [[BjÃļrn Ulvaeus]], [[Benny Andersson]], [[Agnetha Fältskog]], and [[Anni-Frid Lyngstad]] (nicknamed &quot;Frida&quot;). They became widely known after winning the [[1974]] [[Eurovision Song Contest]] with &quot;[[Waterloo (English version)|Waterloo]]&quot;. The group consisted of two couples, BjÃļrn and Agnetha along with Benny and Frida. ABBA collectively decided to take a break at the beginning of [[1983]]. They have yet to record together again in the studio.
40281
40282 ''ABBA'' is an [[acronym]] formed from the first letters of each group member's name. It is usually written '''ABBA''' but is sometimes written as a word, '''Abba'''. The first ''B'' in the [[logo]] version of the name was reversed on the band's promotional material from [[1976]] onwards.
40283
40284 ==History==
40285 ===Before ABBA===
40286 Benny Andersson was a member of the Swedish rock / pop band [[Hep Stars]] who were very popular in Sweden during the 1960s. The band was modeled after various US and UK groups such as [[Herman's Hermits]], [[The Who]] and [[The Rolling Stones]]. The Hep Stars had a huge following, especially among teenage girls. Meanwhile BjÃļrn Ulvaeus was fronting a [[skiffle]] group called the [[Hootenanny Singers]] whose sound was softer and more easy-listening than the Hep Stars. The singers crossed paths sometimes and they decided to write songs together. One of these, &quot;Isn't It Easy To Say,&quot; became a hit for the Hep Stars and BjÃļrn sometimes guested with the band on tour. It was even suggested that the two bands merge but this never happened. [[Stikkan Anderson|Stig Anderson]], manager of the Hootenanny Singers and founder of [[Polar Music]], saw more potential in Benny and BjÃļrn working together and encouraged them to write more songs and create an album which was eventually called ''Lycka'' (&quot;Happiness&quot;) when released on the Polar label.
40287
40288 Agnetha Fältskog was ABBA's youngest member and a pop phenomenon in her own right who wrote and performed Swedish hits while in her teens and had also played [[Mary Magdalene]] in the Swedish production of ''[[Jesus Christ Superstar]]''. Agnetha was noted by critics and songwriters as an accomplished composer but she considered it hard work, writing and performing light pop songs in the [[Schlager]] style, recording [[cover version|covers]] of hit songs and touring Swedish [[folkpark]]s, the main &quot;live circuit&quot; at that time. Inevitably she bumped into the Hootenanny Singers on their folkpark tours, meeting and eventually falling in love with BjÃļrn. Their marriage in [[1971]] was the Swedish celebrity wedding of the year and drew much publicity.
40289
40290 Housewife Anni-Frid &quot;Frida&quot; Lyngstad was a part-time cabaret singer who decided to enter a talent competition and won. Sweden was [[Dagen H|changing over]] from driving on the left side of the road to the right and a series of spectacular shows was being aired to encourage people to stay off the roads on the night of the switchover. Invited to appear on TV that evening with her winning song, Frida's musical career took off. She met Benny Andersson on the wonted folkpark tour. They became lovers and Benny invited Anni-Frid to sing backing vocals with Agnetha on the ''Lycka'' album. The two women were uncredited for this work.
40291
40292 ===Early years===
40293 [[Image:People_Need_Love_small.jpg|frame|right|The cover of &quot;People Need Love,&quot; the first single released by the group.]]
40294
40295 By the early 1970s, although BjÃļrn and Agnetha were married, they pursued their own separate musical careers. However Stig was ambitious and determined to break into the mainstream international market, not something that Swedish acts were usually known for, though previously achieved by Swedish instrumental guitar group [[The Spotnicks]] (their best known hit was &quot;Orange Blossom Special&quot;). As a result he encouraged BjÃļrn and Benny to write a song for the [[1972]] [[Eurovision Song Contest]] and it was performed by Lena Anderson. &quot;Say It With a Song&quot; won third in the contest selection rounds but was a huge hit in several countries, convincing Stig he was on the right track.
40296
40297 BjÃļrn and Benny persevered with their songwriting and experimented with new sounds and vocal arrangements which brought some success in [[Japan]]. One of the songs they came up with was &quot;[[People Need Love]],&quot; featuring guest vocals by the girls who were now given much greater prominence than previously. Everyone involved felt enthusiastic about the new sound and Stig released it as a single, credited to ''BjÃļrn &amp; Benny, Agnetha &amp; Anni-Frid''. The record reached number 17 in the Swedish charts, enough to convince them they were on to something.
40298
40299
40300 [[Image:Ringring1973sleeve.jpg|left|thumb|200px|The cover of the [[1973]] version of the album ''[[Ring Ring (album)|Ring Ring]]''.]]
40301
40302 The following year they decided to have another crack at Eurovision, this time with the song &quot;[[Ring Ring (English version)|Ring Ring]].&quot; The studio work was handled by [[Michael B. Tretow]] who experimented with a [[Phil Spector]]-like &quot;[[wall of sound]]&quot; production technique that became the wholly new ABBA sound. Stig arranged an English translation of the lyrics by [[Neil Sedaka]] and [[Phil Cody]] and they thought this would be a sure-fire winner. Yet again, it came in third. Nevertheless the proto-group put out an album called ''[[Ring Ring (album)|Ring Ring]]'', still carrying the awkward naming of ''BjÃļrn, Benny, Agnetha &amp; Frida''. The album did well and the &quot;Ring Ring&quot; single was a hit in many parts of Europe but Stig felt the true breakthrough could only come with a UK or US hit.
40303
40304 Around this time Stig, having tired of the unwieldy names, started to refer to the group privately and publicly as ''ABBA''. This was done as a joke at first, since Abba was also the name of a well-known fish-canning company in Sweden. However, since the fish canners were more or less unknown outside Sweden, Stig came to believe the name would work in international markets and so it stuck. Later the group negotiated with the canners for the right to use the name.
40305
40306 ===Eurovision and after===
40307 [[Image:Waterloo Watch Out.jpg|right|thumb|200px|&quot;[[Waterloo (English version)|Waterloo]]&quot; ([[1974]])]]
40308 [[Image:Mammamiasingle.jpg|right|thumb|200px|&quot;[[Mamma Mia]]&quot; ([[1975]])]]
40309 They tried [[Eurovision Song Contest|Eurovision]] again in [[1974]], now inspired by the growing [[glam rock]] scene in the [[United Kingdom|UK]] and tracks like [[Wizzard]]'s &quot;See My Baby Jive&quot;. &quot;Waterloo&quot; was an unashamedly glam-style pop track produced with Michael B. Tretow's wall of sound approach. Now far more experienced, they were better prepared for the contest and had an album's worth of material released when the show was held in [[Brighton, England]]. The song won hands down and catapulted them into British consciousness for the first time. Now they had a catchy name, ABBA, and people could buy the whole album (''Waterloo'') straightaway.
40310
40311 &quot;[[Waterloo (English version)|Waterloo]]&quot; was ABBA's first UK No. 1. It was also released in the [[United States|US]], reaching No. 6. But momentum proved hard to maintain, and their follow-up singles &quot;So Long&quot; and &quot;Honey Honey&quot; did not do nearly as well. The group was overstretched and unable to promote the songs convincingly in any one country. Moreover, much of their material was still heavily derivative. It wasn't until the release of their second proper album ''[[ABBA (album)|ABBA]]'' and their single &quot;[[SOS (song)|SOS]]&quot; that ABBA began to show the first signs they were destined for bigger things. &quot;SOS&quot; consolidated ABBA's presence in the UK where it was a Top 10 hit and they were no longer regarded as a [[one-hit wonder]].
40312
40313 Much wider success came in [[1975]] with every release charting solidly and &quot;[[Mamma Mia (song)|Mamma Mia]]&quot; reaching the UK No. 1 spot in January [[1976]].
40314
40315 At this time the band released the somewhat hubristically titled ''[[Greatest Hits (ABBA album)|Greatest Hits]]'' album despite having had only five Top 40 hits in the UK and the US. This album included &quot;[[Fernando (single)|Fernando]]&quot; (an earlier version had been a Swedish-language hit single for Anni-Frid and included on her 1975 Benny-produced solo LP ''[[Frida Ensam]]''). Becoming one of ABBA's best-known tracks, &quot;Fernando&quot; did not appear on the Swedish or Australian releases of ''Greatest Hits''. In Sweden the song would wait until 1982's ''The Singles-The First Ten Years'' to appear in an English-language version credited to ABBA; the track was later included in the Australian release of their [[1976]] album, ''[[Arrival (ABBA_album)|Arrival]]''.
40316
40317 The next album, ''Arrival'', represented a new level of accomplishment in both songwriting and studio work for ABBA. Hit after hit flowed from it: &quot;[[Money, Money, Money]]&quot;, &quot;[[Knowing Me, Knowing You (single)|Knowing Me, Knowing You]]&quot; and &quot;[[Dancing Queen (single)|Dancing Queen]]&quot;, their most enduring and definitive hit. By this time ABBA were widely popular in the UK, most of Western Europe and [[Australia]] (who in a way almost &quot;adopted&quot; ABBA as their own) but still had only moderate recognition and airplay in the US, and &quot;Dancing Queen&quot; remains the only No. 1 ABBA ever achieved there.
40318
40319 [[Image:abbamovieposter.jpg|thumb|right|Movie poster for ''[[ABBA: The Movie]]'' and ''[[The Album]]'' carried the same artwork.]]
40320 By this time the ABBA sound was synonymous with European pop and was widely copied by groups like [[Brotherhood of Man]] and later, [[Bucks Fizz (band)|Bucks Fizz]]. Some felt it was necessary to copy ABBA's sound and two girl/two boy approach to win Eurovision, and the notion seemed validated when Brotherhood of Man won in 1976 and Bucks Fizz took the prize in [[1981]].
40321
40322 Meanwhile in [[1977]] ABBA followed up ''Arrival'' with the more complex ''[[The Album]]'' which was released to coincide with ''[[ABBA: The Movie]]'', a feature film of their Australian tour. This album was less well-received by the critics but spawned several hits, &quot;[[The Name of the Game]]&quot; and &quot;[[Take A Chance On Me|Take a Chance on Me]]&quot;, both of which topped the UK charts. This album also carried the well-known &quot;Thank You for the Music&quot; that later was released in the UK as a single ([[1983]]) and had been a B-side of &quot;Eagle&quot; in territories where that song was released as a single.
40323
40324 ===Later years===
40325 By [[1978]] ABBA was a megagroup. They converted a disused cinema into the Polar Music Studio, a new state-of-the-art studio in [[Stockholm]] which was used by several other successful bands ([[Led Zeppelin]]'s ''[[In Through the Out Door]]'' was recorded there, for example).
40326
40327 Their standalone single &quot;[[Summer Night City]]&quot;, their last Swedish number one, stopped just short of topping the UK charts but set the stage for ABBA's foray into [[disco]] with the album ''[[Voulez-Vous]]'', which was released in Spring [[1979]]. This release marked a slight decline in ABBA's popularity in the UK and Europe but gained them more attention in the US. The hits still came: &quot;[[Chiquitita]]&quot;, &quot;[[Does Your Mother Know]]&quot;, &quot;[[Voulez-Vous (song)|Voulez-Vous]]&quot; and &quot;[[I Have A Dream (ABBA song)|I Have A Dream]]&quot; all charted. In January 1979, the group performed at the [[Music for UNICEF Concert]] at the [[United Nations General Assembly]], performing &quot;[[Chiquitita]]&quot;; the [[royalties]] from the song were donated to [[UNICEF]].
40328
40329 Later that year, the group released their second greatest hits album, Greatest Hits Vol 2, which featured a brand new track &quot;[[Gimme! Gimme! Gimme! (A Man After Midnight)]]&quot;, their best known [[disco]] hit.
40330
40331 In [[1979]] ABBA toured the US and Canada, playing to huge audiences, but the breakthrough there was perhaps too little, too late.
40332
40333 [[1980]]'s ''[[Super Trouper]]'' reflected a change in ABBA's style with more prominent [[synthesiser]]s and more personal lyrics. It set a record for the most preorders ever received for a UK album after 1 million copies were ordered before release. Anticipation for the release had been built up by &quot;[[The Winner Takes It All]]&quot;, the group's eighth UK chart topper (their first since [[1978]]). This song was allegedly written about Bjorn and Agnetha's marriage, which was breaking down at the time. The next single from the album, &quot;[[Super Trouper (song)|Super Trouper]]&quot; also hit number 1. &quot;[[Lay All Your Love On Me]]&quot; was an album track that was released in 1981 as a 12-inch single only in limited territories, and, along with Super Trouper, managed to top the American club and dance chart. A Spanish language compilation album was also recorded at this time - 'Gracias Por La Musica', which was released in Latin America and sold very well.
40334
40335 ''[[The Visitors]]'' ([[1981]]), their final studio album, showed a songwriting maturity and depth of feeling distinctly lacking from their earlier recordings but still placed the band squarely in the pop genre, with catchy tunes and harmonies. ''The Visitors''&lt;nowiki&gt;'&lt;/nowiki&gt; title track refers to secret meetings held against the approval of Communist governments in Soviet satellite states and other tracks address topics like aging, loss of innocence, a parent watching her child grow up and so on. Their melodies were still catchy but their change of style was reflected by the start of a commercial decline after their final great pop single &quot;[[One Of Us (ABBA song)|One Of Us]]&quot; which was a worldwide hit in December 1981.
40336
40337 Although by this time regarded as a group in decline, ABBA still drew huge audiences, particularly in continental Europe and might have gone on indefinitely if it were not for the band's personal turmoils: the two married couples were both divorced by this point. Songs like &quot;The Winner Takes It All&quot; and &quot;One Of Us&quot; gave glimpses of personal issues ABBA's members were facing.
40338
40339 In summer 1982, the group gathered to record a new album. In the end they settled for a double album compilation of all their past successes with two new songs. The double album ''[[The Singles: The First Ten Years]]'' topped the UK album chart and was a worldwide bestseller. The new tracks were &quot;[[Under Attack]]&quot; and &quot;[[The Day Before You Came]]&quot;, which was the last song ABBA ever recorded together. Two other songs were recorded during 1982, &quot;I Am The City&quot; and &quot;Just Like That&quot;. While both were completed, only &quot;I Am The City&quot; was released on the compilation album ''More ABBA Gold'' in 1993. Despite numerous efforts from fans, BjÃļrn Ulvaeus and Benny Andersson are still refusing to release &quot;[[Just Like That (ABBA song)|Just Like That]]&quot; in its entirety.
40340
40341 The group gradually drifted apart as they began pursuing different projects. Benny and BjÃļrn collaborated with [[Tim Rice]] to write the musical ''[[Chess (musical)|Chess]]'', while Agnetha and Frida worked on solo albums.
40342
40343 ==After ABBA==
40344 BjÃļrn and Benny wrote the music for the [[West End]] show ''[[Chess (musical)|Chess]]'' ([[1984]]) with lyricist [[Tim Rice]]. ''Chess'' ran for three years in London. The show also opened on [[Broadway theatre|Broadway]] in the US ([[1988]]) but the song order, lyrics and storyline had been altered compared with the London version, and was less successful; the show closed within weeks. &quot;Chess&quot; is best known today for producing the international hit &quot;[[One Night in Bangkok]]&quot;, sung by [[Murray Head]].
40345
40346 BjÃļrn and Benny, inspired by the successes of Rice and his former collaborator [[Andrew Lloyd-Webber]], had long expressed their desire to write a musical. Their first attempt had been a &quot;mini-musical&quot;, ''The Girl with The Golden Hair'', performed by the group during their 1977 tour of Europe and Australia. Excerpts were included in ''ABBA - The Movie'' and ''ABBA - The Album''. BjÃļrn and Benny followed ''Chess'' with ''[[Kristina frÃĨn DuvemÃĨla]]'' ([[1995]]), directed for the stage by [[Lars Rudolfsson]] and based on the ''Emigrants'' [[tetralogy]] by Swedish novelist [[Vilhelm Moberg]]. ''[[Mamma Mia!]]'', a musical built around ABBA's songs, had its London premiere in [[1999]]. In 2003, their first musical was given new life in a Swedish-language version, ''Chess PÃĨ Svenska''.
40347
40348 After being largely forgotten throughout most of the 1980s, ABBA experienced a resurgence. The attention was often ironic, along the lines of &quot;they were so [[wikt:naff|naff]] they were good,&quot; yet others recognised that while ABBA was often panned by critics and sneered at by [[punk rock|punk]] and [[New Wave music|New Wave]] musicians they were masters of their art, the three minute pop song. [[1992]] saw a huge revival of interest in ABBA, with the release of their [[ABBA Gold: Greatest Hits]] compilation album selling massively worldwide and setting chart longevity records. The revival was further validated by the [[1994]] film &quot;[[Muriel's Wedding]]&quot;, a popular Australian film starring an ABBA-loving protaganist. BjÃļrn and Benny were finally recognised in [[2001]] with an [[Ivor Novello|Ivor Novello Award]] for their songwriting. Many former punk and New Wave artistes later admitted to levels of fondness and respect for ABBA they were unwilling to own up to in their early years.
40349
40350 During the 1990s many ABBA tracks were rediscovered and covered by other artists, such as [[Erasure]], [[Ash (band)|Ash]] and the [[A*Teens]], among others. The avant-garde band [[Blancmange (band)|Blancmange]] had also covered ''The Day Before You Came'' in the mid-1980s, one of the first bands to cover an ABBA track.
40351
40352 On [[April 6]]th 2004 three former ABBA members (BjÃļrn, Benny and Frida) showed up together in London for the 30th anniversary of their Eurovision Song Contest win in 1974, appearing on stage after the fifth anniversary performance of ''Mamma Mia!''. In a November 2004 interview with the German magazine ''[[Bunte]]'' BjÃļrn said a reunion would not satisfy ABBA's many fans, even though there are legions of them around the world often clamouring for one. In February 2005 all four members of ABBA appeared together in public for the first time since 1986 at the gala opening of ''Mamma Mia!'' in Stockholm.
40353
40354 On [[October 22]] 2005, during the celebration show for the 50th anniversary of the Eurovision Song Contest held in [[Copenhagen]], [[Denmark]], ''Waterloo'' was [http://news.bbc.co.uk/1/hi/entertainment/music/4366574.stm voted the best] Eurovision song in the history of the contest.
40355
40356 ===Post-ABBA solo careers===
40357
40358 Both female members of ABBA have had some success with solo careers following the break-up of the band.
40359
40360 In [[1982]], Frida released her [[Phil Collins]]-produced album ''[[Something's Going On]]'' This album included the hit single &quot;I Know There's Something Going On&quot;. Agnetha followed in [[1983]] with the album ''Wrap Your Arms Around Me''. This album included the hit single ''The Heat Is On'' (a cover of the [[Noosha Fox]] recording) which was a big hit all over Europe and Scandinavia that year. In the US Agnetha scored a Billboard top 30 hit with ''Can't Shake Loose''. Her album sold over 1.2 million copies worldwide. Frida retired after her second solo album ''Shine'' flopped. Agnetha fared better with her second post-ABBA solo album ''Eyes of a Woman''. The album was number two in the Swedish charts and did reasonably well in Europe.
40361
40362 After ''I Stand Alone'' in [[1987]] Agnetha withdrew from public life and refused to give interviews. In [[1996]] she released her [[autobiography]] called ''As I Am'' and also released a compilation that featured her solo hits. In [[2004]] she released a disc of cover songs called &quot;My Colouring Book&quot; which debuted at number one in Sweden and number six in Germany. The album peaked just outside of the British top ten (number 11) and the single ''If I Thought You'd Ever Change Your Mind'' reached number 9 in the UK singles chart. The album went triple-platinum in Sweden (300,000 copies), gold in Finland and silver in Great Britain.
40363
40364 Frida released ''Shine'' (produced by [[Steve Lillywhite]]) in [[1984 in music|1984]] but it was not until 1996 that she released her last album to date, the Swedish-language ''Djupa Andetag'' which was a number one album in Sweden (selling 90,000 copies) but unknown internationally. In September 2004 Frida recorded a song called &quot;The Sun Will Shine Again&quot; with former [[Deep Purple]] member [[Jon Lord]] for his latest album, making some rare appearances on German television.
40365
40366 ==Fashion and videos==
40367 &lt;!-- Unsourced image removed: [[Image:abba2.jpg|thumb|180px|left|Members of ABBA embodied the height of disco glamour in the 70s.]] --&gt;
40368 ABBA was widely noted as an epitome of 1970s fashion for the colourful costumes its members wore. The videos which accompanied some of their biggest hits are often cited as being among the earliest examples of the genre. Though The Beatles and the Rolling Stones had shot the occasional video clip, making promotional videos still hadn't become the industry standard by the early-to-mid 1970s. Most of ABBA's videos (and ''ABBA - The Movie'') were directed by [[Lasse HallstrÃļm]] who would later direct the films ''[[My Life as a Dog]]'', ''[[The Cider House Rules]]'' and ''[[Chocolat (movie)|Chocolat]]''.
40369
40370 ABBA made videos because their songs were hits in so many different countries and personal appearances weren't always possible. This was also an effort to minimise travelling, particularly to countries that would have required extremely long flights. Agnetha and BjÃļrn had two young children, and Agnetha, who was also [[Fear of flying|afraid of flying]], was very reluctant to leave her children for such a long time. ABBA's manager Stig Anderson realised the potential of showing a simple video clip on television to publicise a single or album, thereby allowing easier and quicker exposure than a concert tour. Some of these videos became classics because of the 1970s era costumes and early video effects, such as the grouping of the band members in different combinations of pairs, overlapping one girl's profile with the other's full face, and the contrasting of one member against another.
40371 Nowadays, most of their videos can be seen on the DVDs ''ABBA Gold'' and ''The Definitive Collection''.
40372
40373 [[Image:Ringringstill.jpg|thumb|right|200px|A still from ABBA's music video, or promo clip, &quot;Ring Ring.&quot;]]
40374 Several ABBA videos were spoofed by others: The video &quot;Knowing Me, Knowing You&quot; was satirised on the [[British Broadcasting Corporation|BBC]] [[comedy]] show ''[[Not the Nine O'Clock News]]'' as &quot;Super Dooper.&quot; The title ''[[Knowing Me, Knowing You]]'' was also borrowed for a spoof chat show on BBC starring [[Steve Coogan]] as [[Alan Partridge]] who always entered the studio shouting &quot;Aha!&quot; (an exclamation in the lyrics). UK comedy duo [[French and Saunders]] parodied ABBA with their song &quot;C'est La Vie&quot;, an homage to &quot;The Winner Takes it All.&quot; [[Erasure]] paid homage to the ABBA video style with their video for &quot;[[Take a Chance on Me]].&quot;
40375
40376 ==Trivia==
40377 *Songwriters Benny and Bj&amp;ouml;rn were unable to [[Musical_notation|notate music]] on paper. Only Agnetha could (as revealed in a [[Dick Cavett]] interview with the group).
40378
40379 *Abba have been spoofed by many TV shows, including ''[[French &amp; Saunders]]'', ''[[Not The Nine O'Clock News]]'' and ''[[Fast Forward]]''. In addition, the character of &quot;[[Alan Partridge]]&quot; is noted as being a huge ABBA fan, especially on his television show &quot;[[Knowing Me, Knowing You with Alan Partridge]]&quot; where all the hosts and all guests were introduced with different ABBA songs.
40380
40381 *At the height of their success ABBA was Sweden's biggest export, exceeding even [[Volvo]] cars.
40382
40383 *While selling their music into Russia during the late 1970s ABBA were paid in oil commodities because of an [[embargo]] on the [[rouble]].
40384
40385 *The song ''Chiquitita'' was first performed at the [[Music for UNICEF Concert]] in [[1979]]. ABBA's performance at the concert was, however, [[lip-synching|lip-synched]]. All royalties from the song were donated to the children's charity [[United Nations Children's Fund|UNICEF]] in perpetuity.
40386
40387 *In [[1981]], ABBA sponsored the [[ATS]] [[Formula One]] racing team, for whom [[Slim Borgudd]], a former drummer who appeared on some ABBA recordings, was a driver.
40388
40389 *The hit song &quot;Bring Me Edelweiss&quot; ([[1989]]) by [[Edelweiss (band)|Edelweiss]] features the tune and some lyrics from &quot;S.O.S&quot;. This caused some controversy between Bjorn &amp; Benny, and manager Stig - Stig had granted approval to use the song without consulting the others.
40390
40391 *The sound track of the successful Australian film ''[[Muriel's Wedding]]'' ([[1994]]) prominently featured ABBA songs: The two female leads [[lip sync]] &quot;Waterloo&quot; and the wedding scene is scored to an orchestral rendition of &quot;Dancing Queen&quot;. The movie also features &quot;Mamma Mia&quot;, &quot;Fernando&quot; and &quot;I Do, I Do, I Do, I Do, I Do&quot;.
40392
40393 *Another 1994 Australian fillm ''[[The Adventures of Priscilla, Queen of the Desert]]'' features a performance of ''Mamma Mia!'' by two [[drag queen|drag queens]], furthering ABBA's status as a [[gay icon]].
40394
40395 *The ABBA [[tribute band]] [[Bj&amp;ouml;rn Again]] became so successful that as of 2004 there were five casts of Bj&amp;ouml;rn Again performing in various parts of the world. The original Bj&amp;ouml;rn Again had been touring for 15 years, longer than the original group.
40396
40397 *[[techno music|Techno]] and [[house music|house]] remakes of many original ABBA hits were released under the name [[Abbacadabra]].
40398
40399 *''[[Mamma Mia!]]'' was nominated for a Broadway [[Tony Award]] as Best Musical in [[2002]].
40400
40401 *In [[2000]] ABBA were reported to have turned down an offer of approximately one billion dollars (US) to do a reunion tour.
40402
40403 *In 2005 ABBA's 1976 hit single &quot;Fernando&quot; still held the record for the most weeks spent at number one in Australia (along with The Beatles' &quot;Hey Jude&quot;). [http://www.onmc.iinet.net.au/top/1976.htm]
40404
40405 *In addition to being an [[acronym]], the name &quot;ABBA&quot; is also a [[palindrome]]. In 1975, ABBA's &quot;SOS&quot; became the first song with a palindromic title recorded by a group with a palindromic name to hit the pop charts.
40406
40407 *ABBA was inducted into the [[Vocal Group Hall of Fame]] in [[2002]].
40408
40409 *In the film ''[[Johnny English]]'', the title character ([[Rowan Atkinson]]) is discretely characterized as an ABBA fan. He sings &quot;Thank You for The Music&quot;, and lip-syncs to &quot;Does Your Mother Know&quot; in front of a mirror.
40410
40411 * [[The Fugees]] sampled [[ABBA]] (as well as [[Crystal Gayle]]) for their contribution to the [[1996]] &quot;[[When We Were Kings]]&quot; soundtrack, &quot;Rumble in the Jungle&quot;
40412
40413 *[[Madonna (entertainer)|Madonna]] sampled the group's &quot;[[Gimme! Gimme! Gimme! (A Man After Midnight)]]&quot; in her [[2005]] single &quot;[[Hung Up]]&quot;.
40414
40415 ==See also==
40416 *[[ABBA discography]] - ABBA's discography and chart positions for UK, USA, Germany and Netherlands.
40417 *[[ABBA unreleased songs|List of ABBA Unreleased songs]]
40418 *[[Music of Sweden]]
40419 *[[List of Swedes in music]]
40420 *[[Best selling music artists]] - World's top selling music artists chart.
40421 *[[List of number-one hits (United States)]]
40422 *[[List of artists who reached number one on the Hot 100 (U.S.)]]
40423 *[[List of Number 1 Dance Hits (United States)]]
40424 *[[List of artists who reached number one on the U.S. Dance chart]]
40425 *[[List of Number 1 singles (UK)]]
40426 *[[UK Best selling singles artists of all time]]
40427 *[[List of artists who reached number one in Ireland]]
40428 *[[List of artists who have covered ABBA songs]]
40429 *[[List of artists who reached number one on the Australian singles chart]]
40430 *[[List of songs with particularly long titles]]
40431
40432 ==External links==
40433 *[http://www.abba4therecord.com/ abba4therecord.com] - ABBA Discography.
40434 *[http://www.abba-thesingles.com/ abba-thesingles.com] - ABBA Singles Discography.
40435 *[http://www.abbasite.com/start/ ABBA - The Site] - Official site. This site is owned and maintained by &quot;[[Universal Music]] AB&quot; in Sweden.
40436 *[http://www.abba-world.net// ABBA World] - Complete song list, website links reviewed and categorised, selected discography, bibliography, concert information, and much more.
40437 *[http://www.abbaplaza.com/ ABBAPlaza.Com] - ABBA fan site in English and in Dutch.
40438 *[http://www.icethesite.com/ icethesite.com] - ABBA and the musicals CHESS, Kristina and more...
40439 *[http://www.vocalhalloffame.com/abba3.htm VocalHallOffame.Com] - &quot;Vocal Group Hall of Fame&quot; page on ABBA.
40440 *[http://www.abba-story.com ABBA-Story.Com] - Site about ABBA.
40441 *[http://www.photofeatures.com/abba/index.html Photo archive of ABBA by Rock Photographer Chris Walter.]
40442 *[http://66.235.213.139/~abbagall/index.html Collection of ABBA's pictures]
40443 *[http://www.abbamail.com/ ABBAmail.Com] ABBA-related site.
40444 *[http://www.lyrics-explorer.com/lyrics/artists/a/abba/ ABBA Lyrics Page] Song lyrics collection.
40445 *[http://www.codehot.co.uk/lyrics/abcd/abba/abba.htm Code Hot UK - ABBA Lyrics] Popular ABBA song lyrics.
40446 *[http://www.mabba.fw.hu/ The Hungarian ABBA site] lyrics, pictures, extras etc.
40447
40448 {{start box}}
40449 {{succession box |
40450 before=[[Anne-Marie David]] |
40451 title=[[Eurovision Song Contest|Winner of the Eurovision Song Contest]] |
40452 years=[[1974]] |
40453 after=[[Teach-In]]
40454 }}
40455 {{end box}}
40456
40457 [[Category:ABBA]]
40458 [[Category:Popular musical groups]]
40459 [[Category:Swedish musical groups|ABBA]]
40460 [[Category:Disco musicians|ABBA]]
40461 [[Category:Eurovision winners]]
40462 [[Category:Melodifestivalen|ABBA]]
40463
40464 [[af:ABBA]]
40465 [[ar:Øĸبا]]
40466 [[bg:АББА]]
40467 [[zh-min-nan:ABBA]]
40468 [[ca:ABBA]]
40469 [[cs:ABBA]]
40470 [[da:ABBA]]
40471 [[de:ABBA]]
40472 [[et:ABBA]]
40473 [[es:ABBA]]
40474 [[eo:ABBA]]
40475 [[fo:ABBA]]
40476 [[fr:ABBA]]
40477 [[hr:ABBA]]
40478 [[is:ABBA]]
40479 [[it:ABBA]]
40480 [[he:אבבא]]
40481 [[lt:ABBA]]
40482 [[hu:ABBA]]
40483 [[nl:ABBA]]
40484 [[ja:ABBA]]
40485 [[no:ABBA]]
40486 [[nn:ABBA]]
40487 [[pl:ABBA]]
40488 [[pt:ABBA]]
40489 [[ru:ABBA]]
40490 [[simple:ABBA]]
40491 [[sk:ABBA]]
40492 [[sl:ABBA]]
40493 [[fi:ABBA]]
40494 [[sv:ABBA]]
40495 [[tr:ABBA]]
40496 [[zh:ABBA]]</text>
40497 </revision>
40498 </page>
40499 <page>
40500 <title>Allegiance</title>
40501 <id>881</id>
40502 <revision>
40503 <id>42009066</id>
40504 <timestamp>2006-03-03T04:47:50Z</timestamp>
40505 <contributor>
40506 <username>Antandrus</username>
40507 <id>57658</id>
40508 </contributor>
40509 <minor />
40510 <comment>Reverted edits by [[Special:Contributions/220.94.125.128|220.94.125.128]] ([[User talk:220.94.125.128|talk]]) to last version by Ncox</comment>
40511 <text xml:space="preserve">{{Otheruses}}
40512
40513 '''Allegiance''' is the duty which a subject or a [[citizen]] owes to the [[state (law)|state]] or to the [[Monarch|sovereign]] of the state to which he belongs.
40514
40515 ==Origin of the word==
40516
40517 Mid. English ''ligeaunce''; med. Latin ''ligeantia''; the al- was probably added through confusion with another legal term, ''allegeance'', an ''allegation''; the [[French language|French]] ''allegeance'' comes from the English; the word is formed from &quot;liege,&quot; of which the derivation is given under that heading; the connection with [[Latin]] ''ligare'', to bind, is erroneous.
40518
40519 ==Usage==
40520
40521 The term ''allegiance'' is often used by English legal commentators in a larger sense, divided by them into natural and local, the latter applying to the deference which even a foreigner must pay to the institutions of the country in which he happens to live; but it is in its proper sense, in which it indicates national character and the subjection due to that character, that the word is important.
40522
40523 In that sense it represents the [[feudal]] [[liege homage]], which could be due only to one lord, while simple [[homage]] might be due to every lord under whom the person in question held land.
40524
40525 ==United Kingdom==
40526
40527 The English doctrine, which was at one time adopted in the [[United States]], asserted that allegiance was indelible: &quot;Nemo potest exuere patriam&quot;. Accordingly, as the law stood before [[1870]], every person who by birth or [[naturalization]] satisfied the conditions set forth, though he should be removed in infancy to another country where his family resided, owed an allegiance to the British crown which he could never resign or lose, except by act of parliament or by the recognition of the independence or the cession of the portion of British territory in which he resided.
40528
40529 Allegiance is the tie which binds the subject to the [[Sovereign]] in return for that protection which the Sovereign affords the subject. It was the mutual bond and obligation between the King or Queen and his or her subjects, whereby subjects are called his liege subjects, because they are bound to obey and serve him; and he is called their [[liege]] lord, because he should maintain and defend them (''Ex parte Anderson'' (1861) 3 El &amp; El 487; 121 ER 525; ''China Navigation Co v Attorney-General'' (1932) 48 TLR 375; ''Attorney-General v Nissan'' [1969] 1 All ER 629; ''Oppenheimer v Cattermole'' [1972] 3 All ER 1106). The duty of the Crown towards its subjects is to govern and protect. The reciprocal duty of the subject towards the Crown is that of allegiance.
40530
40531 At common law allegiance is a true and faithful obedience of the subject due to his Sovereign. As the subject owes to his king his true and faithful allegiance and obedience, so the Sovereign is to govern and protect his subjects, ''regere et protegere subdititos suos'', so as between the Sovereign and subject there is:
40532
40533 *''duplex et reciprocum ligamen; quia sicut subditus regi tenetur ad obedientiam, ita rex subdito tenetur ad protectionem; merito igitur ligeantia dicitur a ligando, quia continet in se duplex ligamen'' (''Calvin's Case'' (1608) 7 Co Rep 1a; Jenk 306; 2 State Tr 559; 77 ER 377).
40534
40535 Natural allegiance and obedience is an incident inseparable to every subject, for as soon as he or she is born they owe, by birthright, allegiance and obedience to their Sovereign (''Ex parte Anderson'' (1861) 3 El &amp; El 487; 121 ER 525). A natural-born subject owes allegiance wherever he or she may be. Where territory is occupied in the course of hostilities by an enemy's force, even if the annexation of the occupied country is proclaimed by the enemy, there can be no change of allegiance during the progress of hostilities on the part of a citizen of the occupied country (''R v Vermaak'' (1900) 21 NLR 204 (South Africa)).
40536
40537 Allegiance is owed both to the Sovereign as a natural person and to the Sovereign in his or her political capacity (''Re Stepney Election Petition, Isaacson v Durant'' (1886) 17 QBD 54 (per Lord Coleridge CJ)). Attachment to the person of the reigning Sovereign is not sufficient. Loyalty requires affection also to the office of the Sovereign, attachment to royalty, attachment to the law and to the constitution of the realm, and he who would, by force or by fraud, endeavour to prostrate that law and constitution, though he may retain his affection for its head, can boast but an imperfect and spurious species of loyalty (''R v O'Connell'' (1844) 7 ILR 261).
40538
40539 There were four kinds of allegiances (''Rittson v Stordy'' (1855) 3 Sm &amp; G 230; ''De Geer v Stone'' (1882) 22 Ch D 243; ''Isaacson v Durant'' (1886) 54 LT 684; ''Gibson, Gavin v Gibson'' [1913] 3 KB 379; ''Joyce v DPP'' [1946] AC 347; ''Collingwood v Pace'' (1661) O Bridg 410; ''Lane v Bennett'' (1836) 1 M &amp; W 70; ''Lyons Corp v East India Co'' (1836) 1 Moo PCC 175; ''Birtwhistle v Vardill'' (1840) 7 Cl &amp; Fin 895; ''R v Lopez, R v Sattler'' (1858) Dears &amp; B 525; Ex p Brown (1864) 5 B &amp; S 280);
40540
40541 (a) ''Ligeantia naturalis, absoluta, pura et indefinita'', and this originally is due by nature and birthright, and is called ''alta ligeantia'', and those that owe this are called ''subditus natus'';
40542 (b) ''Ligeantia acquisita'', not by nature but by acquisition or denization, being called a denizen, or rather denizon, because he or she is ''subditus datus'';
40543
40544 (c) ''Ligeantia localis'', by operation of law, when a friendly alien enters the country, because so long as he or she is in the country they are within the Sovereign's protection, therefore they owe the Sovereign a local obedience or allegiance (''R v Cowle'' (1759) 2 Burr 834; ''Low v Routledge'' (1865) 1 Ch App 42; ''Re Johnson, Roberts v Attorney-General'' [1903] 1 Ch 821; ''Tingley v Muller'' [1917] 2 Ch 144; ''Rodriguez v Speyer'' [1919] AC 59; ''Johnstone v Pedlar'' [1921] 2 AC 262; ''R v Tucker'' (1694) Show Parl Cas 186; ''R v Keyn'' (1876) 2 Ex D 63; ''Re Stepney Election Petn, Isaacson v Durant'' (1886) 17 QBD 54);
40545
40546 (d) A legal obedience, where a particular law requires the taking of an oath of allegiance by subject or alien alike.
40547
40548 Natural allegiance was acquired by birth within the Sovereign's dominions (except for the issue of diplomats or of invading forces or of an alien in enemy occupied territory). The natural allegiance and obedience is an incident inseparable to every subject, for as soon as he or she is born they owe by birthright allegiance and obedience to the Sovereign (''Ex p. Anderson'' (1861) 3 E &amp; E 487). A natural-born subject owes allegiance wherever they may be, so that where territory is occupied in the course of hostilities by an enemy's force, even if the annexation of the occupied country is proclaimed by the enemy, there can be no change of allegiance during the progress of hostilities on the part of a citizen of the occupied country (''R v Vermaak'' (1900) 21 NLR 204 (South Africa)).
40549
40550 Acquired allegiance was acquired by naturalisation or denization. Denization, or ''ligeantia acquisita'', appears to be three-fold (''Thomas v Sorrel'' (1673) 3 Keb 143);
40551
40552 *(a) absolute, as the common denization, without any limitation or restraint;
40553 *(b) limited, as when the Sovereign grants letters of denization to an alien, and to the heirs males of his or her body, or to an alien for term of his or her life;
40554 *(c) It may be granted upon condition, ''cujus est dare, ejus est disponere'', and this denization of an alien may come about three ways: by Parliament; by letters patent, which was the usual manner; and by conquest.
40555
40556 Local allegiance was due by an alien while in the protection of the Crown. All friendly resident aliens incurred all the obligations of subjects (''The Angelique'' (1801) 3 Ch Rob App 7). An alien, coming into a colony also became, temporarily a subject of the Crown, and acquired rights both within and beyond the colony, and these latter rights could not be affected by the laws of that colony (''Routledge v Low'' (1868) LR 3 HL 100; 37 LJ Ch 454; 18 LT 874; 16 WR 1081, HL; ''Reid v Maxwell'' (1886) 2 TLR 790; ''Falcon v Famous Players Film Co'' [1926] 2 KB 474).
40557
40558 A resident alien owed allegiance even when the protection of the Crown was withdrawn owing to the occupation of an enemy, because the absence of the Crown's protection was temporary and involuntary (''de Jager v Attorney-Geneneral of Natal'' [1907] AC 326).
40559
40560 Legal allegiance was due when an alien took an oath of allegiance required for a particular office under the Crown.
40561
40562 By the [[Naturalization Act 1870]], it was made possible for British subjects to renounce their nationality and allegiance, and the ways in which that nationality is lost are defined. So British subjects voluntarily naturalized in a foreign state are deemed aliens from the time of such naturalization, unless, in the case of persons naturalized before the passing of the act, they have declared their desire to remain British subjects within two years from the passing of the act. Persons who from having been born within British territory are British subjects, but who at birth became under the law of any foreign state subjects of such state, and also persons who though born abroad are British subjects by reason of parentage, may by declarations of alienage get rid of British nationality. [[Emigration]] to an uncivilized country leaves British nationality unaffected: indeed the right claimed by all states to follow with their authority their subjects so emigrating is one of the usual and recognized means of [[colonial]] expansion.
40563
40564 ==United States==
40565
40566 The doctrine that no man can cast off his native allegiance without the consent of his sovereign was early abandoned in the United States, and on [[July 27]], [[1868]], the day before the [[Fourteenth Amendment to the United States Constitution|Fourteenth Amendment]] was adopted, [[Congress of the United States|U.S. Congress]] declared in the preamble of the [[Expatriation Act]] that &quot;the right of expatriation is a natural and inherent right of all people, indispensable to the enjoyment of the rights of life, liberty and the pursuit of happiness,&quot; and (Section I) one of &quot;the fundamental principles of this government&quot; ([[United States Revised Statutes]], sec. 1999). Every citizen of a foreign state in America owes a double allegiance, one to it and one to the United States. He may be guilty of treason against one or both. If the demands of these two sovereigns upon his duty of allegiance come into conflict, those of the United States have the paramount authority in American law.
40567
40568 ==Oath of allegiance==
40569 ''Main article: [[oath of allegiance]]''
40570
40571 The oath of allegiance is an [[oath]] of fidelity to the sovereign taken by all persons holding important public office and as a condition of naturalization. By ancient common law it might be required of all persons above the age of twelve, and it was repeatedly used as a test for the disaffected. In [[England]] it was first imposed by statute in the reign of [[Elizabeth I of England]] ([[1558]]) and its form has more than once been altered since. Up to the time of the revolution the promise was, &quot;to be true and faithful to the king and his heirs, and truth and faith to bear of life and limb and terrene [[honour]], and not to know or hear of any ill or damage intended him without defending him
40572 therefrom.&quot; This was thought to favour the doctrine of absolute non-resistance, and accordingly the convention parliament enacted the form that has been in use since that time - &quot;I do sincerely promise and swear that I will be faithful and bear true allegiance to His Majesty ...&quot;
40573
40574 ==See also==
40575 * [[Pledge of Allegiance]]
40576
40577 ==References==
40578 * The original initial text was from the public domain [[Gutenberg Encyclopedia]]. Please update as needed
40579 * See also Salmond on &quot;Citizenship and Allegiance,&quot; in the ''Law Quarterly Review'' (July 1901, January 1902).
40580
40581 ----
40582
40583 '''Allegiance''' is also a [[computer game]] by [[Microsoft Research]].
40584 ''See:'' [[Allegiance (computer game)]]
40585
40586 '''Allegiance''' is also an episode of [[Star Trek: The Next Generation]].
40587 ''See:'' [[Allegiance (TNG episode)]]
40588 [[de:Loyalität]]
40589 [[es:lealtad]]
40590
40591 [[Category:Nationalism]]</text>
40592 </revision>
40593 </page>
40594 <page>
40595 <title>Absolute majority</title>
40596 <id>882</id>
40597 <revision>
40598 <id>24233840</id>
40599 <timestamp>2005-09-28T14:12:46Z</timestamp>
40600 <contributor>
40601 <username>KnightRider</username>
40602 <id>430793</id>
40603 </contributor>
40604 <minor />
40605 <comment>warnfile Adding: es</comment>
40606 <text xml:space="preserve">'''Absolute majority''' is a [[supermajority|supermajoritarian]] [[voting]] requirement which is stricter than a [[simple majority]]. It means that more than half of ''all'' the members of a group, including those absent and those present but not voting, must [[vote]] in favour of a proposition in order for that proposition to be passed.
40607
40608 As an example, let's say that a member of a club of 100 members proposes a new [[bylaw]]. According to the club's practice, for the bylaw to pass, it requires an absolute majority. The results of the vote are 40 yes votes and 30 no votes. The rest of the voters either abstained or did not vote. Even though this arrangement is a [[simple majority]], since an absolute majority for the club is 51 members, the proposed bylaw fails.
40609
40610 Absolute majority voting is most often used to pass changes to constitutions or to [[bylaw]]s in order to ensure that there is affirmative support for a proposal. Most voting decisions require a [[simple majority]] or even just a [[plurality]].
40611
40612 ==Examples of absolute majority voting==
40613 From 2005, an absolute majority of the electorate in addition to a three-fourths vote of the [[legislature]] is necessary to pass amendments to the [[Constitution of the Republic of China]] on [[Taiwan]] as well as to ratify a [[referendum]]. The requirement of an absolute majority rather than a simple majority effectively gives both major political blocs the power to veto a referendum or constitutional amendment.
40614
40615 In the [[politics of the European Union]], any decision taken using the [[codecision procedure]] requires an absolute majority in [[European Parliament]] in order to amend a text in its second reading. (At first reading, only a [[simple majority]] is required.)
40616
40617 ==See also==
40618 * [[List of democracy and elections-related topics]]
40619 [[Category:Elections]]
40620 [[Category:Voting theory]]
40621
40622 [[es:Mayoría absoluta]]</text>
40623 </revision>
40624 </page>
40625 <page>
40626 <title>Afrika Islam</title>
40627 <id>883</id>
40628 <revision>
40629 <id>40280861</id>
40630 <timestamp>2006-02-19T13:49:59Z</timestamp>
40631 <contributor>
40632 <username>Urthogie</username>
40633 <id>106482</id>
40634 </contributor>
40635 <minor />
40636 <comment>minor</comment>
40637 <text xml:space="preserve">'''Afrika Islam''', born '''Charles Glenn''', and known also as the '''Son of [[Afrika Bambaataa|Bambaataa]],''' is a [[hip hop production|hip-hop producer]]. He left [[New York]] for [[Los Angeles]] and went on to co-produce most of [[Ice T]]'s early albums, namely ''[[Rhyme Pays]]'' and ''Power''; the latter is deemed to be Ice's finest effort by some aficionados. In the late [[1990s]], Afrika Islam joined German [[techno music|techno]] icon [[Westbam]] to form [[Mr. X and Mr. Y]], a techno duo that made commercial techno with [[Electro (music)|Electro]] influences. &quot;Back to Berlin&quot; quotes from the Old School rap classic &quot;New York New York&quot; by [[Grandmaster Flash]].
40638
40639 [[Category:Hip hop producers|Islam, Afrika]]
40640
40641 [[als:Afrika Islam]]
40642 [[de:Afrika Islam]]</text>
40643 </revision>
40644 </page>
40645 <page>
40646 <title>Adventure International</title>
40647 <id>884</id>
40648 <revision>
40649 <id>38699696</id>
40650 <timestamp>2006-02-08T01:24:46Z</timestamp>
40651 <contributor>
40652 <username>Deadcujo</username>
40653 <id>708381</id>
40654 </contributor>
40655 <minor />
40656 <comment>Hyphenation and capitalisation of &quot;Spider-Man&quot;.</comment>
40657 <text xml:space="preserve">'''Adventure International''' was a [[Computer and video games|video game]] publishing company that existed from 1978 until 1985, started by Scott and Alexis Adams. Their games were notable for being the first implementation of the adventure genre to run on a microcomputer system. The adventure game concept originally came from [[Colossal Cave Adventure]] which ran strictly on large mainframe systems at the time.
40658
40659 After the success of their first game &quot;Adventureland&quot;, games followed rapidly, with Adventure International (or &quot;AI&quot;) releasing about two games a year. Initially the games were drawn from the founders imagination, with themes ranging from [[fantasy]] to [[Horror fiction|horror]] and sometimes [[science fiction]]. Some of the later games were written by Scott Adams and other collaborators. Adventure Internationals' games became known for quality, with a reputation only exceeded in the field at the time by [[Infocom]].
40660
40661 Fourteen games later, Adventure International began to release games drawn from film and fiction. The extremely rare Buckaroo Banzai game, developed with Phillip Case, was based on the film [[The Adventures of Buckaroo Banzai Across the Eighth Dimension]] ([[1984]]). Other games came from a more well known source: [[Marvel Comics]]. Adventure International released three games based on the Marvel characters: &quot;The Incredible Hulk&quot;, &quot;Spider-Man&quot; and &quot;Torch and the Thing&quot;.
40662
40663 By the end of [[1982]], game tastes were changing. The traditional text-based [[adventure game]] market had moved to graphical based adventures. Games like [[The Hobbit (video game)|The Hobbit]] had increased expectations of such games, and although Adventure International games included graphics of a sort, they were significantly inferior to contemporary offerings at the time and the company was rapidly losing [[market share]].
40664
40665 Adventure International went [[bankruptcy|bankrupt]] in [[1985]]. The [[copyright]]s for its games reverted to the bank and eventually back to Scott Adams who released them as [[shareware]]. At its peak in late 1983 to early 1984 Adventure International employed approximately 50 individuals, and published titles from over 300 independent programmer/authors.
40666
40667 In [[Europe]] the &quot;Adventure International&quot; name was a trading name of [[AdventureSoft]] and other games were released under the name that were not from Adventure International in the [[United States|USA]].
40668
40669 Alexis Adams has remained in the online world and runs the online sex site FatFantasy.net[http://www.fatfantasy.net] .
40670
40671 Scott Adams can be reached through his homepage at www.msadams.com[http://www.msadams.com]
40672
40673 ==The Games==
40674 Scott Adams's original twelve adventure games were
40675 * ''Adventureland'',
40676 * ''Pirate Adventure'' (also called ''Pirate's Cove''),
40677 * ''Secret Mission'' (originally called ''Mission Impossible''),
40678 * ''Voodoo Castle'',
40679 * ''The Count'',
40680 * ''Strange Odyssey'',
40681 * ''Mystery Fun House'',
40682 * ''Pyramid of Doom'',
40683 * ''Ghost Town'',
40684 * ''Savage Island'' parts I &amp;amp; II, and
40685 * ''The Golden Voyage''.
40686
40687 ==External links==
40688
40689 * [http://www.freearcade.com/Zplet.jav/Scottadams.html Play Scott Adams games in your web browser]
40690 * [http://www.if-legends.org/~adventure/Adventure_International/Classic.html IF Legends, detailed guide to Scott Adams Classic Adventures]
40691 * [http://dmoz.org/Games/Video_Games/Developers_and_Publishers/A/Adventure_International/ Category at Open Directory]
40692
40693 [[Category:Defunct computer and video game companies]]</text>
40694 </revision>
40695 </page>
40696 <page>
40697 <title>Altenberg</title>
40698 <id>885</id>
40699 <revision>
40700 <id>33133851</id>
40701 <timestamp>2005-12-29T16:24:02Z</timestamp>
40702 <contributor>
40703 <username>Keithlaw</username>
40704 <id>171631</id>
40705 </contributor>
40706 <minor />
40707 <comment>+dab tag</comment>
40708 <text xml:space="preserve">'''Altenberg''' may refer to:
40709 * [[Peter Altenberg]], an Austrian writer and poet
40710 * [[Vieille Montagne]] (German name &quot;Altenberg&quot;), a former zinc mine in Kelmis
40711 * [[Altenberg, Germany]], a city in [[Saxony]], Germany
40712 * [[Altenberg, Austria]], a municipality in Austria near Vienna, on site the family mansion of [[Konrad Lorenz]]
40713
40714 [[de:Altenberg]]
40715 {{disambig}}</text>
40716 </revision>
40717 </page>
40718 <page>
40719 <title>Arthur C. Clarke</title>
40720 <id>886</id>
40721 <revision>
40722 <id>41754796</id>
40723 <timestamp>2006-03-01T14:37:32Z</timestamp>
40724 <contributor>
40725 <username>Syrthiss</username>
40726 <id>334792</id>
40727 </contributor>
40728 <minor />
40729 <comment>Reverted edits by [[Special:Contributions/167.206.233.170|167.206.233.170]] ([[User talk:167.206.233.170|talk]]) to last version by Jason One</comment>
40730 <text xml:space="preserve">[[Image:Arthur C. Clarke.jpg|thumb|200px|Arthur C. Clarke]]
40731
40732 '''Sir Arthur Charles Clarke''' (born [[December 16]] [[1917]]) is the [[United Kingdom|British]] [[author]] and [[inventor]], most famous for his [[science-fiction]] novel ''[[2001: A Space Odyssey (novel)|2001: A Space Odyssey]]'', and for collaborating with director [[Stanley Kubrick]] on the film of the same name. Clarke is considered one of the Big Three of science fiction, along with [[Robert A. Heinlein]] and [[Isaac Asimov]]; he is the only one still alive.
40733
40734 ==''2001: A Space Odyssey''== was written concurrently with the [[2001: A Space Odyssey (film)|film version]] by [[Stanley Kubrick]]. It was loosely inspired by Clarke's short story &quot;[[The Sentinel (short story)|The Sentinel]]&quot;, but became its own novel while he was collaborating on a screenplay with Kubrick. Kubrick approached Clarke about writing a novel for the express purpose of making &quot;the proverbial good science-fiction movie&quot;, and the novel was still being written while the film was being made. This resulted in one of the truly unique collaborations in media history.
40735
40736 Clarke has written numerous other books, including the [[Rendezvous with Rama|Rama]] novels and several sequels to ''2001'', and many short stories, including &quot;[[The Star]]&quot;, about a Jesuit priest's spiritual dilemma.
40737
40738 An [[asteroid]] is named in Clarke's honour, [[4923 Clarke]], as is a species of [[Ceratopsian]] [[dinosaur]], ''[[Serendipaceratops arthurcclarkei]]'', discovered in [[Inverloch, Victoria|Inverloch]] in [[Australia]]. The [[2001 Mars Odyssey]] orbiter is named in honor of Sir Arthur's works.
40739
40740 In the [[1940s]] he forecast that man would reach the [[Moon landing|moon]] by the year [[2000]], an idea experts dismissed as rubbish. When [[Neil Armstrong]] landed in [[1969]], the United States said Clarke &quot;provided the essential intellectual drive that led us to the moon.&quot; ([http://today.reuters.co.uk/news/newsArticleSearch.aspx?storyID=221763+14-Nov-2005+RTRS&amp;srch=clarke] [http://www.taborcommunications.com/archives/3047.html])
40741
40742 He lives in [[Sri Lanka]], and survived the [[tsunami]]s of the [[2004 Indian Ocean earthquake]], but lost his diving school on [[Hikkaduwa]] ([http://sify.com/news/fullstory.php?id=13638567] [http://thestar.com.my/news/story.asp?file=/2004/12/30/latest/20462ArthurC&amp;sec=latest]). Clarke holds citizenship of both the [[UK]] and [[Sri Lanka]] [http://www.sundayobserver.lk/2005/12/11/new27.html].
40743
40744 ==Biography==
40745 Clarke was born in [[Minehead]] in [[Somerset]], [[England]], and as a boy enjoyed stargazing and enthusiastically read old American science-fiction magazines (many of which made their way to England as ballast in ships). After secondary school, and studying at [[Richard Huish College, Taunton]] he was unable to afford a university education and consequently acquired a job as an auditor in the pensions section of the Board of Education.
40746
40747 During the [[World War II|Second World War]], he served in the [[Royal Air Force]] as a [[radar]] specialist and was involved in the early warning radar defense system which contributed to the RAF's success during the [[Battle of Britain]]. He retired in the rank of [[Flight Lieutenant]]. After the war, he obtained a first class [[academic degree|degree]] in mathematics and physics at [[King's College London]].
40748
40749 His most important contribution may be the idea that [[geostationary satellite]]s would be ideal [[telecommunication]]s relays. He proposed this concept in a paper titled &quot;[http://www.lsi.usp.br/~rbianchi/clarke/ACC.ETRelaysFull.html Extra-Terrestrial Relays] - Can Rocket Stations Give Worldwide Radio Coverage?&quot;, published in ''[[Wireless World]]'' in October [[1945]]. The [[geostationary orbit]] is now sometimes known as the Clarke orbit in his honour. However, it is not clear that his article was actually the inspiration for modern telecommunications satellites. [[John R. Pierce]], of [[Bell Labs]], arrived at the idea independently in 1954, and he was actually involved in the [[Echo satellite]] and [[Telstar]] projects. However, Pierce stated that the idea was &quot;in the air&quot; at the time and certain to be developed regardless of Clarke's publication.
40750
40751 Clarke's first professional sale was in [[1946]] to ''[[Astounding Science Fiction]]'', the still memorable short story &quot;Rescue Party&quot;. Along with his writing, Clarke worked briefly as Assistant Editor of ''[[Science Abstracts]]'' ([[1949]]) before devoting himself to writing full-time from 1951. Clarke also contributed to the ''[[Dan Dare]]'' series and his first three published novels were for a juvenile audience. He has been chairman of the [[British Interplanetary Society]] and a member of the [[Underwater Explorers Club]]. His work is marked by its optimistic view of science empowering mankind's exploration of the solar system and an obvious influence was the work of [[Olaf Stapledon]].
40752
40753 In [[1951]], he wrote &quot;The Sentinel&quot; for a [[BBC]] competition. Though the story was rejected, it changed the course of Clarke's career. Not only the basis for ''2001'', ''The Sentinel'' introduced a more mystical and cosmic element to Clarke's work. Many of Clarke's later works feature a technologically advanced but prejudiced mankind being confronted by a superior alien intelligence. In the cases of ''[[The City and the Stars]]'', ''[[Childhood's End]]'', and the ''2001'' series, this encounter produces a conceptual breakthrough that accelerates humanity into the next stage of its evolution.
40754
40755 He has lived in [[Sri Lanka]] since [[1956]], immigrating when it was still called [[Ceylon]], first in [[Unawatuna]] on the south coast, and then in [[Colombo]]. This inspired the locale for his novel ''[[The Fountains of Paradise]]'', in which he describes a [[space elevator]]. This, he figures, will ultimately be his legacy, more so than [[geostationary satellite]]s, once space elevators make space shuttles obsolete.
40756
40757 Early in his career, Clarke had a fascination with the [[paranormal]], and has stated that it was part of the inspiration for his novel ''Childhood's End''. He has also said that he was one of several who were fooled by a [[Uri Geller]] demonstration at [[Birkbeck, University of London|Birkbeck College]]. Although he has long since dismissed and distanced himself from nearly all [[pseudoscience]], he still advocates for research into purported instances of [[psychokinesis]] and other similar phenomena.
40758
40759 Following the release of ''2001'', Clarke became much in demand as a commentator on science and technology, especially at the time of the [[Apollo space program]]. He also signed a three-book publishing deal, a record for a science fiction writer. The first of the three was ''[[Rendezvous with Rama]]'' in [[1973]], which won him all the main genre awards and has spawned sequels that, along with the ''2001'' series, formed the backbone of Clarke's later career.
40760
40761 In [[1975]], his short story ''The Star'' was not included as prose in a new high school [[English Language|English]] textbook in [[Sri Lanka]], because it was felt that it might offend [[Roman Catholics]], although it had been selected. The textbook caused controversy because it replaced [[Shakespeare]]'s work with that of [[Bob Dylan]], [[John Lennon]] and [[Isaac Asimov]].
40762
40763 Clarke is also well known to many for his television programmes ''[[Arthur C. Clarke's Mysterious World]]'' ([[1981]]) and ''[[Arthur C. Clarke's World of Strange Powers]]'' ([[1984]]).
40764
40765 In [[1986]], Clarke provided a grant to fund the prize money (initially ÂŖ1,000) for the [[Arthur C. Clarke Award]] for the best science fiction novel published in Britain in the previous year. In [[2001]] the prize was increased to ÂŖ2001, and its value now matches the year (i.e., ÂŖ2005 in [[2005]]).
40766
40767 In [[1988]], he was diagnosed with [[post-polio syndrome]] and has since needed to use a wheelchair.
40768
40769 His [[British honours system|knighthood]] was first announced in [[1998]], but then the British [[tabloid]] ''[[The Daily Mirror|The Sunday Mirror]]'' published accusations of [[pedophilia|paedophilia]] against him ([http://news.bbc.co.uk/2/hi/52598.stm]). The award was delayed while the allegations were investigated, although by [[2000]] the BBC reported that he had been cleared ([http://news.bbc.co.uk/2/hi/south_asia/765385.stm]). Clarke's health did not allow him to travel to [[London]] to receive the honour personally from the [[Elizabeth II of the United Kingdom|Queen]], so the UK [[High Commissioner]] to [[Sri Lanka]] awarded him the title of [[Knight Bachelor]] at a ceremony in [[Colombo]].
40770
40771 He is currently the Honorary Board Chair of the [[Institute for Cooperation in Space]], founded by [[Carol Rosin]] and on the [[Board of Governors]] of the [[National Space Society]], a [[space advocacy]] organization originally founded by Dr. [[Wernher von Braun]].
40772
40773 He was the first Chancellor of the [[International Space University]], serving from [[1989]] to [[2004]] and Chancellor of [[Moratuwa University]], [[Sri Lanka]], from [[1979]] to [[2002]].
40774
40775 In [[2005]] he lent his name to the first ever annual [http://www.clarkeawards.org Sir Arthur Clarke Awards] - dubbed &quot;the Oscars for Space&quot;. His brother attended the awards ceremony, and presented an award specially chosen by Arthur (and not by the panel of judges who chose the other awards).
40776
40777 On [[14 November]] [[2005]] Sri Lanka awarded Arthur C. Clarke its highest civilian award, the Lankabhimanaya ''(Pride of Lanka)'' award, for his contributions to science and technology and his commitment to his adopted country.
40778
40779 ==Partial Bibliography==
40780 ===Novels===
40781 * ''[[Prelude to Space]]'' (1951)
40782 * ''[[The Sands of Mars]]'' (1951)
40783 * ''[[Islands in the Sky]]'' (1952)
40784 * ''[[Against the Fall of Night]]'' (1953)
40785 * ''[[Childhood's End]]'' (1953)
40786 * ''[[Earthlight]]'' (1955)
40787 * ''[[The City and the Stars]]'' (1956)
40788 * ''[[The Deep Range]]'' (1957)
40789 * ''[[A Fall of Moondust]]'' (1961)
40790 * ''[[Dolphin Island]]'' (1963)
40791 * ''[[Glide Path]]'' (1963)
40792 * ''[[2001:_A_Space_Odyssey_(novel)|2001: A Space Odyssey]]'' (1968)
40793 * ''[[The Lion of Comarre &amp; Against the Fall of Night]]'' (1968)
40794 * ''[[Report on Planet Three]]'' (1972)
40795 * ''[[Rendezvous with Rama]]'' (1973)
40796 * ''[[Imperial Earth]]'' (1975)
40797 * ''[[The Fountains of Paradise]]'' (1979)
40798 * ''[[2010: Odyssey Two]]'' (1982)
40799 * ''[[The Songs of Distant Earth]]'' (1986)
40800 * ''[[2061: Odyssey Three]]'' (1988)
40801 * ''[[A Meeting With Medusa]]'' (1988)
40802 * ''[[Cradle (book)|Cradle]]'' (1988, with [[Gentry Lee]])
40803 * ''[[Rama II]]'' (1989, with [[Gentry Lee]])
40804 * ''[[Beyond the Fall of Night]]'' (1990, [[Gregory Benford]])
40805 * ''[[The Ghost from the Grand Banks]]'' (1990)
40806 * ''[[The Garden of Rama]]'' (1991, with [[Gentry Lee]])
40807 * ''[[Rama Revealed]]'' (1993, with [[Gentry Lee]])
40808 * ''[[The Hammer of God]]'' (1993)
40809 * ''[[Richter 10]]'' (1996, with [[Mike McQuay]])
40810 * ''[[3001: The Final Odyssey]]'' (1997)
40811 * ''[[The Trigger]]'' (1999, with [[Michael P. Kube-McDowell]])
40812 * ''[[The Light of Other Days]]'' (2000, with [[Stephen Baxter]])
40813 * ''[[Time's Eye]]'' (2004, with Stephen Baxter)
40814 * ''[[Sunstorm (novel)|Sunstorm]]'' (2005, with Stephen Baxter)
40815 * ''[[The Last Theorem]]'' (2005)
40816
40817 ===Omnibus editions===
40818 * ''[[Across the Sea of Stars]]'' (1959, including ''Childhood's End'', ''Earthlight'' and 18 short stories)
40819 * ''[[From the Ocean, From the Stars]]'' (1962, including ''The City and the Stars'', ''The Deep Range'' and ''The Other Side of the Sky'')
40820 * ''[[An Arthur C. Clarke Omnibus]]'' (1965, including ''Childhood's End'', ''Prelude to Space'' and ''Expedition to Earth'')
40821 * ''[[Prelude to Mars]]'' (1965, including ''Prelude to Space'' and ''The Sands of Mars'')
40822 * ''[[An Arthur C. Clarke Second Omnibus]]'' (1968, including ''A Fall of Moondust'', ''Earthlight'' and ''The Sands of Mars'')
40823 * ''[[Four Great SF Novels]]'' (1978, including ''The City and the Stars'', ''The Deep Range'', ''A Fall of Moondust'', ''Rendezvous with Rama'')
40824 * ''[[The Space Trilogy]]'' (2001, including ''Islands in the Sky'', ''Earthlight'' and ''The Sands of Mars'')
40825 [[Image:Startling Stories.jpg|thumb|200px|right|''[[Against the Fall of Night]]'' in ''[[Startling Stories]]''.]]
40826
40827 ===Short story collections===
40828 * ''[[Expedition to Earth]]'' (1953)
40829 * ''[[Reach for Tomorrow]]'' (1956)
40830 * ''[[Tales from the White Hart]]'' (1957)
40831 * ''[[The Other Side of the Sky]]'' (1958)
40832 * ''[[Tales of Ten Worlds]]'' (1962)
40833 * ''[[The Nine Billion Names of God]]'' (1967)
40834 * ''[[Of Time and Stars]]'' (1972)
40835 * ''[[The Wind from the Sun]]'' (1972)
40836 * ''[[The Best of Arthur C. Clarke]]'' (1973)
40837 * ''[[The Sentinel (short story)|The Sentinel]]'' (1983)
40838 * ''[[Tales From Planet Earth]]'' (1990)
40839 * ''[[More Than One Universe]]'' (1991)
40840 * ''[[The Collected Stories of Arthur C. Clarke]]'' (2000)
40841
40842 ===Non-fiction===
40843 *''Profiles of the Future'' (1962, subtitled &quot;An Enquiry into the Limits of the Possible&quot;)
40844 *''[[The Snows of Olympus - A Garden on Mars]]'' (1994, picture album with comments]
40845 *''[[Ascent to Orbit]]'' is what he calls his scientific autobiography
40846 *''[[Astounding Days]]'' his science-fictional autobiography
40847 *''[[The coming of the Space Age; famous accounts of man's probing of the universe]]'', selected and edited by Arthur C. Clarke.
40848 *''[[The Coast of Coral]]'' with photographs by Mike Wilson and Arthur C. Clarke, volume 1 of the ''Blue planet trilogy''
40849 *''[[How the World Was One: Beyond the Global Village]]. A history and survey of the communications revolution published in 1992.
40850 *''[[Greetings, carbon-based bipeds!]]'' collected essays, 1934-1998
40851 *''[[Man and space]]''
40852 *''[[Report on Planet Three and other speculations]]''
40853 *''[[The promise of space]]''
40854
40855 ==Themes, style, and influence==
40856 Clarke's early published stories would usually feature the extrapolation of a technological innovation or scientific breakthrough that assists the resolution of a human dilemma. The first manned mission to the moon (''[[Prelude to Space]]''), the colonization of [[Mars]] (''[[The Sands of Mars]]'') and life aboard a space station (''[[Islands in the Sky]]'') were all genre SF mainstays. Clarke's background as a technical writer showed in the early novels as a deliberate documentary style, and his characters reflect Clarke's experience by being mostly military or civil service types. Despite this, Clarke's style was open to humour and a degree of whimsy which salted its propagandist tone regarding scientific advancement with a sting in the tail.
40857
40858 A recurring type of character is found in ''[[The Lion of Comarre]]'', ''[[The City and the Stars]]'', ''[[The Road to the Sea]]'', and other works. A young man in a superficially [[utopian]] society becomes dissatisfied and restless and seeks to expand his horizons, thereby discovering the underlying decadence of his own society.
40859
40860 ''The Sentinel'' introduced a religious theme to Clarke's work. His interest in the paranormal was influenced by [[Charles Fort]] and embraced the belief that mankind may be the property of an ancient alien civilization. Surprisingly for a writer who is often held up as an example of hard science fiction's obsession with technology, three of Clarke's novels have this as a theme.
40861
40862 ==The adapted screenplays of Arthur C. Clarke==
40863 ===''2001: A Space Odyssey''===
40864 Clarke's first venture into film was the Stanley Kubrick-directed ''[[2001: A Space Odyssey (film)|2001: A Space Odyssey]]''. Kubrick and Clarke had met in [[1964]] to discuss the possibility of a collaborative film project. As the idea developed, it was decided that the story for the film was to be loosely based on Clarke's short story &quot;The Sentinel&quot;, written in [[1948]] as an entry in a BBC short story competition. Originally, Clarke was going to write the screenplay for the film, but this proved to be more tedious than he had estimated. Instead, Kubrick and Clarke decided it would be best to write a novel first and then adapt it for the film upon its completion. However, as Clarke was finishing the book, the screenplay was also being written simultaneously.
40865
40866 Due to the hectic schedule of the film's production, Kubrick and Clarke had difficulty collaborating on the book. Clarke completed a draft of the novel at the end of [[1964]] with the plan to publish the novel in [[1965]] in advance of the film's release in [[1966]]. After many delays the film was released in the spring of [[1968]], before the book was completed. It was credited to Clarke alone. Clarke later complained that this had the effect of making the book into a novelisation, that Kubrick had manipulated circumstances to downplay his authorship. For these and other reasons, the details of the story differ slightly from the book to the movie. The film is a bold artistic piece with little explanation for the events taking place. Clarke, on the other hand, wrote thorough explanations of &quot;cause and effect&quot; for the events in the novel. Despite their differences, both film and novel were well received. [http://www.boxofficemojo.com/movies/?id=2001.htm] [http://movies.go.com/moviesdynamic/movies/movie?id=479433] [http://www.amazon.com/exec/obidos/search-handle-url/index%3Ddvd%2526field-keywords%3Dspace%2520odyssey%2526results-process%3Ddefault%2526dispatch%3Dsearch/ref%3Dpd%5Fsl%5Fov%5Ftops-1%5Fdvd%5F4138659%5F1/104-5000595-8600727]
40867
40868 In [[1972]] Clarke published ''The Lost Worlds of 2001'', which included his account of the production and alternate versions of key scenes. The &quot;special edition&quot; of the novel ''[[2001: A Space Odyssey (novel)| A Space Odyssey]]'' (released in [[1999]]) contains an introduction by Clarke, documenting his account of the events leading to the release of the novel and film.
40869
40870 ===''2010: The Year We Make Contact''===
40871 In [[1982]] Clarke continued the ''2001'' epic with a sequel, ''[[2010: Odyssey Two]]''. This novel was also made into a film, ''[[2010: The Year We Make Contact]]'', directed by [[Peter Hyams]] for release in [[1984]]. Due to the political environment in America in the 1980s, the novel and film present a Cold War theme, with the looming tensions of nuclear war. The film was not considered to be as revolutionary or artistic as ''2001'', but the reviews were still positive and it has earned over 40 million dollars since its release in North America. [http://www.boxofficemojo.com/movies/?id=2010.htm]
40872
40873 Clarke's email correspondence with Hyams was published in 1984. Titled ''[[The Odyssey File: The Making of 2010]]'', and co-authored with Hyams, it illustrates his fascination with the then-pioneering medium and its use for them to communicate on an almost daily basis at the time of planning and production of the film. The book also includes [[Arthur C Clarke's List of the best Science-Fiction films of all time|Clarke's list of the best science-fiction films]] ever made.
40874
40875 ===''Rendezvous with Rama''===
40876 Early in the millennium, actor [[Morgan Freeman]] expressed his desire to produce a film based on Arthur C. Clarke's novel ''Rendezvous with Rama''. The film was to be produced by Freeman's production company, [[Revelations Entertainment]].[http://www.revelationsent.com/flash/index.html] Freeman has not given up on the project, but he states that funding for a movie of this type is hard to procure. A popular science-fiction web site (Sci Fi Wire) posted an interview with Freeman about his troubles with the production. [http://www.scifi.com/scifiwire/art-main.html?2003-03/14/12.00.film]
40877
40878 ==Essays and short stories==
40879 Most of Clarke's essays (between [[1934]] to [[1998]]) can be found in the book ''[[Greetings, Carbon-Based Bipeds!]]'' ([[2000]]). Most of his short stories can be found in the book ''[[The Collected Stories of Arthur C. Clarke]]'' ([[2001]]). They make a good collection of Clarke's non-fiction and fiction works, even for those who already have most of his books. Another collection of early essays was published in ''[[The View from Serendip]]'' ([[1977]]), which also included one short piece of fiction, &quot;[[When the Twerms Came]]&quot;. He has also written short stories under the pseudonyms of [[E. G. O'Brien]] and [[Charles Willis]].
40880
40881 ==See also==
40882 * [[Clarke's three laws]]
40883 * [[science fiction]]: [[:Category:Science fiction writers|authors]] – [[:Category:Science fiction novels|novels]] – [[:Category:Science fiction short stories|short stories]] – [[:Category:Science fiction television series|television shows]]
40884 * [[Arthur C Clarke's List of the best Science-Fiction films of all time]]
40885 * [[Clarketech]]
40886 * [[Spaceguard]]
40887 * [[Religious ideas in science fiction]]
40888 * [[:Category:Arthur_C._Clarke_books|Arthur C. Clarke books]]
40889 * [[:Category:Arthur_C._Clarke_short_stories|Arthur C. Clarke short stories]]
40890
40891 ==External links==
40892 {{wikiquote}}
40893 *[http://www.kazlev.karoo.net/ Team ACC - Arthur C Clarke Fans] : an international [[Berkeley Open Infrastructure for Network Computing|BOINC]] community team
40894 *[http://www.arthurcclarke.net/ ArthurCClarke.net : fan community &amp; discussion site]
40895 *[http://www.setileague.org/editor/clarke.htm Where Is Everybody?] : an [[essay]] by Arthur C. Clarke on [[Search for Extra-Terrestrial Intelligence|SETI]]
40896 *[http://www.secularhumanism.org/index.php?section=library&amp;page=clarke_19_2 God, Science, and Delusion] ''Free Inquiry'' magazine interview Volume 19, Number 2
40897 *[http://avclub.com/content/node/24247 Interview for ''The Onion''] ([[February 2004]])
40898 * [http://www.fantasticmetropolis.com/show.html?ey.clarke The Motif of First Contact in Arthur C. Clarke's SF Works], by [[Zoran ÅŊivković (writer)|Zoran ÅŊivković]]
40899 *[http://www.geocities.com/jcsherwood/ACClinks2.htm Sir Arthur C. Clarke links] at [http://www.geocities.com/jcsherwood/ MysteryVisits.com]
40900 *[http://www.geocities.com/jcsherwood/ACCphotos.htm Clarke image archive] at [http://www.geocities.com/jcsherwood/ MysteryVisits.com]
40901 *[http://lakdiva.org/clarke/2005trip/ Clarke's 1945 Communication Satellite Idea]
40902 *[http://fsweb.berry.edu/academic/hass/jhickman/images/arthur.jpg 2000 Photo]
40903 *[http://www.peaceinspace.com/ab_board.shtml Institute for Cooperation in Space]
40904 *[http://www.clarkefoundation.org/ The Arthur C. Clarke Foundation]
40905 *[http://www.clarkeawards.org/ Sir Arthur Clarke Awards 2005]
40906 * {{isfdb name|id=Arthur_C._Clarke|name=Arthur C. Clarke}}
40907 * {{imdb name|id=0002009|name=Arthur C. Clarke}}
40908 *[http://www.spikemagazine.com/0198clar.php Spike Magazine Interview]
40909 * [http://www.ent.mrt.ac.lk/~rohan/career/projects/sundial/sundial.html The Sundial on a Novel Concept] includes image of Clarke at the inaugaration of the Sundial [[Moratuwa University]] [[1996]]
40910 * [http://www.iee.org/publish/inspec/100years/clarke.cfm Memoirs of Science Abstracts' editorial staff] &amp;mdash; by Arthur C. Clarke
40911 * [http://www.bsac.org/techserv/ndc/doc2003/rlvrep.htm ONCE UPON A TIME IN THE BSAC] references Clarke as a member
40912 * The late [[Trevor Hampton]] (British pioneer diver) had Clarke as a client [http://www.divernet.com/profs/0402hampton.htm]
40913 * [http://research.spaceref.com/acmgh/ The Arthur Clarke Mars Greenhouse], Devon Island, Nunavut (NASA Haughton Mars Project)
40914
40915 [[Category:1917 births|Clarke, Arthur C.]]
40916 [[Category:Living people|Clarke, Arthur C.]]
40917 [[Category:Alumni of King's College London|Clarke, Arthur C.]]
40918 [[Category:Arthur C. Clarke]]
40919 [[Category:Science fiction writers|Clarke, Arthur C.]]
40920 [[Category:British science fiction writers|Clarke, Arthur C.]]
40921 [[Category:Hugo Award winning authors|Clarke, Arthur C.]]
40922 [[Category:Nebula Grand Masters|Clarke, Arthur C.]]
40923 [[Category:British World War II veterans|Clarke, Arthur C.]]
40924 [[Category:Royal Air Force officers|Clarke, Arthur C.]]
40925 [[Category:Natives of Somerset|Clarke, Arthur C.]]
40926 [[Category:SETI]]
40927 [[Category:Space exploration]]
40928 [[Category:Sri Lankans|Clarke, Arthur C.]]
40929 [[Category:Futurists|Clarke, Arthur C.]]
40930 [[Category:British essayists|Clarke, Arthur C.]]
40931 [[Category:Humanists|Clarke, Arthur C.]]
40932 [[Category:Atheists|Clarke, Arthur C.]]
40933 [[Category:Skeptics|Clarke, Arthur C.]]
40934
40935 [[bg:АŅ€Ņ‚ŅŠŅ€ КĐģĐ°Ņ€Đē]]
40936 [[cs:Arthur C. Clarke]]
40937 [[da:Arthur C. Clarke]]
40938 [[de:Arthur C. Clarke]]
40939 [[es:Arthur C. Clarke]]
40940 [[eo:Arthur C. CLARKE]]
40941 [[fa:ØĸØąØĒŲˆØą Ú†Ø§ØąŲ„Ø˛ ÚŠŲ„Ø§ØąÚŠ]]
40942 [[fr:Arthur C. Clarke]]
40943 [[id:Arthur C. Clarke]]
40944 [[it:Arthur C. Clarke]]
40945 [[he:אר×Ēור סי קלארק]]
40946 [[lt:Arturas Klarkas]]
40947 [[hu:Arthur C. Clarke]]
40948 [[nl:Arthur C. Clarke]]
40949 [[ja:ã‚ĸãƒŧã‚ĩãƒŧãƒģCãƒģクナãƒŧク]]
40950 [[pl:Arthur C. Clarke]]
40951 [[pt:Arthur Charles Clarke]]
40952 [[ru:КĐģĐ°Ņ€Đē, АŅ€Ņ‚ŅƒŅ€]]
40953 [[simple:Arthur C. Clarke]]
40954 [[sk:Arthur C. Clarke]]
40955 [[sr:АŅ€Ņ‚ŅƒŅ€ Ч. КĐģĐ°Ņ€Đē]]
40956 [[fi:Arthur C. Clarke]]
40957 [[sv:Arthur C. Clarke]]
40958 [[th:ā¸­ā¸˛ā¸ŖāšŒāš€ā¸—ā¸­ā¸ŖāšŒ ā¸‹ā¸ĩ. ā¸„ā¸Ĩā¸˛ā¸ŖāšŒā¸]]
40959 [[uk:КĐģĐ°Ņ€Đē АŅ€Ņ‚ŅƒŅ€ ЧаŅ€ĐģŅŒĐˇ]]
40960 [[zh:äēžį‘ŸÂˇæŸĨį†æ–¯Âˇå…‹æ‹‰å…‹]]</text>
40961 </revision>
40962 </page>
40963 <page>
40964 <title>Apple Newton</title>
40965 <id>887</id>
40966 <revision>
40967 <id>41314092</id>
40968 <timestamp>2006-02-26T14:08:26Z</timestamp>
40969 <contributor>
40970 <ip>222.166.160.181</ip>
40971 </contributor>
40972 <comment>/* External links */</comment>
40973 <text xml:space="preserve">[[Image:Newton logo.gif|right|thumb|The Newton Logo.]]
40974 [[Image:Mp2k.gif|right|thumb|The Apple Newton MessagePad 2100, the last model produced.]]
40975
40976 The '''Apple Newton''', or simply '''Newton''', was an early line of [[personal digital assistant]]s developed, manufactured and marketed by [[Apple Computer]] from [[1993]] to [[1998]]. The original Newtons were based on the [[ARM architecture|ARM]] 610 RISC processor, and featured [[handwriting recognition]]. Apple's official name for the device was ''MessagePad''; the term ''Newton'' was Apple's name for the operating system it used, but popular usage of the word ''Newton'' has grown to include the device and its software together.
40977
40978 == The Newton in development ==
40979
40980 The Newton project was not originally intended to produce a PDA. The PDA category did not exist for most of Newton's genesis, and the &quot;[[personal digital assistant]]&quot; moniker itself was coined relatively late in the development cycle by Apple's then-CEO [[John Sculley]], the driving force behind the project. Newton was, in fact, intended to be a complete reinvention of personal computing. For most of its design lifecycle Newton had a large-format screen, more internal memory, and a rich object-oriented graphics kernel. One of the original motivating scenarios for the design was known as the &quot;Architect Scenario,&quot; in which Newton's designers imagined a residential architect working quickly with a client to sketch, clean up, and interactively modify a simple two-dimensional home plan.
40981
40982 For a portion of the Newton's development cycle (roughly the middle third &lt;!--exact dates?--&gt;), the project's primary programming language was [[Dylan programming language|Dylan]], a small, efficient [[object-oriented]] [[Lisp programming language|Lisp]] variant that still retains some interest. Although it was efficient (for its day, and considering its substantial run-time [[dynamic programming language|dynamism]]), Dylan was a tough sell for the large-format Newton (and for a development team unused to Lisp programming). With the move to the smaller form factor, Dylan was relegated to experimental status in the &quot;Bauhaus Project&quot; and eventually cancelled outright. Had it been retained, Dylan, with [[garbage collection (computer science)|garbage collection]] and close OS integration, would have preceded Microsoft's [[managed code]] revolution by over a decade.
40983
40984 The project missed by far its original goals to reinvent personal computing, and then to rewrite contemporary application programming. The Newton project's broad vision fell victim to project slippage, [[feature creep]], and a growing fear that it would interfere with Macintosh sales. It was reinvented as a PDA which would be a complementary Macintosh peripheral instead of a stand-alone computer which might compete with the Macintosh.
40985
40986 == Technical details ==
40987
40988 Newton used an advanced [[object-oriented programming]] system called [[NewtonScript]], developed by Apple employee [[Walter Smith (programmer)|Walter Smith]] [http://waltersmith.us/]. One of the major complaints programmers had was that the Toolbox programming environment was overpriced at $1000 (later in the life of the Newton, the programming environment was made available free of charge). Additionally, it required learning a new way of programming. Despite this, many third party and [[shareware]] applications were (and continue to be) available for Newton. It has been suggested that the NewtonScript programming system should be made available open-source (as &quot;[[abandonware]]&quot;) but most Newton enthusiasts consider this possibility to be highly unlikely.
40989
40990 Data in Newton was stored in object-oriented databases known as ''soups.'' One of the revolutionary aspects of Newton was that soups were available to all programs; and programs could operate cross-soup; meaning that the calendar could refer to names in the address book; a note in the notepad could be converted to an appointment, and so forth; and the soups could be programmer-extended - a new address book enhancement could be built on the data from the existing address book.
40991
40992 While the soup concept worked remarkably well within the Newton system itself, it caused several usability issues. First, it made it extremely difficult to synchronize data with other systems, like a desktop [[Macintosh]] or [[Personal computer|PC]], making the Newton a [[data island]]. Apple's utility to perform this task, the Newton Connection Utility, was exceedingly complex and was never completed to perform to the satisfaction of most users. The realization that a handheld computer needed to work within the existing data environment of its users was key to the success of the later [[Palm Pilot]] platform, even though the Palm was technically inferior.
40993
40994 The second consequence of the data-object soup was that objects could extend built-in applications such as the address book so seamlessly that Newton users could not distinguish which program or add-on object was responsible for the various features on their own system. A user rebuilding their system after extended usage might find themselves unable to manually restore their system to the same functionality because some long-forgotten downloaded extension was missing. Data owned and used by applications and extensions themselves were tossed in the &quot;Storage&quot; area of the &quot;Extras&quot; drawer. There was no built-in distinction between types of data in that area. For example, an installed application's icon could be sitting right next to a database of addresses used by another installed extension further down the list. There was no easy way to get a listing of all user-installed objects on a system.
40995
40996 Finally, the data soup concept worked well for data like addresses, which benefit from being shared cross-functionally, but it worked poorly for discrete data sets like files and documents. This difficulty in working and sharing data with other systems, stemming from the too revolutionary data-object soup system, was a key contributor to Newton's demise.
40997
40998 Earlier MessagePads used [[Apple Macintosh|Macintosh]]-standard [[serial port]]s - round [[DIN connector|Mini-DIN 8 connector]]s instead of the more common trapezoidal [[D-subminiature|DE-9, commonly called DB-9]]. The 2000/2100 models had a proprietary small flat connector, called an InterConnect port, used with an adapter. In addition, all models had [[infrared]] connectivity. Unlike the Palm, all MessagePad models were equipped with a standard [[PCMCIA]] expansion slot (two on the 2000/2100). This allowed native modem and even [[Ethernet]] connectivity; Newton users have also written [[Device_driver|drivers]] for [[802.11b]] wireless networking cards and ATA-type [[flash memory]] cards, a category that includes the popular [[CompactFlash]] format, as well as for [[Bluetooth]] cards. With the 1xx series, an optional keyboard became available, which could also be used via the dongle on a 2x00. Newton could also dial a phone number through the MessagePad speaker, simply holding a telephone handset up to the speaker, and fax / email support was built in at the operating system level, although it required external cards.
40999
41000 The MessagePad 2000 and 2100, with a vastly improved handwriting recognition system, 162MHz [[StrongARM]]SA-110 [[RISC]] processor, Newton 2.1, and a better, clearer, backlit screen, attracted critical plaudits. Although their size and expense were factors which kept them from being as popular as later [[PalmOS]] devices, the Newton still has a small but passionate user base. The final evolution of the Newton's handwriting recognition system is still considered by many to be very impressive, only matched by the more modern [[Tablet PC]] handwriting recognition system.
41001
41002 The MessagePad could be used with the screen turned horizontally (&quot;landscape&quot;) as well as vertically (&quot;portrait&quot;). A change of a setting would instantly rotate the contents of the display by ninety degrees. Handwriting recognition would still work properly with the display rotated.
41003
41004 The use of 4x [[AA]] [[NiCd]] (MessagePad 110, 120 and 130) and 4x AA [[NiMH]] cells (2x00 series, eMate 300) gave a runtime of up to 30 hours (MP 2100 w/ 2x 20 MB linear [[Flash memory]] [[PC Card]]s, no backlight usage) and up to 24 hours with backlight on. While adding more weight to the Newtons than [[AAA battery|AAA batteries]] (as used in the MessagePad and MessagePad 100) or custom battery packs, the choice of an easily replaceable/rechargeable cell format gave the user a still unsurpassed runtime and flexibility of power supply. This, together with the [[Flash memory]] used as internal storage (if all cells lost their power, no data was lost due to the static character of this storage), gave birth to the slogan &quot;Newton never dies, it only gets new batteries&quot;.
41005
41006 Apple and third parties marketed several &quot;wallets&quot; (cases) for the MessagePads, which would hold them securely along with the owner's credit cards, driver's license, business cards, and cash. These wallets were even larger than the MessagePads and even less able to fit in a pocket, so they were most often used as a protective case for the unit to shield it from bumps and scratches.
41007
41008 == Outcome ==
41009
41010 Although the Apple Newton was produced for six years, it was never as successful in the marketplace as Apple had hoped. This has been attributed to two primary reasons: the Newton's high price (which went up to $1000 when models 2000 and 2100 were introduced), and its large size (it failed the &quot;pocket test&quot; by not fitting in an average coat, shirt, or trouser pocket). Critics also panned its [[handwriting recognition]]. These initial problems marred Newton's reputation in the eyes of the public, and PDAs would remain a niche product until [[Palm, Inc.]]'s [[Palm Pilot]], which emerged shortly before the Newton was discontinued. The Palm Pilot, with its smaller, thinner shape, cheaper cost, and more robust [[Graffiti (Palm OS)|Graffiti]] handwriting recognition system - which had been available first as a software package for the Newton - managed to restore the viability of the PDA market after Newton's commercial failure. Ironically, Palm Computing was founded by ex-Apple employee [[Donna Dubinsky]].
41011
41012 The Newton marketing campaign trumpeted the product's handwriting recognition, though in initial versions it was fairly inaccurate. The original handwriting recognition engine was called Calligrapher, and was licensed from a Russian company called Paragraph International. It was actually quite sophisticated; unlike the later Palm Pilot's Graffiti - which made the user learn a new handwriting system and write each letter in an input area - Newton learned the user's natural handwriting, using a database of known words to make guesses as to what the user was writing, and could interpret writing anywhere on the screen. Newton could also recognize and clean up simple drawn shapes such as triangles, circles, and squares, and had an intuitive system for handwritten editing, such as scratching out words to be deleted, circling text to be selected, or using written carets to mark inserts.
41013
41014 Later releases of the Newton operating system retained the original recognizer for compatibility, but added a printed-text recognizer, code-named &quot;[[Rosetta (Newton)|Rosetta]],&quot; which was developed by Apple, included in version 2.0 of the Newton operating system, and refined in Newton 2.1. Rosetta was generally considered a significant improvement and many users consider the Newton 2.1 handwriting recognition software better than any of the alternatives since. Recognition and computation of handwritten horizontal and vertical formulas such as &quot;1 + 2 =&quot; was also under development but never released.
41015
41016 The most critical feature of the Newton handwriting recognition system was the modeless error correction. That is, correction done in situation without using a separate window or widget, using a minimum of gestures. If a word was recognized improperly, the user would simply double-tap the word and a list of alternatives would pop up in a menu under the stylus. Most of the time, the correct word would be in the list. If not, a button at the bottom of the list allowed the user to edit individual characters in that word. Error correction in many current handwriting systems provides such functionality but adds more steps to the process, greatly increasing the interruption to a user's workflow that a given correction requires. Excellent handwriting recognition (in OS 2.1 and higher) with smooth, modeless access to robust error correction is quite possibly a leading reason for the continued popularity of the device among Newton users.
41017
41018 Even given the age of the hardware and software, Newtons still demand a sale price on the used market far greater than that of PDAs produced by other companies. [[As of 2004]] the Newton 2000 and 2100 can still fetch a price, without accessories, of over $100.
41019
41020 ==Later efforts==
41021
41022 Many prototypes of additional Newton models were spotted. Most notable was a Newton tablet or &quot;slate,&quot; a large, flat screen that could be written on. Others included a &quot;Kids Newton&quot; with side handgrips and buttons, &quot;VideoPads&quot; which would have incorporated a video camera and screen on their flip-top covers for two-way communications, the &quot;Mini 2000&quot; which would have been very similar to Palm Pilot, and the &quot;NewtonPhone&quot; (developed by [[Siemens AG]]) which incorporated a handset and a keyboard.
41023
41024 At least one product, the [[eMate 300]] was derived from the Apple Newton, and was offered to schools in 1997 as an inexpensive ($799 US, originally sold to education markets only) and durable computer for classroom use. However, in order to achieve its low price, the eMate 300 did not have all the features of the contemporary Newton equivalent, the MessagePad 2000 and was cancelled along with the rest of the Newton line.
41025
41026 Before the Newton project was cancelled, it was &quot;spun off&quot; into its own company, ''Newton Inc.'', but was reabsorbed several months later when [[Steve Jobs]] ousted Apple CEO [[Gil Amelio]] and resumed control of Apple. There has since been continual speculation that Apple might release a new PDA with some Newton technology or collaborate with Palm. Apple continues to deny that such a project will ever happen.
41027
41028 The Apple [[Apple iPod | iPod]] is somewhat of a descendant of the Newton in that it is a pocket-sized programmable device based on the ARM processor. Two ex-Apple Newton developers founded [[Pixo]], the company that created the iPod's OS.
41029
41030 Feeding a bit of speculation, Apple put the &quot;Print Recognizer&quot; part of the Newton 2.1 handwriting recognition system into [[Mac OS X]] version 10.2 (known as &quot;Jaguar&quot;). It can be used with graphics tablets to seamlessly input handwritten printed text anywhere there was an insertion point on the screen. This technology, known as &quot;[[Inkwell (Macintosh)|Inkwell]]&quot;, appears in the System Preferences whenever a tablet input device is plugged in. Whether Apple will ever utilize such technology again in a [[handheld device]] remains to be seen.
41031
41032 In June 2004, Apple CEO Steve Jobs indicated that he was proud that Apple resisted pressure to market a new handheld computer. While a small group of Mac faithful consumers have lobbied Apple to sell such a device, the worldwide market for PDAs was in a decline at the time, and Apple chose not to develop the device because demand would have been inadequate.
41033
41034 ==Newton models==
41035
41036 * MessagePad (also known as the H1000, OMP or Original MessagePad)
41037 * MessagePad 100 (Supported newer Newton OS)
41038 * MessagePad 110 (slightly longer and narrower, with integrated flip cover and retracting stylus)
41039 * MessagePad 120 (Up to 2MB RAM, versus 1MB)
41040 * MessagePad 130 (backlit)
41041 * [[eMate 300]] (backlit with built-in keyboard)
41042 * MessagePad 2000 (a significant upgrade; much faster (162MHz StrongARM versus 20MHz ARM 610, larger form factor)
41043 * MessagePad 2100 (raised internal RAM to 4MB)
41044
41045 The NewtonOS was also licensed to a number of third party developers including Sharp and Motorola who developed additional PDA devices that used the operating system. Motorola added added wireless connectivity to the unit, and renamed it the Marco[http://www.msu.edu/~luckie/gallery/marco.htm].
41046 A possible Newton revival has been a common source of speculation among the Macintosh user base; when patents for a tablet based Macintosh were applied for (http://www.appleinsider.com/article.php?id=600), rumor sites jumped at the possibility of a new [[Tablet PC]] style Macintosh.
41047
41048 ==Appearances in popular culture==
41049
41050 * The Newton was featured in the movie ''[[Under Siege 2: Dark Territory|Under Siege 2]],'' where the main character, played by [[Steven Seagal]], uses it to fax a call for help from a phone on a passenger train.
41051 * In early episodes of the series ''[[The X-Files]]'', the FBI agents use Newtons.
41052 * In the end scene of Larry Laffer ''Leisure Suit Larry 6: Shape Up or Slip Out!'' the woman says &quot;I even had a Newton&quot;.
41053 * The character of Kate Libby in ''[[Hackers (movie)|Hackers]]'' has a MessagePad which is seen in a number of scenes.
41054 * The hacker in the film ''[[Jurassic Park]]'' has a Newton on his desk.
41055 * [[Gary Sinise]] uses one as the hostage taker in the 1996 film ''Ransom'' starring [[Mel Gibson]].
41056 * Daniel BrÃŧhl uses one in the German film ''[[The Edukators]]''.
41057
41058 The handwriting recognition software was ridiculed on several occasions:
41059 * [[Garry Trudeau]] ridiculed it in a series of episodes of his popular comic, ''[[Doonesbury]]''. The last panel of one strip, which shows a character reading the words &quot;egg freckles?&quot; from his Newton [http://images.ucomics.com/comics/db/1993/db930827.gif], became an [[Easter egg (virtual)|Easter egg]] in the Newton operating system itself (version 2.0 and earlier). It can be seen by writing the words ''egg freckles'' then highlighting them and tapping the Assist button.
41060 * In an episode of ''[[The Simpsons]]'' titled &quot;[[Lisa on Ice]]&quot;, which first aired [[November 13]], [[1994]], school bully Kearny has his buddy Daulph take a memo on a Newton. When Daulph writes &quot;Beat up Martin&quot; on the screen, the handwriting recognition turns it into &quot;Eat up Martha.&quot; Kearny throws the Newton at [[Martin Prince|Martin]] instead. [http://www.snpp.com/episodes/2F05.html]
41061 * In 2004, [[CNET]] elected the Apple Newton one of the &quot;Top 10 tech we miss&quot; [http://www.cnet.com/4520-11136_1-6259955.html], mentioning the device's amusing willingness to translate nearly any stroke on the screen to text, allowing the user to generate surreal ''Newton Poetry'' from random scribbles.
41062
41063 ==Other Uses==
41064 There were a number of projects that used the Newton as a portable information device in cultural settings such as museums. For example, Visible Interactive created a walking tour in San Francisco's Chinatown but the most significant effort took place in Malaysia at the Petronas Discovery Center, known as Petrosains.[http://www.petrosains.com.my/]
41065
41066 In 1995, an exhibit design firm, DMCD Inc. [http://www.dmcd.com]was awarded the contract to design a new 100,000 square foot science museum in the Petronas towers in Kuala Lumpur. A major factor in the award was the concept that visitors would use a Newton to access additional information, find out where they were in the museum, listen to audio, see animations, control robots and other media, and to bookmark information for printout at the end of the exhibit.
41067
41068 The device became known as the ARIF, a Malay word for &quot;wise man&quot; or &quot;seer&quot; and it was also an acronym for A Resourceful Informative Friend. Some 400 ARIFS were installed and over 250 are still in use today.
41069
41070 The development of the ARIF system was extremely complex and required a team of hardware and software engineers, designers, and writers. The exhibition design and ARIF coordination team was led by Scott Guerin, the hardware/software team by Ted Paschkis, and the writers and interface designers included Paul Trapido and Michael Callan. Mssrs. Guerin and Paschkis went on to found Wivid Systems which specializes in multimedia tour guides for museums. [http://www.wivid.com]
41071
41072 ARIF is an ancestor of the PDA systems used in museums today and it boasted features that have not been attempted since. For example it was used as an exploration tool in a large exhibit about exploring for oil. A visitor's success completing one task influenced the success or failure of a subsequent task. At the conclusion of the exhibit, the ARIF was docked at an IR port where it was used to control a robotic arm that placed equipment at locations influenced by the users previous lessons. In another exhibit, up to eight devices could be used at to activate a 60 foot diameter model of prehistoric Malaysia; volcano eruptions, animal sounds, lighting effects, and wind are among the many effects. This task was accomplished by docking the ARIF at a computer terminal and using it as the input device. There are no touch screens in Petrosains, all interactive systems were controlled by the ARIF.
41073
41074 The Newton was &quot;married&quot; to a primitive packet switching radio system in order to determine its location as the visitor passed through electronic &quot;gateways.&quot; When the visitor entered a new room, the radio triggered an automatic area introduction. The radio also delivered time-synch'd audio in two languages to a group of users when they watched a video.
41075
41076 In addition to being dual language in all audio and text, the ARIF stored bookmarked information such that at the end of the exhibit, users could choose several items of most interest to be printed out, including a souvenir photograph of themselves superimposed on one of several stage sets.
41077
41078 ==Jokes==
41079 * A popular [[lightbulb joke]] circled the internet briefly, ostensibly from the [[newsgroup]] comp.sys.newton.misc.
41080 *: Q: How many Newtons does it take to screw in a lightbulb?
41081 *: A: Foux! There to eat lemons, axe gravy soup.
41082
41083 ==External links==
41084
41085 * [http://lowendmac.com/orchard/06/0207.html Birth of the Newton]
41086 * [http://www.chuma.org/newton/faq/ Newton FAQ]
41087 * [http://www.msu.edu/~luckie/newtgal.htm Newton Gallery]
41088 * [http://www.crmloyalty.com/hknug Hong Kong Newton User Group]
41089 * Larry Yaeger's page on the [http://homepage.mac.com/larryy/larryy/ANHR.html development] of the Rosetta recogniser engine
41090 * [http://arstechnica.com/journals/apple.ars/2005/6/12/504 An interview with Larry Yaeger] touching on the development of the Newton and its HWR
41091 * [http://www.a-in-a-circle.com/newton/ Newton Secrets], with photos of prototypes
41092 * [http://www.uzes.net/newton Newton Cadillac prototype info]
41093 * [http://osopinion.com/modules.php?op=modload&amp;name=News&amp;file=article&amp;sid=4556 Think you know the Apple Newton's History? Think again]
41094 * [http://www.unna.org/ Newton Software]
41095 * [http://www.newtontalk.net/ The NewtonTalk mailing list]
41096 * [http://tools.unna.org/wikiwikinewt/ The NewtonWiki], HowTos, tricks and manuals
41097 * [http://www.newtonsearch.net/ NewtonSearch], a searchable index of Newton websites
41098 * [http://www.newtonsales.com NewtonRepair], Apple has discontinued support for the Newton platform -- however, repairs and upgrades are still available at this site
41099 * [http://www.pda-soft.de/ European Newton Repairs], feat. disassembling and repair instructions for most models and reviews of new spare parts and hardware
41100 * [http://www.pda-soft.de/programmingbooks.html Newton programming books and references in PDF form]
41101 * [http://www.kallisys.com/newton/einstein/en Einstein Project], a Newton emulator in development
41102 * [http://www.newtonslibrary.org/ Newton's Library], the largest actively maintained Newton [[ebook]] repository
41103 * [http://www.stillnewt.org/library/ Temporary Newton Library] -- actively maintained Newton [[ebook]] repository of [[public domain]] and [[creative commons]] licensed titles
41104 * [http://www.upenn.edu/computing/printout/archive/v10/4/newton.html My man Newton: Six months with a personal digital assistant], a report of Newton usage with an example of ''Newton Poetry''
41105 * [http://www.kevinfreitas.net/journal/20040921/ Newton Poetry], some info on and some attemps of ''Newton Poetry''
41106
41107 [[Category:Failed Apple initiatives|Newton]]
41108 [[Category:Apple hardware]]
41109 [[Category:PDAs]]
41110
41111 [[de:Newton (PDA)]]
41112 [[fr:Newton PDA]]
41113 [[ko:&amp;#45684;&amp;#53556; (&amp;#52980;&amp;#54504;&amp;#53552;)]]
41114 [[nl:Apple Newton]]
41115 [[no:Apple Newton]]
41116 [[pl:Newton (komputer)]]
41117 [[ja:&amp;#12450;&amp;#12483;&amp;#12503;&amp;#12523;&amp;#12539;&amp;#12491;&amp;#12517;&amp;#12540;&amp;#12488;&amp;#12531;]]
41118 [[it:Famiglia Newton (Apple)]]
41119 [[sv:Newton (PDA)]]</text>
41120 </revision>
41121 </page>
41122 <page>
41123 <title>A. E. van Vogt</title>
41124 <id>888</id>
41125 <revision>
41126 <id>41644022</id>
41127 <timestamp>2006-02-28T19:25:36Z</timestamp>
41128 <contributor>
41129 <username>Mr Frosty</username>
41130 <id>276295</id>
41131 </contributor>
41132 <minor />
41133 <comment>/* External links */ -- alpha. categories</comment>
41134 <text xml:space="preserve">'''Alfred Elton van Vogt''' ([[Winnipeg]], [[Canada]], [[April 26]], [[1912]] - [[Los Angeles]], [[United States|USA]], [[January 26]], [[2000]]) was a renowned [[Canada|Canadian]]-born [[science fiction author]] widely regarded as one of the most prolific, yet complex, writers from the mid-twentieth century '[[Golden Age of Science Fiction|Golden Age]]' of the genre.
41135
41136 [[Image:vanvogt.jpg|frame|van Vogt receiving Grand Master prize]]
41137
41138 ==Science Fiction's Golden Age==
41139
41140 Van Vogt was one of the most popular and highly esteemed science fiction writers of the [[1940s]], during the ascent of the genre's Golden Age. After starting his writing career by writing for 'true confession' style [[pulp magazines]] like ''True Story'', van Vogt decided to switch to writing something he enjoyed, [[science fiction]].
41141
41142 Van Vogt's first published SF story, &quot;Black Destroyer&quot; (''[[Analog Science Fiction|Astounding Science Fiction]]'', [[July]] [[1939]]), was inspired by ''[[The Origin of Species]]'' by [[Charles Darwin]]. The story depicted a fierce, carnivorous [[Extraterrestrial_life|alien]] stalking the crew of an exploration spaceship. It was the cover story of the issue of ''Astounding'' which ushered in the Golden Age of science fiction. The story became an instant classic and eventually served as the inspiration for a number of science fiction movies. In 1950 it was combined with &quot;War of Nerves&quot; ([[1950]]), &quot;Discord in Scarlet&quot; (1939) and &quot;M33 in Andromeda&quot; ([[1943]]) to form the novel ''[[The Voyage of the Space Beagle]]'' ([[1950]])
41143
41144 Many fans of that era would have named van Vogt, [[Robert A. Heinlein]], and [[Isaac Asimov]] as the three greatest science fiction writers.
41145
41146 In [[1941]] van Vogt decided to become a full time writer, quitting his job at the Canadian Department of National Defence. Extremely prolific for a few years, van Vogt wrote a large number of [[short stories]]. In the 1950s, many of them were retrospectively patched together into novels, or &quot;[[fixup|fixups]]&quot; as he called them, a term which entered the vocabulary of science fiction criticism. Sometimes this was successful (''[[The War against the Rull]]'') while other times the disparate stories thrown together made for a less coherent plot (''[[Quest for the Future]]'').
41147
41148 One of van Vogt's best novels of this period is ''[[Slan]]'', which appeared in ''Astounding Sicence Fiction'' in [[1940]]. Using what became one of van Vogt's recurring themes, it told the story of a 9-year-old [[superman]] living in a world in which his kind are slain by [[Homo sapiens]].
41149
41150 ==A post-war philosopher==
41151
41152 In [[1944]], van Vogt moved to [[Hollywood, California]], where his writing took on new dimensions after [[World War II]]. Van Vogt was always interested in the idea of all-encompassing systems of knowledge (akin to modern [[meta-systems]]), the characters in his very first story used a system called 'Nexialism' to analyze the alien's behaviour, and he became interested in the [[General Semantics]] of [[Alfred Korzybski]]. And he was profoundly affected by revelations of [[totalitarian]] [[police state|police states]] that emerged after [[World War II]]. He wrote a mainstream novel that was set in Communist [[China]], ''The Angry Man'' ([[1962]]); he said that prior to this he had read 100 books about China.
41153
41154 He subsequently wrote three novels merging these overarching themes, ''[[The World of Null-A]]'' and ''[[The Pawns of Null-A]]'' in the late [[1940s]], and ''[[Null-A Three]]'' in the early [[1980s]]. ''Null-A'', or [[non-Aristotelian logic]], refers to the capacity for, and practice of, using [[intuitive]], inductive reasoning ([[fuzzy logic]]), rather than reflexive, or conditioned, deductive logic.
41155
41156 [[Image:Linn.jpg|thumb|220px|First edition of ''[[The Wizard of Linn]]'' ([[1956]])]]
41157
41158 Van Vogt systematized his writing method, using scenes of 800 words or so where a new complication was added or something resolved. Several of his stories hinge upon temporal [[Conundrum|conundrums]], a favorite theme. He stated that he acquired many of his writing techniques from books on writing by [[Thomas Uzzell]].
41159
41160 He said many of his ideas came from dreams, and indeed his stories at times had the incoherence of dreams, but at their best, as in the fantasy novel ''[[The Book of Ptath]]'', his works had all the vision and power a dream can impart. Throughout his writing life he arranged to be awakened every 90 minutes during his sleep period so he could write down his dreams.
41161
41162 In the [[1950s]], van Vogt briefly became involved in [[L. Ron Hubbard|L. Ron Hubbard's]] [[Dianetics]]. Van Vogt operated a storefront, for the secular precursor to Hubbard's [[Scientology]] [[sect]], in the [[Los Angeles]] area for a time, before winding up at odds with Hubbard and his methods. His writing more or less stopped for some years, a period in which he bitterly claimed to have been harassed and intimidated by Hubbard's followers. In this period he limited to collect old short stories to form notable [[fixup|fixups]] like: ''[[The Mixed Men]]'' ([[1952]]), ''[[The War Against the Rull]]'' ([[1959]]), ''[[The Beast]]'' ([[1963]]) and the two novels of the &quot;Linn&quot; cyle, which were inspired by fall of the [[Roman Empire]]. He resumed writing again in the [[1960s]], mainly through [[Frederik Pohl]]'s invitation, while remaining in Hollywood with his second wife, Lydia Bereginsky, who took care of him through his declining years. In this period his stories were born since the very beginning as whole novels, but in general show van Vogt's difficulties in keeping pace with the evolution of science fiction.
41163
41164 ==Recognition==
41165
41166 In [[1946]], van Vogt and his first wife, [[Edna Mayne Hull]], were co-Guests of Honor at the fourth [[World Science Fiction Convention]],
41167
41168 In [[1980]], van Vogt received a &quot;Casper Award&quot; (precursor to the Canadian [[Aurora Award]]s) for Lifetime Achievement. In [[1995]] he was awarded the [[Damon Knight Memorial Grand Master Award]]. In [[1996]], van Vogt was recognized on two occasions: the [[World Science Fiction Convention]] presented him with a Special Award ''for six decades of golden age science fiction'', and the [[Science Fiction and Fantasy Hall of Fame]] included him among its initial four inductees.
41169
41170 ===Critical praise===
41171
41172 Famous science fiction author [[Philip K. Dick]] has said that van Vogt's stories spurred his interest in science fiction with their strange sense of the unexplained, that something more was going on than the protagonists realized.
41173
41174 In a review of ''Transfinite: The Essential A.E. van Vogt'', science fiction writer [[Paul Di Filippo]] said:
41175
41176 :''Van Vogt knew precisely what he was doing in all areas of his fiction writing. There's hardly a wasted word in his stories... His plots are marvels of interlocking pieces, often ending in real surprises and shocks, genuine paradigm shifts, which are among the hardest conceptions to depict. And the intellectual material of his fictions, the conceits and tossed-off observations on culture and human and alien behavior, reflect a probing mind...Each tale contains a new angle, a unique slant, that makes it stand out.'' &lt;br&gt; (DiFilippo, Paul, (2003) ''[http://www.scifi.com/sfw/issue326/books2.html Off The Shelf]'', Retrieved [[9 January]] [[2003]]).
41177
41178 ===Criticism===
41179
41180 Van Vogt's style has been criticized as confused and incoherent. Writer and critic [[Damon Knight]] wrote in [[1945]] that &quot;van Vogt is not a giant as often mantained. He's only a pygmy using a giant typewriter&quot;.
41181
41182 His technical knowledge seems questionable. Examples:
41183
41184 *In ''Cosmic Encounter'', one result of the crash of an alien spaceship is the generation of a temperature of minus 50,000 degrees, well below [[absolute zero]].
41185 *The title of his story collection ''M33 in Andromeda'' is incorrect; M33 is in [[Triangulum]], M31 (the [[Andromeda Galaxy]]) is in [[Andromeda (constellation)|Andromeda]].
41186 *The popular short story ''Vault of the Beast'' hinges on the concept of the largest [[prime number]]; it was demonstrated as far back as [[Ancient Greece]] that the series of primes is infinite.
41187
41188 ==Bibliography==
41189
41190 ===Novels===
41191
41192 * ''[[Slan]]'' ([[1946]])
41193 * ''[[The Book of Ptath]]'' ([[1947]])
41194 * ''[[The World of Null-A]]'' ([[1948]])
41195 * ''[[The House That Stood Still]]'' ([[1950]])
41196 * ''[[Masters of Time]]'' ([[1950]])
41197 * ''[[The Voyage of the Space Beagle]]'' ([[1950]])
41198 * ''[[The Weapon Shops of Isher]]'' (1951)
41199 * ''[[Mission to the Stars]]'' ([[1952]])
41200 * ''[[The Universe Maker]]'' ([[1953]])
41201 * ''[[Planets for Sale]]'' ([[1954]]) (with [[Edna Mayne Hull]])
41202 * ''[[The Players of Null-A]]'' ([[1956]]) also published as ''The Pawns of Null-A''
41203 * ''[[The Mind Cage]]'' ([[1957]])
41204 * ''[[Empire of the Atom]]'' ([[1957]])
41205 * ''[[Siege of the Unseen]]'' ([[1959]])
41206 * ''[[The War against the Rull]]'' ([[1959]])
41207 * ''[[Earth's Last Fortress]]'' ([[1960]])
41208 * ''[[The Wizard of Linn]]'' ([[1962]])
41209 * ''[[The Violent Man]]'' ([[1962]])
41210 * ''[[The Beast (novel)|The Beast]]'' ([[1963]])
41211 * ''[[The Twisted Men]]'' ([[1964]])
41212 * ''[[Rogue Ship]]'' ([[1965]])
41213 * ''[[The Winged Man]]'' ([[1966]])
41214 * ''[[Moonbeast]]'' ([[1969]])
41215 * ''[[The Silkie]]'' ([[1969]])
41216 * ''[[Children of Tomorrow]]'' ([[1970]])
41217 * ''[[Quest for the Future]]'' ([[1970]])
41218 * ''[[The Battle of Forever]]'' ([[1971]])
41219 * ''[[More Than Superhuman]]'' ([[1971]])
41220 * ''[[The Darkness on Diamondia]]'' ([[1972]])
41221 * ''[[Future Glitter]]'' ([[1973]])
41222 * ''[[The Man with a Thousand Names]]'' ([[1974]])
41223 * ''[[The Secret Galactics]]'' ([[1974]]); also published as ''Earth Factor X''
41224 * ''[[Supermind (novel)|Supermind]]'' ([[1974]])
41225 * ''[[The Anarchistic Colossus]]'' ([[1977]])
41226 * ''[[The Enchanted Village]]'' ([[1979]]) (chapbook)
41227 * ''[[Renaissance (novel)|Renaissance]]'' ( [[1979]])
41228 * ''[[Cosmic Encounter (novel)|Cosmic Encounter]]'' ([[1980]])
41229 * ''[[Computerworld (novel)|Computerworld]]'' ([[1983]])
41230 * ''[[Computer Eye]]'' ([[1983]])
41231 * ''[[Null-A Three]]'' ([[1985]])
41232 * ''[[To Conquer Kiber]]'' ([[1987]])
41233
41234 ===Collections===
41235
41236 * ''M33 in Andromeda'' ([[1943]])
41237 * ''Out of the Unknown'' ([[1948]]) (with [[Edna Mayne Hull]])
41238 * ''Away and Beyond'' ([[1952]])
41239 * ''Destination: Universe!'' ([[1952]])
41240 * ''The Far-Out Worlds of A. E. van Vogt'' ([[1956]])
41241 * ''Monsters'' ([[1965]])
41242 * ''The Van Vogt Omnibus'' (omnibus - [[1967]])
41243 * ''The Sea Thing and Other Stories'' ([[1970]])
41244 * ''The Proxy Intelligence and Other Mind Benders'' ([[1971]])
41245 * ''The Van Vogt Omnibus 2'' (omnibus - [[1971]])
41246 * ''The Book of Van Vogt'' ([[1972]])
41247 * ''Far Out Worlds of Van Vogt'' ([[1973]])
41248 * ''The Three Eyes of Evil Including Earth's Last Fortress'' ([[1973]])
41249 * ''The Best of A. E. van Vogt'' ([[1974]])
41250 * ''[[The Gryb]]'' ([[1976]]) (with [[Edna Mayne Hull]])
41251 * ''[[Pendulum (novel)|Pendulum]]'' ([[1978]])
41252 * ''The Best of A. E. van Vogt 1949-1968'' ([[1979]])
41253 * ''Lost: Fifty Suns'' ([[1979]])
41254 * ''The Best of A E van Vogt 1940-1948'' ([[1979]])
41255 * ''Futures Past: The Best Short Fiction of A.E. Van Vogt'' ([[1999]])
41256 * ''Essential A.E. van Vogt'' ([[2002]])
41257
41258 ===Non-fiction===
41259
41260 * ''The Hypnotism Handbook'' ([[1956]]) (with [[Charles Edward Cooke]])
41261 * ''The Money Personality'' ([[1975]])
41262 * ''Reflections of A. E. Van Vogt: The Autobiography of a Science Fiction Giant'' ([[1979]])
41263 * ''A Report on the Violent Male'' ([[1992]])
41264
41265 ==Reference==
41266
41267 * [http://www.isfdb.org/cgi-bin/ea.cgi?A._E._van_Vogt ISFDB.org] - 'A. E. van Vogt - Summary Bibliography (Long Works)', Internet Speculative Fiction Database
41268
41269 ==External links==
41270
41271 * [http://www.home.earthlink.net/~icshi/ Earthlink.net] - 'Icshi: the A.E. van Vogt information site'
41272 * [http://www.locusmag.com/2000/News/News01e.html LocusMag.com] - 'A.E. van Vogt, 1912 - 2000: Golden Age SF writer A.E. van Vogt died Wednesday, January&amp;nbsp;26 of complications of pneumonia'
41273 * [http://www.mmedia.is/vanvogt/ MMedia.is] - 'Weird Worlds of A. E. van Vogt: 1912-2000'
41274 * [http://nicollsbooks.com/vanvogt/index.html NicollsBooks.com] - 'Al's van Vogt pages', Alan Nicoll
41275 * [http://scifan.com/writers/vv/VanVogt.asp SciFan.com] - 'Writers: A. E. van Vogt (1912 - 2000, Canada)' (bibliography)
41276 * [http://www.scifi.com/sfw/issue326/books2.html SciFi.com] - 'Transfinite: The Essential A.E. van Vogt: Vast conceptions, startling actions and average people rendered into tomorrow's supermen', Paul Di Filippo
41277 * [http://www.smartgroups.com/group/group.cfm?GID=1768914 SmartGroups.com] - 'vanvogt' (van Vogt discussion group)
41278 * [http://home.kc.rr.com/bobfahey/vanvogt.htm Fansite]
41279 * [http://www-users.cs.york.ac.uk/~susan/sf/books/v/aevanvgt.htm list of works]
41280
41281
41282 [[Category:1912 births|Van Vogt, A. E.]]
41283 [[Category:2000 deaths|Van Vogt, A. E.]]
41284 [[Category:American writers|Van Vogt, A. E.]]
41285 [[Category:Canadian science fiction writers|Van Vogt, A. E.]]
41286 [[Category:Nebula Grand Masters|Van Vogt, A. E.]]
41287
41288
41289 [[bg:АĐģŅ„Ņ€ĐĩĐ´ ваĐŊ ВоĐŗŅ‚]]
41290 [[de:Alfred Elton van Vogt]]
41291 [[es:A. E. van Vogt]]
41292 [[eo:Alfred Elton VAN VOGT]]
41293 [[fr:A. E. van Vogt]]
41294 [[it:Alfred Elton van Vogt]]
41295 [[nl:A.E. van Vogt]]
41296 [[ja:AãƒģEãƒģãƒ´ã‚Ąãƒŗãƒģヴりãƒŧクト]]
41297 [[pl:Alfred Elton van Vogt]]
41298 [[ru:ВаĐŊ ВоĐŗŅ‚, АĐģŅŒŅ„Ņ€ĐĩĐ´]]
41299 [[sv:A. E. van Vogt]]
41300 [[th:āš€ā¸­.ā¸­ā¸ĩ. āšā¸§ā¸™ āš‚ā¸§ā¸ā¸—āšŒ]]
41301 [[zh:čŒƒÂˇæ˛ƒæ ŧį‰š]]</text>
41302 </revision>
41303 </page>
41304 <page>
41305 <title>April 1st RFC</title>
41306 <id>889</id>
41307 <revision>
41308 <id>37780926</id>
41309 <timestamp>2006-02-02T02:40:44Z</timestamp>
41310 <contributor>
41311 <ip>218.188.0.150</ip>
41312 </contributor>
41313 <comment>/* External links */ +zh:</comment>
41314 <text xml:space="preserve">Every [[April Fool's Day]] ([[1 April]]) since [[1989]], the [[Internet Engineering Task Force]] has published one or more humorous [[Request for Comments|RFC]] documents, following in the path blazed by the June [[1973]] RFC titled '''ARPAWOCKY'''. The following list also includes [[humor]]ous RFCs published on other dates.
41315
41316 == List of April 1st RFCs and other humorous RFCs ==
41317 * RFC 527 &amp;mdash; '''ARPAWOCKY'''. R. Merryman, [[University of California, San Diego|UCSD]]. [[22 June]] [[1973]]. A [[Lewis Carroll]] [[pastiche]].
41318 * RFC 748 &amp;mdash; '''[[Telnet|TELNET]] RANDOMLY-LOSE option'''. M.R. Crispin. [[1 April]] [[1978]]. A parody of the [[Internet protocol suite|TCP/IP]] documentation style.
41319 * RFC 968 &amp;mdash; '''Twas the night before start-up'''. V.G. Cerf, [[1 December]] [[1985]].
41320 * RFC 1097 &amp;mdash; '''[[Telnet|TELNET]] SUBLIMINAL-MESSAGE option'''. B. Miller. [[1 April]] [[1989]].
41321 * RFC 1149 &amp;mdash; '''Standard for the transmission of [[IP over Avian Carriers|IP datagrams on Avian Carriers]]'''. D. Waitzman. [[1 April]] [[1990]]. Updated by RFC 2549; see below. A deadpan skewering of standards-document [[legalese]], describing protocols for transmitting Internet data packets by [[carrier pigeon]].
41322 ** Fun fact: In [[2001]], RFC 1149 was actually implemented [http://www.blug.linux.no/rfc1149/] by members of the [[Bergen, Norway|Bergen (Norway)]] [[Linux]] User Group.
41323 * RFC 1216 &amp;mdash; '''Gigabit Network Economics and Paradigm Shifts'''. Poorer Richard, Prof. Kynikos. [[1 April]] [[1991]].
41324 * RFC 1217 &amp;mdash; '''Memo from the Consortium for Slow Commotion Research (CSCR)'''. [[Vint Cerf]]. [[1 April]] [[1991]].
41325 * RFC 1313 &amp;mdash; '''Today's Programming for KRFC AM 1313 Internet Talk Radio'''. C. Partridge. [[1 April]] [[1992]]. Certain portions of this RFC are obsolete: [[Doppler effect|Doppler shift]] while flying on the [[Concorde]] is no longer a problem.
41326 * RFC 1437 &amp;mdash; '''The Extension of [[MIME]] Content-Types to a New Medium'''. N. Borenstein, M. Linimon. [[1 April]] [[1993]].
41327 * RFC 1438 &amp;mdash; '''[[Internet Engineering Task Force]] Statements Of Boredom (SOBs)'''. A. Lyman Chapin, C. Huitema. [[1 April]] [[1993]].
41328 * RFC 1605 &amp;mdash; '''[[Synchronous optical networking|SONET]] to [[Sonnet]] Translation'''. [[William Shakespeare]]. [[1 April]] [[1994]].
41329 * RFC 1606 &amp;mdash; '''A Historical Perspective On The Usage Of IP Version 9'''. J. Onions. [[1 April]] [[1994]].
41330 * RFC 1607 &amp;mdash; '''A VIEW FROM THE 21ST CENTURY'''. [[Vint Cerf]]. [[1 April]] [[1994]].
41331 * RFC 1776 &amp;mdash; '''The Address is the Message'''. [[Steve Crocker]]. [[1 April]] [[1995]]. Without content, would we need [[information security]]?
41332 * RFC 1924 &amp;mdash; '''A Compact Representation of IPv6 Addresses'''. R. Elz. [[1 April]] [[1996]].
41333 * RFC 1925 &amp;mdash; '''The Twelve Networking Truths'''. R. Callon. [[1 April]] [[1996]].
41334 * RFC 1926 &amp;mdash; '''An Experimental Encapsulation of IP Datagrams on Top of ATM'''. J. Eriksson. [[1 April]] [[1996]].
41335 * RFC 1927 &amp;mdash; '''Suggested Additional MIME Types for Associating Documents'''. C. Rogers. [[1 April]] [[1996]].
41336 * RFC 2100 &amp;mdash; '''The Naming of Hosts'''. [[User:Baylink|J. Ashworth]]. [[1 April]] [[1997]].
41337 * RFC 2321 &amp;mdash; '''RITA -- The Reliable Internetwork Troubleshooting Agent'''. A. Bressen. [[1 April]] [[1998]].
41338 * RFC 2322 &amp;mdash; '''Management of IP numbers by peg-dhcp'''. K. van den Hout et al. [[1 April]] [[1998]].
41339 * RFC 2323 &amp;mdash; '''IETF Identification and Security Guidelines'''. A. Ramos. [[1 April]] [[1998]].
41340 * RFC 2324 &amp;mdash; '''[[Hyper Text Coffee Pot Control Protocol]] (HTCPCP/1.0)'''. L. Masinter. [[1 April]] [[1998]].
41341 * RFC 2325 &amp;mdash; '''Definitions of Managed Objects for Drip-Type Heated Beverage Hardware Devices using SMIv2'''. M. Slavitch. [[1 April]] [[1998]].
41342 * RFC 2549 &amp;mdash; '''[[IP over Avian Carriers]] with Quality of Service'''. D. Waitzman. [[1 April]] [[1999]]. Updates RFC 1149, listed above.
41343 * RFC 2550 &amp;mdash; '''Y10K and Beyond'''. S. Glassman, M. Manasse, J. Mogul. [[1 April]] [[1999]].
41344 * RFC 2551 &amp;mdash; '''The Roman Standards Process -- Revision III'''. S. Bradner. [[1 April]] [[1999]].
41345 * RFC 2795 &amp;mdash; '''The Infinite Monkey Protocol Suite (IMPS)'''. S. Christey. [[1 April]] [[2000]].
41346 * RFC 3091 &amp;mdash; '''Pi Digit Generation Protocol'''. H. Kennedy. [[1 April]] [[2001]].
41347 * RFC 3092 &amp;mdash; '''Etymology of &quot;Foo&quot;'''. D. Eastlake 3rd, C. Manros, [[Eric S. Raymond|E. Raymond]]. [[1 April]] [[2001]].
41348 * RFC 3093 &amp;mdash; '''Firewall Enhancement Protocol (FEP)'''. M. Gaynor, S. Bradner. [[1 April]] [[2001]].
41349 * RFC 3251 &amp;mdash; '''Electricity over IP'''. B. Rajagopalan. [[1 April]] [[2002]].
41350 * RFC 3252 &amp;mdash; '''''B''inary ''L''exical ''O''ctet ''A''d-hoc ''T''ransport'''. H. Kennedy. [[1 April]] [[2002]].
41351 * RFC 3514 &amp;mdash; '''The Security Flag in the IPv4 Header (Evil Bit)'''. S. Bellovin. [[1 April]] [[2003]].
41352 * RFC 3751 &amp;mdash; '''Omniscience Protocol Requirements'''. S. Bradner [[1 April]] [[2004]].
41353 * RFC 4041 &amp;mdash; '''Requirements for Morality Sections in Routing Area Drafts'''. A. Farrel. [[1 April]] [[2005]].
41354 * RFC 4042 &amp;mdash; '''[[UTF-9 and UTF-18]] Efficient Transformation Formats of Unicode'''. M. Crispin. [[1 April]] [[2005]].
41355
41356 == Source ==
41357 {{FOLDOC}}
41358
41359 ==External links==
41360 * [http://cio.co.nz/cio.nsf/0/ab70aab0de0cba74cc256fd2007ff140?OpenDocument&amp;More=Special%20Feature&amp;Click= CIO Magazine commentary] on RFC 3751 and [[1 April]] RFCs in general
41361
41362 [[Category:April Fool's Day]]
41363
41364 [[ko:만ėš°ė ˆ RFC]]
41365 [[is:RFC aprílgabb]]
41366 [[ru:ПĐĩŅ€Đ˛ĐžĐ°ĐŋŅ€ĐĩĐģŅŒŅĐēиĐĩ RFC]]
41367 [[zh:æƒĄæžRFC]]</text>
41368 </revision>
41369 </page>
41370 <page>
41371 <title>Anna Kournikova</title>
41372 <id>890</id>
41373 <revision>
41374 <id>41766222</id>
41375 <timestamp>2006-03-01T16:20:09Z</timestamp>
41376 <contributor>
41377 <username>Cactus.man</username>
41378 <id>264914</id>
41379 </contributor>
41380 <minor />
41381 <comment>Reverted edits by [[Special:Contributions/64.132.172.213|64.132.172.213]] to last version by Dunne409</comment>
41382 <text xml:space="preserve">[[Image:Anna Kournikova.jpg|thumb|right|260px|Anna Kournikova on the cover of [[Maxim (magazine)|''Maxim'' magazine]] in 2004.]]
41383 '''Anna Sergeyevna Kournikova''' ([[Russian (language)|Russian]]: '''АĐŊĐŊĐ° ĐĄĐĩŅ€ĐŗĐĩĐĩвĐŊĐ° КŅƒŅ€ĐŊиĐēОва''', ''Ánna SergÊyevna KÃērnikova;'' born [[June 7]], [[1981]]) was a professional [[tennis]] player. She was one of the best known tennis players, even among those who do not follow the game. Anna was born in [[Moscow]], [[Russia]] to Alla and Sergei Kournikov; her family later emigrated to the [[United States]], and she currently resides in [[Miami, Florida]]. Anna's major-league tennis career has been curtailed for the past several years by serious back &amp; spinal problems, and this might be the end of it. Anna has had some success at the singles game, but her specialty has been doubles, where she has become the world's #1 doubles player at times, and she has won Grand Slam titles in [[Australia]] in 1999 and 2002, with [[Martina Hingis]] as her partner. With Anna's being taller than the average tennis player, and being strong at the net and at the serve, she fits well into doubles. [Other comparable players have been [[Pam Shriver]] and [[Peter Fleming]], with numerous doubles championships to their credit, playing with shorter partners, such as [[Martina Navratilova]] and [[John McEnroe]]. With their skill and good looks, Anna and Martina jestingly called themselves &quot;The Spice Girls of Tennis&quot;.
41384
41385 ==Tennis career==
41386 [[Image:Anna Kournikova plait.jpg|thumb|left|Playing tennis.]]
41387 Kournikova dazzled the world at age 13 and 14 in international junior tennis, winning several tournaments including the [[1995]] [[Rome Masters|Italian Open]]. Kournikova was 14 years old when she ended 1995 as Junior European Champion Under 18 and ITF Junior World Champion Under 18.
41388
41389 Kournikova debuted in professional tennis at age 14 in the [[Fed Cup]] for Russia, the youngest player ever to participate and win. At age 15, she reached the fourth round of the 1996 [[U.S. Open (tennis)|U.S. Open]], only to be stopped by then-top ranked player [[Steffi Graf]].
41390
41391 Kournikova was a member of the Russian delegation to the [[1996 Olympic Games]] in [[Atlanta, Georgia]]. In 1997, as a 16-year old, she reached the semi-finals of [[Wimbledon Championships|Wimbledon]], where she lost to the eventual champion, [[Martina Hingis]] by a score of 6-3, 6-2. 1998 was her breakthrough year, when she broke into the [[Women's Tennis Association|WTA]]'s top 20 rankings for the first time and scored impressive victories over [[Martina Hingis]], [[Lindsay Davenport]], and [[Steffi Graf]]. Kournikova's two [[Grand Slam in tennis|Grand Slam]] doubles titles came in [[1999]] and [[2002]], both at the [[Australian Open]] in the Women's Doubles event with partner [[Martina Hingis]], with whom she played frequently starting in 1999.
41392
41393 Kournikova proved a successful doubles player on the professional circuit, winning 16 tournament doubles titles, including two Australian Opens and being a finalist in mixed doubles at the [[U.S. Open]] and at Wimbledon, and reaching #1 ranking in doubles in the [[Women's Tennis Association]] tour rankings. Her pro career doubles record was 200-71. However, her singles career plateaued after 1999. For the most part, she managed to retain her ranking between #10 and #15 (her career high singles ranking was #8), but her expected finals breakthrough failed to occur; she only reached four finals out of 130 singles tournaments, never in a Grand Slam event, and never won one. One contributing factor might have been her habit of entering high-profile events with strong fields of elite players. As a player, Kournikova was noted for her excellent footspeed and aggressive baseline play; however, her flat, high-risk groundstrokes tended to produce high numbers of errors and her serve was sometimes unreliable in singles. [Anyone who wins big at doubles MUST serve well.] She had a record of 209-129 as a singles player.
41394
41395 Her final playing years were marred by a string of injuries, especially back injuries, which saw her ranking gradually erode. Kournikova has not played on the WTA tour since 2003, but still plays exhibition matches for charitable causes. In late 2004, she participated in three events organized by [[Elton John]] and by fellow tennis stars and good friends [[Serena Williams]] and [[Andy Roddick]]. In January [[2005]], she played in a doubles charity event for the [[Indian Ocean tsunami]] with [[John McEnroe]], Roddick, and [[Chris Evert]].
41396
41397 Anna was also a member of the Newport Beachbreakers in the World Team Tennis (WTT) competition in July and November 2005, playing doubles only. In November 2005 she teamed up with [[Martina Hingis]] playing against [[Lisa Raymond]] and [[Samantha Stosur]] in the WTT finals for charity. In a feature for ''[[Elle]]'' magazine's July 2005 issue, Kournikova stated that if she were 100% fit, she would like to come back and compete again.
41398
41399 ==Media publicity==
41400 [[Image:anna12.jpg|right|200px|thumb|Kournikova on the July, 2000 cover of [[Sports Illustrated]]]]Much of Anna's fame -- more, many have argued, than she ever gained in her tennis career -- has come from the publicity surrounding her personal life as well as numerous modeling shoots. During her debut at the 1996 U.S. Open 1996 at the age of 15, Kournikova's physical beauty was noticed by the world and soon pictures of her appeared in numerous magazines all over the planet. Anna has fine facial features and an attractive body, topped off by long blonde hair, sometimes braided into a meter-long queue (pony tail).
41401
41402 Many media outlets have reported that Kournikova was very briefly married to NHL hockey star [[Sergei Fedorov]] during the summer of 2001, though her agent and family deny this claim. A number of her relationships with other [[celebrity|celebrities]], including involvements with [[pop music|pop star]] [[Enrique Iglesias]] (whose video, ''Escape'', she appeared in) and hockey player [[Pavel Bure]], have also featured prominently in the [[tabloid|tabloid press]].
41403
41404 In 2000 Anna became the new face for [[Berlei]]'s shock absorber sports bras range, and appeared in the highly successful &quot;only the ball should bounce&quot; bill board campaign. Photographs of her scantily-clad form have appeared in various [[List of men's magazines|men's magazine]]s, including more than one much-publicized [[Sports Illustrated Swimsuit Issue]]s (2004-05), where she posed in bikinis and swimsuits, and in other popular men's publications such as ''[[FHM]]'' and ''[[Maxim (magazine)|Maxim]]''. So far, she has not posed topless or nude for any publications.
41405
41406 Kournikova was named one of ''[[People (magazine)|People]]'''s 50 Most Beautiful People in [[1998]], [[2000]], [[2002]], and [[2003]]. She has also been voted &quot;hottest female athlete&quot; and &quot;hottest couple&quot; (with Iglesias) on [[ESPN.com]] and 2003's &quot;sexiest woman in the world&quot; by worldwide [[FHM]] readers for. By contrast, [[ESPN]] -- citing the degree of hype as compared to actual accomplishments as a singles player -- ranked Anna 18&lt;sup&gt;th&lt;/sup&gt; in its &quot;25 Biggest Sports Flops of the Past 25 Years&quot;.
41407
41408 Kournikova had a small role (as a motel manager) in the 2000 film ''[[Me, Myself and Irene]]'', starring [[Jim Carrey]].
41409
41410 ==Books==
41411 *''Anna Kournikova'' by Susan Holden (2001)
41412 *''Anna Kournikova (Women Who Win)'' by Connie Berman
41413
41414 ==External links==
41415 *[http://www.kournikova.com/ Official web site]
41416 :*[http://www.kournikova.com/journal/ Her weblog]
41417 *{{imdb name|id=0468045|name=Anna Kournikova}}
41418 *[http://sports.quickfound.net/anna_kournikova_biography_index.html Comprehensive biography]
41419 *[http://www.celebrityworld.tv/anna_kournikova.html Anna's Photos]
41420 *[http://www.askmaki.com/anna_kournikova_video.html Anna Kournikova calendar shoot video]
41421
41422
41423 [[Category:1981 births|Kournikova, Anna]]
41424 [[Category:Living people|Kournikova, Anna]]
41425 [[Category:Russian tennis players|Kournikova, Anna]]
41426 [[Category:Russian bloggers|Kournikova, Anna]]
41427 [[Category:Russian models|Kournikova, Anna]]
41428 [[Category:Russian film actors|Kournikova, Anna]]
41429 [[Category:Australian Open champions|Kournikova, Anna]]
41430
41431 [[bg:АĐŊĐŊĐ° КŅƒŅ€ĐŊиĐēОва]]
41432 [[da:Anna Kournikova]]
41433 [[de:Anna Sergejewna Kurnikowa]]
41434 [[fr:Anna Kournikova]]
41435 [[he:אנה קורניקובה]]
41436 [[nl:Anna Kournikova]]
41437 [[ja:ã‚ĸãƒŗナãƒģクãƒĢニã‚ŗワ]]
41438 [[no:Anna Kournikova]]
41439 [[pl:Anna Kurnikowa]]
41440 [[pt:Anna Kournikova]]
41441 [[ru:КŅƒŅ€ĐŊиĐēОва, АĐŊĐŊĐ° ĐĄĐĩŅ€ĐŗĐĩĐĩвĐŊĐ°]]
41442 [[fi:Anna Kurnikova]]
41443 [[sv:Anna Kournikova]]
41444 [[bs:Ana Kurnikova]]</text>
41445 </revision>
41446 </page>
41447 <page>
41448 <title>Accounting</title>
41449 <id>891</id>
41450 <revision>
41451 <id>15899404</id>
41452 <timestamp>2005-02-05T20:49:16Z</timestamp>
41453 <contributor>
41454 <ip>24.73.149.165</ip>
41455 </contributor>
41456 <text xml:space="preserve">#REDIRECT [[Accountancy]]</text>
41457 </revision>
41458 </page>
41459 <page>
41460 <title>Alfons Maria Jakob</title>
41461 <id>892</id>
41462 <revision>
41463 <id>41774975</id>
41464 <timestamp>2006-03-01T17:37:05Z</timestamp>
41465 <contributor>
41466 <ip>68.225.130.131</ip>
41467 </contributor>
41468 <text xml:space="preserve">'''Alfons Maria Jakob''' ([[July 2]], [[1884]] &amp;ndash; [[October 17]], [[1931]]) was a [[Germany|German]- Jewish] [[neurologist]]. He was the first to recognize and describe [[Alper's disease]] and [[Creutzfeldt-Jakob disease]] (the latter with [[Hans Gerhard Creutzfeldt]]) and helped greatly in the description of various other neurological illnesses.
41469
41470 {{med-bio-stub}}
41471 [[Category:1884 births|Jakob, Alfons Maria]]
41472 [[Category:1931 deaths|Jakob, Alfons Maria]]
41473 [[Category:Neurologists|Jakob, Alfons Maria]]
41474
41475 [[de:Alfons Maria Jakob]]
41476 [[nl:Alfons Maria Jakob]]</text>
41477 </revision>
41478 </page>
41479 <page>
41480 <title>Atheism</title>
41481 <id>893</id>
41482 <restrictions>move=:edit=</restrictions>
41483 <revision>
41484 <id>42140957</id>
41485 <timestamp>2006-03-04T02:18:13Z</timestamp>
41486 <contributor>
41487 <username>JuniorMuruin</username>
41488 <id>410029</id>
41489 </contributor>
41490 <minor />
41491 <comment>/* Types and typologies of atheism */</comment>
41492 <text xml:space="preserve">{{redirect|Atheist|the band|[[Atheist (band)]]}}
41493 '''Atheism''', in its broadest sense, is an absence of belief in the existence of [[deity|gods]]. This definition includes as atheists both those who assert that there are no gods, and those who make no claim about whether gods exist or not. Narrower definitions, however, often only qualify those who assert there are no gods as atheists, labeling the others as [[nontheism|nontheists]] or [[Agnosticism|agnostics]].
41494
41495 Although atheists often share common concerns regarding [[empiricism|empirical]] evidence and the [[scientific method]] of investigation and a large number are [[scientific skepticism|skeptics]], there is no single [[ideology]] that all atheists share. Additionally, there are certain individuals whose [[Religion|religious]] or [[spirituality|spiritual]] beliefs some might describe as atheistic, though those holding such beliefs do not normally describe themselves as atheists.
41496
41497 Atheism should not be confused with the related, but not equivalent, position of [[antitheism]], as many atheists do not directly oppose theism.
41498
41499 ==Etymology==
41500 In early [[Ancient Greek]], the adjective ''atheos'' (from [[privative a|privative ''a-'']] + ''theos'' &quot;gods&quot;) meant &quot;without gods&quot; or &quot;lack of belief in gods&quot;. The word acquired an additional meaning in the [[5th century BCE]], expressing a total lack of relations with the gods; that is, &quot;denying the gods, godless, ungodly&quot;, with more active connotations than ''asebēs'', &quot;impious&quot;. Modern translations of classical texts sometimes translate ''atheos'' as &quot;atheistic&quot;. As an abstract noun, there was also ''atheotēs'': &quot;atheism&quot;. [[Cicero]] transliterated ''atheos'' into [[Latin]]. The discussion of ''atheoi'' was pronounced in the debate between early Christians and pagans, who each attributed atheism to the other.
41501
41502 A.B. Drachmann (1922) notes:
41503
41504 &lt;blockquote&gt;Atheism and atheist are words formed from Greek roots and with Greek derivative endings. Nevertheless they are not Greek; their formation is not consonant with Greek usage. In Greek they said ''atheos'' and ''atheotes''; to these the English words ungodly and ungodliness correspond rather closely. In exactly the same way as ungodly, ''atheos'' was used as an expression of severe censure and moral condemnation; this use is an old one, and the oldest that can be traced. Not till later do we find it employed to denote a certain philosophical creed. (p.5)&lt;/blockquote&gt;
41505
41506 In [[English language|English]], the term ''atheism'' is the result of the adoption of the [[French language|French]] ''athÊisme'' in about 1587. The term ''atheist'' in the sense of &quot;one who denies or disbelieves&quot; actually predates atheism, being first attested in about 1571 (the phrase ''Italian atheoi'' is recorded as early as 1568). ''Atheist'' in the sense of practical godlessness was first attested in 1577. The French word is derived from ''athÊe'', &quot;godless, atheist&quot;, which in turn is from the [[Greek language|Greek]] ''atheos''. The words ''deist'' and ''theist'' entered English after ''atheism'', being first attested in 1621 and 1662, respectively, with ''[[theism]]'' and ''[[deism]]'' following in 1678 and 1682, respectively. ''Deism'' and ''theism'' exchanged meanings around 1700 due to the influence of ''atheism''. ''Deism'' was originally used with a meaning comparable to today's ''theism'', and vice-versa.
41507
41508 The [[Oxford English Dictionary]] also records an earlier irregular formation, ''atheonism'', dated from about 1534. The later and now obsolete words ''athean'' and ''atheal'' are dated to 1611 and 1612, respectively.
41509
41510 ==Types and typologies of atheism==
41511 Many people have disagreed on how best to characterize atheism, and much of the literature on the subject is erroneous or confusing. There are many discrepancies in the use of terminology between proponents and opponents of atheism, and even divergent definitions among those who share near-identical beliefs.
41512
41513 Among proponents of atheism and neutral parties, there are two major traditions in defining atheism and its subdivisions. The first tradition understands atheism very broadly, as including both those who believe gods don't exist (''[[strong atheism]]'') and those who are simply not theists (''[[weak atheism]]''). [[George H. Smith]], [[Michael Martin (philosopher)|Michael Martin]], and (formerly) [[Antony Flew]] fall into this tradition, though they do not use the same terminology. (Flew has recently adopted a form of [[deism]].)
41514
41515 The second tradition understands atheism more narrowly, as the conscious rejection of theism, and does not consider absence of theistic belief or suspension of judgment concerning theism to be forms of atheism. [[Ernest Nagel]], [[Paul Edwards (philosopher)|Paul Edwards]] and [[Kai Nielsen]] are prominent members of this camp. Using this definition of atheism, &quot;[[Atheism#Implicit and explicit atheism|implicit atheism]]&quot;, lack of theism without the conscious rejection of it, may not be regarded as atheistic at all, and the umbrella term ''[[nontheism]]'' may be used in its place.
41516
41517 A third tradition, more common among laypeople, understands atheism even more narrowly than that. Here, atheism is defined in the strongest possible terms, as the belief that there is no god. Such usage is not exclusive to laypeople, however--atheist philosopher Theodore Drange uses the narrow definition [http://www.infidels.org/library/modern/theodore_drange/defending.html].
41518
41519 ===Atheism as lack of theism===
41520 Among modern atheists, the view that atheism means &quot;without [or, polemically, &quot;free of&quot;] theistic beliefs&quot; has a great deal of currency. This very broad definition is justified by reference to etymology as well as consistent usage of the word by atheists.
41521
41522 However, this definition of atheism has not gone unchallenged. Although, over the last few hundred years, atheism has evolved and broadened beyond the narrow meaning of &quot;wickedness&quot;, impiety, heresy and religious denial, as well as [[pantheism]] and similar beliefs, it is less commonly understood to include everything not explicitly theistic. Whether a writer's definition of atheism as an &quot;absence&quot; or &quot;lack&quot; of theistic belief is in fact intended to mean &quot;not theistic&quot; in the widest possible sense, or just refers to particular forms of the rejection of theism (see below), is often ambiguous.
41523
41524 However, while this definition of atheism is frequently disputed, it is not a recent invention; this use has a history spanning over 230 years. Two atheist writers who are clear in defining atheism so broadly that uninformed children are counted as atheists are d'Holbach (1772) (&quot;All children are born Atheists; they have no idea of God&quot; [http://www.gutenberg.org/dirs/etext05/gsens10.txt]) and George H. Smith (1979).
41525
41526 According to Smith,
41527
41528 &lt;blockquote&gt;The man who is unacquainted with theism is an atheist because he does not believe in a god. This category would also include the child without the conceptual capacity to grasp the issues involved, but who is still unaware of those issues. The fact that this child does not believe in god qualifies him as an atheist. (p.14) [http://www.positiveatheism.org/writ/smith.htm] &lt;/blockquote&gt;
41529
41530 One atheist writer who explicitly disagrees with such a broad definition is Ernest Nagel (1965):
41531
41532 &lt;blockquote&gt;Atheism is not to be identified with sheer unbelief... Thus, a child who has received no religious instruction and has never heard about God, is not an atheist - for he is not denying any theistic claims. (p.460-461)&lt;/blockquote&gt;
41533
41534 For Nagel, atheism is the ''rejection'' of theism, not just the absence of theistic belief. However, this definition leaves open the question of what term can be used to describe those who lack theistic belief, but do not necessarily reject theism.
41535
41536 The obsolete word ''atheous'', first recorded in the [[Oxford English Dictionary]] as a synonym of atheism or impiety, is sometimes used to mean &quot;not dealing with the existence of a god&quot; in a purely privative sense, as distinguished from the negative ''atheistic''. This 1880 coinage captures some of what is intended by the broad definition of atheism, though it is hard to sustain the claim that the philosophical rejection of theism can be characterized in such terms.
41537
41538 ====Implicit and explicit atheism====
41539 [[Image:Atheismimplicitexplicit2.PNG|thumb|230px|A chart showing the relationship between the weak/strong (positive/negative) and implicit/explicit dichotomies. Strong atheism is always explicit, and implicit atheism is always weak.]]
41540 The terms ''implicit atheism'' and ''explicit atheism'' were coined by George H. Smith (1979, p.13-18).
41541
41542 Implicit atheism is defined by Smith as &quot;the absence of theistic belief without a conscious rejection of it.&quot; Explicit atheism is defined as &quot;the absence of theistic belief due to a conscious rejection of it&quot;, which, according to Smith, is sometimes called ''antitheism'' (see below).
41543
41544 For Smith, explicit atheism is subdivided further according to whether or not the rejection is on rational grounds. The term ''critical atheism'' is used to label the view that belief in god is irrational, and is itself subdivided into a) the view usually expressed by the statement &quot;I do not believe in the existence of a god or supernatural being&quot;; b) the view usually expressed by the statement, &quot;god does not exist&quot; or &quot;the existence of god is impossible&quot;; and c) the view which &quot;refuses to discuss the existence or nonexistence of a god&quot; because &quot;the concept of a god is unintelligible&quot; (p.17).
41545
41546 Although Nagel rejects Smith's definition of atheism as merely &quot;lack of theism&quot;, acknowledging only explicit &quot;atheism&quot; as true atheism, his tripartite classification of ''rejectionist atheism'' (commonly found in the philosophical literature) is identical to Smith's ''critical atheism'' typology.
41547
41548 The difference between Nagel on the one hand and d'Holbach and Smith on the other has been attributed to the different concerns of professional philosophers and layman proponents of atheism (see Smith (1990, Chapter 3, p.51-60 [http://www.positiveatheism.org/writ/smithdef.htm]), for example, but also alluded to by others).
41549
41550 Everitt (2004) makes the point that professional philosophers are more interested in the grounds for giving or withholding assent to propositions:
41551
41552 &lt;blockquote&gt;We need to distinguish between a ''biographical'' or ''sociological'' enquiry into why some people have believed or disbelieved in God, and an ''epistemological'' enquiry into whether there are any good reasons for either belief or unbelief... We are interested in the question of what ''good reasons'' there are for or against God's existence, and no light is thrown on that question by discovering people who hold their beliefs without having good reasons for them. (p.10) &lt;/blockquote&gt;
41553
41554 So, in philosophy (Flew and Martin notwithstanding), atheism is commonly defined along the lines of &quot;rejection of theistic belief&quot;. This is often misunderstood to mean only the view that there is no God, but it is conventional to distinguish between two or three main sub-types of atheism in this sense (writers differ in their characterization of this distinction, and in the labels they use for these positions).
41555
41556 The terms ''weak atheism'' and ''strong atheism'' (or ''negative atheism'' and ''positive atheism'') are often used as synonyms of Smith's less-well-known ''implicit'' and ''explicit'' categories. However, the original and technical meanings of implicit and explicit atheism are quite different and distinct from weak and strong atheism, having to do with conscious rejection and unconscious rejection of theism rather than with positive belief and negative belief.
41557
41558 People who do not use the broad definition of atheism as &quot;lack of theism&quot;, but instead use the most common definition &quot;disbelief in or denial of the existence of God or gods&quot; [http://dictionary.reference.com/search?q=atheism] would not recognize mere absence of belief in deities (implicit atheism) as a type of atheism at all, and would tend to use other terms, such as &quot;skeptic&quot; or &quot;agnostic&quot; or &quot;non-atheistic nontheism&quot;, for this position.
41559
41560 ===Atheism as immorality===
41561 The first attempts to define or develop a typology of atheism were in religious apologetics. These attempts were expressed in terminologies and in contexts which reflected the religious assumptions and prejudices of the writers. A diversity of atheist opinion has been recognized at least since [[Plato]], and common distinctions have been established between ''practical atheism'' and ''speculative'' or ''contemplative atheism''.
41562
41563 ====Practical atheism====
41564 Practical atheism was said to be caused by moral failure, hypocrisy, willful ignorance and infidelity. Practical atheists ''behaved'' as though God, morals, ethics and social responsibility did not exist. Maritain's typology of atheism (1953, Chapter 8) proved influential in Catholic circles; it was followed in the ''New Catholic Encyclopedia'' (see Reid (1967)). He identified, in addition to practical atheism, ''pseudo-atheism'' and ''absolute atheism'' (and subdivided theoretical atheism in a way that anticipated Flew). For an atheist critique of Maritain, see Smith (1979, Chapter 1, Section 5) [http://www.positiveatheism.org/writ/smith.htm].
41565
41566 According to the French Catholic philosopher Étienne Borne (1961, p.10), &quot;Practical atheism is not the denial of the existence of God, but complete godlessness of action; it is a moral evil, implying not the denial of the absolute validity of the moral law but simply rebellion against that law.&quot;
41567
41568 According to [[Karen Armstrong]] (1999):
41569
41570 &lt;blockquote&gt; During the sixteenth and seventeenth centuries, the word 'atheist' was still reserved exclusively for polemic... In his tract ''Atheism Closed and Open Anatomized'' (1634), John Wingfield claimed: &quot;the hypocrite is an Atheist; the loose wicked man is an open Atheist; the secure, bold and proud transgressor is an Atheist: he that will not be taught or reformed is an Atheist&quot;. For the [[Wales|Welsh]] poet [[William Vaughan]] (1577 [sic]-1641), who helped in the colonisation of [[Newfoundland]], those who raised rents or enclosed commons were obvious atheists. The English dramatist [[Thomas Nashe]] (1567-1601) proclaimed that the ambitious, the greedy, the gluttons, the vainglorious and prostitutes were all atheists. The term 'atheist' was an insult. Nobody would have dreamed of calling ''himself'' an atheist. (p.331-332) &lt;/blockquote&gt;
41571
41572 On the other hand, the existence of serious speculative atheism was often denied. That anyone might ''reason'' their way to atheism was thought to be impossible. Thus, speculative atheism was collapsed into a form of practical atheism, or conceptualized as hatred of God, or a fight against God. This is why Borne finds it necessary to say, &quot;to put forward the idea, as some apologists rashly do, that there are no atheists except in name but only 'practical atheists' who through pride or idleness disregard the divine law, would be, at least at the beginning of the argument, a rhetorical convenience or an emotional prejudice evading the real question.&quot; (p.18)
41573
41574 Martin (1990, p.465-466) suggests that practical atheism would be better described as ''alienated theism''.
41575
41576 ====Other pejorative definitions of atheism====
41577 When denial of the existence of &quot;speculative&quot; atheism became unsustainable, atheism was nevertheless often repressed and criticized by narrowing definitions, applying charges of dogmatism, and otherwise misrepresenting atheist positions. One of the reasons for the popularity of euphemistic alternative terms like [[secularism|secularist]], [[empiricism|empiricist]], [[agnosticism|agnostic]], or [[bright (noun)|bright]] is that ''atheism'' still has pejorative connotations arising from attempts at suppression and from its association with practical atheism (''godless'' is still used as an abusive epithet).
41578
41579 Mynga Futrell and Paul Geisert, the originators of the term ''Bright'', made this explicit in an essay published in 2003:
41580
41581 &lt;blockquote&gt;Our personal frustration regarding labels reached culmination last fall when we were invited to join a march on Washington as &quot;Godless Americans.&quot; The causes of the march were worthy, and the march itself well planned and conducted. However, to unite for common interests under a disparaging term like godless (it also means &quot;wicked&quot;) seemed ludicrous! Why accept and utilize the very derogatory language that so clearly hampers our own capacity to play a positive and contributing role in our communities and in the nation and world? [http://www.the-brights.net/vision/essays/futrell_geisert_nix.html]&lt;/blockquote&gt;
41582
41583 Gaskin (1989) abandoned the term ''atheism'' in favour of ''unbelief'', citing &quot;the pejorative associations of the term, its vagueness, and later the tendency of religious apologists to define atheism so that no one could be an atheist...&quot; (p.4)
41584
41585 Despite these considerations, for others ''atheist'' has always been the preferred name. [[Charles Bradlaugh]] once said (in debate with [[George Jacob Holyoake]], [[10 March]] [[1870]], cited in Bradlaugh Bonner (1908)):
41586
41587 &lt;blockquote&gt;I maintain that the opprobrium cast upon the word Atheism is a lie. I believe Atheists as a body to be men deserving respect... I do not care what kind of character religious men may put round the word Atheist, I would fight until men respect it. (p.334) &lt;/blockquote&gt;
41588
41589 For more on repressive definitions of atheism, see Berman (1982), (1983), (1990).
41590
41591 ===Weak and strong atheism===
41592 :''Main articles: [[Weak atheism]], [[Strong atheism]]''
41593
41594 ''[[Weak atheism]]'', sometimes called ''soft atheism'', ''negative atheism'' or ''neutral atheism'', is the absence of belief in the existence of [[deity|deities]] without the positive assertion that deities do not exist. ''[[Strong atheism]]'', also known as ''hard atheism'' or ''positive atheism'', is the belief that no deities exist.
41595
41596 While the terms ''weak'' and ''strong'' are relatively recent, the concepts they represent have been in use for some time. In earlier philosophical publications, the terms ''negative atheism'' and ''positive atheism'' were more common; these terms were used by [[Antony Flew]] in 1972, although [[Jacques Maritain]] (1953, Chapter 8, p.104) used the phrases in a similar, but strictly Catholic apologist, context as early as 1949 [http://www.nd.edu/Departments/Maritain/jm3303.htm].
41597
41598 Although explicit atheists ([[nontheism|nontheists]] who consciously reject theism), may subscribe to either ''weak'' or ''strong'' atheism, weak atheism also includes implicit atheists - that is, nontheists who have not consciously rejected theism, but lack theistic belief, arguably including infants.
41599
41600 Theists claim that a single deity or group of deities exists. Weak atheists do not assert the contrary; instead, they only refrain from assenting to theistic claims. Some weak atheists are without any opinion regarding the existence of deities, either because of a lack of thought on the matter, a lack of interest in the matter (see [[apatheism]]), or a belief that the arguments and evidence provided by both theists and strong atheists are equally unpersuasive. Others (explicit weak atheists) may doubt or dispute claims for the existence of deities, while not actively asserting that deities do not exist, following [[Wittgenstein|Wittgenstein's]] famous dictum, &quot;Whereof one cannot speak thereof one must remain silent.&quot;
41601
41602 Some weak atheists feel that theism and strong atheism are equally untenable, on the grounds that faith is required both to assert and to deny the existence of deities, and as such both theism and strong atheism have the burden of proof placed on them to prove that a god does or doesn't exist. Some also base their belief on the notion that it is impossible to prove a negative.
41603
41604 While a weak atheist might consider the nonexistence of deities likely on the basis that there is insufficient evidence to justify belief in a deity's existence, a strong atheist has the additional view that positive statements of nonexistence are merited when evidence or arguments indicate that a deity's nonexistence is certain or probable.
41605
41606 Strong atheism may be based on arguments that the concept of a deity is self-contradictory and therefore impossible (positive [[ignosticism]]), or that one or more of the properties attributed to a deity are incompatible with what we observe in the world. Examples of this may be found in quantum physics, where the existence of mutually exclusive data negates the possibility of omniscience, usually a core attribute of monotheistic conceptions of deity.
41607
41608 ''[[Agnosticism]]'' is distinct from strong atheism, though many weak atheists may be agnostics, and those who are strong atheists with regard to a particular deity might be weak atheists or agnostics with regard to other deities.
41609
41610 ===Ignosticism===
41611 :''Main article: [[Ignosticism]]''
41612
41613 Ignosticism is the view that the question of whether or not deities exist is inherently meaningless. It is a popular view among many [[logical positivism|logical positivists]] such as [[Rudolph Carnap]] and [[A. J. Ayer]], who hold that talk of gods is literally [[nonsense]]. According to ignostics, &quot;Does a god exist?&quot; has the same logical status as &quot;What color is Saturday?&quot;; they are both nonsensical, and thus have no meaningful answers.
41614
41615 Ignostics commonly hold that statements about religious or other transcendent experiences cannot have any truth value, often because theological statements lack [[falsifiability]], because of an [[epistemology|epistemological]] view that renders the [[ontological argument]] nonsensical, or because the terminology being used has not been properly or consistently defined &amp;mdash; the latter view is known as [[theological noncognitivism]].
41616
41617 The use of the word &quot;god&quot; is thus solely a matter of [[semantics]] to ignostics, dealing with word use and technicalities rather than with existence and reality.
41618
41619 In ''Language, Truth and Logic'', Ayer stated that theism, atheism and agnosticism were equally meaningless, insofar as they treat the question of the existence of God as a real question. However, there are varieties of atheism and agnosticism which do not necessarily agree that the question is meaningful, especially using the &quot;lack of theism&quot; definition of atheism. Despite Ayer's criticism of atheism (perhaps using the definition typically associated with [[strong atheism]]), Ignosticism is usually counted as a form of atheism; Ayer (1966) was clear on his position:
41620
41621 &lt;blockquote&gt;I do not believe in God. It seems to me that theists of all kinds have very largely failed to make their concept of a deity intelligible; and to the extent that they have made it intelligible, they have given us no reason to think that anything answers to it. (p226) &lt;/blockquote&gt;
41622
41623 The ignostic position is mentioned (though the term ''ignostic'' is not used) as one of the three forms of &quot;critical atheism&quot; (in Smith) or &quot;rejectionist atheism&quot; (in Nagel). Active disbelief in god or supernatural beings is one other type of critical/rejectionist atheism. Finally, the third type is the positive claim that deities do not exist. Since critical/rejectionist atheism is a type of explicit atheism, if follows that ignosticism is a type of explicit atheism. There is some debate over whether it should be classified as [[weak atheism]] or [[strong atheism]].
41624
41625 Ignosticism is distinct from apatheism in that while ignostics hold ''questions'' and ''discussions'' of whether deities exist to be meaningless, apatheists hold that even a hypothetical ''answer'' to such questions would be completely irrelevant to human existence.
41626
41627 ===Gnostic and agnostic atheism===
41628 :''Main article: [[Agnostic atheism]]''
41629
41630 Agnostic atheism is a fusion of atheism or [[nontheism]] with [[agnosticism]], the [[epistemology|epistemological]] position that the existence or nonexistence of deities is unknown ([[weak agnosticism]]) or unknowable ([[strong agnosticism]]). Agnostic atheism is typically contrasted with [[agnostic theism]], the belief that deities exist even though it is impossible to know that deities exist, and with gnostic atheism, the belief that there is enough information to determine that deities do not exist.
41631
41632 ''Agnostic atheism'''s definition varies, just as the definitions of agnosticism and atheism do. It may be a combination of lack of theism with [[strong agnosticism]], the view that it is impossible to know whether deities exist to any reliable degree. It may also be a combination of lack of theism with [[weak agnosticism]], the view that there is not currently enough information to decide whether or not a deity exists, but that there may be enough in the future.
41633
41634 ''Gnostic atheism'' is a more rarely used term, because often anyone who is not labeled as agnostic is assumed to be gnostic by default. Gnostic atheism also has varying meanings. When nontheism is combined with strong gnosticism, it denotes the belief that it is rational to be absolutely certain that deities do not, and perhaps cannot, exist. When it is with weak gnosticism, it denotes the belief that there is enough information to be reasonably sure that deities do not exist, but not absolutely certain. The term should not be confused with [[Gnosticism]].
41635
41636 ''Gnostic atheism'' is also sometimes used as a synonym of [[strong atheism]], and thus ''agnostic atheism'' is occasionally a synonym for [[weak atheism]]. This is similar to the more common confusion of the terms ''implicit atheism'' and ''explicit atheism'' with strong and weak atheism.
41637
41638 [[Apatheism]] often overlaps with agnostic atheism, such as with [[apathetic agnosticism]], a fusion of apatheism with strong agnostic atheism.
41639
41640 ===Atheism in philosophical naturalism===
41641 Many, if not most, atheists have preferred to say that atheism is a lack of a belief, rather than a belief in its own right (see, for example, Krueger (1998, p.22-24); Smith (1979, p.15-16)). This keeps the burden of proof on the theist (see Flew (1984b)), as the only one making any positive assertions. &quot;Belief&quot; also has other connotations that many atheists may wish to avoid.
41642
41643 Nevertheless, some atheist writers identify atheism with the [[naturalism (philosophy)|naturalistic world view]], and defend it on that basis. The case for naturalism is used as a positive argument for atheism. See, for example, Thrower (1971), Harbour (2001), [[Kai Nielsen|Nielsen]] (2001) and [[Julian Baggini|Baggini]] (2003). See also Everitt's discussion of an anti-atheist argument against naturalism (2004, Chapter 9, p.178-190).
41644
41645 According to Thrower,
41646
41647 &lt;blockquote&gt;Much atheism... can be understood only in the light of the current theism which it was concerned to reject. Such atheism is relative. There is, however, a way of looking at and interpreting events in the world, whose origins... can be seen as early as the beginnings of speculative thought itself, and which I shall call naturalistic, that is atheistic per se, in the sense that it is incompatible with any and every form of supernaturalism... naturalistic or absolute atheism is both fundamentally more important, and more interesting, representing as it does one polarity in the development of the human spirit. (p.3-4) &lt;/blockquote&gt;
41648
41649 [[Julian Baggini]] argues that, &quot;atheism can be understood not simply as a denial of religion, but as a self-contained belief system, if it is seen as a commitment to the view that there is only one world and this is the world of nature&quot; (p.74). For Baggini, therefore,
41650
41651 &lt;blockquote&gt;the evidence for atheism is to be found in the fact that there is a plethora of evidence for the truth of naturalism and an absence of evidence for anything else. 'Anything else' of course includes God, but it also includes goblins, hobbits, and truly everlasting gobstoppers. There is nothing special about God in this sense. God is just one of the things that atheists don't believe in, it just happens to be the thing that, for historical reasons, gave them their name. (p.17) &lt;/blockquote&gt;
41652
41653 Baggini's position is that &quot;an atheist does not usually believe in the existence of immortal souls, life after death, ghosts, or supernatural powers. Although strictly speaking an atheist could believe in any of these things and still remain an atheist... the arguments and ideas that sustain atheism tend naturally to rule out other beliefs in the supernatural or transcendental&quot; (p.3-4).
41654
41655 [[Michael Martin (philosopher)|Michael Martin]] (1990, p.470) notes that the view that &quot;naturalism is compatible with nonatheism is true only if 'god' is understood in a most peculiar and misleading way&quot;, but he also points out that &quot;atheism does not entail naturalism&quot;.
41656
41657 ===Antitheism===
41658 :''Main article: [[Antitheism]]''
41659
41660 ''Antitheism'' (sometimes hyphenated) typically refers to a direct opposition to [[theism]]. In this use, it is a form of critical [[strong atheism]]. Antitheism may sometimes overlap with [[ignosticism]], the view that theism is inherently meaningless, and may directly contradict [[apatheism]], the view that theism is irrelevant rather than dangerous.
41661
41662 However, ''antitheism'' is also sometimes used, particularly in religious contexts, to refer to opposition to [[God]] or [[divine]] things, rather than to the belief in God. Using the latter definition, it may be possible &amp;mdash; or perhaps even necessary &amp;mdash; to be an antitheist without being an atheist or nontheist.
41663
41664 Antitheists may believe that theism is actually harmful, or may simply be atheists who have little tolerance for views they perceive as [[irrationality|irrational]]. Strong atheists who are not antitheists may believe positively that deities do not exist, but not believe that theism is directly harmful or necessitates opposition.
41665
41666 ==History==
41667 {{main|History of atheism}}
41668
41669 Although the actual term ''atheism'' originated in 16th Century [[France]], ideas that would be recognized as atheistic today existed even before [[Classical Antiquity]]. [[Epicurus]] proposed theories that can be classified as atheistic, such as a lack of belief in an afterlife, though he remained ambiguous concerning the actual existence of deities. Before him, [[Socrates]] was [[Trial of Socrates|sentenced to death]] partly on the grounds that he was an atheist, although he did express belief in several forms of divinity, as recorded in [[Plato]]'s ''[[Apology (Plato)|Apology]]''. This criminal connotation attached to atheistic ideas ([[heresy]]) would remain, at varying levels of severity, until [[the Renaissance]], when criticism of the Church became more prevalent and tolerated.
41670
41671 Atheism disappeared from the philosophy of the [[Ancient Greece|Greek]] and [[Roman Empire|Roman]] traditions as [[Christianity]] gained influence. During the [[Age of Enlightenment]], the concept of atheism re-emerged as an accusation against those who questioned the religious [[status quo]], but by the late 18th century it had become the philosophical position of a growing minority. By the 20th century, along with the spread of [[rationalism]] and [[secular humanism]], atheism had become common, particularly among [[scientist|scientists]] (see [[#International survey of contemporary atheism|international survey of contemporary atheism]]). In the 20th Century, atheism also became a staple of the various [[Communism|Communist]] regimes, helping return some of the negative connotations of atheism, especially in the [[United States]], where the term became synonymous with being unpatriotic during the [[Cold War]].
41672
41673 ==Distribution of atheists==
41674 Though atheists are a minority group in most countries, they are relatively common in [[Western Europe]], [[Australia]], [[New Zealand]], [[Canada]], in former and present [[communist state]]s, and, to a lesser extent, in the [[United States]].
41675
41676 Atheism is particularly prevalent among [[scientist]]s, a tendency already quite marked at the beginning of the 20th century, developing into a dominant one during the course of the century. In 1914, [[James H. Leuba]] found that 58% of 1,000 randomly selected U.S. [[natural science|natural scientists]] expressed &quot;disbelief or doubt in the existence of God&quot;. The same study, repeated in 1996, gave a similar percentage of 60.7%; this number is 93% among the members of the [[National Academy of Sciences]]. Expressions of positive disbelief rose from 52% to 72%. [http://www.stephenjaygould.org/ctrl/news/file002.html] (See also [[The relationship between religion and science]]).
41677
41678 ===Atheism in the United Kingdom===
41679 A poll in 2004 by the [[BBC]] put the number of people who do not believe in God to be 40% [http://news.bbc.co.uk/1/hi/programmes/wtwtgod/3518375.stm], while a [[YouGov]] poll in the same year put the percentage of non-believers at 35% with 21% uncertain
41680 [http://www.telegraph.co.uk/news/graphics/2004/12/27/nfaith27big.gif]. In the YouGov poll men were less likely to
41681 believe in god than women and younger people were less likely to believe in god than older people.
41682
41683 In early 2004, it was announced that atheism would be taught during religious education classes in the [[United Kingdom]]. [http://observer.guardian.co.uk/politics/story/0,6903,1148578,00.html] A spokesman for the [[Qualifications and Curriculum Authority]] stated: &quot;There are many children in England who have no religious affiliation and their beliefs and ideas, whatever they are, should be taken very seriously.&quot; There is also considerable debate in the U.K. on the status of [[faith-based schools]], which use religious as well as academic selection criteria. The decision was based on a Parliament decision ruling that, while questionable in moral standing, Atheism is a legitimate religion (although atheism is not a religion in any sense, this indicates that atheism should be treated the same as theism). Atheism is championed by many scientists and [[philosophers]] in the [[United Kingdom]] including [[Richard Dawkins]].
41684
41685 ===Atheism in the United States===
41686 A [[Gallup poll]] in 2005 showed 5% of the US population feel that God does not exist [http://www.editorandpublisher.com/eandp/news/article_display.jsp?vnu_content_id=1001659292]. A poll in 2004 by the [[BBC]] showed the number of people who don't believe in God to be larger, at 10% [http://news.bbc.co.uk/1/hi/programmes/wtwtgod/3518375.stm]. However, unbelief in God does not imply self-identification as an atheist.
41687
41688 Atheists are ostensibly legally protected from discrimination in the United States. They have been among the strongest advocates of the legal [[separation of church and state]]. American courts have regularly, if controversially, interpreted the constitutional requirement for separation of church and state as protecting the freedoms of non-believers, as well as prohibiting the establishment of any state religion. Atheists often sum up the legal situation with the phrase: &quot;Freedom of religion also means freedom ''from'' religion.&quot; [http://www.au.org/]
41689
41690 In [[Board of Education of Kiryas Joel Village School District v. Grumet]][http://caselaw.lp.findlaw.com/scripts/getcase.pl?court=us&amp;vol=000&amp;invol=U10355], Justice Souter wrote in the opinion for the Court that: &quot;government should not prefer one religion to another, or religion to [[irreligion]].&quot; [http://supct.law.cornell.edu/supct/html/93-517.ZS.html] [[Everson v. Board of Education]] established that &quot;''neither a state nor the Federal Government can''...'' pass laws which aid one religion, aid all religions, or prefer one religion over another''&quot;. This applies the Establishment Clause to the states as well as the federal government. [http://atheism.about.com/library/decisions/religion/bl_l_BoEEverson.htm] However, several state constitutions make the protection of persons from religious discrimination conditional on their acknowledgement of the existence of a deity, apparently making freedom of religion in those states inapplicable to atheists. These state constitutional clauses have not been tested. Additionally, some state constitutions (namely, [[Arkansas Constitution|Arkansas]] and [[South Carolina Constitution|South Carolina]]) disallow atheists to hold public office, although most agree that, if challenged, these requirements would be ruled unconstitutional under [[Article Six of the United States Constitution]] which bans such qualifications. Civil rights cases are typically brought in federal courts; so such state provisions are mainly of symbolic importance.
41691
41692 In the [[Elk Grove Unified School District v. Newdow|Newdow case]], after a father challenged the phrase &quot;under God&quot; in the United States [[Pledge of Allegiance]], the Ninth Circuit Court of Appeals found the phrase unconstitutional. Although the decision was stayed pending the outcome of an appeal, there was the prospect that the pledge would cease to be legally usable without modification in schools in the western United States, over which the Ninth Circuit has jurisdiction. This resulted in political furor, and both houses of Congress passed resolutions condemning the decision, nearly unanimously. A very large group consisting of almost the entire Senate and House was televised standing on the steps of Congress, hands over hearts, swearing the pledge and shouting out &quot;under God&quot;. The Supreme Court subsequently reversed the decision, ruling that [[Michael Newdow]] did not have standing to bring his case, thus disposing of the case without ruling on the constitutionality of the pledge.
41693
41694 ==Atheism studies and statistics==
41695 As some governments have strongly promoted atheism, whilst others have strongly condemned it, atheism may be either over-reported or under-reported for different countries. There is a great deal of room for debate as to the accuracy of any method of estimation, as the opportunity for misreporting (intentionally or not) a belief system without an organized structure is high. Also, many surveys on religious identification ask people to identify themselves as &quot;agnostics&quot; or &quot;atheists&quot;, which is potentially confusing, since these terms are interpreted differently by many different people, with some identifying themselves as being both atheist and agnostic. Additionally, many of these surveys only gauge the number of [[irreligion|irreligious]] people, not the number of actual atheists, or group the two together.
41696
41697 The following surveys are in chronological order, but as they are different studies with different methodologies it would be inaccurate to infer trends on the prevalence of atheism from them:
41698
41699 *A 1995 survey [http://www.zpub.com/un/pope/relig.html] attributed to the [[EncyclopÃĻdia Britannica]] indicates that the non-religious are about 14.7% of the world's population, and atheists around 3.8%.
41700
41701 *The 2001 [http://www.gc.cuny.edu/faculty/research_briefs/aris/key_findings.htm ARIS report] found that while 29.5 million U.S. Americans (14.1%) describe themselves as &quot;without religion&quot;, only 902,000 (0.4%) positively claim to be atheist, with another 991,000 (0.5%) professing agnosticism.
41702
41703 *In the 2001 Australian Census [http://www.abs.gov.au/Ausstats/abs@.nsf/0/9658217eba753c2cca256cae00053fa3?OpenDocument] 15.5% of respondents ticked &quot;no religion&quot;, and a further 11.7% either did not state their religion or were deemed to have described it inadequately (there was a popular and successful campaign at the time to have people describe themselves as [[Jedi census phenomenon|Jedi]]).
41704
41705 *The 2001 [[New Zealand]] census [http://www.stats.govt.nz/products-and-services/Articles/census-snpsht-cult-diversity-Mar02.htm] showed that 40% of the respondents claimed &quot;no religion&quot;.
41706
41707 *In 2001, the [http://www.czso.cz/csu/edicniplan.nsf/o/4110-03--skladba_obyvatelstva_podle_nabozenskeho_vyznani,_pohlavi_a_podle_veku Czech Statistical Office] provided census information on the ten million people in the [[Czech Republic]]. 59% had no religion, 32.2% were religious, and 8.8% did not answer. This suggests that the Czech Republic is probably the most atheistic country in the world.
41708
41709 *In 2002 survey in [[Demographics of Russia|Russia]], 32% self-described as atheist. Of the 58% self-describing as Russian Orthodox Christian, 42% said they had never been in a church.
41710
41711 *A 2002 survey by Adherents.com [http://adherents.com/Religions_By_Adherents.html] estimates the proportion of the world's people who are &quot;secular, non-religious, agnostics and atheists&quot; as about 14%.
41712
41713 *In a 2003 poll in [[France]], 54% of those polled identified themselves as &quot;faithful&quot;, 33% as atheist, 14% as agnostic, and 26% as &quot;[[apatheism|indifferent]]&quot;. [http://www.state.gov/g/drl/rls/irf/2004/35454.htm]
41714
41715 *A 2004 survey by the BBC [http://news.bbc.co.uk/1/hi/programmes/wtwtgod/3518375.stm] in 10 countries showed the proportion of the population &quot;who don't believe in God&quot; varying between 0% and 44%, with an average close to 17% in the countries surveyed. About 8% of the respondents stated specifically that they consider themselves to be atheists.
41716
41717 *A 2004 survey by the CIA in the World Factbook [http://cia.gov/cia/publications/factbook/geos/xx.html#People] estimates about 12.5% of the world's population are non-religious, and about 2.4% are atheists.
41718
41719 *A 2004 survey by the [[Pew Research Center]] [http://people-press.org/reports/display.php3?PageID=757] showed that in the United States, 12% of people under 30 and 6% of people over 30 could be characterized as non-religious.
41720
41721 *A 2005 poll by AP/Ipsos [http://www.ipsos-na.com/news/pressrelease.cfm?id=2694] surveyed ten countries. Of the developed nations, people in the [[United States]] had most certainty about the existence of god or a higher power (2% atheist, 4% agnostic), while [[France]] had the most skeptics (19% atheist, 16% agnostic). On the religion question, [[South Korea]] had the greatest percentage without a religion (41%) while [[Italy]] had the smallest (5%).
41722
41723 * A 2006 survey in the Norwegian newspaper [[Aftenposten]] (on [[February 17]]), saw 1006 inhabitants of [[Norway]] answering the question &quot;What do you believe in?&quot;. 29% answered &quot;I believe in a god or deity&quot;, 23% answered &quot;I believe in a higher power without being certain of what&quot;, 26% answered &quot;I don't believe in god or higher powers&quot;, and 22% answered &quot;I am in doubt&quot;. Depending on the definition of atheism, Norway thus has between 49% and 71% atheists. Still, some 85% of the population are members of the Norwegian state's official [[Lutheran]] [[Protestant]] church. Parts of this deviance is due to the fact that all non-affilated Norwegians were signed into this church a few years before (without being asked), and that signing out, if they are even aware of being signed in, is a time-consuming, bureaucratic affair yielding no immediate gains.
41724
41725 ===Statistical problems===
41726 Statistics on atheism are often difficult to accurately represent for a variety of reasons.
41727
41728 ====Atheism is nonexclusive====
41729 Atheism is a position compatible with other forms of identity. Some atheists also consider themselves [[Agnosticism|Agnostic]], [[Buddhism|Buddhist]], [[Jainism|Jains]] or hold other related philosophical beliefs. Therefore, given limited poll options, some may use other terms to describe their identity.
41730
41731 ====Misrepresentation====
41732 Some politically motivated organizations that report or gather population statistics may, intentionally or unintentionally, misrepresent atheists. Survey designs may bias results due to the nature of elements such as the wording of questions and the available response options. Also, many atheists, particularly former Catholics, are still counted as [[Christianity|Christian]]s in church rosters, although surveys generally ask samples of the population and do not look in church rosters. Some Christians believe that ''&quot;once a person is &lt;nowiki&gt;[truly]&lt;/nowiki&gt; saved, that person is always saved&quot;'', a doctrine known as [[Perseverance of the saints|eternal security]]. [http://www.evangelicaloutreach.org/eternalsecurity1.htm].
41733
41734 ====Attitudes toward religion====
41735 Statistics are generally collected on the assumption that religion is a categorical variable. As terms such as ''weak atheism'' and ''strong atheism'' suggest, however, people vary in terms of the strength of their convictions. Instruments have been designed to measure attitudes toward religion, including one that was used by [[L. L. Thurstone]]. This may be a particularly important consideration among people who have neutral attitudes, as it is more likely prevailing social norms will influence the responses of such people on survey questions which effectively force respondents to categorize themselves either as belonging to a particular relgion or belonging to no religion.
41736
41737 ====Misunderstanding and external pressure====
41738 A negative perception of atheists and pressure from family and peers may also cause some atheists to disassociate themselves from atheism. Misunderstanding of the term may also be a reason some label themselves differently.
41739
41740 ====Discrimination====
41741 Legal and social discrimination against atheists in some places may lead some to deny or conceal their atheism due to fears of persecution.
41742
41743 For example, in the 20th century, atheists, socialists and communists were persecuted alongside Jews by the Nazis, who lumped all of these terms into one complex issue or theme ('the Jewish-Bolshevik world conspiracy', as addressed in [[Joseph Goebbels]]' 1935 speech &quot;Communism with the Mask Off&quot;, in which Christian civilization -national socialism- was described as antithetical to Jewish Communism).
41744
41745 ==Religion and atheism==
41746 ===Spiritual and religious atheism===
41747 Although atheistic beliefs are often accompanied by a total lack of [[supernatural]] beliefs, this is not an aspect, or even a necessary consequence, of atheism. Indeed, there are many atheists who are not [[irreligion|irreligious]] or [[secularism|secular]]. These are most common in spiritualities like [[Buddhism]] and [[Taoism]], but they also exist in sects of religions that are usually very theistic by nature, such as [[Christianity]], especially in some [[Religious Society of Friends|Liberal Quaker]] groups.
41748
41749 A number of atheistic churches have been established, such as the [http://thomasinechurch.org/ Thomasine Church], [[Naturalistic pantheism|naturalistic pantheists]], [[Brianism]], and the [[Fellowship of Reason]]. There is also an atheist presence in [[Unitarian Universalism]], an extremely [[inclusivism|inclusivist]] religion.
41750
41751 ====Belief in God as a non-being====
41752 In English, believers usually refer to the [[monotheism|monotheistic]] Abrahamic god as &quot;[[God]]&quot;. In many abstract or esoteric interpretations of monotheism or [[henotheism]], God is not thought of as a supernatural being, as a deity or god. Rather, God becomes a philosophical category: the All, the One, the [[Ultimate]], the [[Absolute Infinite]], the [[Transcendent]], the Divine Ground, [[Being]] or [[Existence]] itself, etc. For example, such views are typical of [[pantheism]], [[panentheism]], and religious [[monism]]. Attributing [[anthropomorphic]] characteristics to God may be regarded as idolatry, blasphemy, or symbolism by some. Some theists may not believe in, or may even deny, the existence of deities as supernatural beings, while maintaining a belief in god as so conceived.
41753
41754 For example, the [[Protestantism|Protestant]] theologian [[Paul Tillich]] described God as the &quot;ground of Being&quot;, the &quot;power of Being&quot;, or as &quot;Being itself&quot;, and caused controversy by making the statement that &quot;God does not exist&quot;, resulting in him occasionally being labelled as an atheist. Nevertheless, for [[Tillich]], God is not &quot;a&quot; being that exists among other beings, but is Being itself. For him, God does not &quot;exist&quot; except as a concept or principle; God is the basis of Being, the [[metaphysics|metaphysical]] power by which Being triumphs over non-Being.
41755
41756 However, most atheists who deny the existence of deities as supernatural beings would also deny this and similar conceptions of God, or simply consider them incomprehensible. Even the broadest definitions of atheism often do not include belief in a conceptual or metaphysical God, categorizing this under theism instead.
41757
41758 ===Judaism===
41759 In general, formulations of [[Jewish principles of faith]] require a belief in God (represented by Judaism's paramount prayer, the [[Shema]]). In many modern movements in Judaism, rabbis have generally considered the behavior of a Jew to be the determining factor in whether or not one is considered an adherent of Judaism. Within these movements it is often recognized that it is possible for a Jew to strictly practise [[Judaism]] as a faith, while at the same time being an agnostic or atheist, giving rise to the joke: &quot;Q: What do you call a Jew who doesn't believe in God? A: A Jew.&quot; It is also worth noting that [[Reconstructionist Judaism|Reconstructionism]] does not require any belief in a deity, and that certain popular [[Reform Judaism|Reform]] prayer books, such as ''Gates of Prayer'', offer some services without mention of God.
41760
41761 Rabbi [[Abraham Isaac Kook]] [http://www.vbm-torah.org/archive/rk16-kook.htm][http://www.vbm-torah.org/archive/rk17-kook.htm], first Chief Rabbi of the Jewish community in pre-state Israel, held that atheists were not actually denying God: rather, they were denying one of man's many images of God. Since any man-made image of God can be considered an idol, Kook held that, in practice, one could consider atheists as helping true religion burn away false images of God, thus in the end serving the purpose of true monotheism.
41762
41763 Some Jewish atheists reject Judaism, but wish to continue identifying themselves with the Jewish people and culture. See, for example, Levin (1995). Jewish atheists who practice [[Humanistic Judaism]] embrace Jewish culture and history, rather than belief in a supernatural god, as the sources of their Jewish identity.
41764
41765 ===Christianity===
41766 By necessity, Christianity, as a [[theist|theistic]] and [[proselyte|proselytising]] religion views atheism as sinful. According to [[Psalm 14:1]], &quot;The fool hath said in his heart, there is no God.&quot; According to John 3:18-19, all who reject Christianity (and presumably its attendant theism) do so &quot;because their deeds are evil&quot;.
41767
41768 A famous but idiosyncratic atheistic belief is that of [[Thomas Altizer]]. His book ''The Gospel of Christian Atheism'' (1967) proclaims the highly unusual view that God has literally died, or self-annihilated. According to Altizer, this is nevertheless &quot;a Christian confession of faith&quot; (p.102). Making clear the difference between his position and that of both [[Friedrich Nietzsche|Nietzsche's]] notion of the death of God and the stance of theological non-realists, Altizer says:
41769
41770 &lt;blockquote&gt;To confess the death of God is to speak of an actual and real event, not perhaps an event occurring in a single moment of time or history, but notwithstanding this reservation an event that has actually happened both in a cosmic and in a historical sense.(p.103)&lt;/blockquote&gt;
41771
41772 However, many would dispute whether this is an atheist position at all, as belief in a dead God implies that God once existed and was alive. Atheism typically entails a lack of belief that any gods ''ever'' existed, as opposed to not existing currently. For further discussion, see Lyas (1970).
41773
41774 Other, unrelated practitioners of Christian atheism may include [[Liberal Christianity|Liberal Christian]] atheists who follow the teaching of [[Jesus]], but who may not believe in the literal existence of god. In this case, however, many would dispute whether the atheists in question are truly [[Christianity|Christians]], though they certainly are by some of the looser definitions of the word.
41775
41776 It should be noted that although Christianity as a ''faith'' has to be construed as irreconcilable with atheism, this is markedly not the case regarding the church institutions which currently are nominally Christian. Indeed the great [[Positivism|positivist]] luminaries in all earnestness encompassed a Catholic Church which would retain all it's ceremonies and ecclesiastical structures, whilst transforming into a purely atheistic church, much in the same way that christianity has co-opted the organisational traditions of the native faiths it has encountered around the world, and through the ages.
41777
41778 ===Islam===
41779 In [[Islam]], atheists are categorized as [[kafir]] (ŲƒØ§ŲØą), a term that is also used to describe polytheists, and that translates roughly as &quot;denier&quot; or &quot;concealer&quot;. The noun ''kafir'' carries connotations of blasphemy and disconnection from the Islamic community. In Arabic, &quot;atheism&quot; is generally translated ''ilhad'' (ØĨŲ„حاد), although this also means &quot;heresy&quot;.
41780 As the [[Sharia]] punishment for [[apostasy]] in Islam is [[death penalty|death]] and such apostasy is also widely socially disapproved of, atheists (as well as converts from Islam to other religions) in Islamic countries and communities frequently conceal their non-belief. The surveys mentioned above that indicate 100% religious belief in certain Islamic countries should be interpreted in light of this fact.
41781
41782 ===Asian spirituality===
41783 It is difficult to categorize the Eastern thought systems in distinct terms of theism or atheism. Therefore, it should be noted that even the thoughts that would be characterized as atheistic in the western sense, often have some theistic tendencies, and vice versa.
41784
41785 [[Carvaka]] (also ''Charvaka'') was a [[materialist]] and atheist school of thought in [[India]], which is now known principally from fragments cited by its [[Hindu]] and [[Buddhist]] opponents. The proper aim of a Carvakan, according to these sources, was to live a prosperous, happy, productive life in this world (cf [[Epicureanism]]). There is some evidence that the school persisted until at least 1578.
41786
41787 [[Buddhism]] is often described as atheistic, since Buddhist authorities and canonical texts do not affirm, and sometimes deny, the following:
41788
41789 * The existence of a [[creation]], and therefore of a creator god
41790 * That a god, gods, or other divine beings are the source of moral imperatives
41791 * That human beings or other creatures are responsible to a god or gods for their actions
41792
41793 Buddhists might also be deemed atheistic in anti-Buddhist Hindu polemic, since Buddhists opposed the authority of the [[Vedas]] and of Vedic priests, and the power of the rituals of [[Vedic religion]].
41794
41795 However, all canonical Buddhist texts that mention the subject accept the ''existence'' (as distinct from the ''authority'') of a great number of deities, including the Vedic deities. From the point of view of Western theism, certain concepts of the [[Buddha]] found in the [[Mahayana]] school of Buddhism, e.g. of [[Amitabha]] or the Adibuddha may seem to share characteristics with Western concepts of God.
41796
41797 Other schools continue to consider themselves as fundamentally atheistic, in the strong sense of the term. [[Jainism]] is also sometimes classified as atheistic since Jains's believe that &quot;In the most basic sense, God is not seen as a person, place or tangible thing, but as the ideal state of an individual soul's existence&quot; [http://www.dd-b.net/~raphael/jain-list/msg01226.html].
41798
41799 [[Confucianism]] and [[Taoism]] are arguably atheistic in the sense that they do not explicitly affirm, nor are they founded upon a faith in, a higher being or beings. However, Confucian writings do have numerous references to 'Heaven,' which denotes a transcendent power, with a personal connotation. Neo-Confucian writings, such as that of [[Chu Hsi]], are vague on whether their conception of the Great Ultimate is like a personal deity or not. Also, although the Western translation of the [[Tao]] as 'god' in some editions of the [[Tao te Ching]] is highly misleading, it is still a matter of debate whether the actual descriptions of the [[Tao]] by [[Lao Zi]] has theistic or atheistic undertones.
41800
41801 ==Reasons for atheism==
41802 Although not all atheists claim to have a rational justification for their stance, a majority of explicit atheists do assert that their stance has a rational basis, and there are some especially common reasons given by them.
41803
41804 ===Philosophical reasons===
41805 A majority of explicit atheists base their stance on rational or philosophical grounds, arguing that their position is based on logical analysis, and subsequent rejection, of theistic claims. These [[existence of God#Arguments_against_the_existence_of_God|arguments against the existence of deities]] consist of a number of different problems with theism. Chief among these problems is a perceived lack of evidence supporting theistic claims.
41806
41807 &lt;blockquote&gt;&quot;Within the framework of [[scientific]] [[rationalism]] one arrives at the belief in the nonexistence of God, not because of certain knowledge, but because of a sliding scale of methods. At one extreme, we can confidently rebut the personal Gods of creationists on firm [[empirical]] grounds: science is sufficient to conclude beyond reasonable doubt that there never was a worldwide flood and that the evolutionary sequence of the Cosmos does not follow either of the two versions of Genesis. The more we move toward a deistic and fuzzily defined God, however, the more scientific rationalism reaches into its toolbox and shifts from empirical science to [[logical]] philosophy informed by science. Ultimately, the most convincing arguments against a deistic God are [[Hume's dictum]] and [[Occam's razor]]. These are philosophical arguments, but they also constitute the bedrock of all of science, and cannot therefore be dismissed as non-scientific. The reason we put our trust in these two principles is because their application in the empirical sciences has led to such spectacular successes throughout the last three centuries.&quot; [http://psy.ucsd.edu/~eebbesen/Psych110/SciRelig.htm]&lt;/blockquote&gt;
41808
41809 Many atheists hold that as their view is merely the absence of a certain belief, the only defense that atheism needs is a good offense. If theism's arguments are refuted, nontheism, as the only alternative, becomes the default position. As such, many atheists have argued against the most famous &quot;proofs&quot; of God's existence for centuries. Whether all of the theistic arguments have been refuted is a matter in dispute.
41810
41811 &lt;blockquote&gt;&quot;Throughout the centuries, theistic philosophers have offered logical arguments in support of God's existence. Most of these can be divided into four major classes - ontological, cosmological, teleological, and moral&quot; [http://www.ebonmusings.org/atheism/] &lt;/blockquote&gt;
41812 In general, atheists contend that these have been refuted.
41813
41814 There are also many atheists who attack specific forms of theism as being self-contradictory. One of the most common arguments against the existence of a specific God is the [[problem of evil]].
41815
41816 &lt;blockquote&gt;&quot;The problem of evil is probably the most enduring and the most potent argument atheism has to offer against many varieties of theism. Christian apologist [[William Lane Craig]] aptly styled it ''atheism's killer argument''. In brief, it seeks to establish that the existence of evil in the world is logically incompatible with the existence of a benevolent God, and that it is more reasonable to conclude that God does not exist than that he does exist but does nothing to stop evil.&quot; [http://www.ebonmusings.org/atheism/allpossibleworlds.html]&lt;/blockquote&gt;
41817
41818 Other well-known positive arguments include [[theological noncognitivism]], [[incoherency argument]]s (which seek to prove contradictions within the nature of &quot;god&quot;), atheistic teleological arguments, and the [[Transcendental argument for the non-existence of God]].
41819
41820 ===Personal and social reasons===
41821 As well as atheists with philosophical reasons, there are explicit atheists who cite social, psychological, practical, and other reasons for their beliefs.
41822
41823 Some people hold atheistic beliefs on the grounds that it is conducive towards living a better life, such as the belief that atheism is more ethical or useful than theism. Such atheists may hold that searching for explanations through natural science is more beneficial than doing it through faith.
41824
41825 Moral reasons for atheism include &quot;cases where the requirement to do what is right favors being an atheist, or at the very least, not supporting certain sects or practices of theism.'''...''' Those who cannot accept the notion of an evil god must conclude that any immoral religion is necessarily false.&quot; Practical reasons for atheism include &quot;reasons why accepting atheism over theism produces positive overall effects on a person's life.&quot; [http://www.ebonmusings.org/atheism/necessityofatheism.html]
41826
41827 Arguments that theism promotes immorality often center around the contention that a great deal of violence, including [[war]], has been brought about by religious beliefs and practices.
41828
41829 Some people are atheists at least partly because of growing up in an environment where atheism is relatively common, such as being raised by atheist parents.
41830 &lt;blockquote&gt;&quot;Many people are atheists not because they've reasoned things out like that, but because of the way they were brought up or educated, or because they have simply adopted the beliefs of the culture in which they grew up.&quot; [http://www.bbc.co.uk/religion/religions/atheism/reasons/index.shtml BBC].&lt;/blockquote&gt;
41831 Most atheists contend that the same is true for many believers. For instance, most of the population in predominantly Jewish, Muslim, or Christian countries follow the religion that is more prevalent without much questioning. &lt;!-- Cyclic logic. &quot;More people believe in Christianity in places where more people believe in Christianity.&quot; --&gt;
41832
41833 Christian psychologist Paul Vitz (1999) argues that, &quot;Many people have psychological reasons for atheism&quot; [http://www.columbia.edu/cu/augustine/arch/frear/vitz.htm] and &quot;neurotic psychological barriers to belief in God are of great importance&quot; [http://www.origins.org/articles/vitz_psychologyofatheism.html]. See Vitz (1999) and, for a similar view, Rizzuto (1998).
41834
41835 While it is common to point out the psychological reasons for not being an atheist, it is important to note that emotion and &quot;feelings&quot; play an important role for many people, not just theists. However, an understanding of the psychological origins for belief in a god may contribute to some atheists' lack of religious belief; see [[true believer syndrome]] and [[psychology of religion]].
41836
41837 ===Historical reasons===
41838 Without even taking into account scientific research, some atheists have come to the conclusion that the existence of one or more gods can be dismissed due to historical reasons. Looking at very old civilizations such as [[Ancient Greece]] and [[Ancient Rome]], people believed in multiple gods, linking each of them to an unexplained physical reality, such as [[Hades]] the god of the dead, [[Helios]] the god of the sun, [[Zeus]] the god of thunder and [[Poseidon]] the god of earthquakes. These people could not explain a phenomenon using a [[scientific theory]] and thus invented a god to explain it, from fear of the unexplained.
41839
41840 In our current times, all of these things, except one, have been explained scientifically. There are no significant group of people believing earthquakes are the direct action of a god shaking the [[Earth]]. The only item from the original gods that is still a near complete mystery is death, and as such only one god remains in most modern religions, and looking at the various religions, death (along with afterlife) is usually a central topic.
41841
41842 Looking at [[Historical persecution by Christians|historical records]], one can also see how the fears that people have of unexplained phenomenons have been used by various religious leaders both to persecute other religions, and to gain more believers. It seems likely to some atheists, that if the result of death could someday be explained beyond a reasonable doubt by science, the last god would no longer be worshiped by a majority of people, just as was the case for every previous mythical god.
41843
41844 ==Criticisms of atheism==
41845 {{main|Criticism of Atheism}}
41846 Atheists and atheism have received much criticism and opposition, chiefly from theistic sources, throughout human history. Opponents of atheism have frequently associated atheism with immorality and evil, often characterizing it as a willful and malicious rejection of gods. This, in fact, is the original definition and sense of the word, but changing sensibilities and the normalization of nonreligious viewpoints have caused the term to lose its negative connotations, at least in secular cultures.
41847
41848 The most direct arguments against atheism are those in favor of the existence of deities, which would imply that atheism is simply untrue. For examples of this type of argument, see [[Existence of God#Arguments for the existence of God|Existence of God]].
41849
41850 Many common criticisms of atheism are rooted in a misunderstanding of what it is, or an incorrect assumption that all atheists are &quot;strong&quot; atheists who assert that there is no such thing as God anywhere in the universe. [[Ray Comfort]] exhibits this fallacy in &quot;The Atheist Test&quot; [http://ecclesia.org/truth/atheist.html]: ''&quot;To say 'There is no God,' and to be correct in the statement, I must be omniscient. I must know how many hairs are upon every head, every thought of every human heart, every detail of history, every atom within every rock...nothing is hidden from my eyes...I know the intimate details of the secret love-life of the fleas on the back of the black cat of Napoleon's great-grandmother. To make the absolute statement 'There is no God.' I must have absolute knowledge that there isn't one.&quot;&quot;
41851
41852 Other criticisms of atheism are based in conceptions that it leads to poor morals or ethics, that it is impossible for a person to truly have faith in nothing, or that lack of belief in a god is as much (or more) a leap of faith than belief in a god. These criticisms have been answered to the satisfaction of many atheists. [http://www.infidels.org/news/atheism/intro.html]
41853
41854 ==See also==
41855 * [[List of atheists]]
41856 * [[Strong atheism]]
41857 * [[Weak atheism]]
41858
41859 ===Related concepts===
41860 * [[Brights]]
41861 * [[Criticism of Religion]]
41862 * [[Existence of God]], [[Pascal's Wager]]
41863 * [[Faith and rationality]], [[Religiousness and intelligence]]
41864 * [[Freethinking]]
41865 * [[Irreligion]]
41866 * [[Nihilism]]
41867 * [[Objectivism]]
41868 * [[Pantheism]]
41869 * [[Rationalism]]
41870 * [[Religious freedom]] - freedom of religion ''and'' belief
41871 * [[Scientific skepticism]]
41872 * [[Secular Humanism]]
41873 * [[Secularism]]
41874
41875 ===Organizations===
41876 * [[Camp Quest]]
41877 * [[American Atheists]]
41878 * [[Atheist Foundation of Australia]]
41879 * [[Freedom From Religion Foundation]]
41880 * [[Rationalist International]]
41881 * [[Internet Infidels]]
41882 * [[Fellowship of Reason]]
41883 * [[Society of the Godless]]
41884
41885 ===Satire===
41886 * [[Apatheism]]
41887 * [[Evil Atheist Conspiracy]]
41888 * [[Flying Spaghetti Monster]]
41889 * [[Invisible Pink Unicorn]]
41890
41891 ==External links==
41892 {{wikiquote}}
41893
41894 === Web sites ===
41895 * Associations
41896 **[http://www.atheistalliance.org/ Atheist Alliance International]
41897 **[http://www.atheists.org/ American Atheists]
41898 **[http://www.ffrf.org/ Freedom From Religion Foundation]
41899 **[http://www.atheistfoundation.org.au/ Atheist Foundation of Australia]
41900 **[http://www.secularism.org.uk/ The National Secular Society (UK)]
41901 **[http://www.the-brights.net/ The Brights]
41902 **[http://idahoatheists.org/ Idaho Atheists]
41903 * Web communities
41904 **[http://www.frostcloud.com/forum/forumdisplay.php?f=9 FrostCloud.com] Discuss atheism.
41905 **[http://www.atheistparents.org/ Atheist Parents Group]
41906 **[http://www.booktalk.org BookTalk.org - the freethinker's book discussion community]
41907 **[http://www.churchofreality.org/wisdom/ Church of Reality]
41908 **[http://www.nobeliefs.com/ Freethinkers (NoBeliefs.com)]
41909 **[http://www.positiveatheism.org/ Positive Atheism]
41910 **[http://www.infidels.org/ The Secular Web]
41911 **[http://www.atheistcoalition.com/ The Atheist Coalition]
41912 **[http://www.faithless.org/ The Faithless Community]
41913 **[http://groups.yahoo.com/group/eudaimonistseuphoria/ Eudaimonist's Euphoria]
41914 * Internet radios
41915 **[http://www.atheistnetwork.com/ Atheist Network (Internet Radio)]
41916 **[http://www.infidelguy.com/index.php The Infidel Guy Radio Show]
41917 **[http://www.freethoughtradio.com Freethought Radio] - Internet Radio Station
41918 * Miscellaneous
41919 **{{About.com|topic=Atheism}}
41920 **[http://www.ebonmusings.org/atheism Ebon Musings: The Atheism Pages]
41921 **[http://www.exchristian.net/ ExChristian.net &amp;mdash; Encouraging Ex-Christians]
41922 **[http://www.godlessgeeks.com/LINKS/Debate.html Links related to atheism] by [[Atheists of Silicon Valley]]
41923 **[http://www.cybamall.com/america/ Political and Atheist Thought]
41924 **[http://www.camp-quest.com/ Camp Quest: A Secular Summer Camp for Children]
41925 **[http://www.atheists.net/ Darwin Bedford, Atheist Messiah and Spiritual Reality Therapist]
41926 **[http://www.religioustolerance.org/atheist.htm religioustolerance.org]
41927 **http://www.qsmithwmu.com (Web site of [[Quentin Smith]], atheist philosopher)
41928 **http://www.abstractatom.com (Web site of [[Jeffrey Grupp]], atheist philosopher)
41929
41930 === Articles ===
41931 * History of
41932 **[http://www.rationalrevolution.net/articles/religious_criticism.htm A Historical Outline of Modern Religious Criticism in Western Civilization] - History of atheistic thought going back to the 1500s
41933 * Definitions
41934 **[http://reference.allrefer.com/encyclopedia/A/atheism.html AllRefer atheism article] - brief discussion of polemical usage
41935 **[http://plato.stanford.edu/entries/atheism-agnosticism/ &quot;Atheism and Agnosticism&quot;] by [[John Smart]] for [[Stanford Encyclopedia of Philosophy]]
41936 **[http://www.atheistfoundation.org.au/aboutus.htm &quot;Definition of Atheism&quot;] from Atheist Foundation of Australia Inc
41937 **[http://uberkuh.com/node/341 &quot;Types of Atheistic Belief&quot;]
41938 **[http://www.positiveatheism.org/faq/faq1111.htm#WHATISPOSATH &quot;What Is Atheism?&quot;] from Positive Atheism Magazine
41939 * Defence
41940 **[http://www.samharris.org The End of Faith] by [[Sam Harris (author)|Sam Harris]]
41941 **[http://kenneth.moyle.com/aa/atheism1.htm Atheism defended]
41942 **[http://atheisme.free.fr/Atheism.htm Atheism: The Capital Man]
41943 **[http://www.marxists.org/archive/marx/works/1843/critique-hpr/intro.htm Introduction to A Contribution to the Critique of Hegel's Philosophy of Right] &amp;mdash; the source of the famous &quot;[religion is] the opiate of the masses&quot;, by [[Karl Marx]]
41944 **[http://www.dlc.fi/~etkirja/LectureOnAtheism.htm Lecture on Atheism] by Erkki Hartikainen in The Finnish Society for Natural Philosophy, 2003
41945 **[http://www.spunk.org/library/writers/goldman/sp001502.html The Philosophy of Atheism] by Emma Goldman (''[[Mother Earth (magazine)|Mother Earth]]'', 1916)
41946 **[http://www.godlessgeeks.com/WhyAtheism.htm Why Atheism?]
41947 **[http://www.truthdig.com/dig/item/200512_an_atheist_manifesto/ An Atheist Manifesto] by [[Sam Harris (author)|Sam Harris]]
41948 * Criticism
41949 **[http://www.newadvent.org/cathen/02040a.htm Catholic Encyclopedia: &quot;atheism&quot;]
41950 **[http://www.christianitytoday.com/ct/2005/003/21.36.html The Twilight of Atheism] by [[Alister McGrath]], Christianity Today, March 2005.
41951 **[http://www.leaderu.com/truth/3truth02.html Theism, Atheism, and Rationality] by [[Alvin Plantinga]]
41952 **[http://www.origins.org/articles/plantinga_intellectualsophistication.html Intellectual Sophistication and Basic Belief in God] by Alvin Plantinga
41953 *Statistics
41954 **[http://www.pitzer.edu/academics/faculty/zuckerman/atheism.html Atheism: Contemporary Rates and Patterns] atheism worldwide, by Phil Zuckerman
41955
41956 ==References==
41957 *Altizer, Thomas J.J. (1967). ''The Gospel of Christian Atheism.'' London: Collins. [http://www.religion-online.org/showbook.asp?title=523 Electronic Text]
41958 *Armstrong, Karen (1999). ''A History of God.'' London: Vintage. ISBN 0099273675
41959 *Ayer, A. J. (1966). ''What I Believe.'' '''in''' ''Humanist'', Vol 81 (8) August 1966, p.226-228.
41960 *Baggini, Julian (2003). ''Atheism: A very short introduction.'' Oxford: Oxford University Press. ISBN 0192804243.
41961 *Berman, David (1990). ''A History of Atheism in Britain: from Hobbes to Russell.'' London: Routledge. ISBN 0415047277.
41962 *Berman, David (1983). ''David Hume and the Suppression of Atheism.'' '''in''' ''Journal of the History of Philosophy'', Vol. 21 (3), July 1983, p.375-387.
41963 *Berman, David (1982). ''The Repressive Denials of Atheism in Britain in the Seventeenth and Eighteenth Centuries'' '''in''' ''Proceedings of the Royal Irish Academy'', Vol. 82c, (9), p.211-246.
41964 *Borne, Étienne (1961). ''Atheism.'' New York: Hawthorn Books. [Originally published in France under the title ''Dieu n’est pas mort: essai sur l’atheisme contemporain.'' Librairie Arthème Fayard, 1959]
41965 *Bradlaugh Bonner, Hypatia (1908). ''Charles Bradlaugh: a record of his life and work.'' London: T. Fisher Unwin.
41966 *Buckley, M. J. (1987). ''At the origins of modern atheism.'' New Haven, CT: Yale University Press.
41967 *Cudworth, Ralph (1678). ''The True Intellectual System of the Universe: the first part, wherein all the reason and philosophy of atheism is confuted and its impossibility demonstrated''.
41968 *d'Holbach, P. H. T. (1772). ''Good Sense.'' [http://www.gutenberg.org/etext/7319 Electronic Text]
41969 *d'Holbach, P. H. T. (1770). ''The system of nature.'' Electronic versions:
41970 **[http://socserv2.socsci.mcmaster.ca/~econ/ugcm/3ll3/holbach/ ''complete text'' (pdf)]
41971 **[http://homepages.ihug.co.nz/~freethought/holbach/system/0syscontents.htm ''complete text'' (html)]
41972 *de Mornay, Phillipe (1587). ''A woorke concerning the Trewnesse of the Christian Religion, written in French; Against Atheists, Epicures, Paynims, Iewes, Mahumetists''. London.
41973 *Drachmann, A. B. (1922). ''Atheism in Pagan Antiquity''. Chicago: Ares Publishers, 1977 (&quot;an unchanged reprint of the 1922 edition&quot;). ISBN 0890052018.
41974 *Everitt, Nicholas (2004). ''The Non-existence of God: An Introduction.'' London: Routledge. ISBN 0415301076.
41975 *[http://news.nationalgeographic.com/news/2004/10/1018_041018_science_religion.html ''Evolution and Religion Can Coexist, Scientists Say'']
41976 *Flew, Antony (1966). ''God and Philosophy.'' London: Hutchinson &amp; Co.
41977 *Flew, Antony (1984a). ''God, Freedom, and Immortality: A Critical Analysis.'' Buffalo, NY: Prometheus. ISBN 0879751274.
41978 *Flew, Antony (1984b). ''The Presumption of Atheism''. New York: Prometheus.
41979 **[http://www.positiveatheism.org/writ/flew01.htm ''complete text'' (html)]
41980 *Flew, Antony (1972). ''The Presumption of Atheism''. '''in''' ''Canadian Journal of Philosophy'', 2, p.29-46 [reprinted in Flew 1984a and 1984b above]
41981 *Flint, Robert (1877). ''Anti-Theistic Theories: Being the Baird Lecture for 1877.'' London: William Blackwood and Sons. 5th ed, 1894.
41982 *Gaskin, J.C.A. (ed) (1989). ''Varieties of Unbelief: from Epicurus to Sartre.'' New York: Macmillan. ISBN 002340681X.
41983 *Harbour, Daniel (2001). ''An Intelligent Person's Guide to Atheism.'' London: Duckworth. ISBN 0715632299.
41984 *Hitchens, Christopher (2001). ''[http://www.amazon.com/exec/obidos/tg/detail/-/0465030327 Letters to a Young Contrarian]''. New York: Basic Books.
41985 *Krueger, D. E. (1998). ''What is atheism?: A short introduction.'' New York: Prometheus. ISBN 1573922145.
41986 *Le Poidevin, R. (1996). ''Arguing for atheism: An introduction to the philosophy of religion.'' London: Routledge. ISBN 0415093384.
41987 *Levin, S. (1995). ''Jewish Atheism.'' '''in''' ''New Humanist'', Vol 110 (2) May 1995, p.13-15.
41988 *Lyas, Colin (1970). ''On the Coherence of Christian Atheism.'' '''in''' ''Philosophy: the Journal of the Royal Institute of Philosophy.'' Vol. 45 (171), January 1970. pp.1-19.
41989 *Mackie, J. L. (1982). ''The Miracle of Theism: Arguments for and against the existence of God.'' Oxford: Oxford University Press. ISBN 019824682X.
41990 *Maritain, Jacques (1953). ''The Range of Reason.'' London: Geoffrey Bles. [http://www.nd.edu/Departments/Maritain/etext/range.htm Electronic Text]
41991 **Note: Chapter 8, ''The Meaning of Contemporary Atheism'' (p.103-117, [http://www.nd.edu/Departments/Maritain/etext/range08.htm Electronic Text]) is reprinted from ''Review of Politics'', Vol. 11 (3) July 1949, p. 267-280 [http://www.nd.edu/Departments/Maritain/jm3303.htm Electronic Text]. A version also appears ''The Listener'', Vol. 43 No.1102, [[9 March]] [[1950]]. pp.427-429,432.
41992 *Martin, Michael (1990). ''Atheism: A philosophical justification.'' Philadelphia, PA: Temple University Press. ISBN 0877229430.
41993 *Martin, Michael, &amp; Monnier, R. (Eds.) (2003). ''The impossibility of God.'' New York: Prometheus.
41994 *McGrath, A. (2005). ''The Twilight of Atheism : The Rise and Fall of Disbelief in the Modern World''. ISBN 0385500629
41995 *McTaggart, John &amp; McTaggart, Ellis (1927). ''The Nature of Existence.'' Volume 2. Cambridge: Cambridge University Press.
41996 *McTaggart, John &amp; McTaggart, Ellis (1930). ''Some Dogmas of Religion.'' London: Edward Arnold &amp; Co., new edition. [First published 1906]
41997 *Mills, D. (2004). ''Atheist Universe'', Xlibris, ISBN 1413434819.
41998 *MÃŧller, F. Max (1889). ''Natural Religion: The Gifford Lectures, 1888.'' London: Longmans, Green and Co.
41999 *Nagel, Ernest (1965). ''A Defence of Atheism.'' '''in''' Edwards, Paul and Pap, Arthur (eds), ''A Modern Introduction to Philosophy: readings from classical and contemporary sources.'' New York: Free Press. Rev ed. pp.460-472.
42000 *Nielsen, Kai (1985). ''Philosophy and Atheism.'' New York: Prometheus. ISBN 0879752890.
42001 *Nielsen, Kai (2001). ''Naturalism and religion.'' New York: Prometheus.
42002 *Reid, J.P. (1967). ''Atheism.'' '''in''' ''New Catholic Encyclopedia''. New York: McGraw-Hill. p.1000-1003.
42003 *Rizzuto, Ana-Maria (1998). ''Why did Freud reject God?: A psychoanalytic interpretation.'' Yale University Press. ISBN 0300075251.
42004 *Robinson, Richard (1964). ''An Atheist's Values.'' Oxford: Clarendon Press.
42005 *Sharpe, R.A. (1997). ''The Moral Case Against Religious Belief.'' London: SCM Press. ISBN 0334026806.
42006 *Smith, George H. (1990). ''Atheism, Ayn Rand, and Other Heresies''. New York: Prometheus.
42007 **[http://www.positiveatheism.org/writ/smithdef.htm Excerpt: ''Defining atheism'' (html)]
42008 *Smith, George H. (1979). ''Atheism: The Case Against God''. Buffalo, New York: Prometheus. ISBN 087975124X.
42009 **[http://www.positiveatheism.org/writ/smith.htm Excerpt: ''The Scope of Atheism'' (html)]
42010 *Sobel, Jordan H. (2004). ''Logic and theism: Arguments for and against beliefs in God.'' Cambridge: Cambridge University Press.
42011 *Stenger, Victor J. (2003). ''Has science found God?.'' New York: Prometheus.
42012 *Stein, G. (Ed.) (1984). ''The Encyclopaedia of Unbelief'' (Vols. 1-2). New York: Prometheus. ISBN 0879753072.
42013 *Thrower, James (1971). ''A Short History of Western Atheism.'' London: Pemberton. ISBN 0301711011.
42014 *Vitz, Paul (1999). ''Faith of the fatherless: the psychology of atheism.'' Dallas, Texas: Spence. ISBN 1890626120.
42015
42016 {{Philosophy navigation}}
42017
42018
42019 [[Category:Atheism]]
42020 [[Category:Philosophy of religion]]
42021
42022 {{Link FA|de}}
42023
42024 [[af:Ateïsme]]
42025 [[ar:ØĨŲ„حاد]]
42026 [[fa:بی؎دایی]]
42027 [[be:АŅ‚ŅŅ–СĐŧ]]
42028 [[bg:АŅ‚ĐĩиСŅŠĐŧ]]
42029 [[bn:āĻ¨āĻžāĻ¸ā§āĻ¤āĻŋāĻ•āĻŦāĻžāĻĻ]]
42030 [[br:Ateism]]
42031 [[bs:Ateizam]]
42032 [[ca:Ateisme]]
42033 [[cs:Ateismus]]
42034 [[da:Ateisme]]
42035 [[de:Atheismus]]
42036 [[eo:Ateismo]]
42037 [[es:Ateísmo]]
42038 [[fi:Ateismi]]
42039 [[fr:AthÊisme]]
42040 [[he:א×Ēאיזם]]
42041 [[hu:Ateizmus]]
42042 [[ia:Atheismo]]
42043 [[id:Atheisme]]
42044 [[it:Ateismo]]
42045 [[ja:į„ĄįĨžčĢ–]]
42046 [[jv:Ateisme]]
42047 [[ko:ëŦ´ė‹ ëĄ ]]
42048 [[lb:Atheismus]]
42049 [[li:Atheïsme]]
42050 [[lt:Ateizmas]]
42051 [[lv:Ateisms]]
42052 [[ms:Atheis]]
42053 [[mt:AteiÅŧmu]]
42054 [[nl:Atheïsme]]
42055 [[no:Ateisme]]
42056 [[pl:Ateizm]]
42057 [[pt:Ateísmo]]
42058 [[ro:Ateism]]
42059 [[ru:АŅ‚ĐĩиСĐŧ]]
42060 [[simple:Atheism]]
42061 [[sk:Ateizmus]]
42062 [[sr:АŅ‚ĐĩиСаĐŧ]]
42063 [[sv:Ateism]]
42064 [[uk:АŅ‚ĐĩŅ—СĐŧ]]
42065 [[yi:א֡ט×ĸיִסם]]
42066 [[zh:无įĨžčŽē]]</text>
42067 </revision>
42068 </page>
42069 <page>
42070 <title>Agnosticism</title>
42071 <id>894</id>
42072 <restrictions>move=:edit=</restrictions>
42073 <revision>
42074 <id>42138240</id>
42075 <timestamp>2006-03-04T01:53:39Z</timestamp>
42076 <contributor>
42077 <username>El C</username>
42078 <id>92203</id>
42079 </contributor>
42080 <minor />
42081 <comment>Reverted edits by [[Special:Contributions/69.249.89.93|69.249.89.93]] ([[User talk:69.249.89.93|talk]]) to last version by The tooth</comment>
42082 <text xml:space="preserve">'''Agnosticism''' is the [[philosophy|philosophical]] view that the [[truth]] or falsity of certain claims—particularly [[theology|theological]] claims regarding the existence of [[Monotheism|God]] or [[Polytheism|gods]]—is unknown, unknowable, or incoherent. Some agnostics infer from this that these claims are irrelevant to [[Meaning of life|life]].
42083
42084 The term and the related ''agnostic'' were coined by [[Thomas Henry Huxley]] in [[1869]], and are also used to describe those who are unconvinced or noncommittal about the existence of deities as well as other matters of [[religion]]. The word agnostic comes from the Greek ''a'' (without) and ''[[gnosis]]'' (knowledge). Agnosticism, focusing on what can be known, is an [[epistemology|epistemological]] position (dealing with the nature and limits of human knowledge); while atheism and theism are [[ontology|ontological]] positions (a branch of metaphysics that deals with what types of entities exist). Agnosticism is not to be confused with a view specifically opposing the doctrine of [[gnosis]] and [[Gnosticism]]&amp;mdash;these are religious concepts that are not generally related to agnosticism.
42085
42086 Agnosticism is distinct from [[strong atheism]] (also called ''positive atheism'' or ''dogmatic atheism''), which denies the existence of any deities. However, the more general variety of [[atheism]], [[weak atheism]] (also called ''negative atheism'', and sometimes ''neutral atheism''), professes only a lack of belief in a god or gods, which is not equivalent to but is compatible with agnosticism. ''Critical atheism'' admits that a god or gods are meaningful concepts but the evidence for them is not in hand, so a default position of not believing in them must be taken in the interim.
42087
42088 Agnostics may claim that it isn't possible to have ''absolute'' or ''certain'' spiritual knowledge or, alternatively, that while certainty ''may'' be possible, they personally have no such knowledge. In both cases, agnosticism involves some form of [[philosophical scepticism|skepticism]] towards religious statements. This is different from the simple [[irreligion]] of those who give no thought to the subject.
42089
42090 ==Variations==
42091 Agnosticism has suffered more than most expressions of philosophical position from terminological vagaries. Data collection services [http://adherents.com/Religions_By_Adherents.html#Nonreligious], [http://cia.gov/cia/publications/factbook/fields/2122.html] often display the common use of the term, distinct from strong atheism in its lack of disputing the existence of deities. Agnostics are listed alongside [[secularism|secular]], [[irreligion|non-religious]], or other such categories.
42092
42093 Other variations include:
42094
42095 * [[Strong agnosticism]] (also called hard agnosticism, closed agnosticism, strict agnosticism, absolute agnosticism)—the view that the question of the existence of deities is unknowable by nature or that human beings are ill-equipped to judge the evidence.
42096 * [[Weak agnosticism]] (also called soft agnosticism, open agnosticism, empirical agnosticism, temporal agnosticism)—the view that the existence or nonexistence of God or gods is currently unknown but isn't necessarily unknowable, therefore one will withhold judgment until more evidence is available.
42097 * [[Apathetic agnosticism]]—the view that there is no proof either of God's existence or nonexistence, but since God (if there is one) appears unconcerned for the universe or the welfare of its inhabitants, the question is largely academic.
42098 * [[Ignosticism]]—the view that the concept of God as a being is meaningless because it has no verifiable consequences, therefore it cannot be usefully discussed as having existence or nonexistence. See [[scientific method]].
42099 * Model agnosticism—the view that philosophical and metaphysical questions are not ultimately verifiable but that a model of malleable assumption should be built upon rational thought. This branch of agnosticism does not focus on a deity's existence.
42100 * [[Agnostic theism]]—the view of those who do not claim to ''know'' God's existence, but still ''believe'' in his existence. (''See [[Epistemology#Knowledge_and_belief|Knowledge Vs Beliefs]]'') Whether this is truly agnosticism is disputed. It may also imply the belief that although there is something that resembles (or would at least appear to us as) a god (or gods,) there remains doubt over their true nature, motives, or the validity of the claim to be 'God' rather than superior, supernatural being(s).
42101 * [[Agnostic spiritualism]]—the view that there may or may not be a god (or gods,) while maintaining a general personal belief in a spiritual aspect of reality, particularly without distinct religious basis, or adherence to any established doctrine or dogma.
42102 * [[Agnostic atheism]]—the view that God may or may not exist, but that his non-existence is more likely. Some agnostic atheists would at least partially base their beliefs on [[Occam's Razor]].
42103
42104 ==Some philosophical opinions==
42105 Among the most famous agnostics (in the original sense) have been [[Robert G. Ingersoll]], [[Thomas Henry Huxley]], and [[Charles Darwin]]. Some have argued from the works of [[David Hume]], especially ''Dialogues Concerning Natural Religion'', that he was an agnostic, but this remains subject to debate.
42106
42107 ===Thomas Henry Huxley===
42108 Agnostic views are as old as [[philosophical skepticism]], but the terms agnostic and agnosticism were created by Huxley to sum up his thoughts on contemporary developments of metaphysics about the &quot;unconditioned&quot; (Hamilton) and the &quot;unknowable&quot; ([[Herbert Spencer]]). It is important, therefore, to discover Huxley's own views on the matter. Though Huxley began to use the term &quot;agnostic&quot; in 1869, his opinions had taken shape some time before that date. In a letter of September 23, 1860, to Charles Kingsley, Huxley discussed his views extensively:
42109
42110 :I neither affirm nor deny the immortality of man. I see no reason for believing it, but, on the other hand, I have no means of disproving it. I have no ''[[a priori]]'' objections to the doctrine. No man who has to deal daily and hourly with nature can trouble himself about ''a priori'' difficulties. Give me such evidence as would justify me in believing in anything else, and I will believe that. Why should I not? It is not half so wonderful as the conservation of force or the indestructibility of matter. . . .
42111
42112 :It is no use to talk to me of analogies and probabilities. I know what I mean when I say I believe in the law of the inverse squares, and I will not rest my life and my hopes upon weaker convictions. . . .
42113
42114 :That my personality is the surest thing I know may be true. But the attempt to conceive what it is leads me into mere verbal subtleties. I have champed up all that chaff about the ego and the non-ego, noumena and phenomena, and all the rest of it, too often not to know that in attempting even to think of these questions, the human intellect flounders at once out of its depth.
42115
42116 And again, to the same correspondent, [[May 6]], [[1863]]:
42117
42118 :I have never had the least sympathy with the ''a priori'' reasons against [[orthodoxy]], and I have by nature and disposition the greatest possible antipathy to all the atheistic and [[infidel]] school. Nevertheless I know that I am, in spite of myself, exactly what the [[Christian]] would call, and, so far as I can see, is justified in calling, atheist and infidel. I cannot see one shadow or tittle of evidence that the great unknown underlying the phenomenon of the universe stands to us in the relation of a Father [who] loves us and cares for us as Christianity asserts. So with regard to the other great Christian dogmas, immortality of soul and future state of rewards and punishments, what possible objection can I&amp;mdash;who am compelled perforce to believe in the immortality of what we call Matter and Force, and in a very unmistakable present state of rewards and punishments for our deeds&amp;mdash;have to these doctrines? Give me a scintilla of evidence, and I am ready to jump at them.
42119
42120 Of the origin of the name agnostic to describe this attitude, Huxley gave (Coll. Ess. v. pp. 237-239) the following account:
42121
42122 :So I took thought, and invented what I conceived to be the appropriate title of &quot;agnostic.&quot; It came into my head as suggestively antithetic to the &quot;gnostic&quot; of Church history, who professed to know so much about the very things of which I was ignorant. To my great satisfaction the term took.
42123
42124 Huxley's agnosticism is believed to be a natural consequence of the intellectual and philosophical conditions of the [[1860]]s, when clerical intolerance was trying to suppress scientific discoveries which appeared to clash with a literal reading of the [[Book of Genesis]] and other established [[Jewish]] and Christian doctrines. Agnosticism should not, however, be confused with [[natural theology]], [[deism]], [[pantheism]], or other science positive forms of [[theism]].
42125
42126 By way of clarification, Huxley states, &quot;In matters of the intellect, follow your reason as far as it will take you, without regard to any other consideration. And negatively: In matters of the intellect, do not pretend that conclusions are certain which are not demonstrated or demonstrable&quot; (Huxley, ''Agnosticism'', 1889). While A. W. Momerie has noted that this is nothing but a definition of [[honesty]], Huxley's usual definition goes beyond mere honesty to insist that these metaphysical issues are fundamentally unknowable.
42127
42128 ===Bertrand Russell===
42129 [[Bertrand Russell]]'s [[pamphlet]], ''Why I Am Not a Christian,'' based on a speech delivered in 1927 and later included in a book of the same title, is considered a classic statement of agnosticism. The essay briefly lays out Russell&amp;#8217;s objections to some of the [[arguments for the existence of God]] before discussing his moral objections to Christian teachings. He then calls upon his readers to &quot;stand on their own two feet and look fair and square at the world,&quot; with a &quot;fearless attitude and a free intelligence.&quot;
42130
42131 In 1939, Russell gave a lecture on ''The existence and nature of God'', in which he characterised himself as an agnostic. He said:
42132
42133 :The existence and nature of God is a subject of which I can discuss only half. If one arrives at a negative conclusion concerning the first part of the question, the second part of the question does not arise; and my position, as you may have gathered, is a negative one on this matter. (Collected Papers, Vol 10, p.255)
42134
42135 However, later in the same lecture, discussing modern non-anthropomorphic concepts of God, Russell states:
42136
42137 :That sort of God is, I think, not one that can actually be disproved, as I think the omnipotent and benevolent creator can. (p.258)
42138
42139 In Russell's 1947 pamphlet, ''Am I An Atheist Or An Agnostic?'' (subtitled ''A Plea For Tolerance In The Face Of New Dogmas''), he ruminates on the problem of what to call himself:
42140
42141 :As a philosopher, if I were speaking to a purely philosophic audience I should say that I ought to describe myself as an Agnostic, because I do not think that there is a conclusive argument by which one prove that there is not a God.
42142
42143 :On the other hand, if I am to convey the right impression to the ordinary man in the street I think I ought to say that I am an Atheist, because when I say that I cannot prove that there is not a God, I ought to add equally that I cannot prove that there are not the Homeric gods.
42144
42145 In his 1953 essay, ''What Is An Agnostic?'' Russell states:
42146
42147 :An agnostic thinks it impossible to know the truth in matters such as God and the future life with which Christianity and other religions are concerned. Or, if not impossible, at least impossible at the present time.
42148
42149 However, later in the essay, Russell says:
42150
42151 :I think that if I heard a voice from the sky predicting all that was going to happen to me during the next twenty-four hours, including events that would have seemed highly improbable, and if all these events then produced to happen, I might perhaps be convinced at least of the existence of some superhuman intelligence.
42152
42153 He didn't say &quot;supreme&quot; or &quot;supernatural&quot; intelligence: these terms are metaphysically loaded.
42154
42155 For Russell, then, agnosticism doesn't necessarily assert that it is ''in principle'' impossible to know whether or not there is a God. Moreover, &quot;An Agnostic may think the Christian God as improbable as the Olympians; in that case, he is, for practical purposes, at one with the atheists.&quot;
42156
42157 ===Logical positivism===
42158 [[logical positivism|Logical positivists]], such as [[Rudolph Carnap]] and [[A. J. Ayer]], are sometimes thought to be agnostic. Using arguments reminiscent of [[Wittgenstein]]&amp;#8217;s famous &quot;Whereof one cannot speak, thereof one must be silent,&quot; they viewed any talk of god(s) as literally [[nonsense]]. For the logical positivists and adherents of similar schools of thought, statements about religious or other transcendent experiences could not have a truth value and were deemed to be without meaning. But this includes all utterances about
42159 god(s), ''even'' those agnostic statements that deny knowledge of God(s) are possible. In ''Language, Truth and Logic'' Ayer explicitly rejects agnosticism on the grounds that an agnostic, despite claiming that knowledge of god(s) are not possible, nevertheless holds that statements about god(s) have meaning. This position, however, is valid only in the case of agnostics who define their agnosticism in this fashion. ''[[Ignosticism|Ignostics]]'' define agnosticism in a manner consistent with the logical positivist view, holding theism to be ''incoherent.''
42160
42161 ==References==
42162 * ''Collected Essays'', Thomas Huxley, ISBN 1855069229
42163 * ''Man's Place In Nature'', Thomas Huxley, ISBN 037575847X
42164 * ''Why I Am Not a Christian'', Bertrand Russell, ISBN 0671203231
42165 * ''Dialogues Concerning Natural Religion'', David Hume, ISBN 0140445366
42166 * ''Language, Truth, and Logic'', A.J. Ayer, ISBN 0486200108
42167
42168 ==See also==
42169 * [[List of agnostics]]
42170 * [[Religious freedom]]
42171
42172 ==External links==
42173 {{wikiquote}}
42174 * {{gutenberg author| id=R.+G.+Ingersoll | name=Robert G. Ingersoll}}
42175 * [http://humanum.arts.cuhk.edu.hk/humftp/E-text/Russell/agnostic.htm What Is An Agnostic?] by Bertrand Russell, [1953].
42176 * [http://etext.lib.virginia.edu/cgi-local/DHI/dhi.cgi?id=dv1-03 ''Dictionary of the History of Ideas'':] Agnosticism
42177 * [http://www.iidb.org/vbb/index.php The Internet Infidels Discussion Forums''(Worldwide)'' ]
42178 * [http://www.infidels.org/index.shtml The Secular Web]
42179 * [http://plato.stanford.edu/entries/atheism-agnosticism/ Stanford Encyclopedia of Philosophy entry]
42180 * [http://www.religioustolerance.org/agnostic.htm Religious Tolerance.org - Agnosticism]
42181 * [http://www.allaboutphilosophy.org/agnostic.htm Agnostic]
42182 * [http://aleph0.clarku.edu/huxley/CE5/Agn-X.html &quot;Agnosticism and Christianity&quot; (1899)] by T. H. Huxley
42183 * [http://www.agnosis.org AGNOSIS: The History &amp; Future of Agnosticism]
42184
42185 {{Philosophy navigation}}
42186
42187 [[Category:Agnosticism|*]]
42188
42189 [[ar:Ų„اØŖØ¯ØąŲŠØŠ]]
42190 [[bg:АĐŗĐŊĐžŅŅ‚иŅ†Đ¸ĐˇŅŠĐŧ]]
42191 [[ca:Agnosticisme]]
42192 [[cs:Agnosticismus]]
42193 [[da:Agnosticisme]]
42194 [[de:Agnostizismus]]
42195 [[et:Agnostitsism]]
42196 [[el:ΑÎŗÎŊĪ‰ĪƒĪ„ΚÎēΚĪƒÎŧĪŒĪ‚]]
42197 [[es:Agnosticismo]]
42198 [[eo:Agnostikismo]]
42199 [[fr:Agnosticisme]]
42200 [[gd:Adhbharachais]]
42201 [[id:Agnostisisme]]
42202 [[ia:Agnosticismo]]
42203 [[it:Agnosticismo]]
42204 [[he:אגנוסטיו×Ē]]
42205 [[jv:Agnostisisme]]
42206 [[ka:აგნოსáƒĸიáƒĒიზმი]]
42207 [[lb:Agnostizismus]]
42208 [[hu:Agnoszticizmus]]
42209 [[nl:Agnosticisme]]
42210 [[ja:不可įŸĨčĢ–]]
42211 [[no:Agnostisisme]]
42212 [[pl:Agnostycyzm]]
42213 [[pt:Agnosticismo]]
42214 [[ro:Agnosticism]]
42215 [[ru:АĐŗĐŊĐžŅŅ‚иŅ†Đ¸ĐˇĐŧ]]
42216 [[sh:Agnosticizam]]
42217 [[simple:Agnosticism]]
42218 [[sl:Agnosticizem]]
42219 [[sr:АĐŗĐŊĐžŅŅ‚иŅ†Đ¸ĐˇĐ°Đŧ]]
42220 [[fi:Agnostismi]]
42221 [[sv:Agnosticism]]
42222 [[tr:Agnostisizm]]
42223 [[zh:不可įŸĨčŽē]]</text>
42224 </revision>
42225 </page>
42226 <page>
42227 <title>Aluminum</title>
42228 <id>895</id>
42229 <revision>
42230 <id>20455286</id>
42231 <timestamp>2005-08-07T04:53:53Z</timestamp>
42232 <contributor>
42233 <username>Tregoweth</username>
42234 <id>7402</id>
42235 </contributor>
42236 <comment>reinstating #REDIRECT [[Aluminium]]</comment>
42237 <text xml:space="preserve">#REDIRECT [[Aluminium]]</text>
42238 </revision>
42239 </page>
42240 <page>
42241 <title>Argon</title>
42242 <id>896</id>
42243 <revision>
42244 <id>41913727</id>
42245 <timestamp>2006-03-02T16:05:01Z</timestamp>
42246 <contributor>
42247 <username>Edgar181</username>
42248 <id>491706</id>
42249 </contributor>
42250 <comment>Revert to revision 41866142 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
42251 <text xml:space="preserve">{{this|a chemical element|Argon (disambiguation)}}
42252 {{Elementbox_header | number=18 | symbol=Ar | name=argon | left=[[chlorine]] | right=[[potassium]] | above=[[neon|Ne]] | below=[[krypton|Kr]] | color1=#c0ffff | color2=green }}
42253 {{Elementbox_series | [[noble gas]]es }}
42254 {{Elementbox_groupperiodblock | group=18 | period=3 | block=p }}
42255 {{Elementbox_appearance_img | Ar,18| colorless }}
42256 {{Elementbox_atomicmass_gpm | [[1 E-26 kg|39.948]][[List of elements by atomic mass|(1)]] }}
42257 {{Elementbox_econfig | &amp;#91;[[neon|Ne]]&amp;#93; 3s&lt;sup&gt;2&lt;/sup&gt; 3p&lt;sup&gt;6&lt;/sup&gt; }}
42258 {{Elementbox_epershell | 2, 8, 8 }}
42259 {{Elementbox_section_physicalprop | color1=#c0ffff | color2=green }}
42260 {{Elementbox_phase | [[gas]] }}
42261 {{Elementbox_density_gplstp | 1.784 }}
42262 {{Elementbox_meltingpoint | k=83.80 | c=-189.35 | f=-308.83 }}
42263 {{Elementbox_boilingpoint | k=87.30 | c=-185.85 | f=-302.53 }}
42264 {{Elementbox_heatfusion_kjpmol | 1.18 }}
42265 {{Elementbox_heatvaporiz_kjpmol | 6.43 }}
42266 {{Elementbox_heatcapacity_jpmolkat25 | 20.786 }}
42267 {{Elementbox_vaporpressure_katpa | &amp;nbsp; | 47 | 53 | 61 | 71 | 87 | comment= }}
42268 {{Elementbox_section_atomicprop | color1=#c0ffff | color2=green }}
42269 {{Elementbox_crystalstruct | cubic face centered }}
42270 {{Elementbox_oxistates | 0 }}
42271 {{Elementbox_electroneg_pauling | no data }}
42272 {{Elementbox_ionizationenergies4 | 1520.6 | 2665.8 | 3931 }}
42273 {{Elementbox_atomicradius_pm | [[1 E-11 m|71]] }}
42274 {{Elementbox_atomicradiuscalc_pm | [[1 E-11 m|71]] }}
42275 {{Elementbox_covalentradius_pm | [[1 E-11 m|97]] }}
42276 {{Elementbox_vanderwaalsrad_pm | [[1 E-10 m|188]] }}
42277 {{Elementbox_section_miscellaneous | color1=#c0ffff | color2=green }}
42278 {{Elementbox_magnetic | nonmagnetic }}
42279 {{Elementbox_thermalcond_wpmkat300k | 17.72 m}}
42280 {{Elementbox_speedofsound_mps | (gas, 27 °C) 323 }}
42281 {{Elementbox_cas_number | 7440-37-1 }}
42282 {{Elementbox_isotopes_begin | isotopesof=argon | color1=#c0ffff | color2=green }}
42283 {{Elementbox_isotopes_stable | mn=36 | sym=Ar | na=0.337% | n=18 }}
42284 {{Elementbox_isotopes_decay | mn=37 | sym=Ar | na=[[synthetic radioisotope|syn]] | hl=35 [[day|d]] | dm=[[Electron capture|&amp;epsilon;]] | de=? | pn=37 | ps=[[chlorine|Cl]] }}
42285 {{Elementbox_isotopes_stable | mn=38 | sym=Ar | na=0.063% | n=20 }}
42286 {{Elementbox_isotopes_decay | mn=39 | sym=Ar | na=[[synthetic radioisotope|syn]] | hl=[[1 E9 s|269]] [[year|y]] | dm=[[beta emission|&amp;beta;&lt;sup&gt;-&lt;/sup&gt;]] | de=0.565 | pn=39 | ps=[[potassium|K]] }}
42287 {{Elementbox_isotopes_stable | mn=40 | sym=Ar | na=99.600% | n=22 }}
42288 {{Elementbox_isotopes_decay | mn=42 | sym=Ar | na=[[synthetic radioisotope|syn]] | hl=32.9 [[year|y]] | dm=&amp;beta;&lt;sup&gt;-&lt;/sup&gt; | de=0.600 | pn=42 | ps=[[potassium|K]] }}
42289 {{Elementbox_isotopes_end}}
42290 {{Elementbox_footer | color1=#c0ffff | color2=green }}
42291
42292 '''Argon''' is a [[chemical element]] in the [[periodic table]]. It has the symbol '''Ar''' and [[atomic number]] 18. The third [[noble gas]], in group 18, argon makes up about 1% of the [[Earth's atmosphere]], making it the most common noble gas on Earth.
42293
42294 == Notable characteristics ==
42295 Argon is 2.5 times as [[solubility|soluble]] in water as [[nitrogen]] which is approximately the same solubility as [[oxygen]]. This highly stable chemical element is colorless and odorless in both its liquid and gaseous forms.
42296 There are few known true chemical compounds that contain argon, which is one of the reasons it was formerly called an inert gas. The creation of argon hydrofluoride (HArF), a highly unstable compound of argon with [[fluorine]], was reported by researchers at the [[University of Helsinki]] in 2000, but has not been confirmed as of yet.
42297
42298 Although no ''chemical'' compounds of argon are presently confirmed, argon can form [[clathrates]] with [[water (molecule)|water]] when atoms of it are trapped in a lattice of the water molecules. Theoretical calculations on computers have shown several Argon compounds that should be stable but for which no synthesis routes are currently known.
42299
42300 == Applications ==
42301 It is used in lighting since it will not react with the filament in a [[lightbulb]] even under high temperatures and other cases where diatomic nitrogen is an unsuitable (semi-)[[inert]] gas. Other uses;
42302
42303 *Argon is used as an inert gas shield in many forms of [[welding]], including [[metal inert gas welding|mig]] and [[Tungsten inert gas welding|tig]] (where the &quot;'''I'''&quot; stands for [[inert]]).
42304 *as a non-reactive blanket in the manufacture of [[titanium]] and other reactive elements.
42305 *as a protective atmosphere for growing [[silicon]] and [[germanium]] [[crystal]]s.
42306 *as a gas for use in [[plasma globe | plasma globes]].
42307 *as a gas for use in energy efficient [[window]]s.
42308 *Argon-39 has been used for a number of applications, primarily [[ice core|ice coring]]. It has also been used for [[ground water]] dating.
42309 *[[Cryosurgery]] procedures such as [[cryoablation]] uses liquefied argon to destroy [[cancer]] cells.
42310
42311
42312 Argon is also used in technical [[SCUBA]] diving to inflate the dry suit, because it is inert and has low thermal conductivity.
42313
42314 == History ==
42315 Argon ([[Greek language|Greek]] ''argos'' meaning &quot;inactive&quot;) was suspected to be present in air by [[Henry Cavendish]] in [[1785]] but was not discovered until [[1894]] by [[John William Strutt, 3rd Baron Rayleigh|Lord Rayleigh]] and Sir [[William Ramsay]].
42316
42317 == Occurrence ==
42318 This gas is isolated through liquid air fractionation since the [[Earth's atmosphere|atmosphere]] contains only 0.934% volume of argon (1.29% mass). The [[Mars (planet)|Martian]] atmosphere in contrast contains 1.6% of Ar-40 and 5 [[part per million|ppm]] Ar-36. In 2005, the ''[[Cassini-Huygens|Huygens]]'' probe also discovered the presence of Ar-40 on [[Titan (moon)|Titan]], the largest moon of [[Saturn (planet)|Saturn]] [http://www.esa.int/esaCP/SEMHB881Y3E_index_0.html].
42319
42320 == Compounds ==
42321 Before 1962, argon and the other noble gases were generally considered to be chemically inert and not able to form compounds. However, since then, scientists have been able to force the heavier noble gases to form compounds. In 2000, the first argon compounds were formed by researchers at the [[University of Helsinki]]. By shining ultraviolet light onto frozen argon containing a small amount of hydrogen fluoride, they were able to form argon hydrofluoride (HArF): see http://pubs.acs.org/cen/80th/noblegases.html in its paragraph starting &quot;''Many recent findings''&quot;. It is stable up to 40°[[kelvin|K]].
42322
42323 == Isotopes ==
42324 The main [[isotope]]s of argon found on Earth are Ar-40, Ar-36, and Ar-38. Naturally occurring [[potassium|K]]-40 with a [[half-life]] of 1.250 x 10&lt;sup&gt;9&lt;/sup&gt; years, decays to stable Ar-40 (11.2%) by [[electron capture]] and by [[positron emission]], and also transforms to stable Ca-40 (88.8%) via [[beta decay]]. These properties and ratios are used to determine the age of [[Rock (geology)|rock]]s.
42325
42326 In the Earth's atmosphere, Ar-39 is made by [[cosmic ray]] activity, primarily with Ar-40. In the subsurface environment, it is also produced through [[neutron capture]] by K-39 or [[alpha decay|alpha emission]] by [[calcium]]. Argon-37 is created from the decay of calcium-40 as a result of subsurface [[nuclear testing|nuclear explosions]]. It has a half-life of 35 days.
42327
42328 ==References==
42329 *[http://periodic.lanl.gov/elements/18.html Los Alamos National Laboratory &amp;ndash; Argon]
42330
42331 == External links ==
42332 {{Commons|Argon}}
42333 *[http://www.webelements.com/webelements/elements/text/Ar/index.html WebElements.com &amp;ndash; Argon]
42334 *Diving applications: [http://www.decompression.org/maiken/Why_Argon.htm Why Argon?]
42335 *[http://www.uigi.com/argon.html Argon Ar Properties, Uses, Applications]
42336 *[http://www.compchemwiki.org/index.php?title=Argon Computational Chemistry Wiki]
42337
42338 [[Category:Chemical elements]]
42339 [[Category:Noble gases]]
42340
42341 [[af:Argon]]
42342 [[ar:ØŖØąØēŲˆŲ† (ØšŲ†ØĩØą)]]
42343 [[bg:АŅ€ĐŗĐžĐŊ]]
42344 [[bs:Argon]]
42345 [[ca:ArgÃŗ]]
42346 [[cs:Argon]]
42347 [[cy:Argon]]
42348 [[da:Argon]]
42349 [[de:Argon]]
42350 [[et:Argoon]]
42351 [[es:ArgÃŗn]]
42352 [[eo:Argono]]
42353 [[fr:Argon]]
42354 [[ko:ė•„ëĨ´ęŗ¤]]
42355 [[hr:Argon]]
42356 [[io:Argono]]
42357 [[id:Argon]]
42358 [[is:Argon]]
42359 [[it:Argon]]
42360 [[he:ארגון (יסוד)]]
42361 [[lv:Argons]]
42362 [[lt:Argonas]]
42363 [[hu:Argon]]
42364 [[mi:Argon]]
42365 [[ms:Argon]]
42366 [[nl:Argon]]
42367 [[ja:ã‚ĸãƒĢゴãƒŗ]]
42368 [[no:Argon]]
42369 [[nn:Argon]]
42370 [[oc:Argon]]
42371 [[pl:Argon]]
42372 [[pt:Argon]]
42373 [[ru:АŅ€ĐŗĐžĐŊ]]
42374 [[sh:Argon]]
42375 [[simple:Argon]]
42376 [[sl:Argon]]
42377 [[sr:АŅ€ĐŗĐžĐŊ]]
42378 [[fi:Argon]]
42379 [[sv:Argon]]
42380 [[th:ā¸­ā¸˛ā¸ŖāšŒā¸ā¸­ā¸™]]
42381 [[uk:АŅ€ĐŗĐžĐŊ]]
42382 [[vi:Agon]]
42383 [[zh:æ°Š]]</text>
42384 </revision>
42385 </page>
42386 <page>
42387 <title>Arsenic</title>
42388 <id>897</id>
42389 <revision>
42390 <id>42000482</id>
42391 <timestamp>2006-03-03T03:30:18Z</timestamp>
42392 <contributor>
42393 <username>Viriditas</username>
42394 <id>101805</id>
42395 </contributor>
42396 <comment>Revert to revision 41605710 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
42397 <text xml:space="preserve">{{Elementbox_header | number=33 | symbol=As | name=arsenic | left=[[germanium]] | right=[[selenium]] | above=[[phosphorus|P]] | below=[[antimony|Sb]] | color1=#cccc99 | color2=black }}
42398 {{Elementbox_series | [[metalloid]]s }}
42399 {{Elementbox_groupperiodblock | group=15 | period=4 | block=p }}
42400 {{Elementbox_appearance_img | As,33| metallic gray }}
42401 {{Elementbox_atomicmass_gpm | [[1 E-25 kg|74.92160]][[List of elements by atomic mass|(2)]] }}
42402 {{Elementbox_econfig | &amp;#91;[[argon|Ar]]&amp;#93; 3d&lt;sup&gt;10&lt;/sup&gt; 4s&lt;sup&gt;2&lt;/sup&gt; 4p&lt;sup&gt;3&lt;/sup&gt; }}
42403 {{Elementbox_epershell | 2, 8, 18, 5 }}
42404 {{Elementbox_section_physicalprop | color1=#cccc99 | color2=black }}
42405 {{Elementbox_phase | [[solid]] }}
42406 {{Elementbox_density_gpcm3nrt | 5.727 }}
42407 {{Elementbox_densityliq_gpcm3mp | 5.22 }}
42408 {{Elementbox_meltingpoint | k=1090 | c=817 | f=1503 }}
42409 {{Elementbox_boilingpoint | k=[[sublimation (physics)|subl.]] 887 | c=614 | f=1137 }}
42410 {{Elementbox_heatfusion_kjpmol | (gray) 24.44 }}
42411 {{Elementbox_heatvaporiz_kjpmol | ? 34.76 }}
42412 {{Elementbox_heatcapacity_jpmolkat25 | 24.64 }}
42413 {{Elementbox_vaporpressure_katpa | 553 | 596 | 646 | 706 | 781 | 874 | comment= }}
42414 {{Elementbox_section_atomicprop | color1=#cccc99 | color2=black }}
42415 {{Elementbox_crystalstruct | rhombohedral }}
42416 {{Elementbox_oxistates | Âą'''3''', 5&lt;br /&gt;(mildly [[acid]]ic oxide) }}
42417 {{Elementbox_electroneg_pauling | 2.18 }}
42418 {{Elementbox_ionizationenergies4 | 947.0 | 1798 | 2735 }}
42419 {{Elementbox_atomicradius_pm | [[1 E-10 m|115]] }}
42420 {{Elementbox_atomicradiuscalc_pm | [[1 E-10 m|114]] }}
42421 {{Elementbox_covalentradius_pm | [[1 E-10 m|119]] }}
42422 {{Elementbox_vanderwaalsrad_pm | [[1 E-10 m|185]] }}
42423 {{Elementbox_section_miscellaneous | color1=#cccc99 | color2=black }}
42424 {{Elementbox_magnetic | no data }}
42425 {{Elementbox_eresist_ohmmat20 | 333 n}}
42426 {{Elementbox_thermalcond_wpmkat300k | 50.2 }}
42427 {{Elementbox_youngsmodulus_gpa | 8 }}
42428 {{Elementbox_bulkmodulus_gpa | 22 }}
42429 {{Elementbox_mohshardness | 3.5 }}
42430 {{Elementbox_brinellhardness_mpa | 1440 }}
42431 {{Elementbox_cas_number | 7440-38-2 }}
42432 {{Elementbox_isotopes_begin | isotopesof=arsenic | color1=#cccc99 | color2=black }}
42433 {{Elementbox_isotopes_decay2 | mn=73 | sym=As | na=[[synthetic radioisotope|syn]] | hl=[[1 E6 s|80.3]] [[day|d]] | dm1=[[electron capture|Îĩ]] | de1=- | pn1=73 | ps1=[[germanium|Ge]] | dm2=[[Gamma radiation|Îŗ]] | de2=0.05[[Delayed nuclear radiation|D]], 0.01D, [[Conversion electron|e]] | pn2= | ps2=- }}
42434 {{Elementbox_isotopes_decay4 | mn=74 | sym=As | na=[[synthetic radioisotope|syn]] | hl=[[1 E6 s|17.78]] d | dm1=Îĩ | de1=- | pn1=74 | ps1=[[germanium|Ge]] | dm2=[[Positron emission|β&lt;sup&gt;+&lt;/sup&gt;]] | de2=0.941 | pn2=74 | ps2=[[germanium|Ge]] | dm3=Îŗ | de3=0.595, 0.634 | pn3= | ps3=- | dm4=[[beta decay|β&lt;sup&gt;-&lt;/sup&gt;]] | de4=1.35, 0.717 | pn4=74 | ps4=[[selenium|Se]] }}
42435 {{Elementbox_isotopes_stable | mn=75 | sym=As | na=100% | n=42 }}
42436 {{Elementbox_isotopes_end}}
42437 {{Elementbox_footer | color1=#cccc99 | color2=black }}
42438
42439 '''Arsenic''' is a [[chemical element]] in the [[periodic table]] that has the symbol '''As''' and [[atomic number]] 33. This is a notoriously poisonous [[metalloid]] that has three [[allotropy|allotropic]] forms; yellow, black and grey. Arsenic and its compounds are used as [[pesticides]], [[herbicide]]s, [[insecticide]]s and various [[alloy]]s.
42440
42441 == Notable characteristics ==
42442 Arsenic is very similar chemically to its predecessor [[phosphorus]], so much so that it will partly substitute for [[phosphorus]] in biochemical reactions and is thus [[poison]]ous. When heated it rapidly [[oxidation|oxidizes]] to [[arsenic trioxide]], which has a garlic odor. Arsenic and some arsenic compounds can also [[sublimation (chemistry)|sublime]] upon heating, converting directly to a gaseous form. Elemental arsenic is found in two solid forms: yellow and gray/metallic, with [[specific gravity|specific gravities]] of 1.97 and 5.73, respectively.
42443
42444 == Applications ==
42445 [[Lead hydrogen arsenate]] has been used, well into the [[20th century]], as an [[insecticide]] on [[fruit tree]]s (resulting in [[neurological damage]] to those working the sprayers), and [[Scheele's Green]] has even been recorded in the [[19th century]] as a [[food dye|coloring agent]] in [[sweets]]. In the last half century, [[monosodium methyl arsenate]] (MSMA), a less toxic organic form of arsenic, has replaced lead arsenate's role in agriculture.
42446
42447 The application of most concern to the general public is probably that of [[wood]] which has been treated with [[chromated copper arsenate]] (&quot;CCA&quot;, or &quot;[[Tanalith]]&quot;, and the vast majority of older &quot;[[lumber#Preservatives|pressure treated]]&quot; wood). CCA timber is still in widespread use in many countries, and was heavily used during the latter half of the [[20th century]] as a structural, and outdoor [[building material]], where there was a risk of [[rot]], or [[insect]] infestation in untreated timber. Although widespread bans followed the publication of studies which showed low-level leaching from in-situ timbers (such as children's [[playground]] equipment) into surrounding [[soil]], the most serious risk is presented by the burning of CCA timber. Recent years have seen fatal animal poisonings, and serious human poisonings resulting from the ingestion - directly or indirectly - of wood ash from CCA timber (the lethal human dose is approximately 20 grams of ash - roughly a tablespoon). Scrap CCA construction timber continues to be widely burnt through ignorance, in both commercial, and domestic fires. Safe disposal of CCA timber remains patchy, and little practiced, there is concern in some quarters about the widespread [[landfill]] disposal of such timber.
42448
42449 During the 18th, 19th, and 20th centuries, a number of arsenic compounds have been used as medicines, including [[arsphenamine]] (by [[Paul Ehrlich]]) and [[arsenic trioxide]] (by Thomas Fowler).
42450 Arsphenamine as well as [[Neosalvarsan]] was indicated for [[syphilis]] and [[trypanosomiasis]], but has been superseded by modern [[antibiotics]].
42451 Arsenic trioxide has been used in a variety of ways over the past 200 years, but most commonly in the treatment of cancer. The [[FDA]] in 2000 approved this compound for the treatment of patients with [[acute promyelocytic leukemia]] that is resistant to [[all-trans retinoic acid|ATRA]].{{an|ArsTriChemo}}
42452
42453 But arsenic isn't always good for [[cancer]]. Some studies show that if you use arsenic you have a high risk for cancer.
42454
42455 Copper acetoarsenite was used as a green [[pigment]] known under many different names, including [[Paris Green]] and Emerald Green. It caused numerous [[arsenic poisoning]]s.
42456
42457 Other uses;
42458 * Various [[agriculture|agricultural]] insecticides and poisons.
42459 * [[Gallium arsenide]] is an important [[semiconductor]] material, used in [[integrated circuit]]s. Circuits made using the compound are much faster (but also much more expensive) than those made in [[silicon]]. Unlike silicon it is [[direct bandgap]], and so can be used in [[laser diode]]s and [[LED]]s to directly convert [[electricity]] into [[light]].
42460 * Arsenic trioxide is used in [[Australia]] for treating [[termite]] infestations in houses.
42461 * Also used in [[bronzing]] and [[pyrotechny]].
42462
42463 == History ==
42464 The word ''arsenic'' is borrowed from the [[Persian language|Persian]] word Ø˛ØąŲ†ŲŠØŽ ''Zarnikh'' meaning &quot;yellow [[orpiment]]&quot;. ''Zarnikh'' was borrowed by [[Greek language|Greek]] as ''arsenikon''. Arsenic has been known and used in [[Iran|Persia]] and elsewhere since ancient times. As the symptoms of [[arsenic poisoning]] were somewhat ill-defined, it was frequently used for [[murder]] until the advent of the [[Marsh test]], a sensitive chemical test for its presence. (Another less sensitive but more general test is the [[Reinsch test]].) Due to its use by the ruling class to bump each other off and its incredible potency and discreetness, arsenic has been called the ''Poison of Kings and the King of Poisons''.
42465
42466 During the Bronze Age, arsenic was often included in the bronze (mostly as an impurity), which made the alloy harder.
42467
42468 [[Albertus Magnus]] is believed to have been the first to isolate the
42469 element in [[1250]]. In [[1649]] [[Johann Schroeder]] published two ways of preparing arsenic.
42470
42471 [[image:arsenic-symbol.png|75px|right|Alchemical symbol for arsenic]]The [[alchemy|alchemical]] symbol for arsenic is shown opposite.
42472
42473 In Victorian times, arsenic was mixed with [[vinegar]] and [[chalk]] and eaten by women to improve the [[complexion]] of their faces, making their skin more fair to show they did not work in the fields. Arsenic was also rubbed into the faces and arms of women to improve their complexion.
42474
42475 There is a massive epidemic of arsenic poisoning in [[Bangladesh]]{{an|bangladesh}}, where it is estimated that approximately 57 million people are drinking [[groundwater]] with arsenic concentrations elevated above the [[World Health Organization]]'s standard of 50 [[Concentration#.22Parts-per.22 Notation|parts per billion]]. The arsenic in the groundwater is of natural origin, and is released from the sediment into the groundwater due to the anoxic conditions of the subsurface. This groundwater began to be used after western [[Non-governmental organization|NGO]]s instigated a massive tube [[Water well|well]] drinking-water program in the late [[twentieth century]]. This program was designed to prevent drinking of bacterially-contaminated surface waters, but unfortunately failed to test for arsenic in the groundwater.(2) Many other countries in [[Southeast Asia|South East Asia]], such as [[Vietnam]], [[Cambodia]], and [[Tibet]], are thought to have geological environments similarly conducive to generation of high-arsenic groundwaters.
42476
42477 == Occurrence ==
42478 [[Image:Native arsenic.jpg|right|200px|thumb|Massive native arsenic]]
42479 [[Arsenopyrite]] also called mispickel ([[iron|Fe]][[sulfur|S]]As) is the most common [[mineral]] from which, on heating, the arsenic sublimes leaving ferrous sulfide. Other arsenic minerals include [[realgar]], [[mimetite]], [[cobaltite]] and [[erythrite]].
42480
42481 The most important compounds of arsenic are [[white arsenic]], its [[arsenic sulfide|sulfide]], [[Paris Green]], [[calcium arsenate]], and [[lead hydrogen arsenate]]. Paris Green, calcium arsenate, and lead arsenate have been used as [[agriculture|agricultural]] [[insecticide]]s and [[poison]]s. It is sometimes found native, but usually combined with [[silver]], [[cobalt]], [[nickel]], [[iron]], [[antimony]], or [[sulfur]].
42482
42483 In addition to the inorganic forms mentioned above, arsenic also occurs in various organic forms in the environment. Inorganic arsenic and its compounds, upon entering the [[food chain]], are progressively metabolised to a less toxic form of arsenic through a process of [[methylation]].
42484
42485 == Precautions ==
42486
42487 Arsenic and many of its compounds are especially potent poisons. Arsenic kills by [[allosteric inhibition]] of the metabolic [[enzyme]] [[lipothiamide pyrophosphate]], leading to death from multi-system [[organ failure]]. See [[arsenic poisoning]]. Arsenic and its compounds inhibit the , which is an important enzyme of metabolism. The [[post mortem]] reveals brick red colored [[mucosa]], due to severe [[haemorrhage]].
42488
42489 Elemental arsenic and arsenic compounds are classified as '''''[[toxic]]''''' and '''''dangerous for the environment''''' in the [[European Union]] under [[directive 67/548/EEC]].
42490 &lt;!-- INDEX 033-001-00-X (arsenic) R23/25-50/53; S1/2-20/21-28-45-60-61 --&gt;
42491 &lt;!-- INDEX 033-002-00-5 (other compounds) pareil --&gt;
42492
42493 The [[IARC]] recognizes arsenic and arsenic compounds as [[List of IARC Group 1 carcinogens|group 1 carcinogens]], and the EU lists [[arsenic trioxide]], [[arsenic pentoxide]] and [[arsenate]] salts as category 1 [[carcinogen]]s.
42494
42495 Growing the [[Brake (fern)]] [[Pteris vittata]] will remove arsenic from the soil.
42496
42497 == See also ==
42498 * [[Aqua Tofana]]
42499 * [[Fowler's solution]]
42500 * [[Arsenicosis]]
42501
42502 == Compounds ==
42503 *[[Arsenic acid]] (H&lt;sub&gt;3&lt;/sub&gt;AsO&lt;sub&gt;4&lt;/sub&gt;)
42504 *[[Arsenous acid]] (H&lt;sub&gt;3&lt;/sub&gt;AsO&lt;sub&gt;3&lt;/sub&gt;)
42505 *[[Arsenic trioxide]] (As&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;)
42506 *[[Arsine]] (Arsenic Trihydride AsH&lt;sub&gt;3&lt;/sub&gt;)
42507 *[[Cadmium arsenide]] (Cd&lt;sub&gt;3&lt;/sub&gt;As&lt;sub&gt;2&lt;/sub&gt;)
42508 *[[Gallium arsenide]] (GaAs)
42509 *[[Lead hydrogen arsenate]] (PbHAsO&lt;sub&gt;4&lt;/sub&gt;)
42510 ;See also [[:Category:Arsenic compounds]]
42511
42512 == References ==
42513
42514 * [http://periodic.lanl.gov/elements/33.html Los Alamos National Laboratory &amp;ndash; Arsenic]
42515
42516 == Endnotes ==
42517 # {{anb|ArsTriChemo}} Antman, Karen H. (2001). [http://theoncologist.alphamedpress.org/cgi/content/full/6/suppl_2/1 The History of Arsenic Trioxide in Cancer Therapy]. Introduction to a supplement to ''The Oncologist''. '''6''' (Suppl 2), 1-2. PMID 11331433.
42518 # {{anb|bangladesh}} Andrew Meharg, Venomous Earth - How Arsenic Caused The World's Worst Mass Poisoning, [http://www.macmillanscience.com/1403944997.htm Macmillan Science], 2005.
42519
42520 == External links ==
42521 {{Commons|Arsenic}}
42522 {{wiktionary}}
42523 *[http://www.asmalldoseof.org/ A Small Dose of Toxicology]
42524 * [http://www.atsdr.cdc.gov/HEC/CSEM/arsenic/ Case Studies in Environmental Medicine: Arsenic Toxicity]
42525 * [http://www.npi.gov.au/database/substance-info/profiles/11.html National Pollutant Inventory - Arsenic]
42526 * [http://www.webelements.com/webelements/elements/text/As/index.html WebElements.com &amp;ndash; Arsenic]
42527 * [http://www.origen.net/arsenic.html origen.net &amp;ndash; CCA wood and arsenic: toxicological effects of arsenic]
42528 * [http://www.clu-in.org/contaminantfocus/default.focus/sec/arsenic/cat/Overview/ Contaminant Focus: Arsenic] by the [[Environmental Protection Agency|EPA]].
42529 * [http://www.inchem.org/documents/ehc/ehc/ehc224.htm Environmental Health Criteria for Arsenic and Arsenic Compounds, 2001] by the [[World Health Organization|WHO]].
42530 * [http://www.greenfacts.org/arsenic/arsenic-1.htm A summary of the above report] by [[GreenFacts]].
42531 * [http://www-cie.iarc.fr/htdocs/monographs/vol23/arsenic.html Evaluation of the carcinogenicity of arsenic and arsenic compounds] by the [[IARC]].
42532
42533 [[Category:Metalloids]]
42534 [[Category:Pnictogens]]
42535 [[category:Toxicology]]
42536 [[Category:Chemical elements]]
42537
42538 {{Link FA|de}}
42539 {{Link FA|id}}
42540
42541 [[ar:Ø˛ØąŲ†ŲŠØŽ]]
42542 [[bg:АŅ€ŅĐĩĐŊ]]
42543 [[bs:Arsen]]
42544 [[ca:Arsènic]]
42545 [[cs:Arsen]]
42546 [[cy:Arsenig]]
42547 [[da:Arsen]]
42548 [[de:Arsen]]
42549 [[et:Arseen]]
42550 [[es:ArsÊnico]]
42551 [[eo:Arseno]]
42552 [[fa:ØĸØąØŗŲ†ÛŒÚŠ]]
42553 [[fr:Arsenic]]
42554 [[ko:비ė†Œ]]
42555 [[io:Arseno]]
42556 [[id:Arsenik]]
42557 [[is:Arsen]]
42558 [[it:Arsenico]]
42559 [[he:ארסן]]
42560 [[lv:Arsēns]]
42561 [[lt:Arsenas]]
42562 [[hu:ArzÊn]]
42563 [[nl:Arsenicum]]
42564 [[ja:ヒį´ ]]
42565 [[no:Arsen]]
42566 [[nn:Arsen]]
42567 [[oc:Arsenic]]
42568 [[pl:Arsen]]
42569 [[pt:ArsÃĒnio]]
42570 [[ru:МŅ‹ŅˆŅŒŅĐē]]
42571 [[sc:Arsènicu]]
42572 [[sl:Arzen]]
42573 [[sr:АŅ€ŅĐĩĐŊ]]
42574 [[fi:Arseeni]]
42575 [[sv:Arsenik]]
42576 [[th:ā¸Ēā¸˛ā¸Ŗā¸Ģā¸™ā¸š]]
42577 [[uk:АŅ€ŅĐĩĐŊ]]
42578 [[zh:į ˇ]]</text>
42579 </revision>
42580 </page>
42581 <page>
42582 <title>Antimony</title>
42583 <id>898</id>
42584 <revision>
42585 <id>41659149</id>
42586 <timestamp>2006-02-28T21:45:26Z</timestamp>
42587 <contributor>
42588 <username>Hairy Dude</username>
42589 <id>274535</id>
42590 </contributor>
42591 <minor />
42592 <comment>{{distinguish2}} replacing ad hoc disambig notice</comment>
42593 <text xml:space="preserve">{{distinguish2|[[antinomy|anti'''n'''o'''m'''y]], a type of [[paradox]]}}
42594 {{Elementbox_header | number=51 | symbol=Sb | name=antimony | left=[[tin]] | right=[[tellurium]] | above=[[arsenic|As]] | below=[[bismuth|Bi]] | color1=#cccc99 | color2=black }}
42595 {{Elementbox_series | [[metalloid]]s }}
42596 {{Elementbox_groupperiodblock | group=15 | period=5 | block=p }}
42597 {{Elementbox_appearance_img | Sb,51| silvery lustrous grey }}
42598 {{Elementbox_atomicmass_gpm | [[1 E-25 kg|121.760]][[List of elements by atomic mass|(1)]] }}
42599 {{Elementbox_econfig | &amp;#91;[[krypton|Kr]]&amp;#93; 4d&lt;sup&gt;10&lt;/sup&gt; 5s&lt;sup&gt;2&lt;/sup&gt; 5p&lt;sup&gt;3&lt;/sup&gt; }}
42600 {{Elementbox_epershell | 2, 8, 18, 18, 5 }}
42601 {{Elementbox_section_physicalprop | color1=#cccc99 | color2=black }}
42602 {{Elementbox_phase | [[solid]] }}
42603 {{Elementbox_density_gpcm3nrt | 6.697 }}
42604 {{Elementbox_densityliq_gpcm3mp | 6.53 }}
42605 {{Elementbox_meltingpoint | k=903.78 | c=630.63 | f=1167.13 }}
42606 {{Elementbox_boilingpoint | k=1860 | c=1587 | f=2889 }}
42607 {{Elementbox_heatfusion_kjpmol | 19.79 }}
42608 {{Elementbox_heatvaporiz_kjpmol | 193.43 }}
42609 {{Elementbox_heatcapacity_jpmolkat25 | 25.23 }}
42610 {{Elementbox_vaporpressure_katpa | 807 | 876 | 1011 | 1219 | 1491 | 1858 | comment= }}
42611 {{Elementbox_section_atomicprop | color1=#cccc99 | color2=black }}
42612 {{Elementbox_crystalstruct | rhombohedral }}
42613 {{Elementbox_oxistates | &amp;minus;3, '''3''', 5 }}
42614 {{Elementbox_electroneg_pauling | 2.05 }}
42615 {{Elementbox_ionizationenergies4 | 834 | 1594.9 | 2440 }}
42616 {{Elementbox_atomicradius_pm | [[1 E-10 m|145]] }}
42617 {{Elementbox_atomicradiuscalc_pm | [[1 E-10 m|133]] }}
42618 {{Elementbox_covalentradius_pm | [[1 E-10 m|138]] }}
42619 {{Elementbox_section_miscellaneous | color1=#cccc99 | color2=black }}
42620 {{Elementbox_magnetic | no data }}
42621 {{Elementbox_eresist_ohmmat20 | 417 n}}
42622 {{Elementbox_thermalcond_wpmkat300k | 24.4 }}
42623 {{Elementbox_thermalexpansion_umpmkat25 | 11.0 }}
42624 {{Elementbox_speedofsound_rodmpsat20 | 3420 }}
42625 {{Elementbox_youngsmodulus_gpa | 55 }}
42626 {{Elementbox_shearmodulus_gpa | 20 }}
42627 {{Elementbox_bulkmodulus_gpa | 42 }}
42628 {{Elementbox_mohshardness | 3.0 }}
42629 {{Elementbox_brinellhardness_mpa | 294 }}
42630 {{Elementbox_cas_number | 7440-36-0 }}
42631 {{Elementbox_isotopes_begin | isotopesof=antimony | color1=#cccc99 | color2=black }}
42632 {{Elementbox_isotopes_stable | mn=121 | sym=Sb | na=57.36% | n=70 }}
42633 {{Elementbox_isotopes_stable | mn=123 | sym=Sb | na=42.64% | n=72 }}
42634 {{Elementbox_isotopes_decay | mn=125 | sym=Sb
42635 | na=[[synthetic radioisotope|syn]] | hl=2.7582 [[year|y]]
42636 | dm=[[beta emission|Beta&lt;sup&gt;-&lt;/sup&gt;]] | de=0.767 | pn=125 | ps=[[tellurium|Te]] }}
42637 {{Elementbox_isotopes_end}}
42638 {{Elementbox_footer | color1=#cccc99 | color2=black }}
42639
42640 '''Antimony''' is a [[chemical element]] in the [[periodic table]] that has the symbol '''Sb''' ([[Latin (language)|L.]] ''Stibium'') and [[atomic number]] 51. A [[metalloid]], antimony has four allotropic forms. The stable form of antimony is a blue-white metal. Yellow and black antimony are unstable non-metals. Antimony is used in flame-proofing, [[paint]]s, [[ceramic]]s, [[Vitreous enamel|enamel]]s, a wide variety of [[alloy]]s, [[electronics]], and [[rubber]].
42641
42642 == Notable characteristics ==
42643 Antimony in its elemental form is a silvery white, [[brittle]], [[fusibility|fusible]], [[crystal|crystalline]] solid that exhibits poor electrical and heat [[conductivity]] properties and [[vaporize]]s at low [[temperature]]s. A [[metalloid]], antimony resembles a metal in its appearance and physical properties, but does not chemically react as a metal. It is also attacked by [[oxidation|oxidizing]] [[acid]]s and [[halogen]]s. Antimony and some of its alloys expand on cooling.
42644
42645 Estimates of the abundance of antimony in the [[Earth]]'s crust range from 0.2 to 0.5 [[part per million|ppm]]. Antimony is geochemically categorized as a [[chalcophile]], occurring with [[sulfur]] and the [[heavy metals]] [[lead]], [[copper]], and [[silver]].
42646
42647 == Applications ==
42648 Antimony is increasingly being used in the [[semiconductor]] industry in the production of [[diode]]s, [[infrared]] detectors, and [[Hall effect|Hall-effect]] devices. As an [[alloy]], this semi-metal greatly increases [[lead]]'s hardness and mechanical strength. The most important use of antimony metal is as a hardener in lead for storage batteries. Other uses;
42649 *[[Battery (electricity)|Batteries]],
42650 *antifriction alloys,
42651 *type metal,
42652 *small arms and tracer bullets,
42653 *cable sheathing,
42654 *matches,
42655 *medicines,
42656 *plumbing (&quot;lead-free&quot; solder contains 5% Sb),
42657 *main and big-end bearings in [[internal combustion engine]]s (as alloy).
42658 *used in the past to treat [[Schistosomiasis]], nowadays [[Praziquantel]] is universally used.
42659
42660 Antimony compounds in the form of [[oxide]]s, [[sulfide]]s, sodium antimonate, and antimony trichloride are used in the making of flame-proofing compounds, [[ceramic]] enamels, [[glass]], [[paint]]s, and [[pottery]]. Antimony trioxide is the most important of the antimony compounds and is primarily used in flame-retardant formulations. These flame-retardant applications include such markets as children's clothing, toys, aircraft and automobile seat covers. Also, antimony sulfide is one of the ingredients of a modern match.
42661
42662 == History ==
42663 Antimony was recognized in antiquity ([[4th_millennium_BC|3000 BC]] or earlier) in various compounds, and it was prized for its fine [[casting]] qualities. It was first reported scientifically by [[Tholden]] in [[1450]], and was known to be a metal by the beginning of the [[17th century]]. The origin of the name &quot;antimony&quot; is not clear; the term may come from the [[Greek language|Greek]] words &quot;anti&quot; and &quot;monos&quot;, which approximately means &quot;opposed to solitude&quot; as it was thought never to exist in its pure form, or from the [[Egyptian mythology|Pharaonic]] expression &quot;Antos Amun&quot;, which could be translated as &quot;bloom of the god [[Amun]]&quot;.
42664
42665 [[image:antimony-symbol.png|frame|left|80px|Alchemical symbol for antimony]]
42666
42667 The natural sulfide of antimony, [[stibnite]], was known and used in Biblical times as [[medicine]] and as a [[Cosmetics|cosmetic]]. Stibnite is still used in some developing countries as [[medicine]]. Antimony has been used for the treatment of [[schistosomiasis]]. Antimony attaches itself to [[sulfur]] atoms in certain [[enzyme]]s which are used both by the parasite and human host. Small doses can kill the parasite without causing damage to the patient. Antimony and its compounds are used in several[[ veterinary]] preparations like Anthiomaline or Lithium antimony thiomalate, which is used as a skin conditioner in ruminants. Antimony has a nourishing or conditioning effect on keratinized tissues, at least in animals. Tartar emetic is another antimony preparation which is used as an anti-schistosomal drug.
42668
42669 The relationship between antimony's modern name and its symbol is complex; the [[Coptic language|Coptic]] name for the cosmetic powder antimony sulfide was borrowed by the [[Greece|Greeks]], which was in turn borrowed by [[Latin]], resulting in ''stibium''. The chemical pioneer [[JÃļns Jakob Berzelius]] used an abbreviation of this name for antimony in his writings, and his usage became the standard symbol.
42670
42671 Treatments chiefly involving antimony have been called [[antimonial]]s.
42672
42673 == Sources ==
42674 [[Image:Antimony massive.jpg|200px|left|thumb|Native massive antimony with [[redox|oxidation]] products]]
42675 Even though this element is not abundant, it is found in over 100 [[mineral]] species. Antimony is sometimes found native, but more frequently it is found in the sulfide [[stibnite]] (Sb&lt;sub&gt;2&lt;/sub&gt;S&lt;sub&gt;3&lt;/sub&gt;) which is the predominant ore [[mineral]]. Commercial forms of antimony are generally ingots, broken pieces, granules, and cast cake. Other forms are powder, shot, and single crystals.
42676
42677 {| border=&quot;1&quot;
42678 ! Country !! Tonnes !! % of total
42679 |-
42680 |align=&quot;center&quot; |[[People's Republic of China]]
42681 |align=&quot;center&quot; |126 000
42682 |align=&quot;center&quot; |81.5
42683 |-
42684 |align=&quot;center&quot; |[[Russia]]
42685 |align=&quot;center&quot; |12 000
42686 |align=&quot;center&quot; |7.8
42687 |-
42688 |align=&quot;center&quot; |[[South Africa]]
42689 |align=&quot;center&quot; |5 023
42690 |align=&quot;center&quot; |3.3
42691 |-
42692 |align=&quot;center&quot; |[[Tadjikistan]]
42693 |align=&quot;center&quot; |3 480
42694 |align=&quot;center&quot; |2.3
42695 |-
42696 |align=&quot;center&quot; |[[Bolivia]]
42697 |align=&quot;center&quot; |2 430
42698 |align=&quot;center&quot; |1.6
42699 |-
42700 |align=&quot;center&quot; |''Top 5''
42701 |align=&quot;center&quot; |''148 933''
42702 |align=&quot;center&quot; |''96.4''
42703 |-
42704 |align=&quot;center&quot; |'''Total world'''
42705 |align=&quot;center&quot; |'''154 538'''
42706 |align=&quot;center&quot; |'''100.0'''
42707 |}
42708 &lt;small&gt;''Chiffres de [[2003]], mÊtal contenue dans les minerais et concentrÊs, source : L'Êtat du monde 2005''&lt;/small&gt;
42709
42710 == Precautions ==
42711 Antimony and many of its compounds are [[toxic]]. Clinically, antimony poisoning is very similar to [[arsenic]] poisoning. In small doses, antimony causes [[headache]], [[dizziness]], and [[Depression (mood)|depression]]. Such small doses have in the past been reported in some acidic fruit drinks. The acidic nature of the drink is sufficient to dissolve small amounts of antimony oxide contained in the packaging of the drink; modern manufacturing methods prevent this occurrence. Larger doses cause violent and frequent vomiting, and will lead to death in few days. Very large doses will cause violent vomiting, causing the poison to be expelled from the body before any harm is done.
42712
42713 == Compounds ==
42714 [[Antimony pentafluoride]] SbF&lt;sub&gt;5&lt;/sub&gt;, [[Antimony trioxide]] Sb&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;,
42715 [[Stibine]] (Antimony Trihydride SbH&lt;sub&gt;3&lt;/sub&gt;), [[Indium antimonide]] (InSb)
42716 ; see also [[:Category:Antimony compounds]]
42717
42718 ==References==
42719 *[http://periodic.lanl.gov/elements/51.html Los Alamos National Laboratory &amp;ndash; Antimony]
42720 *[http://www.atsdr.cdc.gov/toxprofiles/phs23.html Public Health Statement for Antimony]
42721
42722 ==See also==
42723 *[[antimonial]]
42724
42725 == External links ==
42726 {{Commons|Antimony}}
42727 * [http://www.npi.gov.au/database/substance-info/profiles/10.html National Pollutant Inventory - Antimony and compounds]
42728 *[http://www.webelements.com/webelements/elements/text/Sb/index.html WebElements.com &amp;ndash; Antimony]
42729 * [http://www.vanderkrogt.net/elements/elem/sb.html Elementymology &amp; Elements Multidict: Antimony] (by Peter van der Krogt)
42730 * [http://www.indexmundi.com/en/commodities/minerals/antimony/antimony_table09.html World Mine Production of Antimony, by Country]
42731
42732 [[Category:Chemical elements]]
42733 [[Category:Metalloids]]
42734 [[Category:Pnictogens]]
42735
42736 [[ar:ŲƒØ­Ų„]]
42737 [[bs:Antimon]]
42738 [[ca:Antimoni]]
42739 [[cs:Antimon]]
42740 [[de:Antimon]]
42741 [[et:Antimon]]
42742 [[es:Antimonio]]
42743 [[eo:Antimono]]
42744 [[fr:Antimoine]]
42745 [[ko:ė•ˆí‹°ëĒ¨ë‹ˆ]]
42746 [[io:Antimonio]]
42747 [[is:Antimon]]
42748 [[it:Antimonio]]
42749 [[he:אנטימון]]
42750 [[ku:StÃŽbyÃģm]]
42751 [[lv:Antimons]]
42752 [[lt:Stibis]]
42753 [[lb:Antimon]]
42754 [[hu:Antimon]]
42755 [[nl:Antimoon]]
42756 [[ja:ã‚ĸãƒŗチãƒĸãƒŗ]]
42757 [[no:Antimon]]
42758 [[nn:Antimon]]
42759 [[oc:AntimÃ˛ni]]
42760 [[pl:Antymon]]
42761 [[pt:Antimônio]]
42762 [[ru:ĐĄŅƒŅ€ŅŒĐŧĐ°]]
42763 [[sk:AntimÃŗn (nerast)]]
42764 [[sl:Antimon]]
42765 [[sr:АĐŊŅ‚иĐŧĐžĐŊ]]
42766 [[fi:Antimoni]]
42767 [[sv:Antimon]]
42768 [[th:ā¸žā¸Ĩā¸§ā¸‡]]
42769 [[uk:ĐĄŅƒŅ€ĐŧĐ°]]
42770 [[zh:锑]]</text>
42771 </revision>
42772 </page>
42773 <page>
42774 <title>Actinium</title>
42775 <id>899</id>
42776 <revision>
42777 <id>41411929</id>
42778 <timestamp>2006-02-27T03:42:39Z</timestamp>
42779 <contributor>
42780 <username>Maveric149</username>
42781 <id>62</id>
42782 </contributor>
42783 <minor />
42784 <comment>Reverted edits by [[Special:Contributions/Polonium|Polonium]] ([[User talk:Polonium|talk]]) to last version by Orzetto</comment>
42785 <text xml:space="preserve">{{Elementbox_header | number=89 | symbol=Ac | name=actinium | left=[[radium]] | right=[[thorium]] | above=[[lanthanum|La]] | below=[[Untriennium|Ute]] | color1=#ff99cc | color2=black }}
42786 {{Elementbox_series | [[actinide]]s }}
42787 {{Elementbox_groupperiodblock | group=3 | period=7 | block=f }}
42788 {{Elementbox_appearance | silvery }}
42789 {{Elementbox_atomicmass_gpm | [[1 E-25 kg|(227)]] }}
42790 {{Elementbox_econfig | &amp;#91;[[radon|Rn]]&amp;#93; 6d&lt;sup&gt;1&lt;/sup&gt; 7s&lt;sup&gt;2&lt;/sup&gt; }}
42791 {{Elementbox_epershell | 2, 8, 18, 32, 18, 9, 2 }}
42792 {{Elementbox_section_physicalprop | color1=#ff99cc | color2=black }}
42793 {{Elementbox_phase | [[solid]] }}
42794 {{Elementbox_density_gpcm3nrt | 10 }}
42795 {{Elementbox_meltingpoint | k=(circa) 1323 | c=1050 | f=1922 }}
42796 {{Elementbox_boilingpoint | k=3471 | c=3198 | f=5788 }}
42797 {{Elementbox_heatfusion_kjpmol | 14 }}
42798 {{Elementbox_heatvaporiz_kjpmol | 400 }}
42799 {{Elementbox_heatcapacity_jpmolkat25 | 27.2 }}
42800 {{Elementbox_section_atomicprop | color1=#ff99cc | color2=black }}
42801 {{Elementbox_crystalstruct | cubic face centered }}
42802 {{Elementbox_oxistates | 3&lt;br /&gt;(neutral oxide) }}
42803 {{Elementbox_electroneg_pauling | 1.1 }}
42804 {{Elementbox_ionizationenergies2 | 499 | 1170 }}
42805 {{Elementbox_atomicradius_pm | [[1 E-10 m|195]] }}
42806 {{Elementbox_section_miscellaneous | color1=#ff99cc | color2=black }}
42807 {{Elementbox_magnetic | no data }}
42808 {{Elementbox_thermalcond_wpmkat300k | 12 }}
42809 {{Elementbox_cas_number | 7440-34-8 }}
42810 {{Elementbox_isotopes_begin | isotopesof=actinium | color1=#ff99cc | color2=black }}
42811 {{Elementbox_isotopes_decay | mn=225 | sym=Ac
42812 | na=[[synthetic radioisotope|syn]] | hl=[[1 E s|10 days]]
42813 | dm=[[alpha decay|&amp;alpha;]] | de=5.935 | pn=221 | ps=[[francium|Fr]] }}
42814 {{Elementbox_isotopes_decay3 | mn=226 | sym=Ac
42815 | na=[[synthetic radioisotope|syn]] | hl=[[1 E s|29.37 hours]]
42816 | dm1=[[beta emission|&amp;beta;&lt;sup&gt;-&lt;/sup&gt;]] | de1=1.117 | pn1=226 | ps1=[[thorium|Th]]
42817 | dm2=[[electron capture|&amp;epsilon;]] | de2=0.640 | pn2=226 | ps2=[[radium|Ra]]
42818 | dm3=[[alpha decay|&amp;alpha;]] | de3=5.536 | pn3=222 | ps3=[[francium|Fr]] }}
42819 {{Elementbox_isotopes_decay2 | mn=227 | sym=Ac
42820 | na=100% | hl=[[1 E s|21.773 years]]
42821 | dm1=[[beta emission|&amp;beta;&lt;sup&gt;-&lt;/sup&gt;]] | de1=0.045 | pn1=227 | ps1=[[thorium|Th]]
42822 | dm2=[[alpha decay|&amp;alpha;]] | de2=5.042 | pn2=223 | ps2=[[francium|Fr]] }}
42823 {{Elementbox_isotopes_end}}
42824 {{Elementbox_footer | color1=#ff99cc | color2=black }}
42825
42826 '''Actinium''' is a [[chemical element]] in the [[periodic table]] that has the symbol Ac and [[atomic number]] 89.
42827
42828 ==Notable characteristics==
42829 Actinium is a silvery radioactive metallic element. Due to its intense radioactivity, Actinium glows in the dark with an eerie blue light. It is found only in traces in uranium ores as 227-Ac, an [[alpha radiation|&amp;alpha;]] and [[beta radiation|&amp;beta; emitter]] with a [[half-life]] of 21.773 years. One ton of [[uranium]] ore contains about a tenth of a gram of actinium.
42830
42831 ==Applications==
42832 It is about 150 times as radioactive as radium, making it valuable as a [[neutron source]]. Otherwise it has no significant industrial applications.
42833
42834 Actinium-225 is used in medicine to produce Bi-213 in a reusable generator or can be used alone as an agent for radio-immunotherapy.
42835
42836 ==History==
42837 Actinium was discovered in [[1899]] by [[AndrÊ-Louis Debierne]], a French chemist, who separated it from [[uraninite|pitchblende]]. [[Friedrich Otto Giesel]] independently discovered actinium in [[1902]]. The chemical behavior of actinium is similar to that of the rare earth [[lanthanum]].
42838
42839 The word actinium comes from the Greek ''aktis, aktinos'', meaning beam or ray.
42840
42841 ==Occurrence==
42842 Actinium is found in trace amounts in uranium ore, but more commonly is made in milligram amounts by the neutron irradiation of 226-Ra in a nuclear reactor. Actinium metal has been prepared by the reduction of actinium fluoride with lithium vapor at about 1100 to 1300ÂēC.
42843
42844 ==Isotopes==
42845 Naturally occurring actinium is composed of 1 radioactive [[isotope]]; &lt;sup&gt;227&lt;/sup&gt;Ac. 36 [[radioisotope]]s have been characterized with the most stable being 227-Ac with a [[half-life]] of 21.772 [[years|y]], 225-Ac with a half-life of 10.0 [[day]]s, and 226-Ac with a half-life of 29.37 [[hours|h]]. All of the remaining [[radioactive decay|radioactive]] isotopes have half-lifes that are less than 10 hours and the majority of these have half lifes that are less than 1 minute. The shortest-lived isotope of actinium is&lt;sup&gt;217&lt;/sup&gt;Ac which decays through [[alpha decay]] and [[electron capture]]. It has a half-life of 69 [[nanoseconds|ns]]. Actinium also has 2 [[meta state]]s.
42846
42847 Purified actinium-227 comes into equilibrium with its decay products at the end of 185 days, and then decays according to its 21.773-year half-life.
42848
42849 The isotopes of actinium range in [[atomic weight]] from 206 [[atomic mass unit|amu]] (&lt;sup&gt;206&lt;/sup&gt;actinium) to 236 amu (&lt;sup&gt;236&lt;/sup&gt;Ac).
42850
42851 ==Precautions==
42852 Actinium-227 is extremely radioactive, and in terms of its potential for radiation induced health effects, actinium-227 is about as dangerous as plutonium. Ingesting even small amounts of actinium-227 would present a serious health hazard.
42853
42854 ==References==
42855 *[http://periodic.lanl.gov/elements/89.html Los Alamos National Laboratory - Actinium]
42856
42857 ==External links==
42858 {{Commons|Actinium}}
42859 *[http://www.webelements.com/webelements/elements/text/Ac/index.html WebElements.com - Actinium]
42860
42861 [[Category:Chemical elements]]
42862 [[Category:Actinides]]
42863
42864 [[ar:ØŖŲƒØĒŲŠŲ†ŲŠŲˆŲ…]]
42865 [[ca:Actini]]
42866 [[cs:Aktinium]]
42867 [[da:Actinium]]
42868 [[de:Actinium]]
42869 [[et:Aktiinium]]
42870 [[es:Actinio]]
42871 [[eo:Aktinio]]
42872 [[fr:Actinium]]
42873 [[he:אקטיניום]]
42874 [[hr:Aktinij]]
42875 [[ko:ė•…티늄]]
42876 [[io:Aktiniumo]]
42877 [[it:Attinio]]
42878 [[la:Actinium]]
42879 [[lt:Aktinis]]
42880 [[hu:Aktínium]]
42881 [[nl:Actinium]]
42882 [[ja:ã‚ĸクチニã‚Ļム]]
42883 [[no:Actinium]]
42884 [[nn:Actinium]]
42885 [[pl:Aktyn]]
42886 [[pt:Actínio]]
42887 [[ru:АĐēŅ‚иĐŊиК]]
42888 [[sr:АĐēŅ‚иĐŊиŅ˜ŅƒĐŧ]]
42889 [[fi:Aktinium]]
42890 [[sv:Aktinium]]
42891 [[th:āšā¸­ā¸ā¸—ā¸´āš€ā¸™ā¸ĩā¸ĸā¸Ą]]
42892 [[uk:АĐēŅ‚иĐŊŅ–Đš]]
42893 [[zh:锕]]</text>
42894 </revision>
42895 </page>
42896 <page>
42897 <title>Americium</title>
42898 <id>900</id>
42899 <revision>
42900 <id>41411944</id>
42901 <timestamp>2006-02-27T03:42:46Z</timestamp>
42902 <contributor>
42903 <username>Maveric149</username>
42904 <id>62</id>
42905 </contributor>
42906 <minor />
42907 <comment>Reverted edits by [[Special:Contributions/Polonium|Polonium]] ([[User talk:Polonium|talk]]) to last version by Vary</comment>
42908 <text xml:space="preserve">{{Elementbox_header | number=95 | symbol=Am | name=americium | left=[[plutonium]] | right=[[curium]] | above=[[europium|Eu]] | below=(Uqp) | color1=#ff99cc | color2=black }}
42909 {{Elementbox_series | [[actinide]]s }}
42910 {{Elementbox_periodblock | period=7 | block=f }}
42911 {{Elementbox_appearance | silvery white }}
42912 {{Elementbox_atomicmass_gpm | [[1 E-25 kg|(243)]] }}
42913 {{Elementbox_econfig | &amp;#91;[[radon|Rn]]&amp;#93; 5f&lt;sup&gt;7&lt;/sup&gt; 7s&lt;sup&gt;2&lt;/sup&gt; }}
42914 {{Elementbox_epershell | 2, 8, 18, 32, 25, 8, 2 }}
42915 {{Elementbox_section_physicalprop | color1=#ff99cc | color2=black }}
42916 {{Elementbox_phase | [[solid]] }}
42917 {{Elementbox_density_gpcm3nrt | 12 }}
42918 {{Elementbox_meltingpoint | k=1449 | c=1176 | f=2149 }}
42919 {{Elementbox_boilingpoint | k=2880 | c=2607 | f=4725 }}
42920 {{Elementbox_heatfusion_kjpmol | 14.39 }}
42921 {{Elementbox_heatcapacity_jpmolkat25 | 62.7 }}
42922 {{Elementbox_vaporpressure_katpa | 1239 | 1356 | &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | comment= }}
42923 {{Elementbox_section_atomicprop | color1=#ff99cc | color2=black }}
42924 {{Elementbox_crystalstruct | hexagonal }}
42925 {{Elementbox_oxistates | 6, 5, 4, '''3'''&lt;br /&gt;([[amphoteric]] oxide) }}
42926 {{Elementbox_electroneg_pauling | 1.3 }}
42927 {{Elementbox_ionizationenergies1 | 578 }}
42928 {{Elementbox_atomicradius_pm | [[1 E-10 m|175]] }}
42929 {{Elementbox_section_miscellaneous | color1=#ff99cc | color2=black }}
42930 {{Elementbox_magnetic | no data }}
42931 {{Elementbox_thermalcond_wpmkat300k | 10 }}
42932 {{Elementbox_cas_number | 7440-35-9 }}
42933 {{Elementbox_isotopes_begin | isotopesof=americium | color1=#ff99cc | color2=black }}
42934 {{Elementbox_isotopes_decay2 | mn=241 | sym=Am
42935 | na=[[synthetic radioisotope|syn]] | hl=[[1 E10 s|432.2 y]]
42936 | dm1=[[spontaneous fission|SF]] | de1=- | pn1= | ps1=-
42937 | dm2=[[alpha decay|&amp;alpha;]] | de2=5.638 | pn2=237 | ps2=[[neptunium|Np]] }}
42938 {{Elementbox_isotopes_decay3 | mn=242[[nuclear isomer|m]] | sym=Am
42939 | na=[[synthetic radioisotope|syn]] | hl=141 [[year|y]]
42940 | dm1=[[Isomeric transition|IT]] | de1=0.049 | pn1= | ps1=-
42941 | dm2=&amp;alpha; | de2=5.637 | pn2=238 | ps2=[[neptunium|Np]]
42942 | dm3=SF | de3=- | pn3= | ps3=- }}
42943 {{Elementbox_isotopes_decay2 | mn=243 | sym=Am
42944 | na=[[synthetic radioisotope|syn]] | hl=[[1 E11 s|7370 y]]
42945 | dm1=SF | de1=- | pn1= | ps1=-
42946 | dm2=&amp;alpha; | de2=5.438 | pn2=239 | ps2=[[neptunium|Np]] }}
42947 {{Elementbox_isotopes_end}}
42948 {{Elementbox_footer | color1=#ff99cc | color2=black }}
42949
42950 '''Americium''' is a [[synthetic element]] in the [[periodic table]] that has the symbol Am and [[atomic number]] 95. A [[radioactive decay|radioactive]] [[metal]]lic element, americium is an [[actinide]] that was obtained by bombarding [[plutonium]] with [[neutron]]s and was the fourth [[transuranic element]] to be discovered. It was named for the [[The Americas|America]]s, by analogy with [[europium]].
42951
42952 == Notable characteristics ==
42953 Freshly prepared americium [[metal]] has a white and silvery [[luster]], at [[room temperature]]s it slowly tarnishes in dry air. It is more silvery than [[plutonium]] or [[neptunium]] and apparently more malleable than neptunium or [[uranium]]. [[Alpha emission]] from Am-241 is approximately three times [[radium]]. [[Gram]] quantities of Am-241 emit intense [[gamma ray]]s which creates a serious exposure problem for anyone handling the element.
42954
42955 == Applications ==
42956 This element can be produced in [[kilogram]] amounts and has some uses (mostly Am-241 since it is easier to produce relatively pure samples of this isotope). Americium has found its way into the household, where one type of [[smoke detector]] contains a tiny amount of Am-241 as a source of [[ionizing radiation]]. Am-241 has been used as a portable gamma ray source for use in [[radiography]]. The element has also been employed to gauge [[glass]] thickness to help create flat glass. Am-242 is a neutron emitter and has found uses in [[neutron radiography]]. However this isotope is extremely expensive to produce in usable quantities.
42957
42958 == History ==
42959 Americium was [[discovery of the chemical elements|first synthesized]] by [[Glenn T. Seaborg]], Leon O. Morgan, Ralph A. James, and [[Albert Ghiorso]] in late [[1944]] at the wartime Metallurgical Laboratory at the [[University of Chicago]] (now known as [[Argonne National Laboratory]]). The team created the [[isotope]] Am-241 by subjecting [[plutonium]]-239 to successive [[neutron capture]] reactions in a [[nuclear reactor]]. This created Pu-240 and then Pu-241 which in turn decayed into Am-241 via [[beta decay]]. Seaborg was granted [[patent]] 3,156,523 for &quot;Element 95 and Method of Producing Said Element&quot;. The discovery of americium and [[curium]] was first announced informally on a children's quiz show in 1945. [http://pubs.acs.org/cen/80th/print/americiumprint.html]
42960
42961 == Isotopes ==
42962 18 [[radioisotope]]s of americium have been characterized, with the most stable being Am-243 with a [[half-life]] of 7370 years, and Am-241 with a half-life of 432.2 years. All of the remaining [[radioactive decay|radioactive]] isotopes have half-lives that are less than 51 hours, and the majority of these have half-lives that are less than 100 minutes. This element also has 8 [[meta state]]s, with the most stable being Am-242m (t&lt;sub&gt;ÂŊ&lt;/sub&gt; 141 years). The isotopes of americium range in [[atomic weight]] from 231.046 [[atomic mass unit|amu]] (Am-231) to 249.078 amu (Am-249).
42963
42964 == Chemistry ==
42965
42966 In aqueous systems the most common oxidation state is +3, it is very much harder to oxidise Am(III) to Am(IV) than it is to do the same oxidation for Pu(III).
42967
42968 Currently the [[solvent extraction]] chemistry of americium is important as in several areas of the world [[scientists]] are working on reducing the medium term [[radiotoxicity]] of the waste from the reprocessing of used [[nuclear fuel]].
42969
42970 See [[liquid-liquid extraction]] for some examples of the solvent extraction of americium.
42971
42972
42973 Americium like other actinides readily forms a dioxide americyl core (AmO&lt;sub&gt;2&lt;/sub&gt;)[http://fas.org/sgp/othergov/doe/lanl/pubs/00818038.pdf]. In the environment, this americyl core readily complexes with carbonate as well as other oxygen moeities (OH&lt;sup&gt;-&lt;/sup&gt;, NO&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;-&lt;/sup&gt;, NO&lt;sub&gt;3&lt;/sub&gt;&lt;sup&gt;-&lt;/sup&gt;, and SO&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;-2&lt;/sup&gt;) to form charged complexes which tend to be readily mobile with low affinities to soil.
42974
42975 *AmO&lt;sub&gt;2&lt;/sub&gt;(OH)&lt;sup&gt;+1&lt;/sup&gt;
42976 *AmO&lt;sub&gt;2&lt;/sub&gt;(OH)&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;+2&lt;/sup&gt;
42977 *AmO&lt;sub&gt;2&lt;/sub&gt;(CO&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;1&lt;/sub&gt;&lt;sup&gt;+1&lt;/sup&gt;
42978 *AmO&lt;sub&gt;2&lt;/sub&gt;(CO&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;-1&lt;/sup&gt;
42979 *AmO&lt;sub&gt;2&lt;/sub&gt;(CO&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt;&lt;sup&gt;-3&lt;/sup&gt;
42980
42981 ==References==
42982 *[http://periodic.lanl.gov/elements/95.html Los Alamos National Laboratory - Americium]
42983 *''Guide to the Elements - Revised Edition'', Albert Stwertka, (Oxford University Press; 1998) ISBN 0-19-508083-1
42984 * [http://education.jlab.org/itselemental/ele095.html It's Elemental - Americium]
42985
42986 == External links ==
42987 {{Commons|Americium}}
42988 * [http://www.webelements.com/webelements/elements/text/Am/index.html WebElements.com - Americium] (also used as a reference)
42989
42990 [[Category:Chemical elements]]
42991 [[Category:Actinides]]
42992 [[Category:Americium compounds]]
42993
42994 [[ca:Americi]]
42995 [[cs:Americium]]
42996 [[da:Americium]]
42997 [[de:Americium]]
42998 [[et:Ameriitsium]]
42999 [[el:ΑÎŧÎĩĪÎ¯ÎēΚÎŋ]]
43000 [[es:Americio]]
43001 [[eo:Americio]]
43002 [[fr:AmÊricium]]
43003 [[ko:ė•„는ëĻŦėŠ˜]]
43004 [[io:Americio]]
43005 [[it:Americio]]
43006 [[he:אמרי×Ļיום]]
43007 [[lt:Americis]]
43008 [[lb:Americium]]
43009 [[hu:Amerícium]]
43010 [[nl:Americium]]
43011 [[ja:ã‚ĸãƒĄãƒĒã‚ˇã‚Ļム]]
43012 [[nn:Americium]]
43013 [[pl:Ameryk]]
43014 [[pt:Amerício]]
43015 [[ru:АĐŧĐĩŅ€Đ¸Ņ†Đ¸Đš]]
43016 [[sr:АĐŧĐĩŅ€Đ¸Ņ†Đ¸Ņ˜ŅƒĐŧ]]
43017 [[fi:Amerikium]]
43018 [[sv:Americium]]
43019 [[th:ā¸­ā¸°āš€ā¸Ąā¸Ŗā¸´āš€ā¸‹ā¸ĩā¸ĸā¸Ą]]
43020 [[tr:Amerikyum]]
43021 [[uk:АĐŧĐĩŅ€Đ¸Ņ†Ņ–Đš]]
43022 [[zh:镅]]</text>
43023 </revision>
43024 </page>
43025 <page>
43026 <title>Astatine</title>
43027 <id>901</id>
43028 <revision>
43029 <id>41310430</id>
43030 <timestamp>2006-02-26T13:18:29Z</timestamp>
43031 <contributor>
43032 <username>Rune.welsh</username>
43033 <id>240649</id>
43034 </contributor>
43035 <minor />
43036 <comment>/* Notable characteristics */ this is a conditional clause</comment>
43037 <text xml:space="preserve">{{Elementbox_header | number=85 | symbol=At | name=astatine | left=[[polonium]] | right=[[radon]] | above=[[iodine|I]] | below=([[Uus]]) | color1=#ffff99 | color2=black }}
43038 {{Elementbox_series | [[halogen]]s }}
43039 {{Elementbox_groupperiodblock | group=17 | period=6 | block=p }}
43040 {{Elementbox_appearance | metallic }}
43041 {{Elementbox_atomicmass_gpm | [[1 E-25 kg|(210)]] }}
43042 {{Elementbox_econfig | &amp;#91;[[xenon|Xe]]&amp;#93; 4f&lt;sup&gt;14&lt;/sup&gt; 5d&lt;sup&gt;10&lt;/sup&gt; 6s&lt;sup&gt;2&lt;/sup&gt; 6p&lt;sup&gt;5&lt;/sup&gt; }}
43043 {{Elementbox_epershell | 2, 8, 18, 32, 18, 7 }}
43044 {{Elementbox_section_physicalprop | color1=#ffff99 | color2=black }}
43045 {{Elementbox_phase | [[solid]] }}
43046 {{Elementbox_meltingpoint | k=575 | c=302 | f=576 }}
43047 {{Elementbox_boilingpoint | k=? 610 | c=? 337 | f=? 639}}
43048 {{Elementbox_heatvaporiz_kjpmol | ca. 40 }}
43049 {{Elementbox_vaporpressure_katpa | 361 | 392 | 429 | 475 | 531 | 607 | comment= }}
43050 {{Elementbox_section_atomicprop | color1=#ffff99 | color2=black }}
43051 {{Elementbox_crystalstruct | no data }}
43052 {{Elementbox_oxistates | &amp;plusmn;1, 3, 5, 7 }}
43053 {{Elementbox_electroneg_pauling | 2.2 }}
43054 {{Elementbox_ionizationenergies1 | (est.) 920 }}
43055 {{Elementbox_section_miscellaneous | color1=#ffff99 | color2=black }}
43056 {{Elementbox_magnetic | no data }}
43057 {{Elementbox_thermalcond_wpmkat300k | 1.7 }}
43058 {{Elementbox_cas_number | 7440-68-8 }}
43059 {{Elementbox_isotopes_begin | isotopesof=astatine | color1=#ffff99 | color2=black }}
43060 {{Elementbox_isotopes_decay2 | mn=210 | sym=At
43061 | na=100% | hl=8.1 [[hour|h]]
43062 | dm1=[[electron capture|Epsilon]] | de1=3.981 | pn1=210 | ps1=[[polonium|Po]]
43063 | dm2=[[alpha decay|Alpha]] | de2=5.631 | pn2=206 | ps2=[[bismuth|Bi]] }}
43064 {{Elementbox_isotopes_end}}
43065 {{Elementbox_footer | color1=#ffff99 | color2=black }}
43066
43067 '''Astatine''' is a [[chemical element]] in the [[periodic table]] that has the symbol '''At''' and [[atomic number]] 85. This [[radioactive]] element occurs naturally from [[uranium]] and [[thorium]] decay and is the heaviest of the [[halogen]]s.
43068
43069 == Notable characteristics ==
43070 This highly [[radioactive]] element has been confirmed by [[mass spectrometer]]s to behave chemically much like other [[halogen]]s, especially [[iodine]] (it would probably accumulate in the [[thyroid]] gland like iodine). Astatine is thought to be more [[metal]]lic than iodine. Researchers at the [[Brookhaven National Laboratory]] have performed experiments that have identified and measured elementary reactions that involve astatine.
43071
43072 With the possible exception of [[francium]], astatine is the rarest naturally occurring element with the total amount in Earth's crust estimated to be less than 1 [[ounce|oz]] (28 g) at any one time; this amounts to less than one teaspoon of the element. The [[Guinness Book of Records]], however, has dubbed the element the rarest on Earth, stating: &quot;Only around 0.9 oz (25 [[gram|g]]) of the element astatine (At) occurs naturally in the Earth's crust.&quot;
43073
43074 == History ==
43075 Astatine ([[Greek language|Greek]] ''astatos'' meaning &quot;unstable&quot;) was first synthesized in [[1940]] by [[Dale R. Corson]], [[K. R. MacKenzie]], and [[Emilio Segrè]] of the [[University of California, Berkeley]] by barraging [[bismuth]] with [[alpha particle]]s. An earlier name for the element was ''alabamine'' (Ab).
43076
43077 == Occurrence ==
43078 Astatine is produced by bombarding bismuth with energetic alpha particles to obtain relatively long-lived At-209 - At-211, which can then be [[distillation|distilled]] from the target by heating in the presence of air.
43079
43080 == Isotopes ==
43081 Astatine has 41 known [[isotope]]s, all of which are [[radioactive]]; the longest-lived isotope is &lt;sup&gt;210&lt;/sup&gt;At which has a [[half-life]] of 8.1 hours. The shortest-lived isotope is &lt;sup&gt;213&lt;/sup&gt;At which has a half-life of 125 [[nanoseconds]].
43082
43083 == References ==
43084 *[http://periodic.lanl.gov/elements/85.html Los Alamos National Laboratory - Astatine]
43085
43086 == External links ==
43087 {{Commons|Astatine}}
43088 *[http://www.webelements.com/webelements/elements/text/At/index.html WebElements.com - Astatine]
43089
43090 [[Category:Chemical elements]]
43091 [[Category:Halogens]]
43092
43093 [[bs:Astatin]]
43094 [[ca:Àstat]]
43095 [[cs:Astat]]
43096 [[da:Astat]]
43097 [[de:Astat]]
43098 [[et:Astaat]]
43099 [[es:Astato]]
43100 [[eo:Astato]]
43101 [[fr:Astate]]
43102 [[ko:ė•„ėŠ¤íƒ€í‹´]]
43103 [[io:Astatino]]
43104 [[is:Astat]]
43105 [[it:Astato]]
43106 [[he:אסטטין]]
43107 [[lv:Astats]]
43108 [[lt:Astatas]]
43109 [[hu:AsztÃĄcium]]
43110 [[nl:Astatium]]
43111 [[ja:ã‚ĸã‚šã‚ŋチãƒŗ]]
43112 [[no:Astat]]
43113 [[nn:Astat]]
43114 [[oc:Astat]]
43115 [[pl:Astat]]
43116 [[pt:Astato]]
43117 [[ru:АŅŅ‚Đ°Ņ‚]]
43118 [[sl:Astat]]
43119 [[sr:АŅŅ‚Đ°Ņ‚]]
43120 [[fi:Astatiini]]
43121 [[sv:Astat]]
43122 [[th:āšā¸­ā¸Ēā¸—ā¸˛ā¸—ā¸ĩā¸™]]
43123 [[uk:АŅŅ‚Đ°Ņ‚]]
43124 [[zh:į š]]</text>
43125 </revision>
43126 </page>
43127 <page>
43128 <title>Atom</title>
43129 <id>902</id>
43130 <revision>
43131 <id>42039966</id>
43132 <timestamp>2006-03-03T11:17:30Z</timestamp>
43133 <contributor>
43134 <username>Iorek85</username>
43135 <id>432424</id>
43136 </contributor>
43137 <minor />
43138 <comment>/* External links */ remove bad link</comment>
43139 <text xml:space="preserve">{{Redirect2|Atom|Atomic}} {{for|[[Atom (standard)|Atom feeds]] from Wikipedia|Wikipedia:Syndication}}
43140
43141 {| border=&quot;1&quot; cellspacing=&quot;0&quot; align=&quot;right&quot; cellpadding=&quot;2&quot; style=&quot;margin-left:1em&quot;
43142 |-
43143 ! bgcolor=gray | Atom
43144 |-
43145 | align=&quot;center&quot; | [[image:Helium_atom_with_charge-smaller.jpg | align center | Model of the atom - 3-D Helium atom - ground state]]
43146 |-
43147 | align=&quot;center&quot; | '''Helium atom model'''&lt;br&gt;Showing nucleus with two protons (blue) &lt;br&gt;and two neutrons (red), &lt;br&gt;orbited by two electrons (waves).
43148 |-
43149 ! bgcolor=gray | Classification
43150 |-
43151 |
43152 {| align=&quot;center&quot;
43153 |-
43154 | Smallest recognised division of a [[chemical element]]
43155 |}
43156 |-
43157 |
43158 |-
43159 ! bgcolor=gray | Properties
43160 |-
43161 |
43162 |-
43163 |
43164 {| align=&quot;center&quot;
43165 |-
43166 | [[atomic mass|Mass]]: || &amp;asymp; 1.66 &amp;times; 10{{smsup|−27}} to 4.52 &amp;times; 10{{smsup|−25}} [[kg]]
43167 |-
43168 | [[Electric charge]]: || zero
43169 |-
43170 | Diameter:
43171 | [[1_E-11_m|10 pm]] to [[1_E-10_m|100 pm]]
43172 |}
43173 |}
43174 In [[chemistry]] and [[physics]], an '''atom''' ([[Greek language|Greek]] ''&amp;#940;&amp;#964;&amp;#959;&amp;#956;&amp;#959;&amp;#957;'' meaning &quot;indivisible&quot;) is the smallest possible particle of a [[chemical element]] that retains its chemical properties. The word ''atom'' may also refer to the smallest possible indivisible [[fundamental particle]]. This definition must not be confused with that of chemical atoms, since chemical atoms (hereafter &quot;atoms&quot;) are composed of smaller [[subatomic particle]]s.
43175
43176 Most atoms are composed of three types of [[subatomic particle]]s which govern their external properties:
43177 * [[electron]]s, which have a negative [[electric charge|charge]] and are the least massive of the three;
43178 * [[proton]]s, which have a positive [[electric charge|charge]] and are about 1836 times more massive than electrons; and
43179 * [[neutron]]s, which have no [[electric charge|charge]] and are about 1838 times more massive than electrons.
43180
43181 Protons and neutrons are both [[nucleon]]s and make up the dense, massive [[atomic nucleus]]. The electrons form the much larger [[electron cloud]] surrounding the nucleus.
43182
43183 Atoms differ in the number of each of the subatomic particles they contain. The number of protons in an atom (called the [[atomic number]]) determines the [[chemical element|element]] of the atom. Within a single element, the number of neutrons may also vary, determining the [[isotope]] of that element. Atoms are electrically neutral if they have an equal number of protons and electrons. Electrons that are furthest from the nucleus may be transferred to other nearby atoms or even shared between atoms. Atoms which have either a deficit or a surplus of electrons are called [[ions]]. The number of protons and neutrons in the atomic nucleus may also change, via [[nuclear fusion]], [[nuclear fission]] or [[radioactive decay]].
43184
43185 Atoms are the fundamental building blocks of [[chemistry]], and are [[Law of Conservation of Matter|conserved]] in [[chemical reaction]]s. Atoms are able to [[chemical bond|bond]] into [[molecule]]s and other types of [[chemical compound]]s. Molecules are made up of multiple atoms; for example, a molecule of [[water]] is a combination of two [[hydrogen]] atoms and one [[oxygen]] atom.
43186
43187 ==Properties of the atom==
43188 ===Subatomic particles===
43189 :''see main article [[subatomic particle]]s
43190
43191 Although the name &quot;atom&quot; was applied at a time when atoms were thought to be indivisible, it is now known that the atom can be broken down into a number of smaller components. The first of these to be discovered was the negatively charged [[electron]], which is easily ejected from atoms during [[ionization]]. The electrons orbit a small, dense body containing all of the positive charge in the atom, called the [[atomic nucleus]]. This nucleus is itself made up of [[nucleon]]s: positively charged [[proton]]s and chargeless [[neutron]]s.
43192
43193 Before 1961, the subatomic particles were thought to consist of only protons, neutrons and electrons. However, protons and neutrons themselves are now known to consist of still smaller particles called [[quark]]s. In addition, the electron is known to have a nearly massless neutral partner called a [[neutrino]]. Together, the electron and neutrino are both [[lepton]]s.
43194
43195 Ordinary atoms are composed only of quarks and leptons of the first [[generation (particle physics)|generation]]. The proton is composed of two [[up quark]]s and one [[down quark]], whereas the neutron is composed of one up quark and two down quarks. Although they do not occur in ordinary matter, two other heavier generations of quarks and leptons may be generated in [[high-energy physics|high-energy collisions]].
43196
43197 The subatomic [[force carrier|force carrying]] particles (called [[gauge boson]]s) are also important to atoms. Electrons are bound to the nucleus by [[photon]]s carrying the [[electromagnetic force]]. Protons and neutrons are bound together in the nucleus by [[gluon]]s carrying the [[strong nuclear force]].
43198
43199 ====Electron configuration====
43200 :''see main article [[electron configuration]]''
43201
43202 The [[chemistry|chemical behavior]] of atoms is due to interactions between electrons. Electrons of an atom remain within certain, predictable [[electron configurations]]. These configurations are determined by the [[quantum mechanics]] of electrons in the [[electric potential]] of the atom; the [[principal quantum number]] determines particular [[electron shell]]s with distinct [[energy level]]s. Generally, the higher the energy level of a shell, the further away it is from the nucleus. The electrons in the outermost shell, called the [[valence electron]]s, have the greatest influence on chemical behavior. Core electrons (those not in the outer shell) play a role, but it is usually in terms of a secondary effect due to screening of the positive charge in the atomic nucleus.
43203
43204 [[Image:HAtomOrbitals.png|frame|right|The [[atomic orbital]] [[wavefunction]]s of a [[hydrogen atom]]. The [[principal quantum number]] is at the right of each row and the [[azimuthal quantum number]] is denoted by letter at top of each column.]]
43205
43206 An electron shell can hold up to 2''n''&lt;sup&gt;2&lt;/sup&gt; electrons, where ''n'' is the principal quantum number of the shell. The occupied shell of greatest ''n'' is the valence shell, even if it only has one electron. In the most stable [[ground state]], an atom's electrons will fill up its shells in order of increasing energy. Under some circumstances an electron may be [[excited state|excited]] to a higher energy level (that is, it absorbs energy from an external source and leaps to a higher shell), leaving a space in a lower shell. An excited atom's electrons will [[spontaneous emission|spontaneously fall]] into lower levels, emitting excess energy as a [[photon]]s, until it returns to the ground state.
43207
43208 In addition to its principal quantum number ''n'', an electron is distinguished by three other quantum numbers: the [[azimuthal quantum number]] ''l'' (describing the [[orbital angular momentum]] of the electron), the [[magnetic quantum number]] ''m'' (describing the direction of the angular momentum vector), and the [[spin quantum number]] ''s'' (describing the direction of the electron's [[spin (physics)|intrinsic angular momentum]]). Electrons with varying ''l'' and ''m'' have distinctive shapes denoted by [[spectroscopic notation]]. In the illustration, the letters '''s''', '''p''', '''d''' and '''f''' (corresponding to ''l''&amp;nbsp;=&amp;nbsp;0,&amp;nbsp;1,&amp;nbsp;2,&amp;nbsp;3) describe the shape of the [[atomic orbital]]. In most atoms, orbitals of differing ''l'' are not exactly [[degenerate energy level|degenerate]] but separated into a [[fine structure]]. Orbitals of differing ''m'' are degenerate but may be separated by applying a [[magnetic field]], creating the [[Zeeman effect]]. Electrons with differing ''s'' have very slight energy differences called [[hyperfine splitting]].
43209
43210 ====Nucleon properties====
43211
43212 The constituent [[proton]]s and [[neutron]]s of the [[atomic nucleus]] are collectively called [[nucleon]]s. The nucleons are held together in the nucleus by the [[strong nuclear force]].
43213
43214 Nuclei can undergo transformations that affect the number of protons and neutrons they contain, a process called [[radioactive decay]]. When nuclei transformations take place spontaneously, this process is called [[radioactivity]]. Radioactive transformations proceed by a wide variety of modes, but the most common are [[alpha decay]] (emission of a [[helium]] nucleus) and [[beta decay]] (emission of an electron). Decays involving electrons or [[positron]]s are due to the [[weak nuclear interaction]].
43215
43216 In addition, like the electrons of the atom, the nucleons of nuclei may be pushed into [[excited state]]s of higher energy. However, these transitions typically require thousands of times more energy than electron excitations. When an excited nucleus emits a photon to return to the [[ground state]], the photon has very high energy and is called a [[gamma ray]].
43217
43218 Nuclear transformations also take place in [[nuclear reaction]]s. In [[nuclear fusion]], two light nuclei come together and merge into a single heavier nucleus. In [[nuclear fission]], a single large nucleus is divided into two or more smaller nuclei.
43219
43220 ===Atom size and speed===
43221 Atoms are much smaller than the [[wavelength]]s of [[light]] that human vision can detect, so atoms cannot be seen in any kind of optical [[microscope]]. However, there are ways of detecting the positions of atoms on the surface of a solid or a [[thin film]] so as to obtain images. These include: [[electron microscope]]s (such as in [[scanning tunneling microscopy]] (STM)), [[atomic force microscopy]] (AFM), [[nuclear magnetic resonance]] (NMR) and [[x-ray microscopy]].
43222
43223 Since the [[electron cloud]] does not have a sharp cutoff, the size of an atom is not easily defined. For atoms that can form solid [[crystal]] [[crystal lattice|lattice]]s, the distance between the centers of adjacent atoms can be easily determined by [[x-ray diffraction]], giving an estimate of the atoms' size. For any atom, one might use the radius at which the electrons of the [[valence shell]] are most likely to be found. As an example, the size of a [[hydrogen]] atom is estimated to be approximately 1.0586&amp;times;10{{smsup|−10}}&amp;nbsp;m (twice the [[Bohr radius]]). Compare this to the size of the [[proton]] (the only particle in the nucleus of the hydrogen atom), which is approximately 10{{smsup|−15}}&amp;nbsp;m. So the ratio of the size of the hydrogen atom to its nucleus is about 100,000:1. If an atom were the size of a [[stadium]], the nucleus would be the size of a [[marbles|marble]]. Nearly all the mass of an atom is in its nucleus, yet almost all the space in an atom is filled by its electrons.
43224
43225 Atoms of different [[chemical element|elements]] do vary in size, but the sizes do not scale linearly with the mass of the atom. Their sizes are roughly the same to within a factor of 2. The reason for this is that heavy elements have large positive charge on their nuclei, which strongly attract the electrons to the center of the atom. This contracts the size of the [[electron shell]]s, so that more electrons fit in the only a slightly greater volume.
43226
43227 The [[temperature]] of a collection of atoms is a measure of the average energy of motion of those atoms; at 0 [[kelvin]]s ([[absolute zero]]) atoms would have no motion. As the temperature of the system is increased, the kinetic energy of the particles in the system is increased, and their speed of motion increases. At [[room temperature]], atoms making up gases in the air move at a speed of 500&amp;nbsp;m/s (about 1100 mph or 1800 km/h).
43228
43229 ===Elements, isotopes and ions===
43230
43231 Atoms are generally classified by their [[atomic number]] ''Z'', which corresponds to the number of protons in the atom. The atomic number determines which [[chemical element]] the atom is. For example, [[carbon]] atoms are atoms containing six protons. All atoms with the same atomic number share a wide variety of physical properties and exhibit the same [[chemical properties]]. The elements may be sorted according to the [[periodic table]] in order of increasing atomic number.
43232
43233 The [[atomic mass]] ''A'', atomic mass number, or nucleon number of an element is the total number of protons and neutrons in an atom of that element, so-called because each proton and neutron has a mass of about 1&amp;nbsp;[[amu]]. The number of neutrons ''A''−''Z'' in an atom has no effect on which element it is. Each element can have numerous kinds of atoms with the same number of protons and electrons but varying numbers of neutrons. Each has the same atomic number but a different mass number. These are called the [[isotope]]s of an element. When writing the name of an isotope, the element name is followed by the mass number. For example, [[carbon-14]] contains 6 protons and 8 neutrons in each atom, for a total mass number of 14.
43234
43235 The atomic mass listed for each element in the periodic table is an average of the isotope masses found in nature, [[weighted average|weighted]] by their [[abundance of the chemical elements|abundance]].
43236
43237 The simplest atom is the [[hydrogen]] isotope [[protium]], which has atomic number 1 and atomic mass number 1; it consists of one proton and one electron. The hydrogen isotope which also contains one neutron so is called [[deuterium]] or hydrogen-2; the hydrogen isotope with two neutrons is called [[tritium]] or hydrogen-3. Tritium is an unstable isotope which decays through a process called [[radioactivity]]. Almost all isotopes of each element are radioactive; only a few are [[stable isotope|stable]]. The elements with atomic number 84 ([[polonium]]) and heavier have no stable isotopes and are all radioactive.
43238
43239 Virtually all elements heavier than hydrogen and [[helium]] were created through [[stellar nucleosynthesis]] and [[supernova nucleosynthesis]]. Most of the elements lighter than [[uranium]] (''Z''=92) have stable-enough isotopes to occur naturally on [[Earth]] (with the notable exception of [[technetium]] ''Z''=43). Several elements that do not occur on Earth have been found to be present in [[star]]s. Elements not normally found in nature have been artificially created by [[synthetic element|nuclear bombardment]]; [[as of 2006]], elements have been created through atomic number 116 (given the temporary name [[ununhexium]]). These ultra-heavy elements are generally highly unstable and decay quickly.
43240
43241 Atoms that have either lost or gained electrons are called atomic [[ion]]s (with either positive(+) or negative charge(−), respectively).
43242
43243 ===Valence and bonding===
43244 :''see main article [[valence electron]]s and [[chemical bond]]''
43245
43246 The number of electrons in an atom's outermost shell (the [[valence shell]]) governs its bonding behavior. Therefore, elements with the same number of valence electrons are [[periodic table group|group]]ed together in the columns of the [[periodic table]] of the elements. [[Alkali metal]]s contain one electron on their outer shell; [[alkaline earth metal]]s, two electrons; [[halogen]]s, seven electrons; and various others.
43247
43248 Every atom is most stable with a full valence shell. This means that atoms with full valence shells (the [[noble gas]]es) are very unreactive. Conversely, atoms with few electrons in their valence shell are more [[reactivity|reactive]] it is. Alkali metals are therefore very reactive, with [[caesium]], [[rubidium]], and [[francium]] being the most reactive of all metals. Also, atoms that need only few electrons (such as the halogens) to fill their valence shells are reactive. [[Fluorine]] is the most reactive of all elements.
43249
43250 Atoms may fill their valence shells by [[chemical bond]]ing. This can be achieved one of two ways: an atom can either share electrons with other atoms (a ''[[covalent bond]]''), or it can remove electrons from (or donate electrons to) other atoms (an ''[[ionic bond]]''). The formation of a bond causes a strong attraction between two atoms, creating [[molecule]]s or [[ionic compound]]s. Many other types of bonds exist, including:
43251 *[[polar covalent bond]]s;
43252 *[[coordinate covalent bond]]s;
43253 *[[metallic bond]]s;
43254 *[[hydrogen bond]]s; and
43255 *[[van der Waals bond]]s.
43256
43257 ===Atomic spectrum===
43258 :''see main article [[Atomic spectroscopy]]''
43259
43260 Since each element in the [[periodic table]] consists of an atom in a unique configuration with different numbers of [[proton]]s and [[electron]]s, each element can also be uniquely described by the [[energy level|energies]] of its [[atomic orbital]]s and the number of electrons within them. Normally, an atom is found in its lowest-energy [[ground state]]; states with higher energy are called [[excited state]]s. An electron may move from a lower-energy orbital to a higher-energy orbital by absorbing a [[photon]] with energy equal to the difference between the energies of the two levels. An electron in a higher-energy orbital may drop to a lower-energy orbital by emitting a photon. Since each element has a unique set of energy levels, each creates its own [[light]] pattern unique to itself: its own spectral signature.
43261
43262 If a set of atoms is heated (such as in an [[arc lamp]]), their electrons will move into excited states. When these atoms fall back toward the ground state, they will produce an [[emission spectrum]]. If a set of atoms is illuminated by a [[continuous spectrum]], it will only absorb specific [[wavelength]]s (energies) of photon that correspond to the differences in its energy levels. The resulting pattern of gaps is called the [[absorption spectrum]].
43263
43264 In spectroscopic analysis, scientists can use a [[spectrometer]] to study the atoms in [[star]]s and other distant objects. Due to the distinctive spectral lines that each element produces, they are able to tell the chemical composition of distant [[planet]]s, stars and [[nebula]]e.
43265
43266 Not all parts of the atomic spectrum are in visible light part of the [[electromagnetic spectrum]]. For example, the [[hyperfine transition]]s (including the important [[21 cm line]]) produce low-energy [[radio wave]]s. When electrons deep inside large atoms are knocked out (for example by [[beta radiation]]), replacement atoms fall deep into the [[electric potential]] of the [[nucleus]], producing high-energy [[x-ray]]s.
43267
43268 ==Atoms and antimatter==
43269 :''see main article [[antimatter]]
43270
43271 [[Antimatter]] can also form atoms, composed of [[positron]]s, antiprotons, and antineutrons. Since antimatter is very difficult to produce and store, only a small amount [[antihydrogen]] has ever existed on Earth. This was produced at [[CERN]] in the [[ATHENA]] and [[ATRAP]] experiments using the [[Antiproton Decelerator]].
43272
43273 ==Atoms and the Big Bang==
43274
43275 In models of the [[Big Bang]], [[Big Bang nucleosynthesis]] predicts that within one to three minutes of the Big Bang almost all atomic material in the universe was created. During this process, [[nucleus|nuclei]] of [[hydrogen]] and [[helium]] formed abundantly, but almost no elements heavier than [[lithium]]. Hydrogen makes up approximately 75% of the atoms in the universe; helium makes up 24%; and all other elements make up just 1%. However, although nuclei (fully-[[ion]]ized atoms) were created, neutral atoms themselves could not form in the intense heat.
43276
43277 Big Bang chronology of the atom continues to approximately 379,000 years after the Big Bang when the cosmic temperature had dropped to just 3,000&amp;nbsp;[[kelvin|K]]. It was then cool enough to allow the nuclei to capture [[electron]]s. This process is called [[recombination]], during which the first neutral atoms took form. Once atoms become neutral, they only absorb [[photon]]s of a discrete [[absorption spectrum]]. This allows most of the photons in the universe to travel unimpeded for billions of years. These photons are still detectable today in the [[cosmic microwave background]].
43278
43279 After Big Bang nucleosynthesis, no heavier elements could be created until the [[star formation|formation of the first stars]]. These stars [[nuclear fusion|fused]] heavier elements through [[stellar nucleosynthesis]] during their lives and through [[supernova nucleosynthesis]] as they died. The seeding of the [[interstellar medium]] by heavy elements eventually allowed the formation of [[terrestrial planet]]s like the [[Earth]].
43280
43281 ==History of atomic theory==
43282 {{main|Atomic theory}}
43283
43284 ===Early atomism===
43285 From the [[6th century BC]], [[Hindu]], [[Buddhist]] and [[Jain]]a philosophers in [[ancient India]] developed the earliest atomic theories. The first philosopher who formulated ideas about the atom in a systematic manner was [[Kanada]] who lived in the 6th century BC. Another Indian philosopher, Pakudha Katyayana who also lived in the 6th century BC and was a contemporary of [[Gautama Buddha]], had also propounded ideas about the atomic constitution of the material world. Indian atomists believed that an atom could be one of upto six elements, with each element having upto 24 properties. They developed detailed theories of how atoms could combine, react, vibrate, move, and perform other actions, and had particularly elaborate theories of how atoms combine, which explains how atoms first combine in pairs, and then group into trios of pairs, which are the smallest visible units of matter. This parallels with the structure of modern atomic theory, in which pairs or triplets of supposedly fundamental quarks combine to create most typical forms of matter. They had also suggested the possibility of splitting an atom which, as we know today, is the source of atomic energy. (See [[Atomism#Indian atomism|Indian atomism]] for more details.)
43286
43287 [[Democritus]] and [[Leucippus]], [[Greek philosophers]] in the [[5th century BC]], presented a theory of atoms. (See [[Atomism]] for more details.) The Greeks believed that atoms were all made of the same material but had different shapes and sizes, which determined the physical properties of the material. For instance, the atoms of a [[liquid]] were thought to be smooth, allowing them to slide over each other. None of these ideas, however, were founded in [[scientific method|scientific experimentation]].
43288
43289 During the [[Middle Ages]] (the [[Islamic Golden Age]]), [[Islam]]ic atomists develop atomic theories that represent a synthesis of both Greek and Indian atomism. (See [[Atomism|Islamic atomism]] for more details.) Older Greek and Indian ideas were further developed by Islamic atomists, along with new Islamic ideas, such as the possibility of there being particles smaller than an atom. As Islamic influence began spreading through Europe, the ideas of Islamic atomism, along with the older ideas of Greek and Indian atomism, spread throughout Europe by the end of the Middle Ages, where modern atomic theories began taking shape.
43290
43291 ===Birth of modern atomic theory===
43292
43293 In 1808, [[John Dalton]] proposed that an [[element]] is composed of atoms of a single, unique type, and that although their shape and structure was immutable, atoms of different elements could combine to form more complex structures ([[chemical compound]]s). He deduced this after the experimental discovery of the [[law of multiple proportions]] — that is, if two elements form more than one compound between them, then the ratios of the masses of the second element which combine with a fixed mass of the first element will be ratios of small [[whole number]]s.
43294
43295 The experiment in question involved combining [[nitrous oxide]] (NO) with [[oxygen]] (O&lt;sub&gt;2&lt;/sub&gt;). In one combination, these gases formed [[dinitrogen trioxide]] (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;), but when he repeated the combination with double the amount of oxygen (a ratio of 1:2), they instead formed [[nitrogen dioxide]] (NO&lt;sub&gt;2&lt;/sub&gt;).
43296
43297 4NO + O&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; 2N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;
43298
43299 4NO + 2O&lt;sub&gt;2&lt;/sub&gt; &amp;rarr; 4NO&lt;sub&gt;2&lt;/sub&gt;
43300
43301 Atomic theory conflicted with the theory of [[infinite divisibility]], which states that [[matter]] can always be divided into smaller parts. In 1827, biologist [[Robert Brown]] observed that pollen grains floating in water constantly jiggled about for no apparent reason. In 1905, [[Albert Einstein]] theorised that this [[Brownian motion]] was caused by the water molecules continuously knocking the grains about, and developed a mathematical theory around it. This theory was validated experimentally in 1911 by French physicist [[Jean Perrin]].
43302
43303 ===Discovery of subatomic particles===
43304
43305 For much of this time, atoms were thought to be the smallest possible division of matter. However, in 1897, [[J.J. Thomson]] published his work proving that [[cathode ray]]s are made of negatively charged particles ([[electron]]s). Since cathode rays are emitted from matter, this proved that atoms are made up of [[subatomic particles]] and are therefore divisible, and not the indivisible ''atomos'' postulated by [[Democritus]]. Physicists later invented a new term for such indivisible units, &quot;[[elementary particle]]s&quot;, since the word atom had come into its common modern use.
43306
43307 ===Study of atomic structure===
43308
43309 At first, it was believed that the electrons were distributed more or less uniformly in a sea of positive charge (the [[plum pudding model]]). However, an experiment conducted in 1909 by colleagues of [[Ernest Rutherford]] demonstrated that atoms have a most of their mass and positive charge concentrated in a [[nucleus]]. In the [[gold foil experiment]], [[alpha particle]]s (emitted by [[polonium]]) were shot through a sheet of [[gold]]. Rutherford observed that most of the particles passed straight through the sheet with little deflection (striking a [[fluorescence|fluorescent screen]] on the other side). About 1 in 8000 of the alpha particles, however, were heavily deflected (by more than 90 degrees). This led to the planetary model of the atom in which pointlike electrons orbited in the space around a massive compact nucleus like planets orbiting the Sun.
43310
43311 The nucleus was later discovered to contain [[proton]]s, and further experimentation by Rutherford found that the nuclear mass of most atoms surpassed that of the protons it possessed; this led him to postulate the existence of [[neutron]]s, whose existence would be proven in 1932 by [[James Chadwick]].
43312
43313 The planetary model of the atom still had shortcomings. Firstly, a moving [[electric charge]] emits [[electromagnetic wave]]s; according to [[classical electromagnetism]], an orbiting charge would steadily lose energy and spiral towards the nucleus, colliding with it in a tiny fraction of a second. Secondly, the model did not explain why excited atoms emit light only in certain [[emission spectrum|discrete spectra]].
43314
43315 [[Quantum theory]] revolutionized physics at the beginning of the 20&lt;sup&gt;th&lt;/sup&gt; century when [[Max Planck]] and [[Albert Einstein]] postulated that light energy is emitted or absorbed in fixed amounts known as [[quanta]]. In 1913, [[Niels Bohr]] used this idea in his [[Bohr model]] of the atom, in which the electrons could only orbit the nucleus in particular circular orbits with fixed [[angular momentum]] and energy. They were not allowed to spiral into the nucleus, because they could not lose energy in a continuous manner; they could only make [[quantum leap]]s between fixed [[energy level]]s. Bohr's model was extended by [[Arnold Sommerfeld]] in 1916 to include elliptical orbits, using a quantization of [[generalized momentum]].
43316
43317 The ad hoc Bohr-Sommerfeld model was extremely difficult to use, but it made impressive predictions in agreement with certain spectral properties. However, the model was unable to explain multielectron atoms, predict [[transition rate]]s or describe [[fine structure|fine]] and [[hyperfine structure]]. In 1925, [[Erwin SchrÃļdinger]] developed a full theory of quantum mechanics, described by the [[SchrÃļdinger equation]]. Together with [[Wolfgang Pauli]]'s [[Pauli exclusion principle|exclusion principle]], this allowed study of atoms with great precision when digital computers became available. Even today, these theories are used in the [[Hartree-Fock]] [[quantum chemistry|quantum chemical]] method to determine the energy levels of atoms. Further refinements of quantum theory such as the [[Dirac equation]] and [[quantum field theory]] made smaller impacts on the theory of atoms.
43318
43319 Another model of historical interest, proposed by [[Gilbert N. Lewis]] in 1916, had [[cubical atom]]s with electrons statically held at the corners. The cubes could share edges or faces to form chemical bonds. This model was created to account for chemical phenomena such as bonding, rather than physical phenomena such as atomic spectra.
43320
43321 ==See also==
43322 * [[Atomism]]
43323 * [[Basic quantum mechanics]]
43324 * [[Chemical bond]]
43325 * [[Exotic atom]]
43326 * [[Infinite divisibility]]
43327 * [[List of particles]]
43328 * [[Radioactive isotope]]
43329 * [[Superatom]]
43330 * [[Super-heavy atom]]
43331 * [[Transuranium element]]
43332
43333 ==References==
43334
43335 * Kenneth S. Krane, ''Introductory Nuclear Physics'' (1987)
43336
43337 == External links ==
43338
43339 * [http://www.howstuffworks.com/atom.htm How Atoms Work]
43340 * [http://en.wikibooks.org/wiki/FHSST_Physics_Atom:The_Atom Wikibooks FHSST Physics Atom:The Atom]
43341 * [http://en.wikibooks.org/wiki/Atomic_structure Wikibooks Atomic structure]
43342
43343 {{composite}}
43344
43345 [[Category:Atoms| ]]
43346
43347 [[af:Atoom]]
43348 [[ar:Ø°ØąØŠ (ØšŲ„ŲˆŲ…)]]
43349 [[an:Atomo]]
43350 [[ast:Átomu]]
43351 [[bg:АŅ‚ĐžĐŧ]]
43352 [[bs:Atom]]
43353 [[br:Atom]]
43354 [[ca:Àtom]]
43355 [[cs:Atom]]
43356 [[da:Atom]]
43357 [[de:Atom]]
43358 [[et:Aatom]]
43359 [[es:Átomo]]
43360 [[eo:Atomo]]
43361 [[fa:اØĒŲ…]]
43362 [[fr:Atome]]
43363 [[gl:Átomo]]
43364 [[ko:ė›ėž]]
43365 [[hr:Atom]]
43366 [[io:Atomo]]
43367 [[id:Atom]]
43368 [[ia:Atomo]]
43369 [[is:Frumeind]]
43370 [[it:Teoria atomica]]
43371 [[he:אטום]]
43372 [[kn:ā˛…ā˛Ŗāŗ]]
43373 [[ka:აáƒĸომი]]
43374 [[la:Atomus]]
43375 [[lv:Atoms]]
43376 [[lt:Atomas]]
43377 [[hu:Atom]]
43378 [[mk:АŅ‚ĐžĐŧ]]
43379 [[ms:Atom]]
43380 [[nl:Atoom]]
43381 [[nds:Atom]]
43382 [[ja:原子]]
43383 [[no:Atom]]
43384 [[nn:Atom]]
43385 [[pl:Atom]]
43386 [[pt:Átomo]]
43387 [[ro:Atom]]
43388 [[ru:АŅ‚ĐžĐŧ]]
43389 [[simple:Atom]]
43390 [[sk:AtÃŗm]]
43391 [[sl:Atom]]
43392 [[sr:АŅ‚ĐžĐŧ]]
43393 [[su:Atom]]
43394 [[fi:Atomi]]
43395 [[sv:Atom]]
43396 [[tl:Atomo]]
43397 [[ta:āŽ…āŽŖā¯]]
43398 [[th:ā¸­ā¸°ā¸•ā¸­ā¸Ą]]
43399 [[vi:NguyÃĒn táģ­]]
43400 [[tr:Atom]]
43401 [[bug:Atong]]
43402 [[uk:АŅ‚ĐžĐŧ]]
43403 [[zh:原子]]</text>
43404 </revision>
43405 </page>
43406 <page>
43407 <title>Arable land</title>
43408 <id>903</id>
43409 <revision>
43410 <id>41774993</id>
43411 <timestamp>2006-03-01T17:37:10Z</timestamp>
43412 <contributor>
43413 <username>Rjgibb</username>
43414 <id>868299</id>
43415 </contributor>
43416 <minor />
43417 <comment>links</comment>
43418 <text xml:space="preserve">[[image:040719_172_dorset_marnhull.jpg|thumb|220px|Modern arable agriculture typically uses large [[field (agriculture)|fields]] like this one in [[Dorset]], [[England]].]]
43419 In [[geography]], '''arable land''' (from [[Latin]] ''arare'', to [[plough]] ) is a form of [[agriculture|agricultural]] [[land use]], meaning [[land (economics)|land]] that can be (and is) used for growing [[agriculture|crops]]. [[David Ricardo]] incorporated the idea of arable land into [[economic]] [[theory]].
43420
43421 Of the earth's 57 million square miles (148,000,000&amp;nbsp;km&amp;sup2;) of land, more than 12 million square miles (31,000,000&amp;nbsp;km&amp;sup2;) are arable.
43422
43423 Most of the arable land on earth is around the largest rivers on earth. Some examples are: the [[Nile]] River, the [[Tigris]] and [[Euphrates]] Rivers, the [[Yellow River]], the [[Amazon River]], the [[Ganges]] and the [[Rhine]] River. These rivers flood regularly, overspilling their banks. When the flood is over, the rivers recede, leaving behind rich [[silt]]. This silt is excellent fertilizer for [[crops]]. Even if the land is overfarmed, and all the [[nutrient]]s are depleted from the soil, the land renews its fertility when the next flood comes. Rivers and streams can make desert land arable.
43424
43425 ==Unarable land==
43426
43427 On unarable land, farming is nearly impossible unless more advanced methods of [[agriculture]] are used. Unarable land usually has no source of fresh water, and is often too hot (desert), too cold (arctic), too rocky, too mountainous, too salty, too rainy, too snowy, or too cloudy. Clouds block the sunlight plants need for [[photosynthesis]] (making sunlight into food). The plants starve without light. [[Starvation]] and [[nomad]]ism often exist on unarable land. Unarable land is sometimes called 'wastes', 'badlands', 'worthless' or 'no man's land'.
43428
43429 Sometimes, unarable land can be turned into arable land. New arable land makes more food, and can prevent [[starvation]], saving lives. This also makes the country more [[self-sufficient]] and politically independent, because the country doesn't have to buy food from other countries. Making unarable land arable often involves digging new irrigation canals and new wells, aquaducts, [[desalination]] plants, planting trees for shade in the desert, [[hydroponic]]s, fertilizer, nitrogen fertilizer, [[pesticide]]s, [[reverse osmosis]] water processors, [[mylar]] insulation or other insulation against heat and cold, digging ditches and hills for protection against the wind, and greenhouses with internal light and heat for protection against the cold outside and to provide light in cloudy areas.
43430
43431 Some examples of infertile '''unarable''' land being turned into fertile '''arable''' land are:
43432 * Aran Island: This island off the west coast of Ireland, (not to be confused with the [[Isle of Arran]] in [[Scotland]]'s [[Firth of Clyde]]), was unarable because it was too rocky. The people covered the island with a shallow layer of seaweed and sand from the ocean. This made it arable. Today, they grow crops there.
43433 * [[Israel]]: Israel was mostly unarable desert until [[desalination]] plants were built on the coast. The plants turn salt water into fresh water for farming, drinking, and washing. They created their own large fresh water source.
43434
43435 Some examples of fertile '''arable''' land being turned into infertile '''unarable''' land are:
43436 * Droughts like the '[[dust bowl]]' of the [[Great Depression]] in the U.S. turned farmland into desert.
43437 * [[Rainforest]] Deforestation: The fertile tropical forests turn into infertile desert land.
43438 * [[Roman Republic|Roman]]s' destruction of [[Carthage]]: At the end of the [[Punic War]]s, the victorious Romans sowed the earth with salt, to symbolize total victory. The Roman symbol meant that Carthage would never grow back - their civilization ended. Crops won't generally grow in salty soil. This is why salt water from the ocean can't be used to water crops.
43439 * Each year more arable land is lost to desertification and [[erosion]] from human industrial activities. Irrigation of farm land also increases the [[sodium]], [[calcium]], and [[magnesium]] in the soil. This process steadily concentrates salt in the ground, decreasing productivity for crops that are not salt-tolerant.
43440 * [[Urban sprawl]]: In the United States, about 2.2 million acres (8,900 km²) of land was added to urban areas between 1992 and 2002, much of it farm land now paved.
43441
43442 == See also ==
43443
43444 *[[List of environment topics]]
43445
43446 ==External links==
43447
43448 *[http://pages.prodigy.net/jhonig/bignum/qland2.html Surface Area of the Earth]
43449 *[http://www.cnie.org/pop/conserving/landuse.htm Conserving Land: Population and Sustainable Food Production]
43450
43451 [[Category:Agriculture]]
43452 [[Category:Horticulture]]</text>
43453 </revision>
43454 </page>
43455 <page>
43456 <title>Aluminium</title>
43457 <id>904</id>
43458 <restrictions>move=:edit=</restrictions>
43459 <revision>
43460 <id>42089447</id>
43461 <timestamp>2006-03-03T19:30:52Z</timestamp>
43462 <contributor>
43463 <username>UkPaolo</username>
43464 <id>269651</id>
43465 </contributor>
43466 <minor />
43467 <comment>Reverted edits by [[Special:Contributions/66.144.119.56|66.144.119.56]] ([[User talk:66.144.119.56|talk]]) to last version by Spaully</comment>
43468 <text xml:space="preserve">{{Elementbox_header | number=13 | symbol=Al | name=aluminium | left=[[magnesium]] | right=[[silicon]] | above=[[boron|B]] | below=[[gallium|Ga]] | color1=#cccccc | color2=black }}
43469 {{Elementbox_series | [[poor metal]]s }}
43470 {{Elementbox_groupperiodblock | group=13 | period=3 | block=p }}
43471 {{Elementbox_appearance_img | Al,13| silvery }}
43472 {{Elementbox_atomicmass_gpm | [[1 E-26 kg|26.9815386]][[List of elements by atomic mass|(8)]] }}
43473 {{Elementbox_econfig | &amp;#91;[[neon|Ne]]&amp;#93; 3s&lt;sup&gt;2&lt;/sup&gt; 3p&lt;sup&gt;1&lt;/sup&gt; }}
43474 {{Elementbox_epershell | 2, 8, 3 }}
43475 {{Elementbox_section_physicalprop | color1=#cccccc | color2=black }}
43476 {{Elementbox_phase | [[solid]] }}
43477 {{Elementbox_density_gpcm3nrt | 2.70 }}
43478 {{Elementbox_densityliq_gpcm3mp | 2.375 }}
43479 {{Elementbox_meltingpoint | k=933.47 | c=660.32 | f=1220.58 }}
43480 {{Elementbox_boilingpoint | k=2792 | c=2519 | f=4566 }}
43481 {{Elementbox_heatfusion_kjpmol | 10.71 }}
43482 {{Elementbox_heatvaporiz_kjpmol | 294.0 }}
43483 {{Elementbox_heatcapacity_jpmolkat25 | 24.200 }}
43484 {{Elementbox_vaporpressure_katpa | 1482 | 1632 | 1817 | 2054 | 2364 | 2790 | comment= }}
43485 {{Elementbox_section_atomicprop | color1=#cccccc | color2=black }}
43486 {{Elementbox_crystalstruct | cubic face centered }}
43487 {{Elementbox_oxistates | 3&lt;br /&gt;([[amphoteric]] oxide) }}
43488 {{Elementbox_electroneg_pauling | 1.61 }}
43489 {{Elementbox_ionizationenergies4 | 577.5 | 1816.7 | 2744.8 }}
43490 {{Elementbox_atomicradius_pm | [[1 E-10 m|125]] }}
43491 {{Elementbox_atomicradiuscalc_pm | [[1 E-10 m|118]] }}
43492 {{Elementbox_covalentradius_pm | [[1 E-10 m|118]] }}
43493 {{Elementbox_section_miscellaneous | color1=#cccccc | color2=black }}
43494 {{Elementbox_magnetic | [[paramagnetism|paramagnetic]] }}
43495 {{Elementbox_eresist_ohmmat20 | 26.50 n}}
43496 {{Elementbox_thermalcond_wpmkat300k | 237 }}
43497 {{Elementbox_thermalexpansion_umpmkat25 | 23.1 }}
43498 {{Elementbox_speedofsound_rodmpsatrt | (rolled) 5000 }}
43499 {{Elementbox_youngsmodulus_gpa | 70 }}
43500 {{Elementbox_shearmodulus_gpa | 26 }}
43501 {{Elementbox_bulkmodulus_gpa | 76 }}
43502 {{Elementbox_poissonratio | 0.35 }}
43503 {{Elementbox_mohshardness | 2.75 }}
43504 {{Elementbox_vickershardness_mpa | 167 }}
43505 {{Elementbox_brinellhardness_mpa | 245 }}
43506 {{Elementbox_cas_number | 7429-90-5 }}
43507 {{Elementbox_isotopes_begin | isotopesof=aluminium | color1=#cccccc | color2=black }}
43508 {{Elementbox_isotopes_decay3 | mn=26 | sym=Al | na=[[synthetic radioisotope|syn]] | hl=[[1 E13 s|7.17&amp;times;10&lt;sup&gt;5&lt;/sup&gt;]][[year|y]] | dm1=[[Positron emission|&amp;beta;&lt;sup&gt;+&lt;/sup&gt;]] | de1=1.17 | pn1=26 | ps1=[[magnesium|Mg]] | dm2=[[electron capture|&amp;epsilon;]] | de2=- | pn2=26 | ps2=[[magnesium|Mg]] | dm3=[[Gamma radiation|&amp;gamma;]] | de3=1.8086 | pn3= | ps3=- }}
43509 {{Elementbox_isotopes_stable | mn=27 | sym=Al | na=100% | n=14 }}
43510 {{Elementbox_isotopes_end}}
43511 {{Elementbox_footer | color1=#cccccc | color2=black }}
43512
43513 '''Aluminium''' or '''aluminum''' (see the [[#Spelling|spelling]] section below) is the chemical element in the periodic table that has the symbol '''Al''' and atomic number 13. It is a silvery and ductile member of the [[poor metal]] group of [[chemical element]]s. Aluminium is found primarily as the ore [[bauxite]] and is remarkable for its resistance to corrosion (due to the phenomenon of [[passivation]]) and its light weight. Aluminium is used in many industries to make millions of different products and is very important to the [[world economy]]. Structural components made from aluminium and its alloys are vital to the [[aerospace]] industry and very important in other areas of [[transport]]ation and building in which light weight, durability, and strength are needed.
43514
43515 ==Properties==
43516 [[Image:Aluminum_Metal.jpg|thumb|left|A piece of aluminium metal about 15 centimetres long.]]
43517 Aluminium is a soft and lightweight metal with a dull silvery appearance, due to a thin layer of [[oxidation]] that forms quickly when it is exposed to air. Aluminium is nontoxic (as the metal), non-magnetic, and non-sparking. Pure aluminium has a tensile strength of about 49 megapascals (MPa) and 400 MPa if it is formed into an alloy. Aluminium is about one-third as dense as [[steel]] or [[copper]]; is [[Malleability|malleable]], [[Ductility|ductile]], and easily machined and cast; and has excellent [[corrosion]] resistance and durability due to the protective oxide layer. Aluminium mirror finish has the highest reflectance of any metal in the 200-400 nm (UV) , and the 3000-10000 nm (far IR) regions, while in the 400-700 nm visible range it is slightly outdone by [[silver]], and in the 700-3000 (near IR) by silver, [[gold]] and copper. It is the second most malleable metal (after gold) and the sixth most [[ductile]]. Aluminium is a good heat [[conductor]] which is why it is used to make saucepans.
43518 [[Image:Bohr2.gif|thumb|Caption|[[Bohr]] Diagram.]]
43519
43520 ==Applications==
43521 Whether measured in terms of quantity or value, the use of aluminium exceeds that of any other metal except [[iron]], and it is important in virtually all segments of the world economy.
43522
43523 Pure aluminium has a low [[tensile strength]], but readily forms [[alloy]]s with many elements such as copper, zinc, magnesium, manganese and silicon (e.g.[[duralumin]]). Today almost all materials that claim to be aluminium are actually an alloy thereof. Pure aluminium is encountered only when corrosion resistance is more important than strength or hardness. Conversely, the term &quot;alloy&quot; in general use today usually means aluminium alloy.
43524
43525 When combined with thermo-mechanical processing aluminium [[alloy]]s display a marked improvement in mechanical properties. Aluminium alloys form vital components of [[aircraft]] and [[rocket]]s as a result of their high strength to weight ratio.
43526
43527 When aluminium is evaporated in a [[vacuum]] it forms a coating that reflects both [[visible light]] and [[infrared]]. These coatings form a thin layer of protective aluminium oxide that does not deteriorate as [[silver]] coatings do. In particular, nearly all modern [[mirror]]s are made using a thin reflective coating of aluminium on the back surface of a sheet of [[float glass]]. [[Telescope]] mirrors are also coated with a thin layer of aluminium, but are front coated to avoid internal reflections even though this makes the surface more susceptible to damage.
43528
43529
43530 [[Image:Diet Coke.jpg|thumb|150px|left|An [[aluminium can]] used for the [[soft drink]] [[Diet Coke]].]]
43531 Some of the many uses for aluminium are in:
43532 *Transportation ([[automobile]]s, [[airplane]]s, [[truck]]s, [[railroad car]]s, marine vessels, [[bicycle]]s etc.)
43533 *Packaging ([[aluminum can|cans]], [[aluminium foil|foil]], etc.)
43534 *Water treatment
43535 *Construction ([[window]]s, [[door]]s, siding, building wire, etc.
43536 *Consumer durable goods (appliances, [[cooking utensil]]s, etc.)
43537 *[[electricity|Electrical]] [[transmission lines]] (aluminium components and wires are less dense than those made of copper and are lower in price [http://www.metalprices.com], but also present higher electrical resistance. Many localities prohibit the use of aluminum in residential wiring practices because of its higher resistance and thermal expansion value.)
43538 *Machinery
43539 *[[MKM steel]] and [[Alnico]] magnets, although non-[[magnet]]ic itself
43540 *Super purity aluminium (SPA, 99.980% to 99.999% Al), used in electronics and [[compact disc|CD]]s.
43541 *[[Powder]]ed aluminium, a commonly used [[silvering]] agent in [[paint]]. Aluminium flakes may also be included in undercoat paints, particularly wood [[primer (paint)|primer]] &amp;mdash; on drying, the flakes overlap to produce a water resistant barrier.
43542 *[[Anodising|Anodised]] aluminium is more stable to further oxidation, and is used in various fields of construction, as well as [[heat sink]]ing.
43543 *Most electronic appliances that require cooling of their internal devices (like transistors, [[Central processing unit|CPU]]s - semiconductors in general) have [[heat sink]]s that are made of aluminium due to its ease of manufacture and good heat conductivity. [[Copper]] heat sinks are smaller although more expensive and harder to manufacture.
43544
43545 *Aluminium oxide, [[alumina]], is found naturally as [[corundum]] ([[ruby|rubies]] and [[sapphire]]s), [[emery (mineral)|emery]], and is used in [[glass]] making. Synthetic ruby and sapphire are used in [[laser]]s for the production of [[coherent light]].
43546
43547 *Aluminium oxidises very energetically and as a result has found use in [[solid rocket]] fuels, [[thermite]], and other [[pyrotechnic]] compositions.
43548
43549 Aluminium is also a [[superconductor]], with a superconducting critical temperature of 1.2 [[kelvin]]s.
43550
43551 ===Engineering use===
43552 Aluminium alloys with a wide range of properties are used in engineering structures. Alloy systems are classified by a number system ([[ANSI]]) or by names indicating their main alloying constituents ([[DIN]] and [[ISO]]). Selecting the right alloy for a given application entails considerations of strength, [[ductility]], formability, [[weldability]] and [[corrosion]] resistance to name a few. A brief historical overview of alloys and manufacturing technologies is given in Ref. &lt;ref name=sanders&gt;R.E. Sanders, Technology Innovation in Aluminum Products, ''The Journal of The Minerals'', 53(2):21-25, 2001. [http://www.tms.org/pubs/journals/JOM/0102/Sanders-0102.html Online ed.]&lt;/ref&gt;.
43553
43554 Improper use of aluminium can result in problems, particularly in contrast to [[iron]] or [[steel]], which appear &quot;better behaved&quot; to the intuitive designer, mechanic, or technician. The reduction by two thirds of the weight of an aluminium part compared to a similarly sized iron or steel part seems enormously attractive, but it should be noted that it is accompanied by a reduction by two thirds in the stiffness of the part. Therefore, although direct replacement of an iron or steel part with a duplicate made from aluminium may still give acceptable strength to withstand peak loads, the increased flexibility will cause three times more deflection in the part.
43555
43556 Where failure is not an issue but excessive flex is undesirable due to requirements for precision of location or efficiency of transmission of power, simple replacement of steel tubing with similarly sized aluminium tubing will result in a degree of flex which is undesirable; for instance, the increased flex under operating loads caused by replacing steel bicycle frame tubing with aluminium tubing of identical dimensions will cause misalignment of the power-train as well as absorbing the operating force. To increase the rigidity by increasing the thickness of the walls of the tubing increases the weight proportionately, so that the advantages of lighter weight are lost as the rigidity is restored.
43557
43558 Aluminium can best be used by redesigning the part to suit its characteristics; for instance making a bicycle of aluminium tubing which has an oversize diameter rather than thicker walls. In this way, rigidity can be restored or even enhanced without increasing weight. The limit to this process is the increase in susceptibility to what is termed &quot;[[buckling]]&quot; failure, where the deviation of the force from any direction other than directly along the axis of the tubing causes folding of the walls of the tubing.
43559
43560 The latest models of the [[Corvette]] automobile, among others, are a good example of redesigning parts to make best use of aluminium's advantages. The aluminium chassis members and suspension parts of these cars have large overall dimensions for stiffness but are lightened by reducing cross-sectional area and removing unneeded metal; as a result, they are not only equally or more durable and stiff as the usual steel parts, but they possess an airy gracefulness which most people find attractive. Similarly, aluminium bicycle frames can be optimally designed so as to provide rigidity where required, yet have flexibility in terms of absorbing the shock of bumps from the road and not transmitting them to the rider.
43561
43562 The strength and durability of aluminium varies widely, not only as a result of the components of the specific alloy, but also as a result of the particular manufacturing process; for this reason, it has from time to time gained a bad reputation. For instance, a high frequency of failure in many early aluminium bicycle frames in the [[1970]]s resulted in just such a poor reputation; with a moment's reflection, however, the widespread use of aluminium components in the [[aerospace]] and automotive high performance industries, where huge stresses are undergone with vanishingly small failure rates, proves that properly built aluminium bicycle components should not be unusually unreliable, and this has subsequently proved to be the case.
43563
43564 Similarly, use of aluminium in automotive applications, particularly in engine parts which must survive in difficult conditions, has benefited from development over time. An [[Audi]] engineer commented about the V12 engine, producing over 500 horsepower (370 kW), of an [[Auto Union#The Auto Union racing cars |Auto Union race car]] of the [[1930s]] which was recently restored by the Audi factory, that the aluminium alloy of which the engine was constructed would today be used only for lawn furniture and the like. Even the aluminium [[cylinder head]]s and [[crankcase]] of the [[Corvair]], built as recently as the [[1960s]], earned a reputation for failure and stripping of [[thread]]s in holes, even as large as [[spark plug]] holes, which is not seen in current aluminium cylinder heads.
43565
43566 Often, aluminium's sensitivity to heat must also be considered. Even a relatively routine workshop procedure involving heating is complicated by the fact that aluminium, as opposed to steels, will melt without first turning red. Forming operations where a [[blow torch]] is used therefore requires some expertise since no visual signs reveal how close the material is to melting. Aluminium also will accumulate internal stresses and strains under conditions of overheating; while not immediately obvious, the tendency of the metal to &quot;creep&quot; under sustained stresses results in delayed distortions, for instance the commonly observed warping or cracking of aluminium automobile cylinder heads after an engine is overheated, sometimes as long as years later, or the tendency of welded aluminium bicycle frames to gradually twist out of alignment from the stresses accumulated during the welding process. For this reason, many uses of aluminium in the aerospace industry avoid heat altogether by joining parts using [[adhesive]]s; this was also used for some of the early aluminium bicycle frames in the 1970s, with unfortunate results when the aluminium tubing corroded slightly, loosening the bond of the adhesive and leading to failure of the frame. Stresses from overheating aluminium can be relieved by heat-treating the parts in an oven and gradually cooling, in effect [[annealing (metallurgy)|annealing]] the stresses; this can also result, however, in the part becoming distorted as a result of these stresses, so that such heat-treating of welded bicycle frames, for instance, results in a significant fraction becoming misaligned. If the misalignment is not too severe, once cooled they can be bent back into alignment with no negative consequences; of course, if the frame is properly designed for rigidity (see above), this will require enormous force.
43567
43568 ====Household wiring====
43569 Because of its high conductivity and relatively low price compared to [[copper]] at the time, aluminium was introduced for household electrical wiring to a large degree in the United States in the 1960s. Unfortunately, many of the wiring fixtures at the time were not designed to accept aluminium wire. More specifically:
43570
43571 * The greater [[coefficient of thermal expansion]] of aluminium, causes the wire to expand and contract relative to the dissimilar metal [[screw]] connection, eventually loosening the connection.
43572
43573 * Pure aluminium has a tendency to &quot;creep&quot; under steady sustained pressure (to a greater degree as the temperature rises), again producing a degree of looseness in an initially tight connection.
43574
43575 * [[Galvanic cell#Galvanic corrosion|Galvanic corrosion]] from the dissimilar metals increases the electrical resistance of the connection.
43576
43577 In combination, these properties caused connections between electrical fixtures and aluminium wiring to overheat which resulted in several fires. As a result, aluminium household wiring has become unpopular, and in many jurisdictions it is not permitted in very small sizes in new construction. However, aluminium wiring can be safely used with fixtures whose connections are designed to avoid loosening and overheating. Older fixtures of this type are marked &quot;Al/Cu&quot;, and newer ones are marked &quot;CO/ALR&quot;. Otherwise, aluminium wiring can be terminated by [[crimp (metalworking)|crimping]] it to a short &quot;[[pigtail]]&quot; of copper wire, which can be treated as any other copper wire. A properly done crimp, requiring high pressure produced by the proper tool, is tight enough not only to eliminate any thermal expansion of the aluminium, but also to exclude any atmospheric oxygen and thus prevent corrosion between dissimilar metals. New alloys are used for aluminium building wire today in combination with aluminium terminations. Connections made with these standard industry products are as safe and reliable as copper connections.
43578
43579 :''See also'':[[Aluminium wire]]
43580
43581 ==History==
43582 The ancient [[Ancient Greece|Greeks]] and [[Ancient Rome|Romans]] used salts of this metal as dyeing [[mordant]]s and as astringents for dressing wounds, and [[alum]] is still used as a [[styptic]]. Further [[Joseph Needham]] suggested finds in 1974 showed the ancient Chinese used aluminium (''see &quot;notes&quot; linked above''). In 1761 [[Guyton de Morveau]] suggested calling the base alum 'alumine'. In 1808, [[Humphry Davy]] identified the existence of a metal base of alum, which he named (''see [[#Spelling|Spelling]] section'').
43583
43584 [[Friedrich Woehler|Friedrich WÃļhler]] is generally credited with isolating aluminium ([[Latin]] ''alumen'', [[alum]]) in 1827 by mixing anhydrous aluminium chloride with potassium. However, the metal had been produced for the first time two years earlier in an impure form by the Danish physicist and chemist [[Hans Christian Ørsted]]. Therefore almanacs and chemistry sites often list Ørsted as the discoverer of aluminium.[http://www.chemicalelements.com/elements/al.html#isotopes] Still it would further be P. Berthier who discovered aluminium in bauxite ore and successfully extracted it. The Frenchman [[Henri Saint-Claire Deville]] improved WÃļhler's method in 1846 and described his improvements in a book in 1859, chief among these being the substitution of sodium for the considerably more expensive potassium.
43585
43586 The American [[Charles Martin Hall]] of [[Oberlin, OH]] applied for a [[patent]] (400655) in 1886 for an electrolytic process to extract aluminium using the same technique that was independently being developed by the Frenchman [[Paul HÊroult]] in Europe. The invention of the [[Hall-Heroult process|Hall-HÊroult process]] in 1886 made extracting aluminium from minerals cheaper, and is now the principal method in common use throughout the world. The Hall-Heroult process cannot produce Super Purity Aluminium directly. Upon approval of his patent in 1889, Hall, with the financial backing of [[Alfred E. Hunt]] of [[Pittsburgh, PA]], started the Pittsburgh Reduction Company, renamed to Aluminum Company of America in 1907, later shortened to [[Alcoa]].
43587
43588 [[Image:Eros-piccadilly-circus.jpg|thumb|right|The statue known as ''Eros'' in [[Piccadilly Circus]] London, was made in 1893 and is one of the first statues to be cast in aluminium.]] Aluminium was selected as the material to be used for the apex of the [[Washington Monument]], at a time when one [[ounce]] cost twice the daily wages of a common worker in the project. [http://www.tms.org/pubs/journals/JOM/9511/Binczewski-9511.html]
43589
43590 Germany became the world leader in aluminium production soon after [[Adolf Hitler]] seized power. By 1942, however, new hydroelectric power projects such as the [[Grand Coulee Dam]] gave the United States something Nazi Germany could not hope to compete with, namely the capability of producing enough aluminium to manufacture sixty thousand warplanes in four years. [http://www.phpsolvent.com/wordpress/?page_id=341]
43591
43592 ==Natural occurrence==
43593 Although aluminium is the most abundant metallic element in Earth's crust (believed to be 7.5% to 8.1%), it is very rare in its free form and was once considered a [[precious metal]] more valuable than [[gold]]. [[Napoleon III of France]] had a set of aluminium plates reserved for his finest guests. Others had to make do with gold ones. Aluminium has been produced in commercial quantities for just over 100 years.
43594
43595 Aluminium was, when it was first discovered, extremely difficult to separate from its ore. Aluminium is among the most difficult metals on Earth to refine, despite the fact that it is one of the planet's most common. The reason is that aluminium is oxidised very rapidly and that its oxide is an extremely stable compound that, unlike rust on iron, does not flake off. The very reason for which aluminium is used in many applications is why it is so hard to produce.
43596
43597 Recovery of this metal from scrap (via [[recycling]]) has become an important component of the aluminium industry. Recycling involves simply melting the metal, which is far less expensive than creating it from ore. Refining aluminium requires enormous amounts of [[electricity]]; recycling it requires only 5% of the energy to produce it. A common practice since the early [[20th century|1900s]], aluminium recycling is not new. It was, however, a low-profile activity until the late 1960s when the exploding popularity of aluminium [[beverage can]]s finally placed recycling into the public consciousness. Other sources for recycled aluminium include automobile parts, windows and doors, appliances, containers and other products.
43598
43599 Aluminium is a reactive metal and it is hard to extract it from its ore, [[aluminium oxide]] (Al&lt;sub&gt;2&lt;/sub&gt;[[oxygen|O]]&lt;sub&gt;3&lt;/sub&gt;). Direct reduction, with [[carbon]] for example, is not economically viable since aluminium oxide has a melting point of about 2000 °C. Therefore, it is extracted by [[electrolysis]] &amp;mdash; the aluminium oxide is dissolved in molten [[cryolite]] and then reduced to the pure metal. By this process, the actual operational temperature of the reduction cells is around 950 to 980 °C. Cryolite was originally found as a mineral on Greenland, but has been replaced by a synthetic cryolite. Cryolite is a mixture of aluminium, [[sodium]], and [[calcium]] [[fluoride]]s: (Na&lt;sub&gt;3&lt;/sub&gt;AlF&lt;sub&gt;6&lt;/sub&gt;). The aluminium oxide (a white powder) is obtained by refining [[bauxite]], which is red since it contains 30 to 40% iron oxide. This is done using the so-called [[Bayer process]]. Previously, the [[Deville process]] was the predominant refining technology.
43600
43601 The electrolytic process replaced the [[WÃļhler process]], which involved the reduction of anhydrous [[aluminium chloride]] with [[potassium]]. Both of the [[electrode]]s used in the electrolysis of aluminium oxide are [[carbon]]. Once the ore is in the molten state, its ions are free to move around. The reaction at the negative [[cathode]] is
43602 :Al&lt;sup&gt;3+&lt;/sup&gt; + 3 e&lt;sup&gt;-&lt;/sup&gt; &amp;rarr; Al
43603
43604 Here the aluminium ion is being reduced (electrons are added). The aluminium metal then sinks to the bottom and is tapped off.
43605
43606 At the positive electrode ([[anode]]) oxygen gas is formed:
43607 :2 O&lt;sup&gt;2-&lt;/sup&gt; &amp;rarr; O&lt;sub&gt;2&lt;/sub&gt; + 4 e&lt;sup&gt;-&lt;/sup&gt;
43608
43609 This carbon [[anode]] is then oxidised by the oxygen. The anodes in a reduction must therefore be replaced regularly, since they are consumed in the process:
43610 :O&lt;sub&gt;2&lt;/sub&gt; + C &amp;rarr; CO&lt;sub&gt;2&lt;/sub&gt;
43611
43612 Contrary to the anodes, the cathodes are not consumed during the operation, since there is no oxygen present at the cathode. The carbon cathode is protected by the liquid aluminium inside the cells. Cathodes do erode, mainly due to electrochemical processes. After 5 to 10 years, depending on the current used in the electrolysis, a cell has to be reconstructed completely, because the cathodes are completely worn.
43613
43614 Aluminium [[electrolysis]] with the [[Hall-HÊroult]] process consumes a lot of energy, but alternative processes were always found to be less viable economically and/or ecologically. The world-wide average specific energy consumption is approximately 15Âą0.5 [[kilowatt-hour]]s per kilogram of aluminium produced (52 to 56 [[megajoule|MJ]]/kg). The most modern smelters reach approximately 12.8 kW¡h/kg (46.1 MJ/kg). Reduction line current for older technologies are typically 100 to 200 kA. State-of-the-art smelters operate with about 350 kA. Trials have been reported with 500 kA cells.
43615
43616 Electric power represents about 20 to 40% of the cost of producing aluminium, depending on the location of the aluminium smelter. Smelters tend to be located where electric power is plentiful and inexpensive, such as [[South Africa]], the [[South Island]] of [[New Zealand]], [[Australia]], [[China]], [[Middle-East]], [[Russia]], [[Iceland]] and [[Quebec]] in [[Canada]].
43617
43618 In 2004, [[China]] was the top world producer of aluminium. [[Suriname]] depends on aluminium exports for 70% of its export earnings.[http://www.cia.gov/cia/publications/factbook/geos/ns.html#Econ]
43619 ; see also [[:category:Aluminium minerals]]
43620
43621 ==Isotopes==
43622 Aluminium has nine [[isotope]]s, whose mass numbers range from 23 to 30. Only &lt;sup&gt;27&lt;/sup&gt;Al ([[stable isotope]]) and &lt;sup&gt;26&lt;/sup&gt;Al ([[radioactive_decay|radioactive]] isotope, [[half life|''t''&lt;sub&gt;1/2&lt;/sub&gt;]] = 7.2 &amp;times; 10&lt;sup&gt;5&lt;/sup&gt; [[year|y]]) occur naturally, however &lt;sup&gt;27&lt;/sup&gt;Al has a natural abundance of 100%. &lt;sup&gt;26&lt;/sup&gt;Al is produced from [[argon]] in the [[Earth's atmosphere|atmosphere]] by [[spallation]] caused by [[cosmic-ray]] [[proton]]s. Aluminium isotopes have found practical application in dating [[ocean|marine]] sediments, [[manganese]] nodules, glacial ice, [[quartz]] in [[Rock (geology)|rock]] exposures, and [[meteorite]]s. The ratio of &lt;sup&gt;26&lt;/sup&gt;Al to &lt;sup&gt;10&lt;/sup&gt;[[beryllium|Be]] has been used to study the role of transport, deposition, [[sediment]] storage, burial times, and erosion on 10&lt;sup&gt;5&lt;/sup&gt; to 10&lt;sup&gt;6&lt;/sup&gt; year time scales.
43623
43624 [[Cosmogenic]] &lt;sup&gt;26&lt;/sup&gt;Al was first applied in studies of the [[Moon]] and meteorites. Meteorite fragments, after departure from their parent bodies, are exposed to intense cosmic-ray bombardment during their travel through space, causing substantial &lt;sup&gt;26&lt;/sup&gt;Al production. After falling to Earth, atmospheric shielding protects the meteorite fragments from further &lt;sup&gt;26&lt;/sup&gt;Al production, and its decay can then be used to determine the meteorite's terrestrial age. Meteorite research has also shown that &lt;sup&gt;26&lt;/sup&gt;Al was relatively abundant at the time of formation of our planetary system. Possibly, the energy released by the decay of &lt;sup&gt;26&lt;/sup&gt;Al was responsible for the remelting and [[planetary differentiation|differentiation]] of some [[asteroids]] after their formation 4.6 billion years ago.
43625
43626 ===Clusters===
43627 In the journal ''[[Science (journal)|Science]]'' of [[14 January]] [[2005]] it was reported that clusters of 13 aluminium atoms (Al&lt;sub&gt;13&lt;/sub&gt;) had been made to behave like an [[iodine]] atom; and, 14 aluminium atoms (Al&lt;sub&gt;14&lt;/sub&gt;) behaved like an [[alkaline earth]] atom. The researchers also bound 12 iodine atoms to an Al&lt;sub&gt;13&lt;/sub&gt; cluster to form a new class of polyiodide. This discovery is reported to give rise to the possibility of a new characterisation of the [[periodic table]]: [[superatom]]s. The research teams were led by Shiv N. Khanna ([[Virginia Commonwealth University]]) and A. Welford Castleman Jr ([[Penn State University]]). [http://www.science.psu.edu/alert/Castleman1-2005.htm]
43628
43629 ==Precautions==
43630 Aluminium is one of the few abundant elements that appears to have no beneficial function in living cells, but a few percent of people are allergic to it &amp;mdash; they experience [[contact dermatitis]] from any form of it: an itchy [[rash]] from using [[styptic]] or antiperspirant products, digestive disorders and inability to absorb nutrients from eating food cooked in aluminium pans, and vomiting and other symptoms of poisoning from ingesting such products as [[Rolaids]] , Amphojel, and [[Maalox]] ([[antacid]]s). In other people, aluminium is not considered as toxic as heavy metals, but there is evidence of some toxicity if it is consumed in excessive amounts, although the use of aluminium cookware, popular because of its corrosion resistance and good [[heat conduction]], has not been shown to lead to aluminium toxicity in general. Excessive consumption of [[antacid]]s containing aluminium compounds and excessive use of aluminium-containing [[antiperspirant]]s are more likely causes of [[toxicity]]. It has been suggested that aluminium may be linked to [[Alzheimer's disease]], although that research has recently been refuted; aluminium accumulation may be a consequence of the Alzheimer's damage, not the cause. In any event, if there is any toxicity of aluminium it must be via a very specific mechanism, since total human exposure to the element in the form of naturally occurring clay in soil and dust is enormously large over a lifetime.
43631
43632 Care must be taken to prevent aluminium from coming into contact with certain chemicals that can cause it to [[corrode]] quickly. For example, just a small amount of [[Mercury (element)|mercury]] applied to the surface of a piece of aluminium can break up the aluminium oxide barrier usually present. Within a few hours, even a heavy structural beam can be significantly weakened. For this reason, mercury [[thermometer]]s are not allowed on many [[airliner]]s, as aluminium is a common structural component in aircraft.
43633
43634 ==Spelling==
43635 ===Etymology/Nomenclature history===
43636 In [[1808]], [[Humphry Davy]] originally proposed the name ''alumium'' while trying to isolate the new metal electrolytically from the mineral ''[[alumina]]''. In [[1812]] he changed the name to ''aluminum'' to match its [[Latin]] root. The same year, an anonymous contributor to the ''Quarterly Review'' objected to ''aluminum'', and proposed the name ''aluminium''.
43637 &lt;blockquote&gt;
43638 Aluminium, for so we shall take the liberty of writing the word, in preference to aluminum, which has a less classical sound. (Q. Review VIII. 72, 1812)
43639 &lt;/blockquote&gt;
43640 This had the advantage of conforming to the -ium suffix precedent set by other newly discovered elements of the period: [[potassium]], [[sodium]], [[magnesium]], [[calcium]], and [[strontium]] (all of which Davy had isolated himself). Nevertheless, -um spellings for elements were not unknown at the time: [[platinum]], which had been known to Europeans since the 16th century, [[molybdenum]], which was discovered in 1778, and [[tantalum]], which was discovered in 1802, all have spellings ending in -um.
43641
43642 The United States adopted the -ium for most of the [[19th century]] with ''aluminium'' appearing in [[Noah Webster|Webster]]'s Dictionary of 1828. However in 1892 [[Charles Martin Hall]] used the -um spelling in an advertising handbill for his new efficient electrolytic method for the production of aluminium, despite using the -ium spelling in all of his patents filed between 1886 and 1903. It has consequently been suggested that the spelling on the flyer was a simple spelling mistake rather than a deliberate choice to use the -um spelling. Hall's domination of production of the metal ensured that the spelling ''aluminum'' became the standard in North America, even though the ''Webster Unabridged Dictionary'' of 1913 continued to use the -ium version.
43643
43644 In 1926, the [[American Chemical Society]] officially decided to use ''aluminum'' in its publications, and American dictionaries typically label the spelling ''aluminium'' as a British variant.
43645
43646 ===Present-day spelling===
43647 In the English-speaking world, the spellings (and associated pronunciations) ''aluminium'' and ''aluminum'' are both in common use in scientific and nonscientific contexts. In the United States, the spelling ''aluminium'' is largely unknown, and the spelling ''aluminum'' predominates. Elsewhere in the English-speaking world the spelling ''aluminium'' predominates, and the spelling ''aluminum'' is largely unknown. However, in Canada both spellings are common, due to the multiple influences on the language of its proximity to the United States, its British colonial past and the large number of native French speakers.
43648
43649 Outside English, the &quot;ium&quot; spelling is widespread: the word is ''aluminium'' in [[French language|French]], ''Aluminium'' in [[German language|German]], and identical or similar forms are used in many other languages. Consequently it is the more common of the two spellings in global terms, even though there may be more users of ''aluminum'' in the English-speaking world.
43650
43651 The [[International Union of Pure and Applied Chemistry]] (IUPAC) adopted ''aluminium'' as the standard international name for the element in 1990, but three years later recognised ''aluminum'' as an acceptable variant. Hence their periodic table includes both, but places aluminium first [http://www.iupac.org/reports/periodic_table/index.html]. IUPAC officially prefers the use of aluminium in its internal publications, although several IUPAC publications use the spelling ''aluminum.''[http://www.iupac.org/cgi-bin/htsearch?sort=score&amp;restrict=www.iupac.org%2Fpublications%2Fci&amp;config=htdig&amp;restrict=&amp;exclude=www.iupac.org%2Fgoldbook%2F&amp;words=aluminum&amp;submit=]
43652
43653 ==Chemistry==
43654 ===Oxidation state 1===
43655 *AlH is produced when aluminium is heated at 1500 °C in an atmosphere of [[hydrogen]].
43656 *Al&lt;sub&gt;2&lt;/sub&gt;O is made by heating the normal oxide, Al&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;, with [[silicon]] at 1800 °C in a [[vacuum]].
43657 *Al&lt;sub&gt;2&lt;/sub&gt;S can be made by heating Al&lt;sub&gt;2&lt;/sub&gt;S&lt;sub&gt;3&lt;/sub&gt; with aluminium shavings at 1300 °C in a vacuum. It quickly disproportionates to the starting materials. The selenide is made in a parallel manner.
43658 *AlF, AlCl and AlBr exist in the gaseous phase when the tri-halide is heated with aluminium.
43659
43660 ===Oxidation state 2===
43661 *Aluminium suboxide, AlO can be shown to be present when aluminium powder burns in oxygen.
43662
43663 ===Oxidation state 3===
43664 *[[Fajans rules]] show that the simple trivalent cation Al&lt;sup&gt;3+&lt;/sup&gt; is not expected to be found in anhydrous salts or binary compounds such as Al&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;. The hydroxide is a weak base and aluminium salts of weak bases, such as carbonate, can't be prepared. The salts of strong acids, such as nitrate, are stable and soluble in water, forming hydrates with at least six molecules of [[water of crystallization]].
43665 *Aluminium hydride, (AlH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;n&lt;/sub&gt;, can be produced from [[trimethylaluminium]] and an excess of hydrogen. It burns explosively in air. It can also be prepared by the action of [[aluminium chloride]] on lithium hydride in ether solution, but cannot be isolated free from the solvent.
43666 *Aluminium carbide, Al&lt;sub&gt;4&lt;/sub&gt;C&lt;sub&gt;3&lt;/sub&gt; is made by heating a mixture of the elements above 1000 °C. The pale yellow crystals have a complex lattice structure, and react with water or dilute acids to give [[methane]]. The acetylide, Al&lt;sub&gt;2&lt;/sub&gt;(C&lt;sub&gt;2&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt;, is made by passing [[acetylene]] over heated aluminium.
43667 *Aluminium nitride, AlN, can be made from the elements at 800 °C. It is hydrolysed by water to form [[ammonia]] and aluminium hydroxide.
43668 *Aluminium phosphide, AlP, is made similarly, and hydrolyses to give [[phosphine]].
43669 *Aluminium oxide, Al&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;3&lt;/sub&gt;, occurs naturally as [[corundum]], and can be made by burning aluminium in oxygen or by heating the hydroxide, nitrate or sulfate. As a [[gemstone]], its hardness is only exceeded by [[diamond]], [[boron nitride]] and [[carborundum]]. It is almost insoluble in water.
43670 *Aluminium hydroxide may be prepared as a gelatinous precipitate by adding ammonia to an aqueous solution of an aluminium salt. It is [[amphoteric]], being both a very weak acid, and forming aluminates with [[alkali]]s. It exists in various crystalline forms.
43671 *Aluminium sulfide, Al&lt;sub&gt;2&lt;/sub&gt;S&lt;sub&gt;3&lt;/sub&gt;, may be prepared by passing [[hydrogen sulfide]] over aluminium powder. It is [[polymorphic]].
43672 *Aluminium fluoride, AlF&lt;sub&gt;3&lt;/sub&gt;, is made by treating the hydroxide with HF, or can be made from the elements. It consists of a giant molecule which sublimes without melting at 1291 °C. It is very inert. The other trihalides are dimeric, having a bridge-like structure.
43673 *Organo-metallic compounds of empirical formula AlR&lt;sub&gt;3&lt;/sub&gt; exist and, if not also giant molecules, are at least [[dimer]]s or trimers. They have some uses in [[organic synthesis]], for instance [[trimethylaluminium]].
43674 *Alumino-hydrides of the most electropositive elements are known, the most useful being [[lithium aluminium hydride]], Li[AlH&lt;sub&gt;4&lt;/sub&gt;]. It decomposes into lithium hydride, aluminium and hydrogen when heated, and is hydrolysed by water. It has many uses in organic chemistry, particularly as a reducing agent. The aluminohalides have a similar structure.
43675
43676 ==Aluminium in popular culture==
43677 * In the film ''[[Star Trek IV: The Voyage Home]]'', [[Montgomery Scott|Scotty]] devises the fictional material [[transparent aluminum]].
43678
43679 ==See also==
43680 * [[List of alloys#Alloys of aluminium|Alloys of aluminium]].
43681
43682 ==References==
43683 &lt;references/&gt;
43684 *[http://periodic.lanl.gov/elements/13.html Los Alamos National Laboratory &amp;ndash; Aluminum]
43685 *[http://www.worldwidewords.org/articles/aluminium.htm World Wide Words] A history of the spelling of aluminium from a British viewpoint.
43686 *[[Oxford English Dictionary]] Entries &quot;aluminum&quot; and &quot;aluminium&quot;, available by subscription. [http://www.oed.com]
43687
43688 ==External links==
43689 {{Commons|Aluminium}}
43690 *[http://www.webelements.com/webelements/elements/text/Al/index.html WebElements.com &amp;ndash; Aluminium]
43691 *[http://www.world-aluminium.org/ World Aluminium]
43692 *[http://www.indexmundi.com/en/commodities/minerals/aluminum/aluminum_table12.html World production of primary aluminum, by country]
43693 *[http://www.saanet.org/kashipur/docs/seenalum.htm Social and Environmental Impact of the Aluminium Industry]
43694 *[http://sam.davyson.com/as/physics/aluminium/normal/redirect.html Sam's Aluminium Information Site]
43695 *[http://www.world-aluminium.org/history/index.html History of Aluminium]
43696
43697 '''Patents'''
43698 *US[http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PALL&amp;p=1&amp;u=/netahtml/srchnum.htm&amp;r=1&amp;f=G&amp;l=50&amp;s1=400664.WKU.&amp;OS=PN/400664&amp;RS=PN/400664 400664] – ''Process of reducing aluminum from its floride salts by electrolysis'' – C. M. Hall
43699
43700 [[Category:Chemical elements]]
43701 [[Category:Poor metals]]
43702 [[Category:Inorganic pigments]]
43703 [[Category:Pyrotechnic chemicals]]
43704 [[Category:Rocket fuels]]
43705 [[Category:Structural engineering]]
43706 {{Link FA|fr}}
43707
43708 [[af:Aluminium]]
43709 [[ar:ØŖŲ„Ų…Ų†ŲŠŲˆŲ…]]
43710 [[bs:Aluminijum]]
43711 [[ca:Alumini]]
43712 [[cs:Hliník]]
43713 [[cy:Alwminiwm]]
43714 [[da:Aluminium]]
43715 [[de:Aluminium]]
43716 [[et:Alumiinium]]
43717 [[es:Aluminio]]
43718 [[eo:Aluminio]]
43719 [[fr:Aluminium]]
43720 [[gd:Alman]]
43721 [[gl:Aluminio (elemento)]]
43722 [[ko:ė•ŒëŖ¨ë¯¸ëŠ„]]
43723 [[hr:Aluminij]]
43724 [[io:Aluminio]]
43725 [[id:Aluminium]]
43726 [[is:Ál]]
43727 [[it:Alluminio]]
43728 [[he:אלומיניום]]
43729 [[ku:BafÃģn]]
43730 [[la:Aluminium]]
43731 [[lv:AlumÄĢnijs]]
43732 [[lt:Aliuminis]]
43733 [[lb:Aluminium]]
43734 [[hu:Alumínium]]
43735 [[mi:Konumohe]]
43736 [[nl:Aluminium]]
43737 [[ja:ã‚ĸãƒĢミニã‚Ļム]]
43738 [[no:Aluminium]]
43739 [[nn:Aluminium]]
43740 [[pl:Glin]]
43741 [[pt:Alumínio]]
43742 [[ru:АĐģŅŽĐŧиĐŊиК]]
43743 [[simple:Aluminium]]
43744 [[sl:Aluminij]]
43745 [[sr:АĐģŅƒĐŧиĐŊиŅ˜ŅƒĐŧ]]
43746 [[fi:Alumiini]]
43747 [[sv:Aluminium]]
43748 [[th:ā¸­ā¸°ā¸Ĩā¸šā¸Ąā¸´āš€ā¸™ā¸ĩā¸ĸā¸Ą]]
43749 [[vi:Nhôm]]
43750 [[uk:АĐģŅŽĐŧŅ–ĐŊŅ–Đš]]
43751 [[zh:铝]]</text>
43752 </revision>
43753 </page>
43754 <page>
43755 <title>Advanced Chemistry</title>
43756 <id>905</id>
43757 <revision>
43758 <id>40787499</id>
43759 <timestamp>2006-02-23T00:40:33Z</timestamp>
43760 <contributor>
43761 <username>Bobby1011</username>
43762 <id>278977</id>
43763 </contributor>
43764 <comment>Discography added.</comment>
43765 <text xml:space="preserve">'''Advanced Chemistry''' are a German [[hip hop music|hip hop]] [[band (music)|band]] from Heidelberg. Members include [[Toni L]], [[Linguist (rapper)|Linguist]], [[Torch (rapper)|Torch]]; affiliated: [[Boulevard Bou]].
43766
43767 ==Discography==
43768
43769 * [[1992]] - Fremd im eigenen Land (12&quot;/MCD, MZEE)
43770 * [[1993]] - Welcher Pfad fÃŧhrt zur Geschichte (12&quot;/MCD, MZEE)
43771 * [[1994]] - Operation § 3 (12&quot;/MCD)
43772 * [[1994]] - Dir fehlt der Funk! (12&quot;/MCD)
43773 * [[1995]] - Advanced Chemistry (2xLP/CD)
43774
43775 {{Germany-band-stub}}
43776
43777 [[Category:Hip hop groups]]
43778 [[Category:German musical groups]]
43779
43780 [[als:Advanced Chemistry]]
43781 [[de:Advanced Chemistry]]</text>
43782 </revision>
43783 </page>
43784 <page>
43785 <title>Abdication</title>
43786 <id>906</id>
43787 <revision>
43788 <id>39146722</id>
43789 <timestamp>2006-02-11T00:34:19Z</timestamp>
43790 <contributor>
43791 <username>Tokle</username>
43792 <id>199106</id>
43793 </contributor>
43794 <minor />
43795 <comment>+no</comment>
43796 <text xml:space="preserve">{{Wiktionary|abdication}}
43797
43798 '''Abdication''' (from the [[Latin]] ''abdicatio'', disowning, renouncing, from ''ab'', from, and ''dicare'', to declare, to proclaim as not belonging to one) is the act of renouncing and resigning from a formal office, especially from the supreme office of [[state]]. (In [[Roman law]] the term was also applied to the disowning of a family member, as the disinheriting of a son.) A similar term for an elected or appointed official is [[resignation]].
43799
43800 ==Abdications in Classical Antiquity==
43801 Among the most memorable abdications of antiquity were those of [[Lucius Cornelius Sulla]] the [[Roman Dictator|Dictator]] in [[79 BC]], [[Roman Emperor|Emperor]] [[Diocletian]] in [[305|AD 305]], and Emperor [[Romulus Augustus]] in [[476|AD 476]].
43802
43803 ==The British Crown==
43804 Probably the most famous abdication in recent memory is that of King [[Edward VIII of the United Kingdom]] in [[1936]]. Edward abdicated the British throne in order to marry American divorcÊe [[Wallis Simpson]], over the objections of the British establishment, the governments of the [[Commonwealth]], the royal family and the [[Church of England]]. (''See'' [[Abdication Crisis of Edward VIII]].) This was also the first time in history that the British crown was surrendered entirely voluntarily. [[Richard II of England]], for example, was forced to abdicate after the throne was seized by his cousin, Henry Bolingbroke, while Richard was out of the country.
43805
43806 When [[James II of England]], after throwing the [[Great Seal of the Realm]] into the [[Thames]], fled to [[France]] in [[1688]], he did not formally resign the crown, and the question was discussed in Parliament whether he had forfeited the throne or had abdicated. The latter designation was agreed upon, for in a full assembly of the Lords and Commons, met in convention, it was resolved in spite of James's protest &quot;''that King James II having endeavoured to subvert the constitution of the kingdom, by breaking the original contract between king and people, and, by the advice of [[Jesuits]] and other wicked persons, having violated the fundamental laws, and having withdrawn himself out of this kingdom, has abdicated the government, and that the throne is thereby vacant.''&quot; The [[Scottish parliament]] pronounced a decree of [[forfeiture]] and [[deposition]].
43807
43808 Because the title to the Crown depends upon [[statute]], particularly the [[Act of Settlement 1701]], a Royal Abdication can only be effected by an [[Act of Parliament]]. To give legal effect to the abdication of King [[Edward VIII of the United Kingdom]], His Majesty's Declaration of Abdication Act 1936 was passed.
43809
43810 ==Modern abdications==
43811 Historically, if a monarch abdicated it was seen as a profound and shocking abandonment of royal duty. As a result, abdications usually only occurred in the most extreme circumstances of political turmoil or violence. This has changed in a small number of countries: the monarchs of the [[Netherlands]], [[Luxembourg]] and [[Cambodia]] have abdicated as a result of old age. Prince [[Hans-Adam II of Liechtenstein]] recently made his son [[regent]], an act which amounted to an abdication in fact if not in law.
43812
43813 ==List==
43814 The following is a list of the important abdications:
43815 {| border=&quot;0&quot; cellpadding=&quot;0&quot;
43816 |-
43817 | align=&quot;left&quot; | [[Lucius Cornelius Sulla]]
43818 | align=&quot;right&quot; | [[79 BC]]
43819 |-
43820 | align=&quot;left&quot; | [[Diocletian]] || align=&quot;right&quot; | [[305|AD 305]]
43821 |-
43822 | align=&quot;left&quot; | [[Pope Benedict IX]]
43823 | align=&quot;right&quot; | 1048
43824 |-
43825 | align=&quot;left&quot; | [[Isaac I Comnenus]] || align=&quot;right&quot; | 1059
43826 |-
43827 | align=&quot;left&quot; | [[Emperor Huizong of Song China]]
43828 | align=&quot;right&quot; | [[January 18]], [[1126]]
43829 |-
43830 | align=&quot;left&quot; | [[Stephen II of Hungary]]
43831 | align=&quot;right&quot; | 1131
43832 |-
43833 | align=&quot;left&quot; | [[Albert I of Brandenburg]]
43834 | align=&quot;right&quot; | 1169
43835 |-
43836 | align=&quot;left&quot; | [[Ladislaus III]] of [[Poland]]
43837 | align=&quot;right&quot; | 1206
43838 |-
43839 | align=&quot;left&quot; | [[Pope Celestine V]]
43840 | align=&quot;right&quot; | [[December 13]], [[1294]]
43841 |-
43842 | align=&quot;left&quot; | [[John Baliol of Scotland]]
43843 | align=&quot;right&quot; | 1296
43844 |-
43845 | align=&quot;left&quot; | [[John Cantacuzene]], emperor of the East
43846 | align=&quot;right&quot; | 1355
43847 |-
43848 | align=&quot;left&quot; | [[Richard II of England]]
43849 | align=&quot;right&quot; | [[September 29]], [[1399]]
43850 |-
43851 | align=&quot;left&quot; | [[Antipope John XXIII|Baldassare Cossa, Antipope John XXIII]]
43852 | align=&quot;right&quot; | 1415
43853 |-
43854 | align=&quot;left&quot; | [[Eric VII of Denmark|Eric VII of Denmark or Erik XIII of Sweden]]
43855 | align=&quot;right&quot; | 1439
43856 |-
43857 | align=&quot;left&quot; | [[Amadeus VIII of Savoy]]
43858 | align=&quot;right&quot; | 1440
43859 |-
43860 | align=&quot;left&quot; | [[Murad II]], [[Ottoman Empire|Ottoman]] Sultan
43861 | align=&quot;right&quot; | 1444 and 1445
43862 |-
43863 | align=&quot;left&quot; | [[Charles V, Holy Roman Emperor]] &lt;sup&gt;[[#Notes|1]]&lt;/sup&gt;
43864 | align=&quot;right&quot; | 1555-[[1556]]
43865 |-
43866 | align=&quot;left&quot; | [[Christina of Sweden]]
43867 | align=&quot;right&quot; | [[June 6]], [[1654]]
43868 |-
43869 | align=&quot;left&quot; | [[Mary I of Scotland|Mary Queen of Scots]]
43870 | align=&quot;right&quot; | [[July 24]], [[1567]]
43871 |-
43872 | align=&quot;left&quot; | [[John II of Poland|John Casimir of Poland]]
43873 | align=&quot;right&quot; | 1668
43874 |-
43875 | align=&quot;left&quot; | [[James II of England]]
43876 | align=&quot;right&quot; | 1688
43877 |-
43878 | align=&quot;left&quot; | [[Frederick Augustus I of Poland|Frederick Augustus of Poland]]
43879 | align=&quot;right&quot; | 1706
43880 |-
43881 | align=&quot;left&quot; | [[Philip V of Spain]]
43882 | align=&quot;right&quot; | 1724
43883 |-
43884 | align=&quot;left&quot; | [[Victor Amadeus II of Savoy|Victor Amadeus]] of [[Sardinia]]
43885 | align=&quot;right&quot; | 1730
43886 |-
43887 | align=&quot;left&quot; | Ahmed III, Ottoman Sultan
43888 | align=&quot;right&quot; | 1730
43889 |-
43890 | align=&quot;left&quot; | Charles of Naples (on accession to throne of Spain)
43891 | align=&quot;right&quot; | 1759
43892 |-
43893 | align=&quot;left&quot; | [[Stanislaus II of Poland]]
43894 | align=&quot;right&quot; | 1795
43895 |-
43896 | align=&quot;left&quot; | [[Qianlong Emperor of China]]
43897 | align=&quot;right&quot; | [[February 9]], [[1796]]
43898 |-
43899 | align=&quot;left&quot; | [[Charles Emmanuel IV of Savoy|Charles Emanuel IV]] of [[Sardinia]]
43900 | align=&quot;right&quot; | [[June 4]], [[1802]]
43901 |-
43902 | align=&quot;left&quot; | [[Charles IV of Spain]]
43903 | align=&quot;right&quot; | [[March 19]], [[1808]]
43904 |-
43905 | align=&quot;left&quot; | Joseph Bonaparte of Naples
43906 | align=&quot;right&quot; | [[June 6]], [[1808]]
43907 |-
43908 | align=&quot;left&quot; | [[Gustav IV of Sweden]]
43909 | align=&quot;right&quot; | [[March 29]], [[1809]]
43910 |-
43911 | align=&quot;left&quot; | Louis Bonaparte of [[Kingdom of Holland|Holland]]
43912 | align=&quot;right&quot; | [[July 2]], [[1810]]
43913 |-
43914 | align=&quot;left&quot; | [[Napoleon I of France|Napoleon I, French Emperor]]
43915 | align=&quot;right&quot; | [[April 4]], [[1814]], and [[June 22]], [[1815]]
43916 |-
43917 | align=&quot;left&quot; | [[Victor Emmanuel I of Savoy|Victor Emanuel]] of [[Sardinia]]
43918 | align=&quot;right&quot; | [[March 13]], [[1821]]
43919 |-
43920 | align=&quot;left&quot; | [[Charles X of France]]
43921 | align=&quot;right&quot; | [[August 2]], [[1830]]
43922 |-
43923 | align=&quot;left&quot; | [[Peter IV of Portugal|Pedro IV of Portugal]] &lt;sup&gt;[[#Notes|2]]&lt;/sup&gt;
43924 | align=&quot;right&quot; | [[May 28]], [[1826]]
43925 |-
43926 | align=&quot;left&quot; | [[Peter I of Brazil|Pedro I of Brazil]] &lt;sup&gt;[[#Notes|2]]&lt;/sup&gt;
43927 | align=&quot;right&quot; | [[April 7]], [[1831]]
43928 |-
43929 | align=&quot;left&quot; | [[Miguel of Portugal]]
43930 | align=&quot;right&quot; | [[May 26]], [[1834]]
43931 |-
43932 | align=&quot;left&quot; | [[William I of the Netherlands|William I]] of the [[Netherlands]]
43933 | align=&quot;right&quot; | [[October 7]], [[1840]]
43934 |-
43935 | align=&quot;left&quot; | [[Louis-Philippe of France|Louis Philippe, King of the French]]
43936 | align=&quot;right&quot; | [[February 24]], [[1848]]
43937 |-
43938 | align=&quot;left&quot; | [[Ludwig I of Bavaria|Louis Charles of Bavaria]]
43939 | align=&quot;right&quot; | [[March 21]], [[1848]]
43940 |-
43941 | align=&quot;left&quot; | [[Ferdinand I of Austria|Ferdinand of Austria]]
43942 | align=&quot;right&quot; | [[December 2]], [[1848]]
43943 |-
43944 | align=&quot;left&quot; | [[Charles Albert of Savoy|Charles Albert]] of [[Sardinia]]
43945 | align=&quot;right&quot; | [[March 23]], [[1849]]
43946 |-
43947 | align=&quot;left&quot; | Leopold II of [[Tuscany]]
43948 | align=&quot;right&quot; | [[July 21]], [[1859]]
43949 |-
43950 | align=&quot;left&quot; | [[Isabella II of Spain]]
43951 | align=&quot;right&quot; | [[June 25]], [[1870]]
43952 |-
43953 | align=&quot;left&quot; | [[Amadeus I of Spain]]
43954 | align=&quot;right&quot; | [[February 11]], [[1873]]
43955 |-
43956 | align=&quot;left&quot; | [[Alexander of Bulgaria]]
43957 | align=&quot;right&quot; | [[September 7]], [[1886]]
43958 |-
43959 | align=&quot;left&quot; | [[Milan II of Serbia|Milan of Serbia]]
43960 | align=&quot;right&quot; | [[March 6]], [[1889]]
43961 |-
43962 | align=&quot;left&quot; | [[Liliuokalani|Lili{{okina}}uokalani of Hawai{{okina}}i]]
43963 | align=&quot;right&quot; | [[January 17]], [[1893]] (monarchy abolished)
43964 |-
43965 | align=&quot;left&quot; | [[Ai-xin-jue-luo Pu-yi|Xuantong Emperor of China]]
43966 | align=&quot;right&quot; | [[February 12]], [[1912]] (monarchy abolished)
43967 |-
43968 | align=&quot;left&quot; | [[Nicholas II of Russia]]
43969 | align=&quot;right&quot; | [[March 15]], [[1917]] (monarchy abolished)
43970 |-
43971 | align=&quot;left&quot; | [[Wilhelm II of Germany]]
43972 | align=&quot;right&quot; | [[November 9]], [[1918]] (monarchy abolished)
43973 |-
43974 | align=&quot;left&quot; | [[Prajadhipok|Prajadhipok of Siam]]
43975 | align=&quot;right&quot; | [[March 2]], [[1935]]
43976 |-
43977 | align=&quot;left&quot; | [[Edward VIII of the United Kingdom]]
43978 | align=&quot;right&quot; | [[December 11]], [[1936]]
43979 |-
43980 | align=&quot;left&quot; | [[Carol II of Romania]]
43981 | align=&quot;right&quot; | [[September 6]], [[1940]]
43982 |-
43983 | align=&quot;left&quot; | [[Victor Emmanuel III of Italy]]
43984 | align=&quot;right&quot; | [[May 9]], [[1946]]
43985 |-
43986 | align=&quot;left&quot; | [[Wilhelmina of the Netherlands]]
43987 | align=&quot;right&quot; | [[September 4]], [[1948]]
43988 |-
43989 | align=&quot;left&quot; | [[LÊopold III of Belgium|LÊopold III, King of the Belgians]]
43990 | align=&quot;right&quot; | [[July 16]], [[1951]]
43991 |-
43992 | align=&quot;left&quot; | [[Farouk I of Egypt]]
43993 | align=&quot;right&quot; | [[July 26]], [[1952]]
43994 |-
43995 | align=&quot;left&quot; | [[Fuad II of Egypt]]
43996 | align=&quot;right&quot; | [[June 18]], [[1953]] (Monarchy abolished)
43997 |-
43998 | align=&quot;left&quot; | [[Juliana of the Netherlands]]
43999 | align=&quot;right&quot; | [[April 30]], [[1980]]
44000 |-
44001 | align=&quot;left&quot; | [[Jean of Luxembourg]]
44002 | align=&quot;right&quot; | [[October 7]], [[2000]]
44003 |-
44004 | align=&quot;left&quot; | [[Hans-Adam II of Liechtenstein]]&lt;sup&gt;[[#Notes|3]]&lt;/sup&gt;
44005 | align-&quot;right&quot; | [[August 15]], [[2004]] (Made his son regent)
44006 |-
44007 | align=&quot;left&quot; | [[Norodom Sihanouk]] of [[Cambodia]]
44008 | align=&quot;right&quot; | [[October 7]], [[2004]]
44009 |-
44010 | align=&quot;left&quot; | [[Saad Al-Abdullah Al-Salim Al-Sabah]] of [[Kuwait]]
44011 | align=&quot;right&quot; | [[January 23]], [[2006]]
44012 |}
44013
44014 ==Notes==
44015 &lt;sup&gt;1&lt;/sup&gt;Charles abdicated as lord of the [[Netherlands]] ([[October 25]], [[1555]]) and king of [[Spain]] ([[January 16]], [[1556]]), in favor of his son [[Philip II of Spain]]. Also in 1556 he separately voluntarily abdicated his German possessions and the title of [[Holy Roman Emperor]].&lt;br /&gt;
44016 &lt;sup&gt;2&lt;/sup&gt;Pedro IV of Portugal and Pedro I of Brazil were the same person. He was already Emperor of Brazil when he succeeded to the throne of Portugal in 1826, but abdicated it at once in favour of his daughter [[Maria II of Portugal]]. Later he abdicated the throne of Brazil in favor of his son [[Pedro II of Brazil|Pedro II]]. &lt;br /&gt;
44017 &lt;sup&gt;3&lt;/sup&gt;Hans-Adam II made his son [[Alois of Liechtenstein|Alois]] regent, effectively abdicating; however, he still remains the formal Head of State.
44018
44019 ==See also==
44020 {{Wikisource1911Enc|Abdication}}
44021 *[[Lists of incumbents]]
44022 *[[List of monarchs who lost their thrones or abdicated in the 20th century]]
44023 *[[Papal abdication]]
44024 *[[The Great Abdication]]
44025
44026 ==References==
44027 * Public domain 1911 edition of ''The New Century Book of Facts'' published by the King-Richardson Company, Springfield, Massachusetts.
44028
44029 [[Category:Monarchy]]
44030
44031 [[bg:АйдиĐēĐ°Ņ†Đ¸Ņ]]
44032 [[de:Abdikation]]
44033 [[eo:Abdiko]]
44034 [[es:AbdicaciÃŗn]]
44035 [[fr:Abdication]]
44036 [[hr:Abdikacija]]
44037 [[nl:Abdicatie]]
44038 [[no:Abdikasjon]]
44039 [[pl:Abdykacja]]
44040 [[ru:АйдиĐēĐ°Ņ†Đ¸Ņ]]
44041 [[sv:Abdikation]]</text>
44042 </revision>
44043 </page>
44044 <page>
44045 <title>Awk</title>
44046 <id>907</id>
44047 <revision>
44048 <id>15899420</id>
44049 <timestamp>2002-11-04T17:01:04Z</timestamp>
44050 <contributor>
44051 <username>Malcolm Farmer</username>
44052 <id>135</id>
44053 </contributor>
44054 <minor />
44055 <text xml:space="preserve">#REDIRECT [[AWK programming language]]</text>
44056 </revision>
44057 </page>
44058 <page>
44059 <title>AgoraNomic</title>
44060 <id>908</id>
44061 <revision>
44062 <id>15899421</id>
44063 <timestamp>2003-06-08T23:53:32Z</timestamp>
44064 <contributor>
44065 <username>Eloquence</username>
44066 <id>52</id>
44067 </contributor>
44068 <minor />
44069 <text xml:space="preserve">#REDIRECT [[Nomic]]</text>
44070 </revision>
44071 </page>
44072 <page>
44073 <title>Anglican Communion</title>
44074 <id>909</id>
44075 <revision>
44076 <id>41933843</id>
44077 <timestamp>2006-03-02T18:53:26Z</timestamp>
44078 <contributor>
44079 <username>Batmanand</username>
44080 <id>131948</id>
44081 </contributor>
44082 <comment>/* What holds the Communion together? */ removed &quot;- -&quot;</comment>
44083 <text xml:space="preserve">[[Image:CompassRose.gif|thumb|The Anglican Communion uses the [[compass rose]] as its symbol, signifying its worldwide reach and decentralized nature. It is surmounted, like ecclesiastical coats of arms, by a bishop's [[mitre]]; in the center is a [[St. George's cross | cross of St. George]] recalling the communion's origins in the [[Church of England]]. The [[Greek language | Greek]] motto, &amp;#7977; &amp;#7936;&amp;lambda;&amp;#942;&amp;theta;&amp;epsilon;&amp;iota;&amp;alpha; &amp;#7952;&amp;lambda;&amp;epsilon;&amp;upsilon;&amp;theta;&amp;epsilon;&amp;rho;&amp;#974;&amp;sigma;&amp;epsilon;&amp;iota; &amp;#8017;&amp;mu;&amp;#8118;&amp;sigmaf; (&quot;The truth will set you free&quot;) is a quotation from [[Gospel of John|John]] 8:32.]]
44084
44085 The '''Anglican Communion''' is a world-wide organisation of [[Anglican]] Churches. There is no single &quot;Anglican Church&quot; since each national or regional church has full autonomy; as the name suggests, rather, the Anglican ''Communion'' is an association of these churches in [[full communion]] with each other and particularly with the [[Church of England]], which may be regarded as the &quot;mother church&quot; of the worldwide communion.
44086
44087 As a result, all [[rite]]s conducted in one member church are recognised by the others. Some of these churches are known as Anglican, explicitly recognising the link to England; others, such as the American and Scottish [[Episcopal Church| Episcopal]] churches, or the [[Church of Ireland]], prefer a specific name. Each church has its own [[doctrine]] and [[liturgy]], based in most cases on that of the Church of England; and each church has its own legislative process and overall episcopal leadership from a local [[primate (religion) | primate]]. The [[Archbishop of Canterbury]], religious head of the Church of England, has no formal authority outside that country; but is recognised as a symbolic head for the worldwide communion. Among the other primates, he is ''primus inter pares'', or &quot;[[first among equals]].&quot; If the Archbishop of Canterbury is compared with other religious leaders such as the [[Pope]], therefore, it is only because of his prominent figurehead role in the media. He has no formal authority outside his own province.
44088
44089 Although they are not considered members, some non-Anglican bodies have entered into communion with the Anglican Communion despite having non-Anglican origins and traditions. There are also a number of Anglican-type bodies which separated from a member church of the Anglican Communion and thus are no longer in communion with the Church of England. They tend to call themselves &quot;[[Anglican continuing churches|continuing churches]].&quot;
44090
44091 ==What holds the Communion together?==
44092 {{Anglicanism}}
44093 The Anglican Communion has no official legal existence nor any formal governing structure. (There is an &quot;[[Anglican Communion Office]]&quot; in London, under the aegis of the Archbishop of Canterbury; but it serves merely a supporting and organisational role.) Some have asked what holds the communion together.
44094
44095 The first attempt at an answer was the [[Chicago-Lambeth Quadrilateral]] of [[1888]]. Proposed by the American Episcopal Church in 1886 and adopted by the [[Lambeth Conference]] of 1888, it set out four principles for future Christian unity. Although wider union has not followed, the quadrilateral has been useful within the communion itself.
44096
44097 The quadrilateral, according to the wording adopted in Lambeth ([http://anglicansonline.org/basics/Chicago_Lambeth.html]), consists of:
44098
44099 # &quot;The Holy Scriptures of the [[Old Testament | Old]] and [[New Testament]]s, as 'containing all things necessary to salvation', and as being the rule and ultimate standard of faith.&quot;
44100 # &quot;The [[Apostles' Creed]], as the Baptismal Symbol; and the [[Nicene Creed]], as the sufficient statement of the Christian faith.&quot;
44101 # &quot;The two [[Sacrament]]s ordained by Christ Himself - Baptism and the Supper of the Lord - ministered with unfailing use of Christ's words of Institution, and of the elements ordained by Him.&quot;
44102 # &quot;The Historic [[bishop|Episcopate]], locally adapted in the methods of its administration to the varying needs of the nations and peoples called of God into the Unity of His Church.&quot;
44103
44104 This, then, is the theoretical basis for unity. But what holds it together organisationally? In the last few years people have began to refer to four &quot;Instruments of Unity&quot;, which are effectively symbols to which all the churches of the communion can feel tied. In order of antiquity, they are:
44105
44106 * The [[Archbishop of Canterbury]] (''ab origine'')
44107 * The [[Lambeth Conference]] (first held in [[1867]])
44108 * The [[Anglican Consultative Council]] (first met in [[1971]])
44109 * The [[Anglican Communion Primates' Meeting | Primates' Meeting]] (first met in [[1979]])
44110
44111 Since each province is legally independent and free to chart its own course, the stress on these instruments of unity can easily be imagined. In recent years, for example, some Anglicans (particularly in Africa and Asia) have been displeased with the American and Canadian branches, upset by their welcoming attitudes towards homosexuals, and by the confident way the changes have been made &amp;mdash; the conservatives condemned the action as unilateral and called for wider consultation within the communion before such steps were taken. After the North American churches reaffirmed their belief that their actions had been righteous and &quot;prophetic&quot;, they were asked to withdraw their delegates from the 2005 meeting of the Anglican Consultative Council, although it is not clear under whose authority or by what law. They were eventually permitted at the meeting with voice, but no vote. They have not been expelled or suspended from the ''communion''; indeed, no church ever has. It is unclear how such an expulsion could ever be carried out, since the communion is not a disciplinary entity but a spiritual construct based entirely on the New Testament concept of [[koinonia]].
44112
44113 ==Provinces of the Anglican Communion==
44114 The term &quot;province&quot; in this context refers to national churches, many of which themselves contain several provinces in the sense of groups of dioceses presided over by an archbishop. According to the Secretariat of the Anglican Communion, currently the member churches of the Anglican Communion are as follows:
44115
44116 *The [[Anglican Church in Aotearoa, New Zealand and Polynesia]]
44117 *The [[Anglican Church of Australia]]
44118 *The [[Church of Bangladesh]]
44119 *The [[Episcopal Anglican Church of Brazil]]
44120 *The [[Anglican Church of Burundi]]
44121 *The [[Anglican Church of Canada]]
44122 *The Church of the Province of Central Africa
44123 *The Anglican Church in the Central Region of America
44124 *The Church of the Province of the Congo
44125 *The [[Church of England]]
44126 *Hong Kong Sheng Kung Hui
44127 *The Church of the Province of the Indian Ocean
44128 *The [[Church of Ireland]]
44129 *The Nippon Sei Ko Kai (The Anglican Communion in Japan)
44130 *The [[Episcopal Church in Jerusalem and The Middle East]]
44131 *The [[Anglican Church of Kenya]]
44132 *The Anglican Church of Korea
44133 *The [[Church of the Province of Melanesia]]
44134 *The [[Anglican Church of Mexico]]
44135 *The Church of the Province of Myanmar (Burma)
44136 *The [[Church of Nigeria]]
44137 *The [[Church of North India]]
44138 *The [[Church of Pakistan]]
44139 *The [[Anglican Church of Papua New Guinea]]
44140 *The Episcopal Church in the Philippines
44141 *The Episcopal Church of Rwanda
44142 *The [[Scottish Episcopal Church]]
44143 *Church of the Province of South East Asia
44144 *The [[Church of South India]]
44145 *The [[Church of the Province of Southern Africa]]
44146 *The Anglican Church of the Southern Cone of the Americas
44147 *The Episcopal Church of the Sudan
44148 *The Anglican Church of Tanzania
44149 *The Church of the Province of Uganda
44150 *The [[Episcopal Church in the United States of America]]
44151 *The [[Church in Wales]]
44152 *The Church of the Province of West Africa
44153 *The Church in the Province of the West Indies
44154 *The [[Church of Ceylon]] (Extra-Provincial to the Archbishop of Canterbury)
44155 *The Episcopal Church of Cuba
44156 *Bermuda (Extra-Provincial to Canterbury)
44157 *The [[Lusitanian Catholic Apostolic Evangelical Church]] of [[Portugal]] (Extra-Provincial to the Archbishop of Canterbury)
44158 *The Reformed Episcopal Church of Spain (Extra-Provincial to the Archbishop of Canterbury)
44159 *Falkland Islands (Extra-Provincial to Canterbury)
44160
44161 ==History==
44162
44163 ''Main article: see [[History of the Anglican Communion]]''
44164
44165 The Anglican Communion is a relatively recent concept. Ever since the [[Church of England]] (which until the [[20th century]] included the [[Church in Wales]]) broke from [[Roman Catholic Church | Rome]] in the reign of [[Henry VIII of England | Henry VIII]], it has thought of itself not as a new foundation but rather as a reformed continuation of the ancient &quot;English church&quot; and a reassertion of that church's rights. As such it was a distinctly local phenomenon.
44166
44167 Thus the only members of the present Anglican Communion existing by the late 18th century were the Church of England, its closely-linked sister church, the [[Church of Ireland]] (which also broke from Rome under Henry VIII), and the [[Scottish Episcopal Church]], which for parts of the [[17th century | 17th]] and [[18th century | 18th centuries]] was partially underground (it was suspected of [[Jacobitism|Jacobite]] sympathies).
44168
44169 However, the enormous expansion in the 18th and 19th centuries of the [[British Empire]] brought the church along with it. At first all these colonial churches were under the jurisdiction of the [[Bishop of London]]. After the [[American Revolution]], the parishes in the newly independent country found it necessary to break formally from a church whose earthly head was (and remains) the [[British monarchy | British monarch]]. Thus they formed their own dioceses and national church, the [[Episcopal Church in the United States of America]], in a mostly amicable separation.
44170
44171 At about the same time, in the colonies which remained linked to the crown, the Church of England began to appoint colonial bishops. In 1787 a bishop of [[Nova Scotia]] was appointed with a jurisdiction over all of British North America; in time several more colleagues were appointed to other cities in present-day [[Canada]]. In [[1814]] a bishop of [[Calcutta]] was made; in [[1824]] the first bishop was sent to the [[West Indies]] and in [[1836]] to [[Australia]]. By 1840 there were still only ten colonial bishops for the Church of England; but even this small beginning greatly facilitated the growth of Anglicanism around the world. In [[1841]] a &quot;Colonial Bishoprics Council&quot; was set up and soon many more dioceses were created.
44172
44173 In time, it became natural to group these into provinces, and a [[metropolitan bishop | metropolitan]] appointed for each province. Although it had at first been somewhat established in many colonies, in [[1861]] it was ruled that, except where specifically established, the Church of England had just the same legal position as any other church. Thus a colonial bishop and colonial diocese was by nature quite a different thing from their counterparts back home. In time bishops came to be appointed locally rather than from England, and eventually national synods began to pass ecclesiastical legislation independent of England.
44174
44175 A crucial step in the development of the modern communion was the idea of the [[Lambeth Conferences]]. In [[1867]], at the suggestion of the Canadian [[synod]], the then Archbishop of Canterbury, [[Charles Thomas Langley]], invited a great conference of bishops to meet with him at [[Lambeth Palace]]. By inviting the bishops of the Churches of England and Ireland, those of the semi-autonomous colonial churches, and those of the fully autonomous [[Episcopal Church in the United States of America]], he set a precedent that they all could meet together despite the absence of universal legal ties. Some bishops were initially reluctant to attend, fearing that the meeting would declare itself a council with power to legislate for the church; but it agreed to pass only advisory resolutions. These Lambeth Conferences have been held decennially since 1878 (the second such conference), and remain the most visible coming-together of the whole communion.
44176
44177 ==Recent controversies==
44178 Recent disagreements over homosexuality have strained the unity of the communion as well as its relationships with other Christian denominations; see [[Anglican views of homosexuality]].
44179
44180 ==Relationship with the Roman Catholic Church==
44181 Efforts have been underway at least since 1966 to effect a reconciliation with the [[Roman Catholic Church]], focusing on theological issues [http://www.vatican.va/roman_curia/pontifical_councils/chrstuni/angl-comm-docs/rc_pc_chrstuni_doc_19660324_paul-vi-ramsey_en.html] and ways &quot;to further the convergence on authority in the Church. Without agreement in this area we shall not reach the full visible unity to which we are both committed.&quot; [http://www.vatican.va/roman_curia/pontifical_councils/chrstuni/angl-comm-docs/rc_pc_chrstuni_doc_19961205_jp-ii-carey_en.html]
44182
44183 ==See also==
44184 *[[Thirty-Nine Articles]]
44185 *[[Book of Common Prayer]]
44186 *[[Anglican Use]]
44187 *[[Anglican Communion Network]]
44188 *[[Affirming Catholicism]]
44189 *[[Sydney Anglicans]]
44190
44191 ==External links==
44192 *[http://www.anglicancommunion.org/ Official website]
44193 *[http://anglican.org/church/NoCentral.html Decentralised nature of worldwide Anglicanism]
44194 *[http://www.gshep.org/information/vocabulary.htm Comprehensive Anglican vocabulary]
44195 *[http://www.anglican.tk/ the conservative ''Classical Anglican Net News'' website]
44196 *[http://www.anglicansonline.org/ Anglicans Online]
44197 *[http://www.anglicancommunion.org/index.cfm Anglican Communion Official Website]
44198
44199 {{Template:Anglican Churches}}
44200
44201 [[Category:Anglicanism]]
44202 [[Category:Christian group structuring]]
44203
44204 [[de:Anglikanische Kommunion]]
44205 [[fr:Communion anglicane]]
44206 [[he:הכנסייה האנגליקני×Ē]]
44207 [[ja:ã‚ĸãƒŗグãƒĒã‚Ģãƒŗãƒģã‚ŗミãƒĨニã‚Ēãƒŗ]]
44208 [[it:Comunione anglicana]]
44209 [[nl:Anglicaanse Kerk]]
44210 [[sh:Anglikanska crkva]]
44211 [[sr:АĐŊĐŗĐģиĐēĐ°ĐŊŅŅ‚вО]]
44212 [[sv:Anglikanska kyrkogemenskapen]]
44213 [[vi:Anh giÃĄo]]
44214 [[zh:æ™Žä¸–č–å…Ŧ厗]]</text>
44215 </revision>
44216 </page>
44217 <page>
44218 <title>Arne Kaijser</title>
44219 <id>910</id>
44220 <revision>
44221 <id>37295775</id>
44222 <timestamp>2006-01-30T01:57:10Z</timestamp>
44223 <contributor>
44224 <username>D6</username>
44225 <id>75561</id>
44226 </contributor>
44227 <minor />
44228 <comment>adding [[category:Living people]]</comment>
44229 <text xml:space="preserve">'''Arne Kaijser''' (born [[1950]]) is a professor of History of Technology at the [[Royal Institute of Technology]] in [[Stockholm]], and the head of the university's department of [[History of science and technology]].
44230
44231 Kaijser has published two books in [[Swedish language|Swedish]]: ''Stadens ljus. Etableringen av de fÃļrsta svenska gasverken'' and ''I fädrens spÃĨr. Den svenska infrastrukturens historiska utveckling och framtida utmaningar'', and has co-edited several anthologies. Kaijser is also a member of the editorial board of two scientific journals: ''[[Journal of Urban Technology]]'' and ''[[Centaurus (journal)|Centaurus]]''. Lately, he has been occupied with the history of [[Large Technical System]]s.
44232
44233 == External links ==
44234 * [http://www.indek.kth.se/indek/medarbetare/index.php?module=pnAddressBook&amp;func=viewDetail&amp;id=85&amp;cat_id=16&amp;prfx=0&amp;lname=Kaijser&amp;fname=Arne&amp;sortname=Kaijser%2C+Arne&amp;title=Professor&amp;company=&amp;sortcompany=&amp;img=arnekaijser.jpg&amp;zip=&amp;city=&amp;address1=&amp;address2=&amp;state=&amp;country=&amp;contact_1=&amp;contact_2=&amp;contact_3=&amp;contact_4=&amp;contact_5=&amp;c_label_1=1&amp;c_label_2=2&amp;c_label_3=3&amp;c_label_4=4&amp;c_label_5=5&amp;c_main=0&amp;note=&amp;user=91&amp;private=0&amp;date=1087393206&amp;formcall=edit&amp;authid=6cf17d59bec57532a03e9ae26c3ee526&amp;catview=0&amp;sortview=0&amp;formsearch=&amp;all=1&amp;menuprivate=0&amp;total=94&amp;page=1&amp;char= Homepage]
44235 *{{sv icon}} [http://www.indek.kth.se/indek/medarbetare/index.php?module=ContentExpress&amp;func=display&amp;ceid=11&amp;bid=21&amp;btitle=Personliga%20sidor&amp;meid=19 Extended homepage]
44236
44237 [[Category:1950 births|Kaijser, Arne]]
44238 [[Category:Living people|Kaijser, Arne]]
44239 [[Category:Swedish scholars|Kaijser, Arne]]</text>
44240 </revision>
44241 </page>
44242 <page>
44243 <title>Archipelago</title>
44244 <id>911</id>
44245 <revision>
44246 <id>41732236</id>
44247 <timestamp>2006-03-01T10:13:33Z</timestamp>
44248 <contributor>
44249 <username>ChongDae</username>
44250 <id>243919</id>
44251 </contributor>
44252 <minor />
44253 <comment>+ko</comment>
44254 <text xml:space="preserve">An '''archipelago''' is a [[landform]] which consists of a chain or cluster of [[island|islands]]. Archipelagoes usually occur in the open sea; less commonly a large [[land mass]] may neighbour them. Archipelagoes are often [[volcano|volcanic]], forming along [[ocean ridge]]s or [[Hotspot (geology)|hotspots]], but there are many other processes involved in their construction, including [[erosion]] and [[deposition (geology)|deposition]].
44255
44256 The word comes from the [[Aegean Sea]] ([[Greek language|Greek]] ''&amp;#945;&amp;#961;&amp;#967;&amp;#953;&amp;#960;&amp;#941;&amp;#955;&amp;#945;&amp;#947;&amp;#959;&amp;#962;'', [[Italian language|Italian]] ''Arcipelago''), which literally means &quot;chief sea&quot;, from [[Greek language|Greek]] ''arkhi'' (leader) and ''pelagos'' ([[sea]]). The Aegean Sea is located between [[Greece]] in the west and [[Turkey]] in the east. In the Aegean, the [[Venice|Venetian]] [[Duchy of the Archipelago|Dukes of the Archipelago]] ruled from [[Naxos, Greece|Naxos]], [[1210]]&amp;ndash;[[1566]].
44257
44258 The [[Archipelago Exchange]] is a fully electronic [[stock exchange]] that agreed to merge with the [[New York Stock Exchange]] in April 2005 to form the for-profit NYSE Group.
44259
44260 ==List of archipelagoes==
44261 *[[ABC islands]]
44262 *[[Aegean islands]]
44263 **[[Cyclades]]
44264 **[[Dodecanese]]
44265 *[[Aleutian Islands]]
44266 *[[Alexander Archipelago]]
44267 *[[Andaman Islands]]
44268 *[[Antilles]] (West Indies)
44269 **[[Greater Antilles]]
44270 ***[[Islands of Puerto Rico|Puerto Rican Islands]]
44271 **[[Lesser Antilles]]
44272 ***[[Leeward Islands]]
44273 ***[[Windward Islands]]
44274 *[[Azores]]
44275 *[[Bahama Islands]]
44276 **[[Turks and Caicos Islands]]
44277 *[[Balearic Islands]]
44278 *[[Baltic Sea]] archipelagoes
44279 **[[Stockholm archipelago]]
44280 **[[Archipelago_Sea|Turku archipelago]]
44281 **[[Åland Islands]]
44282 ** Bermuda Islands
44283 *[[Bight of Bonny]] islands
44284 *[[British Isles]]
44285 **[[Channel Islands]]
44286 **[[Hebrides]]
44287 **[[Isles of Scilly]]
44288 **[[Orkney Islands]]
44289 **[[Shetland Islands]]
44290 *[[Canadian Arctic islands]]
44291 **[[Belcher Islands]]
44292 **[[Queen Elizabeth Islands]]
44293 *[[Chagos Archipelago]]
44294 *[[Channel Islands of California]]
44295 *[[Chausey]]
44296 *[[Chonos Archipelago]]
44297 *[[Comoro Islands]]
44298 *[[Diego Ramírez Islands]]
44299 *[[Falkland Islands]] (Malvinas)
44300 *[[Faroe Islands]]
44301 *[[Florida Keys]]
44302 *[[Fox Islands]]
44303 *[[Franz Josef Land]]
44304 *[[Frisian Islands]] (or Wadden Islands)
44305 **[[East Frisian Islands]]
44306 **[[North Frisian Islands]]
44307 **[[West Frisian Islands]]
44308 *[[Furneaux Group]]
44309 *[[GalÃĄpagos Islands]] (ColÃŗn
44310 *[[Gothenburg archipelago]]
44311 *[[Guayaneco Archipelago]]
44312 *[[Japanese Archipelago]]
44313 *[[Juan FernÃĄndez Islands]]
44314 *[[Kerguelen Islands]]
44315 *[[Kermadec Islands]]
44316 *[[Kornati]]
44317 *[[Lakshadweep]] (Laccadives)
44318 *[[Lofoten]]
44319 *[[Los Roques]]
44320 *[[Macaronesia]]
44321 **[[Canary Islands]]
44322 **[[Cape Verde Islands]]
44323 ***[[Barlavento]]
44324 ***[[Sotavento]]
44325 **[[Madeira Islands]]
44326 *[[Magdalen Islands]]
44327 *[[Malay archipelago]] (the world's largest)
44328 **[[Maluku Islands]]
44329 **[[Philippine Islands]]
44330 ***[[Luzon#Island_Group_of_Luzon|Luzon Group]]
44331 ***[[Mindanao#Island_Group_of_Mindanao|Mindanao Group]]
44332 ****[[Sulu Archipelago]]
44333 ***[[Visayas]]
44334 **[[Sunda Islands]]
44335 ***[[Greater Sunda Islands]]
44336 ***[[Lesser Sunda Islands]]
44337 *[[Maldives]]
44338 *[[Maltese islands]]
44339 *[[Mascarene Islands]]
44340 **[[Seychelles Islands]]
44341 ***[[Aldabra Group]]
44342 ***[[Amirante Islands]]
44343 ***[[Farquhar Group]]
44344 *[[Melanesia]]
44345 **[[Bismarck Archipelago]]
44346 **[[Fiji Islands]]
44347 **[[New Caledonia]] (Kanaky)
44348 ***[[Loyalty Islands]]
44349 **[[Solomon Islands]]
44350 **[[Vanuatu]] (New Hebrides)
44351 *[[Mergui Archipelago]]
44352 *[[Micronesia]]
44353 **[[Caroline Islands]]
44354 **[[Gilbert Islands]] (Kiribati)
44355 **[[Line Islands]]
44356 **[[Mariana Islands]]
44357 **[[Marshall Islands]]
44358 ***[[Ralik Chain]]
44359 ***[[Ratak Chain]]
44360 **[[Palau]]
44361 **[[Phoenix Islands]]
44362 *[[New Siberian Islands]]
44363 *[[Nicobar Islands]]
44364 *[[New England]] and [[New York]] islands ([[Manhattan]], [[City Island]], [[Long Island]], [[Rikers Island]], [[Roosevelt Island]], [[Staten Island]], [[Block Island]], [[Nantucket]], [[Martha's Vineyard]], [[Liberty Island]], [[Ellis Island]], [[Governors Island]], [[Long Beach Island]], [[Elizabeth Islands]])
44365 *[[Novaya Zemlya]] islands
44366 *[[Polynesia]]
44367 **[[Cook Islands]] (Hervey Islands)
44368 **[[French Polynesia]]
44369 ***[[Austral Islands]]
44370 ***[[Gambier Islands]]
44371 ***[[Marquesas]]
44372 ***[[Society Islands]]
44373 ****[[Windward Islands (Society Islands)|Îles du vent]] (Windward Islands)
44374 ****[[Leeward Islands (Society Islands)|Îles sous le vent]] (Leeward Islands)
44375 ***[[Tuamotus]]
44376 **[[Hawaiian Islands]] (Sandwich Islands)
44377 **[[Islands of New Zealand|New Zealand]] islands (Aotearoa)
44378 **[[Pitcairn Islands]]
44379 **[[Samoan Islands]] (Navigators' Islands)
44380 ***[[American Samoa]] ([[Eastern Samoa]])
44381 ***[[Samoa]] ([[Western Samoa]])
44382 **[[Tonga Islands]] (Friendly Islands)
44383 **[[Tokelau]] (Union Islands)
44384 **[[Tuvalu]] (Ellice Islands)
44385 **[[Wallis and Futuna Islands]]
44386 ***[[Horne Islands]]
44387 *[[Pontine Islands]]
44388 *[[Queen Charlotte Islands]] (Haida Gwaii)
44389 *[[Saint Helena]] islands
44390 *[[San Juan Islands]]
44391 *[[Severnaya Zemlya]]
44392 *[[Solentiname Islands]]
44393 *[[South China Sea Islands]]
44394 **[[Paracel Islands]]
44395 **[[Spratly Islands]]
44396 *[[South Orkney Islands]]
44397 *[[South Sandwich Islands]]
44398 *[[South Shetland Islands]]
44399 *[[Svalbard]]
44400 *[[Thousand Islands]]
44401 *[[Tierra del Fuego]]
44402 *&quot;[[The World (archipelago)|The World]]&quot;, an archipelago of [[artificial island]]s being constructed off [[Dubai]]
44403 *[[Tuscan Archipelago]]
44404 *[[Venice]] islands
44405 *[[Virgin Islands]]
44406
44407 ==See also==
44408 *[[Island arc]]
44409 *[[Geography]]
44410 *[[Earth science]]
44411 *[[Geomorphology]]
44412 *[[Landform|List of landforms]]
44413 *[[Plate tectonics]]
44414
44415 Lists of islands:
44416 *[[List of islands of Antarctica and the Southern Ocean]]
44417 *[[List of islands in the Arctic Ocean]]
44418 *[[List of islands of Asia]]
44419 *[[List of islands in the Atlantic Ocean]]
44420 *[[List of islands of Australia]]
44421 *[[List of islands of Canada]]
44422 *[[List of islands in the Caribbean]]
44423 *[[List of islands in the Indian Ocean]]
44424 *[[List of islands of New Zealand]]
44425 *[[List of islands of North America]]
44426 *[[Pacific Islands|List of islands in the Pacific]]
44427 *[[List of islands of South America]]
44428 *[[List of islands in the United States]]
44429
44430 [[Category:Archipelagoes| ]]
44431
44432 [[an:Archipielago]]
44433 [[ar:ØŖØąØŽØ¨ŲŠŲ„]]
44434 [[bg:АŅ€Ņ…иĐŋĐĩĐģĐ°Đŗ]]
44435 [[da:Arkipelag]]
44436 [[de:Archipel]]
44437 [[et:Saarestik]]
44438 [[es:ArchipiÊlago]]
44439 [[fr:Archipel]]
44440 [[gl:ArquipÊlago]]
44441 [[io:Archipelago]]
44442 [[id:Kepulauan]]
44443 [[is:Eyjaklasi]]
44444 [[it:Arcipelago]]
44445 [[ko:ęĩ°ë„]]
44446 [[he:ארכיפלג]]
44447 [[nl:Archipel]]
44448 [[ja:列åŗļ]]
44449 [[pl:Archipelag]]
44450 [[pt:ArquipÊlago]]
44451 [[ru:АŅ€Ņ…иĐŋĐĩĐģĐ°Đŗ]]
44452 [[fi:Saaristo]]
44453 [[sv:SkärgÃĨrd]]
44454 [[tl:Kapuluan]]
44455 [[zh:įž¤åŗļ]]</text>
44456 </revision>
44457 </page>
44458 <page>
44459 <title>Ann Arbor</title>
44460 <id>912</id>
44461 <revision>
44462 <id>15899425</id>
44463 <timestamp>2002-05-04T08:54:35Z</timestamp>
44464 <contributor>
44465 <ip>64.26.98.90</ip>
44466 </contributor>
44467 <comment>*combined material into &amp;quot;Ann Arbor, Michigan&amp;quot; and redirected</comment>
44468 <text xml:space="preserve">#REDIRECT [[Ann Arbor, Michigan]]
44469
44470 </text>
44471 </revision>
44472 </page>
44473 <page>
44474 <title>Arthur Conan Doyle</title>
44475 <id>913</id>
44476 <revision>
44477 <id>42026562</id>
44478 <timestamp>2006-03-03T08:14:18Z</timestamp>
44479 <contributor>
44480 <username>Bota47</username>
44481 <id>341052</id>
44482 </contributor>
44483 <minor />
44484 <comment>robot Adding: ar</comment>
44485 <text xml:space="preserve">[[Image:Conan doyle.jpg|thumb|right|Sir Arthur Conan Doyle]]
44486 '''Sir Arthur Ignatius Conan Doyle''' ([[May 22]] [[1859]] &amp;ndash; [[July 7]] [[1930]]) was a [[Scotland|Scottish]] author most famously known for his stories about the [[Detective fiction|detective]] [[Sherlock Holmes]], which are generally considered a major innovation in the field of [[crime fiction]]. He was a prolific writer whose other works include [[science fiction]] stories, [[historical novel]]s, plays and romances, poetry, and non-fiction.
44487
44488 Conan was originally a [[middle name]] but he used it as part of his surname in his later years.
44489
44490 ==Life==
44491 Arthur Conan Doyle was born in 1859 in [[Edinburgh]] to [[Charles Altamont Doyle|Charles]] and Mary Doyle. He was sent to the [[Jesuits|Jesuit]] [[preparatory school]] Stonyhurst at the age of nine, and by the time he left the school in [[1875]] he rejected [[Christianity]] to become an [[agnosticism|agnostic]]. From [[1876]] to [[1881]] he studied medicine at the [[University of Edinburgh]], including a period working in the town of [[Aston]] (now a district of [[Birmingham]]). Following his term at University he served as a ship's doctor on a voyage to the West [[Africa]]n coast, and then in [[1882]] he set up a practice in [[Plymouth]]. He achieved his doctorate in 1885. His medical practice was unsuccessful; while waiting for patients he began writing stories. His first literary experience came in ''Chambers's Edinburgh Journal'' before he was 20.
44492
44493 It was only after he subsequently moved his practice to [[Southsea]] that he began to indulge more extensively in literature. His first significant work was ''A Study in Scarlet'' which appeared in ''Beeton's Christmas Annual'' for [[1887]] and featured the first appearance of Sherlock Holmes who was modelled after Doyle's former University professor, [[Joseph Bell]]. Interestingly, [[Rudyard Kipling]] congratulated Doyle on his success, asking &quot;Could this be my old friend, Dr. Joe?&quot;. While living in Southsea he helped form [[Portsmouth F.C.|Portsmouth Football Club]] and played as the club's first [[goalkeeper]].
44494
44495 In [[1885]] he married Louise Hawkins, who suffered from [[tuberculosis]] and eventually died in [[1906]]. He married Jean Leckie in [[1907]], whom he had first met and fallen in love with in [[1897]] but had maintained a [[Platonic love|platonic relationship]] with her out of loyalty to his first wife. Doyle had five children, two with his first wife (Mary and Kingsley), and three with his second wife ([[Jean Conan Doyle|Jean]], Denis, and [[Adrian Conan Doyle|Adrian]]).
44496
44497 In [[1890]] Doyle studied the eye in [[Vienna]], and in [[1891]] moved to [[London]] to set up a practice as an [[Ophthalmology|oculist]]. This also gave him more time for writing, and in November 1891 he wrote to his mother: &quot;I think of slaying Holmes... and winding him up for good and all. He takes my mind from better things.&quot; In December 1893, he did so in order to dedicate more of his time to more &quot;important&quot; works (namely his historical novels), pitting Holmes against his arch-nemesis [[Professor Moriarty]]. They apparently plunged to their deaths together down a waterfall in the story &quot;The Final Problem&quot;. Public outcry led him to bring the character back&amp;mdash;Doyle returned to the story in &quot;The Adventure of the Empty House&quot;, with the ingenious explanation that only Moriarty had fallen, but, since Holmes had other dangerous enemies, he had arranged to be temporarily &quot;dead&quot; also. Holmes eventually appears in a total of 56 [[short story|short stories]] and four Doyle novels (he has since appeared in many novels and stories by other authors).
44498
44499 Following the [[Second Boer War|Boer War]] in [[South Africa]] at the turn of the 20th century and the condemnation from around the world over Britain's conduct, Doyle wrote a short pamphlet titled ''The War in South Africa: Its Cause and Conduct'' which justified Britain's role in the Boer war and was widely translated. Doyle believed that it was this pamphlet that resulted in his being knighted and appointed as Deputy-Lieutenant of [[Surrey]] in [[1902]]. He also wrote the longer book ''The Great Boer War'' in [[1900]]. During the early years of the 20th century Sir Arthur twice ran for Parliament as a [[Liberal Unionist Party|Liberal Unionist]], once in Edinburgh and once in the Border Burghs, but although he received a respectable vote he was not elected.
44500 [[Image:conandoylestatue.jpg|thumb|right|Arthur Conan Doyle statue in Crowborough]]Conan Doyle was involved in the campaign for the reform of the [[Congo Free State]], led by the journalist [[E. D. Morel]] and the diplomat [[Roger Casement]]. He wrote [[The Crime of the Congo]] in [[1909]], a long pamphlet in which he denounced the horrors in Congo. He become acquainted with Morel and Casement, taking inspiration from them for two of the main characters of the novel [[The Lost World (Arthur Conan Doyle)|The Lost World]] (1912). He broke with both when Morel (who was rather left-wing) became one of the leaders of the pacifist movement during the [[World War I|First World War]], and Casement committed treason against Britain out of conviction for his [[Ireland|Irish]] nationalist views. Doyle tried, unsuccessfully, to save Casement from the death penalty, arguing that he had been driven mad and was not responsible for his actions.
44501
44502 Doyle was also a fervent advocate of justice, and personally investigated two closed cases, which led to two imprisoned men being released. The first case, in 1906, involved a shy half-British, half-Indian lawyer named [[George Edalji]], who had allegedly penned threatening letters and mutilated animals. Police were dead set on Edalji's conviction, even though the mutilations continued even after their suspect was jailed. It was partially as a result of this case that the [[Court of Criminal Appeal]] was established in [[1907]], so not only did Conan Doyle help George Edalji, his work helped to establish a way to correct other [[miscarriages of justice]]. The story of Conan Doyle and Edalji is told in fictional form in [[Julian Barnes]]'s 2005 [[novel]], [[Arthur &amp; George]].
44503
44504 The second case&amp;mdash;that of [[Oscar Slater]], a German Jew and gambling-den operator convicted of bludgeoning an 82-year-old woman in [[Glasgow]] in [[1908]]&amp;mdash;excited Doyle's curiosity because of inconsistencies in the prosecution case and a general sense that Slater was framed.
44505
44506 In his later years, Doyle became involved with [[Spiritualism]], to the extent that he wrote a [[Professor Challenger]] novel on the subject, ''The Land of Mist''. One of the odder aspects of this period of his life was his book ''The Coming of the Fairies'' ([[1921]]). He was apparently totally convinced of the veracity of the [[Cottingley Fairies|Cottingley fairy]] photographs, which he reproduced in the book, together with theories about the nature and existence of fairies and spirits. His work on this topic was one of the reasons that one of his short story collections, [[The Adventures of Sherlock Holmes]], was banned in the [[Soviet Union]] in [[1929]] for supposed [[occult]]ism. This ban was later removed.
44507
44508 Doyle was friends for a time with the American magician [[Harry Houdini]], a prominent opponent of the Spiritualist movement. Although Houdini insisted that Spiritualist mediums employed trickery (and consistently attempted to expose them as frauds), Doyle became convinced that Houdini himself possessed supernatural powers, a view expressed in Doyle's ''The Edge of the Unknown''. Houdini was apparently unable to convince Doyle that his feats were simply magic tricks, leading to a bitter, public falling out between the two.
44509
44510 [[Richard Milner]], an [[United States|American]] historian of science, has presented a case that Doyle may have been the perpetrator of the [[Piltdown man]] hoax of [[1912]], creating the counterfeit [[hominid]] [[fossil]] that fooled the scientific world for over 40 years. Milner says that Doyle had a motive, namely revenge on the scientific establishment for debunking one of his favourite psychics, and that ''The Lost World'' contains several encrypted clues regarding his involvement in the hoax. [http://www.arts.telegraph.co.uk/htmlContent.jhtml;jsessionid=JXWTHVY1DHO5NQFIQMGSNAGAVCBQWJVC?html=/archive/1997/03/20/npil20.html]
44511
44512 [[Samuel Rosenberg]]'s [[1974]] book ''[[Naked is the Best Disguise]]'' purports to explain how Doyle left, throughout his writings, open clues that related to hidden and suppressed aspects of his mentality.
44513
44514 Sir Arthur Conan Doyle died of a [[heart attack]] in [[1930]] and is buried in the Church Yard at [[Minstead]] in the [[New Forest]], [[Hampshire]], [[England]].
44515
44516 A statue has been erected in Sir Arthur Conan Doyle's honour. It may be seen at Crowborough Cross in [[Crowborough]], [[East Sussex]], [[England]], where Sir Arthur lived for 23 years. There is also a statue of [[Sherlock Holmes|Sherlock Holmes]] in Picardy Place, [[Edinburgh]], [[Scotland]] - close to the house where Conan Doyle was born.
44517
44518
44519
44520 ==Selected bibliography==
44521 ===[[Sherlock Holmes]] Stories===
44522 *[[A Study in Scarlet]] (1887)
44523 *[[The Sign of Four]] (1890)
44524 *[[The Adventures of Sherlock Holmes]] (1892)
44525 *[[The Memoirs of Sherlock Holmes]] (1894)
44526 *[[The Hound of the Baskervilles]] (1902)
44527 *[[The Return of Sherlock Holmes]] (1904)
44528 *[[The Valley of Fear]] (1914)
44529 *[[His Last Bow]] (1917)
44530 *[[The Case Book of Sherlock Holmes]] (1927)
44531
44532 ===[[Professor Challenger]] Stories===
44533 *[[The Lost World (Arthur Conan Doyle)|The Lost World]] (1912)
44534 *[[The Poison Belt]] (1913)
44535 *[[The Land of Mists]] (1926)
44536 *[[The Disintegration Machine]] (1927)
44537 *[[When the World Screamed]] (1928)
44538
44539 ===Historical novels===
44540 *[[The White Company]] (1891)
44541 *[[Micah Clarke]] (1888)
44542 *[[The Great Shadow]] (1892)
44543 *[[The Refugees]] (publ. 1893, written 1892)
44544 *[[Uncle Bernac]] (1897)
44545 *[[Sir Nigel]] (1906)
44546
44547 ===Other works===
44548 *[[J. Habakuk Jephson's Statement]] (1883), a story about the fate of the ship [[Mary Celeste]]
44549 *[[Mystery of Cloomber]] (1889)
44550 *[[The Captain of the Polestar, and other tales]] (1890)
44551 *[[The Doings Of Raffles Haw]] (1891)
44552 *[[Beyond the City]] (1892)
44553 *[[Round The Red Lamp]] (1894)
44554 *[[The Parasite]] (1894)
44555 *[[The Stark Munro Letters]] (1895)
44556 *[[Rodney Stone]] (1896)
44557 *[[Songs of Action]] (1898)
44558 *[[The Tragedy of The Korosko]] (1898)
44559 *[[A Duet]] (1899)
44560 *[[The Great Boer War]] (1900)
44561 *[[The Exploits of Brigadier Gerard ]] (1903)
44562 *[[Through the Magic Door]] (1907)
44563 *[[The Crime of the Congo]] (1909)
44564 *[[The New Revelation]] (1918)
44565 *[[The Vital Message]] (1919)
44566 *[[Tales of Terror &amp; Mystery]] (1923)
44567 *[[The History of Spiritualism]] (1926)
44568
44569 ==See also==
44570 *[[Toronto Public Library]]
44571 *[[William Gillette]] Personal friend. Performed the most famous stage-version of ''Sherlock Holmes''.
44572
44573 ==External links==
44574 {{wikiquote}}
44575 {{wikisource}}
44576 * {{gutenberg author|id=Arthur_Conan_Doyle|name=Arthur Conan Doyle}}
44577 *[http://www.sherlockholmesonline.org Official site of Doyle's estate] - includes lengthy biography, history of the estate, bibliography, and more.
44578 *[http://www.bakerstreet221b.de/canon/ The Complete Sherlock Holmes]
44579 *[http://www.classic-literature.co.uk/scottish-authors/arthur-conan-doyle/ Sir Arthur Conan Doyle] - The majority of his works in easy to read HTML format.
44580 *[http://etext.library.adelaide.edu.au/aut/doyle_arthur_conan.html Works available online]
44581 *[http://www.birmingham.gov.uk/doyle Doyle in Birmingham]
44582 *[http://quotesandpoem.com/literature/ListofLiteraryWorks/Doyle__Sir_Arthur_Conan Searchable Works and Quotes of Arthur Conan Doyle]
44583 *[http://www.siracd.com/ The Chronicles of Sir Arthur Conan Doyle] - Site includes articles, quotes, games and little-known facts
44584 *[http://www.theplebeian.net/ Conan Doyle and the Parson's Son -The George Edalji case]
44585 *[http://www.birmingham.gov.uk/edalji The George Edalji Case]
44586 *[http://www.crimefiction.com/slater.htm The Oscar Slater Case]
44587 *[http://www.visitdunkeld.com/barnbougle-castle.htm The true legend of the Hound of the Baskervilles; see 'Sir Roger de Mowbray']
44588
44589 [[Category:1859 births|Doyle, Arthur Conan]]
44590 [[Category:1930 deaths|Doyle, Arthur Conan]]
44591 [[Category:Arthur Conan Doyle|*]]
44592 [[Category:Freemasons|Doyle]]
44593 [[Category:Knights Commander of St Michael and St George|Doyle, Arthur Conan]]
44594 [[Category:Old Stonyhurst|Doyle, Arthur Conan]]
44595 [[Category:Sherlock Holmes| ]]
44596
44597 [[af:Sir Arthur Conan Doyle]]
44598 [[ar:ØĸØąØĢØą ŲƒŲˆŲ†Ø§Ų† دŲˆŲŠŲ„]]
44599 [[bg:АŅ€Ņ‚ŅŠŅ€ КоĐŊĐ°ĐŊ ДойĐģ]]
44600 [[ca:Arthur Conan Doyle]]
44601 [[cs:Arthur Conan Doyle]]
44602 [[da:Arthur Conan Doyle]]
44603 [[de:Arthur Conan Doyle]]
44604 [[et:Arthur Conan Doyle]]
44605 [[es:Arthur Conan Doyle]]
44606 [[eo:Arthur Conan DOYLE]]
44607 [[fa:ØĸØąØĒŲˆØą ÚŠŲˆŲ†Ø§Ų† دŲˆÛŒŲ„]]
44608 [[fr:Arthur Conan Doyle]]
44609 [[hr:Arthur Conan Doyle]]
44610 [[id:Arthur Conan Doyle]]
44611 [[it:Arthur Conan Doyle]]
44612 [[he:אר×Ēור קונאן דויל]]
44613 [[nl:Arthur Conan Doyle]]
44614 [[ja:ã‚ĸãƒŧã‚ĩãƒŧãƒģã‚ŗナãƒŗãƒģドイãƒĢ]]
44615 [[no:Arthur Conan Doyle]]
44616 [[pl:Arthur Conan Doyle]]
44617 [[pt:Arthur Conan Doyle]]
44618 [[ro:Arthur Conan Doyle]]
44619 [[ru:КоĐŊĐ°ĐŊ ДойĐģŅŒ, АŅ€Ņ‚ŅƒŅ€]]
44620 [[sco:Sir Arthur Conan Doyle]]
44621 [[simple:Arthur Conan Doyle]]
44622 [[fi:Arthur Conan Doyle]]
44623 [[sv:Arthur Conan Doyle]]
44624 [[th:ā¸­ā¸˛ā¸ŖāšŒāš€ā¸—ā¸­ā¸ŖāšŒ āš‚ā¸„ā¸™ā¸ąā¸™ ā¸”ā¸­ā¸ĸā¸ĨāšŒ]]
44625 [[uk:ДойĐģ АŅ€Ņ‚ŅƒŅ€ КоĐŊĐ°ĐŊ]]
44626 [[zh:é˜ŋį‘ŸÂˇæŸ¯å—Âˇé“å°”]]</text>
44627 </revision>
44628 </page>
44629 <page>
44630 <title>Author</title>
44631 <id>914</id>
44632 <revision>
44633 <id>40424417</id>
44634 <timestamp>2006-02-20T13:06:41Z</timestamp>
44635 <contributor>
44636 <username>Cacumer</username>
44637 <id>625255</id>
44638 </contributor>
44639 <comment>fixing concept, hopefuly</comment>
44640 <text xml:space="preserve">{{otheruses}}
44641
44642 An '''author''' is the person who creates a written work, such as a [[book]], story, article or the like. This can be short or long, fiction or nonfiction, [[poetry]] or prose, technical or [[literature]]. Since [[capitalism]], the '''author''' also needs to do it for [[payment]] (as a [[service]]).
44643
44644 ==Role in critical theory==
44645
44646 One key issue in [[literary theory]] is the relationship between the meaning of a literary [[text]] and its author's conscious intent.
44647
44648 * The phrase &quot;[[death of the author|Death of the Author]]&quot; was popularized by [[Roland Barthes]] in his [[1968]] essay with the same name. It is used to convey the idea that [[Text|texts]] have meaning and an independent existence outside that intended by the author, depending on the context and reader.
44649
44650 * The death of the author is in self-conscious opposition to the [[New Criticism]], a literary critical movement popular in England and America in the first half of the 20th century. According to this movement, the author's intent is assumed to be quite clear to the author and it becomes the critic's task to understand this intent.
44651
44652 ==See also==
44653
44654 * [[Novel|novelist]]
44655 * [[writer]]
44656 * [[Lists of authors]]
44657 * [[Lists of poets]]
44658 * [[List of novelists]]
44659
44660 [[Category:Media occupations]]
44661 [[Category:Literary criticism]]
44662
44663 [[cs:Autor]]
44664 [[da:Forfatter]]
44665 [[de:Autor]]
44666 [[es:Autor]]
44667 [[eo:AÅ­toro]]
44668 [[fr:Écrivain]]
44669 [[gl:Autor]]
44670 [[he:סופר]]
44671 [[nl:Auteur]]
44672 [[id:Penulis]]
44673 [[ja:äŊœč€…]]
44674 [[no:Forfatter]]
44675 [[pt:Autor]]
44676 [[ru:АвŅ‚ĐžŅ€]]
44677 [[sv:FÃļrfattare]]
44678 [[zh:&amp;#20316;&amp;#23478;]]</text>
44679 </revision>
44680 </page>
44681 <page>
44682 <title>Andrey Markov</title>
44683 <id>915</id>
44684 <revision>
44685 <id>36527423</id>
44686 <timestamp>2006-01-24T18:35:43Z</timestamp>
44687 <contributor>
44688 <username>Stevertigo</username>
44689 <id>4099</id>
44690 </contributor>
44691 <text xml:space="preserve">:''This is an article about Russian mathematician Andrey Markov. For [[ice hockey]] player Andrei Markov, see [[Andrei Markov (hockey player)]].''
44692 '''Andrey Andreyevich Markov''' (АĐŊĐ´Ņ€ĐĩĐš АĐŊĐ´Ņ€ĐĩĐĩвиŅ‡ МаŅ€ĐēОв) ([[June 14]], [[1856]] [[N.S.]] - [[July 20]], [[1922]]) was a [[Russia|Russian]] [[mathematician]].
44693
44694 Markov was born in [[Ryazan]]. He studied at [[Saint Petersburg State University|St. Petersburg University]] in [[1874]] under the tutelage of [[Pafnuty Chebyshev|Chebyshev]]. In [[1886]], he became a member of the [[Russian Academy of Sciences|St. Petersburg Academy of Science]]. He is best known for his work on theory of [[stochastic process]]es. His research later became known as [[Markov chain]]s.
44695
44696 ==See also==
44697 * [[Markov chain]]
44698 * [[Gauss-Markov theorem]]
44699 * [[Hidden Markov model]]
44700 * [[Markov number]]
44701 * [[Markov property]]
44702 * [[Markov's inequality]]
44703
44704 == References ==
44705 * А. А. МаŅ€ĐēОв. &quot;Đ Đ°ŅĐŋŅ€ĐžŅŅ‚Ņ€Đ°ĐŊĐĩĐŊиĐĩ СаĐēĐžĐŊĐ° йОĐģŅŒŅˆĐ¸Ņ… Ņ‡Đ¸ŅĐĩĐģ ĐŊĐ° вĐĩĐģиŅ‡Đ¸ĐŊŅ‹, СавиŅŅŅ‰Đ¸Đĩ Đ´Ņ€ŅƒĐŗ ĐžŅ‚ Đ´Ņ€ŅƒĐŗĐ°&quot;. &quot;ИСвĐĩŅŅ‚иŅ ФиСиĐēĐž-ĐŧĐ°Ņ‚ĐĩĐŧĐ°Ņ‚иŅ‡ĐĩŅĐēĐžĐŗĐž ОйŅ‰ĐĩŅŅ‚ва ĐŋŅ€Đ¸ КазаĐŊŅĐēĐžĐŧ ŅƒĐŊивĐĩŅ€ŅĐ¸Ņ‚ĐĩŅ‚Đĩ&quot;, 2-Ņ ŅĐĩŅ€Đ¸Ņ, Ņ‚ĐžĐŧ 15, ŅŅ‚. 135-156, 1906.
44706 * A.A. Markov. &quot;Extension of the limit theorems of probability theory to a sum of variables connected in a chain&quot;. reprinted in Appendix B of: R. Howard. ''Dynamic Probabilistic Systems, volume 1: Markov Chains''. John Wiley and Sons, 1971.
44707
44708 == External links ==
44709 * {{MacTutor Biography|id=Markov}}
44710 * [http://mac03-204ha.math.ncsu.edu/~langville/naoumov.pdf The Life and Work of AA Markov]
44711 * [http://logic.pdmi.ras.ru/Markov/ Andrey Andreevich Markov (1903-1979)] ''(biography of Markov's son, located at the Steklov Institute of Mathematics at St.Petersburg)''
44712
44713 &lt;br&gt;{{mathbiostub}}
44714
44715 [[Category:1856 births|Markov, Andrei Andreevich]]
44716 [[Category:1922 deaths|Markov, Andrei Andreevich]]
44717 [[Category:Russian mathematicians|Markov, Andrey]]
44718
44719 [[de:Andrei Andrejewitsch Markow]]
44720 [[es:Andrei Markov]]
44721 [[fr:Andrei Markov (mathÊmaticien)]]
44722 [[it:Andrej Andreevic Markov (padre)]]
44723 [[pl:Andriej Markow (starszy)]]
44724 [[pt:Andrei Andreyevich Markov]]
44725 [[ru:МаŅ€ĐēОв, АĐŊĐ´Ņ€ĐĩĐš АĐŊĐ´Ņ€ĐĩĐĩвиŅ‡ (ŅŅ‚Đ°Ņ€ŅˆĐ¸Đš)]]
44726 [[uk:МаŅ€ĐēОв АĐŊĐ´Ņ€Ņ–Đš АĐŊĐ´Ņ€Ņ–КОвиŅ‡]]
44727 [[zh:åŽ‰åžˇé›ˇÂˇéŠŦ尔可å¤Ģ]]</text>
44728 </revision>
44729 </page>
44730 <page>
44731 <title>Anders Jonas Angstrom</title>
44732 <id>917</id>
44733 <revision>
44734 <id>27589147</id>
44735 <timestamp>2005-11-07T03:57:39Z</timestamp>
44736 <contributor>
44737 <username>Curpsbot-unicodify</username>
44738 <id>397664</id>
44739 </contributor>
44740 <minor />
44741 <comment>2 &amp;&lt;name&gt;; → Unicode</comment>
44742 <text xml:space="preserve">#redirect [[Anders Jonas ÅngstrÃļm]]</text>
44743 </revision>
44744 </page>
44745 <page>
44746 <title>Anti-semitism</title>
44747 <id>918</id>
44748 <revision>
44749 <id>15899430</id>
44750 <timestamp>2004-05-18T05:26:54Z</timestamp>
44751 <contributor>
44752 <ip>82.80.10.110</ip>
44753 </contributor>
44754 <text xml:space="preserve">#REDIRECT [[Anti-Semitism]]</text>
44755 </revision>
44756 </page>
44757 <page>
44758 <title>Anti-semitic</title>
44759 <id>919</id>
44760 <revision>
44761 <id>15899431</id>
44762 <timestamp>2002-04-06T16:34:58Z</timestamp>
44763 <contributor>
44764 <username>Bryan Derksen</username>
44765 <id>66</id>
44766 </contributor>
44767 <minor />
44768 <comment>redirect</comment>
44769 <text xml:space="preserve">#REDIRECT [[Anti-Semitism]]</text>
44770 </revision>
44771 </page>
44772 <page>
44773 <title>Alumnus/a</title>
44774 <id>920</id>
44775 <revision>
44776 <id>40636250</id>
44777 <timestamp>2006-02-21T23:51:24Z</timestamp>
44778 <contributor>
44779 <username>Michael Hardy</username>
44780 <id>4626</id>
44781 </contributor>
44782 <comment>Alumnus status is a RELATIONSHIP between the person and the school.</comment>
44783 <text xml:space="preserve">&lt;!-- So far we have a dictionary definition and a discussion of the correct use of the term --&gt;
44784 An '''alumnus''' (masculine) or '''alumna''' (feminine) of a [[colleges and universities|college, university]], or school is a former student. Informal equivalents are '''alum''' and '''alumn''' (with a silent &quot;n&quot;). The term is often mistakenly thought of as synonymous with &quot;graduate.&quot; Alumni/ae [[reunion]]s are popular events at many institutions. They are usually organized by [[alumni association]]s and are often social occasions for [[fundraising]].
44785
44786 In [[Latin]], ''alumnus'' is the masculine singular form and ''alumna'' the feminine singular form. (The words are derived from the Latin verb ''alere'', &quot;to nourish,&quot; and literally mean &quot;nourished one&quot; or &quot;nursling.&quot;) Although these terms are recommended by leading [[English language|English-language]] [[dictionary|dictionaries]], their use can be limited because they are [[non-sexist language|gender-specific]]. The Latin plural is '''alumni''' for men and mixed groups and '''alumnae''' for women. The gender-neutral English term ''alum''/''alumn'', created by [[clipping#Linguistics|clipping]] the ending from ''alumnus'', is also used, along with its plural '''alums'''/'''alumns'''.
44787
44788 Recently, the definition of &quot;alum&quot; has expanded to include people who have &quot;[[matriculation|matriculated]] at&quot; or exited from any kind of organization or process. As such, one can potentially be a &quot;corporate alum&quot; of XYZ Company, or an alum of a military branch, [[non-profit organization]], or training process.
44789
44790 Educational institutions tend to follow Latin usage: ''alumnus'' for males, ''alumna'' for females, and ''alumni'' for mixed groups. All-women colleges use ''alumna'' and ''alumnae''. Some institutions, such as [[Texas A&amp;M University]], do not refer to their graduates as &quot;alumni&quot; or even &quot;graduates,&quot; choosing to use the term ''former students''.
44791
44792 In the [[United Kingdom]] and, to a lesser extent, [[Australia]], the phrases '''old boy''' and '''old girl''' are traditionally used for former school pupils, and '''old member''' for former university students. Some private schools in [[Canada]], such as [[Upper Canada College]] and the [[Bishop Strachan School]] also use '''old boy''' and '''old girl'''. The term '''old student''' can nowadays refer to the graduates of either schools or universities. In Scotland, the term ''Former Pupil'' (FP) is also used, especially when referring to sports teams of a school.
44793
44794 ==See also==
44795 * [[Alma mater]]
44796 * [[Old boy network]]
44797 * [[Alumni association]]
44798
44799 [[Category:Academia]]
44800 [[Category:People by educational institution| ]]
44801
44802 [[de:Alumnus]]
44803 [[nl:Alumnus]]
44804 [[nb:Alumni]]
44805 [[sv:Alumn]]</text>
44806 </revision>
44807 </page>
44808 <page>
44809 <title>Angst</title>
44810 <id>921</id>
44811 <revision>
44812 <id>39192226</id>
44813 <timestamp>2006-02-11T10:22:25Z</timestamp>
44814 <contributor>
44815 <username>Ronline</username>
44816 <id>126381</id>
44817 </contributor>
44818 <text xml:space="preserve">{{otheruses}}
44819 {{emotion}}
44820 '''''Angst''''' is a [[German language|German]], [[Dutch language|Dutch]] and [[North Germanic language|North Germanic]] word for [[fear]] or [[anxiety]]. It is used in English to describe an intense feeling of internal emotional strife.
44821
44822 A different but related meaning is attributed to [[Denmark|Danish]] philosopher [[Søren Kierkegaard]] ([[1813]]&amp;ndash;[[1855]]). Kierkegaard used the word ''angst'' (Danish, meaning &quot;dread&quot;) to describe a profound and deep-seated [[spirituality|spiritual]] condition of insecurity and [[despair]] in the free [[human being]]. Where the animal is a slave to its God-given instincts but always confident in its own actions, Kierkegaard believed that the freedom given to mankind leaves the human in a constant fear of failing its responsibilities to [[God]]. Kierkegaard's concept of angst is considered to be an important stepping stone for 20th-century [[existentialism]].
44823
44824 While Kierkegaard's feeling of angst is fear of actual responsibility to [[god (monotheism)|God]], in modern use, angst is broadened to include general frustration associated with the conflict between actual responsibilities to self, one's principles, and others (possibly including God). Still, the angst in alternative music may be more accessible to most audiences than the esoteric tradition of [[existentialism]]. The term &quot;angst&quot; is now widely used with a negative and derisive connotation that mocks the expression of a common adolescent experience of malaise.
44825
44826 ==Angst in contemporary music==
44827 Angst, in contemporary connotative use, most often describes the intense frustration and other related emotions of [[teenager]]s and the mood of the music with which they identify. [[Punk rock]], [[grunge]], [[emo (music)|emo]], and virtually any [[Alternative Rock]] dramatically combining elements of discord, [[melancholy]] and excitement may be said to assert angst. There is an obvious connection to this music and the various subjugation of its proponent youth or racial or sociopolitical minority [[subculture]].
44828
44829 Angst was probably first discussed in relation to contemporary music in the mid to late 1980s and 1990s. In the 1980s &quot;teen angst&quot; was expressed in music to a certain extent in the rise of &quot;punk&quot;, but the word &quot;angst&quot; is currently more associated with, and was probably first used in reference to, the grunge movement and the band [[Nirvana (band)|Nirvana]]. Nirvana themselves seem to have been aware of this, as evidenced by the first line of [[Serve the Servants]] in which [[Kurt Cobain]] describes the success of writing songs dealing with the subject (''Teenage angst has paid off well | Now I'm bored and old...'').
44830
44831 ==See also==
44832 {{wiktionarypar|angst}}
44833 * [[List of English words of German origin|English words of German origin]]
44834 * [[Anxiety]]
44835 * [[Suffering]]
44836 * [[Anomie]]
44837 * [[Alienation]]
44838 * [[Ennui]]
44839
44840 [[Category:Emotion]]
44841 [[Category:Existentialism]]
44842 [[Category:German loanwords]]
44843
44844 [[fr:Angoisse]]
44845 [[io:Angoro]]
44846 [[it:Angoisse]]
44847 [[nl:Faalangst]]
44848 [[pl:Angoisse]]
44849 [[sv:Ångest]]</text>
44850 </revision>
44851 </page>
44852 <page>
44853 <title>Anxiety</title>
44854 <id>922</id>
44855 <revision>
44856 <id>42093043</id>
44857 <timestamp>2006-03-03T19:59:12Z</timestamp>
44858 <contributor>
44859 <username>Monkeyman</username>
44860 <id>79245</id>
44861 </contributor>
44862 <minor />
44863 <comment>/* External links */ Removed spam.</comment>
44864 <text xml:space="preserve">'''Anxiety''' refers to a complex combination of negative emotions that includes [[fear]], apprehension and worry, and is often accompanied by physical sensations such as [[Palpitation| palpitations]], chest pain and/or shortness of breath.
44865
44866 Anxiety is often described as having [[cognitive]], [[somatic]], [[emotion]]al and [[behavior]]al components (Seligman, Walker &amp; Rosenhan, 2001). The cognitive component entails expectation of a diffuse and uncertain danger. Somatically the body prepares the organism to deal with threat (known as an emergency reaction); [[blood pressure]] and [[heart rate]] are increased, sweating is increased, bloodflow to the major muscle groups is increased, and [[immune system|immune]] and [[Digestion|digestive]] system functions are inhibited. Externally, somatic signs of anxiety may include pale skin, sweating, trembling and [[Mydriasis|pupillary dilation]]. Emotionally, anxiety causes a sense of dread or panic, nausea and chills. Behaviorally, both voluntary and involuntary behaviors may arise directed at escaping or avoiding the source of anxiety. These behaviors are frequent and often maladaptive, being most extreme in [[anxiety disorder]]s. However, anxiety is not always pathological or maladaptive: it is a common emotion along with fear, anger, sadness and happiness, and it has a very important function in relation to survival.
44867
44868 Neural circuitry involving the [[amygdala]] and [[hippocampus]] is thought to underlie anxiety (Rosen &amp; Schulkin, 1998). When confronted with unpleasant and potentially harmful stimuli such as foul odors or tastes, [[Positron emission tomography|PET-scans]] show increased bloodflow in the amygdala (Zald &amp; Pardo, 1997; Zald, Hagen &amp; Pardo, 2002). In these studies, the participants also reported moderate anxiety. This might indicate that anxiety is a protective mechanism designed to prevent the organism from engaging in potentially harmful behaviors such as feeding on rotten food.
44869
44870 A chronically recurring case of anxiety that has a serious effect on a person's life may be clinically diagnosed as an anxiety disorder. The most common are [[generalized anxiety disorder]], [[panic disorder]], [[social anxiety disorder]], [[phobia]]s, [[obsessive-compulsive disorder]], and [[posttraumatic stress disorder|posttraumatic stress disorder]] (PTSD).
44871
44872 ==Diagnosis==
44873
44874 A good assessment is essential for the initial diagnosis of an anxiety disorder, preferably using a standardised interview or questionnaire procedure alongside expert evaluation and the views of the person themselves. There should be a medical examination in order to identify possible medical conditions that can cause the symptoms of anxiety. A family history of anxiety disorders is suggestive of the possibility of an anxiety disorder.
44875
44876 ==Diagnosis using a blood test==
44877
44878 In 2005 a research team from the [[Hebrew University of Jerusalem]] developed a method for potentially detecting raised anxiety by performing a simple blood test. This is only an early unreplicated study of a possible screening tool. [http://www.isracast.com/tech_news/101005_tech.htm]
44879
44880 ==Generalized anxiety disorder==
44881 {{main|General anxiety disorder}}
44882
44883 Generalized anxiety disorder is a common chronic disorder that affects twice as many women as men and can lead to considerable impairment (Brawman-Mintzer &amp; Lydiard, 1996, 1997). As the name implies, generalized anxiety disorder is characterized by long-lasting anxiety that is not focused on any particular object or situation. In other words it is unspecific or free-floating. People with this disorder feel afraid of something but are unable to articulate the specific fear. They fret constantly and have a hard time controlling their worries. Because of persistent muscle tension and autonomic fear reactions, they may develop headaches, heart palpitations, dizziness, and insomnia. These physical complaints, combined with the intense, long-term anxiety, make it difficult to cope with normal daily activities.
44884
44885 ==Panic disorder==
44886 {{main|Panic disorder}}
44887
44888 In panic disorder, a person suffers brief attacks of intense terror and apprehension that cause trembling and shaking, dizziness, and difficulty breathing. One who is often plagued by sudden bouts of intense anxiety might be said to be afflicted by this disorder. The American Psychiatric Association (2000) defines a panic attack as fear or discomfort that arises abruptly and peaks in 10 minutes or less.
44889
44890 Although panic attacks sometimes seem to occur out of nowhere, they generally happen after frightening experiences, prolonged stress, or even exercise. Many people who have panic attacks (especially their first one) think they are having a heart attack and often end up at the doctor or ER. Even if the tests all come back normal the person will still worry, with the physical manifestations of anxiety only reinforcing their fear that something is wrong with their body. Extreme awareness of every little thing that happens or changes with their body can make for a stressful time.
44891
44892 Normal changes in heartbeat, such as when climbing a flight of stairs will be noticed by a panic sufferer and lead them to think something is wrong with their heart or they are about to have another panic attack. Some begin to worry excessively and even quit jobs or refuse to leave home to avoid future attacks. Panic disorder can be diagnosed when several apparently spontaneous attacks lead to a persistent concern about future attacks. A common complication of panic disorder is [[agoraphobia]] -- anxiety about being in a place or situation where escape is difficult or embarrassing (Craske, 2000; Gorman, 2000).
44893
44894 ==Phobia==
44895 {{main|Phobia}}
44896
44897 This category involves a strong, irrational fear and avoidance of an object or situation. The person knows the fear is irrational, yet the anxiety remains. Phobic disorders differ from generalized anxiety disorders and panic disorders because there is a specific stimulus or situation that elicits a strong fear response. Imagine how it would feel to be so frightened by a spider that you would try to jump out of a speeding car to get away from it. This is how a person suffering from phobia might feel.
44898
44899 People with phobias have especially powerful imaginations, so they vividly anticipate terrifying consequences from encountering such feared objects as knives, bridges, blood, enclosed places, or certain animals. These individuals recognize that their fears are excessive and unreasonable but are generally unable to control their anxiety.
44900
44901 In addition to specific phobias, such as fears of knives, rats or spiders, there is another category of phobias known as social phobias. Individuals with this disorder experience intense fear of being negatively evaluated by others or of being publicly embarrassed because of impulsive acts. Almost everyone experiences &quot;stage fright&quot; when speaking or performing in front of a group. But people with social phobias become so anxious that performance is out of the question. In fact, their fear of public scrutiny and potential humiliaton becomes so pervasive that normal life is impossible (den Boer 2000; Margolis &amp; Swartz, 2001). Another social phobia is [[love-shyness]], which most adversely affects certain men. Those afflicted find themselves unable to initiate intimate adult relationships (Gilmartin 1987).
44902
44903 ==Obsessive-compulsive disorder==
44904 {{main|Obsessive-compulsive disorder}}
44905 Obsessive compulsive disorder is a type of anxiety disorder characterized by obsessions and/or compulsions. Obsessions are distressing, repetitive thoughts or images that the individual often realizes are senseless. Compulsions are repetitive behaviors that the person feels forced or compelled into doing, in order to relieve anxiety. One example would be the obsession of extreme cleanliness and fear of contamination, which may lead to the compulsion of having to wash one's hands hundreds of times a day. Another example may be the obsession that one's door is unlocked, which may lead to the constant checking and rechecking of doors.
44906
44907 ==Treatment overview==
44908
44909 Mainstream treatment for anxiety consists of the prescription of [[anxiolytic]] agents and/or referral to a [[Cognitive therapy|cognitive-behavioral]] therapist. There are indications that a combination of the two can be more effective than either one alone.
44910
44911 ===Prescription medication===
44912
44913 The acute symptoms of anxiety are most often controlled with anxiolytic agents such as [[benzodiazepine]]s. [[Diazepam]] (valium) was one of the first such drugs. Today we see a wide range of anti-anxiety agents that are based on benzodiazepines, although only two have been approved for panic attacks, [[Clonazepam|Klonopin]] and [[Alprazolam|Xanax]]. All benzodiazepines are physically addictive, and extended use should be carefully monitored by a physician, preferably a psychiatrist. It is very important that once placed on a regimen of regular benzodiazepine use, the user should not abruptly discontinue the medication.
44914
44915 Some of the [[Selective serotonin reuptake inhibitor|SSRI]]s (selective serotonin reuptake inhibitors) have been used with varying degrees of success to treat patients with chronic anxiety, the best results seen with those who exhibit symptoms of clinical depression and non-specific anxiety or general anxiety disorder concurrently. [[Beta blockers]] are also sometimes used to treat the somatic symptoms associated with anxiety, especially the shakiness of &quot;stage fright.&quot;
44916
44917 Many scientists believe that the benzodiazepines and other antianxiety drugs are greatly overprescribed and potentially addictive. See, for example, [[Fred Leavitt]]'s ''The REAL Drug Abusers'' (Rowman &amp; Littlefield, 2003). The addicitive nature of the benzodiazepine class became apparent in the mid 1960's when Valium (Diazepam), the first drug in the class to win FDA approval, resulted in thousands of people who quickly showed the classic symptoms of addiction when used for more than a week or two consistently.
44918
44919 The most addictive of the benzodiazepines appears to be [[Alprazolam|Xanax]] due to its rapid onset and short half life in the blood stream. Xanax also has the dubious distinction of being the only benzodiazepine that often requires hospitalization for discontinuation as a precaution against dangerous and sometimes fatal seizures as part of the detoxification process. No other medications in this class have shown this fatal side effect, although abrupt discontinuation of virtually any benzodiazepine can result in cravings, stomach pains, cramps, increased anxiety, insomnia and other signs of withdrawal.
44920
44921 ===Cognitive-behavioral therapy ===
44922
44923 [[Cognitive-behavioral therapy]] (CBT) is the most popular and effective form of [[psychotherapy]] used to treat anxiety. The goal of the cognitive-behavioral therapist is to decrease avoidance behaviors and help the patient develop coping skills. This
44924 may entail:
44925
44926 * Challenging false or self-defeating beliefs.
44927 * Developing a positive self-talk skill.
44928 * Developing negative thought replacement.
44929 * Systematic [[desensitization]], also called ''exposure'' (used for [[agoraphobia]] and [[OCD]] mainly).
44930 * Providing knowledge that will help the patient cope. (For example, someone who suffers from panic may be informed that fast, prolonged, heart palpitations are in themselves harmless).
44931
44932 Unlike prescription medication, the effectiveness of cognitive-behavioral therapy depends on various subjective factors, such as therapist competence. In addition to conventional therapy, there are at-home cognitive-behavioral programs sufferers can use as part of their treatment.
44933
44934 ===Other coping strategies===
44935
44936 A variety of over the counter supplements and medications are also used for their alleged anti-anxiety properties, however there is little scientific evidence to back up these claims. [[Kava Kava]] is a popular herbal treatment; small doses either taken regularly through the day or when early symptoms are noticed by the patient. [[Valerian root]] is also reputed to have anti-anxiety and sedative properties, as are [[passion fruit]], [[passion flower]], [[St. John's wort]], [[hops]], and [[chamomile]].
44937
44938 Popular nutritional supplements for dealing with anxiety include [[magnesium]] and [[B vitamins|B-complex]] vitamins.
44939
44940 Self help and relaxation techniques also play an important role in relieving anxiety symptoms. Self help includes:
44941
44942 * Proper diet - This includes reduction in consumption of caffeine, sugar, and generally an improvement of eating habits. Caffeine reduction should be gradual. Some anxiety sufferers report considerable reductions in their anxiety just from taking these measures.
44943 * Exercise - Some exercise is thought to relieve stress. Anxiety sufferers should note that rapid heart palpitations during exercise can trigger a panic attack, so it is probably better to gradually develop an exercise routine while on a cognitive-behavioral program.
44944 * Laughing
44945 * Breathing techniques and proper breathing - A diaphragmic breathing technique is often recommended (as opposed to chest breathing).
44946 * Proper sleep.
44947 * Relaxation techniques - A state of relaxation can be achieved with the help of relaxation tapes, [[Yoga]] or [[relaxation therapy]].
44948 * Stress management.- This may entail changes in lifestyle and time management. There are a number of books specialized in stress management.
44949 * Panic attack coping strategies - Specific strategies for dealing with panic episodes have been proposed, such as slow abdominal breathing and use of reassuring self-talk.
44950 * Search for meaning and purpose - Some experts have indicated that residual generalized anxiety can be the result of a sort of &quot;[[boredom]]&quot; about existence. They recommend looking for an occupation the sufferer finds meaningful.
44951
44952 [[Alcoholic beverage|Alcoholic drinks]] are probably the most widely used substance for the alleviation of anxiety. Anxiety sufferers are cautioned that alcohol is also a powerful depressant and has a plethora of dangerous and uncomfortable side effects in addition to being highly addictive.
44953
44954 ==Anxiety in palliative care==
44955 Some research has strongly suggested that treating anxiety in [[cancer]] patients improves their quality of life. The treatment generally consists of counselling, relaxation techniques or pharmacologically with benzodiazepines.
44956
44957 ==Anxiety and alternative medicine==
44958
44959 A 2002 [[Centers for Disease Control and Prevention|CDC]] [http://nccam.nih.gov/news/camsurvey.htm survey (see table 3 on page 9)] found that [[complementary and alternative methods]] were used to treat anxiety/[[clinical depression|depression]] by 4.5 percent of U.S. adults who used CAM.
44960
44961 ==Existential anxiety==
44962
44963 Theologians like [[Paul Tillich]] and psychologists like [[Sigmund Freud]] have characterized anxiety as the reaction to what Tillich called, &quot;The trauma of nonbeing.&quot; That is, the human comes to realize that there is a point at which they might cease to be (die), and their encounter with reality becomes characterized by anxiety. [[Religion]], according to both Tillich and Freud, then becomes a carefully-crafted coping mechanism in response to this anxiety.
44964
44965 ==Test anxiety==
44966
44967 Test anxiety is the uneasiness, apprehension, or nervousness felt by students who have a fear of failing an exam. Students suffering from test anxiety may experience any of the following: the association of grades with personal worth, embarrassment by a teacher, taking a class that is beyond their ability, fear of alienation from parents or friends, time pressures, or feeling a loss of control. Emotional, cognitive, behavioral, and physical components can all be present in test anxiety. Sweating, dizziness, headaches, racing heartbeats, nausea, fidgeting, and drumming on a desk are all common. An optimal level of arousal is necessary to best complete a task such as an exam; however, when the anxiety or level of arousal exceeds that optimum, it results in a decline in performance.
44968
44969 ==See also==
44970
44971 * [[Angst]]
44972 * [[Social anxiety]]
44973
44974 == References ==
44975 * Bourne, E. J. ''Anxiety and phobia workbook''
44976 * Rosen, J.B. &amp; Schulkin, J. (1998): &quot;From normal fear to pathological anxiety&quot;. ''Psychological Review''. '''105'''(2); 325-350.
44977 * Seligman, M.E.P., Walker, E.F. &amp; Rosenhan, D.L. (2001). ''Abnormal psychology'', (4th ed.) New York: W.W. Norton &amp; Company, Inc.
44978 * Zald, D.H., Hagen, M.C. &amp; Pardo, J.V. (2002). &quot;Neural correlates of tasting concentrated quinine and sugar solutions&quot;. ''J. Neurophysiol.'' '''87'''(2), 1068-75.
44979 * Zald, D.H. &amp; Pardo, J.V. (1997). &quot;Emotion, olfaction, and the human amygdala: amygdala activation during aversive olfactory stimulation.&quot; ''Proc Nat'l Acad Sci'' USA. '''94'''(8), 4119-24.
44980
44981 == External links ==
44982
44983 * [http://www.healthyplace.com/Communities/Anxiety/index.asp HealthyPlace.com Anxiety Community] - Comprehensive information on anxiety and panic, from causes of anxiety disorders to anxiety medications and alternative remedies. Anxiety tests, boards, journals, support groups.
44984 * [http://infobank.35sites.net/r.php?cat=07&amp;sub=anxiety Informative Articles About Anxiety]
44985 * [http://www.emedicine.com/emerg/topic35.htm eMedicine article on anxiety]
44986 * [http://www.isracast.com/tech_news/101005_tech.htm Blood test for anxiety] - An article
44987 * [http://www.anxietytreatment.com Anxiety] - Anxiety Information and Support
44988 * [http://www.mediets.com/anxiety.htm Anxiety disorders]
44989 [[Category:Symptoms]]
44990 [[Category:Motivation]]
44991
44992 [[cs:īŋŊzkost]]
44993 [[de:Angst]]
44994 [[es:Ansiedad]]
44995 [[fr:AnxiīŋŊtīŋŊ]]
44996 [[io:Anxio]]
44997 [[is:KvīŋŊīŋŊi]]
44998 [[nl:Faalangst]]
44999 [[no:Angst]]
45000 [[pt:Ansiedade]]
45001 [[pl:L?k]]
45002 [[sv:īŋŊngest]]</text>
45003 </revision>
45004 </page>
45005 <page>
45006 <title>A.A. Milne</title>
45007 <id>923</id>
45008 <revision>
45009 <id>15899435</id>
45010 <timestamp>2002-02-25T15:51:15Z</timestamp>
45011 <contributor>
45012 <ip>Conversion script</ip>
45013 </contributor>
45014 <minor />
45015 <comment>Automated conversion</comment>
45016 <text xml:space="preserve">#REDIRECT [[A. A. Milne]]
45017 </text>
45018 </revision>
45019 </page>
45020 <page>
45021 <title>A. A. Milne</title>
45022 <id>924</id>
45023 <revision>
45024 <id>40715805</id>
45025 <timestamp>2006-02-22T14:49:31Z</timestamp>
45026 <contributor>
45027 <username>Tv316</username>
45028 <id>523572</id>
45029 </contributor>
45030 <minor />
45031 <comment>Reverted edits by [[Special:Contributions/141.51.76.140|141.51.76.140]] to last version by DabMachine</comment>
45032 <text xml:space="preserve">[[Image:A._A._Milne.jpg|thumb|right| A.A. Milne.]]
45033 '''Alan Alexander Milne''' ([[January 18]], [[1882]] &amp;ndash; [[January 31]], [[1956]]), also known as '''A. A. Milne''', was a [[United Kingdom|British]] [[author]], best known for his [[book]]s about the animated [[teddy bear]], [[Winnie the Pooh|Winnie-the-Pooh]], and for various children's poems. Milne had made several reputations, most notably as a playwright, before the huge success of Pooh overshadowed all his previous work.
45034
45035 ==Biography==
45036
45037 Milne was born in [[Scotland]] but raised in [[London]] at a small private school in Kilburn run by his father John Vine Milne. One of his teachers was [[H. G. Wells]]. He attended [[Westminster School]] and [[Trinity College, Cambridge]] where he studied on a [[mathematics]] [[scholarship]]. While there, he edited and wrote for ''[[Granta]]'', a student magazine. He collaborated with his brother Kenneth and their articles appeared over the initials AKM. Milne's work came to the attention of the leading British humour magazine Punch, where Milne was to become a contributor and later assistant editor of ''[[Punch (magazine)|Punch]]''.
45038
45039 His son [[Christopher Robin Milne|Christopher Robin]] was born in [[1920]]. Milne joined the [[British Army]] in [[World War I]] but after the war wrote a denunciation of war titled ''[[Peace with Honour]]'' ([[1934]]) (which he retracted somewhat in [[1940]] with ''[[War with Honour]]'').
45040
45041 During the war, Milne was one of the most prominent critics of English comic writer [[P.G. Wodehouse]], who was captured at his country home in [[France]] by the [[Nazism|Nazis]] and imprisoned for a year. Wodehouse made radio broadcasts about his internment, which were broadcast from Berlin. Although the lighthearted broadcasts made fun of the Germans, Milne accused Wodehouse of committing an act of near [[treason]] by cooperating with his country's enemy. Wodehouse got some revenge by creating fatuous parodies of the Christopher Robin poems in some of his later stories.
45042
45043 In [[1925]], Milne bought a country home, [[Cotchford Farm]], in [[Hartfield]], [[East Sussex]]. He retired to the farm after brain surgery in [[1952]] left him an invalid.
45044
45045 == Literary career ==
45046
45047 Milne is most famous for his Pooh books about a boy named [[Christopher Robin]], after his son, and various characters inspired by his son's stuffed animals, most notably the bear named [[Winnie the Pooh|Winnie-the-Pooh]]. (Reputedly, a [[Canada|Canadian]] [[American Black Bear|black bear]] named Winnie (after [[Winnipeg, Manitoba|Winnipeg]]), used as a military mascot by the Royal Winnipeg Rifles, a Canadian Infantry Regiment in World War I and left to [[London Zoo]] after the war, is the source of the name.) [[E. H. Shepard]] illustrated the original Pooh books, using his own teddy, Growler (&quot;a magnificent bear&quot;) as the model; Christopher Robin's own toys are now under glass in New York.
45048
45049 The overwhelming success of his children's books was to become a source of considerable annoyance to Milne, whose self-avowed aim was to write whatever he pleased, and who until then had found a ready audience for each change of direction: he had freed pre-war Punch from its ponderous facetiousness; he had made a considerable reputation as a playwright (like his idol [[JM Barrie]]) on both sides of the Atlantic; he had produced a durable, character-led and witty piece of detective writing in ''The Red House Mystery'' -- indeed, his publisher was displeased when he announced his intention to write poems for children -- and he had never lacked an audience.
45050
45051 But once Milne had, in his own words, &quot;said Goodbye to all that in 70,000 words&quot;, the approximate length of the four children's books, he had no intention of producing a copy of a copy, given that one of the sources of inspiration, his son, was growing older.
45052
45053 His reception remained warmer in America than Britain, and he continued to publish novels and short stories, but by the late 1930s the audience for Milne's grown-up writing had largely vanished: he observed bitterly in his autobiography that a critic had said that the hero of his latest play (&quot;God help it&quot;) was simply &quot;Christopher Robin grown up ... what an obsession with me children are become!&quot;
45054
45055 Even his old home, ''Punch'', where the ''When We Were Very Young'' verses had first appeared, was ultimately to reject him, as Christopher Milne details in his autobiography ''The Enchanted Places'', though Methuen continued to publish whatever Milne wrote, including the long poem 'The Norman Church' and an assembly of articles entitled ''Year In, Year Out'' (which Milne likened to a benefit night for the author).
45056
45057 After Milne's death, the rights to the Pooh characters were sold by his widow, Daphne to [[the Walt Disney Company]], which has made a number of Pooh cartoon movies, as well as a large amount of Pooh-related merchandise. She also destroyed his papers.
45058
45059 Milne also wrote a number of poems, including ''Vespers'', ''They're Changing Guard at [[Buckingham Palace]]'', and ''King John's Christmas'', which were published in the books ''[[When We Were Very Young]]'' and ''[[Now We Are Six]]''.
45060 His poems have been parodied many times, including the books When We Were Rather Older and ''[[Now We Are Sixty]]''.
45061
45062 He also adapted [[Kenneth Grahame]]'s novel ''[[The Wind in the Willows]]'' for the stage as ''[[Toad of Toad Hall]]''. The title was an implicit admission that such chapters as ''The Piper at the Gates of Dawn'' could not survive translation to the theater.
45063
45064 == Biographies ==
45065
45066 Milne's friend Frank Swinnerton's book ''The Georgian Literary Scene'' contains a substantial section about him; his son has written several books of autobiography: ''The Enchanted Places'', in particular, is an account of his attempt to escape from the shadow of a famous father and a burdensome name; ''The Path Through the Trees'' continues the story into adult life. Ann Thwaites' ''AA Milne: His Life'' is an excellent and detailed biography, although it gives little space to the plays; a spin-off book tells the story for a younger readership, concentrating on Pooh.
45067
45068 ==Works==
45069 ===Novels===
45070 * ''[[Lovers in London]]'', ([[1905]]) (Some consider this more of a [[short story]] collection; Milne didn't like it and considered ''[[The Day's Play]]'' as his first book)
45071 * ''[[Once on a Time]]'', ([[1917]]) [a fairytale with an adult slant]
45072 * ''[[Mr. Pim Passes By]]'', ([[1921]])
45073 * ''[[The Red House Mystery]]'', ([[1921]])
45074 * ''[[Two People]]'', ([[1931]]) (Inside jacket claims this is Milne's first attempt at a novel.)
45075 * ''[[Four Days Wonder]]'', ([[1933]])
45076 * ''[[Chloe Marr]]'', ([[1946]])
45077
45078 ===Non-Fiction===
45079 * ''[[Peace with Honour]]'', ([[1934]])
45080 * ''[[It's Too Late Now]]'', ([[1939]]) (autobiography)
45081 * ''[[War with Honour]]'', ([[1940]])
45082 * ''[[Year In, Year Out]]'', ([[1952]])
45083
45084 Punch articles:
45085 * ''[[The Day's Play]]'', ([[1910]])
45086 * ''[[Once a Week]]'', ([[1914]])
45087 * ''[[The Holiday Round]]'', ([[1912]])
45088 * ''[[The Sunny Side]]'', ([[1921]])
45089 * ''[[Those Were the Days (A. A. Milne)|Those Were the Days]]'', ([[1929]] [selection of Punch pieces from the above four books]
45090
45091 Selections of newspaper articles and introductions to books by others:
45092 * ''[[Not That It Matters]]'', ([[1920]])
45093 * ''[[By Way of Introduction]]'', ([[1929]])
45094
45095 ===Story Collections for Children===
45096
45097 * ''[[Gallery of Children]]'', ([[1925]])
45098 * ''[[Winnie-the-Pooh]]'', ([[1926]])
45099 * ''[[The House at Pooh Corner]]'', ([[1928]])
45100
45101 Short Stories
45102 A Table by the Band
45103
45104 ===Poetry===
45105 For the Luncheon Interval [poems from Punch]
45106 * ''[[When We Were Very Young]]'', ([[1924]])
45107 * ''[[Now We Are Six]]'', ([[1927]])
45108 * ''[[Behind the Lines]]'', ([[1940]])
45109 * ''[[The Norman Church]]'', ([[1948]])
45110
45111 ===Plays===
45112 Milne wrote over 25 plays including:
45113 * ''[[Wurzel-Flummery]]'', ([[1917]])
45114 * ''[[Belinda (play)|Belinda]]'', ([[1918]])
45115 * ''[[The Boy Comes Home]]'', ([[1918]])
45116 * ''[[Make-Believe (play)|Make-Believe]]'', ([[1918]]) [a play for children]
45117 * ''[[The Camberley Triangle]]'', ([[1919]])
45118 * ''[[Mr. Pim Passes By]]'', ([[1919]])
45119 * ''[[The Red Feathers]]'', ([[1920]])
45120 * ''[[The Romantic Age]]'', ([[1920]])
45121 * ''[[The Stepmother (play)|The Stepmother]]'', ([[1920]])
45122 * ''[[The Truth about Blayds]]'', ([[1920]])
45123 * ''[[The Dover Road]]'', ([[1921]])
45124 * ''[[The Lucky One]]'', ([[1922]])
45125 * ''[[The Artist: a Duologue]]'', ([[1923]])
45126 * ''[[Give Me Yesterday]]'', ([[1923]]) [aka Success in the UK]
45127 * ''[[The Great Broxopp]]'', ([[1923]])
45128 * ''[[Ariadne]]'', ([[1924]])
45129 * ''[[The Man in the Bowler Hat]]'', ([[1924]]) [one act]
45130 * ''[[To Have the Honour]]'', ([[1924]])
45131 * ''[[Portrait of a Gentleman in Slippers]]'', ([[1926]])
45132 * ''[[Success; a play in three acts]]'', ([[1926]])
45133 * ''[[Miss Marlow at Play]]'', ([[1927]])
45134 * ''[[The Fourth Wall]] or [[The Perfect Alibi]]'', ([[1928]])
45135 * ''[[The Ivory Door]]'', ([[1929]])
45136 * ''[[Toad of Toad Hall]]'', ([[1929]]) (Adaptation of [[The Wind in the Willows]])
45137 * ''[[Other People's Lives]]'', ([[1933]]) [aka They Don't Mean Any Harm]
45138 * ''[[Miss Elizabeth Bennett]]'' (based on [[Pride and Prejudice]]?, ([[1936]])
45139 * ''[[Sarah Simple]]'', ([[1937]])
45140 * ''[[Gentleman Unknown]]'', ([[1938]])
45141 * ''[[The Ugly Duckling (play)|The Ugly Duckling]]'' ([[1946]])
45142 * ''[[Before the Flood (A. A. Milne)|Before the Flood]]'', ([[1951]])
45143 * ''[[Michael and Mary]]''
45144
45145 == Books on Pooh and Milne ==
45146
45147 * Crews, Frederick, ''The Pooh Perplex'', Chicago &amp; London, University of Chicago Press, 2003 (1st ed. 1963) ISBN 0226120589
45148 * Crews, Frederick, ''Postmodern Pooh'', New York, North Point Press, 2001 ISBN 0865476543
45149 * [[Benjamin Hoff|Hoff, Benjamin]], ''[[The Tao of Pooh]]'', New York, Penguin, 1983 ISBN 0140067477
45150 * [[Benjamin Hoff|Hoff, Benjamin]], ''[[The Te of Piglet]]'', New York, Dutton Adult, 1992 ISBN 0525934960
45151 * Milne, Christopher Robin and A. R. Melrose (ed.), ''Beyond the World of Pooh: Selections from the Memoirs of Christopher Milne'', New York, Dutton, 1998 ISBN 0525458883
45152 * Thwaite, Ann, ''A. A. Milne: His Life'', New York, Random House, 1990 ISBN 0394587243
45153 * Tyerman Williams, John, ''Pooh and the Philosophers: In Which It Is Shown That All of Western Philosophy Is Merely a Preamble to Winnie-The-Pooh'', London, Methuen, 1995 ISBN 0525455205
45154 * Wullschlager, Jackie, ''Inventing Wonderland: The Lives and Fantasies of Lewis Carroll, Edward Lear, J. M. Barrie, Kenneth Grahame and A. A. Milne'', New York &amp; Detroit, The Free Press, 1996 ISBN 0684822865
45155
45156 == Films ==
45157 * ''The Fourth Wall'' was made into a film called ''[[The Perfect Alibi (film)|The Perfect Alibi]]''
45158 * ''[[Michael and Mary (film)|Michael and Mary]]'' was filmed in 1932
45159
45160 == External links ==
45161 {{wikiquote}}
45162 * {{gutenberg author|id=A._A._Milne|name=A. A. Milne}}
45163 * [http://books.guardian.co.uk/extracts/story/0,,1667391,00.html Milne extract in the Guardian]
45164
45165 [[Category:1882 births|Milne, A. A.]]
45166 [[Category:1956 deaths|Milne, A. A.]]
45167 [[Category:Alumni of Trinity College, Cambridge|Milne, A. A.]]
45168 [[Category:British Army officers|Milne, A. A.]]
45169 [[Category:British novelists|Milne, A. A.]]
45170 [[Category:British children's writers|Milne, A. A.]]
45171 [[Category:Old Westminsters|Milne, A. A.]]
45172 [[Category:Winnie-the-Pooh|Milne, A. A.]]
45173
45174 [[bg:АĐģŅŠĐŊ МиĐģĐŊ]]
45175 [[cs:Alexander A. Milne]]
45176 [[de:A. A. Milne]]
45177 [[es:Alan Alexander Milne]]
45178 [[eo:A. A. MILNE]]
45179 [[it:Alan Alexander Milne]]
45180 [[he:אלן אלכסנדר מילן]]
45181 [[nl:A.A. Milne]]
45182 [[ja:AãƒģAãƒģミãƒĢãƒŗ]]
45183 [[no:A. A. Milne]]
45184 [[pl:Alan Alexander Milne]]
45185 [[ru:МиĐģĐŊ, АĐģĐ°ĐŊ АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€]]
45186 [[fi:A. A. Milne]]
45187 [[sv:A.A. Milne]]</text>
45188 </revision>
45189 </page>
45190 <page>
45191 <title>Alumni</title>
45192 <id>925</id>
45193 <revision>
45194 <id>33789294</id>
45195 <timestamp>2006-01-04T00:59:13Z</timestamp>
45196 <contributor>
45197 <username>Dmlandfair</username>
45198 <id>296817</id>
45199 </contributor>
45200 <text xml:space="preserve">#REDIRECT [[Alumnus/a]]</text>
45201 </revision>
45202 </page>
45203 <page>
45204 <title>Alumna</title>
45205 <id>926</id>
45206 <revision>
45207 <id>33791606</id>
45208 <timestamp>2006-01-04T01:18:24Z</timestamp>
45209 <contributor>
45210 <username>Dmlandfair</username>
45211 <id>296817</id>
45212 </contributor>
45213 <comment>un-double redirect</comment>
45214 <text xml:space="preserve">#REDIRECT [[alumnus/a]]</text>
45215 </revision>
45216 </page>
45217 <page>
45218 <title>Addiction</title>
45219 <id>927</id>
45220 <revision>
45221 <id>42142122</id>
45222 <timestamp>2006-03-04T02:29:08Z</timestamp>
45223 <contributor>
45224 <username>Onealej</username>
45225 <id>1009778</id>
45226 </contributor>
45227 <comment>/* Criticism */</comment>
45228 <text xml:space="preserve">{{redirect|Addictive|the song by [[Truth Hurts]]|[[Addictive (song)]]}}
45229 '''Addiction''' is a [[compulsion]] to repeat a behaviour regardless of its consequences. A person who is addicted is sometimes called an '''addict'''.
45230
45231 There is a lack of consensus as to what may properly be termed 'addiction.' Some within the medical community maintain a rigid definition of addiction and contend that the term is only applicable to a process of escalating drug or alcohol use as a result of repeated exposure. However, addiction is often applied to compulsive [[behavior]]s other than drug use, such as overeating or gambling. In all cases, the term addiction describes a chronic pattern of behaviour that continues despite the direct or indirect adverse consequences that result from engaging in the behavior. It is quite common for an addict to express the desire to stop the behaviour, but find himself or herself unable to cease.
45232
45233 Addiction is often characterized by a craving for more of the drug or behavior, increased [[physiological tolerance]] to exposure, and [[withdrawal]] symptoms in the absence of the stimulus. Many drugs and behaviours that provide either pleasure or relief from pain pose a risk of addiction or [[chemical dependency|dependency]].
45234
45235 ==Terminology and usage==
45236 The medical community now makes a careful theoretical distinction between ''physical dependence'' (characterized by symptoms of [[withdrawal]]) and ''psychological addiction'' (or simply ''addiction''). Addiction is now narrowly defined as &quot;uncontrolled, compulsive use despite harm&quot;; if there is no harm being suffered by, or damage done to, the patient or another party, then clinically it may be considered compulsive, but within this narrow definition it is not categorized as &quot;addiction&quot;. In practice, however, the two kinds of addiction are not always easy to distinguish. Addictions often have both physical and psychological components.
45237
45238 There is also a lesser known situation called [[pseudo-addiction]], where a patient will exhibit drug-seeking behaviour reminiscent of psychological addiction, however in this case, the patients tend to have genuine pain or other symptoms that have been undertreated. Unlike true psychological addiction, however, these behaviours tend to stop as soon as their pain is adequately treated.
45239 The term &quot;''[[dry drunk]]''&quot; is sometimes attached to patterns of behavior that persist after an object of dependence and/or misuse
45240 has been removed from daily living routines. This type of behaviour is fairly common in early recovery for those recovering from substance misuse.
45241
45242 The obsolete term ''physical addiction'' is deprecated, because of its connotations. In modern pain management with opioids: physical dependence is nearly universal but addiction is rare. Some of the highly addictive drugs (''[[hard drug]]s''), such as [[cocaine]], induce relatively little physical dependence.
45243
45244 Not all doctors do agree on what addiction or dependency is*, particularly because traditionally, addiction has been defined as being possible only to a psychoactive substance (for example [[alcoholism|alcohol]], [[Tobacco smoking|tobacco]], or [[drug addiction|drugs]]), which is ingested, crosses the [[blood-brain barrier]], and alters the natural chemical behaviour of the brain temporarily. Many people, both psychology professionals and laypersons, now feel that there should be accommodation made to include psychological dependency on such things as [[gambling]], [[overeating|food]], [[hypersexuality|sex]], [[pornography addiction|pornography]], [[computer addiction|computers]], [[workaholic|work]], and [[shopping]] / spending. However, these are things or tasks which, when used or performed, cannot cross the blood-brain barrier and hence, do not fit into the traditional view of addiction. Symptoms mimicking withdrawal may occur with abatement of such behaviours; however, it is said by those who adhere to a traditionalist view that these withdrawal-like symptoms are not strictly reflective of an addiction, but rather of a behavioural disorder. In spite of traditionalist protests and warnings that overextension of definitions may cause the wrong treatment to be used (thus failing the person with the behavioural problem), popular media, and some members of the field, do represent the aforementioned behavioural examples as addictions.
45245 *note: the Diagnostic Statistical Manual (DSM IVR) specifically spells out criteria to define abuse and dependence conditions.
45246
45247 ==Varied forms of addiction==
45248 ===Physical dependency===
45249 ''Physical dependency'' on a substance is defined by the appearance of characteristic [[withdrawal]] symptoms when the drug is suddenly discontinued. While opioids, benzodiazepines, barbiturates, alcohol and nicotine are all well known for their ability to induce physical dependence, other drugs share this property that are not considered addictive: cortisone, [[beta-blockers]] and most antidepressants are examples. So while physical dependency can be a major factor in the psychology of addiction, the primary attribute of an addictive drug is its ability to induce euphoria while causing harm.
45250
45251 Some drugs induce [[withdrawal|physical dependence]] or [[physiological tolerance]] - but not addiction - for example many [[laxative]]s, which are not psychoactive; nasal [[decongestants]], which can cause rebound congestion if used for more than a few days in a row; and some [[antidepressants]], most notably [[Effexor]] and [[Paxil]], as they have quite short [[half-lives]], so stopping them abruptly causes a more rapid change in the neurotransmitter balance in the brain than many other antidepressants. Many non-addictive prescription drugs should not be suddenly stopped, so a doctor should be consulted before abruptly discontinuing them.
45252
45253 The speed with which a given individual becomes addicted to various substances varies with the substance, the frequency of use, the means of ingestion, and the individual. Some [[alcoholic]]s report they exhibited alcoholic tendencies from the moment of first intoxication, while most people can drink socially without ever becoming addicted. Because of this variation, some people hypothesise that physical dependency and addiction are in large part genetically moderated. [[Nicotine]] is one of the most addictive [[psychoactive]] substances: although 35 million smokers make an attempt to quit every year, less than 7% achieve even one year of abstinence.*
45254
45255 While [[eating disorders]], like other behavioral addictions, are usually considered primarily psychological disorders, they are sometimes treated as addictions, especially if they include elements of addictive behavior. Sufferers may experience withdrawal or withdrawal-like symptoms if they alter their diet suddenly. This suggests that some common food substances, especially [[chocolate]], [[sugar]], [[salt]] and white flour may have the potential for addiction. In addition, frequent [[Wiktionary:overeat|overeat]]ing can also be considered an addiction.
45256
45257 * From the NIDA research report on nicotine addiction.
45258
45259 ===Psychological addiction===
45260 ''[[Psychological addictions]]'' are a dependency of the mind, and lead to psychological withdrawal symptoms. Addictions can theoretically form for any rewarding behavior, or as a habitual means to avoid undesired activity, but typically they only do so to a clinical level in individuals who have emotional, social, or [[Mental illness|psychological dysfunctions]], taking the place of normal positive stimuli not otherwise attained (see [[Rat Park]]).
45261
45262 == Addiction and drug control legislation ==
45263
45264 Most countries have legislation which brings various drugs and drug-like [[substance]]s under the control of licensing systems. Typically this legislation covers any or all of the opiates, cannabinoids, cocaine, barbiturates, hallucinogens and a variety of more modern synthetic drugs, and unlicensed production, supply or possession is a criminal offence.
45265
45266 Usually, however, drug classification under such legislation is not related simply to addictiveness. The substances covered often have very different addictive properties. Some are highly prone to cause physical dependency, whilst others rarely cause any form of compulsive need whatsoever.
45267
45268 Also, although the legislation may be justifiable on moral or public health grounds, it can make addiction or dependency a much more serious issue for the individual: reliable supplies of a drug become difficult to secure, and the individual becomes vulnerable to both criminal abuse and legal punishment.
45269
45270 ==Methods of care==
45271
45272 Early editions of the [[American Psychiatric Association|American Psychiatric Association's]] ''[[Diagnostic and Statistical Manual of Mental Disorders]]'' (DSM) described addiction as a physical dependency to a substance that resulted in withdrawal symptoms in its absence. Recent editions, including DSM-IV, have moved toward a diagnostic instrument that classifies such conditions as dependency, rather than addiction. The [[American Society of Addiction Medicine]] recommends treatment for people with chemical dependency based on [[patient placement criteria]] (currently listed in PPC-2), which attempt to match levels of care according to clinical assessments in six areas, including:
45273 * Acute intoxication and/or withdrawal potential
45274 * Biomedical conditions or complications
45275 * Emotional/behavioral conditions or complications
45276 * Treatment acceptance/resistance
45277 * [[Relapse]] potential
45278 * Recovery environment
45279
45280 Some medical systems, including those of at least 15 states of the United States, refer to an [[Addiction Severity Index]] to assess the severity of problems related to substance use. The index assesses problems in six areas: medical, employment/support, alcohol and other drug use, legal, family/social, and psychiatric.
45281
45282 While addiction or dependency is related to seemingly uncontrollable urges, and may have roots in genetic predisposition, treatment of dependency is always classified as behavioral medicine. Early treatment of acute withdrawal often includes medical detoxification, which can include doses of [[anxiolytic]]s to reduce symptoms of withdrawal. In chronic opiate addiction, a surrogate drug such as [[methadone]] is sometimes offered as a form of [[opiate replacement therapy]]. But treatment approaches universally focus on the individual's ultimate choice to pursue an alternate course of action.
45283
45284 Therapists often classify patients with chemical dependencies as either interested or not interested in changing. Treatments usually involve planning for specific ways to avoid the addictive stimulus, and therapeutic interventions intended to help a client learn healthier ways to find satisfaction. Clinical leaders in recent years have attempted to tailor intervention approaches to specific influences that effect addictive behavior, using therapeutic interviews in an effort to discover factors that led a person to embrace unhealthy, addictive sources of pleasure or relief from pain.
45285
45286 {| class=&quot;prettytable&quot; Cellpadding=4 width=60% align=center bgcolor=&quot;FOF8FF&quot;
45287 |- style=&quot;background-color:#AFEEEE;font-size:large&quot;
45288 !colspan=3|'''Treatment Modality Matrix'''
45289 |- style=&quot;background-color:#BFEFFF&quot;
45290 !'''''Behavioral Pattern'''''
45291 !'''''Intervention'''''
45292 !'''''Goals'''''
45293 |-
45294 |Low self esteem, anxiety, verbal hostility
45295 |Relationship therapy, client centered approach
45296 |Increase self esteem, reduce hostility and anxiety
45297 |-
45298 |Defective personal constructs, ignorance of interpersonal means
45299 |Cognitive restructuring including directive and group therapies
45300 |Insight
45301 |-
45302 |Focal anxiety such as fear of crowds
45303 |Desensitization
45304 |Change response to same cue
45305 |-
45306 |Undesirable behaviors, lacking appropriate behaviors
45307 |Aversive conditioning, operant conditioning, counter conditioning
45308 |Eliminate or replace behavior
45309 |-
45310 |Lack of information
45311 |Provide information
45312 |Have client act on information
45313 |-
45314 |Difficult social circumstances
45315 |Organizational intervention, environmental manipulation, family counseling
45316 |Remove cause of social difficulty
45317 |-
45318 |Poor social performance, rigid interpersonal behavior
45319 |Sensitivity training, communication training, group therapy
45320 |Increase interpersonal repertoire, desensitization to group functioning
45321 |-
45322 |Grossly bizarre behavior
45323 |Medical referral
45324 |Protect from society, prepare for further treatment
45325 |- style=&quot;text-align:center;font-size:small&quot;
45326 |colspan=3|Adapted from: ''Essentials of Clinical Dependency Counseling'', Aspen Publishers
45327 |}
45328
45329 ==Diverse explanations==
45330 Several explanations (or &quot;models&quot;) have been presented to explain addiction:
45331
45332 *The ''[[moral]] model'' states that addictions are the result of human weakness, and are defects of [[moral character|character]]. Those who advance this model do not accept that there is any biological basis for addiction. They often have scant sympathy for people with serious addictions, believing either that a person with greater moral strength could have the force of will to break an addiction, or that the addict demonstrated a great moral failure in the first place by starting the addiction. The moral model is widely applied to dependency on illegal substances, perhaps purely for social or political reasons, but is no longer widely considered to have any therapeutic value. Elements of the moral model, especially a focus on individual choices, have found enduring roles in other approaches to the treatment of dependencies.
45333
45334 *The ''[[opponent-process]] model'' generated by Richard Soloman states that for every psychological event A will be followed by its opposite psychological event B. For example, the pleasure one experiences from heroin is followed by an opponent process of withdrawal, or the terror of jumping out of an airplane is rewarded with intense pleasure when the parachute opens. This model is related to the opponent process color theory. If you look at the color red then quickly look at a gray area you will see green. There are many examples of opponent processes in the nervous system including taste, motor movement, touch, vision, and hearing. Opponent-processes occurring at the sensory level may translate &quot;down-stream&quot; into addictive or habit-forming behavior.
45335
45336 *The ''[[disease]] model'' holds that addiction is an illness, and comes about as a result of the impairment of healthy [[neurochemistry|neurochemical]] or behavioral processes. While there is some dispute among clinicians as to the reliability of this model, it is widely employed in therapeutic settings. Most treatment approaches involve recognition that dependencies are behavioral dysfunctions, and thus involve some element of physical or mental disease.
45337
45338 *The ''[[genetics|genetic]] model'' posits a genetic predisposition to certain behaviors. It is frequently noted that certain addictions &quot;run in the family,&quot; and while researchers continue to explore the extent of genetic influence, there is strong evidence that genetic predisposition is often a factor in dependency. Researchers have had difficulty assessing differences, however, between social causes of dependency learned in family settings and genetic factors related to [[heredity]].
45339
45340 *The ''[[culture|cultural]] model'' recognizes that the influence of culture is a strong determinant of whether or not individuals fall prey to certain addictions. For example, alcoholism is rare among [[Saudi Arabia]]ns, where obtaining alcohol is difficult and using alcohol is prohibited. In North America, on the other hand, the incidence of [[gambling]] addictions soared in the last two decades of the [[20th century]], mirroring the growth of the gaming industry. Half of all patients diagnosed as alcoholic are born into families where alcohol is used heavily, suggesting that familiar influence, genetic factors, or more likely both, play a role in the development of addiction.
45341
45342 *The ''blended model'' attempts to consider elements of all other models in developing a therapeutic approach to dependency. It holds that the mechanism of dependency is different for different individuals, and that each case must be considered on its own merits.
45343
45344 *The ''[[habit]] model'' proposed by [[Thomas Szasz]] questions the very concept of &quot;addiction.&quot; He argues that addiction is a metaphor, and that the only reason to make the distinction between habit and addiction &quot;is to persecute somebody.&quot; [http://www.szasz.com/drugsandfreedom1973.html (Szasz, 1973)]
45345
45346 *The genetic neurobiological model called Hypoism. Read about the science behind this and its implications at http://www.nvo.com/hypoism. The scientific argument is at: http://www.nvo.com/hypoism/hypoismhypothesis/
45347
45348 ==Neurobiological basis==
45349 The development of addiction is thought to involve a simultaneous process of 1) increased focus on and engagement in a particular behavior and 2) the attenuation or &quot;shutting down&quot; of other behaviors. For example, animals allowed the unlimited ability to self-administer psychoactive drugs will show such a strong preference that they will forgo food, sleep, and sex for continued access. The neuro-anatomical correlate of this that the brain regions involved in driving goal-directed behavior grow increasingly selective for particular motivating stimuli and rewards, to the point that the brain regions involved in the inhibition of behavior can no longer effectively send &quot;stop&quot; signals. A good analogy is to imagine flooring the gas pedal in a car with very bad brakes. In this case, the limbic system is thought to be the major &quot;driving force&quot; and the orbitofrontal cortex is the substrate of the top-down inhibition.
45350
45351 A specific portion of the limbic circuit known as the mesolimbic dopaminergic system is hypothesized to play an important role in translation of motivation to motor behavior- and reward-related learning in particular. It is typically defined as the [[ventral tegmental area]] (VTA), the nucleus accumbens, and the bundle of dopamine-containing fibres that connecting them. This system is commonly implicated in the seeking out and consumption of rewarding stimuli or events, such as sweet-tasting foods or sexual interaction. However, ita importance to addiction research goes beyond its role in &quot;natural&quot; motivation: while the specific site or mechanism of action may differ, all known drugs of abuse have the common effect in that they elevate the level of dopamine in the nucleus accumbens. This may happen directly, such as through blockade of the dopamine re-uptake mechanism (see [[cocaine]]). It may also happen indirectly, such as through stimulation of the dopamine-containing neurons of the VTA that synapse onto neurons in the accumbens (see [[opiates]]). The euphoric effects of drugs of abuse are thought to be a direct result of the acute increase in accumbal dopamine.
45352
45353 The human body has a natural tendency to maintain [[homeostasis]], and the central nervous system is no exception. Chronic elevation of dopamine will result in a decrease in the number of dopamine [[Transmembrane receptor|receptors]] available in a process known as [[downregulation]]. The decreased number of receptors changes the permeability of the cell membrane located post-synaptically, such that the post-synaptic neuron is less excitable- ie, less able to respond to chemical signalling with an electrical impulse, or [[action potential]]. It is hypothesized that this dulling of the responsiveness of the brain's reward pathways contributes to the inability to feel pleasure, known as [[anhedonia]], often observed in addicts. The increased requirement for dopamine to maintain the same electrical activity is the basis of both [[physiological tolerance]] and [[withdrawal]] associated with addiction.
45354
45355 Downregulation can be classically conditioned. If a behavior consistently occurs in the same environment or contigently with a particular cue, the brain will adjust to the presence of the conditioned cues by decreasing the number of available receptors in the absence of the behavior. It is thought that many drug overdoses are not the result of a user taking a higher dose than is typical, but rather that the user is administering the same dose in a new environment.
45356
45357 In cases of physical dependency on [[depressant]]s of the [[central nervous system]] such as opioids, [[barbiturate]]s, or alcohol, the absence of the substance can lead to symptoms of severe physical discomfort. Withdrawal from alcohol or sedatives such as barbiturates or benzodiazepines (valium-family) can result in seizures and even death. By contrast, withdrawal from opioids, which can be extremely uncomfortable, is rarely if ever life-threatening. In cases of dependence and withdrawal, the body has become so dependent on high concentrations of the particular chemical that it has stopped producing its own natural versions (endogenous ligands) and instead produces opposing chemicals. When the addictive substance is withdrawn, the effects of the opposing chemicals can become overwhelming. For example, chronic use of sedatives (alcohol, [[barbiturate]]s, or benzodiazepines) results in higher chronic levels of stimulating [[neurotransmitter]]s such as glutamate. Very high levels of glutamate kill nerve cells (called excitatory neurotoxicity).
45358
45359 ==Criticism==
45360 [[Levi Bryant]] has criticized the term and concept of ''addiction'' as counterproductive in psychotherapy as it defines a patient's identity and makes it harder to become a ''non-addict''. &quot;The signifier 'addict' doesn't simply describe what I am, but initiates a way of relating to myself that informs how I relate to others.&quot;
45361
45362 A stronger form or criticism comes from [[Thomas Szasz]], who denies that addiction is a psychiatric problem. In many of his works, he argues that addiction is a choice, and that a drug addict is one who simply prefers a socially taboo substance rather than, say, a low risk lifestyle. In 'Our Right to Drugs', Szasz cites the biography of [[Malcolm X]] to corroborate his economic views towards addiction: Malcolm claimed that quitting cigarettes was harder than shaking his heroine addiction. Szasz postulates that humans always have a choice, and it is foolish to call someone an 'addict' just becuase they prefer a [[drug]] induced [[euphoria]] to a more popular and socially welcome lifestyle.
45363
45364 A similar conclusion to that of Thomas Szasz may also be reached through very different [[reasoning]]. This is the somewhat extreme, yet tenanable, view that humans do not have [[free will]]. From this perspective, being 'addicted' to a substance is no different than being 'addicted' to a job that you work everyday. Without the assumption of free will, every human action is the result of the naturally occuring reactions of particle matter in the physical brain, and so there is no longer room for the concept of 'addiction', since, in this view, choice is an illusion of the [[human]] experience.
45365
45366 ==Casual addiction==
45367 The word addiction is also sometimes used colloquially to refer to something a person has a passion for. Such &quot;addicts&quot; include:
45368
45369 *[[Bibliophilia|Biblioholics]]
45370 *[[Chocoholic]]s
45371 *[[Workaholic]]s
45372
45373 ==See also==
45374 * [[12-step programs]]
45375 * [[Alcoholics Anonymous]]
45376 * [[Narcotics Anonymous]]
45377 * [[Moderation Management]]
45378 * [[Cold turkey]]
45379 * [[Junkie]]
45380 * [[Love-hate relationship]]
45381 * [[Tanha]]
45382 * [[YES Recovery]]
45383 * [[Higher order desire]]
45384 * [[Sexual addiction]]
45385 * [[Drug addiction]]
45386 * [[Computer addiction]]
45387
45388 ==External links==
45389 * [http://www.nvo.com/hypoism/hypoismhypothesis/ Hypoism Hypothesis]
45390 * [http://www.nature.com/neuro/focus/addiction/index.html nature neurosience - Focus on Neurobiology of addiction] (freely available online through January 2006)
45391 * [http://www.nida.nih.gov/ National Institute on Drug Abuse]
45392 * [http://www.asam.org/pain/definitions2.pdf Definitions Related to the Use of Opioids for the Treatment of Pain] (2001) - a joint statement by the American Academy of Pain Medicine, the American Pain Society, and the American Society of Addiction Medicine
45393 * [http://www.who.int/substance_abuse/terminology/who_lexicon/en/ World Health Organization terminology for substance use and dependence]
45394 * [http://www.narecovery.org/ Narcotics Anonymous Help for Addicts by addicts]
45395 * [http://www.alcoholicsanonymous.com/ Alcoholics Anonymous]
45396 * [http://my-addiction.info/Four_Stages_of_Breaking_an_Addiction_Caryl_Ehrlich.html Four Stages of Breaking an Addiction]
45397 * [http://www.marijuana-anonymous.org Marijuana Anonymous]
45398 * [http://www.Methadone-Anonymous.org Methadone Anonymous World Services, Inc.]
45399 * [http://www.MethadoneSupport.org Methadone &amp; Methadone Anonymous Support]
45400 * [http://www.nicd.us/ National Institute on Chemical Dependency]
45401 *[http://navisite.collegeclub.com/servlet/channels.ChannelArticleServlet?articleid=4461&amp;areaid=8&amp;grid-messageboard-page=1 Harrowing Heroin by Geoff Morton]
45402 * [http://www.addictioninfo.org/ AddictionInfo contemporary addiction information]
45403 * [http://www.drugabuse.gov/researchreports/nicotine/nicotine.html/ NIDA research report on Nicotine Addiction]
45404
45405 [[Category:Addiction|*]]
45406 [[Category:Motivation]]
45407 [[Category:Unsolved problems in neuroscience]]
45408
45409 [[ca:AddicciÃŗ]]
45410 [[cs:ZÃĄvislost]]
45411 [[de:Sucht]]
45412 [[es:AdicciÃŗn]]
45413 [[fr:Addiction]]
45414 [[ko:ė¤‘독]]
45415 [[hr:Ovisnost]]
45416 [[is:Fíkn]]
45417 [[he:ה×Ēמכרו×Ē]]
45418 [[nl:Verslaving]]
45419 [[ja:䞝存į—‡]]
45420 [[pl:UzaleÅŧnienie]]
45421 [[sv:Beroende]]</text>
45422 </revision>
45423 </page>
45424 <page>
45425 <title>Axiom</title>
45426 <id>928</id>
45427 <revision>
45428 <id>41064244</id>
45429 <timestamp>2006-02-24T20:53:35Z</timestamp>
45430 <contributor>
45431 <ip>141.210.100.235</ip>
45432 </contributor>
45433 <text xml:space="preserve">{{otheruses}}
45434
45435 In [[epistemology]], an '''axiom''' is a [[self-evidence|self-evident]] truth upon which other knowledge must rest, from which other knowledge is built up. Not all [[epistemologist]]s agree that any axioms, understood in that sense, exist.
45436
45437 In [[mathematics]], an '''axiom''' is ''not'' necessarily a ''self-evident'' truth, but rather a formal logical expression used in a deduction to yield further results. Mathematics distinguishes two types of axioms: [[#Logical axioms|logical axioms]] and [[#Non-logical axioms|non-logical axioms]].
45438
45439 ==Etymology==
45440
45441 The word ''axiom'' comes from the [[Greek language|Greek]] word
45442 &amp;alpha;&amp;xi;&amp;iota;&amp;omega;&amp;mu;&amp;alpha; (''axioma''), which means that which is deemed worthy or fit or that which is considered [[self-evidence|self-evident]]. The word comes from &amp;alpha;&amp;xi;&amp;iota;&amp;omicron;&amp;epsilon;&amp;iota;&amp;nu; (''axioein''), meaning to deem worthy, which in turn comes from &amp;alpha;&amp;xi;&amp;iota;&amp;omicron;&amp;sigmaf; (''axios''), meaning worthy. Among the [[ancient Greece|ancient Greek]] [[philosopher]]s an axiom was a claim which could be seen to be true without any need for proof.
45443
45444 ==Mathematics==
45445
45446 In the field of [[mathematical logic]], a clear distinction is made between two notions of axioms: '''logical axioms''' and '''non-logical axioms'''.
45447
45448 ===Logical axioms===
45449
45450 These are certain [[Mathematical logic#Definition:Formula|formulas]] in a [[Mathematical logic#Definition:FirstOrderLanguage|language]] that are [[Mathematical logic#Definition:ValidFormula|universally valid]], that is, formulas that are [[Mathematical logic#Definition:Satisfaction|satisfied]] by every [[Mathematical logic#Definition:Structure|structure]] under every [[Mathematical logic#Definition:VariableAssignmentFunction|variable assignment function]] . In colloquial terms, these are statements that are ''true'' in any possible universe, under any possible interpretation and with any assignment of values. Usually one takes as logical axioms some minimal set of tautologies that is sufficient for proving all [[tautology|tautologies]] in the language.
45451
45452 ====Examples====
45453
45454 In the [[propositional calculus]] it is common to take as logical axioms all formulas of the following forms, where &lt;math&gt;\phi&lt;/math&gt;, &lt;math&gt;\psi&lt;/math&gt;, and &lt;math&gt;\chi&lt;/math&gt; can be any formulas of the language:
45455
45456 #&lt;math&gt;\phi \to (\psi \to \phi)&lt;/math&gt;
45457 #&lt;math&gt;(\phi \to (\psi \to \chi)) \to ((\phi \to \psi) \to (\phi \to \chi))&lt;/math&gt;
45458 #&lt;math&gt;(\lnot \phi \to \lnot \psi) \to (\psi \to \phi)&lt;/math&gt;
45459
45460 Each of these patterns is an ''[[axiom schema]]'', a rule for generating an infinite number of axioms. For example, if &lt;math&gt;A&lt;/math&gt;, &lt;math&gt;B&lt;/math&gt;, and &lt;math&gt;C&lt;/math&gt; are propositional variables, then &lt;math&gt;A \to (B \to A)&lt;/math&gt; and &lt;math&gt;(A \to \lnot B) \to (C \to (A \to \lnot B))&lt;/math&gt; are both instances of axiom schema 1, and hence are axioms. It can be shown that with only these three axiom schemata and ''[[modus ponens]]'', one can prove all tautologies of the propositional calculus. It can also be shown that no pair of these schemata is sufficient for proving all tautologies with ''modus ponens''.
45461
45462 These axiom schemata are also used in the [[predicate calculus]], but additional logical axioms are needed.
45463
45464 &lt;div style=&quot;border-left: 3px double #CCCCCC; padding-left: 5px; &quot;&gt;
45465 '''Example.''' Let &lt;math&gt;\mathfrak{L}\,&lt;/math&gt; be a first-order language. For each variable &lt;math&gt;x\,&lt;/math&gt;, the formula
45466
45467 &lt;center&gt;
45468 &lt;math&gt;x = x&lt;/math&gt;
45469 &lt;/center&gt;
45470
45471 is universally valid.
45472 &lt;/div&gt;
45473
45474 This means that, for any [[Mathematical logic#Definition:FirstOrderLanguage|variable symbol]] &lt;math&gt;x\,&lt;/math&gt;, the formula &lt;math&gt;x = x\,&lt;/math&gt; can be regarded as an axiom. Also, in this example, for this not to fall into vagueness and a never-ending series of &quot;primitive notions&quot;, either a precise notion of what we mean by &lt;math&gt;x = x\,&lt;/math&gt; (or, for all what matters, &quot;to be equal&quot;) has to be well established first, or a purely formal and syntactical usage of the symbol &lt;math&gt;=\,&lt;/math&gt; has to be enforced, and [[mathematical logic]] does indeed do that.
45475
45476 Another, more interesting example, is that which provides us with what is known as '''universal instantiation''':
45477
45478 &lt;div style=&quot;border-left: 3px double #CCCCCC; padding-left: 5px; &quot;&gt;
45479 '''Example.''' Given a formula &lt;math&gt;\phi\,&lt;/math&gt; in a first-order language &lt;math&gt;\mathfrak{L}\,&lt;/math&gt;, a variable &lt;math&gt;x\,&lt;/math&gt; and a [[Mathematical logic#Definition:Term|term]] &lt;math&gt;t\,&lt;/math&gt; that is [[Mathematical logic#Definition:VariableSubstitutionInFormula|substitutable]] for &lt;math&gt;x\,&lt;/math&gt; in &lt;math&gt;\phi\,&lt;/math&gt;, the formula
45480
45481 &lt;center&gt;
45482 &lt;math&gt;\forall x. \phi \to \phi^x_t&lt;/math&gt;
45483 &lt;/center&gt;
45484
45485 is universally valid.
45486 &lt;/div&gt;
45487
45488 In informal terms, this example allows us to state that, if we know that a certain property &lt;math&gt;P\,&lt;/math&gt; holds for every &lt;math&gt;x\,&lt;/math&gt; and that if &lt;math&gt;t\,&lt;/math&gt; stands for a particular object in our structure, then we should be able to claim &lt;math&gt;P(t)\,&lt;/math&gt;. Again, ''we are claiming that the formula'' &lt;math&gt;\forall x. \phi \to \phi^x_t&lt;/math&gt; ''is valid'', that is, we must be able to give a &quot;proof&quot; of this fact, or more properly speaking, a ''metaproof''. Actually, these examples are ''metatheorems'' of our theory of mathematical logic since we are dealing with the very concept of ''proof'' itself. Aside from this, we can also have '''existential generalization''':
45489
45490 &lt;div style=&quot;border-left: 3px double #CCCCCC; padding-left: 5px; &quot;&gt;
45491 '''Axiom scheme.''' Given a formula &lt;math&gt;\phi\,&lt;/math&gt; in a first-order language &lt;math&gt;\mathfrak{L}\,&lt;/math&gt;, a variable &lt;math&gt;x\,&lt;/math&gt; and a term &lt;math&gt;t\,&lt;/math&gt; that is substitutable for &lt;math&gt;x\,&lt;/math&gt; in &lt;math&gt;\phi\,&lt;/math&gt;, the formula
45492
45493 &lt;center&gt;
45494 &lt;math&gt;\phi^x_t \to \exists x. \phi&lt;/math&gt;
45495 &lt;/center&gt;
45496
45497 is universally valid.
45498 &lt;/div&gt;
45499
45500 ===Non-logical axioms===
45501
45502 '''Non-logical axioms''' are formulas that play the role of theory-specific assumptions. Reasoning about two different structures, for example the [[natural number]]s and the [[integer]]s, may involve the same logical axioms; the non-logical axioms aim to capture what is special about a particular structure (or set of structures, such as [[group (algebra)|groups]]). Thus non-logical axioms, unlike logical axioms, are not ''tautologies''. Another name for a non-logical axiom is ''postulate''.
45503
45504 Almost every modern [[mathematical theory]] starts from a given set of non-logical axioms, and it was thought that in principle every theory could be axiomatized in this way and formalized down to the bare language of logical formulas. This turned out to be impossible and proved to be quite a story (''[[#role|see below]]'').
45505
45506 Non-logical axioms are often simply referred to as ''axioms'' in mathematical discourse. This does not mean that it is claimed that they are true in some absolute sense. For example, in some [[group (algebra)|groups]], the group operation is [[commutative]], and this can be asserted with the introduction of an additional axiom, but without this axiom we can do quite well developing (the more general) group theory, and we can even take its negation as an axiom for the study of non-commutative groups.
45507
45508 Thus, an ''axiom'' is an elementary basis for a formal logic system that together with the [[rules of inference]] define a '''deductive system'''.
45509
45510 ====Examples====
45511
45512 This section gives examples of mathematical theories that are developed entirely from a set of non-logical axioms (axioms, henceforth). A rigorous treatment of any of these topics begins with a specification of these axioms.
45513
45514 Basic theories, such as [[arithmetic]], [[real analysis]] (sometimes referred to as ''the theory of functions of one real variable''), [[linear algebra]], and [[complex analysis]] (a.k.a. ''complex variables''), are often introduced non-axiomatically in mostly technical studies, but any rigorous course in these subjects always begins by presenting its axioms.
45515
45516 ''Geometries'' such as [[Euclidean geometry]], [[projective geometry]], [[symplectic geometry]]. Interestingly one of the results of the fifth Euclidean axiom being a non-logical axiom is that the three angles of a triangle do not by definition add to 180°. Only under the umbrella of Euclidean geometry is this always true.
45517
45518 The study of topology in mathematics extends all over through [[point set topology]], [[algebraic topology]], [[differential topology]], and all the related paraphernalia, such as [[homology theory]], [[homotopy theory]].
45519 The development of ''abstract algebra'' brought with itself [[group theory]], [[ring (mathematics)|rings]] and [[field (mathematics)|fields]], [[Galois theory]].
45520
45521 This list could be expanded to include most fields of mathematics, including [[axiomatic set theory]], [[measure theory]], [[ergodic theory]], [[probability]], [[representation theory]], and [[differential geometry]].
45522
45523 =====Arithmetic=====
45524
45525 The [[Peano axioms]] are the most widely used ''axiomatization'' of [[arithmetic]]. They are a set of axioms strong enough to prove many important facts about [[number theory]] and they allowed GÃļdel to establish his famous [[GÃļdel's second incompleteness theorem|second incompleteness theorem]].
45526
45527 We have a language &lt;math&gt;\mathfrak{L}_{NT} = \{0, S\}\,&lt;/math&gt; where &lt;math&gt;0\,&lt;/math&gt; is a constant symbol and &lt;math&gt;S\,&lt;/math&gt; is a [[unary function]] and the following axioms:
45528
45529 # &lt;math&gt;\forall x. \lnot (Sx = 0) &lt;/math&gt;
45530 # &lt;math&gt;\forall x. \forall y. (Sx = Sy \to x = y) &lt;/math&gt;
45531 # &lt;math&gt;((\phi(0) \land \forall x.\,(\phi(x) \to \phi(Sx))) \to \forall x.\phi(x)&lt;/math&gt; for any &lt;math&gt;\mathfrak{L}_{NT}\,&lt;/math&gt; formula &lt;math&gt;\phi\,&lt;/math&gt; with one free variable.
45532
45533 The standard structure is &lt;math&gt;\mathfrak{N} = \langle\N, 0, S\rangle\,&lt;/math&gt; where &lt;math&gt;\N\,&lt;/math&gt; is the set of natural numbers, &lt;math&gt;S\,&lt;/math&gt; is the [[successor function]] and &lt;math&gt;0\,&lt;/math&gt; is naturally interpreted as the number 0.
45534
45535 =====Euclidean geometry=====
45536
45537 Probably the oldest, and most famous, list of axioms are the 4 + 1 [[Euclid's postulates]] of [[plane geometry]]. This set of axioms turns out to be incomplete, and many more postulates are necessary to rigorously characterize his geometry ([[David Hilbert|Hilbert]] used 23).
45538
45539 The axioms are referred to as &quot;4 + 1&quot; because for nearly two millennia the [[parallel postulate|fifth (parallel) postulate]] (&quot;through a point outside a line there is exactly one parallel&quot;) was suspected of being derivable from the first four. Ultimately, the fifth postulate was found to be independent of the first four. Indeed, one can assume that no parallels through a point outside a line exist, that exactly one exists, or that infinitely many exist. These choices give us alternative forms of geometry in which the interior [[angle]]s of a [[triangle]] add up to less than, exactly, or more than a straight line respectively and are known as [[elliptic geometry|elliptic]], [[Euclidean geometry|Euclidean]], and [[hyperbolic geometry|hyperbolic]] geometries.
45540
45541 =====Real analysis=====
45542
45543 The object of study is the [[real numbers]]. The real numbers are uniquely picked out (up to [[isomorphism]]) by the properties of a ''complete ordered field''. However, expressing these properties as axioms requires use of [[second-order logic]]. The [[LÃļwenheim-Skolem theorem]]s tell us that if we restrict ourselves to [[first-order logic]], any axiom system for the reals admits other models, including both models that are smaller than the reals and models that are larger. Some of the latter are studied in [[non-standard analysis]].
45544
45545 ===&lt;span id=&quot;role&quot;&gt;Role in mathematical logic&lt;/span&gt;===
45546
45547 ====Deductive systems and completeness====
45548
45549 A '''deductive system''' consists, of a set &lt;math&gt;\Lambda\,&lt;/math&gt; of logical axioms, a set &lt;math&gt;\Sigma\,&lt;/math&gt; of non-logical axioms, and a set &lt;math&gt;\{(\Gamma, \phi)\}\,&lt;/math&gt; of ''rules of inference''. A desirable property of a deductive system is that it be '''complete'''. A system is said to be complete if, for all formulas &lt;math&gt;\phi&lt;/math&gt;,
45550 &lt;center&gt;
45551 if &lt;math&gt;\Sigma \models \phi&lt;/math&gt; then &lt;math&gt;\Sigma \vdash \phi&lt;/math&gt;
45552 &lt;/center&gt;
45553
45554 that is, for any statement that is a ''logical consequence'' of &lt;math&gt;\Sigma&lt;/math&gt; there actually exists a ''deduction'' of the statement from &lt;math&gt;\Sigma\,&lt;/math&gt;. This is sometimes expressed as &quot;everything that is true is provable&quot;, but it must be understood that &quot;true&quot; here means &quot;made true by the set of axioms&quot;, and not, for example, &quot;true in the intended interpretation&quot;. [[GÃļdel's completeness theorem]] establishes the completeness of a certain commonly-used type of deductive system.
45555
45556 Note that &quot;completeness&quot; has a different meaning here than it does in the context of [[GÃļdel's first incompleteness theorem]], which states that no ''recursive'', ''consistent'' set of non-logical axioms &lt;math&gt;\Sigma\,&lt;/math&gt; of the Theory of Arithmetic is ''complete'', in the sense that there will always exist an arithmetic statement &lt;math&gt;\phi\,&lt;/math&gt; such that neither &lt;math&gt;\phi\,&lt;/math&gt; nor &lt;math&gt;\lnot\phi\,&lt;/math&gt; can be proved from the given set of axioms.
45557
45558 There is thus, on the one hand, the notion of '''''completeness of a deductive system''''' and on the other hand that of '''''completeness of a set of non-logical axioms'''''. The completeness theorem and the incompleteness theorem, despite their names, do not contradict one another.
45559
45560 ===Further discussion===
45561
45562 Early [[mathematician]]s regarded axiomatic geometry as a model of [[physical space]], and obviously there could only be one such model. The idea that alternative mathematical systems might exist was very troubling to mathematicians of the 19th century and the developers of systems such as [[Boolean algebra]] made elaborate efforts to derive them from traditional arithmetic. [[Évariste Galois|Galois]] showed just before his untimely death that these efforts were largely wasted, but that the grand parallels between axiomatic systems could be put to good use, as he algebraically solved many classical geometrical problems. Ultimately, the abstract parallels between algebraic systems were seen to be more important than the details and [[abstract algebra|modern algebra]] was born. In the modern view we may take as axioms any set of formulas we like, as long as they are not known to be inconsistent.
45563
45564 ==See also==
45565 * [[Axiomatic system]]
45566 * [[Peano axioms]]
45567 * [[Axiom of choice]]
45568 * [[Axiom of countability]]
45569 * [[Axiomatic set theory]]
45570 * [[Parallel postulate]]
45571 * [[Continuum hypothesis]]
45572 * [[Axiomatization]]
45573 * [[List of axioms]]
45574
45575 ==External links==
45576 * [http://us.metamath.org/mpegif/mmset.html#axioms ''Metamath'' axioms page]
45577
45578 [[Category:Mathematical axioms|*]]
45579 [[Category:Logic]]
45580
45581 [[bg:АĐēŅĐ¸ĐžĐŧĐ°]]
45582 [[be:АĐēŅŅ–Ņ‘ĐŧĐ°]]
45583 [[ca:Axioma]]
45584 [[cs:Axiom]]
45585 [[da:Aksiom]]
45586 [[de:Axiom]]
45587 [[et:Aksioom]]
45588 [[es:Axioma]]
45589 [[eo:Aksiomo]]
45590 [[fa:اØĩŲ„ Ų…ŲˆØļŲˆØš]]
45591 [[fr:Axiome]]
45592 [[ko:ęŗĩëĻŦ]]
45593 [[hr:Aksiom]]
45594 [[io:Axiomo]]
45595 [[id:Aksioma]]
45596 [[it:Assioma (matematica)]]
45597 [[he:אקסיומה]]
45598 [[lt:Aksioma]]
45599 [[hu:AxiÃŗma]]
45600 [[nl:Axioma]]
45601 [[ja:å…Ŧį†]]
45602 [[no:Aksiom]]
45603 [[pl:Aksjomat]]
45604 [[pt:Axioma]]
45605 [[ru:АĐēŅĐ¸ĐžĐŧĐ°]]
45606 [[sl:Aksiom]]
45607 [[sr:АĐēŅĐ¸ĐžĐŧĐ°]]
45608 [[fi:Aksiooma]]
45609 [[sv:Axiom]]
45610 [[vi:TiÃĒn đáģ]]
45611 [[tr:Aksiyom]]
45612 [[uk:АĐēŅŅ–ĐžĐŧĐ°]]
45613 [[zh:å…Ŧį†]]</text>
45614 </revision>
45615 </page>
45616 <page>
45617 <title>Alpha (letter)</title>
45618 <id>929</id>
45619 <revision>
45620 <id>41077797</id>
45621 <timestamp>2006-02-24T22:27:49Z</timestamp>
45622 <contributor>
45623 <username>Unyoyega</username>
45624 <id>460372</id>
45625 </contributor>
45626 <minor />
45627 <comment>fixing interwikis +: als</comment>
45628 <text xml:space="preserve">{{Table_Greekletters|letter=alpha}}
45629 {{WikisourceEBD1897|A (entry)}}
45630 :''For other uses, see [[Alpha]].''
45631
45632 '''Alpha''' (uppercase Α, lowercase α) is the first letter of the [[Greek alphabet]]. In the system of [[Greek numerals]] it has a value of 1. It derives from the [[Phoenician alphabet|Phoenician]] letter [[Aleph (letter)|'Aleph]][[Image:phoenician_aleph.png|20px|Aleph]]. Letters that arose from Alpha include the Latin [[A]] and the Cyrillic letter [[A (Cyrillic)|A]].
45633
45634 [[Plutarch]] in ''[[Moralia]]'' presents a discussion on the question of why the letter alpha stands first in the alphabet. Plutarch's speaker suggests that [[Cadmus]], the [[Phoenician]] who reputedly settled in [[Thebes]] and introduced the alphabet to Greece, &quot;placed ''alpha'' first because it is the Phoenician name for [[ox]], which they, like [[Hesiod]], considered not the second or third, but the first of necessities.&quot; This refers to a passage in ''[[Works and Days]]'' by Hesiod, who advised the early Greek farmers, &quot;First get an ox, then a woman.&quot; A simpler explanation is that it was the first letter in the Phoenician alphabet.
45635
45636 According to Plutarch's natural order of attribution of the [[vowel]]s to the [[planet]]s, alpha was connected with the [[Moon]]. Oxen were also associated with the Moon in both early [[Sumerian]] and [[Ancient Egypt|Egyptian]] religious symbolism due to the crescent shape of their horns.
45637
45638 Alpha, both as a symbol and term, is used to refer to or describe a variety of things, including the first or most significant occurrence of something. [[Jesus]] declares himself to be the &quot;Alpha and [[Omega]], the beginning and the end, the first and the last.&quot; ([[Book of Revelation|Revelation]] 22:13, KJV, and see also 1:8).
45639
45640 The uppercase letter alpha is not generally used as a symbol because it tends to be rendered identically to the uppercase [[A|latin A]].
45641
45642 The lower-case letter Îą is used as the symbol for the following in physics:
45643 * [[Angular acceleration]].
45644 * The [[alpha particle]] and [[alpha decay]].
45645 * Molecular polarisability.
45646
45647 ==Other uses==
45648
45649 Alpha is also used to describe the strongest male in a pack of animals, known as the alphamale.
45650
45651 [[Category:Greek letters]]
45652
45653 [[als:Α]]
45654 [[an:Alfa]]
45655 [[ast:Alpha]]
45656 [[ca:Alfa]]
45657 [[da:Alfa (bogstav)]]
45658 [[de:Alpha]]
45659 [[el:ΆÎģĪ†Îą]]
45660 [[es:Α]]
45661 [[fr:Alpha]]
45662 [[ga:Alfa]]
45663 [[gl:Alfa (letra)]]
45664 [[ko:Α]]
45665 [[id:Alpha]]
45666 [[he:אלפא]]
45667 [[la:Alpha]]
45668 [[nl:Alfa (letter)]]
45669 [[nds:Alpha]]
45670 [[ja:Α]]
45671 [[no:Alfa]]
45672 [[pl:Alfa]]
45673 [[pt:Α]]
45674 [[ru:АĐģŅŒŅ„Đ° (ĐąŅƒĐēва)]]
45675 [[sk:Alfa (písmeno)]]
45676 [[sl:Alfa]]
45677 [[sr:АĐģŅ„Đ°]]
45678 [[fi:Alfa]]
45679 [[sv:Alfa]]
45680 [[zh:Α]]</text>
45681 </revision>
45682 </page>
45683 <page>
45684 <title>Alvin Toffler</title>
45685 <id>930</id>
45686 <revision>
45687 <id>42090219</id>
45688 <timestamp>2006-03-03T19:37:03Z</timestamp>
45689 <contributor>
45690 <ip>81.132.116.185</ip>
45691 </contributor>
45692 <text xml:space="preserve">[[Image:Alvin_toffler.jpg|thumb|right|200px|Alvin Toffler]]
45693 '''Alvin Toffler''' (born [[October 3]], [[1928]]) is an [[United States|American]] [[writer]] and [[futures studies|futurist]], known for his works discussing the [[digital revolution]], [[communications revolution]], [[corporate revolution]] and [[technological singularity]]. A former associate editor of ''[[Fortune (magazine)|Fortune]]'' magazine, his early work focused on technology and its impact (through effects like [[information overload]]). Then he moved to examining the reaction of and [[Social change|changes in society]]. His later focus has been on the increasing power of [[21st century]] military hardware, weapons and technology proliferation, and [[capitalism]]. He is married to [[Heidi Toffler]], also a writer and futurist.
45694
45695 == His ideas ==
45696
45697 Toffler explains, &quot;Society needs people who take care of the elderly and who know how to be compassionate and honest. Society needs people who work in hospitals. Society needs all kinds of skill that are not just cognitive; they're emotional, they're affectional. You can't run the society on data and computers alone.&quot;
45698
45699 In his book ''The Third Wave'' Toffler describes three types of societies, based on the concept of 'waves' - each wave pushes the older societies and cultures aside.
45700 *First Wave is the society after [[agrarian revolution]] and replaced the first [[hunter-gatherer]] cultures.
45701 *The main components of the Second Wave society are [[nuclear family]], factory-type education system and the [[corporation]]. Toffler writes: &quot;The Second Wave Society is industrial and based on [[mass production]], [[mass distribution]], [[mass consumption]], [[mass education]], [[mass media]], [[mass recreation]], [[mass entertainment]], and [[weapons of mass destruction]]. You combine those things with [[standardization]], [[centralization]], concentration, and synchronization, and you wind up with a style of [[organization]] we call [[bureaucracy]].&quot;
45702 *Third Wave is the [[post-industrial]] society. Toffler would also add that since late 1950s most countries are moving away from a Second Wave Society into what he would call a Third Wave Society. He coined lots of words to describe it and mentions names invented by other people, like the [[Information Age]].
45703
45704 In this post-industrial society, there is a lot of diversity in [[lifestyle]]s (&quot;subcults&quot;).
45705 [[Adhocracy|Adhocracies]] (fluid organizations like, say, the [[Wikipedia community]]) adapt quickly to [[change]]s.
45706 [[Information]] can substitute most of the material resources (see [[ersatz]]) and becomes the main material for workers ([[cognitarian]]s instead of [[proletarian]]s), who are loosely affiliated.
45707 [[Mass customization]] offers the possibility of cheap, personalized, production catering to small niches (see [[Just In Time]] production).
45708 The gap between producer and consumer is bridged by technology.
45709 &quot;[[Prosumer]]s&quot; can fill their own needs (see [[open source]], [[assembly kit]], [[freelance]] work).
45710
45711 Since the 1960s, people have been trying to make sense of the impact of new technologies and social change. Toffler's writings have been influential beyond the confines of scientific, economic and public policy discussions. [[Techno music]] pioneer [[Juan Atkins]] cites Toffler's phrase &quot;techno rebels&quot; in ''Future Shock'' as inspiring him to use the word &quot;techno&quot; to describe the [[musical genre|musical style]] he helped to create.
45712
45713 Toffler's works and ideas have been subject to various criticism, usually with the same argumentation used against [[future studies|futurology]], that is that foreseeing the future is nigh impossible. In the 1990s, his ideas were publicly lauded by [[Newt Gingrich]].
45714
45715 == His books ==
45716
45717 A few of his well-known works are:
45718
45719 * ''[[Future Shock]]'' ([[1970]]) Bantam Books ISBN 0553277375
45720 * ''[[The Eco-Spasm Report]]'' ([[1975]]) Bantam Books ISBN 055314474X
45721 * ''[[The Third Wave (book)|The Third Wave]]'' ([[1980]]) Bantam Books ISBN 0553246984
45722 * ''[[Previews &amp; Premises]]'' ([[1983]])
45723 * ''[[Powershift|Powershift: Knowledge, Wealth and Violence at the Edge of the 21st Century]]'' ([[1990]]) Bantam Books ISBN 0553292153
45724 * ''[[War and Anti-War|War and Anti-War]]'' ([[1995]]) Warner Books ISBN 0446602590
45725
45726 ''[[The Shockwave Rider]]'' is a science-fiction novel inspired by his ''Future Shock''.
45727
45728 ==See also==
45729
45730 *[[Daniel Bell]]
45731 *[[Norman Swan]]
45732 *The [[National Committee For U.S.-China Relations]]
45733 *The [[U.S. Committee for Unifem]]
45734 *The [[United Nations Fund for Women]] (UNIFEM)
45735 *The [[RAND|RAND Corporation]]
45736 *The [[Progress and Freedom Foundation]]
45737 *The [[Institute for Policy Studies]]
45738 *The [[United Nations]]
45739 *The [[World Trade Organization]]
45740 *The [[The Pentagon|Pentagon]]
45741 *[[Techno]]
45742
45743 [[Category:1928 births|Toffler, Alvin]]
45744 [[Category:Living people|Toffler, Alvin]]
45745 [[Category:American writers|Toffler, Alvin]]
45746
45747 [[af:Alvin Toffler]]
45748 [[de:Alvin Toffler]]
45749 [[es:Alvin Toffler]]
45750 [[it:Alvin Toffler]]
45751 [[ro:Alvin Toffler]]
45752 [[ru:ĐĸĐžŅ„Ņ„ĐģĐĩŅ€, Đ­ĐģвиĐŊ]]
45753 [[sv:Alvin Toffler]]</text>
45754 </revision>
45755 </page>
45756 <page>
45757 <title>The Amazing Spider-Man</title>
45758 <id>931</id>
45759 <revision>
45760 <id>41875373</id>
45761 <timestamp>2006-03-02T07:52:39Z</timestamp>
45762 <contributor>
45763 <ip>85.107.165.6</ip>
45764 </contributor>
45765 <text xml:space="preserve">: ''The Amazing Spider-Man is a comics series. For other uses see [[The Amazing Spider-Man (disambiguation)]].''
45766
45767 [[Image:Firstissue.jpg|thumb|Cover to ''The Amazing Spider-Man'' #1 (Volume 1), March 1963, by [[Steve Ditko]].]]
45768 '''''The Amazing Spider-Man''''' is the title of a [[comic book]] published by [[Marvel Comics]], a [[television program]] and a daily [[newspaper]] [[comic strip]]. All three feature the adventures of the [[superhero]] [[Spider-Man]].
45769
45770 ==Comic book ==
45771
45772 Spider-Man originally appeared in issue #15 of the comic book ''[[Amazing Fantasy]]'', its final issue. The series was cancelled with that issue, but response to the character was so positive that the new title, ''The Amazing Spider-Man'' was launched, issue #1 appearing in March 1963.
45773
45774 The character was created by writer/editor [[Stan Lee]] and artist/cowriter [[Steve Ditko]], and the pair produced 38 issues of ''Amazing''. A disagreement over a story led to Ditko leaving the title after that point. He was replaced by penciller [[John Romita, Sr.|John Romita]] who illustrated Lee's stories for several years. Although many fans thought that the writing quality almost instantly plummeted, the series became still more popular.
45775
45776 Many writers and artists have taken over the monthly comic over the years chronicling the adventures of Marvel's most identifiable hero. The title was published continuously until 1998 when Marvel Comics decided to begin anew by renumbering the title with a new issue #1 published in January, 1999. In 2003 this new title reverted to using the numbering of the original series, at issue #500.
45777
45778 As of October 2005, ''The Amazing Spider-Man'' is participating in &quot;[[Spider-Man: The Other|The Other]]&quot;, a 12-part crossover, which will conclude in January 2006.
45779
45780 [[Image:Blackissue.jpg|thumb|Cover to ''The Black Issue'' which is just a black background.]]
45781 ===Black Issue===
45782
45783 An issue of Amazing Spider-Man (Vol. 2) called &quot;The Black Issue&quot; explores how Spider-Man and other heroes would react to the [[September 11, 2001 attacks]] written by [[J. Michael Straczynski]] and penciled by [[John Romita, Jr]]. It starts with a double page spread of the devastation and of Spidey holding his head in pain/anguish/disbelief, his only word &quot;...God...&quot; The issue continues as Spidey swings down to help in the aftermath. Joining with other heroes in the rescue efforts, Spidey explores the wreckage and the broken hearts and his thoughts drive on, thinking through it all. At some point his thoughts become Straczynski's reflections and response. The script journeys from horror, pain and loss to end on strength.
45784
45785 See also [[List of The Amazing Spider-Man comics|List of ''The Amazing Spider-Man'' comics]]
45786
45787 ==Television program==
45788 {{main|The Amazing Spider-Man (TV series)}}
45789 Spidey got his shot at live-action TV stardom in April 1977, when he debuted in the &quot;Amazing Spider-Man&quot; TV series. Nicholas Hammond portrayed Peter Parker/Spider-Man in the short-lived series, which had started out as a slew of TV-movies, obviously made to capitalize on the [[The Incredible Hulk]] television series. The show was canceled a year after its debut.
45790
45791 ==Newspaper comic strip==
45792
45793 The daily newspaper comic strip began on [[January 3]], [[1977]]. It was first written by Spider-Man co-creator [[Stan Lee]] and illustrated by [[John Romita, Sr.|John Romita]]. The strip was surprisingly successful in an era with few serialized adventure strips. The strip slowly grew in circulation and [[as of 2006]] is still being published. Lee's brother [[Larry Lieber]] illustrated and later wrote the strip for much of its run. While the strip and the comic book feature the same characters, they do not share the same [[Continuity (fiction)|continuity]], and the strip has had a decreased emphasis on [[supervillain]] enemies. A rare exception was the 1987 wedding of [[Peter Parker]] and [[Mary Jane Watson]] which occurred in both the comic book and the comic strip. Guest stars in the newspaper strip include [[Wolverine (comics)|Wolverine]] and [[Dr. Strange]]. Villains include [[Dr. Doom]], [[Kraven the Hunter]], and [[The Rhino]]. Stories from the strip have been reprinted in paperback and in [[Comics Revue]] magazine.
45794
45795 ==Video and computer games==
45796 {{see details|Spider-Man (games)}}
45797 Numerous video and computer games have been released whereby the player controlled Spider-Man and had to do battle with various enemies.
45798
45799 ==Trivia==
45800 The 2004 movie ''[[Spider-Man 2]]'' was at one point tentatively titled ''The Amazing Spider-Man''.
45801
45802 ==External links==
45803 *[http://www.spyder-25.com Spyder-25.com :: Ultimate Resource For Spider-Man Fans]
45804 *[http://www.spidermancrawlspace.com Spider-Man Crawl Space: All Spidey, All The Time]
45805 *[http://www.kingfeatures.com/features/comics/spidermn/about.htm The Amazing Spider-Man comic strip]
45806
45807
45808 {{spiderman}}
45809 [[Category:Spider-Man titles]]
45810 [[Category:Comic strips|Amazing Spider-Man, The]]
45811
45812 [[fr:Amazing Spider-man]]</text>
45813 </revision>
45814 </page>
45815 <page>
45816 <title>Archie</title>
45817 <id>932</id>
45818 <revision>
45819 <id>40125139</id>
45820 <timestamp>2006-02-18T08:44:27Z</timestamp>
45821 <contributor>
45822 <username>Lightdarkness</username>
45823 <id>130135</id>
45824 </contributor>
45825 <minor />
45826 <comment>disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
45827 <text xml:space="preserve">'''Archie''' may refer to:
45828
45829 * [[Archie Andrews (puppet)]] -- Ventriloquist's puppet
45830 * [[Archie Bunker]] -- a [[sitcom]] character from the [[1970s]].
45831 * [[Archie Comics]] -- a comic book publisher specializing in teen humor
45832 ** [[Archie Andrews (comics)]] -- Main character in Archie Comics
45833 * [[Archie search engine]] -- a [[search engine]] for [[File Transfer Protocol|FTP]] sites, named after the comic series, launched in the early [[1990s]].
45834 * [[Archie, Missouri]] -- city located in Cass County, Missouri.
45835 * A slang term for [[Anti-aircraft warfare|anti-aircraft fire]] used by the [[United Kingdom|British]] [[Royal Flying Corps]] and [[Royal Air Force]].
45836 * [[Archie_(Linux)|Archie Linux]] -- a [[LiveCD]] version of [[Arch Linux]]
45837 * [[Archie (PokÊmon)|Archie]] -- leader of [[Team Aqua]] in the [[PokÊmon]] series
45838 * [[Archie MacPherson]] -- Scottish sports broadcaster.
45839 {{disambig}}</text>
45840 </revision>
45841 </page>
45842 <page>
45843 <title>AM</title>
45844 <id>933</id>
45845 <revision>
45846 <id>40944561</id>
45847 <timestamp>2006-02-24T01:05:58Z</timestamp>
45848 <contributor>
45849 <username>Mzajac</username>
45850 <id>61482</id>
45851 </contributor>
45852 <minor />
45853 <comment>sort</comment>
45854 <text xml:space="preserve">{{wiktionarypar4|AM|A.M.|Am|am}}
45855
45856 '''AM''' may refer to:
45857
45858 * [[AM broadcasting]], radio broadcasting using [[Amplitude Modulation]]
45859 * [[AM (fictional computer)]], a fictional evil supercomputer in the short story ''I Have No Mouth, and I Must Scream''
45860 * ''[[Ante Meridiem]]'', in 12-hour clock notation, Latin for &quot;before noon&quot;
45861 * ''[[Anno Mundi]]'', a Calendar era counting from the creation of the world
45862 * [[Armenia]] (ISO country code AM)
45863 * [[Anguilla]] (MARC country code am)
45864 * [[AeromÊxico]] (IATA airline designator)
45865 * [[Air Marshal]], a military rank in the Royal Air Force and many Commonwealth air forces
45866 * [[Air Medal]], a military decoration
45867 * [[Airmail]]
45868 * [[Artium Magister]], alternative abbrevation for a Master's degree in Arts
45869 * [[Amazonas State, Brazil]]
45870 * [[Americium]], a chemical element with symbol Am
45871 * [[Amharic language]] (ISO 639-1 language code am)
45872 * [[Amran Governorate]], Yemen (ISO 3166-2:YE)
45873 * ''[[Anno Martyrum]]'', used in the Coptic calendar
45874 * [[Arkansas and Missouri Railroad]], a short-line railroad headquartered in Springdale, Arkansas
45875 * [[Arthur-Merlin protocol]], an interactive proof system in computational complexity theory
45876 * [[Asia Miles]], a Cathay Pacific travel reward programme
45877 * [[Attometre]] (am), a unit of length (equal to 10&lt;sup&gt;&lt;small&gt;–18&lt;/small&gt;&lt;/sup&gt; m)
45878 * [[Automated Mathematician]], an artificial intelligence program
45879 * [[Minesweeper (ship)]], U.S. Navy 1921 warship classification code
45880 * [[Order of Australia]] member (postnominal)
45881 * A-minor (Am), a [[minor chord]] in music
45882 * Assembly Member of the [[National Assembly for Wales]] or [[London Assembly]]
45883 * &quot;Away message&quot;, see [[status message (IM)]]
45884
45885 {{disambig}}
45886
45887 [[ca:Am]]
45888 [[da:AM (flertydig)]]
45889 [[de:Am]]
45890 [[es:Am]]
45891 [[fr:AM]]
45892 [[ko:AM]]
45893 [[it:Am]]
45894 [[nl:Am]]
45895 [[ja:AM]]
45896 [[pl:AM]]
45897 [[pt:AM]]
45898 [[sl:Am]]
45899 [[sv:AM]]
45900 [[vi:AM]]</text>
45901 </revision>
45902 </page>
45903 <page>
45904 <title>Automated Alice/XII</title>
45905 <id>935</id>
45906 <revision>
45907 <id>15899447</id>
45908 <timestamp>2004-11-30T06:37:19Z</timestamp>
45909 <contributor>
45910 <username>Chuq</username>
45911 <id>3861</id>
45912 </contributor>
45913 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45914 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45915 </revision>
45916 </page>
45917 <page>
45918 <title>Automated Alice/XI</title>
45919 <id>936</id>
45920 <revision>
45921 <id>15899448</id>
45922 <timestamp>2004-11-30T06:37:15Z</timestamp>
45923 <contributor>
45924 <username>Chuq</username>
45925 <id>3861</id>
45926 </contributor>
45927 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45928 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45929 </revision>
45930 </page>
45931 <page>
45932 <title>Automated Alice/X</title>
45933 <id>937</id>
45934 <revision>
45935 <id>15899449</id>
45936 <timestamp>2004-11-30T06:37:10Z</timestamp>
45937 <contributor>
45938 <username>Chuq</username>
45939 <id>3861</id>
45940 </contributor>
45941 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45942 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45943 </revision>
45944 </page>
45945 <page>
45946 <title>Automated Alice/IX</title>
45947 <id>938</id>
45948 <revision>
45949 <id>15899450</id>
45950 <timestamp>2004-11-30T06:36:47Z</timestamp>
45951 <contributor>
45952 <username>Chuq</username>
45953 <id>3861</id>
45954 </contributor>
45955 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45956 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45957 </revision>
45958 </page>
45959 <page>
45960 <title>Automated Alice/VIII</title>
45961 <id>939</id>
45962 <revision>
45963 <id>15899451</id>
45964 <timestamp>2004-11-30T06:37:07Z</timestamp>
45965 <contributor>
45966 <username>Chuq</username>
45967 <id>3861</id>
45968 </contributor>
45969 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45970 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45971 </revision>
45972 </page>
45973 <page>
45974 <title>Automated Alice/VI</title>
45975 <id>940</id>
45976 <revision>
45977 <id>15899452</id>
45978 <timestamp>2004-11-30T06:36:59Z</timestamp>
45979 <contributor>
45980 <username>Chuq</username>
45981 <id>3861</id>
45982 </contributor>
45983 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45984 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45985 </revision>
45986 </page>
45987 <page>
45988 <title>Automated Alice/VII</title>
45989 <id>941</id>
45990 <revision>
45991 <id>15899453</id>
45992 <timestamp>2004-11-30T06:37:03Z</timestamp>
45993 <contributor>
45994 <username>Chuq</username>
45995 <id>3861</id>
45996 </contributor>
45997 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
45998 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
45999 </revision>
46000 </page>
46001 <page>
46002 <title>Automated Alice/V</title>
46003 <id>942</id>
46004 <revision>
46005 <id>15899454</id>
46006 <timestamp>2004-11-30T06:36:51Z</timestamp>
46007 <contributor>
46008 <username>Chuq</username>
46009 <id>3861</id>
46010 </contributor>
46011 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
46012 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
46013 </revision>
46014 </page>
46015 <page>
46016 <title>Automated Alice/IV</title>
46017 <id>943</id>
46018 <revision>
46019 <id>15899455</id>
46020 <timestamp>2004-11-30T06:36:44Z</timestamp>
46021 <contributor>
46022 <username>Chuq</username>
46023 <id>3861</id>
46024 </contributor>
46025 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
46026 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
46027 </revision>
46028 </page>
46029 <page>
46030 <title>Automated Alice/II</title>
46031 <id>944</id>
46032 <revision>
46033 <id>15899456</id>
46034 <timestamp>2004-11-30T06:36:38Z</timestamp>
46035 <contributor>
46036 <username>Chuq</username>
46037 <id>3861</id>
46038 </contributor>
46039 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
46040 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
46041 </revision>
46042 </page>
46043 <page>
46044 <title>Automated Alice/I</title>
46045 <id>945</id>
46046 <revision>
46047 <id>15899457</id>
46048 <timestamp>2004-11-30T06:36:35Z</timestamp>
46049 <contributor>
46050 <username>Chuq</username>
46051 <id>3861</id>
46052 </contributor>
46053 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
46054 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
46055 </revision>
46056 </page>
46057 <page>
46058 <title>Automated Alice/III</title>
46059 <id>946</id>
46060 <revision>
46061 <id>15899458</id>
46062 <timestamp>2004-11-30T06:36:40Z</timestamp>
46063 <contributor>
46064 <username>Chuq</username>
46065 <id>3861</id>
46066 </contributor>
46067 <comment>[[Wikipedia:WikiProject Wiki Syntax|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
46068 <text xml:space="preserve">#REDIRECT [[Jeff Noon]]</text>
46069 </revision>
46070 </page>
46071 <page>
46072 <title>Automated Alice</title>
46073 <id>948</id>
46074 <revision>
46075 <id>33600503</id>
46076 <timestamp>2006-01-02T14:50:04Z</timestamp>
46077 <contributor>
46078 <username>Itomi Bhaa</username>
46079 <id>745300</id>
46080 </contributor>
46081 <minor />
46082 <text xml:space="preserve">[[Category:1996 books]]
46083 [[Category:Alice derived works]]
46084
46085 '''Automated Alice''' is a novel by [[Jeff Noon]], written 1996.
46086
46087 Noon presents it as a ''trequel'' to the [[Lewis Carroll]] books, ''[[Alice's Adventures in Wonderland]]'' and ''[[Through the Looking-Glass]]''. This illustrated novella follows Alice's journey to a future Manchester populated by Newmonians, Civil Serpents and a vanishing cat named Quark.</text>
46088 </revision>
46089 </page>
46090 <page>
46091 <title>Antigua and Barbuda</title>
46092 <id>951</id>
46093 <revision>
46094 <id>41463576</id>
46095 <timestamp>2006-02-27T14:45:26Z</timestamp>
46096 <contributor>
46097 <username>Sanmartin</username>
46098 <id>114509</id>
46099 </contributor>
46100 <comment>rvv</comment>
46101 <text xml:space="preserve">{{Antigua and Barbuda infobox}}
46102 '''Antigua and Barbuda''' is an [[island nation]] located in the eastern [[Caribbean Sea]] on the boundary with the [[Atlantic Ocean]]. [[Antigua]] ({{IPA2|ÃĻnˈtiːgə}}) and [[Barbuda]] ({{IPA2|bɑrˈbjuːdə}})are located in the middle of the [[Leeward Islands]] in the Eastern [[Caribbean]], roughly 17 degrees north of the equator. Antigua and Barbuda are part of the [[Lesser Antilles]] [[archipelago]] with the archipelago of [[Guadeloupe]] to the south, [[Montserrat]] to the southwest, [[Saint Kitts and Nevis]] to the west and [[Saint BarthÊlemy]] and [[Saint Martin]] to the northwest.
46103 == History ==
46104 ''Main article: [[History of Antigua and Barbuda]]''
46105
46106 Pre-ceramic [[Amerindian]]s were the first to inhabit the islands of Antigua and [[Barbuda]] in [[2400 BC]]. Later [[Arawak]] and [[Carib]] [[Amerindian]] tribes populated the islands. The island of Antigua was originally named Wadadli by the natives. [[Christopher Columbus]] landed on his second voyage in 1493 and gave the island the name Antigua. Early settlements by the [[Spain|Spanish]] and [[France|French]] were succeeded by the [[United Kingdom|English]] who formed a [[colony]] in 1667 by transporting [[Irish Catholic]] slaves to Antigua. [[Slavery]], established to run the [[sugar]] plantations on Antigua, was abolished in 1834.
46107
46108 The islands became an independent state within the [[Commonwealth of Nations]] on [[1 November]] [[1981]], and [[Vere Bird]] became the first [[prime minister]].
46109
46110 == Politics ==
46111 ''Main article:'' [[Politics of Antigua and Barbuda]]
46112
46113 Antigua and Barbuda is a [[Commonwealth Realm]] and the [[head of state]] is [[Elizabeth II of the United Kingdom|Queen Elizabeth II]], who is represented in Antigua and Barbuda by a [[governor general]]. [[executive branch|Executive power]] is in the hands of the [[prime minister]], who is also the [[head of government]]. The prime minister is usually the leader of the winning party of the elections for the [[House of Representatives of Antigua and Barbuda|House of Representatives]] (17 members), held every five years. The other chamber of the [[Parliament of Antigua and Barbuda|parliament]], the [[Senate of Antigua and Barbuda|Senate]], has 17 members which are appointed by the governor general. Its current prime minister is [[Baldwin Spencer]] ([[24 March]] [[2004]]-).
46114
46115 == Administrative Divisions ==
46116 ''Main article: [[Parishes and dependencies of Antigua and Barbuda]]''
46117
46118 The island of Antigua is divided into six [[parish]]es:-
46119
46120 {|
46121 |
46122 *&lt;small&gt;1&lt;/small&gt; [[Saint George Parish, Antigua and Barbuda|Saint George]]
46123 *&lt;small&gt;2&lt;/small&gt; [[Saint John Parish, Antigua and Barbuda|Saint John]]
46124 *&lt;small&gt;3&lt;/small&gt; [[Saint Mary Parish, Antigua and Barbuda|Saint Mary]]
46125 |
46126 *&lt;small&gt;4&lt;/small&gt; [[Saint Paul Parish, Antigua and Barbuda|Saint Paul]]
46127 *&lt;small&gt;5&lt;/small&gt; [[Saint Peter Parish, Antigua and Barbuda|Saint Peter]]
46128 *&lt;small&gt;6&lt;/small&gt; [[Saint Philip Parish, Antigua and Barbuda|Saint Philip]]
46129 |
46130 [[Image:Antigua_parishes_numbered.png|right|px150|The Parishes of Antigua]]
46131 |}
46132
46133 The island of [[Barbuda]] and the uninhabited island of [[Redonda]] each enjoy dependency status.
46134
46135 == Geography ==
46136 [[Image:Antigua and Barbuda map.png|250px|thumb|right| ]]
46137 :''Main article: [[Geography of Antigua and Barbuda]]''
46138 The country consists of a number of islands, of which Antigua is the largest one, and the most populated. [[Barbuda]], just north of Antigua is the other main island. The islands have a warm, tropical [[climate]], with fairly constant temperatures year round. The un-inhabited island of [[Redonda]] also belongs to the nation of Antigua and Barbuda.
46139
46140 The islands are mostly low-lying, with the highest point being [[Boggy Peak]], at 402 [[metre]]s (1,319 [[foot (unit of length)|ft]]). The small country's main town is the capital [[St. John's, Antigua and Barbuda|Saint John's]] on Antigua; Barbuda's largest town is [[Codrington]].
46141
46142 == Economy ==
46143 ''Main article: [[Economy of Antigua and Barbuda]]''
46144
46145 [[Tourism]] dominates its economy, accounting for more than half of its [[Gross Domestic Product|GDP]]. Weak tourist arrival numbers since early 2000 have slowed the economy, however, and pressed the government into a tight fiscal corner. The dual-island nation's [[agriculture|agricultural]] production is focused on the domestic market and constrained by a limited [[water supply]] and a [[labour (economics)|labour]] shortage stemming from the lure of higher wages in tourism and construction work.
46146
46147 [[Manufacturing]] comprises enclave-type assembly for export with major products being bedding, handicrafts, and electronic components. Prospects for [[economic growth]] in the medium term will continue to depend on income growth in the industrialised world, especially in the [[United States]], which accounts for about one-third of all tourist arrivals.
46148
46149 == Demographics ==
46150 ''Main article: [[Demographics of Antigua and Barbuda]]''
46151
46152 Most of the population are descendants of the slaves that used to work in the sugar plantations, but there are also groups of Europeans, notably [[Irish ethnicity|Irish]], British and [[Portuguese people|Portuguese]]. While the official language is [[English language|English]], most of the locals speak [[patois]], a form of [[Creole language#English Creole|Creole English]].
46153
46154 Almost all Antiguans are [[Christianity|Christians]], with the [[Anglican Church]] (about 44%) being the largest denomination.
46155
46156 ==Foreign relations==
46157 ''Main article: [[Foreign relations of Antigua and Barbuda]]''
46158
46159 Antigua and Barbuda is a member of the [[Caribbean Community]], [[United Nations]], [[World Trade Organization]], [[Commonwealth of Nations]], [[Organization of American States]], [[Organisation of Eastern Caribbean States]], and the Eastern Caribbean's [[Regional Security System]].
46160
46161 == Miscellaneous topics ==
46162 * [[Communications in Antigua and Barbuda]]
46163 * [[Culture of Antigua and Barbuda]]
46164 ** [[Music of Antigua and Barbuda]]
46165 * [[Military of Antigua and Barbuda]]
46166 * [[Transportation in Antigua and Barbuda]]
46167
46168 ==See also==
46169 * [[Caribbean Community]]
46170 * [[Lesser Antilles]]
46171 * [[List of sovereign states]]
46172
46173 ==References==
46174 *&quot;[http://www.cia.gov/cia/publications/factbook/geos/ac.html Antigua and Barbuda]&quot;&lt;/cite&gt;. [[CIA World Factbook]], accessed [[28 February]] [[2005]].
46175
46176 == External links ==
46177 {{wiktionary}}
46178 *[http://www.ab.gov.ag The Official Website of the Government of Antigua and Barbuda]
46179 *[http://www.antigua-barbuda.org/index.html Antigua &amp; Barbuda], its Department of Tourism website
46180 *[http://www.loc.gov/rr/international/hispanic/antigua/antigua.html Antigua and Barbuda], United States Library of Congress Portals on the World
46181 *[http://www.gksoft.com/govt/en/ag.html Governments on the WWW: Antigua and Barbuda]
46182 *[http://www.insideantigua.com Inside Antigua], Antigua news &amp; weather
46183 *[http://www.antigua-barbuda.com The High Commission of Antigua and Barbuda]. Tourism, business, history and culture, politics - an up to date website.
46184 *[http://www.antiguacarnival.com Antigua Carnival] - with great photo galleries.
46185 *[http://antigua-guide.info/ Antigua &amp; Barbuda Vacation Guide] - includes articles on accommodations, transportation, dining, and weather.
46186
46187 {{West_Indies}}
46188 {{Caricom}}
46189 &lt;br&gt;
46190 {{Commonwealth Realms}}
46191 [[Category:Antigua_and_Barbuda|*]]
46192 [[Category:Island nations]]
46193 [[Category:CARICOM_member_states]]
46194 [[Category:Members of the Commonwealth of Nations]]
46195 [[Category:Former British colonies]]
46196
46197 &lt;!--interwiki--&gt;
46198
46199 [[an:Antigua y Barbuda]]
46200 [[bg:АĐŊŅ‚иĐŗŅƒĐ° и БаŅ€ĐąŅƒĐ´Đ°]]
46201 [[zh-min-nan:Antigua kap Barbuda]]
46202 [[bn:āĻāĻ¨ā§āĻŸāĻŋāĻ—ā§āĻ¯āĻŧāĻž āĻāĻŦāĻ‚ āĻŦāĻžāĻ°ā§āĻŦā§āĻĄāĻž]]
46203 [[bs:Antigva i Barbuda]]
46204 [[ca:Antigua i Barbuda]]
46205 [[cs:Antigua a Barbuda]]
46206 [[da:Antigua og Barbuda]]
46207 [[de:Antigua und Barbuda]]
46208 [[et:Antigua ja Barbuda]]
46209 [[es:Antigua y Barbuda]]
46210 [[eo:Antigvo-Barbudo]]
46211 [[fr:Antigua-et-Barbuda]]
46212 [[gl:Antiga e Barbuda - Antigua and Barbuda]]
46213 [[ko:ė•¤í‹°ę°€ 바ëļ€ë‹¤]]
46214 [[hr:Antigva i Barbuda]]
46215 [[io:Antiga e Barbuda]]
46216 [[id:Antigua dan Barbuda]]
46217 [[is:Antígva og BarbÃēda]]
46218 [[it:Antigua e Barbuda]]
46219 [[he:אנטיגואה וברבודה]]
46220 [[lv:Antigva un Barbuda]]
46221 [[lt:Antigva ir Barbuda]]
46222 [[hu:Antigua Ês Barbuda]]
46223 [[ku:AntigÃģa Ãģ BerbÃģda]]
46224 [[ms:Antigua dan Barbuda]]
46225 [[na:Antigua me Barbuda]]
46226 [[nl:Antigua en Barbuda]]
46227 [[nds:Antigua un Barbuda]]
46228 [[ja:ã‚ĸãƒŗテã‚Ŗグã‚ĸãƒģバãƒŧブãƒŧダ]]
46229 [[no:Antigua og Barbuda]]
46230 [[nn:Antigua og Barbuda]]
46231 [[pl:Antigua i Barbuda]]
46232 [[pt:Antígua e Barbuda]]
46233 [[ro:Antigua şi Barbuda]]
46234 [[ru:АĐŊŅ‚иĐŗŅƒĐ° и БаŅ€ĐąŅƒĐ´Đ°]]
46235 [[sa:ā¤…ā¤‚ā¤ŸāĨ€ā¤—āĨā¤ĩā¤ž]]
46236 [[sq:Antigua dhe Barbuda]]
46237 [[simple:Antigua and Barbuda]]
46238 [[sk:Antigua a Barbuda]]
46239 [[sl:Antigva in Barbuda]]
46240 [[sr:АĐŊŅ‚иĐŗва и БаŅ€ĐąŅƒĐ´Đ°]]
46241 [[fi:Antigua ja Barbuda]]
46242 [[sv:Antigua och Barbuda]]
46243 [[tl:Antigua at Barbuda]]
46244 [[tr:Antigua ve Barbuda]]
46245 [[uk:АĐŊŅ‚иĐŗŅƒĐ° Ņ– БаŅ€ĐąŅƒĐ´Đ°]]
46246 [[zh:厉提į“œå’Œåˇ´å¸ƒčžž]]</text>
46247 </revision>
46248 </page>
46249 <page>
46250 <title>A Man for All Seasons</title>
46251 <id>952</id>
46252 <revision>
46253 <id>42063055</id>
46254 <timestamp>2006-03-03T15:30:59Z</timestamp>
46255 <contributor>
46256 <ip>24.15.135.55</ip>
46257 </contributor>
46258 <comment>/* Quotation */</comment>
46259 <text xml:space="preserve">{{Infobox Film | name = A Man for All Seasons, TV and cinematic films
46260 | image = A Man for All Seasons DVD cover.jpg
46261 | caption = A Man for All Seasons
46262 | director = [[Fred Zinnemann]]
46263 | producer = Fred Zinnemann
46264 | writer = [[Robert Bolt]]
46265 | starring =[[Paul Scofield]]&lt;br&gt;[[Wendy Hiller]]&lt;br&gt;[[Leo McKern]]
46266 | music =[[Georges Delerue]]
46267 | cinematography =
46268 | editing =
46269 | distributor = [[Columbia Pictures]]
46270 | released = [[December 12]], [[1966]]
46271 | runtime = 120 min
46272 | language = English
46273 | budget = $3,900,000 (estimated)
46274 | imdb_id = 0060665
46275 }}
46276 '''''A Man for All Seasons''''' is a play by [[Robert Bolt]], first performed in [[London]] on [[July 1]] [[1960]]. It has subsequently been made into a feature film and a television movie.
46277
46278 {{spoiler}}
46279
46280 The plot is based on the true story of Sir [[Thomas More]], the [[16th century|16th-century]] Chancellor of [[England]], who refuses to endorse or denounce the [[monarch|king's]] wish to divorce his aging wife so that he can marry his mistress. The King is [[Henry VIII of England]] and his wife is [[Catherine of Aragon]], the first of an eventual six.
46281
46282 The play portrays More as a man of principle, envied by rivals such as [[Thomas Cromwell]] and loved by the common people and by his family.
46283
46284 [[Image:A Man for All Seasons.jpg|left|250px|thumb|Thomas More ([[Paul Scofield]]) is accused of [[high treason]] by Cromwell ([[Leo McKern]]) - 1966 film]] [[Paul Scofield]], who played the leading role in the [[West End]], reprised it on [[Broadway theatre|Broadway]] in [[1962]], winning a [[Tony Award]], and played More again in the first of two film versions ([[1966]]), winning an [[Academy Award for Best Actor|Oscar]] in the process. The film also stars [[Robert Shaw (actor)|Robert Shaw]] as Henry VIII, [[Orson Welles]] as [[Thomas Cardinal Wolsey|Wolsey]], a young [[John Hurt]] as More's nemesis [[Richard Rich, 1st Baron Rich|Richard Rich]], and an older [[Wendy Hiller]] as More's second wife. It was directed by [[Fred Zinnemann]]. In addition to the [[Academy Award for Best Actor|Best Actor Oscar]] won by Scofield, the film won [[Academy Awards]] for screenplay, [[Academy Award for Best Cinematography|cinematography]], costume design, [[Academy Award for Directing|Best Director]], and [[Academy Award for Best Picture|Best Picture]].
46285
46286 The [[1988]] version stars [[Charlton Heston]] (who also directed it) as More, [[Vanessa Redgrave]] (who appeared briefly in the [[1966]] version as [[Anne Boleyn]]) as More's wife, and Sir [[John Gielgud]] as Cardinal Wolsey.
46287
46288 More recently, the play has been staged in London's West End at the [[Theatre Royal]], Haymarket starring [[Martin Shaw]] and produced by [[Bill Kenwright]]. It closes on [[1 April]] [[2006]].
46289
46290 ==Quotation==
46291 [[Image:man4all.JPG|thumb|200px]]
46292
46293 '''Alice:''' Arrest him!
46294
46295 '''More:''' Why, what has he done?
46296
46297 '''Margaret:''' He's bad!
46298
46299 '''More:''' There is no law against that.
46300
46301 '''Roper:''' There is! God's law!
46302
46303 '''More:''' Then God can arrest him.
46304
46305 '''Roper:''' Sophistication upon sophistication.
46306
46307 '''More:''' No, sheer simplicity. The law, Roper, the law. I know what's legal, not what's right. And I'll stick to what's legal.
46308
46309 '''Roper:''' Then you set man's law above God's!
46310
46311 '''More:''' No, far below; but let me draw your attention to a fact -- I'm not God. The currents and eddies of right and wrong, which you find such plain sailing, I can't navigate. I'm no voyager. But in the thickets of the law, oh, there I'm a forrester.I doubt if there's a man alive who could follow me there, thank God.
46312
46313 '''Alice:''' While you talk, he's gone!
46314
46315 '''More:''' And go he should, if he was the Devil himself, until he broke the law!
46316
46317 '''Roper:''' So now you'd give the Devil benefit of law!
46318
46319 '''More:''' Yes. What would you do? Cut a great road through the law to get after the Devil?
46320
46321 '''Roper:''' I'd cut down every law in England to do that!
46322
46323 '''More:''' Oh? And when the last law was down, and the Devil turned round on you, where would you hide, Roper, the laws all being flat? This country's planted thick with laws from coast to coast -- man's laws, not God's -- and if you cut them down -- and you're just the man to do it -- do you really think you could stand upright in the winds that would blow then? Yes, I'd give the Devil benefit of law, for my own safety's sake.
46324
46325 ----
46326 '''More:''' It profits a man nothing to give his soul for the whole world ... but for Wales, Richard?
46327
46328 ==Redirections==
46329 [[A Man for All Seasons, play]]
46330
46331 [[A Man for All Seasons, film]]
46332
46333 ==External links==
46334 * {{imdb title|id=0060665|title=The 1966 film}}
46335 * {{imdb title|id=0095578|title=The 1988 film}}
46336 *[http://thebestnotes.com/booknotes/Man_For_All_Seasons/Man_For_All_Seasons01.html Free Study Guide for &quot;A Man for All Seasons&quot;] at [http://thebestnotes.com TheBestNotes.com]
46337 *''[http://artsandfaith.com/t100/2005/entry.php?film=49 A Man for All Seasons]'' (1966) at the [http://artsandfaith.com/top100/ Arts &amp; Faith Top100 Spiritually Significant Films] list
46338 *[http://www.kenwright.com Current London stage production].
46339
46340 {{start box}}
46341 {{succession box
46342 | title=[[Academy Award for Best Picture]]
46343 | years=1966
46344 | before=''[[The Sound of Music]]''
46345 | after=''[[In the Heat of the Night]]''
46346 }}
46347 {{end}}
46348
46349 {{Template:AcademyAwardBestPicture}}
46350
46351 [[Category:Films based on plays|Man for All Seasons, A]]
46352
46353 &lt;!-- Paul Scofield --&gt;
46354 &lt;!-- Robert Shaw --&gt;
46355 &lt;!-- Wendy Hiller --&gt;
46356
46357 [[Category:1966 films|Man for All Seasons, A]]
46358 [[Category:1988 films|Man for All Seasons, A]]
46359 [[Category:Film remakes|Man for All Seasons, A]]
46360 [[Category:Best Actor Oscar (film)|Man for All Seasons, A]]
46361 [[Category:Best Picture Oscar|Man for All Seasons, A]]
46362 [[Category:Best Supporting Actor Oscar Nominee (film)|Man for All Seasons, A]]
46363 [[Category:Best Supporting Actress Oscar Nominee (film)|Man for All Seasons, A]]
46364 [[Category:British films|Man for All Seasons, A]]
46365 [[Category:British plays|Man for All Seasons, A]]
46366 [[Category:Films directed by Fred Zinnemann|Man for All Seasons, A]]</text>
46367 </revision>
46368 </page>
46369 <page>
46370 <title>Azincourt</title>
46371 <id>953</id>
46372 <revision>
46373 <id>37220201</id>
46374 <timestamp>2006-01-29T15:33:33Z</timestamp>
46375 <contributor>
46376 <username>TheFEARgod</username>
46377 <id>381244</id>
46378 </contributor>
46379 <minor />
46380 <text xml:space="preserve">:''For other uses of Agincourt, see [[Agincourt]].''
46381
46382 '''Azincourt''' (sometimes: '''Agincourt''') is a village and [[commune in France|commune]] of northern [[France]] in the [[Pas-de-Calais]] ''[[dÊpartment]]'', 14 miles to the north-west of [[Saint-Pol-sur-Ternoise]] by road, famous on account of the victory, on [[October 25]] [[1415]], of [[Henry V of England]] over the French in the [[Battle of Agincourt]]. Population (1999): 276.
46383
46384 The original museum of the battle featuring model knights fabricated from [[Action Man]] has given way to a more professional space with slide shows, audio commentary's and some interactive elements. The museum building is itself modelled on the [[English longbow]] of the English soldiers.
46385
46386 [[Category:Communes of Pas-de-Calais]]
46387 {{PasdeCalais-geo-stub}}
46388
46389 [[fr:Azincourt]]
46390 [[it:Azincourt]]
46391 [[nl:Azincourt]]
46392 [[pl:Azincourt]]
46393 [[sr:АСĐĩĐŊĐēŅƒŅ€]]
46394 [[sv:Agincourt]]</text>
46395 </revision>
46396 </page>
46397 <page>
46398 <title>Albert Speer</title>
46399 <id>954</id>
46400 <revision>
46401 <id>42134522</id>
46402 <timestamp>2006-03-04T01:22:13Z</timestamp>
46403 <contributor>
46404 <username>Clngre</username>
46405 <id>30878</id>
46406 </contributor>
46407 <minor />
46408 <comment>rv accidently to wrong version for last rv</comment>
46409 <text xml:space="preserve">:''For the son of Albert Speer, also an architect, see [[Albert Speer (the younger)]]''
46410 [[Image:speer portrait.jpg|right|thumb|200px|Albert Speer]]
46411
46412 {{Audio|De-Albert_Speer.ogg|'''Albert Speer'''}} ([[March 19]], [[1905]] &amp;ndash; [[September 1]], [[1981]]) was born ''Berthold Konrad Hermann Albert Speer'' in [[Mannheim]], [[Germany]], the second of three sons. He is sometimes called 'the first architect of the [[Third Reich]]'. He was [[Hitler|Hitler's]] chief [[architect]] in [[Nazi Germany]] and in [[1942]] became Hitler's minister of armaments, when he had considerable success in reforming and streamlining Germany's war production. After the war he was tried at [[Nuremberg trials|Nuremberg]] where he expressed remorse and was sentenced to 20 years in prison. After his release, he became a successful author, writing a number of semi-autobiographical works until his death in 1981 from a [[cerebral hemorrhage]].
46413
46414 ==Early years==
46415 Although Speer originally wanted to become a [[mathematics|mathematician]] when he was young, he ended up following in the footsteps of his father and grandfather and studied architecture. He began his architectural studies at the Karlsruhe Institute of Technology; his decision to study locally instead of at one of the more prestigious institutes was dictated by the inflation of 1923. In 1924 when the inflation had stabilised, Speer transferred his studies to the more esteemed Munich Institute of Technology. In 1925 he transferred again, this time to the Berlin Institute of Technology. It was there that he was under the tutelage of [[Heinrich Tessenow]], Speer had a high regard for Tessenow and when he passed his exams in 1927 he became Tessenow's assistant. His duties as assistant involved teaching seminar classes three days a week. Although Tessenow himself never agreed with [[Nazism]], a number of his students did, and it was they who persuaded Speer to attend a [[Nazi Party]] rally in a Berlin beer-hall in December 1930.
46416
46417 Speer claims to have been apolitical as a young man; nevertheless, he did attend the rally. He was surprised to find Hitler dressed in a neat blue suit, rather than the brown uniform seen on Nazi Party posters. Speer claimed to have been quite affected, not only with Hitler's proposed solutions to the threat of communism and his renunciation of the [[Treaty of Versailles]], but also with the man himself. Several weeks later he attended another rally, though this one was presided over by [[Goebbels|Joseph Goebbels]]. Speer was disturbed by the way he had whipped the crowd into a frenzy, playing on their hopes. Although Goebbels' performance offended Speer, he could not shake the impressions Hitler made on him. The next day he joined the Nazi Party as member number 474,481. In this same year ([[1931]]) he married [[Margarete Weber]].
46418
46419 Speer's first major commission as a Party member came in [[1932]] when [[Karl Hanke]] (whose [[villa]] Speer previously worked on) recommended him to Goebbels to help renovate the new District Headquarters in [[Berlin]], and, later, to renovate Goebbels' [[Propaganda]] Ministry. Goebbels was impressed with his work and recommended him to Hitler, who assigned him to help [[Paul Troost]] renovate the Chancellery in Berlin. Speer's most notable work on this assignment was the addition of the famous balcony from which Hitler often presented himself to crowds that assembled below. Speer subsequently became a prominent member of Hitler's inner circle and a very close friend to him, winning a special place with Hitler that was unique amongst the Nazi leadership. Hitler, according to Speer, was very contemptuous towards anybody he viewed as part of the [[bureaucracy]], and prized fellow artists like Speer whom he felt a certain kinship with, especially as Hitler himself had previously entertained architectural ambitions.
46420
46421 ==First Architect of the Reich==
46422 When Troost died in [[1934]], Speer was chosen to replace him as the Party's chief architect. One of his first commissions after promotion was perhaps the most familiar of his designs: the [[Zeppelintribune]], the [[Nuremberg]] parade grounds seen in [[Leni Riefenstahl]]'s propaganda masterpiece, ''[[Triumph of the Will]]''. In his autobiography, Speer claimed that, upon seeing the original design, he made a derogatory remark to the effect that the parade ground would resemble a &quot;rifle club&quot; meet. He was then challenged to create a new design.
46423
46424 The grounds were based on ancient [[Doric order|Doric]] architecture of the [[Pergamon Altar]] in [[Anatolia]], but magnified to an enormous scale, capable of holding two hundred and forty thousand people. At the 1934 Party rally on the parade grounds, Speer surrounded the site with one hundred and thirty [[anti-aircraft]] [[searchlight|searchlights]]. This created the effect of a &quot;cathedral of light,&quot; (which referenced [[columns]]) or, as it was called by [[United Kingdom|British]] [[Ambassador|Ambassador]] [[Sir Neville Henderson]], a &quot;cathedral of ice&quot;.
46425
46426 Nuremberg was also to be the site of many more official Nazi buildings, most of which were never built; for example, the German Stadium would have held another four hundred thousand spectators as the site of the [[Aryan Games]], a proposed replacement for the [[Olympic Games]]. While planning these buildings, Speer invented the theory of &quot;[[ruin value]].&quot; According to this theory, enthusiastically supported by Hitler, all new buildings would be constructed in such a way that they would leave aesthetically pleasing ruins thousands of years in the future. Such ruins would be a testament to the greatness of the [[Third Reich]], just as ancient [[Ancient Greece|Greek]] or [[Ancient Rome|Roman]] ruins were symbols of the greatness of their civilizations.
46427 &lt;!-- Image with unknown copyright status removed: [[Image:German pavilion 1937 exhibition.jpg|frame|right|Speer's German pavilion at the [[Exposition Internationale des Arts et Techniques dans la Vie Moderne (1937)|1937 international exposition in Paris]].]] --&gt;
46428
46429 In [[1937]] Speer designed the [[Germany|German]] Pavilion for the [[Exposition Internationale de Arts et Techniques dans la Vie Moderne (1937)|1937 international exposition in Paris]]. Speer's work was located directly across from the [[Soviet Union|Soviet]] Pavilion and was designed to represent a massive defense against the onslaught of [[communism]]. Both pavilions were awarded gold medals for their designs.
46430
46431 Speer was also directed to make plans to rebuild Berlin, which was to become the [[capital]] of a &quot;Greater Germany&quot; &amp;mdash; [[Welthauptstadt Germania]]. The first step in these plans was the [[Olympic Stadium, Berlin|Olympic Stadium]] for the [[1936 Summer Olympics]], designed by [[Werner March]]. Speer also designed the [[new German Reichs Chancellery|new Reichs Chancellery]], which included a vast hall designed to be twice as long as the [[Hall of Mirrors]] in the [[Palace of Versailles]]. Hitler wanted him to build a third, even larger Chancellery, although it was never begun. The second Chancellery was damaged by the [[Battle of Berlin]] in [[1945]] and was eventually demolished by the Soviet occupiers after the war.
46432 [[Image:Adolf Hitler in Paris.jpg|thumb|left|210px|Speer (left) with Hitler and [[Arno Breker]] in Paris, [[June 23]], [[1940]].]]
46433
46434 Almost none of the other buildings planned for Berlin were ever built. Berlin was to be reorganized along a central three-mile-(five km) long avenue. At the north end, Speer planned to build the ''[[Volkshalle]]'' &amp;mdash; an enormous [[dome|domed]] building, based on [[St. Peter's Basilica]] in [[Rome]]. The dome of the building would have been impractically large; it would be over seven hundred feet (over two hundred meters) high and eight hundred feet (three hundred meters) in diameter, sixteen times larger than the dome of St. Peter's. At the southern end of the avenue would be an [[arch]] based on the [[Arc de Triomphe]] in Paris, but again, much larger; it would be almost four hundred feet (120 m) high, and the Arc de Triomphe would have been able to fit inside its opening. The outbreak of [[World War II]] in [[1939]] led to the abandonment of these plans.
46435
46436 During his involvement in the rebuilding of Berlin, he was allegedly responsible for the forced evictions of [[Jew]]s from their houses to make room for his grand plans, and for re-housing German citizens affected by this work. He was also listed as being present at the 1943 [[Posen Conference]], a charge Speer later contested by saying that he had in fact left early.
46437
46438 Speer did have an architectural rival: [[Hermann Giesler]], whom Hitler also favored. There were frequent clashes between the two in regard to architectural matters and in closeness to Hitler.
46439
46440 ==Minister of Armaments==
46441 Hitler was always a strong supporter of Speer, in part because of Hitler's own frustrated artistic and architectural visions. A strong affinity developed between Hitler and the ambitious young architect early in their professional relationship. For Speer, serving as architect for the head of the German state and being given virtual ''carte blanche'' as to expenses, presented a tremendous opportunity. For Hitler, Speer seemed to be capable of translating Hitler's grandiose visions into tangible designs which expressed what Hitler felt were [[Nazism|National Socialist]] principles.
46442
46443 After Minister of Armaments and War Production [[Fritz Todt]] was killed in an airplane crash in [[1942]], Hitler appointed Speer as his successor in all of his posts. Hitler's affinity for Speer and the architect's efficiency and avoidance of party squabbling are believed to have been considerations in Speer's promotion. In his autobiography, Speer recounts that the power-hungry but lazy [[Hermann GÃļring]] raced to Hitler's headquarters upon word of Todt's death, hoping to claim the office. Hitler instead presented GÃļring with the ''fait accompli'' of Speer's appointment.
46444
46445 Faced with this new responsibility, Speer tried to put the German economy on a war footing comparable to that of the [[Allied]] nations, but found himself incessantly hindered by party politics and lack of cooperation from the Nazi hierarchy. Nevertheless, by slowly centralizing almost all industry control and cutting through the dense [[bureaucracy]], he succeeded in multiplying war production four times over the next two and a half years, with it actually reaching its peak in 1944 during the height of the [[Allied]] [[Strategic bombing during World War II | strategic bombing campaign]]. Another big hurdle in his way was the Nazi policy excluding women from factory work, a serious hindrance in war production and a problem unknown to Germany's enemies, who all made full use of the female workforce. To fill this gap, Speer made heavy use of foreign labor, a considerable portion of it [[forced labor]].
46446
46447 Speer was considered one of the more &quot;rational&quot; members of the Nazi hierarchy, in contrast to the raging [[Hitler]], grotesque [[Hermann GÃļring|GÃļring]], fanatical [[Goebbels]], and perverse [[Himmler]].
46448 Speer's name was found on the list of members of a post-Hitler government envisioned by the [[July 20 plot]] to kill Hitler.
46449 However, the list had an annotation &quot;if possible&quot; by his name, which Speer credits with helping save his life from the extensive purges that followed the scheme's failure.
46450 By his own account, Speer considered [[assassin|assassinating]] Hitler in [[1945]] by releasing poison gas into the air intake vent on the [[FÃŧhrerbunker]], but backed down for a number of reasons. Independent evidence for this is sparse. Some credit his revelation of this plan at the [[Nuremberg trials]] as being pivotal in sparing him the [[death sentence]], which the [[Soviet]]s had pushed for.
46451
46452 Hitler continued to consider Speer trustworthy, though this trust waned near the war's end as Speer, at considerable risk, campaigned clandestinely to prevent the implementation of Hitler's [[scorched earth]] policy on both German soil and occupied territories. Speer worked in association with General [[Gotthard Heinrici]], whose troops fighting in the east retreated to the American-held lines and surrendered there instead of following Hitler's orders to make what would have been a suicidal effort to hold off the Soviets from Berlin.
46453
46454 Speer even confessed to Hitler shortly before the dictator's suicide that he had disobeyed, and indeed actively hindered, Hitler's &quot;scorched-earth&quot; decree.
46455 According to Speer's autobiography, Speer visited the [[FÃŧhrerbunker]] towards the end and stated gently but bluntly to Hitler that the war was lost and expressed his opposition to the systematic destruction of Germany while reaffirming his affection and faith in Hitler. This conversation, it is said, brought Hitler to tears. In disfavor, Speer was excluded from the new cabinet Hitler outlined in his [[Last will and testament of Adolf Hitler | final political testament]], where Speer was to be replaced by his subordinate, [[Karl-Otto Saur]].
46456
46457 ==After the war==
46458 [[Image:Albert-Speer-72-929.jpg|thumb|left|230px|Speer at the Nuremberg Trials]]
46459 ===Nuremberg trials===
46460 Immediately after the war, there seemed to be little indication that Speer would be charged with [[war crimes]]. Speer traveled unprotected and openly participated in the so-called [[Flensburg government]] for weeks, in the presence of Allied officers. Upon request, he actually held a series of widely-attended lectures for officials of the Allied occupying powers on various topics, including the mistakes made by the Nazi government in industrial and economic affairs (although he never during these lectures spoke about slave labor) and the effectiveness of the Allied [[strategic bombing]] campaigns. Some [[journalists]] and spectators even expected that Speer would be appointed by the occupying powers to help restore Germany's economy. However, any such speculation ended when, after one of these lectures, he was arrested and sent to Nuremberg for trial.
46461 At the [[Nuremberg trials]] after the war Speer was one of the few officials to express remorse and plead guilty, but was sentenced to 20 years' imprisonment in [[Spandau Prison]], [[West Berlin]], largely for his use of slave labor. At the trials, the prosecution introduced as evidence a photograph of Speer visiting the [[Mauthausen]] [[concentration camp]], where he is clearly shown surrounded by emaciated prisoners. The prosecution claimed this proved Speer was well aware of [[The Holocaust|the Holocaust]]. However, Speer held that he was only given a &quot;V.I.P.&quot; tour of the concentration camp, meaning he was never shown the more vile side of the camp's purpose.
46462
46463 According to interviews after his imprisonment, as well as his memoirs, Speer adopted a &quot;see no evil&quot; attitude towards the Nazi atrocities. For example, through one of his friends, [[Karl Hanke]], he learned of [[Auschwitz (concentration camp)|Auschwitz]] and the large number of deaths taking place there. He then purposely avoided visiting the camp or trying to get more information on what was taking place. In his autobiography, he claims that he had no direct involvement or knowledge of the Holocaust, although he faults himself for blinding himself to its existence. He certainly was aware, at least, of harsh conditions for the slave labor and some critics believe that his books understate his role in the atrocities of the era. [http://news.telegraph.co.uk/news/main.jhtml?xml=/news/2005/05/11/wspeer11.xml Newly released documents] suggest that Speer knew a lot more about the atrocities than he was telling, but hard evidence for that remains very thin.
46464
46465 One problem with assessments of Speer's complicity in the Holocaust comes from his status in post-war Germany - he became a symbol for people who were involved with the Nazi regime yet did not have (or claimed not to have had) any part in the regime's atrocities. Even today, German historians such as [[Joachim Fest]] tend to have a high opinion of him, while non-German historians take a lower view. As [[film director]] [[Heinrich Breloer]] remarked in the above-linked article:
46466
46467 ::''[Speer created] a market for people who said &quot;believe me, I didn't know anything about [the Holocaust]. Just look at the FÃŧhrer's friend, he didn't know about it either.&quot;''
46468
46469 ===Imprisonment===
46470 :''Main article: [[Spandau Prison]]''
46471
46472 His time in prison, painstakingly documented in his secret prison diary which was later released as ''[[The Spandau Diaries]]'', was described as consisting mainly of a mind-numbing and pedantically enforced daily routine, incessant petty personal rivalry between the seven prisoners, a pervasive and bloated prison [[bureaucracy]], and the passing of many false hopes of premature release. After some time Speer, and most of the others, had established secret lines of communication to the outside world via sympathetic prison staff. Speer made full use of this by, amongst other things, writing innumerable letters to his family (which were restricted to one outgoing page per month under official regulation) and even having money spent on his behalf from a special bank account for a variety of benign purposes.
46473
46474 Speer, as recounted in his diary, made a deliberate effort to make as productive use of his time as possible. In the first decade, this took the form of putting on paper the first draft of his tell-all [[memoirs]], an act Speer considered to be his &quot;duty&quot; to history and his people, he being the sole surviving member of Hitler's inner circle and in possession of knowledge and a degree of objectivity that no other had. As the prison directors both forbade the writing of a memoir and recorded each sheet of paper given to the prisoners, he wrote much of his memoir secretly on toilet paper, tobacco wrappings, and any other material he could get his hands on, and then had the pages systematically smuggled out.
46475
46476 All the while Speer devoted much of his energy and time towards reading books from the prison library, which was organized by fellow prisoner and ex-[[Grand Admiral]] [[Erich Raeder]]. Speer was, more so than the others, a voracious reader and he completed well over 500 books in the first three years alone.{{ref|spandau}} His tastes ranged from Greek drama to famous plays to architectural books and journals, partly from which he collected information for a book he intended to write on the history and function of windows in architecture.
46477
46478 Later, Speer took to the prison garden for enjoyment and work. Heretofore the garden was divided up into small personal plots for each prisoner with the produce of the garden being used in the prison kitchen. When regulations began to slacken in this regard, Speer was allowed to build an ambitious garden, complete with a meandering path, [[rock garden]], and a wide variety of flowers. The garden was even, humorously, centered around a &quot;north-south axis&quot;, which was to be the core design element of Speer and Hitler's new Berlin. Speer then took up a &quot;walking tour of the world&quot; by ordering geography and travel books from the local library and walking laps in the prison garden visualizing his journey. Meticulously calculating every metre traveled, he began in northern Germany, went through the [[Balkans]], [[Iran|Persia]], [[India]], and [[Siberia]], then crossed the [[Bering Strait]] and continued southwards, finally ending his sentence in central [[Mexico]].
46479
46480 ===Release===
46481 His release from prison in [[1966]] was a world-wide media event. He then revised and published the several semi-[[autobiography|autobiographical]] books he had begun in prison. His books, most notably ''[[Inside the Third Reich]]'' and ''The Spandau Diaries'', which were secretly written during his incarceration and systematically smuggled out, provide a unique and personal look into the personalities of the Nazi era and have become much valued by historians. Speer died of a [[cerebral hemorrhage]] in [[London]], [[England]], on [[September 1]], [[1981]] — exactly 42 years after World War II began.
46482
46483 Speer's son, also named Albert, became a successful [[architect]] in his own right, and was responsible for the design of [[Expo 2000]] (the [[world exposition]] that took place in [[Hanover]] in the year 2000), design of the [[Shanghai]] International Automobile City and the Beijing Olympic complex. His daughter [[Hilde Schramm]] became a noted left-wing parliamentarian.
46484
46485 ==See also==
46486 * [[Inside the Third Reich]]
46487 * [[List of Adolf Hitler books]]
46488 * [[Nazi architecture]]
46489
46490 ==Notes==
46491 #{{note|spandau}}{{cite book
46492 | last = Fishman | first = Jack
46493 | title=Long Knives and Short Memories: The Spandau Prison Story
46494 | publisher=Breakwater Books
46495 | year=1986
46496 | id=ISBN 0920911005
46497 | pages = pg 129
46498 }}
46499
46500 ==Resources==
46501 ===Works===
46502 * {{cite book
46503 | last = Speer | first = Albert
46504 | authorlink = Albert Speer
46505 | year = 1970
46506 | title = [[Inside the Third Reich]]
46507 | publisher = Simon &amp; Schuster
46508 | id = ISBN 0684829495
46509 }}
46510 * {{cite book
46511 | last = Speer | first = Albert
46512 | authorlink = Albert Speer
46513 | year = 1976
46514 | title = Spandau: The Secret Diaries
46515 | publisher = Macmillan
46516 | id = ISBN 0026995018
46517 }}
46518 * {{cite book
46519 | last = Speer | first = Albert
46520 | authorlink = Albert Speer
46521 | year = 1981
46522 | title = Infiltration: How [[Heinrich Himmler]] Schemed to Build an SS Industrial Empire
46523 | publisher = Macmillan
46524 | id = ISBN 0026128004
46525 }}
46526
46527 ===Biographies===
46528 * {{cite book
46529 | author = [[Joachim Fest]], [[Ewald Osers]] (translator), [[Alexandra Dring]]
46530 | year = 2002
46531 | title = Speer: The Final Verdict
46532 | publisher = Harcourt
46533 | id = ISBN 0151005567
46534 }}
46535 * {{cite book
46536 | first = Dan | last = van der Vat
46537 | authorlink = Dan van der Vat
46538 | year = 1997
46539 | title = The Good Nazi: The Life and Lies of Albert Speer
46540 | publisher = George Weidenfeld &amp; Nicholson
46541 | id = ISBN 0297817213
46542 }}
46543 * {{cite book
46544 | first = Gitta | last = Sereny
46545 | authorlink = Gitta Sereny
46546 | year = 1995
46547 | title = Albert Speer: His Battle With Truth
46548 | publisher = Knopf
46549 | id = ISBN 0394529154
46550 }}
46551 * {{cite book
46552 | first = Matthias | last = Schmidt
46553 | authorlink = Matthias Schmidt
46554 | year = 1984
46555 | title = Albert Speer: The End of a Myth
46556 | publisher = St Martins Press
46557 | id = ISBN 031201709X
46558 }}
46559
46560 ==External links==
46561 {{Commons|Albert Speer}}
46562 *[http://www.bbc.co.uk/bbcfour/audiointerviews/profilepages/speera1.shtml BBC - BBC Four - Audio Interviews - Albert Speer]
46563 *[http://www.dataphone.se/~ms/speer/welcom2.htm A tribute to Speer's architecture]
46564 *[http://www.us-israel.org/jsource/Holocaust/speer.html Testimony of Albert Speer at us-israel.org]
46565 *[http://www.speer-und-er.de/ ''Speer und Er''] German docudrama broadcast in May 2005, presenting new incriminating evidence of Speer's role, e.g. in the construction of Auschwitz. In German
46566 *[http://www.neue-reichskanzlei.de 3d animated Reich Chancellery]
46567 {{Bunker}}
46568 [[Category:1905 births|Speer, Albert]]
46569 [[Category:1981 deaths|Speer, Albert]]
46570 [[Category:German World War II people|Speer, Albert]]
46571 [[Category:Nazi leaders|Speer, Albert]]
46572 [[Category:German architects|Speer, Albert]]
46573 [[Category:Nazi architecture]]
46574 [[Category:Fascist/Nazi era scholars and writers|Speer, Albert]]
46575 [[Category:People convicted in the Nuremberg Trials|Speer, Albert]]
46576
46577 [[br:Albert Speer]]
46578 [[da:Albert Speer]]
46579 [[de:Albert Speer]]
46580 [[el:ΆÎģÎŧĪ€ÎĩĪĪ„ ÎŖĪ€ÎĩĪ]]
46581 [[es:Albert Speer]]
46582 [[fr:Albert Speer (senior)]]
46583 [[it:Albert Speer]]
46584 [[he:אלברט שפאר]]
46585 [[ka:შპეერი, ალბერáƒĸ]]
46586 [[hu:Albert Speer]]
46587 [[nl:Albert Speer]]
46588 [[ja:ã‚ĸãƒĢベãƒĢトãƒģã‚ˇãƒĨペãƒŧã‚ĸ]]
46589 [[no:Albert Speer]]
46590 [[pl:Albert Speer (ojciec)]]
46591 [[pt:Albert Speer]]
46592 [[ru:ШĐŋĐĩĐĩŅ€, АĐģŅŒĐąĐĩŅ€Ņ‚]]
46593 [[sl:Albert Speer]]
46594 [[fi:Albert Speer]]
46595 [[sv:Albert Speer]]</text>
46596 </revision>
46597 </page>
46598 <page>
46599 <title>Alliaceae</title>
46600 <id>955</id>
46601 <revision>
46602 <id>39719977</id>
46603 <timestamp>2006-02-15T10:36:27Z</timestamp>
46604 <contributor>
46605 <username>Espetkov</username>
46606 <id>52780</id>
46607 </contributor>
46608 <minor />
46609 <text xml:space="preserve">{{Taxobox
46610 | color = lightgreen
46611 | name = Alliaceae
46612 | image = Ipheion uniflorum5.jpg
46613 | image_width = 250px
46614 | image_caption = ''Ipheion uniflorum''
46615 | regnum = [[Plant]]ae
46616 | divisio = [[Flowering plant|Magnoliophyta]]
46617 | classis = [[Liliopsida]]
46618 | ordo = [[Asparagales]]
46619 | familia = '''Alliaceae'''
46620 | subdivision_ranks = Genera
46621 | subdivision =
46622 See text.
46623 }}
46624
46625 '''Alliaceae''' is a [[Family (biology)|family]] of herbaceous [[perennial]] plants. They are [[monocot]]s, part of [[Order (biology)|order]] [[Asparagales]].
46626
46627 Genus ''[[Allium]]'' includes several important food plants, including [[onion]]s (''Allium cepa''), [[chives]] (''A. schoenoprasum''), [[garlic]] (''A. sativum'' and ''A. scordoprasum''), and [[Leek (vegetable)|leek]]s (''A. porrum'').
46628
46629 The Alliaceae are closely related to two other families in the order Asparagales, the amaryllis family ([[Amaryllidaceae]]) and the family [[Agapanthaceae]], which includes the single genus ''[[Agapanthus]]''. Based on the close relationship between the three families, the [[Angiosperm Phylogeny Group]] recognizes the alternative of including the Amaryllidaceae and the Agapanthaceae in family Alliaceae.
46630
46631 == Genera ==
46632 Several genera that were historically classified in the Alliaceae, including ''[[Androstephium]]'', ''[[Bessera]]'', ''[[Bloomeria]]'', ''[[Brodiaea]]'', ''[[Dandya]]'', ''[[Dichelostemma]]'', ''[[Milla]]'', ''[[Petronymphe]]'', ''[[Triteleia]]'', and ''[[Triteleiopsis]]'', are now increasingly thought to represent a separate family, [[Themidaceae]].
46633
46634 ''[[Allium]]''&lt;br /&gt;
46635 ''[[Ancrumia]]''&lt;br /&gt;
46636 ''[[Caloscordum]]''&lt;br /&gt;
46637 ''[[Erinna]]''&lt;br /&gt;
46638 ''[[Garaventia]]''&lt;br /&gt;
46639 ''[[Gethyum]]''&lt;br /&gt;
46640 ''[[Gilliesia]]''&lt;br /&gt;
46641 ''[[Ipheion]]''&lt;br /&gt;
46642 ''[[Leucocoryne]]''&lt;br /&gt;
46643 ''[[Miersia]]''&lt;br /&gt;
46644 ''[[Milula]]''&lt;br /&gt;
46645 ''[[Muilla]]''&lt;br /&gt;
46646 ''[[Nectaroscordum]]''&lt;br /&gt;
46647 ''[[Nothoscordum]]''&lt;br /&gt;
46648 ''[[Solaria (genus)]]''&lt;br /&gt;
46649 ''[[Speea]]''&lt;br /&gt;
46650 ''[[Trichlora]]''&lt;br /&gt;
46651 ''[[Tristagma]]''&lt;br /&gt;
46652 ''[[Tulbhagia]]''&lt;br /&gt;
46653 ''[[Zoelnerallium]]''&lt;br /&gt;
46654
46655 [[Category:Plant families]]
46656 [[Category:Asparagales]]
46657
46658 [[bg:ЛŅƒĐēОви]]
46659 [[da:Løg-familien]]
46660 [[de:Zwiebelgewächse]]
46661 [[fr:Alliaceae]]
46662 [[lt:Česnakiniai augalai]]
46663 [[nl:Uienfamilie]]
46664 [[pt:Alliaceae]]</text>
46665 </revision>
46666 </page>
46667 <page>
46668 <title>Asteraceae</title>
46669 <id>956</id>
46670 <revision>
46671 <id>41495585</id>
46672 <timestamp>2006-02-27T19:27:19Z</timestamp>
46673 <contributor>
46674 <username>AshishG</username>
46675 <id>172488</id>
46676 </contributor>
46677 <minor />
46678 <comment>/* Uses */ ''nectar'' disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
46679 <text xml:space="preserve">{{Taxobox
46680 | color = lightgreen
46681 | name = Sunflowers
46682 | image = Aster-alpinus.JPG
46683 | image_width = 250px
46684 | image_caption = ''Aster alpinus''
46685 | regnum = [[Plant]]ae
46686 | divisio = [[Flowering plant|Magnoliophyta]]
46687 | classis = [[Magnoliopsida]]
46688 | ordo = [[Asterales]]
46689 | familia = '''Asteraceae'''
46690 | familia_authority = [[Martynov]], 1820
46691 | synonyms = ''Compositae'' &lt;small&gt;[[Giseke]]&lt;/small&gt;
46692 | diversity = About 900 genera and 13,000 species
46693 | diversity_link = List of Asteraceae genera
46694 | subdivision_ranks = Subfamilies
46695 | subdivision =
46696 [[Barnadesioideae]]&lt;br&gt;
46697 [[Cichorioideae]]&lt;br&gt;
46698 :Tribe [[Arctotidae]]&lt;br&gt;
46699 :Tribe [[Cardueae]]&lt;br&gt;
46700 :Tribe [[Eremothamneae]]&lt;br&gt;
46701 :Tribe [[Lactuceae]]&lt;br&gt;
46702 :Tribe [[Liabeae]]&lt;br&gt;
46703 :Tribe [[Mutisieae]]&lt;br&gt;
46704 :Tribe [[Tarchonantheae]]&lt;br&gt;
46705 :Tribe [[Vernonieae]]&lt;br&gt;
46706 [[Asteriodeae]]&lt;br&gt;
46707 :Tribe [[Anthemideae]]&lt;br&gt;
46708 :Tribe [[Astereae]]&lt;br&gt;
46709 :Tribe [[Calenduleae]]&lt;br&gt;
46710 :Tribe [[Eupatorieae]]&lt;br&gt;
46711 :Tribe [[Gnaphalieae]]&lt;br&gt;
46712 :Tribe [[Helenieae]]&lt;br&gt;
46713 :Tribe [[Heliantheae]]&lt;br&gt;
46714 :Tribe [[Inuleae]]&lt;br&gt;
46715 :Tribe [[Plucheae]]&lt;br&gt;
46716 :Tribe [[Senecioneae]]&lt;br&gt;
46717 '''See also [[List of Asteraceae genera]]'''
46718 }}
46719
46720 The family '''Asteraceae''' or, alternatively, family '''Compositae''', known as the '''aster''', '''daisy''' or '''sunflower family''', is a taxon of [[dicot|dicotyledonous]] [[flowering plant]]s. The family name is derived from the genus ''[[Aster (flower)|Aster]]'' and refers to the [[star]]-shaped flower head of its members, typified well by the [[daisy]]. The Asteraceae is the second largest family in the Division [[Flowering plant|Magnoliophyta]], with some 1,100 genera and over 20,000 recognized species. Only the orchid family ([[Orchidaceae]]) is larger, with about 25,000 described species.
46721
46722 Plants belonging to the Asteraceae must share ALL the following characteristics (Judd et al., 1999). None of these traits, taken separately, can be considered [[Synapomorphy|synapomorphic]].
46723 * [[Inflorescence]]: a capitulum or flower head
46724 * Syngenesious [[anther]]s, i.e. with the stamens fused together at their edges by the anthers, forming a tube
46725 * [[Ovary]] with basal arrangement of the ovules
46726 * [[Ovule]]s one per ovary
46727 * Pappus (a tuft of hairs on a fruit)
46728 * The fruit is an [[achene]]
46729 * [[Terpene|Sesquiterpenes]] present in the essential oils, but iridoids lacking.
46730
46731 [[Image:Bidens_flwr.jpg|thumb|left|A typical Asteraceae flower head (here ''[[Bidens torta]]'') showing the individual flowers]]
46732 The most common characteristic of all these plants, is that what in common parlance might be called a &quot;flower&quot;, is an inflorescence or '''flower head'''; a densely packed cluster of many small, individual [[flowers]], usually called '''florets''' (meaning &quot;small flowers&quot;).
46733
46734 Plants in the family Asteraceae typically have one or both of two kinds of ''florets''. The outer perimeter of a flower head like that of a [[sunflower]] is composed of florets possessing a long strap-like [[petal]], termed a '''ligule'''; these are the '''ray florets'''. The inner portion of the flower head (or ''disc'') is composed of small flowers with tubular [[petal|corolla]]s; these are the '''disc florets'''. The composition of asteraceous inflorescences varies from all ray flowers (like [[dandelion]]s, genus ''Taraxacum'') to all disc flowers (like [[pineapple weed]]s).
46735
46736 The composite nature of the inflorescences of these plants led early taxonomists to call this family the Compositae. Although the rules governing naming conventions for plant families state that the name should come from the [[biological type|type genus]], in this case ''Aster'' and thus Asteraceae. However, the long prevailing name Compositae is also authorized as an alternative family name ([[ICBN]] Art. 18.6).
46737
46738 The numerous genera are divided into about 13 tribes. Only one of these, Lactuceae, is considered distinct enough to be a subfamily (subfamily Cichorioideae); the remainer, which are mostly overlapping, are put in the subfamily Asteroideae (Wagner, Herbst, and Sohmer, 1990).
46739
46740 ==Uses==
46741 Commercially important plants in the Asteraceae include the food crops [[lettuce]], [[chicory]], [[globe artichoke]], [[sunflower]], and [[Jerusalem artichoke]]. [[Guayule]] is a source of [[hypoallergenic]] [[latex]].
46742
46743 Many members of Asteracae are copious [[nectar (plant)|nectar]] producers and are useful for evaluating [[pollinator]] populations during their bloom. ''Centaurea'' (knapweed), ''Helianthus annuus'' (domestic sunflower), and some species of ''Solidago'' (goldenrod) are major &quot;[[honey]] plants&quot; for [[beekeeper]]s. ''Solidago'' produces relatively high protein [[pollen]], which helps [[honeybee]]s overwinter.
46744
46745 Many members of the family are grown as ornamental plants for their flowers, e.g., [[chrysanthemums]] and some are important ornamental crops for the cut flower industry. Some Asteraceae are economically important in the sense that they are considered noxious [[weeds]], e.g., [[dandelions]].
46746
46747 &lt;br clear = all /&gt;
46748 [[Image:Ray.floret01.jpg|thumb|left|Ray floret : &lt;small&gt;A = ovary; B = pappus; C = theca; D = ligule; E = style with stigma &lt;/small&gt;]]
46749 [[Image:Disc floret01.jpg|left|thumb|Disc floret : &lt;small&gt; A = ovary; B = tube of corolla with teeth of the corolla; C = theca; D = style with stigma &lt;/small&gt;]]
46750 &lt;br clear= all /&gt;
46751
46752 == References ==
46753 * [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;search_value=35420 ITIS report 2002-09-10]
46754 * International Code of Botanical Nomenclature (ICBN, St. Louis Code). 1999. [http://www.bgbm.fu-berlin.de/iapt/nomenclature/code/SaintLouis/0000St.Luistitle.htm website] (Published as ''Regnum Vegetabile 138''. Koeltz Scientific Books, KÃļnigstein. ISBN 3904144227)
46755 * Walters, Dirk R. and David J. Keil (1996). ''Vascular plant taxonomy''. 4th ed. Kendall/Hunt Publishing Company. Dubuque, Iowa.
46756 * Wagner,W.L., D.R. Herbst, and S.H. Sohmer. 1990. ''Manual of the Flowering Plants of Hawai&amp;lsquo;i'', Vol. I. University of Hawaii Press, Honolulu. 988 pp.
46757 * Judd, W.S., C.S. Campbell, E.A. Kellogg, and P.F. Stevens. 1999. Plant Systematics: A Phylogenetic Approach. Sinauer Associates, Sunderland, MA.
46758
46759 [[Image:Gnaphalium supinum0.jpg|thumb|left|200px|''Helichrysum petiolare'']]
46760
46761
46762 {{commonscat|Asteraceae}}
46763
46764 [[Category:Plant families]]
46765 [[Category:Asteraceae| ]]
46766
46767 &lt;!--[[en:Asteraceae]]--&gt;
46768
46769 [[cs:HvězdnicovitÊ]]
46770 [[da:Kurvblomst-familien]]
46771 [[de:KorbblÃŧtengewächse]]
46772 [[es:Asteraceae]]
46773 [[eo:Asteracoj]]
46774 [[fr:Asteraceae]]
46775 [[it:Asteraceae]]
46776 [[la:Asteraceae]]
46777 [[lt:Astriniai augalai]]
46778 [[mi:Asteraceae]]
46779 [[nl:Composietenfamilie]]
46780 [[ja:キクį§‘]]
46781 [[no:Kurvplantefamilien]]
46782 [[nn:Korgplantefamilien]]
46783 [[pl:Astrowate]]
46784 [[pt:Asteraceae]]
46785 [[sv:Korgblommiga växter]]
46786 [[vi:Háģ CÃēc]]
46787 [[zh:菊į§‘]]</text>
46788 </revision>
46789 </page>
46790 <page>
46791 <title>Apiaceae</title>
46792 <id>957</id>
46793 <revision>
46794 <id>41545057</id>
46795 <timestamp>2006-02-28T01:40:36Z</timestamp>
46796 <contributor>
46797 <username>Berton</username>
46798 <id>549980</id>
46799 </contributor>
46800 <comment>+ link</comment>
46801 <text xml:space="preserve">{{Taxobox
46802 | color = lightgreen
46803 | name = Carrot family
46804 | image = QALace2675.JPG
46805 | image_width = 240px
46806 | image_caption = Flower of Wild Carrot (''Daucus carota'')
46807 | regnum = [[Plant]]ae
46808 | divisio = [[Flowering plant|Magnoliophyta]]
46809 | classis = [[Dicotyledon|Magnoliopsida]]
46810 | ordo = [[Apiales]]
46811 | familia = '''Apiaceae''' or '''Umbelliferae'''
46812 | subdivision_ranks = [[Genus|Genera]]
46813 | subdivision =
46814 See text&lt;br /&gt;
46815 Ref: [http://hortiplex.gardenweb.com/plants/p1/gw3000704.html Hortiplex 2003-11-14]
46816 }}
46817
46818 The '''Apiaceae''' or '''Umbelliferae''' (both names are allowed by the [[International Code of Botanical Nomenclature|ICBN]]) are a family of usually aromatic [[plant]]s with hollow stems, including [[parsley]], [[carrot]], and other relatives. It is a large family with about 300 [[genus|genera]] and more than 3,000 [[species]]. The earlier name Umbelliferae derives from the [[inflorescence]] being in the form of a compound &quot;umbel&quot;.
46819
46820 The small flowers are radially symmetrical with 5 small [[sepal]]s, 5 [[petal]]s and 5 [[stamen]]s.
46821
46822 The family contains some highly [[toxic]] plants, such as [[hemlock]], which was used to execute [[Socrates]] and also used to poison arrow tips. It also contains some highly useful plants, such as carrots, parsley, [[caraway]], and [[fennel]]. Many plants in this family, such as [[wild carrot]] have [[estrogen]]ic properties, and have been used as [[folk medicine]] for [[birth control]]. Most notable for this use is the extinct giant fennel, [[silphium]].
46823
46824 Notable members include:
46825 *''Anethum graveolens'' - [[Dill]]
46826 *''Anthriscus cerefolium'' - [[Chervil]]
46827 *''Angelica'' spp. - [[Angelica]]
46828 *''Apium graveolens'' - [[Celery]]
46829 *''Carum carvi'' - [[Caraway]]
46830 *''Centella asiatica'' - [[Gotu kola]] (pennywort)
46831 *''Conium maculatum'' - [[Conium|Poison hemlock]]
46832 *''Coriandrum sativum'' - [[Coriander]]
46833 *''Cuminum cyminum'' - [[Cumin]]
46834 *''Daucus carota'' - [[Carrot]]
46835 *''Eryngium'' spp. - [[Sea holly]]
46836 *''Foeniculum vulgare'' - [[Fennel]]
46837 *''Myrrhis odorata'' - [[Cicely]]
46838 *''Pastinaca sativa'' - [[Parsnip]]
46839 *''Petroselinum crispum'' - [[Parsley]]
46840 *''Pimpinella anisum'' - [[Anise]]
46841 *''Levisticum officinale'' - [[Lovage]]
46842
46843 ==Genera==
46844 *''[[Aciphylla]]''
46845 *''[[Actinotus]]''
46846 *''[[Aegopodium]]''
46847 *''[[Aethusa]]''
46848 *''[[Aletes (genus)|Aletes]]''
46849 *''[[Ammi (genus)|Ammi]]''
46850 *''[[Ammoselinum]]''
46851 *''[[Anethum]]''
46852 *''[[Angelica]]''
46853 *''[[Anthriscus]]''
46854 *''[[Apiastrum]]''
46855 *''[[Apium]]''
46856 *''[[Arracacia]]''
46857 *''[[Astrantia]]''
46858 *''[[Athamantha]]''
46859 *''[[Azorella]]''
46860 *''[[Berula]]''
46861 *''[[Bifora]]''
46862 *''[[Bolax]]''
46863 *''[[Bowlesia]]''
46864 *''[[Bunium]]''
46865 *''[[Bupleurum]]''
46866 *''[[Carum]]''
46867 *''[[Caucalis]]''
46868 *''[[Centella]]''
46869 *''[[Chaerophyllum]]''
46870 *''[[Ciclospermum]]''
46871 *''[[Cicuta]]''
46872 *''[[Cnidium]]''
46873 *''[[Coelopleurum]]''
46874 *''[[Conioselinum]]''
46875 *''[[Conium]]''
46876 *''[[Conopodium]]''
46877 *''[[Coriandrum]]''
46878 *''[[Crithmum]]''
46879 [[Image:Apiaceae Pimpinella anisum.jpg|thumb|right|250px|Anise (''Pimpinella anisum'') &lt;br /&gt; from ''Medical botany by William Woodville''. London, James Phillips, 1793]]
46880 *''[[Cryptotaenia]]''
46881 *''[[Cuminum]]''
46882 *''[[Cyclospermum]]''
46883 *''[[Cymopterus]]''
46884 *''[[Cynosciadium]]''
46885 *''[[Daucosma]]''
46886 *''[[Daucus]]'' [[carrot]]
46887 *''[[Dorema]]''
46888 *''[[Erigenia]]''
46889 *''[[Eryngium]]''
46890 *''[[Eurytaenia]]''
46891 *''[[Falcaria]]''
46892 *''[[Ferula]]''
46893 *''[[Foeniculum]]''
46894 *''[[Glehnia]]''
46895 *''[[Harbouria]]''
46896 *''[[Heracleum]]''
46897 *''[[Hydrocotyle]]'' (is now classified under [[Araliaceae]])
46898 *''[[Laser (plant)|Laser]]''
46899 *''[[Laserpitium]]''
46900 *''[[Levisticum]]''
46901 *''[[Ligusticum]]''
46902 *''[[Lilaeopsis]]''
46903 *''[[Limnosciadium]]''
46904 *''[[Lomatium]]''
46905 *''[[Meum]]''
46906 *''[[Monizia]]''
46907 *''[[Musineon]]''
46908 *''[[Myrrhis]]''
46909 *''[[Neoparrya]]''
46910 *''[[Oenanthe (plant)|Oenanthe]]''
46911 *''[[Oreomyrrhis]]''
46912 *''[[Oreonana]]''
46913 *''[[Oreoxis]]''
46914 *''[[Orogenia]]''
46915 *''[[Osmorhiza]]''
46916 *''[[Oxypolis]]''
46917 *''[[Pastinaca]]''
46918 *''[[Perideridia]]''
46919 *''[[Petroselinum]]''
46920 *''[[Peucedanum]]''
46921 *''[[Pimpinella]]''
46922 *''[[Pleurospermum]]''
46923 *''[[Podistera]]''
46924 *''[[Polytaenia]]''
46925 *''[[Prangos]]''
46926 *''[[Pseudocymopterus]]''
46927 *''[[Pteryxia]]''
46928 *''[[Ptilimnium]]''
46929 *''[[Sanicula]]''
46930 *''[[Scandix]]''
46931 *''[[Selinum]]''
46932 *''[[Seseli]]''
46933 *''[[Shoshonea]]''
46934 *''[[Silaum]]''
46935 *''[[Sison]]''
46936 *''[[Sium]]''
46937 *''[[Smyrnium]]''
46938 *''[[Spermolepis]]''
46939 *''[[Sphenosciadium]]''
46940 *''[[Sympholoma]]''
46941 *''[[Synelcosciadium]]''
46942 *''[[Taenidia]]''
46943 *''[[Tauschia]]''
46944 *''[[Thapsia]]''
46945 *''[[Thaspium]]''
46946 *''[[Tilingia]]''
46947 *''[[Tordylium]]''
46948 *''[[Torilis]]''
46949 *''[[Trachymene]]''
46950 *''[[Trachyspermum]]''
46951 *''[[Trepocarpus]]''
46952 *''[[Turgenia]]''
46953 *''[[Yabea]]''
46954 *''[[Zizia]]''
46955
46956 ==External links==
46957 *[http://herbarium.uvsc.edu/Virtual/default.asp?table=Family&amp;f=310&amp;t=Apiaceae UVSC Herbarium - Apiaceae]
46958 *[http://rbg-web2.rbge.org.uk/URC/frames.html?http://rbg-web2.rbge.org.uk/URC/urchomepage.html Umbellifer Resource Centre]
46959 [[Category:Plant families]]
46960 [[Category:Apiaceae|*]]
46961
46962 [[cs:MiříkovitÊ]]
46963 [[da:SkÃĻrmplante-familien]]
46964 [[de:DoldenblÃŧtler]]
46965 [[es:Apiaceae]]
46966 [[eo:Apiacoj]]
46967 [[fr:Apiaceae]]
46968 [[la:Apiaceae]]
46969 [[lt:Salieriniai]]
46970 [[hu:ErnyősvirÃĄgÃēak]]
46971 [[nl:Schermbloemenfamilie]]
46972 [[ja:ã‚ģãƒĒį§‘]]
46973 [[no:Skjermplantefamilien]]
46974 [[nn:Skjermplantefamilien]]
46975 [[pl:Selerowate]]
46976 [[fi:Sarjakukkaiskasvit]]
46977 [[sv:Flockblommiga växter]]
46978 [[vi:Háģ Hoa tÃĄn]]
46979 [[zh:äŧžåŊĸį§‘]]</text>
46980 </revision>
46981 </page>
46982 <page>
46983 <title>Axon</title>
46984 <id>958</id>
46985 <revision>
46986 <id>41988547</id>
46987 <timestamp>2006-03-03T01:47:24Z</timestamp>
46988 <contributor>
46989 <ip>68.211.228.234</ip>
46990 </contributor>
46991 <text xml:space="preserve">An '''axon''', or '''nerve fiber''', is a long slender projection of a nerve cell, or [[neuron]], that conducts [[action potential|electrical impulses]] away from the neuron's [[cell body]] or soma. Axons are in effect the primary transmission lines of the [[nervous system]], and as bundles they help make up [[nerve]]s. Individual axons are microscopic in diameter - typically about one [[micrometre]] across - but may extend to [[macroscopic]] lengths. The longest axons in the human body, for example, are those of the [[sciatic nerve]], which run from the base of the [[spine (anatomy)|spine]] to the big toe of each foot. These single-cell fibers may extend a meter or even longer.
46992
46993 In [[vertebrate]]s, the axons of many neurons are sheathed in [[myelin]], which is formed by either of two types of [[glia|glial cells]]: [[Schwann cell]]s ensheathing [[PNS|peripheral]] neurons and [[oligodendrocyte]]s insulating those of the [[central nervous system]]. Along myelinated nerve fibers, gaps in the sheath known as [[nodes of Ranvier]] occur at evenly-spaced intervals, enabling an especially rapid mode of electrical impulse propagation called [[saltatory conduction|saltation]]. The demyelination of axons is what causes the multitude of neurological symptoms found in the disease [[Multiple Sclerosis]].
46994
46995 The axons of some neurons branch to form [[axon collateral]]s, along which the bifurcated impulse travels simultaneously to signal more than one other cell.
46996
46997 ==Growth &amp; Development==
46998 Growing axons move through their environment via the [[growth cone]], which is at the tip of the axon. The growth cone has a broad sheet like extension called [[lamellipodia]] which contain protrusions called [[filopodia]]. The filopodia are the mechanism by which the entire process adheres to surfaces and explores the surrounding environment. [[Actin]] plays a major role in the mobility of this system.
46999
47000 Environments with high levels of [[cell adhesion molecule]]s or CAM's create an ideal environment for axonal growth. This seems to provide a &quot;sticky&quot; surface for axons to grow along. Examples of CAM's specific to neural systems include [[N-CAM]], neuroglial CAM or [[NgCAM]], [[TAG-1]], [[MAG]], and [[Dicyclohexylcarbodiimide|DCC]], all of which are part of the [[immunoglobulin]] superfamily. Another set of molecules called [[extracellular matrix adhesion molecule]]s also provide a sticky substrate for axons to grow along. Examples of these molecules include [[laminin]], [[fibronectin]], [[tenascin]], and [[perlecan]]. Some of these are surface bound to cells and thus act as short range attractants or repellants. Others are difusible ligands and thus can have long range effects.
47001
47002 Cells called [[guidepost cells]] assist in the guidance of neuronal axon growth. These cells are typically other, sometimes immature, neurons.
47003
47004 ==History==
47005 Some of the first intracellular recordings in a nervous system were made in the late 1930's by K. Cole and H. Curtis. [[Alan Hodgkin]] and [[Andrew Huxley]] also employed the [[squid giant axon]] (1939) and by 1952 they had obtained a full quantitative description of the ionic basis of the action potential.
47006 Hodgkin and Huxley were awarded jointly the [[Nobel Prize in Physiology or Medicine|Nobel Prize]] for this work in 1963.
47007
47008 ==See also==
47009 *[[Neuron]]
47010 *[[Dendrite]]
47011 *[[Synapse]]
47012 *[[Axon guidance]]
47013 *[[Electrophysiology]]
47014
47015 == External links ==
47016 * http://www.sfn.org/wrensite/projects/patch_clamp/index.htm
47017
47018 [[Category:Neurons]]
47019 [[Category:Neurophysiology]]
47020
47021 [[da:Akson]]
47022 [[de:Axon]]
47023 [[es:AxÃŗn]]
47024 [[fr:Axone]]
47025 [[he:אקסון (סיב ×ĸ×Ļבי)]]
47026 [[lt:Aksonas]]
47027 [[nl:Axon]]
47028 [[pt:AxÃŗnio]]
47029 [[ru:АĐēŅĐžĐŊ]]
47030 [[fi:Aksoni]]
47031 [[sv:Axon]]</text>
47032 </revision>
47033 </page>
47034 <page>
47035 <title>Agma</title>
47036 <id>959</id>
47037 <revision>
47038 <id>15899470</id>
47039 <timestamp>2005-01-26T00:33:36Z</timestamp>
47040 <contributor>
47041 <username>Nohat</username>
47042 <id>13661</id>
47043 </contributor>
47044 <text xml:space="preserve">#REDIRECT [[velar nasal]]</text>
47045 </revision>
47046 </page>
47047 <page>
47048 <title>Aramaic alphabet</title>
47049 <id>960</id>
47050 <revision>
47051 <id>42121463</id>
47052 <timestamp>2006-03-03T23:33:58Z</timestamp>
47053 <contributor>
47054 <username>No Guru</username>
47055 <id>44087</id>
47056 </contributor>
47057 <minor />
47058 <comment>Reverted edits by [[Special:Contributions/68.41.164.15|68.41.164.15]] to last version by PlatypeanArchcow</comment>
47059 <text xml:space="preserve">{{alphabet}}
47060 The '''Aramaic alphabet''' is an [[abjad]] alphabet designed for writing the [[Aramaic language]]. As with other abjads, the letters all represent [[consonant]]s; a few [[matres lectionis]] are consonants that also represent long [[vowel]]s.
47061
47062 The earliest inscriptions in the [[Aramaic language]] use the [[Phoenician alphabet]]. In time, the alphabet developed into the form shown below. The use of Aramaic as a [[lingua franca]] throughout the [[Middle East]] from the [[8th century BCE]] led to the gradual adoption of the Aramaic alphabet for writing [[Hebrew language|Hebrew]]. Formerly, Hebrew had been written using an alphabet closer in form to that of [[Phoenician alphabet|Phoenician]] (the [[Paleo-Hebrew alphabet]]).
47063
47064 The [[Hebrew alphabet|Hebrew]] and [[Nabataean alphabet|Nabataean]] alphabets are little changed in style from the Aramaic alphabet. The development of [[cursive]] versions of Aramaic led to the creation of the [[Syriac alphabet|Syriac]], [[Palmyrenean alphabet|Palmyrenean]] and [[Mandaic alphabet|Mandaic]] alphabets. These scripts formed the basis of the [[Arabic alphabet|Arabic]], [[Sogdian alphabet|Sogdian]], [[Orkhon script|Orkhon]] and [[Mongolian alphabet|Mongolian]] alphabets. Controversially, it is claimed that the Aramaic alphabet may be the forebear of the [[Indic alphabets]].
47065
47066 Today, [[Biblical Aramaic]], Jewish Neo-Aramaic dialects and the [[Aramaic language]] of the [[Talmud]] are written in the [[Hebrew alphabet]]. [[Syriac language|Syriac]] and Christian Neo-Aramaic dialects are written in the [[Syriac alphabet]]. [[Mandaic language|Mandaic]] is written in the [[Mandaic alphabet]].
47067
47068 == Imperial Aramaic alphabet ==
47069
47070 Redrawn from ''A Grammar of Biblical Aramaic'', Franz Rosenthal; forms are as used in Egypt, [[5th century BCE]]. Names are as in [[Biblical Aramaic]].
47071
47072 {| border=&quot;2&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin: 1em 1em 1em 0; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;
47073 |-
47074 !Letter name ta
47075 !Letter form
47076 !Equivalent [[Hebrew alphabet|Hebrew]]
47077 !Pronunciation
47078 |-
47079 |Aleph
47080 |[[image:ialeph.png]]
47081 |style=&quot;font-size: 33px;&quot;|&amp;#1488;
47082 |[[glottal stop]]; &amp;#257;, &amp;#275;
47083 |-
47084 |Beth
47085 |[[image:ibeth.png]]
47086 |style=&quot;font-size: 33px;&quot;|&amp;#1489;
47087 |b, v
47088 |-
47089 |Gimel
47090 |[[image:igimel.png]]
47091 |style=&quot;font-size: 33px;&quot;|&amp;#1490;
47092 |g, gh
47093 |-
47094 |Daleth
47095 |[[image:idaleth.png]]
47096 |style=&quot;font-size: 33px;&quot;|&amp;#1491;
47097 |d, dh
47098 |-
47099 |Heh
47100 |[[image:ihe.png]]
47101 |style=&quot;font-size: 33px;&quot;|&amp;#1492;
47102 |h
47103 |-
47104 |Waw
47105 |[[image:iwaw.png]]
47106 |style=&quot;font-size: 33px;&quot;|&amp;#1493;
47107 |w; &amp;#333;, &amp;#363;
47108 |-
47109 |Zayin
47110 |[[image:izayin.png]]
47111 |style=&quot;font-size: 33px;&quot;|&amp;#1494;
47112 |z
47113 |-
47114 |Heth
47115 |[[image:iheth.png]]
47116 |style=&quot;font-size: 33px;&quot;|&amp;#1495;
47117 |[ħ] ([[voiceless pharyngeal fricative]])
47118 |-
47119 |Teth
47120 |[[image:iteth.png]]
47121 |style=&quot;font-size: 33px;&quot;|&amp;#1496;
47122 |[[emphatic consonant|emphatic]] [tˁ]
47123 |-
47124 |Yodh
47125 |[[image:iyod.png]]
47126 |style=&quot;font-size: 33px;&quot;|&amp;#1497;
47127 |y; &amp;#299;, &amp;#275;
47128 |-
47129 |Kaph
47130 |[[image:ikaph.png]]
47131 |style=&quot;font-size: 33px;&quot;|&amp;#1498; / &amp;#1499;
47132 |k
47133 |-
47134 |Lamed
47135 |[[image:ilamed.png]]
47136 |style=&quot;font-size: 33px;&quot;|&amp;#1500;
47137 |l
47138 |-
47139 |Mem
47140 |[[image:imem.png]]
47141 |style=&quot;font-size: 33px;&quot;|&amp;#1501; / &amp;#1502;
47142 |m
47143 |-
47144 |Nun
47145 |[[image:inun.png]]
47146 |style=&quot;font-size: 33px;&quot;|&amp;#1503; / &amp;#1504;
47147 |n
47148 |-
47149 |Samekh
47150 |[[image:isamekh.png]]
47151 |style=&quot;font-size: 33px;&quot;|&amp;#1505;
47152 |s
47153 |-
47154 |Ayin
47155 |[[image:iayin.png]]
47156 |style=&quot;font-size: 33px;&quot;|&amp;#1506;
47157 |[[voiced pharyngeal fricative]]&lt;/td&gt;&lt;/tr&gt;
47158 |-
47159 |Pe
47160 |[[image:ipe.png]]
47161 |style=&quot;font-size: 33px;&quot;|&amp;#1507; / &amp;#1508;
47162 |p, f
47163 |-
47164 |Sade
47165 |[[image:isade.png]], [[image:isade2.png]]
47166 |style=&quot;font-size: 33px;&quot;|&amp;#1509; / &amp;#1510;
47167 |[[emphatic consonant|emphatic]] s
47168 |-
47169 |Qoph
47170 |[[image:iqoph.png]]
47171 |style=&quot;font-size: 33px;&quot;|&amp;#1511;
47172 |q ([[voiceless uvular plosive]])
47173 |-
47174 |Resh
47175 |[[image:iresh.png]]
47176 |style=&quot;font-size: 33px;&quot;|&amp;#1512;
47177 |r
47178 |-
47179 |Sin/Shin
47180 |[[image:ishin.png]]
47181 |style=&quot;font-size: 33px;&quot;|&amp;#1513;
47182 |usually ÅĄ; in some words s (probably originally from a [[Proto-Semitic]] [[lateral fricative]])
47183 |-
47184 |Taw
47185 |[[image:itaw.png]]
47186 |style=&quot;font-size: 33px;&quot;|&amp;#1514;
47187 |t, th
47188 |}
47189
47190 == See also ==
47191
47192 * [[Abjad]]
47193 * [[Alphabet]]
47194 * [[Aramaic language]]
47195 * [[Syriac language]]
47196 * [[Mandaic language]]
47197 * [[List of writing systems]]
47198
47199 ==External links==
47200
47201 * [http://www.sakkal.com/Arab_Calligraphy_Art3.html Comparison of Aramaic to related alphabets]
47202
47203 [[Category:Abjad writing systems]]
47204 [[Category:Aramaic languages]]
47205
47206 [[ar:ØĸØąØ§Ų…ŲŠØŠ ØšØĒŲŠŲ‚ØŠ (ŲƒØĒاب؊)]]
47207 [[bg:АŅ€Đ°ĐŧĐĩĐšŅĐēĐ° аСйŅƒĐēĐ°]]
47208 [[cs:AramejskÊ písmo]]
47209 [[de:Aramäische Schrift]]
47210 [[es:Alfabeto arameo]]
47211 [[eo:Aramea skribo]]
47212 [[fr:Alphabet aramÊen]]
47213 [[gl:Alfabeto arameo]]
47214 [[ja:ã‚ĸナム文字]]
47215 [[pl:Alfabet aramejski]]
47216 [[pt:Alfabeto aramaico]]
47217 [[ru:АŅ€Đ°ĐŧĐĩĐšŅĐēĐ°Ņ ĐŋиŅŅŒĐŧĐĩĐŊĐŊĐžŅŅ‚ŅŒ]]
47218 [[fi:Aramean kirjaimisto]]</text>
47219 </revision>
47220 </page>
47221 <page>
47222 <title>Arguments for the existence of God</title>
47223 <id>963</id>
47224 <revision>
47225 <id>42078550</id>
47226 <timestamp>2006-03-03T17:57:14Z</timestamp>
47227 <contributor>
47228 <username>Freakofnurture</username>
47229 <id>77511</id>
47230 </contributor>
47231 <comment>rm rfd</comment>
47232 <text xml:space="preserve">#REDIRECT [[Existence of God]]</text>
47233 </revision>
47234 </page>
47235 <page>
47236 <title>AWK</title>
47237 <id>964</id>
47238 <revision>
47239 <id>24206475</id>
47240 <timestamp>2005-09-28T02:12:04Z</timestamp>
47241 <contributor>
47242 <username>Antandrus</username>
47243 <id>57658</id>
47244 </contributor>
47245 <minor />
47246 <comment>Reverted edits by [[Special:Contributions/65.95.19.75|65.95.19.75]] to last version by Cavrdg</comment>
47247 <text xml:space="preserve">'''AWK''' may refer to
47248
47249 *[[AWK programming language ]]
47250 *The [[National Rail]] code for [[Adwick railway station]], [[United Kingdom]]. External links: {{Sildb prim|AWK|station information}}; {{Mmukpcloc|DN6|7AQ}}; {{Brldb prim|AWK|live departures and arrivals}}.
47251
47252 {{TLAdisambig}}</text>
47253 </revision>
47254 </page>
47255 <page>
47256 <title>As We May Think</title>
47257 <id>965</id>
47258 <revision>
47259 <id>41838062</id>
47260 <timestamp>2006-03-02T01:50:40Z</timestamp>
47261 <contributor>
47262 <ip>200.203.21.111</ip>
47263 </contributor>
47264 <text xml:space="preserve">{{mergeto|Memex}}
47265 [[Vannevar Bush]]'s essay '''''As We May Think''''', first published in ''[[The Atlantic Monthly]]'' in July [[1945]], argued that as humans turned from war, scientific efforts should shift from increasing physical abilities to making all previous collected [[human]] [[knowledge]] more accessible.
47266
47267 The article was a reworked and expanded version of his 1939 ''Mechanization and the Record''. The system, which he called [[memex]], was described as based on what was thought, at the time, to be the wave of the future: Ultra high resolution [[microfilm]] reels, coupled to multiple screen viewers and cameras, by electromechanical controls. The ''Atlantic Monthly'' article was followed, in November [[1945]], by a [[Life magazine]] article which showed illustrations of the proposed memex desk and automatic typewriter.
47268
47269 ''As We May Think'' predicted many kinds of technology invented after its publication, including [[hypertext]], [[personal computers]], the [[Internet]], the [[World Wide Web]], [[speech recognition]], and [[online encyclopedia]]s such as Wikipedia: &quot;Wholly new forms of encyclopedias will appear, ready-made with a mesh of associative trails running through them, ready to be dropped into the memex and there amplified.&quot;
47270
47271 ==External links==
47272 *[http://graphics.cs.brown.edu/html/info/vannevar_bush.html &quot;As We May Think&quot; - A Celebration of Vannevar Bush's 1945 Vision, at Brown University]
47273
47274 ===Online versions===
47275 *[http://www.theatlantic.com/doc/194507/bush ''As we may think'' from the ''Atlantic Monthly'' archives]
47276 *[http://www.ps.uni-sb.de/~duchier/pub/vbush/vbush-all.shtml The text of ''As we may think''] (accessible without subscription and with permission of ''Atlantic Monthly'')
47277 *[http://www.cs.sfu.ca/CC/365/mark/material/notes/Chap1/VBushArticle/ Another permitted copy of the article]
47278
47279 [[Category:Essays]]
47280
47281 [[da:As We May Think]]
47282 [[fr:As We May Think]]
47283 [[pl:As We May Think]]
47284 [[pt:As We May Think]]</text>
47285 </revision>
47286 </page>
47287 <page>
47288 <title>American shot</title>
47289 <id>966</id>
47290 <revision>
47291 <id>38701577</id>
47292 <timestamp>2006-02-08T01:40:25Z</timestamp>
47293 <contributor>
47294 <username>Can't sleep, clown will eat me</username>
47295 <id>603177</id>
47296 </contributor>
47297 <minor />
47298 <comment>Reverted edits by [[Special:Contributions/207.200.116.195|207.200.116.195]] to last version by Jahsonic</comment>
47299 <text xml:space="preserve">&quot;'''American shot'''&quot; is a translation of a phrase from [[France|French]] [[film criticism]], &quot;''plan Americain''&quot; and refers to a medium-long (&quot;knee&quot;) [[Shot (film)|film shot]] of a group of characters, who are arranged so that all are visible to the camera. The usual arrangement is for the actors to stand in an irregular line from one side of the screen to the other, with the actors at the end coming forward a little and standing more in profile than the others. The purpose of the composition is to allow complex [[dialogue]] scenes to be played out without changes in camera position. In some literature, this is simply referred to as a 3/4 shot.
47300
47301 The French critics thought it was characteristic of [[Cinema of the United States|American film]]s of the [[1930s]] or [[1940s]]; however, it was mostly characteristic of ''cheaper'' American movies, such as [[Charlie Chan]] mysteries where people collected in front of a fireplace or at the foot of the stairs in order to explain what happened a few minutes ago.
47302
47303 [[Category:Film techniques]]
47304 [[de:EinstellungsgrÃļße]]
47305 [[fr:Plan amÊricain]]</text>
47306 </revision>
47307 </page>
47308 <page>
47309 <title>Acute disseminated encephalomyelitis</title>
47310 <id>967</id>
47311 <revision>
47312 <id>41970338</id>
47313 <timestamp>2006-03-02T23:25:50Z</timestamp>
47314 <contributor>
47315 <username>Arcadian</username>
47316 <id>104523</id>
47317 </contributor>
47318 <comment>clean up using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
47319 <text xml:space="preserve">{{DiseaseDisorder infobox |
47320 Name = Acute disseminated encephalitis |
47321 ICD10 = G04.0 |
47322 ICD9 = {{ICD9|323}} |
47323 }}
47324 '''Acute disseminated encephalomyelitis''' ('''ADEM''') is an immune mediated [[disease]] of [[human brain|brain]]. It usually occurs following a [[virus (biology)|viral]] [[infection]] or [[vaccination]], but it may also appear spontaneously.
47325
47326 There are multiple inflammatory cell deposits in the brain, particularly in the section
47327 called [[white matter]]. Although it occurs in all ages, most reported cases are in children and [[Adolescence|adolescents]].
47328
47329 It has an abrupt onset and a monophasic course. Symptoms usually begins 1-3 weeks after infection or vaccination. Major symptoms are [[fever]], [[headache]], drowsiness, [[seizure]]s and [[coma]]. Although initially the symptoms are usually mild, later in the course of the disease patients may even die, if they are not treated properly. Some patients recover completely, while others have permanent neurological impairments.
47330
47331 The first treatment is usually [[steroid]]s and [[intensive care]] is often required.
47332
47333 == External links ==
47334 * [http://www.myelitis.org/adem.htm Acute Disseminated Encephalomyelitis (ADEM)]
47335
47336 [[Category:Autoimmune diseases]]
47337 [[Category:Neurological disorders]]
47338
47339 [[de:Akute disseminierte Enzephalomyelitis]]</text>
47340 </revision>
47341 </page>
47342 <page>
47343 <title>Adrenoleukodistrophy</title>
47344 <id>968</id>
47345 <revision>
47346 <id>15899478</id>
47347 <timestamp>2002-05-22T15:56:19Z</timestamp>
47348 <contributor>
47349 <ip>129.109.159.253</ip>
47350 </contributor>
47351 <comment>*</comment>
47352 <text xml:space="preserve">#REDIRECT [[Adrenoleukodystrophy]]
47353 </text>
47354 </revision>
47355 </page>
47356 <page>
47357 <title>Ataxia</title>
47358 <id>969</id>
47359 <revision>
47360 <id>39430487</id>
47361 <timestamp>2006-02-13T02:12:34Z</timestamp>
47362 <contributor>
47363 <username>Robotico</username>
47364 <id>367893</id>
47365 </contributor>
47366 <minor />
47367 <text xml:space="preserve">{{otheruses}}
47368 '''Ataxia''' (from [[Greek (language)|Greek]] ''ataxiā'', meaning failure to put in order) is unsteady and clumsy motion of the [[limb]]s or [[torso|trunk]] due to a failure of the gross coordination of [[muscle]] movements.
47369
47370 Ataxia often occurs when parts of the nervous system that control movement are damaged. People with ataxia experience a failure of muscle control in their arms and legs, resulting in a lack of balance and coordination or a disturbance of gait. While the term ataxia is primarily used to describe this set of symptoms, it is sometimes also used to refer to a family of disorders. It is not, however, a specific diagnosis.
47371
47372 Most disorders that result in ataxia cause cells in the part of the brain called the [[cerebellum]] to degenerate, or atrophy. Sometimes the spine is also affected. The phrases ''cerebellar degeneration'' and ''spinocerebellar degeneration'' are used to describe changes that have taken place in a person’s nervous system; neither term constitutes a specific diagnosis. Cerebellar and spinocerebellar degeneration have many different causes. The age of onset of the resulting ataxia varies depending on the underlying cause of the degeneration.
47373
47374 Many ataxias are hereditary and are classified by chromosomal location and pattern of inheritance: autosomal dominant, in which the affected person inherits a normal gene from one parent and a faulty gene from the other parent; and autosomal recessive, in which both parents pass on a copy of the faulty gene. Among the more common inherited ataxias are [[Friedreich's ataxia]] and Machado-Joseph disease. Sporadic ataxias can also occur in families with no prior history.
47375
47376 Ataxia can also be acquired. Conditions that can cause acquired ataxia include [[stroke]], [[multiple sclerosis]], tumors, [[lesion]]s of the [[central nervous system]] or spinal cord, alcoholism, peripheral neuropathy, metabolic disorders, and vitamin deficiencies.
47377
47378 [[Dysdiadochokinesia]] is a sign of cerebellar ataxia.
47379
47380 [[University of Minnesota]] researchers suggested in 2006 that [[Abraham Lincoln]] may have suffered from spinocerebellar ataxia type 5, thus accounting for his clumsy gait.[http://www.startribune.com/1244/story/198437.html][http://www.breitbart.com/news/2006/01/27/D8FD29HG0.html]
47381
47382 == See also ==
47383 * [[Spinocerebellar ataxia]]
47384 * [[Sensory ataxia]]
47385 * [[Gait abnormality]]
47386
47387 == External links ==
47388 * [http://www.ninds.nih.gov/disorders/ataxia/ataxia.htm National Institute of Neurological Disorders and Stroke (NINDS)]
47389 * [http://www.ataxia.org National Ataxia Foundation]
47390 * [http://www.ataxia.org.uk Ataxia UK]
47391
47392
47393 [[Category:Neurological disorders]]
47394 [[Category:Symptoms]]
47395
47396 [[de:Ataxie]]
47397 [[es:Ataxia]]
47398 [[fr:Ataxie]]
47399 [[it:Atassia]]
47400 [[hu:Ataxia]]
47401 [[nl:Ataxie]]
47402 [[pl:Ataksja]]
47403 [[fi:Ataksia]]</text>
47404 </revision>
47405 </page>
47406 <page>
47407 <title>AmbientCalculusOnline</title>
47408 <id>970</id>
47409 <revision>
47410 <id>15899480</id>
47411 <timestamp>2002-10-09T13:55:02Z</timestamp>
47412 <contributor>
47413 <username>Magnus Manske</username>
47414 <id>4</id>
47415 </contributor>
47416 <minor />
47417 <comment>#REDIRECT [[Ambient calculus]]</comment>
47418 <text xml:space="preserve">#REDIRECT [[Ambient calculus]]</text>
47419 </revision>
47420 </page>
47421 <page>
47422 <title>Abdul Alhazred</title>
47423 <id>972</id>
47424 <revision>
47425 <id>41651630</id>
47426 <timestamp>2006-02-28T20:30:09Z</timestamp>
47427 <contributor>
47428 <username>Fouad Bey</username>
47429 <id>346146</id>
47430 </contributor>
47431 <text xml:space="preserve">'''Abdul Alhazred''', or the '''Mad Arab''', is a [[fictional character]] created by the horror writer [[H. P. Lovecraft]]. The term &quot;Mad Arab&quot; in reference to Alhazred is always capitalised and used in the manner of an official title such as another person would be called &quot;Prince&quot; or &quot;Sir&quot; and the term can actually be used in lieu of Alhazred's name as a synonym.
47432
47433 ''Abdul Alhazred'' is not a real [[Arabic name]], and seems to contain the Arabic definite article morpheme twice in a row (rather anomalous in terms of Arabic grammar). The more proper Arabic form might be ''Abd-el-Hazred'' or simply ''Abdul Hazred'' (with a single definite article), although these are still anomalous, as ''Hazred'' is not one of the [[99 Names of God]]. In [[Arabic language|Arabic]] translations, his name has appeared as ''Abdullah Alá¸Ĩaáē“red'' (ؚبداŲ„Ų„Ų‡ اŲ„Ø­Ø¸ØąØ¯). While this Arabic-alphabet spelling of ''Alhazred'' has no real meaning in the Arabic language, it is reminiscent of the verb [[triliteral|root]] Ø­ ظ Øą meaning &quot;to forbid.&quot;
47434
47435 According to Lovecraft's &quot;History of the [[Necronomicon]]&quot; (written [[1927]], first published [[1938]]), Alhazred was:
47436
47437 :[A] mad poet of [[SanaÃĄ]], in [[Yemen]], who is said to have flourished during the period of the [[Umayyad | Ommiade]] caliphs, circa [[700]] A.D. He visited the ruins of [[Babylon]] and the subterranean secrets of [[Memphis, Egypt |Memphis]] and spent ten years alone in the great southern desert of [[Arabia]] &amp;mdash; the [[Rub' al Khali|Roba el Khaliyeh]] or &quot;Empty Space&quot; of the ancients &amp;mdash; and &quot;Dahna&quot; or &quot;Crimson&quot; desert of the modern Arabs, which is held to be inhabited by protective evil spirits and monsters of death. Of this desert many strange and unbelievable marvels are told by those who pretend to have penetrated it. In his last years Alhazred dwelt in [[Damascus]].
47438
47439 In [[730]], while still living in Damascus, Alhazred supposedly authored in [[Arabic language|Arabic]] a book of ultimate evil, ''al Azif'', which would later become known as the ''[[Necronomicon]]''.
47440
47441 {{spoiler}}
47442
47443 Those who have any dealings with the Necronomicon usually come to an unpleasant end, and Alhazred was no exception. Again according to Lovecraft:
47444
47445 :Of his final death or disappearance ([[738]] A.D.) many terrible and conflicting things are told. He is said by [[Ibn Khallikan]] ([[13th century]] biographer) to have been seized by an invisible monster in broad daylight and devoured horribly before a large number of fright-frozen witnesses. Of his madness many things are told. He claimed to have seen fabulous [[Irem of the Pillars|Irem]], or City of Pillars, and to have found beneath the ruins of a certain [[The Nameless City|nameless desert town]] the shocking annals and secrets of a race older than mankind. He was only an indifferent [[Muslim|Moslem]], worshipping unknown entities whom he called [[Yog-Sothoth]] and [[Cthulhu]].
47446
47447 [[August Derleth]] later made alterations to the biography of Alhazared. One change was redating Alhazared's death to [[731]]. Derleth further wrote on the final fate of Alhazred in his story &quot;[[The Keeper of the Key]]&quot;, first published in May, [[1951]]. In this story [[Dr. Laban Shrewsbury]] (a recurring Derleth character) and his assistant at the time, [[Naylan Colum]], discovered Alhazred's burial site. More specifically they were heading a caravan from [[Salalah]], [[Oman]], and crossed the border into [[Yemen]]. There they found the unexplored desert area the Necronomicon names as &quot;Roba el Ehaliyeh&quot; or &quot;Roba el Khaliyeh&quot; -- perhaps a form of &quot;Rabia al-Awliya&quot; which, again, is not proper Arabic, but could be an allusion to the Sufi Saint Rabia (pure conjecture). More likely it refers the [[Empty Quarter]] or &quot;Rub al Khali&quot;. At the center of the area they discovered [[The Nameless City|the Nameless City]], a domain of [[Hastur]]. Shrewsbury, as an old agent of Hastur and devoted enemy of his half-brother [[Cthulhu]], crossed its gates in search of Alhazred's burial site. He indeed found the gate of Alhazred's burial chamber and learned of his fate. Alhazred was kidnapped in Damascus and brought to the Nameless City, where he had earlier studied and learned some of Necronomicon's secrets. As punishment for his betrayal of their secrets, Alhazred was tortured. Then they blinded him and severed his tongue, and finally executed him. The entrance to the chamber warned against disturbing him. But Shrewbury proceeded in entering the chamber and opening the sarcophagus. Though only rugs, bones and dust remained of Alhazred, the sarcophagus also contained an incomplete personal copy of the Necronomicon, written in the [[Arabic alphabet]]. Then Shrewsbury used [[Necromancy]] to recall Alhazred's spirit and ordered it to draw a map of the world as he knew it. After obtaining the map, which revealed the location of [[R'lyeh]] and other secret places, Shrewsbury finally let Alhazred return to his eternal rest.
47448
47449 ==Pop culture==
47450
47451 [[Roberta Williams]] used the name &quot;Abdul Alhazred&quot; as the name of the villain in [[King's Quest 6]].
47452
47453 Marvel comics has also used the name Abdul Alhazred as a supervillian working for Apocalypse.
47454
47455 ==See also==
47456 *[[Cthulhu mythos biographies]]
47457
47458 [[Category:Cthulhu mythos]]
47459 [[Category:Fictional Arabs|Alhazred, Abdul]]
47460 [[Category:Fictional writers|Alhazred, Abdul]]
47461
47462 [[es:Abdul Alhazred]]
47463 [[fr:Abdul al-Hazred]]
47464 [[ja:ã‚ĸブドãƒĢãƒģã‚ĸãƒĢハã‚ēナット]]
47465 [[pl:Abdul Alhazred]]
47466 [[sv:Abdul Alhazred]]</text>
47467 </revision>
47468 </page>
47469 <page>
47470 <title>A priori and a posterior knowledge</title>
47471 <id>973</id>
47472 <revision>
47473 <id>18021014</id>
47474 <timestamp>2005-07-02T17:24:33Z</timestamp>
47475 <contributor>
47476 <username>Jyril</username>
47477 <id>39573</id>
47478 </contributor>
47479 <minor />
47480 <comment>avoid double redirect</comment>
47481 <text xml:space="preserve">#REDIRECT [[Knowledge]]</text>
47482 </revision>
47483 </page>
47484 <page>
47485 <title>Ada Lovelace</title>
47486 <id>974</id>
47487 <revision>
47488 <id>41616123</id>
47489 <timestamp>2006-02-28T15:15:49Z</timestamp>
47490 <contributor>
47491 <username>Schutz</username>
47492 <id>27196</id>
47493 </contributor>
47494 <comment>Rvv by 168.9.44.2</comment>
47495 <text xml:space="preserve">[[Image:Ada Lovelace 1838.jpg|thumb|200px|right|Ada Lovelace]]
47496 '''Augusta Ada King, Countess of Lovelace''' ([[December 10]], [[1815]] &amp;ndash; [[November 27]], [[1852]]) is mainly known for having written a description of
47497 [[Charles Babbage]]'s early mechanical general-purpose computer, the [[analytical engine]].
47498
47499 == Life ==
47500 Ada was the only legitimate child of the poet [[George Gordon Byron, 6th Baron Byron|Lord Byron]] and his wife, [[Anne Isabella Milbanke|Annabella Milbanke]]. Ada was named after Byron's [[half-sister]], [[Augusta Leigh]], by whom he was rumoured to have fathered a child. It was Augusta who encouraged Byron to marry to avoid scandal, and he reluctantly chose Annabella. On [[January 16]], [[1816]], Annabella left Byron, taking 1-month old Ada with her. On [[April 21]], Byron signed the Deed of Separation and left England for good a few days later. He was never allowed to see either again.
47501
47502 Ada lived with her mother, as is apparent in her father's correspondence concerning her. Lady Byron was also highly interested in mathematics (Lord Byron once called her &quot;the queen of parallelograms&quot;), which dominated her life, even after marriage. Her obsession with rooting out any of the insanity of which she accused Lord Byron was one of the reasons why Annabella taught Ada [[mathematics]] at an early age. Ada was privately schooled in [[mathematics]] and [[science]], one of her tutors being [[Augustus De Morgan]]. An active member of [[London]] society, she was a member of the [[Bluestockings]] in her youth.
47503
47504 [[Image:Ada Lovelace.jpg|thumb|200px|left|Ada Lovelace]]
47505 In 1835 she married [[William King, 1st Earl of Lovelace|William King, 8th Baron King]], later [[Earl of Lovelace|1st Earl of Lovelace]]. They had three children; Byron born [[12 May]] [[1836]], Annabella ([[Lady Anne Blunt]]) born [[22 September]] [[1837]] and Ralph Gordon born [[2 July]] [[1839]]. The family lived at Ockham Park, at [[Ockham, Surrey]]. Her full name and title for most of her married life was '''The Right Honourable Augusta Ada, Countess of Lovelace'''. She is widely known in modern times simply as '''Ada Lovelace'''.
47506
47507 She knew [[Mary Somerville]], noted researcher and scientific author of the [[19th century]], who introduced her in turn to [[Charles Babbage]] on [[June 5]], [[1833]]. Other acquaintances were [[David Brewster|Sir David Brewster]], [[Charles Wheatstone]], [[Charles Dickens]] and [[Michael Faraday]].
47508
47509 During a nine-month period in 1842-1843, Ada translated for Italian mathematician [[Luigi Menabrea]]'s memoir on Babbage's newest proposed machine, the Analytical Engine. With the article, she appended [[Ada Byron's notes on the analytical engine|a set of Notes]] which specified in complete detail a method for calculating [[Bernoulli numbers]] with the Engine, recognized by historians as the world's first [[computer program]]. Biographers note, however, that the programs were written by Babbage himself, and Lovelace simply found a mistake in the program for calculating Bernoulli numbers and sent it back for amendment. The evidence and correspondence between Lovelace and Babbage indicate that he wrote all of the programs in the notes appended to the Menebrea translation. Her prose acknowledged some possibilities of the machine which Babbage never published, such as speculating that &quot;the Engine might compose elaborate and scientific pieces of music of any degree of complexity or extent.&quot;
47510
47511 Ada Lovelace died at 36 after being [[Bloodletting|bled]] to death by her physicians, who were trying to treat her [[uterine cancer]]. Thus, she died, ironically, not only at the same age as her father did, but even of the same cause - the mistaken custom of bloodletting. She left two sons and a daughter, [[Lady Anne Blunt]], famous in her own right as a traveller in the [[Middle East]] and a breeder of [[Arabian horse]]s.
47512
47513 At her own request, Lovelace was buried next to the father she never knew at the [[Church of St. Mary Magdalene, Hucknall|Church of St. Mary Magdalene]] in [[Hucknall]], [[Nottingham]].
47514
47515 == Controversy over attribution ==
47516
47517 Biographers have noted that Lovelace struggled with mathematics, and there is some debate as to whether Lovelace understood deeply the concepts behind programming Babbage's engine, or was more of a figurehead used by Babbage for [[public relations]] purposes.
47518
47519 As an early woman in computing, Lovelace occupies a politically sensitive space in the canon of historical figures in [[computer science]], and therefore the extent of her contribution versus Babbage's remains difficult to assess based on current sources.
47520
47521 == Trivia ==
47522
47523 * On [[December 10]], [[1980]], (Ada's birthday), the [[U.S. Defense Department]] approved the reference manual for their new computer [[programming language]], called &quot;[[Ada programming language|Ada]]&quot;.
47524 * The U.S. [[Defense Standard|Department of Defense Military Standard]] for Ada (MIL-STD-1815) was assigned a number to commemorate the year of her birth.
47525 * On the math-mystery cartoon, ''[[Cyberchase]]'', she appears as the animated character Lady Ada Lovelace, voiced by ''[[Saturday Night Live]]'' comedian [[Jane Curtin]]. The episode is &quot;Hugs and Witches&quot; (#201) which premiered February 14, 2002 on [[PBS Kids GO!]].
47526 * She is one of the main characters in the [[Alternate history (fiction)|alternate history]] novel ''[[The Difference Engine]]'' by [[Bruce Sterling]] and [[William Gibson (novelist)|William Gibson]], which posits a world in which Babbage's machines were [[mass production|mass produced]] and the computer age started a century early.
47527 * ''Lord Byron's Novel'' by [[John Crowley]] is a pastiche of a novel supposedly by Byron (in real life he did begin writing one, but is not known to have completed it), discovered after his death by his daughter, edited and with commentary by her.
47528 * Her image can be seen on the [[Microsoft]] product authenticity [[hologram]] stickers.
47529
47530 == See also ==
47531
47532 * [[Ada Byron's notes on the analytical engine]]
47533 * [[Women in computing]]
47534 * [[Ada programming language]]
47535
47536 == External links ==
47537
47538 *[http://www.sdsc.edu/ScienceWomen/lovelace.html Ada Lovelace: Founder of Scientific Computing (SDSC Women in Science)]
47539 * {{MacTutor Biography|id=Lovelace}}
47540 *[http://web.archive.org/web/20010710002229/http://vms.www.uwplatt.edu/~wise/lovelace/lovelace.html WISE Project biography] ([[Internet Archive|archive]] link, was [[Dead link|dead]])
47541 *[http://www.cs.yale.edu/homes/tap/ada-lovelace.html A page of (mostly broken) links to biographies, etc]
47542 *[http://www.cs.yale.edu/homes/tap/Files/ada-lovelace-notes.html Ada Lovelace's ''Notes'' and ''The Ladies Diary'']
47543 *[http://www.educause.edu/pub/er/review/reviewArticles/31240.html Ada &amp;amp; the Analytical Engine]
47544 *[http://www.cs.kuleuven.ac.be/~dirk/ada-belgium/pictures.html Ada Picture Gallery includes freely copyable pictures of Ada]
47545 *[http://www.fourmilab.ch/babbage/sketch.html Full text of translation of &quot;Sketch of the Analytical Engine&quot; by L. F. Menabrea with Ada's notes and extensive commentary]
47546 *[http://www.techtv.com/news/culture/story/0,24195,3316503,00.html An article on the Ada controversy], and [http://www.techtv.com/news/culture/jump/0,24196,3316508,00.html Was Ada really the first programmer?]
47547 *[http://www.newyorker.com/critics/books/?010305crbo_Holt_Books_C Jim Holt's &quot;The Ada Perplex,&quot; from the New Yorker]
47548 *[http://www.scottlan.edu/lriddle/women/love.htm A brief biography of Ada Augusta, Countess of Lovelace with links to other resources related to Ada]
47549 * [http://www.hucknall-parish-church.org.uk/ada.htm Hucknall Parish Church, Ada's final resting place]
47550
47551 [[Category:1815 births|Lovelace, Ada]]
47552 [[Category:1852 deaths|Lovelace, Ada]]
47553 [[Category:Computer pioneers|Lovelace, Ada]]
47554 [[Category:British mathematicians|Lovelace, Ada]]
47555 [[Category:Women mathematicians|Lovelace, Ada]]
47556 [[Category:British scientists|Lovelace, Ada]]
47557 [[Category:Women computer scientists|Lovelace, Ada]]
47558 [[Category:British women|Lovelace, Ada]]
47559
47560 [[cs:Augusta Ada King]]
47561 [[da:Ada Lovelace]]
47562 [[de:Ada Lovelace]]
47563 [[es:Ada Lovelace]]
47564 [[fa:ایدا Ų„اŲˆŲ„ÛŒØŗ]]
47565 [[fr:Ada Lovelace]]
47566 [[gl:Ada Augusta Lovelace]]
47567 [[hr:Ada Lovelace]]
47568 [[it:Ada Lovelace]]
47569 [[he:×ĸדה לאבלייס]]
47570 [[nl:Ada Lovelace]]
47571 [[ja:エイダãƒģナブãƒŦã‚š]]
47572 [[no:Ada Byron Lovelace]]
47573 [[pl:Ada Lovelace]]
47574 [[pt:Ada Lovelace]]
47575 [[ru:ЛавĐģĐĩĐšŅ, Ада]]
47576 [[fi:Ada Lovelace]]
47577 [[sv:Ada Lovelace]]
47578 [[th:āš€ā¸­ā¸”ā¸˛ āš„ā¸šā¸Ŗā¸­ā¸™]]
47579 [[vi:Ada Lovelace]]</text>
47580 </revision>
47581 </page>
47582 <page>
47583 <title>AmbientCalculiOnline</title>
47584 <id>975</id>
47585 <revision>
47586 <id>15899485</id>
47587 <timestamp>2002-04-24T01:17:13Z</timestamp>
47588 <contributor>
47589 <ip>193.49.30.34</ip>
47590 </contributor>
47591 <comment>*</comment>
47592 <text xml:space="preserve">#REDIRECT [[Ambient calculus]]
47593 </text>
47594 </revision>
47595 </page>
47596 <page>
47597 <title>Ambient calculus</title>
47598 <id>978</id>
47599 <revision>
47600 <id>33143179</id>
47601 <timestamp>2005-12-29T17:54:57Z</timestamp>
47602 <contributor>
47603 <username>Allan McInnes</username>
47604 <id>647621</id>
47605 </contributor>
47606 <minor />
47607 <comment>/* Informal description */ sectioning</comment>
47608 <text xml:space="preserve">In [[Computer science|computer science]], the '''ambient calculus''' is a [[Process calculi|process calculus]] devised by [[Luca Cardelli]]
47609 and [[Andrew D. Gordon]] in [[1998]], and used to describe and theorise about [[concurrent systems]] that include ''mobility''. Here ''mobility'' means both computation carried out on mobile devices (''i.e.'' networks that have a dynamic topology), and mobile computation (''i.e.'' executable code that is able to move around the network). The ambient calculus provides a unified framework for modeling both kinds of mobility {{ref_harvard|Cardelli1998|Cardelli 1998|-}}. It is used to model interactions in such [[concurrent systems]] as the [[Internet]].
47610
47611 Since its inception, the ambient calculus has grown into a family of closely related [http://xdguan.freezope.org/wiki/AmbientCalculiOnline ''ambient calculi''].
47612
47613 == Informal description ==
47614 ===Ambients===
47615 The fundamental primitive of the ambient calculus is the ''ambient''. An ambient is informally defined as a ''bounded'' place in which computation can occur. The notion of boundaries is considered key to representing mobility, since a boundary defines a contained computational agent that can be moved in its entirety {{ref_harvard|Cardelli1998|Cardelli 1998|-}}. Examples of ambients include:
47616
47617 * a web page (bounded by a file)
47618 * a virtual address space (bounded by an addressing range)
47619 * a Unix file system (bounded within a physical volume)
47620 * a single data object (bounded by “self”)
47621 * a laptop (bounded by its case and data ports)
47622
47623 The key properties of ambients within the Ambient calculus are:
47624
47625 * Ambients have names, which are used to control access to the ambient
47626 * Ambients can be nested inside other ambients (representing, for example, administrative domains)
47627 * Ambients can be moved as a whole
47628
47629 ===Operations===
47630 Computation is represented as the crossing of boundaries, ''i.e.'' the movement of ambients. There are three basic operations (or capabilities) on ambients {{ref_harvard|Cardelli1998|Cardelli 1998|-}}:
47631 * &lt;math&gt;in\;m.P&lt;/math&gt; instructs the surrounding ambient to enter some sibling ambient &lt;math&gt;m&lt;/math&gt;, and then proceed as &lt;math&gt;P&lt;/math&gt;
47632 * &lt;math&gt;out\;m.P&lt;/math&gt; instructs the surrounding ambient to exit its parent ambient &lt;math&gt;m&lt;/math&gt;
47633 * &lt;math&gt;open\;m.P&lt;/math&gt; instructs the surrounding ambient to dissolve the boundary of an ambient &lt;math&gt;m&lt;/math&gt; located at the same level
47634 The Ambient calculus provides a reduction semantics that formally defines what the results of these operations are.
47635
47636 Communication ''within'' (''i.e.'' local to) an ambient is anonymous and asynchronous. Output actions release names or capabilities into the surrounding ambient. Input actions capture a value from the ambient, and bind it to a variable. ''Non-local'' I/O can be represented in terms of these local communications actions by a variety of means. One approach is to use mobile “messenger” agents that carry a message from one ambient to another (using the capabilities described above). Another approach is to emulate channel-based communications by modeling a channel in terms of ambients and operations on those ambients {{ref_harvard|Cardelli1998|Cardelli 1998|-}}. The three basic ambient primitives, namely '''in''', '''out''', and '''open''' are expressive enough to simulate name-passing channels in the [[Pi-calculus|&amp;pi;-calculus]].
47637
47638 == Criticisms ==
47639 Some people believe that the synchronous nature of the three ambient actions ('''in''', '''out''', and '''open''') may make it difficult to adopt the ambient calculus as the programming language core for mobile and [[distributed computing]]. A counter-argument to this criticism is that the ambient calculus is not intended to act as a language core, but rather to provide general capabilities for formally modelling and analyzing complex concurrent systems that may consist of components written in a variety of languages.
47640
47641 == See also ==
47642 * [[process calculi]]
47643 * [[programming language]]
47644 * [[theoretical computer science]]
47645 * [[lambda calculus]]
47646 * [[type theory]]
47647
47648 ==External links==
47649
47650 *[http://xdguan.freezope.org/wiki/AmbientCalculiOnline Collection of online resources for ambient calculi]
47651 *[http://www.luca.demon.co.uk/Ambit/Ambit.html Mobile Computational Ambients] by Luca Cardelli
47652
47653 == References ==
47654 * {{note_label|Cardelli1998|Cardelli 1998|-}} Cardelli, L. and Gordon, A. D. 1998: ''Mobile Ambients'', Proceedings of the First international Conference on Foundations of Software Science and Computation Structure (March 28 - April 04, 1998). M. Nivat, Ed. Lecture Notes In Computer Science, vol. 1378. Springer-Verlag, London, 140-155.
47655
47656 {{comp-sci-stub}}
47657 [[Category:Process calculi]]</text>
47658 </revision>
47659 </page>
47660 <page>
47661 <title>August Derleth</title>
47662 <id>980</id>
47663 <revision>
47664 <id>36184803</id>
47665 <timestamp>2006-01-22T05:49:56Z</timestamp>
47666 <contributor>
47667 <username>Jdcooper</username>
47668 <id>202051</id>
47669 </contributor>
47670 <text xml:space="preserve">{{mergefrom|List of works by August Derleth}}
47671
47672 '''August William Derleth''' ([[February 24]] [[1909]] &amp;ndash; [[July 4]] [[1971]]) was an American writer and anthologist. The son of William Julius Derleth and his wife Rose Louise Volk, he resided in [[Sauk City, Wisconsin]].
47673
47674 At the age of 16, he sold his first story to ''[[Weird Tales]]'' magazine. Derleth wrote all throughout his four years at the [[University of Wisconsin-Madison]] and received a [[Bachelor's Degree|B.A.]] in 1930. During this time he served briefly as [[editor]] of ''[[Mystic Magazine]]''.
47675
47676 In the mid-1930s he organised a Ranger's Club for young people, served as clerk and president of the local [[Board of Education]], served as a parole officer, organised a local Men&amp;rsquo;s Club and a [[Parent-Teacher Association|parent-teacher association]]. He also lectured in American Regional Literature at the University of Wisconsin.
47677
47678 Derleth was a contemporary and friend of [[H. P. Lovecraft]] &amp;mdash; when Lovecraft wrote about &quot;le Comte d'Erlette&quot; in [[List of Works by H. P. Lovecraft|his fiction]] it was in homage to Derleth. After Lovecraft's death he took a number of that author's unfinished stories and rewrote or finished them for publication in ''Weird Tales'' and later in book form. In the process, he invented the term [[Cthulhu Mythos]] to describe the invented [[mythology]] that seemed to lie behind much of Lovecraft's fiction. Derleth codified the Mythos to bring it more in line with his own [[Christianity|Christian]] conception of the battle between good and evil and, as other authors had done before him, added new gods and creatures to the stories.
47679
47680 When Lovecraft died in [[1937]], Derleth and [[Donald Wandrei]] put together a collection of that author's [[short story|stories]] and tried to get them published. With existing publishers showing little interest, they founded [[Arkham House]] in 1939 to do it themselves. The name of the company comes from Lovecraft's [[fictional town]] of [[Arkham]], [[Massachusetts]], which featured in many of his stories.
47681
47682 In [[1939]] Arkham House published ''[[The Outsider and Others]]'', a huge collection that contained most of Lovecraft's short stories then known to exist. Derleth and Wandrei soon decided to expand Arkham House and began a regular publishing schedule after its second book, ''[[Someone in the Dark]]'' in [[1941]], a collection of some of Derleth's own [[horror stories]].
47683
47684 In [[1941]] he became literary editor of ''[[The Capital Times]]'' newspaper in [[Madison, Wisconsin|Madison]], a post he held until his resignation in [[1960]].
47685
47686 Derleth was married [[April 6]] [[1953]] to Sandra Evelyn Winters, and they were divorced six years later in [[1959]]. He retained custody of their two children, April Rose and Walden William. In [[1960]], Derleth began editing and publishing a magazine called ''Hawk and Whippoorwill'', dedicated to [[poetry|poems]] of man and nature.
47687
47688 He died on [[July 4]] [[1971]] and is buried in [[St. Aloysius]] Cemetery, [[Sauk City]], Wisconsin.
47689
47690 Derleth wrote more than 150 short stories and more than 100 books during his lifetime. Included among that number were several novels about a British detective named [[Solar Pons]], who was quite similar in many respects to [[Sherlock Holmes]]. Derleth, however, lacked the knowledge to make the details of those stories authentic, as he had never been to [[England]]. He also wrote under the [[pseudonym|pseudonyms]] Stephen Grendon, Kenyon Holmes and Tally Mason.
47691 ==See also==
47692 [[August derleth bibliography | Derleth Bibliography]]
47693
47694 ==External links==
47695 *[http://www.derleth.org/ The August Derleth Society]
47696 *[http://www.waldeneast.fsnet.co.uk/adp1.htm A more detailed biography]
47697 *[http://www.arkhamhouse.com/augustderleth.htm A short autobiography]
47698 *[http://lovecraft.cjb.net &quot;The Ultimate Cthulhu Mythos Book List&quot;] - Listing of all mythos novels, anthologies, collections, comic books, and more.
47699
47700 [[Category:1909 births|Derleth, August]]
47701 [[Category:1971 deaths|Derleth, August]]
47702 [[Category:American short story writers|Derleth, August]]
47703 [[Category:American mystery writers|Derleth, August]]
47704 [[Category:American novelists|Derleth, August]]
47705 [[Category:Cthulhu mythos|Derleth, August]]
47706 [[Category:Horror writers|Derleth, August]]
47707 [[Category:People from Wisconsin|Derleth, August]]
47708 [[de:August Derleth]]
47709 [[fr:August Derleth]]
47710 [[ja:ã‚Ēãƒŧã‚Ŧ゚トãƒģダãƒŧãƒŦã‚š]]
47711 [[pl:August Derleth]]
47712 [[sv:August Derleth]]</text>
47713 </revision>
47714 </page>
47715 <page>
47716 <title>Alps</title>
47717 <id>981</id>
47718 <revision>
47719 <id>41456986</id>
47720 <timestamp>2006-02-27T13:34:58Z</timestamp>
47721 <contributor>
47722 <username>Perconte</username>
47723 <id>111314</id>
47724 </contributor>
47725 <comment>+ digital images</comment>
47726 <text xml:space="preserve">:''This article is about the Alps in Europe. For other mountain ranges see [[Alps (disambiguation)]].''
47727 [[Image:Alps in the Chamonix Valley, near the Mer de Glace.jpg|thumb|275px|right|The West face of the Petit Dru above the [[Chamonix]] valley near the [[Mer de Glace]].]]
47728 [[Image:Alpenrelief 01.jpg|thumb|275px|Digital relief of the Alps]]
47729
47730 The '''Alps''' (Alpi in Italian) is the name for one of the great [[mountain range]] systems of [[Europe]], stretching from [[Austria]], [[Italy]] and [[Slovenia]] in the east, through [[Italy]], [[Switzerland]], [[Liechtenstein]] and [[Germany]] to [[France]] in the west. The word &quot;Alps&quot; was taken via [[French language|French]] from [[Latin]] ''Alpes'' (meaning &quot;the Alps&quot;), which may be influenced by the Latin words ''albus'' (white) or ''altus'' (high), or a [[Celtic languages|Celtic]] word.
47731
47732 The highest mountain in the Alps is [[Mont Blanc]] at 4810&amp;nbsp;[[metre|m]] on the French-Italian border. All the main peaks of the Alps can be found in the [[list of mountains of the Alps]] and [[list of Alpine peaks by prominence]].
47733
47734 ==Geography==
47735 :''Main article: [[Geography of the Alps]]''
47736
47737 ===Subdivision===
47738 [[Image:Alpenrelief 02.jpg|thumb|275px|the Alps with the Borders of the Countries]]
47739 [[Image:Italian alps1.jpg|thumb|right|275px|The Italian Alps - Taken from an airplane]]
47740 The Alps are generally divided into [[Western Alps]] and [[Eastern Alps]]. The division is along the line between [[Lake Constance]] and [[Lake Como]], following the [[Rhine]]. The Western Alps are located in [[Italy]], [[France]] and [[Switzerland]], the Eastern Alps in [[Austria]], [[Germany]], [[Italy]], [[Liechtenstein]], [[Slovenia]] and [[Switzerland]]. The highest peak of the Western Alps is [[Mont Blanc]], 4810 m. The highest peak in the Eastern Alps is [[Piz Bernina]], 4052 meters.
47741
47742 The Eastern Alps are commonly subdivided according to the different geological composition of the more central parts of the Alps and the groups at its northern and southern fringes: [[Northern Limestone Alps]], [[Central Eastern Alps]] and [[Southern Limestone Alps]]. The border between the [[Central Eastern Alps]] and the [[Southern Limestone Alps]] is the [[Periadriatic Seam]]. The [[Northern Limestone Alps]] are separated from the [[Central Eastern Alps]] by the [[Grauwacken Zone]].
47743
47744 The [[Western Alps]] are commonly subdivided into the following:
47745 *[[Ligurian Alps]]
47746 *[[Maritime Alps]]
47747 *[[Cottian Alps]]
47748 *[[DauphinÊ Alps]]
47749 *[[Graian Alps]]
47750 *[[Pennine Alps]]
47751 *[[Bernese Alps]]
47752 *[[Lepontine Alps]]
47753 *[[Glarus Alps]]
47754 *[[North-Eastern Swiss Alps]]
47755
47756 Series of lower mountain ranges run parallel to the main chains of the Alps, including the [[French Prealps]].
47757
47758 ===Main chains===
47759 :''Main article: [[Main chain of the Alps]]''
47760
47761 [[Image:alps.space.300pix.jpg|thumb|right|The European Alps from space in May 2002.]]
47762 The &quot;main chain of the Alps&quot; follows the watershed from the [[Mediterranean Sea]] to the [[Wienerwald]], passing over many of the highest and most famous peaks in the Alps. From the Colle di Cadibona to [[Col de Tende]] it runs westwards, before turning to the north-west and then, near the [[Colle della Maddalena]], to the north. Upon reaching the Swiss border, the line of the main chain heads approximately east-north-east, a heading it follows until its end near [[Vienna]].
47763
47764 ===Principal passes===
47765 :''Main article: [[Principal passes of the Alps]]''
47766
47767 The Alps do not form an impassable barrier; they have been traversed for [[war]] and [[commerce]], and later by [[pilgrim]]s, [[student]]s and [[tourist]]s. Crossing places by [[road]], [[train]] or foot are called passes, these are depressions in the mountains to which a valley leads from the plains and hilly pre-mountainous zones.
47768
47769 ==Climate==
47770 :''Main article: [[Climate of the Alps]]''
47771
47772 The ''climate of the Alps'' is the [[climate]], or average [[weather]] conditions over a long time, of the central Alpine region of [[Europe]]. As we rise from [[sea level]] into the upper regions of the [[Earth's atmosphere|atmosphere]], the [[temperature]] [[adiabatic lapse rate|decreases]]. The effect of [[mountain]] chains on prevailing [[wind]]s is to carry warm air belonging to the lower region into an upper zone, where it expands in [[volume]] at the cost of a proportionate loss of [[heat]], often accompanied by the [[precipitation (meteorology)|precipitation]] of moisture in the form of [[snow]] or [[rain]].
47773
47774 ==Geology==
47775 :''Main article: [[Geology of the Alps]]''
47776
47777 The Alps arose as a result of the pressure exerted on [[sediment]]s of the [[Tethys Ocean]] basin as its [[Mesozoic]] and early [[Cenozoic]] [[Stratum|strata]] were pushed against the stable [[Eurasia]]n landmass by the northward-moving [[Africa]]n landmass. Most of this occurred during the [[Oligocene]] and [[Miocene]] epochs. The pressure formed great recumbent folds, or ''nappes'', that rose out of what had become the [[Tethys Sea]] and pushed northward, often breaking and sliding one over the other to form gigantic thrust [[Geologic fault|fault]]s. [[Crystal]]line rocks, which are exposed in the higher central regions, are the rocks forming [[Mont Blanc]], the [[Matterhorn]], and high peaks in the Pennine Alps and Hohe Tauern.
47778
47779 The landscape seen today is mostly formed by [[glaciation]] during the past two million years. At least five [[ice age]]s have done much to remodel the region, scooping out the lakes and rounding off the limestone hills along the northern border. [[Glaciers]] have been retreating during the past 10,000 years, leaving large granite boulders scattered in the forests in the region. As the last ice age ended, it is believed that the [[climate]] changed so rapidly that the glaciers retreated back into the mountains in a span of about 200 to 300 years.
47780
47781 ==Political history==
47782 :''Main article: [[Political history and modern state of the inhabitants of the Alps]]''
47783
47784 Little is known of the early dwellers in the Alps, save from the scanty accounts preserved by [[Ancient Rome|Roman]] and [[Ancient Greece|Greek]] [[historian]]s and [[geographer]]s. A few details have come down to us of the conquest of many of the Alpine tribes by [[Augustus]].
47785
47786 The successive emigration and occupation of the Alpine region by various [[Germanic peoples|Teutonic tribes]] from the [[5th century|5th]] to the [[6th century|6th centuries]] are known only in outline, because to them, as to the [[Frankish]] kings and emperors, the Alps offered a route from one place to another rather than a permanent residence.
47787
47788 It is not until the final breakup of the [[Carolingian Empire]] in the [[10th century|10th]] and [[11th century|11th centuries]] that it becomes possible to trace out the local history of the Alps.
47789
47790 ==Exploration==
47791 :''Main article: [[Exploration of the High Alps]]''
47792
47793 The higher regions of the Alps were long left to the exclusive attention of the men of the adjoining valleys, even when Alpine travellers (as distinguished from Alpine climbers) began to visit these valleys. The two men who first explored the regions of ice and snow were H.B. de Saussure (1740-1799) in the [[Pennine Alps]], and the Benedictine monk of [[Disentis]], Placidus a Spescha (1752-1833), most of whose ascents were made before 1806, in the valleys at the sources of the [[Rhine]].
47794
47795 ==Flora==
47796 A natural vegetation limit with altitude is given by the presence of the chief [[deciduous]] [[tree]]s &amp;mdash; [[oak]], [[beech]], [[Ash tree|ash]] and [[sycamore maple]]. These do not reach exactly to the same elevation, nor are they often found growing together; but their upper limit corresponds accurately enough to the change from a temperate to a colder climate that is further proved by a change in the wild [[herb]]aceous vegetation. This limit usually lies about 1200 m above the sea on the north side of the Alps, but on the southern slopes it often rises to 1500 m, sometimes even to 1700 m.
47797
47798 It must not be supposed that this region is always marked by the presence of the characteristic trees. The interference of man has in many districts almost removed them, and, excepting the beech forests of the [[Austria]]n Alps, a considerable wood of deciduous trees is rare. In many districts where such woods once existed, their place has been occupied by the [[Scots pine]] and [[Norway spruce]], which suffer less from the ravages of goats, the worst enemies of tree vegetation. The mean annual temperature of this region differs little from that of the [[British Islands]]; but the climate conditions are widely different. Here snow usually lies for several months, till it gives place to a spring and summer considerably warmer than the average of British seasons.
47799
47800 '''Typical plants found in the Alps:'''
47801 &lt;gallery&gt;
47802 Image:Leontopodium alpinum1.jpg|Edelweiss&lt;br /&gt;(''[[Edelweiss|Leontopodium alpinum]]'')
47803 Image:Gentiana acaulis.jpg|stemless gentian&lt;br /&gt;(''[[Gentiana acaulis]]'')
47804 Image:RostblaettrigeAlpenrose.jpg|rusty-leaved Alpenrose&lt;br /&gt;(''[[Rhododendron ferrugineum]]'')
47805 Image:Chamorchis_alpina_230705b.jpg|Alpine dwarf orchid&lt;br /&gt;(''[[Chamorchis alpina]]'')
47806 Image:Ranunculus_glacialis.jpg|glacier buttercup&lt;br /&gt;(''[[Ranunculus glacialis]]'')
47807 Image:Kosodrzewina (Sosna gÃŗrska) Pinus mugo mugo.jpg|mountain pine&lt;br /&gt;(''[[Mountain Pine|Pinus mugo]]'')
47808 Image:Pulsatilla_alpina_schneebergensis.jpg|Alpine pasque-flower&lt;br /&gt;(''[[Pulsatilla alpina]]'')
47809 Image:Androsace alpina02.jpg|Alpine rock-jasmine (''[[Androsace alpina]]'')
47810 &lt;/gallery&gt;
47811
47812 ==Fauna==
47813 [[:Category:Fauna of the Alps|Species common to the Alps]]. These are most numerously found in the 15% of the Alps protected in parks and reserves.
47814
47815 &lt;gallery&gt;
47816 Image:Plochacz 3001xx.jpg|&lt;center&gt;[[Alpine Accentor]]&lt;/center&gt;
47817 Image:Chamois Kleinwalsertal 1997.jpg|&lt;center&gt;[[Chamois]]&lt;/center&gt;
47818 Image:Alpenkauw2.jpg|&lt;center&gt;[[Alpine Chough]]&lt;/center&gt;
47819 Image:Goldie.JPG|&lt;center&gt;[[Golden Eagle]]&lt;/center&gt;
47820 Image:Alpine ibex.jpg|&lt;center&gt;[[Alpine Ibex|Ibex]]&lt;/center&gt;
47821 Image:Corvus monedula2.jpg|&lt;center&gt;[[Jackdaw]]&lt;/center&gt;
47822 Image:Marmota marmota Alpes2.jpg|&lt;center&gt;[[Alpine Marmot|Marmot]]&lt;/center&gt;
47823 Image:Arctic Hare.jpg|&lt;center&gt;[[Mountain Hare]]&lt;/center&gt;
47824 Image:Ptarmigan9.jpg|&lt;center&gt;[[Ptarmigan]]&lt;/center&gt;
47825 Image:Elk4.jpg|&lt;center&gt;[[Red Deer]]&lt;/center&gt;
47826 Image:Aegolius-funereus-001.jpg|&lt;center&gt;[[Tengmalm's Owl]]&lt;/center&gt;
47827 &lt;/gallery&gt;
47828
47829 ==See also==
47830 {{commons|Category:Alps}}
47831 *[[Paganism in the Eastern Alps]]
47832 *[[Alpinism]]
47833
47834 ==External links==
47835 * [http://gridk1ach.grid.unep.ch/preAC/en/soia.htm System for Observation of and Information on the Alps], established in 1991 by the [[Alpine Convention]]
47836 * [http://modis.gsfc.nasa.gov/gallery/individual.php?db_date=2005-09-17 Satellite photo of the Alps], taken on [[August 31]], [[2005]] by [[MODIS]] aboard [[Terra (satellite)|Terra]]
47837 * [http://www.eumetsat.int/en/area5/iotm/19930503_convection/19930503_convection.html Convection over the Alps], a satellite photo taken on [[May 3]], [[1993]] by [[Meteosat]]-4, with analysis
47838 *[http://www2.snowfactory.com/portal/modules.php?name=WebCAM_Belalp SNOWFactory.com] The live webcam locate in the swiss alps. More than 50'000 images since summer 2003.
47839 *[http://www.snownews.de Winter holidays in the european Alps]
47840 *[http://www.via-ferrata.de Hiking and climbing in the ALps]
47841 * [http://www.travel-france-vacation.com/south-riviera-france/southern-nice-provence.htm Visit Alps and Rhone valley]
47842
47843 [[Category:Alps| ]]
47844 [[Category:Mountains of Europe]]
47845 [[Category:Mountains of Austria]]
47846 [[Category:Mountains of France]]
47847 [[Category:Mountains of Germany]]
47848 [[Category:Mountains of Switzerland]]
47849 [[Category:Mountains of Slovenia]]
47850
47851 ==References==
47852 *{{1911}}
47853
47854 [[af:Alpe]]
47855 [[als:Alpen]]
47856 [[ar:ØŖŲ„ب]]
47857 [[bg:АĐģĐŋи]]
47858 [[ca:Alps]]
47859 [[cs:Alpy]]
47860 [[da:Alperne]]
47861 [[de:Alpen]]
47862 [[et:Alpid]]
47863 [[el:ΆÎģĪ€ÎĩΚĪ‚]]
47864 [[es:Alpes]]
47865 [[eo:Alpoj]]
47866 [[eu:Alpeak]]
47867 [[fr:Alpes]]
47868 [[ga:Sliabh Alpa]]
47869 [[ko:ė•Œí”„ėŠ¤ ė‚°ë§Ĩ]]
47870 [[hr:Alpe]]
47871 [[is:AlpafjÃļll]]
47872 [[it:Alpi]]
47873 [[he:הרי האלפים]]
47874 [[la:Alpes]]
47875 [[lt:Alpės]]
47876 [[nl:Alpen]]
47877 [[ja:ã‚ĸãƒĢãƒ—ã‚šåąąč„ˆ]]
47878 [[no:Alpene]]
47879 [[nn:Alpane]]
47880 [[pl:Alpy]]
47881 [[pt:Alpes]]
47882 [[ro:Alpi]]
47883 [[ru:АĐģŅŒĐŋŅ‹]]
47884 [[sk:Alpy]]
47885 [[sl:Alpe]]
47886 [[sr:АĐģĐŋи]]
47887 [[fi:Alpit]]
47888 [[sv:Alperna]]
47889 [[tr:Alpler]]
47890 [[uk:АĐģŅŒĐŋи]]
47891 [[zh:é˜ŋå°”å‘æ–¯åąą]]</text>
47892 </revision>
47893 </page>
47894 <page>
47895 <title>A priori and a posteriori knowledge</title>
47896 <id>982</id>
47897 <revision>
47898 <id>15899492</id>
47899 <timestamp>2005-05-15T20:16:19Z</timestamp>
47900 <contributor>
47901 <username>Kzollman</username>
47902 <id>166829</id>
47903 </contributor>
47904 <text xml:space="preserve">#REDIRECT [[Knowledge]]</text>
47905 </revision>
47906 </page>
47907 <page>
47908 <title>Albert Camus</title>
47909 <id>983</id>
47910 <revision>
47911 <id>42036634</id>
47912 <timestamp>2006-03-03T10:29:44Z</timestamp>
47913 <contributor>
47914 <ip>84.159.110.243</ip>
47915 </contributor>
47916 <text xml:space="preserve">[[Image:camus-albert.gif|thumb|right|Albert Camus]]
47917 '''Albert Camus''' (pronounced Kam-oo, [[IPA]]: ka.mʉĖŸË) ([[November 7]], [[1913]] &amp;ndash; [[January 4]], [[1960]]) was a [[France|French]] [[author]] and [[philosopher]] and one of the principal luminaries (with [[Jean-Paul Sartre]]) of [[absurdism]]. Camus was the second youngest-ever recipient of the [[Nobel Prize for Literature]] (after [[Rudyard Kipling]]) when he received the award in 1957. He is also the [[List of Nobel Prize in Literature winners by longevity|shortest-lived of any literature laureate]] to date, having died in a car crash three years after receiving the award.
47918
47919 ==Early years==
47920 Albert Camus was born in [[Mondovi, Algeria]] to a French Algerian ([[pied noir]]) settler family. His mother was of Spanish extraction. His father, Lucien, died in the [[First Battle of the Marne|Battle of the Marne]] in [[1914]] during the [[World War I|First World War]], while serving as a member of the [[Zouave]] infantry regiment. Camus lived in poor conditions during his childhood in the Belcourt section of [[Algiers]].
47921
47922 In [[1923]], Camus was accepted into the [[lycÊe]] and eventually to the [[University of Algiers]]. However, he contracted [[tuberculosis]] in [[1930]], which put an end to his [[football (soccer)|football]] activities (he had been a [[goalkeeper]] for the university team) and forced him to make his studies a part-time pursuit. He took odd jobs including private [[tutor]], car parts clerk, and work for the Meteorological Institute. He completed his ''licence de philosophie'' ([[Bachelor of Arts|BA]]) in [[1935]]; in May of [[1936]], he successfully presented his thesis on [[Plotinus]], ''NÊo-Platonisme et PensÊe ChrÊtienne'' for his ''diplôme d'Êtudes supÊrieures'' (roughly equivalent to an M.A. by thesis).
47923 {{French literature (small)}}
47924 Camus joined the [[French Communist Party]] in 1934, apparently for concern over the political situation in [[Spain]] (which eventually resulted in the [[Spanish Civil War]]) rather than support for [[Marxism-Leninism|Marxist-Leninist]] doctrine. In 1936, the independence-minded Algerian Communist Party (PCA) was founded. Camus joined the activities of [[Le Parti du Peuple AlgÊrien]], which got him into trouble with his communist party comrades. As a result, he was denounced as &quot;[[Trotskyism|Trotskyite]]&quot;, which did not endear him to Stalinist communism.
47925
47926 In 1934, he [[Married|married]] Simone Hie, a [[morphine]] addict, but the marriage ended due to Simone's infidelity. In 1935, he founded ''ThÊÃĸtre du Travail'' &amp;mdash; &quot;Worker's Theatre&quot; &amp;mdash; (renamed ''ThÊÃĸtre de l'Equipe'' (&quot;Team's Theatre&quot;) in [[1937]]), which survived until 1939. From 1937 to 1939, he wrote for a socialist paper, ''Alger-Republicain'', and his work included an account of the peasants who lived in [[Kabylie]] in poor conditions, which apparently cost him his job. From 1939 to 1940, he briefly wrote for a similar paper, ''Soir-Republicain''. He was rejected from the French army because of his [[tuberculosis]].
47927
47928 In 1940, Camus married Francine Faure, a pianist and mathematician. Francine gave birth to twins Catherine and Jean Camus on September 5th, 1945. Also in this year, Camus began to work for ''[[Paris-Soir]]'' magazine. In the first stage of [[World War II]], the so-called [[Phony War]] stage, Camus was a [[pacifism|pacifist]]. However, he was in [[Paris]] to witness how the [[Wehrmacht]] took over. On [[December 15]], [[1941]], Camus witnessed the execution of [[Gabriel Peri]], an event which Camus later said crystallized his revolt against the Germans. Afterwards he moved to [[Bordeaux]] alongside the rest of the staff of ''Paris-Soir''. In this year he finished his first books, ''[[The Stranger (novel)|The Stranger]]'' and ''[[The Myth of Sisyphus]]''. He returned briefly to [[Oran]], Algeria in 1942.
47929
47930 == Literary career ==
47931 During the war Camus joined the [[French Resistance]] cell ''Combat'', which published an underground newspaper of the same name. This group worked against the Nazis, and in it Camus assumed the [[moniker]] &quot;Beauchard&quot;. Camus became the paper's editor in 1943, and when the Allies liberated Paris Camus reported on the last of the fighting. He eventually resigned from ''Combat'' in 1947, when it became a commercial paper. It was here that he became acquainted with [[Jean-Paul Sartre]].
47932
47933 [[Image:camus-albert.jpg|thumb|right|Albert Camus]]
47934 After the war, Camus became one member of Sartre's entourage and frequented ''[[CafÊ de Flore]]'' on the [[Boulevard St. Germain]] in [[Paris]]. Camus also toured the [[United States]] to lecture about French existentialism. Although he leaned [[left-wing politics|left]] politically, his strong criticisms of communist doctrine did not win him any friends in the communist parties and eventually also alienated Sartre.
47935
47936 In 1949 his tuberculosis returned and he lived in seclusion for two years. In 1951 he published ''[[The Rebel]]'', a philosophical analysis of rebellion and revolution which made clear his rejection of communism. The book upset many of his colleagues and contemporaries in France and led to the final split with Sartre. The dour reception depressed him and he began instead to translate plays.
47937
47938 Camus's most significant contribution to philosophy was his idea of the absurd, the result of our desire for clarity and meaning within a world and condition that offers neither, which he explained in ''[[The Myth of Sisyphus]]'' and incorporated into many of his other works, such as ''[[The Plague]]''. Some would argue that Camus is better described not as an [[existentialist]] (a label he would have rejected) but as an [[absurdist]].
47939
47940 In the 1950s Camus devoted his efforts to [[human rights]]. In 1952 he resigned from his work for [[UNESCO]] when the [[UN]] accepted [[Spain]] as a member under the leadership of [[Francisco Franco|General Franco]]. In 1953 he was one of the few leftists who criticized [[Soviet Union|Soviet]] methods to crush a worker's strike in [[East Berlin]]. In 1956 he protested similar methods in [[Hungary]].
47941
47942 He maintained his pacifism and resistance to [[capital punishment]] everywhere in the world. One of his most significant contributions was an essay collaboration with [[Arthur Koestler|Koestler]], the writer, intellectual, and founder of the League Against Capital Punishment.
47943
47944 When the [[Algerian War of Independence]] began in 1954 it presented a moral dilemma for Camus. He identified with [[pied-noir]]s, and defended the French government on the grounds that revolt of its North African colony was really an integral part of the 'new Arab imperialism' led by Egypt and an 'anti-Western' offensive orchestrated by Russia to 'encircle Europe' and 'isolate the United States' (Actuelles III: Chroniques Algeriennes, 1939-1958). Although favouring greater Algerian [[self-governance|autonomy]] or even [[federation]], though not full-scale independence, he believed that the pied-noirs and Arabs could co-exist. During the war he advocated civil truce that would spare the civilians, which was rejected by both sides who regarded it as foolish. Behind the scenes, he began to work clandestinely for imprisoned Algerians who faced the death penalty.
47945
47946 From 1955 to 1956 Camus wrote for [[L'Express]]. In [[1957]] he was awarded the [[Nobel Prize in literature]], officially not for his novel ''[[The Fall]]'', published the previous year, but for his writings against capital punishment in the essay &quot;RÊflexions Sur la Guillotine&quot;. When he spoke to students at the [[University of Stockholm]], he defended his apparent inactivity in the Algerian question and stated that he was worried what could happen to his mother who still lived in Algeria. This led to further ostracism by French left-wing intellectuals.
47947
47948 Camus died on [[January 4]], [[1960]] in a car accident near [[Sens]], in a place named &quot;Le Grand Frossard&quot; in the small town of Villeblevin. Ironically, Camus had uttered a remark earlier in his life that the most absurd way to die would be in a car accident.
47949 [[Image:Camus Monument in Villeblevin France 17-august-2003.1.JPG|thumb|left|The monument to the French writer and philosopher Albert Camus (1913-1960), built in the small town of Villeblevin (France) where he died in a car crash on January 4, 1960]]
47950 [[Image:Camus Monument in Villeblevin France 17-august-2003.4.JPG|thumb|left|The bronze plaque on the monument to the French writer and philosopher Albert Camus (1913-1960), built in the small town of Villeblevin (France). The plaque says: &quot;From the Yonne area's local council, in tribute to the writer Albert Camus who was watched over in the Villeblevin town hall in the night of the 4th to the 5th of January 1960&quot;]]
47951 The driver of the [[Facel Vega]], [[Michel Gallimard]] -- his publisher and close friend -- also perished in the accident. Camus was interred in the Lourmarin Cemetery, [[Lourmarin]], [[Vaucluse]], [[Provence-Alpes-Côte d'Azur]], [[France]].
47952
47953 He was survived by his twin children, Catherine and Jean, who hold the copyrights to his work.
47954
47955 After his death, two of Camus's works were published posthumously. The first was an earlier version of ''[[The Stranger (novel)|The Stranger]]'' entitled ''[[A Happy Death]]'' and was published in [[1970]]. The second work was an unfinished novel, ''[[The First Man]]'', that Camus was writing before he died. The novel was an [[autobiographical]] work about his childhood in [[Algeria]] and was published in [[1995]].
47956 {{-}}
47957
47958 ==Summary of Absurdism==
47959 [[Image:20041113-002 Lourmarin Tombstone Albert Camus.jpg|thumb|Albert Camus' gravestone]]
47960 Many writers have written on the Absurd, each with his or her own interpretation of what the Absurd actually is and their own ideas on the importance of the Absurd. For example, Sartre does little more than acknowledge it while Kierkegaard bases the existence of the God on the fact of the absurd. Camus was not the originator of Absurdism and regretted the continued reference to him as a ''philosopher of the absurd''. He shows less and less interest in the Absurd shortly after publishing ''Le Mythe de Sisyphe'' (The Myth of Sisyphus). To distinguish Camus's ideas of the Absurd from those of other philosophers, people sometimes refer to the '''Paradox of the Absurd''', when referring to ''Camus's Absurd''.
47961
47962 His early thoughts on the Absurd appeared in his first collection of essays, ''L'Envers et l'endroit'' (The Wrong Side and the Right Side) in 1937. Absurd themes appeared with more sophistication in his second collection of essays, ''Noces'' (Nuptials), in 1938. In these essays Camus does not offer a philosophical account of the Absurd, or even a definition; rather he reflects on the experience of the Absurd. In 1942 he published the story of a man living an Absurd life as ''L'Étranger'' (The Stranger/Outsider), and in the same year releases ''Le Mythe de Sisyphe'' (The Myth of Sisyphus), a literary essay on the Absurd. He had also written a play about a Roman Emperor, Caligula, pursuing an Absurd logic. However, the play was not performed until 1945. The turning point in Camus's attitude to the Absurd occurs in a collection of letters to a fictitious German friend, published in the newspaper ''Combat''.
47963
47964 ===Camus' ideas on the Absurd===
47965 In the essays Camus presented us with dualisms; happiness and sadness, dark and light, life and death, etc. He wanted us to face up to the fact that happiness is fleeting and that we will die. He did this not to be morbid, but so we can love life and enjoy our happiness when it occurs. In ''Le Myth'', this dualism became a paradox; we value our lives and existence so greatly, but at the same time we know we will eventually die, and ultimately our endeavours are meaningless. Whilst we can live with a dualism (''I can accept periods of unhappiness, because I know I will also experience happiness to come''), we cannot live with the paradox (''I think my life is of great importance, but I also think it is meaningless''). In ''Le Myth'', Camus was interested in how we experience the Absurd and how we live with it. Our life must have meaning for us to value it. If we accept that life has no meaning and therefore no value, should we kill ourselves?
47966
47967 Meursault, the Absurdist hero of ''L'Étranger'', is a murderer who is executed for his crimes. Caligula ends up admitting his Absurd logic was wrong and is killed by an assassination he has deliberately brought about. However, Camus, while obviously suggesting that Caligula's Absurd reasoning is wrong, exalts Meursault as the only Messiah we deserve. ''Le Mythe de Sisyphe'' raises questions it cannot satisfactorily answer.
47968
47969 Camus' work on the Absurd was intended to promote a public debate. His various offerings entice us to think about the Absurd and offer our own contribution. Concepts such as cooperation, joint effort and solidarity are of key importance to Camus. In the essay ''Enigma'', Camus expressed his frustration at being labeled a philosopher of the absurd. None of his previous work was intended to be a definitive account of his thoughts on the Absurd, although the ''Le Mythe de Sisyphe'' is often mistaken as such.
47970
47971 Camus made a significant contribution to our understanding of the Absurd, but was not himself an Absurdist. &quot;If nothing had any meaning, you would be right. But there is something that still has a meaning.&quot; ''Second Letter to a German Friend'', December 1943.
47972
47973 ==Famous works==
47974 ===Novels===
47975 *''[[The Stranger (novel)|The Stranger]]'' (''L'Étranger'', also translated as ''The Outsider) (1942)
47976 *''[[The Plague]]'' (''La Peste'') (1947)
47977 *''[[The Fall]]'' (''La Chute'') (1956)
47978 *''[[A Happy Death]]'' (''La Mort heureuse'') (early version of ''The Stranger'', published posthumously 1970)
47979 *''[[The First Man]]'' (''Le premier homme'') (incomplete, published posthumously 1995)
47980
47981 ===Short stories===
47982 *''[[Exile and the Kingdom]]'' (''L'exil et le royaume'') (1957)
47983 *''[[The Guest]]'' (1957)
47984 *''[[La Femme Adultère]]'' (1954)
47985
47986 ===Non-fiction===
47987 *''[[Betwixt and Between]]'' (''L'envers et l'endroit'', also translated as ''The Wrong Side and the Right Side'') (collection, 1937)
47988 *''[[Neither Victim Nor Executioner]]'' (''Combat'') (1946)
47989 *''[[The Myth of Sisyphus]]'' (''Le Mythe de Sisyphe'') (1942)
47990 *''[[The Rebel]]'' (''L'Homme rÊvoltÊ'') (1951)
47991 *''Notebooks 1935-1942'' (''Carnets, mai 1935 -- fevrier 1942'') (1962)
47992 *''Notebooks 1943-1951'' (1965)
47993 *''[[Nuptials]]'' (''Noces'')
47994
47995 ===Plays===
47996 *''[[Caligula (play)|Caligula]]'' (performed 1945, written 1938)
47997 *''[[The Misunderstanding]]'' (''Le Malentendu'') (1944)
47998 *''[[State of Siege]]'' (''L'État de siège'') (1948)
47999 *''[[The Just Assassins]]'' (''Les Justes'') (1949)
48000
48001 ===Collections===
48002 *Youthful Writings
48003 *''[[Resistance, Rebellion, and Death]]'' (1961 - Collection of essays selected by the author)
48004 *Between Hell and Reason: Essays from the Resistance Newspaper &quot;Combat&quot;, 1944-1947 (1991)
48005 *Camus at &quot;Combat&quot;: Writing 1944-1947 (2005)
48006
48007
48008 ==Adaptations==
48009
48010 ===Movies===
48011 *[[Luchino Visconti]] made [[The Stranger (1967 movie)|a movie of ''The Stranger'']] in 1967, starring [[Marcello Mastroianni]].
48012 *[[Luis Puenzo]] and [[Felix Monti]] were responsible for a modern day rendition of ''The Plague'' in 1991. The film starred [[William Hurt]].
48013
48014
48015 ==Further Reading==
48016
48017 ===Bibliography===
48018 *Heiner Wittmann, Albert Camus. ''Kunst und Moral. Dialoghi/Dialogues. Literatur und Kultur Italiens und Frankreichs.'' Hrsg. Dirk Hoeges, Peter Lang, Frankfurt/M u.a. 2002
48019
48020 {{start box}}
48021 {{succession box | before = [[Halldor Laxness]] | title = [[List of Nobel laureates#Literature|Nobel Prize in Literature winner]] | years =1957 | after = [[Boris Pasternak]]
48022 }}
48023 {{end box}}
48024
48025 ==External links==
48026 {{wikiquote}}
48027 * [http://nobelprize.org/literature/laureates/1957/ Nobel Prize in Literature (1957) Link]
48028 * [http://www.tameri.com/csw/exist/camus.shtml Existentialism and Albert Camus]
48029 * [http://archive.salon.com/books/feature/2004/11/01/camus/print.html &quot;The Rebel&quot; at Salon.com]
48030 * [http://www.che-lives.com/home/modules.php?name=News&amp;file=article&amp;sid=125 The Absurd Hero &amp; The Ruthless Critic]
48031 * [http://www.thenation.com/doc.mhtml?i=20040405&amp;s=jacoby&amp;c=1 &quot;Accidental Friends&quot; the story of the Camus-Sartre friendship and very public breakup]
48032 * http://www.romanistik.info/camus.html (in German)
48033 * [http://ceh.kitoba.com/hook/camus.html Camus's Choice: An Existential (Humanist) Antiplot]
48034 * [http://www.3ammagazine.com/litarchives/2003/jan/interview_catherine_camus.html Interview with daughter Catherine - 3AM]
48035 * [http://www.spikemagazine.com/0397camu.php Another interview with daughter Catherine - Spike]
48036 * [http://www.anselm.edu/homepage/dbanach/sisyphus.htm The Myth of Sysiphus]
48037 * [http://atheisme.free.fr/Biographies/Camus_e.htm Biography and quotes of Albert Camus]
48038 * [http://www.camus-society.com Albert Camus Society UK]
48039
48040 &lt;!-- interwiki --&gt;
48041
48042 [[Category:1913 births|Camus, Albert]]
48043 [[Category:1960 deaths|Camus, Albert]]
48044 [[Category:20th century philosophers|Camus, Albert]]
48045 [[Category:Algerian writers|Camus, Albert]]
48046 [[Category:Atheist philosophers|Camus, Albert]]
48047 [[Category:Existentialists|Camus, Albert]]
48048 [[Category:French dramatists and playwrights|Camus, Albert]]
48049 [[Category:French journalists|Camus, Albert]]
48050 [[Category:French novelists|Camus, Albert]]
48051 [[Category:French Resistance members|Camus, Albert]]
48052 [[Category:Nobel Prize in Literature winners|Camus, Albert]]
48053 [[Category:Pied-noirs|Camus, Albert]]
48054 [[Category:Polymaths|Camus, Albert]]
48055 [[Category:Road accident victims|Camus, Albert]]
48056
48057 [[af:Albert Camus]]
48058 [[ast:Albert Camus]]
48059 [[ca:Albert Camus]]
48060 [[cs:Albert Camus]]
48061 [[da:Albert Camus]]
48062 [[de:Albert Camus]]
48063 [[et:Albert Camus]]
48064 [[es:Albert Camus]]
48065 [[eo:Albert CAMUS]]
48066 [[fa:ØĸŲ„Ø¨Øą ڊاŲ…Ųˆ]]
48067 [[fr:Albert Camus]]
48068 [[gd:Albert Camus]]
48069 [[gl:Albert Camus]]
48070 [[ko:ė•Œë˛ ëĨ´ ėš´ëŽˆ]]
48071 [[hr:Albert Camus]]
48072 [[ilo:Albert Camus]]
48073 [[id:Albert Camus]]
48074 [[is:Albert Camus]]
48075 [[it:Albert Camus]]
48076 [[he:אלבר קאמי]]
48077 [[la:Albertus Camus]]
48078 [[lv:Albērs KamÄĢ]]
48079 [[lt:Alberas Kamiu]]
48080 [[hu:Albert Camus]]
48081 [[nl:Albert Camus]]
48082 [[ja:ã‚ĸãƒĢベãƒŧãƒĢãƒģã‚ĢミãƒĨ]]
48083 [[no:Albert Camus]]
48084 [[pl:Albert Camus]]
48085 [[pt:Albert Camus]]
48086 [[ro:Albert Camus]]
48087 [[ru:КаĐŧŅŽ, АĐģŅŒĐąĐĩŅ€]]
48088 [[sh:Alber Kami]]
48089 [[sk:Albert Camus]]
48090 [[sr:АĐģĐąĐĩŅ€ КаĐŧи]]
48091 [[fi:Albert Camus]]
48092 [[sv:Albert Camus]]
48093 [[vi:Albert Camus]]
48094 [[tr:Albert Camus]]
48095 [[uk:КаĐŧŅŽ АĐģŅŒĐąĐĩŅ€]]
48096 [[zh:é˜ŋå°”č´ÂˇåŠ įŧĒ]]</text>
48097 </revision>
48098 </page>
48099 <page>
48100 <title>Agatha Christie</title>
48101 <id>984</id>
48102 <revision>
48103 <id>41969359</id>
48104 <timestamp>2006-03-02T23:17:59Z</timestamp>
48105 <contributor>
48106 <ip>72.141.37.206</ip>
48107 </contributor>
48108 <comment>/* Biography */</comment>
48109 <text xml:space="preserve">[[Image:Agatha christie.png|right|thumb|180px|Agatha Christie]]
48110
48111 '''Agatha Mary Clarissa Christie''', [[Order of the British Empire|DBE]] ([[September 15]], [[1890]] &amp;ndash; [[January 12]], [[1976]]), was a [[United Kingdom|British]] [[crime fiction]] writer. She also wrote romances under the name '''Mary Westmacott'''.
48112
48113 Agatha Christie is the world's best-known mystery writer and, apart from [[William Shakespeare]], is the all-time best-selling author of any genre. Her books have sold over two billion copies in the [[English language]] and another billion in over 45 foreign languages (as of 2003). As an example of her broad appeal, she is the all-time best-selling author in France, with over 40 million copies sold in [[French language|French]] (as of 2003) versus 22 million for [[Émile Zola]], the nearest contender. She is famously known as the 'Queen of Crime' and is, arguably, the most important and innovative writer in the development of the English mystery novel.
48114
48115 Her [[Play|stage play]] ''[[The Mousetrap]]'' holds the record for the longest run ever in London, opening at the Ambassadors Theatre on [[November 25]], [[1952]], and as of 2006 is still running after more than 20,000 performances.
48116
48117 Christie published over eighty novels and stageplays, mainly [[Whodunit|whodunnit]]s and [[locked room mystery|locked room mysteries]], many of these featuring one of her main series characters, [[Hercule Poirot]] or [[Miss Marple]]. Although she delighted in twisting the established [[detective fiction]] form - one of her early books, ''[[The Murder of Roger Ackroyd]]'', is renowned for its surprise denouement - she was scrupulous in &quot;playing fair&quot; with the reader by making sure information for solving the [[puzzle]] was given.
48118
48119 Most of her books and [[short story|short stories]] have been filmed, some many times over (''[[Murder on the Orient Express]]'', ''[[Death on the Nile]]'', ''[[4.50 From Paddington|4.50 from Paddington]]''). The [[British Broadcasting Corporation|BBC]] has produced television and radio versions of most of the Poirot and Marple stories. A later series of Poirot dramatizations starring [[David Suchet]] was made by [[Granada Television]]. In 2004, the Japanese broadcasting company [[NHK|Nippon Housou Kyoukai]] turned Poirot and Marple into animated characters in the [[anime]] series ''[[Agatha Christie's Great Detectives Poirot and Marple]]'', introducing Mabel West (daughter of Miss Marple's mystery-writer nephew Raymond West, a [[canon (fiction)|canon]]ical Christie character) and her duck Oliver as new characters.
48120
48121 ==Biography==
48122 [[Image:Agatha Christie plaque, Torre Abbey.jpg|thumb|A plaque from the Agatha Christie Mile at [[Torre Abbey]] in [[Torquay]].]]
48123
48124 Christened '''Agatha May Clarissa Miller''', in [[Torquay]], [[Devon]], [[England]], she was the daughter of a [[United States]]-born father and a British mother. (However, she never held U.S. citizenship.)
48125
48126 Christie's first marriage, an unhappy one, was in 1914 to Colonel Archibald Christie, an aviator in the [[Royal Flying Corps]]. The couple had one daughter, [[Rosalind Hicks]], and divorced in 1928.
48127
48128 During [[World War I]] she worked at a hospital and then a pharmacy, a job that also influenced her work: many of the murders in her books are carried out with [[poison]].
48129
48130 In December 1926 she disappeared for eleven days, causing quite a storm in the press. Her car was found abandoned in a chalk pit. She was eventually found staying at a hotel in [[Harrogate]], where she claimed to have suffered [[amnesia]] due to a [[nervous breakdown]] following the death of her mother and her husband's confessed infidelity. Opinions are still divided as to whether this was a [[publicity stunt]] or not. A 1979 film, ''[[Agatha (film)|Agatha]]'', starring [[Vanessa Redgrave]] as Christie, recounted a fictionalised version of the disappearance.
48131
48132 In 1930, Christie married (despite her divorce) a Roman Catholic, Sir [[Max Mallowan]], a British [[Archaeology|archaeologist]] 14 years her junior, and her travels with him contributed background to several of her novels set in the [[Middle East]]. Other novels (such as [[And Then There Were None]]) were set in and around [[Torquay]], [[Devon]], where she was born.
48133
48134 In 1971 she was granted the title of [[Order of the British Empire|Dame Commander of the British Empire]].
48135
48136 Agatha Christie died on [[January 12]], [[1976]], at age 85 from natural causes, at [[Winterbrook House]], [[Cholsey]] near [[Wallingford]], [[Oxfordshire]]. She is buried at St. Mary's Churchyard in Cholsey, Oxon.
48137
48138 Christie's only child, [[Rosalind Hicks]], died on [[October 28]], [[2004]], also aged 85, from natural causes. Christie's grandson, Matthew Prichard, now owns the royalties to his grandmother's works.
48139
48140 {{spoiler}}
48141
48142 Two of her novels were written at the height of her career but held back until after her death: they were the last cases of Poirot and Miss Marple. In the final Poirot novel ''[[Curtain (novel)|Curtain]]'', Christie killed her creation and explained in her diary that she had always found him insufferable. She had a great fondness for Miss Marple, who was based largely on Christie's own grandmother, so she allowed Miss Marple to solve one more mystery in ''[[Sleeping Murder]]'' and return to the solitude of her village. However, since ''Sleeping Murder'' had been written quite a while previously, at least one character (Colonel Arthur Bantry, husband of Jane Marple's friend, Dolly) who had been declared deceased in earlier-released mysteries reappeared alive and well.
48143
48144 ==Works==
48145 * 1920 ''[[The Mysterious Affair at Styles]]'' (her first book, which introduced [[Hercule Poirot]], [[Chief Inspector Japp]] and [[Arthur Hastings|Captain Hastings]])
48146 * 1922 ''[[The Secret Adversary]]'' (introduced [[Tommy and Tuppence]])
48147 * 1923 ''[[Murder on the Links]]''
48148 * 1924 ''[[The Man in the Brown Suit]]''
48149 * 1924 ''[[Poirot Investigates]]'' (eleven short stories)
48150 * 1925 ''[[The Secret of Chimneys]]''
48151 * 1926 ''[[The Murder of Roger Ackroyd]]''
48152 * 1927 ''[[The Big Four (novel)|The Big Four]]''
48153 * [[1928 in literature|1928]] ''[[The Mystery of the Blue Train]]'' ISBN 0425130266
48154 * 1929 ''[[Partners in Crime (novel)|Partners in Crime]]'' (fifteen short stories)
48155 * 1929 ''[[The Seven Dials Mystery]]''
48156 * 1930 ''[[The Murder at the Vicarage]]'' (introduced [[Miss Marple|Jane Marple]])
48157 * 1930 ''[[The Mysterious Mr. Quin]]'' (introduced Mr. Harley Quin, short stories)
48158 * 1931 ''[[The Sittaford Mystery]]''
48159 * 1932 ''[[Peril at End House]]''
48160 * 1933 ''[[The Hound of Death]]'' (twelve short mysteries)
48161 * 1933 ''[[Lord Edgware Dies]]'' (also known as ''Thirteen at Dinner'')
48162 * 1933 ''[[The Thirteen Problems]]'' (Thirteen short mysteries, featuring Miss Marple)
48163 * [[1934 in literature|1934]] ''[[Murder on the Orient Express]]'' ISBN 0425200450
48164 * 1934 ''[[Parker Pyne Investigates]]'' (twelve short mysteries) (introduced [[Parker Pyne]] and [[Ariadne Oliver]])
48165 * 1934 ''[[The Listerdale mystery]]'' (twelve short mysteries)
48166 * 1935 ''[[Three Act Tragedy]]'' (also known as ''Murder in Three Acts'')
48167 * 1935 ''[[Why Didn't They Ask Evans?]]'' (also known as ''The Boomerang Clue'')
48168 * 1935 ''[[Death in the Clouds]]'' (also known as ''Death in the Air'')
48169 * 1936 ''[[The A.B.C. Murders]]'' (also known as ''The Alphabet Murders'')
48170 * 1936 ''[[Murder in Mesopotamia]]''
48171 * 1936 ''[[Cards on the Table]]''
48172 * 1937 ''[[Death on the Nile]]''
48173 * 1937 ''[[Dumb Witness]]'' (also known as ''Poirot Loses a Client'')
48174 * 1937 ''[[Murder in the Mews]]'' (Four short stories, featuring Hercule Poirot)
48175 * 1938 ''[[Appointment with Death]]''
48176 * [[1939 in literature|1939]] ''[[And Then There Were None]]'' (first published as ''Ten Little Niggers'', also known as ''Ten Little Indians'') ISBN 0312979479
48177 * [[1939 in literature|1939]] ''[[Murder is Easy]]'' (also known as ''Easy to Kill'')
48178 * [[1939 in literature|1939]] ''[[Hercule Poirot's Christmas]]'' ISBN 0425177416
48179 * [[1939 in literature|1939]] ''[[The Regatta Mystery|Regatta Mystery and Other Stories]]'' (Nine short stories)
48180 * 1940 ''[[Sad Cypress]]''
48181 * 1941 ''[[Evil Under the Sun]]''
48182 * 1941 ''[[N or M?]]''
48183 * 1941 ''[[One, Two, Buckle My Shoe]]'' (also known as ''An Overdose of Death'')
48184 * 1942 ''[[The Body in the Library]]''
48185 * 1942 ''[[Five Little Pigs]]'' (also known as ''Murder in Retrospect'')
48186 * 1942 ''[[The Moving Finger]]''
48187 * 1944 ''[[Towards Zero]]''
48188 * 1944 ''[[Sparkling Cyanide]]'' (also known as ''Remembered Death'')
48189 * 1945 ''[[Death Comes as the End]]''
48190 * 1946 ''[[The Hollow]]'' (also known as ''Murder After Hours'')
48191 * 1947 ''[[The Labours of Hercules]]'' (twelve short mysteries featuring Hercule Poirot)
48192 * 1948 ''[[Taken at the Flood]]'' (also known as ''There is a Tide'')
48193 * 1948 ''[[Witness for the Prosecution and Other Stories]]''
48194 * 1949 ''[[Crooked House]]''
48195 * 1950 ''[[A Murder is Announced]]''
48196 * 1950 ''[[Three Blind Mice and Other Stories]]''
48197 * 1951 ''[[They Came to Baghdad]]''
48198 * 1951 ''[[The Under Dog and Other Stories]]'' (Nine short stories)
48199 * 1952 ''[[Mrs McGinty's Dead]]'' (also known as ''Blood Will Tell'')
48200 * 1952 ''[[They Do It with Mirrors]]''
48201 * 1953 ''[[A Pocket Full of Rye]]''
48202 * 1953 ''[[After the Funeral]]'' (also known as ''Funerals are Fatal'')
48203 * 1955 ''[[Hickory Dickory Dock (novel)|Hickory Dickory Dock]]'' (also known as ''Hickory Dickory Death'')
48204 * 1955 ''[[Destination Unknown (novel)|Destination Unknown]]'' (also known as ''So Many Steps to Death'')
48205 * 1956 ''[[Dead Man's Folly]]''
48206 * 1957 ''[[4.50 From Paddington|4.50 from Paddington]]'' (also known as ''What Mrs. McGillycuddy Saw'')
48207 * 1957 ''[[Ordeal by Innocence]]''
48208 * 1959 ''[[Cat Among the Pigeons]]''
48209 * 1960 ''[[The Adventure of the Christmas Pudding]]'' (Six short stories)
48210 * 1961 ''[[The Pale Horse (novel)|The Pale Horse]]''
48211 * 1962 ''[[The Mirror Crack'd from Side to Side]]''
48212 * 1963 ''[[The Clocks (novel)|The Clocks]]''
48213 * 1964 ''[[A Caribbean Mystery]]''
48214 * 1965 ''[[At Bertram's Hotel]]''
48215 * 1966 ''[[Third Girl]]''
48216 * 1967 ''[[Endless Night]]''
48217 * 1968 ''[[By the Pricking of My Thumbs (novel)|By the Pricking of My Thumbs]]''
48218 * 1969 ''[[Hallowe'en Party]]''
48219 * 1970 ''[[Passenger to Frankfurt]]''
48220 * 1971 ''[[Nemesis (Christie)|Nemesis]]''
48221 * 1971 ''[[The Golden Ball and Other Stories]]'' (Fifteen short stories)
48222 * 1972 ''[[Elephants Can Remember]]''
48223 * 1973 ''[[Akhnaton (play)|Akhnaton - A play in three acts]]''
48224 * 1973 ''[[Postern of Fate]]'' (final Tommy and Tuppence, last novel Christie wrote)
48225 * 1974 ''[[Poirot's Early Cases]]'' (eighteen short mysteries)
48226 * 1975 ''[[Curtain (novel)|Curtain]]'' (Poirot's last case, written four decades earlier)
48227 * 1976 ''[[Sleeping Murder]]'' (Miss Marple's last case, written four decades earlier)
48228 * 1979 ''[[Miss Marple's Final Cases and Two Other Stories]]''
48229 * 1997 ''[[While the Light Lasts and Other Stories]]'' (also known as ''The Harlequin Tea Set and Other Stories'')
48230
48231 Co-authored works:
48232 * 1931 ''[[The Floating Admiral]]'' written together with [[G. K. Chesterton]], [[Dorothy L. Sayers]] and certain other members of the [[Detection Club]].
48233 Plays adapted into novels by Charles Osborne:
48234 * 1998 ''[[Black Coffee (book)|Black Coffee]]''
48235 * 2001 ''[[The Unexpected Guest]]''
48236 * 2003 ''[[The Spider's Web]]''
48237
48238 Works written as Mary Westmacott:
48239 * 1930 ''[[Giant's Bread]]''
48240 * 1934 ''[[Unfinished Portrait (novel)|Unfinished Portrait]]''
48241 * 1944 ''[[Absent in the Spring]]''
48242 * 1948 ''[[The Rose and the Yew Tree]]''
48243 * 1952 ''[[A Daughter's a Daughter]]''
48244 * 1956 ''[[The Burden (novel)|The Burden]]''
48245
48246 Plays:
48247 * 1928 ''[[Alibi]]''
48248 * 1930 ''[[Black Coffee (play)|Black Coffee]]''
48249 * 1936 ''[[Love from a Stranger]]''
48250 * [[1937 or 1939]] ''[[A Daughter's a Daughter]]'' (Never Performed)
48251 * 1940 ''[[Peril at End House]]''
48252 * 1943 ''[[And Then There Were None|Ten Little Indians]]''
48253 * 1945 ''[[Appointment With Death]]''
48254 * 1946 ''[[Murder on the Nile/Hiddon Horizon]]''
48255 * 1949 ''[[Murder at the Vicarage]]''
48256 * 1951 ''[[The Hollow]]''
48257 * 1952 ''[[The Mousetrap]]''
48258 * 1953 ''[[Witness for the Prosecution]]''
48259 * 1954 ''[[The Spider's Web]]''
48260 * 1956 ''[[Towards Zero]]''
48261 * 1958 ''[[Verdict]]''
48262 * 1958 ''[[The Unexpected Guest]]''
48263 * 1960 ''[[Go Back for Murder]]''
48264 * 1962 ''[[Rule of Three]]''
48265 * 1972 ''[[Fiddler's Three]]'' (Originally written as Fiddler's Five. Never Published. Final play she wrote.)
48266 * 1973 ''[[Aknaton]]'' (Written in 1937)
48267 * 1977 ''[[Murder is Announced]]''
48268 * 1981 ''[[Cards on the Table]]''
48269 * 1993 ''[[Murder is Easy]]''
48270 * 2000? ''[[And Then There Were None]]''
48271
48272 Radio Plays:
48273 * 1937 ''[[The Yellow Iris]]''
48274 * 1947 ''[[Three Blind Mice]]''
48275 * 1948 ''[[Butter In a Lordly Dish]]''
48276 * 1960 ''[[Personal Call]]''
48277
48278 Television Plays:
48279
48280 * 1937 ''[[Wasp's Nest]]''
48281
48282 ==Movie Adaptions==
48283 Agatha Christie is no stranger to the cinema. Over the last 78 years, Poirot, Miss Marple, Tommy and Tuppence, Mr. Quin, Parker Pyne, and many others have been portrayed on numerous occasions:
48284
48285 * 1928 ''[[Die Abenteuer G. m. b. H]]'' (The Secret Adversary)
48286 * 1928 ''[[The Passing of Mr. Quinn]]''
48287 * 1931 ''[[Alibi]]''
48288 * 1931 ''[[Black Coffee (film)|Black Coffee]]''
48289 * 1934 ''[[Lord Edgware Dies]]''
48290 * 1937 ''[[Love From A Stranger]]''
48291 * 1945 ''[[And Then There Were None]]''
48292 * 1947 ''[[Love From A Stranger]]''
48293 * 1957 ''[[Witness for the Prosecution]]''
48294 * 1960 ''[[The Spider's Web]]''
48295 * 1962 ''[[Murder, She Said]]'' (Based on [[4.50 From Paddington]])
48296 * 1963 ''[[Murder at the Gallop]]'' (Based on [[After The Funeral]])
48297 * 1964 ''[[Murder Most Foul]]'' (Based on [[Mrs. McGinty's Dead]])
48298 * 1964 ''[[Murder Ahoy!]]'' (An original Movie, not based on any of the books)
48299 * 1966 ''[[And Then There Were None|Ten Little Indians]]''
48300 * 1966 ''[[The Alphabet Murders]]'' (Based on The ABC Murders)
48301 * 1972 ''[[Endless Night]]''
48302 * 1974 ''[[Murder on the Orient Express]]''
48303 * 1975 ''[[And Then There Were None|Ten Little Indians]]''
48304 * 1978 ''[[Death on the Nile]]''
48305 * 1980 ''[[The Mirror Crack'd]]''
48306 * 1982 ''[[Evil Under the Sun]]''
48307 * 1984 ''[[Ordeal by Innocence]]''
48308 * 1988 ''[[Appointment with Death]]''
48309 * 1989 ''[[And Then There Were None|Ten Little Indians]]''
48310
48311 ==Television Plays==
48312 * 1938 ''[[Love from a Stranger]]''
48313 * 1947 ''[[Love from a Stranger]]''
48314 * 1949 ''[[And Then There Were None|Ten Little Indians]]''
48315 * 1959 ''[[And Then There Were None|Ten Little Indians]]''
48316 * 1970 ''[[Murder at the Vicarage]]''
48317 * 1980 ''[[Why Didn't They Ask Evans?]]''
48318 * 1982 ''[[The Spider's Web]]''
48319 * 1982 ''[[The Seven Dials Mystery]]''
48320 * 1982 ''[[The Agatha Christie Hour]]''
48321 * 1982 ''[[Murder is Easy]]''
48322 * 1982 ''[[The Witness for the Prosecution]]''
48323 * 1983 ''[[Partners in Crime]]''
48324 * 1983 ''[[A Caribbean Mystery]]''
48325 * 1983 ''[[Sparkling Cyanide]]''
48326 * 1984 ''[[The Body in the Library]]''
48327 * 1985 ''[[Murder With Mirrors]]''
48328 * 1985 ''[[The Moving Finger]]''
48329 * 1985 ''[[A Murder Is Announced]]''
48330 * 1985 ''[[A Pocket Full of Rye]]''
48331 * 1985 ''[[Thirten At Dinner]]''
48332 * 1986 ''[[Dead Man's Folly]]
48333 * 1986 ''[[Murder in Three Acts]]''
48334 * 1986 ''[[Murder at the Vicarage]]''
48335 * 1987 ''[[Sleeping Murder]]''
48336 * 1987 ''[[At Bertram's Hotel]]''
48337 * 1987 ''[[Nemesis (Christie)|Nemesis]]''
48338 * 1987 ''[[4.50 From Paddington]]''
48339 * 1989 ''[[The Man In The Brown Suit]]''
48340 * 1989 ''[[Agatha Christie's Poirot]]
48341 * 1989 ''[[A Caribbean Mystery]]''
48342 * 1990 ''[[Peril at End House]]''
48343 * 1990 ''[[The Mysterious Affair at Styles]]''
48344 * 1991 ''[[They Do It With Mirrors]]''
48345 * 1992 ''[[The Mirror Crack'd from Side to Side]]''
48346 * 1994 ''[[Hercule Poirot's Christmas]]''
48347 * 1995 ''[[Murder on the Links]]''
48348 * 1995 ''[[Hickory Dickory Dock]]''
48349 * 1996 ''[[Dumb Witness]]''
48350 * 1997 ''[[The Pale Horse]]''
48351 * 2000 ''[[The Murder of Rodger Ackroyd]]''
48352 * 2000 ''[[Lord Edgware Dies]]''
48353 * 2001 ''[[Evil Under The Sun]]''
48354 * 2001 ''[[Murder on the Orient Express]]''
48355 * 2001 ''[[Murder in Mesopotamia]]''
48356 * 2003 ''[[Sparkling Cyanide]]''
48357 * 2004 ''[[Five Little Pigs]]''
48358 * 2004 ''[[Death On The Nile]]''
48359 * 2004 ''[[Sad Cypress]]''
48360 * 2004 ''[[The Hollow]]''
48361 * 2004 ''[[Marple]]''
48362 * 2004 ''[[The Body in the Library]]''
48363 * 2004 ''[[Murder at the Vicarage]]''
48364 * 2004 ''[[Appointment with Death]]''
48365 * 2005 ''[[A Murder is Announced]]''
48366 * 2005 ''[[The Mystery of the Blue Train]]''
48367 * 2005 ''[[Cards on the Table]]''
48368 * 2005 ''[[Sleeping Murder]]''
48369 * 2005 ''[[Taken at the Flood]]''
48370 * 2006 ''[[After the Funeral]]''
48371 * 2006 ''[[The Moving Finger]]''
48372 * 2006 ''[[By the Pricking of my Thumbs]]''
48373 * 2006 ''[[The Sittaford Mystery]]''
48374 * 2007 ''[[Hercule Poirot's Christmas]]'' (A french film adaption)
48375
48376 ==Video Games==
48377 * 2005 ''[[And Then There Were None]]''
48378
48379 ==Agatha Christie in fiction==
48380 Dame Agatha appears as one of the title characters, with [[Dorothy L. Sayers]], in the fictional murder mystery ''[[Dorothy and Agatha]]'' by [[Gaylord Larsen]].
48381
48382 ''[[The Poisoned Chocolates Case]]'' by [[Anthony Berkeley]] contains characters based on Christie, Sayers, [[John Dickson Carr|Carr]], and [[Chesterton]].
48383
48384 The movie [[Agatha]]; which was released in 1979, was about a fictional solution to the real mystery of Agatha Christie's disappearance in 1926. Her chracter was played by [[Vanessa Redgrave]]. Other cast members included [[Dustin Hoffman]] and [[Timothy Dalton]].
48385
48386 ==External links==
48387 {{wikiquote}}
48388 * [http://www.agathachristie.com/ Official Agatha Christie site]
48389 * [http://www.classiccrimefiction.com/christiebib.htm Agatha Christie Bibliography ] first editions - illustrated
48390 *[http://librivox.org/the-mysterious-affair-at-styles-by-agatha-christie/ Free Audiobook] of '' The Mysterious Affair at Styles'' at [http://librivox.org/ LibriVox]
48391 * {{gutenberg author| id=Agatha+Christie | name=Agatha Christie}}
48392 * [http://samvak.tripod.com/christie.html Historical and cultural background to Christie's mystery novels]
48393
48394 [[Category:1890 births|Christie, Agatha]]
48395 [[Category:1976 deaths|Christie, Agatha]]
48396 [[Category:Natives of Devon|Christie, Agatha]]
48397 [[Category:Autodidacts|Christie, Agatha]]
48398 [[Category:British crime writers|Christie, Agatha]]
48399 [[Category:English mystery writers|Christie, Agatha]]
48400 [[Category:English dramatists and playwrights|Christie, Agatha]]
48401 [[Category:English short story writers|Christie, Agatha]]
48402 [[Category:Dames Commander of the British Empire|Christie, Agatha]]
48403 [[Category:Agatha Christie|*]]
48404
48405 [[ar:ØŖØŦاØĢا ŲƒØąŲŠØŗØĒŲŠ]]
48406 [[bg:АĐŗĐ°Ņ‚Đ° КŅ€Đ¸ŅŅ‚и]]
48407 [[cs:Agatha Christie]]
48408 [[cy:Agatha Christie]]
48409 [[da:Agatha Christie]]
48410 [[de:Agatha Christie]]
48411 [[es:Agatha Christie]]
48412 [[eo:Agatha CHRISTIE]]
48413 [[fr:Agatha Christie]]
48414 [[fy:Agatha Christie]]
48415 [[hr:Agatha Christie]]
48416 [[id:Agatha Christie]]
48417 [[it:Agatha Christie]]
48418 [[la:Agatha Christie]]
48419 [[he:אגא×Ēה כריסטי]]
48420 [[hu:Agatha Christie]]
48421 [[nl:Agatha Christie]]
48422 [[ja:ã‚ĸã‚Ŧã‚ĩãƒģクãƒĒ゚テã‚Ŗ]]
48423 [[no:Agatha Christie]]
48424 [[pl:Agatha Christie]]
48425 [[pt:Agatha Christie]]
48426 [[ru:КŅ€Đ¸ŅŅ‚и, АĐŗĐ°Ņ‚Đ°]]
48427 [[sq:Agatha Christie]]
48428 [[sk:Agatha Christie]]
48429 [[sr:АĐŗĐ°Ņ‚Đ° КŅ€Đ¸ŅŅ‚и]]
48430 [[fi:Agatha Christie]]
48431 [[sv:Agatha Christie]]
48432 [[zh:é˜ŋåŠ čŽŽÂˇå…‹é‡Œæ–¯č’‚]]</text>
48433 </revision>
48434 </page>
48435 <page>
48436 <title>Albert Camus/The Outsider</title>
48437 <id>985</id>
48438 <revision>
48439 <id>15899495</id>
48440 <timestamp>2004-04-15T23:31:30Z</timestamp>
48441 <contributor>
48442 <username>LarryGilbert</username>
48443 <id>47080</id>
48444 </contributor>
48445 <minor />
48446 <text xml:space="preserve">#REDIRECT [[The Stranger (novel)]]</text>
48447 </revision>
48448 </page>
48449 <page>
48450 <title>The Plague</title>
48451 <id>986</id>
48452 <revision>
48453 <id>41590765</id>
48454 <timestamp>2006-02-28T09:53:28Z</timestamp>
48455 <contributor>
48456 <username>That Guy, From That Show!</username>
48457 <id>419920</id>
48458 </contributor>
48459 <comment>Reverted edits by [[User:195.188.51.100|195.188.51.100]] ([[User talk:195.188.51.100|t]]) ([[Special:Contributions/195.188.51.100|c]]) to last version by That Guy, From That Show!</comment>
48460 <text xml:space="preserve">:''For other uses, see [[Plague|Plague (disambiguation)]].''
48461
48462 '''''The Plague''''' (''[[French language|fr]].'' '''''La Peste''''') is a [[novel]] by [[Albert Camus]], published in [[1947]], that tells the story of medical workers finding solidarity in their labor as the [[Algeria|Algerian]] city of [[Oran]] is swept by a [[pandemic|plague]]. It asks a number of questions relating to the nature of destiny and the human condition. The characters in the book, ranging from doctors to vacationers to fugitives, all help to show the effects the plague has on a populace.
48463
48464 {{spoiler}}
48465
48466 Generally taken as a metaphoric treatment of the [[French resistance]] to [[Nazi]] occupation during [[World War II]], ''The Plague'' is interpreted to mean much more. Camus uses extreme hardships (e.g., pain, suffering, and death) to represent our human world. The story is told through the narrative of the main character, Dr. Rieux, whose decidedly existential account of events in the story is not only helpful in exploring the philosophy of existentialism, but also in making this a metaphor of the nature of life and suffering. Although his approach in the book is severe, he emphasizes the ideas that we ultimately have no control, irrationality of life is inevitable, and he further illustrates the human reaction towards the ‘absurd’. ''The Plague'' represents how the world deals with the philosophical notion of the [[Absurdism|Absurd]], a theory which Camus himself helped to define.
48467
48468 ==Main Characters==
48469 *Dr. Bernard Rieux
48470 *Jean Tarrou -- a man vacationing in Oran
48471 *Raymond Rambert -- visiting journalist
48472 *Cottard -- a fugitive
48473 *Joseph Grand -- municipal worker who desires to be an author
48474 *Father Paneloux -- a priest
48475
48476 ==Minor Characters==
48477 *Brakeley
48478 *Castel
48479 *Mme. Rieux
48480 *M. Othon and his family
48481 *The old man (Cat-spitting guy)
48482 *Asthma patient
48483 *Gonzalas
48484 *Richard
48485 *Prefect
48486 *Marcel and Louis
48487 [[Category:Existentialism|Plague, The]]
48488 [[Category:French novels|Plague, The]]
48489 [[Category:1947 books|Plague, The]]
48490
48491 {{philos-novel-stub}}
48492
48493 [[de:Die Pest]]
48494 [[es:La peste (novela)]]
48495 [[fr:La Peste]]
48496 [[he:הדבר]]
48497 [[pl:DÅŧuma (powieść)]]
48498 [[fi:Rutto (romaani)]]
48499 [[vi:Dáģ‹ch háēĄch (truyáģ‡n)]]
48500 [[uk:ЧŅƒĐŧĐ° (Ņ€ĐžĐŧĐ°ĐŊ)]]
48501 [[zh:éŧ į–Ģ (å°č¯´)]]</text>
48502 </revision>
48503 </page>
48504 <page>
48505 <title>Applied ethics</title>
48506 <id>988</id>
48507 <revision>
48508 <id>40026706</id>
48509 <timestamp>2006-02-17T16:22:30Z</timestamp>
48510 <contributor>
48511 <username>Phil Boswell</username>
48512 <id>24373</id>
48513 </contributor>
48514 <comment>[[WP:AWB|AWB assisted]] migrate {{[[template:book reference|book reference]]}} to {{[[template:cite book|cite book]]}}</comment>
48515 <text xml:space="preserve">'''Applied ethics''' takes a theory of [[ethics]], such as [[utilitarianism]], [[social contract theory]], or [[deontology]], and applies its major principles to a particular set of circumstances and practices. Typical examples include applied fields such as [[medical ethics]], [[legal ethics]], [[environmental ethics]], [[computer ethics]], [[corporate social responsibility]], or [[business ethics]]. Many considerations of applied ethics also come into play in [[human rights]] discussions.
48516
48517 The chief difficulty with formal, applied ethics is the potential for disagreement over what constitutes the proper theory or principles to apply, which is bound to result in solutions to specific problems that are not universally acceptable to all participants. For example, a strict deontological approach would never permit us to deceive a patient about his condition, whereas a utilitarian approach would have us consider the consequences of doing so. A deontologist will often come up with a very different solution than would a utilitarian, given the same facts.
48518
48519 One modern approach attempting to address this is [[casuistry]]. Casuistry attempts to establish a plan of action to respond to particular facts - a form of [[case-based reasoning]]. By doing so in advance of actual investigation of the facts, it can reduce influence of interest groups. By focusing on action and not the rationale, it increases the possibility of agreement between prior bodies of precedent and explicit moral codes.
48520
48521 ==List of subfields of applied ethics==
48522
48523 * [[Medical ethics]] / [[bioethics]]
48524 * [[Business ethics]]
48525 * [[Environmental ethics]] (e.g. [[global warming]])
48526 * [[Human rights]] issues (e.g. [[gender ethics]] / [[sexism]], [[racism]], [[death penalty]])
48527 * [[Animal rights]] issues
48528 * [[Legal ethics]]
48529 * [[Computer ethics]]
48530 * [[Media ethics]] / [[journalism ethics]]
48531 * [[Research ethics]]
48532 * Education ethics
48533 * Sports ethics
48534 * Military ethics
48535 * International ethics (e.g. [[world hunger]])
48536
48537 ==See also==
48538 *[[Ethics]]
48539 *[[Ethical code]]s
48540 *[[List of ethics topics]]
48541
48542 ==Bibliography==
48543 &lt;!--
48544 Useful templates
48545 {{cite book | first= | last= | year= | title= | chapter= | editor= | others= | pages= | publisher= | id= | url= | authorlink= }}
48546 {{Journal reference | Author= | Title= (required) | Journal= | Year= | Volume= | Issue= | Pages= &amp;ndash; | URL= }}
48547 {{News reference |firstname= |lastname= |pages= |title= |date= |org= |url= }}
48548 --&gt;
48549 * {{cite book | first=R.F. | last=Chadwick | year=1997 | title=Encyclopedia of Applied Ethics | chapter= | editor= | others= | pages= | publisher=London: Academic Press | id=ISBN 0122270657 | url= | authorlink= }}
48550 * {{cite book | first=Peter | last=Singer | year=1993 | title=[[Practical Ethics]] | chapter= | editor= | others= | pages= | publisher=Cambridge University Press| id=ISBN 052143971X | url= | authorlink= }} (monograph)
48551
48552 ===Anthologies===
48553 * {{cite book | first=Peter | last=Singer | year=1986 | title=Applied Ethics | chapter= | editor= | others= | pages= | publisher=Oxford University Press| id=ISBN 0198750676 | url= | authorlink= }}
48554 * {{cite book | first=R.G. | last=Frey | year=2004 | title=A Companion to Applied Ethics | chapter= | editor= | others= | pages= | publisher=Blackwell | id=ISBN 1405133457 | url= | authorlink= }}
48555
48556 ===Journals===
48557
48558 * [http://www.journals.uchicago.edu/ET/home.html Ethics] (since 1890)
48559 * [http://www.kluweronline.com/issn/1382-4554/contents The Journal of Ethics]
48560 * [http://www.blackwellpublishing.com/journal.asp?ref=0264-3758 Journal of Applied Philosophy]
48561 * [http://www.pdcnet.org/ijap.html International Journal of Applied Philosophy]
48562 * [http://www.aspcp.org/ijpp/html/contents.html International Journal of Philosophical Practice]
48563
48564 ==External links==
48565
48566 * [http://www.scu.edu/ethics Markkula Center for Applied Ethics at Santa Clara University]
48567 * [http://www.ethics.ubc.ca W. Maurice Young Centre for Applied Ethics at the University of British Columbia]
48568 * [http://www.indiana.edu/~appe Association for Practical and Professional Ethics at the University of Indiana]
48569
48570 [[Category:Ethics]]
48571
48572 [[de:Praktische Ethik]]
48573 [[fr:Éthique appliquÊe]]
48574 [[sv:Tillämpad etik]]</text>
48575 </revision>
48576 </page>
48577 <page>
48578 <title>Adolf Eichmann</title>
48579 <id>989</id>
48580 <revision>
48581 <id>41893618</id>
48582 <timestamp>2006-03-02T12:32:45Z</timestamp>
48583 <contributor>
48584 <ip>129.187.244.28</ip>
48585 </contributor>
48586 <comment>/* Early life */</comment>
48587 <text xml:space="preserve">[[Image:OldEichmann.jpg|225px|thumb|Adolf Eichmann, Germany 1940
48588 Photo from [[United States Holocaust Memorial Museum]] Photo Archives.]]
48589 '''Adolf Otto Eichmann''' ([[March 19]], [[1906]] &amp;ndash; [[June 1]], [[1962]]), born '''Karl Adolf Eichmann''', was a high-ranking official in [[Nazi Germany]] and served as an ''[[ObersturmbannfÃŧhrer]]'' in the [[Schutzstaffel|S.S.]] He was largely responsible for the logistics of the extermination of millions of people during [[the Holocaust]], in particular [[Jew]]s, which was called the &quot;[[final solution]]&quot; (''EndlÃļsung''). He organized the identification and transportation of people to the various [[concentration camp]]s. Therefore, he is often referred to as the 'Chief Executioner' of the [[Third Reich]].
48590
48591 ==Early life==
48592 Born in [[Solingen]], [[Germany]], Adolf Eichmann was the son of a moderately successful businessman and industrialist. In 1914, his family moved to [[Linz]], [[Austria]], and during the [[World War I|First World War]], Eichmann's father served in the [[Austro-Hungarian Army]]. At the war's conclusion, Eichmann's father returned to the family business in Linz. In 1920, Eichmann's family moved to Germany.
48593
48594 ==Pre-Nazi years==
48595 [[Image:YoungEichmann.jpg|left|thumb|125px|Adolf Eichmann in 1932]]
48596
48597 When Eichmann came of age in 1925, he returned to Austria to study mechanical engineering. Being a poor student, however, he soon dropped out of college. Eichmann then tried to follow in his father's footsteps in business, working as a travelling salesman which brought him back to Germany in 1930.
48598
48599 Eichmann's first contact with the [[Nazi Party]] was when he joined the [[Wandervogel]] movement, which has been described as &quot;a peasant Aryan brotherhood based on Anti-Semitic ideals&quot;. There is evidence, however, that some of the ''Wandervogel'' groups had Jewish members, and anti-Semitism may have existed in only some parts of the movement. In 1932, Eichmann returned again to Austria and formally joined the Austrian Nazi Party at the age of twenty-six.
48600
48601 ==Nazi Party and the SS==
48602 [[Image:SSEichmann.jpg|thumb|125px|SS-[[ScharfÃŧhrer]] Adolf Eichmann in 1933]]
48603
48604 On the advice of old family friend [[Ernst Kaltenbrunner]], Eichmann joined the Austrian branch of the [[Schutzstaffel|SS]], enlisting on [[April 1]] [[1932]], as an ''SS-[[Anwärter]]''. He was accepted as a full SS member that November, appointed an ''SS-[[Mann (military rank)|Mann]]'', and assigned the SS number 45326.
48605
48606 For the next year, Eichmann was a member of the part time [[Allgemeine-SS]] and served in a mustering formation operating from Salzburg.
48607
48608 In 1933 when the Nazis came to power in Germany, Eichmann returned to that country and submitted an application to join the full time SS. This was accepted, and in November of 1933, Eichmann was promoted to ''[[ScharfÃŧhrer]]'' and assigned to the administrative staff of the [[Dachau concentration camp]].
48609
48610 By 1934, Eichmann had chosen to make the SS a career and requested transfer into the ''[[Sicherheitspolizei]]'' (Security Police) which had, by that time, become a very powerful and feared organization. Eichmann's transfer was granted in November of 1934, as he was promoted to the rank of ''[[OberscharfÃŧhrer]]'' and assigned to the headquarters of the [[Sicherheitsdienst]] (SD) in Berlin. Eichmann became a model administrator in the SD and quickly became noticed by his superiors. He was promoted to ''[[HauptscharfÃŧhrer]]'' in 1935 and, in 1937, commissioned as an ''SS-[[UntersturmfÃŧhrer]]''.
48611
48612 In 1937 Eichmann was sent to [[British mandate of Palestine|Palestine]] with his superior [[Herbert Hagen]] to assess the possibilities of massive Jewish emigration from Germany to Palestine. They landed in [[Haifa]] but could only obtain a transit visa so they went on to [[Cairo]]. In Cairo they met [[Feival Polkes]], an agent of the [[Haganah]], who discussed with them the plans of the Zionists and tried to enlist their assistance in facilitating Jewish emigration from Europe. According to an answer Eichmann gave at his trial, he had also planned to meet Arab leaders in Palestine; this never happened because entry to Palestine was refused by the British authorities. Afterwards Eichmann and Hagen wrote a report recommending against large-scale emigration to Palestine for economic reasons and because it contradicted the German policy of preventing the establishment of a Jewish state there. This episode is sometimes seen as an important step towards the Nazi abandonment of emigration as the preferred &quot;solution to the Jewish problem&quot;.
48613
48614 In 1938, Eichmann was assigned to Austria to help organize SS Security Forces in Vienna after the [[Anschluss]] of Austria into Germany. Through this effort, Eichmann was promoted to ''SS-[[ObersturmfÃŧhrer]]'', and by the end of 1938, Adolf Eichmann had been selected by the SS leadership to form the [[Central Office for Jewish Emigration]], which was in charge of forcibly deporting and expelling Jews from Austria. Through this work, Eichmann became a student of Judaism, finding the religion fascinating while also developing deep [[Anti-Semitic]] values and a hatred of the Jewish faith.
48615
48616 ==World War II==
48617 [[Image:Eichmann1942.jpg|right|thumb|145px|Adolf Eichmann in 1942]]
48618
48619 At the start of the [[World War II|Second World War]], Eichmann had been promoted to ''SS-[[HauptsturmfÃŧhrer]]'' and had made a name for himself with his Office for Jewish Emigration. Through this work Eichmann made several contacts in the [[Zionist]] movement which he worked with to speed up Jewish Emigration from the Reich.
48620
48621 Eichmann returned to Berlin in 1939 after the formation of the Reich Central Security Office ([[RSHA]]). In December 1939, he was assigned to head ''RSHA Referat IV D4'', the RSHA department that dealt with Jewish affairs and evacuation. In August 1940, he released his ''[[Madagascar Plan|Reichssicherheitshauptamt: Madagaskar Projekt]]'' (Reich Central Security Office: Madagascar Project), a plan for forced Jewish deportation that never materialized. He was promoted to the rank of ''SS-[[SturmbannfÃŧhrer]]'' in late [[1940]], and less than a year later to ''[[ObersturmbannfÃŧhrer]]''.
48622
48623 In 1942, [[Reinhard Heydrich]] invited Eichmann to attend the [[Wannsee Conference]] where Germany's anti-Jewish measures were set down into an official policy of [[genocide]]. To this &quot;Final Solution of the Jewish Question&quot; Eichmann was tasked as &quot;Transportation Administrator&quot;, which put him in charge of all the trains which would carry Jews to the Death Camps in [[Poland]]. For the next two years, Eichmann performed his duties with incredible zeal, often bragging that he had personally sent over five million Jews to their deaths by way of his trains.
48624
48625 Eichmann's work had been noticed, and in [[1944]], he was sent to [[Hungary]] after Germany had occupied that country in fear of a [[Soviet Union|Soviet]] invasion. Eichmann at once went to work deporting Jews and was able to send four hundred thousand Hungarians to their deaths in the Nazi gas chambers.
48626
48627 By [[1945]], Eichmann's world was collapsing, as Reich Leader [[Heinrich Himmler]] had ordered that Jewish extermination be halted and evidence of the Final Solution be destroyed. Eichmann blatantly turned against Himmler and continued his work in Hungary against official orders. Eichmann was also working to avoid being called up in the last ditch German military effort, since a year before he had been commissioned as a Reserve ''UntersturmfÃŧhrer'' in the [[Waffen-SS]] and was now being ordered to active combat duty.
48628
48629 Eichmann fled Hungary in 1945 as the Russians invaded, and he returned to Austria where he met up with his old friend [[Ernst Kaltenbrunner]]. Kaltenbrunner, however, refused to associate with Eichmann since Eichmann's duties as an extermination administrator had left him a marked man by the Allies.
48630
48631 ==Post World War II==
48632 At the end of World War II, Eichmann was captured by the US Army, who did not know that this man who presented himself as &quot;Otto Eckmann&quot; was in fact a much bigger fish. Early in 1946, he escaped from US custody and hid in various parts of Germany for a few years. In 1948 he obtained a landing permit for [[Argentina]], but did not seek to use it immediately. At the beginning of 1950, Eichmann went to [[Italy]], where he posed as a refugee named Ricardo Klement. With the help of a Franciscan monk who had connections with archbishop [[Alois Hudal]], Eichmann obtained an [[International Committee of the Red Cross]] humanitarian passport and an [[Argentina|Argentinian]] visa. He arrived by ship in Argentina on [[July 14]], [[1950]]. For the next ten years, he worked in several odd jobs in the [[Buenos Aires]] area (from factory foreman, to junior water engineer and professional rabbit farmer). Eichmann also brought his family to Argentina. Argentina at the time was a haven for many Nazis.
48633
48634 ==Capture==
48635 [[Image:Adold Eichmann.jpg|thumb|125px|left|Adolf Eichmann during his 1961 trial in Jerusalem.]]
48636 Throughout the 1950s many Jews and other victims of the Holocaust dedicated themselves to finding Eichmann and other Nazi [[war crimes|war criminals]]. Among them was [[Nazi hunter]] [[Simon Wiesenthal]]. In 1954, Wiesenthal's suspicions that Eichmann was in Argentina were sparked upon receiving a postcard from an associate who had moved to [[Buenos Aires]]. &quot;I saw that dirty pig Eichmann,&quot; the letter read in part, &quot;He lives near Buenos Aires and works for a water company&quot;. With this (and other) information collected by Wiesenthal, the [[Israel]]is had solid leads regarding Eichmann's whereabouts. [[Isser Harel]], the then-head of [[Mossad]] (Israeli intelligence agency), later claimed in an unpublished manuscript that Wiesenthal &quot;'had no role whatsoever' in Eichmann's apprehension but in fact had endangered the entire Eichmann operation and aborted the planned capture of Auschwitz doctor [[Josef Mengele]].&quot; (Schachter, Jonathan &quot;Isser Harel Takes On Nazi-Hunter. Wiesenthal 'Had No Role' In Eichmann Kidnapping.&quot; The Jerusalem Post [[7 May]] [[1991]])
48637
48638 Also instrumental in exposing Eichmann's identity was [[Lothar Hermann]], a worker of Jewish descent who fled to Argentina from Germany following his incarceration in the [[Dachau concentration camp]], where Eichmann had served as an administrator. By the 1950s, Hermann had settled into life in Buenos Aires with his family; daughter Sylvia became acquainted with the Eichmann family and romantically involved with Klaus, the oldest Eichmann son. Due to Klaus's boastful remarks about his father's life as a Nazi and direct responsibility for the [[Holocaust]], Hermann knew he had struck gold in 1957 after reading a newspaper report about German war criminals - of which Eichmann was one. Soon after, he sent Sylvia to the Eichmanns' home on a fact-finding mission. She was met at the door by Eichmann himself, and after unsuccessfully asking for Klaus, she inquired as to whether she was speaking to his father. Eichmann confirmed this fact. Excited, Hermann soon began a correspondence with [[Fritz Bauer]], chief [[prosecutor]] for the [[West Germany|West German]] state of [[Hesse]], and provided details about Eichmann's person and life. Bauer knew that Germany, served by former employees of the Nazi regime, would do little to serve justice to Eichmann. He contacted Israeli officials, who worked closely with Hermann over the next several years to learn about Eichmann and to formulate a plan to capture him.
48639
48640 In 1960, the [[Mossad]] discovered that Eichmann was in [[Argentina]] and began an effort to locate his exact whereabouts when, through relentless surveillance, it was confirmed that Ricardo Klement was, in fact, Adolf Eichmann. The Israeli government then approved an operation to capture Eichmann and bring him to [[Jerusalem]] for trial as a war criminal. He was captured by a team of Mossad agents on [[May 11]], [[1960]], as part of a [[covert operation]]. He was flown aboard an [[El Al]] airliner from Argentina to [[Israel]] on [[May 21]], [[1960]].
48641
48642 For some time the Israeli government denied involvement in Eichmann's capture, claiming that he had been taken by Jewish volunteers. Eventually, however, the pretense was dropped, and then prime minister [[David Ben Gurion]] announced Eichmann's capture to the [[Knesset]] (Israel's national legislature) on [[May 23]] [[1960]], receiving a standing ovation in return. [[Isser Harel]], head of the Mossad at the time of the operation, wrote a book about Eichmann's capture entitled ''The House on Garibaldi Street''; some years later a member of the capture team, [[Peter Malkin]], authored ''Eichmann in my Hands'', a book that contains fascinating insights into Eichmann's character and motivations, but whose veracity has been attacked.
48643
48644 ==Trial==
48645 [[Image:Eichmann_trial_1961_in_glass_box.jpg|right|thumb|Eichmann and a bulletproof glass booth during the open trial.]]
48646
48647 Eichmann's trial in front of an Israeli court in [[Jerusalem]] started on [[April 11]], [[1961]]. He was indicted on 15 criminal charges, including charges of [[crimes against humanity]], crimes against the Jewish people and membership of an outlawed organization. As in Israeli criminal procedure, his trial was presided over by three judges. [[Gideon Hausner]], the Israeli attorney general, personally acted as chief prosecutor.
48648
48649 The trial caused huge international controversy as well as an international sensation. The Israeli government allowed news programs all over the world to broadcast the trial live with few restrictions. [[Television]] viewers saw a nondescript man sitting in a [[bulletproof glass]] booth while witnesses, including many [[the Holocaust|Holocaust]] survivors, testified against him and his role in transporting victims to the extermination camps. During the whole trial, Eichmann insisted that he was only &quot;following orders&quot; - the same defense used by the Nazi war criminals during the 1945-1946 [[Nuremberg Trials]]. He explicitly declared that he had abdicated his [[consciousness]] in order to follow the ''[[FÃŧhrerprinzip]]''. This defense in turn promoted the [[Milgram experiment]].
48650
48651 After 14 weeks of testimony with more than 1,500 documents, 100 prosecution witnesses (90 of whom were Nazi concentration camp survivors) and dozens of defense depositions delivered by diplomatic couriers from 16 different countries, the Eichmann trial ended on [[August 14]], [[1961]] where the judges were then left to deliberate. On [[December 11]] the three judges announced their verdict where Eichmann was convicted on all counts. He was then sentenced to death on [[December 15]], [[1961]]. Eichmann appealed the verdict, mostly relying on legal arguments about Israel's jurisdiction and the legality of the laws under which he was charged. He also claimed that he was protected by the principle of &quot;Acts of State&quot; and repeated his &quot;superior orders&quot; defence. On [[May 29]], [[1962]] Israel's Supreme Court, sitting as a Court of Criminal Appeal, rejected the appeal and upheld the District Court's judgment on all counts. On [[May 31]], Israeli president [[Itzhak Ben-Zvi]] turned down Eichmann's petition for mercy. Eichmann was [[hanging|hanged]] a few minutes after midnight on [[ June 1]], [[1962]], at [[Ramla]] prison, officially the only civil [[execution (legal)|execution]] ever carried out in [[Israel]]. Eichmann allegedly refused a last meal, preferring instead a bottle of [[Carmel]], a dry red Israeli wine of which he consumed about half of the bottle. He also refused to don the traditional black hood for his execution.
48652
48653 His last words were, reportedly, &quot;Long live Germany. Long live Austria. Long live Argentina. These are the countries with which I have been most closely associated and I shall not forget them. I had to obey the rules of war and my flag. I am ready.&quot;{{fact}}
48654
48655 His body was cremated and ashes scattered at sea the very next morning, so that no nation would serve as Adolf Eichmann's final resting place.
48656
48657 ==Eichmann analysis==
48658 In the 40 years since Eichmann's death, historians have speculated on certain facts regarding his life. The most important question is how responsible Eichmann was for the implementation of [[the Holocaust]]. Most agree that Eichmann knew exactly what he was doing; however, some &quot;Eichmann Defenders&quot; (his son included) state that he was unfairly judged and that he was only doing his duty as a German soldier.
48659
48660 A third - and highly controversial - analysis came from political theorist [[Hannah Arendt]], a Jew who fled Germany before Hitler's rise, and who reported on Eichmann's trial for ''[[The New Yorker]]'' magazine. In ''[[Eichmann in Jerusalem]]'', a book formed by this reporting, Arendt concluded that, aside from a desire for improving his career, Eichmann showed no trace of [[anti-Semitism]] or [[psychological]] damage. She called him the embodiment of the &quot;banality of [[evil]],&quot; as he appeared at his trial to have an ordinary and common personality, displaying neither guilt nor hatred. She suggested that this most strikingly discredits the idea that the Nazi criminals were manifestly [[psychopath]]ic and different from ordinary people. (Many concluded from this and similar observations that even the most ordinary of people can commit horrendous crimes if placed in the right situation, and given the correct incentives, but Arendt disagreed with this interpretation.)
48661
48662 Eichmann's involvement with the SS Underground Group [[ODESSA]] is also a mystery, as there is evidence that Eichmann had contact with the group but did not actively participate in ODESSA activities. Rumours also abound as to whether or not Eichmann personally knew [[Josef Mengele]] and whether or not the two [[war crimes|war criminals]] ever worked together in South America. Mossad was convinced that Eichmann was a contact for Mengele and had planned to conduct a dual-capture operation in 1961 had Eichmann revealed Mengele's whereabouts.
48663
48664 A footnote to Eichmann's SS career focuses on the point as to why he was never promoted to the rank of full SS-Colonel, known as ''[[StandartenfÃŧhrer]]''. With Eichmann's record and responsibilities, he would have been a prime candidate for advancement, yet after 1941, his SS record contains no evidence that he was ever even recommended for another promotion. Many have speculated that [[Ernst Kaltenbrunner]] may have seen Eichmann as a dangerous man, rising through the SS ranks, and had curbed his SS career to prevent Eichmann from becoming too powerful.
48665
48666 {{multi-video start}}
48667 {{multi-video item|filename=Eichmann trial news story.ogg|title= &quot;Guilty! Eichmann to Hang&quot;|description= U.S. news story on the Eichmann trial, from National Archives|format=[[Theora]]}}
48668 {{multi-video end}}
48669
48670 ==Books==
48671 * [[Hannah Arendt]], ''[[Eichmann in Jerusalem]]: A Report on the Banality of Evil'' (1963)
48672 * [[David Cesarani]], ''Eichmann: His Life and Times'' (2004)
48673 * [[Harry Mulisch]], ''Case 40/61; report on the Eichmann trial'' (1963)
48674 * Moshe Pearlman: ''The Capture of Adolf Eichmann'', 1961. (cited in Hannah Arendt: ''Eichmann in Jerusalem'', Penguin, 1994, p.235)
48675 * Pierre de Villemarest, ''Untouchable—Who protected [[Martin Bormann|Bormann]] &amp; [[Heinrich MÃŧller|Gestapo MÃŧller]] after 1945...,'' Aquilion, 2005, ISBN 1904997023 (Gestapo MÃŧller was one of the chiefs of Adolf Eichmann)
48676
48677 ==External links==
48678 * [http://www.bbc.co.uk/history/war/wwtwo/eichmann_01.shtml BBC: ''Adolf Eichmann: The Mind of a War Criminal'']
48679 * [http://www.jewishvirtuallibrary.org/jsource/Holocaust/eichcap.html ''The Capture of Adolf Eichmann''] from the [[Jewish Virtual Library]]
48680 * [http://www.gwu.edu/~nsarchiv/NSAEBB/NSAEBB150/index.htm Declassified CIA names file on Adolf Eichmann] - Provided by the ''[[National Security Archive]]''
48681 * [http://www.nizkor.org/hweb/people/e/eichmann-adolf/transcripts/ Eichmann trial: The complete transcripts] - Provided by the ''[[Nizkor Project]]''
48682
48683 &lt;!--Interlanguage links--&gt;
48684
48685
48686 [[Category:1906 births|Eichmann, Adolf]]
48687 [[Category:1962 deaths|Eichmann, Adolf]]
48688 [[Category:Natives of North Rhine-Westphalia|Eichmann, Adolf]]
48689 [[Category:War criminals|Eichmann, Adolf]]
48690 [[Category:Executed Nazi leaders|Eichmann, Adolf]]
48691 [[Category:Holocaust|Eichmann, Adolf]]
48692 [[Category:Lieutenant colonels|Eichmann, Adolf]]
48693 [[Category:SS Officers|Eichmann, Adolf]]
48694 [[Category:Nazi leaders|Eichmann, Adolf]]
48695
48696 [[ar:ØŖدŲˆŲ„Ų ØŖŲŠØŽŲ…اŲ†]]
48697 [[bg:АдОĐģŅ„ АКŅ…ĐŧĐ°ĐŊ]]
48698 [[da:Adolf Eichmann]]
48699 [[de:Adolf Eichmann]]
48700 [[eo:Adolf EICHMANN]]
48701 [[es:Adolf Eichmann]]
48702 [[fi:Adolf Eichmann]]
48703 [[fr:Adolf Eichmann]]
48704 [[he:אדול×Ŗ אייכמן]]
48705 [[hr:Adolf Eichmann]]
48706 [[hu:Adolf Eichmann]]
48707 [[it:Adolf Eichmann]]
48708 [[ja:ã‚ĸドãƒĢフãƒģã‚ĸイヒマãƒŗ]]
48709 [[ka:აიხმანი, ადოლფ]]
48710 [[ko:ė•„돌프 ė•„ė´ížˆë§Œ]]
48711 [[nl:Adolf Eichmann]]
48712 [[no:Adolf Eichmann]]
48713 [[pl:Adolf Eichmann]]
48714 [[pt:Adolf Eichmann]]
48715 [[ru:Đ­ĐšŅ…ĐŧĐ°ĐŊ, АдОĐģŅŒŅ„]]
48716 [[sk:Adolf Eichmann]]
48717 [[sr:АдОĐģŅ„ АŅ˜Ņ…ĐŧĐ°ĐŊ]]
48718 [[sv:Adolf Eichmann]]
48719 [[zh:é˜ŋ道å¤ĢÂˇč‰žå¸Œæ›ŧ]]</text>
48720 </revision>
48721 </page>
48722 <page>
48723 <title>Absolute value</title>
48724 <id>991</id>
48725 <revision>
48726 <id>41279961</id>
48727 <timestamp>2006-02-26T06:34:28Z</timestamp>
48728 <contributor>
48729 <username>Kieff</username>
48730 <id>56905</id>
48731 </contributor>
48732 <minor />
48733 <comment>/* Notes */</comment>
48734 <text xml:space="preserve">In [[mathematics]], the '''absolute value''' (or '''modulus'''&lt;sup id=&quot;ref_Argand&quot;&gt;&lt;small&gt;[[#endnote_Argand|1]]&lt;/small&gt;&lt;/sup&gt;) of a [[real number]] is its numerical value without regard to its [[sign]]. So, for example, 3 is the absolute value of both 3 and &amp;minus;3. In computers, the [[mathematical function]] used to perform this calculation is usually given the name '''abs()'''.
48735
48736 Generalizations of the absolute value for real numbers occur in a wide variety of mathematical settings. For example an absolute value is also defined for the [[complex number]]s, the [[quaternion]]s, [[ordered ring]]s, [[Field (mathematics)|field]]s and [[vector space]]s.
48737
48738 The absolute value is closely related to the notions of [[magnitude (mathematics)|magnitude]], [[distance]], and [[norm (mathematics)|norm]] in various mathematical and physical contexts.
48739
48740 [[Image:Absolute value.png|frame|The graph of the absolute value function for real numbers.]]
48741
48742 ==Real numbers==
48743
48744 For any [[real number]] &lt;math&gt;a,&lt;/math&gt; the '''absolute value''' or '''modulus''' of &lt;math&gt;a,&lt;/math&gt; is denoted &lt;sup id=&quot;ref_Wolfram&quot;&gt;&lt;small&gt;[[#endnote_Wolfram|2]]&lt;/small&gt;&lt;/sup&gt; &lt;math&gt;|a|,&lt;/math&gt; and is defined as
48745
48746 :&lt;math&gt;|a| := \begin{cases} a, &amp; \mbox{if } a \ge 0 \\ -a, &amp; \mbox{if } a &lt; 0. \end{cases} &lt;/math&gt;
48747
48748 As can be seen from the above definition, the absolute value of &lt;math&gt;a&lt;/math&gt; is always either [[positive number|positive]] or [[0 (number)|zero]], never [[negative and non-negative numbers|negative]].
48749
48750 From a geometric point of view, the absolute value of a real number is the [[distance]] along the [[real number line]] of that number from zero, and more generally the absolute value of the difference of two real numbers is the distance between them. Indeed the notion of an abstract [[distance function]] in mathematics can be seen to be a generalization of the properties of the absolute value (see [[#Distance|&quot;Distance&quot;]] below).
48751
48752 The following proposition, gives an [[identity (mathematics)|identity]] which is sometimes used as an alternative (and equivalent) definition of the absolute value:
48753
48754 '''PROPOSITION 1''':
48755 :&lt;math&gt;|a| = \sqrt{a^2}&lt;/math&gt;
48756
48757 The absolute value has the following four fundamental properties:
48758
48759 '''PROPOSITION 2''':
48760 :{| cellpadding=10
48761 |-
48762 |&lt;math&gt;|a| \ge 0 &lt;/math&gt;
48763 |Non-negativity
48764 |-
48765 |&lt;math&gt;|a| = 0 \iff a = 0 &lt;/math&gt;
48766 |Positive-definiteness
48767 |-
48768 |&lt;math&gt;|ab| = |a||b|\,&lt;/math&gt;
48769 |[[Multiplicativeness]]
48770 |-
48771 |&lt;math&gt;|a+b| \le |a| + |b| &lt;/math&gt;
48772 |[[Subadditivity]]
48773 |}
48774
48775 Other important properties of the absolute value include:
48776
48777 '''PROPOSITION 3''':
48778 :{| cellpadding=10
48779 |-
48780 |&lt;math&gt;|-a| = |a|\,&lt;/math&gt;
48781 |[[Symmetry]]
48782 |-
48783 |&lt;math&gt;|a - b| = 0 \iff a = b &lt;/math&gt;
48784 |Identity of indiscernibles (equivalent to positive-definiteness)
48785 |-
48786 |&lt;math&gt;|a - b| \le |a - c| +|c - b| &lt;/math&gt;
48787 |[[Triangle inequality]] (equivalent to subadditivity)
48788 |-
48789 |&lt;math&gt;|a/b| = |a| / |b| \mbox{ (if } b \ne 0) \,&lt;/math&gt;
48790 |Preservation of division (equivalent to multiplicativeness)
48791 |-
48792 |&lt;math&gt;|a-b| \ge |a| - |b| &lt;/math&gt;
48793 |(equivalent to subadditivity)
48794 |}
48795
48796 Two other useful inequalities are:
48797 :&lt;math&gt;|a| \le b \iff -b \le a \le b &lt;/math&gt;
48798 :&lt;math&gt;|a| \ge b \iff a \le -b \mbox{ or } b \le a &lt;/math&gt;
48799
48800 The above are often used in solving inequalities; for example:
48801
48802 :{|
48803 |-
48804 |&lt;math&gt;|x-3| \le 9 &lt;/math&gt;
48805 |&lt;math&gt;\iff -9 \le x-3 \le 9 &lt;/math&gt;
48806 |-
48807 |
48808 |&lt;math&gt;\iff -6 \le x \le 12 &lt;/math&gt;
48809 |}
48810
48811 == Complex numbers ==
48812 &lt;div style=&quot;float:right; margin-left:3px; margin-right:3px&quot; title=&quot;Graphic Representation&quot;&gt;
48813 [[image:complex.png]]
48814 &lt;/div&gt;
48815
48816 Since the [[complex number]]s are not [[ordered set|ordered]], the definition given above for the real absolute value cannot be directly generalized for a complex number. However the identity given in Proposition 1:
48817 :&lt;math&gt;|a| = \sqrt{a^2}&lt;/math&gt;
48818 can be seen as motivating the following definition.
48819
48820 For any [[complex number]]
48821
48822 :&lt;math&gt;z = x + iy\,&lt;/math&gt;
48823
48824 the '''absolute value''' or '''modulus''' of &lt;math&gt;z&lt;/math&gt; is denoted &lt;math&gt;|z|,&lt;/math&gt; and is defined as
48825
48826 :&lt;math&gt;|z| := \sqrt{x^2 + y^2}.&lt;/math&gt;
48827
48828 It follows that the absolute value of a real number ''x'' is equal to its absolute value considered as a complex number since:
48829
48830 :&lt;math&gt; |x + i0| = \sqrt{x^2 + 0^2} = \sqrt{x^2} = |x|.&lt;/math&gt;
48831
48832 Similar to the geometric interpretation of the absolute value for real numbers, it follows from the [[Pythagorean theorem]] that the absolute value of a complex number is the distance in the [[complex plane]] of that complex number from the [[origin (mathematics)|origin]], and more generally, that the absolute value of the difference of two complex numbers is equal to the distance between those two complex numbers.
48833
48834 The complex absolute value shares all the properties of the real absolute value given in Propositions 2 and 3 above. In addition, If
48835
48836 :&lt;math&gt; z = x + \mathrm{i}y = r (\cos \phi + \mathrm{i}\sin \phi ) \,&lt;/math&gt;
48837
48838 and
48839
48840 :&lt;math&gt;\bar{z} = x - iy&lt;/math&gt;
48841
48842 is the [[complex conjugate]] of &lt;math&gt;z&lt;/math&gt;, then it is easily seen that
48843
48844 :&lt;math&gt;|z| = r\,&lt;/math&gt;
48845
48846 :&lt;math&gt;|z|=|\bar{z}|&lt;/math&gt;
48847
48848 :&lt;math&gt;|z| = \sqrt{z\bar{z}}&lt;/math&gt;
48849
48850 == Absolute value functions==
48851 The real absolute value function is [[continuous function|continuous]] everywhere. It is [[derivative|differentiable]] everywhere except for ''x'' = 0. It is [[monotonic function|monotonically decreasing]] on the interval &lt;nowiki&gt;(-&amp;infin;, 0]&lt;/nowiki&gt; and [[monotonic function|monotonically increasing]] on the interval &lt;nowiki&gt;[0, &amp;infin;)&lt;/nowiki&gt;. Since a real number and its negative have the same absolute value, it is an [[even function]], and is hence not [[invertible]].
48852
48853 The [[complex number|complex]] absolute value function is continuous everywhere but differentiable ''nowhere'' (One way to see this is to show that it does not obey the [[Cauchy-Riemann equations]]).
48854
48855 Both the real and complex functions are [[idempotent]].
48856
48857 ==Ordered rings==
48858 The definition of absolute value given for real numbers above can easily be extended to any [[ordered ring]]. That is, if &lt;math&gt;a&lt;/math&gt; is an element of an ordered ring &lt;math&gt;R&lt;/math&gt;, then the '''absolute value''' of &lt;math&gt;a&lt;/math&gt;, denoted by &lt;math&gt;|a| &lt;/math&gt;, is defined to be:
48859
48860 :&lt;math&gt;|a| := \begin{cases} a, &amp; \mbox{if } a \ge 0 \\ -a, &amp; \mbox{if } a &lt; 0, \end{cases} &lt;/math&gt;
48861
48862 where &lt;math&gt;-a&lt;/math&gt; is the [[additive inverse]] of &lt;math&gt;a&lt;/math&gt;, and &lt;math&gt;0&lt;/math&gt; is the additive [[identity element]].
48863
48864 == Distance==
48865 The absolute value is closely related to the idea of distance. As noted above, the absolute value of a real or complex number is the [[distance]] from that number to the origin, along the real number line, for real numbers, or in the complex plane, for complex numbers, and more generally, the absolute value of the difference of two real or complex numbers is the distance between them.
48866
48867 The standard [[Euclidean distance]] between two points
48868
48869 :&lt;math&gt;a = (a_1, a_2, \cdots , a_n) &lt;/math&gt;
48870
48871 and
48872
48873 :&lt;math&gt;b = (b_1, b_2, \cdots , b_n) &lt;/math&gt;
48874
48875 in [[Euclidean space|Euclidean ''n''-space]] is defined as:
48876 :&lt;math&gt;\sqrt{(a_1-b_1)^2 + (a_2-b_2)^2 + \cdots + (a_n-b_n)^2}. &lt;/math&gt;
48877
48878 This can be seen to be a generalization of &lt;math&gt;|a - b|,&lt;/math&gt; since if &lt;math&gt;a,&lt;/math&gt; &lt;math&gt;b &lt;/math&gt; are real, then by Proposition 1,
48879 :&lt;math&gt;|a - b| = \sqrt{(a - b)^2}&lt;/math&gt;
48880
48881 while if
48882
48883 :&lt;math&gt; a = a_1 + i a_2 \,&lt;/math&gt;
48884
48885 and
48886
48887 :&lt;math&gt; b = b_1 + i b_2 \,&lt;/math&gt;
48888
48889 are complex numbers, then
48890
48891 :{| cellpadding=10
48892 |-
48893 |&lt;math&gt;|a - b| \,&lt;/math&gt;
48894 |&lt;math&gt; = |(a_1 + i a_2) - (b_1 + i b_2)|\,&lt;/math&gt;
48895 |-
48896 |
48897 |&lt;math&gt; = |(a_1 - b_1) + i(a_2 - b_2)|\,&lt;/math&gt;
48898 |-
48899 |
48900 |&lt;math&gt; = \sqrt{(a_1 - b_1)^2 + (a_2 - b_2)^2}&lt;/math&gt;
48901 |}
48902
48903 The above shows that the &quot;absolute value&quot; distance for the real numbers or the complex numbers, agrees with the standard Euclidean distance they inherit as a result of considering them as the one and two-dimensional Euclidean spaces respectively.
48904
48905 The properties of the absolute value of the difference of two real or complex numbers: non-negativity, identity of indiscernibles, symmetry and the triangle inequality given in Propositions 2 and 3 above, can be seen to motivate the more general notion of a [[distance function]] as follows:
48906
48907 A real valued function &lt;math&gt;d&lt;/math&gt; on a set &lt;math&gt;X \times X&lt;/math&gt; is called a '''distance function''' (or a '''metric''') for &lt;math&gt;X&lt;/math&gt;, if it satisfies the following four axioms:
48908
48909 :{| cellpadding=10
48910 |-
48911 |&lt;math&gt;d(a, b) \ge 0 &lt;/math&gt;
48912 |Non-negativity
48913 |-
48914 |&lt;math&gt;d(a, b) = 0 \iff a = b &lt;/math&gt;
48915 |Identity of indiscernibles
48916 |-
48917 |&lt;math&gt;d(a, b) = d(b, a) \,&lt;/math&gt;
48918 |Symmetry
48919 |-
48920 |&lt;math&gt;d(a+b) \le d(a, c) + d(c, b) &lt;/math&gt;
48921 |Triangle inequality
48922 |}
48923
48924 ==Fields==
48925 The fundamental properties of the absolute value for real numbers given in Proposition 2 above, can be used to generalize the notion of absolute value to an arbitrary field, as follows.
48926
48927 A real-valued function &lt;math&gt;v&lt;/math&gt; on a [[field (mathematics)|field]] &lt;math&gt;F&lt;/math&gt; is called an '''absolute value''' (also a ''modulus'', ''magnitude'', ''value'', or ''valuation'') if it satisfies the following four axioms:
48928
48929 :{| cellpadding=10
48930 |-
48931 |&lt;math&gt;v(a) \ge 0 &lt;/math&gt;
48932 |Non-negativity
48933 |-
48934 |&lt;math&gt;v(a) = 0 \iff a = 0 &lt;/math&gt;
48935 |Positive-definiteness
48936 |-
48937 |&lt;math&gt;v(ab) = v(a) v(b) \,&lt;/math&gt;
48938 |Multiplicativeness
48939 |-
48940 |&lt;math&gt;v(a+b) \le v(a) + v(b) &lt;/math&gt;
48941 |Subadditivity or the triangle inequality
48942 |}
48943
48944 It follows from the above that &lt;math&gt;v(1) = 1&lt;/math&gt;, where &lt;math&gt;1&lt;/math&gt; denotes the multiplicative [[identity element]] of &lt;math&gt;F&lt;/math&gt;. The real and complex absolute values defined above are examples of absolute values for an arbitrary field.
48945
48946 If &lt;math&gt;v&lt;/math&gt; is an absolute value on &lt;math&gt;F&lt;/math&gt;, then the function &lt;math&gt;d&lt;/math&gt; on &lt;math&gt;F \times F&lt;/math&gt;, defined by &lt;math&gt;d(a, b) = v(a - b) &lt;/math&gt;, is a metric, and if &lt;math&gt; e &lt;/math&gt; is the multiplicative identity in &lt;math&gt;F&lt;/math&gt;, then the following are equivalent:
48947
48948 * &lt;math&gt;d&lt;/math&gt; satisfies the [[ultrametric]] inequality &lt;math&gt; d(x, y) \le \mathrm{max}\{d(x, z), d(y, z)\}. &lt;/math&gt;
48949
48950 * &lt;math&gt; \big\{ v\Big(\sum_{k=1}^n e\Big) : n \in \mathbb{N} \big\} &lt;/math&gt; is [[bounded set|bounded]] in '''R'''.
48951
48952 * &lt;math&gt; v\Big(\sum_{k=1}^n e\Big) \le 1&lt;/math&gt; for every &lt;math&gt; n \in \mathbb{N}.&lt;/math&gt;
48953
48954 * &lt;math&gt; v(a + b) \le \mathrm{max}\{v(a), v(b)\} &lt;/math&gt; for all &lt;math&gt; a, b \in F.&lt;/math&gt;
48955
48956 An absolute value which satisfies any (hence all) of the above conditions is said to be '''non-Archimedean''', otherwise it is said to be [[Archimedean field|Archimedean]].&lt;sup id=&quot;ref_Schechter&quot;&gt;&lt;small&gt;[[#endnote_Schechter|3]]&lt;/small&gt;&lt;/sup&gt;
48957
48958 == Vector spaces ==
48959
48960 Again the fundamental properties of the absolute value for real numbers, can be used, with a slight modification, to generalize the notion to an arbitrary vector space.
48961
48962 A real valued function ||&amp;middot;|| on a [[vector space]] &lt;math&gt;V&lt;/math&gt; a over a field &lt;math&gt;F&lt;/math&gt;, is called an '''absolute value''' (or more usually a '''[[norm (mathematics)|norm]]''') if it satisfies the following axioms:
48963
48964 For all &lt;math&gt;a&lt;/math&gt; in &lt;math&gt;F&lt;/math&gt;, and &lt;math&gt;\mathbf{v}&lt;/math&gt;, &lt;math&gt;\mathbf{u}&lt;/math&gt; in &lt;math&gt;V&lt;/math&gt;,
48965
48966 :{| cellpadding=10
48967 |-
48968 |&lt;math&gt;\|\mathbf{v}\| \ge 0 &lt;/math&gt;
48969 |Non-negativity
48970 |-
48971 |&lt;math&gt;\|\mathbf{v}\| = 0 \iff \mathbf{v} = 0&lt;/math&gt;
48972 |Positive-definiteness
48973 |-
48974 |&lt;math&gt;\|a \mathbf{v}\| = |a| \|\mathbf{v}\| &lt;/math&gt;
48975 |Positive homogeneity or positive scalability
48976 |-
48977 |&lt;math&gt;\|\mathbf{v} + \mathbf{u}\| \le \|\mathbf{v}\| + \|\mathbf{u}\| &lt;/math&gt;
48978 |Subadditivity or triangle inequality
48979 |}
48980
48981 The norm of a vector is also called its ''length'' or ''magnitude''.
48982
48983 In the case of [[Euclidean space]] '''R'''&lt;sup&gt;''n''&lt;/sup&gt;, the function
48984
48985 :&lt;math&gt;\|(x_1, x_2, \cdots , x_n) \| = \sqrt{\sum_{i=1}^{n}(x_i)^2}&lt;/math&gt;
48986
48987 is a norm called the [[Euclidean norm]]. When the real numbers '''R''' are considered as the one-dimensional [[vector space]] [[Euclidean space|'''R'''&lt;sup&gt;1&lt;/sup&gt;]], the absolute value is a [[Norm (mathematics)|norm]], and is the [[Norm (mathematics)#Examples|''p''-norm]] for any ''p''. In fact the absolute value is the &quot;only&quot; norm in '''R'''&lt;sup&gt;1&lt;/sup&gt;, in the sense that, for every norm ||&amp;middot;|| in '''R'''&lt;sup&gt;1&lt;/sup&gt;, ||''x''||=||1||&amp;middot;|''x''|. The complex absolute value is a special case of the [[norm (mathematics)|norm]] in an [[inner product space]]. It is identical to the Euclidean norm, if the [[complex plane]] is identified with the [[Euclidean plane]] '''R'''&lt;sup&gt;2&lt;/sup&gt;.
48988
48989 == Algorithms ==
48990
48991 In the [[C programming language]], the &lt;code&gt;abs()&lt;/code&gt;, &lt;code&gt;labs()&lt;/code&gt;, &lt;code&gt;llabs()&lt;/code&gt; (in C99), &lt;code&gt;fabs()&lt;/code&gt;, &lt;code&gt;fabsf()&lt;/code&gt;, and &lt;code&gt;fabsl()&lt;/code&gt; functions compute the absolute value of an operand. Coding the integer version of the function is trivial, ignoring the boundary case where the largest negative integer is input:
48992
48993 int abs(int i)
48994 {
48995 if (i &lt; 0)
48996 return -i;
48997 else
48998 return i;
48999 }
49000
49001 The [[floating-point]] versions are trickier, as they have to contend with special codes for [[infinity]] and [[not-a-number]]s.
49002
49003 Using [[assembly language]], it is possible to take the absolute value of a [[processor register|register]] in just three instructions (example shown for a 32-bit register on an [[x86]] architecture, [[Intel]] syntax):
49004
49005 cdq
49006 xor eax, edx
49007 sub eax, edx
49008
49009 &lt;code&gt;cdq&lt;/code&gt; extends the sign bit of &lt;code&gt;eax&lt;/code&gt; into &lt;code&gt;edx&lt;/code&gt;. If &lt;code&gt;eax&lt;/code&gt; is nonnegative, then &lt;code&gt;edx&lt;/code&gt; becomes zero, and the latter two instructions have no effect, leaving &lt;code&gt;eax&lt;/code&gt; unchanged. If &lt;code&gt;eax&lt;/code&gt; is negative, then &lt;code&gt;edx&lt;/code&gt; becomes 0xFFFFFFFF, or -1. The next two instructions then become a [[two's complement]] inversion, giving the absolute value of the negative value in &lt;code&gt;eax&lt;/code&gt;.
49010
49011 == References ==
49012 * Nahin, Paul J.; [http://www.amazon.com/gp/reader/0691027951/ref=sib_dp_pt/103-5443484-7306247#reader-link ''An Imaginary Tale'']; Princeton University Press; (hardcover, 1998). ISBN 0691027951
49013 * O'Connor, J.J. and Robertson, E.F.; [http://www-history.mcs.st-andrews.ac.uk/Mathematicians/Argand.html &quot;Jean Robert Argand&quot;]
49014 * Schechter, Eric; ''Handbook of Analysis and Its Foundations'', pp 259-263, [http://www.amazon.com/gp/reader/0126227608/103-5443484-7306247?v=search-inside&amp;keywords=absolute%20value &quot;Absolute Values&quot;], Academic Press (1997) ISBN 0126227608
49015 * Weisstein, Eric W.; [[MathWorld]]: [http://mathworld.wolfram.com/AbsoluteValue.html &quot;Absolute Value&quot;]
49016
49017 == Notes ==
49018 &lt;div id=&quot;endnote_Argand&quot;&gt;&lt;sup&gt;&lt;small&gt;[[#ref_Argand|1]]&lt;/small&gt;&lt;/sup&gt; [[Jean-Robert Argand]], is credited with introducing the term &quot;modulus&quot; in [[1806]], see: [http://www.amazon.com/gp/reader/0691027951/ref=sib_vae_pg_73/103-5443484-7306247?%5Fencoding=UTF8&amp;keywords=modulus&amp;p=S02K&amp;twc=4&amp;checkSum=0BsRgLAMFNMXnqArYGxr33gLjR56d%2Bc2nsSoQnGOEKE%3D#reader-page Nahin], [http://www-history.mcs.st-andrews.ac.uk/Mathematicians/Argand.html O'Connor and Robertson], and [http://functions.wolfram.com/ComplexComponents/Abs/35/ functions.Wolfram.com].&lt;/div&gt;
49019 &lt;div id=&quot;endnote_Wolfram&quot;&gt;&lt;sup&gt;&lt;small&gt;[[#ref_Wolfram|2]]&lt;/small&gt;&lt;/sup&gt; [http://functions.wolfram.com/ComplexComponents/Abs/35/ functions.Wolfram.com] credits [[Karl Weierstrass]] with introducing the notation |''x''| in [[1841]].&lt;/div&gt;
49020 &lt;div id=&quot;endnote_Schechter&quot;&gt;&lt;sup&gt;&lt;small&gt;[[#ref_Schechter|3]]&lt;/small&gt;&lt;/sup&gt; [http://www.amazon.com/gp/reader/0126227608/103-5443484-7306247?v=search-inside&amp;keywords=absolute%20value Schechter, p 260-261]. &lt;/div&gt;
49021 [[Category:Numeration]]
49022
49023 [[cs:Absolutní hodnota]]
49024 [[de:Absoluter Betrag]]
49025 [[es:Valor absoluto]]
49026 [[eo:Absoluta valoro]]
49027 [[fr:Valeur absolue]]
49028 [[gl:Valor absoluto]]
49029 [[is:Algildi]]
49030 [[it:Valore assoluto]]
49031 [[he:×ĸרך מוחלט]]
49032 [[nl:Absolute waarde]]
49033 [[ja:įĩļ寞値]]
49034 [[pl:Wartość bezwzględna]]
49035 [[pt:Valor absoluto]]
49036 [[ru:АйŅĐžĐģŅŽŅ‚ĐŊĐ°Ņ вĐĩĐģиŅ‡Đ¸ĐŊĐ°]]
49037 [[sk:AbsolÃētna hodnota]]
49038 [[sl:Absolutna vrednost]]
49039 [[sr:АĐŋŅĐžĐģŅƒŅ‚ĐŊĐ° вŅ€ĐĩĐ´ĐŊĐžŅŅ‚]]
49040 [[fi:Itseisarvo]]
49041 [[sv:Absolutbelopp]]
49042 [[th:ā¸„āšˆā¸˛ā¸Ēā¸ąā¸Ąā¸šā¸šā¸Ŗā¸“āšŒ]]
49043 [[vi:GiÃĄ tráģ‹ tuyáģ‡t đáģ‘i]]
49044 [[tr:Mutlak değer]]
49045 [[uk:АйŅĐžĐģŅŽŅ‚ĐŊĐ° вĐĩĐģиŅ‡Đ¸ĐŊĐ°]]
49046 [[zh:įģå¯šå€ŧ]]</text>
49047 </revision>
49048 </page>
49049 <page>
49050 <title>Arches National Park</title>
49051 <id>992</id>
49052 <revision>
49053 <id>41037453</id>
49054 <timestamp>2006-02-24T17:25:12Z</timestamp>
49055 <contributor>
49056 <username>NekoDaemon</username>
49057 <id>239574</id>
49058 </contributor>
49059 <minor />
49060 <comment>Robot: [[Cat#Communication|Nyaa]]! [[Template talk:Categoryredirect|Categoryredirect]]: [[Category:National parks of the United States]] → [[Category:National Parks of the United States]]. Requested change by [[User:Kbdank71|]]</comment>
49061 <text xml:space="preserve">{{Infobox_protected_area | name = Arches National Park
49062 | iucn_category = II
49063 | image = US_Locator_Blank.svg
49064 | caption =
49065 | locator_x = 70
49066 | locator_y = 84
49067 | location = [[Utah]], [[United States|USA]]
49068 | nearest_city = [[Moab, Utah]]
49069 | lat_degrees = 38
49070 | lat_minutes = 41
49071 | lat_seconds = 0
49072 | lat_direction = N
49073 | long_degrees = 109
49074 | long_minutes = 34
49075 | long_seconds = 0
49076 | long_direction = W
49077 | area = 76,358.98 acres&lt;br&gt;&lt;font size=&quot;-2&quot;&gt;&amp;nbsp; (76,193.01 federal)&lt;/font&gt;&lt;br&gt;309.01 km²
49078 | established = [[April 12]], [[1929]]
49079 | visitation_num = 733,131
49080 | visitation_year = 2004
49081 | governing_body = [[National Park Service]]
49082 }}
49083 '''Arches National Park''' preserves over 2,000 [[natural arch|natural sandstone arches]], including the world-famous [[Delicate Arch]], in addition to a variety of unique geological resources and formations.
49084
49085 The park is located near [[Moab, Utah]], and is 119 square miles ([[1 E8 m²|309 km²]]) in size. Its highest elevation is 5,653 feet (1,723 m) at Elephant Butte and its lowest elevation is 4,085 feet (1,245 m) at the [[visitor center]]. It receives 10 inches (250 mm) of rain a year on average.
49086
49087 The area, administered by the [[National Park Service]], was originally designated as a [[U.S. National Monument|national monument]] on [[April 12]], [[1929]]. It was redesignated a [[U.S. National Park|national park]] on [[November 12]], [[1971]]. More than 730,000 people visited it in 2004.
49088
49089 ==Features==
49090 [[Image:North_&amp;_South_Window_Arches_1.jpg|left|thumb|250px|North Window and South Window Arches]]
49091 Among the notable features of the park are:
49092 * [[Delicate Arch]], a lone-standing arch which has become a symbol of Utah
49093 * [[Balanced Rock]], a large balancing rock
49094 * [[Double Arch]], two arches located close to each other
49095 * [[Landscape Arch]], a very thin, long arch over 300 feet (100 m), the largest in the park
49096 * [[Fiery Furnace (park)|Fiery Furnace]], an area of maze-like narrow passages and tall rock columns
49097 * [[Devil's Garden]], with many arches and columns scattered along a ridge
49098 * [[Dark Angel (park)|Dark Angel]], a free-standing column of dark stone at the end of the Devil's Garden trail
49099 * [[Courthouse Towers]], a collection of tall columns
49100 * [[Petrified dunes]], petrified remnants of [[sand dunes]] blown from the ancient lakes that covered the area
49101
49102 ==Geology==
49103 [[Image:Delicate arch 3d.jpg|right|thumb|175px|Delicate Arch, one of the most famous arches in the park. (USGS){{3d_glasses}}]]
49104 The national park lies atop an underground salt bed, which is basically responsible for the arches and spires, balanced rocks, sandstone fins, and eroded monoliths in the area. Thousands of feet thick in places, this salt bed was deposited over the [[Colorado Plateau]] some 300 million years ago when a sea flowed into the region and eventually evaporated. Over millions of years, the salt bed was covered with residue from floods and winds and the oceans that came in intervals. Much of this debris was compressed into rock. At one time this overlying earth may have been one mile thick.
49105
49106 Salt under pressure is unstable, and the salt bed below Arches was no match for the weight of this thick cover of rock. Under such pressure it shifted, buckled, liquefied, and repositioned itself, thrusting the Earth layers upward into domes. Whole sections dropped into cavities. In places they turned almost on edge. [[Geologic fault|Faults]] occurred. The result of one such 2,500-foot displacement, the [[Moab Fault]], is seen from the visitor center.
49107
49108 As this subsurface movement of salt shaped the Earth, surface erosion stripped away the younger rock layers. Except for isolated remnants, the major formations visible in the park today are the salmon-colored [[Entrada Sandstone]], in which most of the arches form, and the buff-colored [[Navajo Sandstone]]. These are visible in layer cake fashion throughout most of the park. Over time water seeped into the superficial cracks, joints, and folds of these layers. Ice formed in the fissures, expanding and putting pressure on surrounding rock, breaking off bits and pieces. Winds later cleaned out the loose particles. A series of free-standing fins remained. Wind and water attacked these fins until, in some, the cementing material gave way and chunks of rock tumbled out. Many damaged fins collapsed. Others, with the right degree of hardness and balance, survived despite their missing sections. These became the famous arches. This is the geologic story of Arches - probably. The evidence is largely circumstantial.
49109
49110 ==History==
49111 [[Image:Turret_Arch_1.jpg|right|thumb|250px|Turret Arch]]
49112 Humans have occupied the region since the last [[ice age]] 10,000 years ago. [[Fremont people]] and [[Ancient Pueblo People]] lived in the area up until about 700 years ago. Spanish missionaries encountered Ute and Paitue tribes in the area when they first came through in [[1775]], but the first European-Americans to attempt settlement in the area were the [[Mormon]] [[Elk Mountain Mission]] in [[1855]], but then soon abandoned the area. Ranchers, farmers, and prospectors later settled Moab in the neighboring riverine valley in the 1880s. Word of the beauty in the surrounding [[rock formations]] spread beyond the settlement as a possible tourist destination.
49113
49114 The Arches area was first brought to the attention of the National Park Service by Frank A. Wadleigh, passenger traffic manager of the [[Denver and Rio Grande Western Railroad]]. Wadleigh, accompanied by railroad photographer George L. Beam, visited the area in September 1923 at the invitation of Alexander Ringhoffer, a [[Hungary|Hungarian]]-born [[prospector]] living in Salt Valley. Ringhoffer had written to the railroad in an effort to interest them in the tourist potential of a scenic area he had discovered the previous year with his two sons and a son-in-law, which he called the &quot;Devil's Garden&quot; (known today as the &quot;Klondike Bluffs&quot;). Wadleigh was impressed by what Ringhoffer showed him, and suggested to Park Service director Stephen T. Mather that the area be made a national monument.
49115
49116 The following year additional support for the monument idea came from Laurence M. Gould, a University of Michigan graduate student studying the geology of the nearby La Sal mountains, who was shown the scenic area by retired local physician Dr. J.W. &quot;Doc&quot; Williams.
49117
49118 [[image:Landscape arch 20030917 093317 1.1504x807.jpg|left|250px|thumb|Landscape Arch]]
49119
49120 A succession of government investigators examined the area, in part due to confusion as to the precise location. In the process the name &quot;Devil's Garden&quot; was transposed to an area on the opposite side of Salt Valley, and Ringhoffer's original discovery was omitted, while another area nearby, known locally as &quot;The Windows&quot;, was included. Designation of the area as a national monument was supported by the Park Service from [[1926]], but was resisted by President [[Calvin Coolidge]]'s Interior Secretary. Finally in April [[1929]], shortly after his inauguration, President [[Herbert Hoover]] signed a presidential proclamation creating Arches National Monument, consisting of two comparatively small, disconnected sections. The purpose of the reservation under the 1906 [[Antiquities Act]] was to protect the arches, spires, balanced rocks, and other sandstone formations for their scientific and educational value. The name &quot;Arches&quot; was suggested by Frank Pinkely, superintendent of the Park Service's southwestern national monuments, following a visit to the Windows section in 1925.
49121
49122 In late [[1938]], President [[Franklin D. Roosevelt]] signed a proclamation which enlarged the Arches to protect additional scenic features and permit development of facilities to promote tourism. A small adjustment was made by President [[Dwight Eisenhower]] in [[1960]] to accommodate a new road alignment.
49123
49124 In early [[1969]], just before leaving office, President [[Lyndon Johnson]] signed a proclamation substantially enlarging the Arches. Two years later President [[Richard Nixon]] signed legislation enacted by Congress which significantly reduced the area of Arches, but changed its status to a National Park.
49125
49126 ==Publicity==
49127 American writer [[Edward Abbey]] was a [[park ranger]] at Arches National Monument when he kept journals that became his book ''Desert Solitaire''. The success of this book, as well as the rise in [[adventure tourism|adventure-based recreation]], has drawn many [[hikers]], [[mountain bike|mountain-bikers]], and [[off-road]] enthusiasts to the area, but activities are limited within park boundaries: camping, foot hiking (along designated trails), and driving only along marked roads.
49128
49129 The opening scenes of the movie ''[[Indiana Jones and the Last Crusade]]'' were filmed at the park.
49130
49131 ==Reference==
49132 * ''The National Parks: Index 2001–2003''. Washington: [[United States Department of the Interior|U.S. Department of the Interior]].
49133
49134 ==External links==
49135 {{Commons|Arches National Park|Arches National Park}}
49136 * [http://www.nps.gov/arch/index.htm Arches National Park Official site]
49137 * {{Wikitravel}}
49138 *[http://www.terragalleria.com/parks/np.arches.html Photos of Arches National Park - Terra Galleria]
49139 *[http://www.entradautah.com/arches Arches National Park]
49140 *[http://www.UntraveledRoad.com/USA/Parks/Arches.htm Photographic virtual tour of Arches National Park]
49141 {{Geolinks-US-cityscale|38.750555|-109.566944|10}}
49142
49143 {{National parks of the United States}}
49144
49145 [[Category:Archaeological sites in the United States]]
49146 [[Category:Grand County, Utah]]
49147 [[Category:National Parks of the United States]]
49148 [[Category:Natural arches]]
49149 [[Category:Utah landmarks]]
49150
49151 [[da:Arches Nationalpark]]
49152 [[de:Arches-Nationalpark]]
49153 [[es:Parque Nacional Arches]]
49154 [[fr:Arches National Park]]
49155 [[pl:Park Narodowy Arches]]</text>
49156 </revision>
49157 </page>
49158 <page>
49159 <title>Analog signal</title>
49160 <id>993</id>
49161 <revision>
49162 <id>39666041</id>
49163 <timestamp>2006-02-15T00:58:58Z</timestamp>
49164 <contributor>
49165 <ip>144.139.85.151</ip>
49166 </contributor>
49167 <text xml:space="preserve">An '''analog''' or '''analogue''' signal is any variable signal [[continuous function|continuous]] in both time and amplitude. It differs from a [[digital signal]] in that small fluctuations in the signal are meaningful. Analog is usually thought of in an [[electricity|electrical]] context, however mechanical, pneumatic, hydraulic, and other systems may also use analog signals.
49168
49169 The word &quot;analog&quot; implies an [[analogy]] between cause and effect, voltage in and voltage out, current in and current out, sound in and frequency out.
49170
49171 An analog signal uses some property of the medium to convey the signal's information. For example, an [[aneroid barometer]] uses rotary position as the signal to convey pressure information. Electrically, the property most commonly used is [[voltage]] followed closely by [[frequency]], [[Current (electricity)|current]], and [[electric charge|charge]].
49172
49173 Any information may be conveyed by an analog signal, often such a signal is a measured [[response]] to changes in physical phenomena, such as [[sound]], [[light]], [[temperature]], [[position]], or [[pressure]], and is achieved using a [[transducer]].
49174
49175 For example, in an analog sound recording, the variation in [[pressure]] of a [[sound]] striking a [[microphone]] creates a corresponding variation in the voltage amplitude of a current passing through it. An increase in the volume of the sound causes the fluctuation of the current's voltage amplitude to increase while keeping the same rhythm.
49176
49177 The primary disadvantage of analog signalling is that any system has [[Noise (physics)|noise]]&amp;mdash;that is, random variations&amp;mdash;in it. As the signal is copied and re-copied, or transmitted over long distances, these random variations become dominant. Electrically these losses are lessened by shielding, good connections, and several cable types such as coax and twisted pair.
49178
49179 The effects of [[signal noise|noise]] make signal loss and distortion impossible to recover, since amplifying the signal to recover attenuated parts of the signal amplifies the noise as well.
49180
49181 Another method of conveying an analog signal is to use [[modulation]]. In this, some base signal (e.g., a [[sinusoidal]] [[carrier wave]]) has one of its properties modulated: [[amplitude modulation]] involves altering the amplitude of a sinusoidal voltage [[wave]]form by the source information, [[frequency modulation]] changes the [[frequency]]. Other techniques, such as changing the [[phase (waves)|phase]] of the base signal also work.
49182
49183 Analog circuits do not involve [[quantisation]] of information into digital format. The concept being measured over the circuit, whether sound, light, pressure, temperature, or an exceeded limit, remains from end to end.
49184
49185 [[Clock]]s with hands are called analog; those that display digits are called digital. However, many analog clocks are actually digital since the hands do not move in a smooth continuous motion, but in small steps every second or half a second, or every minute with a loud CLUNK.
49186
49187 See [[digital]] for a discussion of ''digital vs. analog''.
49188
49189 Sources: Some of an earlier version of this article was originally taken from [[Federal Standard 1037C]] in support of [[MIL-STD-188]].
49190
49191 ==See also==
49192 * [[Analog computer]]
49193 * [[Analog to digital converter]]
49194 * [[Digital to analog converter]]
49195 * [[Analog television]]
49196 * [[Analog synthesizer]]
49197 * [[Analog photocopier]]
49198 * [[telautograph|Analog fax machine]]
49199 [[Category:Sound]]
49200 [[Category:Electronic design]]
49201
49202 [[da:Analog]]
49203 [[de:Analogsignal]]
49204 [[es:SeÃąal analÃŗgica]]
49205 [[eo:Analoga]]
49206 [[fr:Analogique]]
49207 [[ko:ė•„ë‚ ëĄœęˇ¸]]
49208 [[it:Analogico]]
49209 [[nl:Analoog]]
49210 [[ja:ã‚ĸナログ]]
49211 [[pt:Sinal analÃŗgico]]
49212 [[ru:АĐŊĐ°ĐģĐžĐŗОвŅ‹Đš ŅĐ¸ĐŗĐŊĐ°Đģ]]
49213 [[fi:Analoginen]]
49214 [[zh:æ¨Ąæ‹ŸäŋĄåˇ]]</text>
49215 </revision>
49216 </page>
49217 <page>
49218 <title>Arecales</title>
49219 <id>994</id>
49220 <revision>
49221 <id>25086937</id>
49222 <timestamp>2005-10-08T21:44:55Z</timestamp>
49223 <contributor>
49224 <username>Eugene van der Pijll</username>
49225 <id>22016</id>
49226 </contributor>
49227 <comment>redirect order to monotypic member family</comment>
49228 <text xml:space="preserve">#REDIRECT [[Arecaceae]]</text>
49229 </revision>
49230 </page>
49231 <page>
49232 <title>And Then There Were None</title>
49233 <id>999</id>
49234 <revision>
49235 <id>41684029</id>
49236 <timestamp>2006-03-01T01:16:19Z</timestamp>
49237 <contributor>
49238 <username>Carfanatic</username>
49239 <id>589587</id>
49240 </contributor>
49241 <text xml:space="preserve">[[Image:AndThenThereWereNoneDVDCover.jpg|right|thumb|The 1945 film version, showing (left to right) [[Barry Fitzgerald]], [[June Duprez]] and [[Walter Huston]].]]
49242
49243 '''''And Then There Were None''''' (also known as '''''Ten Little Indians''''' and originally as '''''Ten Little Niggers''''') is a [[detective fiction|detective novel]] by [[Agatha Christie]] first published in [[1939]].
49244
49245 ==Plot==
49246 {{spoiler}}
49247
49248 The story focuses on ten strangers who are all (but one) brought, by misleading information, to an [[Burgh Island|island]] off the coast of [[Devon]], in southern [[England]].
49249
49250 The characters are:
49251 *Vera Claythorne, a young teacher in a third class school
49252 *Philip Lombard, a down-on-his luck explorer/mercenary
49253 *William Blore, a retired police inspector, now a private investigator
49254 *Dr. Edward Armstrong, a private physician
49255 *Justice Lawrence Wargrave, a bitter, cynical retired judge
49256 *Emily Brent, an elderly spinster and a religious zealot of extreme proportions
49257 *Rogers, the butler
49258 *General Macarthur, a lonely, retired army man
49259 *Mrs. Rogers, the housekeeper, Rogers' wife
49260 *Anthony Marston, a reckless playboy
49261
49262 On their first night, the ten realize that they have been brought to the island under false pretenses, but now have no means of getting away. A mysterious gramophone recording informs them that all ten of them are guilty of &quot;murders,&quot; though in this case the killings cannot be dealt with by law.
49263
49264 On the first night, Anthony Marston dies of posioning. In the morning, Mrs. Rogers fails to wake up and it is determined that she probably had a fatal overdose of sleeping drugs. At lunch the next day, General Macarthur is found dead by a blow to the back of his head. After searching the island for the murderer or possible hiding spots, the survivors realize that the murderer can only be one of them, and whoever it is, is playing a game - killing them in manners poetically similar to a nursery rhyme, and also removing one of ten little figurines in the dining room after each death. The survivors have a meeting and discover that none of them have an alibi for any of the deaths.
49265
49266 The next morning Rogers is found dead in the woodshed, having been killed with a giant axe that was nearby. Later that day, Emily Brent dies from an injection of [[potassium cyanide]]. The five remaining - Dr. Armstrong, Justice Wargrave, Philip Lombard, Vera Claythorne, and Inspector Blore - become increasingly paranoid. Later, Justice Wargrave is found dead, having been shot through the head. That night, Dr. Armostrong leaves the house, and when the rest of the survivors search for him they cannot find him.
49267
49268 Vera, Inspector Blore, and Philip Lombard go outside. Blore decides to go back to the house to get some sustinance, and a dull thud is heard. When Vera and Philip check to see what happened, they find Blore crushed to death by a heavy marble clock. They assume Doctor Armstrong did it and decide to stay out of the house. The two survivors get back to the beach only to find Armstrong's body washed up on the shore. Vera and Lombard they realise that they are the only two left. Even though they could not possibly have mudered the Inspector, the never ending suspicion has driven them to a breaking point and they assume each other as the murderers. Philip Lombard reaches for he revolver, only to discover that Vera Claythorne pickpoketed it. She shoots him and then returns to the house, thinking she is finally safe. When Vera gets to her room, she discovers a noose hanging there, and having been finally driven crazy by the entire experience, she hangs herself, thus fullfilling the rhyme upon which the murders were based.
49269
49270 So, by the novel's end, all ten guests are dead, leaving a &quot;[[locked room mystery]].&quot; A police investigation, though thorough, cannot find any satisfactory explanation. It is resolved when a letter in a bottle, tossed into the ocean and recovered by a trawler, is delivered to the police, which was written by the murderer.
49271
49272 ==Film and Theater==
49273
49274 Christie had been disappointed in previous adaptations of her novels. As she had written a play before, she decided to adapt her own book herself. She decided that the staging of a play required the survival of two characters in order to carry the plot exposition. Consequently the resolution of the play is very different from that of the book (though the identity of the killer remains the same). This stage version dates from [[1943]]. All but one of the films followed the play's humourous tone &amp; ending, rather than the book's dark tone and downbeat resolution.
49275
49276 The story was adapted for the cinema as ''And Then There Were None'' in [[1945]] and again in [[1974]]; and also filmed as ''Ten Little Indians'' in [[1959]] (as truncated television recording of the play), [[1965]], [[1974]], [[1989]] and as ''Ten Little Niggers'' in [[1987]]. The 1945 &amp; 1987 film versions were the most successful and took fewer liberties with Christie's plot than some of the other versions. The 1945 film was [[film director|directed]] by [[Rene Clair]] from a [[screenplay]] by [[Dudley Nichols]]. The 1987 film was written, produced and directed by renowed [[Russia|Russian]] [[filmmaker]], [[Stanislav Govorukhin]].
49277
49278 The 1987 version was an extremely faithful-to-the-novel film adaptation made in [[Russia]], the title of which (''&quot;Desyat Negrityat&quot;'') translates directly to the novel's original title, ''Ten Little Niggers'' (since the novel's title was never altered in most of the world outside of [[United States]] and [[United Kingdom]].) The Russian version is the only adaptation that didn't change any of the characters or the ending of the book. It is most famous in Russia for having a legendary ensemble cast of the most famous and talented actors in Russia. Arguably, the Russian production is even more star-studded than any of the [[Hollywood]] versions.
49279
49280 These film versions usually feature all-star casts and are set in different locations, such as the [[Austria|Austrian]] [[Alps]], the [[Iran|Iranian]] desert, and the [[Africa|African]] jungle. The only ones to keep the island as the location were the [[1945]] and the [[1987]] versions.
49281
49282 The basic concept of the plot has been recycled countless times, often without crediting Christie (who herself recycled numerous story concepts.) The most recent example is probably the 2004 [[crime]] [[thriller]] ''[[Mindhunters]]'', which includes many elements of Christie's original story, including an island and various plot twists.
49283
49284 In 2005 a new version of ''And Then There Were None'' was performed in London's [[West End theatre|West End]]. Written by [[Kevin Elyot]] and directed by [[Steven Pimlott]], it is based on the novel rather than on Christie's drama.
49285
49286 ===List of movie adaptations===
49287 * ''[[And Then There Were None (1945 film)]]'' - directed by [[RenÊ Clair]] ([http://www.imdb.com/title/tt0037515/ IMDb listing])
49288 * ''[[Ten Little Indians (1959 film)]]'' - live television presentation, directed by [[Paul Bogart]], [[Philip F. Falcone]], [[Leo Farrenkopf]] and [[Dan Zampino]] ([http://www.imdb.com/title/tt0278766/ IMDb listing])
49289 * ''[[Ten Little Indians (1965 film)]]'' - directed by [[George Pollack (film director)|George Pollock]] ([http://www.imdb.com/title/tt0061075/ IMDb listing])
49290 * ''[[And Then There Were None (1974 film)]]'' - directed by [[Peter Collinson]] ([http://www.imdb.com/title/tt0072263/ IMDb listing])
49291 * ''[[Desyat negrityat]]'' (1987) - directed by [[Stanislav Govorukhin]] ([http://www.imdb.com/title/tt0092879/ IMDb listing])
49292 * ''[[Ten Little Indians (1989 film)]]'' - directed by [[Alan Birkinshaw]] ([http://www.imdb.com/title/tt0098454/ IMDb listing])
49293
49294 ==The rhyme==
49295 The book's original title &quot;Ten Little Niggers&quot; was taken from the chorus of an [[United States|American]] [[comic song]], written by [[Septimus Winner]] in [[1868]]; there are many variants of the lyrics, of which &quot;Ten Little [[Injuns]]&quot; is probably the most familiar to modern audiences. The song is now considered by many to be [[racist]] and offensive.
49296
49297 The rhyme used in the novel is as follows:
49298
49299 &lt;!--This needs transwiki-ing to wikisource --&gt;
49300 :Ten little Indian boys going out to dine;
49301 ::One choked his little self and then there were nine.
49302 :Nine little Indian boys sat up very late;
49303 ::One overslept himself and then there were eight.
49304 :Eight little Indian boys traveling in Devon;
49305 ::One said he'd stay and then there were seven.
49306 :Seven little Indian boys chopping up sticks;
49307 ::One chopped himself into halves and then there were six.
49308 :Six little Indian boys playing with a hive;
49309 ::A [[bumblebee]] stung one and then there were five.
49310 :Five little Indian boys going in for law;
49311 ::One got in [[Chancery]] and then there were four.
49312 :Four little Indian boys going out to sea;
49313 ::A [[red herring]] swallowed one and then there were three.
49314 :Three little Indian boys walking in the zoo;
49315 ::A big bear hugged one and then there were two.
49316 :Two little Indian boys sitting in the sun;
49317 ::One got frizzled up and then there was one.
49318 :One little Indian boy left all alone;
49319 ::He went and hanged himself and then there were none.
49320
49321 ==Ten Little Indians and 'and then there was one' in Popular Culture==
49322
49323 The [[meme]]s 'Ten Little Indians' and 'and then there was one' have been used many times in modern days to refer to situations in stories - oftentimes [[slasher film]]s, other [[horror film]]s, and [[disaster film]]s - in which the characters die off one by one. This is how many films of those genres are structured, in order to provide gory scenes periodically, and to ultimately force the [[main character]] to face off against the [[villain]] alone. This main character in slasher films is often the '[[Final Girl]].'
49324
49325 ==Trivia==
49326 * &quot;And Then There Were None&quot; was adapted from [[Agatha Christie]]'s book into a video game in 2005 by [[The Adventure Company | The Adventure Company]]. It was released in November of that year to mixed reviews, most of the slack going to changing the &quot;Indians&quot; to &quot;Sailors,&quot; in a case of political correctness gone awry, and altering the killer's motive &amp; identity, though it is possible to see the original novel's ending when one finishes a puzzle after completing the main game. Four further books are to be adapted.
49327
49328 * &quot;Ten Little Indians&quot; is a song by [[The Yardbirds]] along the same lines with the rhyme, although more dismal. In the song, the death of each &quot;Indian&quot; is related to breaking one of the [[Ten Commandments]].
49329
49330 * A Japanese [[doujin]] game, [[Embodiment of Scarlet Devil]], features an extra stage of a girl having the spell card named &quot;And Then Will There be None?&quot;, and a theme music named &quot;Is she the U.N.Owen?&quot;. (U.N.Owen is the killer's alias used in the novel, play, and films.)
49331
49332 * &quot;Zehn Kleine [[Jägermeister]]&quot; (Ten Little &quot;Jägermeister&quot;) is a song by the German band [[Die Toten Hosen]], along the same lines as the rhyme, but with funny or satirical things happening to the characters (taking drugs, being arrested for tax evasion, dying of [[Mad Cow Disease]] etc)
49333
49334 * Polish 2003 film [[Show (film)|Show]], starring [[Cezary Pazura]], tells the story of a reality show located on a remote island. Suddenly, the competitors start to die one after another. One of the competitors even mention Agatha Christies' novel.
49335
49336 {{Agatha Christie}}
49337
49338 [[Category:1939 books]]
49339 [[Category:Agatha Christie novels]]
49340
49341
49342 [[fr:Dix petits nègres]]
49343 [[pl:Dziesięciu małych MurzynkÃŗw]]
49344 [[pt:And Then There Were None]]
49345 [[fi:Kymmenen pientä neekeripoikaa]]
49346 [[sv:Tio smÃĨ negerpojkar]]</text>
49347 </revision>
49348 </page>
49349 <page>
49350 <title>Hercule Poirot</title>
49351 <id>1000</id>
49352 <revision>
49353 <id>41079633</id>
49354 <timestamp>2006-02-24T22:43:39Z</timestamp>
49355 <contributor>
49356 <username>Dinsdagskind</username>
49357 <id>93722</id>
49358 </contributor>
49359 <minor />
49360 <text xml:space="preserve">[[Image:David_Suchet_is_Hercule_Poirot.jpg|framed|[[David Suchet]] as Poirot]]
49361 '''Hercule Poirot''' (pronounced {{IPA|[ɛʀkyl pwaʀo]}}) is a [[fictional character]], the primary detective of [[Agatha Christie]]'s novels. He appears in over 30 novels and over 50 short stories and is probably one of the most famous characters ever made.
49362
49363 The character was born in [[Spa, Belgium|Spa]], [[Belgium]], and has worked as a Belgian police officer, notably in [[Brussels]], but moved to [[England]] during [[World War I]] and started a second career as a [[private investigator|private detective]]. Poirot is remarkable for his small stature and egg-shaped head, his cat-like green eyes, his meticulous moustache, his dandified dressing habits, his absolute obsession with order and neatness, and his disdain for detective methods that include crawling on hands and knees and looking for clues. He prefers to examine the psychology of a crime to discover more evidence, once even betting his best friend and sometime partner, [[Arthur Hastings]], that he could solve a case simply by sitting in an easy chair and using his &quot;little grey cells.&quot;
49364
49365 Like a large number of detectives of the early days of mystery fiction (including [[Miss Marple]], [[Sherlock Holmes (character)|Sherlock Holmes]], and [[Father Brown]]), Poirot is unmarried. The love of his life, Countess Vera Rossakoff, appears in the short stories &quot;The Double Clue&quot; and &quot;The Capture of Cerberus&quot; and the novel ''The Big Four''.
49366
49367 His fictional address (from his business card) is 56B Whitehaven Mansions,
49368 Sandhurst Square, London W1. The building used in the series can be found on Charterhouse Square - City of London.
49369
49370 ==Major novels==
49371
49372 The Poirot books take readers through the whole of his life in England, from the first book (''[[The Mysterious Affair at Styles]]''), where he is a refugee staying at Styles, to the last Poirot book (''[[Curtain (novel)|Curtain]]''), where he visits Styles once again before his death. In between, Poirot solves cases outside England as well, including his most famous case, ''[[Murder on the Orient Express]]'' (1934).
49373
49374 Hercule Poirot became famous with the publication, in [[1926]], of ''[[The Murder of Roger Ackroyd]]'', whose surprising solution proved controversial. The novel is still among the most famous of all detective novels: [[Edmund Wilson]] alludes to it in the title of his well-known attack on detective fiction, &quot;Who Cares Who Killed Roger Ackroyd?&quot; Aside from ''Roger Ackroyd'', the most critically-acclaimed Poirot novels appeared from [[1932]] to [[1942]], including such acknowledged classics as ''Murder on the Orient Express'', ''[[The ABC Murders]]'' (1935), ''[[Cards on the Table]]'' (1936), and ''[[Death on the Nile]]'' (1937). The last of these, a tale of multiple homicide upon a Nile steamer, was judged by the celebrated detective novelist [[John Dickson Carr]] to be among the ten greatest mystery novels of all time.
49375
49376 The [[1942]] novel ''[[Five Little Pigs]]'' (aka ''Murder in Retrospect''), in which Poirot investigates a murder committed sixteen years before by analyzing various accounts of the tragedy, is a ''[[Rashomon (movie)|Rashomon]]''-like performance that critic and mystery novelist Robert Barnard called the best of the Christie novels.
49377
49378 ==Recurring characters==
49379
49380 While the majority of the supporting cast in the Poirot stories is always different, some characters do show up more often. [[Arthur Hastings]], whom Poirot met almost immediately after arriving in England, becomes his life-long partner and appears in many of the novels and stories. Other frequently recurring characters include the detective novelist [[Ariadne Oliver]], Agatha Christie's humorous self-caricature, and Poirot's secretary, Miss Lemon. [[Chief Inspector Japp]] of Scotland Yard appears in many of the stories, as well. The mysterious [[Russia]]n Countess Vera Rossakoff, Poirot's only known love interest, appears in three stories.
49381
49382 ==Books featuring Hercule Poirot==
49383 ''[[Short story]] collections listed as ss''
49384
49385 * ''[[The Mysterious Affair at Styles]]'' ([[1920]])
49386 * ''[[Murder on the Links]]'' ([[1923]])
49387 * ''[[Poirot Investigates]]'' ([[1924]], ''ss'')
49388 * ''[[The Murder of Roger Ackroyd]]'' ([[1926]])
49389 * ''[[The Big Four (novel)|The Big Four]]'' ([[1927]])
49390 * ''[[The Mystery of the Blue Train]]'' ([[1928]])
49391 * ''[[Peril at End House]]'' ([[1932]])
49392 * ''[[Lord Edgware Dies]]'' ([[1933]])
49393 * ''[[Murder on the Orient Express]]'' ([[1934]])
49394 * ''[[Three Act Tragedy]]'' ([[1935]])
49395 * ''[[Death in the Clouds]]'' (1935)
49396 * ''[[The A.B.C. Murders]]'' ([[1936]])
49397 * ''[[Cards on the Table]]'' (1936)
49398 * ''[[Murder in Mesopotamia]]'' (1936)
49399 * ''[[Death on the Nile]]'' ([[1937]])
49400 * ''[[Dumb Witness]]'' (1937)
49401 * ''[[Murder in the Mews]]'' (1937, ''ss'')
49402 * ''[[Appointment with Death]]'' ([[1938]])
49403 * ''[[Hercule Poirot's Christmas]]'' ([[1939]])
49404 * ''[[One, Two, Buckle My Shoe]]'' ([[1940]])
49405 * ''[[Sad Cypress]]'' (1940)
49406 * ''[[Evil Under the Sun]]'' ([[1941]])
49407 * ''[[Five Little Pigs]]'' ([[1942]])
49408 * ''[[The Hollow]]'' ([[1946]])
49409 * ''[[The Labours of Hercules]]'' ([[1947]])
49410 * ''[[Taken at the Flood]]'' ([[1948]]) also published as ''There Is a Tide''
49411 * ''[[Mrs McGinty's Dead]]'' ([[1952]])
49412 * ''[[After the Funeral]]'' ([[1953]]) also published as ''Funerals are Fatal''
49413 * ''[[Hickory Dickory Dock (novel)|Hickory Dickory Dock]]'' ([[1955]])
49414 * ''[[Dead Man's Folly]]'' ([[1956]])
49415 * ''[[Cat Among the Pigeons]]'' ([[1959]])
49416 * ''[[The Clocks (novel)|The Clocks]]'' ([[1963]])
49417 * ''[[Third Girl]]'' ([[1966]])
49418 * ''[[Hallowe'en Party]]'' ([[1969]])
49419 * ''[[Elephants Can Remember]]'' ([[1972]])
49420 * ''[[Poirot's Early Cases]]'' ([[1974]], ss)
49421 * ''[[Curtain (novel)|Curtain]]'' (written about 1940, published [[1975]])
49422
49423 ==Hercule Poirot on screen and stage==
49424 [[Image:Ustinov_is_Poirot.jpg|framed|[[Peter Ustinov]] as Poirot]]
49425 {{sect-stub}}
49426 Hercule Poirot has been played by several actors. The character first appeared onscreen in [[1931]], played by [[Austin Trevor]]. Perhaps the most notable portrayals have been by [[Albert Finney]] in the cinematic version of ''[[Murder on the Orient Express]]'', and [[David Suchet]] in a long series of television productions. The role has also been played more than once by [[Peter Ustinov]] and by [[Tony Randall]], [[Ian Holm]], and [[Alfred Molina]].
49427
49428 In 2004, [[NHK]] (a Japanese TV network) produced a 39 episode [[anime]] series titled ''[[Agatha Christie's Famous Detectives Poirot and Marple]] (Agatha Christie no Meitantei Poirot to Marple)'', as well as a manga series by the same title released starting in 2005. The series ran from [[July 4]], [[2004]] through [[May 15]], [[2005]], and is now being shown as [[rerun]]s on NHK and other networks in Japan. Poirot was voiced by [[Kōtarō Satomi]] (Satomi Kōtarō) and Miss Marple was voiced by [[Kaoru Yachigusa]] (Yachigusa Kaoru).
49429
49430 {{Agatha Christie}}
49431
49432 [[Category:Agatha Christie|Poirot, Hercule]]
49433 [[Category:Fictional detectives|Poirot, Hercule]]
49434 [[Category:Fictional Belgians|Poirot, Hercule]]
49435
49436 [[cs:Hercule Poirot]]
49437 [[da:Hercule Poirot]]
49438 [[de:Hercule Poirot]]
49439 [[eo:Hercule POIROT]]
49440 [[fa:Ų‡ØąÚŠŲˆŲ„ ŲžŲˆØĸØąŲˆ]]
49441 [[fr:Hercule Poirot]]
49442 [[id:Hercule Poirot]]
49443 [[it:Hercule Poirot]]
49444 [[he:הרקול פוארו]]
49445 [[nl:Hercule Poirot]]
49446 [[ja:エãƒĢキãƒĨãƒŧãƒĢãƒģポã‚ĸロ]]
49447 [[pl:Herkules Poirot]]
49448 [[pt:Hercule Poirot]]
49449 [[ru:Đ­Ņ€ĐēŅŽĐģŅŒ ПŅƒĐ°Ņ€Đž]]
49450 [[fi:Hercule Poirot]]
49451 [[sv:Hercule Poirot]]
49452 [[zh:čĩĢä¸˜å‹’Âˇį™Ŋįž…]]</text>
49453 </revision>
49454 </page>
49455 <page>
49456 <title>Miss Marple</title>
49457 <id>1002</id>
49458 <revision>
49459 <id>40408541</id>
49460 <timestamp>2006-02-20T09:20:47Z</timestamp>
49461 <contributor>
49462 <username>GrinBot</username>
49463 <id>411872</id>
49464 </contributor>
49465 <minor />
49466 <comment>robot Adding: hu</comment>
49467 <text xml:space="preserve">[[Image:Joan_Hickson_is_Miss_Marple.jpg|thumb|[[Joan Hickson]] as '''Miss Marple''']]
49468
49469 '''Jane Marple''', usually known as '''Miss Marple''', is a [[fictional character]] appearing in many [[Agatha Christie]] novels.
49470
49471 She lives in the little village of [[St. Mary Mead]]. She looks like an ordinary [[spinster]], in [[Harris Tweed|tweed]] and with a curiosity as wide as the world, but when it comes to solving mysteries, she turns out to have a sharp logical mind. In the best [[detective fiction|detective story]] tradition, she often embarrasses the local &quot;professional&quot; police, usually by making an analogy with some village occurrence or character.
49472
49473 ==Personality==
49474 When we first meet Jane Marple she is very much the stereotypical spinster of the last century — blue-eyed and frail, wearing a black lace cap and mittens, and constantly knitting. She is also a gleeful gossip and not especially nice. The first Marple novel, ''[[The Murder at the Vicarage]]'' sees a markedly different Marple to the one who would appear in later books, as she modernized and became nicer over the years.
49475
49476 Miss Marple's nephew, the &quot;well-known author&quot; Raymond West and his wife Joan (who first appeared as Joyce), a modern artist, were introduced in 1933 in ''[[The Thirteen Problems]]''. Raymond, in particular, is overconfident of himself and dismissive of Miss Marple's mental powers, though she continually upstages him in the end.
49477
49478 ''[[A Murder is Announced]]'' ([[1950]]), Agatha Christie's fiftieth novel, is regarded by some as the best Miss Marple novel, and one of the best of Christie's [[whodunit]]s.
49479
49480 Miss Marple is able to solve difficult crimes not only because of her shrewd intelligence, but because St. Mary Mead, over her lifetime, has put on a pageant of human depravity rivaled only by that of [[Sodom and Gomorrah]]. No crime can arise without reminding Miss Marple of some parallel incident in the history of her time.
49481
49482 As with her other famous detective [[Hercule Poirot]], Christie wrote a concluding novel to her Marple series, ''Sleeping Murder'', in [[1940]] and saved it for her old age, causing some embarrassing discrepancies as people who were written off as dead (such as Dolly Bantry's husband, Colonel Arthur Bantry) by the time her mystery &quot;Nemesis&quot; was published, which was the preceding Marple mystery '''but actually the last one written''', appear alive in ''Sleeping Murder'' having been resurrected from the fictional dead. ''Sleeping Murder'' was published in [[1976]], shortly after Christie's death, and was the last of her novels to be published, although, again, it was written in [[1940]].
49483
49484 ==Books featuring Miss Marple==
49485 * ''[[The Murder at the Vicarage]]'' ([[1930]])
49486 * ''[[The Body in the Library]]'' ([[1942]])
49487 * ''[[The Moving Finger]]'' ([[1943]])
49488 * ''[[A Murder is Announced]]'' ([[1950]])
49489 * ''[[They Do It with Mirrors]], or Murder With Mirrors'' ([[1952]])
49490 * ''[[A Pocket Full of Rye]]'' ([[1953]])
49491 * ''[[4.50 from Paddington|4.50 from Paddington, or What Mrs. McGillicuddy Saw!]]'' ([[1957]])
49492 * ''[[The Mirror Crack'd from Side to Side]]'' ([[1962]])
49493 * ''[[A Caribbean Mystery]]'' ([[1964]])
49494 * ''[[At Bertram's Hotel]]'' ([[1965]])
49495 * ''[[Nemesis (Christie)|Nemesis]]'' ([[1971]])
49496 * ''[[Sleeping Murder]]'' (written around [[1940]], published [[1976]])
49497
49498 ==Quotation==
49499 *&quot;The young people think the old people are fools, but the old people ''know'' the young people are fools&quot; &amp;ndash; Miss Marple's motto, in several of the books and stories.
49500 ==[[Film|Movies]]==
49501 [[Image:Margaret_Rutherford_is_Miss_Marple.jpg|thumb|right|[[Margaret Rutherford]] as '''Miss Marple''']]
49502
49503 Although popular from her first appearance in [[1930]], Jane Marple had to wait thirty-two years for her first big-screen appearance; when she made it, the results were disappointing to both Christie purists and Christie herself. ''[[Murder, She Said]]'' ([[1962]], directed by [[George Pollock]]) was the first of four British MGM productions starring Dame [[Margaret Rutherford]], a magnificent comic actress but too boisterous and loud for the prim and birdlike character Christie created. This first film was based on the [[1957]] novel ''4:50 from Paddington'' (U.S. title, ''What Mrs. McGillicuddy Saw!''), and the changes made in the plot were typical of the series. In the film, Mrs. McGillicuddy doesn't see anything because there is no Mrs. McGillicuddy. Miss Marple herself sees apparent murder committed on a train passing hers. Likewise, it is Miss Marple herself who poses as a maid to find out the facts of the case, not a young friend of hers who has made a business of it.
49504
49505 The other Rutherford films (all directed by George Pollock) were ''Murder at the Gallop'' ([[1963]]), based on the [[1953]] Hercule Poirot novel ''[[After the Funeral]]''; ''Murder Most Foul'' ([[1964]]), based on the [[1952]] Poirot novel ''[[Mrs McGinty's Dead]]''; and ''Murder Ahoy'' ([[1964]]), not based on any Christie work.
49506
49507 In [[1980]], [[Angela Lansbury]] played Miss Marple in ''The Mirror Crack'd'' (EMI, directed by [[Guy Hamilton]]), based on Christie's [[1962]] novel. However, Lansbury is only on screen for a short time, the bulk of the film being taken up with the machinations of an all-star cast that included [[Elizabeth Taylor]], [[Rock Hudson]], [[Geraldine Chaplin]], [[Tony Curtis]], and [[Kim Novak]]. [[Edward Fox]] appeared as Inspector Craddock, who did Miss Marple's legwork.
49508
49509 American stage and screen legend [[Helen Hayes]] portrayed Miss Marple in two American made-for-TV movies, both for [[CBS]]: ''A Caribbean Mystery'' ([[1983]]) and ''Murder with Mirrors'' ([[1984]]). [[Sue Grafton]] contributed to the screenplay of the former. Hayes's Marple was benign and chirpy.
49510
49511 ==Television and Radio==
49512 American TV was the setting for the first dramatic portrayal of Miss Marple. [[Gracie Fields]], a legendary British actress, played the geriatric sleuth in a [[1956]] episode of ''Goodyear TV Playhouse'' based on ''A Murder Is Announced'', the [[1950]] Christie novel.
49513
49514 There was a long-running and popular [[British Broadcasting Corporation|BBC]] TV series in the [[1980s]] with [[Joan Hickson]], an octogenarian herself, who had appeared in a small role in the Rutherford film ''Murder, She Said''. The consensus among Christie devotees was that hers was the definitive performance. All twelve Miss Marple novels were dramatized: ''The Body in the Library''; ''The Moving Finger''; ''A Murder Is Announced''; ''A Pocket Full of Rye''; ''Murder at the Vicarage''; ''Sleeping Murder''; ''At Bertram's Hotel''; ''Nemesis''; ''4:50 from Paddington''; ''A Caribbean Mystery''; ''They Do It with Mirrors'' and ''The Mirror Crack'd from Side to Side''. All these serializations were shown in the United States on the [[PBS]] ''[http://www.pbs.org/wgbh/mystery/marple/index.html Mystery!]'' series. It was also televised in Germany. The television show followed the plots of the books considerably more closely than did the Rutherford films.
49515
49516 [[BBC Radio 4]] also dramatised several of the books with [[June Whitfield]] as Miss Marple.
49517
49518 [[Angela Lansbury]], after playing Miss Marple in ''The Mirror Crack'd'', went on to star in the TV series ''[[Murder, She Wrote]]'' as [[Jessica Fletcher]], a novelist who solves crimes. The character was to some degree based on Miss Marple and another Christie character, [[Ariadne Oliver]].
49519
49520 [[Image:Geraldine McEwan.jpg|thumb|right|Geraldine McEwan as Miss Marple]]
49521 In 2004, [[Granada Television]], in collaboration with [[Agatha Christie Limited]], produced four adaptations (namely ''The Body in the Library'', ''Murder in the Vicarage'', ''4.50 from Paddington'' and ''A Murder is Announced'') starring [[Geraldine McEwan]] in the title role, and also featuring [[Joanna Lumley]], [[Ian Richardson]], [[Zoe Wanamaker]], [[Miriam Margolyes]], [[Janet McTeer]], [[Derek Jacobi]], [[Claire Skinner]] and [[Stephen Tompkinson]] in supporting roles. In 2005 and 2006, four more mysteries are being made...but two of them aren't even Miss Marple books! They are [[Sleeping Murder]], [[The Moving Finger]], [[By the Pricking of My Thumbs (novel)]], and [[The Sittaford Mystery]].
49522
49523 In 2004, [[NHK]] (a Japanese TV network) produced a 39 episode [[anime]] series titled ''[[Agatha Christie's Famous Detectives Poirot and Marple]] (ã‚ĸã‚Ŧã‚ĩãƒģクãƒĒ゚テã‚Ŗãƒŧぎ名æŽĸåĩポワロとマãƒŧプãƒĢ, Agasa Kurisutii no Meitantei Powaro to Maapuru)'', as well as a manga series by the same title released starting in 2005. The series ran from [[July 4]], [[2004]] through [[May 15]], [[2005]], and is now being shown as [[rerun]]s on NHK and other networks in Japan. Poirot was voiced by [[Kōtarō Satomi]] (里čĻ‹ æĩŠå¤Ē朗, Satomi Kōtarō) and Miss Marple was voiced by [[Kaoru Yachigusa]] (å…Ģåƒč‰ č–Ģ, Yachigusa Kaoru).
49524
49525 {{Agatha Christie}}
49526
49527 ==External links==
49528
49529 *[http://www.screenonline.org.uk/tv/id/976602/index.html British Film Institute Screen Online (1980s TV adaptations)]
49530
49531 [[Category:Fictional detectives|Marple, Miss]]
49532 [[Category:Crime television series]]&lt;!-- until we get a separate article on the TV series --&gt;
49533 [[Category:BBC television programmes]]
49534 [[Category:Television programs based on novels]]
49535 [[Category:Series of books]]
49536 [[Category:English cultural icons]]
49537 [[Category:Agatha Christie]]
49538
49539 [[da:Miss Marple]]
49540 [[de:Miss Marple]]
49541 [[eo:Miss MARPLE]]
49542 [[fr:Miss Marple]]
49543 [[id:Miss Marple]]
49544 [[it:Miss Marple]]
49545 [[hu:Miss Marple]]
49546 [[nl:Miss Marple]]
49547 [[ja:ミ゚ãƒģマãƒŧプãƒĢ]]
49548 [[pl:Jane Marple]]
49549 [[pt:Miss Marple]]
49550 [[sl:Miss Marple]]
49551 [[sv:Miss Marple]]
49552 [[zh:įÂˇį‘Ēæŗĸ]]</text>
49553 </revision>
49554 </page>
49555 <page>
49556 <title>Apple (fruit)</title>
49557 <id>1003</id>
49558 <revision>
49559 <id>15899511</id>
49560 <timestamp>2003-06-30T01:13:13Z</timestamp>
49561 <contributor>
49562 <username>SimonP</username>
49563 <id>1591</id>
49564 </contributor>
49565 <text xml:space="preserve">#REDIRECT [[Apple]]</text>
49566 </revision>
49567 </page>
49568 <page>
49569 <title>April</title>
49570 <id>1004</id>
49571 <revision>
49572 <id>42000914</id>
49573 <timestamp>2006-03-03T03:34:31Z</timestamp>
49574 <contributor>
49575 <username>Anthonyken0109</username>
49576 <id>906087</id>
49577 </contributor>
49578 <comment>/* Trivia */</comment>
49579 <text xml:space="preserve">{{AprilCalendar}}
49580 {{wiktionarypar|April}}
49581 '''April''' is the [[fourth]] [[month]] of the [[year]] in the [[Gregorian Calendar]] and one of four with the length of 30 [[day]]s.
49582
49583 April begins (astrologically) with the sun in the sign of [[Aries]] and ends in the sign of [[Taurus]]. Astronomically speaking, the sun begins in the constellation of [[Pisces]] and ends in the constellation of [[Aries]].
49584
49585 The derivation of the name ([[Latin]] ''aprillis'') is uncertain. The traditional etymology from the Latin ''aperire'', &quot;to open,&quot; in allusion to its being the season when trees and flowers begin to &quot;open,&quot; is supported by comparison with the modern Greek use of &amp;alpha;&amp;#788;&amp;nu;&amp;omicron;&amp;iota;&amp;xi;&amp;iota;&amp;sigmaf; (opening) for spring. Since all the Roman months were named in honour of divinities, and as April was sacred to Venus, the ''Festum Veneris et Fortunae Virilis'' being held on the first day, it has been suggested that Aprilis was originally her month Aphrilis, from her Greek name Aphrodite, or from the [[Etruscan language|Etruscan]] name ''Apru''. Jacob Grimm suggests the name of a hypothetical god or hero, ''Aper'' or ''Aprus''
49586
49587 The Anglo-Saxons called April ''Oster-monath'' or ''Eostur-monath'', the period sacred to ''Eostre'' or ''Ostara'', the pagan Saxon goddess of spring, from whose name is derived the modern Easter. St George's day is the twenty-third of the month; and St Mark's Eve, with its superstition that the ghosts of those who are doomed to die within the year will be seen to pass into the church, falls on the twenty-fourth. In China the symbolical ploughing of the earth by the emperor and princes of the blood takes place in their third month, which frequently corresponds to our April; and in Japan the feast of Dolls is celebrated in the same month.
49588
49589 The &quot;days of April&quot; (''journÊes d'avril'') is a name appropriated in French history to a series of insurrections at Lyons, Paris and elsewhere, against the government of Louis Philippe in 1834, which led to violent repressive measures, and to a famous trial known as the ''procès d'avrill''.
49590
49591 April was originally the second month of the [[Roman calendar]] and had 29 days. [[Julius Caesar]]'s calendar [[Julian calendar|reform]] in [[45 BCE]] resulted in April having 30 days and becoming the fourth month, as the year now began in [[January]].
49592
49593 ==The tragic month of April==
49594 Wars that started/ended in April include
49595
49596 *[[U.S. Revolutionary War|American Revolution Started]] (Paul Revere's Ride: [[April 18]]-19 1775)
49597 *[[U.S. Civil War|American Civil War]] (Started April 1861, Ended April 1865, thus &quot;Across 5 Aprils&quot;)
49598 *The [[Bosnian War]] began in the first days April 1992
49599 *The [[Rwandan Genocide]] began in April 1994
49600
49601 Other Tragedies that have occurred in the month of April include
49602 *President [[Abraham Lincoln]]'s Assassination ([[April 14]] [[1865]])
49603 *1906 [[San Francisco Earthquake]] ([[April 18]] [[1906]])
49604 *The sinking of the [[RMS Titanic|RMS ''Titanic'']] ([[April 14]]-15,1912)
49605 *The [[Armenian Genocide]] ([[April 24]] [[1915]])
49606 *[[Martin Luther King Jr.]] Assassinated ([[April 4]] [[1968]])
49607 *Super Tornado Outbreak ([[April 3]]-4, 1974)
49608 *[[Chernobyl]] nuclear accident ([[April 26]] [[1986]])
49609 *The bloody end to the Branch Dividan siege in Waco, Texas ([[April 19]] [[1993]])
49610 *The [[Oklahoma City Bombing]] ([[April 19]] [[1995]])
49611 *In [[Lebanon]], 102 [[Lebanon|Lebanese]] civilians are killed when the [[Israel Defense Forces]] shell the [[UN]] compound at [[Qana]] (see [[Qana Massacre]]). ([[April 18]] [[1996]])
49612 *[[Columbine High School]] shooting ([[April 20]] [[1999]])
49613
49614 ==Trivia==
49615 *April begins on the same day of week as July in all years and also January in leap years.
49616 *April's [[flower]] is the [[Bellis|daisy]] and [[sweet pea]].
49617 *April's [[birthstone]] is the [[diamond]].
49618 *April in the [[Northern Hemisphere]] is the seasonal equivalent to [[October]] in the [[Southern Hemisphere]] and vise versa.
49619
49620 ==Events in Aprils==
49621 ===Monthlong events in April===
49622 *Chocolate Eaters Month
49623 *Poetry Month
49624 *Cancer Control Month
49625 *Marcus H. Birthday (National Holiday in Australia)
49626 *Child Abuse Prevention Month
49627 *International Guitar Month
49628 *Mathematics Education Month
49629 *National Humor Month
49630 *National Welding Month
49631 *National Smile Month
49632 *National Pecan Month
49633 *VD Awareness Month
49634 *Stress Awareness Month
49635 *Alcohol Awareness Month
49636 *Autism Awareness Month
49637 *Keep America Beautiful Month
49638
49639 ===Weeklong events in April===
49640 1st Week in April
49641 *Medic Alert Week
49642 *Cherry Blossom Festival
49643 *Publicity Stunt Week
49644 *National Birthparents Week
49645 *Week of the Young Child
49646 *Straw Hat Week
49647 *National Bake Week (begins 1st Mon)
49648 *Consider Christianity Week
49649 *National Reading a Road Map Week
49650
49651 2nd Week in April
49652 *Be Kind to Animals Week
49653 *Masters Golf Tournament
49654 *National Medical Laboratory Week
49655 *Private Property Week (10th-16th)
49656 *National Library Week
49657 *Harmony Week
49658 *National Garden Week
49659 *TV Turn-Off Week
49660 *National Guitar Week
49661 *National Building Safety Week
49662 *National Home Safety Week
49663
49664 3rd Week in April
49665 *National Police Week
49666 *Boys and Girls Club Week
49667 *National Coin Week
49668 *Bike Safety Week
49669 *National Bubblegum Week
49670 *Pan American Week
49671 *National Week of the Ocean
49672 *National Crime Victims’ Rights Week
49673 *National Volunteer Week
49674 *National Adult Films Week
49675
49676 Last Week in April
49677 *Forest Week
49678 *National Lingerie Week
49679 *Canada-US Goodwill Week
49680 *Big Brothers/Sisters Appreciation Week
49681 *Consumer Protection Week
49682 *National TV-Free Week
49683 *Jewish Heritage Week
49684 *Keep America Beautiful Week
49685 *National YMCA Week
49686 *Professional Secretaries Week
49687 *Intergenerational Week
49688 *Reading Is Fun Week
49689 *Egg Salad Week
49690 *Teacher Appreciation Week (begins Last Mon)
49691
49692 A Week in April
49693 *Astronomy Week (determined by 1st Quarter Moon)
49694
49695 ===April movable daily holidays===
49696 1st Sunday
49697 *Set-Your Clock-Forward-Day (Daylight Saving Time begins in the United States; turn your clock ahead at 2:00 a.m.)
49698 *Budoha Day (Hawaii)
49699 *Vesak (Buddha's Birthday)
49700 1st Saturday
49701 *Saturday Market Day (Oregon)
49702 1st Saturday before 5th
49703 *Tax Saturday (UK)
49704 1st Thursday
49705 *Glarus Festival (Switzerland)
49706 1st Friday
49707 *Student Government Day (Massachusetts)
49708 Friday after 1st
49709 *Arbor Day (Apache, Navajo, Coconino, Mohave, Yavapai; Arizona)
49710 2nd Friday
49711 *Audubon Day
49712 3rd Sunday &amp; Monday
49713 *Sechselauten (Six Ringing Festival; Switzerland)
49714 3rd Monday
49715 *Patriot's Day (Maine, Massachusetts)
49716 *Boston Marathon
49717 Thursday between 19th &amp; 26th
49718 *First Day of Summer (Iceland)
49719 Saturday nearest St. George's Day (23rd)
49720 *Peppercorn Day (Bermuda)
49721 Monday nearest Feast Day of St. George (23rd)
49722 *St. George's Day (Newfoundland)
49723 Sunday after 1st full moon after vernal equinox following Passover
49724 *Lambri (Bright Day; Greece)
49725 3rd Monday
49726 *Patriots' Day (Maine, Massachusetts)
49727 4th Monday
49728 *Fast Day (New Hampshire)
49729 4th Thursday
49730 *Take Our Daughters (and Sons) to Work Day
49731 4th Weekend
49732 *Just Pray No weekend
49733 Last Monday
49734 *Confederate Memorial Day (Alabama, Mississippi)
49735 Last Friday
49736 *Arbor Day
49737 *Bird Day
49738 Wednesday of Last Full Week
49739 *Administrative Professionals Day
49740 Last Saturday
49741 *[[National Sense of Smell Day]] ([[USA]])
49742
49743 ===April Indeterminate Holidays===
49744 Full Moon Day of 6th Buddhist month (@ Apr/May)
49745 *Vesak
49746 Sun enters Aries
49747 *Solar New Year (Southeast Asia)
49748 *aka Thingyan (Burma)
49749 *aka Songkran (Thailand)
49750 10th through 15th Day of 2nd lunar month
49751 *Paro Tsechu (Bhutan)
49752 During planting season (@ Apr/May)
49753 *Tyi Wara (Mali)
49754 Early April to late July (every 4 years)
49755 *Summer Olympics begin
49756 Late April or May
49757 *Alp Aufzug (Switzerland)
49758 Before 1st rainfall (@ Apr/May)
49759 *Bobo Masquerade (Burkina Faso)
49760 Sometime in April
49761 *World Championship Cow Chip Throwing Contest
49762 *Palm Sunday - Christian
49763 *Palm Sunday - Armenian Christian
49764 *Good Friday - Christian
49765 *Easter - Christian
49766 *Pesach (Passover) - Jewish
49767
49768 ===Other special days===
49769 *April Fools' Day ([[April 1]])
49770
49771 ==See also==
49772 * [[List of historical anniversaries]]
49773 * [[April-Fools' Day]]
49774
49775 ==References==
49776 * Chambers's ''Book of Days''
49777 * Grimm's ''Geschichte der deutschen Sprache''. Cap. &quot;Monate&quot;
49778 * {{1911}}
49779
49780 {{months}}
49781
49782 [[Category:Months]]
49783
49784 [[af:April]]
49785 [[an:Abril]]
49786 [[ang:ĒastermōnaÞ]]
49787 [[ar:ØĨØ¨ØąŲŠŲ„]]
49788 [[ast:Abril]]
49789 [[be:КŅ€Đ°ŅĐ°Đ˛Ņ–Đē]]
49790 [[bg:АĐŋŅ€Đ¸Đģ]]
49791 [[br:Ebrel]]
49792 [[bs:April]]
49793 [[ca:Abril]]
49794 [[cs:Duben]]
49795 [[csb:ŁÅŧÃĢkwiôt]]
49796 [[cv:АĐēĐ°]]
49797 [[cy:Ebrill]]
49798 [[da:April]]
49799 [[de:April]]
49800 [[el:ΑĪ€ĪÎ¯ÎģΚÎŋĪ‚]]
49801 [[eo:Aprilo]]
49802 [[es:Abril]]
49803 [[et:Aprill]]
49804 [[eu:Apiril]]
49805 [[fa:ØĸŲˆØąÛŒŲ„]]
49806 [[fi:Huhtikuu]]
49807 [[fo:Apríl]]
49808 [[fr:Avril]]
49809 [[fur:AvrÃŽl]]
49810 [[fy:April]]
49811 [[ga:AibreÃĄn]]
49812 [[gl:Abril]]
49813 [[he:אפריל]]
49814 [[hr:Travanj]]
49815 [[hu:Április]]
49816 [[ia:April]]
49817 [[id:April]]
49818 [[ie:April]]
49819 [[ilo:Abril]]
49820 [[io:Aprilo]]
49821 [[is:Apríl]]
49822 [[it:Aprile]]
49823 [[ja:4月]]
49824 [[jv:April]]
49825 [[ka:აპრილი]]
49826 [[kn:ā˛Žā˛Ēāŗā˛°ā˛ŋā˛˛āŗ]]
49827 [[ko:4ė›”]]
49828 [[ku:AvrÃĒl]]
49829 [[kw:Mys Ebrel]]
49830 [[la:Aprilis]]
49831 [[lb:AbrÃĢll]]
49832 [[li:April]]
49833 [[lt:Balandis]]
49834 [[lv:AprÄĢlis]]
49835 [[mi:Paenga-whāwhā]]
49836 [[mr:ā¤ā¤ĒāĨā¤°ā¤ŋā¤˛]]
49837 [[ms:April]]
49838 [[nap:Abbrile]]
49839 [[nl:April]]
49840 [[nn:April]]
49841 [[no:April]]
49842 [[oc:Abril]]
49843 [[pl:Kwiecień]]
49844 [[pt:Abril]]
49845 [[ro:Aprilie]]
49846 [[ru:АĐŋŅ€ĐĩĐģŅŒ]]
49847 [[scn:Aprili]]
49848 [[sco:Aprile]]
49849 [[se:CuoŋomÃĄnnu]]
49850 [[simple:April]]
49851 [[sk:Apríl]]
49852 [[sl:April]]
49853 [[sq:Prilli]]
49854 [[sr:АĐŋŅ€Đ¸Đģ]]
49855 [[sv:April]]
49856 [[ta:āŽāŽĒā¯āŽ°āŽ˛ā¯]]
49857 [[th:āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
49858 [[tl:Abril]]
49859 [[tpi:Epril]]
49860 [[tr:Nisan]]
49861 [[tt:Äpril]]
49862 [[uk:КвŅ–Ņ‚ĐĩĐŊŅŒ]]
49863 [[ur:اŲžØąŲŠŲ„]]
49864 [[vi:ThÃĄng tÆ°]]
49865 [[vo:Prilul]]
49866 [[wa:Avri]]
49867 [[zh:4月]]</text>
49868 </revision>
49869 </page>
49870 <page>
49871 <title>August</title>
49872 <id>1005</id>
49873 <revision>
49874 <id>42001275</id>
49875 <timestamp>2006-03-03T03:38:27Z</timestamp>
49876 <contributor>
49877 <username>Anthonyken0109</username>
49878 <id>906087</id>
49879 </contributor>
49880 <comment>/* Trivia */</comment>
49881 <text xml:space="preserve">{{AugustCalendar}}
49882
49883 '''August''' is the [[eighth]] month of the [[year]] in the [[Gregorian Calendar]] and one of seven Gregorian months with the length of 31 [[days]].
49884
49885 August begins (astrologically) with the sun in the sign of [[Leo]] and ends in the sign of [[Virgo]]. Astronomically speaking, the sun begins in the constellation of [[Cancer (constellation)|Cancer]] and ends in the constellation of [[Leo]].
49886
49887 August was named in honor of [[Augustus]]. The month reputedly has 31 days because Augustus wanted as many days as [[Julius Caesar]]'s [[July]]. Augustus placed the month where it is because that is when [[Cleopatra VII of Egypt|Cleopatra]] died. Before Augustus renamed August, it was called ''[[Sextilis]]'' in [[Latin]], since it was the sixth month in the [[Roman calendar]] which started in [[March]].
49888
49889 In the [[neopaganism|pagan]] [[wheel of the year]] August begins at or near [[Lughnasadh]] in the [[northern hemisphere]] and [[Imbolc]] in the [[southern hemisphere]].
49890
49891 In [[Ireland]], (in the [[Irish language]]) August is known as '''LÃēnasa''', a modern rendition of [[Lughnasadh]], named after the god [[Lugh]] and [[August 1]], (LÃĄ LÃēnasa) in the [[Irish Calendar]] is still regarded as the first day of [[Autumn]]. The first Monday in August is one of the [[public holidays in the Republic of Ireland]].
49892
49893 In the [[Japanese calendar|old Japanese calendar]], the month is called ''hatsuki'' (&amp;#33865;&amp;#26376;).
49894
49895 In [[Finnish language|Finnish]], the month is called ''elokuu'', meaning &quot;month of reaping&quot;.
49896
49897 In the [[UK]], August is generally when all academic exam results are published, especially for [[GCSE]]s and [[A-Levels]] as well as other exams. Also, scholars and school workers such as teachers, have a holiday or non-contact time, and there are two bank holidays (UK). It is typically when people go on holiday due to the availability of time.
49898
49899 During August 13 to 19, [[Philippines]] schools and theaters celebrate the National Week of the [[Tagalog|Filipino]] Language.
49900
49901 In [[Spain]], August is the holiday month for most workers.
49902
49903 In [[Brazil]], folk superstition associates bad luck to August, with the proverb ''&quot;Agosto, o mÃĒs do desgosto&quot;'' (&quot;August, the month of misfortune&quot;) being often heard. This may come from the sinister memories of the [[Bartholomew|St. Bartholomew]]'s day (August 24), which is particularly dreaded in the Northeast of the country. August 24 is also, in the tradition of [[CandomblÊ]], the day of [[Eshu]], one of the most malevolent deities. Coincidentally, some unfortunate polical events took place in August, like the suicide of the then President [[GetÃēlio Vargas]]. [http://www.tvgazeta.com.br/todoseu/assuntos_programas_notas.php?v_id_notas=55&amp;r_titulo=A]
49904
49905 Every last Sunday of August, the [[Philippines]] celebrates National Heroes Day in commemoration of the First Cry of the Philippine Revolution on [[August 23]], [[1896]].
49906
49907 August is also the name of a Japanese [[visual novel]] company.
49908
49909 ==Events &amp; Months in August==
49910 * National Back To School Month
49911 * National Investors Month
49912 * Admit You're Happy Month
49913 * Women's Small Business Month
49914
49915 ==Trivia==
49916 [[Image:Les Très Riches Heures du duc de Berry aout.jpg|right|thumb|August, from the ''Très riches heures du duc de Berry'']]
49917
49918 *'''August''' begins on the same day of the week as '''February''' in a leap year.
49919 *August's [[flower]] is the [[poppy]].
49920 *August's [[birthstone]] is the [[peridot]].
49921 *August contains no [[United States]] holiday.
49922 *August in the [[Northern Hemisphere]] is the seasonal equivalent to [[February]] in the [[Southern Hemisphere]] and vise versa.
49923 {{wiktionary}}
49924 {{months}}
49925
49926 [[Category:Months]]
49927
49928 [[af:Augustus]]
49929 [[als:August]]
49930 [[ang:WēodmōnaÞ]]
49931 [[ar:ØŖØēØŗØˇØŗ]]
49932 [[an:Agosto]]
49933 [[ast:Agostu]]
49934 [[bg:АвĐŗŅƒŅŅ‚]]
49935 [[be:ЖĐŊŅ–вĐĩĐŊŅŒ]]
49936 [[bs:August]]
49937 [[br:Eost]]
49938 [[ca:Agost]]
49939 [[ceb:Agosto]]
49940 [[cv:ÇŅƒŅ€ĐģĐ°]]
49941 [[cs:Srpen]]
49942 [[cy:Awst]]
49943 [[da:August]]
49944 [[de:August]]
49945 [[et:August]]
49946 [[el:ΑĪÎŗÎŋĪ…ĪƒĪ„ÎŋĪ‚]]
49947 [[es:Agosto]]
49948 [[eo:AÅ­gusto]]
49949 [[eu:Abuztu]]
49950 [[fa:اŲˆØĒ]]
49951 [[fo:August]]
49952 [[fr:AoÃģt]]
49953 [[fy:Augustus]]
49954 [[fur:Avost]]
49955 [[ga:LÃēnasa]]
49956 [[gl:Agosto]]
49957 [[ko:8ė›”]]
49958 [[hr:Kolovoz]]
49959 [[io:Agosto]]
49960 [[id:Agustus]]
49961 [[ia:Augusto]]
49962 [[ie:August]]
49963 [[is:ÁgÃēst]]
49964 [[it:Agosto]]
49965 [[he:אוגוסט]]
49966 [[jv:Agustus]]
49967 [[kn:ā˛†ā˛—ā˛¸āŗā˛Ÿāŗ]]
49968 [[ka:აგვისáƒĸო]]
49969 [[csb:ZÊlnik]]
49970 [[kw:Mys Est]]
49971 [[ku:GelawÃĒj (meh)]]
49972 [[la:Augustus (mensis)]]
49973 [[lv:Augusts]]
49974 [[lt:RugpjÅĢtis]]
49975 [[lb:August]]
49976 [[li:Augustus (maond)]]
49977 [[hu:Augusztus]]
49978 [[mi:Here-turi-kōkā]]
49979 [[mr:ā¤‘ā¤—ā¤¸āĨā¤Ÿ]]
49980 [[ms:Ogos]]
49981 [[nap:AÚsto]]
49982 [[nl:Augustus (maand)]]
49983 [[ja:8月]]
49984 [[no:August]]
49985 [[nn:August]]
49986 [[oc:Agost]]
49987 [[pl:Sierpień]]
49988 [[pt:Agosto]]
49989 [[ro:August]]
49990 [[ru:АвĐŗŅƒŅŅ‚]]
49991 [[se:BorgemÃĄnnu]]
49992 [[sco:August]]
49993 [[sq:Gushti]]
49994 [[scn:Austu]]
49995 [[simple:August]]
49996 [[sk:August]]
49997 [[sl:Avgust]]
49998 [[sr:АвĐŗŅƒŅŅ‚]]
49999 [[su:Agustus]]
50000 [[fi:Elokuu]]
50001 [[sv:Augusti]]
50002 [[tl:Agosto]]
50003 [[ta:āŽ†āŽ•āŽ¸ā¯āŽŸā¯]]
50004 [[tt:August]]
50005 [[th:ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
50006 [[vi:ThÃĄng tÃĄm]]
50007 [[tpi:Ogas]]
50008 [[tr:Ağustos]]
50009 [[uk:ĐĄĐĩŅ€ĐŋĐĩĐŊŅŒ]]
50010 [[ur:اگØŗØĒ]]
50011 [[vo:Gustul]]
50012 [[wa:Awousse]]
50013 [[zh:8月]]</text>
50014 </revision>
50015 </page>
50016 <page>
50017 <title>Aaron</title>
50018 <id>1006</id>
50019 <revision>
50020 <id>41885933</id>
50021 <timestamp>2006-03-02T10:28:34Z</timestamp>
50022 <contributor>
50023 <username>Waggers</username>
50024 <id>878293</id>
50025 </contributor>
50026 <minor />
50027 <comment>Revert to revision 41655597 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
50028 <text xml:space="preserve">:''For other uses of the word Aaron, see [[Aaron (disambiguation)]].''
50029
50030 [[Image:GoldCalf.jpg|thumb|right|]]
50031
50032 '''Aaron'''
50033 ('''&amp;#1488;&amp;#1463;&amp;#1492;&amp;#1458;&amp;#1512;&amp;#1465;&amp;#1503;''', a word meaning &quot;bearer of martyrs&quot; in Hebrew (perhaps also, or instead, related to the [[Egyptian language|Egyptian]] &quot;Aha Rw,&quot; &quot;Warrior Lion&quot;), [[Standard Hebrew]] '''Aharon''', [[Tiberian Hebrew]] '''&amp;#702;Ah&amp;#259;r&amp;#333;n'''), was one of two brothers who play a unique part in the history of the [[Hebrew people]]. He was the elder son of [[Amram]] and [[Jochebed]] of the tribe of [[Levi]]; [[Moses]], the other son, being three years younger, and [[Miriam]], their sister, several years older ([[Exodus]] 2:4; [[Exodus]] 6:16 ff.; [[Numbers]] 33:39). Aaron was the great-grandson of [[Levi]] ([[Exodus]] 6:16-20) and represented the priestly functions of his tribe. While [[Moses]] was receiving his education at the [[Egypt]]ian court and during his exile among the [[Midianites]], Aaron and his sister remained with their kinsmen in the eastern border-land of [[Egypt]]. Here he gained a name for eloquent and persuasive speech; so that when the time came for the demand upon [[Pharaoh]] to release Israel from captivity, Aaron became his brother’s ''nabi '', or spokesman, to his own people ([[Exodus]] 4:16) and, after their unwillingness to hear, to [[Pharaoh]] himself ([[Exodus]] 7:9).
50034
50035 ==His function==
50036 Aaron’s function included the duties of speaker and implied personal dealings with the court on behalf of [[Moses]], who was always the central moving figure. The part played by Aaron in the events that preceded the [[Exodus]] was, therefore, ministerial, and not directive. He, along with [[Moses]], performed “signs” before his people which impressed them with a belief in the reality of the divine mission of the brothers ([[Exodus]] 4:15-16). At the command of [[Moses]] he stretched out his rod in order to bring on the first three plagues ([[Exodus]] 7:19, 8:1, 12). In the infliction of the remaining plagues he appears to have acted merely as the attendant of [[Moses]], whose outstretched rod drew the divine wrath upon [[Pharaoh]] and his subjects ([[Exodus]] 9:23, 10:13, 22). The potency of Aaron’s rod had already been demonstrated by its victory over the rods of the [[Egypt]]ian magicians, which it swallowed after all the rods alike had been turned into serpents ([[Exodus]] 7:9 ''et seq.''). During the journey in the wilderness Aaron is not always prominent or active; and he sometimes appears guilty of rebellious or treasonable conduct. At the battle with [[Amalek]] he is chosen with [[Hur]] to support the hand of [[Moses]] that held the “rod of [[God]]” ([[Exodus]] 17:9 ''et seq.''). When the revelation was given to [[Moses]] at [[Sinai]], he headed the elders of Israel who accompanied [[Moses]] on the way to the summit. [[Joshua]], however, was admitted with his leader to the very presence of [[the Lord]], while Aaron and [[Hur]] remained below to look after the people ([[Exodus]] 24:9-14). It was during the prolonged absence of [[Moses]] that Aaron yielded to the clamors of the people, and made a golden calf as a visible image of the divinity who had delivered them from [[Egypt]] ([[Exodus]] 32:1-6). At the intercession of [[Moses]], Aaron was saved from the plague which smote the people ([[Deuteronomy]] 9:20; [[Exodus]] 32:35), although it was to Aaron’s tribe of [[Levi]] that the work of punitive vengeance was committed ([[Exodus]] 32:26 ''et seq.'').
50037
50038 ==Becomes priest of Israel==
50039 At the time when the tribe of [[Levi]] was set apart for the priestly service, Aaron was anointed and consecrated to the priesthood, arrayed in the robes of his office, and instructed in its manifold duties ([[Exodus]] 28 and 29). On the very day of his consecration his sons, [[Nadab|Nadav]] and [[Abihu|Avihu]], were consumed by fire from [[the Lord]] for having offered incense in an unlawful manner ([[Leviticus]] 10).
50040
50041 ==Rebellion of [[Korah]]==
50042 From the time of the sojourn at [[Sinai]], where he became the anointed priest of Israel, Aaron ceased to be the minister of [[Moses]], his place being taken by [[Joshua]]. He is mentioned in association with [[Miriam]] in a jealous complaint against the exclusive claims of [[Moses]] as [[the Lord]]’s prophet. The presumption of the murmurers was rebuked, and [[Miriam]] was smitten with ''tzara'as''. Aaron entreated [[Moses]] to intercede for her, at the same time confessing the sin and folly that prompted the uprising. Aaron himself was not struck with the plague on account of sacerdotal immunity; and [[Miriam]], after seven days’ quarantine, was healed and restored to favor ([[Numbers]] 12). It is noteworthy that the prophet [[Micah]] (6:4) mentions [[Moses]], Aaron, and [[Miriam]] as the leaders of Israel after the [[Exodus]] (a judgment wholly in accord with the tenor of the narratives). In the present instance it is made clear by the express words of the oracle ([[Numbers]] 12:6-8) that [[Moses]] was unique among men as the one with whom [[the Lord]] spoke face to face. The failure to recognize or concede this prerogative of their brother was the sin of [[Miriam]] and Aaron. The validity of the exclusive priesthood of the family of Aaron was attested after the ill-fated rebellion of [[Korah]], who was a first cousin of Aaron. When the earth had opened and swallowed up the leaders of the insurgents ([[Numbers]] 16:25-35), [[Eleazar]], the son of Aaron, was commissioned to take charge of the censers of the dead priests. And when the plague had broken out among the people who had sympathized with the rebels, Aaron, at the command of [[Moses]], took his censer and stood between the living and the dead till the plague was stayed ([[Numbers]] 17:1-15, 16:36-50, Authorized Version). Another memorable transaction followed. Each of the tribal princes of Israel took a rod and wrote his name upon it, and the twelve rods were laid up over night in the tent of meeting. On the morrow Aaron’s rod was found to have budded and blossomed and borne ripe almonds ([[Numbers]] 17:8; see [[Aaron’s Rod]]). The miracle proved merely the prerogative of the tribe of [[Levi]]; but now a formal distinction was made in perpetuity between the family of Aaron and the other [[Levites]]. While all the [[Levites]] (and only [[Levites]]) were to be devoted to sacred services, the special charge of the sanctuary and the altar was committed to the Aaronites alone ([[Numbers]] 18:1-7). The scene of this enactment is unknown, nor is the time mentioned.
50043
50044 ==Death==
50045 Aaron, like [[Moses]], was not permitted to enter [[Canaan]] with the successful invaders. The reason alleged is that the two brothers showed impatience at Meribah (Kadesh) in the last year of the desert pilgrimage ([[Numbers]] 20:12, 13), when they, or rather [[Moses]], brought water out of a rock to quench the thirst of the people. The action was construed as displaying a want of deference to [[the Lord]], since they had been commanded to speak to the rock, whereas [[Moses]] struck it with the wonder-working rod ([[Numbers]] 20:7-11). Of the death of Aaron we have two accounts. The principal one gives a detailed statement to the effect that, soon after the above incident, Aaron, with his son [[Eleazar]] and [[Moses]], ascended [[Mount Hor]]. There [[Moses]] stripped him (Aaron) of his priestly garments, and transferred them to [[Eleazar]]. Aaron died on the summit of the mountain, and the people mourned for him thirty days ([[Numbers]] 20:22-29; compare 33:38, 39). The other account is found in [[Deuteronomy]] 10:6, where [[Moses]] is reported as saying that Aaron died at [[Mosera]] and was buried there. Some scholars think that [[Mosera]] is not on [[Mount Hor]], since the itinerary in [[Numbers]] 33:31-37 records seven stages between [[Moseroth]] ([[Mosera]]) and [[Mount Hor]].
50046
50047 ==Typical signification in apocryphal and rabbinical literature==
50048 The older prophets and prophetical writers beheld in their priests the representatives of a religious form inferior to the prophetic truth; men without the spirit of [[God]] and lacking the will-power requisite to resist the multitude in its idolatrous proclivities. Thus Aaron, the typical priest, ranks far below [[Moses]]: he is but his mouthpiece, and the executor of the will of [[God]] revealed through [[Moses]], although it is pointed out (Sifra, Wa-yiá¸ŗra, 1) that it is said fifteen times in the Pentateuch that “[[the Lord]] spoke to [[Moses]] ''and'' Aaron.” Under the influence of the priesthood which shaped the destinies of the nation under [[Persians|Persian]] rule, a different ideal of the priest was formed, as is learned from [[Malachi]] 2:4-7; and the prevailing tendency was to place Aaron on a footing equal with [[Moses]]. “At times Aaron, and at other times [[Moses]], is mentioned first in Scripture—this is to show that they were of equal rank,” says Mekilta בא, 1; and [[Ecclesiasticus]] ([[Sirach]]), 44:6-24, expressly infers this when introducing in his record of renowned men the glowing description of Aaron’s ministration.
50049
50050 ==[[Moses]] and Aaron compared==
50051 According to Taná¸Ĩuma (ed. Buber, 2:12), Aaron’s activity as a prophet began earlier than that of [[Moses]]. The writer of the Testaments of the Patriarchs, however, hesitates to rank [[Moses]] the faithful, “him that speaks with [[God]] as with a father,” as equal with Aaron (Testament of [[Levi]], 8:17). The rabbis are still more emphatic in their praise of Aaron’s virtues. Thus Hillel, who in Herod’s time saw before him mainly a degenerate class of priests, selfish and quarrelsome, held Aaron of old up as a mirror, saying: “Be of the disciples of Aaron, loving peace and pursuing peace; love your fellow creatures and draw them nigh unto the Law!” (Abot, 1:12). This is further illustrated by the tradition preserved in Abot de-Rabbi Natan 12, Sanhedrin 6b, and elsewhere, according to which Aaron was an ideal priest of the people, far more beloved for his kindly ways than was [[Moses]]. While [[Moses]] was stern and uncompromising, brooking no wrong, Aaron went about as peacemaker, reconciling man and wife when he saw them estranged, or a man with his neighbor when they quarreled, and winning evil-doers back into the right way by his friendly intercourse. The mourning of the people at Aaron’s death was greater, therefore, than at that of [[Moses]]; for whereas, when Aaron died the whole house of Israel wept, including the women ([[Numbers]] 20:29), [[Moses]] was bewailed by “the sons of Israel” only ([[Deuteronomy]] 34:8). Even in the making of the Golden Calf the rabbis find extenuating circumstances for Aaron (Sanhedrin 7a). His fortitude and silent submission to the will of [[God]] on the loss of his two sons are referred to as an excellent example to men how to glorify [[God]] in the midst of great affliction (Zebaá¸Ĩim 115b; [[Josephus]], “[[Antiquities of the Jews]]” 3:8, § 7). Especially significant are the words represented as being spoken by [[God]] after the princes of the [[Twelve Tribes]] had brought their dedication offerings into the newly reared Tabernacle: “Say to thy brother Aaron: Greater than the gifts of the princes is thy gift; for thou art called upon to kindle the light, and, while the sacrifices shall last only as long as the Temple lasts, thy light of the Law shall last forever” (Taná¸Ĩuma, ed. Buber, בה×ĸלו×Ēך, 6).
50052
50053 ==Death of Aaron==
50054 In fulfillment of the promise of peaceful life, symbolized by the pouring of oil upon his head ([[Leviticus]] Rabbah 10, Midrash Tehilim 133:1), Aaron’s death, as described in the Haggadah, was of a wonderful tranquillity. Accompanied by [[Moses]], his brother, and by [[Eleazar]], his son, Aaron went to the summit of [[Mount Hor]], where the rock suddenly opened before him and a beautiful cave lit by a lamp presented itself to his view. “Take off thy priestly raiment and place it upon thy son [[Eleazar]]!” said [[Moses]]; “and then follow me.” Aaron did as commanded; and they entered the cave, where was prepared a bed around which angels stood. “Go lie down upon thy bed, my brother,” [[Moses]] continued; and Aaron obeyed without a murmur. Then his soul departed as if by a kiss from [[God]]. The cave closed behind [[Moses]] as he left; and he went down the hill with [[Eleazar]], with garments rent, and crying: “Alas, Aaron, my brother! thou, the pillar of supplication of Israel!” When the Israelites cried in bewilderment, “Where is Aaron?” angels were seen carrying Aaron’s bier through the air. A voice was then heard saying: “The law of truth was in his mouth, and iniquity was not found on his lips: he walked with me in righteousness, and brought many back from sin” ([[Malachi]] 2:6, 7). He died, according to Seder ‘Olam R. 9, Rosh ha-Shanah 2, 3a, and [[Josephus]], “[[Antiquities of the Jews]]” 4:4, § 7, on the first of Ab. [[Josephus]] says also that “he died while the multitude looked upon him.” The pillar of cloud which proceeded in front of Israel’s camp disappeared at Aaron’s death (see Seder ‘Olam, 9 and Rosh ha-Shanah 2b-3a). The seeming contradiction between [[Numbers]] 20:22 ''et seq.'' and [[Deuteronomy]] 10:6 is solved by the rabbis in the following manner: Aaron’s death on [[Mount Hor]] was marked by the defeat of the people in a war with the king of Arad, in consequence of which the Israelites fled, marching seven stations backward to [[Moseroth|Mosera]], where they performed the rites of mourning for Aaron; wherefore it is said: “There [at [[Moseroth|Mosera]]] died Aaron.” See Mekilta, Beshallaá¸Ĩ, Wayassa’, 1; Taná¸Ĩuma, Huá¸ŗá¸ŗat, 18; Yerushalmi Soáš­ah, 1:17c, and Targum Yerushalmi [[Numbers]] and [[Deuteronomy]] on the above-mentioned passages.
50055 The rabbis also dwell with special laudation on the brotherly sentiment which united Aaron and [[Moses]]. When the latter was appointed ruler and Aaron high priest, neither betrayed any jealousy; instead they rejoiced in one another’s greatness. When [[Moses]] at first declined to go to [[Pharaoh]], saying: “O my Lord, send, I pray thee, by the hand of him whom thou wilt send” ([[Exodus]] 4:13), he was unwilling to deprive Aaron, his brother, of the high position the latter had held for so many years; but [[the Lord]] reassured him, saying: “Behold, when he seeth thee, he will be glad in his heart” ([[Exodus]] 4:14). Indeed, Aaron was to find his reward, says Simon ben Yoá¸Ĩai; for that heart which had leaped with joy over his younger brother’s rise to glory greater than his was decorated with the Urim and Thummim, which were to “be upon Aaron’s heart when he goeth in before [[the Lord]]” (Canticles Rabbah 1:10). [[Moses]] and Aaron met in gladness of heart, kissing each other as true brothers ([[Exodus]] 4:27; compare [[Song of Songs]], 8:1), and of them it is written: “Behold how good and how pleasant [it is] for brethren to dwell together in unity!” ([[Psalms]] 133:1). Of them it is said ([[Psalms]] 85:10): “Mercy and truth are met together; righteousness and peace have kissed [each other]”; for [[Moses]] stood for righteousness, according to [[Deuteronomy]] 33:21, and Aaron for peace, according to [[Malachi]] 2:6. Again, mercy was personified in Aaron, according to [[Deuteronomy]] 33:8, and truth in [[Moses]], according to [[Numbers]] 12:7 (Taná¸Ĩuma, Shemot, ed. Buber, 24-26).
50056 When [[Moses]] poured the oil of anointment upon the head of Aaron, Aaron modestly shrank back and said: “Who knows whether I have not cast some blemish upon this sacred oil so as to forfeit this high office.” Then the Holy Spirit spake the words: “Behold the precious ointment upon the head, that ran down upon the beard of Aaron, that even went down to the skirts of his garment, is as pure as the dew of [[Hermon]]” ([[Psalms]] 133:2, 3, ''Heb''.; Sifra, Shemini, Milluim; Taná¸Ĩuma, [[Korah]], ed. Buber, 14).

50057
50058 ==Genetics==
50059 Recently, the tradition that [[Kohanim]] are actually descended from Aaron was supported by [[genetic testing]] (Skorecki et al., 1997). Since all direct male lineage shares a common [[Y chromosome]], testing was done across sectors of the Jewish population to see if there was any commonality between their Y chromosomes. There was proven to be certain distinctions among the [[Cohen modal haplotype]], implying that the Kohanim do share some common ancestry. This information was used to support the claim of the [[Lemba]] (a [[sub-Saharan]] tribe) that they were in fact, a tribe of Jews.
50060
50061 ==According to the documentary hypothesis==
50062 The Biblical representation of his character, negative and shadowy compared with Moses's, may be viewed in several ways. A clue to the seemingly contradictory delineations of Aaron (other than the obvious explanation that he is a complex character) is found in the framework of documentary analysis (see also ''[[Hexateuch]]''), which is accepted by some but not all scholars. According to those who accept the [[documentary hypothesis]], the following portions of text belong to (1) [[Elohist|E]], (2) [[Jahwist|J]], (3) [[Deuteronomist|D]], and (4) [[Priestly source|P]] sources, respectively, with the fifth item being from ''[[Book of Ezekiel|Ezekiel]]''.
50063
50064 #'''Aaron as fallible'''. These passages do not represent Aaron as a sacrosanct [[priest]]. He comes to meet Moses (''Exodus'' 4:14), supports him in war (Exodus 17:12) and jurisprudence (Exodus 24:14). He yields to the people and makes the [[Golden Calf|calf]] (Exodus 32), and, with [[Miriam]], [[Snow-white Miriam|criticises Moses]] for marrying a [[Cush]]ite woman. Miriam is subsequently punished (''Numbers'' 12). He is present at the sacrificial covenant meal between [[Israel]] and the [[Kenite]]s (Exodus 18:12). In this aspect, [[Joshua]], instead of Aaron, serves in the Tent (Exodus 33:11).
50065 #'''Aaron as Moses's prophet'''. This representation concerns the covenant meal on [[Sinai]] (Exodus 24:1, 2, 9-11) and the vague charge that Aaron &quot;let the people loose&quot; (Exodus 32:25). Aaron seems to be an afterthought in the plague narrative (Exodus 8:25). In both this and the last view, Moses is the viceregent of God and Aaron is Moses' prophet (Exodus 4:16, 7:1).
50066 #'''Aaron as idolatrous'''. In ''[[Deuteronomy]]'' 9, Aaron is partly responsible for the building of the [[Golden Calf]]. The story says that [[Yahweh]] is so angry toward Aaron that he was about to destroy him. It appears that it is only Moses's intercessory prayer and his destruction of the Golden Calf which saves Aaron. The account of his death in Deuteromy 10:6 is different from that in Numbers 20:22. According to Deuteronomy it occurred at [[Moseroth|Moserah]], seven stations from [[Mount Hor]] (Numbers 33:30), in the early months of the wandering because of the sign of the Golden Calf. The only other passage in reference to Aaron in Deuteronomy merely states that he is the brother of Moses (Deuteronomy 32:50).
50067 #'''Aaron as subordinate'''. The first three, simpler, plagues Aaron brings on at Moses' command; thereafter Moses himself is the actor. In the narratives (Numbers 16, 17) it is Moses in each case who vindicates him. Aaron dies at Mount Hor in the fortieth year of the Exodus (Numbers 20:22, 33:38), because of rebellion at [[Meribah]] (cf. Deuteronomy as above).
50068 #'''Aaron as non-priestly'''. In ''[[Leviticus]]'' 17-26, Aaron appears only in redactional passages connecting the [[Law of Holiness]] with its present context. In ''Ezekiel'' 40-48 Zadok, not Aaron, is the eponym of the priestly line (44:15, etc.).
50069
50070 ==In the Qur’an==
50071 In the [[Qur'an]] he is known as [[Harun]].
50072
50073 ==References==
50074 *''[[Numbers]] Rabbah'' 9
50075 *''[[Leviticus]] Rabbah'' 10

50076 *''Midrash Peṭirat Aharon'' in Jellinek’s ''Bet ha-Midrash'', 1:91-95

50077 *''Yalá¸ŗuáš­ [[Numbers]]'' 764

50078 *Baring-Gould, ''Legends of Old Testament Characters''

50079 *''Chronicles of Jerahmeel'', ed. M. Gaster, pp. cx1:130-133

50080 *B. Beer, in Wertheimer’s ''Jahrb.'', 1855

50081 *Hamburger, ''Der Geist der Haggada'', pp. 1-8

50082 *the same, ''Realencyklopädie fÃŧr Bibel und Talmud'', s. v.
50083 *{{JewishEncyclopedia}}
50084 *{{1911}}
50085
50086 ==See also==
50087 {{Wikisource1911Enc|Aaron}}
50088 * [[Kohen]]
50089 * [[Y-chromosomal Aaron]]
50090 * [[Documentary Hypothesis]] - theories on the alternate meaning of Aaron's presence in the Torah.
50091
50092
50093 [[Category:1597 BC births]]
50094 [[Category:1474 BC deaths]]
50095 [[Category:Torah people]]
50096
50097 [[ang:Aaron]]
50098 [[ar:Aaaron]]
50099 [[bg:АаŅ€ĐžĐŊ (йийĐģиŅ)]]
50100 [[ca:AarÃŗ]]
50101 [[de:Aaron (biblische Person)]]
50102 [[et:Aaron]]
50103 [[eo:Aaron]]
50104 [[fr:Aaron (personnage biblique)]]
50105 [[gl:AharÃŗn - אהרן]]
50106 [[ia:Aaron]]
50107 [[he:אהרן הכהן]]
50108 [[nl:Aäron]]
50109 [[pl:Aaron (Biblia)]]
50110 [[pt:AarÃŖo]]
50111 [[ru:АаŅ€ĐžĐŊ ЛĐĩви]]
50112 [[sv:Aron]]</text>
50113 </revision>
50114 </page>
50115 <page>
50116 <title>April 4</title>
50117 <id>1007</id>
50118 <revision>
50119 <id>42016591</id>
50120 <timestamp>2006-03-03T06:07:05Z</timestamp>
50121 <contributor>
50122 <ip>65.148.101.160</ip>
50123 </contributor>
50124 <comment>/* Deaths */ added Faith Domergue</comment>
50125 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
50126 {| style=&quot;float:right;&quot;
50127 |-
50128 |{{AprilCalendar}}
50129 |-
50130 |{{ThisDateInRecentYears|Month=April|Day=4}}
50131 |}
50132 '''April 4''' is the 94th day of the year in the [[Gregorian calendar]] (95th in [[leap year]]s). There are 271 days remaining.
50133 ==Events==
50134 *[[1581]] - [[Francis Drake]] completes a circumnavigation of the world and is knighted by [[Elizabeth I of England|Elizabeth I]].
50135 *[[1721]] - Sir [[Robert Walpole]] enters office as the first [[Prime Minister of the United Kingdom]] under [[George I of Great Britain|King George I]].
50136 *[[1812]] - U.S. President [[James Madison]] enacted a ninety-day [[embargo]] on trade with the [[United Kingdom]].
50137 *[[1814]] - [[Napoleon I of France|Napoleon]] abdicates for the first time.
50138 *[[1818]] - The [[Congress of the United States|U.S. Congress]] adopts the [[flag of the United States]] as having 13 red and white stripes and one star for each state (20 stars) with additional stars to be added whenever a new state is added to the Union.
50139 *[[1841]] - President [[William Henry Harrison]] dies of [[pneumonia]] becoming the first [[President of the United States]] to die in office and at one month, the elected president with the shortest term served.
50140 *[[1850]] - [[Los Angeles, California]] is incorporated as a city.
50141 *[[1859]] - [[Bryant's Minstrels]] debut &quot;[[Dixie (song)|Dixie]]&quot; in [[New York City]] in the finale of a [[blackface]] [[minstrel show]].
50142 *[[1865]] - [[American Civil War]]: A day after [[United States|Union]] forces capture [[Richmond, Virginia]], U.S. President [[Abraham Lincoln]] visits the [[Confederate States of America|Confederate]] capital.
50143 *[[1866]] - [[Alexander II of Russia]] narrowly escapes an assassination attempt in the city of Kiev. A design for a city gate to commemorate his escape was the inspiration for [[Modest Mussorgsky|Mussorgsky's]] ''The Great Gate of Kiev'' from ''[[Pictures at an Exhibition]]''.
50144 *[[1887]] - [[Argonia, Kansas]] elects [[Susanna M. Salter]] as the first female mayor in the [[United States]].
50145 *[[1905]] - In [[India]], an [[earthquake]] near [[Kangra]] kills 370,000.
50146 *[[1918]] - [[World War I]]: [[Second Battle of the Somme]] ends.
50147 *[[1939]] - [[Faisal II of Iraq|Faisal II]] becomes King of [[Iraq]].
50148 *[[1945]] - [[World War II]]: American troops liberate [[Ohrdruf death camp]] in [[Germany]].
50149 *1945 - World War II: Soviet Army liberates [[Hungary]].
50150 *[[1949]] - Twelve nations sign The [[North Atlantic Treaty]] creating the [[NATO|North Atlantic Treaty Organisation]].
50151 *[[1964]] - [[The Beatles]] occupy all of the top five positions on the Billboard singles chart in the United States.
50152 *[[1968]] - [[Martin Luther King Jr.]] assassinated in Memphis.
50153 * 1968 - [[Apollo program]]: [[NASA]] launches [[Apollo 6]].
50154 *[[1969]] - Dr. [[Denton Cooley]] implants the first temporary [[artificial heart]].
50155 * 1969 - The ''[[Smothers Brothers Comedy Hour]]'' is cancelled after the brothers failed to submit an episode before its broadcast date.
50156 *[[1973]] - The [[World Trade Center]] in [[New York, New York|New York]] is officially dedicated.
50157 *[[1974]] - [[Hank Aaron]] of the [[Atlanta Braves]] ties [[Babe Ruth]]'s home run record of 714 in the first inning against the [[Cincinnati Reds]].
50158 *[[1975]] - [[Vietnam War]]: [[Operation Baby Lift]] - A [[United States Air Force]] [[C-5 Galaxy|C-5A Galaxy]] crashes near [[Saigon]], [[South Vietnam]] shortly after takeoff, transporting orphans. 172 people are killed.
50159 *[[1976]] - Prince [[Norodom Sihanouk]] resigns as leader of [[Cambodia]] and is placed under house arrest.
50160 *[[1979]] - President [[Zulfikar Ali Bhutto]] of [[Pakistan]] is executed.
50161 *[[1981]] - In [[Dublin]], [[Ireland]], [[Bucks Fizz (band)|Bucks Fizz]] win the twenty-sixth [[Eurovision Song Contest]] for the [[United Kingdom]] singing &quot;Making Your Mind Up&quot;.
50162 *[[1983]] - Space Shuttle ''[[Space Shuttle Challenger|Challenger]]'' makes its maiden voyage into space.
50163 *[[1984]] - President [[Ronald Reagan]] calls for an international ban on [[chemical weapon]]s.
50164 *[[1988]] - [[List of Governors of Arizona|Governor]] [[Evan Mecham]] of [[Arizona]] is convicted in his [[impeachment]] trial and removed from office.
50165 *[[1991]] - Senator [[John Heinz]] of [[Pennsylvania]] and six others are killed when a helicopter collides with their plane over [[Merion, Pennsylvania]].
50166 *[[1994]] - [[Netscape Communications Corporation]] is founded (under the name &quot;Mosaic Communications Corporation&quot;) by [[Marc Andreessen]] and [[James H. Clark|Jim Clark]].
50167 *[[2003]] - [[Sammy Sosa]] becomes the 18th member of the [[500 home run club]] with a [[Home run|home run]] at [[Great American Ball Park]] in [[Cincinnati, Ohio]].
50168 *[[2004]] - [[Muqtada al-Sadr]]'s [[Mahdi Army]] stage an uprising in several towns and cities in Iraq after the Coalition's closure of Sadr's [[al-Hawza]] newspaper.
50169
50170 ==Births==
50171 *[[186]] - [[Caracalla]], Roman emperor (d. [[217]])
50172 *[[1492]] - [[Ambrosius Blarer]], German reformer (d. [[1564]])
50173 *[[1593]] - [[Edward Nicholas]], English statesman (d. [[1669]])
50174 *[[1646]] - [[Antoine Galland]], French archaeologist (d. [[1715]])
50175 *[[1648]] - [[Grinling Gibbons]] Dutch-born woodcarver (d. [[1721]])
50176 *[[1688]] - [[Joseph-Nicolas Delisle]], French astronomer (d. [[1768]])
50177 *[[1718]] - [[Benjamin Kennicott]], English churchman and Hebrew scholar (d. [[1783]])
50178 *[[1785]] - [[Bettina von Arnim]], German writer (d. [[1859]])
50179 *[[1802]] - [[Dorothea Dix]], American social activist (d. [[1887]])
50180 *[[1819]] - Queen [[Maria II of Portugal]] (d. [[1853]])
50181 *[[1826]] - [[ZÊnobe Gramme]], Belgian engineer (d. [[1901]])
50182 *[[1846]] - [[Comte de LautrÊamont]], French writer (d. [[1870]])
50183 *[[1875]] - [[Pierre Monteux]], French conductor (d. [[1964]])
50184 *[[1876]] - [[Maurice de Vlaminck]], French painter (d. [[1958]])
50185 *[[1884]] - [[Isoroku Yamamoto]], Japanese naval commander (d. [[1943]])
50186 *[[1888]] - [[Tris Speaker]], baseball player (d. [[1958]])
50187 *[[1895]] - [[Arthur Murray]], American dance teacher (d. [[1991]])
50188 *[[1898]] - [[Agnes Ayres]], American actress (d. [[1940]])
50189 *[[1902]] - [[Louise Leveque de Vilmorin]], French actress (d. [[1969]])
50190 *[[1906]] - [[Bea Benaderet]], American actress (d. [[1968]])
50191 *1906 - [[John Cameron Swayze]], American journalist and television host (d. [[1995]])
50192 *[[1911]] - [[Max Dupain]], [[Australian]] photographer (d. 1992)
50193 *[[1913]] - [[Frances Langford]], American actress (d. [[2005]])
50194 *[[1914]] - [[Marguerite Duras]], French writer (d. [[1996]])
50195 *[[1915]] - [[Muddy Waters]], American musician (d. [[1983]])
50196 *[[1920]] - [[Éric Rohmer]], French film director
50197 *[[1922]] - [[Elmer Bernstein]], American composer (d. [[2004]])
50198 *[[1924]] - [[Gil Hodges]], baseball player (d. [[1972]])
50199 *[[1928]] - [[Maya Angelou]], American writer
50200 *[[1931]] - [[Bobby Ray Inman]], American admiral and intelligence director
50201 *[[1932]] - [[Anthony Perkins]], American actor (d. [[1992]])
50202 *1932 - [[Andrei Tarkovsky]], Russian film director (d. [[1986]])
50203 *1932 - [[Richard Lugar]], American politician
50204 *[[1934]] - [[Clive Davis]], American record producer
50205 *[[1938]] - [[A. Bartlett Giamatti]], American university president and baseball commissioner
50206 *[[1939]] - [[Hugh Masekela]], South African musician
50207 *[[1940]] - [[Sharon Sheeley]], American songwriter
50208 *[[1942]] - [[Kitty Kelley]], American writer
50209 *[[1944]] - [[Craig T. Nelson]], American actor
50210 *[[1945]] - [[Daniel Cohn-Bendit]], French political activist
50211 *[[1946]] - [[Dave Hill]], English guitarist ([[Slade]])
50212 *[[1947]] - [[Luke Halpin]], American actor
50213 *1947 - [[Wiranto]], Indonesian general
50214 *[[1948]] - [[Dan Simmons]], American writer
50215 *1948 - [[Abdullah Öcalan]], Kurdish leader
50216 *1948 - [[Derek Thompson]], Northern Irish actor
50217 *[[1950]] - [[Christine Lahti]], American actress
50218 *[[1951]] - [[Hun Sen]], Prime Minister of Cambodia
50219 *[[1952]] - [[Rosemarie Ackermann]], German athlete
50220 *[[1953]] - [[Robert Bertrand]], Canadian politician
50221 *[[1956]] - [[David E. Kelley]], American writer and television producer
50222 *[[1957]] - [[Aki Kaurismäki]], Finnish film director
50223 *1957 - [[Nobuyoshi Kuwano]], Japanese television performer and musician ([[Rats &amp; Star]])
50224 *[[1958]] - [[Mary-Margaret Humes]], American actress
50225 *[[1960]] - [[Jane Eaglin]], English soprano
50226 *1960 - [[Hugo Weaving]], Australian actor
50227 *[[1963]] - [[Jack Del Rio]], American football player and coach
50228 *1963 - [[Graham Norton]], Irish talk show host
50229 *1963 - [[Dale Hawerchuk]], Canadian [[ice hockey]] player
50230 *[[1965]] - [[Robert Downey Jr.]], American actor
50231 *[[1968]] - [[Jennifer Lynch]], American director
50232 *[[1970]] - [[Barry Pepper]], Canadian actor
50233 *[[1973]] - [[David Blaine]], American illusionist
50234 *[[1974]] - [[Dave Mirra]], American athlete
50235 *[[1975]] - [[Scott Rolen]], baseball player
50236 *1975 - [[Delphine Arnault]], billionaire French businesswoman
50237 *[[1979]] - [[Heath Ledger]], Australian actor
50238 *1979 - [[Natasha Lyonne]], American actress
50239 *[[1980]] - [[BjÃļrn Wirdheim]], Swedish race car driver
50240 *[[1991]] - [[Jamie Lynn Spears]], American television show host
50241
50242 ==Deaths==
50243 *[[397]] - [[Ambrose|St. Ambrose]], Bishop of Milan
50244 *[[896]] - [[Pope Formosus]] (b. [[816]])
50245 *[[1284]] - King [[Alfonso X of Castile]] (b. [[1221]])
50246 *[[1292]] - [[Pope Nicholas IV]] (b. [[1227]])
50247 *[[1305]] - [[Jeanne of Navarre]], queen of [[Philip IV of France]]
50248 *[[1536]] - [[Frederick I, Margrave of Brandenburg-Ansbach]] (b. [[1460]])
50249 *[[1588]] - King [[Frederick II of Denmark]] (b. [[1534]]
50250 *[[1609]] - [[Charles de L'Ecluse]], Flemish botanist (b. [[1526]])
50251 *[[1617]] - [[John Napier]], Scottish mathematician (b. [[1550]])
50252 *[[1643]] - [[Simon Episcopius]], Dutch theologian (b. [[1583]])
50253 *[[1661]] - [[Alexander Leslie, 1st Earl of Leven]], Scottish soldier
50254 *[[1701]] - [[Joseph Haines]], entertainer and author
50255 *[[1743]] - [[Daniel Neal]], English historian (b. [[1678]])
50256 *[[1761]] - [[Theodore Gardelle]], Swiss painter and enameler (b. [[1722]])
50257 *[[1766]] - [[John Taylor (1704-1766)|John Taylor]], English classical scholar (b. [[1704]])
50258 *[[1774]] - [[Oliver Goldsmith]], English writer (b. [[1728]])
50259 *[[1792]] - [[James Sykes (1725-1792)|James Sykes]], American politician (b. [[1725]])
50260 *[[1807]] - [[Joseph JÊrôme Lefrançais de Lalande]], French astronomer (b. [[1732]])
50261 *[[1817]] - [[AndrÊ MassÊna]], French marshal (b. [[1758]])
50262 *[[1841]] - [[William Henry Harrison]], 9th [[President of the United States]] (b. [[1773]])
50263 *[[1842]] - [[Jean Moufot]], French philosopher and mathematician (b. [[1784]])
50264 *[[1846]] - [[Solomon Sibley]], Senator from Michigan Territory (b. [[1769]])
50265 *[[1861]] - [[John McLean]], U.S. Supreme Court Justice (b. [[1785]])
50266 *[[1870]] - [[Heinrich Gustav Magnus]], German chemist and physicist (b. [[1802]])
50267 *[[1874]] - [[Charles Ernest BeulÊ]], French archaelogist and politician (b. [[1826]])
50268 *[[1879]] - [[Heinrich Wilhelm Dove]], German physicist (b. [[1803]])
50269 *[[1884]] - [[Marie Bashkirtseff]], Russian artist and diarist (b. [[1860]])
50270 *[[1890]] - [[Edmond HÊbert]], French geologist (b. [[1812]])
50271 *[[1919]] - Sir [[William Crookes]], English chemist and physicist (b. [[1832]])
50272 *[[1923]] - [[John Venn]], British mathematician (b. [[1834]])
50273 *[[1932]] - [[Wilhelm Ostwald]], German chemist, [[Nobel Prize]] laureate (b. [[1853]])
50274 *[[1951]] - [[Al Christie]], Canadian film director and producer (b. [[1881]])
50275 *1951 - [[George Albert Smith]], president of [[Church of Jesus Christ of Latter-day Saints|The Church of Jesus Christ of Latter-day Saints]] (b. [[1870]])
50276 *[[1953]] - King [[Carol II of Romania]] (b. [[1893]])
50277 *[[1967]] - [[HÊctor Scarone]], Uruguayan footballer (b. [[1898]])
50278 *[[1968]] - Rev. [[Martin Luther King Jr.]], American civil rights activist, recipient of the [[Nobel Peace Prize]] (assassinated) (b. [[1929]])
50279 *[[1972]] - [[Adam Clayton Powell Jr.]], American politician (b. [[1908]])
50280 *1972 - [[Stefan Wolpe]], German-born composer (b. [[1902]])
50281 *[[1979]] - [[Ali Bhutto]], President and [[Prime Minister of Pakistan]] (b. [[1928]])
50282 *1979 - [[Edgar Buchanan]], American actor (b. [[1903]])
50283 *[[1983]] - [[Gloria Swanson]], American actress (b. [[1897]])
50284 *[[1984]] - [[Oleg Antonov]], Russian airplane engineer (b. [[1906]])
50285 *[[1987]] - [[C.L. Moore]], American writer (b. [[1911]])
50286 *[[1991]] - [[Max Frisch]], Swiss writer (b. [[1911]])
50287 *1991 - [[H. John Heinz III]], U.S. Senator (plane crash) (b. [[1938]])
50288 *1991 - [[Forrest Towns]], American hurdler (b. [[1914]])
50289 *[[1995]] - [[Priscilla Lane]], American singer, actress
50290 *[[1996]] - [[Barney Ewell]], American athlete (b. [[1918]])
50291 *1996 - [[Larry LaPrise]], American songwriter (b. [[1913]])
50292 *[[1999]] - [[Early Wynn]], baseball player (b. [[1920]])
50293 *1999 - [[Faith Domergue]] American actor (b. [[1924]])
50294 *[[2001]] - [[Ed Roth|Ed &quot;Big Daddy&quot; Roth]], American custom car designer (b. [[1932]])
50295 *[[2002]] - [[Harry L. O'Connor]], Czech-born film stuntman
50296 *[[2003]] - [[Resortes]], Mexican comedian (b. [[1916]])
50297 *[[2004]] - [[Casey Sheehan]], American soldier, son of [[Cindy Sheehan]] (b. 1979)
50298 *[[2005]] - [[Edward Bronfman]], Canadian Businessmen (b. [[1924]])
50299
50300 ==Holidays and observances==
50301 * [[Lesotho]] - Heroes' Day
50302 ==External links==
50303 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/4 BBC: On This Day]
50304 * [http://www.nytimes.com/learning/general/onthisday/20050404.html ''The New York Times'': On This Day]
50305 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=04 On This Day in Canada]
50306
50307 -----
50308
50309 [[April 3]] - [[April 5]] - [[March 4]] - [[May 4]] -- [[historical anniversaries|listing of all days]]
50310
50311 {{months}}
50312
50313 [[af:4 April]]
50314 [[ang:4 ĒastermōnaÞ]]
50315 [[ar:4 ØĨØ¨ØąŲŠŲ„]]
50316 [[an:4 d'abril]]
50317 [[ast:4 d'abril]]
50318 [[bg:4 Đ°ĐŋŅ€Đ¸Đģ]]
50319 [[be:4 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
50320 [[bs:4. april]]
50321 [[ca:4 d'abril]]
50322 [[ceb:Abril 4]]
50323 [[cv:АĐēĐ°, 4]]
50324 [[co:4 d'aprile]]
50325 [[cs:4. duben]]
50326 [[cy:4 Ebrill]]
50327 [[da:4. april]]
50328 [[de:4. April]]
50329 [[et:4. aprill]]
50330 [[el:4 ΑĪ€ĪÎšÎģίÎŋĪ…]]
50331 [[es:4 de abril]]
50332 [[eo:4-a de aprilo]]
50333 [[eu:Apirilaren 4]]
50334 [[fo:4. apríl]]
50335 [[fr:4 avril]]
50336 [[fy:4 april]]
50337 [[ga:4 AibreÃĄn]]
50338 [[gl:4 de abril]]
50339 [[ko:4ė›” 4ėŧ]]
50340 [[hr:4. travnja]]
50341 [[io:4 di aprilo]]
50342 [[ilo:Abril 4]]
50343 [[id:4 April]]
50344 [[ia:4 de april]]
50345 [[ie:4 april]]
50346 [[is:4. apríl]]
50347 [[it:4 aprile]]
50348 [[he:4 באפריל]]
50349 [[jv:4 April]]
50350 [[ka:4 აპრილი]]
50351 [[csb:4 łÅŧÃĢkwiôta]]
50352 [[ku:4'ÃĒ avrÃĒlÃĒ]]
50353 [[lt:BalandÅžio 4]]
50354 [[lb:4. AbrÃĢll]]
50355 [[li:4 april]]
50356 [[hu:Április 4]]
50357 [[mk:4 Đ°ĐŋŅ€Đ¸Đģ]]
50358 [[ms:4 April]]
50359 [[nap:4 'e abbrile]]
50360 [[nl:4 april]]
50361 [[ja:4月4æ—Ĩ]]
50362 [[no:4. april]]
50363 [[nn:4. april]]
50364 [[oc:4 d'abril]]
50365 [[os:4 Đ°ĐŋŅ€ĐĩĐģŅ‹]]
50366 [[pl:4 kwietnia]]
50367 [[pt:4 de Abril]]
50368 [[ro:4 aprilie]]
50369 [[ru:4 Đ°ĐŋŅ€ĐĩĐģŅ]]
50370 [[se:CuoŋomÃĄnu 4.]]
50371 [[sco:4 Aprile]]
50372 [[sq:4 Prill]]
50373 [[scn:4 di aprili]]
50374 [[simple:April 4]]
50375 [[sk:4. apríl]]
50376 [[sl:4. april]]
50377 [[sr:4. Đ°ĐŋŅ€Đ¸Đģ]]
50378 [[fi:4. huhtikuuta]]
50379 [[sv:4 april]]
50380 [[tl:Abril 4]]
50381 [[tt:4. Äpril]]
50382 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 4]]
50383 [[th:4 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
50384 [[vi:4 thÃĄng 4]]
50385 [[tr:4 Nisan]]
50386 [[uk:4 ĐēвŅ–Ņ‚ĐŊŅ]]
50387 [[ur:4 اŲžØąÛŒŲ„]]
50388 [[wa:4 d' avri]]
50389 [[war:Abril 4]]
50390 [[zh:4月4æ—Ĩ]]
50391 [[pam:Abril 4]]</text>
50392 </revision>
50393 </page>
50394 <page>
50395 <title>April 6</title>
50396 <id>1008</id>
50397 <revision>
50398 <id>41651235</id>
50399 <timestamp>2006-02-28T20:26:54Z</timestamp>
50400 <contributor>
50401 <username>Enochlau</username>
50402 <id>36424</id>
50403 </contributor>
50404 <minor />
50405 <comment>Reverted edits by [[Special:Contributions/66.154.148.18|66.154.148.18]] ([[User talk:66.154.148.18|talk]]) to last version by Shanes</comment>
50406 <text xml:space="preserve">{| style=&quot;float:right;&quot;
50407 |-
50408 |{{AprilCalendar}}
50409 |-
50410 |{{ThisDateInRecentYears|Month=April|Day=6}}
50411 |}
50412 '''[[April 6]]''' is the 96th day of the year in the [[Gregorian calendar]] (97th in [[leap year]]s). There are 269 days remaining.
50413 ==Events==
50414 *[[648 BC]] - Earliest [[solar eclipse]] recorded by the [[Ancient Greece|Ancient Greeks]].
50415 *[[402]] - [[Stilicho]] stymies the [[Visigoths]] under [[Alaric I|Alaric]] in the [[Battle of Pollentia]]
50416 *[[1320]] - The [[Scotland|Scots]] reaffirm their independence by signing the [[Declaration of Arbroath]].
50417 *[[1327]] - The poet [[Petrarch]] first saw his idealized love Laura in the church of [[Saint Clare]] in [[Avignon]].
50418 *[[1652]] - [[Netherlands|Dutch]] sailor [[Jan van Riebeeck]] establishes a resupply camp at the [[Cape of Good Hope]], which will eventually develop into [[Cape Town]].
50419 *[[1782]] - [[Rama I]] succeeds King [[Taksin]] of [[Thailand]], who was overthrown in a [[coup d'Êtat]].
50420 *[[1808]] - [[John Jacob Astor]] incorporates the [[American Fur Company]].
50421 *[[1830]] - [[Church of Jesus Christ of Latter-day Saints|The Church of Jesus Christ of Latter-day Saints]] is formed by [[Joseph Smith, Jr.]] at [[Fayette, New York]].
50422 *[[1832]] - [[Indian Wars]]: [[Black Hawk War]] begins - The [[Sauk]] warrior [[Black Hawk]] enters into war with the [[United States]].
50423 *[[1841]] - [[John Tyler]] is inaugurated as the 10th [[President of the United States]].
50424 *[[1862]] - [[American Civil War]]: [[Battle of Shiloh]] begins - In [[Tennessee]], forces under [[United States|Union]] General [[Ulysses S. Grant]] meet [[Confederate States of America|Confederate]] troops led by General [[Albert Sidney Johnston]] at [[Shiloh, Tennessee|Shiloh]].
50425 *[[1865]] - American Civil War: [[Battle of Sayler's Creek]] - Confederate General [[Robert E. Lee]]'s [[Army of Northern Virginia]] fights its last major battle while in retreat from [[Richmond, Virginia]].
50426 *[[1869]] - [[Celluloid]] is patented.
50427 *[[1886]] - [[Vancouver, British Columbia]] is incorporated as a city.
50428 *[[1893]] - [[Salt Lake Temple]] of the [[Church of Jesus Christ of Latter-Day Saints]] dedicated by [[Wilford Woodruff]].
50429 *[[1895]] - [[Oscar Wilde]] is arrested after losing a [[libel]] case against the [[John Sholto Douglas, 9th Marquess of Queensberry]].
50430 *[[1896]] - In [[Athens]], the opening of the [[1896 Summer Olympics|first modern Olympic Games]] after 1,500 years after being banned by Roman Emperor [[Theodosius I]].
50431 *[[1903]] - The [[Kishinev pogrom]] in Kishinev (Bessarabia) began, forcing tens of thousands of Jews to later seek refuge in Israel and the west.
50432 *[[1909]] - [[Robert Edwin Peary|Robert Peary]] allegedly reaches the [[North Pole]].
50433 *[[1911]] - DedÃĢ Gjon Luli Dedvukaj, Leader of the MalÃĢsori Albanians raises the Albanian flag in the town of [[Tuzi]], [[Montenegro]] for the first time after [[Gjergj Kastrioti]] (Skenderbeg).
50434 *[[1917]] - [[World War I]]: [[United States]] declares war on [[Germany]] (see [http://en.wikisource.org/wiki/Woodrow_Wilson_declares_war_on_Germany Wilson's address to Congress]).
50435 *[[1926]] - [[Walter Varney]] Airlines makes first commercial flight from [[Pasco, Washington]], to [[Elko, Nevada]]. Varney is the root company of [[United Airlines]].
50436 *[[1930]] - Gandhi raised a lump of mud and salt (some say just a pinch, some say just a grain) and declared, &quot;With this, I am shaking the foundations of the British Empire.&quot; Thus he started Salt Satyagraha.
50437 *1930 - Hostess [[Twinkie]]s are invented.
50438 *1930 - [[Will Rogers]] starts broadcasting ''[[The Will Rogers Program]]'' on [[radio]].
50439 *[[1931]] - ''[[Little Orphan Annie]]'' debuts on the Blue Network of [[NBC]].
50440 *[[1936]] - [[Tupelo-Gainesville Outbreak]]: Another tornado from the same storm system as the Tupelo tornado hits [[Gainesville, Georgia]], killing 203.
50441 *[[1941]] - [[World War II]]: [[Operation Castigo]] begins - [[Germany]] invades [[Kingdom of Yugoslavia]] and [[Greece]].
50442 *[[1965]] - [[Early Bird]], the first communications [[satellite]] to be placed in synchronous orbit, is launched.
50443 *[[1968]] - In [[London, United Kingdom]], [[Massiel]] wins the thirteenth [[Eurovision Song Contest]] for [[Spain]] singing &quot;La, la, la.&quot;
50444 *[[1970]] - Four [[California Highway Patrol]] officers die in one of the worst cop killings in the CHP's history; this is known as the [[Newhall Incident]].
50445 *[[1972]] - [[Vietnam War]]: [[Easter Offensive]] - The first day of clear weather in three days allows [[United States|American]] forces to start sustained air strikes and naval bombardments.
50446 *[[1973]] - Launch of ''[[Pioneer 11]]'' [[spacecraft]].
50447 *[[1974]] - The [[California Jam]] Rock concert begins.
50448 *1974 - In [[Brighton|Brighton, United Kingdom]], [[ABBA]] wins the nineteenth [[Eurovision Song Contest]] for [[Sweden]] singing &quot;Waterloo.&quot;
50449 *[[1984]] - Members of [[Cameroon]]'s Republican Guard from country's northern region attack various government buildings in an unsuccessful attempt to overthrow the government headed by [[Paul Biya]].
50450 *[[1987]] - [[Sugar Ray Leonard]] takes the middleweight [[boxing]] title from [[Marvin Hagler]].
50451 *[[1993]] - Russian [[nuclear accident]] at [[Tomsk 7]].
50452 *[[1994]] - The [[Rwandan Genocide]] begins when the aircraft carrying Rwandan president [[JuvÊnal Habyarimana]] and Burundian president [[Cyprien Ntaryamira]] is shot down by extremists.
50453 *[[1998]] - [[Pakistan]] tests medium-range missiles capable of hitting [[India]].
50454 *1998 - The [[Dow Jones Industrial Average]] gains 49.82 to close at 9,033.23 -- its first-ever close above 9,000.
50455 *[[2001]] - [[Miller Park]] opens in [[Milwaukee, Wisconsin]].
50456 *[[2004]] - [[Rolandas Paksas]] becomes the first president of [[Lithuania]] to be peacefully removed from the post by [[impeachment]].
50457
50458 ==Births==
50459 *[[1483]] - [[Raphael]], Italian painter and architect (d. [[1520]])
50460 *[[1651]] - [[AndrÊ Dacier]], French classical scholar (d. [[1722]])
50461 *[[1664]] - [[Arvid Horn]], Swedish statesman (d. [[1742]])
50462 *[[1671]] - [[Jean-Baptiste Rousseau]], French poet (d. [[1741]])
50463 *[[1725]] - [[Pasquale Paoli]], Corsican patriot and military leader (d. [[1807]])
50464 *[[1812]] - [[Alexander Herzen]], Russian writer (d. [[1870]])
50465 *[[1815]] - [[Robert Volkmann]], German composer (d. [[1883]])
50466 *[[1818]] - [[Aasmund Olavsson Vinje]], Norwegian poet (d. [[1870]])
50467 *[[1820]] - [[Nadar]], French photographer (d. [[1910]])
50468 *[[1823]] - [[Joseph Medill]], Mayor of Chicago (d. [[1899]])
50469 *[[1826]] - [[Gustave Moreau]], French painter (d. [[1898]])
50470 *[[1849]] - [[John William Waterhouse]], British painter (d. [[1917]])
50471 *[[1866]] - [[Butch Cassidy]], American outlaw (d. [[1909]])
50472 *[[1878]] - [[Erich MÃŧhsam]], German author (d. [[1934]])
50473 *[[1884]] - [[Walter Huston]], Canadian-born actor (d. [[1950]])
50474 *[[1890]] - [[Anthony Fokker]], Dutch designer of aircraft (d. [[1939]])
50475 *[[1892]] - [[Donald Wills Douglas, Sr.]], American industrialist (d. [[1981]])
50476 *1892 - [[Lowell Thomas]], American travel writer (d. [[1981]])
50477 *[[1902]] - [[Veniamin Kaverin]], Russian writer (d. [[1989]])
50478 *[[1903]] - [[Mickey Cochrane]], baseball player (d. [[1962]])
50479 *1903 - [[Doc Edgerton]], American electrical engineer (d. [[1990]])
50480 *[[1911]] - [[Feodor Felix Konrad Lynen]], German biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1979]])
50481 *[[1920]] - [[Edmond H. Fischer]], Swiss-American biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]]
50482 *[[1926]] - [[Sergio Franchi]], Italian-born singer and actor (d. [[1990]])
50483 *1926 - [[Gil Kane]], Latvian-born cartoonist (d. [[2000]])
50484 *1926 - [[Ian Paisley]], Northern Irish politician
50485 *[[1927]] - [[Gerry Mulligan]], American musician (d. [[1996]])
50486 *[[1928]] - [[James D. Watson]], American geneticist, recipient of the [[Nobel Prize in Physiology or Medicine]]
50487 *[[1929]] - [[AndrÊ Previn]], German-born composer and conductor
50488 *[[1931]] - [[Ivan Dixon]], American actor and director
50489 *[[1933]] - [[Roy Goode]], British lawyer
50490 *[[1934]] - [[Anton Geesink]], Dutch judoka
50491 *[[1937]] - [[Merle Haggard]], American musician
50492 *1937 - [[Billy Dee Williams]], American actor
50493 *[[1938]] - [[Paul Daniels]], English magician
50494 *1938 - [[Roy Thinnes]], American actor
50495 *[[1941]] - [[Phil Austin]], American comedian
50496 *1941 - [[Zamfir]], Romanian musician
50497 *[[1942]] - [[Barry Levinson]], American film producer and director
50498 *[[1944]] - [[Felicity Palmer]], English soprano
50499 *[[1947]] - [[John Ratzenberger]], American actor
50500 *[[1949]] - [[Horst Ludwig StÃļrmer]], German-born physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
50501 *[[1951]] - [[Bert Blyleven]], Dutch [[Major League Baseball]] player
50502 *[[1952]] - [[Udo Dirkschneider]], German singer ([[Accept]] and [[U.D.O.]])
50503 *1952 - [[Marilu Henner]], American actress
50504 *[[1954]] - [[Thom Bray]], American actor
50505 *[[1955]] - [[Michael Rooker]], American actor
50506 *[[1965]] - [[Frank Black]], American singer and songwriter ([[Pixies]])
50507 *[[1969]] - [[Bison Dele]], American basketball player (disappeared [[2002]])
50508 *1969 - [[Ari Meyers]], Puerto Rican-born American actress
50509 *[[1970]] - [[Olaf KÃļlzig]], South African hockey player
50510 *[[1973]] - [[Donnie Edwards]], American football player
50511 *1973 - [[Rie Miyazawa]], Japanese actress and singer
50512 *[[1975]] - [[Zach Braff]], American actor
50513 *[[1976]] - [[Candace Cameron]], American actress
50514 *[[1985]] - [[Garrett Zablocki]], American guitarist ([[Senses Fail]])
50515
50516 ==Deaths==
50517 *[[1199]] - King [[Richard I of England]] (killed in battle) (b. [[1157]])
50518 *[[1362]] - [[James I, Count of La Marche]], French soldier (b. [[1319]])
50519 *[[1490]] - King [[Matthias Corvinus of Hungary]]
50520 *[[1520]] - [[Raphael]], Italian painter and architect (b. [[1483]])
50521 *[[1528]] - [[Albrecht DÃŧrer]], German artist (b. [[1471]])
50522 *[[1551]] - [[Joachim Vadian]], Swiss humanist (b. [[1484]])
50523 *[[1571]] - [[John Hamilton (of Scotland)|John Hamilton]], Scottish prelate and politician
50524 *[[1590]] - [[Francis Walsingham]], English spymaster
50525 *[[1605]] - [[John Stow]], English historian
50526 *[[1655]] - [[David Blondel]], French protestant clergyman (b. [[1591]])
50527 *[[1686]] - [[Arthur Annesley, 1st Earl of Anglesey]], English royalist statesman (b. [[1614]])
50528 *[[1707]] - [[Willem van de Velde, the younger]], Dutch painter (b. [[1633]])
50529 *[[1755]] - [[Richard Rawlinson]], English minister and antiquarian (b. [[1690]])
50530 *[[1829]] - [[Niels Henrik Abel]], Norwegian mathematician (b. [[1802]])
50531 *[[1838]] - [[JosÊ BonifÃĄcio de Andrade e Silva]], Brazilian statesman and geologist (b. [[1763]])
50532 *[[1862]] - [[Albert Sidney Johnston]], American Confederate general (b. [[1803]])
50533 *[[1883]] - [[Benjamin Wright Raymond|Benjamin Raymond]], Mayor of Chicago (b. [[1801]])
50534 *[[1906]] - [[Alexander Kielland]], Norwegian author (b. [[1849]])
50535 *[[1935]] - [[Edwin Arlington Robinson]], American poet (b. [[1869]])
50536 *[[1961]] - [[Jules Bordet]], Belgian immunologist and microbiologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1870]])
50537 *[[1963]] - [[Otto Struve]], Russian-born astronomer (b. [[1897]])
50538 *[[1970]] - [[Sam Sheppard]], American accused murderer (b. [[1923]])
50539 *[[1971]] - [[Igor Stravinsky]], Russian composer (b. [[1882]])
50540 *[[1974]] - [[Willem Marinus Dudok]], Dutch architect (b. [[1884]])
50541 *[[1986]] - [[Raimundo Orsi]], Argentine-Italian footballer
50542 *[[1992]] - [[Isaac Asimov]], Russian-born author (b. [[1920]])
50543 *[[1994]] - [[JuvÊnal Habyarimana]], [[President of Rwanda]] (b. [[1937]])
50544 *1994 - [[Cyprien Ntaryamira]], [[President of Burundi]] (b. [[1956]])
50545 *[[1996]] - [[Greer Garson]], Irish actress (b. [[1904]])
50546 *[[1998]] - [[Wendy O. Williams]], American musician ([[Plasmatics]]) (b. [[1949]])
50547 *1998 - [[Tammy Wynette]], American musician (b. [[1942]])
50548 *[[2000]] - [[Habib Bourguiba]], [[President of Tunisia]] (b. [[1903]])
50549 *[[2003]] - [[David Bloom]], American reporter (pulmonary embolism) (b. [[1963]])
50550 *2003 - [[Babatunde Olatunji]], Nigerian drummer (b. [[1927]])
50551 *[[2004]] - [[Larisa Bogoraz]], Soviet dissident (b. [[1929]])
50552 *[[2005]] - [[Rainier III, Prince of Monaco]] (b. [[1923]])
50553
50554 ==Holidays and observances==
50555 *[[Feast day]] of St. Sixtus and [[Marcellinus of Carthage]] in the [[Roman Catholic Church]].
50556 * The start of the [[tax year]] in the [[United Kingdom]] (arising from the 11 day correction to [[March 25]] at the adoption of the [[Gregorian calendar]] in [[1752]]).
50557 *[[Tartan Day]], a day set aside for the celebration of the [[Scotland|Scottish]] influence on [[United States|America]].
50558 *The date of organization of the [[Church of Christ (Mormonism)|Church of Christ]], and the start of the Restoration Movement by Joseph Smith Junior, from which are various off shoots such as the [[Community of Christ]] and the [[Church of Jesus Christ of Latter-day Saints]], officially organized on April 6th [[1830]].
50559
50560 ==External links==
50561 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/6 BBC: On This Day]
50562 * [http://www.tnl.net/when/4/6 Today in History: April 6]
50563
50564 -----
50565
50566 [[April 5]] - [[April 7]] - [[March 6]] - [[May 6]] -- [[historical anniversaries|listing of all days]]
50567
50568 {{months}}
50569
50570 [[af:6 April]]
50571 [[an:6 d'abril]]
50572 [[ar:6 Ø§Ø¨ØąŲŠŲ„]]
50573 [[ast:6 d'abril]]
50574 [[be:6 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
50575 [[bg:6 Đ°ĐŋŅ€Đ¸Đģ]]
50576 [[bs:6. april]]
50577 [[ca:6 d'abril]]
50578 [[ceb:Abril 6]]
50579 [[cs:6. duben]]
50580 [[csb:6 łÅŧÃĢkwiôta]]
50581 [[cy:6 Ebrill]]
50582 [[da:6. april]]
50583 [[de:6. April]]
50584 [[el:6 ΑĪ€ĪÎšÎģίÎŋĪ…]]
50585 [[eo:6-a de aprilo]]
50586 [[es:6 de abril]]
50587 [[et:6. aprill]]
50588 [[eu:Apirilaren 6]]
50589 [[fi:6. huhtikuuta]]
50590 [[fr:6 avril]]
50591 [[fy:6 april]]
50592 [[ga:6 AibreÃĄn]]
50593 [[gl:6 de abril]]
50594 [[he:6 באפריל]]
50595 [[hr:6. travnja]]
50596 [[hu:Április 6]]
50597 [[ia:6 de april]]
50598 [[id:6 April]]
50599 [[ie:6 april]]
50600 [[io:6 di aprilo]]
50601 [[is:6. apríl]]
50602 [[it:6 aprile]]
50603 [[ja:4月6æ—Ĩ]]
50604 [[ka:6 აპრილი]]
50605 [[ko:4ė›” 6ėŧ]]
50606 [[ku:6'ÃĒ avrÃĒlÃĒ]]
50607 [[lb:6. AbrÃĢll]]
50608 [[li:6 april]]
50609 [[lt:BalandÅžio 6]]
50610 [[mk:6 Đ°ĐŋŅ€Đ¸Đģ]]
50611 [[nl:6 april]]
50612 [[nn:6. april]]
50613 [[no:6. april]]
50614 [[oc:6 d'abril]]
50615 [[pl:6 kwietnia]]
50616 [[pt:6 de Abril]]
50617 [[ro:6 aprilie]]
50618 [[ru:6 Đ°ĐŋŅ€ĐĩĐģŅ]]
50619 [[scn:6 di aprili]]
50620 [[se:CuoŋomÃĄnu 5.]]
50621 [[simple:April 6]]
50622 [[sk:6. apríl]]
50623 [[sl:6. april]]
50624 [[sq:6 Prill]]
50625 [[sr:6. Đ°ĐŋŅ€Đ¸Đģ]]
50626 [[sv:6 april]]
50627 [[th:6 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
50628 [[tl:Abril 6]]
50629 [[tr:6 Nisan]]
50630 [[tt:6. Äpril]]
50631 [[uk:6 ĐēвŅ–Ņ‚ĐŊŅ]]
50632 [[ur:6 اŲžØąÛŒŲ„]]
50633 [[vi:6 thÃĄng 4]]
50634 [[wa:6 d' avri]]
50635 [[zh:4月6æ—Ĩ]]</text>
50636 </revision>
50637 </page>
50638 <page>
50639 <title>April 12</title>
50640 <id>1009</id>
50641 <revision>
50642 <id>41649582</id>
50643 <timestamp>2006-02-28T20:13:48Z</timestamp>
50644 <contributor>
50645 <username>CorbinSimpson</username>
50646 <id>641043</id>
50647 </contributor>
50648 <comment>reverting vandalism</comment>
50649 <text xml:space="preserve">{| style=&quot;float:right;&quot;
50650 |-
50651 |{{AprilCalendar}}
50652 |-
50653 |{{ThisDateInRecentYears|Month=April|Day=12}}
50654 |}
50655 '''April 12''' is the [[102 (number)|102]]nd day of the year in the [[Gregorian calendar]] (103rd in [[leap year]]s). There are 263 days remaining.
50656
50657 ==Events==
50658 *[[467]] - [[Anthemius]] is elevated to [[Roman emperor|Emperor of the Western Roman Empire]]
50659 *[[1606]] - The [[Union Jack]] is adopted as the national flag of [[Great Britain]].
50660 *[[1633]] - The formal interrogation by the [[Inquisition]] of [[Galileo Galilei]] begins.
50661 *[[1861]] - [[American Civil War]]: The [[war]] begins with [[Confederate States of America|Confederate]] forces firing on [[Fort Sumter]], in the harbor of [[Charleston, South Carolina]].
50662 *[[1864]] - [[American Civil War]]: [[Fort Pillow massacre]] -- [[Confederate States of America|Confederate]] forces under General [[Nathan Bedford Forrest]] kill most of the [[African American]] soldiers who had surrendered at [[Fort Pillow]], [[Tennessee]]
50663 *[[1865]] - [[American Civil War]]: [[Mobile, Alabama]], falls to the [[Union Army]].
50664 *[[1877]] - The [[United Kingdom]] annexes the [[Transvaal]].
50665 *[[1923]] - [[Kandersteg International Scout Centre]] came into existence.
50666 *[[1926]] - By a vote of 45 to 41, the [[United States Senate]] unseats [[Iowa]] Senator [[Smith W. Brookhart]] and seats [[Daniel F. Steck]], after Brookhart had already served for over one year.
50667 *[[1937]] - Sir [[Frank Whittle]] ground-tests the first [[jet engine]] designed to power an aircraft, at the [[British Thomson-Houston]] factory in [[Rugby, Warwickshire|Rugby, England]]
50668 *[[1945]] - President [[Franklin D. Roosevelt]] dies, and [[Harry S. Truman]] is inaugurated as the 33rd [[President of the United States]].
50669 *[[1946]] - [[Syria]] gains independence from [[France]].
50670 *[[1954]] - [[Bill Haley and His Comets]] record &quot;[[Rock Around the Clock]]&quot; in [[New York City]]. Initially unsuccessful, the recording would help launch the [[rock and roll]] revolution a year later.
50671 *[[1955]] - The [[polio]] [[vaccine]], developed by Dr. [[Jonas Salk]], is declared safe and effective.
50672 *[[1961]] - [[Yuri Gagarin]] becomes the first man to fly in space.
50673 *[[1968]] - [[Nerve gas]] accident at [[Skull Valley, Utah]].
50674 *[[1975]] - [[Khmer Rouge]] troops capture [[Phnom Penh]], [[Cambodia]].
50675 *[[1980]] - [[Terry Fox]] began his trans-[[Canada]] [[marathon (sport)|marathon]] to raise money for [[cancer research]] (''[[Marathon of Hope]]'') by dipping his [[Artificial limb|artificial leg]] in the [[Atlantic Ocean]] at [[St. John's, Newfoundland and Labrador|St. John's]], [[Newfoundland]], aiming to dip it again in the [[Pacific Ocean]] at [[Vancouver]], [[British Columbia]].
50676 *[[1981]] - The first launch of a [[Space Shuttle]]: [[Space Shuttle Columbia|''Columbia'']] launches on the [[STS-1]] mission.
50677 *[[1984]] - LiSARS is created
50678 *[[1989]] - TV show ''[[Fast Forward]]'' starts on the [[ATN-7]] Network ([[Australia]]).
50679 *[[1990]] - [[Christian Bernard]], F.R.C., becomes Imperator of [[AMORC]].
50680 *[[1992]] - [[Euro Disneyland]] opens in [[Marne-la-Vallee]], [[France]].
50681 *[[1994]] - [[Canter &amp; Siegel]] post the first commercial mass [[Usenet]] [[Newsgroup spam|spam]].
50682 *[[1996]] - [[Yahoo!]] had its [[initial public offering]], selling 2.6 million shares at $13 each.
50683 *[[1998]] - Catastrophical [[earthquake]] in [[Slovenia]] in Posočje 5,6 on the Richter scale.
50684 *[[2002]] - [[Coup d'Etat]] against [[Hugo ChÃĄvez]] in [[Venezuela]].
50685 *[[2005]] - In [[Canada]], a motion by the opposition [[Conservative Party of Canada|Conservative Party]] to kill legislation opening the door for legalized [[same sex marriage]] is defeated 164-132.
50686
50687 ==Births==
50688 *[[599 BC]] - [[Mahavira]], Indian founder of Jainism (d. [[527 BC]])
50689 *[[812]] - [[Muhammad at-Taqi]], Arabian Shia Imam (d. [[835]])
50690 *[[1484]] - [[Antonio da Sangallo the Younger]], Italian architect (d. [[1546]])
50691 *[[1500]] - [[Joachim Camerarius]], German classical scholar (d. [[1574]])
50692 *[[1526]] - [[Muretus]], French humanist (d. [[1585]])
50693 *[[1550]] - [[Edward de Vere, 17th Earl of Oxford]], English politician (d. [[1604]])
50694 *[[1577]] - King [[Christian IV of Denmark]] (d. [[1648]])
50695 *[[1713]] - [[Guillaume Thomas François Raynal]], French writer (d. [[1796]])
50696 *[[1722]] - [[Pietro Nardini]], Italian composer (d. [[1793]])
50697 *[[1724]] - [[Lyman Hall]], American signer of the Declaration of Independence (d. [[1790]])
50698 *[[1726]] - [[Charles Burney]], English music historian (d. [[1814]])
50699 *[[1748]] - [[Antoine Laurent de Jussieu]], French botanist (d. [[1836]])
50700 *[[1777]] - [[Henry Clay]], American statesman and five-time Presidential candidate (d. [[1852]])
50701 *[[1794]] - [[Germinal Pierre Dandelin]], Belgian mathematician (d. [[1847]])
50702 *[[1799]] - [[Henri Druey]], Swiss Federal Councilor (d. [[1855]])
50703 *[[1823]] - [[Alexandr Ostrovsky]], Russian dramatist (d. [[1886]])
50704 *[[1839]] - [[Nikolai Przhevalsky]], Russian explorer (d. [[1888]])
50705 *[[1856]] - [[William Martin Conway]], English art critic and mountaineer (d. [[1937]])
50706 *[[1869]] - [[Henri DÊsirÊ Landru]], French serial killer (d. [[1922]])
50707 *[[1884]] - [[Otto Meyerhof]], German-born biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1951]])
50708 *[[1887]] - [[Harold Lockwood]], American silent film actor (d. [[1918]])
50709 *[[1888]] - [[Heinrich Neuhaus]], Soviet pianist (d. [[1964]])
50710 *[[1892]] - [[Johnny Dodds]], American jazz clarinetist (d. [[1940]])
50711 *[[1893]] - [[Robert Harron]], American actor (d. [[1920]])
50712 *[[1898]] - [[Lily Pons]], American soprano (d. [[1976]])
50713 *[[1902]] - [[Louis Beel]], [[Prime Minister of the Netherlands]] (d. [[1977]])
50714 *[[1903]] - [[Sally Rand]], American dancer and actress (d. [[1979]])
50715 *1903 - [[Jan Tinbergen]], Dutch economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (d. [[1994]])
50716 *[[1907]] - [[Felix de Weldon]], Austrian-born sculptor (d. [[2003]])
50717 *[[1908]] - [[Lionel Hampton]], American musician (d. [[2002]])
50718 *[[1912]] - [[Walt Gorney]], American actor (d. [[2004]])
50719 *[[1916]] - [[Beverly Cleary]], American writer
50720 *[[1917]] - [[Helen Forrest]], American singer (d. [[1999]])
50721 *[[1922]] - [[Tiny Tim]], American musician (d. [[1996]])
50722 *[[1923]] - [[Ann Miller]], American actress and dancer (d. [[2004]])
50723 *[[1928]] - [[Hardy KrÃŧger]], German actor
50724 *1928 - [[Jean-François Paillard]], French conductor
50725 *[[1932]] - [[Dennis Banks]], American activist
50726 *1932 - [[Lakshman Kadirgamar]], Sri Lankan Politician (assassinated) (d. [[2005]])
50727 *[[1933]] - [[Montserrat Caballe|Montserrat CaballÊ]], Catalan soprano
50728 *[[1935]] - [[Johnny Bucyk]], Canadian [[ice hockey]] player
50729 *[[1939]] - [[Alan Ayckbourn]], English writer
50730 *[[1940]] - [[Herbie Hancock]], American pianist and composer
50731 *[[1941]] - [[Bobby Moore]], English footballer (d. [[1993]])
50732 *[[1944]] - [[John Kay (musician)|John Kay]], German-born musician ([[Steppenwolf (band)|Steppenwolf]])
50733 *[[1946]] - [[Ed O'Neill]], American actor
50734 *[[1947]] - [[Tom Clancy]], American author
50735 *1947 - [[David Letterman]], American talk show host
50736 *[[1948]] - [[Jeremy Beadle]], British television presenter
50737 *1948 - [[Joschka Fischer]], Foreign Minister of Germany
50738 *1948 - [[Sandra &quot;Lois&quot; Reeves]], American singer ([[Martha &amp; the Vandellas]])
50739 *[[1949]] - [[Scott Turow]], American writer
50740 *[[1950]] - [[David Cassidy]], American singer and actor
50741 *1950 - [[Kari Palaste]], Finnish architect
50742 *[[1952]] - [[Ralph Wiley]], American sports journalist (d. [[2004]])
50743 *[[1954]] - [[Pat Travers]], Canadian musician
50744 *[[1956]] - [[Andy Garcia]], Cuban-born actor
50745 *1956 - [[Herbert GrÃļnemeyer]], German singer, pianist, and actor
50746 *[[1957]] - [[Vince Gill]], American musician
50747 *[[1961]] - [[Lisa Gerrard]], Australian singer and film composer
50748 *[[1962]] - [[Art Alexakis]], American musician ([[Everclear (band)|Everclear]])
50749 *[[1964]] - [[Amy Ray]], American musician ([[Indigo Girls]])
50750 *[[1970]] - [[Nick Hexum]], American musician ([[311 (band)|311]])
50751 *[[1971]] - [[Nicholas Brendon]], actor
50752 *1971 - [[Shannen Doherty]], American actress
50753 *[[1978]] - [[Guy Berryman]], British musician ([[Coldplay]])
50754 *1978 - [[Riley Smith]], American actor
50755 *[[1979]] - [[Claire Danes]], American actress
50756 *1979 - [[Mateja KeÅžman]], Serbian footballer
50757 *[[1982]] - [[Deen]], Bosnian singer
50758 *[[1985]] - [[Hitomi Yoshizawa]], Japanese singer ([[Morning Musume]])
50759
50760 ==Deaths==
50761 *[[65]] - [[Seneca the Younger]], Roman philosopher, statesman and dramatist
50762 *[[238]] - [[Gordian I]], [[Roman Emperor]] (suicide)
50763 *238 - [[Gordian II]], heir to the Roman Empire (killed in battle)
50764 *[[1443]] - [[Henry Chichele]], [[Archbishop of Canterbury]]
50765 *[[1550]] - [[Claude, Duke of Guise]], French soldier (b. [[1496]])
50766 *[[1555]] - [[Juana of Castile]], queen of [[Philip I of Castile]] (b. [[1479]])
50767 *[[1687]] - [[Ambrose Dixon]], Virginia Colony pioneer
50768 *[[1704]] - [[Jacques-BÊnigne Bossuet]], French bishop and writer (b. [[1627]])
50769 *[[1748]] - [[William Kent]], English architect
50770 *[[1782]] - [[Metastasio]], Italian poet and librettist (b. [[1698]])
50771 *[[1788]] - [[Carlo Antonio Campioni]], French-born composer (b. [[1719]])
50772 *[[1795]] - [[Johann Kaspar Basselet von La RosÊe]], Bavarian general (b. [[1710]])
50773 *[[1814]] - [[Charles Burney]], English music historian (b. [[1726]])
50774 *[[1850]] - [[Adoniram Judson]], American Baptist missionary (b. [[1788]])
50775 *[[1902]] - [[Marie Alfred Cornu]], French physicist (b. [[1842]])
50776 *[[1912]] - [[Clara Barton]], American nurse and Red Cross advocate (b. [[1821]])
50777 *[[1938]] - [[Feodor Chaliapin]], Russian bass (b. [[1873]])
50778 *[[1945]] - [[Franklin D. Roosevelt]], 32nd [[President of the United States]] (b. [[1882]])
50779 *[[1962]] - [[Sir Mokshagundam Visvesvaraya]], Indian politician and engineer (b. [[1861]])
50780 *[[1971]] - [[Igor Tamm]], Russian physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1895]])
50781 *1971 - [[Ed Lafitte]], American baseball player (b. [[1871]])
50782 *[[1975]] - [[Josephine Baker]], American dancer (b. [[1906]])
50783 *[[1980]] - [[Clark McConachy]], New Zealand billiards and snooker player (b. [[1895]])
50784 *1980 - [[William R. Tolbert, Jr.]], [[President of Liberia]] (b. [[1913]])
50785 *[[1981]] - [[Joe Louis]], American boxer (b. [[1914]])
50786 *[[1986]] - [[Valentin Kataev]], Russian writer (b. [[1897]])
50787 *[[1988]] - [[Alan Paton]], South African novelist (b. [[1903]])
50788 *[[1989]] - [[Gerald Flood]], British actor (b. [[1927]])
50789 *1989 - [[Abbie Hoffman]], American radical leader (b. [[1936]])
50790 *1989 - [[Sugar Ray Robinson]], American boxer (b. [[1921]])
50791 *[[1997]] - [[George Wald]], American scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1903]])
50792 *[[1999]] - [[Boxcar Willie]], American singer (b. [[1931]])
50793 *[[2003]] - [[Cecil H. Green]], American manufacturer (b. [[1900]])
50794
50795 ==Holidays and observances==
50796 *The [[Rome|Roman]] holiday of [[Cerealia]] begins.
50797 *[[Yuri's Night]], an international celebration of the first human in space, [[Yuri Gagarin]].
50798
50799 ==External links==
50800 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/12 BBC: On This Day]
50801 * [http://www.tnl.net/when/4/12 Today in History: April 12]
50802
50803 ----
50804 From &quot;Lines in Praise of a Date Made Praiseworthy Solely by Something Very Nice That Happened to It&quot;, by [[Ogden Nash]]:
50805
50806 :&quot;As through the calendar I delve
50807 :I pause to rejoice in April twelve.
50808 :Yea, be I in sickness or be I in health
50809 :My favorite date is April twealth.
50810 :...&quot;
50811
50812 ----
50813
50814 [[April 11]] - [[April 13]] - [[March 12]] - [[May 12]] -- [[historical anniversaries|listing of all days]]
50815
50816 {{months}}
50817
50818 [[af:12 April]]
50819 [[ar:12 Ø§Ø¨ØąŲŠŲ„]]
50820 [[an:12 d'abril]]
50821 [[ast:12 d'abril]]
50822 [[bg:12 Đ°ĐŋŅ€Đ¸Đģ]]
50823 [[be:12 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
50824 [[bs:12. april]]
50825 [[ca:12 d'abril]]
50826 [[ceb:Abril 12]]
50827 [[cv:АĐēĐ°, 12]]
50828 [[co:12 d'aprile]]
50829 [[cs:12. duben]]
50830 [[cy:12 Ebrill]]
50831 [[da:12. april]]
50832 [[de:12. April]]
50833 [[et:12. aprill]]
50834 [[el:12 ΑĪ€ĪÎšÎģίÎŋĪ…]]
50835 [[es:12 de abril]]
50836 [[eo:12-a de aprilo]]
50837 [[eu:Apirilaren 12]]
50838 [[fo:12. apríl]]
50839 [[fr:12 avril]]
50840 [[fy:12 april]]
50841 [[ga:12 AibreÃĄn]]
50842 [[gl:12 de abril]]
50843 [[ko:4ė›” 12ėŧ]]
50844 [[hr:12. travnja]]
50845 [[io:12 di aprilo]]
50846 [[id:12 April]]
50847 [[ia:12 de april]]
50848 [[ie:12 april]]
50849 [[is:12. apríl]]
50850 [[it:12 aprile]]
50851 [[he:12 באפריל]]
50852 [[jv:12 April]]
50853 [[ka:12 აპრილი]]
50854 [[csb:12 łÅŧÃĢkwiôta]]
50855 [[ku:12'ÃĒ avrÃĒlÃĒ]]
50856 [[lt:BalandÅžio 12]]
50857 [[lb:12. AbrÃĢll]]
50858 [[li:12 april]]
50859 [[hu:Április 12]]
50860 [[mk:12 Đ°ĐŋŅ€Đ¸Đģ]]
50861 [[ms:12 April]]
50862 [[nap:12 'e abbrile]]
50863 [[nl:12 april]]
50864 [[ja:4月12æ—Ĩ]]
50865 [[no:12. april]]
50866 [[nn:12. april]]
50867 [[oc:12 d'abril]]
50868 [[pl:12 kwietnia]]
50869 [[pt:12 de Abril]]
50870 [[ro:12 aprilie]]
50871 [[ru:12 Đ°ĐŋŅ€ĐĩĐģŅ]]
50872 [[se:CuoŋomÃĄnu 12.]]
50873 [[sco:12 Aprile]]
50874 [[sq:12 Prill]]
50875 [[scn:12 di aprili]]
50876 [[simple:April 12]]
50877 [[sk:12. apríl]]
50878 [[sl:12. april]]
50879 [[sr:12. Đ°ĐŋŅ€Đ¸Đģ]]
50880 [[fi:12. huhtikuuta]]
50881 [[sv:12 april]]
50882 [[tl:Abril 12]]
50883 [[tt:12. Äpril]]
50884 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 12]]
50885 [[th:12 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
50886 [[vi:12 thÃĄng 4]]
50887 [[tr:12 Nisan]]
50888 [[uk:12 ĐēвŅ–Ņ‚ĐŊŅ]]
50889 [[ur:12 اŲžØąÛŒŲ„]]
50890 [[wa:12 d' avri]]
50891 [[war:Abril 12]]
50892 [[zh:4月12æ—Ĩ]]
50893 [[pam:Abril 12]]</text>
50894 </revision>
50895 </page>
50896 <page>
50897 <title>April 15</title>
50898 <id>1010</id>
50899 <revision>
50900 <id>42118985</id>
50901 <timestamp>2006-03-03T23:13:46Z</timestamp>
50902 <contributor>
50903 <username>Nigosh</username>
50904 <id>221949</id>
50905 </contributor>
50906 <comment>rm redlink</comment>
50907 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
50908 {| style=&quot;float:right;&quot;
50909 |-
50910 |{{AprilCalendar}}
50911 |-
50912 |{{ThisDateInRecentYears|Month=April|Day=15}}
50913 |}
50914 '''April 15''' is the 105th day of the year in the [[Gregorian calendar]] (106th in [[leap year]]s). There are 260 days remaining.
50915 ==Events==
50916 *[[1450]] - [[Battle of Formigny]]; Toward the end of the [[Hundred Years' War]], the [[France|French]] attack and nearly annihilate [[England|English]] forces, ending English domination in northern France.
50917 *[[1632]] - [[Battle of Rain]]; [[Sweden|Swedes]] under [[Gustavus Adolphus of Sweden|Gustavus Adolphus]] defeat the [[Holy Roman Empire]] during the [[Thirty Years' War]].
50918 *[[1738]] - Premiere in [[London]] of [[Serse]], an [[Italy|Italian]] [[opera]] by[[George Frideric Handel]].
50919 *[[1755]] - [[Samuel Johnson]]'s ''[[A Dictionary of the English Language]]'' published in London.
50920 *[[1783]] - Preliminary articles of peace ending [[Revolutionary War]] ratified.
50921 *[[1802]] - [[William Wordsworth]] and his sister, [[Dorothy Wordsworth|Dorothy]] come across a &quot;long belt&quot; of [[daffodil]]s, inspiring the former to pen ''[[I Wandered Lonely as a Cloud]]''.
50922 *[[1865]] - [[Abraham Lincoln]] dies after being shot the previous evening by [[John Wilkes Booth]].
50923 * 1865 - [[Andrew Johnson]] becomes the 17th [[President of the United States]].
50924 *[[1892]] - The [[General Electric Company]] is formed through the merger of the Edison General Electric Company and the Thomson-Houston Company.
50925 *[[1912]] - The British passenger liner [[RMS Titanic|RMS ''Titanic'']] sinks at about 2:20 a.m. after hitting an iceberg in the North Atlantic almost three hours earlier.
50926 *[[1915]] - The [[Armenian Genocide]] began when the [[Ottoman Empire]] undertook the systematic annihilation of [[Armenian people|Armenian]] intellectuals and entrepreneurs within the city of [[Constantinople]] and later the entire Armenian population of the Empire.
50927 *[[1920]] - [[Anarchism|Anarchist]]s [[Sacco and Vanzetti]] allegedly murder two security guards while robbing a shoe store.
50928 *[[1923]] - [[Insulin]] first became generally available for use by [[diabetes mellitus|diabetics]].
50929 *[[1924]] - [[Rand McNally]] publishes its first [[road atlas]].
50930 *[[1927]] - [[Douglas Fairbanks]], [[Mary Pickford]] and [[Norma Talmadge|Norma]] and [[Constance Talmadge]] become the first celebrities to leave their footprints in cement at [[Grauman's Chinese Theater]] in [[Hollywood]].
50931 *[[1940]] - The [[Allies]] start their attack on the [[Norway|Norwegian]] town of [[Narvik]] which was occupied by [[Nazi Germany]].
50932 *[[1942]] - [[George Cross]] awarded to &quot;to the island fortress of [[Malta]] - its people and defenders&quot; by [[George VI of the United Kingdom|King George VI]].
50933 *[[1945]] - The [[Bergen-Belsen concentration camp|Bergen-Belsen]] [[concentration camp]] is liberated.
50934 *[[1947]] - [[Jackie Robinson]] debuts for the [[Los Angeles Dodgers|Brooklyn Dodgers]] [[baseball]] team, breaking that sport's color line.
50935 *[[1955]] - The first [[McDonald's]] restaurant opens in [[Des Plaines, Illinois]].
50936 *[[1983]] - [[Tokyo Disneyland]] opens.
50937 *[[1985]] - [[Marvin Hagler]] defeats [[Thomas Hearns]] by a knockout in round three to retain [[boxing]]'s world [[Middleweight]] championship in a fight nicknamed ''[[The War (boxing)|The War]]''.
50938 *[[1989]] - [[Hillsborough disaster]]: A human [[stampede]] occurs at [[Hillsborough (stadium)|Hillsborough]], a football stadium in [[Sheffield, England]], resulting in the loss of 96 lives.
50939 * 1989 - Upon [[Hu Yaobang]]'s death, the [[Tiananmen Square protests of 1989]] begin in the [[People's Republic of China]].
50940 *[[1994]] - Representatives of 124 countries and the [[European Communities]] sign the [[Marrakesh Agreement]]s revising the [[General Agreement on Tariffs and Trade]] and setting up the [[World Trade Organization]] (effective [[January 1]] [[1995]]).
50941 *[[1997]] - Fire sweeps through a campsite of [[Muslim]]s making the [[Hajj]] [[pilgrimage]]; the official death toll is 343.
50942 *[[2002]] - An [[Air China]] [[Boeing 767]]-200, [[flight CA129]] crashes into hillside during heavy rain and fog near [[Pusan]], [[South Korea]], killing 128.
50943
50944 ==Births==
50945 *[[1452]] - [[Leonardo da Vinci]], Italian artist (d. [[1519]])
50946 *[[1489]] - [[Sinan]], Ottoman architect (d. [[1588]])
50947 *[[1552]] - [[Pietro Cataldi]], Italian mathematician (d. [[1626]])
50948 *[[1580]] - [[George Calvert, 1st Baron Baltimore]], English politician and colonizer
50949 *[[1588]] - [[Claudius Salmasius]], French classical scholar (d. [[1653]])
50950 *[[1641]] - [[Robert Sibbald]], Scottish physician and antiquarian (d. [[1722]])
50951 *[[1642]] - [[Suleiman II]], [[Ottoman Sultan]] (d. [[1691]])
50952 *[[1646]] - King [[Christian V of Denmark]] (d. [[1699]])
50953 *[[1684]] - [[Catherine I of Russia]] (d. [[1727]])
50954 *[[1688]] - [[Johann Friedrich Fasch]], German composer (d. [[1758]])
50955 *[[1707]] - [[Leonhard Euler]], Swiss mathematician (d. [[1783]])
50956 *[[1710]] - [[William Cullen]], Scottish physician and chemist (d. [[1790]])
50957 *[[1721]] - [[Prince William Augustus, Duke of Cumberland]], English military leader (d. [[1765]])
50958 *[[1772]] - [[Étienne Geoffroy Saint-Hilaire]], French naturalist (d. [[1844]])
50959 *[[1793]] - [[Friedrich Georg Wilhelm von Struve]], German astronomer (d. [[1864]])
50960 *[[1794]] - [[Jean Pierre Flourens]], French physiologist (d. [[1867]])
50961 *[[1800]] - [[James Clark Ross]], English explorer (d. [[1862]])
50962 *[[1809]] - [[Hermann Grassmann]], German mathematician and physicist (d. [[1877]])
50963 *[[1832]] - [[Wilhelm Busch]], German poet and artist (d. [[1908]])
50964 *[[1843]] - [[Henry James]], American author (d. [[1916]])
50965 *[[1858]] - [[Émile Durkheim]], French sociologist (d. [[1917]])
50966 *[[1861]] - [[Bliss Carman]], Canadian poet (d. [[1929]])
50967 *[[1874]] - [[Johannes Stark]], German physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1957]])
50968 *[[1878]] - [[Robert Walser (writer)|Robert Walser]], Swiss writer (d. [[1956]])
50969 *[[1879]] - [[Melville Henry Cane]], American lawyer and poet (d. [[1980]])
50970 *[[1883]] - [[Stanley Bruce]], eighth [[Prime Minister of Australia]] (d. [[1967]])
50971 *[[1886]] - [[Nikolay Gumilyov]], Russian poet (d. [[1921]])
50972 *[[1889]] - [[Thomas Hart Benton (painter)|Thomas Hart Benton]], American muralist (d. [[1975]])
50973 * 1889 - [[A. Philip Randolph]], American activist (d. [[1979]])
50974 *[[1894]] - [[Bessie Smith]], American blues singer (d. [[1937]])
50975 *[[1895]] - [[Clark McConachy]], New Zealand billiards and snooker player (d. [[1980]])
50976 *[[1896]] - [[Nikolay Nikolayevich Semyonov]], Russian chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1986]])
50977 *[[1901]] - [[Joe Davis]], English snooker player (d. [[1978]])
50978 *[[1902]] - [[Fernando Pessa]], Portuguese journalist (d. [[2002]])
50979 *[[1907]] - [[Nikolaas Tinbergen]], Dutch ornithologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1988]])
50980 *[[1912]] - [[Kim Il Sung]], [[President of North Korea]] (d. [[1994]])
50981 *[[1916]] - [[Alfred S. Bloomingdale]], American businessman (d. [[1982]])
50982 *[[1917]] - [[Hans Conried]], American actor (d. [[1982]])
50983 *[[1920]] - [[Richard von Weizacker|Richard von Weizäcker]], [[President of Germany]]
50984 *[[1921]] - [[Georgi Beregovoi]], cosmonaut (d. [[1995]])
50985 *[[1922]] - [[Michael Ansara]], Syrian-American actor
50986 * 1922 - [[Harold Washington]], Mayor of Chicago (d. [[1987]])
50987 *[[1924]] - Sir [[Neville Marriner]], English conductor and violinist
50988 *[[1927]] - [[Robert Mills (physicist)|Robert Mills]], American physicist (d. [[1999]])
50989 *[[1930]] - [[Vigdis Finnbogadottir|Vigdís FinnbogadÃŗttir]], [[President of Iceland]]
50990 *[[1933]] - [[Roy Clark]], American musician
50991 * 1933 - [[Elizabeth Montgomery]], American actress (d. [[1995]])
50992 * 1933 - [[Boris and Arkady Strugatsky|Boris Strugatsky]], Russian author
50993 *[[1939]] - [[Claudia Cardinale]], Tunisian-born actress
50994 *[[1940]] - [[Jeffrey Archer, Baron Archer of Weston-super-Mare|Jeffrey Archer]], British author and Member of Parliament
50995 * 1940 - [[Robert Walker Jr.]], American actor
50996 *[[1942]] - [[Francis Xavier Dilorenzo|Francis X. DiLorenzo]], American Catholic prelate
50997 *1942 - [[Walt Hazzard]], American basketball player
50998 *[[1944]] - [[Dzhokhar Dudaev]], Chechen leader (d. [[1996]])
50999 *1944 - [[Dave Edmunds]], Welsh musician
51000 *[[1947]] - [[Lois Chiles]], American actress
51001 *1947 - [[Mike Chapman (record producer)|Mike Chapman]], songwriter (with [[Nicky Chinn]]) and producer ([[Suzi Quatro]], [[Sweet (band)|Sweet]], [[Blondie]])
51002 *[[1948]] - [[Michael Kamen]], American composer (d. [[2003]])
51003 *[[1949]] - [[Tonio K]], American singer
51004 *1949 - [[Alla Pugacheva]], Russian singer
51005 *[[1950]] - [[Amy Wright]], American actress
51006 *[[1951]] - [[Heloise (columnist)|Heloise]], American newspaper columnist
51007 *[[1954]] - [[Seka]], American actress
51008 *[[1955]] - [[Dodi Al-Fayed]], Egyptian businessman (d. [[1997]])
51009 *[[1957]] - [[Evelyn Ashford]], American athlete
51010 *[[1958]] - [[Benjamin Zephaniah]], British writer and musician
51011 *[[1959]] - [[Emma Thompson]], English actress
51012 * 1959 - [[Thomas F. Wilson]], American actor
51013 *[[1960]] - [[Tony Jones]], English snooker player
51014 *[[1962]] - [[Nawal El Moutawakel]], Morrocan hurdler
51015 *[[1963]] - [[Bobby Pepper]], American journalist
51016 *[[1965]] - [[Linda Perry]], American musician
51017 *[[1966]] - [[Samantha Fox]], English singer and model
51018 *[[1967]] - [[Frankie Poullain]], British bassist ([[The Darkness]])
51019 *1967 - [[Dara Torres]], American swimmer
51020 *[[1968]] - [[Ed O'Brien]], British musician ([[Radiohead]])
51021 *1968 - [[Stacey Williams]], American model
51022 *[[1970]] - [[Flex Alexander]], American actor
51023 *[[1972]] - [[Arturo Gatti]], Canadian boxer
51024 *[[1974]] - [[Danny Pino]], American actor
51025 *1974 - [[Josh Todd]], musician and singer ([[Buckcherry]])
51026 *[[1977]] - [[Chandra Levy]], American Congressional intern (d. [[2001]])
51027 *[[1980]] - [[RaÃēl LÃŗpez]], Spanish basketball player
51028 *[[1981]] - [[AndrÊs d'Alessandro]], Argentine football player
51029 *[[1983]] - [[Ilya Kovalchuk]], Russian hockey player
51030 *[[1986]] - [[Quincy Owusu-Abeyie]], Dutch footballer
51031 *[[1990]] - [[Emma Watson]], English actress
51032 *[[1992]] - [[Amy Diamond]], Swedish pop singer
51033
51034 ==Deaths==
51035 *[[1053]] - [[Godwin, Earl of Wessex]]
51036 *[[1220]] - [[Adolf of Altena]], Archbishop of Cologne
51037 *[[1415]] - [[Manuel Chrysoloras]], Greek humanist
51038 *[[1446]] - [[Filippo Brunelleschi]], Italian architect (b. [[1377]])
51039 *[[1610]] - [[Robert Parsons]], English Jesuit priest (b. [[1546]])
51040 *[[1621]] - [[John Carver]], first governor of Plymouth Colony
51041 *[[1641]] - [[Domenico Zampieri]], Italian painter (b. [[1581]])
51042 *[[1659]] - [[Simon Dach]], German poet (b. [[1605]])
51043 *[[1704]] - [[Johann van Waveren Hudde]], Dutch mathematician (b. [[1628]])
51044 *[[1719]] - [[Françoise d'AubignÊ, marquise de Maintenon]], second wife of [[Louis XIV of France]] (b. [[1635]])
51045 *[[1754]] - [[Jacopo Riccati]], Italian mathematician (b. [[1676]])
51046 *[[1761]] - [[Archibald Campbell, 3rd Duke of Argyll]], Scottish politician (b. [[1682]])
51047 *1761 - [[William Oldys]], English antiquarian and bibliographer (b. [[1696]])
51048 *[[1764]] - [[Madame de Pompadour]], mistress of King [[Louis XIV of France]] (b. [[1721]])
51049 *[[1765]] - [[Mikhail Lomonosov]], Russian scientist and writer (b. [[1711]])
51050 *[[1788]] - [[Giuseppe Bonno]], Austrian composer (b. [[1711]])
51051 *[[1793]] - [[Ignacije Szentmartony]], Croatian Jesuit missionary and geographer (b. [[1718]])
51052 *[[1804]] - [[Charles Pichegru]], French general (strangled in prison) (b. [[1761]])
51053 *[[1843]] - [[Noah Webster]], American lexicographer (b. [[1758]])
51054 *[[1854]] - [[Arthur Aikin]], English chemist, mineralogist, and scientific writer (b. [[1773]])
51055 *[[1865]] - [[Abraham Lincoln]], [[President of the United States]] (b. [[1809]])
51056 *[[1888]] - [[Matthew Arnold]], English poet (b. [[1822]])
51057 *1888 - [[Father Damien]], Belgian missionary (b. [[1840]])
51058 *[[1898]] - [[Kepa Te Rangihiwinui]], Maori military leader
51059 *[[1912]] - Victims of the [[RMS Titanic|RMS Titanic]]
51060 **[[Edward Smith]], Captain of the Titanic (b. [[1850]])
51061 **[[John Jacob Astor IV]], American businessman (b. [[1864]])
51062 **[[Benjamin Guggenheim]], American businessman (b. [[1865]])
51063 *[[1938]] - [[CÊsar Vallejo]], Peruvian poet (b. [[1892]])
51064 *[[1942]] - [[Robert Musil]], German novelist (b. [[1880]])
51065 *[[1949]] - [[Wallace Beery]], American actor (b. [[1885]])
51066 *[[1962]] - [[Clara Blandick]], American actress (b. [[1881]])
51067 *[[1964]] - [[Rachel Carson]], American biologist and author (b. [[1907]])
51068 *[[1969]] - [[Victoria Eugenie of Battenberg]], Queen of Spain (b. [[1887]])
51069 *[[1971]] - [[Dan Reeves (NFL Owner)|Dan Reeves]] - Owner of the [[St. Louis Rams|Cleveland/Los Angeles Rams]] (b. [[1912]])
51070 *[[1974]] - [[Giovanni D'Anzi]], Italian songwriter (b.[[1906]])
51071 *[[1975]] - [[Richard Conte]], American actor (b. [[1910]])
51072 *[[1980]] - [[Raymond Bailey]], American actor (b. [[1904]])
51073 *1980 - [[Jean-Paul Sartre]], French philosopher and writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (declined) (b. [[1905]])
51074 *[[1982]] - [[Arthur Lowe]], British actor (b. [[1915]])
51075 *[[1984]] - [[Tommy Cooper]], Welsh comedy magician (b. [[1921]])
51076 *[[1986]] - [[Jean Genet]], French author (b. [[1910]])
51077 *[[1988]] - [[Kenneth Williams]], English actor and comedian (b. [[1926]])
51078 *1988 - [[Tony Mann]], Australian footballer
51079 *[[1989]] - [[Hu Yaobang]], leader of China (b. [[1915]])
51080 *[[1990]] - [[Greta Garbo]], Swedish actress (b. [[1905]])
51081 *[[1993]] - [[John Tuzo Wilson]], Canadian geologist (b. [[1908]])
51082 *1993 - [[Leslie Charteris]], Singapore-born author (b. [[1907]])
51083 *[[1994]] - [[John Curry]], English figure skater (b. [[1949]])
51084 *[[1998]] - [[Pol Pot]], Cambodian dictator (b. [[1925]])
51085 *[[2000]] - [[Edward Gorey]], American illustrator (b. [[1925]])
51086 *[[2001]] - [[Joey Ramone]], American musician and singer ([[The Ramones]]) (b. [[1951]])
51087 *[[2002]] - [[Damon Knight]], author (b. [[1922]])
51088 *2002 - [[Byron White|Byron &quot;Whizzer&quot; White]], American football player and U.S. Supreme Court Justice (b. [[1917]])
51089 *[[2003]] - [[Erin Fleming]], Canadian actress (b. [[1941]])
51090
51091 ==Holidays and observances==
51092 *In the United States, today is the official deadline for filing [[tax return]]s: all forms mailed to the [[Internal Revenue Service|IRS]] must be [[postmark]]ed no later than today, so [[post office]]s across the stay open until midnight to accommodate procrastinators (or those who owe tax and want to wait as late as possible to pay). (If this day falls on the weekend, as in 2006, the following Monday becomes the deadline.)
51093 *Ancient [[Latvia]] &amp;mdash; [[Tipsa Diena]] was observed
51094 *[[Arirang Festival]] is held in [[North Korea]] to commemorate [[Kim Il-sung]]'s birth
51095 *[[Father Damien|Father Damien Day]] &amp;mdash; celebrated annually in [[Hawaii|Hawai'i]]
51096 *[[Feast day]] of [[Saint Paternus]]
51097 *[[Roman Empire]] &amp;mdash; the [[Fordicia]] was celebrated in honor of [[Gaia (mythology)|Terra]]
51098 *[[Major League Baseball]] celebrates &quot;[[Jackie Robinson]] Day&quot; each April 15 in all MLB ballparks
51099
51100 ==External links==
51101 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/15 BBC: On This Day]
51102 * [http://www.nytimes.com/learning/general/onthisday/20050415.html ''The New York Times'': On This Day]
51103 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=15 On This Day in Canada]
51104 ----
51105
51106 [[April 14]] - [[April 16]] - [[March 15]] - [[May 15]] -- [[historical anniversaries|listing of all days]]
51107
51108 {{months}}
51109
51110 [[af:15 April]]
51111 [[an:15 d'abril]]
51112 [[ar:15 ØĨØ¨ØąŲŠŲ„]]
51113 [[ast:15 d'abril]]
51114 [[be:15 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
51115 [[bg:15 Đ°ĐŋŅ€Đ¸Đģ]]
51116 [[bs:15. april]]
51117 [[ca:15 d'abril]]
51118 [[ceb:Abril 15]]
51119 [[co:15 d'aprile]]
51120 [[cs:15. duben]]
51121 [[csb:15 łÅŧÃĢkwiôta]]
51122 [[cv:АĐēĐ°, 15]]
51123 [[cy:15 Ebrill]]
51124 [[da:15. april]]
51125 [[de:15. April]]
51126 [[el:15 ΑĪ€ĪÎšÎģίÎŋĪ…]]
51127 [[eo:15-a de aprilo]]
51128 [[es:15 de abril]]
51129 [[et:15. aprill]]
51130 [[eu:Apirilaren 15]]
51131 [[fi:15. huhtikuuta]]
51132 [[fo:15. apríl]]
51133 [[fr:15 avril]]
51134 [[fy:15 april]]
51135 [[ga:15 AibreÃĄn]]
51136 [[gl:15 de abril]]
51137 [[he:15 באפריל]]
51138 [[hr:15. travnja]]
51139 [[hu:Április 15]]
51140 [[ia:15 de april]]
51141 [[id:15 April]]
51142 [[ie:15 april]]
51143 [[io:15 di aprilo]]
51144 [[is:15. apríl]]
51145 [[it:15 aprile]]
51146 [[ja:4月15æ—Ĩ]]
51147 [[jv:15 April]]
51148 [[ka:15 აპრილი]]
51149 [[ko:4ė›” 15ėŧ]]
51150 [[ku:15'ÃĒ avrÃĒlÃĒ]]
51151 [[lb:15. AbrÃĢll]]
51152 [[li:15 april]]
51153 [[lt:BalandÅžio 15]]
51154 [[mk:15 Đ°ĐŋŅ€Đ¸Đģ]]
51155 [[ms:15 April]]
51156 [[nap:15 'e abbrile]]
51157 [[nl:15 april]]
51158 [[nn:15. april]]
51159 [[no:15. april]]
51160 [[oc:15 d'abril]]
51161 [[pam:Abril 15]]
51162 [[pl:15 kwietnia]]
51163 [[pt:15 de Abril]]
51164 [[ro:15 aprilie]]
51165 [[ru:15 Đ°ĐŋŅ€ĐĩĐģŅ]]
51166 [[scn:15 di aprili]]
51167 [[sco:15 Aprile]]
51168 [[se:CuoŋomÃĄnu 15.]]
51169 [[simple:April 15]]
51170 [[sk:15. apríl]]
51171 [[sl:15. april]]
51172 [[sq:15 Prill]]
51173 [[sr:15. Đ°ĐŋŅ€Đ¸Đģ]]
51174 [[sv:15 april]]
51175 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 15]]
51176 [[th:15 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
51177 [[tl:Abril 15]]
51178 [[tr:15 Nisan]]
51179 [[tt:15. Äpril]]
51180 [[uk:15 ĐēвŅ–Ņ‚ĐŊŅ]]
51181 [[ur:15 اŲžØąÛŒŲ„]]
51182 [[vi:15 thÃĄng 4]]
51183 [[wa:15 d' avri]]
51184 [[war:Abril 15]]
51185 [[zh:4月15æ—Ĩ]]</text>
51186 </revision>
51187 </page>
51188 <page>
51189 <title>April 30</title>
51190 <id>1011</id>
51191 <revision>
51192 <id>41950790</id>
51193 <timestamp>2006-03-02T21:04:29Z</timestamp>
51194 <contributor>
51195 <username>Durova</username>
51196 <id>521374</id>
51197 </contributor>
51198 <comment>/* Events */ adding</comment>
51199 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
51200 {| style=&quot;float:right;&quot;
51201 |-
51202 |{{AprilCalendar}}
51203 |-
51204 |{{ThisDateInRecentYears|Month=April|Day=30}}
51205 |}
51206 '''April 30''' is the 120th day of the year in the [[Gregorian calendar]] (121st in [[leap year]]s), with 245 days remaining, as the last day in April.
51207 ==Events==
51208 *[[313]] - [[Roman emperor]] [[Licinius]] unifies the entire [[Eastern Roman Empire]] under his rule.
51209 *[[711]] - [[Moors|Moorish]] troops led by [[Tariq ibn-Ziyad]] land at [[Gibraltar]] to begin their [[invasion]] of the [[Iberian Peninsula]] ([[Al-Andalus]]).
51210 *[[1429]] - [[Joan of Arc]] arrives to relieve the [[Siege of OrlÊans]].
51211 *[[1483]] - [[Orbit]]al calculations suggest that on this day [[Pluto]] moved inside [[Neptune]]'s orbit, making Neptune the furthest planet from the Sun until [[July 23]], [[1503]].
51212 *[[1492]] - [[Spain]] gives [[Christopher Columbus]] his commission of exploration.
51213 *[[1671]] - [[Petar Zrinski]], the [[Croatia]]n [[Ban (title)|Ban]] from the [[Zrinski]] family, is [[capital punishment|executed]].
51214 * [[1794]] - The [[Battle of Boulou (1794)|Battle of Boulou]] is fought, in which [[France|French]] forces defeated the [[Spain|Spanish]] under General Union.
51215 *[[1789]] - On the balcony of [[Federal Hall]] on [[Wall Street]] in [[New York City]], [[George Washington]] takes the oath of office to become the first elected [[President of the United States]].
51216 *[[1803]] - [[Louisiana Purchase]]: The [[United States]] purchases the [[Louisiana]] Territory from [[France]] for $15 million, more than doubling &amp;ndash; overnight &amp;ndash; the size of the young nation.
51217 *[[1812]] - The [[Territory of Orleans]] becomes the 18th [[U.S. state]] under the name [[Louisiana]].
51218 *[[1838]] - [[Nicaragua]] declares independence from the [[Central American Federation]]
51219 *[[1863]] - [[Mexican]] forces attacked the [[French Foreign Legion]] in Hacienda CamarÃŗn,[[Mexico]].
51220 *[[1894]] - [[Coxey's Army]] reaches [[Washington, D.C.]] to protest the [[unemployment]] caused by the [[Panic of 1893]].
51221 *[[1900]] - [[Hawaii]] becomes a territory of the [[United States]], with [[Sanford B. Dole]] as governor.
51222 * 1900 - [[Casey Jones]] dies attempting to save the runaway train [[Cannonball Express]].
51223 *[[1904]] - The [[Louisiana Purchase Exposition]] [[World's Fair]] opens in [[Saint Louis, Missouri]].
51224 *[[1920]] - [[Peru]] becomes a signatory to the [[Buenos Aires Convention|Buenos Aires]] [[copyright]] [[treaty]].
51225 *[[1925]] - Automaker [[Dodge Brothers, Inc]] is sold to [[Dillon, Read &amp; Company]] for [[USD]] $146 million plus $50 million for charity.
51226 *[[1927]] - The [[Federal Industrial Institute for Women]], opens in [[Alderson, West Virginia]], as the first women's federal prison in the [[United States]].
51227 *[[1938]] - The [[animated cartoon]] short ''[[Porky's Hare Hunt]]'' debuts in movie theaters, introducing [[Bugs Bunny]].
51228 *[[1939]] - [[Franklin D. Roosevelt]] becomes the first [[President of the United States]] to appear on [[television]].
51229 * 1939 - The [[1939 New York World's Fair]] opens.
51230 *[[1943]] - [[World War II]]: [[Operation Mincemeat]] &amp;ndash; The submarine [[HMS Seraph (P219)|HMS ''Seraph'']] surfaces in the [[Mediterranean Sea]] off the coast of [[Spain]] to deposit a dead man planted with false invasion plans and dressed as a British military intelligence officer.
51231 *[[1945]] - [[Adolf Hitler]] and [[Eva Braun]] commit suicide after being married for one day.
51232 *[[1947]] - In [[Nevada]], the Boulder Dam is officially renamed [[Hoover Dam]] again.
51233 *[[1948]] - In [[BogotÃĄ]], [[Colombia]], the [[Organization of American States]] is established.
51234 *[[1966]] - [[Anton LaVey]] founds the [[Church of Satan]].
51235 *[[1973]] - [[Watergate Scandal]]: President [[Richard Nixon]] announces that top [[White House]] aids [[H.R. Haldeman]], [[John Ehrlichman]], and others have resigned.
51236 *[[1975]] - Communist forces gains control of [[Saigon]]. The [[Vietnam War]] formally ends with the unconditional surrender of [[South Vietnam]]ese president [[Duong Van Minh]].
51237 *[[1980]] - Accession of [[Beatrix of the Netherlands|Queen Beatrix of the Netherlands]].
51238 *[[1983]] - [[Michael Jackson]]'s song &quot;[[Beat It]]&quot; hits number 1 on the [[Billboard magazine|Billboard]] music charts.
51239 *[[1988]] - In [[Dublin]], [[Ireland]], [[Celine Dion|CÊline Dion]] wins the thirty-third [[Eurovision Song Contest]] for [[Switzerland]] singing &quot;Ne partez pas sans moi&quot; (Don't leave without me).
51240 *[[1991]] - A [[1991 Bangladesh cyclone|tropical cyclone]] hits [[Bangladesh]] killing an estimated 138,000 people.
51241 *[[1992]] - The last episode of the ''[[Cosby Show]]'' airs.
51242 *[[1993]] - The [[World Wide Web]] was born at [[CERN]]
51243 *[[1993]] - During a changeover at a [[tennis]] tournament in [[Hamburg, Germany]], [[Monica Seles]] is stabbed in the back by a deranged fan of rival [[Steffi Graf]]. Seles would not play competitively for more than two years after the incident.
51244 *[[1994]] - In [[Dublin]], [[Ireland]], [[Paul Harrington]] &amp; [[Charlie McGettigan]] win the thirty-ninth [[Eurovision Song Contest]] for Ireland singing &quot;Rock'n'Roll Kids&quot;.
51245 *[[1995]] - U.S. President [[Bill Clinton]] became the first U.S. President to visit [[Northern Ireland]].
51246 *[[1997]] - [[Ellen DeGeneres]]'s character comes out of [[the closet]] on the sitcom [[Ellen (TV show)|Ellen]].
51247 *[[1999]] - [[NATO]] membership expands by approving the admission of the [[Czech Republic]], [[Hungary]] and [[Poland]].
51248 *1999 - [[Cambodia]] joins the [[Association of Southeast Asian Nations]] (ASEAN) bringing the total members to 10.
51249 *1999 - [[Neo-nazi]] bomber [[David Copeland]] detonates his third bomb in front of the [[Admiral Duncan pub]] and is arrested the night after.
51250 *2001 - [[Chandra Levy]], a former intern to [[California]] Congressman [[Gary Condit]], is last seen in [[Washington, D.C.]]
51251 *[[2002]] - A [[referendum]] in [[Pakistan]] overwhelmingly approves the Presidency of [[Pervez Musharraf]] for another five years.
51252 * 2002 - The law N26-РЗ &quot;On the [[Flag of Udmurtia|National Flag of the Udmurt Republic]]&quot; has appeared.
51253 *[[2004]] - The last edition of [[National Public Radio|NPR]]'s ''[[Morning Edition]]'' with [[Bob Edwards]] as host airs.
51254
51255 ==Births==
51256 *[[1586]] - [[Saint Rose of Lima]], Peruvian saint (d. [[1617]])
51257 *[[1602]] - [[William Lilly]], English astrologer (d. [[1681]])
51258 *[[1623]] - [[François de Laval]], first bishop of New France (d. [[1708]])
51259 *[[1651]] - [[Jean-Baptiste de la Salle]], French educational reformer (d. [[1719]])
51260 *[[1662]] - Queen [[Mary II of England]] (d. [[1694]])
51261 *[[1664]] - [[François Louis, Prince of Conti]], French general (d. [[1709]])
51262 *[[1710]] - [[Johann Kaspar Basselet von La RosÊe]], Bavarian general (d. [[1795]])
51263 *[[1723]] - [[Mathurin Jacques Brisson]], French naturalist (d. [[1806]])
51264 *[[1721]] - [[Roger Sherman]], American signer of the Declaration of Independence (d. [[1793]])
51265 *[[1777]] - [[Carl Friedrich Gauss]], German mathematician, astronomer, and physicist (d. [[1855]])
51266 *[[1829]] - [[Ferdinand von Hochstetter]], Austrian geologist (d. [[1884]])
51267 *[[1857]] - [[Eugene Bleuler]], Swiss psychiatrist (d. [[1940]])
51268 *[[1865]] - [[Max Nettlau]], German anarchist and historian (d. [[1944]])
51269 *[[1870]] - [[Franz Lehar]], Austrian composer (d. [[1948]])
51270 *[[1876]] - [[Orso Mario Corbino]], Italian physicist (d. [[1937]])
51271 *[[1877]] - [[Alice B. Toklas]], American companion of [[Gertrude Stein]] (d. [[1967]])
51272 *[[1883]] - [[Jaroslav Hasek|Jaroslav Ha&amp;#353;ek]], Czech novelist (d. [[1923]])
51273 *[[1893]] - [[Joachim von Ribbentrop]], Nazi foreign minister (d. [[1946]])
51274 *[[1901]] - [[Simon Kuznets]], Ukrainian-born economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (d. [[1985]])
51275 *[[1902]] - [[Theodore Schultz]], American economist, [[Nobel Prize in Economics|Nobel Prize]] laureate (d. [[1998]])
51276 *[[1908]] - [[Bjarni Benediktsson]], Icelandic foreign and later prime minister (d. [[1970]])
51277 *[[1909]] - Queen [[Juliana of the Netherlands]] (d. [[2004]])
51278 *1909 - [[F. E. McWilliam]], Northern Irish sculptor (d. [[1992]])
51279 *[[1910]] - [[Al Lewis]], American actor and politician (d. [[2006]])
51280 *[[1916]] - [[Claude Shannon]], American engineer and mathematician (d. [[2001]])
51281 *1916 - [[Robert Shaw (conductor)|Robert Shaw]], American conductor (d. [[1999]])
51282 *[[1925]] - [[Johnny Horton]], American musician (d. [[1960]])
51283 *[[1930]] - [[Lawton Chiles]], American politician (d. [[1998]])
51284 *[[1933]] - [[Willie Nelson]], American musician, composer, and actor
51285 *[[1938]] - [[Larry Niven]], American author
51286 *[[1940]] - [[Burt Young]], American actor
51287 *[[1941]] - [[Johnny Farina]], American guitarist ([[Santo and Johnny]])
51288 *[[1943]] - [[Bobby Vee]], American singer
51289 *[[1944]] - [[Jill Clayburgh]], American actress
51290 *[[1945]] - [[Annie Dillard]], American writer
51291 *1945 - [[Michael Smith (astronaut)|Michael Smith]], astronaut (d. [[1986]])
51292 *[[1946]] - King [[Carl XVI Gustaf of Sweden|Carl XVI Gustaf of Sweden]]
51293 * 1946 - [[Don Schollander]], American swimmer
51294 *[[1947]] - [[Finn Kalvik]], Norwegian singer
51295 *[[1948]] - [[Perry King]], American actor
51296 *[[1949]] - [[Phil Garner]], baseball manager
51297 *1949 - [[Antonio Guterres]], [[Prime Minister of Portugal]]
51298 *[[1954]] - [[Jane Campion]], New Zealand film director
51299 *[[1955]] - [[Nicolas Hulot]], French journalist and author
51300 *[[1956]] - [[Jorge ChaminÊ]], Portuguese baritone
51301 *1956 - [[Lars von Trier]], Danish film director
51302 *[[1959]] - [[Stephen Harper]], Prime Minister of Canada
51303 *[[1961]] - [[Isiah Thomas]], American basketball player, coach, and team owner
51304 *[[1964]] - [[Barrington Levy]], Jamaican musician
51305 *[[1969]] - [[Paulo Jr.]], Brazilian bassist ([[Sepultura]])
51306 *1969 - [[Clark Vogeler]], American guitarist ([[The Toadies]])
51307 *[[1975]] - [[Elliott Sadler]], American race car driver
51308 *[[1981]] - [[John O'Shea (footballer)|John O'Shea]], Irish footballer
51309 *[[1982]] - [[Kirsten Dunst]], American actress, [[Justin Green]], National Football League fullback
51310 *[[1983]] - [[Troy Williamson]], American football player
51311 *[[1987]] - [[Nikki Webster]], Australian pop singer and entertainer
51312
51313 ==Deaths==
51314 *[[65]] - [[Lucan (poet)|Lucan]], Roman poet (b. [[39]])
51315 *[[1063]] - [[Emperor Renzong (Song Dynasty)|Emperor Renzong]] of China (b. [[1010]])
51316 *[[1341]] - [[John III, Duke of Brittany]] (b. [[1285]])
51317 *[[1439]] - [[Richard de Beauchamp, 13th Earl of Warwick]], English military leader (b. [[1382]])
51318 *[[1524]] - [[Pierre Terrail, seigneur de Bayard]], French soldier (b. [[1473]])
51319 *[[1544]] - [[Thomas Audley, 1st Baron Audley of Walden]], [[Lord Chancellor|Lord Chancellor of England]]
51320 *[[1555]] - [[Pope Marcellus II]] (b. [[1501]])
51321 *[[1632]] - [[Johan Tzerclaes, Count of Tilly]], Bavarian general (b. [[1559]])
51322 *[[1642]] - [[Dmitry Pozharsky]], Russian prince (b. [[1578]])
51323 *[[1660]] - [[Petrus Scriverius]], Dutch writer (b. [[1576]])
51324 *[[1655]] - [[Eustache Le Sueur]], French painter (b. [[1617]])
51325 *[[1696]] - [[Robert Plot]], British naturalist (b. [[1640]])
51326 *[[1712]] - [[Philipp van Limborch]], Dutch protestant theologian (b. [[1633]])
51327 *[[1736]] - [[Johann Albert Fabricius]], German classical scholar and bibliographer (b. [[1668]])
51328 *[[1758]] - [[François d'Agincourt]], French composer (b. [[1684]])
51329 *[[1792]] - [[John Montagu]], Supposed inventor of the sandwich (b. [[1718]])
51330 *[[1795]] - [[Jean-Jacques BarthÊlemy]], French writer and numismatist (b. [[1716]])
51331 *[[1847]] - [[Archduke Charles]], Austrian general (b. [[1771]])
51332 *[[1865]] - [[Robert Fitzroy]], English admiral and meteorologist (b. [[1805]])
51333 *[[1875]] - [[Jean Frederic Waldeck]], French explorer, lithographer, and cartographer (b. [[1766]])
51334 *[[1883]] - [[Édouard Manet]], French painter (b. [[1832]])
51335 *[[1903]] - [[Emily Stowe]], Canadian physician and suffragist (b.[[1831]])
51336 *[[1936]] - [[Alfred Edward Housman]], English poet (b. [[1859]])
51337 *[[1943]] - [[Otto Jespersen]], Danish philologist (b. [[1860]])
51338 *[[1945]] - [[Eva Braun]], [[Adolf Hitler]]'s new wife (suicide) (b. [[1912]])
51339 *[[1945]] - [[Adolf Hitler]], Austrian dictator of Germany (suicide) (b. [[1889]])
51340 *[[1956]] - [[Alben W. Barkley]], [[Vice President of the United States]] (b. [[1877]])
51341 *[[1970]] - [[Inger Stevens]], Swedish actress (b. [[1934]])
51342 *[[1974]] - [[Agnes Moorehead]], American actress (b. [[1900]])
51343 *[[1980]] - [[Luis MuÃąoz Marín]], Puerto Rican poet, journalist, and politician (b. [[1898]])
51344 *[[1982]] - [[Lester Bangs]], American music journalist, author, and musician (b. [[1949]])
51345 *[[1983]] - [[George Balanchine]], Russian-born dancer and choreographer (b. [[1904]])
51346 *[[1983]] - [[Muddy Waters]], American musician (b. [[1915]])
51347 *[[1985]] - [[Charles Francis Richter]], American seismologist
51348 *[[1989]] - [[Masako Nashimoto|Yi, Bang-ja]], Crown Princess of Korea (b. [[1901]])
51349 *[[1989]] - [[Sergio Leone]], Italian filmmaker (b. [[1929]])
51350 *[[1994]] - [[Roland Ratzenberger]], Austrian race car driver (b. [[1960]])
51351 *[[1998]] - [[Nizar Qabbani]], Syrian poet (b. [[1926]])
51352 *[[2002]] - [[Charlotte von Mahlsdorf]], founder of the [[GrÃŧnderzeit]] Museum in Berlin-Mahlsdorf. (b. [[1928]])
51353 *[[2003]] - [[Peter 'Possum' Bourne]], New Zealand race car driver (B. [[1956]])
51354 *[[2003]] - [[Wim van Est]], Dutch cyclist (b. [[1923]])
51355 *[[2003]] - [[Mark Berger]], [[University of Kentucky]] Professor
51356 *[[2005]] - [[Ron Todd]], [[TGWU]] General Secretary ([[1985]] - [[1992]]) (b. [[1927]])
51357
51358 ==Holidays and observances==
51359 *[[Scandinavia]] - The arrival of [[Spring (season)|spring]], [[Walpurgis Night]]
51360 *[[Sweden]] - [[Birthday]] of King [[Carl XVI Gustav of Sweden|Carl XVI Gustav]], an [[Flag days in Sweden|official flag day]]
51361 *The [[Netherlands]] - [[Queen's Day]]
51362 *[[Roman Empire]] - third day of the [[Floralia]] in honor of [[Flora (goddess)|Flora]]
51363 *[[Beltane|Bealtaine]] Eve (From either [[Irish language|Irish]] [[Beltane|Bealtaine]] or [[Scottish Gaelic language|Scottish Gaelic]]). Originally a [[Celt]]ic [[Druidry|Druid]] holiday
51364 *[[Vietnam]] - [[Liberation Day]]
51365 *[[Feast day]] of the following [[saint]]s in the [[Roman Catholic Church]]:
51366 **[[Saint Maximus]], 3rd century martyr
51367 **[[Saint Louis]], Amator, and Peter, martyred by the [[Moors]] in [[855]]
51368 **[[Saint Marianus]] and James, martyrs in [[Numidia]] in [[259]]
51369 **[[Suitbert the Younger]] (d. [[807]])
51370 **[[Catherine of Siena]]
51371 **[[Joseph Benedict Cottolengo]]
51372 **[[Pius V]], [[pope]]
51373 **[[Robert]]
51374
51375 ==External links==
51376 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/30 BBC: On This Day]
51377 * [http://www.nytimes.com/learning/general/onthisday/20050430.html ''The New York Times'': On This Day]
51378 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=30 On This Day in Canada]
51379 ----
51380
51381 [[March 30]] - [[March 31]] - [[April 29]] - [[May 1]] - [[May 30]] - [[May 31]] &amp;ndash; [[historical anniversaries|listing of all days]]
51382
51383 {{months}}
51384
51385 [[ceb:Abril 30]]
51386 [[nap:30 'e abbrile]]
51387 [[war:Abril 30]]
51388 [[pam:Abril 30]]
51389
51390 [[af:30 April]]
51391 [[ar:30 ØŖØ¨ØąŲŠŲ„]]
51392 [[an:30 d'abril]]
51393 [[ast:30 d'abril]]
51394 [[bg:30 Đ°ĐŋŅ€Đ¸Đģ]]
51395 [[be:30 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
51396 [[bs:30. april]]
51397 [[ca:30 d'abril]]
51398 [[cv:АĐēĐ°, 30]]
51399 [[co:30 d'aprile]]
51400 [[cs:30. duben]]
51401 [[cy:30 Ebrill]]
51402 [[da:30. april]]
51403 [[de:30. April]]
51404 [[et:30. aprill]]
51405 [[el:30 ΑĪ€ĪÎšÎģίÎŋĪ…]]
51406 [[es:30 de abril]]
51407 [[eo:30-a de aprilo]]
51408 [[eu:Apirilaren 30]]
51409 [[fo:30. apríl]]
51410 [[fr:30 avril]]
51411 [[fy:30 april]]
51412 [[ga:30 AibreÃĄn]]
51413 [[gl:30 de abril]]
51414 [[ko:4ė›” 30ėŧ]]
51415 [[hr:30. travnja]]
51416 [[io:30 di aprilo]]
51417 [[id:30 April]]
51418 [[ia:30 de april]]
51419 [[ie:30 april]]
51420 [[is:30. apríl]]
51421 [[it:30 aprile]]
51422 [[he:30 באפריל]]
51423 [[jv:30 April]]
51424 [[ka:30 აპრილი]]
51425 [[csb:30 łÅŧÃĢkwiôta]]
51426 [[ku:30'ÃĒ avrÃĒlÃĒ]]
51427 [[la:30 Aprilis]]
51428 [[lt:BalandÅžio 30]]
51429 [[lb:30. AbrÃĢll]]
51430 [[li:30 april]]
51431 [[hu:Április 30]]
51432 [[mk:30 Đ°ĐŋŅ€Đ¸Đģ]]
51433 [[ms:30 April]]
51434 [[nl:30 april]]
51435 [[ja:4月30æ—Ĩ]]
51436 [[no:30. april]]
51437 [[nn:30. april]]
51438 [[oc:30 d'abril]]
51439 [[pl:30 kwietnia]]
51440 [[pt:30 de Abril]]
51441 [[ro:30 aprilie]]
51442 [[ru:30 Đ°ĐŋŅ€ĐĩĐģŅ]]
51443 [[sco:30 Aprile]]
51444 [[sq:30 Prill]]
51445 [[scn:30 di aprili]]
51446 [[simple:April 30]]
51447 [[sk:30. apríl]]
51448 [[sl:30. april]]
51449 [[sr:30. Đ°ĐŋŅ€Đ¸Đģ]]
51450 [[fi:30. huhtikuuta]]
51451 [[sv:30 april]]
51452 [[tl:Abril 30]]
51453 [[tt:30. Äpril]]
51454 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 30]]
51455 [[th:30 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
51456 [[vi:30 thÃĄng 4]]
51457 [[tr:30 Nisan]]
51458 [[uk:30 ĐēвŅ–Ņ‚ĐŊŅ]]
51459 [[ur:30 اŲžØąÛŒŲ„]]
51460 [[wa:30 d' avri]]
51461 [[zh:4月30æ—Ĩ]]</text>
51462 </revision>
51463 </page>
51464 <page>
51465 <title>August 22</title>
51466 <id>1012</id>
51467 <revision>
51468 <id>42114981</id>
51469 <timestamp>2006-03-03T22:43:14Z</timestamp>
51470 <contributor>
51471 <username>Rklawton</username>
51472 <id>754622</id>
51473 </contributor>
51474 <comment>rv</comment>
51475 <text xml:space="preserve">{| style=&quot;float:right;&quot;
51476 |-
51477 |{{AugustCalendar}}
51478 |-
51479 |{{ThisDateInRecentYears|Month=August|Day=22}}
51480 |}
51481 '''[[August 22]]''' is the 234th [[day]] of the [[year]] in the [[Gregorian calendar|Gregorian Calendar]] (235th in [[leap year]]s), with 131 [[day]]s remaining.
51482
51483 ==Events==
51484 *[[1485]] - The [[Battle of Bosworth Field]] decisively ends the [[Wars of the Roses]]
51485 *[[1559]] - Bartholome de Carranza, Spanish [[archbishop]], is arrested for [[heresy]]
51486 *[[1642]] - [[Charles I of England|Charles I]] calls the English Parliament traitors. Beginning of the [[English Civil War]]
51487 *[[1654]] - [[Jacob Barsimson]] arrives in [[New Amsterdam]]. He is the first [[Judaism|Jewish]] [[Immigration|immigrant]] to what is later the [[United States]]
51488 *[[1717]] - Spanish troops land on [[Sardinia]]
51489 *[[1770]] - [[James Cook]]'s expedition lands on the east coast of [[Australia]]
51490 *[[1775]] - [[George III of the United Kingdom|King George III]] declares the [[Thirteen Colonies|American colonies]] to be in open rebellion
51491 *[[1780]] - James Cook's ship ''Resolution'' returns to [[England]] (Cook having been killed on [[Hawaii]] during the voyage)
51492 *[[1791]] - Beginning of the [[Haiti]]an [[Haitian Revolution|Slave Revolution]] in [[Saint-Domingue]]
51493 *[[1798]] - French troops land in [[County Mayo]], Ireland to aid [[Theobald Wolfe Tone|Wolfe Tone]]'s [[Society of the United Irishmen|United Irishmen]]'s [[Irish Rebellion of 1798 |Irish Rebellion]]
51494 *[[1846]] - [[United States|The United States]] annexes [[New Mexico]]
51495 *[[1851]] - [[Gold]] is discovered in [[Australia]]
51496 *1851 - The first [[America's Cup]] is won by the [[yacht]] ''[[America (yacht)|America]]''.
51497 *[[1875]] - The [[Treaty of Saint Petersburg]] between [[Japan]] and [[Russia]] is ratified, providing for the exchange of [[Sakhalin]] for the [[Kuril Islands]].
51498 *[[1864]] - Twelve [[nation]]s sign the First [[Geneva Conventions|Geneva Convention]]. The [[International Red Cross and Red Crescent Movement|Red Cross]] is formed.
51499 *[[1901]] - [[Cadillac|Cadillac]] Motor Company founded
51500 *[[1902]] - [[Theodore Roosevelt]] became the first [[President of the United States]] to ride in an automobile
51501 *[[1910]] - [[Japan]] annexes [[Korea]] with the signing of the [[Japan-Korea Annexation Treaty]]. The name Korea was abolished and replaced with the ancient name ''[[Joseon]]''.
51502 *[[1911]] - Theft of the ''[[Mona Lisa]]'' is discovered
51503 *[[1914]] - [[World War I]]: In [[Belgium]], British and German troops clash for the first time in the war.
51504 *[[1922]] - [[Michael Collins (Irish leader)|Michael Collins]], Commander-in-Chief of the [[Irish Free State]] Army is shot dead during an Anti-Treaty ambush at Beal na mBlath, County Cork, during the [[Irish Civil War]].
51505 *[[1926]] - [[Gold]] discovered in [[Johannesburg]], [[South Africa]]
51506 *[[1941]] - [[World War II]]: German [[troop]]s reach [[Saint Petersburg|Leningrad]], leading to the [[siege of Leningrad]]
51507 *[[1942]] - World War II: [[Brazil]] declares [[war]] on the Axis powers ([[Germany]], [[Italy]] and [[Japan]])
51508 *[[1944]] - World War II: Last transport of French Jews to [[concentration camp]]s in Germany
51509 *1944 - World War II: Thirty-two Spaniards &amp; four French [[Maquis (World War II)|Maquis]] tackle a German column (1,300 men in 60 lorries, with 6 tanks &amp; 2 self-propelled guns), at La Madeiline, France. Three Maquis are wounded, with 110 Germans killed and 200 wounded.
51510 *[[1950]] - [[Althea Gibson]] becomes the first black [[Competition|competitor]] in international [[tennis]]
51511 *[[1953]] - The [[Prison|jail]] on [[Devils Island|Devil's Island]] is closed
51512 *[[1962]] - An attempt to assassinate French president [[Charles de Gaulle|Charles De Gaulle]] fails
51513 *1962 - The [[NS Savannah|NS ''Savannah'']], the world's first [[Nuclear marine propulsion|nuclear-powered]] ship, completes its [[maiden voyage]]
51514 *[[1968]] - [[Pope Paul VI]] arrives in [[BogotÃĄ]], [[Colombia]]. It is the first visit of a [[pope]] to [[Latin America]]
51515 *[[1972]] - [[Rhodesia]] is expelled by the [[International Olympic Committee|IOC]] for its racist policies
51516 *[[1988]] - The Australian ''koala'', the first [[platinum]] coin, is issued
51517 *[[1989]] - The first ring of [[Neptune|Neptune]] is discovered
51518 * 1989 - [[Nolan Ryan]] strikes out [[Rickey Henderson]] to become the first [[Major League Baseball|major league baseball]] [[pitcher]] to record 5000 [[strikeout]]s.
51519 *[[1992]] - [[Federal Bureau of Investigation|FBI]] [[Hostage Rescue Team|HRT]] sniper [[Lon Horiuchi]] shoots and kills Vicki Weaver during an 11-day siege at her home at [[Ruby Ridge]], [[Idaho]].
51520 *[[2001]] - the [[Trojan room coffee pot]] is switched off for the last time.
51521 *[[2004]] - ''[[The Scream]]'', the painting by [[Edvard Munch]], is stolen at gunpoint from a museum in [[Oslo]], [[Norway]].
51522
51523
51524
51525 ==Births==
51526 *[[1601]] - [[Georges de ScudÊry]], French writer (d. [[1667]])
51527 *[[1624]] - [[Jean Renaud de Segrais]], French writer (d. [[1701]])
51528 *[[1647]] - [[Denis Papin]], French physicist, mathematician, and inventor
51529 *[[1679]] - [[Pierre GuÊrin de Tencin]], French cardinal (d. [[1758]])
51530 *[[1760]] - [[Pope Leo XII]] (d. [[1829]])
51531 *[[1764]] - [[Charles Percier]], French architect (d. [[1838]])
51532 *[[1771]] - [[Henry Maudslay]], English inventor and tool-maker (d. [[1831]])
51533 *[[1800]] - [[William S. Harney]], U.S. general (d. [[1889]])
51534 *[[1802]] - [[Gurdon Saltonstall Hubbard]], American land speculator (d. [[1886]])
51535 *[[1834]] - [[Samuel Pierpont Langley]], American astronomer, physicist, inventor, aviation pioneer (d. [[1906]])
51536 *[[1854]] - King [[Milan Obrenović IV|Milan I of Serbia]] (d. [[1901]])
51537 *[[1860]] - [[Paul Gottlieb Nipkow|Paul Nipkow]], German inventor and television pioneer (d. [[1940]])
51538 *[[1862]] - [[Claude Debussy]], French composer (d. [[1918]])
51539 *[[1867]] - [[Maximilian Bircher-Benner]], Swiss physician and nutritionist (d. [[1939]])
51540 *[[1873]] - [[Alexander Bogdanov]], Russian physician and philosopher (d. [[1928]])
51541 *[[1874]] - [[Max Scheler]], German philosopher (d. [[1928]])
51542 *[[1880]] - [[George Herriman]], American cartoonist (d. [[1944]])
51543 *[[1893]] - [[Dorothy Parker]], American writer (d. [[1967]])
51544 *[[1900]] - [[Sergei Ozhegov]], Russian lexicographer (d. [[1964]])
51545 *[[1902]] - [[Leni Riefenstahl]], German film director (d. [[2003]])
51546 *[[1904]] - [[Deng Xiaoping]], leader of the People's Republic of China (d. [[1997]])
51547 *[[1908]] - [[Henri Cartier-Bresson]], French photographer (d. [[2004]])
51548 *[[1915]] - [[Hugh Paddick]], British actor (d. [[2000]])
51549 *1915 - [[Edward Szczepanik]], Polish economist and Prime Minister in exile (d. [[2005]])
51550 *[[1917]] - [[John Lee Hooker]], American guitarist and singer (d. [[2001]])
51551 *[[1920]] - [[Ray Bradbury]], American writer
51552 *1920 - [[Denton Cooley]], American heart surgeon
51553 *[[1928]] - [[Karlheinz Stockhausen]], German composer
51554 *[[1930]] - [[Gilmar]], Brazilian football player
51555 *[[1934]] - [[Norman Schwarzkopf, Jr.|Norman Schwarzkopf]], U.S. general
51556 *[[1935]] - [[E. Annie Proulx]], American author
51557 *[[1938]] - [[Paul Maguire]], American football player
51558 *[[1939]] - [[George Reinholt]], American actor
51559 *1939 - [[Carl Yastrzemski]], baseball player
51560 *[[1940]] - [[Valerie Harper]], American actress
51561 *[[1941]] - [[Bill Parcells]], American football coach
51562 *[[1942]] - [[The Lennon Sisters|Kathy Lennon]], American singer ([[The Lennon Sisters]])
51563 *[[1945]] - [[Ron Dante]], American singer ([[The Archies]]), songwriter and record producer
51564 *[[1947]] - [[Cindy Williams]], American actress
51565 *[[1955]] - [[Will Shetterly]], writer
51566 *1955 - [[Chiranjeevi]], Telugu film actor
51567 *[[1956]] - [[Paul Molitor]], baseball player
51568 *[[1957]] - [[Steve Davis]], English snooker player
51569 *[[1958]] - [[Colm Feore]], American-born actor
51570 *1958 - [[Vernon Reid]], American musician ([[Living Colour]])
51571 *[[1961]] - [[Roland Orzabal]], singer and guitarist ([[Tears for Fears]])
51572 *[[1963]] - [[Tori Amos]], American singer, songwriter, and pianist
51573 *[[1964]] - [[Mats Wilander]], Swedish tennis player
51574 *[[1966]] - [[GZA]], American rapper
51575 *[[1967]] - [[Layne Staley]], American musician ([[Alice in Chains]]) (d. [[2002]])
51576 *1967 - [[Adewale Akinnuoye-Agbaje]], British actor
51577 *[[1970]] - [[Charlie Connelly]], English writer
51578 *[[1973]] - [[Howie Dorough]], American singer ([[Backstreet Boys]])
51579 *[[1977]] - [[Heiðar Helguson|Heidar Helguson]], Icelandic footballer
51580 *[[1978]] - [[Jeff Stinco]], Canadian musician ([[Simple Plan]])
51581 *[[1981]] - [[Alex Holmes]], American football player
51582
51583 ==Deaths==
51584 *[[408]] - [[Stilicho]], Roman general (b. [[359]])
51585 *[[1155]] - [[Emperor Konoe]] of Japan (b. [[1139]])
51586 *[[1188]] - King [[Ferdinand II of Leon]]
51587 *[[1241]] - [[Pope Gregory IX]]
51588 *[[1280]] - [[Pope Nicholas III]]
51589 *[[1286]] - [[Eric V of Denmark|Erik V Klipping]], King of Denmark (murdered) (b. [[1249]])
51590 *[[1304]] - [[John II, Count of Hainaut]] (b. [[1247]])
51591 *[[1350]] - King [[Philip VI of France]] (b. [[1293]])
51592 *[[1485]] - King [[Richard III of England]] (killed in battle) (b. [[1452]])
51593 *[[1553]] - [[John Dudley, 1st Duke of Northumberland|John Dudley]], English admiral and politician (beheaded) (b. [[1501]])
51594 *[[1584]] - [[Jan Kochanowski]], Polish writer (b. [[1530]])
51595 *[[1599]] - [[Beatrice Cenci]], Italian noblewoman who conspired to murder her father (b. [[1577]])
51596 *1599 - [[Luca Marenzio]], Italian composer
51597 *[[1607]] - [[Bartholomew Gosnold]], English explorer and privateer (b. [[1572]])
51598 *[[1609]] - [[Judah Loew ben Bezalel|Maharal of Prague]], Jewish mystic and philosopher (b. [[1525]])
51599 *[[1652]] - [[Jacob De la Gardie]], Swedish soldier and statesman (b. [[1583]])
51600 *[[1680]] - [[John George II, Elector of Saxony]] (b. [[1613]])
51601 *[[1701]] - [[John Granville, 1st Earl of Bath]], English royalist statesman (b. [[1628]])
51602 *[[1711]] - [[Louis François, duc de Boufflers]], French marshal (b. [[1644]])
51603 *[[1752]] - [[William Whiston]], English mathematician (b. [[1667]])
51604 *[[1793]] - [[Louis, 4th duc de Noailles]], Marshal of France (b. [[1713]])
51605 *[[1797]] - [[Dagobert Sigmund von Wurmser]], Alsatian-born Austrian general (b. [[1724]])
51606 *[[1806]] - [[Jean-HonorÊ Fragonard]], French artist (b. [[1732]])
51607 *[[1818]] - [[Warren Hastings]], British Governor-General of India (b. [[1732]])
51608 *[[1823]] - [[Lazare Carnot]], French general, politician, and mathematician (b. [[1753]])
51609 *[[1828]] - [[Franz Joseph Gall]], Austrian neuroscientist (b. [[1758]])
51610 *[[1850]] - [[Nikolaus Lenau]], Austrian poet (b. [[1802]])
51611 *[[1861]] - [[Xianfeng Emperor|Xianfeng]], [[Emperor of China]] (b. [[1831]])
51612 *[[1891]] - [[Jan Neruda]], Czech author (b. [[1834]])
51613 *[[1903]] - [[Robert Gascoyne-Cecil, 3rd Marquess of Salisbury]], [[Prime Minister of the United Kingdom]] (b. [[1830]])
51614 *[[1904]] - [[Kate Chopin]], American author (b. [[1851]])
51615 *[[1913]] - [[Bruno Pontecorvo]], Italian physicist (d. [[1993]])
51616 *[[1918]] - [[Korbinian Brodmann]], German neurologist (b. [[1868]])
51617 *[[1922]] - [[Michael Collins (Irish leader)|Michael Collins]], Irish revolutionary (ambushed) (b. [[1890]])
51618 *[[1926]] - [[Charles_William_Eliot|Charles W. Eliot]], American President of Harvard University (b. [[1834]])
51619 *[[1942]] - [[Michel Fokine]], Russian choreographer and dancer (b. [[1880]])
51620 *[[1953]] - [[Jim Tabor]], baseball player (b. [[1916]])
51621 *[[1958]] - [[Roger Martin du Gard]], French writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1881]])
51622 *[[1976]] - [[Juscelino Kubitschek de Oliveira]], President of Brazil (b. [[1902]])
51623 *[[1977]] - [[Sebastian Cabot (actor)|Sebastian Cabot]], English-born actor (b. [[1918]])
51624 *[[1978]] - [[Jomo Kenyatta]], first Prime Minister of Kenya
51625 *[[1989]] - [[Huey P. Newton]], American activist (b. [[1942]])
51626 *[[1991]] - [[Colleen Dewhurst]], Canadian actress (b. [[1924]])
51627 *[[2003]] - [[Arnold Gerschwiler]], Swiss-born figure skating trainer (b. [[1914]])
51628 *[[2004]] - [[Konstantin Aseev]], Russian chess player (b. [[1960]])
51629 *[[2005]] - [[Luc Ferrari]], French composer (b. [[1929]])
51630
51631 ==Holidays and observances==
51632 *[[Calendar_of_saints|RC feasts]] - Mary queen of angels
51633
51634 ==External links==
51635 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/22 BBC: On This Day]
51636
51637 ----
51638 [[August 21]] - [[August 23]] - [[July 22]] - [[September 22]] -- [[historical anniversaries|listing of all days]]
51639
51640 {{months}}
51641
51642 [[ilo:Agosto 22]]
51643
51644 [[af:22 Augustus]]
51645 [[ar:22 ØŖØēØŗØˇØŗ]]
51646 [[an:22 d'agosto]]
51647 [[ast:22 d'agostu]]
51648 [[bg:22 авĐŗŅƒŅŅ‚]]
51649 [[be:22 ĐļĐŊŅ–ŅžĐŊŅ]]
51650 [[bs:22. august]]
51651 [[ca:22 d'agost]]
51652 [[ceb:Agosto 22]]
51653 [[cv:ÇŅƒŅ€ĐģĐ°, 22]]
51654 [[co:22 d'aostu]]
51655 [[cs:22. srpen]]
51656 [[cy:22 Awst]]
51657 [[da:22. august]]
51658 [[de:22. August]]
51659 [[et:22. august]]
51660 [[el:22 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
51661 [[es:22 de agosto]]
51662 [[eo:22-a de aÅ­gusto]]
51663 [[eu:Abuztuaren 22]]
51664 [[fo:22. august]]
51665 [[fr:22 aoÃģt]]
51666 [[fy:22 augustus]]
51667 [[ga:22 LÃēnasa]]
51668 [[gl:22 de agosto]]
51669 [[ko:8ė›” 22ėŧ]]
51670 [[hr:22. kolovoza]]
51671 [[io:22 di agosto]]
51672 [[id:22 Agustus]]
51673 [[ia:22 de augusto]]
51674 [[ie:22 august]]
51675 [[is:22. ÃĄgÃēst]]
51676 [[it:22 agosto]]
51677 [[he:22 באוגוסט]]
51678 [[jv:22 Agustus]]
51679 [[ka:22 აგვისáƒĸო]]
51680 [[csb:22 zÊlnika]]
51681 [[ku:22'ÃĒ gelawÃĒjÃĒ]]
51682 [[la:22 Augusti]]
51683 [[lt:RugpjÅĢčio 22]]
51684 [[lb:22. August]]
51685 [[li:22 augustus]]
51686 [[hu:Augusztus 22]]
51687 [[mk:22 авĐŗŅƒŅŅ‚]]
51688 [[ms:22 Ogos]]
51689 [[nap:22 'e aÚsto]]
51690 [[nl:22 augustus]]
51691 [[ja:8月22æ—Ĩ]]
51692 [[no:22. august]]
51693 [[nn:22. august]]
51694 [[oc:22 d'agost]]
51695 [[pl:22 sierpnia]]
51696 [[pt:22 de Agosto]]
51697 [[ro:22 august]]
51698 [[ru:22 авĐŗŅƒŅŅ‚Đ°]]
51699 [[sco:22 August]]
51700 [[sq:22 Gusht]]
51701 [[scn:22 di austu]]
51702 [[simple:August 22]]
51703 [[sk:22. august]]
51704 [[sl:22. avgust]]
51705 [[sr:22. авĐŗŅƒŅŅ‚]]
51706 [[fi:22. elokuuta]]
51707 [[sv:22 augusti]]
51708 [[tl:Agosto 22]]
51709 [[tt:22. August]]
51710 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 22]]
51711 [[th:22 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
51712 [[vi:22 thÃĄng 8]]
51713 [[tr:22 Ağustos]]
51714 [[uk:22 ŅĐĩŅ€ĐŋĐŊŅ]]
51715 [[wa:22 d' awousse]]
51716 [[war:Agosto 22]]
51717 [[zh:8月22æ—Ĩ]]
51718 [[pam:Agostu 22]]</text>
51719 </revision>
51720 </page>
51721 <page>
51722 <title>August 27</title>
51723 <id>1013</id>
51724 <revision>
51725 <id>42122286</id>
51726 <timestamp>2006-03-03T23:40:10Z</timestamp>
51727 <contributor>
51728 <username>Joy Stovall</username>
51729 <id>69412</id>
51730 </contributor>
51731 <minor />
51732 <comment>Reverted edits by [[Special:Contributions/84.132.56.20|84.132.56.20]] ([[User talk:84.132.56.20|talk]]) to last version by 64.132.59.83</comment>
51733 <text xml:space="preserve">{| style=&quot;float:right;&quot;
51734 |-
51735 |{{AugustCalendar}}
51736 |-
51737 |{{ThisDateInRecentYears|Month=August|Day=27}}
51738 |}
51739 '''[[August 27]]''' is the 239th day of the year in the [[Gregorian Calendar]] (240th in [[leap year]]s), with 126 days remaining.
51740
51741 ==Events==
51742 *[[479 BC]] - [[Greco-Persian Wars]]: [[Persian Empire|Persian]] forces led by [[Mardonius]] are routed by [[Pausanias (general)|Pausanias]], the [[Sparta]]n commander of the Greek army in the [[Battle of Plataea]]. Along the with the Greek victory on the same day in the [[Battle of Mycale]], the Persian invasion of [[Ancient Greece|Greece]] ended.
51743 *[[55 BC]] - [[Julius Caesar]] lands in [[Great Britain|Britain]] for the first time.
51744 *[[410]] - [[Visigoth]] sack of [[Ancient Rome|Rome]] ends after three days.
51745 *[[1232]] - The [[Goseibai Shikimoku|Formulary of Adjudications]] is promulgated by [[Shikken|Regent]] [[Hojo Yasutoki]]. (Traditional [[Japanese calendar|Japanese date]]: August 10, 1232)
51746 *[[1776]] - [[Battle of Long Island]], in present day [[Brooklyn, New York]], [[Kingdom of Great Britain|British]] forces under General [[William Howe, 5th Viscount Howe|William Howe]] defeat Americans under General [[George Washington]]
51747 *[[1813]] - [[Napoleon]] defeats the [[Austria]]ns, [[Russia]]ns and [[Prussia]]ns at the [[Battle of Dresden]]
51748 *[[1828]] - The Russians defeat the Turks at Akhaltzikke.
51749 *[[1859]] - [[Petroleum]] discovered in [[Titusville, Pennsylvania]]. World's first successful [[oil well]].
51750 *[[1861]] - Union forces attack [[Cape Hatteras]], [[North Carolina]]
51751 *[[1883]] - [[Krakatoa]], an [[Indonesia]]n volcano, erupts. It is one of the most violent volcanic events in modern times.
51752 *[[1896]] - [[Anglo-Zanzibar War]]: the shortest [[war]] in world history (9:02 to 9:40) between the [[United Kingdom]] and [[Zanzibar]].
51753 *[[1900]] - British defeat [[Boer]] commandos at [[Bergendal]]
51754 *[[1928]] - [[Kellogg-Briand Pact]], outlawing war, signed by sixty nations
51755 *[[1937]] - The automobile division of Toyoda Automatic Loom Works is spun off into the [[Toyota Motor Corporation]].
51756 *[[1939]] - First [[jet aircraft]] flight
51757 *[[1952]] - Reparation negotiations between [[West Germany]] and [[Israel]] end in [[Luxembourg]]; West Germany to pay 3 billion [[Deutschmark]]s.
51758 *[[1962]] - [[Mariner 2]] launched
51759 *[[1969]] - The first installment of the [[Otoko wa tsurai yo|''Otoko wa Tsurai yo'']] (''It's Tough Being a Man'') movies is released in [[Japan]]. Director and screenplay writer [[Yoji Yamada]] went on to make 48 installments of the series, which is recognized in the [[Guinness Book of World Records]] as the longest running movie series.
51760 *[[1979]] - An [[Provisional Irish Republican Army|IRA]] bomb kills [[Louis Mountbatten|Lord Mountbatten]] and 3 others on holiday in [[Sligo]], [[Republic of Ireland]]. Another near [[Warrenpoint]], [[Northern Ireland]] kills 18 [[British Army|British soldiers]].
51761 *[[1985]] - The [[Nigeria]]n government is peacefully overthrown by Army Chief of Staff Maj. Gen. [[Ibrahim Babangida]].
51762 *[[1990]] - The [[British Broadcasting Corporation]] launches [[BBC Radio Five Live]] at 9am GMT with a mixture of sports, news, and children's programming. The station broadcasts for eighteen hours per day.
51763 *[[1991]] - The [[European Community]] recognizes the independence of the [[Baltic state]]s: [[Estonia]], [[Latvia]] and [[Lithuania]].
51764 *1991 - [[Moldova]] declares independence from the [[Soviet Union|USSR]].
51765 *[[1993]] - The [[Florida]] DOT decides to cease producing its distinctive colored [[U.S. Highway shield|U.S. Highway shields]] so that it can make use of Federal funds for those signs.
51766 *1993 - The [[Rainbow Bridge (Tokyo)|Rainbow Bridge]], connecting [[Tokyo|Tokyo's]] [[Shibaura]] and the island of [[Odaiba]], is completed.
51767 *[[2000]] - [[Ostankino Tower]] in [[Moscow]] catches fire, three people are killed.
51768 *[[2003]] - [[Mars (planet)|Mars]] makes its closest approach to [[Earth]] in nearly 60,000 years, passing approximately 34,646,416 miles (55,758,006 kilometers) from Earth.
51769
51770 ==Births==
51771 *[[1407]] - [[Ashikaga Yoshikazu]], Japanese shogun (d. [[1425]])
51772 *[[1471]] - [[George, Duke of Saxony]] (d. [[1539]])
51773 *[[1637]] - [[Charles Calvert, 3rd Baron Baltimore]], Governor of the Province of Maryland (d. [[1715]])
51774 *[[1665]] - [[John Hervey, 1st Earl of Bristol]], English politician (d. [[1751]])
51775 *[[1677]] - [[Otto Ferdinand Graf von Abensperg und Traun]], Austrian field marshal (d. [[1748]])
51776 *[[1724]] - [[John Joachim Zubly]], Swiss-born Continental Congressman (d. [[1781]])
51777 *[[1730]] - [[Johann Georg Hamann]], German philosopher (d. [[1788]])
51778 *[[1770]] - [[Georg Wilhelm Friedrich Hegel]], German philosopher (d. [[1831]])
51779 *[[1809]] - [[Hannibal Hamlin]], [[Vice President of the United States of America]] (d. [[1891]])
51780 *[[1858]] - [[Giuseppe Peano]], Italian mathematician (d. [[1932]])
51781 *[[1865]] - [[James Henry Breasted]], American Egyptologist (d. [[1935]])
51782 *1865 - [[Charles G. Dawes]], 30th [[Vice President of the United States]], recipient of the [[Nobel Peace Prize]] (d. [[1951]])
51783 *[[1870]] - [[Amado Nervo]], Mexican poet (d. [[1919]])
51784 *[[1871]] - [[Theodore Dreiser]], American author (d. [[1945]])
51785 *[[1874]] - [[Carl Bosch]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1940]])
51786 *[[1875]] - [[Katharine McCormick]], American women's rights activist (d. [[1967]])
51787 *[[1886]] - [[Rebecca Clarke]], English composer and violist (d. [[1979]])
51788 *1886 - [[Eric Coates]], English composer (d. [[1957]])
51789 *[[1890]] - [[Man Ray]], photographer and artist (d. [[1976]])
51790 *[[1899]] - [[C.S. Forester]], British author (d. [[1966]])
51791 *1899 - [[Byron Foulger]], American character actor (d. [[1970]])
51792 *[[1904]] - [[Norah Lofts]], British author (d. [[1983]])
51793 *[[1906]] - [[Ed Gein]], American serial killer (d. [[1984]])
51794 *[[1908]] - [[Sir Donald Bradman|Don Bradman]], Australian cricketer (d. [[2001]])
51795 *1908 - [[Lyndon B. Johnson]], 36th [[President of the United States]] (d. [[1973]])
51796 *1908 - [[Kurt Wegner]], German artist (d. [[1985]])
51797 *[[1909]] - [[Lester Young]], American musician (d. [[1959]])
51798 *[[1910]] - [[Mother Teresa]], Albanian missionary and humanitarian, recipient of the [[Nobel Peace Prize]] (d. [[1997]])
51799 *[[1911]] - [[Kay Walsh]], British actress (d. [[2005]])
51800 *[[1915]] - [[Norman F. Ramsey]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
51801 *[[1916]] - [[Martha Raye]], American actress (d. [[1994]])
51802 *[[1921]] - [[Leo Penn]], American film director-actor (d. [[1998]])
51803 *[[1926]] - [[Kristen Nygaard]], Norwegian mathematician, computer scientist, and politician (d. [[2002]])
51804 *[[1928]] - [[Mangosuthu Buthelezi]], South African politician
51805 *[[1929]] - [[Ira Levin]], American author
51806 *[[1932]] - [[Antonia Fraser]], British author
51807 *[[1935]] - [[Frank Yablans]], American film producer
51808 *[[1937]] - [[Tommy Sands]], American actor and singer
51809 *[[1940]] - [[Sonny Sharrock]], American jazz guitarist (d. [[1994]])
51810 *[[1942]] - [[B. J. Thomas]], American singer
51811 *[[1943]] - [[Tuesday Weld]], American actress
51812 *[[1945]] - [[G.W. Bailey]], American actor
51813 *[[1947]] - [[Barbara Bach]], American actress
51814 *1947 - [[Harry Reems]], American actor
51815 *[[1950]] - [[Charles Fleischer]], American actor
51816 *[[1951]] - [[Buddy Bell]], baseball player-manager
51817 *[[1952]] - [[Paul Reubens|Paul &quot;Pee-Wee Herman&quot; Reubens]], American actor
51818 *[[1953]] - [[Peter Stormare]], Swedish-born actor
51819 *[[1954]] - [[Derek Warwick]], British race car driver
51820 *[[1955]] - [[Diana Scarwid]], American actress
51821 *[[1957]] - [[Bernhard Langer]], German golfer
51822 *[[1958]] - [[Tom Lanoye]], [[Belgian]] author
51823 *1958 - [[Stalking Cat]], American body modificationist
51824 *[[1959]] - [[Gerhard Berger]], Austrian race car driver
51825 *[[1962]] - [[Adam Oates]], Canadian [[ice hockey]] player
51826 *[[1963]] - [[Downtown Julie Brown]], Welsh television personality
51827 *[[1965]] - [[Wayne James]], Zimbabwe cricketer
51828 *[[1966]] - [[Juhan Parts]], [[Prime Minister of Estonia]]
51829 *[[1969]] - [[Reece Shearsmith]], British actor and comedian
51830 *[[1970]] - [[Peter Ebdon]], English snooker player
51831 *1970 - [[Tony Kanal]], American-British musician ([[No Doubt]])
51832 *1970 - [[Jim Thome]], baseball player
51833 *[[1973]] - [[Dietmar Hamann]], German footballer
51834 *[[1974]] - [[Jose Vidro]], Puerto Rican [[Major League Baseball]] player
51835 *[[1974]] - [http://www.imdb.com/name/nm1595731/ Mike Chrzanowski], American Game Designer
51836 *[[1975]] - [[Jonny Moseley]], American skier
51837 *[[1976]] - [[Sarah Chalke]], Canadian actress
51838 *1976 - [[Carlos Moya]], Spanish tennis player
51839 *1976 - [[Mark Webber]], Australian race car driver
51840 *[[1977]] - [[Deco]], Brazilian footballer
51841 *[[1979]] - [[Tian Liang]], Chinese diver
51842 *[[1988]] - [[Alexa Vega]], American actress
51843
51844 ==Deaths==
51845 *[[1312]] - [[Arthur II, Duke of Brittany]] (b. [[1262]])
51846 *[[1394]] - [[Chokei]], Emperor of Japan (b. [[1343]])
51847 *[[1450]] - [[Reginald West, 6th Baron De La Warr]], English politician (b. [[1395]])
51848 *[[1521]] - [[Josquin Des Prez]], Flemish composer
51849 *[[1545]] - [[Piotr Gamrat]], Polish Catholic archbishop (b. [[1487]])
51850 *[[1572]] - [[Claude Goudimel]], French composer
51851 *[[1577]] - [[Titian]], Italian artist
51852 *[[1590]] - [[Pope Sixtus V]] (b. [[1521]])
51853 *[[1635]] - [[FÊlix Lope de Vega]], Spanish poet and playwright (b. [[1562]])
51854 *[[1664]] - [[Francisco ZurbarÃĄn]], Spanish painter (b. [[1598]])
51855 *[[1748]] - [[James Thomson (Seasons)|James Thomson]], Scottish poet (b. [[1700]])
51856 *[[1773]] - [[Friedrich Wilhelm von Seydlitz]], Prussian general (b. [[1721]])
51857 *[[1875]] - [[William Chapman Ralston]], American banker (b. [[1826]])
51858 *[[1909]] - [[Emil Christian Hansen]], Danish fermentation physiologist (b. [[1842]])
51859 *[[1929]] - [[Herman Potocnik|Herman Poto&amp;#269;nik Noordung]], Slovenian rocket scientist (b. [[1892]])
51860 *[[1931]] - [[Frank Harris]], Irish author and editor (b. [[1856]])
51861 *1931 - [[Francis Marion Smith]], American borax magnate (b. [[1846]])
51862 *[[1948]] - [[Charles Evans Hughes]], U.S. Supreme Court justice (b. [[1862]])
51863 *[[1958]] - [[Ernest Lawrence]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1901]])
51864 *[[1963]] - [[Garrett Morgan]], American inventor (b. [[1877]])
51865 *1963 - [[W.E.B. DuBois]], American civil rights activist and scholar (b. [[1868]])
51866 *[[1964]] - [[Gracie Allen]], American actress and comedienne
51867 *[[1965]] - [[Le Corbusier]], Swiss architect (b. [[1887]])
51868 *[[1967]] - [[Brian Epstein]], English manager of [[The Beatles]] (b. [[1934]])
51869 *[[1968]] - [[Princess Marina of Greece and Denmark|Princess Marina, Duchess of Kent]] (b. [[1906]])
51870 *[[1969]] - [[Ivy Compton-Burnett]], English novelist (b. [[1884]])
51871 *1969 - [[Erika Mann]], German writer and daughter of [[Thomas Mann]] (b. [[1905]])
51872 *[[1971]] - [[Bennett Cerf]], American publisher and television personality (b. [[1898]])
51873 *[[1975]] - [[Haile Selassie]] I, [[Emperor of Ethiopia]] (b. [[1892]])
51874 *[[1976]] - [[Mukesh]], Indian playback singer (b. [[1923]])
51875 *[[1979]] - [[Earl Mountbatten]], British admiral and statesman (assassinated) (b. [[1900]])
51876 *[[1980]] - [[Douglas Kenney]], American humorist (b. [[1947]])
51877 *[[1988]] - [[William Sargant]], British psychiatrist (b. [[1907]])
51878 *[[1990]] - [[Stevie Ray Vaughan]], American guitarist (b. [[1954]])
51879 *[[1997]] - [[Brandon Tartikoff]], American television producer (b. [[1949]])
51880 *[[2002]] - [[Richard Ricci]], American handyman wrongly suspected of being a kidnapper in the Elizabeth Smart case (b. [[1953]])
51881 *[[2003]] - [[Pierre Poujade]], French politician (b. [[1920]])
51882 *[[2004]] - [[Willie Crawford]], baseball player (b. [[1946]])
51883
51884 ==Holidays and observances==
51885 *[[Roman festivals]] - [[Volturnalia]] held in honor of [[Volturnus]]
51886 *[[Calendar of Saints|RC Saints]] - Saint [[Monica of Hippo]]
51887 *[[Moldova]] - Independence Day (from the USSR, [[1991]])
51888
51889 ==External links==
51890 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/27 BBC: On This Day]
51891
51892 ----
51893
51894 [[August 26]] - [[August 28]] - [[July 27]] - [[September 27]] -- [[historical anniversaries|listing of all days]]
51895
51896 {{months}}
51897
51898 [[af:27 Augustus]]
51899 [[ar:27 ØŖØēØŗØˇØŗ]]
51900 [[an:27 d'agosto]]
51901 [[ast:27 d'agostu]]
51902 [[bg:27 авĐŗŅƒŅŅ‚]]
51903 [[be:27 ĐļĐŊŅ–ŅžĐŊŅ]]
51904 [[bs:27. august]]
51905 [[ca:27 d'agost]]
51906 [[ceb:Agosto 27]]
51907 [[cv:ÇŅƒŅ€ĐģĐ°, 27]]
51908 [[co:27 d'aostu]]
51909 [[cs:27. srpen]]
51910 [[cy:27 Awst]]
51911 [[da:27. august]]
51912 [[de:27. August]]
51913 [[et:27. august]]
51914 [[el:27 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
51915 [[es:27 de agosto]]
51916 [[eo:27-a de aÅ­gusto]]
51917 [[eu:Abuztuaren 27]]
51918 [[fo:27. august]]
51919 [[fr:27 aoÃģt]]
51920 [[fy:27 augustus]]
51921 [[ga:27 LÃēnasa]]
51922 [[gl:27 de agosto]]
51923 [[ko:8ė›” 27ėŧ]]
51924 [[hr:27. kolovoza]]
51925 [[io:27 di agosto]]
51926 [[id:27 Agustus]]
51927 [[ia:27 de augusto]]
51928 [[ie:27 august]]
51929 [[is:27. ÃĄgÃēst]]
51930 [[it:27 agosto]]
51931 [[he:27 באוגוסט]]
51932 [[jv:27 Agustus]]
51933 [[ka:27 აგვისáƒĸო]]
51934 [[csb:27 zÊlnika]]
51935 [[ku:27'ÃĒ gelawÃĒjÃĒ]]
51936 [[lt:RugpjÅĢčio 27]]
51937 [[lb:27. August]]
51938 [[hu:Augusztus 27]]
51939 [[mk:27 авĐŗŅƒŅŅ‚]]
51940 [[ms:27 Ogos]]
51941 [[nap:27 'e aÚsto]]
51942 [[nl:27 augustus]]
51943 [[ja:8月27æ—Ĩ]]
51944 [[no:27. august]]
51945 [[nn:27. august]]
51946 [[oc:27 d'agost]]
51947 [[pl:27 sierpnia]]
51948 [[pt:27 de Agosto]]
51949 [[ro:27 august]]
51950 [[ru:27 авĐŗŅƒŅŅ‚Đ°]]
51951 [[sco:27 August]]
51952 [[sq:27 Gusht]]
51953 [[scn:27 di austu]]
51954 [[simple:August 27]]
51955 [[sk:27. august]]
51956 [[sl:27. avgust]]
51957 [[sr:27. авĐŗŅƒŅŅ‚]]
51958 [[fi:27. elokuuta]]
51959 [[sv:27 augusti]]
51960 [[tl:Agosto 27]]
51961 [[tt:27. August]]
51962 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 27]]
51963 [[th:27 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
51964 [[vi:27 thÃĄng 8]]
51965 [[tr:27 Ağustos]]
51966 [[uk:27 ŅĐĩŅ€ĐŋĐŊŅ]]
51967 [[wa:27 d' awousse]]
51968 [[war:Agosto 27]]
51969 [[zh:8月27æ—Ĩ]]
51970 [[pam:Agostu 27]]</text>
51971 </revision>
51972 </page>
51973 <page>
51974 <title>Alcohol</title>
51975 <id>1014</id>
51976 <revision>
51977 <id>42102518</id>
51978 <timestamp>2006-03-03T21:15:39Z</timestamp>
51979 <contributor>
51980 <username>Jidan</username>
51981 <id>258229</id>
51982 </contributor>
51983 <text xml:space="preserve">:''This article is about organic compounds containing -OH groups. For other uses, see [[Alcohol (disambiguation)]].''
51984
51985 In [[chemistry]], '''alcohol''' is any [[organic compound]] in which a [[hydroxyl]] [[Functional group|group]] (''-[[oxygen|O]][[hydrogen|H]]'') is bound to a [[carbon]] atom, which in turn is bound to other [[hydrogen]] and/or [[carbon]] atoms. The general formula for a simple [[acyclic]] alcohol is '''C&lt;sub&gt;n&lt;/sub&gt;H&lt;sub&gt;2n+1&lt;/sub&gt;OH'''.
51986
51987 In general usage, '''alcohol''' refers almost always to [[ethanol]], also known as '''grain alcohol''', and often to any beverage that contains ethanol (see ''[[alcoholic beverage]]''). This sense underlies the term [[alcoholism]] ([[addiction]] to alcohol). As a [[Medication|drug]], ethanol is known to have a [[depressant|depressing effect]] that decreases the responses of the [[central nervous system]] (see [[effects of alcohol on the body]]). Other forms of alcohol are usually described with a clarifying adjective, as in ''[[isopropyl alcohol]]'' or by the suffix ''-ol'', as in ''isopropanol''.
51988
51989 The word dates to the 16th century when it was used to refer to any chemical substance arrived at by sublimation. This derived from the [[Medieval Latin]] ''alcohol'' (&quot;powdered ore of [[antimony]]&quot;), originating from [[Arabic language|Arabic]] ''{{ArabDIN|al-kuá¸ĨÅĢl}}'' ({{ar|&amp;#1575;&amp;#1604;&amp;#1603;&amp;#1581;&amp;#1608;&amp;#1604;}}), which is also the source of ''[[kohl (cosmetics)|kohl]]'' and related to the root ''k-á¸Ĩ-l'', attested in the [[Arabic]] word for eye makeup.
51990
51991 == Structure ==
51992 [[Image:alcohol_general.jpg|150px|right|An alcohol]]
51993
51994 The [[functional group]] of an alcohol is a [[hydroxyl group]] bonded to an spÂŗ hybridized carbon. It can therefore be regarded as a derivative of [[water_(molecule)|water]], with an [[alkyl]] group replacing one of the hydrogens. If an [[aryl]] group is present rather than an alkyl, the compound is generally called a [[phenol]] rather than an alcohol. Also, if the [[hydroxyl group]] is bonded to one of the sp² hybridized carbons of an alkenyl group, the compound is referred to as an [[enol]]. The oxygen in an alcohol has a bond angle of around 109&amp;deg; (c.f. 104.5&amp;deg; in water), and two nonbonded electron pairs. The O-H bond in methanol (CH&lt;sub&gt;3&lt;/sub&gt;OH) is around 96 pico[[metre]]s long.
51995
51996 === Primary, secondary, and tertiary alcohols ===
51997 There are three major subsets of alcohols- 'primary' (1°), 'secondary' (2°) and 'tertiary' (3°), based upon the number of carbons the C-OH carbon (shown in red) is bonded to. [[Methanol]] is the simplest 'primary' alcohol. The simplest secondary alcohol is [[isopropanol]] (propan-2-ol), and a simple tertiary alcohol is ''tert''-[[butanol]] (2-methylpropan-2-ol).
51998
51999 [[Image:alcohol_common.jpg|450px|Some common alcohols]]
52000
52001 === Methanol &amp; ethanol ===
52002 The simplest and most commonly used alcohols are [[methanol]] and [[ethanol]] (common names [[methyl]] alcohol and [[ethyl]] alcohol, respectively), which have the structures shown above.
52003
52004 Methanol was formerly obtained by the distillation of wood, and was called &quot;wood alcohol&quot;. It is now a cheap commodity chemical produced by the high pressure reaction of [[carbon monoxide]] with [[hydrogen]]. In common usage, &quot;alcohol&quot; often refers simply to ethanol or &quot;grain alcohol&quot;. [[Methylated spirits]] (&quot;Meths&quot;), also called &quot;surgical spirits&quot;, is a form of ethanol rendered undrinkable by the addition of methanol. Aside from its major use in alcoholic beverages, ethanol is also used (though highly controlled) as an industrial solvent and raw material.
52005
52006 == Uses ==
52007 Alcohols are in wide use in industry and science as reagents, [[solvent]]s, and [[alcohol as a fuel|fuel]]s. Ethanol and methanol can be made to burn more cleanly than [[gasoline]] or [[diesel]]. Because of its low toxicity and ability to dissolve non-polar substances, ethanol is often used as a solvent in medical drugs, [[perfume]]s, and vegetable essences such as [[vanilla]]. In [[organic synthesis]], alcohols frequently serve as versatile intermediates.
52008
52009 Ethanol is also commonly used in beverages after fermentation to promote flavor or induce a euphoric intoxication commonly known as &quot;drunkenness&quot; or &quot;being drunk&quot;. The use of ethanol for this purpose is illegal in some jurisdictions. In such instances of consumption, alcohol is a [[Psychoactive drug|drug]], with immediate potential for overdose, toxic poisoning, and physiological dependency (known as [[alcoholism]]). Alcoholism has become one of the most common drug addictions (if not second to caffeine) in the world. The physiological dependency caused by alcoholism means that the user experiences physical withdrawal (in the form of a headache known as a &quot;[[hangover]],&quot; extremely high anxiety known as &quot;the shakes,&quot; and restlessness or trouble sleeping) upon cessation or decrease of use. For the full article on this topic see [[effects of alcohol on the body]].
52010
52011 Because of such particular uses, historically, ethanol has been regulated by taxation. Those who manufacture it for other purposes often avoid this expense by &quot;denaturing&quot; it in a manner that renders it unfit for drinking. A common way to do this is by the addition of [[denatonium benzoate]]. &quot;SD-40&quot; and &quot;SD Alcohol&quot; sometimes followed by &quot;40-B&quot; are designations that were established by the [[Bureau of Alcohol, Tobacco, and Firearms]] for this formulation.
52012
52013 == Sources ==
52014 Many alcohols can be created by [[fermentation]] of [[fruit]]s or [[cereal|grain]]s with [[yeast]], but only ethanol is commercially produced this way, chiefly for [[alcohol as a fuel|fuel]] and [[alcoholic beverage|drink]]. Other alcohols are generally produced by synthetic routes from [[natural gas]], [[petroleum]], or [[coal]] feed stocks, for example via acid catalyzed [[hydration reaction|hydration]] of [[alkene]]s. For more details see [[#Chemistry of alcohols|Chemistry of alcohols]]
52015
52016 == Nomenclature ==
52017 === Systematic names ===
52018 In the [[IUPAC nomenclature|IUPAC]] system, the name of the alkane chain loses the terminal &quot;e&quot; and adds &quot;ol&quot;, e.g. &quot;methanol&quot; and &quot;ethanol&quot;. When necessary, the position of the hydroxyl group is indicated by a number between the alkane name and the &quot;ol&quot;: [[propan-1-ol]] for CH&lt;sub&gt;3&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;OH, [[Isopropyl alcohol|propan-2-ol]] for CH&lt;sub&gt;3&lt;/sub&gt;CH(OH)CH&lt;sub&gt;3&lt;/sub&gt;. Sometimes, the position number is written before the IUPAC name: 1-propanol and 2-propanol. If a higher priority group is present (such as an [[aldehyde]], [[ketone]] or [[carboxylic acid]]), then it is necessary to use the prefix &quot;hydroxy&quot;, for example: 1-hydroxy-2-propanone (CH&lt;sub&gt;3&lt;/sub&gt;COCH&lt;sub&gt;2&lt;/sub&gt;OH).
52019
52020 Some examples of simple alcohols and how to name them:
52021
52022 [[Image:Alcohol_examples.gif|550px|Examples of alcohols &amp; their names]]
52023
52024 Common names for alcohols usually take the name of the corresponding [[alkyl]] group and add the word &quot;alcohol&quot;, e.g. [[methyl]] alcohol, [[ethyl]] alcohol or [[Butyl|''tert''-butyl]] alcohol. [[Propyl]] alcohol may be ''n''-propyl alcohol or isopropyl alcohol depending on whether the hydroxyl group is bonded to the 1st or 2nd carbon on the propane chain. Isopropyl alcohol is also occasionally called ''sec''-propyl alcohol.
52025
52026 As mentioned above alcohols are classified as primary (1°), secondary (2°) or tertiary (3°), and common names often indicate this in the alkyl group prefix. For example (CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt;COH is a tertiary alcohol is commonly known as ''tert''-butyl alcohol. This would be named 2-methylpropan-2-ol under IUPAC rules, indicating a propane chain with methyl and hydroxyl groups both attached to the middle (#2) carbon.
52027
52028 An alcohol with two hydroxyl groups is commonly called a &quot;glycol&quot;, e.g. HO-CH&lt;sub&gt;2&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;-OH is [[ethylene glycol]]. The IUPAC name is ethane-1,2-diol, &quot;diol&quot; indicating two hydroxyl groups, and 1,2 indicating their bonding positions. Geminal glycols (with the two hydroxyls on the same carbon atom), such as ethane-1,1-diol, are generally unstable. For three or four groups, &quot;triol&quot; and &quot;tetraol&quot; are used.
52029
52030 === Etymology ===
52031 The word &quot;alcohol&quot; almost certainly comes from the [[Arabic language]] (the &quot;al-&quot; prefix being the Arabic definite article); however, the precise origin is unclear. It was introduced into [[Europe]], together with the art of [[distillation]] and the substance itself, around the [[12th century]] by various European authors who translated and popularized the discoveries of [[Islamic]] [[alchemy|alchemists]].
52032
52033 A popular theory, found in many dictionaries, is that it comes from &amp;#1575;&amp;#1604;&amp;#1603;&amp;#1581;&amp;#1604; = ''ALKHL'' = ''al-kuhul'', originally the name of very finely powdered [[antimony]] [[sulfide]] [[antimony|Sb]]&lt;sub&gt;2&lt;/sub&gt;[[sulfur|S]]&lt;sub&gt;3&lt;/sub&gt; used as an [[antiseptic]] and [[eyeliner]]. The powder is prepared by [[sublimation (physics)|sublimation]] of the natural mineral [[stibnite]] in a closed vessel. According to this theory, the meaning of ''alkuhul'' would have been first extended to distilled substances in general, and then narrowed to ethanol. This conjectured etymology has been circulating in England since [[1672]] at least ([[Oxford English Dictionary|OED]]).
52034
52035 However, this derivation is suspicious since the current Arabic name for alcohol, &amp;#1575;&amp;#1604;&amp;#1603;&amp;#1581;&amp;#1608;&amp;#1604; = ''ALKHWL'' = ''al???'', does not derive from ''al-kuhul''. The [[Qur'an]] in verse 37:47 uses the word &amp;#1575;&amp;#1604;&amp;#1594;&amp;#1608;&amp;#1604; = ''ALGhWL'' = ''al-ghawl'' &amp;mdash; properly meaning &quot;spirit&quot; (&quot;[[spiritual being]]&quot;) or &quot;[[demon]]&quot; &amp;mdash; with the sense &quot;the thing that gives the wine its headiness&quot;. The word ''al-ghawl'' also originated the [[English language|English]] word &quot;ghoul&quot;, and the name of the star [[Algol]]. This derivation would, of course, be consistent with the use of &quot;spirit&quot; or &quot;spirit of wine&quot; as synonymous of &quot;alcohol&quot; in most Western languages. (Incidentally, the etymology &quot;alcohol&quot; = &quot;the devil&quot; was used in the [[1930s]] by the [[United States|U.S.]] [[Temperance movement|Temperance Movement]] for propaganda purposes.)
52036
52037 According to the second theory, the popular etymology and the spelling &quot;alcohol&quot; would not be due to generalization of the meaning of ''ALKHL'', but rather to Western alchemists and authors confusing the two words ''ALKHL'' and ''ALGhWL'', which have indeed been transliterated in many different and overlapping ways.
52038
52039 == Physical and chemical properties ==
52040 The [[hydroxyl group]] generally makes the alcohol molecule [[polar molecule|polar]]. Those groups can form [[hydrogen bond]]s to one another and to other compounds. Two opposing solubility trends in alcohols are: the tendency of the polar OH to promote solubility in water, and of the carbon chain to resist it. Thus, methanol, ethanol, and propanol are miscible in water because the hydroxyl group wins out over the short carbon chain. [[Butanol]], with a four-carbon chain, is moderately soluble because of a balance between the two trends. Alcohols of five or more carbons ([[amyl alcohol|Pentanol]] and higher) are effectively insoluble because of the hydrocarbon chain's dominance.
52041
52042 Because of [[hydrogen bonding]], alcohols tend to have higher boiling points than comparable [[hydrocarbon]]s and [[ether]]s. All simple alcohols are miscible in organic solvents. This hydrogen bonding means that alcohols can be used as [[protic solvent]]s.
52043
52044 The lone pairs of electrons on the oxygen of the hydroxyl group also makes alcohols nucleophiles.
52045
52046 Alcohols, like water, can show either acidic or basic properties at the O-H group. With a [[pKa|pK&lt;Sub&gt;a&lt;/sub&gt;]] of around 16-19 they are generally slightly weaker [[acid]]s than [[water (molecule)|water]], but they are still able to react with strong bases such as [[sodium hydride]] or reactive metals such as [[sodium]]. The salts that result are called '''[[alkoxide]]s''', with the general formula [[Alkyl|R]]O&lt;sup&gt;-&lt;/sup&gt; [[Metal|M]]&lt;sup&gt;+&lt;/sup&gt;.
52047
52048 Alcohols conjugated to aromatic rings have a lower pKa (around 10). Electron-withdrawing groups also work to make alcohols more acidic. For example, Para-nitro phenol has a pKa of 7.15.
52049
52050 Meanwhile the oxygen atom has [[lone pair]]s of nonbonded electrons that render it weakly [[Base_(chemistry)|basic]] in the presence of strong acids such as [[sulfuric acid]]. For example, with methanol:
52051
52052 [[Image:methanol_acid_base.gif|500px|Acidity &amp; basicity of methanol]]
52053
52054 Alcohols can also undergo [[oxidation]] to give [[aldehyde]]s, [[ketone]]s or [[carboxylic acid]]s, or they can be dehydrated to [[alkene]]s. They can react to form [[ester compound]]s, and they can (if activated first) undergo [[nucleophilic substitution]] reactions. For more details see the [[#Chemistry of alcohols]] section below.
52055
52056 == Toxicity ==
52057 Alcohols often have an odor described as 'biting' that 'hangs' in the nasal passages. [[Ethanol]] in the form of [[alcoholic beverage]]s has been consumed by humans since pre-historic times, for a variety of hygienic, dietary, medicinal, religious, and recreational reasons. While infrequent consumption of ethanol in small quantities may be harmless or even beneficial, larger doses result in a state known as [[drunkenness]] or intoxication and, depending on the dose and regularity of use, can cause acute respiratory failure or death and with chronic use has medical repercussions.
52058
52059 Other alcohols are substantially more poisonous than ethanol, partly because they take much longer to be metabolized, and often their metabolism produces even more toxic substances. Methanol, or ''wood alcohol'', for instance, is oxidized by [[alcohol dehydrogenase]] [[enzyme]]s in the liver to the poisonous [[formaldehyde]], which can cause blindness or death.
52060
52061 An effective treatment to prevent formaldehyde toxicity after methanol ingestion is to administer ethanol. This will bind to alcohol dehydrogenase, preventing methanol from binding and thus acting as a [[substrate]]. Any formaldehyde will be converted to [[formic acid]] and excreted before it causes damage.
52062
52063 == Preparation of alcohols ==
52064 === Laboratory ===
52065 Several methods exist for the preparation of alcohols in the laboratory.
52066 * Primary [[Alkyl halide]]s react with aqueous [[Sodium hydroxide|NaOH]] or [[Potassium hydroxide|KOH]] mainly to primary alcohols in [[nucleophilic aliphatic substitution]]. (Secondary and especially tertiary alkyl halides will give the elimination (alkene) product instead).
52067 * [[Aldehydes]] or [[ketone]]s are [[reduction|reduced]] with [[sodium borohydride]] or [[lithium aluminium hydride]]. (after an acidic workup)
52068 * [[Alkenes]] engage in a [[acid]] catalysed [[hydration reaction]] using concentrated [[sulfuric acid]] as a catalyst which gives usually secondary or tertiary alcohols.
52069 * The [[hydroboration-oxidation]] and [[oxymercuration-reduction]] of alkenes are more reliable in organic synthesis.
52070 * [[Grignard reagent]]s react with [[carbonyl]] groups to secondary and tertiary alcohols
52071
52072 The formation of a secondary alcohol via reduction and hydratation is shown:
52073
52074 [[Image:alcohol_prep.gif|center|350px|Preparation of a secondary alcohol]]
52075
52076 === Industrial ===
52077 Industrially alcohols are produced in several ways.
52078 * by [[fermentation]] using [[glucose]] produced from sugar from the [[hydrolysis]] of [[starch]], in the presence of yeast and temperature of less than 37°C to produce ethanol. For instance the conversion of [[invertase]] to [[glucose]] and [[fructose]] or the conversion of [[glucose]] to [[zymase]] and [[ethanol]].
52079 * By direct [[hydration reaction|hydration]]: using [[ethene]] or other alkenes from [[cracking]] of fractions of distilled [[crude oil]]. Uses a catalyst of [[phosphoric acid]] under high temperature and pressure.
52080 * [[Methanol]] is producted from water gas: It is manufactured from [[Syngas|synthesis gas]], where [[carbon monoxide]] and 2 equivalents of hydrogen gas are combined to produce [[methanol]] using a [[copper]], [[zinc oxide]] and [[aluminium oxide]] catalyst at 250°C and a pressure of 50-100 atm.
52081
52082 == Reactions of alcohols ==
52083 === Deprotonation ===
52084 Alcohols can behave as weak acids, undergoing deprotonation. The deprotonation reaction to produce an [[alkoxide]] salt is either performed with a strong base such as [[sodium hydride]] or [[butyllithium|''n''-butyllithium]], or with sodium or potassium metal.
52085
52086 : 2 R-OH + 2 [[Sodium hydride|NaH]] &amp;rarr; 2 R-O&lt;sup&gt;-&lt;/sup&gt;Na&lt;sup&gt;+&lt;/sup&gt; + [[Hydrogen|H&lt;sub&gt;2&lt;/sub&gt;]]&amp;uarr;
52087
52088 : 2 R-OH + 2[[Sodium|Na]] &amp;rarr; 2R-O&lt;sup&gt;&amp;minus;&lt;/sup&gt;Na&lt;sup&gt;+&lt;/sup&gt;
52089
52090 : e.g. 2 [[Ethanol|CH&lt;sub&gt;3&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;-OH]] + 2 Na &amp;rarr; 2 CH&lt;sub&gt;3&lt;/sub&gt;-CH&lt;sub&gt;2&lt;/sub&gt;-O&lt;sup&gt;&amp;minus;&lt;/sup&gt;Na&lt;sup&gt;+&lt;/sup&gt;
52091
52092 Water is similar in [[pKa|pK&lt;Sub&gt;a&lt;/sub&gt;]] to many alcohols, so with [[sodium hydroxide]] there is an equilibrium set up which usually lies to the left:
52093
52094 : R-OH + [[Sodium hydroxide|NaOH]] &lt;=&gt; R-O&lt;sup&gt;-&lt;/sup&gt;Na&lt;sup&gt;+&lt;/sup&gt; + H&lt;sub&gt;2&lt;/sub&gt;O (equilibrium to the left)
52095
52096 It should be noted, though, that the bases used to deprotonate alcohols are strong themselves. The bases used and the alkoxides created are both highly moisture sensitive chemical reagents.
52097
52098 === Nucleophilic substitution ===
52099 The [[hydroxyl|OH]] group is not a good [[leaving group]] in [[nucleophilic substitution]] reactions, so neutral alcohols do not react in such reactions. However if the oxygen is first protonated to give R&amp;minus;OH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;, the leaving group ([[water_(molecule)|water]]) is much more stable, and nucleophilic substitution can take place. For instance, tertiary alcohols react with [[hydrochloric acid]] to produce tertiary [[alkyl halide]]s, where the [[hydroxyl group]] is replaced by a [[chlorine]] atom. If primary or secondary alcohols are to be reacted with [[hydrochloric acid]], an activator such as [[zinc chloride]] is needed. Alternatively the conversion may be performed directly using [[thionyl chloride]].&lt;sup&gt;[1]&lt;/sup&gt;
52100
52101 [[Image:Alcohol_reaction_examples.gif|550px|Some simple conversions of alcohols to alkyl chlorides]]
52102
52103 Alcohols may likewise be converted to alkyl bromides using [[hydrobromic acid]] or [[phosphorus tribromide]], for example:
52104
52105 : 3 R-OH + PBr&lt;sub&gt;3&lt;/sub&gt; &amp;rarr; 3 RBr + H&lt;sub&gt;3&lt;/sub&gt;PO&lt;sub&gt;3&lt;/sub&gt;
52106
52107 In the [[Barton-McCombie deoxygenation]] an alcohol is deoxygenated to an [[alkane]] with [[organotin|tributyltin hydride]] or a [[organoborane|trimethylborane]]-water complex in a [[radical substitution]] reaction.
52108
52109 === Dehydration ===
52110 Alcohols are themselves nucleophilic, so R&amp;minus;OH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt; can react with ROH to produce [[ether]]s and water in a [[dehydration reaction]], although this reaction is rarely used except in the manufacture of [[diethyl ether]].
52111
52112 More useful is the E1 [[elimination reaction]] of alcohols to produce [[alkene]]s. The reaction generally obeys [[Zaitsev's Rule]], which states that the most stable (usually the most substituted) alkene is formed. Tertiary alcohols eliminate easily at just above room temperature, but primary alcohols requre a higher temperature.
52113
52114 This is a diagram of acid catalysed dehydration of ethanol to produce [[ethene]]:
52115
52116 [[image:DehydrationOfAlcoholWithH-.png|550px]]
52117
52118 === Esterification ===
52119 To form an [[ester]] from an [[alcohol]] and a [[carboxylic acid]] the reaction, known as [[Fischer esterification]], is usually performed at [[reflux]] with a [[catalyst]] of concentrated [[sulfuric acid]]:
52120
52121 : R-OH + R'-COOH &lt;math&gt;\Leftrightarrow&lt;/math&gt; R'-COOR + H&lt;sub&gt;2&lt;/sub&gt;O
52122
52123 In order to drive the equilibrium to the right and produce a good [[yield_(chemistry)|yield]] of ester, water is usually removed, either by an excess of H&lt;sub&gt;2&lt;/sub&gt;SO&lt;sub&gt;4&lt;/sub&gt; or by using a [[Dean-Stark apparatus]]. Esters may also be prepared by reaction of the alcohol with an [[acid chloride]] in the presence of a base such as [[pyridine]].
52124
52125 Other types of ester are prepared similarly- for example [[tosyl]] (tosylate) esters are made by reaction of the alcohol with p-[[toluenesulfonyl]] chloride in pyridine.
52126
52127 === Oxidation===
52128 Primary alcohols generally give [[aldehyde]]s or [[carboxylic acid]]s upon [[organic oxidation|oxidation]], while secondary alcohols give [[ketone]]s. Traditionally strong [[Redox|oxidants]] such as the [[dichromate]] ion or [[potassium permanganate]] are used, under acidic conditions, for example:
52129
52130 :3 [[Isopropanol|CH&lt;sub&gt;3&lt;/sub&gt;-CH(-OH)-CH&lt;sub&gt;3&lt;/sub&gt;]] + [[Potassium dichromate|K&lt;sub&gt;2&lt;/sub&gt;Cr&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;7&lt;/sub&gt;]] + 4 [[Sulfuric acid|H&lt;sub&gt;2&lt;/sub&gt;SO&lt;sub&gt;4&lt;/sub&gt;]] &amp;rarr; 3 [[Acetone|CH&lt;sub&gt;3&lt;/sub&gt;-C(=O)-CH&lt;sub&gt;3&lt;/sub&gt;]] + Cr&lt;sub&gt;2&lt;/sub&gt;(SO&lt;sub&gt;4&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt; + K&lt;sub&gt;2&lt;/sub&gt;SO&lt;sub&gt;4&lt;/sub&gt; + 7 [[Water_(molecule)|H&lt;sub&gt;2&lt;/sub&gt;O]]
52131
52132 Frequently in [[aldehyde]] preparations these reagents cause a problem of over-oxidation to the [[carboxylic acid]]. To avoid this, other reagents such as [[Pyridinium chlorochromate|PCC]], [[Dess-Martin periodinane]], [[2-Iodoxybenzoic acid]], [[TPAP]] or methods such as [[Swern oxidation]] are now preferred.
52133
52134 Alcohols with a [[methyl]] group attached to the alcohol carbon can also undergo a [[haloform reaction]] (such as the [[iodoform reaction]]) in the presence of the [[halogen]] and a base such as sodium hydroxide.
52135
52136 Tertiary alcohols resist oxidation, but can be oxidised by reagents such as 2,3-dichloro-5,6-dicyano-1,4-benzoquinone.
52137
52138 == See also ==
52139 * [[Alcohol as a fuel]]
52140 * [[Alcoholic beverage]]
52141 * [[Effects of alcohol on the body]]
52142 * [[Transesterification]]
52143 * [[Sugar alcohol]]s
52144 * [[Fatty alcohol]]s
52145
52146 == References ==
52147 * [http://sci-toys.com/ingredients/alcohol.html Sci-toys website explanation of denatured alcohol designations]
52148
52149 == External links ==
52150 {{wikiquote}}
52151
52152 * [http://www.french-paradox.net/fpbksb1.html What Is Alcohol, Anyway?] Interesting information about alcohols.
52153
52154 [[Category:Alcohol|*]]
52155 [[Category:Alcohols|*]]
52156 [[Category:Drugs]]
52157 [[Category:Antiseptics]]
52158 [[Category:Arabic words]]
52159 [[Category:functional groups]]
52160
52161 [[ar:ØŖØēŲˆØ§Ų„ ( ŲƒŲŠŲ…ŲŠØ§ØĄ ØšØļŲˆŲŠØŠ )]]
52162 [[bg:АĐģĐēĐžŅ…ĐžĐģ]]
52163 [[be:ĐĄŅŒĐŋŅ–Ņ€Ņ‚]]
52164 [[ca:Alcohol]]
52165 [[cs:Alkohol]]
52166 [[da:Alkanol]]
52167 [[de:Alkohol (Chemie)]]
52168 [[et:Alkoholid]]
52169 [[es:Alcohol]]
52170 [[eo:Alkoholo]]
52171 [[fr:Alcool (chimie)]]
52172 [[gl:Alcohol]]
52173 [[ko:ė•ŒėŊ”ė˜Ŧ]]
52174 [[id:Alkohol]]
52175 [[io:Alkoholo]]
52176 [[is:AlkÃŗhÃŗl]]
52177 [[it:Alcoli]]
52178 [[he:כוהל]]
52179 [[hu:Alkohol]]
52180 [[mk:АĐģĐēĐžŅ…ĐžĐģ]]
52181 [[nl:Alcohol (scheikunde)]]
52182 [[ja:ã‚ĸãƒĢã‚ŗãƒŧãƒĢ]]
52183 [[no:Alkohol]]
52184 [[nn:Alkohol]]
52185 [[pl:Alkohol]]
52186 [[pt:Álcool]]
52187 [[ru:ĐĄĐŋиŅ€Ņ‚]]
52188 [[simple:Alcohol]]
52189 [[sk:Alkohol]]
52190 [[sl:Alkohol]]
52191 [[sr:АĐģĐēĐžŅ…ĐžĐģ]]
52192 [[su:alkohol]]
52193 [[fi:Alkoholi]]
52194 [[tr:alkoller]]
52195 [[vi:RÆ°áģŖu (hoÃĄ háģc)]]
52196 [[zh:醇]]</text>
52197 </revision>
52198 </page>
52199 <page>
52200 <title>Achill Island</title>
52201 <id>1016</id>
52202 <revision>
52203 <id>41553470</id>
52204 <timestamp>2006-02-28T02:51:12Z</timestamp>
52205 <contributor>
52206 <ip>216.99.214.56</ip>
52207 </contributor>
52208 <comment>/* History */</comment>
52209 <text xml:space="preserve">[[Image:Achill_Island.png|thumb|300px|Location of Achill Island]]
52210
52211 [[Image:Achill_Ireland_Keem_bay.jpg|right|thumb|250px|Keem bay on Achill island is said to be one of the most beautiful beaches in Ireland.]]
52212
52213 '''Achill Island''' ''([[Irish language|Irish]]; Acaill, OileÃĄn Acla)'' in [[County Mayo]] is the largest island off [[Ireland]], and is situated off the west coast. It has a population of 2700. Its area is 57 [[square miles]] (146 [[square kilometres]]). Achill is attached to the mainland by [[Michael Davitt Bridge]], between the villages of [[Achill Sound]] and Polranny, so it is possible to drive onto the island. This is a [[swing bridge]] which allows the passage of small boats. A bridge was first completed here in 1886, and replaced by the current structure after [[World War II]]. Other centres of population include the villages of Keel, Dooagh, Dooega and Dugort. The island's [[Gaelic football|football]] pitch and two secondary schools are on the mainland at Polranny. Early settlements are believed to have been established on Achill around 3000 BCE. A paddle dating from this period was found at the [[crannog]] near Dookinella.
52214
52215 The island is 87 per cent [[peat bog]]. The parish of Achill also includes the Corraun peninsula. The people of Corraun consider themselves Achill people, and most natives of Achill refer to this area as being &quot;in Achill&quot;. In the summer of 1996, the [[RNLI]] decided to station a [[lifeboat]] at Kildownet.
52216
52217 ==History==
52218 It is believed that at the end of the [[Neolithic Period]] (around 4000 BCE), Achill had a population of 500-1000 people. The island would have been mostly forest until the Neolithic people began crop cultivation. Settlememt increased during the [[Iron Age]], and the dispersal of small forts around the coast indicate the warlike nature of the times. [[Grace O'Malley|Granuaile]] maintained a castle at Kildownet in the [[sixteenth century]].
52219
52220 In the [[seventeenth century|seventeenth]] and [[eighteenth century|eighteenth]] centuries, there was much migration to Achill from other parts of Ireland, particularly [[Ulster]], due to the political and religious turmoil of the time. For a while there were two different [[dialect]]s of [[Irish language|Irish]] being spoken on Achill. This led to many townlands being recorded as having two names during the 1824 Ordnace Survey, and some maps today give different names for the same place. Achill Irish still has many traces of [[Ulster Irish]].
52221
52222 ==Sights==
52223 [[Image:Atlantic Drive.JPG|thumb|right|250px|Overlooking the west coast of Achill Island.]]
52224 Despite some unsympathetic development, the island retains some striking natural beauty. The cliffs of Croaghaun on the northern coast of the island are the highest sea cliffs in [[Europe]] but are inaccessible by road. On the western tip near Achill Head, Keem bay is arguably one of the most beautiful beaches on the Irish west coast. [[Image:Achill_Ireland_Keel.jpg|thumb|left|250px|Keel Strand.]]Keel beach is quite popular with tourists and some locals as a [[surfing]] location. Another extreme point of the island is Moytoge Head, which with its rounded appearance drops dramatically down to the ocean. An old [[United_Kingdom|British]] observation post, built during [[World War I]] to prevent the [[Germany|Germans]] landing arms for the [[Irish Republican Army]] separatist movement, is still standing on Moytoge. The mountain Slievemore (671 metres) rises dramatically in the centre of the island and the Atlantic drive (along the south/west of the island) has some dramatically beautiful views. On the slopes of Slievemore, there is an abandoned village (&quot;The Deserted Village&quot;) The Deserted Village at Slievemore was once thought to be a remnant village from An Gorta MÃŗr (The Great Hunger, see [[Great Famine]]). However, recent developments suggest that it is a Booley. Specifically, the people of Dooagh and Pollagh would migrate in the summer to Slievemore ([[Transhumance]]), and then go back to Dooagh in the fall. Just west of the deserted village is an old [[Martello tower]], again built by the British to warn of any possible [[France|French]] invasion. The area also boasts an approximately 5000-year old [[Neolithic tomb]]. Achillbeg (''Acaill Beag'', Little Achill) is a small island just off Achill's southern tip. Its inhabitants were resettled on Achill in the 1960's. There is a mural of a surfer on the gable of a pub in [[Cashel (Achill)|Cashel]].
52225
52226 ==Economy==
52227 While a number of attempts at setting up small industrial units on the island have been made, the economy of the island is largely dependent on [[tourism]]. Subventions from Achill people working abroad, in particular in [[England]], [[Scotland]] and the [[United States]] allowed many families to remain living in Achill throughout the 19th and 20th centuries. Since the advent of [[Ireland]]'s &quot;[[Celtic Tiger]]&quot; [[Economy of Ireland|economy]] fewer Achill people are forced to look for work abroad. [[Agriculture]] plays a small role and is only profitable because of European subsidies. The fact that the island is mostly bog means that it is limited - largely to [[sheep farming]]. In the past, [[fishing]] was a significant activity but this aspect of the economy is small now. At one stage, the island was known for its shark fishing, [[basking shark]] in particular was fished for its valuable liver oil. There was a big spurt of growth in tourism in the [[1960s]] and [[1970s]] before which life was tough and difficult on the island. Since that heyday, the common perception is that tourism has been slowly declining.
52228
52229 ==Architecture==
52230 [[Image:Achill_Slievemore_Deserted_Village.jpg|250px|thumb|The &quot;Deserted Village&quot; at the foot of Slievemore was a Booley village, see [[Transhumance]]]]
52231
52232 Some of the recent building development on the island (over the last 40 years or so) has been contentious and in many cases is not as sympathetic to the landscape as the earlier style of [[whitewash|whitewashed]] [[barged roof]]ed [[cottage]]s. Because of the inhospitable climate, very few houses date from before the [[20th century|twentieth century]]. An example of the style of earlier housing can be seen in the &quot;Deserted Village&quot; ruins near the graveyard at the foot of Slievemore. Even the houses in this village represent a relatively comfortable class of dwelling as, even as recently as a hundred years ago, some people still used &quot;Beehive&quot; style houses (small circular single roomed dwellings with a hole in ceiling to let out smoke). Many of the oldest and most picturesque inhabitated cottages date from the activities of the [[Congested Districts Board for Ireland]] - a body set up around the turn of the twentieth century in Ireland to improve the welfare for inhabitants of small villages and towns. Most of the homes in Achill at the time were very small and tightly packed together in villages. The CDB subsidised the building of new, more spacious (though still small by modern standards) homes outside of the traditional villages.
52233
52234 ==Famous people==
52235 The artist [[Paul Henry (painter)|Paul Henry]] stayed on the island for a number of years in the early 1900s and some of his most famous paintings are of the dramatic landscape of the island. The [[Nobel Prize]] winning author, [[Heinrich BÃļll]], visited the island and wrote of his experience in his &quot;Irish Journal&quot; (''Irisches Tagebuch''). The BÃļlls later bought a cottage near Dugort and lived in it periodically until 2001 when they donated it to be used as an artists' residence. [[Graham Greene]] also spent time on Achill Island.
52236
52237 ==See also==
52238 *[[Connacht Irish]]
52239
52240 ==External links==
52241 {{Wikisource1911Enc|Achill}}
52242 *[http://www.achill-island.com Achill Island web site]
52243 *[http://www.visitachill.com Visit Achill multilingual visitor's guide]
52244 *[http://www.achilltourism.com Achill Tourism web site]
52245 *[http://www.scoilacla.com Scoil Acla web site]
52246 *[http://www.achill-fieldschool.com Achill Field School web site]
52247
52248
52249 [[Category:Islands of Ireland]]
52250
52251 [[da:Achill Island]]
52252 [[de:Achill Island]]
52253 [[fr:Île d'Achill]]
52254 [[ga:Acaill]]
52255 [[gl:Achill - Acaill]]
52256 [[it:Achill Island]]</text>
52257 </revision>
52258 </page>
52259 <page>
52260 <title>Allen Ginsberg</title>
52261 <id>1017</id>
52262 <revision>
52263 <id>41767571</id>
52264 <timestamp>2006-03-01T16:31:23Z</timestamp>
52265 <contributor>
52266 <ip>132.241.245.49</ip>
52267 </contributor>
52268 <comment>/* Life */</comment>
52269 <text xml:space="preserve">[[Image:Ginsberg2.jpg|right|225|thumb|Allen Ginsberg in later life]]
52270
52271 '''Irwin Allen Ginsberg''' ({{IPA2|ˈgÉĒnzˌbɝg}}) ([[June 3]], [[1926]] &amp;ndash; [[April 5]] [[1997]]) was an [[United States|American]] [[Beat poet]] born in [[Newark, New Jersey]]. Ginsberg is best known for [[Howl]] ([[1956]]), a long poem about [[consumer]] [[society]]'s negative [[Values#Personal and cultural values|human values]].
52272
52273 ==Life==
52274
52275 Ginsberg was born on [[June 3]], [[1926]] into a Jewish family in [[Newark, New Jersey]]. His father [[Louis Ginsberg]] was a poet and his mother was a high school teacher. Ginsberg's mother, Naomi Levy Ginsberg (who was affected by [[epileptic seizures]] and [[mental illness]]es such as [[paranoia]] {{ref|Modern}}) was also an active member of the [[Communist Party USA]] and often took Ginsberg and his brother Eugene to party meetings. Ginsberg later said that his mother &quot;Made up bedtime stories that all went something like: 'The good king rode forth from his castle, saw the suffering workers and healed them.'&quot;{{ref|BioProject}}
52276
52277 As a teenager, Ginsberg began to write letters to ''The [[New York Times]]'' about political issues such as [[World War II]] and workers' rights.{{ref|BioProject2}} When he was a junior in high school, he accompanied his mother by bus to her therapist. The trip disturbed Ginsberg and he later described it, along with his relationship with his mother, in his long autobiographical poem ''[[Kaddish (poem)|''Kaddish for Naomi Ginsberg (1894-1956)]].''{{ref|Modern2}}
52278
52279 In 1943 Ginsberg graduated from high school and briefly attended [[Montclair State University]] before entering [[Columbia University]] on a scholarship from the [[Young Men's Hebrew Association]] of Paterson. ([[1949]])[http://www.nytimes.com/books/01/04/08/specials/ginsberg-obit.html]. In his freshman year he met fellow undergraduate [[Lucien Carr]], who introduced him to a number of future Beat writers including [[Jack Kerouac]], [[William S. Burroughs]], and [[John Clellon Holmes]]. Carr also introduced Ginsberg to [[Neal Cassady]], one of the many that Ginsberg loved. Kerouac later described the meeting between Ginsberg and Cassady in the first chapter of his 1957 novel ''[[On the Road]].''{{ref|Modern3}}
52280
52281 In [[1954]] Ginsberg met [[Peter Orlovsky]], a young man of 21 with whom he fell in love and who remained his life-long lover, and with whom he eventually shared his interest in Tibetan Buddhism. Later in his life, Ginsberg formed a bridge between the [[Beat_generation|Beat]] movement of the [[1950s]] and the [[hippies]] of the [[1960s]], befriending, among others, [[Timothy Leary]], [[Gregory Corso]], [[Bob Kaufman]], [[Herbert Huncke]], [[Rod McKuen]], and [[Bob Dylan]].
52282
52283 In 1965 Ginsberg was deported from Cuba for for publicaly protesting against Cuba's anti-marijuana stance and its penchant for throwing homosexuals in jail.
52284
52285 The Cubans sent him to Czechoslovakia, Where one week after being named the King of a May Day parade, Ginsberg was labeled an &quot;immoral menace&quot; by the Czech government and deported.
52286
52287 In 1982, he was featured on &quot;Ghetto Defendant&quot;, a song by [[The Clash]], on their album &quot;[[Combat Rock]]&quot;. Ginsberg died of cancer on [[April 5]], [[1997]].
52288
52289 ==Career==
52290
52291 Ginsberg's [[poetry]] was strongly influenced by [[modernism]], [[romanticism]], the beat and cadence of [[jazz]], and his [[Kagyu]] [[Buddhism|Buddhist]] practice and [[Jew]]ish background. He considered himself to have inherited the visionary and [[homoeroticism|homoerotic]] poetic mantle handed from the English poet and artist [[William Blake]] on to [[Walt Whitman]]. The power of Ginsberg's verse, its searching, probing focus, its long and lilting lines, as well as its New World exuberance, all echo the continuity of inspiration which he claimed. Other influences included the American poet [[William Carlos Williams]].
52292
52293 Ginsberg's principal work, &quot;[[Howl]]&quot;, is well-known to many for its opening line: &quot;I saw the best minds of my generation destroyed by madness&quot;. It was considered scandalous at the time of publication due to the rawness of the language, which is frequently explicit. Shortly after its [[1956]] publication by [[San Francisco]]'s [[City Lights Bookstore]], it was banned for obscenity. The ban became a [[cause cÊlèbre]] among defenders of the [[First Amendment]], and was later lifted after judge Clayton W. Horn declared the poem to possess redeeming social importance. Ginsberg's [[leftist]] and generally anti-establishment politics attracted the attention of the [[FBI]], who regarded Ginsberg as a major security threat. [[Image:Ginsberg.jpg|right|175px|thumb|Allen Ginsberg]]
52294
52295 Ginsberg's spiritual journey began early on with his reported spontaneous visions, and continued with an early trip to [[India]] and a chance encounter on a New York City street (they both tried to catch the same cab) with [[ChÃļgyam Trungpa]], Rinpoche, a [[Tibetan Buddhist]] meditation master of the [[Vajrayana]] school, who became his friend and life-long teacher. Ginsberg helped found the [[Jack Kerouac]] School of Disembodied Poetics at [[Naropa University]] in [[Boulder, Colorado]], a school founded by ChÃļgyam Trungpa, Rinpoche. Music and chanting were both important parts of his live delivery during poetry readings. He often accompanied himself on a handheld organ called a harmonium, and was often accompanied by a guitarist. Attendance to his poetry readings was generally standing room only for most of his career, no matter where in the world he appeared.
52296
52297 Ginsberg won the National Book Award for his book &quot;The Fall of America.&quot; In 1993, the French Minister of Culture awarded him with the medal of [[Chevalier des Arts et des Lettres]] (the Order of Arts and Letters).
52298
52299 In [[1994]], when the [[International Lesbian and Gay Association]] successfully banished all connections to the [[North American Man-Boy Love Association]] in order to gain consultative status in the United Nations, Ginsberg opposed (together with modern gay rights founder [[Harry Hay]]). He said that he supported NAMBLA's right to [[free speech]] because the hysteria over [[pederasty]] reminded him of the hysteria over homosexuality itself while he was growing up. While his poetry praised the love of youths, his interests lay mostly in young men above the age of consent.
52300
52301 ==Quotations==
52302
52303 * &quot;Our goal was to save the planet and alter human consciousness. That will take a long time, if it happens at all.&quot;
52304 * &quot;Poetry is not an expression of the party line. It's that time of night, lying in bed, thinking what you really think, making the private world public, that's what the poet does.&quot;
52305 * &quot;Pot is fun.&quot;
52306 * &quot;The only thing that can save the world is the reclaiming of the awareness of the world. That's what poetry does.&quot;
52307 * &quot;Master thyself and others will follow.&quot;
52308 * &quot;First thought, best thought.&quot; (referring to his, and other Beat writers' unique style of writing poetry)
52309 * &quot;The CIA and the Mafia are in cahoots&quot;
52310
52311 ==Bibliography==
52312
52313 * ''[[Howl|Howl and Other Poems]]'' ([[1956]])
52314 * ''[[Kaddish (poem)|Kaddish and Other Poems]]'' ([[1961]])
52315 * ''Reality Sandwiches'' ([[1963]])
52316 * ''[[The Yage Letters]]'' ([[1963]]) &amp;ndash; with [[William S. Burroughs]]
52317 * ''Planet News'' ([[1968]])
52318 * ''The Gates of Wrath: Rhymed Poems [[1948]]&amp;ndash;[[1951]]'' ([[1972]])
52319 * ''The Fall of America: Poems of These States'' ([[1973]])
52320 * ''Iron Horse'' ([[1972]])
52321 * ''Mind Breaths'' ([[1978]])
52322 * ''Plutonian Ode: Poems [[1977]]&amp;ndash;[[1980]]'' ([[1982]])
52323 * ''Collected Poems: [[1947]]&amp;ndash;[[1980]]'' ([[1984]])
52324 * ''White Shroud Poems: [[1980]]&amp;ndash;[[1985]]'' ([[1986]])
52325 * ''Cosmopolitan Greetings Poems: [[1986]]&amp;ndash;[[1993]]'' ([[1994]])
52326 * ''Howl Annotated'' ([[1995]])
52327 * ''Illuminated Poems'' ([[1996]])
52328 * ''Selected Poems: [[1947]]&amp;ndash;[[1995]]'' ([[1996]])
52329 * ''Death and Fame: Poems [[1993]]&amp;ndash;[[1997]]'' ([[1999]])
52330
52331 '''Further Reading'''
52332
52333 *Miles, Barry. ''Ginsberg: A Biography.'' London: Virgin Publishing Ltd. (2001), paperback, 628 pages, ISBN 0753504863
52334 *Schumacher, Michael (edt.). ''Family Business: Selected Letters Between a Father and Son.'' Bloomsbury (2002), paperback, 448 pages, ISBN 1582342164
52335 *Schumacher, Michael. ''[[Dharma Lion: A Biography of Allen Ginsberg]].'' New York: St. Martin's Press, 1994.
52336 *Bullough, Vern L. &quot;Before Stonewall: Activists for Gay and Lesbian Rights in Historical Context.&quot; Harrington Park Press, 2002. pp 304-311.
52337
52338 == Notes ==
52339 &lt;!-- Instructions for adding a footnote:
52340 NOTE: Footnotes in this article use names, not numbers. Please see [[Wikipedia:Footnote3]] for details.
52341 1) Assign your footnote a unique name, for example TheSun_Dec9.
52342 2) Add the macro {{ref|TheSun_Dec9}} to the body of the article, where you want the new footnote.
52343 3) Take note of the name of the footnote that immediately proceeds yours in the article body.
52344 4) Add #{{Note|TheSun_Dec9}} to the list, immediately below the footnote you noted in step3.
52345 5) Multiple footnotes to the same reference will not work: you must insert two uniquely named footnotes.
52346 NOTE: It is important to add the Footnote in the right order in the list.
52347 --&gt;
52348 &lt;div style=&quot;font-size: 90%&quot;&gt;
52349
52350 #{{note|Modern}} [http://www.english.uiuc.edu/maps/poets/g_l/ginsberg/life.htm &quot;Allen Ginsberg's Life&quot; by Ann Charters.] Modern American Poetry website. Accessed 10/20/05.
52351 #{{note|BioProject}} [http://www.popsubculture.com/pop/bio_project/allen_ginsberg.html Biographical Notes on Allen Ginsberg] by Bonesy Jones on the Biography Project. Accessed 10/20/05.
52352 #{{note|BioProject2}} Ibid.
52353 #{{note|Modern2}} [http://www.english.uiuc.edu/maps/poets/g_l/ginsberg/life.htm &quot;Allen Ginsberg's Life&quot; by Ann Charters.] Modern American Poetry website. Accessed 10/20/05.
52354 #{{note|Modern3}} Ibid.
52355
52356 &lt;!--READ ME!! PLEASE DO NOT JUST ADD NEW NOTES AT THE BOTTOM. See the instructions above on ordering. --&gt;
52357 &lt;/div&gt;
52358
52359 ==External links==
52360 {{wikiquote}}
52361 * [http://wiredforbooks.org/allenginsberg/ 1985 audio interview with Allen Ginsberg by Don Swaim of CBS Radio, RealAudio]
52362 *[http://www.poets.org/agins Allen Ginsberg on Poets.org] With audio clips, poems, and related essays, from the Academy of American Poets
52363 *[http://www.heureka.clara.net/art/ginsberg.htm Allen Ginsberg]
52364 *[http://www.levity.com/digaland/celestial &quot;Ginsberg's Celestial Homework&quot;]
52365 *[http://www.ginzy.com/ &quot;The clearing house for all things Ginsberg&quot;]
52366 *[http://www.lichtensteiger.de/ginsberg.html On Allen Ginsberg] by Ralph Lichtensteiger
52367 *[http://www.theatlantic.com/issues/66nov/hoax.htm &quot;The Great Marijuana Hoax &amp;ndash; Allen Ginsberg&quot;](the first half of which was written on marijuana)
52368 *[http://www.allenginsberg.org allenginsberg.org | MP3 files and much more]
52369 *[http://www.archive.org/audio/audio-details-db.php?collection=naropa&amp;collectionid=naropa_allen_ginsberg&amp;from=BA Naropa Audio Archives: Allen Ginsberg class (August 6th, 1976)] Streaming audio and 64 kbit/s MP3 ZIP
52370 *[http://www.archive.org/audio/audio-details-db.php?collection=naropa&amp;collectionid=naropa_anne_waldman_and_allen_ginsberg&amp;from=mostViewed Naropa Audio Archives: Anne Waldman and Allen Ginsberg reading, including Howl (August 9th, 1975)] Streaming audio and 64 kbit/s MP3 ZIP
52371 * [http://www.litkicks.com/BeatPages/page.jsp?what=AllenGinsberg Article on Allen Ginsberg @ Lit Kicks]
52372 *[http://www.cosmoetica.com/TOP102-DES99.htm Essay on Ginsberg’s In Back Of The Real]
52373 * [http://neonalley.org/ginsberg.html Blue Neon Alley &amp;ndash; Allen Ginsberg directory]
52374 * [http://www.spikemagazine.com/0198gins.php Spike Magazine Interview]
52375 *[http://www.levity.com/corduroy/ginsberg.htm Ginsberg's Memorial Page]
52376 *[http://supervert.com/essays/art/allen_ginsberg Review of exhibit featuring photographs by Ginsberg]
52377
52378 [[Category:1926 births|Ginsberg, Allen]]
52379 [[Category:1997 deaths|Ginsberg, Allen]]
52380 [[Category:Allen Ginsberg|*Allen Ginsberg]]
52381 [[Category:American poets|Ginsberg, Allen]]
52382 [[Category:American anarchists|Ginsberg, Allen]]
52383 [[Category:Anti-war people|Ginsberg, Allen]]
52384 [[Category:Beat Generation|Ginsberg, Allen]]
52385 [[Category:Beat writers|Ginsberg, Allen]]
52386 [[Category:Buddhists|Ginsberg, Allen]]
52387 [[Category:Columbia alumni|Ginsberg, Allen]]
52388 [[Category:Gay writers|Ginsberg, Allen]]
52389 [[Category:Greenwich Village Scene|Ginsberg, Allen]]
52390 [[Category:Jewish American writers|Ginsberg, Allen]]
52391 [[Category:Jewish anarchists|Ginsberg, Allen]]
52392 [[Category:Pederasty|Ginsberg, Allen]]
52393 [[Category:People from New Jersey|Ginsberg, Allen]]
52394 [[Category:Tax resisters|Ginsberg, Allen]]
52395 [[Category:American communists|Ginsberg, Allen]]
52396
52397 [[bg:АĐģŅŠĐŊ ГиĐŊŅĐąŅŠŅ€Đŗ]]
52398 [[cs:Allen Ginsberg]]
52399 [[de:Allen Ginsberg]]
52400 [[el:ΆÎģÎģÎĩÎŊ ΓÎēίÎŊĪƒÎŧĪ€ÎĩĪÎŗÎē]]
52401 [[es:Allen Ginsberg]]
52402 [[eo:Allen GINSBERG]]
52403 [[fr:Allen Ginsberg]]
52404 [[it:Allen Ginsberg]]
52405 [[he:אלן גינסברג]]
52406 [[nl:Allen Ginsberg]]
52407 [[ja:ã‚ĸãƒŦãƒŗãƒģã‚Žãƒŗã‚ēバãƒŧグ]]
52408 [[pl:Allen Ginsberg]]
52409 [[fi:Allen Ginsberg]]
52410 [[sv:Allen Ginsberg]]</text>
52411 </revision>
52412 </page>
52413 <page>
52414 <title>Algebraically closed field</title>
52415 <id>1018</id>
52416 <revision>
52417 <id>38168661</id>
52418 <timestamp>2006-02-04T17:48:13Z</timestamp>
52419 <contributor>
52420 <username>MathMartin</username>
52421 <id>29707</id>
52422 </contributor>
52423 <minor />
52424 <comment>links</comment>
52425 <text xml:space="preserve">In [[mathematics]], a [[field (mathematics)|field]] &lt;math&gt;F&lt;/math&gt; is said to be '''algebraically closed''' if every [[polynomial]] in one variable of degree at least &lt;math&gt;1&lt;/math&gt;, with [[coefficient]]s in &lt;math&gt;F&lt;/math&gt;, has a [[root (mathematics)|zero]] ([[root (mathematics)|root]]) in &lt;math&gt;F&lt;/math&gt;.
52426
52427 As an example, the field of [[real number]]s is not algebraically closed, because the polynomial equation
52428
52429 :&lt;math&gt;3x^2+1=0&lt;/math&gt;
52430
52431 has no solution in real numbers, even though both of its coefficients (&lt;math&gt;3&lt;/math&gt; and &lt;math&gt;1&lt;/math&gt;) are real. The same argument proves that the field of [[rational number]]s is not algebraically closed. Also, no [[finite field]] &lt;math&gt;F&lt;/math&gt; is algebraically closed, because if &lt;math&gt;a_1&lt;/math&gt;, &lt;math&gt;a_2&lt;/math&gt;, &amp;hellip;, &lt;math&gt;a_n&lt;/math&gt; are the elements of &lt;math&gt;F&lt;/math&gt;, then the polynomial
52432
52433 :&lt;math&gt;(x-a_1)(x-a_2)&lt;/math&gt;&amp;nbsp;&amp;middot;&amp;middot;&amp;middot;&amp;nbsp;&lt;math&gt;(x-a_n)+1&lt;/math&gt;
52434
52435 has no zero in &lt;math&gt;F&lt;/math&gt;. By contrast, the field of [[complex number]]s is algebraically closed: this is stated by the [[fundamental theorem of algebra]]. Another example of an algebraically closed field is the field of [[algebraic number]]s.
52436
52437 Given a field &lt;math&gt;F&lt;/math&gt;, the assertion &amp;ldquo;&lt;math&gt;F&lt;/math&gt; is algebraically closed&amp;rdquo; is equivalent to each one of the following:
52438
52439 * Every polynomial &lt;math&gt;p(x)&lt;/math&gt; of degree &lt;math&gt;n&lt;/math&gt;&amp;nbsp;&amp;ge;&amp;nbsp;&lt;math&gt;1&lt;/math&gt;, with [[coefficient]]s in &lt;math&gt;F&lt;/math&gt;, [[Factorization|splits into linear factors]]. In other words, there are elements &lt;math&gt;k&lt;/math&gt;,&amp;nbsp;&lt;math&gt;x_1&lt;/math&gt;,&amp;nbsp;&lt;math&gt;x_2&lt;/math&gt;,&amp;nbsp;&amp;hellip;,&amp;nbsp;&lt;math&gt;x_n&lt;/math&gt; in &lt;math&gt;F&lt;/math&gt; such that
52440 ::&lt;math&gt;p(x)=k(x-x_1)(x-x_2)&lt;/math&gt;&amp;nbsp;&amp;middot;&amp;middot;&amp;middot;&amp;nbsp;&lt;math&gt;(x-x_n)&lt;/math&gt;.
52441
52442 * The field &lt;math&gt;F&lt;/math&gt; has no proper [[algebraic extension]].
52443
52444 * For each natural number &lt;math&gt;n&lt;/math&gt;, every [[Linear map|linear map]] from &lt;math&gt;F^n&lt;/math&gt; into itself has some [[Eigenvector|eigenvector]].
52445
52446 * Every [[Rational function|rational function]] in one variable &lt;math&gt;x&lt;/math&gt;, with coefficients in &lt;math&gt;F&lt;/math&gt;, can be written as the sum of a polynomial function with rational functions of the form &lt;math&gt;a/(x-b)^n&lt;/math&gt;, where &lt;math&gt;n&lt;/math&gt; is a natural number, and &lt;math&gt;a&lt;/math&gt; and &lt;math&gt;b&lt;/math&gt; are elements of &lt;math&gt;F&lt;/math&gt;.
52447
52448 If &lt;math&gt;F&lt;/math&gt; is an algebraically closed field, &lt;math&gt;a&lt;/math&gt; is an element of &lt;math&gt;F&lt;/math&gt;, and &lt;math&gt;n&lt;/math&gt; is a natural number, then &lt;math&gt;a&lt;/math&gt; has an &lt;math&gt;n&lt;/math&gt;&lt;sup&gt;th&lt;/sup&gt; root in &lt;math&gt;F&lt;/math&gt;, since this is the same thing as saying that the equation &lt;math&gt;x^n-a=0&lt;/math&gt; has some root in &lt;math&gt;F&lt;/math&gt;. However, there are fields in which every element has an &lt;math&gt;n&lt;/math&gt;&lt;sup&gt;th&lt;/sup&gt; root (for each natural number &lt;math&gt;n&lt;/math&gt;) but which are not algebraically closed. In fact, even assuming that every polynomial of the form &lt;math&gt;x^n-a&lt;/math&gt; splits into linear factors is not enough to assure that the field is algebraically closed.
52449
52450 Every field &lt;math&gt;F&lt;/math&gt; has an &quot;[[algebraic closure]]&quot;, which is the smallest algebraically closed field of which &lt;math&gt;F&lt;/math&gt; is a subfield.
52451
52452 ==References==
52453
52454 * [[S. Lang]], ''Algebra'', Springer-Verlag, 2004, ISBN 0-387-95385-X
52455
52456 * [[B. L. van der Waerden]], ''Algebra I'', Springer-Verlag, 1991, ISBN 0-387-97424-5
52457
52458 [[Category:Abstract algebra]]
52459
52460 [[de:Algebraisch abgeschlossen]]
52461 [[es:Cuerpo algebraicamente cerrado]]
52462 [[fr:Corps algÊbriquement clos]]
52463 [[it:Campo algebricamente chiuso]]
52464 [[pt:Corpo algebricamente fechado]]
52465 [[ru:&amp;#1040;&amp;#1083;&amp;#1075;&amp;#1077;&amp;#1073;&amp;#1088;&amp;#1072;&amp;#1080;&amp;#1095;&amp;#1077;&amp;#1089;&amp;#1082;&amp;#1080; &amp;#1079;&amp;#1072;&amp;#1084;&amp;#1082;&amp;#1085;&amp;#1091;&amp;#1090;&amp;#1086;&amp;#1077; &amp;#1087;&amp;#1086;&amp;#1083;&amp;#1077;]]</text>
52466 </revision>
52467 </page>
52468 <page>
52469 <title>August 6</title>
52470 <id>1019</id>
52471 <restrictions>move=:edit=</restrictions>
52472 <revision>
52473 <id>41533070</id>
52474 <timestamp>2006-02-28T00:05:55Z</timestamp>
52475 <contributor>
52476 <username>Gaius Cornelius</username>
52477 <id>293907</id>
52478 </contributor>
52479 <minor />
52480 <comment>Common typographical error 'battle of battle of'. See [[WP:LCM]].</comment>
52481 <text xml:space="preserve">{| style=&quot;float:right;&quot;
52482 |-
52483 |{{AugustCalendar}}
52484 |-
52485 |{{ThisDateInRecentYears|Month=August|Day=6}}
52486 |}
52487 '''August 6''' is the 218th day of the year in the [[Gregorian Calendar]] (219th in [[leap year]]s), with 147 days remaining.
52488
52489 ==Events==
52490 *[[1538]] - [[Bogota, Colombia|Bogota]], [[Colombia]] founded by [[Gonzalo Jimenez de Quesada]].
52491 *[[1806]] - [[Francis II, Holy Roman Emperor|Francis II]], the last Holy Roman Emperor, abdicates, thus ending the [[Holy Roman Empire]].
52492 *[[1819]] - [[Norwich University]] founded in [[Vermont]] as the first private military school in the [[United States]].
52493 *[[1825]] - [[Bolivia]] gains independence from [[Spain]].
52494 *[[1861]] - [[United Kingdom|British]] annexation of [[Lagos]], [[Nigeria]].
52495 *[[1862]] - [[American Civil War]]: The [[Confederate States of America|Confederate]] ironclad [[CSS Arkansas|CSS ''Arkansas'']] is scuttled on the [[Mississippi River]] after suffering damage in a battle with [[USS Essex (1856)|USS ''Essex'']] near [[Baton Rouge, Louisiana]].
52496 *[[1890]] - At [[Auburn Prison]] in [[New York]], the first [[execution (legal)|execution]] by [[electric chair]] is performed, with murderer [[William Kemmler]] as the subject.
52497 *[[1901]] - [[Kiowa]] land in [[Oklahoma]] is opened for white settlement, effectively dissolving the contiguous [[Indian reservation|reservation]].
52498 *[[1914]] - Ten [[Germany|German]] [[U-boats]] leave their base in [[Heligoland]] to attack [[Royal Navy]] warships in the [[North Sea]], beginning the [[First Battle of the Atlantic]].
52499 *[[1915]] - [[World War I]]: The [[Battle of Sari Bair]] begins - The [[Allies]] mount a diversionary attack timed to coincide with a major Allied landing of reinforcements at [[Suvla Bay]].
52500 *[[1926]] - [[Gertrude Ederle]] becomes first woman to swim across the [[English Channel]].
52501 *1926 - In [[New York]], the [[Warner Brothers]]' [[Vitaphone]] system premieres with the movie ''[[Don Juan (movie)|Don Juan]]'' starring [[John Barrymore]].
52502 *[[1945]] - [[World War II]]: the [[Atomic bombing of Hiroshima]]. An [[atomic bomb]] codenamed ''[[Little Boy]]'' is dropped by the American [[B-29]] [[Enola Gay]] on the city of [[Hiroshima]] in [[Japan]] at 8:16 a.m., killing 80,000 outright with another 60,000 dead by the end of the year due to [[Nuclear fallout|fallout]] sickness. Ultimately, about 200,000 die due to the atomic bomb.
52503 *[[1960]] - [[Cuban Revolution]]: In response to a [[United States]] embargo, [[Cuba]] nationalizes American and foreign-owned property in the nation.
52504 *[[1962]] - [[Jamaica]] becomes independent.
52505 *[[1965]] - [[President of the United States|US President]] [[Lyndon B. Johnson]] signs the [[Voting Rights Act of 1965]] into [[United States law]].
52506 *[[1984]] - [[Pop music|Pop]] star [[Prince (artist)|Prince]] releases ''[[Purple Rain (album)|Purple Rain]]'', the album which would launch him to superstardom.
52507 *[[1986]] - A low-pressure system that redeveloped off the [[New South Wales]] coast dumps a record 328 millimetres (13 inches) of rain in a day on [[Sydney]].
52508 *[[1988]] - &quot;[[Police riot]]&quot; in [[New York City]]'s [[Tompkins Square Park]]
52509 *[[1990]] - [[Gulf War]]: The [[United Nations Security Council]] orders a global [[trade embargo]] against [[Iraq]] in response to Iraq's invasion of [[Kuwait]]
52510 *[[1991]] - [[Tim Berners-Lee]] releases files describing his idea for the [[World Wide Web]].
52511 *1991 - [[Doi Takako]], chair of the [[Social Democratic Party (Japan)]], becomes [[Japan|Japan's]] first female speaker of the [[House of Representatives of Japan|House of Representatives]].
52512 *[[1993]] - [[Louis Freeh]] is confirmed by the [[United States Senate]] to be the director of the [[Federal Bureau of Investigation]]
52513 *1993 - ''[[The Fugitive (1993 film)|The Fugitive]]'' opens in theaters, starring [[Harrison Ford]] and [[Tommy Lee Jones]].
52514 *[[1996]] - [[NASA]] announces that the [[ALH 84001]] meteorite, thought to originate from [[Mars (planet)|Mars]], contains evidence of primitive life-forms.
52515 *[[1997]] - [[Microsoft]] buys $150 million worth of shares of financially troubled [[Apple Computer]].
52516 *1997 - [[Korean Air Flight 801]], a [[Boeing 747]]-300, crashes into the jungle on [[Guam]] on approach to airport, killing 228.
52517 *[[2000]] - The [[Roman Catholic Church]]'s [[Congregation for the Doctrine of the Faith]], under Prefect [[Pope Benedict XVI|Joseph Cardinal Ratzinger]], publishes ''[[Dominus Iesus]]'', notable for its lack of the [[filioque clause]] in the [[Latin]] text of the [[Nicene Creed]].
52518 *[[2001]] - White House briefing entitled [[Bin Laden Determined to Strike in U.S.]] delivered to [[George W. Bush]]. This document foreshadowed the [[September 11, 2001 attacks]].
52519 *[[2002]] - [[Marquis de la Fayette]] is made [[Honorary Citizen of the United States]]
52520 *2002 - [[Manindra Agrawal|Manindra Agrawal et al]] prove the long standing [[AKS primality test|number theory conjecture]] in the article entitled &quot;Primes in P&quot;.
52521
52522 ==Births==
52523 *[[1180]] - [[Emperor Go-Toba]] of Japan (d. [[1239]])
52524 *[[1504]] - [[Matthew Parker]], [[Archbishop of Canterbury]] (d. [[1575]])
52525 *[[1619]] - [[Barbara Strozzi]], Italian singer and composer (d. [[1677]])
52526 *[[1638]] - [[Nicolas Malebranche]], French philosopher (d. [[1715]])
52527 *[[1644]] - [[Louise de la Vallière]], French mistress of [[Louis XIV of France]] (d. [[1710]])
52528 *[[1656]] - [[Claude de Forbin]], French naval commander (d. [[1733]])
52529 *[[1697]] - [[Charles VII, Holy Roman Emperor]] (d. [[1745]])
52530 *[[1715]] - [[Luc de Clapiers, marquis de Vauvenargues]], French writer (d. [[1747]])
52531 *[[1766]] - [[William Hyde Wollaston]], English chemist (d. [[1828]])
52532 *[[1768]] - [[Jean-Baptiste Bessières]], French marshal (d. [[1813]])
52533 *[[1809]] - [[Alfred Lord Tennyson]], English poet (d. [[1892]])
52534 *[[1844]] - [[James Henry Greathead]], British engineer (d. [[1896]])
52535 *1844 - [[Alfred, Duke of Saxe-Coburg and Gotha]] (d. [[1900]])
52536 *[[1868]] - [[Paul Claudel]], French poet (d. [[1955]])
52537 *[[1874]] - [[Charles Fort]], American writer and researcher (d. [[1932]])
52538 *[[1877]] - [[Wallace H. White, Jr.]], U.S. Senator from Maine (d. [[1952]])
52539 *[[1880]] - [[Hans Moser (actor)]], Austrian actor (d. [[1964]])
52540 *[[1881]] - [[Leo Carrillo]], American actor (d. [[1961]])
52541 *1881 - [[Alexander Fleming]], Scottish scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1955]])
52542 *1881 - [[Louella Parsons]], American gossip columnist (d. [[1972]])
52543 *[[1889]] - [[John Middleton Murry]], English poet (d. [[1957]])
52544 *[[1892]] - [[Hoot Gibson]], American actor (d. [[1962]])
52545 *[[1893]] - [[Wright Patman]], American politician (d. [[1976]])
52546 *[[1900]] - [[Cecil H. Green]], American geophysicist and businessman (d.[[2003]])
52547 *[[1902]] - [[Dutch Schultz]], American bootlegger and gangster (d. [[1935]])
52548 *[[1911]] - [[Lucille Ball]], American actress and comedian (d. [[1989]])
52549 *[[1916]] - [[Richard Hofstadter]], American historian (d. [[1970]])
52550 *[[1917]] - [[Robert Mitchum]], American actor (d. [[1997]])
52551 *[[1922]] - Sir [[Freddie Laker]], English entrepreneur
52552 *[[1923]] - [[Jess Collins]], American artist (d. [[2004]])
52553 *[[1928]] - [[Andy Warhol]], American artist (d. [[1987]])
52554 *[[1932]] - [[Howard Hodgkin]], British painter and print-maker
52555 *[[1934]] - [[Piers Anthony]], English writer
52556 *[[1937]] - [[Barbara Windsor]], English actress
52557 *[[1938]] - [[Paul Bartel]], American actor, writer, and director (d. [[2000]])
52558 *[[1941]] - [[Lyle Berman]], American poker player
52559 *[[1943]] - [[Jon Postel]], Computer Scientist
52560 *[[1946]] - [[Roh Moo-hyun]], [[President of South Korea]]
52561 *1946 - [[Masaaki Sakai]], Japanese comedian
52562 *[[1949]] - [[Alan Campbell (pastor)|Alan Campbell]], Northern Irish clergyman
52563 *1949 - [[Clarence Richard Silva]], Catholic Bishop of Honolulu
52564 *[[1951]] - [[Daryl Somers]], Australian television personality
52565 *[[1957]] - [[Jim McGreevey]], Governor of New Jersey
52566 *[[1962]] - [[Michelle Yeoh]], Hong Kong actress
52567 *[[1963]] - [[Kevin Mitnick]], computer hacker
52568 *[[1965]] - [[Yuki Kajiura]], Japanese composer
52569 *[[1969]] - [[Elliott Smith]], American musician (d. [[2003]])
52570 *[[1970]] - [[M. Night Shyamalan]], Indian-born film director, writer, producer, and actor
52571 *[[1971]] - [[Merrin Dungey]], American actress
52572 *[[1972]] - [[Geri Halliwell]], British singer
52573 *[[1973]] - [[Asia Carrera]], American actress
52574 *[[1976]] - [[Melissa George]], Australian actress
52575 *[[1978]] - [[Billy Klippert]], Canadian singer
52576 *[[1979]] - Steven McCrory, IP Solutions Specialist
52577 *[[1982]] - [[Adrianne Curry]], American reality television
52578 *[[1983]] - [[Robin van Persie]], Dutch football player
52579 *[[1990]] - [[JonBenÊt Ramsey]], American beauty queen and murder victim (d. [[1996]])
52580 &lt;!--Do not add yourself, or anyone else that does not already have a Wikipedia article, to this list.--&gt;
52581
52582 ==Deaths==
52583 *[[258]] - Saint [[Pope Sixtus II]]
52584 *[[523]] - Saint [[Pope Hormisdas]]
52585 *[[1162]] - [[Ramon Berenguer IV, Count of Barcelona]]
52586 *[[1195]] - [[Henry the Lion]], Duke of Saxony and Bavaria (b. [[1129]])
52587 *[[1221]] - Saint [[Dominic de Guzman|Dominic]], Spanish founder of the Dominicans (b. [[1170]])
52588 *[[1272]] - King [[Stephen V of Hungary]]
52589 *[[1414]] - King [[Ladislas of Naples]] (b. [[1377]])
52590 *[[1458]] - [[Pope Callixtus III]] (b. [[1378]])
52591 *[[1623]] - [[Anne Hathaway (Shakespeare's wife)]] (b. [[1556]])
52592 *[[1628]] - [[Johannes Junius]], Mayor of Bamberg (b. [[1573]])
52593 *[[1637]] - [[Ben Jonson]], English writer (b. [[1572]])
52594 *[[1645]] - [[Lionel Cranfield, 1st Earl of Middlesex]], English merchant (b. [[1575]])
52595 *[[1660]] - [[Diego VelÃĄzquez]], Spanish painter (b. [[1599]])
52596 *[[1679]] - [[John Snell]], English royalist (b. [[1629]])
52597 *[[1695]] - [[François de Harlay de Champvallon]], French Catholic archbishop (b. [[1625]])
52598 *[[1753]] - [[Georg Wilhelm Richmann]], Russian physicist (struck by lightning) (b. [[1711]])
52599 *[[1759]] - [[Eugene Aram]], English philologist (b. [[1704]])
52600 *[[1794]] - [[Henry Bathurst, 2nd Earl Bathurst]], British politician (b. [[1714]])
52601 *[[1850]] - [[Edward Walsh]], Irish poet (b. [[1805]])
52602 *[[1866]] - [[John Mason Neale]], English divine, scholar and hymnwriter (b. [[1818]])
52603 *[[1904]] - [[Eduard Hanslick]], Austrian music critic (b. [[1825]])
52604 *[[1914]] - [[Ellen Louise Wilson]], [[First Lady of the United States]], first wife of President [[Woodrow Wilson]] (b. [[1860]])
52605 *[[1931]] - [[Bix Beiderbecke]], American musician (b. [[1903]])
52606 *[[1942]] - [[Jonathan Campbell]], American film pioneer (b. [[1875]])
52607 *[[1945]] - [[Wu, Prince of Korea|Prince Wu of Korea]] (b. [[1912]])
52608 *[[1946]] - [[Tony Lazzeri]], baseball player (b. [[1903]])
52609 *[[1959]] - [[Preston Sturges]], American playwright, screenwriter, and director (b. [[1898]])
52610 *[[1964]] - Sir [[Cedric Hardwicke]], English actor (b. [[1893]])
52611 *[[1966]] - [[Cordwainer Smith]], American writer (b. [[1913]])
52612 *[[1969]] - [[Theodor Adorno]], German sociologist and philosopher (b. [[1903]])
52613 *[[1973]] - [[Fulgencio Batista]], Cuban dictator (b. [[1901]])
52614 *[[1974]] - [[Gene Ammons]], American jazz saxophonist (b. [[1925]])
52615 *[[1976]] - [[Gregor Piatigorsky]], Russian cellist (b. [[1903]])
52616 *[[1978]] - [[Pope Paul VI]] (b. [[1897]])
52617 *[[1979]] - [[Feodor Felix Konrad Lynen]], German biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1911]])
52618 *[[1983]] - [[Klaus Nomi]], German singer (b. [[1944]])
52619 *[[1985]] - [[Forbes Burnham]], [[President of Guyana]] (b. [[1923]])
52620 *[[1987]] - [[Quinn Martin]], American television producer (b. [[1922]])
52621 *[[1991]] - [[Harry Reasoner]], American reporter (b. [[1923]])
52622 *[[1993]] - [[Tex Hughson]], baseball player (b. [[1916]])
52623 *[[1994]] - [[Domenico Modugno]], Italian singer and songwriter (b. [[1928]])
52624 *[[1998]] - [[Andre Weil]], French mathematician (b. [[1906]])
52625 *[[2001]] - [[Jorge Amado]] de Faria, Brazilian writer (b. [[1912]])
52626 *[[2002]] - [[Edsger Dijkstra]], Dutch computer scientist (b. [[1930]])
52627 *[[2004]] - [[Rick James]], American musician (b. [[1948]])
52628 *[[2005]] - [[Keter Betts]], American jazz bassist (b. [[1928]])
52629 *2005 - [[Robin Cook]], British politician (b. [[1946]])
52630 *2005 - [[Ibrahim Ferrer]], Cuban musician ([[Buena Vista Social Club]]) (b. [[1927]])
52631
52632 ==Holidays and observances==
52633 *[[Christianity]] - Feast of the [[Transfiguration of Christ]]
52634 *[[Bolivia]] - Independence Day
52635 *[[Jamaica]] - Independence Day
52636 *[[United Arab Emirates]] - H.H. Sheikh [[Zayed Bin Sultan Al Nahyan]]'s Accession Day
52637 *[[Japan]] - [[Toro Nagashi]] (Hiroshima) - Floating lantern ceremony to honor those killed by the U.S. atomic bomb in Hiroshima.
52638
52639 ==External links==
52640 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/6 BBC: On This Day]
52641 * [http://www.nytimes.com/learning/general/onthisday/20050806.html ''The New York Times'': On This Day]
52642
52643 ----
52644
52645 [[August 5]] - [[August 7]] - [[July 6]] - [[September 6]] -- [[historical anniversaries|listing of all days]]
52646
52647 {{months}}
52648
52649 [[af:6 Augustus]]
52650 [[ar:6 ØŖØēØŗØˇØŗ]]
52651 [[an:6 d'agosto]]
52652 [[ast:6 d'agostu]]
52653 [[bg:6 авĐŗŅƒŅŅ‚]]
52654 [[be:6 ĐļĐŊŅ–ŅžĐŊŅ]]
52655 [[bs:6. avgust]]
52656 [[ca:6 d'agost]]
52657 [[ceb:Agosto 6]]
52658 [[cv:ÇŅƒŅ€ĐģĐ°, 6]]
52659 [[co:6 d'aostu]]
52660 [[cs:6. srpen]]
52661 [[cy:6 Awst]]
52662 [[da:6. august]]
52663 [[de:6. August]]
52664 [[et:6. august]]
52665 [[el:6 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
52666 [[es:6 de agosto]]
52667 [[eo:6-a de aÅ­gusto]]
52668 [[eu:Abuztuaren 6]]
52669 [[fo:6. august]]
52670 [[fr:6 aoÃģt]]
52671 [[fy:6 augustus]]
52672 [[ga:6 LÃēnasa]]
52673 [[gl:6 de agosto]]
52674 [[ko:8ė›” 6ėŧ]]
52675 [[hr:6. kolovoza]]
52676 [[io:6 di agosto]]
52677 [[ilo:Agosto 6]]
52678 [[id:6 Agustus]]
52679 [[ia:6 de augusto]]
52680 [[ie:6 august]]
52681 [[is:6. ÃĄgÃēst]]
52682 [[it:6 agosto]]
52683 [[he:6 באוגוסט]]
52684 [[jv:6 Agustus]]
52685 [[ka:6 აგვისáƒĸო]]
52686 [[csb:6 zÊlnika]]
52687 [[ku:6'ÃĒ gelawÃĒjÃĒ]]
52688 [[lt:RugpjÅĢčio 6]]
52689 [[lb:6. August]]
52690 [[li:6 augustus]]
52691 [[hu:Augusztus 6]]
52692 [[mk:6 авĐŗŅƒŅŅ‚]]
52693 [[ms:6 Ogos]]
52694 [[nap:6 'e aÚsto]]
52695 [[nl:6 augustus]]
52696 [[ja:8月6æ—Ĩ]]
52697 [[no:6. august]]
52698 [[nn:6. august]]
52699 [[oc:6 d'agost]]
52700 [[pl:6 sierpnia]]
52701 [[pt:6 de Agosto]]
52702 [[ro:6 august]]
52703 [[ru:6 авĐŗŅƒŅŅ‚Đ°]]
52704 [[sco:6 August]]
52705 [[sq:6 Gusht]]
52706 [[scn:6 di austu]]
52707 [[simple:August 6]]
52708 [[sk:6. august]]
52709 [[sl:6. avgust]]
52710 [[sr:6. авĐŗŅƒŅŅ‚]]
52711 [[fi:6. elokuuta]]
52712 [[sv:6 augusti]]
52713 [[tl:Agosto 6]]
52714 [[tt:6. August]]
52715 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 6]]
52716 [[th:6 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
52717 [[vi:6 thÃĄng 8]]
52718 [[tr:6 Ağustos]]
52719 [[uk:6 ŅĐĩŅ€ĐŋĐŊŅ]]
52720 [[wa:6 d' awousse]]
52721 [[war:Agosto 6]]
52722 [[zh:8月6æ—Ĩ]]
52723 [[pam:Agostu 6]]</text>
52724 </revision>
52725 </page>
52726 <page>
52727 <title>Anatoly Karpov</title>
52728 <id>1020</id>
52729 <revision>
52730 <id>41905623</id>
52731 <timestamp>2006-03-02T14:46:12Z</timestamp>
52732 <contributor>
52733 <username>Ryan Delaney</username>
52734 <id>97276</id>
52735 </contributor>
52736 <comment>/* Style */ rm original research</comment>
52737 <text xml:space="preserve">[[Image:Anatoly Karpov.jpg|thumb|right|Anatoly Karpov]]
52738 '''Anatoli Yevgenyevich Karpov''' (АĐŊĐ°Ņ‚ĐžĖĐģиК ЕвĐŗĐĩĖĐŊŅŒĐĩвиŅ‡ КаĖŅ€ĐŋОв) (born [[May 23]], [[1951]]) is a [[Russia]]n [[chess]] [[International Grandmaster|grandmaster]] and former [[World Chess Championship|World Champion]]. He is the most successful tournament player of all time, and as of July 2005 he has 161 first-place finishes to his credit. From 1978 to 1998 he played in every [[FIDE]] World Championship match. His overall professional record is 1,118 wins, 287 losses, and 1,480 draws in 3,163 games. His peak [[ELO rating system|ELO rating]] is 2780.
52739
52740 ==Grandmaster==
52741
52742 Karpov was born on May 23, 1951 in [[Zlatoust]] in the former [[Soviet Union]] and learned to play chess at the age of 4. At age 12 he was accepted into [[Mikhail Botvinnik]]'s prestigious chess school. Ironically, Botvinnik had this to say about a young Karpov: &quot;The boy doesn't have a clue about chess, and there's no future at all for him in this profession.&quot;{{fact}} Karpov proved him wrong by becoming the youngest [[Soviet Union|Soviet]] National Master in history at 15, and won in his first international chess tournament several months later. In 1967 he took 5th in the [[Soviet Junior Chess Championship]] and won the [[European Junior Chess Championship]] later that same year. In 1969 he became the first Soviet player since [[Boris Spassky]] (1955) to win the [[World Junior Chess Championship]] with a score of 10 out of 11. Soon afterwards he tied for 4th place at an international tournament in [[Caracas, Venezuela]] and became the world's youngest [[International Grandmaster|Grandmaster]].
52743
52744 ==Candidate==
52745
52746 The 1970s showed a major improvement in his game. His [[ELO rating system|ELO rating]] shot up from 2540 in 1971 to 2660 in 1973, when he came in 2nd in the [[USSR Chess Championship]] and placed first in the [[Saint Petersburg|Leningrad]] [[Interzonal]] Tournament. The latter qualified him for the 1974 Candidates cycle, which determined who was allowed to challenge the reigning World Champion, [[Bobby Fischer]].
52747
52748 Karpov beat [[Lev Polugaevsky]] by +3=5 in the first Candidates match to face former World Champion [[Boris Spassky]] in the next round. Karpov was on record saying that he believed Spassky would easily beat him and win the Candidates cycle to face Fischer, and that he (Karpov) would win the following Candidates cycle in 1977.
52749
52750 Most expected the Spassky-Karpov match to be a one-sided rout by the ex-champ Spassky. Although Spassky won the first game as black in good style, tenacious and aggressive play from Karpov secured him a win +4-1=6. Karpov was certainly not hurt by the fact that Spassky's chief opening analyst, 1955 [[USSR Chess Championship|Soviet Champion]] [[Efim Geller]], defected to Karpov's side several months before the match.
52751
52752 The Candidates final was against fellow Russian [[Viktor Korchnoi]], a notable fighting player. Intense games were fought, including one &quot;opening laboratory&quot; win against the [[Sicilian Defense|Sicilian Dragon]]. Karpov went 3&amp;ndash;0 up but tired towards the end and allowed Korchnoi two wins, but Karpov prevailed +3-2=19. Thus he won the right to challenge Fischer for the World Championship.
52753
52754 Though the world championship match between the young Soviet prodigy and the incomparably dominant American Fischer was highly anticipated, the match never came about. Fischer drew up a list of ten demands, chief among them the provisions that draws wouldn't count, the first to ten victories wins, and if the score was tied 9&amp;ndash;9 the champion would retain the crown. This means that candidate needed two wins more than the reigning champion because narrowest possible win for him is 10&amp;ndash;8. The [[FÊdÊration Internationale des Échecs|International Chess Federation]] (FIDE) flatly refused at first, but eventually conceded the first two. However, Fischer demanded all or nothing, and when FIDE refused to give into the third demand, Fischer resigned his crown, to the huge disappointment of the chess world. Karpov later attempted to set up another match with Fischer, but all the negotiations fell through. Fischer never did play Karpov (or [[Garry Kasparov|Kasparov]], for that matter) and scorned them as inferior players. This thrust the young Karpov into the role of World Champion without defeating the reigning champion, which lead some chess pundits to accuse Karpov of being a &quot;paper world champion&quot;&amp;mdash;that he had earned the title in a ceremony, but not over a chessboard.
52755
52756 When Kasparov was in a bitter struggle for the world championship with Karpov, he often reminded others that Karpov won the title by default. But while preparing a monumental book series ''Kasparov: On My Great Predecessors'', Kasparov argued that Karpov would have had the better chances, because he had beaten Spassky convincingly and was a new breed of tough professional, and indeed had higher quality games, while Fischer had been inactive for three years. Critics argue that Kasparov was trying to boost his own prestige by boosting that of the man he defeated. Spassky thought that Fischer would have won in 1975 but Karpov would have qualified again and beaten Fischer in 1978{{fact}}. [[Zsuzsa Polgar]] thinks Fischer would have won very narrowly in 1975 due to his greater experience.[http://www.chesscafe.com/text/polgar26.pdf]
52757
52758 ==World champion==
52759
52760 Shamed that he had become the twelfth world champion in this manner, and desperately trying to prove he was worthy of the crown, Karpov participated in nearly every major tournament for the next ten years. He created the most phenomenal streak of tournament wins against the strongest players in the world the chess world had ever seen. This tournament success even eclipsed the pre-war tournament record of [[Alexander Alekhine]]. He held the record for most consecutive tournament victories (9) until it was shattered by [[Garry Kasparov]] (14).
52761
52762 In 1978, Karpov's first title defence was against Viktor Korchnoi, the opponent he defeated in the previous Candidates tournament. The situation was vastly different from the previous match, because in the intervening years Korchnoi had defected from the Soviet Union. The match was played in [[Baguio]] in the [[Philippines]], and a vast array of psychological tricks were used during the match, from Karpov's Dr. Zukhar who attempted to hypnotize Korchnoi during the game, to Korchnoi's mirror glasses to ward off the hypnotic stare, Korchnoi's offering to play under the [[Jolly Roger]] flag when he was denied the right to play under [[Switzerland]]'s, to Karpov's yogurt supposedly being used to send him secret messages, to Korchnoi inviting two local cult members (on trial for [[attempted murder]]) into the hall as members of his team.
52763
52764 The off-board antics are better remembered than the actual chess match. Karpov took an early lead, but Korchnoi staged an amazing comeback very late in the match, and came very close to winning. Karpov narrowly won the last game to take the match 6&amp;ndash;5, with 21 draws.
52765
52766 Three years later Korchnoi re-emerged as the Candidates winner against [[Germany|German]] finalist Dr. [[Robert Huebner]] to challenge Karpov in [[Merano]], [[Italy]]. This time the psychological trick was the arrest of Korchnoi's son for evading [[conscription]]. Again the politics off the board overshadowed the games, but this time Karpov easily won (11&amp;ndash;7, +6 -2 =10) in what is remembered to be the &quot;Massacre of Merano&quot;.
52767
52768 Karpov's tournament career also reached a peak at the exceptional [[Montreal]] &quot;Super-Grandmaster&quot; tournament in 1979, where he ended joint first with [[Mikhail Tal]] ahead of a field of superb grandmasters like [[Jan Timman]], [[Ljubomir Ljubojevic]], [[Boris Spassky]], and [[Lubomir Kavalek]]. Meanwhile, he had also won the prestigious [[Linares chess tournament|Linares tournament]] in 1981 (and again in 1994), the [[Tilburg]] tournament in 1977, 1979, 1980, 1982, and 1983, and the [[USSR Chess Championship|Soviet Championship]] in 1976 and 1983 (and again in 1988).
52769
52770 To illustrate Karpov's dominance over his peers as champion, his score was +11 -2 =20 v Spassky, +5 =12 v [[Robert HÃŧbner]], +6 -1 = 16 v [[Ulf Andersson]], +3 -1 =10 v [[Vasily Smyslov]], +1 =16 v [[Mikhail Tal]], +10 -2 =13 v Ljubojevic.
52771
52772 &lt;!-- Unsourced image removed: [[Image:Karkas1.jpg|thumbnail|The 1984 [[World Chess Championship]] was between [[Garry Kasparov]] (left) and Anatoly Karpov (right).]] --&gt;
52773
52774 Karpov had cemented his position as the world's best player and world champion when [[Garry Kasparov]] arrived on the scene. In their first World Championship match in 1984, Karpov quickly built a 4&amp;ndash;0 lead, and needed only two more wins to keep his title. Instead, the next 17 games were drawn, and it took Karpov until Game 27 to finally win another game. In Game 31, Karpov had a winning position but failed to take advantage and settled for a draw. He lost the next game, but drew the next 14. In particular, Karpov held a solidly winning position in Game 41, but again blundered terribly and had to settle for a draw. After Kasparov suddenly won Game 47 and 48, Karpov suffered a physical collapse, having lost 10 kg (22 lb) over the course of the match. The FIDE President controversially terminated the match, which had lasted an unprecedented four months with five wins for Karpov, three for Kasparov, and a staggering forty draws. A rematch was set for the following year. In a hard fight, Karpov lost his title 11 to 13 in the 1985 match, ending his ten-year reign as champion.
52775
52776 ==Rival==
52777
52778 Karpov remained a formidable opponent for most of the [[1980s|eighties]]. He fought Kasparov in three more World Championship matches in 1986 (held in [[London]] and [[Saint Petersburg|Leningrad]]), 1987 (held in [[Seville]]), and 1990 (held in [[Lyon]] and [[New York City]]). All three matches were extremely close (the scores were 12.5 to 11.5, 12 to 12, and 12.5 to 11.5). In all three matches Karpov had winning chances up to the very last games. In particular, the 1987 Seville match featured an astonishing blunder by Kasparov in the 23rd game, and should have led to Karpov's winning the title. Instead, in the final game, needing only a draw to win the title, Karpov blundered on his 33rd and 64th moves and lost, ending the match in a draw and allowing Kasparov to keep the title.
52779
52780 The overall game score between them stayed virtually even until the late 1990s, when the score shifted decisively towards Kasparov. Currently, in their 235 formal games played, Karpov has 23 wins, 33 losses, and an incredible 179 draws. In their five world championship matches, Karpov has 19 wins, 21 losses, and 104 draws in 144 games.
52781
52782 Although twelve years older than Kasparov, Karpov still has the stamina and endurance to be a match for Kasparov. In 2002, he defeated Kasparov in a rapid time control match 2.5-1.5. Karpov is on record saying that had he had the opportunity to fight Fischer for the crown like Kasparov had the opportunity to fight him, he (Karpov) could have been a much better player as a result. Though the struggle for the world championship made them enemies, Karpov and Kasparov maintain a tremendous level of respect for each other{{fact}}. The two of them and their titanic struggles make up a chess rivalry that even surpassed that of [[Capablanca]] and [[Alekhine]].
52783
52784 ==FIDE Champion again==
52785
52786 It came as a surprise, then, that Karpov lost a Candidates Match against [[Nigel Short]] in 1992. But in 1993, Karpov reacquired the FIDE World Champion title when Kasparov and Short split from FIDE. Karpov crushed [[Jan Timman]]&amp;mdash;the loser of the Candidates final against Short. Once again he had become World Champion, and once again he did so controversially. He defended his title against [[Gata Kamsky]] (+6 -3 =9) in 1996. However, in 1998, FIDE largely scrapped the old system of Candidate Matches, instead having a large knock-out event in which a large number of players contested short matches against each other over just a few weeks. In the first of these events, champion Karpov was seeded straight into the final, defeating [[Viswanathan Anand]] (+4 -2 =2). But subsequently the champion had to qualify like other players. Karpov resigned his title in anger at the new rules in 1999, so the winner of the 1999 tournament ([[Alexander Khalifman]]) became FIDE World Champion.
52787
52788 However, the FIDE champions were not recognized as such by the general public. The fact that the FIDE champions were regularly crushed by Kasparov in tournaments testified to his dominance. The FIDE matches received little public attention, while Kasparov's matches with the PCA and subsequently Braingames were widely reported in the media. For more details about these series of champions, see the [[World Chess Championship]] article.
52789
52790 ==Towards Retirement?==
52791
52792 In 1991 Karpov temporarily dropped to third in the FIDE ranking list, the first time since 1971. Though he quickly recovered, many said that Karpov had lost his edge, and that his playing level had declined. However, Karpov bounced back against the world's very strongest players (in the order of their finish, [[Garry Kasparov|Kasparov]], [[Alexei Shirov|Shirov]], [[Evgeny Bareev|Bareev]], [[Vladimir Kramnik|Kramnik]], [[Joel Lautier|Lautier]], [[Viswanathan Anand|Anand]], [[Gata Kamsky|Kamsky]], [[Veselin Topalov|Topalov]], [[Vassily Ivanchuk|Ivanchuk]], [[Boris Gelfand|Gelfand]], [[Miguel Illescas|Illescas]], [[Judit Polgar]], and [[Alexander Beliavsky|Beliavsky]]) in the landmark &quot;super-strong&quot; tournament [[Linares chess tournament|Linares]] 1994 (average [[ELO rating system|ELO rating]] 2685, the highest in history, meaning it was the first Category XVIII tournament ever held).
52793
52794 Impressed by the strength of the tournament, Kasparov had said several days before the tournament that the winner could rightfully be called the world champion of tournaments. Perhaps spurred on by this comment, Karpov played the chess of his life and dramatically won the tournament. He was undefeated and earned 11 points out of 13 possible (the best world-class tournament winning percentage in 64 years), dominating second-place Kasparov and Shirov by a huge 2.5 points. Many of his wins were spectacular (in particular, his win over Topalov, detailed below, is considered possibly his finest throughout his career). This performance against the best players in the world put his [[ELO rating system|ELO rating]] tournament performance at 2985, the highest performance rating of any chess player in any tournament in all of chess history.
52795
52796 Even recently, few players have surpassed Karpov's achievements. Since he dropped out of the top three players in the world on the FIDE rankings, only [[Garry Kasparov]], [[Viswanathan Anand]], [[Vladimir Kramnik]], and (as of January 2005) [[Veselin Topalov]] have been in the top three slots. In other words, Karpov is the last person to have been in the top three in the world before Kasparov, Anand, Kramnik, and Topalov. In addition, Karpov is the only player among these to ever have ranked number one in the world ahead of Kasparov.
52797
52798 However, Karpov's outstanding classical tournament play has been seriously limited since 1995, since he prefers to be more involved in politics of his home country of Russia. He had been a member of the [[Supreme Soviet]] Commission for Foreign Affairs and the President of the Soviet Peace Fund before the Soviet Union broke up. In addition, he had been involved in several disputes with FIDE and became increasingly disillusioned with chess. In the October 2005 FIDE rating list, he is 33rd in the world with an ELO rating of 2672.
52799
52800 However, more recently, because of his traditional strength at managing his thinking time, Karpov has instead begun revamping his style to specialize in rapid chess.
52801
52802
52803
52804
52805 == Sample game ==
52806 {{Chess diagram|=
52807 |tright
52808 |
52809 |=
52810 8 |rd|qd|rd| | | |kd| |=
52811 7 | | | |ql|bd|pd| | |=
52812 6 |pd| |nd| |pd| |pd| |=
52813 5 | |pd|pd| | | | | |=
52814 4 | | |pl| | |pl| | |=
52815 3 | | |nl| | | |pl| |=
52816 2 |pl|pl| | | |pl|bl| |=
52817 1 |rl| | | |rl| |kl| |=
52818 a b c d e f g h
52819
52820 |In this position, Karpov (white), already with a slight advantage, initiates the first of three rook offers}}
52821
52822 This game, Anatoly Karpov v [[Veselin Topalov]], [[Linares]] 1994, given in [[algebraic notation]], played during one of his best tournaments, features Karpov offering a rook for capture three times, and eventually sacrificing two rooks for a scintillating victory.
52823
52824 1. d4 Nf6 2. c4 c5 3. Nf3 cxd4 4. Nxd4 e6 5. g3 Nc6 6. Bg2 Bc5 7. Nb3 Be7 8. Nc3 O-O 9. O-O d6 10. Bf4 Nh5 11. e3 Nxf4 12. exf4 Bd7 13. Qd2 Qb8 14. Rfe1! g6 15. h4 a6 16. h5 b5 17. hxg6 hxg6 18. Nc5 dxc5 19. Qxd7 Rc8
52825
52826 (see diagram)
52827
52828 '''20. Rxe6!!''' Ra7 [20...fxe6 21.Bxc6 Ra7 22.Qxe6+ Kg7 23.Be4 and White is clearly better] '''21. Rxg6+!''' fxg6 22. Qe6+ Kg7 23. Bxc6 Rd8 24. cxb5 Bf6 25. Ne4 Bd4 26. bxa6 Qb6 27. Rd1 Qxa6 '''28. Rxd4!!''' Rxd4 [28...cxd4 29.Qf6+ Kh6 30.Qh4+ Kg7 31.Qxd8 Qxc6 32.Qxd4+ and White is better] 29. Qf6+ Kg8 30. Qxg6+ Kf8 31. Qe8+ Kg7 32. Qe5+ Kg8 33. Nf6+ Kf7 34. Be8+ Kf8 35. Qxc5+ Qd6 36. Qxa7 Qxf6 37. Bh5 Rd2 38. b3 Rb2 39. Kg2 1-0
52829
52830 == Further reading ==
52831 * ''World chess champions'' by [[Edward G. Winter]], editor. 1981 ISBN 0080249041
52832 * ''The World's Great Chess Games'' by [[Reuben Fine]], Dover; 1983. ISBN 0486245128
52833 * ''Anatoly Karpov's Best Games'' by Anatoly Karpov, Batsford; 2003. ISBN 0713478438
52834 * ''Karpov on Karpov: A Memoirs of a Chess World Champion'' by Anatoly Karpov, [[Simon &amp; Schuster]]; 1992. ISBN 0689120605
52835 * ''Curse of Kirsan: Adventures in the Chess Underworld'' by Sarah Hurst, Russell Enterprises, 2002.
52836
52837 {{start box}}
52838 {{succession box |
52839 before= [[Bobby Fischer]] |
52840 title= [[World chess champion|World Chess Champion]] |
52841 years= 1975&amp;ndash;1985 |
52842 after= [[Garry Kasparov]]
52843 }}
52844 {{succession box |
52845 before= [[Garry Kasparov]] |
52846 title= [[World chess champion|FIDE World Chess Champion]] |
52847 years= 1993&amp;ndash;1999 |
52848 after= [[Alexander Khalifman]]
52849 }}
52850 {{end box}}
52851
52852 == External links ==
52853 {{wikiquote}}
52854 * [http://www.karpov.on.ru/ Karpov's official homepage] in Russian.
52855 * [http://www.chessgames.com/perl/chesscollection?cid=1001168 Karpov's Best Games at www.chessgames.com]
52856 * [http://www.chessmaniac.com/Games/MyChessViewer/karpov.htm View 3079 Anatoly Karpov Games at www.chessmaniac.com]
52857 * [http://www.chessgames.com/perl/chessplayer?pid=20719 Karpov's profile at www.chessgames.com]
52858 * [http://www.bobby-fischer.net/Karpov_on_fischer_11.htm Karpov on why Fischer wouldn't play him in the 1975 match] Video Clip
52859 * [http://www.wtharvey.com/karp.html 60 Crucial Positions from His Games]
52860
52861 His &quot;best&quot; games:
52862
52863 * [http://www.chessgames.com/perl/chessgame?gid=1067662 Anatoly Karpov vs Leonid Stein, Leningrad 1971]
52864 * [http://www.chessgames.com/perl/chessgame?gid=1068020 Stefano Tatai vs Anatoly Karpov, Las Palmas 1977]
52865 * [http://www.chessgames.com/perl/chessgame?gid=1069169 Anatoly Karpov vs Veselin Topalov, Linares 1994]
52866
52867 [[Category:1951 births|Karpov, Anatoly]]
52868 [[Category:Living people|Karpov, Anatoly]]
52869 [[Category:Chess grandmasters|Karpov, Anatoly]]
52870 [[Category:World Chess Champions|Karpov, Anatoly]]
52871 [[Category:Russian chess players|Karpov, Anatoly]]
52872
52873 [[cs:Anatolij Karpov]]
52874 [[de:Anatoli Jewgenjewitsch Karpow]]
52875 [[et:Anatoli Karpov]]
52876 [[el:ΑÎŊÎąĪ„ĪŒÎģΚ ΚÎŦĪĪ€Îŋβ]]
52877 [[es:Anatoli Karpov]]
52878 [[fa:ØĸŲ†Ø§ØĒŲˆŲ„ÛŒ ÚŠØ§ØąŲžŲ]]
52879 [[fr:Anatoli Karpov]]
52880 [[it:Anatoly Karpov]]
52881 [[he:אנטולי קרפוב]]
52882 [[nl:Anatoli Karpov]]
52883 [[ja:ã‚ĸナトãƒĒãƒŧãƒģã‚ĢãƒĢポフ]]
52884 [[no:Anatolij Karpov]]
52885 [[nn:Anatolij Karpov]]
52886 [[pl:Anatolij Karpow]]
52887 [[pt:Anatoly Karpov]]
52888 [[ru:КаŅ€ĐŋОв, АĐŊĐ°Ņ‚ĐžĐģиК ЕвĐŗĐĩĐŊŅŒĐĩвиŅ‡]]
52889 [[fi:Anatoli Karpov]]
52890 [[sv:Anatolij Karpov]]
52891 [[tr:Anatoli Karpov]]</text>
52892 </revision>
52893 </page>
52894 <page>
52895 <title>Aspect ratio (disambiguation)</title>
52896 <id>1021</id>
52897 <revision>
52898 <id>38283276</id>
52899 <timestamp>2006-02-05T08:29:38Z</timestamp>
52900 <contributor>
52901 <username>Ewlyahoocom</username>
52902 <id>241538</id>
52903 </contributor>
52904 <minor />
52905 <comment>moved [[Aspect ratio]] to [[Aspect ratio (disambiguation)]]: Redirecting main entry to [[Aspect ratio (image)]]</comment>
52906 <text xml:space="preserve">The '''aspect ratio''' of a two-dimensional shape is the ratio of its longest dimension to its shortest dimension.
52907
52908 {{Wiktionarypar|aspect ratio}}
52909
52910 The term is most commonly used with reference to:
52911 *images (see [[aspect ratio (image)]])
52912 *[[paper]] (see [[paper size]])
52913 *the wing-plans of [[aircraft]] or [[bird]]s (see [[aspect ratio (wing)]]).
52914
52915 ''See also'': [[Golden ratio]], [[Ratio]]
52916
52917 [[ja:&amp;#12450;&amp;#12473;&amp;#12506;&amp;#12463;&amp;#12488;&amp;#27604;]]
52918 [[zh:&amp;#32305;&amp;#27243;&amp;#27604;]]
52919 {{disambig}}</text>
52920 </revision>
52921 </page>
52922 <page>
52923 <title>Auto racing</title>
52924 <id>1022</id>
52925 <revision>
52926 <id>42102467</id>
52927 <timestamp>2006-03-03T21:15:16Z</timestamp>
52928 <contributor>
52929 <username>Brian0918</username>
52930 <id>90640</id>
52931 </contributor>
52932 <minor />
52933 <comment>Reverted edits by [[Special:Contributions/24.168.252.90|24.168.252.90]] ([[User talk:24.168.252.90|talk]]) to last version by BlankVerse</comment>
52934 <text xml:space="preserve">'''Auto racing''' (also known as '''automobile racing''', '''autosport''' or '''motorsport''') is a [[sport]] involving [[racing]] [[automobile]]s. '''Motor racing''' or '''motorsport''' may also mean [[motorcycle racing]], and can include [[motorboat racing]] and [[air racing]]. It is one of the world's most popular [[spectator sport]]s and perhaps the most thoroughly [[commercialization|commercialized]].
52935
52936 == History ==
52937 === The Start===
52938 Auto racing began almost immediately after the construction of the first successful [[gasoline|petrol]]-fuelled autos. In [[1894]], the first contest was organized by Paris magazine ''[[Le Petit Journal]]'', a reliability test to determine best performance.
52939
52940 A year later the first real race was staged, from [[Paris]], [[France]] to [[Bordeaux]], France. First over the line was [[Émile Levassor]] but he was disqualified because his car was not a required four-seater.
52941
52942 An international competition began with the [[Gordon Bennett Cup in auto racing]].
52943
52944 The first auto race in the [[United States]], over a 54.36 mile (87.48 km) course, took place in [[Chicago, Illinois|Chicago]], [[Illinois]] on [[November 2]], [[1895]], [[Frank Duryea]] winning in 10 h and 23 min, beating three petrol-fuelled cars and two electric. The first trophy awarded was the [[Vanderbilt Cup]].
52945
52946 === City to city racing ===
52947 [[Image:Mors.jpg||thumb|340px|Fernand Gabriel driving a Mors in Paris-Madrid 1903]]
52948 With auto construction and racing dominated by [[France]], the French automobile club ACF staged a number of major international races, usually from or to Paris, connecting with another major city in Europe or France.
52949
52950 These very successful races ended in [[1903]] when Marcel [[Renault]] was involved in a fatal accident near [[Angouleme]] in the Paris-Madrid race. Eight fatalities caused the French government to stop the race in [[Bordeaux]] and ban open-road racing.
52951 &lt;!-- (much more on this) --&gt;
52952
52953 ===1910-1950===
52954 The [[1930s]] saw the radical differentiation of racing vehicles from high-priced road cars, with [[Delage]], [[Auto Union]], [[Mercedes-Benz]], [[Delahaye]] and [[Bugatti]] constructing streamlined vehicles with engines producing up to 450 kW(612HP) with the aid of multiple superchargers. From [[1928]]-[[1930]] and again in [[1934]]-[[1936]], the maximum [[weight]] permitted was 750 kg(1654Lbs), a rule diametrically opposed to current racing regulations. Extensive use of aluminium alloys was required to achieve light weight, and in the case of the Mercedes, the paint was removed to satisfy the weight limitation, producing the famous [[Silver Arrows]].
52955
52956 :''See: [[Grand Prix motor racing]]''
52957
52958 == Categories ==
52959 There are many categories of auto racing.
52960
52961 === Single-seater racing ===
52962 :''Main article: [[Open wheel racing]]''
52963 [[Image:formula_one_car.jpg|thumb|300px|right|A modern Formula One car]]
52964 Single-seater ([[open-wheel]]) racing is perhaps the most well-known form of motorsport, with cars designed specifically for high-speed racing. The wheels are not covered, and the cars often have aerofoil wings front and rear to produce downforce and enhance adhesion to the track.
52965
52966 Single-seater races are held on specially designed closed circuits or street circuits closed for the event. Many single-seater races in North America are held on &quot;oval&quot; circuits and the [[Indy Racing League]] races mostly on ovals.
52967
52968 The best-known variety of single-seater racing is the [[Formula One]] World Championship, which involves an annual championship featuring major international car and engine manufacturers in an ongoing battle of technology and driver skill. Formula One is, by any measure, the most expensive sport in the world, with some teams spending in excess of 201 million US dollars per year. Formula One is widely considered to be the pinnacle of motorsports, and a seat in a Formula One car is undoubtedly the peak of any driver's racing career. In North America, the cars used in the [[American Championship Car Racing|National Championship]] (currently [[Champcars]] and the [[Indy Racing League]]) have traditionally been similar to [[F1 cars]] but with more restrictions on technology aimed at helping to control costs.
52969
52970 Other single-seater racing series are [[GP2 Series|GP2]] (formerly known as [[Formula 3000]] and [[Formula Two]]), [[Formula Nippon]], [[Formula Nissan]] (also known as the Telefonica World Series), [[Formula Three]], [[Formula Atlantic]], and [[A1 Grand Prix]].
52971
52972 There are other categories of single-seater racing, including [[kart racing]], which employs a small, low-cost machine on small tracks. Many of today's top drivers started their careers in karts.
52973
52974 === Rallying ===
52975 :''Main article: [[Rallying]]''
52976 [[Rallying]], or rally racing, involves highly modified production cars on (closed) public roads or off-road areas run on a point-to-point format where participants and their co-drivers “rally” to a set of points, leaving in regular intervals from start points. A rally is typically conducted over a number of stages of any terrain, which entrants are often allowed to scout beforehand. The co-driver uses the &quot;pacenotes&quot; to help the driver complete each stage as fast as possible, reading the detailed shorthand aloud over an in-car intercom system. Competition is based on lowest total elasped time over the course of an event.
52977
52978 The top series is the [[World Rally Championship]] (WRC), but there also regional championships and many countries have their own national championships. Some famous rallies include the [[Monte Carlo Rally]] and [[Rally Argentina]]. Another famous event (actually best described as a &quot;[[rally raid]]&quot;) is the [[Paris-Dakar Rally]]. There are also many smaller, club level, [[categories of rallies]] which are popular with amateurs, making up the &quot;grass roots&quot; of motorsports.
52979
52980 === Ice Racing ===
52981 :''Main article: [[Ice Racing]]''
52982
52983 === Touring car racing===
52984 :''Main article: [[Touring car racing]]''
52985 [[Image:11_murphy_leads.jpg|left|170px|thumb|V8 Supercar Touring car racing]]
52986 Touring car racing is a style of road racing that is run with production derived race cars. It often features exciting, full-contact racing due to the small speed differentials and large grids.
52987
52988 The [[V8 Supercars]] originally from [[Australia]], [[Deutsche Tourenwagen Masters]] originally from [[Germany]], and the [[World Touring Car Championship]] held with 2 non-European races (previously the [[European Touring Car Championship]]) are the major touring car championships conducted worldwide.
52989
52990 The [[Sports Car Club of America]]'s [[SPEED World Challenge]] Touring Car and GT championships are dominant in North America while the venerable [[British Touring Car Championship]] continues in [[Great Britain]]. America's historic [[Trans-Am Series]] is undergoing a period of transition, but is still the longest-running road racing series in the U.S. The [[National Auto Sport Association]] also provides a venue for amateurs to compete in home-built factory derived vehicles on various local circuits.
52991
52992 ===Stock car racing===
52993 [[Image:Riverside_Raceway.JPG|thumb|250px|right|One of the most famous NASCAR tracks was the old [[Riverside International Raceway]] in [[Riverside, California]].]]
52994
52995 :''Main article: [[Stock car racing]]''
52996 [[Stock car racing]] is the American variant of touring car racing. Usually conducted on ovals, the cars look like production cars but are in fact purpose-built racing machines which are all very similar in specifications. Early stock cars were much closer to production vehicles; the car to be raced was often driven from track to track.
52997
52998 The main stock car racing series is [[NASCAR]] and among the most famous races in the series are the [[Daytona 500]] and [[Allstate 400 at The Brickyard]]. NASCAR also runs the [[Busch Series]] (a junior stock car league) and the [[Craftsman Truck Series]] ([[pickup truck]]s).
52999
53000 NASCAR also runs the [[Featherlite]] series of &quot;modified&quot; cars which are heavily modified from stock form. With powerful engines, large tires, and light bodies. NASCAR's oldest series is considered by many to be its most exciting.
53001
53002 There are also other stock car series like [[IROC]] in the United States and [[CASCAR]] in [[Canada]].
53003
53004 [[British Stock car racing]] is a form of Short Oval Racing
53005 This takes place on Shale or Tarmac tracks in either Clockwise or Anti-Clockwise direction, Depending on the class some of which are contact.
53006
53007 Races are organised by local promoters and all drivers are registered with BRISCA and have their own race number.
53008
53009 What classes exist depends on the promoters, so events in [[Scotland]] at Cowdenbeath can be very different from an event at [[Wimbledon Stadium]] in [[London]].
53010
53011 ''Formula Cars''
53012 * F1 - Cars built to Specification normally utilising 5,6 or 7 Litre V8 engines
53013 * F2 - Specification built cars similar to F1 with 2 Litre Ford Pinto Engines
53014 These are the two main National forms of British Stock Car Racing, there are World Championships organised by the governing body [http://www.brisca.com/BRISCA]
53015
53016 There are also local variants raced in some smaller tracks, they are usually similar to F2 Stock Cars.
53017
53018 F1's race (in the UK) at the following venues:
53019
53020 Belle Vue Stadium (Manchester),
53021 Owlerton Stadium (Sheffield),
53022 Skegness Stadium,
53023 Buxton,
53024 Hednesford,
53025 Birmingham,
53026 Northampton,
53027 Coventry,
53028 Kings Lynn,
53029 Ipswich,
53030 Cowdenbeath,
53031 Knockhill.
53032
53033 They also race in Holland.
53034
53035 ''Hot Rods''
53036 * Local Variations on the concept of fibreglass cars that look like production models Non Contact
53037
53038 ''Production Models''
53039 *Modified Road cars, classes range from Non-Contact 2 Litre Hot Rods to Contact Banger Racing.
53040
53041 Contact Classes can be identified by the inclusion of external side impact bars and large bumpers at either end made out of square section steel.
53042
53043 ===Drag racing===
53044 :''Main article: [[Drag racing]]''
53045 In [[drag racing]], the objective is to complete a certain distance, traditionally 1/4 mile, (400 m), in the shortest possible time. The vehicles range from the everyday car to the purpose-built [[dragster]]. Speeds and elapsed time differ from class to class. A street car can cover the 1/4 mile (400 m) in 15 s whereas a [[top fuel dragster]] can cover the same distance in 4.5 s and reach 330 mph (530 km/h). Drag racing was organised as a sport by [[Wally Parks]] in the early [[1950s]] through the [[NHRA]] (National Hot Rod Association) which is the largest sanctioning motor sports body in the world. The NHRA was formed to prevent people from [[street racing]]. Illegal street racing is not drag racing.
53046
53047 Launching its run to 330 mph (530 km/h), a top fuel dragster will accelerate at 4.5 ''[[Gee|g]]'' (44 m/s&lt;sup&gt;2&lt;/sup&gt;), and when braking and parachutes are deployed, the driver experiences deceleration of 4 ''g'' (39 m/s&lt;sup&gt;2&lt;/sup&gt;), more than space shuttle occupants. A single top fuel car can be heard over eight miles (13 km) away and can generate a reading of 1.5 to 2 on the [[Richter scale]]. (NHRA Mile High Nationals 2001, and 2002 testing from the National Seismology Center.)
53048
53049 Drag racing is often head-to-head where two cars battle each other, the winner proceeding to the next round. Professional classes are all first to the finish line wins. Sportsman racing is handicapped (slower car getting a head start) using an index, and cars running faster than their index &quot;break out&quot; and lose.
53050
53051 Drag racing is mostly popular in the [[United States]].
53052
53053 ===Sports car racing===
53054 :''Main article: [[Sports car racing]]''
53055 In [[sports car racing]], production versions of sports cars and purpose-built prototype cars compete with each other on closed circuits. The races are usually conducted over long distances, at least 1000 km, and cars are driven by teams of two or three drivers (and sometimes more in the US), switching every now and then. Due to the performance difference between production based sports cars and sports racing prototypes, one race usually involves many racing classes. In the US the [[American Le Mans]] Series was organized in 1999, featuring GT, GTS, and two prototype classes. Another series based on Le Mans began in 2004, the [[Le Mans Endurance Series]], which included four 1000 km races at tracks in Europe. A competing body, [[Grand-Am]], which began in 2000, sanctions its own set of endurance series, the [[Rolex Sports Car Series]] and the [[Grand-Am Cup]]. Grand-Am events typically feature many more cars and much closer competition than American Le Mans.
53056
53057 Famous sports car races include the [[24 Hours of Le Mans]], the [[24 Hours of Daytona]] and the [[12 Hours of Sebring]].
53058
53059 ===Offroad racing===
53060 :''Main article: [[Offroad racing]]''
53061 In [[offroad racing]], various classes of specially modified vehicles, including cars, compete in races through off-road environments. In North America these races often take place in the desert, such as the famous [[Baja 1000]].
53062 In Europe, &quot;offroad&quot; refers to events such as autocross or rallycross, while desert races and rally-raids such as the [[Paris-Dakar Rally|Paris-Dakar]], [[Master Rallye]] or European &quot;bajas&quot; are called Cross-Country Rallies.
53063
53064 ===Hillclimbing===
53065 :''Main article: [[Hillclimbing]]''
53066
53067 ===Kart racing===
53068 :''Main article: [[Kart racing]]''
53069 Although often seen as the entry point for serious racers into the sport, [[kart racing]], or karting, can be an economic way to try your luck at motorsport and is also a fully fledged international sport in its own right. World-famous F1-drivers like [[Michael Schumacher|Michael]] and [[Ralf Schumacher]] and most of the typical starting grid of a modern Grand Prix took up the sport at around the age of eight, with some testing from age three. Several former motorcycle champions have also taken up the sport, notably [[Wayne Rainey]], who was paralysed in a racing accident and now races a hand-controlled kart. As one of the cheapest ways to go racing, karting is seeing its popularity grow worldwide.
53070
53071 Go-karts, or just &quot;karts&quot; - seem very distant from normal road cars, with dimunitive frames and wheels, but a small engine combined with very light weight make for a quick machine. The tracks are also on a much smaller scale, making kart racing more accessible to the people.
53072
53073 ===Legend car racing===
53074 :''Main article: [[Legend car racing]]''
53075
53076 ===Other categories===
53077 *[[Autocross|Autocrossing]]
53078 *[[Autograss]]
53079 *[[Demolition Derby]]
53080 *[[Dirt speedway racing]]
53081 *[[Dirt track racing]]
53082 *[[Drifting (motorsport)|Drifting]]
53083 *[[Truck Racing|Grand Prix Truck Racing]]
53084 *[[Road racing]]
53085 *[[Short track motor racing]]
53086 *[[SoloMotorsport|Solo]]
53087 *[[Street racing]]
53088 *[[Rallycross]]
53089 *[[Folkrace]]
53090
53091 ==Use of flags==
53092 ''Main article: [[Racing flags]]''
53093
53094 In open-wheel, stock-car and other types of circuit auto races, flags are displayed to indicate the general status of a race and to communicate instructions to competitors in a race. While the flags have changed from the first years (e.g. red used to start a race), these are generally accepted for today.
53095
53096 {|
53097 ! Flag
53098 ! Displayed from start tower
53099 ! Displayed from observation post
53100 |-
53101 |[[Image:Auto Racing Green.svg|25px|Green flag]]
53102 |The race has started or resumed after a full caution or stop, or the race is proceeding normally.
53103 |End of hazardous section of track.
53104 |-
53105 |[[Image:Auto Racing Yellow.svg|25px|Yellow flag]]
53106 |Full course caution condition for ovals. On road courses, it means a local area of caution. Depending on the type of racing, either two yellow flags will be used for a full course caution or a sign with 'SC' ([[Safety car]]) will be used as the field follows the [[pace car|pace/safety car]] on track and no cars may pass.
53107 |Local caution condition — no cars may pass at the particular corner where being displayed.
53108 |-
53109 |[[Image:Auto Racing Oil.svg|25px|Yellow flag with red stripes]]
53110 |Debris or slippery patches on the track.
53111 |-
53112 |[[Image:Auto Racing Black.svg|25px|Black flag]]
53113 |The car with the indicated number must pit.
53114 |The session is halted; all cars on course must return to pit lane.
53115 |-
53116 |[[Image:Auto Racing Orange Circle.svg|25px|Meatball flag]]
53117 |The car with the indicated number has mechanical trouble.
53118 |-
53119 |[[Image:Auto Racing Black White.svg|25px|Black and white flag]]
53120 |The driver of the car with the indicated number has been penalized for misbehaviour.
53121 |-
53122 |[[Image:Auto Racing White Cross.svg|25px|White cross flag]]
53123 |The driver of the car with the indicated number is disqualified or will not be scored until they report to the pits.
53124 |-
53125 |[[Image:Auto Racing Blue.svg|25px|Blue flag with yellow stripe]]
53126 |A car must allow another car to pass if the flag is blue only. With an orange or yellow stripe, it simply serves as a warning that faster traffic is behind.
53127 |A car is being advised to give way to faster traffic approaching.
53128 |-
53129 |[[Image:Auto Racing Red.svg|25px|Red flag]]
53130 |The race is stopped—all cars must halt on the track or return to pit lane.
53131 |-
53132 |[[Image:Auto Racing White.svg|25px|White flag]]
53133 |One lap remains.
53134 |A slow vehicle is on the track.
53135 |-
53136 |[[Image:Auto Racing Chequered.svg|25px|Chequered flag]]
53137 |The race has concluded.
53138 |}
53139
53140 ==Accidents==
53141 For the worst accident in racing history see [[Pierre Levegh]].
53142
53143 ==See also==
53144 * [[Engine tuning]]
53145 * [[Import scene]]
53146 * [[List of Auto Racing tracks]]
53147 * [[Race track]]
53148 * [[Racing game]]
53149 * [[Reading spark plugs for racing]]
53150 * [[Sim racing]]
53151
53152 ==External links==
53153
53154 * [http://www.nascarup.com Nascarup.com - NASCAR news on the Nextel Cup, Busch, and Craftsman Truck Series]
53155 * [http://www.formula1.com The Official Formula One Website with news, results and stats]
53156 * [http://www.grandamerican.com The official web site of the Grand American Road Racing Association]
53157 * http://www.trackbytes.com Full coverage of SPEED World Challenge and American Le Mans Series
53158 * http://www.autosport.com AutoSport Magazine
53159 * http://www.speedtv.com SPEED TV Network
53160 * http://www.motorstv.com Motors TV Network
53161 * [http://www.sportscarcup.com Sports Cars] Sports car pictures and specifications
53162 * http://www.rennleitung.de: Rennleitung
53163 * http://www.motorsport.com: Covering All Forms of Auto Racing
53164 * http://www.britishmotorracingsafetyfund.org Promoting safety and raising money for the Sport in the UK
53165 * [http://NHRA.com NHRA]
53166 * [http://IHRA.com IHRA]
53167 * [http://www.automotive.com/features/36/auto-racing/ Auto Racing News]
53168 * http://www.racerweek.com: F1, NASCAR &amp; Rally racing forums
53169 * http://www.formula1review.com: F1 news, results, statistics, motorsports forum
53170 * [http://www.rinehartsracing.com Drag Racing Photos]
53171 * [http://www.inforally.sibiul.ro Rally News and Photo]
53172 *[http://www.the-paddock.net The-Paddock.net] covers a wide range of Sportscar-Racing series , including ALMS &amp; Grand-AM
53173 * [http://www.F1Talk.org/ F1Talk] — F1 Talking
53174 * [http://www.f1stockcars.co.uk/ BriSCA F1 Stock Cars]
53175
53176 &lt;!-- interwiki --&gt;
53177
53178 [[Category:Auto racing|*]]
53179
53180 [[af:Motorsport]]
53181 [[cs:Motorsport]]
53182 [[de:Automobilsport]]
53183 [[eo:AÅ­tosporto]]
53184 [[es:Automovilismo]]
53185 [[et:Autosport]]
53186 [[fa:اØĒŲˆŲ…بیŲ„â€ŒØąØ§Ų†ÛŒ]]
53187 [[fr:CompÊtition automobile]]
53188 [[hr:Automobilizam]]
53189 [[it:Automobilismo]]
53190 [[ja:ãƒĸãƒŧã‚ŋãƒŧ゚ポãƒŧツ]]
53191 [[ko:ėžë™ė°¨ ę˛ŊėŖŧ]]
53192 [[lt:Autosportas]]
53193 [[mk:МоŅ‚ĐžŅ€ĐŊи Ņ‚Ņ€Đēи]]
53194 [[nl:Autosport]]
53195 [[no:Motorsport]]
53196 [[pl:Wyścig samochodowy]]
53197 [[pt:Automobilismo]]
53198 [[ro:Automobilism]]
53199 [[ru:АвŅ‚ĐžŅĐŋĐžŅ€Ņ‚]]
53200 [[uk:АвŅ‚ĐžĐŧОйŅ–ĐģŅŒĐŊŅ– ĐŗĐžĐŊĐēи]]
53201 [[zh:čŗŊčģŠ]]</text>
53202 </revision>
53203 </page>
53204 <page>
53205 <title>Anarcho-capitalism</title>
53206 <id>1023</id>
53207 <revision>
53208 <id>41906789</id>
53209 <timestamp>2006-03-02T14:58:24Z</timestamp>
53210 <contributor>
53211 <ip>85.27.55.166</ip>
53212 </contributor>
53213 <comment>/* Criticisms by other radical capitalists */</comment>
53214 <text xml:space="preserve">[[Image:Libertatis Aequilibritas GFDL.jpg|150px|thumb|left|The ''Libertatis Æquilibritas'' is one [[Anarcho-capitalist_terminology_and_symbolism|symbol]] used by anarcho-capitalists {{fact}}]]
53215 {{Libertarianism}}
53216
53217 '''Anarcho-capitalism''' (aka '''free market anarchism''') is a [[philosophy]] based on the idea of [[individual sovereignty]], and a prohibition against initiatory [[coercion]] and [[fraud]]. It sees the only just basis for [[law]] as arising from [[private property]] norms and an unlimited right of [[contract]] between sovereign individuals. From this basis, anarcho-capitalism rejects the [[state]] as an unjustified monopolist and systematic aggressor against sovereign individuals, and embraces [[anti-statist]] [[laissez-faire]] [[capitalism]]. Anarcho-capitalists would aim to protect [[individual liberty]] and [[property]] by replacing a government monopoly, which is involuntarily funded through [[taxation]], with private, competing businesses that use physical force only in defense of liberty and property against aggressors. Hence, they believe that all goods and services, including law, order, and security, should be supplied through the mechanism of a [[free market]].
53218
53219 The philosophy embraces [[anti-statism|stateless]] capitalism as one of its foundational principles. The first well-known version of anarcho-capitalism to identify itself thus was developed by economists of the [[Austrian School]] and [[libertarians]] [[Murray Rothbard]] and [[Walter Block]] in the mid-20th century, synthesizing elements from Austrian School [[economics]], [[classical liberalism]] and [[19th century|19th-century]] [[American individualist anarchism]]. While Rothbard bases his philosophy on [[natural law]], others, such as [[David Friedman]], take a pragmatic [[consequentialist]] approach by arguing that anarcho-capitalism should be implemented because such a system would have consequences superior to alternatives.
53220
53221 Because of this embrace of capitalism, there is considerable tension between anarcho-capitalists and [[anarchist]]s who see the [[anti-capitalism|rejection of capitalism]] as being just as essential to anarchist philosophy as rejection of the state. Despite this tension, many anarcho-capitalists have identified their philosophy as evolving from the tradition of American individualist anarchists such as [[Benjamin Tucker]] and [[Lysander Spooner]].
53222
53223 Anarcho-capitalism can be considered a radical development of [[classical liberalism]]. Its grounding in liberalism stems from [[Gustave de Molinari]]. Many proponents of anarcho-capitalism, including Rothbard, argue that Molinari was the first anarcho-capitalist. However, Rothbard admitted that &quot;Molinari did not use the terminology, and probably would have balked at the name&quot; anarcho-capitalist. Nonetheless, Molinari did argue for a free market, privatization of security, and did not oppose profit. His thoughts were influential on Rothbard and his contemporaries.
53224
53225 ==Philosophy==
53226 ===The nonaggression axiom===
53227 {| align=&quot;right&quot; class=&quot;box&quot; style=&quot;margin-left: 15px; text-align: left; border: 3px solid #aaaaaa; padding: 2px; font-size: 80%; width: 25%;&quot;
53228 |bgcolor=&quot;#dbeaff&quot;|
53229 The term ''anarcho-capitalism'' was most likely coined in the mid-1950s by the economist [[Murray Rothbard]].&lt;ref&gt;Rothbard, Murray N. (1988) &quot;What's Wrong with Liberty Poll; or, How I Became a Libertarian&quot;, Liberty, July 1988, p.53&lt;/ref&gt; Other terms used for this philosophy include:
53230 *capitalist anarchism
53231 *anti-state capitalism
53232 *anarcho-liberalism
53233 *stateless capitalism
53234 *the private-law society&lt;ref name=Hoppe-2001&gt;[[Hans-Hermann Hoppe|Hoppe, Hans-Hermann]] (2001) [http://www.lewrockwell.com/hoppe/hoppe5.html &quot;Anarcho-Capitalism: An Annotated Bibliography&quot;] Retrieved [[23 May]] [[2005]]&lt;/ref&gt;
53235 *radical capitalism&lt;ref name=Hoppe-2001/&gt;
53236 *right-anarchism&lt;ref&gt;Wall, Richard (2004) [http://www.chomsky.info/onchomsky/20040817.htm &quot;Who's Afraid of Noam Chomsky?&quot;] Retrieved [[19 May]] [[2005]]&lt;/ref&gt;
53237 *[[market anarchism]]
53238 *free market anarchism
53239 *private-property anarchy&lt;ref name=Hoppe-2001/&gt;
53240 *stateless liberalism
53241 *[[voluntaryism]]
53242 |}
53243
53244 [[Image:Althing-stamp.jpg|200px|thumb|right|A postage stamp celebrating the thousand-year anniversary of the [[Althing|Icelandic parliament]]. According to a theory associated with the economist [[David Friedman]], [[Icelandic Commonwealth|medieval Icelandic society]] was anarcho-capitalist. Chieftancies could be bought and sold, and were not geographical monopolies; individuals could voluntarily choose membership in any chieftan's clan.]]
53245 {{main|non-aggression axiom}}
53246 Anarcho-capitalism, as formulated by Rothbard and others, holds strongly to the central [[libertarian]] ''nonaggression axiom'':
53247
53248 :[...] The basic axiom of libertarian political theory holds that every man is a [[self-ownership|selfowner]], having absolute jurisdiction over his own body. In effect, this means that no one else may justly invade, or aggress against, another's person. It follows then that each person justly owns whatever previously unowned resources he appropriates or &quot;mixes his labor with.&quot; From these twin axioms — self-ownership and &quot;homesteading&quot; — stem the justification for the entire system of property rights titles in a free-market society. This system establishes the right of every man to his own person, the right of donation, of bequest (and, concomitantly, the right to receive the bequest or inheritance), and the right of contractual exchange of property titles.&lt;ref&gt;Rothbard, Murray N. (1982) [http://www.mises.org/rothbard/lawproperty.pdf &quot;Law, Property Rights, and Air Pollution&quot;] Cato Journal 2, No. 1 (Spring 1982): pp. 55-99. Retrieved [[20 May]] [[2005]]&lt;/ref&gt;
53249
53250 In general, the nonaggression axiom can be said to be a prohibition against the initiation of force, or the threat of force, against persons (i.e., direct violence, [[assault]], [[murder]]) or property (i.e., fraud, [[burglary]], theft, taxation).&lt;ref&gt;Rothbard, Murray N. (1973) [http://www.mises.org/rothbard/newliberty.asp ''For a new Liberty''] Collier Books, A Division of Macmillan Publishing Co., Inc., New York: pp.24-25. Retrieved [[20 May]] [[2005]]&lt;/ref&gt; The initiation of force is usually referred to as [[aggression]] or [[coercion]]. The difference between anarcho-capitalists and other libertarians is largely one of the degree to which they take this axiom. [[Minarchist]] libertarians, such as most people involved in [[Libertarian Party|Libertarian political parties]], would retain the state in some smaller and less invasive form, retaining public [[police]], [[courts]] and [[military]]. In contrast, anarcho-capitalists reject any level of state intervention, defining the state as a coercive monopoly and, as the only entity in human society that derives its income from legal aggression, an entity that inherently violates the central axiom of libertarianism.&lt;ref name=Rothbard-1982.2&gt;Rothbard, Murray N. (1982) [http://www.mises.org/rothbard/ethics/ethics.asp ''The Ethics of Liberty''] Humanities Press ISBN 0814775063:p162 Retrieved [[20 May]] [[2005]]&lt;/ref&gt; Some, such as Rothbard, accept the nonaggression axiom on an intrinsic moral or [[natural law]] basis. Others, such as Friedman, take a [[consequentialist]] or [[egoist]] approach; rather than maintaining that aggression is intrinsically immoral, they maintain that a law against aggression can only come about by contract between self-interested parties who agree to refrain from initiating coercion against each other. It is in terms of the non-aggression principle that Rothbard defined [[anarchism]]; he defined &quot;anarchism as a system which provides no legal sanction for such aggression ['against person and property']&quot; and said that &quot;what anarchism proposes to do, then, is to abolish the State, i.e. to abolish the regularized institution of aggressive coercion.&quot; &lt;ref&gt;Rothbard, Murray N. (1975) [http://www.mises.org/journals/lf/1975/1975_01.pdf ''Society Without A State (pdf)''] ''Libertarian Forum'' newsletter (January 1975)&lt;/ref&gt; In an interview with ''New Banner'', Rothbard said that &quot;capitalism is the fullest expression of anarchism, and anarchism is the fullest expression of capitalism.&quot; &lt;ref&gt;[http://www.lewrockwell.com/rothbard/rothbard103.html ''Exclusive Interview With Murray Rothbard''] The New Banner: A Fortnightly Libertarian Journal ([[25 February]] [[1972]])&lt;/ref&gt;
53251
53252 ===Original appropriation===
53253 Central to anarcho-capitalism are the concepts of [[self-ownership]] and [[original appropriation]]:
53254
53255 &lt;blockquote&gt;Everyone is the proper owner of his own physical body as well as of all places and nature-given goods that he occupies and puts to use by means of his body, provided only that no one else has already occupied or used the same places and goods before him. This ownership of &quot;originally appropriated&quot; places and goods by a person implies his right to use and transform these places and goods in any way he sees fit, provided only that he does not change thereby uninvitedly the physical integrity of places and goods originally appropriated by another person. In particular, once a place or good has been first appropriated by, in [[John Locke]]'s phrase, 'mixing one's labor' with it, ownership in such places and goods can be acquired only by means of a voluntary — contractual — transfer of its property title from a previous to a later owner.&lt;ref name=Hoppe-2002&gt;Hoppe, Hans-Hermann (2002) [http://www.lewrockwell.com/hoppe/hoppe7.html &quot;Rothbardian Ethics&quot;] Retrieved [[23 May]] [[2005]]&lt;/ref&gt;&lt;/blockquote&gt;
53256
53257 {| align=&quot;left&quot; class=&quot;box&quot; style=&quot;margin-right: 15px; text-align: left; border: 3px solid #aaaaaa; padding: 4px; font-size: 85%; width: 240px;&quot;
53258 |bgcolor=&quot;#dbeaff&quot;|
53259 Anarcho-capitalism uses the following terms in ways that may differ from common usage or various anarchist movements::
53260 *'''Anarchism:''' any philosophy that opposes all forms of initiatory coercion (includes opposition to the State)
53261 *'''Contract:''' a voluntary binding agreement between persons
53262 *'''Coercion:''' physical force or threat of such against persons or property
53263 *'''Capitalism:''' economic system where the means of production are privately owned, and where investments, production, distribution, income, and prices are determined through the operation of a free market rather than by government
53264 *'''Free market:''' a market where all decisions regarding transfer of money, goods (including capital goods), and services are voluntary
53265 *'''Fraud:''' inducing one to part with something of value through the use of dishonesty
53266 *'''State:''' an organization that taxes and engages in regularized and instutionalized aggressive coercion
53267 *'''Voluntary:''' any action not influenced by coercion or fraud perpetrated by any human agency
53268 {{see also|Anarcho-capitalist terminology and symbolism}}
53269 |}
53270
53271 This is the root of anarcho-capitalist [[property rights]], and where they differ from [[collectivism|collectivist]] forms of anarchism. Original appropriation allows an individual to claim any &quot;unused&quot; property, including land, and by improving or otherwise using it, own it with the same absolute right as his own body. According to Rothbard, original appropriation of land is not legitimate by merely claiming it or building a fence around it; it is only by ''using'' land — by mixing one's labor with it — that original appropriation is legitimized: &quot;Any attempt to claim a new resource that someone does not use would have to be considered invasive of the property right of whoever the first user will turn out to be.&quot;&lt;ref name=Rothbard-1962&gt;Rothbard, Murray N. (1962) [http://www.mises.org/rothbard/mes/chap2d.asp ''Man, Economy &amp; State with Power and Market''] Ludwig von Mises Institute ISBN 0945466307 ch2 Retrieved [[19 May]] [[2005]]&lt;/ref&gt; As a practical matter, in terms of the ownership of land, anarcho-capitalists recognize that there are few (if any) parcels of land left on Earth whose ownership was not at some point in time transferred as the result of coercion, usually through seizure by some form of state. However, unless records and titles exist to confirm the theft and the rightful individual owner most do not believe that this history de-legitimizes current ownerships which are based on consensual transactions. They believe it is wrong to attempt to remedy past coercion by the use of present coercion (i.e., seizure or eviction).
53272
53273 By accepting an axiomatic definition of private property and property rights, anarcho-capitalists deny the legitimacy of a state on principle:
53274
53275 :&quot;For, apart from ruling out as unjustified all activities such as murder, homicide, [[rape]], trespass, robbery, burglary, theft, and fraud, the [[ethics]] of private property is also incompatible with the existence of a state defined as an agency that possesses a compulsory territorial monopoly of ultimate decision-making (jurisdiction) and/or the right to tax.&quot;&lt;ref name=Hoppe-2002/&gt;
53276
53277 ===The contractual society===
53278 The society envisioned by anarcho-capitalists has been called the ''Contractual Society''; &quot;[...] a society based purely on voluntary action, entirely un­hampered by violence or threats of violence.&quot;&lt;ref name=Rothbard-1962/&gt; Because this system relies on voluntary agreements ([[contract]]s) between individuals as the only legal framework, it is difficult to predict precisely what the particulars of this society would look like. Those particulars are disputed both among anarcho-capitalists and between them and their critics.
53279
53280 One particular ramification is that transfer of property and services must be voluntary on the part of ''both'' parties. No external entities can force an individual to accept or deny a particular transaction. An employer might offer [[insurance]] and [[death benefits]] to [[same-sex marriage|same-sex couples]]; another might refuse to recognize any union outside his or her own faith. Individuals would be free to enter into contractual agreements as they saw fit, allowing discrimination or favoritism based on language, [[race]], [[gender]], [[sexual orientation]], or any other categorization. Anarcho-capitalists maintain that the social structure would be self-regulating, since any disenfranchised group can avail themselves of [[boycott]] or [[protest]], and other entrepreneurs will see their own interests (i.e., profit) in servicing the group.
53281
53282 Another important ramification is the fact that any social structure is permissible under anarcho-capitalism as long as it is formed by a contract between individuals. Therefore, radically different &quot;governments&quot; and subeconomies can form, creating a [[panarchism|panarchic]] society. Individuals could live in a privately owned [[democracy]], a [[republic]], or even a [[monarchy]] if they so choose.
53283
53284 One social structure that is not permissible under anarcho-capitalism is one that attempts to claim greater [[sovereignty]] than the individuals that form it. The state is a prime example, but another is the modern [[corporation]] — defined as a legal entity that exists under a different legal code than individuals as a means to shelter the individuals who own and run the corporation from possible legal consequences of acts by the corporation. It is worth noting that Rothbard allows a narrower definition of a corporation: &quot;Corporations are not at all monopolistic privileges; they are free associations of individuals pooling their capital. On the purely free market, such men would simply announce to their creditors that their liability is limited to the capital specifically invested in the corporation [...].&quot;&lt;ref name=Rothbard-1962/&gt; However, this is a very narrow definition that only shelters owners from debt by creditors that specifically agree to the arrangement; it also does not shelter other [[liability]], such as from malfeasance or other wrongdoing.
53285
53286 There are limits to the right to contract under some interpretations of anarcho-capitalism. Rothbard himself asserts that the right to contract is based in [[inalienable rights|inalienable human rights]],&lt;ref name=Rothbard-1982.2/&gt; and therefore any contract that implicitly violates those rights can be voided at will, which would, for instance, prevent a person from permanently selling himself into [[slavery]]. Other interpretations conclude that banning such contracts would in itself be an unacceptably invasive interference in the right to contract.&lt;ref name=Nozick-1973&gt;[[Robert Nozick|Nozick, Robert]] (1973) ''Anarchy, State, and Utopia''&lt;/ref&gt;
53287
53288 ===Private law and order===
53289 Anarcho-capitalists only believe in collective defense of individual liberty (i.e., courts, military or police forces) insofar as such groups are formed and paid for on an explicitly voluntary basis. According to Molinari, &quot;Under a regime of liberty, the natural organization of the security industry would not be different from that of other industries.&quot;&lt;ref name=Molinari-1849&gt;Molinari, Gustave de (1849) [http://www.gustavedemolinari.org/GM-PS.htm The Production of Security] ''(trans. J. Huston McCulloch)'' Retrieved [[19 May]] [[2005]]&lt;/ref&gt; Proponents point out that private systems of justice and defense ''already'' exist, naturally forming where the market is allowed to compensate for the failure of the state: private arbitration, security guards, neighborhood watch groups, and so on.&lt;ref name=Friedman-1973&gt;[[David Friedman|Friedman, David D.]] (1973) ''[[The Machinery of Freedom|The Machinery of Freedom: Guide to a Radical Capitalism]]'' Harper &amp; Row ISBN 0060910100 [http://www.daviddfriedman.com/Libertarian/Machinery_of_Freedom/MofF_Chapter_29.html ch29]&lt;/ref&gt; These private courts and police are sometimes referred to generically as Private Defense Agencies ([[PDA]]s.)
53290
53291 The defense of those unable to pay for such protection might be financed by charitable organizations relying on voluntary donation rather than by state institutions relying on coercive taxation, or by cooperative self-help by groups of individuals.
53292
53293 [[Retributive justice]], meaning retaliatory force, is often a component of the contracts imagined for an anarcho-capitalist society. Some believe [[prison]]s or [[indentured servitude]] would be justifiable institutions to deal with those who violate anarcho-capitalist property relations, while others believe [[exile]] or forced [[restitution]] are sufficient.&lt;ref&gt;O'Keeffe, Matthew (1989) [http://www.libertarian.co.uk/lapubs/legan/legan005.pdf &quot;Retribution versus Restitution&quot;] Legal Notes No.5, Libertarian Alliance ISBN 1870614224 Retrieved [[19 May]] [[2005]]&lt;/ref&gt;
53294
53295 ===The use of force===
53296 [[Image:Bunkertrumbull.jpg|thumb|300px|right|Many anarcho-capitalists admire the American Revolution and believe it is the only U.S. war that can be justified.]]
53297 The axiom of nonaggression is not necessarily a [[pacifism|pacifist]] doctrine; it is a prohibition against the '''initiation''' of (interpersonal) force. Like classical liberalism, anarcho-capitalism permits the use of force, as long as it is in the defense of persons or property.
53298
53299 However, the permissible extent of this defensive use of force is an arguable point among anarcho-capitalists. Some argue that the initiator of any aggressive act should be subject to a retributive counterattack beyond what is solely necessary to repel the aggression. The counterargument is that such a counterattack is only legitimate insofar as it was defined in an agreement between the parties.
53300
53301 Another controversial application of &quot;defensive&quot; aggression is the act of revolutionary violence against tyrannical regimes. Many anarcho-capitalists admire [[the American Revolution]] as the legitimate act of individuals working together to fight against [[tyranny|tyrannical]] restrictions of their liberties. In fact, according to Murray Rothbard, the American Revolutionary War was the only war involving the United States that could be justified.&lt;ref&gt;Rothbard, Murray N. (1973) [http://www.antiwar.com/orig/rothbard_on_war.html Interview] ''Reason'' Feb 1973, Retrieved [[10 August]] [[2005]]&lt;/ref&gt; But, illustrating their general ambivalence toward war, these same people also sharply criticize the revolutionaries for the means used — taxes, [[conscription]], [[inflation|inflationary money]] — and the inadequacy of the result: a state.
53302
53303 While some anarcho-capitalists believe forceful resistance and revolutionary violence against the state is legitimate, most believe the use of force is a dangerous tool at best, and that violent [[insurrection]] should be a last resort.
53304
53305 ==Conflicts within anarcho-capitalist theory==
53306 There is dispute on whether anarcho-capitalism is properly justifiable on [[deontological]] or [[consequentialist]] grounds. Natural-law anarcho-capitalism (such as that advocated by Rothbard) holds that rights can be determined through natural law and that consequences are not relevant to their determination. Consequentialists such as Friedman disagree, maintaining that rights are merely human constructs that rational humans create through contract as a result of concluding what sort of system leads to the best consequences. Many anarcho-capitalists also hold a subjective theory of rights, maintaining that the lack of a [[positive right]] to aggress is sufficient to hold up the derivative claims of the nonaggression principle.
53307
53308 Friedman describes an economic approach to anarcho-capitalism. His description differs with Rothbard's because it does not use moral arguments — i.e., it does not appeal to a theory of [[natural rights]] to justify itself. In Friedman's work, the economic argument is sufficient to derive the principles of anarcho-capitalism. Private defense or protection agencies and courts not only defend legal rights but supply the actual content of these rights and all claims on the free market. People will have the law system they pay for, and because of [[economic efficiency]] considerations resulting from individuals' utility functions, such law will tend to be libertarian in nature but will differ from place to place and from agency to agency depending on the tastes of the people who buy the law. Also unlike other anarcho-capitalists, most notably Rothbard, Friedman has never tried to deny the theoretical cogency of the neoclassical literature on &quot;market failure,&quot; nor has he been inclined to attack economic efficiency as a normative benchmark.&lt;ref name=Friedman-1973/&gt;
53309
53310 ==Anarchism and anarcho-capitalism==
53311 {{main|Anarchism and anarcho-capitalism}}
53312
53313 ===Dispute over the name &quot;anarchism&quot;===
53314 Many anarchists strongly argue that anarcho-capitalism is not a form of anarchism, since they believe capitalism to be inherently authoritarian. [[Joe Peacott]] has explicitly stated that individualist anarchism is anti-capitalist, and contrasts it to anarcho-capitalism.&lt;ref&gt;[[Joe Peacott|Peacott, Joe]] (2003), [http://www.libertarian.co.uk/lapubs/econn/econn097.htm] Libertarian Alliance ISBN 1856375641&lt;/ref&gt; Individualist anarchist Daniel Burton says that anarcho-capitalism is a &quot;type of individualist anarchism&quot;, but that most individualists are class-war anti-capitalists&lt;ref&gt;[http://www.spaz.org/~dan/individualist-anarchist/ac-vs-ia.html ''Individualist anarchists vs. Anarcho-capitalism'']&lt;/ref&gt;. However, many individualists do not see their philosophy as a &quot;class war&quot; but a war against government repression of ''individual'' liberty.{{fact}} Murray Rothbard argues that an &quot;anarchist society [is] one where there is no legal possibility for coercive aggression against the person or property of any individual.&quot; Whether anarcho-capitalism is a true form of anarchism may depend on the meaning of the words &quot;anarchism&quot; and &quot;capitalism&quot;.
53315
53316 Adherents of the traditional schools of anarchism reject the term &quot;anarcho-capitalism&quot;. They oppose both the [[anti-statist|state]] and [[anti-capitalist|capitalism]] as coercive institutions, since &quot;ÎąÎŊÎąĪĪ‡Î¯Îą&quot; in Greek means &quot;without rulers&quot;. Conversely, many, including capitalist [[libertarians]] and anarcho-capitalists, use the term &quot;anarchism&quot; with a definition that simply means &quot;without the State&quot;.
53317
53318 Also, there is some terminological disagreement regarding &quot;capitalism&quot;. &lt;!-- *** SOURCE GIVEN IS IRRELEVANT, DOES NOT MATCH CLAIM *** According to individualist anarchist Larry Gambone, when the traditional anarchists use the term &quot;capitalism&quot;, they are referring to those who have &quot;gained wealth from the use of governmental power or from privileges granted by government.&quot;&lt;ref&gt;Gambone, Larry (1998) [http://www.spunk.org/texts/pubs/tl/sp001872.html &quot;What is Anarchism?&quot;] ''Total Liberty'' Volume 1 Number 3 Autumn 1998, Retrieved [[10 August]] [[2005]]&lt;/ref&gt; --&gt; According to Wendy McElroy, when traditional individualist anarchists referred to &quot;capitalism&quot; they &quot;meant ''state capitalism'', the alliance of government and business.&quot;&lt;ref&gt;McElroy, Wendy (1999) [http://www.mises.org/fullstory.aspx?control=348&amp;id=74 Anarchism: Two Kinds]&lt;/ref&gt; However, modern individualist anarchists like Gambone believe that capitalism, as they define it, requires the presence of the state in order to function. Therefore, for the individualist anarchist, the concept of rejecting &quot;state capitalism&quot; would be equivalent to rejection of all capitalism.
53319
53320 Hence, anarcho-capitalists depart from individualist anarchists on what constitutes concepts such as the &quot;state&quot;, &quot;capitalism&quot;, and a &quot;free market&quot;. Jamal Hannah says that most anarchists and capitalists agree with the individualists in believing that capitalist economics require a state to defend private wealth.&lt;ref&gt;''Anarchy list&quot;, Hannah, Jamal (Dec 1999)&lt;/ref&gt; Despite disagreeing on whether or not anti-state capitalism is a coherent concept, most anarchists oppose a state and support private defence of wealth.
53321
53322 Morever, the common definition of capitalism has changed over time. Anarchist movements of early origin operated with a definition unlike contemporary definitions. For example, the 1909 [[Century Dictionary]] defined capitalism as &quot;1. The state of having capital or property; possession of capital. 2. The concentration or massing of capital in the hands of a few; also, the power or influence of large or combined capital.&quot; In contrast, the contemporary [[Merriam-Webster]] Dictionary (unabridged) refers to capitalism as &quot;an economic system characterized by private or corporation ownership of capital goods, by investments that are determined by private decision rather than by state control, and by prices, production, and the distribution of goods that are determined mainly in a free market.&quot;
53323
53324 According to [http://www.anarchy.no/ai.html The Anarchist International], capitalism is an economic [[plutocracy]] that includes its own [[hierarchy]]. They place anarcho-capitalism outside of the anarchist movement, and into the classical liberal tradition &quot;[[Plutarchy]] without statism = liberalism.&quot; Some, while accepting that anarcho-capitalism is a radical form of liberalism, question the coherence of such a statement, holding that if [[socialism]] and [[communism]] can have anarchist forms, then liberalism can as well.&lt;ref&gt;Garner, Richard A. (2002) [http://www.againstpolitics.com/market_anarchism/no_bogus_anarchy.htm On Peter Sabatini's &quot;Libertarianism: Bogus Anarchy&quot;] ''Ifeminists Newsletter'' [[May 14]] [[2002]]&lt;/ref&gt; Often, anarchist individualism is regarded as a form of socialism (for example, by individualist anarchists such as E. Armand&lt;ref&gt;Armand, E. (1907), Anarchist Individualism as Life and Activity&lt;/ref&gt;). However, American individualist anarchism is sometimes regarded as a form of &quot;liberal-anarchism.&quot;&lt;ref&gt;Weisbord, Albert (1937) [http://www.weisbord.org/conquest10.htm ''American Liberal-Anarchism''] from ''The Conquest of Power'' (1937)&lt;/ref&gt;&lt;ref&gt;http://www.bkmarcus.com/blog/2004/11/liberal-anarchism.html&lt;/ref&gt;&lt;ref&gt;http://homepage.mac.com/dmhart/ComteDunoyer/Ch1fn.html&lt;/ref&gt; Also, as anarchists by definition favor voluntary interaction, anarcho-capitalists and their opponents disagree on whether certain actions are voluntary (see sidebar for definitions).
53325
53326 Some anarchists espouse a form of [[labor theory of value]], which they put forth as one reason that [[profit]], [[Economic rent|rent]], and [[wage labour]] are [[exploitation|exploitive]]. While classical capitalists such as [[Adam Smith]] also accepted the labor theory of value, most modern economists, including anarcho-capitalists, argue that value is subjective and adhere to [[marginalism]].
53327
53328 ===&quot;Left&quot; and &quot;Right&quot; anarchism===
53329 The divide between anarcho-capitalism and traditional anarchism has been termed as [[left anarchism]] versus [[right anarchism]] by some individuals, such as [[Ulrike Heider]], who placed anarcho-capitalism on the far right.&lt;ref&gt;Heider, Ulrike (1994) [http://www.noblesoul.com/orc/books/other/anarchism.html ''Anarchism: Left, Right, and Green''] City Lights Books ISBN 0872862895 Retrieved [[19 May]] [[2005]]&lt;/ref&gt; Most contemporary anarcho-capitalists reject the standard [[Left-Right politics|linear model of ideologies]] in favor of a multidimensional model with a liberty-authority dimension, though some of their opponents maintain that anarchism itself is a left-wing ideology.
53330
53331 ==History and influences==
53332 [[Image:molinari.jpg|thumb|right|[[Gustave de Molinari]] (1819–1912)]]
53333
53334 ===Liberalism===
53335 {{main|Liberalism}}
53336
53337 Anarcho-capitalist philosophy has been influenced by many sources. The primary influence with the longest history is classical liberalism. Classical liberals have had two main themes since [[John Locke]] first expounded the philosophy: the liberty of man, and limitations of state power. The liberty of man was expressed in terms of [[natural rights]], while limiting the [[state]] was based (for Locke) on a [[consent theory]]. While Locke saw the state as evolving from society via a [[social contract]], later, more radical liberals saw a fundamental schism between society, the &quot;natural&quot; voluntary interactions of men, and state, the institution of brute force.
53338
53339 In the 18th century, liberal revolutionaries in Britain and America had opposed [[statism]] without grounding it in theory, while some French economists had theorized it without endorsing it. In the 19th century, classical liberals led the attack against statism. One notable was [[Frederic Bastiat]] (''The Law''), who wrote, &quot;The state is the great fiction by which everybody seeks to live at the expense of everybody else.&quot; [[Henry David Thoreau]]'s liberalism might be considered evolutionary anarchism, as he wrote, &quot;I heartily accept the motto, 'That government is best which governs least'; and I should like to see it acted up to more rapidly and systematically. Carried out, it finally amounts to this, which also I believe, 'That government is best which governs not at all'; and when men are prepared for it, that will be the kind of government which they will have.&quot;&lt;ref&gt;Thoreau, Henry David (1849) [http://www.cs.indiana.edu/statecraft/civ.dis.html Civil Disobedience]&lt;/ref&gt;
53340
53341 One of the first liberals to discuss the possibility of privatizing protection of individual liberty and property was France's [[Jakob Mauvillon]] in the 18th century. Later, in the 1840s, [[Julius Faucher]] and [[Gustave de Molinari]] advocated the same. Molinari, in his essay ''The Production of Security'', argued, &quot;No government should have the right to prevent another government from going into competition with it, or to require consumers of security to come exclusively to it for this commodity.&quot; Molinari and this new type of anti-state liberal grounded their reasoning on liberal ideals and classical economics. Historian [[Ralph Raico]] asserts what that these liberal philosophers &quot;had come up with was a form of individualist anarchism, or, as it would be called today, anarcho-capitalism or market anarchism.&quot;&lt;ref&gt;Raico, Ralph (2004) [http://www.mises.org/story/1787 ''Authentic German Liberalism of the 19th Century''] Ecole Polytechnique, Centre de Recherce en Epistemologie Appliquee, UnitÊ associÊe au CNRS&lt;/ref&gt; Unlike the liberalism of Locke, which saw the state as evolving from society, the anti-state liberals saw a fundamental conflict between the voluntary interactions of people — society — and the institutions of force — the State. This ''society versus state'' idea was expressed in various ways: natural society vs. artificial society, liberty vs. authority, society of contract vs. society of authority, and industrial society vs. militant society, just to name a few.&lt;ref name=Molinari-1849/&gt; The anti-state liberal tradition in Europe and the United States continued after Molinari in the early writings of [[Herbert Spencer]], as well as in thinkers such as [[Paul Émile de Puydt]] and [[Auberon Herbert]].
53342
53343 Later, in the early 20th century, the mantle of anti-state liberalism was taken by the &quot;[[Old Right]]&quot;. These were minarchist, antiwar, anti-imperialist, and (later) anti-[[New Deal]]ers. Some of the most notable members of the Old Right were [[Albert Jay Nock]], [[Rose Wilder Lane]], [[Isabel Paterson]], [[Frank Chodorov]], [[Garet Garrett]], and [[H. L. Mencken]]. In the 1950s, the new &quot;fusion conservatism&quot;, also called &quot;[[cold war]] conservatism&quot;, took hold of the right wing in the U.S., stressing anti-communism. This induced the libertarian Old Right to split off from the right, and seek alliances with the (now left-wing) antiwar movement, and to start specifically libertarian organizations such as the (U.S.) Libertarian Party.
53344
53345 ===American individualist anarchism===
53346 [[Image:LysanderSpooner.jpg|thumb|left|[[Lysander Spooner]] (1808–87)]]
53347 :''Main articles: [[American individualist anarchism]], [[American individualist anarchism and anarcho-capitalism]]''{{Anarchism}}
53348
53349 Anarcho-capitalism is influenced by the work of the 19th-century American individualist anarchists. Rothbard sought to meld the 19th-century individualist theory with the principles of Austrian economics: &quot;There is, in the body of thought known as 'Austrian economics', a scientific explanation of the workings of the free market (and of the consequences of government intervention in that market) which individualist anarchists could easily incorporate into their political and social Weltanschauung&quot; (''Egalitarianism''). The 19th-century individualist anarchists espoused a labor theory of value, while the anarcho-capitalists adhere to a subjective theory, leading to differences over the legitimacy of [[profit]]. Anarchist historian Peter Marshall believes that anarcho-capitalists selectively interpret individualist anarchists texts, overlooking egalitarian implications. &lt;ref&gt;http://dwardmac.pitzer.edu/dward/newrightanarchocap.html&lt;/ref&gt; However, Marshall may have overlooked that the most noted individualist anarchist Benjamin Tucker explicitly supports the right to inequality in wealth and upholds it as the natural result of liberty&lt;ref&gt;[http://flag.blackened.net/daver/anarchism/tucker/tucker29.html ''Economic Rent'']&lt;/ref&gt;. Tucker did, although, oppose vast concentrations of wealth which he believed were made possible by government intervention which protected monopoly. He believed the most dangerous intervention was the protection of a &quot;banking monopoly&quot; which concentrated capital in the hands of the privileged elite. Though, he also argued that harmful monopolies that were created by government intervention could be maintained in the absence of government protection because of the accumulation of great wealth (see [[predatory pricing]]). Anarcho-capitalists also oppose governmental restrictions on banking. They, like all Austrian economists, believe that monopoly can only come about through government intervention. Most modern individualists, following in the footsteps of historical counterparts, reject capitalism in the sense of government-backed privilege for capital. Individualists anarchists have long argued that monopoly on credit and land interferes with the functioning of a free market economy. Although anarcho-capitalists disagree on the critical topic of [[profit]], both schools of thought agree on other issues. Of particular importance to anarcho-capitalists and the individualists are the ideas of private property, &quot;sovereignty of the individual&quot;, a market economy, and the opposition to [[collectivism]]. In addition, like the individualists, anarcho-capitalists believe that land may be originally appropriated by, and only by, occupation or use; however, most traditional individualists believe it must ''continually'' be in use to retain title. Notable 19th-century American individualist anarchists include [[Lysander Spooner]] and [[Benjamin Tucker]].
53350
53351 Lysander Spooner's articles, such as [http://www.lysanderspooner.org/notreason.htm ''No Treason''] and the [http://www.lysanderspooner.org/LetterToBayard.htm ''Letter to Thomas Bayard''], were widely reprinted in early anarcho-capitalist journals, and his ideas — especially his individualist critique of the state and his defense of the right to ignore or withdraw from it — were often cited by anarcho-capitalists. Spooner was staunchly opposed to government interference in economic matters, and supported a &quot;right to acquire property [...] as one of the natural, inherent, inalienable rights of men [...] one which government has no power to infringe [...]&quot;.&lt;ref&gt;Spooner, Lysander (1843) [http://www.lysanderspooner.org/constitutionallaw.htm ''Constitutional law, Relative to Credit, Currency, and Banking''] Retrieved [[19 May]] [[2005]]&lt;/ref&gt; Like all anarchists, he opposed government regulation: &quot;All legislative restraints upon the rate of interest are arbitrary and tyrannical restraints upon a man's natural capacity amid natural right to hire capital, upon which to bestow his labor.&quot;&lt;ref&gt;Spooner, Lysander (1846) [http://www.lysanderspooner.org/Poverty.htm ''Poverty: Its Illegal Causes and Cure''] Retrieved [[19 May]] [[2005]]&lt;/ref&gt; He was particularly vocal, however, in opposing any collusion between banks and government, and argued that the monopolistic privileges that the government granted to a few bankers were the source of many social and economic ills.
53352
53353 Benjamin Tucker supported private ownership of the product of labor, which he believed entailed a rejection of both collective and capitalist ownership. He was a staunch advocate of the [[mutualist]] form of recompensing labor, which holds to &quot;[[Cost the limit of price]]&quot;. He also advocated a free [[market economy]], which he believed was prohibited by capitalist monopoly of credit and land backed by the state. He believed that anyone who wishes should be allowed to engage in the banking business and issue their private currency without needing special permission from government, and that unused land should not be restricted to those who wished to use it. He believed that if these and other coercive actions were eliminated that profit in economic transactions would be rendered nearly impossible because of increased availability of capital to all individuals and resulting increased competition in business. Accepting the [[labor theory of value]] and the resulting &quot;cost principle&quot; as a premise marks one of mutualism's main conflicts with anarcho-capitalism. Although his self-identification as a socialist and sympathy for the [[labor movement]] led to hostility from some early anarcho-capitalists such as [[Robert LeFevre]], others, such as Murray Rothbard, embraced his critique of the state and claimed that he defined his &quot;socialism&quot; not in terms of opposition to a free market or private property, but in opposition to government privileges for business. However, individualists argue that capitalism cannot be maintained in the absence of the state. For example, Kevin Carson argues, &quot;As a mutualist anarchist, I believe that expropriation of surplus value — i.e., capitalism — cannot occur without state coercion to maintain the privilege of usurer, landlord, and capitalist. It was for this reason that the free market mutualist Benjamin Tucker — from whom right-libertarians selectively borrow — regarded himself as a libertarian socialist.&quot; Tucker characterized the economic demands of Proudhon and Warren by saying, &quot;though opposed to socializing the ownership of capital, they aimed nevertheless to socialize its effects by making its use beneficial to all instead of a means of impoverishing the many to enrich the few [...] Absolute Free Trade; free trade at home, as well as with foreign countries; the logical carrying out of the Manchester doctrine; ''laissez-faire'' the universal rule.&quot;&lt;ref&gt;[[Benjamin Tucker|Tucker, Benjamin]] (1888) [http://praxeology.net/BT-SSA.htm ''State Socialism and Anarchism: How Far They Agree, and Wherein They Differ''] Liberty 5.16, no. 120 ([[10 March]] [[1888]]), pp. 2-3.Retrieved [[20 May]] [[2005]]&lt;/ref&gt;
53354
53355 Anarcho-capitalism is sometimes viewed by those sympathetic to it as a form of individualist anarchism, despite the fact that the original individualist anarchists universally rejected capitalism (i.e., they opposed profit, which is seen as a fundamental characteristic of capitalism). Organizations such as mutualist.org remain dedicated to &quot;free market anticapitalism,&quot; while individualists like [[Larry Gambone]] explicitly state that all capitalism is state capitalism. Nonetheless, anarcho-capitalist Wendy McElroy considers herself to be an individualist, while admitting that the original individualists were universally anticapitalist. In addition, historian Guglielmo Piombini refers anarcho-capitalism as a form of individualist anarchism, though he offers no support for this statement. Collectivist anarchist author Iain McKay and historian Peter Sabatini both argue that anarcho-capitalism is fundamentally opposed to individualist anarchism.
53356
53357 The similarity to anarcho-capitalism in regard to private defense of liberty and property is probably best seen in a quote by 19th-century individualist anarchist [[Victor Yarros]]:
53358
53359 &lt;blockquote&gt;Anarchism means no government, but it does not mean no laws and no coercion. This may seem paradoxical, but the paradox vanishes when the Anarchist definition of government is kept in view. Anarchists oppose government, not because they disbelieve in punishment of crime and resistance to aggression, but because they disbelieve in compulsory protection. Protection and taxation without consent is itself invasion; hence Anarchism favors a system of voluntary taxation and protection.&lt;ref&gt;Yarros, Victor ''Our Revolution; Essays and Interpretations'' p.80&lt;/ref&gt;&lt;/blockquote&gt;
53360
53361 ===The Austrian School ===
53362 {{main|Austrian School}}
53363 [[Image:Murray Rothbard Smile.JPG|thumb|right| [[Murray Rothbard]] (1926–95)]]
53364 The Austrian School of economics was founded with the publication of [[Carl Menger]]'s 1871 book ''[[Principles of Economics]]''. Members of this school approach economics as an ''a priori'' system like logic or mathematics, rather than as an empirical science like geology. It attempts to discover axioms of human action (called &quot;[[praxeology]]&quot; in the Austrian tradition) and make deductions therefrom. Some of these praxeological axioms are:
53365
53366 :*Humans act purposefully.
53367 :*Humans prefer more of a good to less.
53368 :*Humans prefer to receive a good sooner rather than later.
53369 :*Each party to a trade benefits ''[[ex ante]]''.
53370
53371 These are macro-level generalizations, or [[heuristics]], which are true for the many, but not necessarily true for any particular person.
53372
53373 Even in the early days, Austrian economics was used as a theoretical weapon against socialism and statist socialist policy. [[Eugen von BÃļhm-Bawerk]], a colleague of Menger, wrote one of the first critiques of socialism ever written in his treatise ''The Exploitation Theory of Socialism-Communism''. Later, [[Friedrich Hayek]] wrote ''[[The Road to Serfdom]]'', asserting that a [[command economy]] destroys the information function of prices, and that authority over the economy leads to [[totalitarianism]]. Another very influential Austrian economist was [[Ludwig von Mises]], author of the praxeological work ''Human Action''.
53374
53375 Murray Rothbard, a student of Mises, is the man who attempted to meld Austrian economics with classical liberalism and individualist anarchism, and is credited with coining the term &quot;anarcho-capitalism&quot;. He was probably the first to use &quot;libertarian&quot; in its current (U.S.) pro-capitalist sense. He was a trained economist, but also knowledgeable in history and political philosophy. When young, he considered himself part of the [[Old Right]], an anti-statist and anti-[[interventionist]] branch of the [[Republican Party (United States)|U.S. Republican]] party. When interventionist [[cold warrior]]s of the ''[[National Review]]'', such as [[William Buckley]], gained influence in the Republican party in the 1950s, Rothbard quit that group and formed an alliance with [[left-wing]] [[antiwar]] groups. Later, Rothbard was a founder of the U.S. Libertarian Party. In the late 1950s, Rothbard was briefly involved with [[Ayn Rand]]'s [[objectivist philosophy|objectivism]] group, but later had a falling out. Rothbard's books, such as ''[[Man, Economy, and State]]'', ''[[Power and Market]]'', ''The Ethics of Liberty'', and ''For a New Liberty'', are considered by some to be classics of natural law libertarian thought.
53376
53377 ''See also:'' Roberta Modugno Crocetta: [http://www.mises.org/journals/scholar/Modugno.PDF The anarcho-capitalist political theory of Murray N. Rothbard in its historical and intellectual context]
53378 &lt;!-- All this is not cited.
53379 ===Objectivism===
53380 Though [[Ayn Rand]] was opposed to anarcho-capitalism, some anarcho-capitalist and libertarian followers, including Rothbard, see Ayn Rand as one of their most vocal and visible champions. Through her philosophy of [[objectivist philosophy|objectivism]], Rand firmly grounded laissez-faire capitalism on her ethical system of Reason, Self-interest, and Individualism. She, however, explicitly rejected the idea of competing private defense institutions. Some anarcho-capitalists derive much of their philosophical inspirations from Rand's arguments. Rand was adamant that the government did play a necessary and important role in society, that of policing the society, protecting individual rights, and stepping into an aggressor role only in retaliation, self-defense or defense of the country.
53381 --&gt;
53382
53383 ==Anarcho-capitalism in the real world==
53384 [[Image:Law speaker.jpg|300px|right|thumb|[[19th-century]] interpretation of the [[Althing]] in the [[Icelandic Commonwealth]], which authors such as [[David Friedman]] and [[Roderick Long]] believe to have been a functioning anarcho-capitalist society.]]
53385 Anarcho-capitalism is largely theoretical, and even sympathetic critics say that it is unlikely ever to be more than a [[utopian]] ideal. Despite this, some anarcho-capitalist philosophers point to actual societies to support their claim that stateless capitalism can function in practice.
53386
53387 ===Medieval Iceland===
53388 According to [[David Friedman]], &quot;[[Icelandic Commonwealth |Medieval Icelandic institutions]] have several peculiar and interesting characteristics; they might almost have been invented by a mad economist to test the lengths to which market systems could supplant government in its most fundamental functions.&quot;&lt;ref name=Friedman-79&gt;Friedman, David D. (1979) [http://www.daviddfriedman.com/Academic/Iceland/Iceland.html Private Creation and Enforcement of Law: A Historical Case], Retrieved [[12 August]] [[2005]]&lt;/ref&gt; He argues that the Icelandic Commonwealth between 930 and 1262 had some of the features of an anarcho-capitalist society--while there was a single legal system, enforcement of law was entirely private--and so provides some evidence of how such a society would function. &quot;Even where the Icelandic legal system recognized an essentially &quot;public&quot; offense, it dealt with it by giving some individual (in some cases chosen by lot from those affected) the right to pursue the case and collect the resulting fine, thus fitting it into an essentially private system.&quot;&lt;ref name=Friedman-79/&gt;&lt;ref&gt;http://www.gettysburg.edu/academics/english/vikingstudies/jackson/researchdocument.html&lt;/ref&gt;
53389
53390 However, some disagree with this assessment, arguing that Medieval Iceland was a communal rather than individualist society - ''[p]eople of a communitarian nature... have reason to be attracted [to Medieval Iceland]... The economy barely knew the existence of markets. Social relations preceded economic relations. '' &lt;ref&gt;William Ian Miller, &quot;Bloodtaking and Peacemaking: Feud, Law and Society in Saga Iceland&quot;, p. 306&lt;/ref&gt; and that when a free market finally did arise, that it was the cause of the end of the republic - ''&quot;During the 12th century, wealth and power began to accumulate in the hands of a few chiefs, and by 1220, six prominent families ruled the entire country. It was the internecine power struggle among these families, shrewdly exploited by King Haakon IV of Norway, that finally brought the old republic to an end.&quot;'' &lt;ref&gt;Hallberg Hallmundsson, an article on Iceland in the &quot;Encyclopaedia Americana&quot;&lt;/ref&gt;
53391
53392 ===Modern Somalia===
53393 [[Image:Somalia_marketplace_2_DoD.JPG|300px|left|thumb|A marketplace in [[Somalia]], 1992, one year after the collapse of the government. Somalia is cited by some anarcho-capitalists as an example how stateless capitalism is possible.]]
53394 More recently, [[Somalia]] is cited by some as a real-world example of how a stateless capitalist economy and a legal system can develop organically. Since 1991, Somalia as a whole has had no functioning central government, and therefore no regulations or licensing requirements for businesses, and no taxes on businesses or individuals. One World Bank study reports that &quot;it may be easier than is commonly thought for basic systems of finance and some infrastructure services to function where government is extremely weak or absent.&quot;&lt;ref name=WorldBank-2004&gt;Nenova, Tatiana and Harford, Tim (2004) [http://rru.worldbank.org/Documents/PapersLinks/280-nenova-harford.pdf Anarchy and Invention (PDF)] Public Policy Journal Note Number 280, Retrieved [[12 August]] [[2005]]&lt;/ref&gt; Journalist Kevin Sites, after a recent trip to Somalia, reported: &quot;Somalia, though brutally poor, is a kind of libertarian's dream. Free enterprise flourishes, and vigorous commercial competition is the only form of regulation. Somalia has some of the best telecommunications in Africa, with a handful of companies ready to wire home or office and provide crystal-clear service, including international long distance, for about $10 a month.&quot; One of the poorest countries in the world in 1991, Somalia remains a very poor country. However, wealth distribution appears to be more uniform than in other African countries. When extreme poverty was last measured in 1998 (percentage of individuals living on less than PPP$1 a day), it was faring better than wealthier West African and neighboring countries.&lt;ref name=WorldBank-2004/&gt;
53395
53396 In the absence of a state and business regulations the private sector has flourished. One business sector that is said to be doing well is telecommunications. Abdullahi Mohammed Hussein of Telecom Somalia says &quot;The government post and telecoms company used to have a monopoly but after the regime was toppled, we were free to set up our own business&quot; ([http://news.bbc.co.uk/2/hi/africa/4020259.stm according to a BBC report]). Also, in 1989, before the collapse of the government, the national airline had only one airplane. Now there are approximately 15 airlines, over 60 aircraft, 6 international destinations, and more domestic routes. Electricity is now furnished by entrepreneurs, who have purchased generators and divided cities into manageable sectors (''[http://www.somalianarchy.com/viewtopic.php?t=16 photo]''). With the collapse of the central government, the educations system is now private and includes universities such as [[Mogadishu University]]. A World Bank study reports &quot;modest gains in education.&quot; As last measured in 2001, primary school enrollment, which stood at 17%, was nearly at prewar levels, and secondary school enrollment had been increasing since 1998. However, &quot;adult literacy is estimated to have declined from the already low level of 24% in 1989 to 17.1% in 2001&quot; ([http://www-wds.worldbank.org/servlet/WDSContentServer/WDSP/IB/2004/03/25/000112742_20040325090551/Rendered/PDF/282760Somalia0Country0reengagement0note.pdf ''WB study'']). A more recent 2003 study reported that the literacy rate had risen to 19% ([http://rru.worldbank.org/Documents/PapersLinks/280-nenova-harford.pdf ''WB study'']). A statistic from 2000 indicated that only 21% of the population had access to safe drinking water at that time. The impact of collapse of the government and ensuing civil war on human development in Somalia has been profound, resulting in the collapse of political institutions, the destruction of social and economic infrastructure, and massive internal and external migrations.&quot;&lt;ref&gt;World Bank Advisory Committee for Somalia [http://www-wds.worldbank.org/servlet/WDSContentServer/WDSP/IB/2004/03/25/000112742_20040325090551/Rendered/PDF/282760Somalia0Country0reengagement0note.pdf Country Re-Engagement Note (pdf)] (2003), retrived [[4 November]] [[2005]]&lt;/ref&gt;
53397
53398 An essential element of anarcho-capitalist theory is that private businesses should protect individual liberty and property rather than tax-funded institutions. As such, the Somali situation falls short of being anarcho-capitalism as it is it is severely lacking in such options. Though some urban areas such as Mogadishu have private police and are relatively safe&lt;ref&gt;[http://www.netnomad.com/crigler.html ''Return to Somalia'']&lt;/ref&gt;, crime is rampant in other areas according to some [http://news.bbc.co.uk/1/hi/in_depth/africa/2004/somalia/default.stm news reports]. Businessmen in Mogadishu have organized to fund private police that patrol the city streets for petty crime&lt;ref&gt;[http://www.petermaass.com/core.cfm?p=1&amp;mag=51&amp;magtype=1 ''Ayn Rand Comes to Somalia'']&lt;/ref&gt;. There is a rudimentary legal system which has been called &quot;a free market for the supply, adjudication and enforcement of law.&quot;&lt;ref&gt;van Notten, Michael (2000) [http://www.liberalia.com/htm/mvn_stateless_somalis.htm From Nation-State To Stateless Nation: The Somali Experience], Retrieved [[12 August]] [[2005]]&lt;/ref&gt; It remains to be seen if private solutions develop to the point of providing high-quality security.
53399
53400 While most of what was Somalia is a stateless area, two internationally unrecognized democratic states exist in its north. These are [[Somaliland]] and [[Puntland]], which are ruled by governments. These regions lack the armed competition in the more anarchic south, and the destruction this causes. Their people are correspondingly more prosperous on average. This is seen by many as evidence that competition in security should not be allowed.
53401
53402 ==Criticisms of anarcho-capitalism==
53403 :''For critiques of libertarianism in general, see: [[Criticism of libertarianism]]''
53404 :''For critiques of capitalism from an anarchist (libertarian socialist) perspective, see: [[Anarchism and capitalism]]''
53405 :''For the spectrum of political ideologies in relation to capitalism see: [[Capitalism and related political ideologies]]''
53406
53407 Anarcho-capitalism is a radical development of liberalism. Therefore, the same general arguments for and against [[liberalism]], [[laissez-faire capitalism]] and [[capitalism]] apply, excepting those points (such as the justice system) where anarcho-capitalism diverges from the classical liberal tradition.
53408
53409 ===Practical questions===
53410 Critics often assert that anarcho-capitalism will degenerate into [[plutocracy]] or [[feudalism]] in practice. They argue that it is a rational economic decision for organizations with the ability to exert coercion (private police, security and military forces) to exploit groups with less power. In this kind of environment, [[piracy]], military [[imperialism]], and [[slavery]] can be very profitable. Taken to its logical extreme, this argument assumes that allowing such &quot;security&quot; organizations to exert coercive power will inevitably lead to their becoming a ''de facto'' state.
53411
53412 The anarcho-capitalist would respond that in the absence of what they call &quot;victim disarmament&quot; ([[gun control]]), such domination would be expensive even for the most powerful, who would instead prefer peaceful trade with all. Skeptics often feel that anarcho-capitalists rely on &quot;market solutions&quot; to the point of ridiculousness.&lt;ref&gt;Chisari, Michael - &quot;Anarchy List&quot; [[5 October]] [[1999]]&lt;/ref&gt;
53413
53414 [[Image:Battle strike 1934.jpg|300px|thumb|right|Violence on a picket line. Critics of anarcho-capitalism argue that private ownership of capital and the pursuit of profit are exploitative, leading to class divisions and conflict.]]
53415
53416 [[Minarchism|Minarchist]] and [[statism|statist]] critics often argue that the [[free rider problem]] makes anarcho-capitalism (and, by extension, any anti-statist political system) fundamentally unworkable in modern societies. They typically argue that there are some vital goods or services — such as civil or military defense, management of common environmental resources, or the provision of [[public good]]s such as roads or lighthouses — that cannot be effectively delivered without the backing of a government exercising effective territorial control, and so that abolishing the state as anarcho-capitalists demand will either lead to catastrophe or to the eventual re-establishment of monopoly governments as a necessary means to solving the [[coordination problem]]s that the abolition of the state created. One counterargument by free market economists, such as [[Alex Tabarrok]], emphasizes the private use of [[assurance contracts|dominant assurance contracts]]. Some anarcho-capitalists also contend that the &quot;problem&quot; of &quot;public goods&quot; is illusory and its invocation merely misunderstands the potential individual production of such goods. Others, such as David Friedman, point out that problems of market failure are the exception in private markets but the norm in the [http://www.daviddfriedman.com/Academic/mps_iceland_talk/Iceland%20MP%20talk.htm political markets] that control state action.
53417
53418 [[Robert Nozick]] argued in ''Anarchy, State and Utopia'' that anarcho-capitalism would inevitably transform into a minarchist state, even without violating any of its own nonaggression principles, through the eventual emergence of a single locally dominant private defense and judicial agency that it is in everyone's interests to align with, because other agencies are unable to effectively compete against the advantages of the agency with majority coverage. Therefore, he felt that, even to the extent that the anarcho-capitalist theory is correct, it results in an unstable system that would not endure in the real world.
53419
53420 ===Moral questions===
53421 Anarcho-capitalists consider a choice or action to be &quot;voluntary&quot;, in a moral sense, so long as that choice or action is not influenced by coercion or fraud perpetrated by another individual. They also believe that maintaining private property claims is always defensive so long as that property was obtained in a way they believe to be legitimate. Thus, so long as an employee and employer agree to terms, employment is regarded as voluntary regardless of the circumstances of property restriction surrounding it. Some critics say this ignores constraints on action due to both human and nonhuman factors, such as the need for food and shelter, and active restriction of both used and unused resources by those enforcing property claims. Thus, if a person requires employment in order to feed and house himself, it is said that the employer-employee relationship cannot be voluntary, because the employer restricts the use of resources from the employee in such a way that he cannot meet his needs. This is essentially a semantic argument over the term &quot;voluntary&quot;. Anarcho-capitalists simply do not use the term in that latter sense in their philosophy, believing that sense to be morally irrelevant. Other critics argue that employment is involuntary because the distributions of wealth that make it necessary for some individuals to serve others by way of contract are supported by the enforcement of coercive private property systems. This is a deeper argument relating to [[distributive justice]]. Some of these critics appeal to an end-state theory of justice, while anarcho-capitalists (and [[propertarian]]s in general) appeal to an entitlement theory. Other critics regard private property itself to either be an aggressive institution or a potentially aggressive one, rather than necessarily a defensive one, and thus reject claims that relationships based on unequal private property relations could be &quot;voluntary&quot;.
53422
53423 Critics also point out that anarcho-capitalist ethics do not entail any positive moral obligation to help others in need (see ''[[altruism]]'', the ethical doctrine). Like other [[right libertarianism|right libertarians]], anarcho-capitalists may argue that no such moral obligation exists or argue that if a moral obligation to help others does exist that there is an overarching moral obligation to refrain from initiating coercion on individuals to enforce it. Anarcho-capitalists believe that helping others should be a matter of free personal choice, and do not recognize any form of social obligation arising from an individual's presence in a society. They, like all right libertarians, believe in a distinction between negative and positive rights in which [[negative rights]] should be recognized as being legitimate, and [[positive rights]] rejected. Critics often dismiss this stance as being unethical or selfish, or reject the legitimacy of the distinction between positive and negative rights. (Critics thereby redefine selfish to not include forcing other people to do what you want and disregarding the wishes of others.)
53424
53425 [[Property]] ownership rights and their extent are a source of contention among different philosophies. Most see the rights as less absolute than anarcho-capitalists do. The main issues are what kinds of things are valid property, and what constitutes abandonment of property. The first is contentious even among anarcho-capitalists: there is disagreement over the validity of intellectual property&lt;ref&gt;McElroy, Wendy (1995) [http://www.libertarian.co.uk/lapubs/libhe/libhe014.htm Intellectual Property:The Late Nineteenth Century Libertarian Debate] Libertarian Heritage No. 14 ISBN 1856372812 Retrieved [[24 June]] [[2005]]&lt;/ref&gt; — intangible goods that are not economically scarce. Some supporters of private property but critics of anarcho-capitalism may question whether unused land is valid property ([[Agorism]], [[Georgism]], [[geolibertarianism]], [[individualist anarchism]]). The second issue is a common objection among socialists who do not believe in absentee ownership. Anarcho-capitalists have strong abandonment criteria — one maintains ownership (more or less) until one agrees to trade or gift it. The critics of this view tend to have weaker abandonment criteria; for example, one loses ownership (more or less) when one stops personally using it. Also, the idea of original appropriation is anathema to most types of [[socialism]], as well as any philosophy that takes common ownership of land and [[natural resources]] as a premise. There are also philosophies that view any ownership claims on land and natural resources as immoral and illegitimate, thus rejecting anarcho-capitalism as a philosophy that takes private ownership of land as a premise.
53426
53427 [[Utilitarianism|Utilitarian]] critics simply argue that anarcho-capitalism does not maximize utility, contending that it would fall far short of that goal. This kind of criticism comes from a variety of different political views and ideologies, and different critics have different views on which other system does or would do a better job of bringing the greatest benefits to the greatest number of people. Anarcho-capitalists consider the nonaggression axiom to be a &quot;side-constraint&quot; on civilized human action&lt;ref name=Nozick-1973/&gt;, or a necessary condition for human society to be beneficial ([[Herbert Spencer]], Murray Rothbard), and thus should not be used as a trade-off for vague utilitarian values. Another response, implied by [[Austrian economics]], is to argue that personal utility is not an [[additive]] quantity, therefore concluding that all utilitarian arguments, which invariably rely on aggregation of personal utilities, are logically and mathematically invalid.
53428
53429 ==Anarcho-capitalist literature==
53430 {{main|Anarcho-capitalist literature}}
53431
53432 ===Nonfiction===
53433 The following is a partial list of notable nonfiction works discussing anarcho-capitalism.
53434 *[[Murray Rothbard]] Father of modern anarcho-capitalism:
53435 **''[http://www.mises.org/rothbard/mes.asp Man, Economy, and State]'' The ultimate Austrian economics book,
53436 **''[http://www.mises.org/rothbard/mes.asp Power and Market]'' Classification of State economic interventions,
53437 **''[http://www.mises.org/rothbard/ethics/ethics.asp The Ethics of Liberty]'' Moral justification of a free society
53438 *[[Frederic Bastiat]], ''[http://www.ozarkia.net/bill/anarchism/library/thelaw.html The Law]'' Radical classical liberalism
53439 *Davidson &amp; Rees-Mogg, ''The Sovereign Individual'' Historians look at technology &amp; implications
53440 *[[David Friedman]], ''[[The Machinery of Freedom]]'' Classic utilitarian defense of anarchism
53441 *[[Auberon Herbert]], ''[http://oll.libertyfund.org/ToC/0146.php The Right and Wrong of Compulsion by the State]''
53442 *[[Albert Jay Nock]], ''[http://www.barefootsworld.net/nockoets0.html Our Enemy the State]'' Oppenheimer's thesis applied to early US history
53443 *Juan Lutero Madrigal, ''[http://www.geocities.com/johnfkosanke/anc_capm.htm anarcho-capitalism: principles of civilization]''
53444 *[[Franz Oppenheimer]], ''[http://www.opp.uni-wuppertal.de/oppenheimer/st/state0.htm The State]'' Analysis of State; political means vs. economic means
53445 *[[Robert Nozick]], ''Anarchy, State, and Utopia'' Academic philosopher on libertarianism
53446 *[[Herbert Spencer]], ''[http://oll.libertyfund.org/Texts/LFBooks/Spencer0236/SocialStatics/0331_Bk.html Social Statics]'' Includes the essay &quot;The Right to Ignore the State&quot;
53447 *Morris &amp; Linda Tannahill, ''The Market for Liberty'' Classic on PDAs (private defense agencies)
53448
53449 ===Fiction===
53450 Anarcho-capitalism has been examined in certain works of literature, particularly [[science fiction]]. an example being [[Robert A. Heinlein]]'s 1966 novel ''[[The Moon Is a Harsh Mistress]]'', where he explores what he terms &quot;rational anarchism.&quot;
53451
53452 ==Notes==
53453 &lt;div style=&quot;font-size: 85%&quot;&gt;
53454 &lt;references/&gt;
53455 &lt;/div&gt;
53456
53457 ==References==
53458 * [[Bruce Benson|Benson, Bruce]]: ''[[The Enterprise of Law: Justice Without The State]]''
53459 * Hart, David M.: [http://homepage.mac.com/dmhart/Molinari/ Gustave de Molinari and the Anti-Statist Liberal Tradition] Retrieved [[14 September]] [[2005]]
53460 * [[Hans-Hermann Hoppe|Hoppe, Hans-Hermann]]: ''[[A Theory of Socialism and Capitalism]]''
53461 * [[Hans-Hermann Hoppe|Hoppe, Hans-Hermann]]: ''[[Democracy: The God That Failed]]''
53462 * [[Murray Rothbard|Rothbard, Murray]]: ''[[For a New Liberty]]: The Libertarian Manifesto''
53463 * [[Murray Rothbard|Rothbard, Murray]]: ''[[The Ethics of Liberty]]''
53464 * [[Lysander Spooner|Spooner, Lysander]]: (1867) [http://www.lysanderspooner.org/notreason.htm ''No Treason: The Constitution of No Authority''] Retrieved [[19 May]] [[2005]]
53465 * Tannehill, Linda and Morris: ''[[The Market For Liberty]]''
53466 * [[Benjamin Tucker|Tucker, Benjamin]]: (1888) [http://praxeology.net/BT-SSA.htm ''State Socialism and Anarchism:How Far They Agree, and Wherein They Differ''] Liberty 5.16, no. 120 ([[10 March]] [[1888]]), pp. 2-3.Retrieved [[20 May]] [[2005]]
53467 * [[Benjamin Tucker|Tucker, Benjamin]]: (1926) [http://flag.blackened.net/daver/anarchism/tucker/tucker37.html ''Labor and its Pay''] Retrieved [[20 May]] [[2005]]
53468 * [[Michael van Notten|Van Notten, Michael]]: [http://home.arcor.de/danneskjoeld/X/Som/indenwr1.htm ''The Law of the Somalis''], 2005
53469
53470 ==See also==
53471 ===Books===
53472 *[[Murray Rothbard]] Father of modern anarcho-capitalism:
53473 **''[http://www.mises.org/rothbard/mes.asp Man, Economy, and State]'' The ultimate Austrian economics book,
53474 **''[http://www.mises.org/rothbard/mes.asp Power and Market]'' Classification of State economic interventions,
53475 **''[http://www.mises.org/rothbard/ethics/ethics.asp The Ethics of Liberty]'' Moral justification of a free society
53476 *[[Frederic Bastiat]], ''[http://www.ozarkia.net/bill/anarchism/library/thelaw.html The Law]'' Radical classical liberalism
53477 *Davidson &amp; Rees-Mogg, ''The Sovereign Individual'' Historians look at technology &amp; implications
53478 *[[David Friedman]], ''[[The Machinery of Freedom]]'' Classic utilitarian defense of anarchism
53479 *[[Auberon Herbert]], ''[http://oll.libertyfund.org/ToC/0146.php The Right and Wrong of Compulsion by the State]''
53480 *[[Albert Jay Nock]], ''[http://www.barefootsworld.net/nockoets0.html Our Enemy the State]'' Oppenheimer's thesis applied to early US history
53481 *Juan Lutero Madrigal, ''[http://www.geocities.com/johnfkosanke/anc_capm.htm anarcho-capitalism: principles of civilization]''
53482 *[[Franz Oppenheimer]], ''[http://www.opp.uni-wuppertal.de/oppenheimer/st/state0.htm The State]'' Analysis of State; political means vs. economic means
53483 *[[Robert Nozick]], ''Anarchy, State, and Utopia'' Academic philosopher on libertarianism
53484 *[[Herbert Spencer]], ''[http://oll.libertyfund.org/Texts/LFBooks/Spencer0236/SocialStatics/0331_Bk.html Social Statics]'' Includes the essay &quot;The Right to Ignore the State&quot;
53485 *Morris &amp; Linda Tannahill, ''The Market for Liberty'' Classic on PDAs (private defense agencies)
53486
53487 ===Related subjects===
53488 * [[Anarcho-capitalist literature]]
53489 * [[Anarcho-capitalist terminology and symbolism]]
53490 * [[Classical liberalism]]
53491 * [[Digital gold bug]]
53492 * [[Crypto-anarchism]]
53493 * [[Free market]]
53494 * [[Liberalism]]
53495 * [[Libertarianism]]
53496 * [[Market liberalism]]
53497 * [[Polycentric law]]
53498 * [[Private currency]]
53499
53500 ===General===
53501 * [[Anarchism]]
53502 * [[Anarchist law]]
53503 * [[Libertatia]]
53504 * [[Statism]]
53505
53506 ==External links==
53507 ===Anarcho-capitalist websites===
53508 * [http://www.anarchism.net/anarchism_anarchismcapitalismandanarchocapitalism.htm ''Anarchism, Capitalism, and Anarcho-Capitalism''] from anarchism.net
53509 * [http://home.arcor.de/danneskjoeld/ Ancapistan Network] comes with an ancap start-up, articles and links
53510 * [http://www.anti-state.com/ anti-state.com], has one of the more active forums and infrequent theoretical and practical articles, and hosts [http://www.anti-state.com/article.php?article_id=375 ''Private Property Anarchists and Anarcho-Socialists: Can We Get Along?''] by Gene Callahan
53511 * [http://lemennicier.bwm-mediasoft.com/index.php?none=1&amp;&amp;limba=en Bertrand Lemennicier], a renowned French anarcho-capitalist economist
53512 * [http://www.cuthhyra.pwp.blueyonder.co.uk/ Cuthhyra] is a resource promoting anarcho-capitalism through essays, humour, quotes, links and more.
53513 * [http://www.catallarchy.net/blog Catallarchy]
53514 * Bryan Caplan's [http://www.gmu.edu/departments/economics/bcaplan/anarfaq.htm &quot;Anarchism Theory FAQ&quot;] is written from the perspective of an anarcho-capitalist.
53515 * [http://www.lewrockwell.com/ LewRockwell.com] is a widely read paleolibertarian news site, it also hosts [http://www.lewrockwell.com/kinsella/kinsella15.html ''What It Means To Be an Anarcho-Capitalist''] by Stephan Kinsella and [http://www.lewrockwell.com/block/block26.html &quot;The Non-Aggression Axiom of Libertarianism&quot;] by Walter Block
53516 * [http://www.geocities.com/vonchloride/anarchist-jesus.pdf &quot;Jesus Is an Anarchist (A free-market, libertarian anarchist, that is—otherwise what is called an anarcho-capitalist)&quot; by James Redford, [[November 9]] [[2005]]] (pdf), an article on the congruence of Jesus's biblical teachings and anarcho-capitalism
53517 * [http://praxeology.net/molinari.htm The Molinari Institute]
53518 * [http://www.mises.org/content/mnr.asp A Legacy of Liberty] and [http://www.mises.org/rothbard/newlibertywhole.asp ''For a New Liberty: The Libertarian Manifesto''] by Murray N. Rothbard
53519 * [http://www.panarchy.org/ Panarchy], another way of considering things that is considered by some ultimately equivalent to anarcho-capitalism.
53520 * [http://www.liberalia.com/ Liberalia], an anarcho-capitalist site
53521 * [http://www.blackcrayon.com/essays/intro/ A Brief Introduction to Philosophical Anarchism] from the viewpoint of an anarcho-capitalist
53522 * [http://samizdata.net/blog/ Samizdata] is a group blog by &quot;...a varied group [ that includes ] wild-eyed anarcho-capitalists&quot;
53523 * [http://www.sovereignlife.com/kickstart.html Sovereign Life] and [http://www.sovereignlife.com/sovereign-individual.html Sovereign Individual] at Sovereignlife.com
53524 * [http://www.strike-the-root.com/ Strike The Root] is an anarcho-capitalist news site with an atheistic slant.
53525 * [http://www.bureaucrash.com Bureaucrash]
53526 * [http://www.spaz.org/~dan/ias/index.html Individualist Anarchist Society at UC Berkeley]
53527 * [http://members.aol.com/VFTfiles/thesis/summary01.htm ''A Calvinist Defense of Anarcho-capitalism''] Argues that the Christian Bible supports anarcho-capitalism
53528 * [http://anarcap.blogspot.com Anarcho-Capitalism] Lifestyle guide for Anarcho-capitalists
53529 * [http://www.sumitdahiya.com/ Sumit Dahiya] &quot;The home of the Anti-Government Pro-Enterprise Movement of India&quot;
53530
53531 ===Criticisms===
53532 * [http://www.infoshop.org/faq/secFcon.html Section F - Is &quot;anarcho&quot;-capitalism a type of anarchism?] - &quot;An Anarchist FAQ&quot; from [[Infoshop.org]]
53533 * [http://www.anarchy.no/ai.html The Anarchist International Website] Retrieved [[20 May]] [[2005]]
53534 * [http://members.aol.com/_ht_a/anarchist817/anarcho_capitalism.html#top Anarcho-Capitalism Sucks!] - a collection of links to anti-anarcho-capitalist resources.
53535 * [http://www.spaz.org/~dan/individualist-anarchist/ac-vs-ia.html Anarcho-Capitalism vs. Individualist Anarchism]
53536 * Jeff Draughn's [http://www.geocities.com/CapitolHill/5065/between.html Between Anarchism and Libertarianism: Defining a New Movement] is a contemporary left anarchist critique of anarcho-capitalism
53537 * [http://anarchism.www7.50megs.com/10.html A critique of anarcho-capitalist claims to anarchist tradition]
53538 * [http://world.std.com/~mhuben/libindex.html The &quot;Critiques Of Libertarianism&quot; website] contains critiques of both libertarianism and anarcho-capitalism.
53539 *[http://directory.google.com/Top/Society/Politics/Liberalism/Libertarianism/Anarcho-Capitalism/Opposing_Views/ Collection of critical articles]
53540 * [http://www.spunk.org/library/otherpol/critique/sp001279.txt Ecology or &quot;anarcho&quot; capitalism] by Ian MacSaorsa
53541 * [http://www.zmag.org/chomsky/interviews/9612-anarchism.html Interview with Noam Chomsky] in which he discusses anarcho-capitalism
53542 * [http://a4a.mahost.org/huckster.html Anarcho-Hucksters]
53543 * [http://dwardmac.pitzer.edu/dward/newrightanarchocap.html The New Right and Anarcho-capitalism] from Chapter 36 of &quot;Demanding the Impossible: A History of Anarchism&quot; by Peter Marshall
53544
53545 ===Criticisms by other radical capitalists===
53546 * Robert J. Binidotto's [http://www.vix.com/objectivism/Writing/RobertBidinotto/ContradictionInAnarchism.html The Contradiction in Anarchism]
53547 * Paul Birch's [http://www.paulbirch.net/AnarchoCapitalism1.html A Fatal Instability in Anarcho-Capitalism?] and [http://www.paulbirch.net/AnarchoCapitalism2.html Anarcho-Capitalism Dissolves into City States]
53548 * Tony Hollick's [http://www.la-articles.org.uk/FL-2-2-3.pdf Impossibility of anarcho-capitalism]
53549 * Capitalism.org's [http://capitalism.org/faq/anarchism.htm rejection of the anarchist title]
53550 * [http://www.peikoff.com/opar/anarchism.htm A short selection] by [[Leonard Peikoff]], [[Ayn Rand]]'s intellecutal heir, concerning anarchism
53551 * [http://www.fahayek.org/index.php?option=com_content&amp;task=view&amp;id=693&amp;Itemid=1 ''The Anarcho-Libertarian Utopia — A Critique''] by Drieu Godefridi (Hayek Institute)
53552
53553 ===Other===
53554 * [http://www.lewrockwell.com/orig6/molyneux1.html''How can anarcho-capitalism function''] , by [[Stefan Molyneux]]
53555 * [http://www.lewrockwell.com/orig6/molyneux4.html''Disproving the state''], by [[Stefan Molyneux]]
53556 * [http://64.233.161.104/search?q=cache:Y6b4hmt1RicJ:rru.worldbank.org/PapersLinks/Open.aspx ''Anarchy and Invention: How Does Somalia's Private Sector Cope Without Government?''] Something resembling rudimentary anarcho-capitalism is developing organically in Somalia
53557 * [http://news.bbc.co.uk/2/hi/africa/4020259.stm ''Telecoms thriving in lawless Somalia''] Somali telecommunications infrastructure without government.
53558 * [http://www.somalianarchy.com SomaliAnarchy - &quot;Defending and Celebrating Somalis' Freedom and Prosperity&quot;] Forum and news source for discussion of real-world approximation of anarcho-capitalism now functioning in [[Somalia]]
53559 * [http://www.mises.org/journals/jls/3_1/3_1_2.pdf ''The American Experiment in Anarcho-Capitalism: The Not so Wild, Wild, West''] Anarcho-capitalism in the old &quot;Wild West&quot; in the U.S.
53560 * [http://www.independent.org/issues/article.asp?id=10 ''American Anarchism''] 19th Century Individualist Anarchists influence on Anarcho-Capitalism
53561 * [http://www.weisbord.org/conquest10.htm American Liberal-Anarchism] from ''The Conquest of Power'', by Albert Weisbord
53562 * [http://www.isil.org/resources/introduction.html The Philosophy of Liberty] (animated)
53563 * [http://www.buildfreedom.com/economic/eco_4.html ''Economic Means to Freedom - Part IV: 25 Anarcho-Capitalist Things You Can Do Now!''], by [http://www.FrederickMann.org/ ''Frederick Mann'']
53564 * [http://spoirier.lautre.net/trick.html The liberal theory of power] : a solution to complete anarcho-capitalism with effective solutions to the public good problem and to practical implementation ; it is planned to be implemented by software on the web.
53565 * Peter Sabatini's [http://www.spunk.org/library/otherpol/critique/sp000713.txt Libertarianism: Bogus Anarchy]
53566 * [http://www.againstpolitics.com/market_anarchism/no_bogus_anarchy.htm ''On Peter Sabatini's &quot;Libertarianism: Bogus Anarchy&quot;''] by Richard A. Gardner
53567 * [http://freeweb.supereva.com/super.freeweb/libertarian/en/anarcho.htm?p ''Per l'Anarco-Capitalismo''] by Guglielmo Piombini
53568 * [http://216.239.51.104/u/Mises?q=cache:pRIqRC_6Nz8J:www.mises.org/journals/scholar/Modugno.PDF ''The anarcho-capitalist political theory of Murray N. Rothbard in its historical and intellectual context] by Roberta Modugno Crocetta
53569
53570 == Anarcho-capitalist pod-casts ==
53571 * [http://www.podfeed.net/category_item.asp?id=3476''Freedomain radio''], by [[Stefan Molyneux]]
53572
53573 == Anarcho-capitalist blogs ==
53574 * [http://www.lewrockwell.com''Lewrockwell'']
53575 * [http://freedomain.blogspot.com''Stefan Molyneyux'']
53576 * [http://www.bkmarcus.com/blog/''Lowercase liberty'']
53577 * [http://www.strike-the-root.com''Paul Murphy and others'']
53578
53579 [[Category:Anarchism]]
53580 [[Category:Libertarianism]]
53581 [[Category:Political movements]]
53582 [[Category:Political theories]]
53583 [[Category:Economic ideologies]]
53584
53585 {{Link FA|eo}}
53586
53587 {{featured article}}
53588
53589 [[ca:Anarcocapitalisme]]
53590 [[da:Anarko-kapitalisme]]
53591 [[de:Anarchokapitalismus]]
53592 [[et:Anarhokapitalism]]
53593 [[es:Anarco-capitalismo]]
53594 [[eo:Anarki-kapitalismo]]
53595 [[fr:Anarcho-capitalisme]]
53596 [[ko:ė•„나키ėžëŗ¸ėŖŧė˜]]
53597 [[io:Anarkio-kapitalismo]]
53598 [[it:Anarco-capitalismo]]
53599 [[nl:Anarcho-kapitalisme]]
53600 [[pl:Anarchokapitalizm]]
53601 [[pt:Anarco-capitalismo]]
53602 [[fi:Anarkokapitalismi]]
53603 [[sv:Anarkokapitalism]]
53604 [[zh:į„Ąæ”ŋåēœčŗ‡æœŦä¸ģįžŠ]]</text>
53605 </revision>
53606 </page>
53607 <page>
53608 <title>Anarcho-capitalists</title>
53609 <id>1026</id>
53610 <revision>
53611 <id>15899532</id>
53612 <timestamp>2002-04-06T13:52:55Z</timestamp>
53613 <contributor>
53614 <username>Bryan Derksen</username>
53615 <id>66</id>
53616 </contributor>
53617 <minor />
53618 <comment>redirect</comment>
53619 <text xml:space="preserve">#REDIRECT [[anarcho-capitalism]]
53620 </text>
53621 </revision>
53622 </page>
53623 <page>
53624 <title>August 9</title>
53625 <id>1027</id>
53626 <revision>
53627 <id>41932073</id>
53628 <timestamp>2006-03-02T18:38:20Z</timestamp>
53629 <contributor>
53630 <ip>213.153.42.89</ip>
53631 </contributor>
53632 <comment>/* Events */</comment>
53633 <text xml:space="preserve">{| style=&quot;float:right;&quot;
53634 |-
53635 |{{AugustCalendar}}
53636 |-
53637 |{{ThisDateInRecentYears|Month=August|Day=9}}
53638 |}
53639 '''August 9''' is the 221st day of the year in the [[Gregorian Calendar]] (222nd in [[leap year]]s), with 144 days remaining.
53640
53641 ==Events==
53642 *[[48 BC]] - [[Roman Civil War]]: [[Battle of Pharsalus]] - [[Julius Caesar]] decisively defeats [[Pompey]] at [[Pharsalus]] and Pompey flees to [[Ancient Egypt|Egypt]].
53643 *[[378]] - [[Battle of Adrianople (378)|Battle of Adrianople]]: A large [[Roman Empire|Roman]] army led by Emperor [[Valens]] is defeated by the [[Visigoths]] in present-day [[Turkey]]. Valens is killed along with 2/3 of his army.
53644 *[[681]] - [[Bulgaria]] is founded as a [[Khanate]] on the south bank of the [[Danube]], after defeating the [[Byzantine Empire|Byzantine]] armies of Emperor [[Constantine IV]] south of the [[Danube]] delta.
53645 *[[1048]] - [[Pope]] [[Damasus II]] dies in [[Rome]], after reigning for only 23 days.
53646 *[[1173]] - Construction of the (Leaning) [[Tower of Pisa]] begins, and it takes two centuries to complete.
53647 *[[1483]] - Opening of the [[Sistine Chapel]]
53648 *[[1842]] - [[Webster-Ashburton Treaty]] is signed, establishing the [[United States]]-[[Canada]] border east of the [[Rocky Mountains]].
53649 *[[1862]] - [[American Civil War]]: [[Battle of Cedar Mountain]] - At [[Cedar Mountain, Virginia]], [[Confederate States of America|Confederate]] General [[Thomas J. Jackson|Stonewall Jackson]] narrowly defeats [[United States|Union]] forces under General [[John Pope (military officer)|John Pope]].
53650 *[[1877]] - [[Indian Wars]]: [[Battle of Big Hole]] - A small band of [[Nez PercÊ]] Indians clash with the [[United States Army]].
53651 *[[1892]] - [[Thomas Edison]] receives a [[patent]] for a two-way [[Telegraphy|telegraph]].
53652 *[[1902]] - [[Edward VII of the United Kingdom|Edward VII]] is crowned king of the [[United Kingdom]].
53653 *[[1936]] - [[1936 Summer Olympics]]: [[Jesse Owens]] wins his fourth [[gold medal]] at the games becoming the first American to win four medals in one [[Olympics]].
53654 *[[1942]] - [[India]]n leader, [[Mohandas Gandhi]] is arrested in [[Bombay]] by [[United Kingdom|British]] forces, launching the [[Quit India Movement]].
53655 *[[1944]] - The [[United States Forest Service]] and the [[Wartime Advertising Council]] release posters featuring [[Smokey the Bear]] for the first time.
53656 *[[1945]] - [[World War II]]: An [[atomic bomb]] is dropped on the city of [[Nagasaki]], [[Japan]] killing an estimated 70,000-90,000.
53657 *[[1965]] - [[Singapore]] seceded from the newly-formed Federation of Malaysia.
53658 *1965 - [[Space disasters]]: A fire at a Titan missile base near [[Little Rock, Arkansas]] kills 53 construction workers.
53659 *[[1967]] - [[Vietnam War]]: [[Operation Cochise]] initiated - [[United States Marines]] begin a new operation in the [[Que Son Valley]].
53660 *[[1969]] - Members of a [[cult]] led by [[Charles Manson]] murder five people.
53661 *[[1974]] - [[Richard Nixon]] becomes the first [[President of the United States]] to resign from office. His [[Vice President of the United States of America|Vice President]], [[Gerald Ford]], becomes president.
53662 *[[1983]] - [[Peter Jennings]] hosts his first broadcast of [[American Broadcasting Company|ABC]]'s [[ABC World News Tonight|World News Tonight]] as sole anchor.
53663 *[[1986]] - The [[Headington Shark]] is erected in [[Oxford]].
53664 *[[1987]] - 9 people are shot dead and 17 more injured as 19-year old Julian Knight opens fire at random in the [[Hoddle Street Massacre]] in Clifton Hill
53665 *[[1988]] - [[Wayne Gretzky]] is traded from the [[Edmonton Oilers]] to the [[Los Angeles Kings]] in one of the most controversial transactions in [[ice hockey|hockey]] history.
53666 *[[1989]] - [[Kaifu Toshiki]] becomes [[Prime Minister of Japan]].
53667 *[[1993]] - The [[Liberal Democratic Party (Japan)|Liberal Democratic Party of Japan]] loses a 38-year hold on national leadership.
53668 *1993 - King [[Albert II of Belgium|Albert II]] of [[Belgium]] is sworn into office.
53669 *[[1995]] - [[Netscape Communications Corporation|Netscape]] launches IPO.
53670 *[[1999]] - [[Russia]]n President [[Boris Yeltsin]] fires his Prime Minister, [[Sergei Stepashin]], and for the fourth time fires his entire cabinet.
53671 *1999 - The [[Diet of Japan]] enacts a law establishing the [[Flag of Japan|Hinomaru]] and [[Kimi Ga Yo]] as the official [[national flag]] and [[national anthem]].
53672 *[[2000]] - A [[The New Piper Aircraft|Piper]] Navajo and a Piper Seminole collide in mid-air over a housing development in [[Burlington, New Jersey]], killing 11
53673 *[[2001]] - US President [[George W. Bush]] announces his support for federal funding of limited research on embryonic [[stem cell]]s.
53674 *2001 - In [[Jerusalem]], 15 people die and 130 wounded in the [[Sbarro restaurant suicide bombing]].
53675 *[[2005]] - [[STS-114|Space Shuttle ''Discovery'']] makes successful touchdown at [[Edwards Air Force Base]], [[California]]
53676
53677 ==Births==
53678 *[[1201]] - [[Arnold Fitz Thedmar]], English chronicler (d. [[1274]])
53679 *[[1593]] - [[Izaak Walton]], English angler (d. [[1683]])
53680 *[[1631]] - [[John Dryden]], English [[Poet Laureate]] (d. [[1700]])
53681 *[[1648]] - [[Johann Michael Bach]], German composer (d. [[1694]])
53682 *[[1653]] - [[John Oldham (poet)|John Oldham]], English poet (d. [[1683]])
53683 *[[1674]] - [[FrantiÅĄek MaxmiliÃĄn Kaňka]], Czech architect (d. [[1766]])
53684 *[[1722]] - [[Augustus William, Prince of Prussia]] (d. [[1758]])
53685 *[[1726]] - [[Francesco Cetti]], Italian Jesuit scientist (d. [[1778]])
53686 *[[1757]] - [[Thomas Telford]], Scottish civil engineer (d. [[1834]])
53687 *[[1776]] - [[Amedeo Avogadro]], Italian chemist (d. [[1856]])
53688 *[[1797]] - [[Charles Robert Malden]], British naval officer (d. [[1855]])
53689 *[[1805]] - [[Joseph Locke]], English railway and civil engineer (d. [[1860]])
53690 *[[1845]] - [[Brother Andre]], Canadian religious figure (d. [[1937]])
53691 *[[1871]] - [[Leonid Andreyev]], Russian writer (d. [[1919]])
53692 *[[1872]] - [[Joseph August, Archduke of Austria]], Austrian field marshal (d. [[1962]])
53693 *[[1874]] - [[Reynaldo Hahn]], Venezuelan composer and conductor (d. [[1947]])
53694 *[[1896]] - [[Jean Piaget]], Swiss psychologist (d. [[1980]])
53695 *1896 - [[Lev Vygotsky]], Russian psychologist (d. [[1934]])
53696 *1896 - [[Erich HÃŧckel]], German physicist (d. [[1980]])
53697 *[[1899]] - [[P. L. Travers]], Australian author (d. [[1996]])
53698 *[[1902]] - [[Zino Francescatti]], French violinist (d. [[1991]])
53699 *[[1909]] - [[Adam von Trott zu Solz]], German diplomat opposing the Nazi regime (executed) (d. [[1944]])
53700 *[[1911]] - [[William Alfred Fowler]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1996]])
53701 *[[1914]] - [[Tove Jansson]], Finnish author (d. [[2001]])
53702 *[[1919]] - [[Joop den Uyl]], [[Prime Minister of the Netherlands]] (d. [[1987]])
53703 *1919 - [[Ralph Houk]], baseball player and manager
53704 *[[1921]] - [[J. James Exon]], Nebraska Senator and Governor
53705 *[[1922]] - [[Philip Larkin]], English poet (d. [[1985]])
53706 *[[1927]] - [[Daniel Keyes]], American author
53707 *1927 - [[Robert Shaw (actor)|Robert Shaw]], English actor (d. [[1978]])
53708 *[[1928]] - [[Bob Cousy]], American basketball player
53709 *[[1931]] - [[MÃĄrio Zagallo]], Brazilian football coach and player
53710 *[[1933]] - [[Tetsuko Kuroyanagi]], Japanese television personality and children's author
53711 *[[1938]] - [[Leonid Kuchma]], Ukrainian politician
53712 *1938 - [[Rod Laver]], Australian tennis player
53713 *[[1939]] - [[Romano Prodi]], Italian politician, [[President of the European Commission]]
53714 *1939 - [[HÊrcules Brito Ruas|Brito]], Brazilian football player
53715 *[[1944]] - [[Sam Elliott]], American actor
53716 *[[1945]] - [[Ken Norton]], American boxer
53717 *1945 - [[Posy Simmonds]], English cartoonist
53718 *[[1948]] - [[Bill Campbell (baseball player)|Bill Campbell]], American baseball player
53719 *[[1949]] - [[Jonathan Kellerman]], American writer
53720 *[[1952]] - [[Prateep Ungsongtham Hata]], Thai politician
53721 *[[1953]] - [[Robert Cray]], Blues musician
53722 *[[1957]] - [[Melanie Griffith]], American actress
53723 *[[1959]] - [[Stuart Hughes]], Canadian actor
53724 *[[1962]] - [[Kevin Mack]], American football player
53725 *[[1963]] - [[Whitney Houston]], American singer and actress
53726 *[[1964]] - [[Brett Hull]], Canadian-born hockey player
53727 *[[1967]] - [[Deion Sanders]], American football player
53728 *[[1968]] - [[Gillian Anderson]], American actress
53729 *1968 - [[Eric Bana]], Australian actor
53730 *[[1969]] - [[Troy Percival]], baseball player
53731 *[[1972]] - [[Juanes]], Colombian singer
53732 *[[1973]] - [[Kevin McKidd]], Scottish actor
53733 *[[1973]] - [[Filippo Inzaghi]], Italian footballer
53734 *[[1974]] - [[Matt Morris]], baseball player
53735 *[[1976]] - [[Jessica Capshaw]], American actress
53736 *1976 - [[Rhona Mitra]], English actress
53737 *[[1977]] - [[Chamique Holdsclaw]], American basketball player
53738 *1977 - [[Mikael Silvestre]], French footballer
53739 *[[1978]] - [[Audrey Tautou]], French actress
53740
53741 ==Deaths==
53742 *[[117]] - [[Trajan]], [[Roman Emperor]] (b. [[53]])
53743 *[[378]] - [[Valens]], [[Roman Emperor]] (killed in battle) (b. [[328]])
53744 *[[803]] - [[Byzantine Empress Irene]]
53745 *[[1107]] - [[Emperor Horikawa]] of Japan (b. [[1079]])
53746 *[[1250]] - King [[Eric IV of Denmark]] (b. [[1216]])
53747 *[[1534]] - [[Cardinal Cajetan]], Italian theologian (b. [[1470]])
53748 *[[1634]] - [[William Noy]], English jurist (b. [[1577]])
53749 *[[1720]] - [[Simon Ockley]], English orientalist (b. [[1678]])
53750 *[[1744]] - [[James Brydges, 1st Duke of Chandos]], English patron of the arts (b. [[1673]])
53751 *[[1886]] - [[Samuel Ferguson]], Northern Irish poet and artist (b. [[1810]])
53752 *[[1919]] - [[Ruggiero Leoncavallo]], Italian composer (b. [[1857]])
53753 *[[1942]] - [[Edith Stein]], (St. Teresa Benedicta of the Cross) (executed) (b. [[1891]])
53754 *[[1945]] - [[Harry Hillman]], American athlete (b. [[1881]])
53755 *[[1962]] - [[Hermann Hesse]], German-born writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1877]])
53756 *[[1967]] - [[Joe Orton]], English writer (b. [[1933]])
53757 *[[1969]] - [[Abigail Folger]], American heiress (b. [[1943]])
53758 *1969 - [[Wojciech Frykowski]], Polish writer (b. [[1936]])
53759 *1969 - [[Cecil Frank Powell]], British physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1903]])
53760 *1969 - [[Jay Sebring]], American hair stylist (b. [[1933]])
53761 *1969 - [[Sharon Tate]], American actress (murdered) (b. [[1943]])
53762 *[[1975]] - [[Dmitri Shostakovich]], Russian composer (b. [[1906]])
53763 *[[1995]] - [[Jerry Garcia]], American guitarist ([[Grateful Dead]]) (b. [[1942]])
53764 *[[2000]] - [[John Harsanyi]], Hungarian-born economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (b. [[1920]])
53765 *[[2002]] - [[Peter Neville]], anarchist, sociologist, and peace activist
53766 *[[2003]] - [[Ray Harford]], English footballer and manager (b. [[1945]])
53767 *2003 - [[Gregory Hines]], American actor and dancer (b. [[1946]])
53768 *[[2005]] - [[Matthew McGrory]], American actor (b. [[1973]])
53769 *2005 - [[Judith Rossner]], American novelist (b. [[1935]])
53770
53771 ==Holidays and observances==
53772 *[[Feast day]] of [[Jean Vianney]], [[Edith Stein]] and [[Saint Romanus Ostiarius]] in the [[Roman Catholic Church]]
53773 *Feast day of the great [[martyr]] [[Saint Panteleimon]] in Russian [[Orthodox Church]]
53774 *[[South Africa]]: [[National Women's Day - South Africa|National Women's Day]]
53775 *[[Singapore]]: [[National Day]]
53776 *[[India]]:[[Quit India Day]]
53777
53778 ==External links==
53779 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/9 BBC: On This Day]
53780 * [http://www.nytimes.com/learning/general/onthisday/20050809.html ''The New York Times'': On This Day]
53781 ----
53782
53783 [[August 8]] - [[August 10]] - [[July 9]] - [[September 9]] -- [[historical anniversaries|listing of all days]]
53784
53785 {{months}}
53786
53787 [[af:9 Augustus]]
53788 [[ar:9 ØŖØēØŗØˇØŗ]]
53789 [[an:9 d'agosto]]
53790 [[ast:9 d'agostu]]
53791 [[bg:9 авĐŗŅƒŅŅ‚]]
53792 [[be:9 ĐļĐŊŅ–ŅžĐŊŅ]]
53793 [[bs:9. avgust]]
53794 [[ca:9 d'agost]]
53795 [[ceb:Agosto 9]]
53796 [[cv:ÇŅƒŅ€ĐģĐ°, 9]]
53797 [[co:9 d'aostu]]
53798 [[cs:9. srpen]]
53799 [[cy:9 Awst]]
53800 [[da:9. august]]
53801 [[de:9. August]]
53802 [[et:9. august]]
53803 [[el:9 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
53804 [[es:9 de agosto]]
53805 [[eo:9-a de aÅ­gusto]]
53806 [[eu:Abuztuaren 9]]
53807 [[fo:9. august]]
53808 [[fr:9 aoÃģt]]
53809 [[fy:9 augustus]]
53810 [[ga:9 LÃēnasa]]
53811 [[gl:9 de agosto]]
53812 [[ko:8ė›” 9ėŧ]]
53813 [[hr:9. kolovoza]]
53814 [[io:9 di agosto]]
53815 [[ilo:Agosto 9]]
53816 [[id:9 Agustus]]
53817 [[ia:9 de augusto]]
53818 [[ie:9 august]]
53819 [[is:9. ÃĄgÃēst]]
53820 [[it:9 agosto]]
53821 [[he:9 באוגוסט]]
53822 [[jv:9 Agustus]]
53823 [[ka:9 აგვისáƒĸო]]
53824 [[csb:9 zÊlnika]]
53825 [[ku:9'ÃĒ gelawÃĒjÃĒ]]
53826 [[lt:RugpjÅĢčio 9]]
53827 [[lb:9. August]]
53828 [[li:9 augustus]]
53829 [[hu:Augusztus 9]]
53830 [[mk:9 авĐŗŅƒŅŅ‚]]
53831 [[ms:9 Ogos]]
53832 [[nap:9 'e aÚsto]]
53833 [[nl:9 augustus]]
53834 [[ja:8月9æ—Ĩ]]
53835 [[no:9. august]]
53836 [[nn:9. august]]
53837 [[oc:9 d'agost]]
53838 [[pl:9 sierpnia]]
53839 [[pt:9 de Agosto]]
53840 [[ro:9 august]]
53841 [[ru:9 авĐŗŅƒŅŅ‚Đ°]]
53842 [[se:BorgemÃĄnu 9.]]
53843 [[sq:9 Gusht]]
53844 [[scn:9 di austu]]
53845 [[simple:August 9]]
53846 [[sk:9. august]]
53847 [[sl:9. avgust]]
53848 [[sr:9. авĐŗŅƒŅŅ‚]]
53849 [[fi:9. elokuuta]]
53850 [[sv:9 augusti]]
53851 [[tl:Agosto 9]]
53852 [[tt:9. August]]
53853 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 9]]
53854 [[th:9 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
53855 [[vi:9 thÃĄng 8]]
53856 [[tr:9 Ağustos]]
53857 [[uk:9 ŅĐĩŅ€ĐŋĐŊŅ]]
53858 [[wa:9 d' awousse]]
53859 [[war:Agosto 9]]
53860 [[zh:8月9æ—Ĩ]]</text>
53861 </revision>
53862 </page>
53863 <page>
53864 <title>Aristophanes</title>
53865 <id>1028</id>
53866 <revision>
53867 <id>41173560</id>
53868 <timestamp>2006-02-25T15:07:01Z</timestamp>
53869 <contributor>
53870 <username>Vriullop</username>
53871 <id>750481</id>
53872 </contributor>
53873 <minor />
53874 <comment>iw +ca</comment>
53875 <text xml:space="preserve">[[Image:Aristophanes.jpg|thumb|Bust of Aristophanes]]
53876 '''Aristophanes''' (c. [[448 BC]]-[[380 BC]]; [[Greek language|Greek]] ΄ΑĪÎšĪƒĪ„ÎŋĪ†ÎąÎŊΡĪ‚) was a [[Ancient Greece|Greek]] comic dramatist.
53877
53878 The place and even exact date of his birth are unknown, but he was probably educated in [[Athens]]. He was from the Athenian deme of Kudathenaium. He is famous for writing comedies such as ''[[The Birds (play)|The Birds]]'' for the two Athenian festivals: the [[Dionysia]] and the [[Lenea]]. He wrote forty plays, eleven of which still survive, and his plays are the only surviving examples of [[Old Attic Comedy]]. Many of his plays were [[political]], and often [[satire|satirized]] the well-known citizens of Athens and their conduct in the [[Peloponnesian War]]. He is known to have been prosecuted for Athenian law's equivalent of [[libel]] more than once. A famous comedy, ''[[The Frogs]]'', was given the unprecedented honor of a second performance. According to a later biographer, he was also awarded a civic crown for &quot;[[The Frogs]]&quot;.
53879
53880 He appears in [[Plato]]'s ''[[Symposium (Plato)|Symposium]]'', giving a humorous mythical account of the origin of [[Love]]. ''[[The Clouds]],'' a disastrous production resulting in a humiliating and long-remembered (cf. the revised parabasis of &quot;[[The Clouds]]&quot; and the parabasis of next year's &quot;[[The Wasps]]&quot;) last place finish at the City Dionysia, satirizes the new, sophistic learning en vogue among the aristocracy at the time; [[Socrates]] was the principal target and in the play he emerges as a typical [[Sophist]], no matter how inaccurate the portrayal may be. ''[[Lysistrata]]'' was written during the [[Peloponnesian War]] between [[Athens]] and [[Sparta]] and presents a [[pacifism|pacifist]] theme in a comical manner: the women of the two states show off their bodies and deprive their husbands of [[sex]] until they stop fighting. This play was later illustrated at length by [[Pablo Picasso]].
53881
53882 ==Surviving plays==
53883 * ''[[The Acharnians]]'' ([[425 BC]])
53884 * ''[[The Knights]]'' ([[424 BC]])
53885 * ''[[The Clouds]]'' (Original [[423 BC]]Uncompleted revised version survives [[418-415 BC]])
53886 * ''[[The Wasps]]'' ([[422 BC]])
53887 * ''[[Peace (play)|Peace]]'' (first version, [[421 BC]])
53888 * ''[[The Birds (play)|The Birds]]'' ([[414 BC]])
53889 * ''[[Lysistrata]]'' ([[411 BC]])
53890 * ''[[Thesmophoriazusae]]'' (&quot;The Festival Women&quot;, first version, ca.[[410 BC]])
53891 * ''[[The Frogs]]'' ([[405 BC]])
53892 * ''[[Assemblywomen|Ecclesiazousae]]'' (&quot;The Assemblywomen&quot;, ca.[[392 BC]])
53893 * ''[[Plutus (play)|Plutus]]'' (&quot;Wealth&quot;, second version, [[388 BC]])
53894
53895 ==Dated non-surviving plays==
53896 * ''Banqueters'' ([[427 BC]])
53897 * ''Babylonians'' ([[426 BC]])
53898 * ''Farmers'' ([[424 BC]])
53899 * ''Merchant Ships'' ([[423 BC]])
53900 * ''[[The Clouds]]'' (first version) ([[423 BC]])
53901 * ''Proagon'' ([[422 BC]])
53902 * ''Amphiaraos'' ([[414 BC]])
53903 * ''[[Plutus (play)|Plutus]]'' (&quot;Wealth&quot;, first version, [[408 BC]])
53904 * ''Gerytades'' (uncertain, probably [[407 BC]])
53905 * ''Koskalos'' ([[387 BC]])
53906 * ''Aiolosikon'' (second version, [[386 BC]])
53907
53908 ==Undated non-surviving plays==
53909 * ''Aiolosikon'' (first version)
53910 * ''Anagyros''
53911 * ''Broilers''
53912 * ''Daidalos''
53913 * ''Danaids''
53914 * ''Dionysos Shipwrecked''
53915 * ''Centaur''
53916 * ''Niobos''
53917 * ''Heroes''
53918 * ''Islands''
53919 * ''Lemnian Women''
53920 * ''Old Age''
53921 * ''Peace'' (second version)
53922 * ''Phoenician Women''
53923 * ''Poetry''
53924 * ''Polyidos''
53925 * ''Seasons''
53926 * ''Storks''
53927 * ''Telemessians''
53928 * ''Triphales''
53929 * ''[[Thesmophoriazusae]]'' (&quot;The Festival Women&quot;, second version)
53930 * ''Women Encamping''
53931
53932 ==See also==
53933 *[[Agathon]]
53934 *[[Greek literature]]
53935 *[[2934 Aristophanes|Asteroid 2934 Aristophanes]], named after the dramatist
53936
53937 ==External links==
53938
53939 *[http://www.greektexts.com/library/Aristophanes/index.html Aristophanes Texts] Biography and texts of Aristophanes
53940 *[http://www.textkit.com/view-author/author_id/8/ The texts of Aristophanes' plays (in translation)]
53941 * {{gutenberg author|id=Aristophanes|name=Aristophanes}}
53942 * [http://wiktionary.org/wiki/Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophattoperisteralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon Contribution to the English Language]
53943
53944 [[Category:448 BC births]]
53945 [[Category:380 BC deaths]]
53946 [[Category:Ancient Greek dramatists and playwrights]]
53947 [[Category:Ancient Athenians]]
53948 [[Category:Satirists|Aristophanes]]
53949
53950 [[bg:АŅ€Đ¸ŅŅ‚ĐžŅ„Đ°ĐŊ]]
53951 [[ca:AristÃ˛fanes]]
53952 [[da:Aristofanes]]
53953 [[de:Aristophanes]]
53954 [[el:ΑĪÎšĪƒĪ„ÎŋĪ†ÎŦÎŊΡĪ‚]]
53955 [[es:AristÃŗfanes]]
53956 [[fr:Aristophane]]
53957 [[ko:ė•„ëĻŦėŠ¤í† íŒŒë„¤ėŠ¤]]
53958 [[it:Aristofane]]
53959 [[he:אריסטופאנס]]
53960 [[la:Aristophanes]]
53961 [[hu:ArisztophanÊsz]]
53962 [[nl:Aristophanes]]
53963 [[ja:ã‚ĸãƒĒ゚トパネ゚]]
53964 [[nn:Aristofanes]]
53965 [[no:Aristofanes]]
53966 [[pl:Arystofanes]]
53967 [[pt:AristÃŗfanes]]
53968 [[ru:АŅ€Đ¸ŅŅ‚ĐžŅ„Đ°ĐŊ]]
53969 [[sk:Aristofanes]]
53970 [[sl:Aristofan]]
53971 [[sr:АŅ€Đ¸ŅŅ‚ĐžŅ„Đ°ĐŊ]]
53972 [[fi:Aristofanes]]
53973 [[sv:Aristofanes]]
53974 [[tr:Aristofanes]]
53975 [[uk:АŅ€Ņ–ŅŅ‚ĐžŅ„Đ°ĐŊ]]
53976 [[zh:é˜ŋ里斯托čŠŦ]]</text>
53977 </revision>
53978 </page>
53979 <page>
53980 <title>Albert Schweitzer</title>
53981 <id>1029</id>
53982 <revision>
53983 <id>41225203</id>
53984 <timestamp>2006-02-25T22:27:17Z</timestamp>
53985 <contributor>
53986 <username>Dvavasour</username>
53987 <id>55791</id>
53988 </contributor>
53989 <minor />
53990 <comment>[[WP:AWB|AWB assisted]] clean up</comment>
53991 <text xml:space="preserve">&lt;!--Image missing [[Image:Schweitzer.jpg|thumb|Albert Schweitzer]] ---&gt;
53992 [[Image:Albert Schweitzer, Etching by Arthur William Heintzelman.jpg|thumb|200px|Albert Schweitzer, Etching by Arthur William Heintzelman]]
53993
53994 '''Albert Schweitzer''', [[Order of Merit|OM]], ([[January 14]], [[1875]] &amp;ndash; [[September 4]], [[1965]]) was a [[Germany|German]] [[theology|theologian]], [[musician]], [[philosopher]], and [[physician]]. He was born in [[Kaysersberg]], [[Elsass-Lothringen]], [[Germany]] (now in [[Haut-Rhin]], [[Alsace]], [[France]]). He received the [[1952]] [[Nobel Peace Prize]] in [[1953]].
53995
53996 ==Theology==
53997 As a young theologian his first major work, by which he gained a great reputation, was ''The Quest of the Historical Jesus'' (1906), in which he interpreted the life of [[Jesus]] in the light of Jesus' own [[eschatology|eschatological]] convictions. He established his reputation further as a [[New Testament]] scholar by other theological studies, like ''The Mysticism of Paul the Apostle'' (1930). In these studies he examined the eschatological beliefs of Paul and through this the message of the New Testament.
53998
53999 During his tenure as a priest for St. Nicholas church in [[Strasbourg]], he blessed the wedding of [[Theodor Heuss]], who was to become the first [[President|President of Germany]] of the [[German Federal Republic]].
54000
54001 ==Music==
54002 Albert Schweitzer was a famous organist in his day, and was highly interested in the music of [[Johann Sebastian Bach]]. He developed a simple style of performance, which he thought to be closer to what Bach had meant it to be. He based his interpretation mainly on his reassessment of Bach's religious intentions. Through the book &quot;Johann Sebastian Bach&quot;, the final version of which he completed in [[1908]], he advocated this new style, which has had great influence in the way Bach's music is now being treated. Albert Schweitzer was also a famous [[organ (music)|organ]] constructor. Recordings of Schweitzer playing the music of Bach are available on CDs.
54003
54004 ==Philosophy==
54005 Schweitzer's worldview was based on his idea of ''Reverence for Life'', which he believed to be his greatest single contribution to humankind. His view was that Western civilization was in decay because of gradually abandoning its ethical foundations - those of affirmation of life.
54006
54007 It was his firm conviction that the respect for life is the highest principle. In a similar kind of exaltation of life to that of [[Friedrich Nietzsche]], a recently influential philosopher of the time, Schweitzer admittedly followed the same line as that of the Russian [[Leo Tolstoy]]. Some people in his days compared his philosophy with that of [[Francis of Assisi]], a comparison he did not object to. In his ''Philosophy of Civilisation'' (all quotes in this section from Chapter 26 of the same book), he wrote:
54008
54009 &lt;blockquote&gt;True philosophy must start from the most immediate and comprehensive fact of consciousness: 'I am life that wants to live, in the midst of life that wants to live'. &lt;/blockquote&gt;
54010
54011 Life and love in his view are based on, and follow out of the same principle: respect for every manifestation of Life, and a personal, spiritual relationship towards the universe. Ethics, according to Schweitzer, consists in the ''compulsion'' to show to the will-to-live of each and every being the same reverence as one does to one's own. In circumstances where we apparently fail to satisfy this compulsion should not lead us to defeatism, since the will-to-live renews itself again and again, as an outcome of an evolutionary necessity and a phenomenon with a spiritual dimension.
54012
54013 However, as Schweitzer himself pointed out, it is neither impossible nor difficult to spend a life of not following it: the history of world philosophies and religions clearly shows many instances of denial of the principle of reverence for life. He points to the prevailing philosophy in the European middle ages, and the Indian Brahminic philosophy. Nevertheless, this kind of attitude lacks in genuineness.
54014
54015 Since we enter the world, it offers us a horrible drama: it consists in the fact that the will to live, looked as a sum of all the individual wills, is divided against itself. One existence is antagonised against another, one destroys another. Only in the thinking being has the will to live become conscious of other will to live, and desirious of solidarity with it. This solidarity, however, cannot be brought about, because human life does not escape the puzzling and horrible circumstance that it must live at the cost of other life. But as an ethical being one strives to escape whenever possible from this necessity, and to put a stop to this disunion of the Will to live, so far as it is within one's power.
54016
54017 Schweitzer advocated the concept of reverence for life widely throughout his entire life. The historical [[Age of Enlightenment|Enlightenment]] waned and corrupted itself, Schweitzer held, because it has not been well enough grounded in thought, but compulsively followed the ethical will-to live. Hence, he looked forward to a renewed and more profound [[Rennaisance]] and Enlightenment of humanity (a view he expressed in the Epilogue of his ''Out of My Life and Thought''). Albert Schweitzer nourished hope in a humankind that is more profoundly aware of its position in the Universe. His optimism was based in &quot;belief in truth&quot;. &quot;The spirit generated by [conceiving of] truth is greater than the force of circumstances.&quot; He persistently emphasized the necessity to think, rather than merely acting on basis of passing impulses or by following the most widespread opinions.
54018
54019 &lt;blockquote&gt;Never for a moment do we lay aside our mistrust of the ideals established by society, and of the convictions which are kept by it in circulation. We always know that society is full of folly and will deceive us in the matter of humanity. [...] humanity meaning consideration for the existence and the happiness of individual human beings.&lt;/blockquote&gt;
54020
54021 Respect for life, resulting from contemplation on one's own conscious will to live, leads the individual to live in the service of other people and of every living creature.
54022
54023 Schweitzer was very much respected for putting his theory into practice in his own life.
54024
54025 Schweitzer died in [[Gabon]], [[Africa]] after years of serving others as a physician in Africa.
54026
54027 ==Stance on racial relations==
54028 Schweitzer considered his work as a medical missionary in Africa to be his response
54029 to Jesus' call to become &quot;fishers of men&quot; but also as a small
54030 recompense for the historic guilt of European colonizers: &quot;Who can describe the injustice and cruelties that in the course of centuries they [the coloured peoples] have suffered at the hands of Europeans? . . . If a record could be compiled of all that has happened between the white and the coloured races, it would make a book containing numbers of pages which the reader would have to turn over unread because their contents would be too horrible.&quot; [On the Edge of the Primeval Forest, p. 115].
54031
54032 Schweitzer was sometimes accused of being paternalistic or colonialist in his attitude towards Africans. For instance, he thought Gabonese independence came too early, without adequate education or accommodation to local circumstances. Edgar Berman quotes Schweitzer speaking these lines in 1960: &quot;No society can go from the primeval directly to an industrial state without losing the leavening that time and an agricultural period allow.&quot; [In Africa With Schweitzer, p. 139]. [[Chinua Achebe]] has quoted Schweitzer as saying &quot;The African is indeed my brother but my junior brother.&quot; &lt;sup&gt;[http://social.chass.ncsu.edu/wyrick/debclass/achcon.htm]&lt;/sup&gt;, which Achebe criticized him for.
54033
54034 ==Medicine==
54035 Albert Schweitzer spent most of his life in LambarÊnÊ in what is now [[Gabon]], Africa. After his medical studies in [[1913]], he went there with his wife to establish a hospital near an already existing mission post. He treated and operated on literally thousands of people. He took care of hundreds of [[lepers|Leprosy]] and treated many victims of the African [[sleeping sickness]].
54036
54037 In [[1914]] [[World War I]] began and because he was a German on French territory, Schweitzer and his wife were taken captive and temporarily confined to their house. In [[1917]] they were interned in Garaison, France, and in [[1918]] in [[Saint Remy de Provence]]. There he studied and wrote as much as possible in preparation for among others his famous book ''Culture and Ethics'' (published in [[1923]]). In July 1918 he was a free man again, and while working as a medical assistant and assistant-pastor in [[Strasbourg]], he was able to finish the book. In the meantime he began to speak and lecture about his ideas wherever he was invited. Not only did he want his philosophy on [[culture]] and [[ethics]] to become widely known, it also served as a means to raise money for the hospital in LambarÊnÊ, for which he had already emptied his own pockets.
54038
54039 In [[1924]] he returned to LambarÊnÊ, where he managed to rebuild the decayed hospital, after which he resumed his medical practices. Soon he was no longer the only medical doctor in the hospital, and whenever possible he went to Europe to lecture at universities. Gradually his opinions and concepts became acknowledged, not only in Europe, but worldwide.
54040
54041 ==Later life==
54042 From [[1939]]-[[1948]] he stayed in LambarÊnÊ, unable to go back to a Europe in war. Three years after the end of [[World War II]], in 1948, he returned for the first time to Europe and kept travelling back and forth (and once to the USA) as long as he could until his death in 1965.
54043
54044 From 1952 until his death he worked against [[nuclear tests]] and [[nuclear weapon]]s with [[Albert Einstein]] and [[Bertrand Russell]] . In 1957 and 1958 he broadcast four speeches over Radio Oslo which were published in ''Peace or Atomic War''. In 1957, Schweitzer was one of the founders of [[SANE|The Committee for a Sane Nuclear Policy]].
54045
54046 His life was portrayed in the 1952 movie ''Il est minuit, Docteur Schweitzer'', starring [[Pierre Fresnay]] as Albert Schweitzer and [[Jeanne Moreau]] as his nurse Marie. His cousin Anne-Marie Schweitzer Sartre was the mother of [[Jean-Paul Sartre]].
54047
54048 He was [[chevalier]] of the [[Order of St Lazarus|Military and Hospitaller Order of Saint Lazarus of Jerusalem]].
54049
54050 He died on September 4, 1965 in [[LambarÊnÊ]], [[Gabon]].
54051
54052 ==Selected bibliography==
54053 *''The Decay and the Restoration of Civilization'' ([[1923]])
54054 *''Civilization and Ethics'' ([[1923]])
54055 *''Indian Thought and Its Development'' ([[1935]])
54056 *''The Kingdom of God and Primitive Christianity'' (publ.[[1967]])
54057 *''My Life and Thought'' ([[1931]]) (autobiography. according to the preface of the reviewed edition: Henry Holt and Company, 1991, Schweitzer personally considered to be his most important book)
54058 *''Peace or Atomic War'' 1958
54059 *''Out of My Life and Thought: An Autobiography by Albert Schweitzer'' ISBN 0801860970
54060 *''The Quest Of The Historical Jesus; A Critical Study Of Its Progress From Reimarus To Wrede''
54061
54062 ==Timeline==
54063 * [[1893]] - Studied [[Philosophy]] and [[Theology]] at the Universities of [[Strasbourg|Strassburg]], [[Berlin]] and [[Paris]]
54064 * [[1900]] - Curate of the Church of St. Nicolas in Strassburg
54065 * [[1901]] - Principal of the Theological Seminary in Strassburg
54066 * [[1905]]-[[1913]] Studied medicine and surgery
54067 * [[1912]] - Married Helene Bresslau
54068 * [[1913]] - Physician in LambarÊnÊ, Africa
54069 * [[1915]] - Developed his ethic ''Reverence for life''
54070 * [[1917]] - Interned in France
54071 * [[1918]] - Medical assistant and assistant-pastor in Strassburg
54072 * [[1919]] - First major speech about ''Reverence for life'' at the [[University of Uppsala]], [[Sweden]]
54073 * [[1919]] - Birth of daughter, Rhena
54074 * [[1924]] - Return to LambarÊnÊ as physician; frequent visits to Europe for speaking engagements
54075 * [[1939]]-[[1948]] LambarÊnÊ
54076 * [[1949]] - Visit to the USA
54077 * [[1948]]-[[1965]] - LambarÊnÊ and Europe.
54078 * [[1953]] - Nobel Peace Prize for the year 1952
54079 * [[1957]] - [[1958]] - Four speeches against nuclear armament and tests
54080
54081 ==See also==
54082 *[[Christian Eschatology]]
54083
54084 ==References and external links==
54085 {{wikiquote}}
54086 {{commons|Category:Albert Schweitzer}}
54087 * ''Albert Schweitzer: a Biography'' by [[James Brabazon]] - the definitive biography
54088 *[http://www.albertschweitzer.info/ Albert Schweitzer] - information on Albert Schweitzer's life and thought
54089 *[http://www.albertschweitzer.org.uk/ Friends of Albert Schweitzer (UK)] - a charity promoting Reverence for Life
54090 *[http://home.pcisys.net/~jnf/ The Albert Schweitzer Page]
54091 *[http://www.schweitzerfellowship.org/ Albert Schweitzer Fellowship]
54092 *[http://www1.chapman.edu/schweitzer/reverence_readings.html Readings on Reverence for Life]
54093 *[http://medlem.spray.se/atarme/albert.html Biography information on the 1952 Nobel Peace Prize Laureate]
54094 *[http://www.peacemakersguide.org/peace/Peacemakers/Albert-Schweitzer.htm Bruderhof Peacemakers Guide profile on Albert Schweitzer]
54095 *[http://www.nobel.se/peace/laureates/1952/schweitzer-bio.html Page at the Nobel e-Museum]
54096 *[http://nobelprize.org/peace/laureates/1952/press.html#not_10 Schweitzer Nobel Presentation Speech by Gunnar Jahn]
54097 *[http://albert-schweitzer.com/ Schweitzerforlaget (Norwegian text only)]
54098
54099 {{Persondata
54100 |NAME=Schweitzer, Albert
54101 |ALTERNATIVE NAMES=
54102 |SHORT DESCRIPTION=German theologian, musician, philosopher, and physician
54103 |DATE OF BIRTH=[[January 14]] [[1875]]
54104 |PLACE OF BIRTH=[[Kaysersberg]], [[Elsass-Lothringen]], [[Germany]] (now in [[Haut-Rhin]], [[Alsace]], [[France]])
54105 |DATE OF DEATH=[[September 4]] [[1965]]
54106 |PLACE OF DEATH=[[LambarÊnÊ]], [[Gabon]]
54107 }}
54108
54109 [[Category:1875 births|Schweitzer, Albert]]
54110 [[Category:1965 deaths|Schweitzer, Albert]]
54111 [[Category:Biblical scholars|Schweitzer, Albert]]
54112 [[Category:Cat lovers|Schweitzer, Albert]]
54113 [[Category:German theologians|Schweitzer, Albert]]
54114 [[Category:Humanists|Schweitzer, Albert]]
54115 [[Category:Humanitarians]]
54116 [[Category:Members of the Order of Merit|Schweitzer, Albert]]
54117 [[Category:Nobel Peace Prize winners|Schweitzer, Albert]]
54118 [[Category:Polymaths|Schweitzer, Albert]]
54119 [[Category:Unitarian Universalists|Schweitzer, Albert]]
54120 [[Category:Vegetarians|Schweitzer, Albert]]
54121
54122 [[cs:Albert Schweitzer]]
54123 [[da:Albert Schweitzer]]
54124 [[de:Albert Schweitzer]]
54125 [[eo:Albert SCHWEITZER]]
54126 [[es:Albert Schweitzer]]
54127 [[fi:Albert Schweitzer]]
54128 [[fr:Albert Schweitzer]]
54129 [[he:אלברט שווי×Ļר]]
54130 [[hr:Albert Schweitzer]]
54131 [[hu:Albert Schweitzer]]
54132 [[it:Albert Schweitzer]]
54133 [[ja:ã‚ĸãƒĢベãƒĢトãƒģã‚ˇãƒĨãƒã‚¤ãƒ„ã‚Ąãƒŧ]]
54134 [[nl:Albert Schweitzer]]
54135 [[nn:Albert Schweitzer]]
54136 [[no:Albert Schweitzer]]
54137 [[pl:Albert Schweitzer]]
54138 [[pt:Albert Schweitzer]]
54139 [[ru:ШвĐĩĐšŅ†ĐĩŅ€, АĐģŅŒĐąĐĩŅ€Ņ‚]]
54140 [[sk:Albert Schweitzer]]
54141 [[sl:Albert Schweitzer]]
54142 [[sv:Albert Schweitzer]]
54143 [[uk:ШвĐĩĐšŅ†ĐĩŅ€ АĐģŅŒĐąĐĩŅ€Ņ‚]]</text>
54144 </revision>
54145 </page>
54146 <page>
54147 <title>Austrian School</title>
54148 <id>1030</id>
54149 <revision>
54150 <id>41114897</id>
54151 <timestamp>2006-02-25T03:35:54Z</timestamp>
54152 <contributor>
54153 <ip>68.33.47.73</ip>
54154 </contributor>
54155 <comment>/* Major Austrian economists */</comment>
54156 <text xml:space="preserve">{{Template:Libertarianism}}The '''Austrian School''' is a school of [[history of economic thought|economic thought]] that rejects opposing economists' reliance on methods used in [[natural science]] for the study of human action, and instead bases its formalism of economics on relationships through logic or introspection called &quot;[[praxeology]]&quot;.
54157
54158 Its most famous adherents are [[Carl Menger]], [[Eugen von BÃļhm-Bawerk]], [[Friedrich von Wieser]], [[Ludwig von Mises]], [[Friedrich Hayek]], [[Murray Rothbard]], [[Israel Kirzner]] and [[Hans-Hermann Hoppe]]. While often controversial, and standing to some extent outside of the mainstream of neoclassical theory &amp;mdash; as well as being staunchly against much of [[John Maynard Keynes|Keynes]]' theory and its results &amp;mdash; the Austrian School has been widely influential because of its emphasis on the creative phase of economic productivity and their questioning of the basis of the behavioral theory underlying [[neoclassical economics]].
54159
54160 The Austrian School is generally associated with groups that label themselves [[classical liberalism|classical liberals]] or [[libertarian]] in their ideas of social, political and economic organization.
54161
54162 == History ==
54163 [[Classical economics]] focused on the exchange theory of value. In late [[19th century]], however, there was a focus on the concept of the &quot;marginal&quot; cost and value. (See [[Marginalism]]). Carl Menger's [[1871]] book, ''[[Principles of Economics]],'' is considered one of the crucial works that began the period known as [[neoclassical economics]]. While marginalism was generally influential, there was also a more specific school that grew up around Menger, which came to be known as the &quot;Vienna School&quot; or &quot;Austrian School&quot;. Austrian economics is currently closely associated with advocacy of radical ''[[laissez-faire]]'' views. However, earlier Austrian economists were more cautious compared to later economists such as [[Ludwig von Mises]], with [[Eugen von BÃļhm-Bawerk]] saying that he feared that unbridled free competition would lead to &quot;anarchism in production and consumption.&quot; However, the Austrian School, especially through the works of [[Friedrich Hayek]], would be influential in the revival of laissez-faire thought in the [[1980s]].
54164
54165 The school originated in [[Vienna]] and owes its name to members of the [[Historical School]] of [[economics]] who during the ''[[Methodenstreit]],'' where the Austrians defended the reliance that [[classical economics|classical economists]] placed on logic over observation. Their Prussian opponents derisively named them the &quot;Austrian School&quot; to emphasize a departure from mainstream German thought and to suggest a provincial approach.
54166
54167 Menger's contributions were closely followed by [[Eugen von BÃļhm-Bawerk]] and [[Friedrich von Wieser]]. [[Austria|Austrian]] economists developed a sense of themselves as a school distinct from [[neoclassical economics]] during the [[economic calculation debate]], with [[Ludwig von Mises]] and [[Friedrich von Hayek]] representing the Austrian position, where they contended that without monetary prices or private property, meaningful economic calculation was impossible. The Austrian economists were the first liberal economists to systematically challenge the [[Marxist]] school. This was partly a reaction to the ''[[Methodenstreit]]'' when they attacked the [[Georg Wilhelm Friedrich Hegel|Hegelian]] doctrines of the [[Historical School]]. Though many Marxist authors have attempted to portray the Austrian school as a ''[[bourgeois]]'' reaction to Marx, such an interpretation is untenable: Menger wrote his ''[[Principles of Economics]]'' at almost the same time as [[Karl Marx|Marx]] was completing ''[[Das Kapital]].'' The Austrian economists were, however, the first to clash directly with Marxism, since both dealt with such subjects as money, [[capital (economics)|capital]], [[business cycle|business cycles]], and economic processes. BÃļhm-Bawerk wrote extensive critiques of Marx in the 1880s and 1890s, and several prominent Marxists &amp;mdash; including [[Rudolf Hilferding]] &amp;mdash; attended his seminar in 1905&amp;ndash;06. In contrast, the classical economists had shown little interest in such topics, and many of them did not even gain familiarity with Marx's ideas until well into the twentieth century.
54168
54169 The school was no longer centered in Austria after [[Hitler]] came to power. Austrian economics was ill-thought of by most economists after [[World War II]] due to its rejection of observational methods. Its reputation has lately risen with work by students of [[Israel Kirzner]] and [[Ludwig Lachmann]], as well as an interest in Hayek after he won the [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel]]. However, it remains a distinctly minority position, even in such areas as capital value.
54170
54171 Austrian economics can be broken into two general trends. One, exemplified by Hayek, while distrusting of many neoclassical concepts, generally accepts their formulations, the other exemplified by the [[Ludwig von Mises Institute]], seeks a different formalism for [[economics]]. The primary areas of contention between neoclassical theory and the Austrian school are on the possibility of consumer indifference &amp;mdash; neoclassical theory says it is possible, where as Mises rejected it as being &quot;impossible to observe in practice&quot; &amp;mdash; and when Mises and his students argued that utility functions are ordinal, and not cardinal; that is, one can only rank preferences and not measure their intensity. Finally there are a host of questions about uncertainty raised by Mises and other Austrians, who argue for a different means of [[risk assessment]].
54172
54173 An area that is often overlooked is the influence that Austrian school ideas have had on Keynesian [[macroeconomics]]. The source of this influence is the period of time where the [[London School of Economics]] brought in Hayek and other &quot;continental&quot; economists. While their students &quot;flew the coop&quot;, refusing to join the Austrian school, many of the concepts, particularly relating time to the value of capital and its importance, would find their way into the work of Keynesians such as [[John Hicks]]. [[Alan Greenspan]], speaking of the originators of the School, said in 2000, &quot;the Austrian school have reached far into the future from when most of them practiced and have had a profound and, in my judgment, probably an irreversible effect on how most mainstream economists think in this country.&quot; The long-time U.S. Federal Reserve Chairman said he attended a seminar hosted by Ludwig von Mises. [http://www.usagold.com/gildedopinion/greenspan-gold.html]
54174
54175 == Analytical framework ==
54176 Austrian economists reject observation as a tool applicable to economics, saying that while it is appropriate in the natural sciences where factors can be isolated in laboratory conditions, acting human beings are too complex for this treatment. Instead one should isolate the logical processes of human action - a discipline named &quot;[[praxeology]]&quot; by [[Ludwig von Mises]].
54177
54178 Austrians view [[entrepreneurship]] as the driving force in [[economic development]], see [[private property]] as essential to the efficient use of resources, and often see government interference in market processes as counterproductive.
54179
54180 As with neoclassical economists, Austrians reject [[classical economics|classical]] cost of production theories, most famously the [[labor theory of value]]. Instead they explain value by reference to the subjective preferences of individuals. This psychological aspect to Menger's economics has been attributed to the school's birth in turn of the century [[Vienna]]. [[Supply and demand]] are explained by aggregating over the decisions of individuals, following the precepts of [[methodological individualism]], which asserts that only individuals and not collectives make decisions, and [[marginalist]] arguments, which compare the costs and benefits for incremental changes.
54181
54182 Contemporary neo-Austrian economists claim to adopt [[economic subjectivism]] more consistently than any other school of economics and reject many neoclassical formalisms. For example, while neoclassical economics formalizes the economy as an [[economic equilibrium|equilibrium]] system with supply and demand in balance, Austrian economists emphasize its dynamic, perpetually dis-equilibrated nature.
54183
54184 The core of the Austrian framework can be summarized as taking a subjectivist approach to marginal economics, and a focus on the idea that theory should absolutely overrule observation. Austrians focus completely on the [[opportunity cost]] of goods, as opposed to balancing downside or disutility costs. It is an Austrian assertion that everyone is ''better'' off in a mutually voluntary exchange, or they would not have carried it out. A fuller explanation of this in more exact terms is [http://cepa.newschool.edu/het/essays/margrev/oppcost.htm available at the New School's economic pages].
54185
54186 This focus on opportunity cost alone means that their interpretation of the [[time value]] of a good has a strict relationship: since goods will be as restricted by scarcity at a later point in time as they are now, the strict relationship between investment and time must also hold. A factory making goods next year is worth as much less as the goods it is making next year are worth. This means that the business cycle is driven by miscoordination between sectors of the same economy, caused by money not carrying incentive information correct about present choices, rather than within a single economy where money causes people to make bad decisions about how to spend their time. This means, in the Austrian context, the correct way to prevent imbalances in the economy is to make people want to buy the correct goods, rather than controlling when people buy goods.
54187
54188 == Contributions ==
54189 Some contributions of Austrian economists:
54190
54191 * A theory of distribution in which factor [[price]]s result from the [[imputation (economics)|imputation]] of prices of consumer goods to goods of &quot;higher order&quot;, that is goods used in the production of consumer goods (goods of the first order).
54192 * An emphasis on [[opportunity cost]] and reservation demand in defining [[marginal theory of value|value]], and a refusal to consider supply as an otherwise independent cause of value. (The British economist [[Philip Wicksteed]] adopted this perspective.)
54193 * An emphasis on the forward-looking nature of choice, seeing time as the root of uncertainty within economics (see also [[time preference]]).
54194 * A fundamental rejection of mathematical methods in economics seeing the function of economics as investigating the essences rather than the specific quantities of economic phenomena. This was seen as an evolutionary, or &quot;genetic-causal&quot;, approach against the stresses of [[economic equilibrium|equilibrium]] and [[perfect competition]] found in mainstream Neoclassical economics (see also [[praxeology]]).
54195 * [[Eugen von BÃļhm-Bawerk]]'s critique of [[Karl Marx|Marx]] centered around the untenability of the [[labor theory of value]] in the light of the [[transformation problem]]. There was also the connected argument that capitalists do not exploit workers; they accommodate workers by providing them with income well in advance of the revenue from the output they helped to produce.
54196 * [[Eugen von BÃļhm-Bawerk]]'s capital theory, which equates [[capital intensity]] with the degree of [[roundaboutness]] of production processes.
54197 * The Mises-Hayek [[business cycle]] theory, which explains depression as a reaction to an intertemporal production structure fostered by [[monetary policy]] setting [[interest rate]]s inconsistent with individual time preferences.
54198 * Hayek's concept of [[intertemporal equilibrium]]. ([[John Hicks]] took over this theory in his discussion of temporary equilibrium in ''Value and Capital,'' a book very influential on the development of neoclassical economics after World War II.)
54199 * Mises and Hayek's view of prices as permitting agents to make use of [[dispersed knowledge|dispersed tacit knowledge]].
54200 * The [[time preference theory of interest]], which explains interest rates through [[intertemporal choice]] - the different time preferences of the borrower or lender - rather than as a price paid for a [[factor of production]].
54201 * Stressing uncertainty in the making of economic decisions, rather than relying on &quot;[[Homo economicus]]&quot; or the rational man who was fully informed of all circumstances impinging on his decisions. The fact that perfect knowledge never exists, means that all economic activity implies risk.
54202 * Seeing the entrepreneurs' role as collecting and evaluating information and acting on risks.
54203 * The [[economic calculation debate]] between Austrian and [[Marxist]] economists, with the Austrians claiming that Marxism is flawed because prices could not be set to recognize opportunity costs of factors of production, and so [[socialism]] could not calculate best uses in the same way [[capitalism]] does.
54204
54205 == Major Austrian economists ==
54206
54207 {|
54208 | valign=&quot;top&quot; |
54209 * [[Benjamin Anderson]]
54210 * [[GÊrard BramoullÊ]]
54211 * [[Walter Block]]
54212 * [[Peter Boettke]]
54213 * '''[[Eugen von BÃļhm-Bawerk]]'''
54214 * [[Gene Callahan]]
54215 * [[Tony Carilli]]
54216 * [[Jean-Pierre Centi]]
54217 * [[Christopher Coyne]]
54218 * [[Thomas DiLorenzo]]
54219 * [[Richard Ebeling]]
54220 * [[Frank Fetter]]
54221 * [[Jacques Garello]]
54222
54223 | &lt;hspace width=&quot;40px&quot;&gt; |
54224 | valign=&quot;top&quot; |
54225 * [[Roger Garrison]]
54226 * [[David Gordon]]
54227 * '''[[Friedrich Hayek]]'''
54228 * [[Henry Hazlitt]]
54229 * [[Gottfried von Haberler]]
54230 * '''[[Hans-Hermann Hoppe]]'''
54231 * [[Steven Horwitz]]
54232 * [[Jorg Guido Hulsmann|JÃļrg Guido HÃŧlsmann]]
54233 * [[William Harold Hutt]]
54234 * [[Israel Kirzner]]
54235 * [[Ludwig Lachmann]]
54236 * [[Don Lavoie]]
54237 * [[Peter T. Leeson]]
54238 * [[Henri Lepage]]
54239
54240 | &lt;hspace width=&quot;40px&quot;&gt; |
54241 | valign=&quot;top&quot; |
54242 * [[Peter Lewin]]
54243 * [[Roderick Long]]
54244 * [[Juan De Mariana]]
54245 * '''[[Ludwig von Mises]]'''
54246 * [[Margit von Mises]]
54247 * [[Luis de Molina]]
54248 * [[Oskar Morgenstern]]
54249 * [[Fritz Machlup]]
54250 * '''[[Carl Menger]]'''
54251 * [[Gerald O'Driscoll]]
54252 * [[Ernest C. Pasour]]
54253 * [[Ralph Raico]]
54254
54255 | &lt;hspace width=&quot;40px&quot;&gt; |
54256 | valign=&quot;top&quot; |
54257 * [[George Reisman]]
54258 * [[Mario Rizzo]]
54259 * [[Llewellyn Rockwell]]
54260 * '''[[Murray Rothbard]]'''
54261 * [[Mark Thornton]]
54262 * [[Joseph Salerno]]
54263 * [[Pascal Salin]]
54264 * [[Josef Síma]]
54265 * [[Jesus Huerta de Soto]]
54266 * [[Richard von Strigl]]
54267 * [[Phillip Wicksteed]]
54268 * [[Friedrich von Wieser]]
54269
54270 |}
54271
54272 == Other related economists ==
54273 * [[Richard Cantillon]]
54274 * [[Frederic Bastiat]] (precursor)
54275 * [[Henry Hazlitt]] (introduced the Austrian School to the USA)
54276 * [[School of Salamanca]] (Renaissance precursors)
54277 * [[Étienne Bonnot de Condillac]]
54278 * [[Louis Say]]
54279 * [[Jean-Baptiste Say]]
54280 * [[LÊon Walras]]
54281 * [[Jules Dupuit]]
54282 * [[Lionel Robbins]]
54283 * [[Wilhelm RÃļpke]]
54284 * [[Joseph Schumpeter]]
54285 * [[Anne Robert Jacques Turgot, Baron de Laune|A.R.J. Turgot]]
54286
54287 == Critics ==
54288 * [[Bryan Caplan]]
54289
54290 == Seminal works ==
54291 * ''[[Principles of Economics]]'' by [[Carl Menger]]
54292 * ''[[Capital and Interest]]'' by [[Eugen von BÃļhm-Bawerk]]
54293 * ''[[The Theory of Money and Credit]]'' by [[Ludwig von Mises]]
54294 * ''[[Socialism (book)|Socialism]]'' by [[Ludwig von Mises]]
54295 * ''[[Human Action]]'' by [[Ludwig von Mises]]
54296 * ''[[Man, Economy, and State]]'' by [[Murray Rothbard|Murray N. Rothbard]]
54297 * ''[[Individualism and Economic Order]]'' by [[Friedrich Hayek]]
54298
54299 == See also ==
54300 *[[Chicago school (economics)]]
54301 *[[Classical liberalism]]
54302 *[[Keynesian|Keynesian school]]
54303 *[[Neoclassical economics|Neoclassical school]]
54304 *[[Socialist economics|Socialist school]]
54305 *[[Supply-side economics]]
54306 *[[School of Salamanca#Economics|School of Salamanca (Renaissance pre-Austrians)]]
54307
54308 == External links ==
54309 *[http://www.mises.org/etexts/austrian.asp What is Austrian Economics?] Austrian School as defined by the [[Ludwig von Mises Institute]].
54310 *[http://www.mises.org The Mises Institute - A large selection of online books, video/audio, journal archives, and research on Austrian economics]
54311 * [http://it.stlawu.edu/sdae Society for the Development of Austrian Economics] Largest professional organization of Austrian economists
54312 *[http://homepage.newschool.edu/het/schools/austrian.htm Austrian School on newschool.edu] &amp;ndash; compare Austrian versus other Schools
54313 *[http://socserv2.socsci.mcmaster.ca/~econ/ugcm/3ll3/bawerk/austrian The Austrian Economists by Eugen von BÃļhm-Bawerk 1891]
54314 *[http://library.wur.nl/way/catalogue/documents/A%20Great%20Revolution%20in%20Economics.htm A Great Revolution in Economics - Vienna 1871 and after] by Houmanidis and Leen
54315 * [http://austrianforum.com/ Austrian Economics Forum] Discussion about the Austrian school and libertarianism by economics students and professors
54316 *[http://www.montpelerin.org/ The Mont Pelerin Society]
54317 *[http://www.gmu.edu/departments/ihs/hsr/s97hsr.html#austrian The Origins of the Austrian School of Economics by John Moser]
54318 *[http://www.dmoz.org/Science/Social_Sciences/Economics/Schools_of_Thought/Austrian_School/ Austrian School] Directory of links from the Open Source Directory
54319 *[http://www.againstpolitics.com/austrian_economics/ A list of academic critiques of Austrian economics]
54320 *[http://austrianecon.com Austrian Economics Forum] Discussion message board concerning Austrian economic theory
54321 * [[:fr:Pascal Salin|Pascal Salin]] (in French)
54322 * [[:fr:Jacques Garello|Jacques Garello]] (in French)
54323 * [[:fr:Jean-Pierre Centi|Jean-Pierre Centi]] (in French)
54324 * [[:fr:GÊrard BramoullÊ|GÊrard BramoullÊ]] (in French)
54325 * [[:fr:Henri Lepage|Henri Lepage]] (in French)
54326 * [http://austrianeconomists.typepad.com/ The Austrian Economists]
54327 * [http://austrianaddiction.rationalmind.net Austrian Addiction]
54328
54329
54330 {{macroeconomics-footer}}
54331 [[Category:Economic theories]]
54332 [[Category:Macroeconomics]]
54333 [[Category:Austrian School|*]]
54334
54335 [[cs:RakouskÃĄ ÅĄkola]]
54336 [[da:Den østrigske skole]]
54337 [[de:Österreichische Schule]]
54338 [[et:Austria koolkond]]
54339 [[es:Escuela Austríaca de Economía]]
54340 [[eo:AÅ­stria skolo de ekonomiko]]
54341 [[fr:École autrichienne d’Êconomie]]
54342 [[he:האסכולה האוסטרי×Ē]]
54343 [[is:Austurrísku hagfrÃĻðingarnir]]
54344 [[nl:Oostenrijkse School]]
54345 [[ja:ã‚Ēãƒŧ゚トãƒĒã‚ĸå­Ļæ´ž]]
54346 [[pt:Escola austríaca]]
54347 [[sk:RakÃēska ÅĄkola]]
54348 [[fi:Itävaltalainen taloustiede]]</text>
54349 </revision>
54350 </page>
54351 <page>
54352 <title>Abscess</title>
54353 <id>1032</id>
54354 <revision>
54355 <id>38909172</id>
54356 <timestamp>2006-02-09T12:40:07Z</timestamp>
54357 <contributor>
54358 <username>Andrew73</username>
54359 <id>410511</id>
54360 </contributor>
54361 <comment>/* Perianal abscess */ wiki</comment>
54362 <text xml:space="preserve">[[Image:Abszess.jpg|thumb|Abscess]]
54363 An '''abscess''' is a collection of [[pus]] collected in a cavity formed by the tissue on the basis of an [[infection|infectious]] process (usually caused by [[bacterium|bacteria]] or [[parasite]]s) or other foreign materials (e.g. splinters or bullet wounds). It is a [[immune system|defensive reaction]] of the tissue to prevent the spread of infectious materials to other parts of the body.
54364
54365 The organisms or foreign materials that gain access to a part of tissue kill the local [[cell (biology)|cell]]s, release toxins and trigger an [[inflammation|inflammatory response]] by drawing huge amounts of [[white blood cell]]s to the area and increasing the regional [[blood]] flow. So, pus is a collection of local dead tissue cells, white blood cells, infecting organisms or foreign material and toxins released by both organisms and blood cells. The final structure of the abscess is an abscess wall that is formed by the adjacent healthy cells in an attempt to build a barrier around the pus that limits the infected material from neighbouring structures.
54366
54367 ==Manifestations==
54368 The cardinal symptoms and signs of any kind of inflammatory process are redness, heat, swelling and pain. Abscesses may occur in any kind of solid tissue but most frequently on skin surface (where they may be superficial pustules ([[boil]]s) or deep skin abscesses), in the lungs, [[brain abscess|brain]], kidneys and tonsils. Major complications are spreading of the abscess material to adjacent or remote tissues and extensive regional tissue death ([[gangrene]]). Abscesses in most parts of the body rarely heal themselves, so prompt medical attention is indicated at the first suspicion of an abscess.
54369
54370 ==Treatment==
54371 The abscess should be inspected to identify if foreign objects are a cause, requiring surgical removal. [[Surgery|Surgical]] drainage of the abscess (e.g. [[Lancing (Surgical Procedure)|lancing]]) is usually indicated once the abscess has developed from a harder serous inflammation to a softer [[pus]] stage. As ''[[Staphylococcus aureus]]'' [[bacteria]] is a common cause, an anti-Staphylococcus antibiotic such as [[Flucloxacillin]] or [[dicloxacillin]] is used . It is important to note that [[antibiotic]] therapy alone without surgical drainage of the abscess is seldom effective. In critical areas where surgery presents a high risk (such as the [[brain]]), surgery may be delayed or used as a last resort. The drainage of the lung abscess may be performed by positioning the patient in a way that enables the contents to be discharged via the [[respiratory tract]]. Warm compresses and elevation of the limb may be beneficial for skin abscess.
54372
54373 ==Perianal abscess==
54374 Perianal abscesses can be seen in patients with for example [[inflammatory bowel disease]] (such as [[Crohn's disease]]) or [[diabetes]]. Often the abscess will start as an internal wound caused by ulceration or hard stool. This wound typically becomes infected as a result of the normal presence of feces in the rectal area, and then develops into an abscess. This often presents itself as a lump of tissue near the [[anus]] which grows larger and more painful with the passage of time.
54375
54376 Like other abscesses, perianal abscesses may require prompt medical treatment, such as an incision and debridement or [[Lancing (surgical procedure)|lancing]].
54377
54378 ==See also==
54379 *[[Boil]]
54380 *[[Sterile abscess]]
54381 [[Category:Infectious diseases]]
54382
54383 [[de:Abszess]]
54384 [[es:Absceso]]
54385 [[fr:Pustule]]
54386 [[it:Ascesso]]
54387 [[ms:Bisul]]
54388 [[nl:Abces]]
54389 [[tl:Abseso]]
54390
54391 ==External links==
54392 * [http://www.nlm.nih.gov/medlineplus/ency/article/001353.htm MedlinePlus Medical Encyclopedia - Abscess]
54393 * [http://www.nlm.nih.gov/medlineplus/ency/article/000863.htm MedlinePlus Medical Encyclopedia - Skin Abscess]</text>
54394 </revision>
54395 </page>
54396 <page>
54397 <title>Abwehr</title>
54398 <id>1033</id>
54399 <revision>
54400 <id>41304442</id>
54401 <timestamp>2006-02-26T11:59:35Z</timestamp>
54402 <contributor>
54403 <ip>80.171.20.110</ip>
54404 </contributor>
54405 <comment>That has no place in this article</comment>
54406 <text xml:space="preserve">The '''''Abwehr''''' was a [[Germany|German]] [[intelligence (information gathering)|intelligence]] organization from [[1921]] to [[1944]]. The verb ''abwehren'' means &quot;to ward off&quot;, implying [[counterespionage]]; this term was used as a concession to [[Allies of World War I|Allied]] demands that Germany's post-[[World War I]] intelligence activities be for &quot;defensive&quot; purposes only. After [[February 4]], [[1938]], its name in full was '''''Amt Ausland/Abwehr im Oberkommando der Wehrmacht''''' (Foreign Bureau/Defence of the Armed Forces High Command).
54407
54408 Despite its name, the purpose of the Abwehr was to obtain military intelligence concerning nations of interest to the German government. Its headquarters were located at 76/78 Tirpitzufer in [[Berlin]], adjacent to the offices of the [[Oberkommando der Wehrmacht]] (OKW).
54409
54410 ==The Abwehr before Canaris==
54411 The Abwehr was created in 1921 as part of the [[Ministry of Defence (Germany)|Ministry of Defence]] when Germany was allowed to form the [[Reichswehr]], the [[Armed Forces|military organization]] of the [[Weimar Republic]]. The first head was Major Friedrich Gempp, a former deputy to [[Walther Nicolai|Col. Walther Nicolai]], the head of German inteligence during World War I. At that time it was composed of only three officers and seven former officers plus a clerical staff. By the [[1920s]] it was organized into three sections:
54412
54413 *I. [[Reconnaissance]]
54414 *II. [[Cipher]] and Radio Monitoring
54415 *III. Counterespionage
54416
54417 The [[German Navy|German Navy's]] intelligence staff merged with the Abwehr in [[1928]].
54418
54419 In the [[1930s]], with the rise of the [[Nazi]] movement, the Ministry of Defence was reorganized; surprisingly, on [[June 7]], [[1932]], a naval officer, Capt. Konrad Patzig, was named chief of the Abwehr, despite the fact that it was staffed largely by Army officers. But perhaps not surprisingly, due to the small size of the organization and its limited importance at that time, it was unsuitable for a more ambitious Army officer. Another possible factor was that naval officers had more foreign experience than their Army counterparts and understood more of foreign affairs. However, all three services eventually developed their own intelligence staff.
54420
54421 Because of Abwehr-sponsored reconnaissance flights across the border with [[Poland]], Patzig soon had confrontations with [[Heinrich Himmler]], head of the [[Schutzstaffel|SS]]. Army leaders feared that the flights would endanger the secret plans for an attack on Poland. Patzig was fired in January [[1935]] as a result, and was sent to command the new [[pocket battleship]] ''[[Admiral Graf Spee]]''; he later became Chief of Naval Personnel. His replacement was another Reichsmarine captain, [[Wilhelm Canaris]].
54422
54423 ==The Abwehr under Canaris==
54424 ===Before the War===
54425 [[Image:Wilhelmcanaris.jpg|thumb|150px|right|Wilhelm Canaris]]
54426
54427 Before he took over the Abwehr on [[January 1]], the soon-to-be Admiral Canaris was warned by Patzig of attempts by Himmler and [[Reinhard Heydrich]] to take over all German intelligence organs. Canaris, a master of backroom dealings which were so much a part of life, thought he knew how to deal with them. But even while he tried to maintain an at-least cordial relationship with them, the antagonism between the Abwehr and the SS did not stop with Canaris at the helm.
54428
54429 It came to a head in [[1937]] when [[Adolf Hitler]] decided to help [[Josef Stalin]] in the latter's purge against the [[Red Army|Soviet military]]. Hitler ordered that the German Army staff should be kept in the dark about Stalin's intentions, for fear that they would warn their Soviet counterparts. Accordingly, special SS teams, accompanied by burglary experts from the criminal police, broke into the secret files of the General Staff and the Abwehr and removed documents related to German-Soviet collaboration. To conceal the thefts, fires were started at the break-ins, which included Abwehr headquarters.
54430
54431 When Hitler replaced the [[Ministry of War]] with the Oberkommando der Wehrmacht (OKW), the Abwehr became its intelligence agency, although with some degree of independence therefrom. Canaris reorganized the agency in [[1938]], establishing the following major departments, which existed until its dissolution:
54432
54433 * I. [[Espionage]]
54434 ** '''G''' false documents
54435 ** '''H West''' army west (Anglo-American intelligence)
54436 ** '''H Ost''' army east (Soviet intelligence)
54437 ** '''Ht''' army technical
54438 ** '''i''' communications
54439 ** '''L''' airforce
54440 ** '''M''' naval
54441 ** '''T/Lw''' technical air force
54442 ** '''W''' economics
54443 * II. [[Sabotage]] and special tasks
54444 * III. Counterespionage
54445
54446 Both Army and Navy officers headed these sections.
54447
54448 In this reorganizaton, Canaris took care to surround himself with a hand-picked staff, notably his second-in-command, [[Hans Oster]] and [[Erwin Lahousen|Erwin von Lahousen]], Section II Chief. All but one were not members of the Nazi party. The exception was Rudolf Bamler, who was appointed as chief of Section III to cement Himmler's trust in him, but Canaris made sure to keep a tight leash on him and gave him limited access to operational information.
54449
54450 ===The Abwehr During World War II===
54451 Under Canaris the Abwehr expanded and proved relatively efficient during the early years of the war. Its most notable success was [[Operation Nordpol]], which was an operation against the [[Netherlands|Dutch]] underground network, which at the time was supported by the [[United Kingdom|British]] [[Special Operations Executive]]. In March [[1941]], the Germans forced a captured SOE radio operator to transmit messages to Britain in a code that the Germans had obtained. Even though the operator gave every indication that he was compromised, the receiver in Britain did not notice this. Thus the Germans had been able to penetrate the Dutch operation and maintained this state of affairs for two years, capturing agents that were sent and sending false intelligence and [[sabotage]] reports until the British caught on.
54452
54453 But it was ineffective overall for several reasons. Much of its intelligence was deemed politically unacceptable to the German leadership. Moreover, it was in direct competition/conflict with SS intelligence activities under Reinhard Heydrich and [[Walter Schellenberg]]. The animosity between the SS and Abwehr did not stop there. Many of the Abwehr's operatives — including Canaris himself — were in fact anti-Nazi and were involved in many assassination attempts against Hitler, including the most serious one on [[July 20 Plot|July 20, 1944]]. Canaris even employed [[Jew]]s in the Abwehr and used the agency to help a small number of Jews to escape from Germany into [[Switzerland]]. But perhaps the biggest reason was that Canaris himself sought to undermine the Nazi cause.
54454
54455 Despite the Abwehr's many intelligence coups, its effectiveness was more than negated by agents who — with Canaris's blessing — aided the Allies in whatever covert means were necessary. He personally gave false information which discouraged Hitler from invading [[Switzerland]]. He also persuaded [[Francisco Franco]] not to allow German forces to pass through Spain to invade [[Gibraltar]]. He even provided intelligence to the Allies on German intentions as well.
54456
54457 The SS continually undermined the Abwehr by putting several Abwehr officers under investigation, believing them (correctly) to be involved in anti-Hitler plots. The SS also accused Canaris of being defeatist in his intelligence assessments, especially on the Russian campaign. One such briefing reportedly resulting in Hitler seizing Canaris by the lapels, and demanding to know whether the intelligence chief was insinuating that Germany would lose the war.
54458
54459 ===The Frau Solf Tea Party and the End of the Abwehr===
54460 {{main|Frau Solf Tea Party}}
54461 The incident which eventually resulted in the dissolution of the Abwehr came to be known as the &quot;[[Frau Solf Tea Party]]&quot;, which took place on [[September 10]], [[1943]].
54462
54463 Frau Johanna (or Hanna) Solf, the widow of Dr. [[Wilhelm Solf]], a former Colonial Minister under [[Kaiser Wilhelm II]] and ex-[[Ambassador]] to [[Japan]], had long been involved in the anti-Nazi intellectual movement in Berlin. At a tea party hosted by her, a new member was included in the circle, an attractive young Swiss doctor named Reckse. It turned out that Dr. Reckse was an agent of the [[Gestapo]], to which he reported on the tea party and turned over several incriminating documents.
54464
54465 The Solf circle was tipped off and had to flee for their lives, but they were all rounded up on [[January 12]], [[1944]]. Eventually everyone who was involved in the Solf Circle except Frau Solf and her daughter, the Countess [[Lagi Gräfin von Ballestrem]], were executed.
54466
54467 One of those executed was Otto Kiep, an official in the Foreign Office, who had friends in the Abwehr, among whom were [[Erich Vermehren]] and his wife, the former [[Countess Elizabeth von Plettenberg]], who were stationed as agents in [[Istanbul]]. Both were summoned to Berlin by the Gestapo in connection with the Kiep case. Fearing for their lives, they contacted the British and defected.
54468
54469 It was mistakenly believed in Berlin that the Vermehrens absconded with the Abwehr's secret codes and turned them over to the British. That proved to be the last straw for Hitler. Despite the efforts of the Abwehr to shift the blame to the SS or even to the Foreign Ministry, Hitler had had enough of Canaris and he told [[Heinrich Himmler|Himmler]] so twice. He summoned the chief of the Abwehr for a final interview and accused him of allowing the Abwehr to &quot;fall into bits&quot;. Canaris quietly agreed that it was &quot;not surprising&quot;, as Germany was already losing the war.
54470
54471 Hitler fired Canaris on the spot, and on [[February 18]], [[1944]], Hitler signed a decree that abolished the Abwehr. Its functions were taken over by the [[RSHA]]. This action deprived the armed forces (and the anti-Nazi conspirators) of an intelligence service of its own and strengthened Himmler's control over the generals.
54472
54473 Canaris, by this time a [[vice admiral]], was cashiered and given the empty position of chief of the Office of Commercial and Economic Warfare. He was arrested on [[July 23]], [[1944]] in the aftermath of the [[July 20 Plot]] against Hitler and executed shortly before the end of the war, along with Oster his deputy. The functions of the Abwehr were then totally absorbed by the ''[[Sicherheitsdienst]]'', a sub-office of the ''[[Schutzstaffel]]'' (SS) security command, the [[RSHA]].
54474
54475 ==Chiefs of the Abwehr==
54476 * Col. [[Friedrich Gempp]] ([[1921]]&amp;ndash;[[1927]])
54477 * Major [[GÃŧnther Schwantes]] (1927&amp;ndash;[[1929]])
54478 * Lt. Col. [[Ferdinand von Bredow]] (1929&amp;ndash;[[1932]])
54479 * Rear Adm. [[Konrad Patzig]] (1932&amp;ndash;[[1935]])
54480 * Vice Adm. [[Wilhelm Canaris]] (1935&amp;ndash;[[1944]])
54481
54482 ==See also==
54483 * [[Hans Oster]], Canaris' deputy
54484 * [[Erwin Lahousen|Erwin von Lahousen]], chief of German sabotage
54485 * [[Nikolaus Ritter]]
54486 * [[Dietrich Bonhoeffer]]
54487 * [[Oskar Schindler]], another Abwehr agent
54488
54489 [[Category:German intelligence agencies]]
54490 [[Category:German loanwords]]
54491
54492 [[de:Abwehr (Nachrichtendienst)]]
54493 [[fr:Abwehr]]
54494 [[he:אבווהר]]
54495 [[nl:Abwehr]]
54496 [[nb:Abwehr]]
54497 [[pl:Abwehra]]
54498 [[ru:АйвĐĩŅ€]]
54499 [[sr:АйвĐĩŅ€]]
54500 [[fi:Abwehr]]
54501 [[sv:Abwehr]]</text>
54502 </revision>
54503 </page>
54504 <page>
54505 <title>Ancient Pueblo Peoples</title>
54506 <id>1034</id>
54507 <revision>
54508 <id>42103531</id>
54509 <timestamp>2006-03-03T21:22:50Z</timestamp>
54510 <contributor>
54511 <username>Rich Farmbrough</username>
54512 <id>82835</id>
54513 </contributor>
54514 <minor />
54515 <comment>Ced.</comment>
54516 <text xml:space="preserve">[[Image:mesaverde_cliffpalace_20030914.752.jpg|thumb|300px|Cliff Palace, Mesa Verde National Park]]
54517 '''Ancient Pueblo People''', or '''Ancestral Puebloans''' is a preferred term for the cultural group of people often known as '''Anasazi''' who are the ancestors of the modern [[Pueblo people]]s. The ancestral Puebloans were a [[prehistoric]] [[Native Americans in the United States|Native American]] civilization centered around the present-day [[Four Corners (United States)|Four Corners]] area of the [[Southwest United States]]. [[Archaeology|Archaeologists]] still debate when a distinct [[culture]] emerged, but the current consensus, based on terminology defined by the [[Pecos Classification]], suggests their emergence around [[12th century BC|1200 B.C.]], the [[Pecos Classification#Early Basketmaker II Era|Basketmaker II Era]].
54518
54519 The civilization is perhaps best-known for the [[jacal]], [[adobe]] and [[sandstone]] dwellings that they built along cliff walls, particularly during the [[Pecos Classification#Pueblo II Era|Pueblo II]] and [[Pecos Classification#Pueblo III Era|Pueblo III]] eras. The best-preserved examples of those dwellings are in [[National parks (United States)|parks]] such as [[Chaco Canyon|Chaco Culture National Historical Park]], [[Mesa Verde National Park]], [[Hovenweep National Monument]], [[Bandelier National Monument]], and [[Canyon de Chelly National Monument]]. These [[village]]s, called [[pueblo]]s by [[Mexico|Mexican]] settlers, were often only accessible by rope or through [[rock climbing]].
54520
54521 The Ancestral Puebloans are also known for their unique style of [[pottery]], today considered valuable for their rarity. They also created many [[petroglyph]]s and [[pictograph]]s.
54522
54523 The Ancestral Puebloans migrated from their ancient homeland for several complex reasons. These may include pressure from [[Numic]]-speaking peoples moving onto the Colorado Plateau as well as climate change which resulted in [[agriculture|agricultural]] failures. Confirming evidence for climatic change in North America is found in excavations of western regions in the Mississippi Valley between A.D. 1150 and 1350 which show long lasting patterns of warmer, wetter winters and cooler, dryer summers. Most modern Pueblo peoples (whether Keresans, Hopi, or Tanoans) and historians like James W. Loewen, in his book ''Lies Across America'', assert these people did not &quot;vanish,&quot; as is commonly portrayed, but merged into the various pueblo peoples whose descendants still live in [[Arizona]] and [[New Mexico]]. This perspective is not new and was also presented in reports from early 20th century anthropologists, including [[Frank Hamilton Cushing]], [[J. Walter Fewkes]] and [[Alfred V. Kidder]]. Many modern Pueblo tribes trace their lineage from settlements in the Anasazi area and areas inhabited by their cultural neighbors, the [[Mogollon]]. For example, the San Ildefonso [[Pueblo people]] believe that their ancestors lived in both the [[Mesa Verde]] area and the current [[Bandelier National Monument|Bandelier]].
54524
54525 ==Anasazi as a cultural label==
54526 The term &quot;Anasazi&quot; was established in archaeological terminology through the Pecos Classification system in 1927. Archaeologist Linda Cordell discussed the word's etymology and use:
54527 :&quot;''The name &quot;Anasazi&quot; has come to mean &quot;ancient people,&quot; although the word itself is [[Navajo language|Navajo]], meaning &quot;enemy ancestors.&quot;'' [The Navajo word is ''anaasÃĄzí'' (&lt;''anaa-'' &quot;enemy&quot;, ''sÃĄzí'' &quot;ancestor&quot;).] ''It is unfortunate that a non-Pueblo word has come to stand for a tradition that is certainly ancestral Pueblo. The term was first applied to ruins of the Mesa Verde by [[Richard Wetherill]], a rancher and trader who, in 1888-1889, was the first Anglo-American to explore the sites in that area. Wetherill knew and worked with Navajos and understood what the word meant. The name was further sanctioned in archaeology when it was adopted by Alfred V. Kidder, the acknowledged dean of Southwestern Archaeology. Kidder felt that is was less cumbersome than a more technical term he might have used. Subsequently some archaeologists who would try to change the term have worried that because the Pueblos speak different languages, there are different words for &quot;ancestor,&quot; and using one might be offensive to people speaking other languages.''
54528
54529 Some modern Pueblo peoples object to the use of the term ''Anasazi'', although there is still controversy among them on a native alternative. The modern Hopi use the word &quot;''Hisatsinom''&quot; in preference to Anasazi. However, Navajo Nation Historic Preservation Department (NNHPD) spokeman Ronald Maldonado has indicated the Navajo do not favor use of the term &quot;Ancestral Puebloan.&quot; In fact, reports submitted for review by NNHPD are rejected if they include use of the term.
54530
54531 ==Cultural divisions==
54532 Archaeological cultural units such as &quot;Anasazi&quot;, [[Hohokam]], [[Patayan]] or Mogollon are used by [[archaeologists]] to define material culture similarities and differences that may identify prehistoric socio-cultural units which may be understood as equivalent to modern tribes, societies or peoples. The names and divisions are classificatory devices based on theoretical perspectives, analytical methods and data available at the time of analysis and publication. They are subject to change, not only on the basis of new information and discoveries, but also as attitudes and perspectives change within the scientific community. It should not be assumed that an archaeological division or culture unit corresponds to a particular language group or to a socio-political entity such as a ''tribe''.
54533
54534 When making use of modern cultural divisions in the American Southwest, it is important to understand three limitations in the current conventions:
54535 *Archaeological research focuses on items left behind during people&amp;#8217;s activities; fragments of pottery vessels, human remains, stone tools or evidence left from the construction of dwellings. However, many other aspects of the culture of prehistoric peoples are not tangible. [[Language]]s spoken by these people and their beliefs and behavior are difficult to decipher from physical materials. Cultural divisions are tools of the modern scientist, and so should not be considered similar to divisions or relationships the ancient residents may have recognized. Modern cultures in this region, many of whom claim some of these ancient people as ancestors, contain a striking range of diversity in lifestyles, social organization, language and religious beliefs. This suggests the ancient people were also more diverse than their material remains may suggest.
54536
54537 *The modern term &amp;#8220;style&amp;#8221; has a bearing on how material items such as pottery or [[architecture]] can be interpreted. Within a people, different means to accomplish the same goal can be adopted by subsets of the larger group. For example, in modern Western cultures, there are alternative styles of [[clothing]] that characterized older and younger generations. Some cultural differences may be based on linear traditions, on teaching from one generation or &amp;#8220;school&amp;#8221; to another. Other varieties in style may have distinguished between arbitrary groups within a culture, perhaps defining [[status]], [[gender]], [[clan]] or [[guild]] affiliation, religious belief or cultural alliances. Variations may also simply reflect the different resources available in a given time or area.
54538
54539 *Defining cultural groups, such as the Ancient Pueblo peoples, tends to create an image of territories separated by clear-cut boundaries, like modern state lines. These simply did not exist. ''Prehistoric people traded, worshipped and collaborated most often with other nearby groups. Cultural differences should therefore be understood as ''“clinal”'', &quot;increasing gradually as the distance separating groups also increases.&quot;'' (Plog, p. 72.) Departures from the expected pattern may occur because of unidentified social or political situations or because of geographic barriers. In the Southwest, mountain ranges, rivers and, most obviously, the [[Grand Canyon]] can be significant barriers for human communities, likely reducing the frequency of contact with other groups. Current opinion holds that the closer cultural similarity between the Mogollon and Ancient Pueblos and their greater differences from the [[Hohokam]] and [[Patayan]] is due to both the geography and the variety of climate zones in the Southwest.
54540
54541 ==References==
54542 *Cordell, Linda S. ''Ancient Pueblo Peoples''. St. Remy Press and Smithsonian Institution, 1994. ISBN 0-89599-038-5.
54543 *Fagan, Brian M. &quot;Ancient North America: Tha Archaeology of a Continent (part five).&quot; Thames and Hudson, Inc., New York, New York, 1991. ISBN 0-500-05075-9.
54544 *[[Plog, Stephen]]. ''Ancient Peoples of the American Southwest''. Thames and Hudson, London, England, 1997. ISBN 0-500-27939-X.
54545 *Sofaer, Anna , Director. &quot;Mystery of Chaco Canyon.&quot; 1999. DVD/VHS. Bullfrog Films. Blurb: &quot;Unveiling the ancient astronomy of southwestern Pueblo Indians.&quot; Sequel to &quot;The Sun Dagger.&quot;
54546
54547 ==See also==
54548 * [[Chaco Culture National Historical Park|Chacoans]]
54549 * [[Cliff Palace]]
54550 * [[Hopi]]
54551 * [[Kiva]]
54552 * [[Kokopelli]]
54553 * [[Matrilocality]]
54554 * [[Newspaper Rock State Historic Monument]]
54555 * [[Pueblo people]]
54556 * [[sipapu]]
54557 * [[Taos Pueblo]]
54558 * [[Zuni]]
54559
54560 ==External links==
54561 * [http://www.co.blm.gov/ahc/ Homepage of the Anasazi Heritage Center]
54562 *[http://www.holmes.anthropology.museum/southwestpottery/index.html Southwest Pueblo Pottery] Holmes Anthropology Museum
54563 [[Category:Ancient peoples]]
54564 [[Category:Archaeological cultures]]
54565 [[Category:Native American culture]]
54566 [[Category:Native American history]]
54567 [[Category:Pottery]]
54568
54569 [[de:Anasazi]]
54570 [[fa:Ų…ØąØ¯Ų…اŲ† باØŗØĒاŲ†ÛŒ ŲžŲˆØĻبŲ„Ųˆ]]
54571 [[fr:Anasazi]]
54572 [[it:Anasazi]]
54573 [[pl:Anasazi]]</text>
54574 </revision>
54575 </page>
54576 <page>
54577 <title>Aal</title>
54578 <id>1035</id>
54579 <revision>
54580 <id>15899541</id>
54581 <timestamp>2005-03-28T09:29:04Z</timestamp>
54582 <contributor>
54583 <username>N.hong.phuc</username>
54584 <id>216275</id>
54585 </contributor>
54586 <text xml:space="preserve">#REDIRECT [[AAL]]</text>
54587 </revision>
54588 </page>
54589 <page>
54590 <title>Aalborg</title>
54591 <id>1036</id>
54592 <revision>
54593 <id>41621262</id>
54594 <timestamp>2006-02-28T16:00:51Z</timestamp>
54595 <contributor>
54596 <ip>62.25.109.194</ip>
54597 </contributor>
54598 <text xml:space="preserve">[[Image:Olbo 2004 ubt.jpeg|thumb|right|300px|View of Aalborg railroad station from J.F. Kennedy's Square, 2004]]
54599
54600 '''Aalborg''' is a municipality ([[Danish language|Danish]], ''[[Commune (subnational entity)|kommune]]'') in [[North Jutland County]] on the [[Jutland]] peninsula in northern [[Denmark]]. The municipality straddles the [[Limfjord]], the waterway which connects the [[North Sea]] and the [[Kattegat]] east-to-west, and which separates the main body of the Jutland peninsula from the island of [[Vendsyssel-Thy]] north-to-south.
54601
54602 It is also the name of the municipality's main city and the site of its municipal council, as well as the name of a [[seaport]].
54603
54604 The municipality and the town have chosen to retain the traditional spelling of the name as ''Aalborg'', although the new spelling ''Ålborg'' is used in other contexts, such as Ålborg Bay (''Ålborg Bugt''), the body of water which lies to the east of the Jutland peninsula.
54605
54606 The municipality, which includes the island of [[Egholm]], covers an area of 560 [[square kilometre|km²]], and has a total population of 192,353 (2005). The mayor of the municipality is Henning G. Jensen, a member of the [[Social Democrats (Denmark)|Social Democrats]] (''Socialdemokraterne'') [[Politics of Denmark|political party]].
54607
54608 Neighboring municipalities are [[Sejlflod]] and [[Hals]] to the east, [[Dronninglund]] and [[Brønderslev]] to the north, [[Aabybro]] and [[Nibe]] to the west, and [[Støvring]] and [[Skørping]] to the south. The waters splitting the municipality are called ''Langerak'' to the east and ''Gjøl Bredning'' to the west. The island of Egholm is located in ''Gjøl Bredning'', and is connected by [[ferry]] to the city of Aalborg at its southern shore.
54609
54610 By [[January 1]], [[2007]] Aalborg municipality will, as the result of [[Municipalities of Denmark#Municipality Reform 2007|''Kommunalreformen'' (&quot;The Municipality Reform&quot; of 2007)]], be merged with existing [[Hals]], [[Nibe]], and [[Sejlflod]] municipalities to form the new Aalborg municipality. This will create a municipality with an area of 1,171 [[square kilometre|km²]]. The new municipality will belong to the new [[Region Nordjylland]] (&quot;North Jutland Region&quot;).
54611
54612 ==Surroundings==
54613 The area is typical for the north of Jutland. To the west the Limfjord broadens into an irregular lake (salt water), with low, marshy shores and many islands. Northwest is [[Store Vildmose]] (&quot;Greater Wild bog&quot;), a swamp where a mirage is sometimes seen in summer. Southeast lies the similar [[Lille Vildmose]] (&quot;Lesser Wild bog&quot;). Store Vildmose was drained and farmed in the beginning of the 20th century, and Lille Vildmose is now the largest [[Bog|moor]] in Denmark.
54614
54615 ==The city of Aalborg==
54616 The city of Aalborg is the fourth largest city in Denmark— after [[Copenhagen]], [[Aarhus]] and [[Odense]]. It is the location of [[Aalborg Air Base]], an important base of the [[Danish Air Force|Danish air force]], and is the seat of a [[Lutheran]] [[bishop]].
54617
54618 Railway connects Aalborg with [[Hjørring]], [[Frederikshavn]], and [[Skagen]] to the north, and with [[Aarhus]] and the lines from [[Germany]] to the south, as well as to [[Copenhagen]] in the east over the island of [[Funen]].
54619
54620 The harbour is good and safe, though fairly difficult to access.
54621
54622 ===History===
54623 Aalborg traces its history back over 1000 years. It was originally settled as a trading post, because of its position on the Limfjord. The sites of what were two settlements and a visible burial ground can be seen on [[Lindholm Høje]], a hill overlooking the city. The size of these settlements emphasise the significance of this place as a crossroads.
54624
54625 The first mention of Aalborg under its original name ''Alabu'', is found on a coin dated to 1040.
54626
54627 During the [[Middle Ages]], Aalborg prospered and became one of the largest cities in Denmark. This prosperity was further enhanced when in [[1516]] Aalborg was granted a [[monopoly]] in salt herring.
54628
54629 Aalborg received town privileges in [[1342]] and the bishopric dates from [[1554]].
54630
54631 During the German invasion of Denmark in 1940, the Aalborg Aerodrome was captured by Nazi paratroopers very early in the action.
54632
54633 ===Industry===
54634 Aalborg is a growing industrial and commercial centre, exporting grain, cement and fish.
54635
54636 It is home to [[De Danske Spritfabrikker]]'s (&quot;Danish Distillers&quot;) [[akvavit|aquavit]] [[snaps]], production facility for the distillation of the Aalborg family of akvavits consisting of 17 different brands. Danish Distillers is Scandinavia's largest producer and supplier of spirits for consumption, and is the world's largest producer and exporter of aquavit, supplying over 140 geographic markets.
54637
54638 It is also the centre of a growing telecomunications industry originating from the [[University of Aalborg|Aalborg University]].
54639
54640 [[Image:Aalborg NyTorv 2004 ubt.jpeg|thumb|300px|left|Nytorv, next to [[Limfjord]].]]
54641
54642 ===Carnival in Aalborg===
54643 The annual carnival takes place the last weekend in May.
54644
54645 During the carnival, Aalborg receives about 100,000 people. Friday “The Battle of Carnival Bands” is an exciting and colourful evening with processions through the city when all the participating groups compete to be the leading carnival group.
54646
54647 The carnival itself is the following Saturday – on this day the city centre is full of life. The streets are filled with gaily dressed people who are in a real spring mood. In Kilde Park concerts are given from various stages all day to midnight. The Carnival ends with a grand firework display on the harbour.
54648
54649 ===Architecture and tourist attractions===
54650 The old castle [[Aalborghus Castle]] (''Aalborghus Slot'') and some picturesque houses of the [[17th century]] remain in the center of the town. The [[Timber framing|half-timbered]] (''bindingsvÃĻrk'') castle was built in 1550 by King [[Christian III of Denmark|Christian III]], and was converted to government administration offices in the 1950s.
54651
54652 [[Budolfi Church]] cathedral dates mostly from the middle of the [[18th century]], while ''Vor Frue Kirke'' (Church of Our Lady) was partially burnt in [[1894]]. The foundations of both churches are from the [[14th century]] or earlier.
54653
54654 There are also an ancient hospital and a museum of art and antiquities.
54655
54656 On the north side of the Limfjord is [[Nørresundby]], which is connected to Aalborg by a road bridge, an iron railway bridge, as well as a motorway tunnel running under the Limfjord. Nørresundby is the site of the Lindholm Høje settlement and burial ground from the Germanic Iron Age and [[Viking]] times. There is also a museum on the site.
54657
54658 [[AalborgtÃĨrnet]]. A tripod tower erected in 1933. The tower still gives an exquisite view over the
54659 fjord and the city from its 105 m rise over the sea level.
54660
54661 &lt;!--==Famous residents of the municipality==--&gt;
54662 ==Twinning==
54663 Aalborg maintains cultural, economic and educational ties with some 25 cities around the globe, among others [[Edinburgh]], [[Scotland]]. Thus, Aalborg has the most twin cities in Denmark. Every five years Aalborg gathers youth from the majority of its twin cities for a week of sports games, known as Ungdomslegene (The Youth Games).
54664
54665 ==Other information==
54666 The city has a [[football (soccer)|football]] team playing in the Danish Superleague, [[Aalborg Boldspilklub]], which is known as AaB.
54667
54668 The city has the highest number of [[hairdresser]] shops, [[tattoo]] shops, bars, night clubs, pubs and [[solariums]] per inhabitant in [[Denmark]].
54669
54670 == See Also ==
54671
54672 [[Aalborg_monastery]]
54673
54674 ==External links==
54675 {{commons|Category:Aalborg municipality}}
54676 * [http://www.aalborg.dk/ Municipality's official website]
54677 * [http://www.detnyeaalborg.dk/ The new Aalborg municipality's website (Danish only)]
54678 * [http://www.visitaalborg.com/ Aalborg tourist office]
54679 * [http://www.aau.dk/ Aalborg University]
54680 * [http://www.aalborgakvavit.dk/ Aalborg Akvavit]
54681 * [http://www.aalborgtaarnet.com/ ÅlborgtÃĨrnet]
54682 * [http://maps.google.com/maps?hl=en&amp;t=k&amp;ll=57.039983,9.944344&amp;spn=0.084614,0.299377&amp;t=k Satellite image from Google Maps]
54683 * [http://www.interaalborg.dk/ InterAalborg.dk An independent guide and information of the city. Website made by Aalborg University students]
54684
54685 ==References==
54686 {{Wikisource1911Enc|Aalborg}}
54687 * Municipal statistics: [http://www2.netborger.dk/Kommunefakta/ NetBorger Kommunefakta], delivered from [http://www.kmd.dk/ KMD] aka Kommunedata (Municipal Data)
54688 * Municipal mergers and neighbors: [http://kommune.eniro.dk/region/media/nyekommuner.shtml Eniro new municipalities map]
54689
54690 [[Category:Municipalities of Denmark]]
54691 [[Category:Cities and towns in Denmark]]
54692
54693 [[bg:АĐģйОŅ€Đŗ]]
54694 [[da:Ålborg]]
54695 [[de:Aalborg]]
54696 [[es:Aalborg]]
54697 [[fr:Aalborg]]
54698 [[gl:Aalborg - Ålborg]]
54699 [[it:Aalborg]]
54700 [[hu:Aalborg]]
54701 [[nl:Aalborg]]
54702 [[no:Ålborg]]
54703 [[pl:Aalborg]]
54704 [[ro:Aalborg]]
54705 [[fi:Aalborg]]
54706 [[sv:Ålborg]]</text>
54707 </revision>
54708 </page>
54709 <page>
54710 <title>Aarhus</title>
54711 <id>1038</id>
54712 <revision>
54713 <id>41652564</id>
54714 <timestamp>2006-02-28T20:37:37Z</timestamp>
54715 <contributor>
54716 <username>Sorenholm</username>
54717 <id>1007597</id>
54718 </contributor>
54719 <minor />
54720 <comment>/* Culture */</comment>
54721 <text xml:space="preserve">:''For the Aarhus convention on public participation, see [[Aarhus Convention]].''
54722
54723 [[Image:Århus RÃĨdhus.jpg|thumb|right|The [[City hall]] of Aarhus.]]
54724 '''Aarhus''', also commonly known by its [[Danish language|Danish]] spelling '''Århus''', is the second largest city in [[Denmark]]. It is the principal [[port]] on the east coast of [[Jutland]]. Aarhus is also the location of the council of both [[Aarhus municipality]] and [[Aarhus County]].
54725
54726 ==Demographics==
54727 The city's population is 294,954 (July 2005) [http://www.aarhus.dk/statistik (1)].
54728
54729 The town lies at the junction of [[railway]] lines from all parts of the country in a low-lying, fertile, and well-wooded district. To the southwest (13 miles by rail), a picturesque region that contains the [[Gudenaa|GudenÃĨ]] and several lakes extends west from the railway junction of [[Skanderborg]], and rises to ground exceeding 500 feet in the [[Himmelbjerget]]. The railway traverses this pleasant district of moorland and woodland to [[Silkeborg]], a modern town with one of the most attractive situations in the kingdom.
54730
54731 The harbour is good and safe, and agricultural produce is exported, while [[coal]] and [[iron]] are among the chief imports.
54732
54733 The bishopric of Aarhus dates back at least from [[951]]. Aarhus' [[13th century]] [[cathedral]], The [[Århus Domkirke]], is the largest church in Denmark, as well as the second largest in [[Northern Europe]], being only 1.5&amp;nbsp;ft shorter than its counterpart in [[Trondheim]].
54734
54735 Aarhus is also home to one of the few [[ghetto]]s in Denmark: [[Gellerup]]
54736
54737 One major tourist attraction in Aarhus is [[The_Old_Town,_Aarhus|The Old Town]] ([[Danish language|Danish]]: ''Den Gamle By''), which is not actually an old part of the city itself, but a collection of old buildings from Danish history gathered from all around the country.
54738
54739 The [[Lord Mayor]] of Aarhus is [[Nicolai Wammen]] of the [[Social Democrats (Denmark)|Social Democrats]].
54740
54741 Aarhus is the home of [[University of Aarhus]], [[Aarhus School of Business]] and the [[University College of Aarhus]].
54742
54743 ==History==
54744 &lt;!--Insert history intro here--&gt;
54745 ===The name===
54746 In [[medieval]] times, the city was called ''Arus'', and in Icelandic chronicles, it was known as ''ÁrÃŗss''. It is a compound of the two words ''ār'', genitive of ''ā'' &quot;river&quot; (Modern Danish ''ÃĨ'') and ''ōss'' &quot;mouth&quot; (obsolete in Modern Danish; in Modern Icelandic this word is still used for &quot;river delta&quot;). The city is located on the mouth of the small river Århus Å.
54747
54748 Through regular sound development, Medieval Danish ''Arus'' became ''Aars'' or ''Oes'', a form, which persisted in the dialects of the surrounding parishes until the 20th century. In 1406 ''Aarhus'' became revalent in the written sources, and gradually became the norm in the [[17th century]]. ''Aarhus'' is probably a remodelling after the numerous Low German place names in ''-husen'', possibly as a result of the influence of German merchants.
54749
54750 The city is mentioned the first time by [[Adam of Bremen]] who mentions that &quot;Reginbrand, bishop of the church of Aarhus (Harusam)&quot; participates in a church meeting in the city of [[Ingelham]] in [[Germany]]. {{fact}}
54751
54752 ===Viking times===
54753 The oldest [[Archaeology|archaelogical]] findings in Aarhus are glass pearls which date to the end of the [[7th century]]. Half buried [[Long houses]], used both as homes and workshops for the Vikings have also been found.{{fact}}
54754
54755 In the houses and the adjoining archaelogical layers, combs, jewelry and basic multi-purpose tools have been found that indicate the settlement is from approximately year [[900]]. Digs in the spring of 2005 revealed a so-called city-ditch from the year [[850]] which might have marked the trade centre upon which the city is built. {{fact}}
54756
54757 The finding of six [[rune stones]] in and around Aarhus indicates the city had some significance around year [[1000]] as only wealthy nobles traditionally used them. {{fact}}
54758
54759 ===1600-1700===
54760 During the wars of the 17th century, it is probable that the city suffered a great deal. Fortifications still exist south of the city as a reminder of the [[Germany|German]] imperial campaigns between [[1627]] and [[1629]]. In [[1644]], [[Sweden]] taxed the city harshly and between [[1657]] and [[1659]], it was occupied by Swedish troops on several occasions. {{fact}}
54761
54762 In spite of these and other misfortunes, such as plague and city-wide fires, Aarhus was still quite a significant city in [[Denmark]] due to its favourable geographical position which was of significant importance for trading. Trade came mainly from the inland of [[Jutland]] but also from [[Norway]], [[LÃŧbeck]], [[Amsterdam]], [[England]], [[France]] and [[Spain]]. In the middle of the 18th century the trade fleet consisted of approximately 100 ships.{{fact}}
54763
54764 ===1800===
54765 In the [[19th century]], the city gained more independence from the dominance of [[Copenhagen]] and [[Hamburg]]. While it had been the third largest city in Jutland during the early 19th century, its population surpassed [[Randers]] in [[1840]] and in [[1850]], [[Ålborg]], thus becoming the largest city in Jutland and the second largest in Denmark.{{fact}}
54766
54767 The city's material prosperity continued to increase as the harbour expanded and the railway network grew. Culturally, it marketed itself as the &quot;Capital of Jutland&quot; and expanded many of its cultural institutions like the national library, universities, the [[Aarhus Theater]] and hospitals.
54768
54769 ==Suburbs of Aarhus (listed by zip code)==
54770 * ''8000'' [[Århus C]]
54771 * ''8200'' [[Århus N]]
54772 * ''8210'' [[Århus V]]
54773 * ''8220'' [[Brabrand]]
54774 * ''8230'' [[Åbyhøj]]
54775 * ''8240'' [[Risskov]]
54776 * ''8250'' [[EgÃĨ]]
54777 * ''8260'' [[Viby J]]
54778 * ''8270'' [[Højbjerg]]
54779 * ''8310'' [[Tranbjerg J]]
54780 * ''8320'' [[MÃĨrslet]]
54781 * ''8330'' [[Beder_(Danish_village)|Beder]]
54782 * ''8340'' [[Malling]]
54783 * ''8355'' [[Solbjerg]]
54784 * ''8361'' [[Hasselager]]
54785 * ''8380'' [[Trige]]
54786 * ''8381'' [[Tilst]]
54787 * ''8462'' [[Harlev]]
54788 * ''8471'' [[Sabro]]
54789 * ''8520'' [[Lystrup]]
54790 * ''8530'' [[Hjortshøj]]
54791 * ''8541'' [[Skødstrup]]
54792
54793 ==Buildings and constructions==
54794 * [[Telecommunication Tower Arhus]] (Concrete tower with guyed mast on its top, not accessible for visitors)
54795 * [[Skejby Sygehus]] (the second largest hospital in Denmark)
54796
54797 ==External links==
54798 {{commons|Århus}}
54799 {{Wikisource1911Enc|Aarhus}}
54800
54801 ===Official websites===
54802 * [http://www.aarhus.dk/aa/portal/borger/s_english Official city web portal]
54803 * [http://www.visitaarhus.com/show.asp?id=64 Visit Århus - the official tourism site of Århus]
54804
54805 ===Educational institutions===
54806 * [http://www.au.dk/en/ University of Aarhus]
54807 * [http://www.asb.dk Aarhus School of Business]
54808 * [http://www.iha.dk University College of Aarhus (''technical college'')]
54809
54810 ===Culture===
54811 * [http://www.aakb.dk/sw1379.asp?setlanguage=2 Århus Kommunes Biblioteker (''Aarhus Public Libraries'')]
54812 * [http://www.huset-aarhus.dk/?setlanguage=2 Kulturcenter HUSET (''Cultural Centre'')]
54813 * [http://www.aros.dk/?setlanguage=2 ARoS Aarhus Kunstmuseum (''museum of arts'')]
54814 * [http://www.dengamleby.dk/english.htm Den Gamle By (''The Old Town'')]
54815 * [http://moesgaard.hum.au.dk/my.php?top=13&amp;language=1 MoesgÃĨrd Museum (''archaeological and ethnographic museum'')]
54816 * [http://www.musikhusetaarhus.dk Musikhuset Aarhus (''concert hall'')]
54817 * [http://www.minority-report.dk/english/ (''Aarhus Festival of Contemporary Art 2004: Minority Report'')]
54818
54819 [[Category:Aarhus]]
54820 [[Category:Cities and towns in Denmark]]
54821
54822 [[bg:ОŅ€Ņ…ŅƒŅ]]
54823 [[cs:Århus]]
54824 [[da:Århus]]
54825 [[de:Århus]]
54826 [[es:Århus]]
54827 [[eo:Arhuzo]]
54828 [[fr:Århus]]
54829 [[gl:Aarhus - Århus]]
54830 [[id:Aarhus]]
54831 [[it:Århus]]
54832 [[hu:Aarhus]]
54833 [[lv:OrhÅĢsa]]
54834 [[nl:Aarhus]]
54835 [[ja:ã‚Ēãƒŧプ]]
54836 [[no:Århus]]
54837 [[pl:Århus]]
54838 [[ro:Århus]]
54839 [[sr:АŅ€Ņ…ŅƒŅ]]
54840 [[fi:Århus]]
54841 [[sv:Århus]]
54842 [[tr:Orhus]]</text>
54843 </revision>
54844 </page>
54845 <page>
54846 <title>Amblyopsis Spelea</title>
54847 <id>1042</id>
54848 <revision>
54849 <id>24813196</id>
54850 <timestamp>2005-10-05T14:22:21Z</timestamp>
54851 <contributor>
54852 <username>Kbdank71</username>
54853 <id>197953</id>
54854 </contributor>
54855 <comment>fix double redirect</comment>
54856 <text xml:space="preserve">#REDIRECT [[Northern Cavefish]]</text>
54857 </revision>
54858 </page>
54859 <page>
54860 <title>Northern Cavefish</title>
54861 <id>1043</id>
54862 <revision>
54863 <id>37292545</id>
54864 <timestamp>2006-01-30T01:32:08Z</timestamp>
54865 <contributor>
54866 <username>Gdrbot</username>
54867 <id>263608</id>
54868 </contributor>
54869 <minor />
54870 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
54871 <text xml:space="preserve">{{Taxobox
54872 | color = pink
54873 | name = Northern cavefish
54874 | status = {{StatusVulnerable}}
54875 | regnum = [[Animal]]ia
54876 | phylum = [[Chordata]]
54877 | classis = [[Actinopterygii]]
54878 | ordo = [[Percopsiformes]]
54879 | familia = [[Amblyopsidae]]
54880 | genus = ''[[Amblyopsis]]''
54881 | species = '''''A. spelea'''''
54882 | binomial = ''Amblyopsis spelea''
54883 | binomial_authority = (DeKay, 1842)
54884 }}
54885
54886 The '''Nothern Cavefish''' also know as the '''Northern Blindfish''', ''Amblyopsis spelea'' is found in caves through [[Kentucky]] and southern [[Indiana]]. It is listed as a threatened species in the United States and the [[IUCN]] lists the species as vulnerable.
54887
54888 The [[White River (Indiana)|White River]], flowing east to west south of [[Bedford, Indiana]], delimits the northern range of ''Amblyopsis spelea''. These fish are not found in caves north of the White River.
54889
54890 [[Category:Percopsiformes]]
54891 ==References==
54892 * {{FishBase_species|genus=Amblyopsis|species=spelea|year=2005|month=10}}
54893
54894
54895 {{fish-stub}}</text>
54896 </revision>
54897 </page>
54898 <page>
54899 <title>Abandonment</title>
54900 <id>1044</id>
54901 <revision>
54902 <id>41712336</id>
54903 <timestamp>2006-03-01T05:55:35Z</timestamp>
54904 <contributor>
54905 <username>CanadianCaesar</username>
54906 <id>290432</id>
54907 </contributor>
54908 <minor />
54909 <comment>Reverted edits by [[Special:Contributions/68.198.223.52|68.198.223.52]] ([[User talk:68.198.223.52|talk]]) to last version by Coolcaesar</comment>
54910 <text xml:space="preserve">{{cleanup-date|August 2005}}
54911 {{Wiktionarypar|abandonment}}
54912
54913 The term '''abandonment''' has a multitude of uses which can generally be broken into legal and extra-legal uses. This &quot;signpost article&quot; provides a guide to the various uses of the word via links to articles that deal with each of the distinct concepts at length.
54914
54915 == Uses in law ==
54916 '''Abandonment''' in law, the relinquishment of an interest, claim, privilege or possession. This broad meaning has a number of applications in different branches of law.
54917 *In [[Common law|common law]] jurisdictions, both ''common law abandonment'' and ''statutory abandonment'' of [[Property (ownership right)|property]] may be recognized. A common law abandonment may be generally defined as &quot;the relinquishment of a right [in property] by the owner thereof without any regard to future possession by himself or any other person, and with the intention to foresake or desert the right....&quot; 1 ''Corpus Juris Secundum'' “Abandonment” § 2 (1985) (emphasis added) [footnotes and citations omitted]. Common law abandonment is &quot;the voluntary relinquishment of a thing by its owner with the intention of terminating his ownership, and without [the intention of] vesting ownership in any other person; the giving up of a thing absolutely, without reference to any particular person or purpose....&quot; Id. (emphasis added) [footnotes and citations omitted]. An example of statutory abandonment in a common law jurisdiction is abandonment by a [[Bankruptcy in the United States|bankruptcy trustee]] under {{usc|11|554}}).
54918 *Abandonment of an action (see [[Judicature Acts#Specific changes in procedure|Judicature Acts]]), relates to a plaintiff's discontinuance of proceedings ongoing before the [[High Court of Justice of England and Wales]] and which procedure changed substantially as a result of reforms to the judiciary of the United Kingdom in 1875.
54919 *In [[marine insurance]] parlance, abandonment involves the surrender of a ship or goods to the insurer.
54920 *In the domain of [[copyright]]s, abandonment is recognized as the explicit release of material by a copyright holder into the [[public domain]]. However, statutory abandonment is a relatively unclear area of copyright law and the more common approach is to license work under a scheme that provides for public use rather than strictly abandoning copyright. For more information consult [[Public_domain#Disclaimer of interest|&quot;disclaimer of interest&quot;]].
54921 *In the military practice and law, abandonment of a military post by a soldier can be called [[desertion]], and the condition of being away from that post can be called [[Desertion#AWOL: Away WithOut Leave|being &quot;Away Without Leave&quot;]].
54922 *In family circumstances, [[child abandonment]] is often recognized as a crime, in which case the child is usually not physically harmed directly as part of the abandonment; distinct from this is the widely recognized crime of [[infanticide]].
54923 &lt;!-- '''Abandonment of wife and children''' is sometimes called ''[[desertion]],'' and is somewhat difficult to prove in court. The plaintiff must generally show his or spouse to have left for over a year and failed to pay support, as well as proving that the departure was not agreed upon and also not caused by the plaintiff. Because abandonment by a husband often left his wife and children destitute (and hence a burden upon the public purse), it used to be a [[felony]] in most [[U.S. state|American states]]. At present, nearly all states have abolished the felony of abandonment, but it remains in place in a few states like [[Massachusetts]]. The abandonment or exposure of a young child under the age of two, which is an indictable [[misdemeanor]], is commonly called ''cruelty to children.'' --&gt;
54924 * '''Abandonment of domicile''' is the ceasing to reside permanently in a former domicile coupled with the intention of choosing a new domicile. The presumptions which will guide the court in deciding whether a former domicile has been abandoned or not must be inferred from the facts of each individual case. In the United States, a tenant is generally understood to have abandoned a property if he or she has fallen behind in rent and shown a lack of interest in continuing to live there. The landlord must then send notice of the intent to sell the property and wait a certain number of days to take action on it. How long the landlord has to wait depends on the value of the property; the landlord can keep the money up to the costs incurred as a result of the abandonment; the rest must be set aside for the former tenant, should she or he eventually return.
54925
54926 * '''Abandonment of an easement''' is the relinquishment of some accommodation or right in another's land, such as right of way, free access of light and air, etc. See [[easement]].
54927
54928 * '''''Abandonment of railways''''' has a legal signification in England recognized by statute, by authority of which the [[Board of Trade]] may, under certain circumstances, grant a warrant to a [[railway]] authorizing the abandonment of its line or part of it.
54929
54930 * '''Abandonment of trademark''' is understood to happen when a [[trademark]] is not used for three or more years, or when it is deliberately discontinued; trademark law protects only trademarks being actively used and defended. An example of an abandoned trademark is ''[[aspirin]]'', once a mark of the [[Bayer]] company, now considered a generic term.
54931
54932 == Extra-legal uses ==
54933 Outside of legal circles, '''abandonment''' has additional meanings and uses:
54934 * '''''Abandonment''''' is a play about love, death, identity and evolution. It is a complex mixture of social comedy and family drama, reminding us that the past is not as far away as we think. Written by [[Kate Atkinson]].
54935 * '''[[Child abandonment]] in film and literature''':
54936 ** ''[[Bachelor Mother]]'' ([[Garson Kanin]]; US, 1939)
54937 * '''Abandonment of a patient''', in [[medicine]], is where a health care professional (usually a [[physician]], [[nurse]], [[dentist]], or [[paramedic]]) has already begun emergency treatment of a patient and then suddenly walks away while the patient is still in need, without securing the services of an adequate substitute, or giving the patient adequate opportunity to find one. It is a [[crime]] in many countries and can result in the loss of one's license to practice. Also, because of the [[public policy]] in favor of keeping people alive, the professional cannot defend himself or herself by pointing to the patient's inability to pay for services, the possibility of exposure to malpractice liability beyond one's insurance coverage, or the patient's inability to stop screaming (because of extreme pain).
54938
54939 {{Wikisource1911Enc|Abandonment}}
54940 [[Category:Legal terms]]
54941
54942 [[be:&amp;#1040;&amp;#1073;&amp;#1072;&amp;#1085;&amp;#1076;&amp;#1086;&amp;#1085;]]
54943 [[da:Abandon]]
54944 [[de:Abandon]]
54945 [[it:Abbandono]]
54946 [[pl:Abandon]]
54947 [[ru:&amp;#1040;&amp;#1073;&amp;#1072;&amp;#1085;&amp;#1076;&amp;#1086;&amp;#1085;]]</text>
54948 </revision>
54949 </page>
54950 <page>
54951 <title>Abatement</title>
54952 <id>1046</id>
54953 <revision>
54954 <id>42146295</id>
54955 <timestamp>2006-03-04T03:07:16Z</timestamp>
54956 <contributor>
54957 <username>Gflores</username>
54958 <id>153556</id>
54959 </contributor>
54960 <comment>rm cleanup</comment>
54961 <text xml:space="preserve">{{wiktionary}}
54962 The word '''abatement''' has various meanings, many of them legal. The word came through French ''abattre'' from Latin ''ab'' + Late Latin ''battuere'' = &quot;to beat&quot; (which came from Germanic). It means a beating down or reducing or doing away with something.
54963
54964 *[[Abatement of a nuisance]], the remedy allowed by law to a person or public authority injured by a public [[nuisance]], letting him destroy or remove it, if doing so causes no breach of the peace. In the case of private nuisances, abatement is also allowed if it causes no breach of the peace and no damage beyond what removing the nuisance requires.
54965
54966 *Abatement of [[freehold (real property)|freehold]] happens where, after the person last seised dies, a stranger enters upon lands before the entry of the heir or devisee, and keeps the heir or devisee out of possession.
54967 **[[Intrusion]], an entry by a stranger when a tenant for life dies, to the prejudice of the reversioner or remainder man.
54968 **[[Disseisin]], the forcible or fraudulent expulsion of a person seised of the freehold.
54969
54970 *[[Abatement of debts and legacies]], a common law doctrine of wills that holds that when the equitable assets of a deceased person are not sufficient to satisfy fully all the creditors, their debts must abate proportionately
54971
54972 *[[Abatement in pleading]], or plea in abatement, was a [[plea]] by the defendant, defeating or quashing a legal action by some matter of fact, such as a defect in form or the personal incompetency of the parties suing. It did not involve the merits of the cause, but left the right of action subsisting. In criminal proceedings, a [[plea]] in abatement was at one time a common practice in answer to an indictment, and was set up to defeat the indictment as framed, by alleging that the defendant was wrongly named (&quot;misnomer&quot;) or was otherwise wrongly described. Its effect for this purpose was nullified by the Criminal Law Act 1826, which required the court to amend according to the truth, and the Criminal Procedure Act 1851 (see [[Criminal Procedure]]), which rendered description of the defendant unnecessary. All pleas in abatement are now abolished (R.S.G. Order 21, r. 20).
54973
54974 *[[Abatement in litigation]], in civil proceedings, no action abates because any of the parties marries or dies or becomes [[bankrupt]], if the cause of the action survives or continues, and does not become defective because any [[estate]] or [[title]] is assigned or created or [[devolution|devolved]] ''[[pendente lite]]'' (R.S.C. Order 17, r. 1). [[Criminal proceeding]]s do not abate on the death of the prosecutor, being in theory instituted by the crown; but the crown may terminate them without deciding on the merits and without the assent of the prosecutor.
54975
54976 *Abatement of false lights, by the Merchant Shipping Act 1854, the general lighthouse authority has power to order the extinguishment or screening of any light which may be mistaken for a light proceeding from a lighthouse.
54977
54978 *Abatement in commerce is a deduction sometimes made at a [[custom-house]] from the fixed duties on certain kinds of goods, on account of damage or loss sustained in [[warehouse]]s. The rate and conditions of such deductions are regulated, in England, by the Customs Consolidation Act 1853. (See also drawback and [[rebate (marketing)]].)
54979
54980 *[[Abatement (heraldry)]] is a badge in coat-armour, indicating some kind of [[degradation]] or dishonour. It is also called rebatement. Though most abatements have existed only in theory, there has been at least one imposition of an abatement in Scotland.
54981
54982 {{Wikisource1911Enc|Abatement}}
54983 [[Category:Legal terms]]
54984
54985 {{disambig}}</text>
54986 </revision>
54987 </page>
54988 <page>
54989 <title>Ale</title>
54990 <id>1047</id>
54991 <revision>
54992 <id>41582867</id>
54993 <timestamp>2006-02-28T08:00:12Z</timestamp>
54994 <contributor>
54995 <username>NongBot</username>
54996 <id>817745</id>
54997 </contributor>
54998 <minor />
54999 <comment>robot Modifying: th</comment>
55000 <text xml:space="preserve">{{otheruses}}
55001 '''Ale''' is an ancient word for a [[fermentation|fermented]] [[alcoholic beverage]] obtained chiefly from [[malt|malted]] [[barley]].
55002
55003 Before the introduction of [[hop (plant)|hops]] into England from the [[Netherlands]] in the [[15th century]] the name &quot;ale&quot; was exclusively applied to unhopped fermented beverages, the term &quot;[[beer]]&quot; being gradually introduced to describe a brew with an infusion of hops. This distinction no longer applies.
55004
55005 A modern ale is commonly defined by the strain of yeast used and the fermenting temperature.
55006
55007 ''Strain of Yeast'': An ale yeast is normally considered to be a [[top-fermenting]] yeast, though a number of British brewers, such as [[Fullers]] and [[Weltons]], use ale yeast strains that settle at the bottom. Common features of ale yeasts regardless of top or bottom fermentation is that they ferment more quickly than lager yeasts, they convert less of the [[sugar]] into [[alcohol]] (giving a sweeter, fuller body) and they produce more [[esters]] (which give a fruity taste) and [[diacetyl]] (which gives a buttery taste).
55008
55009 ''Fermenting Temperature'': Ale is typically fermented at higher temperatures than lager beer (15–23°C, 60–75°F). Ale yeasts at these temperatures produce significant amounts of esters and other secondary flavor and aroma products, and the result is a beer with slightly &quot;fruity&quot; compounds resembling but not limited to apple, pear, pineapple, banana, plum or prune.
55010
55011 ''Stylistic Difference to [[Lager]]'': Stylistic differences between some ales and lagers can be difficult to categorize. [[Steam beer]], [[KÃļlsch]] and some modern British Golden Summer Beers are seen as hybrids, using elements of both lager and ale production, while Baltic Porter and Bière de Garde may be produced by either lager or ale methods or a combination of both. However, lager is commonly perceived to be cleaner tasting, drier and lighter in the mouth than ale.
55012
55013 In a number of [[U.S. state]]s, especially in the [[western United States]], &quot;ale&quot; is the term mandated by state law for any beverage fermented from grain with an alcoholic strength above that which can legally be named &quot;beer,&quot; without regard to the method of fermentation or the yeast used. This distinction is not obsolete, but it is idiosyncratic.
55014
55015 In former times the [[Wales|Welsh]] and [[Scotland|Scots]] had two distinct kinds of ale, called ''common'' and ''spiced'' ales, the relative values of which (compared to [[mead]]) were appraised by law in the following terms:
55016
55017 :''If a farmer have no mead, he shall pay two casks of spiced ale, or four casks of common ale, for one cask of mead.''
55018
55019 Ales are very common in [[United Kingdom|Britain]], [[Germany]], the [[United States]], and [[Belgium]]; however, [[Lager]] - but please see the discussion page about the term lager - is the dominant style of beer in almost all countries, worldwide.
55020
55021 ==Varieties of ale==
55022
55023 ===British / Irish / American ales===
55024
55025 British and Irish ales are, worldwide, the most popular variety of beer fermented with top-fermented yeast. Most beers in this region typically are made with yeast strains that leave some [[ester]]s behind, producing flavors often described as &quot;fruity&quot; or &quot;buttery&quot;. &quot;Earthy&quot; English hops are added, adding to the complexity. Within this region, a wide variety of substyles can be found, ranging from roasted malt ales (porter, stout), to highly hopped ales (India pale ale), to malt-balanced ales. Alcohol ranges from the very low (e.g. the English mild beer) to the very high (e.g. the English barley wine).
55026
55027 American style ales rose out of the microbrewery / craft brewing revolution that began in the early 1980s. Typically, these ales are very similar to their British counterparts, but have cleaner yeast strains, and often have higher hop rates dominated by American varieties (such as the citrusy Cascade hop.)
55028
55029 Any of these styles, when cask conditioned, can be termed [[cask ale]], and when unfiltered in the bottle can be termed [[bottle conditioned]]. [[CAMRA]] is a British organization that promotes [[real ale]].
55030
55031 *[[Amber ale|Amber/Red ale]]
55032 *[[Barleywine]]
55033 *[[Bitter (beer)|Bitter]]
55034 **[[Pale ale]]
55035 **[[India pale ale]] or Imperial pale ale or Strong pale ale
55036 **[[Light ale]]
55037 **[[Summer ale]]
55038 *[[Blonde ale|Blonde/Golden ale]]
55039 *[[Brown ale]]
55040 *[[Cream ale]]
55041 *[[Mild ale]] (or just &quot;mild&quot;)
55042 *[[Old ale]]
55043 *[[Irish red ale]]
55044 *[[Scotch ale]]
55045 *[[porter (beer)|Porter]]
55046 **Robust Porter
55047 **Brown Porter
55048 *[[Stout]]
55049 **[[Irish stout]] or Dry stout
55050 **[[Imperial stout]]
55051 **[[Milk stout]] or Sweet stout
55052 **[[Oatmeal stout]]
55053 **[[Chocolate stout]]
55054 **[[Oyster stout]]
55055 **[[Coffee stout]]
55056
55057 ===Belgian ales===
55058
55059 [[Belgium]] produces a wide variety of specialty ales that elude easy classification. In addition to making a variety of [[blonde ale]], common classifications for these specialty beers may be [[dubbel]] (malty-complex with a red hue) and [[tripel]] (a high-alcohol, lightly-gold colored beer).
55060
55061 Some specialty beers are based on monastic brewing recipes. The best known among them are the [[Trappist_beer|Trappist]] beers, which are brewed under direct control of the monks themselves. Only six Trappist monasteries in [[Belgium]] and one in the [[Netherlands]] brew this beer. Similar styled ales, brewed by commercial breweries (sometimes under licence of an actual monastery) are called [[Abbey beer]].
55062
55063 ===German barley ales===
55064
55065 These are old-style ales fermented in Germany. A long, cold conditioning period yields a cleaner style, free of the esters that one finds in UK ales.
55066
55067 *[[Altbier]]
55068 *[[KÃļlsch (beer)|KÃļlsch]]
55069
55070 ===Wheat beer===
55071
55072 [[Wheat beer]] is found mostly in Germany, but examples can also be found in the United States and Belgium. German wheat beers are typically fermented with a yeast that yields [[esters]] with banana- and clovelike flavours. In contrast to most styles, these beers are typically served unfiltered (with the suspended yeast clouding the beverage, thus the German name 'heffe' for yeast). In American microbreweries, wheat beer is usually fermented with a clean yeast and filtered. Often this beer is combined with fruit flavors (e.g. raspberry wheat beers) to create a light, refreshing drink.
55073
55074 *Belgian witbier/bière blanche
55075 *Weissbier, Hefeweizen and Dunkelweizen
55076
55077 ===Specialty ales===
55078 *[[Lambic]] &amp;mdash; a sour ale fermented by wild yeast, sometimes flavored with fruit.
55079 *[[Berliner Weisse]] &amp;mdash; a low-strength sour wheat ale originating in [[Berlin]].
55080 *[[Flanders ale]] ([[Saison]], [[Oud bruin|Oud Bruin]], [[Bière de Garde]]) &amp;mdash; a unique farmhouse style sour ale produced primarily in the [[Flanders]] region of Belgium and France.
55081 *[[Rauchbier]] &amp;mdash; a style of beer made with smoked malt. While beers called Rauchbier may be ale, the classic examples are technically [[lager|lagers]].
55082
55083 [[Category:Beer]]
55084
55085
55086 &lt;!-- The below are interlanguage links. --&gt;
55087
55088 [[da:Ale]]
55089 [[de:Ale (Bier)]]
55090 [[es:Ale]]
55091 [[fr:Ale]]
55092 [[nn:Ale]]
55093 [[pl:Ale]]
55094 [[fi:Ale]]
55095 [[sv:Ale (Ãļltyp)]]
55096 [[th:āš€ā¸­ā¸Ĩ (āš€ā¸šā¸ĩā¸ĸā¸ŖāšŒ)]]</text>
55097 </revision>
55098 </page>
55099 <page>
55100 <title>Amateur</title>
55101 <id>1049</id>
55102 <revision>
55103 <id>38085486</id>
55104 <timestamp>2006-02-04T01:55:05Z</timestamp>
55105 <contributor>
55106 <username>Creidieki</username>
55107 <id>68249</id>
55108 </contributor>
55109 <minor />
55110 <comment>change wikilink to avoid plural redirect</comment>
55111 <text xml:space="preserve">{{Wiktionarypar|amateur}}
55112 The word '''amateur''' has at least two [[connotation]]s. In the first, more widely used manner, it means someone performing some task without pay, in contrast to a &quot;[[professional]]&quot; who would be paid for the same task. In this sense, labeling someone an &quot;amateur&quot; can have a negative connotation. For example, amateur [[athlete]]s in sports such as [[basketball]] or [[Football games|football]] would not be regarded as having ability on par with professional athletes in those [[sport]]s.
55113
55114 Where this can be interesting is in the case of the [[Olympic Games]]. Most Olympic events required that the athletes be amateurs, or non-professionals. To receive pay to perform the sport could have disqualified an athlete from an event, as in the case of [[Jim Thorpe]]. Such regulations are now nonexistent for all Olympic sports with the exception of [[boxing]].
55115
55116 Also in the areas of [[computer programming]] and [[open source]], as well as [[astronomy]] and [[ornithology]], many amateurs make very meaningful contributions equivalent to or exceeding those of the professionals. To many, description as an amateur is losing its negative meaning, and actually carries a badge of honor.
55117
55118 The other, perhaps somewhat obsolescent usage, stems from the French form of the [[Latin]] root of the word meaning a &quot;lover of&quot;. (''See [[amateurism]]''.) In this sense, retaining its French inflexion (&quot;am-a-tEUR&quot;), an amateur may be as competent as a paid professional, yet is motivated by a love or passion for the activity, like a ''[[connoisseur]]''. In the [[17th century|17th]] and [[18th century|18th]] centuries ''[[virtuoso]]'' had similar connotations of passionate involvement.
55119
55120 Indeed, another thriving example of such work is [[Amateur Dramatics]] - whether [[play]]s or [[musical theater]]. Often performed to high standards (but lacking the budgets of the professional [[West End theatre]]/[[Broadway theatre]]versions) and with an intense passion for the scene.
55121
55122 It has been suggested that the crude, all or nothing categories of professional or amateur should be reconsidered. A historical shift is occurring with the rise of [[Pro-Ams]], a new category of people that are pursuing amateur activities to professional standards.
55123
55124 == See also ==
55125
55126 * [[volunteer]]
55127 * [[hobby]], particularly for [[Amateur Radio]] (also known as ''ham radio''.)
55128
55129 [[category:occupations]]
55130
55131 [[da:Amatør]]
55132 [[de:Amateur]]
55133 [[es:Amateur]]
55134 [[fr:Amateur]]
55135 [[nl:Amateur]]
55136 [[ja:ã‚ĸマチãƒĨã‚ĸ]]
55137 [[no:Amatør]]
55138 [[sv:AmatÃļr]]</text>
55139 </revision>
55140 </page>
55141 <page>
55142 <title>Ambrose Bierce</title>
55143 <id>1050</id>
55144 <revision>
55145 <id>42142615</id>
55146 <timestamp>2006-03-04T02:33:50Z</timestamp>
55147 <contributor>
55148 <ip>70.232.93.170</ip>
55149 </contributor>
55150 <text xml:space="preserve">'''Ambrose Gwinnett Bierce''' ([[June 24]], [[1842]]&amp;ndash;[[1914]]?) was an American [[satire|satirist]], [[critic]], [[poet]], [[short story]] [[writer]], [[editor]], and [[journalist]].[[Image:Ambrose_bierce.jpg|thumb|A portrait of Ambrose Bierce, date unknown.]]
55151 His clear style and lack of sentimentality have kept him popular when many of his contemporaries have become obscure. His dark, sardonic views and vehemence as a critic, earned him the [[nickname]] &quot;Bitter Bierce&quot;. Such was Bierce's venerable [[reputation]], that it was feared that his judgment on any contemporary fiction of the day could &quot;make or break&quot; a writer's career.
55152
55153 ==Early life and military career==
55154 Born in a rural area of [[Meigs County]], [[Ohio]], Bierce resided during his adolescence in the town of [[Elkhart, Indiana|Elkhart]], [[Indiana]]. At the outset of the [[American Civil War]], Bierce enlisted in the Ninth Regiment, Indiana Volunteers, as part of the [[Union Army]]. In February [[1862]], he was commissioned as a first lieutenant and served on the staff of Gen. [[William Babcock Hazen]] as a topographical engineer, making maps of likely battlefields. He fought bravely in several of the war's most important battles, at one point receiving newspaper attention for his daring rescue under fire of a gravely wounded comrade at the battle of [[Girard Hill]], [[West Virginia]]. In June, [[1864]], he received a serious head wound at the [[Battle of Kennesaw Mountain]] and spent the rest of the summer on furlough, but returned to active duty in September, and was ultimately discharged from the army in January [[1865]].
55155
55156 His military career, however, resumed when, in the summer of [[1866]], he rejoined Gen. Hazen as part of the latter's [[expedition]] to inspect military outposts across the Western [[plains]]. The expedition proceeded by horseback and wagon from [[Omaha, Nebraska|Omaha]], [[Nebraska]], arriving in [[San Francisco, California|San Francisco]] near the end of the year.
55157
55158 ==Journalism==
55159 In San Francisco, Bierce resigned from the Army and received the rank of [[brevet (military)|brevet]] Major. He remained there for many years, eventually becoming famous as a contributor and/or editor for a number of local newspapers and periodicals, including ''The San Francisco News Letter'', ''The Argonaut'', and ''The Wasp''. Bierce lived and wrote in [[England]] from [[1872]] to [[1875]]. Returning to the [[United States]], he again took up residence in San Francisco. In [[1879]]&amp;ndash;[[1880]], he went to [[Rockerville]] and [[Deadwood, South Dakota]], in the [[Dakota Territory]], to try his hand as local manager for a [[New York]] [[mining]] company, but when the company failed he returned to San Francisco and resumed his career in [[journalism]]. In [[1887]], he became one of the first regular columnists and editorialists to be employed on [[William Randolph Hearst]]'s newspaper, the ''[[San Francisco Examiner]]'', eventually becoming one of the most prominent and influential among the writers and journalists of the [[West Coast of the United States|West Coast]]. In December [[1899]], he moved to [[Washington, D.C.]], but continued his association with the [[Hearst newspapers]] until [[1906]].
55160
55161 ===The McKinley accusation===
55162 Because of his penchant for biting social criticism and satire, Bierce's long newspaper career was often steeped in controversy. On several occasions his columns stirred up a storm of hostile reaction which created difficulties for Hearst. One of the most notable of these incidents occurred following the [[assassination]] of President [[William McKinley]] when Hearst's political opponents turned a [[satire|satirical]] [[poetry|poem]] Bierce had written in [[1900]] into a ''[[cause cÊlèbre]]''. Bierce meant his poem, written on the occasion of the assassination of Governor-elect [[William Goebel]] of [[Kentucky]], to express a national mood of dismay and fear, but after McKinley was shot in [[1901]] it seemed to foreshadow the crime:
55163
55164 :''The bullet that pierced Goebel's breast''
55165 :''Can not be found in all the West;''
55166 :''Good reason, it is speeding here''
55167 :''To stretch McKinley on his bier.''
55168
55169 Hearst was (presumably) falsely accused by rival newspapers&amp;mdash;and by then [[United States Secretary of State|Secretary of State]] [[Elihu Root]]&amp;mdash;of having called for McKinley's assassination. Despite a national uproar that ended his ambitions for the presidency (and even his membership in the [[Bohemian Club]]), Hearst neither revealed Bierce as the author of the poem, nor fired him.
55170
55171 ==Literary works==
55172 His short stories are considered among the best of the [[19th century]].
55173 He wrote realistically of the terrible things he had seen in the war in such stories as &quot;[[An Occurrence at Owl Creek Bridge]]&quot;, &quot;[[Killed at Resaca]]&quot;, and &quot;[[Chickamauga]]&quot;.
55174
55175 Bierce was reckoned a master of &quot;pure&quot; [[English language|English]] by his contemporaries, and virtually everything that came from his pen was notable for its judicious wording and economy of style.
55176 He wrote skillfully in a variety of literary genres, and in addition to his celebrated ghost and war stories he published several volumes of [[poetry]] and [[verse]]. His ''Fantastic Fables'' anticipated the ironic style of grotesquerie that turned into a genre in the [[20th century]].
55177
55178 One of Bierce's most famous works is his much-quoted book, ''[[The Devil's Dictionary]]'', originally a newspaper serialization which was first published in book form in 1906 as ''The Cynic's Word Book.'' It offers an interesting reinterpretation of the English language in which [[cant]] and political double-talk are neatly lampooned.
55179
55180 Bierce's twelve-volume ''Collected Works'' were published in [[1909]], the seventh volume of which consists solely of &quot;[[The Devil's Dictionary]],&quot; the title Bierce himself preferred to &quot;The Cynic's Word Book.&quot;
55181
55182 ==Disappearance==
55183 In October [[1913]], the [[Ageing#Dividing the lifespan|septuagenarian]] Bierce departed Washington on a tour to revisit his old [[American Civil War|Civil War]] battlefields. By December, he had proceeded on through [[Louisiana]] and [[Texas]], crossing by way of [[El Paso, Texas|El Paso]] into [[Mexico]], which was then in the throes of [[Mexican Revolution|revolution]]. In [[Ciudad JuÃĄrez]], he joined the army of [[Pancho Villa]] as an observer, in which role he participated in the battle of [[Tierra Blanca]]. He is known to have accompanied Villa's army as far as the city of [[Chihuahua, Chihuahua]]. After a last letter to a close friend, sent from that city on [[December 26]], [[1913]], he vanished without a trace, becoming one of the most famous disappearances in American literary history. Subsequent investigations to ascertain his fate were fruitless and, despite many decades of speculation, his [[List of people who have disappeared|disappearance]] remains a mystery.
55184
55185 In one of his last letters, Bierce wrote:
55186
55187 :Good-by &amp;mdash; if you hear of my being stood up against a Mexican stone wall and shot to rags please know that I think that a pretty good way to depart this life. It beats old age, disease, or falling down the cellar stairs. To be a [[Gringo]] in Mexico &amp;mdash; ah, that is euthanasia
55188
55189 ==Bierce in popular culture==
55190 [[Robert W. Chambers]] borrowed several terms and fictional locations (including, for instance, [[Carcosa]] and [[Hastur]]) from Bierce, for use in his book of horror short stories, [[The King in Yellow]]. The horror writer [[H.P. Lovecraft]] later incorporated these into his own work, as did other authors who later extended Lovecraft's characters and themes, collectively creating the [[Cthulhu Mythos]].
55191
55192 [[Robert Bloch]]'s short story &quot;I Like Blondes&quot; (published in [[Playboy]], [[1956]]) is constructed around a group of alien bodysnatchers frequenting Earth. The narrator's host body's &quot;name was Beers...Ambrose Beers, I believe. He [[Ambrose Bierce#Disappearance|picked it up in Mexico a long time ago]].&quot;
55193
55194 At least three films have been made of Bierce's story ''An Occurrence at Owl Creek Bridge''. A silent movie version was made in the [[1920s]]. A French version called ''La Rivière du Hibou'', directed by Robert Enrico, was released in [[1962]] (available as of 2005). This is a black and white film, faithfully recounting the original narrative using voice-over. Another version, directed by Brian James Egan, was released in 2005. The story was also used for an episode of the [[television series]] ''[[The Twilight Zone]]'': ''[[An Occurrence at Owl Creek Bridge (The Twilight Zone)|An Occurrence at Owl Creek Bridge]]''. A copy of ''An Occurrence at Owl Creek Bridge'' appeared in the [[American Broadcasting Company|ABC]] television series ''[[Lost (TV series)|Lost]]'' (ep. &quot;[[Episodes_of_Lost_%28season_2%29#The_Long_Con|The Long Con]]&quot; - airdate [[February 8]], [[2006]]).
55195
55196 [[Mexico|Mexican]] [[novelist]] [[Carlos Fuentes]] wrote [[Old Gringo|''Gringo Viejo'']] (''The Old Gringo''), a fictionalized account of Bierce's disappearance. Fuentes's keenly observed novel was later adapted as a [[film|motion picture]], with [[Gregory Peck]] in the title role.
55197
55198 Bierce appears as a character in the [[2000]] movie ''From Dusk Till Dawn 3: The Hangman's Daughter'' (set in [[1913]], a [[prequel]] to the original ''[[From Dusk Till Dawn]]''). While traveling to join up with Villa, Bierce is first attacked by bandits, and then trapped in a bar filled with vampires bent on killing all the humans inside. This clearly fictional adventure also portrayed Bierce as an alcoholic. In that movie Ambrose Bierce was played by [[Michael Parks]].
55199
55200 Bierce appears as a character in [[Robert A. Heinlein]]'s novella ''[[Lost Legacy]]'', (published in the short story collection ''[[Assignment in Eternity]]''). In the story, Bierce is one of a league of humans who have learned to use the unused portions of their brains and have advanced mental powers.
55201
55202 Bierce appears as the main character and narrator in the story ''The Oxoxoco Bottle'' by [[Gerald Kersh]]. The bulk of the story purports to be a manuscript written by Bierce on his last journey in Mexico, and relates a very strange adventure. The manner of his death, however, remains a mystery at the end.
55203
55204 Bierce is depicted as a detective in series of mystery novels by [[Oakley Hall]], including ''Ambrose Bierce and the Queen of Spades'' and ''Ambrose Bierce and the Death of Kings''.
55205
55206 In [[DC Comics]]'s miniseries ''[[Stanley and His Monster]]'', Bierce (or at least a character claiming to be Bierce) appears as a sardonic trenchcoat-clad adventurer into the supernatual, very similar to [[John Constantine]]; although Bierce derides Constantine as a &quot;clown,&quot; he admits that he and Constantine are but two of several trenchcoated occult adventurers at large in the world, perhaps an implication by the writer that the archetype of the sarcastic commentator on the occult, exemplified by Constantine, can be traced back to Bierce as narrator of his own horror stories. When the comic book Bierce learns that the boy Stanley's friend, the nameless Monster, is a demon, he considers vanquishing him but soon realizes that the Monster is a benevolent demon and instead helps Stanley and his friend against other demons.
55207
55208 == Primary books ==
55209
55210 * Tales of Soldiers and Civilians (a.k.a., In the Midst of Life) (1892)
55211 * Can Such Things Be? (1893)
55212 * Collected Works (1909)
55213
55214 == External links==
55215 {{wikiquote}}
55216 * [http://donswaim.com/ The Ambrose Bierce Site]
55217 * [http://www.biercephile.com The Ambrose Bierce Appreciation Society]
55218 * [http://www.ambrosebierce.org The Ambrose Bierce Project]
55219 * [http://ojinaga.com/bierce/ &quot;Ambrose Bierce, 'the Old Gringo': Fact, Fiction and Fantasy&quot;]
55220 * [http://www.rjgeib.com/thoughts/bierce/ambrose-bierce.html One of Bierce's last letters]
55221 * [http://atheisme.free.fr/Biographies/Bierce_e.htm Biography and quotes of Ambrose Bierce]
55222 * [http://bitterbierce.blogspot.com Waking Ambrose: Modern Adjustments of the Devil's Dictionary]
55223 * [http://alangullette.com/lit/bierce/ Ambrose Bierce]
55224 *{{gutenberg author|id=Ambrose_Bierce|name=Ambrose Bierce}}
55225 * [http://librivox.org/the-parenticide-club-by-ambrose-bierce/ Free audiobook of ''The Parenticide Club''] from [http://librivox.org LibriVox]
55226 * [http://librivox.org/present-at-a-hanging-by-ambrose-bierce/ Free audiobook of ''Present at a Hanging and Other Ghost Stories''] from [http://librivox.org LibriVox]
55227 * [http://librivox.org/short-story-collection-002/ Free audiobook of ''Baby Tramp''] from [http://www.librivox.org Librivox]
55228 * [http://www.authorsden.com/visit/viewarticle.asp?AuthorID=6714&amp;id=19053 The Malignancy of Nature in Bierce's Horror Stories ]
55229 * [http://wiredforbooks.org/bierce/ A reading of &quot;An Occurrence at Owl Creek Bridge&quot; and a discussion of the life and writing of Ambrose Bierce - RealAudio]
55230 *[http://www.cosmoetica.com/B313-DES253.htm Essay on Bierce's short stories]
55231 *[http://alangullette.com/lit/bierce/ Alan Gulette's Bierce page]
55232
55233
55234 [[Category:1842 births|Bierce, Ambrose]]
55235 [[Category:American poets|Bierce, Ambrose]]
55236 [[Category:American journalists|Bierce, Ambrose]]
55237 [[Category:American columnists|Bierce, Ambrose]]
55238 [[Category:American satirists|Bierce, Ambrose]]
55239 [[Category:American horror writers|Bierce, Ambrose]]
55240 [[Category:American short story writers|Bierce, Ambrose]]
55241 [[Category:Disappeared people|Bierce, Ambrose]]
55242 [[Category:Hearst Corporation people|Bierce, Ambroce]]
55243 [[Category:People from Ohio|Bierce, Ambrose]]
55244
55245 [[da:Ambrose Bierce]]
55246 [[de:Ambrose Bierce]]
55247 [[es:Ambrose Bierce]]
55248 [[eo:Ambrose BIERCE]]
55249 [[fr:Ambrose Bierce]]
55250 [[it:Ambrose Bierce]]
55251 [[hu:Ambrose Bierce]]
55252 [[nl:Ambrose Bierce]]
55253 [[ja:ã‚ĸãƒŗブロãƒŧã‚ēãƒģビã‚ĸã‚š]]
55254 [[pl:Ambrose Bierce]]
55255 [[pt:Ambrose Bierce]]
55256 [[ru:БиŅ€Ņ, АĐŧĐąŅ€ĐžŅƒĐˇ ГŅƒĐ¸ĐŊĐŊĐĩŅ‚Ņ‚]]
55257 [[th:āšā¸­ā¸Ąāš‚ā¸šā¸Ŗā¸Ē āš€ā¸šā¸ĩā¸ĸā¸ŖāšŒā¸‹]]</text>
55258 </revision>
55259 </page>
55260 <page>
55261 <title>Alexis Carrel</title>
55262 <id>1051</id>
55263 <revision>
55264 <id>41982130</id>
55265 <timestamp>2006-03-03T00:58:01Z</timestamp>
55266 <contributor>
55267 <ip>67.151.66.33</ip>
55268 </contributor>
55269 <comment>/* Alleged influence on the rise of Islamism */</comment>
55270 <text xml:space="preserve">{{POV-check}}
55271
55272 [[image:Alexis_Carrel.jpg|thumb|right|Alexis Carrel]]
55273 '''Alexis Carrel''' ([[June 28]] [[1873]] &amp;ndash; [[November 5]] [[1944]]) was a French surgeon and biologist. He was awarded the [[Nobel Prize in Physiology or Medicine]] in [[1912]]. Born and educated in [[Lyon, France]]. He practiced in France and the United States (University of Chicago and the Rockefeller Institute). He developed new techniques in vascular sutures and was a pioneer in [[transplantology]] and [[thoracic surgery]]. He was a member of [[learned societies]] in the [[United States|United States of America]], [[Spain]], [[Russia]], [[Sweden]], the [[Netherlands]], [[Belgium]], [[France]], [[Vatican City]], [[Germany]], [[Italy]] and [[Greece]] and received honorary doctorates from the Universities of [[Belfast]], [[Princeton University|Princeton]], [[California]], [[New York]], [[Brown University|Brown]] and [[Columbia University|Columbia]].
55274
55275 == Contributions to science ==
55276
55277 On January 17, [[1912]] he placed a part of chicken's embryo heart in fresh nutrient medium in a stoppered [[Pyrex]] flask of his design. Every forty-eight hours the tissue doubled in size and was transferred to a new flask. The tissue was still growing 20 years later, longer than life of the chicken itself.
55278
55279 Carrel was honored in 1912 with a [[Nobel prize]] in medicine in recognition of his work on vascular suture and the transplantation of blood vessels and organs. [http://nobelprize.org/medicine/laureates/1912/index.html]
55280
55281 During the [[First World War]], Carrel and the English chemist, [[Henry Drysdale Dakin]], developed the Carrel-Dakin method of treating wounds with sutures, which prior to the development of widespread [[antibiotics]], was responsible for saving many lives. For this, Carrel was awarded the [[LÊgion d'honneur]].
55282
55283 He co-authored a book with [[Charles A. Lindbergh]], ''The Culture of Organs'', and worked with Lindbergh in the mid-1930s to create the &quot;perfusion pump,&quot; which allowed living organs to exist outside of the body during surgery. The advance is said to have been a crucial step in the development of open-heart surgery and organ transplants, and to have laid the groundwork for the [[artificial heart]], which became a reality decades later. Some critics of Lindbergh claimed that Carrel overstated Lindbergh's role to gain media attention. (Wallace, ''American Axis'' p. 101). Both Lindbergh and Carrel appeared on the cover of [[Time (magazine)|Time magazine]] on [[June 13]], [[1938]].
55284
55285 In 1972, the Swedish Post Office honored Carrel with a stamp that was part of its Nobel stamp series. [http://nobelprize.org/nobel/stamps/1972.html] In 1979, the [[lunar crater]] [[Carrel (crater)|Carrel]] was named after him as a tribute to his scientific breakthroughs.
55286
55287 == Relation to [[eugenics]] and [[fascism]] ==
55288
55289 In 1935, Carrel published a best-selling book titled ''L'Homme, cet inconnu '' (''Man The Unknown'') which advocated, in part, that mankind could better itself by following the guidance of an elite group intellectuals, and by implementing a regime of enforced [[eugenics]]. Roger Callois, writing in ''The Edge of Surrealism'', quotes and paraphrases ''L'Homme, cet inconnu '' as follows: &quot; '(p)resent-day proletarians owe their status to inherited intellectual and physical defects' (sancta simplicitas). And he suggests that this state of affairs should be accenetuated through appropriate measures, so as to correlate social and biological inequalities more precisely. Society would then be directed by a hereditary aristocracy composed of descendants from the Crusaders, the heroes of the Revolution, the great criminals, the financial and industrial magnates&quot; (p. 360).
55290
55291 Carrel advocated the use of gas chambers to rid humanity of inferior stock. His endorsement of this idea began in the mid-1930's, prior to Nazi implementation of such practices. In the 1936 German introduction of his book, at the publishers request, he added the following praise of the Nazi regime which did not appear in the editions in other languages: &quot;(t)he German government has taken energetic measures against the propagation of the defective, the mentally diseased, and the criminal. The ideal solution would be the suppression of each of these individuals as soon as he has proven himself to be dangerous.&quot; (quoted in Reggiani, p. 339). He also wrote: &quot;(t)he conditioning of petty criminals with the whip, or some more scientific procedure, followed by a short stay in hospital, would probably suffice to insure order. Those who have murdered, robbed while armed with automatic pistol or machine gun, kidnapped children, despoiled the poor of their savings, misled the public in important matters, should be humanely and economically disposed of in small euthanasic institutions supplied with proper gasses. A similar treatment could be advantageously applied to the insane, guilty of criminal acts.&quot; (quoted in Szasz)
55292
55293 In 1937, Carrel joined [[Jean Coutrot]]’s Centre d’Etudes des Problèmes Humains. (Coutrot’s aim was to develop what he called an ‘‘economic humanism’’ through &quot;collective thinking.&quot;) In 1941, through connections to the [[Petain]] cabinet (specifically, French industrial physicians AndrÊ Gros and Jacques MÊnÊtrier) he went on to advocate for the creation of Fondation Française pour l’Etude des Problèmes Humains (French Foundation for the Study of Human Problems) which was created by decree of the collaborationist [[Vichy]] regime in 1941, and where he served as 'regent' (see AndrÊs Horacio Reggiani, ''Alexis Carrel, the Unknown: Eugenics and Population Research under Vichy'', as well as Callois, p. 107). &quot;The foundation was chartered as a public institution under the joint supervision of the ministries of finance and public health. It was given financial autonomy and a budget of forty million francs—roughly one franc per inhabitant—a true luxury considering the burdens imposed by the German Occupation on the nation’s resources. By way of comparison, the whole Centre National de la Recherche Scientifique (CNRS) was given a budget of fifty million francs.&quot; (Reggiani) [http://fhs.dukejournals.org/cgi/reprint/25/2/331] According to Par Gwen Terrenoire, writing in ''Eugenics in France (1913-1941) : a review of research findings'' (Joint Programmatic Commission UNESCO-ONG Science and Ethics, 2003) [http://ong-comite-liaison.unesco.org/ongpho/acti/3/2/document/8/pdfen.pdf] &quot;The foundation was a puridisciplinary centre that employed around 300 researchers (mainly statisticians, psychologists, physicians) from the summer of 1942 to the end of the autumn of 1944. After the liberation of Paris, Carrel was suspended by the Minister of Health ; he died in November 1944, but the Foundation itself was &quot;purged&quot;, only to reappear in a short time as the Institut national d’Êtudes dÊmographiques (INED) that is still active.&quot; Scholars including Lucien BonnafÊ, Patrick Tort and Max Lafont have accused Carrel of responsibility for the execution of thousands of mentally ill or impaired patients under Vichy. They argue that this policy was inspired by Carrel's advocacy. Other scholars state that Carrel merely provided intellectual cover for policies that would have been undertaken with or without his advocacy. All this eventually led many in France to accuse him of collaboration with the Nazis.
55294
55295 This association with Vichy, and the harshness of his advocacy for eugenics, has led to his descent from fame to obscurity. In recent years, [[Jean-Marie le Pen]], the French neo-fascist politician, has become an advocate for Carrel, referring to him as &quot;the first environmentalist, or, if you will, the first modern ecologist, precisely because he committed himself to defining the relationships of natural harmony.&quot; (le Pen, L'Espoir 133-134, cited in Golson, Fascism's Return). His writings on eugenics are studied &quot;avidly in the training camps of the [[National Front]]&quot;. (Lucien BonnafÊ and Patrick Tort, ''L'Homme, cet inconnu? Alexis Carrel, Jean-Marie le Pen et les chambres a gaz'' [http://www.amazon.fr/exec/obidos/ASIN/2907993143/403-4807364-1466832])
55296
55297 In the 1990's, the attention the [[National Front]]'s support brought to Carrel's fascist associations and advocacy for forced euthenasia created a series of controversies with respect to streets and institutions named in honor of Carrel. Over 20 French cities and towns, including Paris, renamed streets previously named for Carrel. The controvery came to a head in Lyon, his birhtplace, where a medical school was named in his honor. [[Lyon libÊration]] questioned the wisdom of this. In response to this, &quot;(i)n May 1995, the Palais des Congrès of Lyon hosted a conference on Carrel and scientific racism at which several of the participants accused the inquiry commission of whitewashing the controversial scientist. In early 1996, after five years of embarrassing publicity, the governing board of the University of Lyon decided to rename its school of medicine after [[RenÊ LaÃĢnnec]], inventor of the stethoscope.&quot; [http://fhs.dukejournals.org/cgi/reprint/25/2/331]
55298
55299 In the United States as well as France, the 1990's were not kind to Carrel's reputation. In an interview for PBS' The American Experience, historian Arthur Schlesinger, Jr. blamed Carrel for Charles Lindbergh's increasing racism in the 1930's. Schlesinger states in response to a question concerning the source of Lindbergh's beliefs on this subject: &quot;I suppose he got a lot of it from Alexis Carrel, the French biologist who had a kind of racial mysticism of a sort.&quot; [http://www.pbs.org/wgbh/amex/lindbergh/filmmore/reference/interview/schlesinger03.html]
55300
55301 == Alleged influence on the rise of Islamism ==
55302
55303 Carrel's eugenic ideas are alleged by some scholars to have had &quot;superficial commonalities&quot; with the thought of such early advocates of [[Islamism]] as [[Ali Shariati]] and Muslim Brotherhood propagandist [[Sayyed Qutb]]. Qutb, in fact, cites Carrel more than any other author. (Qutb was one of the key philosophers in the [[Muslim Brotherhood]] movement after the death of its founder in 1949 and Qutb's brother was [[bin Laden]]'s intellectual mentor at [[King Abdul Aziz University]] in [[Jeddah]], along with [[Abdullah Azzam]]). (For more on the Carrel / Islamist connection, see Tariq Ali, ''Clash of Fundamentalisms'', p. 274; Youssef Choueiri, ''Islamic Fundamentalism'' (London 1990) and Rudolph Walther, ''Die seltsamen Lehren des Doktor Carrel'', DIE ZEIT 31.07.2003 Nr.32)
55304
55305 Tariq Ali, Youssef Choueiri, Abu-Rabi, and Aziz Al-Azmeh, as well as other scholars of Islamism, see Carrel as a primary (if unwitting) influence on the origin of Islamism. Quoting from Rudolf Walther's article in ''Die Zeit'': &quot;(t)he superficial commonalities between Carrel and Qutb are plain: we meet the medical man's elite in a &quot;scientific monastery&quot; as Qutb's &quot;avant garde,&quot; and the Carrel's &quot;biological classes&quot; are Qutb's &quot;belief classes.&quot; Whether &quot;civilization&quot; (Carrel) or &quot;barbarism&quot; (Qutb) -- neither are &quot;worthy of us,&quot; because they contradict &quot;our true nature&quot; (Carrel) or Qutb's &quot;good, healthy nature.&quot; Both are in agreement in their goal to reconcile knowledge and belief.
55306
55307 Qutb follows Carrel in making &quot;human nature&quot; the condition and measure of all thought and action. Because &quot;human nature&quot; is simultaneously posited as God-given, both immunize &quot;human nature&quot; against criticism, because God answers queries as little as &quot;nature&quot; does objections. The core of Qutb's supposed Middle Eastern Islamism is formed by a naturalistic logical error that is deeply rooted in European philosophy... Carrel writes: &quot;The goal of life is to follow the laws of life. We decipher these laws from our bodies and our souls, not from philosophical systems and concepts.&quot; Thus ethical norms (&quot;laws of life&quot;) are derived directly from biological facts and psychological diagnoses. Translated to Qutb's language, human freedom and thus a free, varied society are not possible, only obedience to the law of God. [...]
55308
55309 What Qutb calls &quot;the Islamic method,&quot; the integration of education, ethics, economics and politics to a unified system of &quot;divine uniqueness,&quot; matches Carrel's &quot;unification of all capabilities and their coordination to a single belief,&quot; the &quot;super-science&quot; in every detail ...&quot;
55310
55311 This influence is ironic, given that Carrel himself was a devoted Roman Catholic and Christian mystic. He mentions Islam in ''Man, the Unknown'' just once, and not in a complimentary manner. He notes of European Christian civilization, that, &quot;(a)t the cost of immense efforts, we succeeded in thrusting back the sleep of Islamism.&quot; Throughout his book, he refers to European civilization as &quot;Christendom.&quot; Moreover, he believed in the racial superiority of northern Europeans. These ideas would have been anathema to Qutb.
55312
55313 ==External links==
55314 {{wikiquote}}
55315 * [http://crishunt.8bit.co.uk/alexis_carrel.html Web page about Alexis Carrel]
55316 * [http://nobelprize.org/medicine/laureates/1912/press.html Nobel Prize presentation speech to Dr. Carrel]
55317 * [http://nobelprize.org/medicine/laureates/1912/carrel-bio.html Nobel Prize biography of Dr. Carrel]
55318 *[http://patrickpoole.blogspot.com/2005/10/alexis-carrel-and-sayyid-qutb.html Alexis Carrel and Sayyid Qutb]
55319 *[http://pages.prodigy.net/thomasn528/blog/2003_08_17_newsarcv.html#106125889084239517 Sayyid Qutb's French connection (Monday, August 18, 2003)]
55320
55321 ==Sources==
55322 * Carrel, Alexis. ''Man, The Unknown.'' New York and London: Harper and Brothers. 1935.
55323 * AndrÊs Horacio Reggiani. ''Alexis Carrel, the Unknown: Eugenics and Population Research under Vichy'' (FRENCH HISTORICAL STUDIES 25:2 SPRING 2002)[http://fhs.dukejournals.org/cgi/reprint/25/2/331]
55324 * Wallace, Max. ''The American Axis: Henry Ford, Charles Lindbergh, and the Rise of the Third Reich'' St. Martin's Press, New York, 2003.
55325 * Szasz, TS. ''The Theology of Medicine'' New York: Syracuse University Press, 1977.
55326 * Ali, Tariq. ''Clash of Fundamentalisms'' Verso, London, 2002
55327 * Choueiri, Youssef. ''Islamic Fundamentalism'' Continuum International Publishing Group, London, 2002.
55328 * Walther, Rudolph. ''Die seltsamen Lehren des Doktor Carrel'', DIE ZEIT 31.07.2003 Nr.32 [http://www.zeit.de/2003/32/A-Carrel]
55329 * BonnafÊ, Lucien and Tort, Patrick. ''L'Homme, cet inconnu? Alexis Carrel, Jean-Marie le Pen et les chambres a gaz'' Editions Syllepse, 1996. [http://www.amazon.fr/exec/obidos/ASIN/2907993143/403-4807364-1466832]
55330 * Abu-Rabi, Ibrahim M. ''Intellectual Origins of Islamic Resurgence'', SUNY Press, Albany, 1996
55331 * Azmeh, Aziz (Aziz Al-Azmeh). ''Islams and Modernities'' Verso, London, 1993.
55332 * Berman, Paul. ''Terror and Liberalism'' W. W. Norton, 2003
55333 * Mairowitz, David Zane. &quot;Fascism a la mode: in France, the far right presses for national purity.&quot; Harper's Magazine; 10/1/1997
55334 * Pioneers of Islamic Revival (edited by Ali Rahnema), Zed Books, London 1994
55335 * Schneider, William. Quality and Quantity: The Quest for Biological Regeneration in Twentieth-Century France, Cambridge Studies in the History of Medicine (chap. 7 French eugenics in the thirties; and 10 Vichy and after)
55336 * Terrenoire, Par Gwen, CNRS. ''Eugenics in France (1913-1941) : a review of research findings'' Joint Programmatic Commission UNESCO-ONG Science and Ethics, March 24, 2003 [http://ong-comite-liaison.unesco.org/ongpho/acti/3/2/document/8/pdfen.pdf]
55337
55338
55339 [[Category:1873 births|Carrel, Alexis]]
55340 [[Category:1944 deaths|Carrel, Alexis]]
55341 [[Category:Nobel Prize in Physiology or Medicine winners|Carrel, Alexis]]
55342 [[Category:Members of the Pontifical Academy of Sciences|Carrel]]
55343 [[Category:American physicians|Carrel]]
55344
55345 [[de:Alexis Carrel]]
55346 [[es:Alexis Carrel]]
55347 [[fr:Alexis Carrel]]
55348 [[id:Alexis Carrel]]
55349 [[ja:ã‚ĸãƒŦã‚¯ã‚ˇã‚šãƒģã‚ĢãƒŦãƒĢ]]
55350 [[pl:Alexis Carrel]]
55351 [[pt:Alexis Carrel]]
55352 [[fi:Alexis Carrel]]
55353 [[tr:Alexis Carrel]]</text>
55354 </revision>
55355 </page>
55356 <page>
55357 <title>Anthony Eden</title>
55358 <id>1052</id>
55359 <revision>
55360 <id>42049852</id>
55361 <timestamp>2006-03-03T13:21:24Z</timestamp>
55362 <contributor>
55363 <ip>194.83.172.67</ip>
55364 </contributor>
55365 <comment>/* Prime Minister */</comment>
55366 <text xml:space="preserve">{{Infobox BPM
55367 | name=[[The Right Honourable|The Rt. Hon.]] Sir Anthony Eden, Earl of Avon
55368 | image=Eden.jpg
55369 | kingdom=the United Kingdom
55370 | term=[[7 April]] [[1955]] &amp;ndash; [[9 January]] [[1957]]
55371 | before=[[Winston Churchill|Sir Winston Churchill]]
55372 | after=[[Harold Macmillan]]
55373 | date_birth=[[12 June]] [[1897]]
55374 | place_birth=[[Bishop Auckland]], [[Durham]]
55375 | date_death=[[14 January]] [[1977]]
55376 | place_death=[[Alvediston]], [[Salisbury]], [[Wiltshire]]
55377 | party=[[Conservative Party (UK)|Conservative]]
55378 }}
55379
55380 '''Robert Anthony Eden, 1st Earl of Avon''', [[Order of the Garter|KG]], [[Military Cross|MC]], [[Privy Council of the United Kingdom|PC]] ([[June 12]], [[1897]]&amp;ndash; [[January 14]], [[1977]]), [[United Kingdom|British]] politician, was [[Foreign Secretary]] during [[World War II]] and [[Prime Minister of the United Kingdom]] during the 1950s. He is remembered mainly for his role in the disastrous [[Suez Crisis]] of [[1956]]. In a 2004 poll [http://www.mori.com/polls/2004/leeds.shtml] of 139 political science academics organised by [[MORI]], Eden was voted the least successful British Prime Minister of the 20th Century. This echoed the outcome of an earlier survey by BBC Radio's ''The Westminster Hour'', ranking the British Prime Ministers of the 20th Century. [http://news.bbc.co.uk/1/hi/uk_politics/575219.stm[2]] Winston Churchill came top, Eden bottom.
55381
55382 ==Early career==
55383 Eden was born in [[Durham]], into a very conservative landowner family. His mother, Sybil Grey, was a member of the famous Grey family of [[Northumberland]] (see below). He studied at [[Eton College|Eton]] and [[Christ Church, Oxford]], where he graduated in oriental languages. (He was fluent in French, German and Persian. He also spoke Russian and Arabic). Following a military career during the [[World War I|First World War]], during which he received a [[Military Cross]], Eden entered politics in [[1923]] when he was elected [[Member of Parliament]] for [[Warwick and Leamington]], as a [[Conservative Party (UK)|Conservative]]. In that year also he married Beatrice Beckett. They had two sons, but the marriage was not a success and broke up under the strain of Eden's political career.
55384
55385 Eden became Parliamentary Private Secretary at the [[Foreign Office]] in [[1926]]. In [[1931]] he was promoted to Under-Secretary for Foreign Affairs. In [[1934]] he was appointed [[Lord Privy Seal]] and Minister for the [[League of Nations]] in [[Stanley Baldwin]]'s Government. Like many of his generation who had served in the First World War, Eden was strongly anti-war and strove to work through the League of Nations to preserve European peace. He was however among the first to recognise that peace could not be maintained by [[appeasement]] of [[Nazi Germany]] and [[fascist]] [[Italy]]. He privately opposed the policy of the Foreign Secretary, [[Samuel Hoare, 1st Viscount Templewood|Sir Samuel Hoare]], of trying to appease [[Italy]] during its [[Second Italo-Abyssinian War|invasion of Abyssinia]] ([[Ethiopia]]) in [[1935]]. When Hoare resigned after the failure of the [[Hoare-Laval Pact]], Eden succeeded him as Foreign Secretary.
55386
55387 At this stage in his career Eden was considered as something of a leader of fashion. He regularly wore a [[Homburg_(hat)|Homburg]] hat (similar to a [[bowler hat]] but with an upturned brim), which became forever known in Britain by his name.
55388
55389 He had an elder brother called Timothy and a younger brother, Nicholas, who had been killed when the Indefatigable had been sunk at the Battle of Jutland in 1916.
55390
55391 ==Foreign Secretary==
55392 Eden became Foreign Secretary at a time when Britain was having to adjust its foreign policy to face the rise of the fascist powers. He supported the policy of non-interference in the [[Spanish Civil War]], and supported [[Neville Chamberlain]] in his efforts to preserve peace through reasonable concessions to Germany. He did not protest when Britain and France failed to oppose [[Adolf Hitler|Hitler's]] reoccupation of the [[Rhineland]] in [[1936]]. But in February [[1938]], he resigned because he could not accept Chamberlain's opening of negotiations with Italy. This made him an ally of [[Winston Churchill]], then a rebel backbench Conservative MP and leading critic of appeasement. There was much speculation that Eden would become a rallying point for all the disparate opponents of Chamberlain, but instead he maintained a low profile, avoiding confrontation though he opposed the [[Munich Agreement]]. As a result Eden's position declined heavily amongst politicians, though he remained popular in the country at large.
55393
55394 In September [[1939]], on the outbreak of war, Eden returned to Chamberlain's government as [[Secretary of State for Dominion Affairs]], but was not in the [[War Cabinet]]. As a result he was not considered a candidate for the Premiership when Chamberlain resigned after Germany invaded [[France]] in May [[1940]] and Churchill became Prime Minister. He appointed Eden [[Secretary of State for War]]. Later in [[1940]] he returned to the Foreign Office, and in this role became a member of the executive committee of the [[Political Warfare Executive]] in [[1941]]. Although he was one of Churchill's closest confidents, his role in wartime was restricted because Churchill conducted the most important negotiations, with [[Franklin D. Roosevelt]] and [[Joseph Stalin]], himself, but Eden served loyally as Churchill's lieutenant. Nevertheless he was in charge of handling much of the relations between Britain and [[Charles de Gaulle|de Gaulle]] during the last years of the war. In [[1942]] he was given the additional job of [[Leader of the House of Commons]].
55395
55396 After the [[Labour Party (UK)|Labour Party]] won the [[1945]] elections, Eden went into opposition as Deputy Leader of the Conservative Party. Many felt that Churchill should have retired and allowed Eden to become party leader, but Churchill refused to consider this and Eden was too loyal to press him. He was in any case depressed during this period by the break-up of his first marriage and the death of his eldest son, Simon Eden, in the last days of the war.
55397
55398 In [[1951]], the Conservatives returned to office and Eden became Foreign Secretary for a third time. Churchill was largely a figurehead in this government and Eden had effective control of British foreign policy for the first time, as the [[Cold War]] grew more intense. He dealt effectively with the various crises of the period, although Britain was no longer the world power it had been before the war. In [[1950]] he and Beatrice Eden were finally divorced and in [[1952]] he married Churchill's niece, Lady Clarissa Spencer-Churchill (b. 1920) -- a nominal Roman Catholic who was fiercely criticized by Catholic writer [[Evelyn Waugh]] for marrying a divorced man -- a marriage much more successful than his first had been. In [[1953]] Eden underwent a series of operations at Boston's Lahey Clinic to correct a minor gall bladder complaint. Unfortunately Eden's health never fully recovered; this was to undermine his subsequent career. In [[1954]] he was made a [[Knight of the Garter]].
55399
55400 ==Prime Minister==
55401 [[Image:Anthony-Eden-arms.PNG|thumb|right|150px|Arms of Anthony Eden]]
55402 In April [[1955]] Churchill finally retired, and Sir Anthony succeeded him as Prime Minister. Eden was a very popular figure, as a result of his long wartime service and also his famous good looks and charm. On taking office he immediately called a [[United Kingdom general election, 1955|general election]], at which the Conservatives were returned with an increased majority. But Sir Anthony had never held a domestic portfolio and had little experience in economic matters. He left these areas to his lieutenants such as [[Rab Butler]], and concentrated largely on foreign policy, forming a close alliance with U.S. President [[Dwight Eisenhower]]. His famous words &quot;Peace comes first, always&quot; added to his already substantial popularity.
55403
55404 This alliance proved illusory, however, when in [[1956]] Sir Anthony, in conjunction with France, tried to prevent [[Gamal Abdel Nasser]], President of [[Egypt]], nationalising the [[Suez Canal]], which had been owned since the 19th century by British and French shareholders in the Suez Canal Company. Sir Anthony, drawing on his experience in the 1930s, saw Nasser as another [[Benito Mussolini|Mussolini]]. Sir Anthony considered the two men aggressive nationalist socialists determined to invade other countries. Others believed that Nasser was acting from legitimate patriotic concerns.
55405
55406 In October [[1956]], after months of negotiation and attempts at mediation had failed to dissuade Nasser, Britain and France, in conjunction with [[Israel]], invaded Egypt and occupied the Suez Canal Zone. But Eisenhower immediately and strongly opposed the invasion. The U.S. President was an advocate of [[decolonization|decolonisation]], because it would liberate colonies, strengthen U.S. interests, and presumably make other Arab and African leaders more sympathetic to the United States. Eden had ignored Britain's financial dependence on the U.S. in the wake of World War II, and was forced to bow to American pressure to withdraw. The [[Suez Crisis]] is widely taken as marking the end of Britain (along with France) as a World power.
55407
55408 The Suez fiasco ruined Sir Anthony's reputation for [[statesmanship]] and led to a breakdown in his [[health]]. His Chancellor, [[Harold Macmillan]], despite having been one of the architects of Suez, manoeuvred Eden into resignation and succeeded him as Prime Minister in January [[1957]]. Eden retained his personal popularity and was made '''Earl of Avon''' in [[1961]].
55409
55410 ==Retirement==
55411 In retirement he lived quietly in Wiltshire with his second wife, and published a highly acclaimed personal memoir, ''Another World'', as well as several volumes of political memoirs. On a trip to the United States in [[1977]] his health rapidly deteriorated. At his request, [[James Callaghan]] sent the [[Royal Air Force|RAF]] to fly him home to die. The Earl of Avon died from [[liver cancer]] in [[Salisbury, England|Salisbury]] in [[1977]] at the age of 79.
55412
55413 From [[1945]]-[[1973]], Eden was [[Chancellor (education)|Chancellor]] of the [[University of Birmingham]], [[England]]. He was recently voted the least effective British Prime Minister of the twentieth century by a BBC poll, which was topped by rival [[Clement Attlee]].
55414
55415 Eden's surviving son, [[Nicholas Eden, 2nd Earl of Avon|Nicholas Eden]] ([[1930]]-[[1985]]), known as Viscount Eden until [[1977]], was also a politician and was a minister in the [[Margaret Thatcher|Thatcher]] government until his premature death from [[AIDS]] at the age of 54.
55416
55417 The Papers of Eden are housed at the [[University of Birmingham]] Special Collections.
55418
55419 ==The Eden Government==
55420 *Anthony Eden: Prime Minister
55421 *[[David Patrick Maxwell Fyfe, 1st Earl of Kilmuir|Lord Kilmuir]]: [[Lord Chancellor]]
55422 *[[Robert Gascoyne-Cecil, 5th Marquess of Salisbury|Lord Salisbury]]: [[Lord President of the Council]]
55423 *[[Harry Crookshank, 1st Viscount Crookshank|Harry Crookshank]]: [[Lord Privy Seal]] and [[Leader of the House of Commons]]
55424 *[[Rab Butler]]: [[Chancellor of the Exchequer]]
55425 *[[Harold Macmillan]]: [[Secretary of State for Foreign Affairs]]
55426 *[[Gwilym Lloyd George, 1st Viscount Tenby|Gwilym Lloyd George]]: [[Secretary of State for the Home Department]]
55427 *[[Alan Lennox-Boyd]]: [[Secretary of State for the Colonies]]
55428 *[[Alec Douglas-Home|Lord Home]]: [[Secretary of State for Commonwealth Relations]]
55429 *[[Peter Thorneycroft]]: [[President of the Board of Trade]]
55430 *[[Frederick Marquis, 1st Earl of Woolton|Lord Woolton]]: [[Chancellor of the Duchy of Lancaster]]
55431 *Sir [[David Eccles]]: Minister of Education
55432 *[[James Stuart, 1st Viscount Stuart of Findhorn|James Stuart]]: [[Secretary of State for Scotland]]
55433 *[[Derick Heathcoat Amory,1st Viscount Amory|Derick Heathcoat Amory]]: Minister of Agriculture
55434 *Sir [[Walter Turner Monckton]]: Minister of Labour and National Service
55435 *[[Selwyn Lloyd]]: Minister of Defence
55436 *[[Duncan Sandys]]: Minister of Housing and Local Government
55437 *[[Osbert Peake, 1st Viscount Ingleby|Osbert Peake]]: Minister of Pensions and National Insurance
55438 '''Changes'''&lt;br/&gt;
55439 *December [[1955]] - [[Rab Butler]] succeeds Harry Crookshank as Lord Privy Seal and Leader of the House of Commons. Harold Macmillan succeeds Butler as Chancellor of the Exchequer. Selwyn Lloyd succeeds Macmillan as Foreign Secretary. Sir Walter Monckton succeeds Lloyd as Minister of Defence. [[Iain Macleod]] succeeds Monckton as Minister of Labour and National Service. [[George Douglas-Hamilton, 10th Earl of Selkirk|Lord Selkirk]] succeeds Lord Woolton as Chancellor of the Duchy of Lancaster. The Minister of Public Works, [[Patrick Buchan-Hepburn]], enters the Cabinet. The Minister of Pensions and National Insurance leaves the Cabinet upon Peake's retirement.
55440 *October [[1956]]: Sir Walter Monckton becomes Paymaster-General. [[Anthony Henry Head]] succeeds Monckton as Minister of Defence.
55441
55442 ==The Grey-Eden connection==
55443 [[Charles Grey, 1st Earl Grey]] = Elizabeth Grey
55444 |
55445 ------------------------------------------
55446 | |
55447 [[Charles Grey, 2nd Earl Grey]] William Grey
55448 Prime Minister = Maria Shireff
55449 |
55450 Georgina Plowden = Sir William Grey
55451 |
55452 Sir William Eden = Sybil Grey
55453 |
55454 '''Anthony Eden'''
55455 Prime Minister
55456 {{start box}}
55457 {{succession box | title=[[Lord Privy Seal]] | before=[[Stanley Baldwin]] | after=[[Charles Vane-Tempest-Stewart, 7th Marquess of Londonderry|The Marquess of Londonderry]] | years=1934&amp;ndash;1935}}
55458 {{succession box | title=[[Secretary of State for Foreign Affairs|Foreign Secretary]] | before=[[Samuel Hoare, 1st Viscount Templewood|Sir Samuel Hoare]] | after=[[Edward Wood, 1st Earl of Halifax|The Viscount Halifax]] | years=1935&amp;ndash;1938}}
55459 {{succession box | title=[[Secretary of State for Dominion Affairs]] | before=[[Thomas Inskip, 1st Viscount Caldecote|Sir Thomas Inskip]] | after=[[Thomas Inskip, 1st Viscount Caldecote|The Viscount Caldecote]] | years=1939&amp;ndash;1940}}
55460 {{succession box | title=[[Secretary of State for War|War Secretary]] | before=[[Oliver Stanley]] | after=[[David Margesson, 1st Viscount Margesson|David Margesson]] | years=1940}}
55461 {{succession box | title=[[Secretary of State for Foreign Affairs|Foreign Secretary]] | before=[[Edward Wood, 1st Earl of Halifax|The Viscount Halifax]] | after=[[Ernest Bevin]] | years=1940&amp;ndash;1945}}
55462 {{succession box | title=[[Leader of the House of Commons]] | before=[[Stafford Cripps|Sir Stafford Cripps]] | after=[[Herbert Morrison (politician)|Herbert Morrison]] | years=1942&amp;ndash;1945}}
55463 {{succession box | title=[[Secretary of State for Foreign Affairs|Foreign Secretary]] | before=[[Herbert Morrison (politician)|Herbert Morrison]] | after=[[Harold Macmillan]] | years=1951&amp;ndash;1955}}
55464 {{succession box two to two| title1=[[Conservative Party (UK)|Leader of the British Conservative Party]] | title2=[[Prime Minister of the United Kingdom|Prime Minister of the United Kingdom]] | before=[[Winston Churchill|Sir Winston Churchill]] | after=[[Harold Macmillan]] | years1=1955&amp;ndash;1957 | years2=1955&amp;ndash;1957}}
55465 {{end box}}
55466
55467 {{start box}}
55468 {{succession box | title=[[Earl of Avon]] | before=New Creation | after=[[Nicholas Eden, 2nd Earl of Avon|Nicholas Eden]] | years=}}
55469 {{end box}}
55470
55471 ==External links==
55472 http://www.discoverychannel.co.uk/alteredstatesmen/feature3.shtml
55473 {{UKDeputyPrimeMinisters}}
55474 {{UKPrimeMinisters}}
55475 {{ConservativePartyLeader}}
55476 [[Category:1897 births|Avon]]
55477 [[Category:1977 deaths|Avon]]
55478 [[Category:British Army officers|Avon]]
55479 [[Category:British MPs|Avon]]
55480 [[Category:British Secretaries of State|Avon]]
55481 [[Category:Earls in the Peerage of the United Kingdom|Avon]]
55482 [[Category:Former students of Christ Church, Oxford|Avon]]
55483 [[Category:Knights of the Garter|Avon]]
55484 [[Category:Leaders of the British Conservative Party|Avon]]
55485 [[Category:Lords Privy Seal|Avon]]
55486 [[Category:members of the Privy Council|Avon]]
55487 [[Category:Old Etonians|Avon]]
55488 [[Category:Prime Ministers of the United Kingdom|Avon]]
55489 [[Category:World War II political leaders|Avon]]
55490
55491 [[de:Anthony Eden]]
55492 [[es:Anthony Eden]]
55493 [[fr:Anthony Eden]]
55494 [[it:Anthony Eden]]
55495 [[nl:Anthony Eden]]
55496 [[ja:ã‚ĸãƒŗã‚Ŋニãƒŧãƒģイãƒŧデãƒŗ]]
55497 [[pl:Anthony Eden]]
55498 [[pt:Anthony Eden]]
55499 [[fi:Anthony Eden]]
55500 [[sv:Anthony Eden]]</text>
55501 </revision>
55502 </page>
55503 <page>
55504 <title>Amateur Radio</title>
55505 <id>1053</id>
55506 <revision>
55507 <id>15899558</id>
55508 <timestamp>2002-05-22T19:01:20Z</timestamp>
55509 <contributor>
55510 <username>Maveric149</username>
55511 <id>62</id>
55512 </contributor>
55513 <comment>#redirect [[Amateur radio]]</comment>
55514 <text xml:space="preserve">#redirect [[Amateur radio]]</text>
55515 </revision>
55516 </page>
55517 <page>
55518 <title>All Souls Day</title>
55519 <id>1055</id>
55520 <revision>
55521 <id>42078634</id>
55522 <timestamp>2006-03-03T17:58:03Z</timestamp>
55523 <contributor>
55524 <username>Rich Farmbrough</username>
55525 <id>82835</id>
55526 </contributor>
55527 <minor />
55528 <comment>Ced. Wikify dates</comment>
55529 <text xml:space="preserve">{{Otheruses4|the religious holiday|the 2005 film|All Souls Day (film)|All Souls Day}}
55530
55531 [[Image:Allsoul.jpg|thumb||300px|All Souls' Day by William Bouguereau]]
55532 '''All Souls' Day''' (formally, ''Commemoratio omnium Fidelium Defunctorum'' or Commemoration of all the Faithful Departed), also called '''Defuncts' Day''' in Mexico and Belgium, is the day set apart in the [[Roman Catholic Church]] for the commemoration of the [[afterlife|faithful departed]]. The celebration is based on the doctrine that the souls of the faithful which at death have not been cleansed from [[venial sin]]s, or have not atoned for past transgressions, cannot attain the [[beatific vision]], and that they may be helped to do so by [[prayer]] and by the sacrifice of the [[mass (liturgy)|mass]].
55533
55534 The feast falls on [[November 2]]. Traditionally, because [[Requiem]] [[Masses]] could not be celebrated on Sundays before Vatican II, the feast was transferred to [[November 3]] if [[November 2]] is a Sunday, but this is no longer observed in the [[Novus Ordo]].
55535
55536 ==Christian origin==
55537
55538 The practice of setting apart a special day for intercession for certain of the faithful departed is very old. But the first feast of general intercession was first established by [[Odilo]], [[abbot]] of [[Cluny]] (d. 1048). The legend is given by [[Peter Damiani]] in his ''Life of St Odilo.'' According to this, a [[pilgrim]] returning from the [[Holy Land]] was cast by a [[storm]] on a desolate island. A hermit living there told him that amid the rocks was a chasm communicating with [[purgatory]], from which perpetually rose the groans of tortured souls. The hermit also claimed he had heard the [[demon]]s complaining of the efficacy of the prayers of the faithful, and especially the [[monk]]s of Cluny, in rescuing their victims. Upon returning home, the pilgrim hastened to inform the abbot of Cluny, who then set [[2 November]] as a day of intercession on the part of his community for all the souls in purgatory. The decree ordaining the celebration is printed in the Bollandist [[Acta Sanctorum]] (Saec. VI, pt. i. p. 585). From Cluny the custom spread to the other houses of the Cluniac order, was soon adopted in several [[diocese]]s in [[France]], and spread throughout the Western Church. In time the entire month of [[November]] became associated with prayer for the departed in the Western Catholic tradition. Nonetheless the [[2 November]] retained a special status as a day set apart for that purpose.
55539
55540 ==Protestantism==
55541
55542 At the [[Protestant Reformation|Reformation]] the celebration of All Souls' Day was abolished in the [[Church of England]], though it was renewed in certain churches in connection with the &quot;Catholic revival&quot; of the 19th century. The observance was restored with the publication of the 1980 [[Alternative Service Book]], and it features in [[Common Worship]].
55543
55544 Among continental [[Protestantism|Protestant]]s its tradition has been more tenaciously maintained. Even [[Martin Luther (religious leader)|Luther]]'s influence was not sufficient to abolish its celebration in [[Saxony]] during his lifetime; and, though its Ecclesiastical sanction soon lapsed even in the [[Lutheran]] Church, its memory survives strong in popular custom. Just as it is the custom of [[French people]], of all ranks and creeds, to decorate the graves of their dead on the ''jour des morts'', so [[German people]] stream to the graveyards once a year with offerings of [[flower]]s.
55545
55546 ==Pagan roots==
55547
55548 Certain popular beliefs connected with All Souls' Day are of [[Paganism|pagan]] origin and immemorial antiquity. Thus the dead are believed by the peasantry of many Catholic countries to return to their former homes on All Souls' Night and partake of the food of the living. In [[Tyrol]], cakes are left for them on the table and the room kept warm for their comfort. In [[Brittany]], people flock to the cemeteries at nightfall to kneel bare-headed at the graves of their loved ones, and to toll the hollow of the [[tomb stone|tombstone]] with [[holy water]] or to pour libations of [[milk]] on it, and at bedtime the supper is left on the table for the souls. This tradition, though, certainly does not make Catholicism a pagan religion at all since it is the first Christian Church and denomination for over a 1,000 years.
55549
55550 ==See also==
55551 * [[Office of the Dead]]
55552 * [[Samhain]]
55553 * [[Halloween]]
55554 * [[Day of the Dead]]
55555 * [[Zaduszki]]
55556
55557 ==External links==
55558 * [http://www.newadvent.org/cathen/01315b.htm Catholic Encyclopedia: All Souls' Day]
55559 * [http://www.americancatholic.org/Features/Saints/faqs.asp American Catholic - Saints FAQs, All Saints and All Souls Days]
55560
55561 [[Category:Liturgical Calendar]]
55562
55563 [[de:Allerseelen]]
55564 [[ja:æ­ģč€…ãŽæ—Ĩ]]
55565 [[la:Commemoratio Omnium Fidelium Defunctorum]]
55566 [[nl:Allerzielen]]
55567 [[pt:Dia dos fiÊis defuntos]]</text>
55568 </revision>
55569 </page>
55570 <page>
55571 <title>Andreas Vesalius</title>
55572 <id>1056</id>
55573 <revision>
55574 <id>31724752</id>
55575 <timestamp>2005-12-17T12:28:09Z</timestamp>
55576 <contributor>
55577 <ip>84.65.45.123</ip>
55578 </contributor>
55579 <text xml:space="preserve">#REDIRECT [[Vesalius]]</text>
55580 </revision>
55581 </page>
55582 <page>
55583 <title>Anatole France</title>
55584 <id>1057</id>
55585 <revision>
55586 <id>42022625</id>
55587 <timestamp>2006-03-03T07:24:02Z</timestamp>
55588 <contributor>
55589 <username>Zdravko mk</username>
55590 <id>693044</id>
55591 </contributor>
55592 <comment>/* Famous sayings */</comment>
55593 <text xml:space="preserve">{{French literature (small)}}
55594 '''Anatole France''' ([[April 16]], [[1844]] &amp;ndash; [[October 12]], [[1924]]) was the [[pen name]] of French author '''Jacques Anatole François Thibault'''. He was born in [[Paris|Paris, France]], and died in [[Tours]], [[Indre-et-Loire]], [[France]]. In addition to being a celebrated author, Anatole was also documented to have a brain volume just two-thirds the normal size.
55595
55596 In [[1896]], he was made a member of the [[AcadÊmie française]].
55597
55598 In the [[1920s]] France's writings were put on the [[Index of Forbidden Books]] of the [[Roman Catholic Church]]. He was awarded the [[Nobel Prize in Literature]] in [[1921]].
55599
55600 ==Works, partial list==
55601 * ''[[Penguin Island (book)|Penguin Island]]'', ''L'Île des Pingouins''
55602 * ''The Crime of Sylvestre Bonnard'', ''Le Crime de Sylvester Bonnard''
55603 * ''Thaïs''
55604 * ''The Human Tragedy'', ''L'Humaine Tragedie''
55605 * ''The Queen Pedauque'', ''La Rotisserie de la Reine Pedauque''
55606 * ''The Red Lily'', ''Le Lys Rouge''
55607 * ''The Revolt of the Angels'', ''La Revolte des Anges''
55608 * ''Crainquebille; Putois; Riquet; et Plusieurs Autres Recits Profitables''
55609 * ''Les Sept Femmes de la Barbe-Bleue et Autres Contes Merveilleux''
55610 * ''Monsieur Bergeret a Paris''
55611 * ''Sur la Pierre Blanche''
55612 * ''The Man Who Married A Dumb Wife'' play
55613 * ''The Gods Will Have Blood; The Gods Are A-Thirst''
55614 * ''The Life of Joan of Arc'' 2 volumes
55615 * ''Mother of Pearl''
55616
55617 == Famous sayings ==
55618 *&quot;The law, in its majestic equality, forbids the rich as well as the poor to sleep under bridges, to beg in the streets, and to steal bread.&quot;
55619 *&quot;I prefer the errors of enthusiasm to the indifference of wisdom.&quot;
55620 *&quot;If fifty million people say a foolish thing, it is still a foolish thing.&quot;
55621 *&quot;When a thing has been said, and said well, have no scruple. Take it and copy it.&quot;
55622 *&quot;Let us give to men irony and pity as witnesses and judges.&quot;
55623 *&quot;Make hatred hated.&quot;
55624 *&quot;Never lend books, for no one ever returns them; the only books I have in my library are those that other people have lent me.&quot;
55625 *&quot;To accomplish great things, we must not only act, but also dream; not only plan, but also believe.&quot;
55626 *&quot;Without the utopians of other times, men would still live in caves, miserable and naked;...utopia is the principle of all progress, adn the essay into a better world.&quot;
55627
55628 ==External links==
55629 {{wikiquote}}
55630 * {{gutenberg author| id=Anatole+France | name=Anatole France}}
55631 *[http://www.surlalunefairytales.com/bluebeard/fiction/anatolefrance.html The Seven Wives of Bluebeard (English) by Anatole France]
55632 *[http://www.surlalunefairytales.com/sleepingbeauty/fiction/anatolefrance.html The Story of the Duchess of Cicogne and of Monsieur de Boulingrin (English) by Anatole France]
55633 *[http://www.nobel-winners.com/Literature/anatole_france.html Anatole France Biography]
55634
55635 {{start box}}
55636 {{succession box | before=[[Ferdinand de Lesseps]] | title=[[List of members of the AcadÊmie française#Seat 38|Seat 38]]&lt;br&gt;[[AcadÊmie française]] | years=1896&amp;ndash;1924 | after=[[Paul ValÊry]]
55637 }}
55638 {{end box}}
55639
55640 {{start box}}
55641 {{succession box | before=[[Knut Hamsun]] | title=[[List of Nobel laureates#Literature|Nobel Prize in Literature winner]] | years=1921 | after=[[Jacinto Benavente]]
55642 }}
55643 {{end box}}
55644
55645
55646 [[Category:1844 births|France, Anatole]]
55647 [[Category:1924 deaths|France, Anatole]]
55648 [[Category:Members of the AcadÊmie française|France, Anatole]]
55649 [[Category:Nobel Prize in Literature winners|France, Anatole]]
55650 [[Category:French novelists|France, Anatole]]
55651 [[Category:French satirists|France, Anatole]]
55652
55653 [[bg:АĐŊĐ°Ņ‚ĐžĐģ ФŅ€Đ°ĐŊŅ]]
55654 [[be:АĐŊĐ°Ņ‚ĐžĐģŅŒ ФŅ€Đ°ĐŊŅ]]
55655 [[de:Anatole France]]
55656 [[et:Anatole France]]
55657 [[es:Anatole France]]
55658 [[eo:Anatole FRANCE]]
55659 [[fr:Anatole France]]
55660 [[hr:Anatole France]]
55661 [[it:Anatole France]]
55662 [[he:אנטול פרנס]]
55663 [[nl:Anatole France]]
55664 [[no:Anatole France]]
55665 [[ja:ã‚ĸナトãƒŧãƒĢãƒģフナãƒŗã‚š]]
55666 [[pl:Anatole France]]
55667 [[pt:Anatole France]]
55668 [[ru:ФŅ€Đ°ĐŊŅ, АĐŊĐ°Ņ‚ĐžĐģŅŒ]]
55669 [[sk:Anatole France]]
55670 [[fi:Anatole France]]
55671 [[sv:Anatole France]]</text>
55672 </revision>
55673 </page>
55674 <page>
55675 <title>AndrÊ Gide</title>
55676 <id>1058</id>
55677 <revision>
55678 <id>41443418</id>
55679 <timestamp>2006-02-27T09:56:49Z</timestamp>
55680 <contributor>
55681 <username>JoJan</username>
55682 <id>58781</id>
55683 </contributor>
55684 <comment>Elisabeth van Rysselberghe</comment>
55685 <text xml:space="preserve">{{French literature (small)}}
55686
55687 '''AndrÊ Paul Guillaume Gide''' ([[November 22]], [[1869]] &amp;ndash; [[February 19]], [[1951]]) was a [[France|French]] [[author]] and winner of the [[Nobel prize]] in literature in [[1947]]. Gide's career spanned from the [[symbolist]] movement to the advent of anticolonialism in-between the two [[World Wars]].
55688
55689 Gide's work can be seen as an investigation of freedom and empowerment in the face of moralistic and puritan constraints, and gravitates around his continuous effort to achieve intellectual honesty. His self-exploratory texts reflect his search of how to be fully oneself, even to the point of owning one's sexual nature, without at the same time betraying one's values. His political activity is informed by the same ethos, as suggested by his repudiation of [[communism]] after his [[1936]] voyage to the [[USSR]].
55690
55691 Known for his fiction as well as his autobiographical works, Gide exposes to public view the conflict and eventual reconciliation between the two sides of his personality, split apart by a straightlaced education and a narrow social moralism - as he perceives himself: the austere and refined [[Protestant]], and the divinely inspired - and no longer blushing - [[Pederasty|pederast]].
55692
55693 ==Early life==
55694
55695 Gide was born in [[Paris]], France on [[November 22]], [[1869]]. His father was a Paris University professor of law and died [[1880]]. His uncle was the political economist [[Charles Gide]].
55696
55697 Gide was brought up in isolated conditions in [[Normandy]] and became a prolific writer at an early age, publishing in [[1891]] his first novel, ''The Notebooks of Andre Walter'' (French: ''Les Cahiers d'AndrÊ Walter'').
55698
55699 In [[1893]] and [[1894]] Gide traveled in northern [[Africa]]. He befriended [[Oscar Wilde]] in [[Algiers]] and there clearly recognized his own [[pederasty|pederastic]] orientation:
55700
55701 :&quot;But how can I describe my delirium at holding in my naked arms that perfect, savage little brown body, eager, lacivious? I spent a long time, after Mohammed had left me, in a state of trembling exaltation, and although I had reached the peak of pleasure five times with him, I re-lived my ecstasy again and again, and back at my room at the hotel prolonged the memories until dawn. At the first pale light I got up; and ran, yes really ran, in sandals, far beyond Mustapha; a kind of lightness of the body and soul did not leave me all day.&quot; (''Si Le Grain Ne Meurt'').
55702
55703 Though sympathetic to the plight of homosexuals in his day, he never saw himself as one of them, claiming that, &quot;I was never homosexual, in the sense of finding men attractive.&quot;
55704
55705 ==The middle years==
55706
55707 In [[1895]], after his mother's death, he married his cousin Madeleine Rondeaux but the marriage remained unconsummated. In [[1896]] he was mayor of [[La Roque-Baignard]], a [[Commune in France|commune]] in [[Normandy]].
55708
55709 In [[1908]] Gide helped found the literary magazine ''Nouvelle Revue française'' (''The New French Review''). In [[1916]] [[Marc AllÊgret]], 16, becomes his lover. He was the son of Elie Allegret, best man at Gide's wedding. Of Allegret's five children, Andre Gide adopted Marc. The two elope to London, in retribution for which his wife burns all his correspondence, &quot;the best part of myself,&quot; as he was later to comment. In [[1918]] he met [[Dorothy Bussy]], who was his friend for over thirty years and who would translate all his works into English.
55710
55711 In the [[1920s]] Gide became an inspiration for writers like [[Albert Camus]] and [[Jean-Paul Sartre]]. In [[1923]] he published a book on [[Fyodor Dostoyevsky]]; however, when he defended homosexuality in the public edition of ''[[Corydon]]'' ([[1924]]) he received widespread condemnation. He later considered this his most important work.
55712
55713 In 1923 he conceived a daughter named Catherine with another woman, Elisabeth van Rysselberghe, daughter of his friend, the Belgian neo-impressionist painter [[ThÊo van Rysselberghe]]. His wife Madeleine died in [[1938]]. Later he used the background of his unconsummated marriage in his novel ''Et Nunc Manet in Te.'' The novel included passages about ponies and bananas. These works were unconventional at the time, and became instant classics ([[1951]]).
55714
55715 After [[1925]] he began to demand more humane conditions for criminals. In [[1926]] he published an autobiography, ''If it die'' (French: ''Si le grain ne meurt'').
55716
55717 ==Africa==
55718
55719 From July 1926 to May [[1927]], he travelled through the [[French Equatorial Africa]] [[colony]] with his lover [[Marc AllÊgret]]. He went successively in [[Middle Congo]] (now the [[Republic of the Congo]]), in [[Oubangui-Chari]] (now the [[Central African Republic]]), briefly in [[Chad]] and then in [[Cameroun]] before returning to France. He related his peregrinations in a journal called ''[[Travels in the Congo]]'' (French: ''Voyage au Congo'') and ''Return from Chad'' (French: ''Retour du Tchad''). In this published journal, he criticized the behavior of French business interests in the Congo and inspired reform. In particular, he strongly criticized the ''Large Concessions'' regime (French: ''rÊgime des Grandes Concessions''), i.e. a regime according to which part of the colony was conceded to French companies and where these companies could exploit all area's [[natural resource]]s, in particular [[rubber]]. He related for instance how natives were forced to leave their village during several weeks to collect rubber in the forest, and went as far as comparing their exploitation to [[slavery]].
55720
55721 ==Russia==
55722
55723 During the [[1930s]] he briefly became a [[communism|communist]], but became disillusioned after his visit to [[Soviet Union]]. His criticism of communism caused him to lose many of his [[socialism|socialist]] friends, especially when he made a clean break with it in ''Retour de L'U.R.S.S.'' in [[1936]]. He was also a contributor to ''[[The God That Failed]]''.
55724
55725 ==The 1940s==
55726 Gide left France for [[Africa]] in [[1942]] and lived in [[Tunis]] until the end of [[World War II]]. In [[1947]], he received the [[Nobel Prize in Literature]].
55727
55728 Gide died on [[February 19]], [[1951]].
55729
55730 ==Partial list of works==
55731 *''Les cahiers d'AndrÊ Walter'' - 1891
55732 *''Le traitÊ du Narcisse'' - 1891
55733 *''Les poÊsies d'AndrÊ Walter'' - 1892
55734 *''Le voyage d'Urien'' - 1893
55735 *''La tentative amoureuse'' - 1893
55736 *''Paludes'' - 1895
55737 *''RÊflexions sur quelques points de littÊrature'' - 1897
55738 *''Les nourritures terrestres'' - 1897
55739 *''Feuilles de route 1895-1896'' - 1897
55740 *''El Hadj''
55741 *''Le PromÊthÊe mal enchaÎnÊ'' - 1899
55742 *''Philoctète'' - 1899
55743 *''Lettres à Angèle'' - 1900
55744 *''De l'influence en littÊrature'' - 1900
55745 *''Le roi Candaule'' - 1901
55746 *''Les limites de l'art'' - 1901
55747 *''L'immoraliste'' - 1902
55748 *''SaÃŧl'' - 1903
55749 *''De l'importance du public'' - 1903
55750 *''PrÊtextes'' - 1903
55751 *''Amyntas'' - 1906
55752 *''Le retour de l'enfant prodigue'' - 1907
55753 *''Dostoïevsky d'après sa correspondance'' - 1908
55754 *''La porte Êtroite'' - 1909
55755 *''Oscar Wilde'' - 1910
55756 *''Nouveaux prÊtextes'' - 1911
55757 *''Charles-Louis-Philippe'' - 1911
55758 *''C. R. D. N.'' - 1911
55759 *''Isabelle'' - 1911
55760 *''BethsabÊ'' - 1912
55761 *''Souvenirs de la Cour d'Assises'' - 1914
55762 *''Les caves du Vatican'' - 1914
55763 *''La symphonie pastorale'' - 1919
55764 *''Corydon'' - 1920
55765 *''Numquid et tu . . .?'' - 1922
55766 *''Dostoïevsky'' - 1923
55767 *''Incidences'' - 1924
55768 *''Caractères'' - 1925
55769 *''Les faux-monnayeurs'' - 1925
55770 *''Si le grain ne meurt'' - 1926
55771 *''Le journal des faux-monnayeurs'' - 1926
55772 *''Dindiki'' - 1927
55773 *''Voyage au Congo'' - 1927
55774 *''Le retour de Tchad'' - 1928
55775 *''L'Êcole des femmes'' - 1929
55776 *''Essai sur Montaigne'' - 1929
55777 *''Un esprit non prÊvenu'' - 1929
55778 *''Robert'' - 1930
55779 *''La sÊquestrÊe de Poitiers'' - 1930
55780 *''L'affaire Redureau'' - 1930
55781 *''Œdipe'' - 1931
55782 *''PersÊphone'' - 1934
55783 *''Les nouvelles nourritures'' - 1935
55784 *''Geneviève'' - 1936
55785 *''Retour de l'U. R. S. S.'' - 1936
55786 *''Retouches Ãĸ mon retour de l'U. R. S. S.'' - 1937
55787 *''Notes sur Chopin'' - 1938
55788 *''Journal 1889-1939'' - 1939
55789 *''DÊcouvrons Henri Michaux'' - 1941
55790 *''ThÊsÊe'' - 1946
55791 *''Le retour'' - 1946
55792 *''Paul ValÊry'' - 1947
55793 *''Le procès'' - 1947
55794 *''L'arbitraire'' - 1947
55795 *''Eloges'' - 1948
55796 *''LittÊrature engagÊe'' - 1950
55797
55798 The Catholic Church placed his works on the [[Index of Forbidden Books]] in [[1952]].
55799
55800 ==See also==
55801 [[Historical pederastic couples]]
55802
55803 ==External links==
55804 {{wikiquote}}
55805 *{{gutenberg author| id=AndrÊ+Gide | name=AndrÊ Gide}}
55806 *[http://www.andregide.org Center for Gidian Studies]
55807 *[http://www.gidiana.net/ Amis d'AndrÊ Gide] ''In French''
55808 *[http://www.bobpayne.com/ Alphabet Soup]
55809
55810 {{start box}}
55811 {{succession box | before = [[Hermann Hesse]] | title = [[List of Nobel laureates#Literature|Nobel Prize in Literature winner]] | years =1947 | after = [[Thomas Stearns Eliot]]
55812 }}
55813 {{end box}}
55814
55815 [[Category:1869 births|Gide, AndrÊ]]
55816 [[Category:1951 deaths|Gide, AndrÊ]]
55817 [[Category:Parisians|Gide, AndrÊ]]
55818 [[Category:Nobel Prize in Literature winners|Gide, AndrÊ]]
55819 [[Category:French novelists|Gide, AndrÊ]]
55820 [[Category:French essayists|Gide, AndrÊ]]
55821 [[Category:French travel writers|Gide, AndrÊ]]
55822 [[Category:Pederastic lovers|Gide, AndrÊ]]
55823 [[Category:Gay writers|Gide, AndrÊ]]
55824 [[Category:LGBT rights activists|Gide, AndrÊ]]
55825
55826 [[cs:AndrÊ Gide]]
55827 [[de:AndrÊ Gide]]
55828 [[et:AndrÊ Gide]]
55829 [[es:AndrÊ Gide]]
55830 [[eo:AndrÊ GIDE]]
55831 [[fa:ØĸŲ†Ø¯ØąŲ‡ ژید]]
55832 [[fr:AndrÊ Gide]]
55833 [[hr:AndrÊ Gide]]
55834 [[it:AndrÊ Gide]]
55835 [[he:אנדרה ז'יד]]
55836 [[hu:AndrÊ Gide]]
55837 [[ja:ã‚ĸãƒŗドãƒŦãƒģジッド]]
55838 [[no:AndrÊ Gide]]
55839 [[pl:AndrÊ Gide]]
55840 [[pt:AndrÊ Gide]]
55841 [[ru:Жид, АĐŊĐ´Ņ€Đĩ]]
55842 [[fi:AndrÊ Gide]]
55843 [[sv:AndrÊ Gide]]
55844 [[tr:AndrÊ Gide]]
55845 [[zh:įēĒåžˇ]]</text>
55846 </revision>
55847 </page>
55848 <page>
55849 <title>Applied statistics</title>
55850 <id>1059</id>
55851 <revision>
55852 <id>35692261</id>
55853 <timestamp>2006-01-18T16:57:16Z</timestamp>
55854 <contributor>
55855 <username>Eric Sellars</username>
55856 <id>314346</id>
55857 </contributor>
55858 <comment>Removed broken link</comment>
55859 <text xml:space="preserve">'''Applied statistics''' is the use of [[statistics]] and [[statistical theory]] in real-life situations.
55860
55861 Anyone committed to empirical observation as a means of knowing the universe about us can apply statistics as a research tool. This obviously includes [[science]] but includes [[history]] and the [[art]]s as well. For example, [[econometrics]] makes heavy use of applied statistics to study the [[economics|economy]].
55862
55863 In each of these areas, we need to observe, recognize the potential for error in our observations, and plan our research to control the [[observational error]].
55864
55865 == See also ==
55866 * [[List of publications in statistics#Applied statistics| Important publications in applied statistics]]
55867
55868 == External links ==
55869 * [http://mbhs.edu/~steind00/ Some applets about applied statistics]
55870
55871 {{statistics-stub}}
55872 [[Category:Statistics]]
55873 [[pl:statystyka stosowana]]</text>
55874 </revision>
55875 </page>
55876 <page>
55877 <title>Analysis of variance/Fixed effects model</title>
55878 <id>1060</id>
55879 <revision>
55880 <id>15899565</id>
55881 <timestamp>2003-01-13T23:26:40Z</timestamp>
55882 <contributor>
55883 <username>Ap</username>
55884 <id>122</id>
55885 </contributor>
55886 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
55887 </revision>
55888 </page>
55889 <page>
55890 <title>Analysis of variance/Random effects models</title>
55891 <id>1061</id>
55892 <revision>
55893 <id>15899566</id>
55894 <timestamp>2003-01-13T23:28:27Z</timestamp>
55895 <contributor>
55896 <username>Ap</username>
55897 <id>122</id>
55898 </contributor>
55899 <comment>redirect to [[Analysis of variance]]</comment>
55900 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
55901 </revision>
55902 </page>
55903 <page>
55904 <title>Analysis of variance/Degrees of freedom</title>
55905 <id>1062</id>
55906 <revision>
55907 <id>15899567</id>
55908 <timestamp>2003-01-13T23:29:58Z</timestamp>
55909 <contributor>
55910 <username>Ap</username>
55911 <id>122</id>
55912 </contributor>
55913 <comment>redirecting to Analysis of variance</comment>
55914 <text xml:space="preserve">#REDIRECT [[Analysis of variance]]</text>
55915 </revision>
55916 </page>
55917 <page>
55918 <title>Algorithms for calculating variance</title>
55919 <id>1063</id>
55920 <revision>
55921 <id>38008909</id>
55922 <timestamp>2006-02-03T15:47:51Z</timestamp>
55923 <contributor>
55924 <username>Mathbot</username>
55925 <id>234358</id>
55926 </contributor>
55927 <comment>Robot-assisted spelling. See [[User:Mathbot/Logged misspellings]] for changes.</comment>
55928 <text xml:space="preserve">'''[[Algorithm]]s for calculating [[variance]]''' play a minor role in [[statistics|statistical]] computing. A key problem in the design of good algorithms for this problem is that formulas for the variance may involve sums of squares, which can lead to numerical instability as well as to [[arithmetic overflow]] when dealing with large values.
55929
55930 == Algorithm I ==
55931
55932 A [[formula]] for calculating the variance of a [[statistical population|population]] of size ''n'' is:
55933
55934 :&lt;math&gt;\sigma^2 = \frac {\sum_{i=1}^{n} x_i^2 - (\sum_{i=1}^{n} x_i)^2/n}{n}. \!&lt;/math&gt;
55935
55936 A formula for calculating an [[bias (statistics)|unbiased]] estimate of the population variance from a finite [[statistical sample|sample]] of ''n'' observations is:
55937
55938 :&lt;math&gt;s^2 = \frac {\sum_{i=1}^{n} x_i^2 - (\sum_{i=1}^{n} x_i)^2/n}{n-1}. \!&lt;/math&gt;
55939
55940 Therefore a naive algorithm to calculate the estimated variance is given by the following [[pseudocode]]:
55941
55942 long n = 0
55943 double sum = 0
55944 double sum_sqr = 0
55945
55946 foreach x in data:
55947 n += 1
55948 sum += x
55949 sum_sqr += x * x
55950 end for
55951
55952 double mean = sum / n
55953 double variance = (sum_sqr - sum * mean) / (n - 1)
55954
55955 This algorithm can easily be adapted to compute the variance of a finite population: simply divide by ''n'' instead of &lt;math&gt;n-1&lt;/math&gt; on the last line.
55956
55957 == Algorithm II ==
55958
55959 The following formulas can be used to update the [[mean]] and (estimated) variance of the sequence, for an additional element &lt;math&gt;x_{\mathrm{new}}&lt;/math&gt;. Here, ''m'' denotes the estimate of the population mean, ''s''&lt;sup&gt;2&lt;/sup&gt; the estimate of the population variance, and ''n'' the number of elements in the sequence before the addition.
55960
55961 :&lt;math&gt;m_{\mathrm{new}} = \frac{n \; m_{\mathrm{old}} + x_{\mathrm{new}}}{n+1} = m_{\mathrm{old}} + \frac{x_{\mathrm{new}} - m_{\mathrm{old}}}{n+1} \!&lt;/math&gt;
55962
55963 :&lt;math&gt;s^2_{\mathrm{new}} = \frac{(n-1) \; s^2_{\mathrm{old}} + (x_{\mathrm{new}} - m_{\mathrm{new}}) \, (x_{\mathrm{new}} - m_{\mathrm{old}})}{n} \!&lt;/math&gt;
55964
55965 A numerically stable algorithm is given below. It also computes the mean.
55966 This algorithm is due to Knuth&lt;ref&gt;[[Donald E. Knuth]] (1998). ''[[The Art of Computer Programming]]'', volume 2: ''Seminumerical Algorithms'', 3rd edn., p. 232. Boston: Addison-Wesley.&lt;/ref&gt;,
55967 who cites Welford&lt;ref&gt;B. P. Welford (1962). &quot;Note on a method for calculating corrected sums of squares and products&quot;. ''Technometrics'' 4(3):419–420.&lt;/ref&gt;.
55968
55969 long n = 0
55970 double mean = 0
55971 double S = 0
55972
55973 foreach x in data:
55974 n += 1
55975 double delta = x - mean
55976 mean += delta / n
55977 S += delta * (x - mean) // This expression uses the new value of mean
55978 end for
55979
55980 double variance = S / (n - 1)
55981
55982 == Example ==
55983
55984 Assume that all floating point operations use the standard [[IEEE 754#Double-precision 64 bit|IEEE 754 double-precision]] arithmetic. Consider the sample (4, 7, 13, 16) from an infinite population. Based on this sample, the estimated population mean is 10, and the estimated population variance is 30. Both algorithms compute these values correctly. Next consider the sample &lt;math&gt;(10^8+4, 10^8+7, 10^8+13, 10^8+16)&lt;/math&gt;, which gives rise to the same estimated variance as the first sample. Algorithm II computes this variance estimate correctly, but Algorithm I returns 29.333333333333332 instead of 30. While this loss of precision may be tolerable and viewed as a minor flaw of Algorithm I, it is easy to find data that reveal a major flaw in the naive algorithm: Take the sample to be &lt;math&gt;(10^9+4, 10^9+7, 10^9+13, 10^9+16)&lt;/math&gt;. Again the estimated population variance of 30 is computed correctly by Algorithm II, but the naive algorithm now computes it as &amp;minus;170.66666666666666. This is a serious problem with Algorithm I, since the variance can, by definition, never be negative.
55985
55986 == References ==
55987
55988 &lt;references/&gt;
55989
55990 == External links ==
55991
55992 * {{MathWorld|title=Sample Variance Computation|urlname=SampleVarianceComputation}}
55993
55994 [[Category:Statistics]]</text>
55995 </revision>
55996 </page>
55997 <page>
55998 <title>Almond</title>
55999 <id>1064</id>
56000 <revision>
56001 <id>41661312</id>
56002 <timestamp>2006-02-28T22:19:43Z</timestamp>
56003 <contributor>
56004 <username>Michaelfavor</username>
56005 <id>472990</id>
56006 </contributor>
56007 <comment>combined similar sentences</comment>
56008 <text xml:space="preserve">{{otheruses}}
56009 {{Taxobox
56010 | color = lightgreen
56011 | name = Almond
56012 | image = Almond blossoms branch.JPG
56013 | image_width = 250px
56014 | image_caption = Almond flowers
56015 | regnum = [[Plant]]ae
56016 | divisio = [[Flowering plant|Magnoliophyta]]
56017 | classis = [[Magnoliopsida]]
56018 | ordo = [[Rosales]]
56019 | familia = [[Rosaceae]]
56020 | subfamilia = [[Prunoideae]]
56021 | genus = [[Prunus]]
56022 | species = '''''P. dulcis'''''
56023 | binomial = ''Prunus dulcis''
56024 | binomial_authority = ([[Philip Miller|Mill.]]) D. A. Webb
56025 }}
56026
56027 The '''Almond''' (''Prunus dulcis'', [[synonymy|syn.]] ''Prunus amygdalus'', or ''Amygdalus communis'') is a small [[deciduous]] [[tree]] belonging to the subfamily [[Prunoideae]] of the family [[Rosaceae]]. An ''almond'' is also the [[fruit]] of this tree. It is classified with the [[peach]] in the subgenus ''Amygdalus'' within ''[[Prunus]]'', distinguished from the other subgenera by the corrugated seed shell.
56028
56029 The fruit lacks the sweet fleshy outer covering of other members of ''Prunus'' (such as the [[plum]] and [[cherry]]), this being replaced by a leathery coat, called a hull, which contains the edible kernel, commonly called a [[nut]], inside a hard shell. In botanical parlance, the reticulated hard stony shell is called an [[endocarp]], and the fruit, or [[exocarp]], is a [[drupe]], having a downy outer coat.
56030
56031 The tree is probably a native of southwest [[Asia]] and north [[Africa]], but has been so extensively cultivated for so long over the warm temperate regions of the Old World that its original natural distribution is obscure. It can ripen fruit as far north as the [[British Isles]]. It is a tree of moderate size; the leaves are lanceolate, and serrated at the edges; and it flowers early in spring.
56032
56033 ==Production==
56034 Global production of almonds is around 1.5 million tonnes, with a low of 1 million tonnes in 1995 and a peak of 1.85 million tonnes in 2002 [http://www.fas.usda.gov/htp/Hort_Circular/2004/12-10-04/12-04%20Almonds.pdf FAO figures (pdf file)]. Major producers include [[Greece]], [[Iran]], [[Italy]], [[Morocco]], [[Portugal]], [[Spain]], [[Syria]], [[Turkey]], and the [[United States]]. In Spain, numerous commercial cultivars of sweet almond are produced, most notably the Jordan almond (imported from [[MÃĄlaga]]) and the [[Valencia]] almond. In the United States, production is concentrated in [[California]], with almonds being California's sixth leading argicultrual product and its top agricultural export. California exported almonds valued at 1.08 billion dollars in 2003, about 70% of total California almond crop.
56035
56036 ==Pollination==
56037 {{ImageStackRight|200|
56038 [[image:Almond blossoms closeup.jpg|thumb|right|Almond flowers]]
56039 [[Image:Unripe almond on tree.jpg|thumb|Unripe almond on tree]]
56040 [[Image:Almonds_th.jpg|thumb|right|Almonds (in the shell and out of it)]]}}
56041 The [[pollination]] of California's almonds is the largest annual [[Pollination management|managed pollination]] event in the world, with close to one million hives (nearly half of all [[beehive (beekeeping)|beehives]] in the USA) being trucked in February to the almond groves. Much of the pollination is managed by pollination brokers, who contract with migratory [[beekeeper]]s from at least 38 states for the event.
56042
56043 ==Sweet and bitter almond==
56044 There are two forms of the plant, one (often with white flowers) producing [[sweet]] almonds, and the other (often with pink flowers) producing [[Bitter (taste)|bitter]] almonds. The kernel of the former contains a fixed oil and emulsion. As late as the early 20th century the oil was used internally in medicine, with the stipulation that it must not be adulterated with that of the bitter almond; it remains fairly popular in [[alternative medicine]], particularly as a [[carrier oil]] in [[aromatherapy]], but has fallen out of prescription among doctors.
56045
56046 The bitter almond is rather broader and shorter than the sweet almond, and contains about 50% of the fixed oil which also occurs in sweet almonds. It also contains a ferment emulsion which, in the presence of water, acts on a [[soluble]] [[glucoside]], [[amygdalin]], yielding [[glucose]], [[cyanide]] and the [[essential oil]] of bitter almonds or [[benzaldehyde]]. Bitter almonds may yield from 6 to 8% of prussic acid (also known as [[hydrogen cyanide]]). Extract of bitter almond was once used medicinally but even in small doses effects are severe and in larger doses can be deadly; the prussic acid must be removed before consumption.
56047
56048 ==Almond oil==
56049 &quot;Oleum Amygdalae&quot;, the fixed oil, is prepared from either variety of almond and is a glyceryl oleate, with slight odour and a nutty taste. It is almost insoluble in [[ethanol|alcohol]] but readily soluble in [[chloroform]] or [[diethyl ether|ether]]. It may be used as a substitute for [[olive oil]].
56050
56051 The sweet almond oil is obtained from the dried [[seed|kernel]] of the plant. This oil has been traditionally used by [[massage therapist]]s to lubricate the skin during a massage session, being considered by many to be an effective [[emollient]].
56052
56053 ==Culinary uses==
56054 While the almond is most often eaten raw, it is used in some dishes. It, along with other nuts, is often sprinkled over desserts, particularly sundaes and other ice cream based dishes. It is also used in [[Baklava]]. There is also almond butter, a spread similar to [[peanut butter]], popular with peanut allergy sufferers and for its less salty taste.
56055
56056 The sweet almond itself contains practically no [[starch]] and may therefore be made into flour for cakes and biscuits for patients suffering from [[diabetes mellitus]] or any other form of [[glycosuria]]. Almond extract is also a popular substitute for [[vanilla]] extract among people with diabetes. Sweet almonds are used in [[marzipan]], [[nougat]], and [[macaroon]]s, as well as other desserts. Almonds are a rich source of [[Vitamin E]], containing 24 mg per 100 grammes [http://www.allaboutvision.com/nutrition/vitamin_e.htm]. They are also rich in [[monounsaturated fat]], one of the two &quot;good&quot; fats responsible for lowering [[LDL cholesterol]].
56057
56058 In China, almonds are used in a popular dessert when it is mixed with milk and then served hot.
56059
56060 ==Cultural aspects==
56061 The almond is highly revered in some cultures. Among the [[Hebrews]], it was a symbol of watchfulness and promise due to its early flowering, while the [[China|Chinese]] consider it a symbol of enduring sadness and female beauty. In India, consumption of almonds is considered to be good for the brain. Christian symbolism often uses almond branches as a symbol of the [[Virgin Birth]] of [[Jesus]]; paintings often include almonds encircling the [[Child Jesus|baby Jesus]] and as a symbol of [[Mary]]. In the [[Bible]] ([[Book of Numbers|Numbers]] 17) [[Aaron]] is chosen among the other tribes of Israel by a rod that brought forth almond flowers. Today, Jews still carry rods of almond blossom to the synagogues on great festival days. The fruit of the almond supplied a model for certain kinds of ornamental carved work ([[Book of Exodus|Exodus]] 25:33-34; 37:19-20). In a similar legend, [[Pope Urban]] once declared that a man named [[Tannhäuser]] would not receive forgiveness until his wooden staff bloomed again. This occurred after three days, but Tannhauser could not be found. The nut of the tree has also been used as a preventative for [[ethanol|alcohol]] [[intoxication]]. Folklore claims that almonds are poisonous for [[fox]]es. The tree grows in [[Syria]] and [[Israel]], and is referred to in the [[Bible]] under the name of &quot;Shaked&quot;, meaning &quot;hasten&quot;. The word &quot;Luz&quot;, which occurs in [[Book of Genesis|Genisis]] 30:37, and which some translations have as &quot;hazel&quot;, is supposed to be another name for the almond. In Israel the tree flowers in January. The application of &quot;Shaked&quot; or &quot;hasten&quot; to the almond is similar to the use of the name &quot;May&quot; for the hawthorn, which usually flowers in that month in Britain.
56062
56063 ==Etymology==
56064 The word 'almond' comes from the Old French ''almande'' or ''alemande'', late Latin ''amandola'', derived through a form ''amingdola'' from the Greek ''amugdale'', an almond; the al- for a- may be due to a confusion with the Arabic article ''al'', the word having first dropped the a- as in the Italian form ''mandorla''; the British pronunciation ''ar-mond'' and the modern French ''amande'' show the true form of the word.
56065
56066 In parts of Northern California, where almonds are a main crop, the word is often pronounced with a unique regional accent. Rather than the usual American pronunciation of &quot;Ahl-mond&quot;, with the soft A and L, it is pronounced with a hard A and nearly silent H, as in &quot;Aah-men”. This method of pronunciation is particularly prevalent near the city of [[Chico, California|Chico]] in Butte County, but it is also heard in nearby Glenn, Colusa, and Tehama Counties.
56067
56068 ==See also==
56069 * [[Almond milk]], a milky drink made from ground almonds, similar to soy milk
56070 * [[Almond Joy]], a [[candy bar]]
56071 * [[Fruit trees]]
56072 * [[Fruit tree forms]]
56073 * [[Pruning fruit trees]]
56074 * [[Fruit tree propagation]]
56075 * [[List of edible seeds]]
56076
56077 ==External links==
56078 {{Commons|Prunus dulcis dulcis}}
56079 * [http://www.almondboard.com/ The Almond Board of California]
56080 * [http://almondboard.files.cms-plus.com/PDFs/CA%20Almond%20Facts%20Summer%202005.pdf The Almond Board of California - fact sheet]
56081 * [http://www.almondsarein.com/ &quot;Almonds Are In&quot; Health and Nutrition site (The Almond Board of California]
56082
56083
56084 [[Category:Rosaceae]]
56085 [[Category:Nuts and seeds]]
56086 [[Category:Pollination management]]
56087
56088 [[be:МŅ–ĐŗĐ´Đ°ĐģŅ‹]]
56089 [[ca:Ametller]]
56090 [[co:Amandula]]
56091 [[cy:Cneuen almon]]
56092 [[da:Mandel]]
56093 [[de:Mandel]]
56094 [[es:Prunus dulcis]]
56095 [[fr:Amandier]]
56096 [[gl:Amendoeira]]
56097 [[he:שקד מ×Ļוי]]
56098 [[nl:Amandel]]
56099 [[ja:ã‚ĸãƒŧãƒĸãƒŗド]]
56100 [[pl:Migdałowiec zwyczajny]]
56101 [[pt:Amendoeira]]
56102 [[ru:МиĐŊĐ´Đ°ĐģŅŒ]]
56103 [[sr:БадĐĩĐŧ]]
56104 [[fi:Manteli]]</text>
56105 </revision>
56106 </page>
56107 <page>
56108 <title>Antigua and Barbuda/Geography</title>
56109 <id>1068</id>
56110 <revision>
56111 <id>15899573</id>
56112 <timestamp>2002-08-03T16:27:16Z</timestamp>
56113 <contributor>
56114 <username>Ellmist</username>
56115 <id>2214</id>
56116 </contributor>
56117 <comment>move to Geography of Antigua and Barbuda</comment>
56118 <text xml:space="preserve">#REDIRECT [[Geography of Antigua and Barbuda]]</text>
56119 </revision>
56120 </page>
56121 <page>
56122 <title>Antigua and Barbuda/People</title>
56123 <id>1069</id>
56124 <revision>
56125 <id>15899574</id>
56126 <timestamp>2002-08-20T16:08:50Z</timestamp>
56127 <contributor>
56128 <username>Koyaanis Qatsi</username>
56129 <id>90</id>
56130 </contributor>
56131 <text xml:space="preserve">#REDIRECT [[Demographics of Antigua and Barbuda]]</text>
56132 </revision>
56133 </page>
56134 <page>
56135 <title>Government of Antigua and Barbuda</title>
56136 <id>1070</id>
56137 <revision>
56138 <id>15899575</id>
56139 <timestamp>2002-08-04T11:40:30Z</timestamp>
56140 <contributor>
56141 <username>Ellmist</username>
56142 <id>2214</id>
56143 </contributor>
56144 <comment>move to Politics of Antigua and Barbuda</comment>
56145 <text xml:space="preserve">#REDIRECT [[Politics of Antigua and Barbuda]]</text>
56146 </revision>
56147 </page>
56148 <page>
56149 <title>Economy of Antigua and Barbuda</title>
56150 <id>1071</id>
56151 <revision>
56152 <id>41530757</id>
56153 <timestamp>2006-02-27T23:48:58Z</timestamp>
56154 <contributor>
56155 <username>Gene.arboit</username>
56156 <id>278325</id>
56157 </contributor>
56158 <comment>fr:</comment>
56159 <text xml:space="preserve">{{CIA}}
56160 '''[[Antigua and Barbuda]]'s [[economics|economy]]''' is service-based, with [[tourism]] and government services representing the key sources of employment and income. Tourism accounts directly or indirectly for more than half of [[gross domestic product|GDP]] and is also the principal earner of foreign exchange in Antigua and Barbuda. However, a series of violent [[hurricane]]s since 1995 resulted in serious damage to tourist [[infrastructure]] and periods of sharp reductions in visitor numbers. In 1999 the budding offshore financial sector was seriously hurt by financial sanctions imposed by the [[United States]] and [[United Kingdom]] as a result of the loosening of its money-laundering controls. The government has made efforts to comply with international demands in order to get the sanctions lifted. The dual island nation's agricultural production is mainly directed to the domestic market; the sector is constrained by the limited water supply and labor shortages that reflect the pull of higher wages in tourism and construction. Manufacturing comprises enclave-type assembly for export with major products being bedding, handicrafts, and electronic components. Prospects for economic growth in the medium term will continue to depend on income growth in the industrialized world, especially in the US, which accounts for about one-third of all tourist arrivals. Estimated overall economic growth for 2000 was 2.5%. Inflation has trended down going from above 2 percent in the 1995-99 period and estimated at 0 percent in 2000.
56161
56162 To lessen its vulnerability to natural disasters, Antigua has been diversifying its economy. Transportation, communications and financial services are becoming important.
56163
56164 Antigua is a member of the [[Eastern Caribbean Currency Union]] (ECCU). The [[Eastern Caribbean Central Bank]] (ECCB) issues a common currency (the [[East Caribbean Dollar]]) for all members of the ECCU. The ECCB also manages monetary policy, and regulates and supervises commercial banking activities in its member countries.
56165
56166 Antigua and Barbuda is a beneficiary of the U.S. [[Caribbean Basin Initiative]]. Its 1998 exports to the U.S. were valued at aboutUS $3 million and its U.S. imports totaled about US $84 million. It also belongs to the predominantly English-speaking [[Caribbean_Community|Caribbean Community (CARICOM]]).
56167
56168 '''GDP:'''
56169 purchasing power parity - $524 million (1999 est.)
56170
56171 '''GDP - real growth rate:'''
56172 2.8% (1999 est.)
56173
56174 '''GDP - per capita:'''
56175 purchasing power parity - $8,200 (1999 est.)
56176
56177 '''GDP - composition by sector:'''
56178 &lt;br&gt;''agriculture:''
56179 4%
56180 &lt;br&gt;''industry:''
56181 12.5%
56182 &lt;br&gt;''services:''
56183 83.5% (1996 est.)
56184
56185 '''Population below poverty line:'''
56186 NA%
56187
56188 '''Household income or consumption by percentage share:'''
56189 &lt;br&gt;''lowest 10%:''
56190 NA%
56191 &lt;br&gt;''highest 10%:''
56192 NA%
56193
56194 '''Inflation rate (consumer prices):'''
56195 1.6% (1999 est.)
56196
56197 '''Labor force:'''
56198 30,000
56199
56200 '''Labor force - by occupation:'''
56201 commerce and services 82%, agriculture 11%, industry 7% (1983)
56202
56203 '''Unemployment rate:'''
56204 7% (1999 est.)
56205
56206 '''Budget:'''
56207 &lt;br&gt;''revenues:''
56208 $122.6 million
56209 &lt;br&gt;''expenditures:''
56210 $141.2 million, including capital expenditures of $17.3 million (1997 est.)
56211
56212 '''Industries:'''
56213 tourism, construction, light manufacturing (clothing, [[alcoholic beverage|alcohol]], household appliances)
56214
56215 '''Industrial production growth rate:'''
56216 6% (1997 est.)
56217
56218 '''Electricity - production:'''
56219 90 GWh (1998)
56220
56221 '''Electricity - production by source:'''
56222 &lt;br&gt;''fossil fuel:''
56223 100%
56224 &lt;br&gt;''hydro:''
56225 0%
56226 &lt;br&gt;''nuclear:''
56227 0%
56228 &lt;br&gt;''other:''
56229 0% (1998)
56230
56231 '''Electricity - consumption:'''
56232 84 GWh (1998)
56233
56234 '''Electricity - exports:'''
56235 0 kWh (1998)
56236
56237 '''Electricity - imports:'''
56238 0 kWh (1998)
56239
56240 '''Agriculture - products:'''
56241 [[cotton]], [[fruit]]s, [[vegetable]]s, [[banana]]s, [[coconut]]s, [[cucumber]]s, [[mango]]es, [[sugarcane]]; livestock
56242
56243 '''Exports:'''
56244 $38 million (1998)
56245
56246 '''Exports - commodities:'''
56247 [[petroleum]] products 48%, manufactures 23%, food and live [[animal]]s 4%, machinery and transport equipment 17%
56248
56249 '''Exports - partners:'''
56250 OECS 26%, [[Barbados]] 15%, [[Guyana]] 4%, [[Trinidad and Tobago]] 2%, [[United States|US]] 0.3%
56251
56252 '''Imports:'''
56253 $330 million (1998)
56254
56255 '''Imports - commodities:'''
56256 food and live [[animal]]s, machinery and transport equipment, manufactures, chemicals, [[Petroleum]]
56257
56258 '''Imports - partners:'''
56259 [[United States|US]] 27%, [[United Kingdom|UK]] 16%, [[Canada]] 4%, OECS 3%
56260
56261 '''Debt - external:'''
56262 $357 million (1998)
56263
56264 '''Economic aid - recipient:'''
56265 $2.3 million (1995)
56266
56267 '''Currency:'''
56268 1 East Caribbean dollar (EC$) = 100 cents
56269
56270 '''Exchange rates:'''
56271 East Caribbean dollars (EC$) per US$1 - 2.7000 (fixed rate since 1976)
56272
56273 '''Fiscal year:'''
56274 [[1 April]] - [[31 March]]
56275
56276 == References ==
56277 * {{CIAfb}}{{-}}
56278 * {{StateDept}}
56279
56280 {{WTO}}
56281
56282
56283 [[Category:Economy of Antigua and Barbuda|*]]
56284 [[Category:Economies by country|Antigua and Barbuda]]
56285 [[Category:WTO members|Antigua and Barbuda]]
56286
56287 [[fr:Économie d'Antigua-et-Barbuda]]
56288 [[he:כלכל×Ē אנטיגואה וברבודה]]
56289 [[pt:Economia da Antígua e Barbuda]]</text>
56290 </revision>
56291 </page>
56292 <page>
56293 <title>Antigua and Barbuda/Communications</title>
56294 <id>1072</id>
56295 <revision>
56296 <id>15899577</id>
56297 <timestamp>2002-10-09T13:55:20Z</timestamp>
56298 <contributor>
56299 <username>Magnus Manske</username>
56300 <id>4</id>
56301 </contributor>
56302 <minor />
56303 <comment>#REDIRECT [[Communications in Antigua and Barbuda]]</comment>
56304 <text xml:space="preserve">#REDIRECT [[Communications in Antigua and Barbuda]]</text>
56305 </revision>
56306 </page>
56307 <page>
56308 <title>Antigua and Barbuda/Transportation</title>
56309 <id>1073</id>
56310 <revision>
56311 <id>36641445</id>
56312 <timestamp>2006-01-25T13:58:34Z</timestamp>
56313 <contributor>
56314 <username>RussBot</username>
56315 <id>279219</id>
56316 </contributor>
56317 <minor />
56318 <comment>Robot: Fixing [[Special:DoubleRedirects|double-redirect]] -&quot;Transport in Antigua and Barbuda&quot; +&quot;Transportation in Antigua and Barbuda&quot;</comment>
56319 <text xml:space="preserve">#REDIRECT [[Transportation in Antigua and Barbuda]]</text>
56320 </revision>
56321 </page>
56322 <page>
56323 <title>Antigua and Barbuda/Military</title>
56324 <id>1074</id>
56325 <revision>
56326 <id>15899579</id>
56327 <timestamp>2004-12-27T12:03:59Z</timestamp>
56328 <contributor>
56329 <username>Jiang</username>
56330 <id>10049</id>
56331 </contributor>
56332 <minor />
56333 <text xml:space="preserve">#REDIRECT [[Royal Antigua and Barbuda Defence Force]]</text>
56334 </revision>
56335 </page>
56336 <page>
56337 <title>Antigua and Barbuda/Transnational issues</title>
56338 <id>1075</id>
56339 <revision>
56340 <id>15899580</id>
56341 <timestamp>2002-10-09T13:56:00Z</timestamp>
56342 <contributor>
56343 <username>Magnus Manske</username>
56344 <id>4</id>
56345 </contributor>
56346 <minor />
56347 <comment>#REDIRECT [[Foreign relations of Antigua and Barbuda]]</comment>
56348 <text xml:space="preserve">#REDIRECT [[Foreign relations of Antigua and Barbuda]]</text>
56349 </revision>
56350 </page>
56351 <page>
56352 <title>Antigua and Barbuda/History</title>
56353 <id>1076</id>
56354 <revision>
56355 <id>15899581</id>
56356 <timestamp>2002-02-25T15:51:15Z</timestamp>
56357 <contributor>
56358 <username>LA2</username>
56359 <id>445</id>
56360 </contributor>
56361 <comment>*</comment>
56362 <text xml:space="preserve">#REDIRECT [[History of Antigua and Barbuda]]</text>
56363 </revision>
56364 </page>
56365 <page>
56366 <title>Foreign relations of Antigua and Barbuda</title>
56367 <id>1077</id>
56368 <revision>
56369 <id>35300309</id>
56370 <timestamp>2006-01-15T19:26:40Z</timestamp>
56371 <contributor>
56372 <username>Electionworld</username>
56373 <id>201260</id>
56374 </contributor>
56375 <comment>+template</comment>
56376 <text xml:space="preserve">{{Politics of Antigua and Barbuda}}
56377 [[Antigua and Barbuda]] maintains diplomatic relations with the [[United States]], [[Canada]] the [[United Kingdom]], and the [[People's Republic of China]], as well as with many Latin American countries and neighboring Eastern Caribbean states. It is a member of the [[United Nations]], the [[Commonwealth of Nations]], the [[Organization of American States]], the [[Organisation of Eastern Caribbean States]], and the Eastern Caribbean's [[Regional Security System]] (RSS).
56378
56379 As a member of [[CARICOM]], Antigua and Barbuda supported efforts by the United States to implement UN Security Council Resolution 940, designed to facilitate the departure of Haiti's de facto authorities from power. The country agreed to contribute personnel to the multinational force which restored the democratically elected government of Haiti in October 1994.
56380
56381 In May 1997, Prime Minister Bird joined 14 other Caribbean leaders and President Clinton for the first-ever U.S.-regional summit in Bridgetown, Barbados. The summit strengthened the basis for regional cooperation on justice and counter-narcotics issues, finance and development, and trade.
56382
56383 '''Disputes - international:'''
56384 none
56385
56386 '''Illicit drugs:'''
56387 considered a minor transshipment point for narcotics bound for the US and Europe; more significant as a drug-money-laundering center
56388
56389 ==Reference==
56390 ''Much of the material in this article comes from the [[CIA World Factbook]] 2000 and the 2003 U.S. Department of State website.''
56391 [[Category:Antigua and Barbuda]]
56392 [[Category:Foreign relations by country|Antigua and Barbuda]]</text>
56393 </revision>
56394 </page>
56395 <page>
56396 <title>Anti-Semitism</title>
56397 <id>1078</id>
56398 <restrictions>move=:edit=</restrictions>
56399 <revision>
56400 <id>41984309</id>
56401 <timestamp>2006-03-03T01:15:08Z</timestamp>
56402 <contributor>
56403 <username>Goodoldpolonius2</username>
56404 <id>131285</id>
56405 </contributor>
56406 <minor />
56407 <comment>Reverted edits by [[Special:Contributions/Huchimama|Huchimama]] ([[User talk:Huchimama|talk]]) to last version by 195.38.113.141</comment>
56408 <text xml:space="preserve">&lt;!-- NOTE. Please first read the section [[#Etymology and usage]] below if you intend to insert corrections --&gt;{{dablink|This article describes the development and history of traditional anti-Semitism. A separate article exists on the more recent concept of the [[New anti-Semitism]].}}
56409 [[Image:Der ewige jude.jpg|thumb|''[[Der ewige Jude|The Eternal Jew]]'': 1937 German poster. In his hands are &quot;Zuckerbrot und Peitsche&quot;, or &quot;cookies and knout&quot;, an allusion to a saying similar to that of &quot;carrot and stick&quot;.]]
56410 '''Anti-Semitism''' (alternatively spelled '''antisemitism''') is hostility toward or [[prejudice]] against [[Jew]]s as a religious, ethnic, or racial group, which can range from individual [[hatred]] to institutionalized, violent [[persecution]]. The highly explicit [[Nuremberg laws|ideology]] of [[Adolf Hitler]]'s [[Nazism]] was the most extreme example of this phenomenon, leading to a [[genocide]] of the European Jewry. Anti-Semitism has historically taken different forms:
56411 *[[Religion|Religious]] anti-Semitism, or [[anti-Judaism]]. Before the 19th century, most anti-Semitism was primarily religious in nature, based on [[Christian]] or [[Islam]]ic interactions with and interpretations of [[Judaism]]. Since Judaism was generally the largest [[minority]] religion in Christian [[Europe]] and much of the Islamic world, Jews were often the primary targets of religiously-motivated violence and persecution from Christian, and to a lesser degree, Islamic rulers. Unlike anti-Semitism in general, this form of prejudice is directed at the religion itself, and so generally does not affect those of Jewish [[kinship and descent|ancestry]] who have [[religious conversion|converted]] to another religion, although the case of [[Converso]]s in [[Spain]] was a notable exception. Laws banning Jewish religious practices may be rooted in religious anti-Semitism, as were the [[expulsion]]s of the Jews that happened throughout the [[Middle Ages]].
56412 *[[Racism|Racial]] anti-Semitism. With its origins in the [[cultural anthropology|anthropological]] ideas of [[race]] that started during the [[Age of Enlightenment|Enlightenment]], racial anti-Semitism became the dominant form of anti-Semitism from the late 19th century through today. Racial anti-Semitism replaced the hatred of Judaism as a religion with the idea that the Jews themselves were a racially distinct group, regardless of their religious practice, and that they were inferior or worthy of animosity. With the rise of racial anti-Semitism, [[conspiracy theories]] about Jewish plots in which Jews were somehow acting in concert to dominate the world became a popular form of anti-Semitic expression.
56413
56414 Some analysts and Jewish groups believe that there is a distinctly new form of late 20th century anti-Semitism, often called [[new anti-Semitism]], which borrows language and concepts from [[anti-Zionism]], but which attacks Jews as a group, rather than [[Zionism]] as a movement. A second group of observers [[Anti-Zionism#Anti-Zionism dictionary definitions|controversially]] identify anti-Zionism itself with anti-Semitism, arguing that anti-Zionism, &quot;advocates denial of the right to self-determination of the Jewish people&quot; (Matas 2005, p. 31).
56415 {{Jew}}
56416 == Etymology and usage ==
56417 [[Image:Bookcover-1880-Marr-German uber Juden.jpg|left|thumb|120px|Cover page of Marr's ''The Way to Victory of Germanicism over Judaism'', 1880 edition]]
56418 The word ''antisemitic'' (''{{lang|de|antisemitisch}}'' in German) was probably first used in 1860 by the Jewish [[scholar]] [[Moritz Steinschneider]] in the [[phrase]] &quot;antisemitic prejudices&quot; ({{lang-de|&quot;antisemitische Vorurteile&quot;}}). Steinschneider used this phrase to characterize [[Ernest Renan]]'s ideas about how &quot;[[Semitic]] races&quot; were inferior to &quot;[[Aryan]] races.&quot; These pseudo-scientific theories had become quite widespread in Europe in the second half of the 19th century, especially as [[Prussia]]n nationalistic historian [[Heinrich von Treitschke]] did much to promote this form of racism. In Treitschke's writings ''Semitic'' was practically [[synonym|synonymous]] with ''Jewish''.
56419 German political agitator [[Wilhelm Marr]] coined the related [[German language|German]] word ''Antisemitismus'' in his book ''&quot;The Way to Victory of Germanicism over Judaism&quot;'' in 1879. Marr used the phrase to mean ''Jew-hatred'' or ''Judenhass,'' and he used the new word ''antisemitism'' to make hatred of the Jews seem rational and sanctioned by scientific knowledge. Marr's book became very popular, and in the same year he founded the ''&quot;League of Anti-Semites&quot;'' (&quot;Antisemiten-Liga&quot;), the first [[Germany|German]] organization committed specifically to combatting the alleged threat to Germany posed by the Jews, and advocating their [[population transfer|forced removal]] from the country.
56420
56421 So far as can be ascertained, the word was first widely printed in 1881, when Marr published ''&quot;Zwanglose Antisemitische Hefte,&quot;'' and [[Wilhelm Scherer]] used the term &quot;Antisemiten&quot; in the ''&quot;Neue Freie Presse&quot;'' of January. The related word ''[[semitism]]'' was coined around 1885. See also the coinage of the term &quot;[[Definitions of Palestine and Palestinian#Referring to Jews in a national rather than religious sense|Palestinian]]&quot; by Germans to refer to the nation or people known as [[Jew]]s, as distinct from the religion of [[Judaism]].
56422
56423 Despite the use of the prefix &quot;anti,&quot; the terms ''Semitic'' and ''Anti-Semitic'' are not [[antonym]]s. To avoid the confusion of the [[misnomer]], many scholars on the subject (such as [[Emil Fackenheim]] of the [[Hebrew University]]) now favor the unhyphenated term ''antisemitism''. [[Yehuda Bauer]] articulated this view in his writings and lectures: (the term) &quot;Antisemitism, especially in its [[hyphen]]ated spelling, is inane nonsense, because there is no [[Semitism]] that you can be [[anti]] to.&quot; [http://humwww.ucsc.edu/jewishstudies/docs/YBauerLecture.pdf], also in his ''A History of the Holocaust'', p.52)
56424
56425 The term ''anti-Semitism'' has historically referred to prejudice towards [[Jew]]s alone, and this was the only use of this word for more than a century. It does not traditionally refer to prejudice toward other people who speak [[Semitic language]]s (e.g. [[Arab]]s or [[Syriacs]]). [[Bernard Lewis]], Professor of Near Eastern Studies Emeritus at Princeton University, says that &quot;Anti-Semitism has never anywhere been concerned with anyone but Jews.&quot;[http://middleeastinfo.org/library/lewis_antisemitism.html]
56426
56427 In recent decades some groups have argued that the term should be extended to include prejudice against Arabs, [[Anti-Arabism]], in the context of accusations of Arab anti-Semitism; further, some, including the [[Islamic Association of Palestine]], have argued that this implies that Arabs can not, ''by definition'', be anti-Semitic, despite the acknowledged high level of [[Arab anti-Semitism]]. The argument for such extension comes out of the claim that since the [[Semitic]] [[language family]] includes Arabic, Hebrew and Aramaic languages, and the historical term &quot;Semite&quot; refers to all those who consider themselves descendants of the Biblical [[Shem]], anti-Semitism should be likewise inclusive. This usage is not generally accepted.
56428
56429 === Definitions of the term ===
56430 [[Image:Antisemiticroths.jpg|thumb|left|Anti-semitic caricature (France, 1898)]]
56431
56432 Though the general definition of anti-Semitism is hostility or prejudice towards [[Jew]]s, a number of authorities have developed more formal definitions. [[The Holocaust|Holocaust]] scholar and [[City University of New York]] professor Helen Fein's definition has been particularly influential. She defines anti-Semitism as &quot;a persisting latent structure of hostile beliefs towards Jews as a collective manifested in individuals as attitudes, and in culture as myth, ideology, folklore and imagery, and in actions – social or legal discrimination, political mobilisation against the Jews, and collective or state violence – which results in and/or is designed to distance, displace, or destroy Jews as Jews.&quot;
56433
56434 Professor Dietz Bering of the [[University of Cologne]] further expanded on Professor Fein's definition by describing the structure of anti-Semitic beliefs. To anti-Semites: &quot;Jews are not only partially but totally bad by nature, that is, their bad traits are incorrigible. Because of this bad nature: (1) Jews have to be seen not as individuals but as a collective. (2) Jews remain essentially alien in the surrounding societies. (3) Jews bring disaster on their 'host societies' or on the whole world, they are doing it secretly, therefore the anti-Semites feel obliged to unmask the conspiratorial, bad Jewish character.&quot;
56435
56436 There have been a number of efforts by international and governmental bodies to formally define anti-Semitism. The United States Department of State defines anti-Semitism in its 2005 Report on Global Anti-Semitism as &quot;hatred toward Jews—individually and as a group—that can be attributed to the Jewish religion and/or ethnicity.&quot;
56437
56438 In 2005, the [[European Monitoring Centre on Racism and Xenophobia]] (EUMC), a body of the [[European Union]], developed a more detailed working definition: &quot;Antisemitism is a certain perception of Jews, which may be expressed as hatred toward Jews. Rhetorical and physical manifestations of antisemitism are directed toward Jewish or non-Jewish individuals and/or their property, toward Jewish community institutions and religious facilities. In addition, such manifestations could also target the state of Israel, conceived as a Jewish collectivity. Antisemitism frequently charges Jews with conspiring to harm humanity, and it is often used to blame Jews for 'why things go wrong'.&quot;
56439
56440 The EUMC then listed &quot;contemporary examples of anti-Semitism in public life, the media, schools, the workplace, and in the religious sphere.&quot; These included: Making mendacious, dehumanizing, demonizing, or stereotypical allegations about Jews; accusing Jews as a people of being responsible for real or imagined wrongdoing committed by a single Jewish person or group; denying the Holocaust; and accusing Jewish citizens of being more loyal to Israel, or to the alleged priorities of Jews worldwide, than to the interests of their own nations. The EUMC also discussed ways in which attacking Israel could be anti-Semitic, depending on the context (see [[#Anti-Semitism and anti-Zionism|anti-Zionism]] below). [http://eumc.eu.int/eumc/material/pub/AS/AS-WorkingDefinition-draft.pdf]
56441
56442 ==Earliest Antisemitism==
56443 The earliest occurrence of antisemitism has been the subject of debate among scholars. Professor Peter Schafer of the Freie University of Berlin has argued that antisemitism was first spread by &quot;the Greek retelling of ancient Egyptian prejudices&quot;. In view of the anti-Jewish writings of the Egyptian priest Manetho, Schafer suggests that anti-Semitism may have emerged &quot;in Egypt alone&quot;. The hostility commonly faced by Jews in the Diaspora has been extensively described by John M. G. Barclay of the University of Durham. The ancient Jewish philosopher [[Philo of Alexandria]] described an attack on Jews in Alexandria in 38 CE in ''Flaccus'', in which thousands of Jews died. In the analysis of Pieter W. Van Der Horst, the cause of the violence in Alexandria was that Jews had been portrayed as misanthropes. Gideon Bohak has argued that early animosity against Jews was not anti-Judaism unless it arose from attitudes held against Jews alone. Using this stricter definition, Bohak says that many Greeks had animosity toward any group they regarded as barbarians. The 150 BCE suppression of Jewish religious practice by use of deadly force against civilians, as recounted in [[1 Maccabees]], then qualifies as anti-Judaism in a broader sense of the term than is used by Bohak. There are other examples of [[History of anti-Semitism#Ancient animosity towards Jews|ancient animosity towards Jews]] that are not considered by all to fall within the definition of anti-semitism.
56444
56445 ==Religious Antisemitism==
56446 {{main|Christianity and anti-Semitism}}
56447
56448 ===Anti-Judaism in the New Testament===
56449 The New Testament is a collection of 'books' written by various authors. Most of this collection was written by the end of the first century. The majority of the New Testament was written by Jews who became followers of Jesus, and all but two books (Luke and Acts) are traditionally attributed to such Jewish followers. Nevertheless, there are a number of passages in the New Testament that some see as anti-Semitic, or have been used for anti-Semitic purposes, most notably:
56450
56451 :Jesus speaking to a group of [[Pharisees]]: &quot;''I know that you are descendants of Abraham; yet you seek to kill me, because my word finds no place in you. I speak of what I have seen with my Father, and you do what you have heard from your father. They answered him, &quot;Abraham is our father.&quot; Jesus said to them, &quot;If you were Abraham's children, you would do what Abraham did. ... You are of your father the devil, and your will is to do your father's desires. He was a murderer from the beginning, and has nothing to do with the truth, because there is no truth in him. When he lies, he speaks according to his own nature, for he is a liar and the father of lies. But, because I tell the truth, you do not believe me. Which of you convicts me of sin? If I tell the truth, why do you not believe me? He who is of God hears the words of God; the reason why you do not hear them is you are not of God.''&quot; ([[Book of John|John]] 8:37-39, 44-47, [[Revised Standard Version|RSV]])
56452
56453 :[[Saint Stephen|Stephen]] speaking before a synagogue council just before his execution: &quot;''You stiff-necked people, uncircumcised in heart and ears, you always resist the Holy Spirit. As your fathers did, so do you. Which of the prophets did not your fathers persecute? And they killed those who announced beforehand the coming of the Righteous One, whom you have now betrayed and murdered, you who received the law as delivered by angels and did not keep it.''&quot; ([[Book of Acts|Acts]] 7:51-53, RSV)
56454
56455 :&quot;''Behold, I will make those of the synagogue of Satan who say that they are Jews and are not, but lie -- behold, I will make them come and bow down before your feet, and learn that I have loved you.''&quot; ([[Revelation]] 3:9, RSV).
56456
56457 Some biblical scholars point out that Jesus and Stephen are presented as Jews speaking to other Jews, and that their use of broad accusation against Israel is borrowed from Moses and the later Jewish prophets (e.g. Deut 9:13-14; 31:27-29; 32:5, 20-21; 2 Kings 17:13-14; Is 1:4; Hos 1:9; 10:9). Jesus once calls his own disciple Peter 'Satan' (Mk 8:33). Other scholars hold that verses like these reflect the Jewish-Christian tensions that were emerging in the late first or early second century, and do not originate with Jesus. Today, nearly all Christian denominations de-emphasize verses such as these, and reject their use and misuse by anti-Semites.
56458
56459 Drawing from the Jewish prophet Jeremiah (Jer 31:31-34), the [[New Testament]] taught that with the death of Jesus a [[new covenant]] was established which rendered obsolete and in many respects superseded the first covenant established by Moses (Heb 8:7-13; Lk 22:20). Observance of the earlier covenant traditionally characterizes [[Judaism]]. This New Testament teaching, and later variations to it, are part of what is called [[supersessionism]]. However, the early Jewish followers of Jesus continued to practice circumcision and observe dietary laws, which is why the failure to observe these laws by the first Gentile Christians became a matter of controversy and dispute some years after Jesus' death (Acts 11:3; 15:1ff; 16:3).
56460
56461 The New Testament holds that Jesus' (Jewish) disciple Judas Iscariot (Mk 14:43-46), the Roman Governor Pontius Pilate along with Roman forces (Jn 19:11; Acts 4:27) and Jewish leaders and people of Jerusalem were (to varying degrees) responsible for the death of Jesus (Acts 13:27); Diaspora Jews are not blamed for events which were clearly outside their control.
56462
56463 After Jesus' death, the New Testament portrays the Jewish religious authorities in Jerusalem as hostile to Jesus' followers, and as occasionally using force against them. Stephen is executed by stoning (Acts 7:58). Before his conversion, Saul puts followers of Jesus in prison (Acts 8:3; Gal 1:13-14; 1 Tim 1:13). After his conversion, Saul is whipped at various times by Jewish authorities (2 Cor 11:24), and is accused by Jewish authorities before Roman courts (e.g., Acts 25:6-7). However, opposition from Gentiles is also cited repeatedly (2 Cor 11:26; Acts 16:19ff; 19:23ff). More generally, there are widespread references in the New Testament to suffering experienced by Jesus' followers at the hands of others (Rom 8:35;1 Cor 4:11ff; Gal 3:4; 2 Thess 1:5; Heb 10:32; 1 Pet 4:16; Rev 20:4).
56464
56465 ===Early Christianity===
56466 A number of early and influential Church works -- such as the dialogues of [[Justin Martyr]], the homilies of [[John Chrysostom]], and the testimonies of church father [[Cyprian]] -- are strongly anti-Jewish.
56467
56468 During a discussion on the celebration of [[Easter]] during the [[First Council of Nicaea]] in AD 325, Roman emperor [[Constantine I (emperor)|Constantine]] [http://www.newadvent.org/fathers/25023.htm said] &lt;blockquote&gt; ...it appeared an unworthy thing that in the celebration of this most holy feast we should follow the practice of the Jews, who have impiously defiled their hands with enormous sin, and are, therefore, deservedly afflicted with blindness of soul. (...) Let us then have nothing in common with the detestable Jewish crowd; for we have received from our Saviour a different way.&lt;/blockquote&gt;
56469
56470 Prejudice against Jews in the [[Roman Empire]] was formalized in 438, when the ''Code of [[Theodosius II]]'' established Roman Catholic Christianity as the only legal religion in the Roman Empire. The [[Justinian Code]] a century later stripped Jews of many of their rights, and Church councils throughout the sixth and seventh century, including the Council of Orleans, further enforced anti-Jewish provisions. These restrictions began as early as 305, when, in Elvira, (now [[Granada]]), a Spanish town in [[Andalusia]], the first known laws of any church council against Jews appeared. Christian women were forbidden to marry Jews unless the Jew first converted to Catholicism. Jews were forbidden to extend hospitality to Catholics. Jews could not keep Catholic Christian [[concubine]]s and were forbidden to bless the fields of Catholics. In 589, in Catholic Spain, the Third Council of Toledo ordered that children born of marriage between Jews and Catholic be baptized by force. By the Twelfth Council of Toledo (681) a policy of forced conversion of all Jews was initiated (Liber Judicum, II.2 as given in Roth). Thousands fled, and thousands of others converted to Roman Catholicism.
56471
56472 === Anti-Semitism in the Middle Ages ===
56473 [[Image:Talmudtrial.jpg|thumb|250px|1239. In the course of a [[disputation]], [[Pope Gregory IX]] ordered the [[Talmud]] burned (note a non-[[heretic]]al book floating above the fire). A 15th century painting by [[Pedro Berruguete]].]]
56474
56475 In the [[Middle Ages]] a main justification of prejudice against Jews in Europe was religious. Though not part of [[Catholic]] [[dogma]], many Christians, including members of the clergy, have held the Jewish people collectively responsible for killing Jesus (see [[Deicide]]), a practice originated by [[Melito of Sardis]]. As stated in the Boston College Guide to Passion Plays, &quot;Over the course of time, Christians began to accept... that the Jewish people as a whole were responsible for killing Jesus. According to this interpretation, both the Jews present at Jesus’ death and the Jewish people collectively and for all time, have committed the sin of deicide, or God-killing. For 1900 years of Christian-Jewish history, the charge of deicide has led to hatred, violence against and murder of Jews in Europe and America.&quot;[http://moses.creighton.edu/JRS/pdf/ViewersGuide.pdf] This accusation was repudiated in 1964, when the Catholic Church under [[Pope Paul VI]] issued the document [[Nostra Aetate]] as a part of [[Vatican II]].
56476
56477 As the [[Black Death]] [[epidemics]] devastated Europe in the mid-14th century, rumors spread that Jews caused it by deliberately [[well poisoning|poisoning wells]]. Hundreds of Jewish communities were destroyed by violence.
56478 &quot;Never mind that Jews were not immune from the ravages of the [[bubonic plague|plague]]; they were tortured until they &quot;confessed&quot; to crimes that they could not possibly have committed. In one such case, a man named Agimet was ... coerced to say that Rabbi Peyret of Chambery (near [[Geneva]]) had ordered him to poison the wells in [[Venice]], [[Toulouse]], and elsewhere. In the aftermath of Agimet’s &quot;confession,&quot; the Jews of [[Strasbourg]] were burned alive on February 14, 1349. (Source: ''Jews: The Essence and Character of a People'' by Arthur Hertzberg and Aron Hirt-Manheimer, p.84)
56479
56480 Among socio-economic factors were restrictions by the authorities, local rulers and frequently church officials who closed many professions to the Jews, pushing them into marginal occupations considered socially inferior, such as local tax and rent collecting or moneylending, a necessary evil due to the increasing population and urbanization during the High Middle Ages. Catholic doctrine of the time held that moneylending for interest was a [[sin]], and as such Jews tended to dominate this business. This provided support for claims that Jews are insolent, greedy, engaged in [[usury]], and in itself contributed to a negative image. Natural tensions between creditors (typically Jews) and debtors (typically Christians) were added to social, political, religious and economic strains. Peasants who were forced to pay their taxes to Jews could personify them as the people taking their earnings while remaining loyal to the lords on whose behalf the Jews worked.
56481
56482 ==== The demonizing of the Jews ====
56483 From around the 12th century through the [[19th century|19th]] there were Christians who believed that some (or all) Jews possessed magical powers; some believed that they had gained these magical powers from making a deal with the [[devil]]. See also [[Judensau]], [[Judeophobia]].
56484
56485 ==== Blood libels ====
56486 ''Main articles: [[blood libel]], [[list of blood libels against Jews]]''
56487
56488 On many occasions, Jews were accused of a [[blood libel]], the supposed drinking of blood of Christian children in mockery of the Christian [[Eucharist]]. According to the authors of these blood libels, the 'procedure' for the alleged sacrifice was something like this: a child who had not yet reached puberty was kidnapped and taken to a hidden place. The child would be tortured by Jews, and a crowd would gather at the place of execution (in some accounts the synagogue itself) and engage in a mock tribunal to try the child. The child would be presented to the tribunal naked and tied and eventually be condemned to death. In the end, the child would be crowned with thorns and tied or nailed to a wooden cross. The cross would be raised, and the blood dripping from the child's wounds would be caught in bowls or glasses. Finally, the child would be killed with a thrust through the heart from a spear, sword, or dagger. Its dead body would be removed from the cross and concealed or disposed of, but in some instances rituals of black magic would be performed on it. This method, with some variations, can be found in all the alleged Christian descriptions of ritual murder by Jews.
56489
56490 The story of [[William of Norwich]] (d. 1144) is the first known case of ritual murder being alleged by a Christian monk while the story of [[Little Saint Hugh of Lincoln]] (d. 1255) said that after the boy was dead, his body was removed from the cross and laid on a table. His belly was cut open and his entrails removed for some occult purpose, such as a [[haruspex|divination ritual]]. The story of [[Simon of Trent]] (d. 1475) emphasized how the boy was held over a large bowl so all his blood could be collected. Simon was regarded as a saint, and was canonized by [[Pope Sixtus V]] in 1588. The cult of Simon was disbanded in 1965 by [[Pope Paul VI]], and the shrine erected to him was dismantled. He was removed from the calendar, and his future veneration was forbidden, though a handful of extremists still promote the narrative as a fact. In the 20th century, the [[Menahem Mendel Beilis|Beilis Trial]] in Russia and the [[Kielce pogrom]] represented incidents of blood libel in Europe, while more recently blood libel stories have appeared a number of times in the state-sponsored media of a number of Arab nations, in Arab television shows, and on websites.
56491
56492 ==== Host desecration ====
56493 [[Image:Descreationofhost.gif|thumb|right|150px|A 15th century German woodcut showing an alleged host desecration. In the first panel the hosts are stolen, in the second the hosts bleed when pierced by a Jew, in the third the Jews are arrested, and in the fourth they are burned alive.]]
56494 Jews were falsely accused of torturing consecrated host wafers in a reenactment of the [[Crucifixion]]; this accusation was known as ''[[host desecration]]''.
56495
56496 === Disabilities and Restrictions ===
56497 [[Image:BritLibCottonNeroD1Fol183vPersecutedJews.jpg|thumb|left|The yellow badge Jews were forced to wear can be seen in this marginal illustration from an English manuscript.]]
56498
56499 Jews were subject to a wide range of legal restrictions throughout the Middle Ages, some of which lasted until the end of the 19th century. Jews were excluded from many trades, the list of excluded occupations varying in different communities, and being determined largely by the political influence of various non-Jewish competing interests. Frequently all occupations were barred against Jews, except money-lending and peddling—even these at times being prohibited. The number of Jews or Jewish families permitted to reside in different places was limited; they were concentrated in [[ghettos]], and were not allowed to own land; and they were subjected to discriminatory taxes on entering cities or districts other than their own, forced to swear special [[Oath More Judaico|Jewish Oaths]], and a variety of other measures, including restrictions on dress.
56500
56501 ====Clothing====
56502 ''Main article: [[yellow badge]], [[Judenhut]]''
56503
56504 The [[Fourth Lateran Council]] in 1215 was the first to proclaim the requirement for Jews to wear something that distinguished them as Jews. It could be a colored piece of cloth in the shape of a star or circle or square, a hat ([[Judenhut]]), or a robe. In many localities, members of the medieval society wore badges to distinguish their social status. Some badges (such as [[guild]] members) were prestigious, while others ostracized outcasts such as [[leper]]s, reformed [[heretic]]s and [[prostitute]]s. Jews sought to evade the [[Jewish badge|badges]] by paying what amounted to bribes in the form of temporary &quot;exemptions&quot; to kings, which were revoked and re-paid whenever the king needed to raise funds.
56505
56506 === The Crusades ===
56507 The '''[[Crusade]]s''' were a series of several military campaigns sanctioned by the [[Papacy]] that took place during the [[11th century|11th]] through [[13th century|13th centuries]]. They began as [[Catholic]] endeavors to capture [[Jerusalem]] from the [[Islam|Muslims]] but developed into territorial wars.
56508
56509 The mobs accompanying the first three Crusades attacked the Jewish communities in Germany, France, and England, and put many Jews to death. Entire communities, like those of Treves, Speyer, Worms, Mayence, and Cologne, were slain during the first Crusade by a mob army. About 12,000 Jews are said to have perished in the Rhenish cities alone between May and July, 1096. Before the Crusades the Jews had practically a monopoly of trade in Eastern products, but the closer connection between Europe and the East brought about by the Crusades raised up a class of merchant traders among the Christians, and from this time onward restrictions on the sale of goods by Jews became frequent. The religious zeal fomented by the Crusades at times burned as fiercely against the Jews as against the Muslims, though attempts were made by bishops during the [[First crusade]] and the papacy during the [[Second Crusade]] to stop Jews from being attacked. Both economically and socially the Crusades were disastrous for European Jews. They prepared the way for the anti-Jewish legislation of [[Pope Innocent III]], and formed the turning-point in the medieval history of the Jews.
56510
56511 [[Image:FirstCrusade.jpg|thumb|left|1250 French Bible illustration depicts Jews (identifiable
56512 by [[Judenhut]]) being massacred by Crusaders]]
56513
56514 === The expulsions from England, France, Germany, and Spain ===
56515 ''Only a few expulsions of the Jews are described in this section, for a more extended list see [[History of anti-Semitism]], and also the [[History of the Jews in England]], [[History of the Jews in Germany|Germany]], [[History of the Jews in Spain|Spain]], and [[History of the Jews in France|France]].''
56516
56517 The practice of expelling the Jews accompanied by confiscation of their property, followed by temporary readmissions for [[ransom]], was utilized to enrich the French crown during [[12th century|12th]]-[[14th century|14th]] centuries. The most notable such expulsions were: from [[Paris]] by [[Philip Augustus of France|Philip Augustus]] in 1182, from the entirety of France by [[Louis IX of France|Louis IX]] in 1254, by [[Charles IV of France|Charles IV]] in 1322, by [[Charles V of France|Charles V]] in 1359, by [[Charles VI of France|Charles VI]] in 1394.
56518
56519 To finance his war to conquer [[Wales]], [[Edward I of England]] taxed the Jewish moneylenders. When the Jews could no longer pay, they were accused of disloyalty. Already restricted to a limited number of occupations, the Jews saw Edward abolish their &quot;privilege&quot; to lend money, choke their movements and activities and were forced to wear a [[Yellow badge|yellow patch]]. The heads of Jewish households were then arrested, over 300 of them taken to the [[Tower of London]] and executed, while others killed in their homes. The complete banishment of all Jews from the country in 1290 led to thousands killed and drowned while fleeing and the absence of Jews from England for three and a half centuries, until 1655, when [[Oliver Cromwell]] reversed the policy.
56520
56521 In 1492, [[Ferdinand II of Aragon]] and [[Isabella of Castile]] issued ''General Edict on the Expulsion of the Jews'' from [[Spain]] (''see also [[Spanish Inquisition]]'') and many [[Sephardi]] Jews fled to the [[Ottoman Empire]], some to the [[Land of Israel]].
56522
56523 In 1744, [[Frederick II of Prussia]] limited [[Breslau]] to only ten so-called &quot;protected&quot; Jewish families and encouraged similar practice in other [[Prussia]]n cities. In 1750 he issued ''Revidiertes General Privilegium und Reglement vor die Judenschaft'': the &quot;protected&quot; Jews had an alternative to &quot;either abstain from marriage or leave Berlin&quot; (quoting [[Simon Dubnow]]). In the same year, Archduchess of [[Austria]] [[Maria Theresa of Austria|Maria Theresa]] ordered Jews out of [[Bohemia]] but soon reversed her position, on condition that Jews pay for readmission every ten years. This [[extortion]] was known as ''malke-geld'' (queen's money). In 1752 she introduced the law limiting each Jewish family to one son. In 1782, [[Joseph II, Holy Roman Emperor|Joseph II]] abolished most of persecution practices in his ''Toleranzpatent'', on the condition that [[Yiddish language|Yiddish]] and [[Hebrew language|Hebrew]] are eliminated from public records and judicial autonomy is annulled. [[Moses Mendelssohn]] wrote that &quot;Such a tolerance... is even more dangerous play in tolerance than open persecution&quot;.
56524
56525 === Anti-Judaism and the Reformation ===
56526 [[Image:1543 On the Jews and Their Lies by Martin Luther.jpg|thumb|180px|Luther's 1543 pamphlet ''On the Jews and Their Lies'']]
56527 {{main|Christianity and anti-Semitism}}
56528
56529 [[Martin Luther]], an [[Augustinian]] [[monasticism|monk]] and an [[ecclesiastical]] reformer whose teachings inspired the [[Protestant Reformation|Reformation]], wrote antagonistically about Jews in his book ''On the Jews and their Lies'', which describes the Jews in extremely harsh terms, excoriating them, and providing detailed recommendation for a [[pogrom]] against them and their permanent oppression and/or expulsion. According to [[Paul Johnson (journalist)|Paul Johnson]], it &quot;may be termed the first work of modern anti-Semitism, and a giant step forward on the road to the Holocaust.&quot; (''A History of the Jews'', 1987, p.242)
56530 In his final sermon shortly before his death, however, Luther preached &quot;We want to treat them with Christian love and to pray for them, so that they might become converted and would receive the Lord&quot; (Weimar edition, Vol. 51, p. 195). Still, Luther's harsh comments about the Jews are seen by many as a continuation of medieval Christian anti-Semitism.
56531 ''See also [[Martin Luther and Antisemitism]]''
56532
56533 ===Anti-Semitism in 19th and 20th century Catholicism===
56534 Throughout the 19th century and into the 20th, the Catholic Church still incorporated strong anti-Semitic elements, despite increasing attempts to separate anti-Judaism, the opposition to the Jewish religion on religious grounds, and racial anti-Semitism. [[Pope Pius VII]] (1800-1823) had the walls of the Jewish [[Ghetto]] in Rome rebuilt after the Jews were [[Napoleon and the Jews|released by Napoleon]], and Jews were restricted to the Ghetto through the end of the papacy of [[Pope Pius IX]] (1846-1878), the last Pope to rule Rome. Additionally, official organizations such as the Jesuits banned candidates &quot;who are descended from the Jewish race unless it is clear that their father, grandfather, and great-grandfather have belonged to the Catholic Church&quot; until 1946. Brown University historian [[David Kertzer]], working from the Vatican archive, has further argued in his book ''The Popes Against the Jews'' that in the 19th and 20th century the [[Roman Catholic Church]] adhered to a distinction between &quot;good anti-Semitism&quot; and &quot;bad anti-Semitism&quot;. The &quot;bad&quot; kind promoted hatred of Jews because of their descent. This was considered un-Christian because the Christian message was intended for all of humanity regardless of ethnicity; anyone could become a Christian. The &quot;good&quot; kind criticized alleged Jewish conspiracies to control newspapers, banks, and other institutions, to care only about accumulation of wealth, etc. Many Catholic bishops wrote articles criticizing Jews on such grounds, and, when accused of promoting hatred of Jews, would remind people that they condemned the &quot;bad&quot; kind of anti-Semitism. Kertzer's work is not, therefore, without critics; scholar of Jewish-Christian relations [[Rabbi David G. Dalin]], for example, criticized Kertzer in the [[Weekly Standard]] for using evidence selectively. The [[Second Vatican Council]], the [[Nostra Aetate]] document, and the efforts of [[Pope John Paul II]] have helped reconcile Jews and Catholicism in recent decades, however.
56535
56536 === Passion plays ===
56537 [[Passion play]]s, dramatic stagings representing the trial and death of [[Jesus]], have historically been used in remembrance of Jesus' death during [[Lent]]. These plays historically blamed the Jews for [[deicide|the death of Jesus]] in a [[polemic]]al fashion, depicting a crowd of Jewish people condemning Jesus to [[crucifixion]] and a Jewish leader assuming eternal collective guilt for the crowd for the murder of Jesus, which, ''[[The Boston Globe]]'' explains, &quot;for centuries prompted vicious attacks -- or [[pogrom]]s -- on Europe's Jewish communities&quot;.[http://www.boston.com/news/globe/living/articles/2004/04/10/in_poland_new_passion_plays_on_old_hatreds/] [[Time Magazine]] in its article ''[http://www.time.com/time/magazine/article/0,9171,1101030901-477956,00.html The Problem With Passion]'' explains that &quot;such passages (are) highly subject to interpretation&quot;. Although modern scholars interpret the &quot;blood on our children&quot; (Matthew 27: 25) as &quot;a specific group's oath of responsibility&quot; some audiences have historically interpreted it as &quot;an assumption of eternal, racial guilt&quot;. This last interpretation has often incited violence against Jews; according to the [[Anti-Defamation League]], &quot;Passion plays historically unleashed the torrents of hatred aimed at the Jews, who always were depicted as being in partnership with the devil and the reason for Jesus' death&quot;.[http://www.adl.org/ADL_Opinions/Interfaith/oped_2004012_pbp.htm] The ''[[Christian Science Monitor]]'', in its article ''[http://www.csmonitor.com/2003/0710/p11s01-lire.html?entryBottomStory Capturing the Passion]'' explains that &quot;[h]istorically, productions have reflected negative images of Jews and the long-time church teaching that the Jewish people were collectively responsible for Jesus' death. Violence against Jews as 'Christ-killers' often flared in their wake.&quot; ''[[Christianity Today]]'' in ''[http://www.christianitytoday.com/history/newsletter/2004/feb20.html Why some Jews fear (Mel Gibson's) The Passion (of the Christ)]'' observed that &quot;Outbreaks of Christian anti-Semitism related to the Passion narrative have been...numerous and destructive.&quot;
56538
56539 In 2003 and 2004 some compared [[Mel Gibson]]'s recent film ''The Passion of the Christ'' to these kinds of passion plays, but this characterization is hotly disputed; an analysis of that topic is in the article on [[The Passion of the Christ]]. Despite such fears, there have been no publicized anti-Semitic incidents directly attributable to the movie's influence.
56540
56541 ==Racial anti-Semitism ==
56542 Racial anti-Semitism replaced the hatred of Judaism with the hatred of Jews as a group. In the context of the [[Industrial Revolution]], following the [[Jewish Emancipation|emancipation of the Jews]], Jews rapidly urbanized and experienced a period of greater social mobility. With the decreasing role of religion in public life tempering religious anti-Semitism, a combination of growing nationalism, the rise of [[eugenics]], and resentment at the socio-economic success of the Jews led to the newer, and more virulent, racist anti-Semitism.
56543
56544 ===Nationalism and Anti-Semitism===
56545 Racial anti-Semitism was preceded, especially in Germany, by anti-Semitism arising from [[Romantic]] [[nationalism]]. As racial theories developed, especially from the mid nineteenth-century onwards, these nationalist ideas were subsumed within them. But their origins were quite distinct from racialism. On the one hand they derived from an exclusivist interpretation of the 'Volk' ideas of [[Herder]]. This led to anti-Semitic writing and journalism in the second quarter of the 19th century of which [[Richard Wagner]]'s [[Das Judentum in der Musik]] (Jewry in Music) is perhaps the most notorious example. On the other hand, radical socialists such as [[Karl Marx]] identified Jews as being both victims and enforced perpetrators of the [[Capitalist]] system - e.g. in his article 'On the Jewish Question'. From sources such as these, and encouraged by the broad acceptance of racial theories as the century continued, anti-Semitism entered the vocabularies and policies of both the right and the left in political thought.
56546
56547 ===The rise of racial anti-Semitism===
56548 Modern European anti-Semitism has its origin in 19th century [[pseudo-science|pseudo-scientific]] theories that the Jewish people are a sub-group of Semitic peoples; Semitic people were thought by many Europeans to be entirely different from the [[Aryan]], or [[Proto-Indo-Europeans|Indo-European]], populations, and that they can never be amalgamated with them. In this view, Jews are not opposed on account of their [[religion]], but on account of their supposed hereditary or genetic [[racial characteristics]]: greed, a special aptitude for money-making, aversion to hard work, clannishness and obtrusiveness, lack of social tact, low cunning, and especially lack of [[patriotism]].
56549
56550 While enlightened European intellectual society of that period viewed prejudice against people on account of their religion to be declassÊ and a sign of ignorance, because of this supposed 'scientific' connection to [[genetics]] they felt fully justified in prejudice based on nationality or 'race'. In order to differentiate between the two practices, the term anti-Semitism was developed to refer to this 'acceptable' bias against Jews as a nationality, as distinct from the 'undesirable' prejudice against Judaism as a religion. Concurrently with this usage, [[Definitions of Palestine#Referring to Jews in a national rather than religious sense|some authors in Germany]] began to use the term 'Palestinians' when referring to Jews as a people, rather than as a religious group.
56551
56552 As further proof of its pseudo-scientific nature, it is questionable whether [[Jew]]s in general looked significantly different from the populations conducting &quot;racial&quot; anti-Semitism. This was especially true in places like [[Germany]], [[France]] and [[Austria]] where the Jewish population tended to be more secular (or at least less Orthodox) than that of Eastern Europe, and did not wear clothing (such as a [[yarmulke]]) that would particularly distinguish their appearance from the non-Jewish population. Many anthropologists of the time such as [[Franz Boas]] tried to use complex physical measurements like the [[cephalic index]] and visual surveys of hair/eye color and skin tone of Jewish vs. non-Jewish European populations to prove that the notion of a separate &quot;Jewish race&quot; was a myth. The 19th and early 20th century view of race should be distinguished from the efforts of modern population genetics to trace the ancestry of various Jewish groups, see [[Y-chromosomal Aaron]].
56553
56554 The advent of racial anti-Semitism was also linked to the growing sense of [[nationalism]] in many countries. The nationalist context viewed Jews as a separate and often &quot;alien&quot; nation within the countries in which Jews resided, a prejudice exploited by the elites of many governments.
56555
56556 ===Elites and the use of Anti-semitism===
56557 [[Image:1889 French elections Poster for antisemitic candidate Adolf Willette.jpg|thumb|250px|1889 Paris, France elections poster for self-described &quot;candidat antisÊmite&quot; [[Adolphe Willette]]: &quot;The Jews are a different race, hostile to our own... Judaism, there is the enemy!&quot;]]
56558 Many analysts of modern anti-Semitism have pointed out that its essence is [[scapegoat]]ing: features of modernity felt by some group to be undesirable (e.g. materialism, the power of money, economic fluctuations, war, secularism, socialism, Communism, movements for racial equality, social welfare policies, etc.) are believed to be caused by the machinations of a conspiratorial people whose full loyalties are not to the national group. Traditionalists anguished at the supposedly decadent or defective nature of the modern world have sometimes been inclined to embrace such views. Indeed, it is a matter of historical record that many of the conservative members of the [[WASP]] establishment of the [[United States]] as well as other comparable Western elites (e.g. the [[British Foreign Office]]) have harbored such attitudes, and in the aftermath of the [[Russian Revolution of 1917|Russian Revolution]], some xenophobic anti-Semites have imagined world [[Communism]] to be a Jewish conspiracy (''Harvard Encyclopedia of American Ethnic Groups'' [1980], p. 590).
56559
56560 The modern form of anti-Semitism is identified in the [[1911 EncyclopÃĻdia Britannica|1911 edition]] of the [[EncyclopÃĻdia Britannica]] as a conspiracy theory serving the self-understanding of the European [[aristocracy]], whose social power waned with the rise of bourgeois society. The Jews of Europe, then recently emancipated, were relatively literate, entrepreneurial and unentangled in aristocratic patronage systems, and were therefore disproportionately represented in the ascendant [[bourgeois]] class. As the [[aristocracy]] (and its hangers-on) lost out to this new center of power in society, they found their scapegoat - exemplified in the work of [[Arthur de Gobineau]]. That the Jews were singled out to embody the 'problem' was, by this theory, no more than a symptom of the [[nobility]]'s own prejudices concerning the importance of breeding (on which its own [[legitimacy (political science)|legitimacy]] was founded).
56561
56562 ===Dreyfus Affair===
56563 [[Image:Degradation alfred dreyfus.jpg|thumb|200px|left|The treason conviction of [[Alfred Dreyfus]] demonstrated French anti-semitism.]]
56564 The [[Dreyfus affair]] was a political scandal which divided [[France]] for many years during the late 19th century. It centered on the 1894 treason conviction of [[Alfred Dreyfus]], a Jewish officer in the French army. Dreyfus was, in fact, innocent: the conviction rested on false documents, and when high-ranking officers realized this they attempted to cover up the mistakes. The writer [[Émile Zola]] exposed the affair to the general public in the literary newspaper ''L'Aurore'' (The Dawn) in a famous open letter to the [[President of France|PrÊsident de la RÊpublique]] [[FÊlix Faure]], titled ''J'accuse !'' (I Accuse!) on January 13, 1898.
56565
56566 The Dreyfus Affair split France between the ''Dreyfusards'' (those supporting Alfred Dreyfus) and the ''Antidreyfusards'' (those against him). The quarrel was especially violent since it involved many issues then highly [[controversial]] in a heated political climate.
56567
56568 Dreyfus was pardoned in 1899, readmitted into the army, and made a knight in the [[LÊgion d'Honneur|Legion of Honour]]. An Austrian Jewish journalist named [[Theodor Herzl]] was assigned to report on the trial and its aftermath. The injustice of the trial and the anti-Semitic passions it aroused in France and elsewhere turned him into a determined and leading [[Zionism|Zionist]]; ultimately turning the movement into an international one. Also see [[Alfred Dreyfus]] and [[Dreyfus affair]].
56569
56570 ===Pogroms===
56571 [[Image:Ekaterinoslav1905.jpg|thumb|300px|right|The victims, mostly Jewish children, of a 1905 [[pogrom]] in [[Dnipropetrovsk]].]]
56572 [[Pogrom]]s were a form of race riots, most commonly Russia and Eastern Europe, aimed specifically at Jews and often government sponsored. Pogroms became endemic during a large-scale wave of anti-Jewish riots that swept southern [[Russia]] in 1881, after Jews were wrongly blamed for the assassination of Tsar [[Alexander II of Russia|Alexander II]]. In the 1881 outbreak, thousands of Jewish homes were destroyed, many families reduced to extremes of poverty; women sexually assaulted, and large numbers of men, women, and children killed or injured in 166 Russian towns. The new czar, [[Alexander III of Russia|Alexander III]], blamed the Jews for the riots and issued a [[May Laws|series of harsh restrictions]] on Jews. Large numbers of pogroms continued until 1884, with at least tacit inactivity by the authorities. An even bloodier wave of pogroms broke out in 1903-1906, leaving an estimated 2,000 Jews dead, and many more wounded. A final large wave of 887 pogroms in Russia and Ukraine occurred during the [[Russian Revolution of 1917]], in which between 70,000 to 250,000 civilian Jews were killed by riots led by various sides.
56573
56574 During the early to mid-1900s, pogroms also occurred in Poland, Argentina, and throughout the Arab world. Extremely deadly pogroms also occurred during [[World War II]], including the Romanian [[Iaşi pogrom]] in which 14,000 Jews were killed, and the [[Jedwabne massacre]] in Poland which killed between 380 and 1,600 Jews. The last mass pogrom in Europe was the post-war [[Kielce pogrom]] of 1946.
56575
56576 ===Anti-Jewish Legislation===
56577 [[Image:Nurembergracechart.jpg|thumb|300px|The [[Nuremberg Laws]] of 1935 used a pseudo-scientific basis for racial discrimination against Jews. People with four German grandparents (white circles) were of &quot;German blood,&quot; while people were classified as Jews if they descended from three or more Jewish grandparents (black circles in top row right). One or more Jewish grandparents made someone &quot;mixed blood.&quot; Since the racial differences between Jews and Germans are small, the Nazis used the religious observance of a person's grandparents to determine their &quot;race.&quot; (1935 Chart from [[Nazi Germany]] used to explain the [[Nuremberg Laws]])]]
56578
56579 Anti-semitism was officially adopted by the German Conservative Party at the [[Tivoli Congress]] in 1892, on the instigation of Dr. Klasing but in the teeth of opposition led by the moderate Werner [[von Blumenthal]].
56580
56581 Official [[anti-Semitic]] legislation was enacted in various countries, especially in Imperial Russia in the 19th century and in [[Nazi]] Germany and its Central European allies in the 1930s. These laws were passed against Jews as a group, regardless of their religious affiliation - in some cases, such as Nazi Germany, having a Jewish grandparent was enough to qualify someone as Jewish.
56582
56583 In Germany, for example, the [[Nuremberg Laws]] of 1935 prevented marriage between any Jew and non-Jew, and made it that all Jews, even quarter- and half-Jews, were no longer citizens of their own country (their official title became &quot;[[subject of the state]]&quot;). This meant that they had no basic citizens' rights, e.g., to vote. In 1936, Jews were banned from all professional jobs, effectively preventing them having any influence in education, politics, higher education and industry. On 15 November of 1938, Jewish children were banned from going to normal schools. By April 1939, nearly all Jewish companies had either collapsed under financial pressure and declining profits, or had been persuaded to sell out to the Nazi government. This further reduced their rights as human beings; they were in many ways officially separated from the German populace. Similar laws existed in [[Hungary]], [[Romania]], and [[Austria]].
56584
56585 Even when anti-Semitism was not an official state policy, governments in the early to middle parts of the 20th century often adopted more subtle measures aimed at Jews. For example, the [[Evian Conference]] of 1938 delegates from thirty-two countries neither condemned Hitler's treatment of the Jews nor allowed more Jewish refugees to flee to the West.
56586
56587 ===The Holocaust and Holocaust Denial===
56588 {{main|Holocaust}}
56589 Racial anti-Semitism reached its most horrific manifestation in the [[Holocaust]] during [[World War II]], in which about 6 million [[Europe]]an [[Jew]]s, 1.5 million of them children, were systematically murdered.
56590
56591 [[Holocaust denial|Holocaust deniers]] often claim that &quot;the Jews&quot; or &quot;[[conspiracy theory|Zionist conspiracy]]&quot; are responsible for the exaggeration or wholesale fabrication of the events of the Holocaust. Critics of such revisionism point to an overwhelming amount of physical and historical evidence that supports the mainstream historical view of the Holocaust. Almost all academics agree that there is no evidence for any such conspiracy.
56592
56593 ===Anti-Semitic conspiracy theories===
56594 [[Image:Protocols of the Elders of Zion 2005 Syria al-Awael.jpg|thumb|2005 [[Syria]]n edition of ''[[The Protocols of the Elders of Zion]]'' includes a &quot;historical and contemporary investigative study&quot; that repeats the [[blood libel against Jews|blood libel]] and other anti-Semitic accusations, and argues that the Torah and Talmud encourage Jews &quot;to commit treason and to conspire, dominate, be arrogant and exploit other countries&quot;.]]
56595 The rise of views of the Jews as a malevolent &quot;race&quot; generated anti-Semitic [[conspiracy theories]] that the Jews, as a group, were plotting to control or otherwise influence the world. From the early infamous Russian literary [[hoax]], [[The Protocols of the Elders of Zion]], published by the Tzar's secret police, a key element of anti-Semitic thought has been that Jews influence or control the world.
56596
56597 In a recent incarnation, extremist groups, such as [[Neo-Nazism|Neo-Nazi]] parties and [[Islamism|Islamist]] groups, claim that the aim of [[Zionism]] is [[global domination]]; they call this the ''Zionist [[Conspiracy theory|conspiracy]]'' and use it to support anti-Semitism. This position is associated with [[fascism]] and [[Nazism]], though increasingly, it is becoming a tendency within parts of the [[Left wing politics|left]] as well.
56598
56599 == Anti-Semitism and the Muslim world ==
56600 ''Anti-Semitism within Islam is discussed in the article on [[Islam and anti-Semitism]]. Anti-Semitism in the Arab World is discussed in the article on [[Arabs and anti-Semitism]]''
56601
56602 The [[Qur'an]], [[Islam]]'s holy book, accuses the [[Jew]]s of corrupting the [[Hebrew Bible]]. Muslims refer to Jews and [[Christian]]s as a &quot;[[People of the book]]&quot;; Islamic law demands that when under Muslim rule they should be treated as [[dhimmi|dhimmis]] - from the Arab term ''ahl adh-dhimma''. The writer [[Bat Ye'or]] introduced the modern word ''Dhimmitude'' as a generic indication of this Islamic attitude. Dhimmis were granted protection of life (including against other Muslim states), the right to residence, worship, and work or trade, and were exempted from military service, and Muslim religious duties, personal law and tax. They were obligated to pay other taxes ([[jizyah]] and land tax), and subject to various other restrictions regarding the contradiction of Islam, the Qur'an or [[Muhammad]], [[proselyte|proselytizing]], and at times a number of other restrictions on dress, riding horses or camels, carrying arms, holding public office, building or repairing places of worship, mourning loudly, wearing shoes outside a Jewish ghetto, etc.
56603
56604 Anti-Semitism in the [[Islamic world|Muslim world]] increased in the [[twentieth century]], as anti-Semitic motives and [[blood libel]]s were imported from [[Europe]] and as resentment against [[Zionism|Zionist]] efforts in [[British Mandate of Palestine]] spread. While anti-Semitism has certainly been heightened by the [[Arab-Israeli conflict]], there were an increasing number of [[pogrom]]s against Jews prior to the foundation of [[Israel]], including [[Nazi]]-inspired pogroms in [[Algeria]] in the 1930s, and massive attacks on the Jews in [[Iraq]] and [[Libya]] in the 1940s (see [[Farhud]]). George Gruen attributes the increased animosity towards Jews in the [[Arab world]] to several factors including: The breakdown of the [[Ottoman Empire]] and traditional [[Islamic]] society; domination by Western [[colonialism|colonial powers]] under which Jews gained a disproportionatly large role in the commercial, professional, and administrative life of the region; the rise of [[Arab nationalism]], whose proponents sought the wealth and positions of local Jews through government channels; resentment over Jewish [[nationalism]] and the Zionist movement; and the readiness of unpopular [[regime]]s to [[scapegoat]] local Jews for political purposes.[http://www.jcpa.org/jl/jl102.htm]
56605
56606 [[Anti-Zionism|Anti-Zionist]] [[propaganda]] in the [[Middle East]] frequently adopts the terminology and symbols of [[the Holocaust]] to [[Demonization|demonize]] Israel and its leaders. At the same time, [[Holocaust denial]] and Holocaust minimization efforts have found increasingly overt acceptance as sanctioned historical discourse in a number of Middle Eastern countries.
56607
56608 == Anti-semitism and specific countries ==
56609 === United States ===
56610 [[Image:KKK holocaust a zionist hoax.jpg|thumb|left|200px|The [[Ku Klux Klan|KKK]]: Nazi salute and Holocaust denial]]
56611 {{main|History of the Jews in the United States}}
56612 Jews were often condemned by [[populist]] politicians alternately for their left-wing politics, or their perceived wealth, at the turn of the century. Anti-semitism grew in the years leading up to America's entry into World War II, Father [[Charles Coughlin]], an anti-Semitic radio preacher, as well as many other prominent public figures, condemned &quot;the Jews,&quot; and [[Henry Ford]] reprinted [[The Protocols of the Elders of Zion]] in his newspaper.
56613
56614 In 1939 a [[Roper]] poll found that only thirty-nine percent of Americans felt that Jews should be treated like other people. Fifty-three percent believed that &quot;Jews are different and should be restricted&quot; and ten percent believed that Jews should be deported. [http://www.fsmitha.com/h2/ch22.htm]
56615 It has been estimated that 190 000 - 200 000 Jews could have been saved during the [[Second World War]] had it not been
56616 for bureaucratic obstacles to immigration deliberately created by [[Breckinridge Long]] and others.[http://www.pbs.org/wgbh/amex/holocaust/peopleevents/pandeAMEX90.html]
56617
56618 Unofficial antisemitism was also widespread in the first half of the century. For example, to limit the growing number of Jewish students between 1919-1950s a number of private liberal arts universities and medical and dental schools employed [[Numerus clausus#Numerus clausus in the United States|Numerus clausus]]. These included [[Harvard University]], [[Columbia University]], [[Cornell University]], and [[Boston University]]. In 1925 [[Yale University]], which already had such admissions preferences as &quot;character&quot;, &quot;solidity&quot;, and &quot;physical characteristics&quot; added a program of [[legacy preference]] admission spots for children of Yale alumni, in an explicit attempt to put the brakes on the rising percentage of Jews in the student body. This was soon copied by other Ivy League and other schools, and admissions of Jews were kept down to 10% through the 1950s. Such policies were for the most part discarded during the early 1960s.
56619
56620 American anti-Semitism underwent a modest revival in the late 20th century. The [[Nation of Islam]] under [[Louis Farrakhan]] claimed that Jews were responsible for slavery, economic exploitation of black labor, selling alcohol and drugs in their communities, and unfair domination of the economy. Jesse Jackson issued his infamous &quot;Hymietown&quot; remarks during the 1984 Presidential primary campaign.
56621 According to ADL surveys begun in 1964, African-Americans are &quot;significantly more likely&quot; than white Americans to hold anti-Semitic beliefs, although there is a strong correlation between education level and the rejection of anti-Semitic stereotypes. [http://www.adl.org/antisemitism_survey/survey_print.asp].
56622
56623 === Europe ===
56624 The summary of a 2004 poll by the ''Pew Global Attitudes Project'' noted that &quot;Despite concerns about rising anti-Semitism in Europe, there are no indications that anti-Jewish sentiment has increased over the past decade. Favorable ratings of Jews are actually higher now in France, Germany and Russia than they were in 1991. Nonetheless, Jews are better liked in the U.S. than in Germany and Russia.&quot;[http://pewglobal.org/reports/display.php?ReportID=206]
56625
56626 However, according to 2005 survey results by the ADL [http://www.adl.org/PresRele/ASInt_13/4726_13.htm], anti-Semitic attitudes remain common in Europe. Over 30% of those surveyed indicated that Jews have too much power in business, with responses ranging from lows of 11% in Denmark and 14% in England to highs of 66% in Hungary, and over 40% in Poland and Spain. The results of religious anti-Semitism also linger and over 20% of European respondents agreed that Jews were responsible for the death of Jesus, with France having the lowest percentage at 13% and Poland having the highest number of those agreeing, at 39%. [http://www.philosophistry.com/specials/europe/question_1.html]
56627
56628 The Vienna-based European Union Monitoring Center (EUMC), for 2002 and 2003, identified France, Germany, the United Kingdom, Belgium, and The Netherlands as EU member countries with notable increases in incidents. As these nations keep reliable and comprehensive statistics on anti-Semitic acts, and are engaged in combating anti-Semitism, their data was readily available to the EUMC. Governments and leading public figures condemned the violence, passed new legislation, and mounted positive law enforcement and educational efforts.
56629
56630 In Western Europe, traditional far-right groups still account for a significant proportion of the attacks against Jews and Jewish properties; disadvantaged and disaffected Muslim youths increasingly were responsible for most of the other incidents. In Eastern Europe, with a much smaller Muslim population, skinheads and others members of the radical political fringe were responsible for most anti-Semitic incidents. Anti-Semitism remained a serious problem in Russia and Belarus, and elsewhere in the former Soviet Union, with most incidents carried out by ultra-nationalist and other far-right elements. The stereotype of Jews as manipulators of the global economy continues to provide fertile ground for anti-Semitic aggression.
56631
56632 ==== France ====
56633 [[Image:FrenchCemetery103004-01.jpg|thumb|250px|right|Defacement of a Jewish cemetery in France, 2004.]]
56634 {{main|History of the Jews in France}}
56635
56636 Anti-semitism was particularly virulent in [[Vichy France]] during [[World War II|WWII]] (1939 - 1945). The Vichy government openly collaborated with the Nazi occupiers to identify Jews for deportation and transportation to the death camps.
56637
56638 Today, despite a steady trend of decreasing antisemitism among the population[http://www.tns-sofres.com/etudes/pol/080605_antisemitisme_r.htm], acts of antisemitism are a serious cause for concern [http://www.lexpress.fr/info/societe/dossier/juifsfr/dossier.asp], as is tension between the Jewish and Muslim populations of France, both the largest in Europe. According to the National Advisory Committee on human rights, antisemitic acts account for a majority (72% of all in 2003) of racist acts in France. (''See also the official statement of the French ministry of interior about antisemitic acts''[http://www.interieur.gouv.fr/rubriques/a/a5_communiques/2005_07_25_antisemite].)
56639
56640 In 2005 the Israeli newspaper the [[Maariv]] found that 82% of French people questioned had favourable attitudes towards Jews, the second highest percentage of the countries questioned. The Netherlands was highest at 85%. [http://superfrenchie.com/?p=125#comments]
56641
56642 ==== Poland ====
56643 ''see [[History of the Jews in Poland]]''
56644
56645 In 1264, King [[Boleslaus V of Poland]] legislated a charter for Jewish residence and protection, hoping that Jewish settlement would contribute to the development of the Polish economy. This charter, which encouraged money-lending, was a slight variation of the 1244 charter granted by the King of [[Austria]] to the Jews. By the sixteenth century, Poland had become the center of European Jewry and the most tolerant of all European countries regarding the matters of faith, although there were still occasionally violent anti-Semitic incidents.
56646
56647 At the onset of the seventeenth century, however, the tolerance began to give way to increased anti-Semitism. Elected to the Polish throne King [[Sigismund III]] of the Swedish [[House of Vasa]], a strong supporter of the [[counter-reformation]], began to undermine the principles of the [[Warsaw Confederation]] and the religious tolerance in the [[Polish-Lithuanian Commonwealth]], revoking and limiting privileges of all non-Catholic faiths. In 1628 he banned publication of [[Hebrew language|Hebrew]] books, including the [[Talmud]] [http://www.arts.gla.ac.uk/Slavonic/staff/Polcen16c.html]. Acclaimed twentieth century historian [[Simon Dubnow]], in his ''[[magnum opus]]'' ''History of the Jews in Poland and Russia'', detailed:
56648 :&quot;''At the end of the 16th century and thereafter, not one year passed without a blood libel trial against Jews in Poland, trials which always ended with the execution of Jewish victims in a heinous manner...&quot;'' (ibid., volume 6, chapter 4).
56649
56650 In the 1650s the Swedish invasion of the Commonwealth ([[The Deluge]]) and the [[Chmielnicki Uprising]] of the [[Cossack]]s resulted in vast depopulation of the Commonwealth, as over 30% of the ~10 million population has perished or emigrated. In the related 1648-55 pogroms led by the Ukrainian [[Haidamak]]s uprising against Polish nobility ([[szlachta]]), during which approximately 100,000 Jews were slaughtered, Polish and [[Ruthenian]] peasants often participated in killing Jews (''The Jews in Poland'', Ken Spiro, 2001). The besieged szlachta, who were also decimated in the territories where the uprising happened, typically abandoned the loyal peasantry, townsfolk, and the Jews renting their land, in violation of &quot;rental&quot; contracts.
56651
56652 In the aftermath of the Deluge and Chmielnicki Uprising, many Jews fled to the less turbulent [[Netherlands]], which had granted the Jews a protective charter in 1619. From then until the [[Nazi]] deportations in 1942, the Netherlands remained a remarkably tolerant haven for Jews in Europe, excedeeing the tolerance extant in all other European countries at the time, and becoming one of the few Jewish havens until nineteenth century social and political reforms throughout much of Europe. Many Jews also fled to England, open to Jews since the mid-seventeenth century, in which Jews were fundamentally ignored and not typically persecuted.
56653 Historian Berel Wein notes:
56654 :&quot;''In a reversal of roles that is common in Jewish history, the victorious Poles now vented their wrath upon the hapless Jews of the area, accusing them of collaborating with the [[Cossack]] invader!... The Jews, reeling from almost five years of constant hell, abandoned their Polish communities and institutions...&quot;'' (''Triumph of Survival'', 1990).
56655
56656 Throughout the sixteenth to eighteenth century, many of the szlachta mistreated peasantry, townsfolk and Jews. Threat of mob violence was a specter over the Jewish communities in [[Polish-Lithuanian Commonwealth]] at the time. On one occasion in 1696, a mob threatened to massacre the Jewish community of Posin, [[Vitebsk]]. The mob accused the Jews of murdering a Pole. At the last moment, a peasant woman emerged with the victim's clothes and confessed to the murder. One notable example of actualized riots against Polish Jews is the rioting of 1716, during which many Jews lost their lives. Later, in 1723, the Bishop of [[Gdańsk]] instigated the massacre of hundreds of Jews.
56657
56658 The legendary [[Abraham ben Abraham|Walentyn Potocki]], a Polish nobleman who converted to Judaism, is said to have been burned by [[auto da fe]] on May 24, 1749. In 1757, at the instigation of [[Jacob Frank]] and his followers, the Bishop of [[Kamianets-Podilskyi]] forced the Jewish rabbis to participate in a religious dispute with the quasi-Christian Frankists. Among the other charges, the Frankists claimed that the [[Talmud]] was full of heresy against Catholicism. The [[Roman Catholic Church|Catholic]] judges determined that the Frankists had won the debate, whereupon the Bishop levied heavy fines against the Jewish community and confiscated and burned all Jewish Talmuds. Polish anti-Semitism during the seventeenth and eighteenth century was summed up by Issac de Pinto as follows: &quot;''Polish Jews... who are deprived of all the privileges of society... who are despised and reviled on all sides, who are often persecuted, always insulted.... That contempt which is heaped on them chokes up all the seeds of virtue and honour....''&quot; ([[Issac de Pinto]], philosopher and economist, in a 1762 letter to [[Voltaire]]).
56659
56660 On the other hand, it should be noted that despite the mentioned incidents, the [[Polish-Lithuanian Commonwealth]] was a relative haven for Jews when compared to the period of the [[partitions of Poland]] and the PLC's destruction in 1795 (see [[Anti-Semitism#Russia and the Soviet Union|Imperial Russia and the Soviet Union]], below).
56661
56662 Anti-Jewish sentiments continued to be present in Poland, even after the country regained its independence. One notable manifestation of these attitudes includes [[Numerus clausus#numerus clausus in Poland|numerus clausus]] rules imposed, by almost all Polish universities in the 1930's. [[William W. Hagen]] in his ''Before the &quot;Final Solution&quot;: Toward a Comparative Analysis of Political Anti-Semitism in Interwar Germany and Poland'' article in ''Journal of Modern History (July, 1996): 1-31'', details:
56663 :&quot;''In Poland, the semidictatorial government of [[Pilsudski]] and his successors, pressured by an increasingly vocal opposition on the radical and fascist right, implemented many anti-Semitic policies tending in a similar direction, while still others were on the official and semiofficial agenda when war descended in 1939.... In the 1930s the realm of official and semiofficial discrimination expanded to encompass limits on Jewish export firms... and, increasingly, on university admission itself. In 1921-22 some 25 percent of Polish university students were Jewish, but in 1938-39 their proportion had fallen to 8 percent.''&quot;
56664
56665 While there are many examples of Polish support and help for the Jews during World War II and the Holocaust, there are also numerous examples of anti-Semitic incidents, and the Jewish population was certain of the indifference towards their fate from the Christian Poles. The Polish Institute for National Memory identified twenty-four [[pogroms]] against Jews during World War II, the largest occurring at the village of [[Jedwabne]] in 1941 (see [[massacre in Jedwabne]]).
56666
56667 After the end of World War II the remaining anti-Jewish sentiments were skillfully used at certain moments by communist party or individual politicians in order to achieve their assumed political goals, which pinnacled in the [[March 1968 events]]. These sentiments started to diminish only with the collapse of the [[communist]] rule in Poland in 1989, which has resulted in a re-examination of events between Jewish and Christian Poles, with a number of incidents, like the masscre at Jedwabne, being discussed openly for the first time. Violent anti-semitism in Poland in 21st century is marginal[http://www.tau.ac.il/Anti-Semitism/asw2004/graph-7.jpg] compared to elsewhere, but there are very few Jews remaining in Poland. Still, according to recent (June 7, 2005) results of research by [[B'nai Brith]]s [[Anti-Defamation League]], Poland remains among the European countries (with others being Italy, Spain and Germany) with the largest percentages of people holding anti-Semitic views.
56668
56669 Poland is actively trying to address concerns about anti-semitism. In 2004, the Polish government approved a National Action Program against racism, including anti-semitism. Additionally the Polish Catholic Church has widely distributed materials promoting the need for respect and cooperation with Judaism.
56670
56671 ==== Germany ====
56672 [[Image:dstsatan.jpeg|thumb|200px|Der St&amp;uuml;rmer: &quot;Satan&quot;. The caption reads: &quot;The Jews are our misfortune.&quot;]]
56673 ''See main articles: [[History of the Jews in Germany]], [[Holocaust]]''
56674
56675 From the early Middle Ages to the 18th century, the Jews in Germany were subject to many persecutions as well as brief times of tolerance. Though the 19th century began with a series of riots and pogroms against the Jews, [[Jewish emancipation|emancipation]] followed in 1848, so that, by the early 20th century, the Jews of Germany were the most integrated in Europe. The situation changed in the early 1930's with the rise of the [[Nazi]]s and their explicity anti-Semitic program. [[Hate speech]] which referred to [[Jew]]ish citizens as &quot;dirty Jews&quot; became common in anti-Semitic pamphlets and [[newspaper]]s such as the ''[[VÃļlkischer Beobachter]]'' and ''[[Der StÃŧrmer]]''. Additionally, blame was laid on German Jews for having caused Germany's defeat in [[World War I]] (see ''[[Dolchstosslegende]]'').
56676 [[Image:Der Giftpilz - Gott des Juden - Nazi propaganda.jpg|thumb|left|200px|Nazi propaganda for German children from [[Julius Streicher]]'s publication [http://www.calvin.edu/academic/cas/gpa/thumb.htm ''Der Giftpilz'' (Toadstool)], 1938. The caption reads: &quot;The God of the Jew is Money. And to gain money, he will commit the greatest crimesâ€Ļ.&quot;]]
56677
56678 Anti-Jewish propaganda expanded rapidly. Nazi cartoons depicting &quot;dirty Jews&quot; frequently portrayed a dirty, physically unattractive and badly dressed &quot;talmudic&quot; Jew in traditional religious garments similar to those worn by [[Hasidic Judaism|Hasidic Jews]]. Articles attacking Jewish Germans, while concentrating on commercial and political activities of prominent Jewish individuals, also frequently attacked them based on religious dogmas, such as [[blood libel]].
56679
56680 The Nazi anti-Semitic program quickly expanded beyond mere speech. Starting in 1933, repressive laws were passed against Jews, culminating in the [[Nuremberg Laws]] which removed most of the rights of citizenship from Jews, using a racial definition based on descent, rather than any religious definition of who was a Jew. Sporadic violence against the Jews became widespread with the [[Kristallnacht]] riots, which targeted Jewish homes, businesses and places of worship, killing hundreds across Germany and Austria.
56681
56682 The anti-Semitic agenda culminated in the [[genocide]] of the Jews of Europe, known as the [[Holocaust]].
56683
56684 ==== Russia and the Soviet Union ====
56685 [[Image:Iudaism bez prikras 63-7.gif|right|thumb|&quot;Judaism Without Embellishments&quot; by Trofim Kichko, published by the Academy of Sciences of the Ukrainian SSR in 1963: &quot;It is in the teachings of Judaism, in the Old Testament, and in the Talmud, that the Israeli militarists find inspiration for their inhuman deeds, racist theories, and expansionist designs...&quot;]]
56686 ''Main articles: [[History of the Jews in Russia and Soviet Union]], [[Pogrom]]''
56687
56688 The [[Pale of Settlement]] was the Western region of [[Imperial Russia]] to which Jews were restricted by the Tsarist [[Ukase]] of 1792. It consisted of the territories of former [[Polish-Lithuanian Commonwealth]], annexed with the existing numerous Jewish population, and the [[Crimea]] (which was later cut out from the Pale).
56689
56690 During 1881-1884, 1903-1906 and 1914-1921, waves of anti-Semitic [[pogrom]]s swept Russian Jewish communities. At least some pogroms are believed to have been organized or supported by the Russian [[okhranka]]; although there is no hard evidence for this, the Russian police and army generally displayed indifference to the pogroms (e.g. during the three-day [[Kishinev pogrom|First Kishinev pogrom]] of 1903), as well as to anti-Jewish articles in newspapers which often instigated the pogroms.
56691
56692 During this period the [[May Laws]] policy was also put into effect, banning Jews from rural areas and towns, and placing strict quotas on the number of Jews allowed into higher education and many professions. The combination of the repressive legislation and pogroms propelled mass Jewish emigration, and by 1920 more than two million Russian Jews had emigrated, most to the [[United States]] while some made [[aliya]] to the [[Land of Israel]].
56693
56694 One of the most infamous anti-Semitic tractates was the Russian okhranka literary [[hoax]], ''[[The Protocols of the Elders of Zion]]'', created in order to blame the Jews for Russia's problems during the period of revolutionary activity.
56695
56696 Even though many [[Old Bolsheviks]] were ethnically Jewish, they sought to uproot Judaism and Zionism and established the [[Yevsektsiya]] to achieve this goal. By the end of the 1940s the Communist leadership of the former USSR had liquidated almost all Jewish organizations, including Yevsektsiya.
56697
56698 The anti-Semitic campaign of 1948-1953 against so-called &quot;[[rootless cosmopolitans]],&quot; destruction of the [[Jewish Anti-Fascist Committee]], the fabrication of the &quot;[[Doctors' plot]],&quot; the rise of &quot;[[Zionology]]&quot; and subsequent activities of official organizations such as the [[Anti-Zionist committee of the Soviet public]] were officially carried out under the banner of &quot;anti-Zionism,&quot; but the use of this term could not obscure the anti-Semitic content of these campaigns, and by the mid-1950s the state persecution of Soviet Jews emerged as a major human rights issue in the West and domestically. See also: [[Jackson-Vanik amendment]], [[Refusenik (Soviet Union)|Refusenik]], [[Pamyat]].
56699
56700 Today, anti-Semitic pronouncements, speeches and articles are common in Russia, and there are a large number of anti-Semitic neo-Nazi groups in the republics of the former Soviet Union, leading Pravda to declare in 2002 that &quot;Anti-semitism is booming in Russia&quot;[http://english.pravda.ru/main/2002/07/30/33489.html]. Over the past few years there have also been bombs attached to anti-Semitic signs, apparently aimed at Jews, and other violent incidents, including stabbings, have been recorded.
56701
56702 Though the government of [[Vladimir Putin]] takes an official stand against anti-semitism, some political parties and groups are explicitly anti-Semitic, in spite of a Russian law (Art. 282) against fomenting racial, ethnic or religious hatred. In 2005, a group of 15 [[Duma]] members demanded that Judaism and Jewish organizations be banned from Russia. In June, 500 prominent Russians, including some 20 members of the nationalist ''Rodina'' party, demanded that the state prosecutor investigate ancient Jewish texts as &quot;anti-Russian&quot; and ban Judaism &amp;mdash; the investigation was actually launched, but halted amid international outcry.
56703
56704 === Asia ===
56705 ==== Japan ====
56706 {{main|Antisemitism in Japan}}
56707 Originally Japan, with no Jewish population, had no anti-Semitism but Nazi ideology and propaganda left an influence on Japan during World War II, and the Protocols of the Elders of Zion were translated into Japanese. Today, anti-Semitism and belief in Jewish manipulation of Japan and the world remains despite the lack of any Jewish community in Japan. Books about Jewish conspiracies are best sellers. According to a 1988 survey, 8% of Japanese had read one of these books.
56708
56709 == Anti-Semitism and anti-Zionism ==
56710 [[Anti-Zionism]] is a term that has been used to describe several very different political and religious points of view (both historically and in current debates) all expressing some form of opposition to [[Zionism]]. A large variety of commentators - politicians, journalists, academics and others - believe that criticisms of Israel and Zionism are often disproportionate in degree and unique in kind, and attribute this to anti-Semitism. In turn, critics of this view believe that associating anti-Zionism with anti-Semitism is intended to stifle debate, deflect attention from valid criticism, and taint anyone opposed to Israeli actions and policies. This subject is discussed in the main article on [[Anti-Zionism]].
56711
56712 [[Image:Tishreen-Apr-30-2000.jpg|right|200px|thumb|Cartoon from the Syrian Arab daily newspaper Tishreen (Apr 30, 2000). Negative [[zoomorphism]] is commonly used in anti-Semitic discourse.]]
56713
56714 === New anti-Semitism ===
56715 {{main|New anti-Semitism}}
56716 In recent years some scholars of history, psychology, religion and representatives of Jewish groups, have noted what they describe as the ''new anti-Semitism'', which uses the language of anti-Zionism and criticism against Israel to attack the Jews more broadly.
56717
56718 The European Commission on Racism and Intolerance formally defined some of the ways in which anti-Zionism may cross the line to anti-Semitism: &quot;Examples of the ways in which anti-Semitism manifests itself with regard to the State of Israel taking into account the overall context could include: Denying the Jewish people right to [[self-determination]], e.g. by claiming that the existence of a state of Israel is a racist endeavor; applying double standards by requiring of it a behavior not expected or demanded of any other democratic nation; using the symbols and images associated with classic anti-Semitism (e.g. claims of Jews killing Jesus or blood libel) to characterize Israel or Israelis; drawing comparisons of contemporary Israeli policy to that of the Nazis; and holding Jews collectively responsible for actions of the State of Israel.&quot;
56719
56720 == Anti-Semitism in the 21st century ==
56721 According to the 2005 U.S. State Department Report on Global Anti-Semitism, anti-Semitism in Europe has increased significantly in recent years. Beginning in 2000, verbal attacks directed against Jews increased while incidents of vandalism (e.g. graffiti, fire bombings of Jewish schools, desecration of synagogues and cemeteries) surged. Physical assaults including beatings, stabbings and other violence against Jews in Europe increased markedly, in a number of cases resulting in serious injury and even death.
56722
56723 On [[January 1]], [[2006]], Britain's chief [[rabbi]], Sir [[Jonathan Sacks]], warned that what he called a &quot;[[tsunami]] of anti-Semitism&quot; was spreading globally. In an interview with BBC's [[Radio Four]], Sacks said that anti-Semitism was on the rise in Europe, and that a number of his rabbinical colleagues had been assaulted, synagogues desecrated, and Jewish schools burned to the ground in France. He also said that: &quot;People are attempting to silence and even ban Jewish societies on campuses on the grounds that Jews must support the state of Israel, therefore they should be banned, which is quite extraordinary because ... British Jews see themselves as British citizens. So it's that kind of feeling that you don't know what's going to happen next that's making ... some European Jewish communities uncomfortable.&quot; [http://www.guardian.co.uk/religion/Story/0,2763,1676509,00.html]
56724
56725 Much of the new European anti-Semitic violence can actually be seen as a spill over from the long running Israeli-Arab conflict since the majority of the perpetrators are from the large immigrant Arab communities in European cities. According to ''The Stephen Roth Institute for the Study of Contemporary Antisemitism and Racism'', most of the current anti-Semitism comes from militant Islamist and Muslim groups, and most Jews tend to be assaulted in countries where groups of young Muslim immigrants reside. [http://www.tau.ac.il/Anti-Semitism/asw2004/general-analysis.htm]
56726
56727 Similarly, in the Middle East, anti-Zionist propaganda frequently adopts the terminology and symbols of the Holocaust to demonize Israel and its leaders. This rhetoric often crosses the line separating the legitimate criticism of Israel and its policies to become anti-Semitic vilification posing as legitimate political commentary. At the same time, Holocaust denial and Holocaust minimization efforts find increasingly overt acceptance as sanctioned historical discourse in a number of Middle Eastern countries.
56728
56729 The problem of anti-Semitism is not only significant in Europe and in the Middle East, but there are also worrying expressions of it elsewhere. For example, in Pakistan, a country without a Jewish community, anti-Semitic sentiment fanned by anti-Semitic articles in the press is widespread. This reflects the more recent phenomenon of anti-Semitism appearing in countries where historically or currently there are few or even no Jews.
56730
56731 == See also ==
56732 {{commons|Category:Anti-Semitism}}
56733 * [[Jew]]s and [[Judaism]]
56734 ** [[Jewish history]]
56735 * Other articles on anti-Semitism:
56736 ** [[History of anti-Semitism]]
56737 ** [[Christianity and anti-Semitism]]
56738 ** [[Christian opposition to anti-Semitism]]
56739 ** [[Anti-globalization and Anti-Semitism]]
56740 ** [[Arab anti-Semitism]]
56741 *** [[Saudi Arabia and anti-Semitism]]
56742 ** [[Islam and anti-Semitism]]
56743 ** [[New anti-Semitism]]
56744 ** [[Persecution of the Jews]]
56745 * Related topics:
56746 ** [[Allophilia]]
56747 ** [[Anti-Zionism]]
56748 ** [[Judeophobia]]
56749 ** [[Self-hating Jew]]
56750 ** [[Racism]]
56751 * Topics related to religious anti-Semitism:
56752 ** [[Anti-Judaism]]
56753 ** [[Spanish Inquisition]]
56754 ** [[Blood libel]]
56755 *** [[Menahem Mendel Beilis|Beilis trial]] in Russia
56756 ** [[Host desecration]]
56757 ** [[Edgardo Mortara]]
56758 * Anti-semitic laws, policies, and government actions
56759 ** [[Pogrom]]s in Russia
56760 ** [[May Laws]] in Russia
56761 ** [[March 1968 events]] in Poland
56762 ** [[Dreyfus affair]] in France
56763 ** [[Farhud]] in Iraq
56764 ** [[General Order No. 11]] in the United States
56765 ** [[Historical revisionism (political)]]
56766 * [[Nazi]] Germany and the [[Holocaust]]
56767 ** [[Racial policy of Nazi Germany]]
56768 * Anti-semitic websites
56769 ** [[Jew Watch]]
56770 ** [[Radio Islam]]
56771 ** [[Institute for Historical Review]]
56772 * Organizations working against anti-Semitism
56773 ** [[Simon Wiesenthal Center]]
56774 ** [[Anti-Defamation League]]
56775 **[[Jewish Defense League]][http://www.jdl.org.il]
56776 * Other concepts
56777 ** [[Religious Persecution]]
56778 ** [[Persecution of Christians]]
56779 ** [[Persecution of Muslims]]
56780 ** [[Persecution of Hindus]]
56781 ** [[Persecution of Atheists]]
56782
56783 == References ==
56784 *John M. G. Barclay, ''Jews in the Mediterranean Diaspora: From Alexander to Trajan (323 BCE-117 CE)''. University of California, 1999.
56785 *Pieter Willem Van Der Horst, ''Philo's Flaccus: the First Pogrom''. Philo of Alexandria Commentary Series. Brill. 2003.
56786 *Bodansky, Yossef. ''Islamic Anti-Semitism as a Political Instrument'', Freeman Center For Strategic Studies, 1999
56787 *Gideon Bohak, &quot;The Ibis and the Jewish Question: Ancient 'Anti-Semitism' in Historical Context&quot; in Menachem Mor et al, ''Jews and Gentiles in the Holy Land in the Days of the Second Temple, the Mishna and the Talmud''. Jerusalem: Yad Ben-Zvi Press, 2003. p 27-43.
56788 *Carr, Steven Alan. ''Hollywood and anti-Semitism: A cultural history up to World War II'', Cambridge University Press 2001
56789 *Cohn, Norman. ''Warrant for Genocide'', Eyre &amp; Spottiswoode 1967; Serif, 1996.
56790 *Freudmann, Lillian C. ''Antisemitism in the New Testament'', University Press of America, 1994.
56791 *Gillan, Audrey. [http://www.guardian.co.uk/religion/Story/0,2763,1676509,00.html &quot;Chief rabbi fears 'tsunami' of hatred&quot;], ''The Guardian'', January 2, 2006
56792 *Hilberg, Raul. ''[[The Destruction of the European Jews]]''. Holmes &amp; Meier, 1985. 3 volumes
56793 *Lipstadt, Deborah. ''Denying the Holocaust: The Growing Assault on Truth and Memory'', Penguin, 1994.
56794 *Matas, David. ''Aftershock: Anti-Zionism and anti-Semitism''. Dundurn Press, 2005.
56795 *A M Roth, Norman Roth, Jews, Visigoths and Muslims in Medieval Spain, Brill Academic, 1994.
56796 *Selzer, Michael (ed). ''&quot;Kike!&quot; : A documentary history of anti-semitism in America'', New York 1972
56797 *[http://www.state.gov/g/drl/rls/40258.htm ''U.S. State Department Report on Global Anti-Semitism'', 2005.]
56798 *[http://www.adl.org/antisemitism_survey/survey_print.asp Anti-Semitism and Prejudice in America]
56799 *Peter Schafer. ''Judeophobia'', Cambridge: Harvard University Press. 1997. p 208.
56800
56801 == External links ==
56802 *[http://www.aish.com/seminars/whythejews/ Why the Jews? A perspective on causes of anti-Semitism]
56803 *[http://www.antisemitism.org.il/ Coordination Forum for Countering Antisemitism] (with up to date calendar of anti-semitism today)
56804 *[http://har2.huji.ac.il:83/ALEPH/ENG/SAS/BAS/BAS/START Annotated bibliography of anti-Semitism] hosted by the Hebrew University of Jerusalem's Center for the Study of Antisemitism (SICSA)
56805 *[http://www.jewishvirtuallibrary.org/jsource/antisem.html Anti-Semitism and responses]
56806 *[http://www.tau.ac.il/Anti-Semitism/ The Stephen Roth Institute for the Study of Contemporary anti-Semitism and Racism] hosted by the Tel Aviv University - (includes an annual report)
56807 *[http://www.shma.com/nov02/pierre.htm Jews, the End of the Vertical Alliance, and Contemporary Antisemitism]
56808 *[http://www.masada2000.org/Who-Us.html An Israeli point of view on antisemitism, by Steve Plaut]
56809 *[http://www.commentarymagazine.com/article.asp?aid=11906035_1 The Anti-Semitic Disease] - an analysis of Anti-Semitism by [[Paul Johnson (journalist)|Paul Johnson]] in ''[[Commentary Magazine]]''
56810 *[http://www.coe.int/t/E/human_rights/ecri/1-ECRI/2-Country-by-country_approach/ Council of Europe, ECRI Country-by-Country Reports]
56811 *[http://info-poland.buffalo.edu/classroom/J/ State University of New York at Buffalo, The Jedwabne Tragedy]
56812 *[http://www.cyberroad.com/poland/jews_today.html Jews in Poland today]
56813 *[http://www.adl.org/main_Anti_Semitism_International/Default.htm Anti-Defamation League's report on International Anti-Semitism]
56814 *[http://memri.org/ The Middle East Media Research Institute] - documents antisemitism in Middle-Eastern media.
56815 **[http://www.philosophistry.com/specials/europe/ Map of Attitudes Toward Jews in 12 European Countries] based on a [http://www.adl.org/main_Anti_Semitism_International/as_survey_2005.htm 2005 ADL Survey]
56816 *[http://www.zionism-israel.com/his/judeophobia.htm Judeophobia: A short course on the history of anti-Semitism] at [http://www.zionism-israel.com] Zionism and Israel Information Center.
56817 *[http://www.zionism.netfirms.com/ArabAntiZionism.htm Arab and Muslim Anti-Zionism and anti-Semitiem] A mini study with extensive links and resources.
56818 *[http://www.pinteleyid.com If Not Together, How?]: Research by April Rosenblum to develop a working definition of antisemitism, and related teaching tools about antisemitism, for activists.
56819
56820 [[Category:Anti-Semitism|*]]
56821
56822 &lt;!-- interwiki --&gt;
56823
56824 [[ar:Ų…ؚادا؊ اŲ„ØŗاŲ…ŲŠØŠ]]
56825 [[bg:АĐŊŅ‚иŅĐĩĐŧиŅ‚иСŅŠĐŧ]]
56826 [[cs:Antisemitismus]]
56827 [[cy:Gwrth-Semitiaeth]]
56828 [[da:Antisemitisme]]
56829 [[de:Antisemitismus bis 1945]]
56830 [[et:Antisemitism]]
56831 [[el:ΑÎŊĪ„ΚĪƒÎˇÎŧΚĪ„ΚĪƒÎŧĪŒĪ‚]]
56832 [[es:Antisemitismo]]
56833 [[eo:Antisemitismo]]
56834 [[fr:AntisÊmitisme]]
56835 [[hr:Antisemitizam]]
56836 [[it:Antisemitismo]]
56837 [[he:אנטישמיו×Ē]]
56838 [[hu:Antiszemitizmus]]
56839 [[mk:АĐŊŅ‚иŅĐĩĐŧиŅ‚иСаĐŧ]]
56840 [[nl:Antisemitisme]]
56841 [[ja:反ãƒĻダヤä¸ģįžŠ]]
56842 [[no:Antisemittisme]]
56843 [[pl:Antysemityzm]]
56844 [[pt:Anti-semitismo]]
56845 [[ro:Antisemitism]]
56846 [[ru:АĐŊŅ‚иŅĐĩĐŧиŅ‚иСĐŧ]]
56847 [[simple:Anti-Semitism]]
56848 [[sr:АĐŊŅ‚иŅĐĩĐŧиŅ‚иСаĐŧ]]
56849 [[fi:Antisemitismi]]
56850 [[sv:Antisemitism]]
56851 [[uk:АĐŊŅ‚иŅĐĩĐŧŅ–Ņ‚иСĐŧ]]
56852 [[zh:反įŠšå¤Ēä¸ģ义]]</text>
56853 </revision>
56854 </page>
56855 <page>
56856 <title>Apartheid</title>
56857 <id>1079</id>
56858 <restrictions>move=:edit=</restrictions>
56859 <revision>
56860 <id>19130408</id>
56861 <timestamp>2005-07-19T04:54:32Z</timestamp>
56862 <contributor>
56863 <username>Michael Snow</username>
56864 <id>34289</id>
56865 </contributor>
56866 <minor />
56867 <text xml:space="preserve">#REDIRECT [[History of South Africa in the apartheid era]]</text>
56868 </revision>
56869 </page>
56870 <page>
56871 <title>Azerbaijan/History</title>
56872 <id>1080</id>
56873 <revision>
56874 <id>15899585</id>
56875 <timestamp>2005-06-02T08:46:52Z</timestamp>
56876 <contributor>
56877 <username>Nohat</username>
56878 <id>13661</id>
56879 </contributor>
56880 <minor />
56881 <comment>Reverted edits by [[Special:Contributions/65.19.225.34|65.19.225.34]] to last version by LA2</comment>
56882 <text xml:space="preserve">#REDIRECT [[History of Azerbaijan]]</text>
56883 </revision>
56884 </page>
56885 <page>
56886 <title>Azerbaijan/Economy</title>
56887 <id>1081</id>
56888 <revision>
56889 <id>15899586</id>
56890 <timestamp>2002-02-25T15:43:11Z</timestamp>
56891 <contributor>
56892 <ip>128.227.167.135</ip>
56893 </contributor>
56894 <comment>*</comment>
56895 <text xml:space="preserve">#REDIRECT [[Economy of Azerbaijan]]</text>
56896 </revision>
56897 </page>
56898 <page>
56899 <title>Azerbaijan/Geography</title>
56900 <id>1082</id>
56901 <revision>
56902 <id>15899587</id>
56903 <timestamp>2002-02-25T15:43:11Z</timestamp>
56904 <contributor>
56905 <ip>128.227.167.135</ip>
56906 </contributor>
56907 <comment>*</comment>
56908 <text xml:space="preserve">#REDIRECT [[Geography of Azerbaijan]]</text>
56909 </revision>
56910 </page>
56911 <page>
56912 <title>Azerbaijan/People</title>
56913 <id>1083</id>
56914 <revision>
56915 <id>15899588</id>
56916 <timestamp>2002-08-20T15:34:25Z</timestamp>
56917 <contributor>
56918 <username>Koyaanis Qatsi</username>
56919 <id>90</id>
56920 </contributor>
56921 <text xml:space="preserve">#REDIRECT [[Demographics of Azerbaijan]]</text>
56922 </revision>
56923 </page>
56924 <page>
56925 <title>Azerbaijan/Government</title>
56926 <id>1084</id>
56927 <revision>
56928 <id>15899589</id>
56929 <timestamp>2002-08-20T10:22:45Z</timestamp>
56930 <contributor>
56931 <username>Koyaanis Qatsi</username>
56932 <id>90</id>
56933 </contributor>
56934 <minor />
56935 <text xml:space="preserve">#REDIRECT [[Politics of Azerbaijan]]</text>
56936 </revision>
56937 </page>
56938 <page>
56939 <title>Azerbaijan/Communications</title>
56940 <id>1085</id>
56941 <revision>
56942 <id>15899590</id>
56943 <timestamp>2002-02-25T15:43:11Z</timestamp>
56944 <contributor>
56945 <ip>128.227.167.135</ip>
56946 </contributor>
56947 <comment>*</comment>
56948 <text xml:space="preserve">#REDIRECT [[Communications in Azerbaijan]]</text>
56949 </revision>
56950 </page>
56951 <page>
56952 <title>Azerbaijan/Transportation</title>
56953 <id>1086</id>
56954 <revision>
56955 <id>15899591</id>
56956 <timestamp>2002-10-09T13:56:27Z</timestamp>
56957 <contributor>
56958 <username>Magnus Manske</username>
56959 <id>4</id>
56960 </contributor>
56961 <minor />
56962 <comment>#REDIRECT [[Transportation in Azerbaijan]]</comment>
56963 <text xml:space="preserve">#REDIRECT [[Transportation in Azerbaijan]]</text>
56964 </revision>
56965 </page>
56966 <page>
56967 <title>Azerbaijan/Transnational issues</title>
56968 <id>1087</id>
56969 <revision>
56970 <id>15899592</id>
56971 <timestamp>2002-02-25T15:51:15Z</timestamp>
56972 <contributor>
56973 <ip>128.227.167.135</ip>
56974 </contributor>
56975 <comment>*</comment>
56976 <text xml:space="preserve">#REDIRECT [[Foreign relations of Azerbaijan]]</text>
56977 </revision>
56978 </page>
56979 <page>
56980 <title>Azerbaijan/Military</title>
56981 <id>1088</id>
56982 <revision>
56983 <id>15899593</id>
56984 <timestamp>2002-02-25T15:43:11Z</timestamp>
56985 <contributor>
56986 <ip>128.227.167.135</ip>
56987 </contributor>
56988 <comment>*</comment>
56989 <text xml:space="preserve">#REDIRECT [[Military of Azerbaijan]]</text>
56990 </revision>
56991 </page>
56992 <page>
56993 <title>Azerbaijan/Foreign relations</title>
56994 <id>1089</id>
56995 <revision>
56996 <id>15899594</id>
56997 <timestamp>2002-02-25T15:51:15Z</timestamp>
56998 <contributor>
56999 <ip>128.227.167.135</ip>
57000 </contributor>
57001 <comment>*</comment>
57002 <text xml:space="preserve">#REDIRECT [[Foreign relations of Azerbaijan]]</text>
57003 </revision>
57004 </page>
57005 <page>
57006 <title>Armenia/Geography</title>
57007 <id>1091</id>
57008 <revision>
57009 <id>15899596</id>
57010 <timestamp>2002-08-03T16:41:54Z</timestamp>
57011 <contributor>
57012 <username>Ellmist</username>
57013 <id>2214</id>
57014 </contributor>
57015 <comment>move to Geography of Armenia</comment>
57016 <text xml:space="preserve">#REDIRECT [[Geography of Armenia]]</text>
57017 </revision>
57018 </page>
57019 <page>
57020 <title>Armenia/People</title>
57021 <id>1092</id>
57022 <revision>
57023 <id>15899597</id>
57024 <timestamp>2002-08-21T09:35:26Z</timestamp>
57025 <contributor>
57026 <username>-- April</username>
57027 <id>166</id>
57028 </contributor>
57029 <minor />
57030 <comment>fix redir</comment>
57031 <text xml:space="preserve">#REDIRECT [[Demographics of Armenia]]</text>
57032 </revision>
57033 </page>
57034 <page>
57035 <title>Armenia/Government</title>
57036 <id>1093</id>
57037 <revision>
57038 <id>15899598</id>
57039 <timestamp>2002-08-21T09:36:11Z</timestamp>
57040 <contributor>
57041 <username>-- April</username>
57042 <id>166</id>
57043 </contributor>
57044 <minor />
57045 <comment>fix redir</comment>
57046 <text xml:space="preserve">#REDIRECT [[Politics of Armenia]]</text>
57047 </revision>
57048 </page>
57049 <page>
57050 <title>Armenia/Economy</title>
57051 <id>1094</id>
57052 <revision>
57053 <id>15899599</id>
57054 <timestamp>2002-08-03T16:44:16Z</timestamp>
57055 <contributor>
57056 <username>Ellmist</username>
57057 <id>2214</id>
57058 </contributor>
57059 <comment>move to Economy of Armenia</comment>
57060 <text xml:space="preserve">#REDIRECT [[Economy of Armenia]]</text>
57061 </revision>
57062 </page>
57063 <page>
57064 <title>Armenia/Communications</title>
57065 <id>1095</id>
57066 <revision>
57067 <id>15899600</id>
57068 <timestamp>2002-08-18T19:25:01Z</timestamp>
57069 <contributor>
57070 <username>Koyaanis Qatsi</username>
57071 <id>90</id>
57072 </contributor>
57073 <text xml:space="preserve">#REDIRECT [[Communications in Armenia]]</text>
57074 </revision>
57075 </page>
57076 <page>
57077 <title>Armenia/Transportation</title>
57078 <id>1096</id>
57079 <revision>
57080 <id>15899601</id>
57081 <timestamp>2002-08-18T19:25:24Z</timestamp>
57082 <contributor>
57083 <username>Koyaanis Qatsi</username>
57084 <id>90</id>
57085 </contributor>
57086 <text xml:space="preserve">#REDIRECT [[Transportation in Armenia]]</text>
57087 </revision>
57088 </page>
57089 <page>
57090 <title>Armenia/Military</title>
57091 <id>1097</id>
57092 <revision>
57093 <id>15899602</id>
57094 <timestamp>2002-08-04T10:20:33Z</timestamp>
57095 <contributor>
57096 <username>Ellmist</username>
57097 <id>2214</id>
57098 </contributor>
57099 <comment>move to Military of Armenia</comment>
57100 <text xml:space="preserve">#REDIRECT [[Military of Armenia]]</text>
57101 </revision>
57102 </page>
57103 <page>
57104 <title>Armenia/Transnational issues</title>
57105 <id>1098</id>
57106 <revision>
57107 <id>15899603</id>
57108 <timestamp>2002-08-18T19:26:07Z</timestamp>
57109 <contributor>
57110 <username>Koyaanis Qatsi</username>
57111 <id>90</id>
57112 </contributor>
57113 <text xml:space="preserve">#REDIRECT [[Foreign relations of Armenia]]</text>
57114 </revision>
57115 </page>
57116 <page>
57117 <title>Argentina/Geography</title>
57118 <id>1099</id>
57119 <revision>
57120 <id>15899604</id>
57121 <timestamp>2002-08-03T16:32:47Z</timestamp>
57122 <contributor>
57123 <username>Ellmist</username>
57124 <id>2214</id>
57125 </contributor>
57126 <comment>move to Geography of Argentina</comment>
57127 <text xml:space="preserve">#REDIRECT [[Geography of Argentina]]</text>
57128 </revision>
57129 </page>
57130 <page>
57131 <title>Argentina/People</title>
57132 <id>1100</id>
57133 <revision>
57134 <id>15899605</id>
57135 <timestamp>2002-08-21T09:45:12Z</timestamp>
57136 <contributor>
57137 <username>-- April</username>
57138 <id>166</id>
57139 </contributor>
57140 <minor />
57141 <comment>fix redir</comment>
57142 <text xml:space="preserve">#REDIRECT [[Demographics of Argentina]]</text>
57143 </revision>
57144 </page>
57145 <page>
57146 <title>Argentina/Government</title>
57147 <id>1101</id>
57148 <revision>
57149 <id>15899606</id>
57150 <timestamp>2002-08-18T19:29:16Z</timestamp>
57151 <contributor>
57152 <username>Koyaanis Qatsi</username>
57153 <id>90</id>
57154 </contributor>
57155 <minor />
57156 <comment>cleaning up</comment>
57157 <text xml:space="preserve">#REDIRECT [[Politics of Argentina]]</text>
57158 </revision>
57159 </page>
57160 <page>
57161 <title>Argentina/Economy</title>
57162 <id>1102</id>
57163 <revision>
57164 <id>15899607</id>
57165 <timestamp>2002-08-03T16:35:09Z</timestamp>
57166 <contributor>
57167 <username>Ellmist</username>
57168 <id>2214</id>
57169 </contributor>
57170 <comment>move to Economy of Argentina</comment>
57171 <text xml:space="preserve">#REDIRECT [[Economy of Argentina]]</text>
57172 </revision>
57173 </page>
57174 <page>
57175 <title>Argentina/Communications</title>
57176 <id>1103</id>
57177 <revision>
57178 <id>15899608</id>
57179 <timestamp>2002-08-18T19:29:48Z</timestamp>
57180 <contributor>
57181 <username>Koyaanis Qatsi</username>
57182 <id>90</id>
57183 </contributor>
57184 <minor />
57185 <comment>cleaning up</comment>
57186 <text xml:space="preserve">#REDIRECT [[Communications in Argentina]]</text>
57187 </revision>
57188 </page>
57189 <page>
57190 <title>Argentina/Transportation</title>
57191 <id>1104</id>
57192 <revision>
57193 <id>15899609</id>
57194 <timestamp>2002-08-18T19:30:00Z</timestamp>
57195 <contributor>
57196 <username>Koyaanis Qatsi</username>
57197 <id>90</id>
57198 </contributor>
57199 <minor />
57200 <comment>cleaning up</comment>
57201 <text xml:space="preserve">#REDIRECT [[Transportation in Argentina]]</text>
57202 </revision>
57203 </page>
57204 <page>
57205 <title>Argentina/Transnational issues</title>
57206 <id>1105</id>
57207 <revision>
57208 <id>15899610</id>
57209 <timestamp>2002-08-18T19:30:31Z</timestamp>
57210 <contributor>
57211 <username>Koyaanis Qatsi</username>
57212 <id>90</id>
57213 </contributor>
57214 <minor />
57215 <comment>cleaning up</comment>
57216 <text xml:space="preserve">#REDIRECT [[Foreign relations of Argentina]]</text>
57217 </revision>
57218 </page>
57219 <page>
57220 <title>Argentina/Military</title>
57221 <id>1106</id>
57222 <revision>
57223 <id>15899611</id>
57224 <timestamp>2002-08-03T16:37:46Z</timestamp>
57225 <contributor>
57226 <username>Ellmist</username>
57227 <id>2214</id>
57228 </contributor>
57229 <comment>move to Military of Argentina</comment>
57230 <text xml:space="preserve">#REDIRECT [[Military of Argentina]]</text>
57231 </revision>
57232 </page>
57233 <page>
57234 <title>Argentina/History</title>
57235 <id>1107</id>
57236 <revision>
57237 <id>15899612</id>
57238 <timestamp>2002-02-25T15:43:11Z</timestamp>
57239 <contributor>
57240 <username>LA2</username>
57241 <id>445</id>
57242 </contributor>
57243 <comment>*</comment>
57244 <text xml:space="preserve">#REDIRECT [[History of Argentina]]
57245 </text>
57246 </revision>
57247 </page>
57248 <page>
57249 <title>Argentina/Foreign relations</title>
57250 <id>1108</id>
57251 <revision>
57252 <id>15899613</id>
57253 <timestamp>2002-08-03T16:38:45Z</timestamp>
57254 <contributor>
57255 <username>Ellmist</username>
57256 <id>2214</id>
57257 </contributor>
57258 <comment>move to Foreign relations of Argentina</comment>
57259 <text xml:space="preserve">#REDIRECT [[Foreign relations of Argentina]]</text>
57260 </revision>
57261 </page>
57262 <page>
57263 <title>Geography of American Samoa</title>
57264 <id>1109</id>
57265 <revision>
57266 <id>26994978</id>
57267 <timestamp>2005-10-31T18:53:26Z</timestamp>
57268 <contributor>
57269 <username>Marshman</username>
57270 <id>16734</id>
57271 </contributor>
57272 <text xml:space="preserve">This article describes the '''[[geography]] of [[American Samoa]]'''.
57273
57274 [[Image:aq-map.png|right|American Samoa]]
57275 [[Image:American Samoa.png|thumb|300px|Tutuila Island - NASA NLT Landsat 7 (Visible Color) Satellite Image]]
57276 ; Location:
57277 : Oceania, group of islands in the South [[Pacific Ocean]], about two thirds of the way from Hawaii to New Zealand
57278 ; Geographic coordinates:
57279 : {{coor dm|14|20|S|170|0|W|}}
57280 ; Map references:
57281 : Oceania
57282 ; Area:
57283 :* Total: 199 [[square kilometre|km²]]
57284 :* Land: 199 km&amp;sup2;
57285 :* Water: 0 km&amp;sup2;
57286 :* Note: Includes [[Rose Atoll]] and [[Swains Island]]
57287 ; Area - comparative:
57288 : Slightly larger than Washington, DC
57289 ; Land boundaries:
57290 : 0 km
57291 ; Coastline:
57292 : 116 km
57293 ; Maritime claims:
57294 :* [[Exclusive economic zone]]: 200 nm (370.4 km)
57295 :* [[Territorial sea]]: 12 nm (22.2 km)
57296 ; Climate:
57297 : Tropical marine, moderated by southeast [[trade wind]]s; annual rainfall averages about 3 m; [[rainy season]] from November to April, [[dry season]] from May to October; little seasonal temperature variation
57298 ; Island Names in order of size:
57299 : [[Tutuila]], [[Tau, Samoa|Ta&amp;lsquo;&amp;#363;]], [[Ofu-Olosega|Ofu]], [[Ofu-Olosega|Olosega]], [[Aunuu|Aunu&amp;lsquo;u]], [[Swains Island]], [[Rose Atoll]]
57300 ; Terrain:
57301 : Five volcanic islands with rugged peaks and limited coastal plains, two coral atolls (Rose and Swains)
57302 ; Elevation extremes:
57303 :* Lowest point: Pacific Ocean 0 m
57304 :* Highest point: Lata 966 m
57305 ; Natural resources:
57306 : [[Pumice]], [[pumicite]]
57307 ; Land use:
57308 :* [[Arable land]]: 5%
57309 :* Permanent crops: 10%
57310 :* Permanent pastures: 0%
57311 :* Forests and woodland: 70%
57312 :* Other: 15% (1993 est.)
57313 ; [[Irrigated land]]:
57314 : NA km&amp;sup2;
57315 ; Natural hazards:
57316 : Hurricane season from December to March; Hurricane Heta struck Tutuila and Manu`a January, 2004.
57317 : Landslides
57318 ; Environment - current issues:
57319 : Limited natural [[fresh water resources]]; the water division of the government has spent substantial funds in the past few years to expand well system, improve water catchments and pipelines
57320 ; Geography - note:
57321 : [[Pago Pago]] has one of the best natural deepwater harbors in the South Pacific Ocean, sheltered by shape from rough seas and protected by peripheral mountains from high winds; strategic location in the South Pacific Ocean
57322
57323 {{maplr|-14.3|-170.7|American Samoa}}
57324
57325 MapQuest zoom level 4 shows the location with respect to the state of Samoa.
57326
57327 [[Category:American Samoa]]
57328 [[Category:Geography by country|American Samoa]]
57329 [[he:&amp;#1490;&amp;#1488;&amp;#1493;&amp;#1490;&amp;#1512;&amp;#1508;&amp;#1497;&amp;#1492; &amp;#1513;&amp;#1500; &amp;#1505;&amp;#1502;&amp;#1493;&amp;#1488;&amp;#1492; &amp;#1492;&amp;#1488;&amp;#1502;&amp;#1512;&amp;#1497;&amp;#1511;&amp;#1488;&amp;#1497;&amp;#1514;]]</text>
57330 </revision>
57331 </page>
57332 <page>
57333 <title>Demographics of American Samoa</title>
57334 <id>1110</id>
57335 <revision>
57336 <id>39372997</id>
57337 <timestamp>2006-02-12T19:08:22Z</timestamp>
57338 <contributor>
57339 <ip>83.121.2.141</ip>
57340 </contributor>
57341 <comment>disambiguation from [[FAO]] to [[Food and Agriculture Organization]]</comment>
57342 <text xml:space="preserve">[[Image:Samoa American Demo.png|thumb|550px|center|Demographics of American Samoa, Data of [[Food and Agriculture Organization|FAO]], year 2005 ; Number of inhabitants in thousands.]]
57343 '''[[Population]]:'''
57344 57,902 (July 2004 est.)
57345
57346 '''Age structure:'''
57347 &lt;br&gt;''0-14 years:''
57348 36.6% (male 10,983; female 10,208)
57349 &lt;br&gt;''15-64 years:''
57350 60.3% (male 18,010; female 16,933)
57351 &lt;br&gt;''65 years and over:''
57352 3.1% (male 699; female 1,069) (2004 est.)
57353
57354 '''Population growth rate:'''
57355 0.04% (2004 est.)
57356
57357 '''[[Birth rate]]:'''
57358 24.46 births/1,000 population (2004 est.)
57359
57360 '''[[Death]] rate:'''
57361 3.39 deaths/1,000 population (2004 est.)
57362
57363 '''Net [[migration]] rate:'''
57364 -20.71 migrant(s)/1,000 population (2004 est.)
57365
57366 '''Sex ratio:'''
57367 &lt;br&gt;''at birth:''
57368 1.06 male(s)/female
57369 &lt;br&gt;''under 15 years:''
57370 1.08 male(s)/female
57371 &lt;br&gt;''15-64 years:''
57372 1.06 male(s)/female
57373 &lt;br&gt;''65 years and over:''
57374 0.65 male(s)/female
57375 &lt;br&gt;''total population:''
57376 1.05 male(s)/female (2004 est.)
57377
57378 '''[[Infant mortality]] rate:'''
57379 9.48 deaths/1,000 live births (2004 est.)
57380
57381 '''[[Life expectancy]] at birth:'''
57382 &lt;br&gt;''total population:''
57383 75.62 years
57384 &lt;br&gt;''male:''
57385 72.05 years
57386 &lt;br&gt;''female:''
57387 79.41 years (2004 est.)
57388
57389 '''Total [[fertility]] rate:'''
57390 3.41 children born/woman (2000 est.)
57391
57392 '''[[Nationality]]:'''
57393 &lt;br&gt;''noun:''
57394 American Samoan(s)
57395 &lt;br&gt;''adjective:''
57396 American Samoan
57397
57398 '''[[Ethnic group]]s:'''
57399 [[Samoa]]n ([[Polynesia]]n) 89%, [[whites|Caucasian]] 2%, [[Tonga]]n 4%, other 5%
57400
57401 '''[[Religion]]s:'''
57402 [[Christian Congregationalist]] 50%, [[Roman Catholicism|Roman Catholic]] 20%, [[Protestantism|Protestant]] and other 30%
57403
57404 '''Languages:'''
57405 [[Samoan language|Samoan]] (closely related to [[Hawaiian language|Hawaiian]] and other [[Polynesian languages]]), [[English language|English]]
57406 &lt;br&gt;''note:''
57407 most people are bilingual
57408
57409 '''[[Literacy]]:'''
57410 &lt;br&gt;''definition:''
57411 age 15 and over can read and write
57412 &lt;br&gt;''total population:''
57413 97%
57414 &lt;br&gt;''male:''
57415 98%
57416 &lt;br&gt;''female:''
57417 97% (1980 est.)
57418
57419 :''See also :'' [[American Samoa]]
57420 [[Category:American Samoa]]
57421 [[he:&amp;#1491;&amp;#1502;&amp;#1493;&amp;#1490;&amp;#1512;&amp;#1508;&amp;#1497;&amp;#1492; &amp;#1513;&amp;#1500; &amp;#1505;&amp;#1502;&amp;#1493;&amp;#1488;&amp;#1492; &amp;#1492;&amp;#1488;&amp;#1502;&amp;#1512;&amp;#1497;&amp;#1511;&amp;#1488;&amp;#1497;&amp;#1514;]]</text>
57422 </revision>
57423 </page>
57424 <page>
57425 <title>Politics of American Samoa</title>
57426 <id>1111</id>
57427 <revision>
57428 <id>39337438</id>
57429 <timestamp>2006-02-12T13:07:49Z</timestamp>
57430 <contributor>
57431 <username>Warofdreams</username>
57432 <id>20855</id>
57433 </contributor>
57434 <comment>{{Oceania in topic|Politics of}}</comment>
57435 <text xml:space="preserve">{{Politics of American Samoa}}
57436 '''Politics of American Samoa''' takes place in a framework of a [[presidential|presidential]] [[representative democracy|representative democratic]] [[dependency]], whereby the [[List of American Samoa Governors |Governor]] is the [[head of government]], and of a pluriform multi-party system. [[American Samoa]] is a unincorporated and [[unorganized territory]] of the [[United States]], administered by the [[Office of Insular Affairs]], [[US Department of the Interior]]. Its constitution was ratified [[1966]] and came into effect [[1967]]. [[Executive power]] is exercised by the government. [[Legislative power]] is vested in the two chambers of the legislature. The party system is a copy of the United States party system. The [[Judiciary]] is independent of the executive and the legislature.
57437
57438 ==Executive branch==
57439 {{office-table}}
57440 |President of the United States
57441 |[[George W. Bush]]
57442 |[[Republican Party (United States)|Republican]]
57443 |[[20 January]] [[2001]]
57444 |-
57445 |[[List of American Samoa Governors |Governor]]
57446 |[[Togiola Tulafono]]
57447 |[[Democratic Party (United States)|Democrat]]
57448 |[[26 March]] [[2003]]
57449 |}
57450 The [[governor]] and the [[lieutenant governor]] are elected on the same ticket by popular vote for four-year terms.
57451
57452 ==Legislative branch==
57453 The '''Legislature''' or ''Fono'' has two [[bicameralism|chambers]]. The [[American Samoa House of Representatives|House of Representatives]] has eighteen members, elected for a two year term, seventeen in single-seat [[constituency|constituencies]] and one by a public meeting on [[Swain Island]]. The [[American Samoa Senate|Senate]] has eighteen members, elected for a four year term by and from the chiefs of the islands.
57454
57455 ==Political parties and elections==
57456 {{elect|List of political parties in American Samoa|Elections in American Samoa}}
57457 {{American Samoa governor election, 2004}}
57458 {{American Samoa legislative election, 2004}}
57459 At the [[2 November]] [[2004]] election Eni F. H. Faleomavaega of the [[Democratic Party (United States)]] defeated the [[Republican Party (United States)|Republican]] candidate and was re-elected.
57460
57461 ==Judicial branch==
57462 The High Court ([[chief justice]] and [[associate justices]] are appointed by the [[US Secretary of the Interior]])
57463
57464 ===International organization participation===
57465 ESCAP (associate), Interpol (subbureau), IOC, SPC
57466
57467 {{Oceania in topic|Politics of}}
57468
57469 [[Category:Politics of American Samoa]]
57470 [[he:&amp;#1508;&amp;#1493;&amp;#1500;&amp;#1497;&amp;#1496;&amp;#1497;&amp;#1511;&amp;#1492; &amp;#1513;&amp;#1500; &amp;#1505;&amp;#1502;&amp;#1493;&amp;#1488;&amp;#1492; &amp;#1492;&amp;#1488;&amp;#1502;&amp;#1512;&amp;#1497;&amp;#1511;&amp;#1488;&amp;#1497;&amp;#1514;]]</text>
57471 </revision>
57472 </page>
57473 <page>
57474 <title>Economy of American Samoa</title>
57475 <id>1112</id>
57476 <revision>
57477 <id>35304727</id>
57478 <timestamp>2006-01-15T20:06:58Z</timestamp>
57479 <contributor>
57480 <username>Natalya</username>
57481 <id>154294</id>
57482 </contributor>
57483 <minor />
57484 <comment>/* Numbers */ disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
57485 <text xml:space="preserve">'''Economy - overview:'''
57486 This is a traditional [[Polynesia]]n economy in which more than 90% of the land is communally owned. Economic activity is strongly linked to the [[United States|US]], with which American Samoa conducts the great bulk of its foreign trade. [[Tuna]] [[fishing]] and tuna processing plants are the backbone of the private sector, with canned tuna the primary export. Transfers from the [[US Government]] add substantially to American Samoa's economic well-being. Attempts by the government to develop a larger and broader economy are restrained by Samoa's remote location, its limited transportation, and its devastating hurricanes. Tourism, a developing sector, may be held back by the current financial difficulties in East Asia.
57487
57488 ==Numbers==
57489 '''[[Gross domestic product|GDP]]:'''
57490 purchasing power parity - $500 million (2000 est.)
57491
57492 '''GDP - real growth rate:'''
57493 NA%
57494
57495 '''GDP - per capita:'''
57496 purchasing power parity - $8,000 (2000 est.)
57497
57498 '''GDP - composition by sector:'''
57499 &lt;br&gt;''agriculture:''
57500 NA%
57501 &lt;br&gt;''industry:''
57502 NA%
57503 &lt;br&gt;''services:''
57504 NA% (2002)
57505
57506 '''Population below poverty line:'''
57507 NA% (2002 est.)
57508
57509 '''Household income or consumption by percentage share:'''
57510 &lt;br&gt;''lowest 10%:''
57511 NA%
57512 &lt;br&gt;''highest 10%:''
57513 NA%
57514
57515 '''Inflation rate (consumer prices):'''
57516 NA% (2003 est.)
57517
57518 '''Labor force:'''
57519 14,000 (1996)
57520
57521 '''Labor force - by occupation:'''
57522 government 33%, tuna canneries 34%, other 33% (1990)
57523
57524 '''Unemployment rate:'''
57525 6% (2000)
57526
57527 '''Budget:'''
57528 &lt;br&gt;''revenues:''
57529 $121 million (37% in local revenue and 63% in US grants)
57530 &lt;br&gt;''expenditures:''
57531 $127 million, including capital expenditures of $NA (FY96/97)
57532
57533 '''Industries:'''
57534 tuna canneries (largely dependent on foreign fishing vessels), handicrafts
57535
57536 '''Industrial production growth rate:'''
57537 NA%
57538
57539 '''Electricity - production:'''
57540 130 GWh (2001)
57541
57542 '''Electricity - production by source:'''
57543 &lt;br&gt;''fossil fuel:''
57544 100%
57545 &lt;br&gt;''hydro:''
57546 0%
57547 &lt;br&gt;''nuclear:''
57548 0%
57549 &lt;br&gt;''other:''
57550 0% (2001)
57551
57552 '''Electricity - consumption:'''
57553 120.9 GWh (2001)
57554
57555 '''Electricity - exports:'''
57556 0 kWh (2001)
57557
57558 '''Electricity - imports:'''
57559 0 kWh (2001)
57560
57561 '''Oil - production:'''
57562 0 barrel/day (2001 est.)
57563
57564 '''Oil - consumption:'''
57565 3,800 barrel/day (604 m&amp;sup3;/d) 2001
57566
57567 '''Oil - exports:'''
57568 NA
57569
57570 '''Oil - imports:'''
57571 NA
57572
57573 '''Agriculture - products:'''
57574 [[banana]]s, [[coconut]]s, vegetables, [[taro]], [[breadfruit]], [[Yam (vegetable)|yams]], [[copra]], [[pineapple]]s, [[papaya]]s; dairy products, livestock
57575
57576 '''Exports:'''
57577 $30 million (2002)
57578
57579 '''Exports - commodities:'''
57580 canned tuna 93%
57581
57582 '''Exports - partners:'''
57583 [[Indonesia]] 70%, [[Australia]] 6.7%, [[Japan]] 6.7%, [[Samoa]] 6.7% (2002)
57584
57585 '''Imports:'''
57586 $123 million (2002)
57587
57588 '''Imports - commodities:'''
57589 materials for canneries 56%, food 8%, petroleum products 7%, machinery and parts 6%
57590
57591 '''Imports - partners:'''
57592 [[Australia]] 36.6%, [[New Zealand]] 20.3%, [[South Korea]] 16.3%, [[Mauritius]] 4.9% (2002)
57593
57594 '''Debt - external:'''
57595 $NA (2002 est.)
57596
57597 '''Economic aid - recipient:'''
57598 $NA; note - important financial support from the US, more than $40 million in 1994
57599
57600 '''Currency:'''
57601 US dollar (USD)
57602
57603 '''Currency code:'''
57604 USD
57605
57606 '''Exchange rates:'''
57607 US dollar is used
57608
57609 '''Fiscal year:'''
57610 [[1 October]] - [[30 September]]
57611
57612 ==See also==
57613 *[[American Samoa]]
57614
57615 [[Category:American Samoa]]
57616 [[Category:Economies by country|American Samoa]]
57617 [[he:&amp;#1499;&amp;#1500;&amp;#1499;&amp;#1500;&amp;#1514; &amp;#1505;&amp;#1502;&amp;#1493;&amp;#1488;&amp;#1492; &amp;#1492;&amp;#1488;&amp;#1502;&amp;#1512;&amp;#1497;&amp;#1511;&amp;#1488;&amp;#1497;&amp;#1514;]]</text>
57618 </revision>
57619 </page>
57620 <page>
57621 <title>Communications in American Samoa</title>
57622 <id>1113</id>
57623 <revision>
57624 <id>39121003</id>
57625 <timestamp>2006-02-10T21:20:43Z</timestamp>
57626 <contributor>
57627 <username>Bluemoose</username>
57628 <id>178836</id>
57629 </contributor>
57630 <comment>[[WP:AWB|AWB assisted]] clean up</comment>
57631 <text xml:space="preserve">[[Image:Stamp-us-samoa.jpg|frame|Oceangoing canoe]]
57632 '''[[Telephone]]s - main lines in use:'''
57633 15,000 (2001)
57634
57635 '''Telephones - mobile cellular:'''
57636 2,377 (1999)
57637
57638 '''Telephone system:'''
57639 &lt;br&gt;''domestic:''
57640 good [[teleprinter|telex]], telegraph, facsimile and cellular telephone services; domestic satellite system with 1 [[Comsat]] earth station
57641 &lt;br&gt;''international:''
57642 country code - 1 684; satellite earth station - 1 [[Intelsat]] ([[Pacific Ocean]])
57643
57644 '''[[Radio]] [[broadcasting|broadcast]] stations:'''
57645 AM 1, FM 1, shortwave 0 (1998)
57646
57647 '''Radios:'''
57648 57,000 (1997)
57649
57650 '''[[Television]] broadcast stations:'''
57651 1 (1997)
57652
57653 '''Televisions:'''
57654 14,000 (1997)
57655
57656 '''[[Internet Service Provider]]s (ISPs):'''
57657 Samoa Teleco
57658
57659 '''[[Internet country code]]:'''
57660 .as
57661
57662 '''[[Internet]] users:'''
57663 NA
57664
57665 :''See also :'' [[American Samoa]]
57666
57667 [[Category:American Samoa]]
57668 [[Category:Communications by country|American Samoa]]
57669
57670 [[he:×Ēקשור×Ē בסמואה האמריקאי×Ē]]</text>
57671 </revision>
57672 </page>
57673 <page>
57674 <title>Transport in American Samoa</title>
57675 <id>1114</id>
57676 <revision>
57677 <id>41267637</id>
57678 <timestamp>2006-02-26T04:32:08Z</timestamp>
57679 <contributor>
57680 <username>Rt66lt</username>
57681 <id>275075</id>
57682 </contributor>
57683 <comment>List of highways in AS</comment>
57684 <text xml:space="preserve">{{CIA}}
57685
57686 '''Railways:'''
57687 0 km
57688
57689 '''[[Highway]]s:'''
57690 &lt;br&gt;''total:''
57691 350 km
57692 &lt;br&gt;''paved:''
57693 150 km
57694 &lt;br&gt;''unpaved:''
57695 200 km
57696
57697 '''Ports and [[harbor]]s:'''
57698 [[Aunuu|Aunu&amp;lsquo;u]], [[Auasi]], [[Tau, Samoa|Fale&amp;#257;sao]], [[Ofu]], [[Pago Pago]]
57699
57700 '''[[Merchant marine]]:'''
57701 none (1999 est.)
57702
57703 '''[[Airport]]s:'''
57704 3 (2003 est.)
57705
57706 '''Airports - with paved runways:'''
57707 &lt;br&gt;''total:''
57708 3
57709 &lt;br&gt;''2,438 to 3,047 m:''
57710 1
57711 &lt;br&gt;''under 914 m:''
57712 2 (2005 est.)
57713
57714 '''Airports - with unpaved runways:'''
57715 &lt;br&gt;''total:''
57716 0
57717
57718 :''See also :'' [[American Samoa]], [[List of highways in American Samoa]]
57719
57720 {{Oceania in topic|Transport in}}
57721
57722 [[Category:American Samoa]]
57723 [[Category:Transportation by country|American Samoa]]
57724 [[he:&amp;#1514;&amp;#1495;&amp;#1489;&amp;#1493;&amp;#1512;&amp;#1492; &amp;#1489;&amp;#1505;&amp;#1502;&amp;#1493;&amp;#1488;&amp;#1492; &amp;#1492;&amp;#1488;&amp;#1502;&amp;#1512;&amp;#1497;&amp;#1511;&amp;#1488;&amp;#1497;&amp;#1514;]]</text>
57725 </revision>
57726 </page>
57727 <page>
57728 <title>American Samoa/Military</title>
57729 <id>1116</id>
57730 <revision>
57731 <id>15899620</id>
57732 <timestamp>2002-09-09T02:02:01Z</timestamp>
57733 <contributor>
57734 <username>-- April</username>
57735 <id>166</id>
57736 </contributor>
57737 <comment>merge with main page</comment>
57738 <text xml:space="preserve">#REDIRECT [[American Samoa]]</text>
57739 </revision>
57740 </page>
57741 <page>
57742 <title>Australia/Geography</title>
57743 <id>1117</id>
57744 <revision>
57745 <id>15899621</id>
57746 <timestamp>2002-08-04T10:23:36Z</timestamp>
57747 <contributor>
57748 <username>Ellmist</username>
57749 <id>2214</id>
57750 </contributor>
57751 <comment>move to Geography of Australia</comment>
57752 <text xml:space="preserve">#REDIRECT [[Geography of Australia]]</text>
57753 </revision>
57754 </page>
57755 <page>
57756 <title>Australia/People</title>
57757 <id>1118</id>
57758 <revision>
57759 <id>15899622</id>
57760 <timestamp>2002-08-21T10:43:17Z</timestamp>
57761 <contributor>
57762 <username>-- April</username>
57763 <id>166</id>
57764 </contributor>
57765 <minor />
57766 <comment>fix redirect</comment>
57767 <text xml:space="preserve">#REDIRECT [[Demographics of Australia]]</text>
57768 </revision>
57769 </page>
57770 <page>
57771 <title>Politics of Australia</title>
57772 <id>1119</id>
57773 <revision>
57774 <id>41231741</id>
57775 <timestamp>2006-02-25T23:16:51Z</timestamp>
57776 <contributor>
57777 <username>Grumpyyoungman01</username>
57778 <id>846078</id>
57779 </contributor>
57780 <minor />
57781 <comment>Added political blogs in australia to see also section</comment>
57782 <text xml:space="preserve">[[Image:Ac.johnhoward.jpg|thumb|right|175px|[[John Howard]] MP, Prime Minister of Australia and leader of the [[Liberal Party of Australia|Liberal Party]]]]
57783 [[Image:ac.kimbeazleynew.jpg|thumb|175px|[[Kim Beazley]] MP, Leader of the Opposition and Leader of the [[Australian Labor Party]]]]
57784
57785 The '''[[politics]] of [[Australia]]''' take place within the framework of [[democracy|parliamentary democracy]]. The government of Australia is a [[federation]], and Australians elect state and territory legislatures as well as a [[bicameral]] [[Parliament of Australia]] based on the [[Westminster System]].
57786
57787 At the national level, elections are held at least once every three years. The [[Prime Minister of Australia|Prime Minister]] can advise the Governor-General to call an election for the House of Representatives at any time, but Senate elections can only be held within certain periods prescribed in the [[Australian Constitution|Constitution]]. The last general election was in [[October]] [[2004]]. The [[Parliament of Australia|Parliament of the Commonwealth of Australia]] consists of two [[bicameralism|chambers]]:
57788 * The [[Australian House of Representatives|House of Representatives]] has 150 members, elected for a three year term in single-seat [[constituency|constituencies]] with a system of alternative vote known as [[instant-runoff voting | preferential voting]].
57789 * The [[Australian Senate|Senate]] has 76 members, elected through a preferential system in 12-seat state [[constituency|constituencies]] and two-seat territorial [[constituency|constituencies]] with a system of single non-transferable vote. Electors choose territorial senators for a three-year term. The state senators serve for a six-year term, with half of the seats renewed every three years.
57790
57791 ==Political parties and elections==
57792 {{elect|List of political parties in Australia|Elections in Australia}}
57793 {{Australian legislative election, 2004}}
57794 More info: [[Australian legislative election, 2004]]''
57795
57796 Three political parties dominate Australian politics. Of these, two govern together in a [[Coalition (Australia)|Coalition]]:
57797 *The [[Liberal Party of Australia|Liberal Party]] is a party of the centre-right which broadly represents business, the suburban middle classes and many rural people.
57798 *Its junior coalition partner is the [[National Party of Australia]], formerly the Country Party and now known for electoral purposes as &quot;The Nationals&quot;, a [[conservative]] party which represents rural interests.
57799 *The [[Australian Labor Party]] (ALP) is a [[Social democracy|social democratic]] party founded by the [[trade union]] movement and broadly represents the urban working class, although it increasingly has a base of middle class support.
57800
57801 Minor parties include:
57802 *The [[Australian Democrats]], a party of middle-class [[liberals]]
57803 *The [[Australian Greens]], a [[Left-wing politics|left-wing]] and [[environmentalism|environmentalist]] party
57804 *The [[Country Liberal Party]], a party which only represents the Northern Territory. It is part of the [[Liberal Party of Australia|Liberal]]/[[National Party of Australia|National]] [[Coalition (Australia)|Coalition]]
57805 *The [[Family First Party]], a party appealing to conservative [[Christianity|Christian]]s.
57806
57807 The proportional representation system allows these parties to win seats in the [[Australian Senate]] and in the state upper houses, but they have usually been unable to win seats in the House of Representatives (the Greens won a House seat at a [[2002]] [[by-election]], but lost it in the [[Australian legislative election, 2004|2004 general election]]).
57808
57809 The Liberal/National coalition came to power in the March [[1996]] election, ending 13 years of Labor government and making [[John Howard]] Prime Minister. He was subsequently re-elected in October [[1998]], November [[2001]] and October [[2004]]. The coalition now holds a comfortable majority in the House of Representatives. In the Senate, the Liberal/National coalition was in a minority until the [[Australian legislative election, 2004|2004 election]], but from July [[2005]] it has a working majority there. Until [[2004]], lacking a majority in the Senate, the Liberal/National coalition relied on negotiations with the smaller parties and independents to secure the passage of legislation.
57810
57811 Since its election, Howard's conservative coalition has moved to reduce the government's fiscal deficit and the influence of [[Australian labour movement|organised labour]], placing more emphasis on [[Enterprise Bargaining Agreement|workplace-based collective bargaining]] for wages. The Howard government also accelerated the pace of privatisation of government-owned enterprises that began with the [[Bob Hawke|Hawke]] Labor government. During its first two terms, the government's most sweeping change was the introduction of a [[Goods and Services Tax (Australia)|goods and services tax]]. With the re-election of the Howard government in 2004, several significant and controversial bills have been passed, due to the government's newly-acquired Senate majority. These major changes have included a [[Australian industrial relations legislation, 2005|radical revamp of industrial relations laws]], an introduction of [[voluntary student unionism]], and the full privatisation of telecommunications company [[Telstra]]. These changes have sparked major debate within Australia, forcing many critics to question whether the Howard government has lived up to its promise to use its Senate majority wisely.
57812
57813 The Howard government has reversed the foreign policy of its predecessor, placing renewed emphasis on relations with Australia's traditional allies, the [[United States]] and [[United Kingdom|Britain]] and downgrading support for the [[United Nations]] in favour of bilateralism. Both major parties support maintaining good relations with regional powers such as [[China]], [[Japan]] and [[Indonesia]], although issues such as the independence of [[East Timor]] have sometimes made this difficult. Australia has become increasingly involved in the internal difficulties of its smaller neighbours, such as [[Papua New Guinea]], [[Solomon Islands]], [[Fiji]] and [[Nauru]].
57814
57815 The [[list of political parties in Australia]] comprises the names and federal leaders of significant political parties as well as the names of other parties, including formerly significant parties.
57816
57817 ==Administrative divisions==
57818 In the [[States and territories of Australia|states and territories]], elections are held at least once every four years (except in [[Queensland]], which has three-year terms). In [[New South Wales]], [[Victoria (Australia)|Victoria]], [[South Australia]] and the [[Australian Capital Territory]], election dates are fixed by legislation. However, the other [[Premiers of the Australian states|state premiers]] and territory Chief Ministers have the same discretion in calling elections as the Prime Minister at the national level. (See ''Main articles: [[Australian electoral system]], [[Electoral systems of the Australian states and territories]]'').
57819
57820 Regional or local government within each state is handled by [[Local Government Area]]s and unlike other equivalent forms of local government such as those of the [[United States]], have relatively little power compared to the state governments (See ''Main article: [[Local government in Australia]]'').
57821
57822 ==See also==
57823 {{portalpar|Politics}}
57824 *[[List of Australian politicians]]
57825 *[[Politics of Australia and Canada compared]]
57826 *[[Politics of Australia and New Zealand compared]]
57827 *[[Political blogs in Australia]]
57828 {{Politics of Australia}}
57829
57830 {{Oceania in topic|Politics of}}
57831
57832 [[Category:Politics of Australia|*]]
57833
57834 [[lb:Politik vun Australien]]
57835 [[lt:Australijos politinė sistema]]
57836 [[pl:UstrÃŗj polityczny Australii]]
57837 [[pt:Política da AustrÃĄlia]]</text>
57838 </revision>
57839 </page>
57840 <page>
57841 <title>Australia/Economy</title>
57842 <id>1120</id>
57843 <revision>
57844 <id>15899624</id>
57845 <timestamp>2002-08-04T10:26:41Z</timestamp>
57846 <contributor>
57847 <username>Ellmist</username>
57848 <id>2214</id>
57849 </contributor>
57850 <comment>move to Economy of Australia</comment>
57851 <text xml:space="preserve">#REDIRECT [[Economy of Australia]]</text>
57852 </revision>
57853 </page>
57854 <page>
57855 <title>Australia/Communications</title>
57856 <id>1121</id>
57857 <revision>
57858 <id>15899625</id>
57859 <timestamp>2002-08-20T10:15:55Z</timestamp>
57860 <contributor>
57861 <username>Koyaanis Qatsi</username>
57862 <id>90</id>
57863 </contributor>
57864 <text xml:space="preserve">#REDIRECT [[Communications in Australia]]</text>
57865 </revision>
57866 </page>
57867 <page>
57868 <title>Australia/Transportation</title>
57869 <id>1122</id>
57870 <revision>
57871 <id>15899626</id>
57872 <timestamp>2004-12-31T10:33:11Z</timestamp>
57873 <contributor>
57874 <username>Jguk</username>
57875 <id>145867</id>
57876 </contributor>
57877 <minor />
57878 <text xml:space="preserve">#REDIRECT [[Transport in Australia]]</text>
57879 </revision>
57880 </page>
57881 <page>
57882 <title>Australia/Transnational issues</title>
57883 <id>1123</id>
57884 <revision>
57885 <id>15899627</id>
57886 <timestamp>2002-08-20T10:16:54Z</timestamp>
57887 <contributor>
57888 <username>Koyaanis Qatsi</username>
57889 <id>90</id>
57890 </contributor>
57891 <text xml:space="preserve">#REDIRECT [[Foreign relations of Australia]]</text>
57892 </revision>
57893 </page>
57894 <page>
57895 <title>Australia/Military</title>
57896 <id>1124</id>
57897 <revision>
57898 <id>15899628</id>
57899 <timestamp>2005-05-01T07:08:55Z</timestamp>
57900 <contributor>
57901 <ip>212.100.250.225</ip>
57902 </contributor>
57903 <comment>[[WP:WS|Please help out by clicking here to fix someone else's Wiki Syntax]]</comment>
57904 <text xml:space="preserve">#REDIRECT [[Australian Defence Force]]</text>
57905 </revision>
57906 </page>
57907 <page>
57908 <title>Australia/History</title>
57909 <id>1125</id>
57910 <revision>
57911 <id>15899629</id>
57912 <timestamp>2002-02-25T15:43:11Z</timestamp>
57913 <contributor>
57914 <username>LA2</username>
57915 <id>445</id>
57916 </contributor>
57917 <comment>*</comment>
57918 <text xml:space="preserve">#REDIRECT [[History of Australia]]</text>
57919 </revision>
57920 </page>
57921 <page>
57922 <title>Australia/Foreign relations</title>
57923 <id>1126</id>
57924 <revision>
57925 <id>15899630</id>
57926 <timestamp>2002-08-04T10:29:31Z</timestamp>
57927 <contributor>
57928 <username>Ellmist</username>
57929 <id>2214</id>
57930 </contributor>
57931 <comment>move to Foreign relations of Australia</comment>
57932 <text xml:space="preserve">#REDIRECT [[Foreign relations of Australia]]</text>
57933 </revision>
57934 </page>
57935 <page>
57936 <title>Australia/Music</title>
57937 <id>1127</id>
57938 <revision>
57939 <id>15899631</id>
57940 <timestamp>2002-08-04T10:24:28Z</timestamp>
57941 <contributor>
57942 <username>Ellmist</username>
57943 <id>2214</id>
57944 </contributor>
57945 <comment>move to Music of Australia</comment>
57946 <text xml:space="preserve">#REDIRECT [[Music of Australia]]</text>
57947 </revision>
57948 </page>
57949 <page>
57950 <title>August 13</title>
57951 <id>1129</id>
57952 <revision>
57953 <id>42078785</id>
57954 <timestamp>2006-03-03T17:59:17Z</timestamp>
57955 <contributor>
57956 <username>Rich Farmbrough</username>
57957 <id>82835</id>
57958 </contributor>
57959 <minor />
57960 <comment>Wikify dates</comment>
57961 <text xml:space="preserve">{| style=&quot;float:right;&quot;
57962 |-
57963 |{{AugustCalendar}}
57964 |-
57965 |{{ThisDateInRecentYears|Month=August|Day=13}}
57966 |}
57967 '''[[August 13]]''' is the 225th day of the year in the [[Gregorian Calendar]] (226th in [[leap year]]s), with 140 days remaining.
57968
57969 ==Events==
57970 *[[3114 BC]] - According to the Lounsbury corollation, the [[Maya calendar]] starts.
57971 *[[523]] - [[Pope John I|John]] succeeds [[Hormisdas]] as [[Pope]].
57972 *[[1099]] - [[Pope Paschal II|Paschal II]] elected [[Pope]].
57973 *[[1315]] - [[Louis X of France]] marries Clemence d'Anjou.
57974 *[[1326]] - [[Aradia de Toscano]], according to legend/folklore, is initiated into a [[Diana (goddess)|Dianic]] [[witchcraft]] cult, subsequently founds the tradition of [[Stregheria]] later known as the [[Malandanti]].
57975 *[[1415]] - [[Henry V of England]] lands at [[Chef-en-Caux]], [[France]] with 8000 men.
57976 *[[1516]] - [[Treaty of Noyon]] between [[France]] and [[Spain]] signed. In it, [[Francis I of France|Francis]] recognizes [[Charles V, Holy Roman Emperor|Charles]]'s claim to [[Naples]], and Charles recognizes Francis's claim to [[Milan]].
57977 *[[1521]] - [[TenochtitlÃĄn]] (present day [[Mexico City]]) falls to [[conquistador]] [[HernÃĄn CortÊs]]
57978 *[[1536]] - Buddhist monks from Kyoto's [[Enryaku-ji|Enryaku Temple]] set fire to 21 [[Nichiren Buddhism|Nichiren]] temples throughout [[Kyoto]] in the Tenbun Hokke Disturbance. (Traditional [[Japanese calendar|Japanese date]]: [[July 27]] [[1536]]).
57979 *[[1553]] - [[Michael Servetus]] arrested by [[John Calvin]] in [[Geneva]] as a [[heresy|heretic]].
57980 *[[1704]] - [[War of the Spanish Succession]]: [[Battle of Blenheim]] - English and Austrians victorious over French and Bavarians.
57981 *[[1814]] - The [[Anglo-Dutch Treaty of 1814|Convention of London]], a [[treaty]] between the [[United Kingdom]] and the [[Dutch Republic|United Provinces]], is signed in [[London]].
57982 *[[1905]] - [[Norway]] holds [[referendum]] in favour of dissolving the union with [[Sweden]].
57983 *[[1913]] - [[Otto Witte]], an acrobat, is crowned King of [[Albania]].
57984 *1913 - Invention of [[stainless steel]] by [[Harry Brearley]].
57985 *[[1918]] - Women enlist in the [[United States Marine Corps]] for the first time. [[Opha Mae Johnson]] is the first woman to enlist.
57986 *[[1920]] - [[Polish-Soviet War]]: [[Battle of Warsaw (1920)|Battle of Warsaw]] begins, lasts till [[August 25]]. The [[Red Army]] is defeated.
57987 *[[1923]] - First major sea-going ship arrives at [[Gdynia]], newly constructed [[Poland|Polish]] seaport.
57988 *[[1937]] - [[Battle of Shanghai (1937)]] begins.
57989 *[[1940]] - [[World War II]]: [[Battle of Britain]] begins - The [[Luftwaffe]] launches a series of attacks on [[United Kingdom|British]] fighter bases and [[radar]] installations.
57990 *[[1942]] - [[Walt Disney]]'s fifth [[animated feature]], ''[[Bambi (1942 movie)|Bambi]]'', premiers.
57991 *[[1960]] - The [[Central African Republic]] declares independence from [[France]].
57992 *[[1961]] - The [[German Democratic Republic]] closes the border between the eastern and western sectors of [[Berlin]], to thwart its inhabitants' attempts to escape to the [[Western countries|West]].
57993 *[[1968]] - [[Alexandros Panagoulis]] attempts to assassinate the Greek dictator Colonel G. Papadopoulos in Varkiza, [[Athens]], [[Greece]].
57994 *[[1987]] - U.S. President [[Ronald Reagan]] assumes responsibility for his role in the [[Iran-Contra scandal]].
57995 *[[1996]] - [[Marc Dutroux]], his wife Michelle Martin, and Michel Lelièvre are arrested on suspicion of [[kidnapping]]. All are found guilty on [[June 22]], [[2004]], with sentences of life, 30, and 25 years, respectively.
57996 *[[1997]] - ''[[South Park]]'' debuts on [[Comedy Central]].
57997 *[[2004]] - The 28th [[Summer Olympics]] opens in [[Athens, Greece]].
57998 *2004 - [[Hurricane Charley]], a Category 4 storm, strikes the [[Fort Myers, Florida]], area.
57999 *2004 - [[Black Friday (Maldives)|Black Friday]] crackdown by [[National Security Service (Maldives)|NSS]] on a peaceful protest in the capital city of [[Maldives]], [[MalÊ]].
58000 *2004 - 156 [[Democratic Republic of the Congo|Congolese]] [[Tutsi]] refugees massacred at the [[Gatumba]] [[refugee camp]] in [[Burundi]].
58001 *2004 - [[Adam Curry]]'s first [[Daily Source Code]] is created, launching [[podcasting]].
58002
58003 ==Births==
58004 *[[582]] - [[Arnulf of Metz]], French bishop and saint (d. [[640]])
58005 *[[1311]] - King [[Alfonso XI of Castile]] and Leon (d. [[1350]])
58006 *[[1313]] - [[Aradia de Toscano]], Italian insurrectionist, teacher, and witch
58007 *[[1584]] - [[Theophilus Howard, 2nd Earl of Suffolk]], English politician (d. [[1640]])
58008 *[[1625]] - [[Rasmus Bartholin]], Danish physician, mathematician, and physicist (d. [[1698]])
58009 *[[1662]] - [[Charles Seymour, 6th Duke of Somerset]], English politician (d. [[1748]])
58010 *[[1666]] - [[William Wotton]], English scholar (d. [[1727]])
58011 *[[1700]] - [[Heinrich, count von BrÃŧhl]], German statesman (d. [[1763]])
58012 *[[1717]] - [[Louis François I, Prince of Conti]], French military leader (d. [[1776]])
58013 *[[1721]] - [[Jacques Lelong]], French bibliographer (b. [[1665]])
58014 *[[1792]] - [[Adelaide of Saxe-Meiningen]], queen of [[William IV of the United Kingdom]] (d. [[1849]])
58015 *[[1803]] - [[Vladimir Odoevsky]], Russian philosopher and writer (d. [[1869]])
58016 *[[1814]] - [[Anders Jonas ÅngstrÃļm]], Swedish physicist (d. [[1874]])
58017 *[[1818]] - [[Lucy Stone]], American suffragette (d. [[1893]])
58018 *[[1819]] - [[George Gabriel Stokes]], French physicist (d. [[1903]])
58019 *[[1820]] - Sir [[George Grove]], English music historian (d. [[1900]])
58020 *[[1823]] - [[Goldwin Smith]], English-born historian and journalist (d. [[1910]])
58021 *[[1851]] - [[Felix Adler]], German-born educator (d. [[1933]])
58022 *[[1860]] - [[Annie Oakley]], American sharpshooter (d. [[1926]])
58023 *[[1866]] - [[Giovanni Agnelli]], Italian industrialist (d. [[1945]])
58024 *[[1872]] - [[Richard Willstätter]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1942]])
58025 *[[1879]] - [[John Ireland]], English composer (d. [[1962]])
58026 *[[1887]] - [[Julius Freed]], American inventor and banker (d. [[1952]])
58027 *[[1888]] - [[John Logie Baird]], Scottish television pioneer (d. [[1946]])
58028 *[[1895]] - [[Bert Lahr]], American actor (d. [[1967]])
58029 *[[1899]] - [[Sir Alfred Joseph Hitchcock]], English film director (d. [[1980]])
58030 *[[1902]] - [[Felix Wankel]], German engineer and inventor (d. [[1988]])
58031 *[[1904]] - [[Charles 'Buddy' Rogers]], American actor (d. [[1999]])
58032 *[[1907]] - Sir [[Basil Spence]], Scottish architect (d. [[1976]])
58033 *[[1912]] - [[Ben Hogan]], American golfer (d. [[1997]])
58034 *1912 - [[Salvador Luria]], Italian-born biologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1991]])
58035 *[[1913]] - [[Fred Davis]], English snooker player (d. [[1998]])
58036 *[[1918]] - [[Frederick Sanger]], English chemist, [[Nobel Prize in Chemistry|Nobel Pirze]] laureate
58037 *[[1919]] - [[George Shearing]], British musician
58038 *[[1920]] - [[Neville Brand]], American actor (d. [[1992]])
58039 *[[1926]] - [[Fidel Castro]], Cuban revolutionary and politician
58040 *[[1930]] - [[Don Ho]], American musician
58041 *[[1933]] - Doctor [[Joycelyn Elders]], [[United States Surgeon General]]
58042 *[[1941]] - [[Erin Fleming]], Canadian actress (d. [[2003]])
58043 *[[1944]] - [[Kevin Tighe]], American actor
58044 *[[1948]] - [[Kathleen Battle]], American soprano
58045 *[[1949]] - [[Bobby Clarke]], Canadian hockey player
58046 *[[1951]] - [[Dan Fogelberg]], American singer
58047 *[[1952]] - [[Herb Ritts]], American photographer (d. [[2004]])
58048 *[[1959]] - [[Danny Bonaduce]], American actor
58049 *[[1961]] - [[Sandra Miranda]], Puerto Rican Hair Stylist and Entrepeneur
58050 *[[1967]] - [[AmÊlie Nothomb]], Belgian writer
58051 *[[1969]] - [[Midori Ito]], Japanese figure skater
58052 *[[1970]] - [[Matthew Hyson]], American professional wrestler
58053 *1970 - [[Alan Shearer]], English footballer
58054 *[[1971]] - [[Nichola Holt]], contestant in [[Big Brother UK series 1]] and porn actress
58055 *[[1972]] - [[Hani Hanjour]], [[September 11, 2001]] pilot and terrorist
58056 *[[1973]] - [[Brittany Andrews]], American model and actress
58057 *[[1975]] - [[Joe Perry (snooker player)|Joe Perry]], English snooker player
58058 *[[1977]] - [[Michael Klim]], Australian swimmer
58059 *[[1979]] - [[Taizo Sugimura]], Japanese politician
58060 *[[1982]] - [[Shani Davis]], American speed skater
58061
58062 ==Deaths==
58063 *[[586]] - [[Radegund]], queen of [[Clotaire I]]
58064 *[[900]] - [[Zwentibold]], last King of Lotharingia (b. [[870]])
58065 *[[1382]] - [[Eleanor of Aragon]], queen of [[John I of Castile]] (b. [[1358]])
58066 *[[1523]] - [[Gerard David]], Flemish painter
58067 *[[1617]] - [[Johann Jakob Grynaeus]], Swiss protestant clergyman (b. [[1540]])
58068 *[[1667]] - [[Jeremy Taylor]], Irish author and bishop (b. [[1613]])
58069 *[[1686]] - [[Louis Maimbourg]], French-born historian (b. [[1610]])
58070 *[[1744]] - [[John Cruger]], Dutch-born Mayor of New York (b. [[1678]])
58071 *[[1749]] - [[Johann Elias Schlegel]], German critic and poet (b. [[1719]])
58072 *[[1755]] - [[Francesco Durante]], Italian composer (b. [[1684]])
58073 *[[1826]] - [[RenÊ LaÃĢnnec]], French physician (b. [[1781]])
58074 *[[1863]] - [[Eugène Delacroix]], French painter (b. [[1798]])
58075 *[[1865]] - [[Ignaz Semmelweis]], Austro-Hungarian physician (b. [[1818]])
58076 *[[1910]] - [[Florence Nightingale]], English nurse (b. [[1820]])
58077 *[[1912]] - [[Jules Massenet]], French composer (b. [[1842]])
58078 *[[1917]] - [[Eduard Buchner]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1860]])
58079 *[[1946]] - [[H. G. Wells]], English writer (b. [[1866]])
58080 *[[1958]] - [[Otto Witte]], acrobat and King of Albania (b. [[1868]])
58081 *[[1965]] - [[Ikeda Hayato]], [[Prime Minister of Japan]] (b. [[1899]])
58082 *[[1984]] - [[Tigran Petrosian]], Georgian chess player (b. [[1929]]).
58083 *[[1989]] - [[Tim Richmond]], American race car driver (b. [[1955]])
58084 *[[1994]] - [[Elias Canetti]], Bulgarian-born writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1905]])
58085 *[[1995]] - [[Jan Kresadlo|Jan K&amp;#345;esadlo]], Czech-born writer (b. [[1926]])
58086 *1995 - [[Mickey Mantle]], baseball player (b. [[1931]])
58087 *[[1996]] - [[David Tudor]], American pianist and composer (b. [[1926]]).
58088 *[[1999]] - [[Jaime GarzÃŗn]], [[Colombia]]n [[journalist]] and [[comedian]], murdered (b. [[1960]])
58089 *[[2003]] - [[Ed Townsend]], American songwriter and producer (b. [[1929]]).
58090 *[[2004]] - [[Julia Child]], American chef and television personality (b. [[1912]])
58091 *[[2005]] - [[David Lange]], [[Prime Minister of New Zealand]] (b. [[1942]])
58092
58093 ==Holidays and observances==
58094 *[[Roman festivals]] - [[Vertumnalias]] in honor of [[Vertumnus]], and also Diana, on the [[Aventine]] hill
58095 *[[Calendar of saints|RC saints]] - [[Pontian|Pontianus]] and [[Hippolytus (writer)|Hippolytus]], [[Radegund|Radegunde]] (help against the pox), [[Cassian|Cassianus of Imola]] (patron of shorthand-writers)
58096 *[[International Lefthanders Day]]
58097 * In Brasil, Friday [[13 August]] (''agosto'') is considered to be especially filled with sorrow (''desgosto'')
58098
58099 ==External links==
58100 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/13 BBC: On This Day]
58101
58102 ----
58103
58104 [[August 12]] - [[August 14]] - [[July 13]] - [[September 13]] -- [[historical anniversaries|listing of all days]]
58105
58106 {{months}}
58107
58108 [[af:13 Augustus]]
58109 [[ar:13 ØŖØēØŗØˇØŗ]]
58110 [[an:13 d'agosto]]
58111 [[ast:13 d'agostu]]
58112 [[bg:13 авĐŗŅƒŅŅ‚]]
58113 [[be:13 ĐļĐŊŅ–ŅžĐŊŅ]]
58114 [[bs:13. august]]
58115 [[ca:13 d'agost]]
58116 [[ceb:Agosto 13]]
58117 [[cv:ÇŅƒŅ€ĐģĐ°, 13]]
58118 [[co:13 d'aostu]]
58119 [[cs:13. srpen]]
58120 [[cy:13 Awst]]
58121 [[da:13. august]]
58122 [[de:13. August]]
58123 [[et:13. august]]
58124 [[el:13 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
58125 [[es:13 de agosto]]
58126 [[eo:13-a de aÅ­gusto]]
58127 [[eu:Abuztuaren 13]]
58128 [[fo:13. august]]
58129 [[fr:13 aoÃģt]]
58130 [[fy:13 augustus]]
58131 [[ga:13 LÃēnasa]]
58132 [[gl:13 de agosto]]
58133 [[ko:8ė›” 13ėŧ]]
58134 [[hr:13. kolovoza]]
58135 [[io:13 di agosto]]
58136 [[id:13 Agustus]]
58137 [[ia:13 de augusto]]
58138 [[ie:13 august]]
58139 [[is:13. ÃĄgÃēst]]
58140 [[it:13 agosto]]
58141 [[he:13 באוגוסט]]
58142 [[jv:13 Agustus]]
58143 [[ka:13 აგვისáƒĸო]]
58144 [[csb:13 zÊlnika]]
58145 [[ku:13'ÃĒ gelawÃĒjÃĒ]]
58146 [[lt:RugpjÅĢčio 13]]
58147 [[lb:13. August]]
58148 [[li:13 augustus]]
58149 [[hu:Augusztus 13]]
58150 [[mk:13 авĐŗŅƒŅŅ‚]]
58151 [[ms:13 Ogos]]
58152 [[nap:13 'e aÚsto]]
58153 [[nl:13 augustus]]
58154 [[ja:8月13æ—Ĩ]]
58155 [[no:13. august]]
58156 [[nn:13. august]]
58157 [[oc:13 d'agost]]
58158 [[pl:13 sierpnia]]
58159 [[pt:13 de Agosto]]
58160 [[ro:13 august]]
58161 [[ru:13 авĐŗŅƒŅŅ‚Đ°]]
58162 [[sco:13 August]]
58163 [[sq:13 Gusht]]
58164 [[scn:13 di austu]]
58165 [[simple:August 13]]
58166 [[sk:13. august]]
58167 [[sl:13. avgust]]
58168 [[sr:13. авĐŗŅƒŅŅ‚]]
58169 [[fi:13. elokuuta]]
58170 [[sv:13 augusti]]
58171 [[tl:Agosto 13]]
58172 [[tt:13. August]]
58173 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 13]]
58174 [[th:13 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
58175 [[vi:13 thÃĄng 8]]
58176 [[tr:13 Ağustos]]
58177 [[uk:13 ŅĐĩŅ€ĐŋĐŊŅ]]
58178 [[wa:13 d' awousse]]
58179 [[war:Agosto 13]]
58180 [[zh:8月13æ—Ĩ]]
58181 [[pam:Agostu 13]]</text>
58182 </revision>
58183 </page>
58184 <page>
58185 <title>Avicenna</title>
58186 <id>1130</id>
58187 <revision>
58188 <id>41797752</id>
58189 <timestamp>2006-03-01T20:45:08Z</timestamp>
58190 <contributor>
58191 <username>Zmmz</username>
58192 <id>944720</id>
58193 </contributor>
58194 <comment>consistent with britannica, columbia, merriam-webster etc.</comment>
58195 <text xml:space="preserve">[[Image:AvicennaPersian.jpg|thumb|The works of Avicenna, the greatest of the medieval Islamic physicians, played a crucial role in the [[European Renaissance]].]]
58196 '''AbÅĢ ‘AlÄĢ al-Ḥusayn ibn ‘Abd Allāh ibn SÄĢnā''' ([[Arabic language|Arabic]]: '''ØŖبŲˆ ØšŲ„ŲŠ اŲ„Ø­ØŗŲŠŲ† بŲ† ؚبد اŲ„Ų„Ų‡ بŲ† ØŗŲŠŲ†Ø§''') often refered to by his [[Latinized]] name '''Avicenna''' was a [[Persian]] [[Muslim]] [[physician]], [[philosopher]], and [[scientist]] who was born in [[980]] in [[Kharmaithen]] near [[Bukhara]], now in [[Uzbekistan]] (then [[Iran]]), and died June [[1037]] in [[Hamadan]], [[Iran]].
58197
58198 He was the [[author]] of 450 books on a wide range of subjects. Many of these concentrated on [[philosophy]] and [[medicine]]. He is considered by many to be &quot;the father of modern medicine.&quot; [[George Sarton]] called Ibn Sina &quot;the most famous scientist of [[Islam]] and one of the most famous of all races, places, and times.&quot; His most famous works are ''[[The Book of Healing]]'' and ''[[The Canon of Medicine]]'', also known as the ''Qanun'' (full title: ''al-qanun fil-tibb'').
58199
58200 ==Early life==
58201 His life is known to us from authoritative sources. An autobiography covers his first thirty years, and the rest are documented by his disciple al-Juzajani, who was also his secretary and his friend.
58202
58203 He was born in 370 (AH) / 980 (AD) in Afshana, his mother's home, a small city now part of [[Uzbekistan]] (then part of the Islamic [[Caliphate]]) and his Father from [[Balkh]] now part of [[Afghanistan]] (then also part of the Islamic [[Caliphate]]). His native language was Persian. His father, an official of the Samanid administration, had him very carefully educated at Bukhara. Although traditionally influenced by the [[Ismaili]] branch of Islam, his independent thought was served by an extraordinary intelligence and memory, which allowed him to overtake his teachers at the age of fourteen.
58204
58205 [[Ibn Sina]] was put under the charge of a tutor, and his precocity soon made him the marvel of his neighbours; he displayed exceptional [[intellect]]ual behaviour and was a [[Child prodigy|child prodigy]] who had memorized the [[Koran]] by the age of 10 and a great deal of [[Arabic poetry]] as well. From a greengrocer he learned [[arithmetic]], and he began to learn more from a wandering scholar who gained a livelihood by curing the sick and teaching the young.
58206
58207 However he was greatly troubled by [[metaphysics|metaphysical]] problems and in particular the works of [[Aristotle]]. So, for the next year and a half, he also studied [[philosophy]], in which he encountered greater obstacles. In such moments of baffled inquiry, he would leave his books, perform the requisite ablutions, then go to the [[mosque]], and continue in prayer till light broke on his difficulties. Deep into the night he would continue his studies, stimulating his senses by occasional cups of goat's milk, and even in his dreams problems would pursue him and work out their solution. Forty times, it is said, he read through the ''Metaphysics'' of [[Aristotle]], till the words were imprinted on his memory; but their meaning was hopelessly obscure, until one day they found illumination, from the little commentary by [[Farabi]], which he bought at a bookstall for the small sum of three dirhems. So great was his joy at the discovery, thus made by help of a work from which he had expected only mystery, that he hastened to return thanks to God, and bestowed alms upon the poor.
58208
58209 He turned to [[medicine]] at 16, and not only learned medical theory, but by gratuitous attendance on the sick had, according to his own account, discovered new methods of [[treatment]]. The teenager achieved full status as a physician at age 18 and found that &quot;Medicine is no hard and thorny science, like [[mathematics]] and [[metaphysics]], so I soon made great progress; I became an excellent doctor and began to treat patients, using approved remedies.&quot; The youthful physician's fame spread quickly, and he treated many patients without asking for payment.
58210
58211 His first appointment was that of physician to the [[emir]], who owed him his recovery from a dangerous illness ([[997]]). Ibn Sina's chief reward for this service was access to the royal [[library]] of the [[Samanids]], well-known patrons of scholarship and scholars. When the library was destroyed by fire not long after, the enemies of Ibn Sina accused him of burning it, in order for ever to conceal the sources of his knowledge. Meanwhile, he assisted his father in his financial labours, but still found time to write some of his earliest works.
58212
58213 When Ibn Sina was 22 years old, he lost his father. The [[Samanid dynasty]] came to its end in December [[1004]]. Ibn Sina seems to have declined the offers of [[Mahmud of Ghazni]], and Ibn Sina proceeded westwards to [[Urgench]] in the modern [[Uzbekistan]], where the [[vizier]], regarded as a friend of scholars, gave him a small monthly stipend. The pay was small, however, so Ibn Sina wandered from place to place through the districts of [[Nishapur]] and [[Merv]] to the borders of [[Khorasan]], seeking an opening for his talents. [[Shams al-Ma'äli Qäbtis]], the generous ruler of [[Dailam]], himself a poet and a scholar, with whom Ibn Sina had expected to find an asylum, was about that date ([[1052]]) starved to death by his own revolted soldiery. Ibn Sina himself was at this season stricken down by a severe illness. Finally, at [[Gorgan]], near the [[Caspian Sea]], Ibn Sina met with a friend, who bought a dwelling near his own house in which Ibn Sina lectured on [[logic]] and [[astronomy]]. For this patron, several of Ibn Sina's treatises were written; and the commencement of his ''Canon of Medicine'' also dates from his stay in [[Hyrcania]].
58214
58215 [[image:Avicenna2.jpg|thumb|200px|left|Poland commemorated Avicenna's life and work in this postage stamp]]
58216
58217 Ibn Sina subsequently settled at [[Ray, Iran|Rai]], in the vicinity of the modern [[Tehran]], (present day capital of Iran), the home town of [[Rhazes]]; where [[Majd Addaula]], a son of the last [[emir]], was nominal ruler under the regency of his mother ([[Seyyedeh Khatun]]). At Rai about thirty of his shorter works are said to have been composed. Constant feuds which raged between the regent and her second son, [[Amir Shamsud-Dawala]], compelling the scholar to quit the place. After a brief sojourn at [[Qazvin]], he passed southwards to HamadÃŖn, where that prince had established himself. At first, Ibn Sina entered into the service of a high-born lady; but the emir, hearing of his arrival, called him in as medical attendant, and sent him back with presents to his dwelling. Ibn Sina was even raised to the office of vizier. The amir consented that he should be banished from the country. Ibn Sina, however, remained hidden for forty days in a [[shaikh|sheikh]]'s house, till a fresh attack of illness induced the emir to restore him to his post. Even during this perturbed time, Ibn Sina prosecuted his studies and teaching. Every evening, extracts from his great works, the ''Canon'' and the ''Sanatio'', were dictated and explained to his pupils; among whom, when the lesson was over, he spent the rest of the night in festive enjoyment with a band of singers and players. On the death of the amir, Ibn Sina ceased to be vizier and hid himself in the house of an [[apothecary]], where, with intense assiduity, he continued the composition of his works.
58218
58219 Meanwhile, he had written to [[Abu Ya'far]], the [[prefect]] of the dynamic city of [[Isfahan (city)|Isfahan]], offering his services. The new emir of Hamadan, hearing of this correspondence and discovering where Ibn Sina's was hidden, incarcerated him in a fortress. War meanwhile continued between the rulers of Isfahan and HamadÃŖn; in [[1024]] the former captured Hamadan and its towns, expelling the Turkish [[mercenary|mercenaries]]. When the storm had passed, Ibn Sina returned with the amir to Hamadan, and carried on his literary labours. Later, however, accompanied by his brother, a favourite pupil, and two slaves, Ibn Sina escaped out of the city in the dress of a [[Sufi|Sufite]] [[ascetic]]. After a perilous journey, they reached Isfahan, receiving an honourable welcome from the prince. Avicenna also introduced medical herbs.
58220
58221 ==Late life==
58222 The remaining ten or twelve years of Avicenna's life were spent in the service of [[Abu Ya'far 'Ala Addaula]], whom he accompanied as physician and general literary and scientific adviser, even in his numerous campaigns.
58223
58224 During these years he began to study [[literature|literary]] matters and [[philology]], instigated, it is asserted, by criticisms on his style. But amid his restless study Ibn Sina never forgot his love of enjoyment. Unusual bodily vigour enabled him to combine severe devotion to work with facile indulgence in sensual pleasures. Versatile, lighthearted, boastful and pleasure-loving, he contrasts with the nobler and more intellectual character of [[Averroes]]. His bouts of pleasure gradually weakened his constitution; a severe [[colic]], which seized him on the march of the army against HamadÃŖn, was checked by remedies so violent that Ibn Sina could scarcely stand. On a similar occasion the disease returned; with difficulty he reached HamadÃŖn, where, finding the disease gaining ground, he refused to keep up the regimen imposed, and resigned himself to his fate.
58225
58226 His friends advised him to slow down and take life moderately. He refused, however, stating that: ''&quot;I prefer a short life with width to a narrow one with length&quot;''. On his deathbed remorse seized him; he bestowed his goods on the poor, restored unjust gains, freed his slaves, and every third day till his death listened to the reading of the Qur'an. He died in June [[1037]], in his fifty-eighth year, and was buried in [[Hamedan]], [[Iran]].
58227
58228 ==Works==
58229 Ibn Sina is comparable to such greats as [[Abu Bakr Mohammad Ibn Zakariya al-Razi]]. However, despite such glorious tributes to his work, Ibn Sina is rarely remembered in the West today and his fundamental contributions to medicine and the European reawakening go largely unrecognised.
58230
58231 Ibn Sina is usually considered as a great philosopher and physician. His philosophical disciple is not a live school in western philosophy today. Unfortunately, the West only pays attention to some portion of his philosophy, which is known as the ''Latin Avicennaian School,'' and his other significant philosophical contribution, which had been hailed by [[Suhrawardi]], is still unknown to West. This notable part is called '''Ø­ŲƒŲ…ØĒ Ų…Ø´ØąŲ‚ŲŠŲ‡''' (''hikmat-al-mashriqqiyya'') by him. In some of his writings, he mentions this to his disciples as his major achievement. Heavily influenced by Ibn Sina, [[Suhrawardi]] made philosophical contributions which have developed much from Ibn Sina's work, later founding [[illuminationist philosophy]] and believing to have finished what Ibn Sina began.
58232
58233 Ibn Sina also wrote extensively on the subjects of [[philosophy]], [[logic]], [[ethics]], [[metaphysics]] and other disciplines. All his works were written in [[Arabic language|Arabic]] - which was the ''de facto'' scientific [[language]] of that time, and some were written in the Persian language. Of linguistic significance even to this day are a few books that he wrote in nearly pure Persian language[citation needed]. Unlike [[Aquinas]] who more or less sanctified Aristotle as church dogma, Ibn Sina corrected him often, encouraging a lively debate in the spirit of [[ijtihad]]. Accordingly he is one of the earliest pioneers of the scientific process of [[peer review]] as we know it today, his influence on that process being profound at least, and perhaps even decisive.
58234
58235 About 100 treatises were ascribed to Ibn Sina. Some of them are tracts of a few pages, others are works extending through several volumes. The best-known amongst them, and that to which Ibn Sina owed his European reputation, is his 14-volume ''[[The Canon of Medicine]]'', which was a standard medical text in Western Europe for seven centuries. It classifies and describes diseases, and outlines their assumed causes. [[Hygiene]], simple and complex medicines, and functions of parts of the body are also covered. It asserts that [[tuberculosis]] was contagious, which was later disputed by Europeans, but turned out to be true. It also describes the symptoms and complications of [[diabetes]]. An Arabic edition of the ''Canons'' appeared at Rome in [[1593]], and a Hebrew version at Naples in [[1491]]. Of the Latin version there were about thirty editions, founded on the original translation by [[Gerard of Cremona]]. The [[15th century]] has the honour of composing the great commentary on the text of the ''Canon'', grouping around it all that theory had imagined, and all that practice had observed. Other medical works translated into Latin are the ''Medicamenta Cordialia'', ''Canticum de Medicina'', and the ''Tractatus de Syrupo Acetoso''.
58236
58237 It was mainly accident which determined that from the [[12th century|12th]] to the [[17th century]] Ibn Sina should be the guide of medical study in European universities, and eclipse the names of Rhazes, [[Ali ibn al-Abbas]] and [[Averroes]]. His work is not essentially different from that of his predecessor Rhazes, because he presented the doctrine of [[Galen]], and through Galen the doctrine of [[Hippocrates]], modified by the system of Aristotle. But the ''Canon'' of Avicenna is distinguished from the ''Al-Hawi'' (Continens) or ''Summary'' of Rhazes by its greater method, due perhaps to the logical studies of the former. The work has been variously appreciated in subsequent ages, some regarding it as a treasury of wisdom, and others, like [[Averroes]], holding it useful only as waste paper. In modern times it has been more criticized than read. The vice of the book is excessive classification of bodily faculties, and over-subtlety in the discrimination of diseases. It includes five books; of which the first and second treat of [[physiology]], [[pathology]] and [[hygiene]], the third and fourth deal with the methods of treating disease, and the fifth describes the composition and preparation of remedies. This last part contains some personal observations. He is, like all his countrymen, ample in the enumeration of symptoms, and is said to be inferior to Ali in practical medicine and [[surgery]]. He introduced into medical theory the four causes of the [[Peripatetic]] system. Of [[natural history]] and [[botany]] he pretended to no special knowledge. Up to the year [[1650]], or thereabouts, the ''Canon'' was still used as a textbook in the universities of [[Leuven]] and [[Montpellier]].
58238
58239 Scarcely any member of the Arabian circle of the sciences, including [[theology]], [[philology]], [[mathematics]], [[astronomy]], [[physics]], and [[music]], was left untouched by the treatises of Ibn Sina, many of which probably varied little, except in being commissioned by a different patron and having a different form or extent. He wrote at least one treatise on [[alchemy]], but several others have been falsely attributed to him. His book on [[animal]]s was translated by [[Michael Scot]]. His ''Logic'', ''Metaphysics'', ''Physics'', and ''De Caelo'', are treatises giving a synoptic view of Aristotelian doctrine. The ''Logic'' and ''Metaphysics'' have been printed more than once, the latter, e.g., at Venice in [[1493]], [[1495]], and [[1546]]. Some of his shorter essays on medicine, logic, &amp;c., take a poetical form (the poem on logic was published by Schmoelders in [[1836]]). Two encyclopaedic treatises, dealing with philosophy, are often mentioned. The larger, [[Al-Shifa']] (''Sanatio''), exists nearly complete in manuscript in the [[Bodleian Library]] and elsewhere; part of it on the ''De Anima'' appeared at Pavia ([[1490]]) as the ''Liber Sextus Naturalium'', and the long account of Ibn Sina's philosophy given by [[Shahrastani]] seems to be mainly an analysis, and in many places a reproduction, of the Al-Shifa'. A shorter form of the work is known as the [[An-najat]] (''Liberatio''). The Latin editions of part of these works have been modified by the corrections which the monastic editors confess that they applied. There is also a ''Philosophia Orientalis'', mentioned by [[Roger Bacon]], and now lost, which according to Averroes was pantheistic in tone.
58240
58241 In the museum at [[Bukhara]], there are displays showing many of his writings, surgical instruments from the period and paintings of patients undergoing treatment.
58242
58243 In Iran, he is considered a Persian hero. He is often regarded as one of the greatest Persians who have ever lived. Many of his portraits and statues remain in Iran today. An impressive monument to the life and works of the man who is known as the 'doctor of doctors' still stands outside the Bukhara museum and his portrait hangs in the Hall of the Faculty of Medicine in the [[University of Paris]].
58244
58245 Ibn Sina was interested in the effect of the [[mind]] on the [[body]], and wrote a great deal on [[psychology]], likely influencing [[Ibn Tufayl]] and [[Ibn Bajjah]].
58246
58247 Along with [[Rhazes]], [[Ibn Nafis]], [[Al-Zahra]] and [[Al-Ibadi]], he is considered an important compiler of [[Early Muslim medicine]].
58248
58249 There is a crater on the moon called [[Avicenna (crater)|Avicenna]] which was named after him.
58250
58251 ==References==
58252 * For Ibn Sina's life, see [[Ibn Khallikan]]'s ''Biographical Dictionary'', translated by [[de Slane]] (1842); [[F. WÃŧstenfeld]]'s ''Geschichte der arabischen Aerzte und Naturforscher'' (Gottingen, 1840).
58253 * For his medicine, see [[Sprengel]], ''Histoire de la Medecine''
58254 * For his philosophy, see
58255 ** [[Shahrastani]], German translation, vol. ii. 213-332
58256 ** [[K. Prantl]], ''Geschichte der Logik im Abendland'', ii. 318-361
58257 ** [[Albert StÃļckl]], ''Philosophie des Mittelalters'', ii. ~3-58
58258 ** [[Salomon Munk]], ''MÊlanges'', 352-366; [[B. Haneberg]] in the ''Abhandungen der philosophische-philologisches Classifikation der bayerischen Academie'' (1867);
58259 ** [[Carra de Vaux]], ''Avicenne'' (Paris, 1900).
58260 * For a list of extant works, [[C. Brockelmann]]'s ''Geschichte der arabischen Litteratur'' (Weimar, 1898), vol. i. pp. 452-458. (XV. W.; G. W. T.)
58261 * For an overview of his career see [[Shams Inati]], &quot;Ibn Sina&quot; in ''History of Islamic Philosophy'', ed. [[Hossein Seyyed Nasr]] and [[Oliver Leaman]], New York:Routledge (1996).
58262
58263 ==See also==
58264 *[[List of Persian scientists]]
58265 *[[Iranian philosophy]]
58266 *[[History of medicine]]
58267 *[[Early Muslim medicine]]
58268 *[[Muslim philosophy]]
58269 *[[Islamic scholars]]
58270 *[[Al-Qumri]]
58271
58272 ==External links==
58273 *[http://www.farhangsara.com/ibn_sina.htm Biography of Avicenna (in English)]
58274 *[http://www.muslimphilosophy.com/sina/default.htm Ibn Sina]
58275 *[http://www.ummah.net/history/scholars/ibn_sina/ Biography of Avicenna]
58276 *[http://www.newadvent.org/cathen/02157a.htm Catholic Encyclopedia: Avicenna]
58277 * {{MacTutor Biography|id=Avicenna}}
58278 *[http://www.formalontology.it/avicenna.htm The Ontology of Ibn Sina (Avicenna)]
58279
58280 ==Source==
58281 * {{1911}}
58282 * History of Islamic Philosophy by [[Henry Corbin]]
58283
58284 {{Link FA|fr}}
58285
58286 [[Category:Persian people|Avicenna]]
58287 [[Category:Medieval philosophers]]
58288 [[Category:Aristotelian philosophers]]
58289 [[Category:Muslim philosophers]]
58290 [[Category:Persian philosophers]]
58291 [[Category:History of medicine]]
58292 [[Category:Alchemists]]
58293 [[Category:980 births]]
58294 [[Category:1037 deaths]]
58295 [[Category:Iranian scientists|Avicenna]]
58296 [[Category: Polymaths]]
58297 [[Category:Muslim scientists]]
58298
58299 [[als:Ibn Sina]]
58300 [[ar:ابŲ† ØŗŲŠŲ†Ø§]]
58301 [[bg:АвиŅ†ĐĩĐŊĐ°]]
58302 [[bs:Ibn Sina]]
58303 [[ca:Avicena]]
58304 [[cs:Avicenna]]
58305 [[da:Ibn Sina]]
58306 [[de:Avicenna]]
58307 [[es:Avicena]]
58308 [[eo:Aviceno]]
58309 [[fa:ابŲ† ØŗیŲ†Ø§]]
58310 [[fr:Avicenne]]
58311 [[gl:Avicena]]
58312 [[hr:Ibn Sina]]
58313 [[id:Ibnu Sina]]
58314 [[it:Avicenna]]
58315 [[he:אבן סינא]]
58316 [[la:Avicenna]]
58317 [[ms:Abu Ali Al-Hussain Ibn Abdallah Ibn Sina]]
58318 [[nl:Avicenna]]
58319 [[ja:イブãƒŗīŧã‚šã‚Ŗãƒŧナãƒŧ]]
58320 [[no:Avicenna]]
58321 [[pl:Avicenna]]
58322 [[pt:Avicena]]
58323 [[ro:Avicenna]]
58324 [[ru:АвиŅ†ĐĩĐŊĐŊĐ°]]
58325 [[sk:Ibn SínÃĄ Abu-Ali]]
58326 [[fi:Avicenna]]
58327 [[sv:Avicenna]]
58328 [[tr:Ä°bn-i Sina]]
58329 [[uk:АвŅ–Ņ†ĐĩĐŊĐ°]]
58330 [[zh:é˜ŋįģ´æŖŽįēŗ]]</text>
58331 </revision>
58332 </page>
58333 <page>
58334 <title>The Ashes</title>
58335 <id>1132</id>
58336 <restrictions>move=:edit=</restrictions>
58337 <revision>
58338 <id>42036366</id>
58339 <timestamp>2006-03-03T10:25:53Z</timestamp>
58340 <contributor>
58341 <username>Mjpieters</username>
58342 <id>86312</id>
58343 </contributor>
58344 <minor />
58345 <comment>Reverted edits by [[Special:Contributions/212.30.31.17|212.30.31.17]] to last version by Jess Cully</comment>
58346 <text xml:space="preserve">{{dablink|For the rugby league series between Great Britain and Australia see [[Rugby League Ashes]]; for the &quot;Women's Ashes&quot; Test series for female players between England and Australia see [[Women's Ashes]].}}
58347 [[Image:Ashes_urn.jpg|right|frame|The Ashes [[urn]] is reputed to contain a set of burnt [[bail (cricket)|bails]] symbolising the death of English cricket.]]
58348 '''The Ashes''' is a [[biennial]] [[Test cricket]] contest played between [[English cricket team|England]] and [[Australian cricket team|Australia]]. The Ashes is one of cricket's fiercest and most celebrated rivalries, and certainly the oldest such in international cricket, dating back to 1882. The [[The 2005 Ashes|2005 Ashes series]] was played in [[England]], and was won by England. Australia had held the Ashes for 16 years prior to that. The next Ashes series will be in [[Australia]] in 2006-07; the next series in England will be in 2009.
58349
58350 The series is named after a [[satire|satirical]] [[obituary]] published in ''The Sporting Times'' in 1882 following the match at [[The Oval]], in which Australia beat England in [[England]] for the first time. The obituary stated that English cricket had died, and ''the body will be cremated and the ashes taken to Australia''. The English media dubbed the next English tour to [[Australia]] as ''the quest to regain The Ashes''. A small [[terra cotta|terracotta]] urn was presented to the [[English cricket captains|England captain]] [[Ivo Bligh]] by a group of [[Melbourne]] women after England's victory in the Test series. The urn is reputed to contain a set of burnt [[bail (cricket)|bails]] symbolising &quot;the ashes of English cricket&quot;. While the urn has come to symbolise the Ashes series, the name ''The Ashes'' predates the existence of the urn. The urn is not used as a [[trophy]] for the Ashes series, and whichever side &quot;holds&quot; the Ashes, the urn remains in the [[Marylebone Cricket Club|MCC]] Museum at [[Lord's Cricket Ground|Lord's]]. Since the 1998-99 Ashes series, a [[Waterford crystal]] trophy has been presented to the winners.
58351
58352 Notable Ashes series took place in 1932-33 (the [[Bodyline]] tour), 1948 ([[Donald Bradman|Sir Donald Bradman's]] &quot;[[The Invincibles (cricket)|Invincibles]]&quot; Australian side), 1981 (in which an England team spearheaded by [[Ian Botham]] won a thrilling series), and 2005 (when England eventually won the Ashes back, after a 'drought' of 16 years).
58353
58354 ==The obituary==
58355 [[Image:DeathofEnglishCricket.jpg|250px|thumb|The obituary notice that appeared in ''The Sporting Times''.]] The first Test match between England and Australia had been played in 1877, but the Ashes legend dates back only to their ninth Test match, played in 1882.
58356
58357 On the 1882 tour, the Australians played only one Test, at [[The Oval]] in [[London]]. It was a low-scoring game on a difficult [[Cricket pitch|pitch]]. Australia made only 63 runs in their first [[innings]], and England, led by [[Monkey Hornby]], took a 38-run lead with a total of 101. In the second innings, Australia made 122, leaving England to score only 85 [[The result in cricket|runs to win]]. Australian bowler [[Fred Spofforth]] refused to give in, declaring, &quot;This thing can be done&quot;. He devastated the English batting, taking the final four wickets while conceding only two runs, to leave England a mere seven runs short of victory in one of the closest and most nail-biting finishes in [[history of cricket|cricket history]].
58358
58359 When England's last batsman went in the team needed only 10 runs to win, but the final batsman Peate scored only 2 before being bowled by Boyle. The astonished crowd fell silent, not believing that England could possibly have lost by 7 runs. When what had happened had sunk in, the crowd cheered the Australians.
58360
58361 When Peate returned to the Pavilion he was reprimanded by [[WG Grace]] for not allowing his partner at the wicket [[Charles Studd]] to get the runs. Despite Studd being one of the best batsman in England, Peate replied, &quot;I had no confidence in Mr Studd, sir, so thought I had better do my best.&quot;
58362
58363 The defeat was widely recorded in the English press. The most notable report was a mock obituary, written by [[Reginald Shirley Brooks]], printed in ''[[The Sporting Times]]'' on the following Saturday, [[September 2]] [[1882]]. The obituary read as follows:
58364
58365 :&quot;In Affectionate Remembrance of ENGLISH CRICKET, which died at the Oval on 29th&amp;nbsp;AUGUST, 1882, Deeply lamented by a large circle of sorrowing friends and acquaintances R.I.P.
58366 :N.B. &amp;mdash; The body will be cremated and the ashes taken to Australia.&quot;
58367
58368 The English media played up the subsequent tour to Australia in 1882-83 (which had been arranged before this defeat) as a quest to &quot;regain the Ashes&quot;.
58369
58370 ==The Ashes urn==
58371 After the third game of the 1882-83 tour, the English team, led by [[Ivo Bligh]] were guests of Sir William Clarke, at his property &quot;[[Rupertswood]]&quot; at [[Sunbury, Victoria]]. A group of [[Victoria (Australia)|Victoria]]n ladies headed by Lady Clarke burned what has variously been called a ball, bail or veil {{ref|Terminology}}, and presented the resulting ashes to Bligh in an [[urn]] together with a velvet bag, which was made by Mrs Ann Fletcher, the daughter of Joseph Hines Clarke and Marion Wright, both of [[Dublin]]. She said, &quot;What better way than to actually present the English captain with the very 'object' &amp;mdash; albeit mythical &amp;mdash; he had come to Australia to retrieve?&quot; Bligh later married another of these [[Melbourne|Melburnian]] ladies, Florence Morphy. When he died in 1927, his widow presented the urn to the [[Marylebone Cricket Club]]. The urn itself is made of [[terracotta]] and is about four&amp;nbsp;[[inch]]es (10&amp;nbsp;[[centimetre|cm]]) tall.
58372
58373 A poem was presented to Bligh with the urn and appears on it {{ref|poem}}:
58374 :''When [[Ivo Bligh|Ivo]] goes back with the urn, the urn;''
58375 :''[[Studd brothers|Studds]], [[Allan Steel|Steel]], [[Walter Read|Read]] and [[Edward Tylecote|Tylecote]] return, return;''
58376 :''The welkin will ring loud,''
58377 :''The great crowd will feel proud,''
58378 :''Seeing [[Dick Barlow|Barlow]] and [[Billy Bates|Bates]] with the urn, the urn;''
58379 :''And the rest coming home with the urn.''
58380
58381 The Ashes urn itself is never physically awarded to either England or Australia, but is kept permanently in the MCC Cricket Museum at [[Lord's Cricket Ground]], where it can be seen together with a specially-made red and gold velvet bag and the scorecard of the 1882 match.
58382
58383 The urn has been back to Australia once, in 1988 for a museum tour as part of Australia's [[Bicentennial]] celebrations. In the 1990s, given Australia's long dominance of the Ashes series, the idea was mooted that the victorious team in an Ashes series should be awarded the urn as a trophy and allowed to retain it until the next series. The MCC, considering the urn too fragile to transport to Australia, instead began commissioning a larger-scale replica trophy in [[Waterford Crystal]] to award to the winning team of each series.
58384
58385 In 2002, Bligh's great-great-grandson (Lord Clifton, the heir-apparent to the [[Earl of Darnley|Earldom of Darnley]]) argued that the Ashes urn should not be returned to Australia as it was essentially the property of his family and only given to the MCC for safe-keeping.
58386
58387 ==The matches==
58388 ''See also: [[List of Ashes series]] for a full listing of all the Ashes series since 1882.''
58389
58390 ===First Ashes quest===
58391 ''See also: [[History of Test cricket (to 1883)#The Ashes legend|History of Test cricket (to 1883): The Ashes legend]]''
58392
58393 The [[Honourable Ivo Bligh]] led the expedition to Australia to &quot;recover the Ashes&quot; against the side that had beaten England earlier in 1882. Publicity surrounding the series was intense, and it was at some time during this series that the Ashes urn was crafted. Australia won the first Test by [[The result in cricket|nine wickets]], but in the next two England were victorious. At the end of the third Test, the four-inch urn was presented to Bligh by some Melburnian ladies, England having been generally considered to have &quot;won back the Ashes&quot; 2&amp;ndash;1. A fourth match was in fact played, against a &quot;United Australian XI&quot;, which was stronger than the Australian side that had competed in the previous matches; this game, however, is not considered part of the Ashes series.
58394
58395 ===English dominance ends===
58396 After this series followed an extended period of English dominance. The tours were shorter in the 1880s and 1890s than people have grown accustomed to in more recent years, possibly owing to the extended travelling time (the sea journey between the two countries took at least a month). Thus, England only lost four Ashes Tests in the 1880s, out of 23 played, and they won all the seven series contested. There was also more chopping and changing in the teams, there was no official board of selectors for each country (at times, two competing sides toured a nation), and popularity with the fans varied. The 1890s games were more closely fought, Australia taking their first series win since the match that sparked the legend in 1891-92 with a 2&amp;ndash;1 victory. England still dominated, winning the next three series despite continued player disputes. Towards the end of the decade, though, the Australians got more of a foothold, winning four successive series from 1897-98 to 1902.
58397
58398 ===Repopularising of the Ashes===
58399 After what the [[Marylebone Cricket Club|MCC]] saw as the problems of the earlier professional and amateur series, they decided to take control of organising tours themselves, and this led to the first MCC tour of Australia in 1903-1904. England won it against the odds, and [[Plum Warner]], the England captain, wrote up his version of the tour in his book ''How We Recovered The Ashes''. This book repopularised the Ashes myth in England, which continues to this day.
58400
58401 England and Australia shared the spoils for the next few years. The entrance of [[South African cricket team|South Africa]] onto the world cricketing scene meant less time for Ashes series, but even so there were four played after Plum Warner's series, each of the sides taking two victories. England won the last series in 1911-1912 by four matches to one, [[Jack Hobbs|Sir Jack Hobbs]] establishing himself as a regular with three centuries. England then retained the Ashes when they won the Triangular tournament, which also featured [[South African cricket team|South Africa]], in 1912. England looked as if they had established themselves as the dominating force by the time [[World War I]] intervened and brought a halt to all international cricket.
58402
58403 After the war, however, Australia took firm control of both the Ashes and world cricket. They recorded thumping victories both in England and on home soil, and England only won one Test out of fifteen from the end of the war until 1925. In a rain-hit series in 1926, however, England managed to eke out a 1&amp;ndash;0 victory with a win in the final Test at the Oval, and despite the appearance of Donald Bradman, Australia could not win the next series either, losing 4&amp;ndash;1. Bradman won the next series almost by himself, however, as one of the best batting line-ups of all time began to form in the early 1930s, including Bradman himself, [[Stan McCabe]] and [[Bill Ponsford]]. It was the prospect of bowling at this line-up that caused England's captain [[Douglas Jardine]] to think up the [[Bodyline]] tactic.
58404
58405 ===Bodyline===
58406 {{main|Bodyline}}
58407 [[Image:4th Test Fingleton.jpg|220px|right|thumb| [[Bill Woodfull]] evades a ball from [[Harold Larwood]] with [[Bodyline]] field settings.]]
58408 In 1932, after Bradman's routing of the English team in the previous series, [[Douglas Jardine]] developed a tactic of instructing his [[fast bowling|fast bowlers]] to bowl at the bodies of the Australian batsmen, with the goal of forcing them to defend their bodies with their bats, and provide easy catches to a stacked [[leg side]] field. The tactic was descriptively dubbed Bodyline. Although this won England the Ashes, it caused such a furore in Australia that diplomats had to intervene to prevent serious harm to Anglo-Australian relations, and the [[Marylebone Cricket Club|MCC]] eventually changed the [[laws of cricket]] to prevent anyone from using the tactic again.
58409
58410 Jardine's comments summed up England's views: &quot;I've not travelled 6,000&amp;nbsp;miles to make friends. I'm here to win the Ashes.&quot;
58411
58412 On the batting-friendly [[pitch|wickets]] that prevailed in the late 1930s, most Tests up to the war still gave results, although many batting records were set in this era. [[Len Hutton]] scored 364 at [[The Oval]] to save a draw in the 1938 series, a world record [[innings]], while [[Jack Fingleton]] and Bradman set a sixth-wicket [[partnership (cricket)|partnership]] record of 346 runs in the Third Test at [[Melbourne Cricket Ground|Melbourne]] that stands to this day. The series were surprisingly competitive, though, considering England's desperation in the early 30s.
58413
58414 ===''The Invincibles''===
58415 {{main|The Invincibles (cricket)}}
58416 Australia's first tour of England after [[World War II]], in 1948, was led by the 39-year-old Bradman in his last appearance representing Australia. His team has gone down in cricketing legend as ''[[The Invincibles (cricket)|The Invincibles]]'', as they played 36 matches including five Tests, and remained unbeaten on the tour. They won 27 matches, drawing only 9, including of course the 4&amp;ndash;0 Ashes series victory.
58417
58418 This series is also known for one of the most poignant moments in cricket history, as Bradman batted for Australia in the fifth Test at The Oval &amp;mdash; his last &amp;mdash; needing to score only 4 runs to maintain a career [[batting average]] of 100. [[Eric Hollies]] bowled him second ball for a duck, denying those 4 runs and sending Bradman into retirement with a career average of 99.94.
58419
58420 Australia gradually weakened after 1948, allowing England back into the fray in the early 1950s when they won three successive Ashes series, from 1953 to 1956 to be arguably the best Test side in the world at the time. A see-sawing series in 1956 also saw a record that will probably never be beaten: the spinner [[Jim Laker|Jim Laker's]] monumental effort at [[Old Trafford (cricket)|Old Trafford]] when he bowled 68 of 191 overs to take nineteen out of twenty possible Australian wickets. Never has the phrase &quot;He won the match single-handedly&quot; been more appropriate. England's dominance was not to last, however. Australia thumped them 4&amp;ndash;0 when they next toured in 1958-59, having found a good bowler of their own in [[Richie Benaud]] who took 31 wickets in the 5-Test series. England failed to win any series during the 1960s, a period dominated by draws as teams found it more prudent to save face with a draw than risk losing. Of a total of 25 Ashes Tests playing during this decade, Australia won seven and England three.
58421
58422 In the first series of the 1970s, however, England managed to win 2&amp;ndash;0, much thanks to the efforts of [[Geoffrey Boycott]] who scored four fifties and three centuries in the series, but in the mid-1970s Australia regained ascendancy with fast bowler [[Dennis Lillee]] taking English wickets all too consistently. However, both teams had their victories, England enjoying an emphatic 5&amp;ndash;1 win in 1978-79 while Australia took a non-Ashes series (with the [[World Series Cricket|WSC]] players returning) 3&amp;ndash;0 a year later. Most would say that the two sides were evenly matched, but no one knew just how evenly they would be matched in the next one.
58423
58424 ===Botham's Ashes===
58425 Australia took a 1&amp;ndash;0 lead in the first two Tests of the 1981 series, and looked to make it 2&amp;ndash;0 in the third Test at Headingley when they forced England to follow-on 227 runs behind. Famously, an English bookmaker offered odds of 500&amp;ndash;1 for an English victory, and Australian players [[Dennis Lillee]] and [[Rod Marsh]] laid a small bet. This came back to haunt them as England, reduced to 135 for 7 wickets, produced a second innings of 356, [[Ian Botham]] scoring an unbeaten 149, and adding 221 for the last three wickets in partnerships with [[Graham Dilley]], [[Chris Old]] and their fast bowler [[Bob Willis]]. Chasing 130, Australia were dismissed for 111, with a devastating spell of 8&amp;ndash;43 by Willis giving England a miraculous victory by 18 runs. Lillee and Marsh were reprimanded for betting on the outcome of a game, but not suspended.
58426
58427 The fourth Test at Edgbaston was a similarly inspired comeback victory for England. [[Ian Botham]] this time starred with the ball, taking five for 11, including a spell of five wickets for a solitary run, in Australia's second innings of 121 to give England victory by 29 runs. England also went on to win the fifth Test at Old Trafford to retain the Ashes&amp;nbsp;&amp;mdash; the sixth Test at the Oval was drawn.
58428
58429 ===Australian dominance===
58430 England were the better team of the early 1980s, although it was close: Australia won the 1982-83 series, but England then took two victories in 1985 and 1986-87. After those wins, however, a period of extended Australian dominance began, and England did not win an Ashes series again until 2005. Australia won the 1989 series 4&amp;ndash;0, and an England side weakened by Test bans following the [[Mike Gatting|Gatting]] tour to apartheid [[South African cricket team|South Africa]] lost 3&amp;ndash;0 in 1990-91. The Australians underlined their superiority in the contest by winning the 1993, 1994-95, 1997, 1998-99 and 2001 series &amp;mdash; all by convincing margins.
58431
58432 Australia's record since 1989 has impacted upon the overall statistics between the two sides. Before the 1989 series began, Australia had won 36.9% of all Tests played against England, England 33.5% with 29.7% of matches ending in draws. Previous to the 2005 series, Australia had won 40.8% of all Tests, England 31% with 28.1% drawn.{{Ref|stats1}}
58433
58434 In the period between 1989 and the beginning of the 2005 series, the two sides had played 43 times. Australia winning 28 times, England 7 times, with 8 draws.{{Ref|stats2}}
58435
58436 ===Steve Waugh's last Ashes===
58437 {{main|England in Australia in 2002-3}}
58438
58439 After playing in nine successive Ashes series, the 2002-03 rubber was to be Australian captain [[Steve Waugh|Steve Waugh's]] last against England, and was to prove one of the most emphatic victories he enjoyed against the English. The series began with what many regard in hindsight as one of the worst captaincy decisions of all time, as [[Nasser Hussain]] won the toss for England in the first Test and sent Australia in to bat. By the end of the first day, Australia had amassed a staggering 364/2, and placed a stamp of authority on the series that would not be undone as they raced to victory by 384 runs. This was followed by two innings victories to Australia, and a fairly comfortable five-wicket win. England only managed to save some face with a 225-run victory in the final Test.
58440
58441 The series' most memorable moment came on the second day of the Fifth Test at the [[Sydney Cricket Ground]]. Leading into the match Waugh had been heavily scrutinised by selectors and the media over his advancing age and lack of recent form, having not posted a Test century since 2001. As this was the last match of the series and last Test of the Australian summer, Waugh was likely to be dropped from the team if he failed again in this match. Asked before the match about the defining moment of a career likely to soon be over, Waugh predicted gamely &quot;It might be yet to come.&quot; In a stunning display of determination and defiance, he then fulfilled this prophesy by scoring a chanceless century on the second afternoon. He had entered the final over of the day on 95 not out, and hit a boundary off the last ball (bowled by English off spinner [[Richard Dawson (cricketer)|Richard Dawson]]) to bring up his ton. Waugh left the ground to an emotional standing ovation, his Test career saved. It came to be known as his 'Perfect Day'.
58442
58443 ===The 2005 series===
58444 {{main|The 2005 Ashes}}
58445
58446 England were undefeated in Test matches in the 2004 calendar year, which took the team to second in the [[LG ICC Test Championship]] and raised hopes that the [[The 2005 Ashes|2005 Ashes series]] would be closely fought. In fact, the series proved to be even more competitive than most commentators had predicted.
58447
58448 The first Test was played at [[Lord's Cricket Ground|Lord's]] from [[21 July]] to [[24 July]], and was won convincingly by Australia by 239 runs. However, England fought back in the remaining four matches, which were all tense and closely fought. The second Test, played at [[Edgbaston Stadium|Edgbaston]] from [[4 August]] to [[7 August]] was won by England by 2 runs, the smallest runs victory margin in Ashes history, and the second closest runs victory margin in all Tests. The rain-affected third Test, played at [[Old Trafford (cricket)|Old Trafford]] from [[11 August]] to [[15 August]], ended with the final two Australian batsmen holding out to claim a draw. The fourth Test, played at [[Trent Bridge]] from [[25 August]] to [[28 August]], was won by England by three wickets after Australia was forced to [[follow on]] for the first time in 191 Tests. England earned a draw at the fifth and final Test match, played at [[The Oval]] from [[8 September]] to [[12 September]], to win an Ashes series for the first time in 18 years.
58449
58450 From the start the 2005 Ashes series was played at a very high intensity and the tension did occasionally lead to mistakes on both sides with many dropped catches, run outs and other errors. Australia were unlucky with the injury to a key bowler [[Glenn McGrath]] (who missed the two matches when Australia was beaten) and the loss of form of others such as [[Jason Gillespie]], [[Adam Gilchrist]] and [[Matthew Hayden]], whereas England were able to pick the same eleven until [[Simon Jones (cricketer)|Simon Jones]] sustained an ankle injury midway through the Fourth Test, forcing him out of the series decider. However many consider the series to have been the most exciting in living memory, providing enthralling viewing to those lucky enough to get the very scarce tickets for the matches, or those watching on television. Respected commentator [[Richie Benaud]] is reported by BBC correspondent Bob Chaundry {{Ref|Benaud}} as having said: &quot;In the past two years, I've seen the best cricket I've ever watched. This current Ashes series shades even the great one of 1981.&quot;
58451
58452 At the end of the series, [[Andrew Flintoff]] was awarded the inaugural [[Compton-Miller medal]] as the player of the series for his [[all-rounder|batting and bowling]] efforts. Flintoff was also chosen as &quot;Man of the Series&quot; by the Australian coach and his English counterpart chose [[Shane Warne]], who took 40 wickets in the five matches and batted skilfully down the order.
58453
58454 England will travel to Australia in the winter of 2006-2007 in the hope to retain the Ashes.
58455
58456 ==Summary of results and statistics==
58457 :''See also: [[List of Ashes series]] for a full listing of all the Ashes series since 1882.''
58458 {{Ashes timeline}}
58459 [[image:Ashesmatcheschart.png|thumb|200px|Chart of the matches won between the two sides.]]
58460 A team must win a series to gain the right to hold the Ashes. A drawn series results in the previous holders retaining the Ashes. To date, a total of 62 Ashes series have been played with Australia winning 30, England winning 27. The remaining five series were drawn, with Australia retaining the Ashes four times and England retaining it once.
58461
58462 Ashes series have generally been played over five Test matches, although there have been four match series (1938; 1975) and six match series (1970-71; 1974-75; 1978-79; 1981; 1985; 1989; 1993 and 1997). 293 matches have been played, with Australia winning 115 times, England 92 times, and 86 draws. Australians have made 264 [[century|centuries]] in Ashes Tests, twenty-three of them over 200, while Englishmen have scored 212 centuries, of which ten have been scores over 200. On 41 occasions, individual Australians have taken ten [[wicket]]s in a match. Englishmen have performed that feat 38 times.
58463
58464 ==The Ashes today==
58465 The Ashes is one of the most fiercely contested competitions in cricket today, rivalling the intensity of the other great international cricket rivalry between [[Indian cricket team|India]] and [[Pakistani cricket team|Pakistan]] . The failure of England to regain the Ashes for 16 years from 1989, coupled with the global dominance of the Australian team, had dulled the lustre of the series in recent years. But the close results in the [[The 2005 Ashes|2005 Ashes series]], and the overall high quality and competitiveness of the cricket, have boosted the popularity of the sport in Britain and considerably enhanced the profile of the Ashes around the world. Whilst the tension of the matches has caused an occasional angry moment, the matches were generally played with good spirit, and [[sportsmanship]] of the players of both sides has been high, with commentators often highlighting [[Andrew Flintoff]] consoling [[Brett Lee]] at the end of the second Test as epitomising this. In interviews following the final match, players from both sides were quick to congratulate their opponents, both the individual players and the team as a whole.
58466
58467 ==Match venues==
58468 The series alternate between England and Australia, and within each country each of the (usually) five matches is held at a different [[List of Test cricket grounds|cricket ground]].
58469
58470 In '''Australia''', the grounds currently used are the [[Melbourne Cricket Ground]] (first staged an England-Australia Test in the 1876-77 season), the [[Sydney Cricket Ground]] (1881-82), [[Adelaide Oval]] (1884-85), [[Brisbane Cricket Ground|The Gabba]] (1932-33) and [[WACA|The WACA, Perth]] (1970-71). One Test was held at the [[Exhibition Ground|Brisbane Exhibition Ground]] in 1928-29.
58471
58472 In '''England''' the grounds used are [[The Oval]] (since 1880), [[Old Trafford (cricket)|Old Trafford]] (1884), [[Lord's Cricket Ground|Lord's]] (1884), [[Trent Bridge]] (1899), [[Headingley Stadium|Headingley]] (1899) and [[Edgbaston Stadium|Edgbaston]] (1902). One Test was held at [[Bramall Lane|Bramall Lane, Sheffield]] in 1902.
58473
58474 ==The Ashes outside cricket==
58475 The popularity and reputation of the cricket series has led to many other events taking the name for England against Australia contests. The best-known and longest-running of these events is the [[rugby league]] contest between [[Great Britain national rugby league team|Great Britain]] and [[Australia national rugby league team|Australia]] (see [[Rugby League Ashes]]). The contest first started in 1908, the name being suggested by the touring Australians. Another example is in the British television show ''[[Gladiators]]'', where two series were based around the Australia&amp;ndash;England contest.
58476
58477 The trophy is also featured in the [[science-fiction]] [[comedy]] [[novel]] ''[[Life, the Universe and Everything]]'', the third &quot;[[Hitchhiker's Guide To The Galaxy]]&quot; book by [[Douglas Adams]].
58478
58479 In the cinema, the Ashes featured in the [[film]] ''The Final Test'', released in 1953, based on a television play by [[Terence Rattigan]]. It stars [[Jack Warner]] as an England cricketer playing the last Test of his career, which is the last of an Ashes series; the film contains cameo appearances from prominent contemporary Ashes cricketers including [[Jim Laker]] and [[Denis Compton]].
58480
58481 ==See also==
58482 *[[History of Test cricket (to 1883)]]
58483 *[[History of Test cricket (1884 to 1889)]]
58484 *[[History of Test cricket (1890 to 1900)]]
58485 *[[Portal:Cricket]] &amp;mdash; for more coverage of all things Cricket.
58486
58487 ==Notes==
58488 # {{note|Terminology}} In 1998, Lord Darnley’s 82-year-old daughter-in-law said they were the remains of her mother-in-law’s veil, not a bail. Other evidence suggests a ball. The precise origin of the ashes, therefore, is the subject of some dispute.
58489 # {{note|poem}} [http://www.334notout.com/ashes/ashbegin.htm Ashes &amp;mdash; The Beginning], [http://www.334notout.com/ 334 Not out]
58490 #{{note|stats1}} Statistics obtained from Cricinfo at [http://stats.cricinfo.com/guru?sdb=team;team=AUS;class=testteam;filter=basic;opposition=ENG;notopposition=0;decade=0;homeaway=0;continent=0;country=0;notcountry=0;groundid=0;season=0;startdefault=1877-03-15;start=1877-03-15;enddefault=2005-03-29;end=2005-03-29;tourneyid=0;finals=0;daynight=0;toss=0;scheduledovers=0;scheduleddays=0;innings=0;followon=0;result=0;seriesresult=0;captainid=0;recent=;viewtype=summary;runslow=;runshigh=;wicketslow=;wicketshigh=;ballslow=;ballshigh=;overslow=;overshigh=;bpo=0;batevent=;conclow=;conchigh=;takenlow=;takenhigh=;ballsbowledlow=;ballsbowledhigh=;oversbowledlow=;oversbowledhigh=;bpobowled=0;bowlevent=;submit=1;.cgifields=viewtype]
58491 #{{note|stats2}} Statistics obtained from Cricinfo at [http://stats.cricinfo.com/guru?sdb=team;team=AUS;class=testteam;filter=basic;opposition=ENG;notopposition=0;decade=0;homeaway=0;continent=0;country=0;notcountry=0;groundid=0;season=0;startdefault=1877-03-15;start=1877-03-15;enddefault=2005-03-29;end=2005-03-29;tourneyid=0;finals=0;daynight=0;toss=0;scheduledovers=0;scheduleddays=0;innings=0;followon=0;result=0;seriesresult=0;captainid=0;recent=;viewtype=series;runslow=;runshigh=;wicketslow=;wicketshigh=;ballslow=;ballshigh=;overslow=;overshigh=;bpo=0;batevent=;conclow=;conchigh=;takenlow=;takenhigh=;ballsbowledlow=;ballsbowledhigh=;oversbowledlow=;oversbowledhigh=;bpobowled=0;bowlevent=;submit=1;.cgifields=viewtype]
58492 #{{note|Benaud}}Bob Chaundry (2005) &quot;So Long Sport&quot;, ''BBC News Magazine'' [online]&lt;br&gt; Available from: http://news.bbc.co.uk/1/hi/magazine/4227822.stm. [Accessed [[14 September]] [[2005]]].
58493
58494 = = References = =
58495 * {{cite book | last = Birley | last = D. | year = 2003 | title = A Social History of English Cricket | location = London | publisher = Aurum Press | id = ISBN 1-85410-941-3 }}
58496 * {{cite book | last = Frith | last = D. | year = 1990 | title = Australia versus England: a pictorial history of every Test match since 1877 | location = Victoria (Australia) | publisher = Penguin Books | id = ISBN 0-670-90323-X }}
58497 * {{cite book | last = Gibb | last = J. | year = 1979 | title = Test cricket records from 1877 | location = London | publisher = Collins | id = ISBN 0-00411-690-9 }}
58498 * {{cite book | last = Gibson | last = A. | year = 1989 | title = Cricket Captains of England | location = London | publisher = Pavilion Books | id = ISBN 1-85145-395-4 }}
58499 * {{cite book | last = Green | last = B. | year = 1979 | title = Wisden Anthology 1864-1900 | location = London | publisher = M &amp; J/QA Press | id = ISBN 0-356-10732-9 }}
58500 * {{cite book | last = Munns | last = J. | year = 1994 | title = Beyond reasonable doubt - Rupertswood, Sunbury - the birthplace of the Ashes | location = Australia | publisher = Joy Munns | id = ISBN 0-646-22153-1 }}
58501 * {{cite book | last = Warner | last = P. | year = 1987 | title = Lord's 1787-1945 | location = London | publisher = Pavilion Books | id = ISBN 1-85145-112-9 }}
58502 * {{cite book | last = Warner | last = P. | year = 2004 | title = How we recovered the Ashes : MCC Tour 1903-1904 | location = London | publisher = Methuen | id = ISBN 0-413-77399-X }}
58503 * {{cite book | last = Wynne-Thomas | last = P. | year = 1989 | title = The complete history of cricket tours at home and abroad | location = London | publisher = Hamlyn | id = ISBN 0-600-55782-0 }}
58504 '''Other'''
58505 *''Wisden's Cricketers Almanack'' (various editions)
58506
58507 ==External links==
58508 {{wikiquote}}
58509 {{portalpar|Cricket}}
58510 *[http://www.abcofcricket.com/A_Legend_Is_Born/a_legend_is_born.htm Ashes Series, A Legend is Born]
58511 *[http://www.cricinfo.com Cricinfo]
58512 *[http://www.cricketarchive.com Cricket Archive]
58513 *[http://www.games.telegraph.co.uk/sport/main.jhtml?view=DETAILS&amp;grid=&amp;xml=/sport/2005/04/23/smmix23.xml Six Curiosities from the MCC Museum, by Ricky Ponting in the Telegraph]
58514 *[http://www.lawsonmenzies.com.au/pr15.html The Ashes Tray]
58515 *[http://www.xan.co.uk/volume_28.php England Win The Ashes]Crowd sounds and interviews with supporters. Recorded at The Oval, London, Monday, [[12 September]] [[2005]]
58516
58517 [[Category:Australian culture|Ashes, The]]
58518 [[Category:British culture|Ashes, The]]
58519 [[Category:Cricket in Australia|Ashes, The]]
58520 [[Category:Cricket in England|Ashes, The]]
58521 [[Category:History of cricket|Ashes, The]]
58522 [[Category:International cricket competitions|Ashes]]
58523 [[Category:The Ashes| ]]
58524 [[Category:Australian sporting events|Ashes, The]]
58525
58526 [[de:Ashes]]
58527 [[fr:Les Ashes]]
58528 [[scn:The Ashes]]
58529 [[sv:The Ashes]]
58530 {{featured article}}</text>
58531 </revision>
58532 </page>
58533 <page>
58534 <title>Anne Rice</title>
58535 <id>1133</id>
58536 <revision>
58537 <id>42037562</id>
58538 <timestamp>2006-03-03T10:44:20Z</timestamp>
58539 <contributor>
58540 <username>KenL</username>
58541 <id>465210</id>
58542 </contributor>
58543 <comment>Added more info on her name.</comment>
58544 <text xml:space="preserve">[[Image:AC LgPic Gen2.jpg|thumb|Anne Rice]]
58545 '''Anne Rice''' (born [[October 4]], [[1941]]) is a best-selling [[United States|American]] author of horror/fantasy books. She was born '''Howard Allen O'Brien''', the second daughter in a Catholic Irish-American family. Rice's works have had a major influence on the &quot;[[Goth]]&quot; movement, and she has also published a number of works with [[sado-masochistic]] themes. She was married to the late poet [[Stan Rice]] and is the mother of novelist [[Christopher Rice]]. Her daughter, Michele, was born on [[September 21]], [[1966]] and died of [[leukemia]] on [[August 5]] [[1972]]. Anne's sister, [[Alice Borchardt]], is also a noted genre author.
58546
58547 Rice was born and spent most of her life in [[New Orleans, Louisiana|New Orleans]], [[Louisiana]], the city that forms the background against which most of her stories take place. About her unusual given name, Rice said: &quot;My birth name is Howard Allen because apparently my mother thought it was a good idea to name me Howard. My father's name was Howard, she wanted to name me after Howard, and she thought it was a very interesting thing to do. She was a bit of a Bohemian, a bit of mad woman, a bit of a genius, and a great deal of a great teacher. And she had the idea that naming a woman Howard was going to give that woman an unusual advantage in the world. &quot;
58548
58549 Anne became &quot;Anne&quot; on her first day of school, when a nun asked her what her name was. She blurted out &quot;Anne&quot; immediately, and her mother, who was with her, let it go without correcting her, knowing how self-conscious her daughter was of her real name
58550
58551 Known for her avid interest in art and culture, Anne and her family occasionally took trips overseas to study the art later mentioned in her stories. More recently, following the death of her husband Stan Rice, she has relocated to the [[Coachella Valley]], California area to be nearer her son, Christopher. After spending most of her adult life as a self described [[atheist]], Rice returned to the [[Roman Catholic Church]] in 1998, and she is currently working on a trilogy about the life of [[Jesus]].
58552
58553 Rice has also published erotica under the [[pen name]]s '''Anne Rampling''' and '''A.N. Roquelaure''', the latter of which was used primarily for more adult-oriented material. Her fiction is often described as lush and descriptive, and her characters' sexuality is fluid, often displaying homoerotic feelings towards each other. She also deals with philosophical and historic themes, weaving them in to the dense pattern of her books, and giving them a highly intellectual, if not highly literary, content. To her admirers, Rice's books are among the best in modern [[popular fiction]], considered by some to possess those elements that create a lasting presence in the literary canon. To her critics, her novels are baroque, &quot;low-brow pulp&quot; and redundant.
58554
58555 A critical analysis of Rice's work can be found in [[S. T. Joshi]]'s book ''The Modern Weird Tale'' (2001).
58556
58557 === Conversion to a Christian Novelist===
58558 In October of 2005, Rice announced in a [http://www.msnbc.msn.com/id/9785289/site/newsweek/ Newsweek article] that she would &quot;write only for the Lord&quot;. Her first novel in the genre is called ''[[Christ the Lord: Out of Egypt]]'' and is the first in a trilogy that will chronicle the life of Christ.
58559
58560 ===The Vampire Chronicles===
58561 She completed her first book, ''[[Interview with the Vampire]]'', in 1973 and published it in 1976.
58562
58563 ''Interview with the Vampire'' can also be viewed as an example of [[psychedelic literature]]. Rice herself has denied ever having experimented with [[LSD]]. &quot;I'm a totally conservative person. In the middle of [[Haight-Ashbury]] in the 1960s, I was typing away while everybody was dropping acid and smoking grass. I was known as my own square.&quot; (''[[New York Times]]'', Nov 7, 1988) Her protagonist Louis, however, describes a heightened awareness after being transformed into a vampire which does mirror the LSD experience to some extent.
58564
58565 Rice has said that Claudia, the young girl in the book, was inspired by her late daughter.
58566
58567 ===Film Adaptations===
58568 In [[1994]], [[Neil Jordan]] directed a [[motion picture]] adaption of [[Interview with the Vampire]], based on the story, but with some minor changes. A second movie was later made, inspired by the second and third books in the original ''Vampire Chronicles'' series. The title was that of the third book, ''[[The Queen of the Damned]]''. The storyline chosen by the producers of the second film is controversial among many fans of her books. Major plot points of both books were altered, and it has been rumoured that the second film's theatrical release was based solely on its producers' wish to capitalize on the death of [[Aaliyah]]. Another rumor being that [[Warner Bros.]] was already into its last year of owning motion picture rights to the first three [[The Vampire Chronicles|Vampire Chronicles]] books, which would then have transferred back to author Anne Rice once this period was over. Once back in her ownership, she could then sell the rights to another company of her choosing. Knowing what little time they had left, despite the fact they've had the rights and opportunity to make the latter two movies for over seven years, Warner Bros. hastily hired writers to condense the books &quot;''[[The Vampire Lestat]]''&quot; and &quot;''[[The Queen of the Damned]]''&quot; into one movie in order to profit from their initial rights purchase.
58569
58570 A film named ''Exit to Eden'' based loosely on Rice's book of the same name starred [[Rosie O'Donnell]] and [[Dan Aykroyd]]. The plot was seriously altered, with the work transformed from a love story into a police comedy, possibly due to the explicit [[S&amp;M]] nature of the book.
58571
58572 ===Health===
58573 Rice has Type 1 [[diabetes]]. This was discovered when she went into a [[diabetic coma]] in December 1998. She is an advocate for people to get tested for diabetes. Because of a lifelong battle with her weight as well as depression due to the long illness and subsequent death of her husband, Rice's weight ballooned to 254 pounds. Tired of dealing with [[sleep apnea]], limited mobility, and other weight-related problems, she had [[gastric bypass]] surgery on [[January 15], [[2003]].
58574
58575 ===Leaving New Orleans===
58576
58577 On [[ January 30]], [[2004]] Rice announced her plans to leave New Orleans to move the suburb of [[Jefferson Parish, Louisiana]]. She had already put the largest of her three homes in [[Uptown New Orleans]] up for sale, and plans to sell the other two. She cited living alone since the death of her husband and her son's moving out of state as the reasons. &quot;Simplifying my life, not owning so much, that's the chief goal&quot;, said Rice. &quot;I'll no longer be a citizen of New Orleans in the true sense.&quot;
58578
58579 In spring 2005 Anne Rice moved to [[La Jolla]], [[California]]. She calls her new home &quot;Paradise West&quot;. Some have speculated that Rice also wished for more privacy from the constant attentions of her fans, who were known to camp out in front of her house. Sometimes, up to 200 or more would gather to see her leave for [[church]] on Sundays.
58580
58581 ===Fanfiction Stance===
58582
58583 Rice is very adamant about preventing any [[fan fiction]] of her books-- on [[April 7]], [[2000]], she released a statement on her website that prohibited all fanfiction involving her work. This caused the removal of thousands of fanfics from the popular [[Fanfiction.Net]] website.
58584
58585 ===Amazon incident===
58586 On [[September 6]], [[2004]], Rice posted a reply to a number of negative reviews that had appeared on [[Amazon.com]] regarding ''[[Blood Canticle]]''. She titled her reply, [http://www.amazon.com/gp/community-content-search/document/102-0196178-4104136?%5Fencoding=UTF8&amp;documentId=R1FLRHCYSK13PB&amp;index=community-reviews-realtime&amp;query=ASIN%3A037541200X%20from%20the%20author%20to &quot;From the Author to the Some of the Negative Voices Here.&quot;] This post generated a great deal of publicity online -- partly because authors rarely post or respond to reviews on Amazon, and partly because of the tone and nature of her text. Many previous reviews had criticized the quality of writing in ''Blood Canticle'' as lazy or shoddy; so when Rice replied by posting a 1,200-word paragraph wherein she proudly dismisses the utility of editors, the incident became fodder for [[weblog]]s and [[Internet]] sites.
58587
58588 ===Books===
58589 '''[[The Vampire Chronicles]]:'''
58590 *''[[Interview with the Vampire]]'' (1976)
58591 *''[[The Vampire Lestat]]'' (1985)
58592 *''[[The Queen of the Damned]]'' (1988)
58593 *''[[The Tale of the Body Thief]]'' (1992)
58594 *''[[Memnoch The Devil]]'' (1995)
58595 *''[[The Vampire Armand]]'' (1998)
58596 *''[[Merrick (novel)|Merrick]]'' (2000)
58597 *''[[Blood and Gold]]'' (2001)
58598 *''[[Blackwood Farm]]'' (2002)
58599 *''[[Blood Canticle]]'' (2003)
58600
58601 '''[[New Tales of the Vampires]]:''' ''(Other vampire tales that are not within the main sequence, but in the same fictional world)''
58602 *''[[Pandora (book)|Pandora]]'' (1998)
58603 *''[[Vittorio the Vampire]]'' (1999)
58604
58605 '''[[The Mayfair Witches|Lives of The Mayfair Witches]]:'''
58606 *''[[The Witching Hour]]'' (1990)
58607 *''[[Lasher]]'' (1993)
58608 *''[[Taltos]]'' (1994)
58609
58610 '''Single Novels:'''
58611 *''[[The Feast of All Saints]]'' (1979)
58612 *''[[Cry to Heaven]]'' (1982)
58613 *''[[The Mummy (novel)|The Mummy]]'', or ''Ramses the Damned'' (1989)
58614 *''[[Servant of the Bones]]'' (1996)
58615 *''[[Violin (book)|Violin]]'' (1997)
58616
58617 '''The Christ Series:'''
58618 *''[[Christ the Lord: Out of Egypt]]'' (2005) - Anne has suggested that there will be three sequels to this work
58619
58620 '''Short Fiction:'''
58621 *''October 4th, 1948''
58622 *''Nicholas and Jean''
58623 *''The Master of Rampling Gate'' (Vampire Story)
58624
58625 '''Work written under the pseudonym Anne Rampling:'''
58626 *''[[Exit to Eden]]'' (1985)
58627 *''[[Belinda (Anne Rice novel)|Belinda]]'' (1986)
58628
58629 '''Erotica written under the pseudonym A. N. Roquelaure:'''
58630 *''[[The Claiming of Sleeping Beauty]]'' (1983)
58631 *''[[The Claiming of Sleeping Beauty|Beauty's Punishment]]'' (1984)
58632 *''[[The Claiming of Sleeping Beauty|Beauty's Release]]'' (1985)
58633
58634 == See also ==
58635 * [[List of bestselling novels in the United States]]
58636
58637 ==External links==
58638 {{wikiquote}}
58639 *[http://www.annerice.com Anne Rice's official website]
58640 *[http://www.amazon.com/gp/cdp/member-reviews/AB4F6UHL20U95/ Reviews written by Anne Rice on amazon.com]
58641 *[http://www.amazon.com/exec/obidos/tg/detail/-/0375412018 Anne Rice's new book ''Christ the Lord: Out of Egypt'']
58642 *[http://wiredforbooks.org/annerice/ Two audio interviews (1985 and 1988) of Anne Rice by Don Swaim of CBS Radio - RealAudio]
58643 *[http://www.nytimes.com/2005/09/04/opinion/04rice.html?ei=5090&amp;en=ce2f33f8719dba9c&amp;ex=1283486400&amp;partner=rssuserland&amp;emc=rss&amp;pagewanted=print Anne Rice: Do You Know What It Means to Lose New Orleans?] (regarding Hurricane Katrina)
58644 *[http://www.twoop.com/people/archives/2005/10/anne_rice.html Anne Rice Timeline]
58645 *[http://www.freeinfosociety.com/site.php?postnum=605 Bio and Pictures]
58646
58647 [[Category:1941 births|Rice, Anne]]
58648 [[Category:Living people|Rice, Anne]]
58649 [[Category:American fantasy writers|Rice, Anne]]
58650 [[Category:American horror writers|Rice, Anne]]
58651 [[Category:Irish-Americans|Rice, Anne]]
58652 [[Category:New Orleanians|Rice, Anne]]
58653 [[Category:People opposed to fan fiction|Rice, Anne]]
58654 [[Category:Roman Catholic writers|Rice, Anne]]
58655
58656 [[bg:АĐŊ Đ Đ°ĐšŅ]]
58657 [[da:Anne Rice]]
58658 [[de:Anne Rice]]
58659 [[es:Anne Rice]]
58660 [[fr:Anne Rice]]
58661 [[is:Anne Rice]]
58662 [[it:Anne Rice]]
58663 [[nl:Anne Rice]]
58664 [[ja:ã‚ĸãƒŗãƒģナイ゚]]
58665 [[no:Anne Rice]]
58666 [[pl:Anne Rice]]
58667 [[pt:Anne Rice]]
58668 [[fi:Anne Rice]]
58669 [[sv:Anne Rice]]</text>
58670 </revision>
58671 </page>
58672 <page>
58673 <title>Analysis</title>
58674 <id>1134</id>
58675 <revision>
58676 <id>40763791</id>
58677 <timestamp>2006-02-22T21:39:46Z</timestamp>
58678 <contributor>
58679 <username>KSchutte</username>
58680 <id>295931</id>
58681 </contributor>
58682 <text xml:space="preserve">{{wiktionarypar|analysis}}
58683
58684 '''Analysis''' generally means ''the action of taking something apart in order to study it.''
58685
58686 It may refer to:
58687
58688 In '''philosophy''':
58689 * [[Philosophical analysis]], a general term for the techniques used by philosophers
58690 * ''[[Analysis (journal)|ANALYSIS]]'' is the name of a prominent journal in philosophy.
58691
58692 In '''mathematics''':
58693 * [[Mathematical analysis]], the generic name given to any branch of mathematics which depends upon the concepts of limits and convergence
58694 ** [[Complex analysis]]
58695 ** [[Functional analysis]]
58696 ** [[Harmonic analysis]]
58697 ** [[Non-standard analysis]]
58698 ** [[Real analysis]]
58699
58700 In '''statistics''':
58701 * [[Analysis of variance]], a collection of statistical models and their associated procedures which compare means by splitting the overall observed variance into different parts
58702 * [[Meta-analysis]], combines the results of several studies that address a set of related research hypotheses
58703 * [[Time-series analysis]], methods that attempt to understand a sequence of data points spaced apart at uniform time intervals
58704
58705 In '''computer science''':
58706 * [[Analysis of algorithms]]
58707 * [[Competitive analysis]], shows how on-line algorithms perform and demonstrates the power of randomization in algorithms
58708 * [[Computer program analysis]], the process of automatically analysing the behavior of computer programs
58709 * [[Lexical analysis]], the process of procesing an input sequence of characters and producing as output a sequence of symbols
58710 * [[Numerical analysis]], the study of algorithms for the problems of continuous mathematics
58711 * [[Object-oriented analysis and design]], ala Booch
58712 * [[Semantic analysis (computer science)]]
58713 * [[Static code analysis]], the analysis of computer software that is performed without actually executing programs built from that software
58714 * [[Structured Systems Analysis and Design Methodology]], ala Yourdon
58715 * [[Syntax analysis]], a process in compilers that recognizes the structure of programming languages, also known as parsing
58716
58717 In '''music''':
58718 * [[Musical analysis]], a process attempting to answer the question &quot;how does this music work?&quot;
58719 ** [[Schenkerian analysis]]
58720
58721 In '''psychotherapy''':
58722 * [[Psychoanalysis]], seeks to elucidate connections among unconscious components of patients' mental processes
58723 ** [[Transactional analysis]]
58724
58725 In '''cryptography''':
58726 * [[Cryptanalysis]], the study of methods for obtaining the meaning of encrypted information
58727 * [[Frequency analysis]], a method to decompose a function, wave, or signal into its frequency components
58728
58729 In '''economics''':
58730 * [[Financial analysis]], the analysis of the accounts and the economic prospects of a firm
58731 * [[Fundamental analysis]], a stock valuation method that uses financial analysis
58732 * [[Principal components analysis]], a technique that can be used to simplify a dataset
58733 * [[Technical analysis]], the study of price action in securities markets in order to forecast future prices
58734
58735 In '''linguistics''':
58736 * [[Discourse analysis]], a general term for the analysis of language use above the sentence or clause level
58737 * [[Semantic analysis (linguistics)]], the process of unpacking clause, sentence and paragraph structure
58738 * [[Voice analysis]], the study of speech sounds for purposes other than linguistic content
58739
58740 In '''signal processing''':
58741 * [[Finite element analysis]], a computer simulation technique used in engineering analysis
58742 * [[Independent component analysis]]
58743 * [[Link quality analysis]], the analysis of signal quality
58744 * [[Path quality analysis]]
58745
58746 In '''literary criticism''':
58747 * [[Analysis (Homer)]], an influential school of thought in Homeric scholarship in the 19th-20th centuries
58748
58749 It may also refer to:
58750 * [[Aura analysis]], a technique in which supporters of the method claim that the body's aura, or energy field is &quot;analyzed&quot;
58751 * [[Bowling analysis]], a notation summarising a cricket bowler's performance
58752 * [[Category analysis]]
58753 * [[Chemical analysis]], the analysis of material samples to gain an understanding of their chemical composition and structure
58754 * [[Dimensional analysis]], a conceptual tool to understand physical situations involving a mix of different kinds of physical quantities
58755 * [[Isotope analysis]], the identification of isotopic signature, the distribution of certain stable isotopes and chemical elements within chemical compounds
58756 * [[Life cycle cost analysis]], calculates the cost of a system or product over its entire life span
58757 * [[Lithic analysis]], the analysis of stone tools using basic scientific techniques
58758 * [[Neutron activation analysis]], a technique used to very accurately determine the concentrations of elements in a sample
58759 * [[Protocol analysis]], a means for extracting persons' thoughts while they are performing a task
58760 * [[System analysis]], the branch of electrical engineering that characterizes electrical systems and their properties
58761 * [[Systems analysis]], the science dealing with analysis of complex, large scale systems and the interactions within those systems
58762
58763 ==See also==
58764 *[[Analytic]]
58765 *[[Synthesis]]
58766 *[[Scientific method]]
58767
58768 {{disambig}}
58769
58770 [[cs:AnalÃŊza]]
58771 [[da:Analyse]]
58772 [[de:Analyse]]
58773 [[es:AnÃĄlisis]]
58774 [[fr:Analyse]]
58775 [[io:Analizo]]
58776 [[ko:해ė„í•™]]
58777 [[lb:Analys]]
58778 [[mk:АĐŊĐ°ĐģиСа]]
58779 [[nl:Analyse]]
58780 [[pl:Analiza]]
58781 [[simple:Analyse]]</text>
58782 </revision>
58783 </page>
58784 <page>
58785 <title>Abner Doubleday</title>
58786 <id>1135</id>
58787 <revision>
58788 <id>41932237</id>
58789 <timestamp>2006-03-02T18:39:49Z</timestamp>
58790 <contributor>
58791 <username>Hlj</username>
58792 <id>36708</id>
58793 </contributor>
58794 <comment>reword</comment>
58795 <text xml:space="preserve">[[Image:AbnerDoubleday.jpeg|thumb|Abner Doubleday]]
58796 '''Abner Doubleday''' ([[June 26]], [[1819]] &amp;ndash; [[January 26]], [[1893]]), was a career [[U.S. Army]] officer and [[Union army|Union]] general in the [[American Civil War]]. He fired the first shot in defense of [[Battle of Fort Sumter|Fort Sumter]], the opening battle of the war. Although he himself made no such claim, some believe he should be credited with the invention of [[baseball]].
58797
58798 ==Early years==
58799 Doubleday was born in [[Ballston Spa, New York]]. His grandfather had fought in the [[Revolutionary War]] and his father served four years in the [[U.S. Congress]]. Abner practiced as a civil engineer for two years before entering the [[U.S. Military Academy]], from which graduated in 1842 and was commissioned a [[second lieutenant]] in the 3rd U.S. Artillery.
58800
58801 ==Military career==
58802 Doubleday served in the [[Mexican-American War]] and [[Seminole Wars]]. At the start of the Civil War, he was a captain in the garrison at [[Fort Sumter]] in [[Charleston, South Carolina|Charleston Harbor]], under [[Major Robert Anderson]]. He aimed the cannon that fired the first return shot in answer to the [[Confederate States Army | Confederate]] bombardment on [[April 12]], [[1861]], starting the war.
58803
58804 Doubleday served in the [[Shenandoah Valley]] from June to August, 1861. He was appointed [[brigadier general]] of volunteers on [[February 3]], [[1862]], and led the 2nd Brigade, 1st Division, [[III Corps (ACW)|III Corps]] at the [[Second Battle of Bull Run]]. He took command of the division on [[August 30]] when its commander was wounded. He again led the division at [[Battle of South Mountain|South Mountain]], [[Battle of Antietam|Antietam]] (where he was wounded by a shell exploding nearby), and [[Battle of Fredericksburg|Fredericksburg]] (where his division mostly sat idle).
58805
58806 Doubleday was promoted to [[major general]] of volunteers on [[November 9]], [[1862]], and commanded 3rd Division, [[I Corps (ACW)|I Corps]], at [[Battle of Chancellorsville|Chancellorsville]], and took over corps command for a day when General [[John F. Reynolds]] was killed in opening of the [[Battle of Gettysburg]], [[July 9]], [[1863]]. Army commander [[George G. Meade]] replaced Doubleday with [[John Newton (ACW) | John Newton]], a more junior major general from another corps, after the first day of battle, one in which the I Corps was overwhelmed by a Confederate assault. Meade had a long history of disdain for Doubleday's combat effectiveness, dating back to South Mountain. Doubleday was humiliated by this snub and held a lasting grudge against Meade. He was wounded in the neck on the second day of the battle and assumed mostly administrative duties in the defenses of [[Washington, D.C.]], including the attack by [[Jubal A. Early]] in the [[Valley Campaigns of 1864]].
58807
58808 ==Later life==
58809 After the Civil War, Doubleday retired from the Army in 1873 and moved to [[San Francisco]], where he obtained a charter for the [[cable car (railway)|cable car]] railway that still runs there. By 1878, he was living in [[Mendham, New Jersey]], from where, that year, he became a prominent member of the [[Theosophical Society]]. When two of the founders of that society, [[Helena Blavatsky]] and [[Henry Steel Olcott]], moved to India at the end of that year, he was constituted as the President of the American body.
58810
58811 Doubleday died in Mendham, and is buried in [[Arlington National Cemetery]] in Arlington, Virginia.
58812
58813 ==Legacy==
58814 Although Doubleday was a competent, if colorless, combat general with experience in many important Civil War battles, the lore of baseball credits Doubleday with inventing the game, supposedly in [[Elihu Phinney]]'s cow pasture in [[Cooperstown, New York]], in 1839.
58815
58816 The Mills Commission was appointed in 1905 to determine the origin of baseball. The committee's final report, on [[December 30]], [[1907]], stated, in part, that &quot;the first scheme for playing baseball, according to the best evidence obtainable to date, was devised by Abner Doubleday at [[Cooperstown, New York]], in 1839.&quot;
58817
58818 However, there is [[Origins of baseball#Did Abner Doubleday invent baseball?|considerable evidence]] to dispute this claim. At his death, Doubleday left many letters and papers, none of which describe baseball, or give any suggestion that he considered himself a prominent person in the evolution of the game. An encyclopedia article about Doubleday published in 1911 makes no mention of the game. He was a cadet at [[West Point]] in the year of the alleged invention and there is no record he requested leave to travel to Cooperstown.
58819
58820 Doubleday published two important works on the Civil War: ''Reminiscences of Forts Sumter and Moultrie'' (1876), and ''Chancellorsville and Gettysburg'' (1882), the latter being a volume of the series ''Campaigns of the Civil War''.
58821
58822 Doubleday's indecision as a commander earned him the uncomplimentary nickname &quot;Forty-Eight Hours&quot;.
58823
58824 {{libship honor|name=Abner Doubleday|type=his}}
58825
58826 ==See also==
58827 *[[Origins of baseball#Did Abner Doubleday invent baseball?|Origins of baseball]]
58828
58829 ==References==
58830 * Eicher, John H., &amp; Eicher, David J., ''Civil War High Commands'', Stanford University Press, 2001, ISBN 0-8047-3641-3.
58831 * Tagg, Larry, [http://www.rocemabra.com/~roger/tagg/generals/ ''The Generals of Gettysburg''], Savas Publishing, 1998, ISBN 1-882810-30-9.
58832 * {{1911}}
58833
58834 ==External links==
58835 *[http://www.findagrave.com/pictures/4830.html Grave Site]
58836 *[http://baseballhalloffame.org/about/history.htm Baseball Hall of Fame]
58837 *[http://www.blavatskyarchives.com/doubledaygeneralindefense.htm ''Defense of Madame Blavatsky'']
58838 *[http://www.theosophy-nw.org/theosnw/theos/th-tsgom.htm ''Abner Doubleday and Theosophy'']
58839 *[http://www.baseballhalloffame.com/about/history.htm Baseball Hall of Fame]
58840
58841 {{Template:Theosophy}}
58842
58843 [[Category:1819 births|Doubleday, Abner]]
58844 [[Category:1893 deaths|Doubleday, Abner]]
58845 [[Category:West Point graduates|Doubleday]]
58846 [[Category:United States Army generals|Doubleday, Abner]]
58847 [[Category:American Civil War Generals|Doubleday, Abner]]
58848 [[Category:Mexican-American War people|Doubleday, Abner]]
58849 [[Category:Burials at Arlington National Cemetery|Doubleday, Abner]]</text>
58850 </revision>
58851 </page>
58852 <page>
58853 <title>Americas National Game</title>
58854 <id>1136</id>
58855 <revision>
58856 <id>15899639</id>
58857 <timestamp>2004-11-21T01:26:55Z</timestamp>
58858 <contributor>
58859 <username>D6</username>
58860 <id>75561</id>
58861 </contributor>
58862 <minor />
58863 <comment>adding [[Category:1911 books]]</comment>
58864 <text xml:space="preserve">'''''Americas National Game''''' is a book by [[Albert Spalding]], published in [[1911]] detailing the early history of the [[game]] of [[baseball]]. Much of the story is told first hand, since Spalding had been involved in the game, first as a player and later an administrator, since the 1850s. In addition to his personal recollections he had access to the records of [[Henry Chadwick]], the game's first statistician and archivist. Spalding was, however, known to aggrandise his role in the major moments in baseball's history.
58865
58866 See also: [[History of baseball]]
58867
58868 [[Category:1911 books]]</text>
58869 </revision>
58870 </page>
58871 <page>
58872 <title>AustralianRulesFootball</title>
58873 <id>1138</id>
58874 <revision>
58875 <id>15899641</id>
58876 <timestamp>2004-11-09T05:28:08Z</timestamp>
58877 <contributor>
58878 <username>TPK</username>
58879 <id>35188</id>
58880 </contributor>
58881 <minor />
58882 <comment>oops</comment>
58883 <text xml:space="preserve">#REDIRECT [[Australian rules football]]</text>
58884 </revision>
58885 </page>
58886 <page>
58887 <title>Amplitude modulation</title>
58888 <id>1140</id>
58889 <revision>
58890 <id>42117400</id>
58891 <timestamp>2006-03-03T23:01:39Z</timestamp>
58892 <contributor>
58893 <username>Colonies Chris</username>
58894 <id>577301</id>
58895 </contributor>
58896 <minor />
58897 <comment>links</comment>
58898 <text xml:space="preserve">'''Amplitude modulation''' ('''AM''') is a form of [[modulation]] in which the [[amplitude]] of a [[carrier wave]] is varied in direct proportion to that of a modulating signal. (Contrast this with [[frequency modulation]], in which the [[frequency]] of the carrier is varied; and [[phase modulation]], in which the [[Phase (waves)|phase]] is varied.)
58899
58900 AM is commonly used at [[Radio frequency|radio frequencies]] and was the first method used to [[Broadcasting|broadcast]] commercial [[radio]]. The term &quot;AM&quot; is sometimes used generically to refer to the AM broadcast ([[mediumwave]]) [[Band (electronics)|band]] (see [[AM radio]]).
58901
58902 == Applications in radio ==
58903 [[Image:Amplitude-modulation.png|right|frame|An example of amplitude modulation. The top diagram shows the modulating signal superimposed on the carrier wave. The bottom diagram shows the resulting amplitude-modulated signal. Notice how the peaks of the modulated output follow the contour of the original, modulating signal.]]
58904
58905 A basic AM radio [[transmitter]] works by first [[Direct current|DC]]-shifting the modulating signal, then multiplying it with the [[carrier wave]] using a [[frequency mixer]]. The output of this process is a signal with the same frequency as the carrier but with peaks and troughs that vary in proportion to the strength of the modulating signal. This is [[amplifier|amplified]] and fed to an [[antenna (radio)|antenna]].
58906
58907 ===AM vs. FM===
58908 AM radio's main limitation is its susceptibility to atmospheric [[interference]], which is heard as [[white noise|static]] from the receiver. The narrow [[bandwidth]] traditionally used for AM broadcasts further limits the quality of sound that can be received. Since the 1970s, [[wideband]] [[FM]] has been preferred for musical broadcasts, due to its higher audio fidelity and noise-suppression characteristics.
58909
58910 The fact that signals can be decoded using very simple equipment is one of the primary advantages of amplitude modulation. This was especially important in the early days of commercial radio, when [[Electronics|electronic]] components were still quite expensive. This simplicity and affordability helped make AM one of the most popular methods for sending voice and music over radio during the 20th century.
58911
58912 An AM [[receiver (radio)|receiver]] consists primarily of a tunable [[Filter (signal processing)|filter]] and an [[envelope detector]], which in simpler sets is a single [[diode]]. Its output is a signal at the carrier frequency, with peaks that trace the amplitude of the unmodulated signal. Unlike other modulation techniques, this is all that is needed to recover the original audio. In practice, a [[capacitor]] is used to undo the DC shift introduced by the transmitter and to eliminate the carrier frequency by connecting the signal peaks. The output is then fed to an [[audio amplifier]].
58913
58914 [[Image:Am_radio.png|thumb|left|A network [[schematic]] of a simple AM receiver. A diode functions as the [[envelope detector]], with the recovered audio fed directly to an [[earphone]].]]
58915
58916 To make a good AM receiver an [[automatic gain control]] loop is essential; this requires good design. To make a good FM receiver a large number of [[Radio frequency|RF]] amps which are driven into limiting are required to create a receiver which can take advantage of the [[capture effect]], one of the biggest advantages of FM. With valved (tube) systems it is more expensive to make active stages than it is to make the same number of stages with solid state parts, so for a valved [[superhet]] it is simpler to make an AM receiver with the automatic gain control loop while for a solid state receiver it is simpler to make an FM unit. Hence even while the idea of FM was known before [[WWII]] its use was rare because of the cost of valves - in the UK the government had a [[valve holder tax]] {{fact}} which encouraged radio receiver designers to use as few active stages as possible, - but when solid state parts became available FM started to gain favour. &lt;!-- By Horst Rebein --&gt;
58917
58918 == Forms of AM ==
58919 In its basic form, amplitude modulation produces a signal with power concentrated at the carrier frequency and in two adjacent [[sideband]]s. Each sideband is equal in [[bandwidth]] to that of the modulating signal and is a mirror image of the other. Thus, most of the power output by an AM transmitter is effectively wasted: half the power is concentrated at the carrier frequency, which carries no useful information (beyond the fact that a signal is present); the remaining power is split between two identical sidebands, only one of which is needed.
58920
58921 To increase transmitter efficiency, the carrier can be removed (suppressed) from the AM signal. This produces a [[reduced-carrier transmission]] or ''double-sideband suppressed carrier'' (DSBSC) signal. If the carrier is only partially suppressed, a '''double-sideband reduced carrier''' (DSBRC) signal results. DSBSC and DSBRC signals need their carrier to be regenerated (by a [[beat frequency oscillator]], for instance) to be demodulated using conventional techniques.
58922
58923 Even greater efficiency is achieved&amp;mdash;at the expense of increased transmitter and receiver complexity&amp;mdash;by completely suppressing both the carrier and one of the sidebands. This is [[single-sideband modulation]], widely used in [[amateur radio]] due to its efficient use of both power and bandwidth.
58924
58925 A simple form of AM often used for [[digital]] communications is ''[[on-off keying]]'', a type of ''[[amplitude-shift keying]]'' by which [[Binary numeral system|binary]] data is represented as the presence or absence of a carrier wave. This is commonly used at radio frequencies to transmit [[Morse code]], referred to as [[continuous wave]] (CW) operation.
58926
58927 == Example ==
58928 Suppose we wish to modulate a simple sine wave on a carrier wave. The equation for the carrier wave of frequency &lt;math&gt;\omega_c&lt;/math&gt;, taking its phase to be a reference phase of zero, is
58929
58930 :&lt;math&gt;c(t) = C \sin(\omega_c t)&lt;/math&gt;.
58931
58932 The equation for the simple sine wave of frequency &lt;math&gt;\omega_m&lt;/math&gt; (the signal we wish to broadcast) is
58933
58934 :&lt;math&gt;m(t) = M \sin(\omega_m t + \phi)&lt;/math&gt;,
58935 with &lt;math&gt;\phi&lt;/math&gt; its phase offset relative to &lt;math&gt;c(t)&lt;/math&gt;.
58936
58937 Amplitude modulation is performed simply by adding &lt;math&gt;m(t)&lt;/math&gt; to &lt;math&gt;C&lt;/math&gt;. The amplitude-modulated signal is then
58938
58939 :&lt;math&gt;y(t) = (C + M \sin(\omega_m t + \phi)) \sin(\omega_c t)&lt;/math&gt;
58940
58941 The formula for &lt;math&gt;y(t)&lt;/math&gt; above may be written
58942
58943 :&lt;math&gt;y(t) = C \sin(\omega_c t) + M \frac{\cos(\phi - (\omega_m - \omega_c) t)}{2} - M \frac{\cos(\phi + (\omega_m + \omega_c) t)}{2}&lt;/math&gt;
58944
58945 The broadcast signal consists of the carrier wave plus two sinusoidal waves each with a frequency slightly different from &lt;math&gt;\omega_c&lt;/math&gt;, known as sidebands. For the sinusoidal signals used here, these are at &lt;math&gt;\omega_c + \omega_m&lt;/math&gt; and &lt;math&gt;\omega_c - \omega_m&lt;/math&gt;. As long as the broadcast (carrier wave) frequencies are sufficiently spaced out so that these side bands do not overlap, stations will not interfere with one another.
58946
58947 ===A more general example===
58948 :''This relies on knowledge of the [[Fourier Transform]]. The discussion of the figure may prove more useful for a quicker understanding.''
58949
58950 Consider a general modulating signal &lt;math&gt;m(t)&lt;/math&gt;, which can now be anything at all. The same basic rules apply:
58951 :&lt;math&gt;\,y(t) = [C + m(t)]\cos(\omega_c t)&lt;/math&gt;.
58952 Or, in [[complex]] form:
58953 :&lt;math&gt;y(t) = [C + m(t)]\frac{e^{j\omega_c t} + e^{-j\omega_c t}}{2}&lt;/math&gt;
58954
58955 Taking Fourier Transforms, we get:
58956 :&lt;math&gt;|Y(\omega)| = \pi{}C\delta(\omega - \omega_c) + \frac{1}{2}M(\omega - \omega_c) + \pi{}C\delta(\omega + \omega_c) + \frac{1}{2}M(\omega + \omega_c)&lt;/math&gt;,
58957
58958 where &lt;math&gt;\delta(x)&lt;/math&gt; is the [[Paul Dirac|Dirac]] [[delta function]] &amp;mdash; a unit impulse at &lt;math&gt;x&lt;/math&gt; &amp;mdash; and capital functions indicate Fourier Transforms.
58959
58960 This has two components: one at positive [[frequency|frequencies]] (centered on &lt;math&gt;+\omega_c&lt;/math&gt;) and one at negative frequencies (centered on &lt;math&gt;-\omega_c&lt;/math&gt;). There is nothing mathematically wrong with negative frequencies, and they need to be considered here &amp;mdash; otherwise one of the sidebands will be missing. Shown below is a graphical representation of the above equation. It shows the modulating signal's [[spectral density|spectrum]] on top, followed by the full spectrum of the modulated signal.
58961
58962 [[Image:AM spectrum.png|thumb|center|500px|The (2-sided) spectrum of an AM signal.]]
58963
58964 This makes clear the two sidebands that this modulation method yields, as well as the carrier signals that go with them. The carrier signals are the impulses. Clearly, an AM signal's spectrum consists of its original (2-sided) spectrum shifted up to the carrier frequency. The negative frequencies are a mathematical nicety, but are essential since otherwise we would be missing the lower sideband in the original spectrum!
58965
58966 As already mentioned, if multiple signals are to be transmitted in this way (by [[frequency division multiplexing]]), then their carrier signals must be sufficiently separated that their spectra do not overlap. This analysis also shows that the transmission bandwidth of AM is twice the signal's original ([[baseband]]) bandwidth &amp;mdash; since both the positive and negative sidebands are 'copied' up to the carrier frequency, but only the positive sideband is present originally. Thus, double-sideband AM (DS-AM) is spectrally inefficient. The various suppression methods in [[#Forms of AM|Forms of AM]], can be seen clearly in the figure &amp;mdash; with the carrier suppressed there will be no impulses and with a sideband suppressed, the transmission bandwidth is reduced back to the original, baseband, bandwidth &amp;mdash; a significant improvement in spectrum usage.
58967
58968 An analysis of the power consumption of AM reveals that DS-AM with its carrier has an efficiency of about 33% &amp;mdash; very poor. The forms of AM with suppressed carriers are found to be 100% power efficient, since no power is wasted on the carrier signal which conveys no information.
58969
58970 ==Modulation index==
58971 As with other [[modulation index|modulation indices]], in AM, this quantity, also called ''modulation depth'', indicates by how much the modulated variable varies around its 'original' level. For AM, it relates to the variations in the carrier amplitude and is defined as:
58972 :&lt;math&gt;h = \frac{\mathrm{peak\ value\ of\ } m(t)}{C}&lt;/math&gt;.
58973 So if &lt;math&gt;h=0.5&lt;/math&gt;, the carrier amplitude varies by 50% above and below its unmodulated level, and for &lt;math&gt;h=1.0&lt;/math&gt; it varies by 100%. Modulation depth greater than 100% is generally to be avoided - practical transmitter systems will usually incorporate some kind of limiter circuit, such as a [[VOGAD]], to ensure this.
58974
58975 Variations of modulated signal with percentage modulation are shown below. In each image, the maximum amplitude is higher than in the previous image. Note that the scale changes from one image to the next.
58976 &lt;center&gt;[[Image:AM signals.svg]]&lt;/center&gt;
58977
58978 == Amplitude modulator designs ==
58979 ===Circuits===
58980 A wide range of different circuits have been used for AM, but one of the simplest circuits uses anode or collector modulation applied via a [[transformer]]. While it is perfectly possible to create good designs using solid-state electronics, [[thermionic valve|valved]] (tube) circuits are shown here. In general, valves are able to easily yield RF powers far in excess of what can be achieved using solid state. Most high-power broadcast stations still use valves.
58981
58982 [[Image:ammodstage.jpg|300px|right|thumb|Anode modulation using a transformer. The [[tetrode]] is supplied with an anode supply (and screen grid supply) which is modulated via the transformer. The resistor R1 sets the grid bias, both the input and outputs are tuned [[LC circuit]]s which are tapped into by inductive coupling]]
58983
58984 Modulation circuit designs can be broadly divided into low and high level.
58985
58986 === Low level ===
58987 Here a small [[Sound|audio]] stage is used to [[modulation|modulate]] a low power stage, the output of this stage is then amplified using a [[Linear amplifier|linear]] RF amplifier.
58988
58989 * Advantages
58990
58991 The advantage of using a linear RF amplifier is that the smaller early stages can be modulated, which only requires a small [[audio amplifier]] to drive the modulator.
58992
58993 * Disadvantages
58994
58995 The great disadvantage of this system is that the amplifer chain is less [[electrical efficiency|efficient]], because it has to be linear to preserve the modulation. Hence [[Electronic amplifier#Class C|Class C amplifiers]] cannot be employed.
58996
58997 An approach which marries the advantages of low-level modulation with the efficiency of a Class C power amplifier chain is to arrange a feedback system to compensate for the substantial distortion of the AM envelope. A simple detector at the transmitter output (which can be little more than a loosely coupled [[diode]]) recovers the audio signal, and this is used as [[negative feedback]] to the audio modulator stage. The overall chain then acts as a linear amplifier as far as the actual modulation is concerned, though the RF amplifier itself still retains the Class C efficiency. This approach is widely used in practical medium power transmitters, such as AM [[radiotelephone]]s.
58998
58999 === High level ===
59000 ; Advantages
59001
59002 One advantage of using class C amplifiers in a broadcast AM transmitter is that only the final stage needs to be modulated, and that all the earlier stages can be driven at a constant level. These class C stages will be able to generate the drive for the final stage for a smaller [[Direct current|DC]] power input. However in many designs in order to obtain better quality AM the penultimate RF stages will need to be subject to modulation as well as the final stage.
59003
59004 ; Disadvantages
59005
59006 A large audio amplifer will be needed for the modulation stage, at least equal to the power of the transmitter output itself. Traditionally the modulation is applied using an audio transformer, and this can be bulky. Direct coupling from the audio amplifier is also possible (known as a [[cascode]] arrangement), though this usually requires quite a high DC supply voltage (say 30V or more), which is not suitable for mobile units.
59007
59008 == See also ==
59009 * [[AM radio]] also referred to as [[Mediumwave]]
59010 * [[shortwave radio]] almost universally uses AM modulation, narrow FM occurring above 25 MHz.
59011 * [[Modulation]], for a list of other modulation techniques
59012 * [[AMSS]] Amplitude Modulation Signalling System, a digital system for adding low bitrate information to an AM signal.
59013 * [[Sideband]], for some explanation of what this is.
59014
59015 ==References==
59016 * Newkirk, David and Karlquist, Rick (2004). Mixers, modulators and demodulators. In D. G. Reed (ed.), ''The ARRL Handbook for Radio Communications'' (81st ed.), pp. 15.1&amp;ndash;15.36. Newington: ARRL. ISBN 0-87259-196-4.
59017
59018 [[Category:Radio modulation modes]]
59019
59020 [[de:Amplitudenmodulation]]
59021 [[es:Amplitud Modulada]]
59022 [[fr:Modulation d'amplitude]]
59023 [[ko:ė§„폭 ëŗ€ėĄ°]]
59024 [[he:איפנון מ׊ר×ĸ×Ē]]
59025 [[nl:Amplitudemodulatie]]
59026 [[ja:振嚅変čĒŋ]]
59027 [[no:Amplitudemodulasjon]]
59028 [[pl:Modulacja amplitudy]]
59029 [[pt:ModulaçÃŖo em Amplitude]]
59030 [[fi:AM]]
59031 [[zh:振嚅čĒŋ變]]</text>
59032 </revision>
59033 </page>
59034 <page>
59035 <title>Augustin-Jean Fresnel</title>
59036 <id>1141</id>
59037 <revision>
59038 <id>40664957</id>
59039 <timestamp>2006-02-22T03:55:14Z</timestamp>
59040 <contributor>
59041 <ip>69.168.254.200</ip>
59042 </contributor>
59043 <comment>/* Researches */</comment>
59044 <text xml:space="preserve">:''For the lighting instrument, see [[Fresnel lantern]].
59045
59046 [[Image:Afresnel.jpg|thumb|right|Augustin Fresnel]]
59047
59048
59049 '''Augustin-Jean Fresnel''' (pronounced [{{IPA|fre&amp;#618; 'nel}}] in [[American English|AmE]], [{{IPA|f&amp;#641;&amp;#603; n&amp;#603;l}}] in [[French language|French]]) ([[May 10]], [[1788]] &amp;ndash; [[July 14]], [[1827]]), was a [[France|French]] [[physics|physicist]] who contributed significantly to the establishment of the theory of [[wave|wave optics]]. Fresnel studied the behaviour of light both theoretically and experimentally.
59050
59051 ==Biography==
59052
59053 Fresnel was the son of an architect, born at [[Broglie, Eure|Broglie]] ([[Eure]]). His early progress in learning was slow, and he still could not read when he was eight years old. At thirteen he entered the École Centrale in [[Caen]], and at sixteen and a half the [[École Polytechnique]], where he acquitted himself with distinction. From there he went to the [[École Nationale des Ponts et ChaussÊes|École des Ponts et ChaussÊes]]. He served as an engineer successively in the departments of [[VendÊe]], [[Drôme]] and [[Ille-et-Vilaine]]; but having supported the [[Bourbon house|Bourbons]] in [[1814]] he lost his appointment on [[Napoleon I of France|Napoleon's]] return to power.
59054
59055 On the second restoration of the monarchy, he obtained a post as engineer in [[Paris]], where much of his life from that time was spent. His researches in optics, continued until his death, appear to have been begun about the year [[1814]], when he prepared a paper on the [[aberration of light]], which, however, was not published. In [[1818]] he wrote a memoir on [[diffraction]] for which in the ensuing year he received the prize of the [[French Academy of Sciences|AcadÊmie des Sciences]] at Paris. He was in [[1823]] unanimously elected a member of the academy, and in [[1825]] he became a member of the [[Royal Society of London]], which in [[1827]], at the time of his last illness, awarded him the [[Rumford Medal]]. In [[1819]] he was nominated a commissioner of [[lighthouse]]s, for which he was the first to construct a special type of lens, now called a [[Fresnel lens]], as substitutes for mirrors. He died of [[tuberculosis]] at [[Ville-d'Avray]], near Paris.
59056
59057 His labours in the cause of optical science received during his lifetime only scant public recognition, and some of his papers were not printed by the AcadÊmie des Sciences till many years after his decease. But, as he wrote to Young in [[1824]], in him &quot;that sensibility, or that vanity, which people call love of glory&quot; had been blunted. &quot;All the compliments,&quot; he says, &quot;that I have received from Arago, [[Pierre Simon, Marquis de Laplace|Laplace]] and [[Jean-Baptiste Biot|Biot]] never gave me so much pleasure as the discovery of a theoretic truth, or the confirmation of a calculation by experiment.&quot;
59058
59059 ==Researches==
59060
59061 His discoveries and mathematical deductions, building on experimental work by [[Thomas Young (scientist)|Thomas Young]], extended the [[Huygens' principle|wave theory]] of [[light]] to a large class of [[optical phenomenon|optical phenomena]].
59062
59063 His use of two plane mirrors of metal, forming with each other an angle of nearly 180°, allowed him to avoid the diffraction effects caused (by the apertures) in the experiment of [[Francesco Maria Grimaldi|FM Grimaldi]] on [[interference]]. This allowed him to conclusively account for the phenomena of interference in accordance with the wave theory.
59064
59065 With [[François Arago]] he studied the laws of the interference of [[polarization|polarized]] rays. He obtained circularly polarized light by means of a rhombus of glass, known as &quot;Fresnel's rhomb&quot;, having obtuse angles of 126° and acute angles of 54°.
59066
59067 He is perhaps best known as the inventor of the [[Fresnel lens]], first adopted in [[lighthouse]]s while he was a French commissioner of lighthouses, and found in many applications today.
59068
59069 ==See also==
59070 *[[Fresnel equations]]
59071 *[[Fresnel integral]]
59072 *[[Fresnel lantern]]
59073 *[[Fresnel lens]]
59074 *[[Fresnel rhomb]]
59075 *[[Fresnel zone]]
59076 *[[zone plate|Fresnel zone plate]]
59077
59078 ==External link and reference==
59079 * {{MacTutor Biography|id=Fresnel}}
59080 * {{1911}}
59081
59082 [[Category:1788 births|Fresnel, Augustin-Jean]]
59083 [[Category:1827 deaths|Fresnel, Augustin-Jean]]
59084 [[Category:French physicists|Fresnel, Augustin-Jean]]
59085 [[Category:Alumni_of_the_École_Polytechnique|Fresnel, Augustin-Jean]]
59086 [[Category:Normans|Fresnel, Augustin-Jean]]
59087
59088 [[ca:Augustin Jean Fresnel]]
59089 [[de:Augustin Jean Fresnel]]
59090 [[fr:Augustin Fresnel]]
59091 [[hr:Augustin Jean Fresnel]]
59092 [[io:Augustin Fresnel]]
59093 [[nl:Augustin-Jean Fresnel]]
59094 [[ja:ジãƒŖãƒŗãƒģフãƒŦネãƒĢ]]
59095 [[pl:Augustin Jean Fresnel]]</text>
59096 </revision>
59097 </page>
59098 <page>
59099 <title>Abbeville</title>
59100 <id>1142</id>
59101 <revision>
59102 <id>41059535</id>
59103 <timestamp>2006-02-24T20:19:49Z</timestamp>
59104 <contributor>
59105 <username>Unyoyega</username>
59106 <id>460372</id>
59107 </contributor>
59108 <minor />
59109 <comment>fixing interwikis ~: it</comment>
59110 <text xml:space="preserve">{{otherplaces}}
59111
59112 [[Image:AbbevilleCollÊgialeStVulfran2004-04-27.jpg|thumb|CollÊgiale St Vulfran]]
59113 [[Image:Abbeville_Beffroi_2005-09-29.jpg|thumb|Beffroi]]
59114
59115 '''Abbeville''' is a city in the [[Picardie]] ''[[RÊgion in France|rÊgion]]'', in the north of [[France]].
59116 ==Location==
59117
59118 Abbeville is located on the [[Somme River]], 12 m. from its modern mouth in the [[English Channel]], and 28 m. northwest of [[Amiens]]. In the medieval period, it was the lowest crossing point on the Somme and it was nearby that [[Edward III of England|Edward III's]] army crossed shortly before the [[Battle of CrÊcy]] in [[1346]].
59119
59120 ==Administration==
59121
59122 Abbeville was the chief town of the [[Provinces of France|former province]] of [[Ponthieu]]. Today, it is one of the three ''[[sous-prÊfecture]]s'' of the [[Somme]] ''[[dÊpartement in France|dÊpartement]]''.
59123
59124 It is twinned with the town of [[Burgess Hill]] in [[West Sussex]].
59125
59126 ==Prehistory ==
59127
59128 The name Abbeville has been adopted to name a category of early stone tools. These stone tools are also known as [[handaxes]]. Various handaxes were found near Abbeville by [[Jacques Boucher de Perthes]] during the 1830's and he was the first to desribe the stones in detail, pointing out in the first publication of its kind, that the stones were chipped deliberately by early man, so as to form a tool. These earliest stone tools found in Europe were chipped on both sides so as to form a sharp edge, are now known as [[Abbevillian]] handaxes or [[bifaces]] . The earlier form of stone tools, not found in Europe is known as [[Oldewan]] choppers . A more refined and later version of handax production was also found in the Abbeville/Somme River district. The more refined handax became known as the [[Acheulean]] industry, named after [[Saint Acheul]], today a suburb of [[Amiens]] .
59129
59130 ==History==
59131
59132 Abbeville first appears in history during the [[9th century]]. At that time belonging to the [[abbey]] of [[St Riquier]], it was afterwards governed by the [[Ponthieu|Counts of Ponthieu]]. Together with that county, it came into the possession of the [[Alençon]] and other French families, and afterwards into that of the house of [[Castile]], from whom by marriage it fell in [[1272]] to King [[Edward I of England]]. French and English were its masters by turns till [[1435]] when, by the [[treaty of Arras]], it was ceded to the [[Duke of Burgundy]]. In [[1477]] it was annexed by King [[Louis XI of France]], and was held by two illegitimate branches of the royal family in the 16th and 17th centuries, being in [[1696]] reunited to the crown. In 1514, the town saw the marriage of [[Louis XII of France]] to [[Mary Tudor (queen consort of France)|Mary Tudor]], the daughter of [[Henry VII of England]].
59133
59134 Abbeville was fairly important in the [[18th century]], when the Van Robais Royal Manufacture (one of the first major factories in France) brought great prosperity (but some class controversy) to the town. [[Voltaire]], among others, wrote about it. He also wrote about a major incident of intolerance in which a young impoverished lord, the [[Chevalier de la Barre]], was executed there for impiety (supposedly because he did not [[salute]] a procession for [[Corpus Christi]], though the story is far more complex than that and revolves around a mutilated cross.)
59135
59136 Historical population:
59137 :1901: 18,519
59138 :1906: 18,971
59139
59140 ==Sights==
59141
59142 The city was very picturesque until the early days of [[World War II]], when it was bombed mostly to rubble in one night by the Germans. The town overall is now mostly modern and rebuilt. Several of the town's attractions remain, including:
59143 * [[Saint Wulfram|St. Vulfran]]'s church, erected in the [[15th century|15th]], [[16th century|16th]] and [[17th century|17th]] centuries. The original design was not completed. The [[nave]] has only two bays and the choir is insignificant. The facade is a magnificent specimen of the flamboyant [[Gothic style]], flanked by two Gothic towers.
59144
59145 ==See also==
59146 {{commons|Abbeville|Abbeville}}
59147 {{Wikisource1911Enc|Abbeville}}
59148 * [[Abbevillian]]
59149
59150 ==Reference==
59151 * {{1911}}
59152
59153 ----
59154
59155 ''The following text, from a turn of the century [[encyclopedia]] should be updated, wikified and incorporated into the above article:''
59156
59157 It lies in a pleasant and fertile valley, and is built partly on an island and partly on both sides of the river, which is canalized from this point to the estuary. The streets are narrow, and the houses are mostly picturesque old structures, built of wood, with many quaint gables and dark archways. The most remarkable building is the church of St Vulfran. Abbeville has several other old churches and an [[Hotel de Ville]], with a [[belfry (architecture)|belfry]] of the [[13th century]]. Among the numerous old houses, that known as the Maison de [[Francis I of France|Francois I]], which is the most remarkable, dates from the [[16th century]]. There is a statue of [[Admiral Courbet]] (d. [[1885]]) by [[Alexandre Falguière]] in the chief square. The public institutions include tribunals of first instance and of commerce, a board of trade-arbitrators, and a communal college. Abbeville is an important industrial centre; in addition to its old-established manufacture of cloth, hemp-spinning, sugar-making, ship-building and [[locksmithing|locksmith]]s' work are carried on; there is active commerce in grain, but the port has little trade.
59158
59159 [[Category:Archaeological sites in France]]
59160 [[Category:Communes of Somme]]
59161
59162 [[cs:Abbeville]]
59163 [[da:Abbeville]]
59164 [[de:Abbeville]]
59165 [[et:Abbeville]]
59166 [[fr:Abbeville]]
59167 [[gl:Abbeville]]
59168 [[it:Abbeville (Francia)]]
59169 [[nl:Abbeville]]
59170 [[pl:AbbÊville]]
59171 [[ro:Abbeville]]
59172 [[ru:АйвиĐģŅŒ]]
59173 [[sv:Abbeville]]</text>
59174 </revision>
59175 </page>
59176 <page>
59177 <title>Abbot</title>
59178 <id>1143</id>
59179 <revision>
59180 <id>41890472</id>
59181 <timestamp>2006-03-02T11:42:03Z</timestamp>
59182 <contributor>
59183 <username>Fastifex</username>
59184 <id>411070</id>
59185 </contributor>
59186 <comment>/* Protestantism */</comment>
59187 <text xml:space="preserve">{{otheruses}}
59188 [[Image:Prepozyt.png|right|300px|thumb|Abbot's coat of arms]]
59189 The word abbot, meaning father, has been used as a Christian clerical title in various, mainly monastic, meanings.
59190
59191 ==Origins==
59192 The title had its origin in the [[monastery|monasteries]] of [[Syria]], spread through the eastern [[Mediterranean]], and soon became accepted generally in all languages as the designation of the head of a monastery. Originally, the word, meaning father, was applied to various priests, e.g. at the court of the Frankish monarchy the ''Abbas palatinus'' ('of the palace') and ''Abbas castrensis'' ('of the camp) were chaplains to the Merovingian/ Carolingian sovereign's court viz. to his army. At first it was employed as a respectful title for any monk, but it was soon restricted by canon law to certain priestly superiors. The name &quot;abbot&quot; came in fairly general use in western [[Christian monasticism|monastic]] [[order (religious)|orders]] whose members (or the 'full' level at least) are ordained priest. However, various congregations chose other titles for their superiors, e.g. among the [[Dominican Order|Dominicans]], [[Carmelites]], [[Augustinian]]s, etc., ''Praepositus'', ''Provost'', and ''Prior''; among the [[Franciscan]]s, ''Custos,'' &quot;guardian&quot;; and by the monks of [[Camaldolese|Camaldoli]], &quot;Major.&quot;
59193
59194 ==Monastic History==
59195
59196 An '''abbot''' (from the Hebrew ''ab,'' &quot;a father&quot;, through the Syriac ''abba,'' Latin ''abbas'' (genitive form, ''abbatis''), Old English ''abbad,'' ; German ''Abt;'' French ''abbÊ'') is the head and chief governor of a community of [[monk]]s, called also in the East ''hegumenos'' or ''archimandrite.'' The [[English language|English]] version for a female monastic head is '''[[abbess]]'''.
59197
59198 In [[Egypt]], the first home of monasticism, the jurisdiction of the abbot, or archimandrite, was but loosely defined. Sometimes he ruled over only one community, sometimes over several, each of which had its own abbot as well. [[Cassian]] speaks of an abbot of the [[Thebaid]] who had 500 monks under him. By the [[Rule of St Benedict]], which, until the reform of [[Abbey of Cluny|Cluny]], was the norm in the West, the abbot has jurisdiction over only one community. The rule, as was inevitable, was subject to frequent violations; but it was not until the foundation of the [[Abbey of Cluny|Cluniac]] Order that the idea of a supreme abbot, exercising jurisdiction over all the houses of an order, was definitely recognized.
59199
59200 Monks, as a rule, were laymen, nor at the outset was the abbot any exception. For the reception of the [[sacraments]], and for other religious offices, the abbot and his monks were commanded to attend the nearest church. This rule proved inconvenient when a monastery was situated in a desert or at a distance from a city, and necessity compelled the [[ordination]] of some monks. This innovation was not introduced without a struggle, [[ecclesiology|ecclesiastical]] dignity being regarded as inconsistent with the higher [[spirituality|spiritual]] life, but, before the close of the [[5th century]], at least in the East, abbots seem almost universally to have become [[deacon]]s, if not priests. The change spread more slowly in the West, where the office of abbot was commonly filled by laymen till the end of the [[7th century]]. The ecclesiastical leadership exercised by abbots despite their frequent lay status is proved by their attendance and votes at ecclesiastical councils. Thus at the [[first Council of Constantinople]], AD [[448]], 23 [[archimandrite]]s or abbots sign, with 30 [[bishop]]s.
59201
59202 The [[second Council of Nicaea]], AD [[787]], recognized the right of abbots to ordain their monks to the inferior orders below the [[deacon|diaconate]], a power usually reserved to bishops.
59203
59204 Abbots were originally subject to [[bishop|episcopal]] jurisdiction, and continued generally so, in fact, in the West till the 11th century. The [[Code of Justinian]] (lib. i. tit. iii. de Ep. leg. xl.) expressly subordinates the abbot to episcopal oversight. The first case recorded of the partial exemption of an abbot from episcopal control is that of Faustus, abbot of Lerins, at the council of Arles, AD [[456]]; but the exorbitant claims and exactions of bishops, to which this repugnance to episcopal control is to be traced, far more than to the arrogance of abbots, rendered it increasingly frequent, and, in the 6th century, the practice of exempting religious houses partly or altogether from episcopal control, and making them responsible to the pope alone, received an impulse from [[Pope Gregory I|Pope Gregory the Great]]. These exceptions, introduced with a good object, had grown into a widespread evil by the 12th century, virtually creating an ''imperium in imperio,'' and depriving the bishop of all authority over the chief centres of influence in his [[diocese]]. In the 12th century the abbots of Fulda claimed precedence of the [[archbishopric of Cologne|archbishop of Cologne]]. Abbots more and more assumed almost episcopal state, and in defiance of the prohibition of early councils and the protests of St Bernard and others, adopted the episcopal insignia of [[mitre]], ring, gloves and sandals. It has been maintained that the right to wear mitres was sometimes granted by the popes to abbots before the 11th century, but the documents on which this claim is based are not genuine (J. Braun, ''Liturgische Gewandung'', p. 453). The first undoubted instance is the bull by which [[Pope Alexander II|Alexander II]] in [[1063]] granted the use of the mitre to Egelsinus, abbot of the monastery of St Augustine at Canterbury. The '''mitred abbots''' in England were those of [[Abingdon, England|Abingdon]], [[St Albans Abbey|St Alban's]], Bardney, Battle, [[Bury St. Edmunds Abbey|Bury St Edmund's]], St Augustine's Canterbury, Colchester, [[Croyland]], [[Evesham, Worcestershire|Evesham]], [[Glastonbury]], [[Gloucester]], St Benet's Hulme, Hyde, [[Malmesbury]], [[Peterborough]], [[Ramsey]], [[Reading Abbey|Reading]], [[Selby]], [[Shrewsbury]], [[Tavistock]], [[Thorney]], [[Westminster]], [[Winchcombe]], St Mary's [[York]]. Of these the precedence was originally yielded to the abbot of Glastonbury, until in AD [[1154]] [[Pope Adrian IV|Adrian IV]] (Nicholas Breakspear) granted it to the abbot of St Alban's, in which monastery he had been brought up. Next after the abbot of St Alban's ranked the abbot of Westminster. To distinguish abbots from bishops, it was ordained that their mitre should be made of less costly materials, and should not be ornamented with gold, a rule which was soon entirely disregarded, and that the crook of their [[crosier|pastoral staff]] should turn inwards instead of outwards, indicating that their jurisdiction was limited to their own house.
59205
59206 The adoption of certain episcopal insignia ([[pontificalia]]) by abbots was followed by an encroachment on episcopal functions, which had to be specially but ineffectually guarded against by the [[First Council of the Lateran|Lateran council]], AD [[1123]]. In the East, abbots, if in priests' orders, with the consent of the bishop, were, as we have seen, permitted by the [[Second Council of Nicaea|second Nicene council]], AD [[787]], to confer the [[tonsure]] and admit to the order of reader; but gradually abbots, in the West also, advanced higher claims, until we find them in AD [[1489]] permitted by [[Pope Innocent IV|Innocent IV]] to confer both the subdiaconate and diaconate. Of course, they always and everywhere had the power of admitting their own monks and vesting them with the religious habit.
59207
59208 When a vacancy occurred, the bishop of the diocese chose the abbot out of the monks of the [[abbey|convent]], but the right of election was transferred by jurisdiction to the monks themselves, reserving to the bishop the confirmation of the election and the benediction of the new abbot. In [[abbey]]s exempt from the (arch)bishop's diocesan jurisdiction, the confirmation and [[benediction]] had to be conferred by the pope in person, the house being taxed with the expenses of the new abbot's journey to [[Rome]]. It was necessary that an abbot should be at least 25 years of age, of legitimate birth, a monk of the house, unless it furnished no suitable candidate, when a liberty was allowed of electing from another convent, well instructed himself, and able to instruct others, one also who had learned how to command by having practised obedience. In some exceptional cases an abbot was allowed to name his own successor. Cassian speaks of an abbot in Egypt doing this; and in later times we have another example in the case of St Bruno. Popes and sovereigns gradually encroached on the rights of the monks, until in Italy the pope had usurped the nomination of all abbots, and the king in France, with the exception of Cluny, Premontre and other houses, chiefs of their order. The election was for life, unless the abbot was canonically deprived by the chiefs of his order, or when he was directly subject to them, by the pope or the bishop.
59209
59210 The ceremony of the formal admission of a [[Benedictine]] abbot in medieval times is thus prescribed by the [[consuetudinary]] of Abingdon. The newly elected abbot was to put off his shoes at the door of the church, and proceed barefoot to meet the members of the house advancing in a procession. After proceeding up the [[nave]], he was to kneel and pray at the topmost step of the entrance of the choir, into which he was to be introduced by the bishop or his [[commissary]], and placed in his stall. The monks, then kneeling, gave him the kiss of peace on the hand, and rising, on the mouth, the abbot holding his [[staff of office]]. He then put on his shoes in the [[vestry]], and a [[chapter (religion)|chapter]] was held, and the bishop or his delegate preached a suitable sermon.
59211
59212 The power of the abbot was paternal but absolute, limited, however, by the [[canon law]]. One of the main goals of monasticism was the purgation of self and selfishness, and obedience was seen as a path to that perfection. It was sacred duty to execute the abbot's orders, and even to act without his orders was sometimes considered a transgression. Examples among the Egyptian monks of this submission to the commands of the superiors, exalted into a virtue by those who regarded the entire crushing of the individual will as a goal, are detailed by Cassian and others, e.g. a monk watering a dry stick, day after day, for months, or endeavouring to remove a huge rock immensely exceeding his powers.
59213
59214 ==General Information==
59215
59216 Before the late modern era, the abbot was treated with the utmost reverence by the brethren of his house. When he appeared either in church or chapter all present rose and bowed. His letters were received kneeling, as were those of the pope and the king. No monk might sit in his presence, or leave it without his permission, reflecting the hierarchical etiquette of families and society. The highest place was assigned to him, both in church and at table. In the East he was commanded to eat with the other monks. In the West the [[Rule of St Benedict]] appointed him a separate table, at which he might entertain guests and strangers. This permission opening the door to luxurious living, the council of Aachen, AD [[817]], decreed that the abbot should dine in the [[refectory]], and be content with the ordinary fare of the monks, unless he had to entertain a guest. These ordinances proved, however, generally ineffectual to secure strictness of diet, and contemporaneous literature abounds with satirical remarks and complaints concerning the inordinate extravagance of the tables of the abbots. When the abbot condescended to dine in the refectory, his [[chaplain]]s waited upon him with the dishes, a servant, if necessary, assisting them. When abbots dined in their own private hall, the Rule of St Benedict charged them to invite their monks to their table, provided there was room, on which occasions the guests were to abstain from quarrels, slanderous talk and idle gossiping.
59217
59218 The ordinary attire of the abbot was according to rule to be the same as that of the monks. But by the 10th century the rule was commonly set aside, and we find frequent complaints of abbots dressing in silk, and adopting sumptuous attire. They sometimes even laid aside the monastic habit altogether, and assumed a secular dress. With the increase of wealth and power, abbots had lost much of their special religious character, and become great lords, chiefly distinguished from lay lords by [[clerical celibacy|celibacy]]. Thus we hear of abbots going out to hunt, with their men carrying bows and arrows; keeping horses, dogs and huntsmen; and special mention is made of an abbot of [[Leicester]], c. [[1360]], who was the most skilled of all the nobility in hare hunting. In magnificence of equipage and [[retinue]] the abbots vied with the first nobles of the realm. They rode on mules with gilded bridles, rich saddles and housings, carrying hawks on their wrist, followed by an immense train of attendants. The bells of the churches were rung as they passed. They associated on equal terms with laymen of the highest distinction, and shared all their pleasures and pursuits. This rank and power was, however, often used most beneficially. For instance, we read of Whiting, the last abbot of [[Glastonbury Abbey|Glastonbury]], judicially murdered by [[Henry VIII of England|Henry VIII]], that his house was a kind of well-ordered court, where as many as 300 sons of noblemen and gentlemen, who had been sent to him for virtuous education, had been brought up, besides others of a lesser rank, whom he fitted for the universities. His table, attendance and officers were an honour to the nation. He would entertain as many as 500 persons of rank at one time, besides relieving the poor of the vicinity twice a week. He had his country houses and fisheries, and when he travelled to attend parliament his retinue amounted to upwards of 100 persons. The abbots of [[Cluny]] and [[Vendome|Vendôme]] were, by virtue of their office, [[Cardinal (Catholicism)|cardinal]]s of the Roman church.
59219
59220 In process of time the title abbot was extended to [[clergy#Catholic clergy|clerics]] who had no connection with the monastic system, as to the principal of a body of parochial clergy; and
59221 under the [[Charlemagne|Carolingians]] to the chief chaplain of the king, ''Abbas Curiae,'' or military chaplain of the emperor, ''Abbas Castrensis.'' It even came to be adopted by purely secular officials. Thus the chief magistrate of the republic at [[Genoa]] was called ''Abbas Populi''.
59222
59223 [[Lay abbot]]s (M. Lat. ''defensores'', ''abbacomites'', ''abbates laici'', ''abbates milites'', ''abbates saeculares'' or ''irreligiosi'', ''abbatiarii'', or sometimes simply ''abbates'') were the outcome of the growth of the [[Feudalism | feudal]] system from the [[8th century]] onwards. The practice of [[commendation]], by which--to meet a contemporary emergency--the revenues of the community were handed over to a lay lord, in return for his protection,
59224 early suggested to the emperors and kings the expedient of rewarding their warriors with rich abbeys held ''in [[commendam]].''
59225
59226 During the Carolingian epoch the custom grew up of granting these as regular heritable [[fiefdom|fiefs]] or [[benefice]]s, and by the [[10th century]], before the great [[Cluny | Cluniac]] reform, the system was firmly established. Even the [[Saint Denis Basilica|abbey of St Denis]] was held in commendam by [[Hugh Capet]]. The example of the kings was followed by the feudal nobles, sometimes by making a temporary concession permanent, sometimes without any form of commendation whatever. In England the abuse was rife in the 8th century, as may be gathered from the acts of the council of Cloveshoe. These lay abbacies were not merely a question of
59227 overlordship, but implied the concentration in lay hands of all the rights, immunities and jurisdiction of the foundations, i.e. the more or less complete secularization of spiritual institutions. The lay abbot took his recognized rank in the feudal hierarchy, and was free to dispose of his fief as in the case of any other. The enfeoffment of abbeys differed in form and degree. Sometimes the monks were directly subject to the lay abbot; sometimes he appointed a
59228 substitute to perform the spiritual functions, known usually as [[dean (religion)|dean]] (decanus), but also as abbot (''abbas legitimas'', ''monasticus'', ''regularis''). When the great reform of the 11th century had put an end to the direct jurisdiction of the lay abbots, the honorary title of abbot continued to be held by certain of the great feudal famines, as late as the 13th century and later, the actual head of the community retaining that of dean. The connection of the lesser lay abbots with the abbeys, especially in the south of France, lasted longer; and certain feudal families retained the title of abbes chevaliers (abbates milltes) for centuries, together with certain rights over the abbey lands or revenues. The abuse was not confined to the West. John, [[patriarch of Antioch]], at the beginning of the 12th Century, informs us that in his time most monasteries had been handed over to laymen, ''bencficiarii,'' for life, or for part of their lives, by the emperors.
59229
59230 [[Giraldus Cambrensis]] reported (''Itinerary'', ii.iv) the common customs of lay abbots in the late 12th-century Church of Wales:
59231 :&quot;for a bad custom has prevailed amongst the clergy, of appointing the most powerful people of a parish stewards, or, rather, patrons, of their churches; who, in process of time, from a desire of gain, have usurped the whole right, appropriating to their own use the possession of all the lands, leaving only to the clergy the altars, with their tenths and oblations, and assigning even these to their sons and relations in the church. Such defenders, or rather destroyers, of the church, have caused themselves to be called abbots, and presumed to attribute to themselves a title, as well as estates, to which they have no just claim.&quot;
59232
59233 In conventual cathedrals, where the bishop occupied the place of the abbot, the functions usually devolving on the superior of the monastery were performed by a prior.
59234
59235 ==Abbatial hierarchy==
59236 In several orders, there exists a pyramidal relationship between a major abbey (often the old mother of several others, especially if it was the place from where a monastic reform was launched, which in other cases even lead to breaking away as a new order of congregation) and other ones (often younger daughters), even when these are not (or no longer) [[priories]] but have their own abbot.
59237 As a daughter could often become a mother in a next phase, the 'family tree' can become very complex, but often the grandmother remains the only one with acknowledged seniority.(because she is old ...)
59238
59239 Sometimes a very real hold was maintained, so the Abbot of [[Abbey of Cluny|Cluny]] had such vast income from the network of filial monasteries that he was one of the most powerful men in the church, and a real [[papabile]]. In other cases the precedence is little more than a honorary status.
59240
59241 In several cases, the senior abbot is entitled to '''a specific style''', such as [[Abbot general]], [[abbot president]], [[abbot primate]] and [[archabbot]].
59242 Such titles may also apply to the presidents of federation of monasteries, not necessarily reserved for one abbey.
59243
59244 ==Modern Abbots not as Superior==
59245 The title [[abbÊ]] (French; Ital. ''abbate''), as commonly used in the Catholic church on the European continent, is the equivalent of the English &quot;Father&quot; (parallel etymology), being loosely applied to all who have received the [[tonsure]]. This use of the title is said to have originated in the right conceded to the king of France, by the [[concordat]] between [[Pope Leo X]] and [[Francis I of France|Francis I]] (1516), to appoint ''abbes commendataires'' to most of the abbeys in France. The expectation of obtaining these [[sinecure]]s drew young men towards the church in considerable numbers, and the class of abbÊs so formed--''abbes de cour'' they were sometimes called, and sometimes (ironically) ''abbes de sainte esperance'', abbÊs of St Hope--came to hold a recognized position. The connection many of them had with the church was of the slenderest kind, consisting mainly in adopting the name of abbe, after a remarkably moderate course of theological study, practising [[celibacy]] and wearing a distinctive dress--a short dark-violet coat with narrow collar. Being men of presumed learning and undoubted leisure, many of the class found admission to the houses of the French nobility as tutors or advisers. Nearly every great family had its abbÊ. The class did not survive the [[French Revolution|Revolution]]; but the [[courtesy title]] of abbÊ, having long lost all connection in people's minds with any special ecclesiastical function, remained as a convenient general term applicable to any clergyman.
59246
59247 ==Protestant abbots==
59248 In the [[Evangelical Church in Germany|German Evangelical Church]] the German title of ''Abt'' (abbot) is sometimes bestowed, like the French ''abbÊ'', as an honorary distinction, and survives to designate the heads of some monasteries converted at the Reformation into collegiate foundations.
59249 Of these the most noteworthy is the abbey of Lokkum in [[Hanover]], founded as a [[Cistercian]] house in 1163 by Count Wilbrand of Hallermund, and reformed in 1593. The abbot of Lokkum, who still carries a pastoral staff, takes precedence of all the clergy of Hanover, and was ''ex officio'' a member of the [[consistory]] of the kingdom. The governing body of the abbey consists of the abbot, prior and the &quot;convent&quot; of ''[[Stiftsherr]]en'' (canons).
59250
59251 In the [[Church of England]], the [[Bishop of Norwich]], by royal decree given by [[Henry VIII]], also holds the honorary title of &quot;Abbot of St. Benēt.&quot; This title hails back to England's separation from Rome, when King Henry, as supreme head of the newly independent church, took over all of the monastaries, mainly for their possessions, except for St. Benēt, which he spared because the abbot and his monks possesed no wealth, and lived like simple beggers, disposing the incumbent Bishop of Norwich and seating the abbot in his place, thus the dual title still held to this day.
59252
59253 ==See also==
59254
59255 *[[List of historical abbots]]
59256 *[[Hegumen]]
59257 *[[Archimandrite]]
59258
59259 ==Sources and References==
59260 {{Wikisource1911Enc|Abbot}}
59261 *[http://www.google.com/custom?domains=NewAdvent.org&amp;q=abbot&amp;sitesearch=NewAdvent.org&amp;client=pub-8168503353085287&amp;forid=1&amp;ie=ISO-8859-1&amp;oe=ISO-8859-1&amp;safe=active&amp;cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A1%3B&amp;hl=en| 999 occurrences in the [[Catholic Encyclopaedia]]]
59262 *{{1911}}
59263
59264 [[Category:Abbots]]
59265 [[category: Ecclesiastical titles]]
59266 [[Category:Organisation of Catholic religious orders]]
59267 [[Category:Christian leaders]]
59268 [[Category:Religious work]]
59269 [[Category:Religious executives]]
59270
59271 [[ang:Abbod]]
59272 [[ca:Abat]]
59273 [[cs:Opat]]
59274 [[da:Abbed]]
59275 [[de:Abt]]
59276 [[es:Abad]]
59277 [[eo:Abato]]
59278 [[fr:AbbÊ]]
59279 [[gl:Abade]]
59280 [[ia:Abba]]
59281 [[it:Abate]]
59282 [[li:Abdis]]
59283 [[hu:ApÃĄt]]
59284 [[nl:Abt (abdij)]]
59285 [[nds:Abt]]
59286 [[no:Abbed]]
59287 [[pl:Opat]]
59288 [[pt:Abade]]
59289 [[ru:АййаŅ‚]]
59290 [[fi:Apotti]]
59291 [[sv:Abbot]]</text>
59292 </revision>
59293 </page>
59294 <page>
59295 <title>Ardipithecus</title>
59296 <id>1144</id>
59297 <revision>
59298 <id>40359090</id>
59299 <timestamp>2006-02-20T01:16:10Z</timestamp>
59300 <contributor>
59301 <username>Rich Farmbrough</username>
59302 <id>82835</id>
59303 </contributor>
59304 <minor />
59305 <comment>External links per MoS.</comment>
59306 <text xml:space="preserve">{{Taxobox | color = pink
59307 | name = Ardipithecus
59308 | fossil_range = [[Pliocene]]
59309 | image = Ardipithecus ramidus tooth.jpg
59310 | image_width = 200px
59311 | image_caption = ''Ardipithecus ramidus'' teeth
59312 | regnum = [[Animal]]ia
59313 | phylum = [[Chordate|Chordata]]
59314 | classis = [[Mammal]]ia
59315 | ordo = [[Primate]]s
59316 | familia = [[Hominid]]ae
59317 | subfamilia = [[Homininae]]
59318 | tribus = [[Hominini]]
59319 | genus = '''''Ardipithecus'''''
59320 | genus_authority = [[Tim White (anthropologist)|White]], [[1994]]
59321 | subdivision_ranks = [[Species]]
59322 | subdivision =''Ardipithecus kadabba''&lt;br /&gt; ''Ardipithecus ramidus''
59323 }}
59324
59325 '''''Ardipithecus''''' is a very early [[hominin]] [[genus]] ([[subfamily]] [[Homininae]]). Because it shares several traits with the African [[great ape]]s (genus ''[[chimpanzee|Pan]]'' and genus ''[[Gorilla]]''), it is considered by some to be on the [[chimpanzee]] rather than [[human]] branch, but most consider it a [[proto-human]] because of a likeness in teeth with ''[[Australopithecus]]''. ''A. ramidus'' lived about 5.4 and 4.2 million years ago during the early [[Pliocene]].
59326
59327 Two [[species]] have been described, ''Ardipithecus ramidus'' and ''Ardipithecus kadabba''. The latter was initially described as a [[subspecies]] of ''A. ramidus'', but on the basis of teeth recently discovered in [[Ethiopia]] has been raised to species rank. ''A. kadabba'' is dated to have lived between 5.8 million to 5.2 million years ago. The [[canine teeth]] show primitive features that distinguish them from those of more recent hominines. ''A. kadabba'' is believed to be the earliest organism yet identified that lies in the human line following its split from the lineage that gave rise to the two modern chimpanzee species.
59328
59329 On the basis of bone sizes, ''Ardipithecus'' species are believed to have been about the size of a modern chimpanzee. The toe structure of ''A. ramidus'' suggests that the creature walked upright, and this poses problems for current theories of the origins of hominid [[bipedalism]]: ''Ardipithecus'' is believed to have lived in shady forests rather than on the savannah, where the faster running permitted by bipedalism would have been an advantage.
59330
59331 The forest lifestyle poses problems for the current theories regarding the development of bipedalism, most of which focus on the savanna. New thought will be necessary in order to reconcile these savanna theories with the current knowledge of early forest-dwelling hominids.
59332
59333 ==External links==
59334 *[http://news.bbc.co.uk/2/hi/science/nature/4187991.stm BBC News: Amazing hominid haul in Ethiopia]
59335 {{Human_Evolution}}
59336 [[Category:early hominids]]
59337 [[Category:Pliocene]]
59338
59339
59340 [[de:Ardipithecus ramidus]]
59341 [[eu:Ardipithecus]]
59342 [[es:Ardipithecus ramidus]]
59343 [[fr:Ardipithecus ramidus]]
59344 [[it:Ardipithecus kadabba]]
59345 [[lb:Ardipithecus]]
59346 [[nl:Ardipithecus]]
59347 [[pl:Ardipithecus ramidus]]</text>
59348 </revision>
59349 </page>
59350 <page>
59351 <title>Assembly line</title>
59352 <id>1146</id>
59353 <revision>
59354 <id>41872264</id>
59355 <timestamp>2006-03-02T07:12:34Z</timestamp>
59356 <contributor>
59357 <ip>129.22.33.101</ip>
59358 </contributor>
59359 <comment>/* History of the assembly line */</comment>
59360 <text xml:space="preserve">An '''assembly line''' is a [[manufacturing]] process in which interchangeable parts are added to a product in a sequential manner to create an end product.
59361
59362 ==History of the assembly line==
59363
59364 Until the 19th century, a single craftsman or team of craftsmen would create each part of a product individually, and assemble them together into a single item, making changes in the parts so that they would fit together - the so-called [[English System]] of manufacture.
59365
59366 [[Eli Whitney]] developed the [[American system of manufacturing|American System]] of manufacturing in 1799, using the ideas of ''[[division of labor]]'' and of ''[[Tolerance (engineering)|engineering tolerance]]'', to create assemblies from parts in a repeatable manner.
59367
59368 [[Ransom Eli Olds]] patented the first assembly line concept which he put to work in his Olds Motor Vehicle Company factory in 1901, becoming the first company in America to mass-produce automobiles.
59369
59370 By contrast, [[Henry Ford]] is often credited with the invention of the assembly line but in actuality only applied the idea of using the [[conveyer belt]] to Olds' idea of the assembly line.
59371
59372 ==Sociological problems with the assembly line==
59373
59374 In early industrial times, the assembly line ran smoothly, but as competition increased, the workers had to work faster and longer hours, therefore increasing the rate at which workplace injuries occurred.
59375
59376 Many workers were unhappy with the assembly line, because most never had the satisfaction of seeing the finished product (in [[Sociology|sociological]] terms, they felt [[Alienation|alienated]] from the product of their work), and they were also frustrated with the unsafe, exhausting working conditions. Because workers had to stand in the same place for hours and repeat the same motion hundreds of times per day, they often suffered from what are now called [[Repetitive strain injury|repetitive stress injuries]].
59377
59378 ==See also==
59379 *[[Henry Ford]]
59380 *[[Ransom Eli Olds]]
59381 *[[Manufacturing]]
59382
59383 [[Category:Manufacturing]][[category:Production and manufacturing]]
59384
59385 [[de:Fließbandfertigung]]
59386 [[he:פץ יי×Ļור]]</text>
59387 </revision>
59388 </page>
59389 <page>
59390 <title>ARY Digital</title>
59391 <id>1147</id>
59392 <revision>
59393 <id>40391488</id>
59394 <timestamp>2006-02-20T05:55:10Z</timestamp>
59395 <contributor>
59396 <username>Spasage</username>
59397 <id>472206</id>
59398 </contributor>
59399 <text xml:space="preserve">{{merge|ARY DIGITAL}}
59400 {{Infobox TV channel|
59401 name= ARY Digital|
59402 launch= December 2000|
59403 owner= [[ARY Group]] |
59404 former names= The Pakistani Channel|
59405 web= [http://www.arydigital.tv/ www.arydigital.tv] |
59406 terr avail=Not Available|
59407 sat serv 1=[[Sky Digital]]|
59408 sat chan 1=Channel 812|
59409 sat serv 2=[[Astra]]|
59410 sat chan 2=11.9973 GHz|
59411 sat serv 3=[[Hotbird]]|
59412 sat chan 3=12.476 GHz|
59413 sat serv 4=[[PAS-10]]|
59414 sat chan 4=3864 MHz|
59415 cable serv 1= [[Telewest]]|
59416 cable chan 1= Channel 818|
59417 cable serv 2= [[NTL]]|
59418 cable chan 2= Channel 847|
59419 dummy parameter=|
59420 |}}
59421
59422 [[Image:Sidelogo.jpeg|thumb|right|200px|The ARY Digital Logo]]
59423
59424 '''ARY Digital''' is a popular South Asian [[television]] network based in [[Dubai]], [[United Arab Emirates|UAE]]. It also has studios in [[London]] and [[Pakistan]]. Most programmes cater to the needs of South Asians, especially the [[Pakistan|Pakistani]] community. The channel also brings [[Urdu language|Urdu]] programmes and Urdu songs by Pakistani singers who rock the South Asian subcontinent.
59425
59426 == History ==
59427
59428 The network was formerly known as '''The Pakistani Channel''', which was owned by a charismatic business man, who started it as a medium of social responsibility while bridging the gap between Asians abroad and in Pakistan. Its name was changed when it was purchased by the [[ARY Group]]. ARY Digital specialises in popular live English and Urdu programming, such as VIDEO MIX shown on Sundays and presented by Yassir and Zaina.
59429
59430
59431 == External links ==
59432 *[http://www.arydigital.tv/ ARY Digital Official Website]
59433 *[http://www.arydigital.tv/corporate.php Corporate Profile]
59434
59435 [[Category:ARY Digital]]
59436 [[Category:Television stations in Pakistan]]</text>
59437 </revision>
59438 </page>
59439 <page>
59440 <title>Adelaide</title>
59441 <id>1148</id>
59442 <restrictions>move=:edit=</restrictions>
59443 <revision>
59444 <id>41965329</id>
59445 <timestamp>2006-03-02T22:48:37Z</timestamp>
59446 <contributor>
59447 <ip>203.220.36.62</ip>
59448 </contributor>
59449 <text xml:space="preserve">{{otheruses}}
59450 &lt;!-- BEGIN INFOBOX --&gt;
59451 {{Infobox Australian City|
59452 name = Adelaide |
59453 image_map = Adelaide locator-MJC.png |
59454 name = Adelaide |
59455 latd=34|latm=55|latNS=S|longd=138|longm=36|longEW=E|
59456 jurisdiction = [[South Australia]] |
59457 area = 1,826.9 |
59458 time_zone= [[UTC9:30|ACST]] |
59459 utc_offset= +9:30 |
59460 time_zone_DST= [[UTC10:30|ACDT]] |
59461 utc_offset_DST= +10:30 |
59462 population_estimate_year = 2004 |
59463 population_estimate = 1,124,315 |
59464 population_estimate_rank = 5th |
59465 population_density = 615 |
59466 }}
59467 &lt;!-- END INFOBOX --&gt;
59468 '''Adelaide''' is the [[List of Australian capital cities|capital]] and most populous city of the [[Australia]]n [[States and territories of Australia|state]] of [[South Australia]], and is the fifth largest city in Australia with a population of over 1.1 million. Adelaide is a coastal city beside the [[Southern Ocean]] and is situated on the [[Adelaide Plains]], north of the [[Fleurieu Peninsula]], between the [[Gulf Saint Vincent|Gulf St. Vincent]] and the low lying [[Mount Lofty Ranges]]. It is a roughly [[linear city]] 20 km from the coast to the foothills, but stretches 90 km from [[Gawler, South Australia|Gawler]] at its northern extent to [[Aldinga, South Australia|Aldinga]] in the south.
59469
59470 Named in honour of [[Adelaide of Saxe-Meiningen|Queen Adelaide]], the [[consort]] of [[William IV of the United Kingdom|King William IV]], the city was founded in [[1836]] as the [[new town|planned capital]] for the only freely-settled British [[province]] established in Australia. [[William Light|Colonel William Light]], one of Adelaide's founding fathers, designed the city and chose its location close to the [[River Torrens]]. Inspired by [[William Penn]] and the [[garden city movement]], Light's design set Adelaide out in a grid layout, interspaced by wide boulevards and large public squares, and entirely surrounded by [[Adelaide Parklands|parkland]]. Early Adelaide was shaped by religious freedom and a commitment to political [[progressivism]] and civil liberties which led to world-first reforms. Adelaidean society remained largely [[puritan]] up until the 1970s, when a set of social reforms under the [[Premier of South Australia|premiership]] of [[Don Dunstan]] resulted in a cultural revival. Today Adelaide is known for its many [[:Category:Festivals in Adelaide|festivals]] as well as for its wine, arts and sports.
59471
59472 As South Australia's seat of government and commercial centre, Adelaide is the site of many governmental and financial institutions. Most of these are concentrated in the city centre along the cultural boulevard of [[North Terrace, Adelaide|North Terrace]] and in various districts of the metropolitan area.
59473
59474 ==History==
59475 {{Main|History of Adelaide}}
59476
59477 Prior to European settlement, the Adelaide area was inhabited by the [[Kaurna]] [[Australian Aborigine|Aboriginal]] tribe. Acknowledged Kaurna country comprised the Adelaide Plains and surrounding regions - from [[Cape Jervis]] in the south, and to [[Port Wakefield, South Australia|Port Wakefield]] in the north. Among their unique customs were burn-offs (controlled [[bushfires]]) in the Adelaide Hills which the early Europeans spotted before the Kaurna people were pushed out by settlement. By 1852, the total population (by census count) of the Kaurna was 650 in the Adelaide region and steadily decreasing. During the winter months, they moved into the [[Adelaide hills]] for better shelter and firewood. {{ref|cathuni}} {{ref|placenames}}
59478 [[Image:Adelaide North Tce 1839.jpg|thumb|left|270px|Adelaide in [[1839]], looking south-east from [[North Terrace, Adelaide|North Terrace]]]]
59479 South Australia was officially settled as a new [[United Kingdom|British]] [[province]] on [[December 28]], [[1836]]. This day is now commemorated as a [[public holiday]], [[Proclamation Day]] in South Australia. The site of the colonies capital city was surveyed and laid-out by Colonel [[William Light]], the first Surveyor-General of South Australia. Light chose, not without opposition, a site on rising ground close to the [[River Torrens]], which became the chief early water supply for the fledgling colony. &quot;[[Light's Vision]]&quot;, as it has been termed, has meant that the initial design of Adelaide required little modification as the city grew and prospered. Usually in an older city, it would be necessary to accommodate larger roads and add parks, whereas Adelaide had them from the start. Adelaide was established as the centre of a [[New town|planned colony]] of free immigrants, promising civil liberties and freedom from religious persecution and as such does not share the [[convict]] settlement history of other Australian cities, like [[Sydney]] and [[Hobart]].
59480
59481 Adelaide's early history was wrought by economic uncertainty and incompetent leadership. The first governor of South Australia, [[John Hindmarsh|Hindmarsh]], clashed frequently with Col Light. The rural area surrounding Adelaide city was surveyed by Light in preparation to sell, a total of over 405 km² of land. Adelaide's early economy started to get on its feet in 1838 with the arrival of livestock from [[New South Wales]] and [[Tasmania]]. The wool industry served as a early basis for the South Australian economy. Light's survey was completed in this period, and land was promptly offered to sale to early colonists. Wheat farms ranged from [[Encounter Bay]] in the south to [[Clare, South Australia|Clare]] in the north by 1860. [[George Gawler|Governor Gawler]] took over from Hindmarsh in late 1838 and promptly oversaw construction of a governor's house, [[gaol]], police barracks, hospital, and customs house and a wharf at [[Port Adelaide]]. In addition houses for public officials and missionaries, and outstations for police and surveyors were also constructed during Gawler's governorship. Adelaide had also become economically self-sufficent during this period but at heavy cost: the colony was heavily in [[debt]] and relied on bail-outs from London to stay afloat. Gawler was recalled and replaced by [[George Edward Grey|Governor Grey]] in 1841. Grey slashed public expenditure against heavy opposition, yet its impact was negligible at this point: Silver was discovered in [[Glen Osmond, South Australia|Glen Osmond]] that year, agricultural industries were well underway and other mines sprung up all over the state, aiding Adelaide's commercial development. The city exported meat, wool, wine, fruit and wheat by the time Grey left in 1845, contrasting with a low point in 1842 when one-third of Adelaide houses were abandoned.
59482 [[Image:Adelaide town hall 1950.jpg|thumb|right|280px|Adelaide General Post Office in 1950]]
59483 Trade links with the rest of the Australian states were established with the navigation of the [[Murray River]] being successfully navigated in 1853 by Francis Cadell, an Adelaide resident. Adelaide saw South Australia become a [[Self-governing colony]] in 1856 with the [[ratification]] of a new [[constitution]] by the British parliament. [[Secret ballot]]s were introduced, and a [[Bicameralism|bicameral]] parliament was elected on 9 March 1857, by which time 109 917 people lived in the province. In 1860 the Thorndon Park reservoir was opened, finally providing an alternative water source to the [[Turbidity|turbid]] River Torrens. In 1867 gas [[street light]]ing was implemented, the [[University of Adelaide]] was founded in 1874, the [[South Australian Art Gallery]] opened in 1881 and the [[Happy Valley Reservoir]] opened in 1896. In the 1890s Australia was affected by a severe [[Depression (economics)|economic depression]], ending a hectic era of land booms and tumultuous expansionism. Financial institutions in [[Melbourne]] and banks in [[Sydney]] closed. The national [[fertility rate]] fell and immigration was reduced to a trickle. The value of South Australia's exports nearly halved. [[Drought]] and poor harvests from 1884 compounded the problems with some families leaving for [[Western Australia]]. Adelaide was not as badly hit as the larger gold-rush cities of Sydney and Melbourne, and silver and [[lead]] discoveries at [[Broken Hill]] provided some relief.
59484 Only one year of [[deficit]] was recorded but the price paid was retrenchments and lean public spending. [[Wine]] and copper were the only industries not to suffer a downturn.
59485
59486 Electric street lighting was introduced in 1900 and electric [[tram]]s were transporting passengers in 1909. 28 000 men were sent to fight in [[World War I]]. Adelaide enjoyed a post-war boom but with the return of droughts, entered the [[Great Depression|depression]] of the 1930s, later returning to prosperity with strong government leadership. [[Secondary sector of industry|Secondary industries]] helped reduce the state's dependence on [[primary sector of industry|primary industries]]. The 1933 census recorded the state population at 580 949 which was less of an increase than other states due to the state's economic limitations. [[World War II]] brought industrial stimulus and diversification to Adelaide under the [[Thomas Playford IV|Playford]] Government, which advocated Adelaide as a safe place for manufacturing due to its less vulrenable location. 70 000 men and women enlisted and shipbuilding was expanded at the nearby port of [[Whyalla, South Australia|Whyalla]].
59487
59488 [[Image:Rundle Mall.jpg|280px|thumb|left|Rundle Mall circa 1988 with the famous ''Spheres'' sculpture (colloquially ''Mall's Balls'') clearly visible.]]
59489 The South Australian Government in this period built on former wartime manufacturing industries. International manufacturers like General Motors [[Holden]] and Chrysler make use of these factories around Adelaide completing its transformation from an agricultural service centre to a twentieth century city. A pipeline from [[Mannum, South Australia|Mannum]] brought [[River Murray]] water to Adelaide in 1954 and an [[airport]] opened at [[West Beach, South Australia|West Beach]] in 1955. An assisted migration scheme brought 215,000 immigrants of all nationalities to South Australia between 1947 and 1973. The Dunstan Government in the 1970s saw something of an Adelaide 'cultural revival' - establishing a wide array of social reforms and overseeing the city becoming a centre of the arts. Adelaide hosted the [[Australian Grand Prix]] between 1985 and 1996 on a street circuit in the city's east parklands, before losing it in a controversial move to [[Melbourne]]. The 1992 [[State Bank of South Australia|State Bank]] collapse plunged both Adelaide and South Australia into economic recession, and its effects can still be felt today. Recent years have seen the [[Clipsal 500]] [[V8 Supercar]] race make use of the former Formula One circuit and renewed economic confidence under the [[Mike Rann|Rann]] Government.
59490
59491 ==Geography==
59492 [[Image:Satellite_image_of_Adelaide_South_Australia.jpg|right|frame|Satellite image of Adelaide]]
59493 Adelaide is located north of the [[Fleurieu Peninsula]], on the Adelaide plains between the [[Gulf Saint Vincent|Gulf St Vincent]] and the low lying [[Mount Lofty Ranges]]. The city stretches from the town of [[Gawler, South Australia|Gawler]] at its most northern, to [[Aldinga, South Australia|Aldinga]] in the south. According to the [[Australian Bureau of Statistics]], the Adelaide Metropolitan Region has a total land area of 870 km², which is at an average elevation of 50 metres above sea level. [[Mount Lofty]] is located east of the Adelaide metropolitan region in the [[Adelaide Hills]] at an elevation of 727 metres. It is the tallest point in its [[Mount Lofty Ranges|namesake]] range.
59494
59495 Much of Adelaide was originally bushland before European settlement, with some variation - swamps and marshlands were prevalent around the coast. However, much of the original vegetation has been cleared with the remainder remaining in reserves such as the [[Adelaide Parklands]], [[Cleland Conservation Park]] and [[Belair National Park]]. A number of creeks and rivers flow through the Adelaide region. The largest are the [[River Torrens|Torrens]] and [[Onkaparinga River National Park|Onkaparinga]] catchments. Adelaide relies on its many reservoirs for water supply, with [[Mount Bold Reservoir]] and [[Happy Valley Reservoir]] together supplying around 50% of Adelaide's requirements.
59496
59497 ===Climate===
59498 {{Main|Climate of Adelaide}}
59499 Adelaide has a [[Mediterranean climate]], where most of the rain falls in the winter months. Of the Australian capital cities, Adelaide is the driest. Rainfall is unreliable, light and infrequent throughout summer. In contrast, the winter has fairly reliable rainfall with June being the wettest month of the year, averaging around 80 mm. [[Frost]]s are rare, with the most notable occurrences having occurred in July 1908 and July 1982. There is usually no appreciable [[snow|snowfall]], except at [[Mount Lofty]] and some places in the [[Adelaide Hills]].
59500
59501 {| class=&quot;wikitable&quot; style=&quot;width: 75%; margin: 0 auto 0 auto;&quot;
59502 |+ '''Climate Table'''
59503 |-
59504 !
59505 ! Jan
59506 ! Feb
59507 ! Mar
59508 ! Apr
59509 ! May
59510 ! Jun
59511 ! Jul
59512 ! Aug
59513 ! Sep
59514 ! Oct
59515 ! Nov
59516 ! Dec
59517 !Year
59518 |-
59519 ! Mean daily maximum temperature ([[Celsius|°C]])
59520 |28.8
59521 |29.4
59522 |26.1
59523 |22.4
59524 |18.9
59525 |16.1
59526 |15.3
59527 |16.5
59528 |18.8
59529 |21.5
59530 |24.8
59531 |26.8
59532 |22.1
59533 |-
59534 ! Mean daily minimum temperature ([[Celsius|°C]])
59535 |16.8
59536 |17.2
59537 |15.0
59538 |12.2
59539 |10.1
59540 |8.2
59541 |7.4
59542 |8.2
59543 |9.6
59544 |11.3
59545 |13.8
59546 |15.5
59547 |12.1
59548 |-
59549 ! Mean total rainfall ([[Millimetre|mm]])
59550 |19.2
59551 |13.7
59552 |26.2
59553 |38.7
59554 |62.6
59555 |83.1
59556 |77.8
59557 |68.1
59558 |63.6
59559 |48.5
59560 |29.6
59561 |26.8
59562 |558.1
59563 |-
59564 ! Mean number of rain days
59565 |4.3
59566 |3.4
59567 |5.7
59568 |7.9
59569 |12.3
59570 |15.4
59571 |16.2
59572 |16.4
59573 |13.2
59574 |10.8
59575 |8.1
59576 |6.7
59577 |120.5
59578 |-
59579 | colspan=&quot;15&quot; style=&quot;text-align: center;&quot; | &lt;small&gt;'''Source:''' [http://www.bom.gov.au/climate/averages/tables/cw_023090.shtml Bureau of Meteorology]&lt;/small&gt;
59580 |}
59581
59582 ===Urban Layout===
59583 {{Main|Light's Vision}}
59584 [[Image:Karte_Adelaide_MKL1888.png|thumb|136px|right|1888 Map of Adelaide, showing the gradual development of its urban layout]]
59585 Adelaide is a planned city, designed by the first surveyor-general of South Australia, Colonel [[William Light]]. His plan, now known as '''Light's Vision''', arranged Adelaide in a grid, with five squares in the inner City of Adelaide and a ring of parks known as the [[Adelaide Parklands]] surrounding it. Light's design was initially unpopular with the early settlers, as well as South Australia's first Governor, [[John Hindmarsh]]. Light persisted with his design against this initial opposition. The benefits of Light's design are numerous; Adelaide has had wide multi-lane roads from its beginning, an easily-navigable grid layout and a beautiful green ring around the city center. There are two sets of 'ring roads' in Adelaide that have resulted from the original design. The inner ring route borders the parklands and the outer route completely bypasses the inner city through (in clockwise order) [[Grand Junction Road]], Hampstead Road, Ascot Avenue, [[Portrush Road]], Cross Road and [[South Road, Adelaide|South Road]]. {{ref|ringroute}}
59586
59587 The inevitable urban expansion has to some extent outgrown Light's original plan. Numerous satellite cities were built in the latter half of the 20th century notably [[Salisbury, South Australia|Salisbury]] and [[Elizabeth, South Australia|Elizabeth]] on the city's northern fringes, which have now been enveloped by its [[urban sprawl]]. New developments in the [[Adelaide Hills]] region facilitated the construction of the [[South Eastern Freeway]] to cope with growth. Similarly, the booming development in Adelaide's [[City of Onkaparinga|South]] made the construction of the [[Southern Expressway]] a necessity. New roads have not only been used to cope with the urban growth, however - the [[Adelaide O-Bahn]] is an example of a unique solution to [[Tea Tree Gully, South Australia|Tea Tree Gully's]] transport woes in the 1980's.{{ref|ozroads}} The development of the nearby suburb of [[Golden Grove, South Australia|Golden Grove]] in the late [[1980s]] is possibly an example of well-though-out urban planning. The newer urban areas as a whole, however, are not as integrated into the urban layout as much as older areas, and therefore place more stress on Adelaide's transportation system - although not on a level comparable with [[Melbourne]] or [[Sydney]].
59588
59589 [[Image:Adel panorama.jpg|thumb|center|598px|&lt;div style=text-align:&quot;right&quot;&gt;Panoramic view over the [[Adelaide Parklands]] of the ''Square Mile'' (central business district) from [[Montefiore Hill]] in [[North Adelaide]]. The historic [[Adelaide Oval]] is visible in the centre foreground.&lt;/div&gt;]]
59590
59591 ==Governance==
59592 {{Main|Government of South Australia}}
59593 [[Image:Adelaide_parliament_house.JPG|right|thumb|280px|[[Parliament House, Adelaide]] on [[North Terrace, Adelaide|North Terrace]] houses the [[Parliament of South Australia]].]]
59594 The [[City of Adelaide]] is responsible only for the &quot;Square Mile&quot;, which is the [[central business district]] (CBD), [[North Adelaide]] and the surrounding [[Adelaide Parklands]]. It is the oldest [[municipal]] authority in Australia and was established in 1840, when Adelaide and Australia's first mayor, [[James Hurtle Fisher]], was elected. From 1919 onwards, the City has had a [[List of Mayors and Lord Mayors of Adelaide|Lord Mayor]], the current being Lord Mayor [[Michael Harbison]]. The City of Adelaide has a population of approximately 18,000 people in an area of 15.57 km². The population of the [[inner city]] has dwindled from its peak of about 250,000 as the metropolitan area has expanded. The entire metropolitan region, including the city proper, has a population of 1,080,990 people (2001 census) in an area of 870km², and is divided into 18 autonomous [[local government areas]]. However, as South Australia's capital and most populous city, the State Government co-operates extensively with the City of Adelaide - a relationship manifest in the Capital City Committee {{ref|capcity}}, which is primarily concerned with the planning of Adelaide's urban development and growth.
59595
59596 ==Demographics==
59597 [[Image:Rundle Mall.JPG|right|thumb|280px|Rundle Mall- Adelaide's main shopping street]]
59598 [[Image:Adelaide City Torrens.JPG|right|thumb|280px|Adelaide skyline from the [[River Torrens]]]]
59599 As of [[June 2004]], Adelaide had a metropolitan population of more than 1,124,315, making it Australia's fifth largest city. In the 2002-2003 period the population grew by 0.6%, while the national average was 1.2%. Some 70.3% of the population of South Australia is resident within the metropolitan area, making South Australia one of the most centralised states. Major areas of population growth in recent years were in outer suburbs such as [[Mawson Lakes, South Australia|Mawson Lakes]] and [[Golden Grove, South Australia|Golden Grove]]. Adelaide's inhabitants occupy 325,000 houses, 57,000 detached, row terrace or town houses and 49,000 flats, apartments and caravans.
59600
59601 Major areas of population growth in recent years were in outer suburbs such as [[Mawson Lakes, South Australia|Mawson Lakes]] and [[Golden Grove, South Australia|Golden Grove]]. Overseas born Adelaideans composed 24.6% (242, 092) of the total population. The North-Eastern Suburbs (such as Golden Grove and [[Salisbury, South Australia|Salisbury]]) and suburbs close to the CBD had a higher ratio of overseas born residents. Wealthier and more well-educated Adelaideans are concentrated on the coastal suburbs (such as [[Brighton, South Australia|Brighton]] and [[Hallett Cove, South Australia|Hallett Cove]]) and South-Eastern suburbs (such as [[Burnside, South Australia|Burnside]] and [[Waterfall Gully, South Australia|Waterfall Gully]]). Almost a fifth (17.9%) of the population had university qualifications. The number of Adelaideans with vocational qualifications (such as tradespersons) fell from 62.1% of the labour force in the 1991 census to 52.4% in the 2001 census.
59602
59603 Overall, Adelaide is ageing much more rapidly than other Australian capital cities. Just under a quarter (24.1%) of Adelaide's population is aged 55 years or older, in comparison to the national average of 19.9%. To further compound the situation, Adelaide has the lowest number of children (under-15 year olds), which composed 18.7% of the population, compared to the national average of 20.4%. In regards to three highest ancestries, 38% of the population identified themselves as [[English people|English]], 34% as Australian (which is most likely primarily of [[Anglo-Celtic]] background) and 8.4% as [[Irish people|Irish]]. The three most-spoken languages other than [[Australian English|English]] were: 3.5% for [[Italian Language|Italian]], 2.3% for [[Greek Language|Greek]] and 1.2% for [[Vietnamese Language|Vietnamese]]. {{ref|adelabsstats}}
59604
59605 ==Economy==
59606 Adelaide's economy is primarily based around manufacturing, defence technology and research, commodity export and corresponding service industries. It has large [[manufacturing]], [[Defense (military)|defence]] and [[research]] [[Zoning|zones]]. They contain car manufacturing plants for [[Holden|General Motors Holden]] and [[Mitsubishi Motors Corporation|Mitsubishi]], and plants for medical equipment and [[electronic component]] production. Almost half of all cars produced in Australia are made in Adelaide.{{ref|carmanufacture}} The global media conglomerate [[News Corporation]] was founded in and until 2004 incorporated in Adelaide and is still considered its 'spiritual' home by [[Rupert Murdoch]]. Australia's largest oil company, [[Santos Limited|Santos]] (South Australia Northern Territory Oil Search) and the prominent South Australian brewery, [[Coopers Brewery|Coopers]] calls Adelaide their home. The collapse of the [[State Bank of South Australia|State Bank]] in 1992 resulted in large levels of state [[Public debt|debt]] (as much as A$4 billion). The collapse had meant that successive governments had enacted lean budgets, cutting [[Public finance|spending]], which had been a setback to the further [[Economic development|development]] of the city and state. The debt has recently been reduced with the State Government once again receiving a AAA+ Credit Rating.{{ref|creditrating}} The South Australian economy (very closely tied to Adelaide's) still enjoys a trade surplus and has higher per capita growth than Australia as a whole. {{ref|growth}}
59607 [[Image:HMAS Rankin SSK-78.jpg|left|thumb|280px|The Adelaide-built [[Collins class submarine|Collins Class]] submarine HMAS Rankin]]
59608 Adelaide is home to a large proportion of Australia's defence industries which contribute over AUD$1 billion to South Australia's Gross State Product. 70% of Australian defence companies are located in Adelaide. The principal government military research institution, the [[Defence Science and Technology Organisation]], and other defence technology organisations such as [[Tenix Defence Systems|Tenix]] are located in [[Salisbury, South Australia|Salisbury]] near [[RAAF Base Edinburgh]] and others near [[Technology Park, Adelaide|Technology Park]]. The [[Australian Submarine Corporation]], based in the industrial suburb of [[Osborne, South Australia|Osborne]] was charged with constructing Australia's [[Collins class submarine|Collins Class]] [[Submarines]] and recently won a AUD$6 billion contract to construct the [[Royal Australian Navy|Royal Australian Navy's]] new air-warfare destroyers. {{ref|defencestate}}
59609
59610 There are 466 829 employed people in Adelaide, with 62.3% employed full-time and 35.1% employed part-time. In recent years there has been a growing trend towards part-time (which includes casual) employment, increasing from only 11.6% of the workplace in 1991, to over a third today. 15% of workers are employed in manufacturing, 5% in construction, 15% in retail trade, 11% in business services, 7% in education and 12% in health and community services. The median weekly individual income for people aged 15 years and over is $300-$399 per week. The median family income is $800-$999 per week.{{ref|adelabsstats}} Adelaide's housing and living costs are substantially lower than that of other Australian cities, with housing being notably cheaper. The median Adelaide house price is half that of [[Sydney]] and two-thirds that of [[Melbourne]]. The unemployment rate (as of October 2005) was 4.8%. {{ref|livingcost}}
59611
59612 ==Education==
59613 :''Main article: [[South Australia#Education|Education in South Australia]]''
59614 [[Image:Art Gallery of South Australia.JPG|280px|right|thumb|Art Gallery of South Australia]]
59615 Adelaide is home to campuses of all three of South Australia's universities. The [[University of Adelaide]] is a member of the [[Group of Eight (Australian universities)|Group of Eight]] and was founded in 1874, making it the third oldest university in Australia. It has five campuses in the Adelaide area; one being its primary campus on [[North Terrace, Adelaide|North Terrace]] and another being the [[National Wine Centre of Australia|National Wine Centre]]. The [[University of South Australia]] was formed in 1991 from a merger between the South Australian Institute of Technology and the South Australian Colleges of Advanced Education. Four of its six campuses are located in Adelaide, with two in the CBD itself. [[Flinders University]], located in [[Bedford Park, South Australia|Bedford Park]] is named after British navigator and explorer [[Matthew Flinders]] and was founded in 1966. It is a mid-sized institution with a medical school at the adjacent [[Flinders Medical Centre]]. Leading US private university, [[Carnegie Mellon University|Carnegie Mellon]], is to establish two Adelaide campuses offering both Australian and US [[Academic degree|degrees]] in 2006. The Heinz School will specialise in [[Information technology|IT]] and government management and be based in [[Victoria Square, Adelaide|Victoria Square]], while another campus at [[Light Square, Adelaide|Light Square]] will specialise in new media and entertainment . These institutions attract students from across Australia and around the world, earning Adelaide’s international recognition as a [http://www.adelaide.sa.gov.au/council/publications/Brochures/IAEC_Adelaide_brochure_web.pdf &amp;#8216;City of Education&amp;#8217;].
59616
59617 School education in Adelaide is provided by a variety of public and private schools, which are the responsibility of the State Government. These schools operate under the [[South Australian Certificate of Education]] (SACE), with [[International Baccalaureate]]s (IB) offered at many as well. The [[Tertiary education|Tertiary Education]] system in Adelaide is extensive, with five out of eight centres of [[TAFE South Australia]] in the city itself, including the Douglas Mawson institute of Technology. They specialise in non-university higher education offering a viable alternative.
59618
59619 ==Culture==
59620 [[Image:Adel Convention Centre.jpg|280px|right|thumb|Adelaide Convention Centre, situated next to the [[River Torrens]].]]
59621 [[Image:St Peters Cathedral.JPG|280px|right|thumb|St. Peters Cathedral, Adelaide]]
59622
59623 Adelaide is sometimes referred to as the 'City of Churches', although this is a reflection more on Adelaide's past than its present. Rumour has it that for every church that was built in Adelaide, a [[public house|pub]] was also built to serve the less pious. From its earliest, Adelaide attracted [[immigrant|immigrants]] from many countries, particularly German migrants escaping religious persecution. They brought with them the [[vine]] cuttings that founded the acclaimed wineries of the [[Barossa Valley]]. After the [[World War II|Second World War]] Italians, Greeks, Dutch, Polish, and possibly every other European nationality came to make a new start. An influx of Asian immigrants following the Vietnam War added to the mix. These new arrivals have blended to form a rich and diverse cuisine and vibrant restaurant culture.
59624
59625 Adelaide's [[The Arts|arts]] scene flourished in the 1970's under the leadership of premier [[Don Dunstan]], removing some of the more [[puritan|puritanical]] restrictions on cultural activities then prevalent around Australia. Now the city is home to events such as the Barossa Music Festival, the [[Adelaide Festival of Arts]], [[Adelaide Film Festival]], [[Adelaide Festival of Ideas]], [[Come Out]] youth arts festival, the [[Adelaide Fringe Festival|Fringe Festival]], among others. [[WOMADelaide]], Australia's premier [[world music]] event, is now annually held in the scenic surrounds of [[Adelaide Botanic Gardens|Botanic Park]], emphasising Adelaide's dedication to the arts which has prevailed since the days of Don Dunstan.
59626
59627 The annual [[Royal Adelaide Show]], first held in 1840, began as a simple event for the state's farmers to show off their produce. Over time, it grew into a more general commercial [[fair]] held in early September in the inner suburb of [[Wayville, South Australia|Wayville]], with [[amusement ride|carnival ride]]s, food and entertainment surrounding the more traditional agricultural exhibitions and competitions.
59628
59629 The [[music of Adelaide]] has produced various musicians who have achieved both national and worldwide fame. Notably the [[Adelaide Symphony Orchestra]], the [[Adelaide Youth Orchestra]], [[The Mark of Cain]], [[The Superjesus]], [[Testeagles]], [[Cold Chisel]] and [[Eric Bogle]]. American artist [[Ben Folds]] considers Adelaide his second home, epitomised in his song &quot;Adelaide&quot; and resides here with his Adelaide-born wife for a number of months each year. The first [[Australian Idol]] winner, [[Guy Sebastian]] hails from the Adelaide suburb of [[Golden Grove, South Australia|Golden Grove]] and the popular Australian hip-hop outfit [[Hilltop Hoods]] reside in [[O'Halloran Hill, South Australia|O'Halloran Hill]].
59630
59631 ===Media===
59632 Newspapers in Adelaide are dominated by [[News Corp]] tabloid publications. The only South Australian daily newspaper is ''[[The Advertiser (Australia)|The Advertiser]]'', published by News six days per week, while the Sunday paper is the ''[[Sunday Mail (Adelaide)|Sunday Mail]]''. There are eleven suburban community newspapers published weekly, known collectively as the ''[[Messenger Newspapers]]'', also published by a subsidiary of News Corp. A recent addition to the print medium in the city is &quot;[[The Independent Weekly]]&quot;, providing one alternative view. Two national daily newspapers are circulated in the city - ''[[The Australian]]'' (Monday&amp;ndash;Friday) and its weekend publication, ''The Weekend Australian'' (Saturday), also published by News Corp., and ''[[The Australian Financial Review]]'' published by [[John Fairfax Holdings|Fairfax]]. ''[[The Adelaide Review]]'' is a free paper published fortnightly and other independent magazine-style papers are published, but are not as widely available.
59633
59634 All of the five Australian national networks broadcast both [[Analog television|analogue]] [[PAL]] and [[widescreen]] [[Digital television|digital]] services in Adelaide. They share three transmission towers on the ridge near the summit of [[Mount Lofty]]. The two government-funded stations are ''[[Australian Broadcasting Corporation|ABC]]'' and ''[[Special Broadcasting Service|SBS]]''. The ''[[Seven Network]]'' and ''[[Network Ten]]'' both own their Adelaide stations ([[SAS-7]] and [[ADS-10]] respectively). Adelaide's [[NWS-9]] is affiliated with the ''[[Nine Network]]'' but is actually owned by [[Southern Cross Broadcasting]]. Adelaide also has a [[community television]] station, [[Channel 31]]. The [[Foxtel]] [[pay TV]] service is available as [[cable television]] in a few areas, as is [[satellite television]] to the entire metropolitan area. It is resold by a number of other brands, mostly telephone companies.
59635
59636 ===Sport===
59637 [[Image:Clipsal 500.jpg|280px|right|thumb|The annual Adelaide [[Clipsal 500]] race.]]
59638 Adelaide hosted the [[Formula 1]] [[Australian Grand Prix]] from 1985 to 1995 on a [[Adelaide Street Circuit|street circuit]] in the city's eastern parklands. The Grand Prix became a source of pride and losing the Grand Prix to Melbourne in a surprise announcement left a void that has since been filled with the highly successful [[Adelaide 500|Clipsal 500]] [[V8 Supercar]] race event, held on a modified version of the same street circuit.
59639
59640 Adelaide is the home of two [[Australian Football League]] teams: the [[Adelaide Crows]] and the [[Port Adelaide Football Club|Port Adelaide Football Club]]. A local [[Australian Rules Football]] league, the [[South Australian National Football League|SANFL]], is made up of nine teams from around Adelaide. Adelaide's professional [[football (soccer)|soccer]] team [[Adelaide United]] play in the [[A-League]], at [[Hindmarsh Stadium]], one of the few purpose built football stadiums in Australia. The [[Adelaide 36ers]] and the [[Adelaide_Fellas | Adelaide Fellas]] play in national basketball competitions, with home games at the Distinctive Homes Dome and the [[Adelaide Thunderbirds]] play in the national netball competition, with home games at [[ETSA Park]]. Most large sporting events take place at either [[AAMI Stadium]] (formerly Football Park) or the historic [[Adelaide Oval]], home of the [[Southern Redbacks]] Cricket Team. Adelaide hosts an international cricket test every summer, along with a number of [[one day international]] cricket matches.
59641
59642 Adelaide has hosted the annual [[Tour Down Under]] bicycle race since 1999, an event which has gradually built an international reputation with each successive year it has been held. It is also host to the popular [[Bay to Birdwood]] run, featuring vintage and veteran cars from around the world.
59643
59644 ==Infrastructure==
59645 ===Health===
59646 Adelaide's first hospital was the [[Royal Adelaide Hospital]] (RAH), founded in [[1840]], it is one of the major hospitals in Adelaide and is a [[teaching hospital]] of the [[University of Adelaide]]. It has a capacity of 500 beds. Two other RAH campuses specialising in specific patient services located in the suburbs of Adelaide - the Hampstead Rehabilitation Centre in [[Northfield, South Australia|Northfield]], and the [[Glenside, South Australia|Glenside]] Campus Mental Health Service. The other two largest hospitals in the Adelaide area are the [[Women's and Children's Hospital, Adelaide|The Women's and Children's Hospital]] (305 beds), which is located on King William Road in [[North Adelaide]] and the Flinders Medical Centre (500 beds), which is located in [[Bedford Park, South Australia|Bedford Park]], [[South Australia]]. These hospitals are also associated with medical schools - the Women and Children's with the [[University of South Australia]]'s Adelaide Campus and the Flinders Medical Centre with [[Flinders University]].
59647
59648 ===Transport===
59649 {{Main|Transport in Adelaide}}
59650 [[Image:Mountosmondinterechange_sefreeway.JPG|right|280px|thumb|The [[Mount Osmond, South Australia|Mount Osmond]] Interchange on the [[South Eastern Freeway]].]]
59651 Being centrally located on the Australian mainland, Adelaide forms something of a strategic transport hub for east-west and north-south routes. The city itself has a limited [[public transport]] system, which is managed by and known as the [[Adelaide Metro]]. The Adelaide Metro consists of a contracted bus system including the [[Adelaide O-Bahn]] (a [[guided busway]]), metropolitan railways, and the historic Adelaide-[[Glenelg Tram]]. Road transport in Adelaide has historically been comparatively easier than many of the other Australian cities, with a well-defined city layout and wide multiple-lane roads from the beginning of its development. Historically, Adelaide was known as a &quot;twenty-minute city&quot;, with commuters having being able to travel from metropolitan outskirts to the city proper in roughly twenty minutes. However, these roads are now inadequate to cope with Adelaide's growing road traffic. {{ref|20mincity}}
59652
59653 The [[Adelaide International Airport]], located at [[West Beach, South Australia|West Beach]], is Australia's newest and most advanced airport terminal and is designed to serve in excess of 5.4 million passengers annually. The new dual international/domestic terminal was to replace the old and ageing terminals known locally as the 'tin sheds', and incorporates new state-of-the-art features, such as glass aerobridges and the ability to cater for the new Airbus A380. The airport is designed to handle 27 aircraft simultaneously and it is capable of processing 3,000 passengers per hour.
59654
59655 ===Utilities===
59656 Adelaide has three major energy companies, which provide gas and electricity to the population. ETSA Utilities is the former government-owned company (sold off by the [[John Olsen|Olsen]] Government in the 1990s) and the major player in the Adelaide electicity market. There are other smaller providers, [[AGL]], [[Energy Australia]] and [[Origin Energy]] who provide services in electricity and natural gas. There has been substantial criticism in recent years of the suburban electricity network due to its inability to cope with high-usage periods. Adelaide derives its electricity from a coal-fired plant at [[Torrens Island, South Australia|Torrens Island]] and connections to the national grid. Adelaide's water supply is gained from its reservoirs: [[Mount Bold Reservoir|Mount Bold]], [[Happy Valley Reservoir|Happy Valley]], Myponga, Millbrook, Hope Valley, Little Para and South Para. Further water demands result in the pumping of water from the [[River Murray]]. The provider of water services is by the government-owned [[SA Water]].
59657
59658 ==Notes and References==
59659 &lt;div style=&quot;font-size: 90%&quot;&gt;
59660 # {{note|cathuni}} ''Adelaide Council Naming Practices, courtesy Catholic University'' [http://online.cesanet.adl.catholic.edu.au/docushare/dsweb/GetRendition/Document-2903/html]
59661 # {{note|placenames}} ''South Australian Place Names. courtesy Government of South Australia'' [http://www.placenames.sa.gov.au/pno/pnores.phtml?recno=SA0076000]
59662 #{{note|ringroute}} ''Adelaide's Inner and Outer Ring Routes, courtesy South Australian Department of Transport'' [http://www.transport.sa.gov.au/transport_network/projects/better_roads/adelaides_inner_outer_ring_routes.asp]
59663 #{{note|ozroads}} ''Adelaide's Freeways - A History from MATS to the Port River Expressway, courtesy Ozroads'' [http://www.ozroads.com.au/SA/freeways.htm]
59664 #{{note|capcity}} ''Capital City Committee'' [http://www.capcity.adelaide.sa.gov.au/]
59665 #{{note|adelabsstats}} ''Adelaide (Statistical Division), courtesy Australian Bureau of Statistics'' [http://www.abs.gov.au/ausstats/abs@census.nsf/ddc9b4f92657325cca256c3e000bdbaf/6663e40d8994aa22ca256bbf000144a3!OpenDocument]
59666 #{{note|carmanufacture}} ''South Australia Fact Sheet: Automotive, courtesy Business South Australia'' [http://www.southaustralia.biz/fact_sheets/fact_automotive.biz.pdf] ''(.pdf)''
59667 #{{note|creditrating}} ''South Australia's Credit Rating the Highest, courtesy Business South Australia'' [http://www.southaustralia.biz/news/sa_creditrating.htm]
59668 #{{note|growth}} ''South Australia's Economic Performance Update, courtesy Business South Australia'' [http://www.southaustralia.biz/PDFs/economic_performance_update_dec05.pdf] ''(.pdf)''
59669 #{{note|defencestate}} ''South Australia: The Defence Industry Choice, courtesy Defence SA'' [http://www.defence-sa.com/]
59670 #{{note|livingcost}} ''Adelaide Cost of Living, courtesy Business South Australia'' [http://factsheet.southaustralia.biz/public/content/default.asp?xcid=52]
59671 #{{note|20mincity}} ''Metro Malcontent - The Twenty Minute City No More, courtesy RAA'' [http://www.raa.net/download.asp?file=documents\document_677.pdf] ''(.pdf)''
59672 &lt;/div&gt;
59673
59674 ==Sister cities==
59675 Adelaide has several [[sister city|sister cities]]. They are:
59676 {|
59677 | valign=&quot;top&quot; |
59678 *{{flagicon|USA}} - [[Austin, Texas]], [[United States]] - [[1983]]
59679 *{{flagicon|New Zealand}} - [[Christchurch]], [[New Zealand]] - [[1972]]
59680 | valign=&quot;top&quot; |
59681 *{{flagicon|Malaysia}} - [[George Town, Penang|George Town]], [[Penang]]/[[Malaysia]] - [[1973]]
59682 *{{flagicon|Japan}} - [[Himeji]], [[Japan]] - [[1982]]
59683 |}
59684
59685 ==See also==
59686 *[[Tallest Buildings in Adelaide]]
59687 *[[People of Adelaide]]
59688 *[[List of Adelaide railway stations]]
59689 *[[List of Adelaide suburbs]]
59690 *[[List of churches in Adelaide]]
59691 *[[List of sports clubs in Adelaide]]
59692
59693 ==Further reading==
59694 *Kathryn Gargett; Susan Marsden, ''Adelaide: A Brief History''. Adelaide: State History Centre, History Trust of South Australia in association with Adelaide City Council, 1952. ISBN 0730801160
59695 *Derek Whitelock et al, ''Adelaide : a sense of difference''. Melbourne: Arcadia, 2000. ISBN 0875606571
59696
59697 ==External links==
59698 {{commonscat|Adelaide}}
59699 {{sisterlinks|Adelaide}}
59700 {{Mapit-AUS-suburbscale|long=138.601|lat=-34.929}}
59701 *{{wikitravel}}
59702 *[http://www.adelaidecitycouncil.com/ City of Adelaide]
59703 *[http://www.sacentral.sa.gov.au/ SA Central]
59704 **[http://www.sa.gov.au/site/page.cfm?u=57&amp;area=2&amp;path=4873,4913,4917&amp;listMode=listLinks City highlights]
59705 **[http://www.sa.gov.au/site/page.cfm?u=57&amp;area=2&amp;path=4873,4913,4915&amp;listMode=listLinks Metropolitan highlights]
59706 *[http://www.sensational-adelaide.com Sensational Adelaide]
59707
59708 &lt;br clear=&quot;all&quot;&gt;
59709 {{AustralianCapitalCities}}
59710
59711 [[Category:Adelaide| ]]
59712 [[Category:Australian capital cities]]
59713 [[Category:Cities in South Australia]]
59714 [[Category:Coastal cities in Australia]]
59715
59716 [[bg:АдĐĩĐģаида]]
59717 [[da:Adelaide (Australien)]]
59718 [[de:Adelaide]]
59719 [[eo:Adelajdo]]
59720 [[es:Adelaida]]
59721 [[fa:ØĸدŲ„اید]]
59722 [[fi:Adelaide]]
59723 [[fr:AdÊlaïde (Australie)]]
59724 [[gl:Adelaida - Adelaide]]
59725 [[he:אדלייד]]
59726 [[hu:Adelaida]]
59727 [[id:Adelaide]]
59728 [[is:Adelaide]]
59729 [[it:Adelaide (Australia)]]
59730 [[ja:ã‚ĸデãƒŦãƒŧド]]
59731 [[nl:Adelaide]]
59732 [[pl:Adelajda]]
59733 [[pt:Adelaide]]
59734 [[ru:АдĐĩĐģаида]]
59735 [[simple:Adelaide]]
59736 [[sv:Adelaide]]
59737 [[uk:АдĐĩĐģĐ°Ņ—Đ´Đ°]]
59738 [[vi:Adelaide]]</text>
59739 </revision>
59740 </page>
59741 <page>
59742 <title>Australian Football Leauge</title>
59743 <id>1149</id>
59744 <revision>
59745 <id>15899651</id>
59746 <timestamp>2002-02-25T15:51:15Z</timestamp>
59747 <contributor>
59748 <ip>Conversion script</ip>
59749 </contributor>
59750 <minor />
59751 <comment>Automated conversion</comment>
59752 <text xml:space="preserve">#REDIRECT [[Australian Football League]]
59753 </text>
59754 </revision>
59755 </page>
59756 <page>
59757 <title>Australian Football League</title>
59758 <id>1150</id>
59759 <revision>
59760 <id>41819899</id>
59761 <timestamp>2006-03-01T23:24:14Z</timestamp>
59762 <contributor>
59763 <username>Schmiteye</username>
59764 <id>523205</id>
59765 </contributor>
59766 <minor />
59767 <comment>/* Present */ fix redirect</comment>
59768 <text xml:space="preserve">{| class=&quot;infobox&quot; style=&quot;width: 25em; font-size: 95%;&quot;
59769 |+ style=&quot;font-size: larger;&quot; | '''Australian Football League'''
59770 |-
59771 | align=&quot;center&quot; colspan=&quot;2&quot; |
59772 [[Image:Australian Football League.svg|200px]]
59773 |-
59774 ! colspan=&quot;2&quot; bgcolor=&quot;#b0c4de&quot; | '''General Information'''
59775 |- style=&quot;vertical-align: top;&quot;
59776 | '''Founded'''
59777 | [[1989]], [[Melbourne, Australia|Melbourne]]
59778 |-
59779 | '''Previous Names'''
59780 | [[VFL/AFL|Victorian Football League]] or [[VFL/AFL|VFL]] (1897-1988)
59781 |-
59782 | '''Current Clubs'''
59783 | [[Adelaide Crows|Adelaide]]&lt;br&gt;[[Brisbane Lions]]&lt;br&gt;[[Carlton Football Club|Carlton]]&lt;br&gt;[[Collingwood Football Club|Collingwood]]&lt;br&gt;[[Essendon Football Club|Essendon]]&lt;br&gt;[[Fremantle Football Club|Fremantle]]&lt;br&gt;[[Geelong Football Club|Geelong]]&lt;br&gt;[[Hawthorn Football Club|Hawthorn]]&lt;br&gt;[[Kangaroos Football Club|Kangaroos]]&lt;br&gt;[[Melbourne Football Club|Melbourne]]&lt;br&gt;[[Port Adelaide Football Club|Port Adelaide]]&lt;br&gt;[[Richmond Football Club|Richmond]]&lt;br&gt;[[St Kilda Football Club|St Kilda]]&lt;br&gt;[[Sydney Swans|Sydney]]&lt;br&gt;[[West Coast Eagles|West Coast]]&lt;br&gt;[[Western Bulldogs]]
59784 |- style=&quot;vertical-align: top;&quot;
59785 | '''Defunct Clubs'''
59786 | [[Fitzroy Football Club|Fitzroy]]&lt;br&gt; [[Melbourne University Football Club|University]]&lt;br&gt;
59787 |-
59788 | '''Stadiums'''
59789 | [[Melbourne Cricket Ground]]&lt;br&gt;[[Telstra Stadium]]&lt;br&gt;[[Telstra Dome]] &lt;br&gt;[[AAMI Stadium]]&lt;br&gt;[[Sydney Cricket Ground]]&lt;br&gt;[[Subiaco Oval]]&lt;br&gt;[[Brisbane Cricket Ground|The Gabba]]&lt;br&gt;[[Skilled Stadium]]&lt;br&gt;[[Aurora Stadium]]&lt;br&gt;[[Manuka Oval]]&lt;br&gt;[[Marrara Oval]]&lt;br&gt;[[Carrara Stadium]]
59790 |-
59791 ! colspan=&quot;2&quot; bgcolor=&quot;#b0c4de&quot; | '''2005 Season'''
59792 |- style=&quot;vertical-align: top;&quot;
59793 | '''Premiers'''
59794 | '''[[Sydney Swans|Sydney]]''' 8.10 (58) defeated [[West Coast Eagles|West Coast]] 7.12 (54)
59795 |-
59796 | '''Minor Premiers'''
59797 | [[Adelaide Crows|Adelaide]]
59798 |-
59799 | '''Wooden Spoon'''
59800 | [[Carlton Blues|Carlton]]
59801 |-
59802 | '''NAB Cup/Wizard Cup Premiers'''
59803 | [[Carlton Blues|Carlton]]
59804 |-
59805 | '''Brownlow Medalist'''
59806 | [[Ben Cousins]]
59807 |-
59808 | '''Coleman Medalist'''
59809 | [[Fraser Gehrig]]
59810 |-
59811 | '''Total Attendance'''
59812 | 6,283,788
59813 |-
59814 | '''Average Match Attendance'''
59815 | 35,703
59816 |-
59817 |- style=&quot;vertical-align: top;&quot;
59818 |}
59819
59820
59821 ''This is a page about the national league in Australian Rules Football. For information about the rules and history of the game see the [[Australian Rules Football]] page.''
59822
59823 The '''Australian Football League''' is the national competition in [[Australian Rules Football]]. It was formed through the expansion of the [[Victorian Football League]], during the 1980s and 1990s. In 2005 it had a total regular season attendance of 6,283,788, and the average attendance of 35,703 was the [[sports league attendances|third highest]] of any professional sports league in the world.
59824
59825 ==Administration==
59826
59827 ===AFL===
59828
59829 *'''CEO''': [[Andrew Demetriou]]
59830 *'''General Manager- Broadcasting, Strategy &amp; Major Projects''': [[Ben Buckley]]
59831 *'''General Manager- Football Operations''': [[Adrian Anderson]]
59832
59833 ===[[AFL Players' Association]]===
59834 *'''President''': [[Peter F. Bell|Peter Bell]]
59835 *'''Vice President''': [[Nathan Buckley]]
59836 *'''CEO''': [[Brendon Gale]]
59837
59838 ===AFL Tribunal===
59839
59840 ====AFL Tribunal====
59841 *'''Chairman''': David Jones (replacing [[Brian Collins]])
59842 *'''Members''':&lt;br&gt;John Hassett&lt;br&gt;Will Houghton QC&lt;br&gt;Andrew Tinney&lt;br&gt;Emmett Dunne&lt;br&gt;[[Michael Sexton]]&lt;br&gt;[[Wayne Schimmelbusch]]&lt;br&gt;Richard Loveridge
59843
59844 ====AFL Appeals Board====
59845 *'''Chairman''': [[Peter O'Callaghan]]
59846 *'''Members''':&lt;br&gt;[[Brian Collis]] QC&lt;br&gt;Brian Bourke&lt;br&gt;[[John Schultz]]&lt;br&gt;[[Michael Gree]]
59847
59848 ====AFL Grievance Tribunal====
59849 *'''Chairman''': Jack Rush QC
59850 *'''Members''':&lt;br&gt;Kevin Power&lt;br&gt;Michael Moncrieff&lt;br&gt;Darren Baxter&lt;br&gt;James Dowsley&lt;br&gt;Roger Berryman
59851
59852 ====AFL Match Review Panel====
59853 *'''Chairman''': [[Peter Schwab]]
59854 *'''Members''':&lt;br&gt;[[Peter Carey]]&lt;br&gt;[[Andrew McKay]]
59855
59856 ===Season/Tournaments===
59857
59858 ====Toyota AFL Premiership Season====
59859 The ''Toyota AFL Premiership Season'' lasts for 22 rounds and begins in late March, contested between 16 teams from around Australia.
59860
59861 At the end of the 22 rounds, the top eight teams compete in the ''[[Toyota AFL Finals Series]]'', in which teams compete in a Qualifying Final or Elimination Final, depending on the teams ladder position. At this stage, only six teams remain, and the bottom four teams play in a Semi Final, in which two teams are eliminated. The remaining four teams play in one of two Preliminary Finals, and the last two teams standing play in the Grand Final.
59862
59863 The winners of the Grand Final become the premiers of that year.
59864
59865 The Grand Final is always held at the [[Melbourne Cricket Ground]],even if two non-[[Victoria (Australia)|Victorian]] teams are playing.The only recent exception was [[Waverley Park]] in 1991 while the MCG was undergoing redevelopment.
59866
59867 ====NAB Cup====
59868 Before the premiership season commences, a knock-out Cup competition is played. It has had several incarnations as the Escort Cup, the Fosters Cup, the [[Ansett Australia]] Cup, the [[Wizard Cup]], and as of the 2006 season it will be known as the [[NAB Cup]].
59869
59870 ===AFL Strongholds===
59871 Australian Rules Football is the dominant football code in every state and territory in Australia, except [[New South Wales]] and [[Queensland]], where [[Rugby League]] dominates, and in [[Australian Capital Territory|A.C.T.]], where [[Rugby Union]] dominates. In [[Victoria (Australia)|Victoria]], [[South Australia]], [[Western Australia]], and [[Tasmania]] massive crowds attend many of the games and AFL is the dominant sport on television, print and radio news.
59872
59873 ==Clubs==
59874 (for more information go to [[List of Australian Rules Football Clubs]])
59875 ===Present===
59876 {| class=&quot;wikitable&quot;
59877 |- bgcolor=#efefef
59878 ! Club
59879 ! Logo
59880 ! City
59881 ! Home Ground*
59882 |-
59883 | [[Adelaide Crows]]
59884 | [[Image:Adelaide Crows logo.png|80px]]
59885 | [[Adelaide]], [[South Australia]]
59886 | [[AAMI Stadium]]
59887 |-
59888 | [[Brisbane Lions]]
59889 | [[Image:Brisbane Lions logo.gif|80px]]
59890 | [[Brisbane]], [[Queensland]] (merger of [[Brisbane Bears]] and defunct [[Fitzroy Football Club]] in 1996)
59891 | [[Brisbane Cricket Ground]] (The 'Gabba)
59892 |-
59893 | [[Carlton Football Club|Carlton FC]]
59894 | [[Image:Carltonfc.png|80px]]
59895 | [[Carlton, Victoria|Carlton]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59896 | [[Telstra Dome]]&lt;br&gt;[[Melbourne Cricket Ground]]
59897 |-
59898 | [[Collingwood Football Club|Collingwood FC]]
59899 | [[Image:Collingwood Football Club logo.gif|80px]]
59900 | [[Collingwood, Victoria|Collingwood]], [[Melbourne, Victoria|Melbourne]],[[Victoria (Australia)|Victoria]]
59901 | [[Melbourne Cricket Ground]]
59902 |-
59903 | [[Essendon Football Club|Essendon FC]]
59904 | [[Image:Essendonfc logo small.png|80px]]
59905 | [[Essendon, Victoria|Essendon]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59906 | [[Telstra Dome]]
59907 |-
59908 | [[Fremantle Football Club|Fremantle FC]]
59909 | [[Image:Fremantle Dockers logo.gif|80px]]
59910 | [[Fremantle, Western Australia|Fremantle]], [[Western Australia]]
59911 | [[Subiaco Oval]]
59912 |-
59913 | [[Geelong Football Club|Geelong FC]]
59914 | [[Image:Geelong Football Club.png|80px]]
59915 | [[Geelong, Victoria|Geelong]], [[Victoria (Australia)|Victoria]]
59916 | [[Skilled Stadium]]
59917 |-
59918 | [[Hawthorn Football Club|Hawthorn FC]]
59919 | [[Image:Hawthorn Football Club logo.jpg|80px]]
59920 | [[Hawthorn, Victoria|Hawthorn]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59921 | [[Melbourne Cricket Ground]]&lt;br&gt;[[Aurora Stadium]]
59922 |-
59923 | [[Kangaroos Football Club|Kangaroos FC]]
59924 | [[Image:Kangaroos FC.svg|80px]]
59925 | [[North Melbourne, Victoria|North Melbourne]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59926 | [[Telstra Dome]]&lt;br&gt;[[Melbourne Cricket Ground]]&lt;br&gt;[[Manuka Oval]]
59927 |-
59928 | [[Melbourne Football Club|Melbourne FC]]
59929 | [[Image:Melbourne_Football_Club.png|80px]]
59930 | [[Melbourne]], [[Victoria (Australia)|Victoria]]
59931 | [[Melbourne Cricket Ground]]
59932 |-
59933 | [[Port Adelaide Football Club|Port Adelaide FC]]
59934 | [[Image:Port Adelaide Power logo.png|80px]]
59935 | [[Port Adelaide]], [[Adelaide]], [[South Australia]] || [[AAMI Stadium]]
59936 |-
59937 | [[Richmond Football Club|Richmond FC]]
59938 | [[Image:Richmond_afl_logo.png|80px]]
59939 | [[Richmond, Victoria|Richmond]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59940 | [[Melbourne Cricket Ground]]
59941 |-
59942 | [[St_Kilda Football Club|St. Kilda FC]]
59943 | [[Image:Saint_Kilda_Football_Club_logo.png|80px]]
59944 | [[St Kilda, Victoria|St Kilda]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59945 | [[Telstra Dome]]&lt;br&gt;[[Aurora Stadium]]
59946 |-
59947 | [[Sydney Swans]]
59948 | [[Image:SydneySwansLogo.png|80px]]
59949 | [[Sydney]], [[New South Wales]] (relocated from [[South Melbourne, Victoria|South Melbourne]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]] in 1982)
59950 | [[Sydney Cricket Ground]]&lt;br&gt;[[Telstra Stadium]]
59951 |-
59952 | [[West Coast Eagles FC]]
59953 | [[Image:West Coast Eagles.svg|80px]]
59954 | [[Perth, Western Australia|Perth]], [[Western Australia]]
59955 | [[Subiaco Oval]]
59956 |-
59957 | [[Western Bulldogs]]
59958 | [[Image:WesternBulldogsLogo.png|80px]]
59959 | [[Footscray, Victoria|Footscray]], [[Melbourne, Victoria|Melbourne]], [[Victoria (Australia)|Victoria]]
59960 | [[Telstra Dome]]&lt;br&gt;[[Marrara Oval]]
59961 |}
59962 ''(Note: Many clubs play several &quot;home&quot; matches at alternate grounds.)''
59963
59964 ===Former Teams===
59965 {| class=&quot;wikitable&quot;
59966 |- bgcolor=#efefef
59967 ! Club
59968 ! Logo
59969 ! Home City
59970 ! Last Home Ground
59971 ! Reason
59972 |-
59973 |-
59974 | [[Fitzroy Football Club|Fitzroy FC]]
59975 | [[Image:Fitzroy_logo.gif|80px]]
59976 | [[Fitzroy, Victoria|Fitzroy]], [[Victoria (Australia)|Victoria]]
59977 | [[Whitten Oval]]
59978 | merged with the [[Brisbane Bears]] to become the [[Brisbane Lions]] in [[1996]]
59979 |-
59980 |-
59981
59982 |-
59983 | [[South Melbourne Football Club]]
59984 | [[Image:Smfc.gif|80px]]
59985 | [[Melbourne]], [[Victoria (Australia)|Victoria]]
59986 | [[Lake Oval]]
59987 | relocated to Sydney in [[1982]] and changed trading name to the Sydney Swans
59988 |-
59989 | [[University Football Club|University FC]]
59990 |
59991 | [[Melbourne]], [[Victoria (Australia)|Victoria]]
59992 | [[Melbourne Cricket Ground]]
59993 | folded [[1915]], merged with [[Melbourne FC]]
59994 |}
59995
59996 ==[[VFL/AFL]] Records==
59997
59998 * '''Highest score'''&lt;br&gt;Geelong- 37.17 (239)&lt;br&gt;[[Carrara Oval]], [[May 3]], [[1992]].
59999 * '''Highest winning margin'''&lt;br&gt;Fitzroy- 190 points&lt;br&gt;[[Waverley Park]], [[July 28]], [[1979]].
60000 * '''Largest crowd'''&lt;br&gt;Carlton v Collingwood - 121,696 &lt;br&gt;[[Melbourne Cricket Ground|MCG]], [[September 26]], [[1970]] (Grand Final)
60001 * '''Largest Home &amp; Away crowd'''&lt;br&gt;Melbourne v Collingwood - 99,346 &lt;br&gt;[[Melbourne Cricket Ground|MCG]], [[1958]]
60002 * '''Largest Non-Victorian crowd'''&lt;br&gt;Sydney v West Coast Eagles - 91,898 &lt;br&gt;[[Melbourne Cricket Ground|MCG]], [[September 24]], [[2005]]
60003 * '''Largest International crowd'''&lt;br&gt;Melbourne v Sydney- 32,789&lt;br&gt;[[B.C. Place]], [[Vancouver]], [[Canada]], [[1987]]
60004 * '''Most premierships'''&lt;br&gt; Carlton/Essendon 16
60005 * '''Most wooden spoons'''&lt;br&gt; St Kilda 26, most recent 2000
60006 * '''Most consecutive premierships'''&lt;br&gt;Collingwood- 4&lt;br&gt;[[1927]]-[[1930]]
60007 * '''Most games won in a season'''&lt;br&gt;Essendon- 24&lt;br&gt;[[2000]]
60008 * '''Most consecutive wins'''&lt;br&gt;Geelong- 23&lt;br&gt;[[1952]]-[[1953]]
60009 * '''Most games played in a career'''&lt;br&gt;[[Michael Tuck]] (Hawthorn)- 426 games
60010 * '''Most goals in a career'''&lt;br&gt;[[Tony Lockett]] (St Kilda/Sydney)- 1,360 goals
60011 * '''Most goals in a game'''&lt;br&gt;[[Fred Fanning]] (Melbourne)- 18 goals
60012 * '''Most consecutive matches'''&lt;br&gt;[[Jim Stynes]] (Melbourne)- 244
60013 * '''Most consecutive matches from debut'''&lt;br&gt;[[Jared Crouch]] (Sydney)- 182
60014 * '''Tallest player'''&lt;br&gt;[[Aaron Sandilands]] (Fremantle)- 211cm
60015 * '''Shortest player'''&lt;br&gt;[[Danny Craven]] (St Kilda/Brisbane)- 162cm
60016 * '''Heaviest player'''&lt;br&gt;[[Aaron Sandilands]] (Fremantle)- 124kg
60017 * '''Longest kick'''&lt;br&gt;[[Albert Thurgood]] (Essendon)- 98.48m (109 yards, 1 foot, 3.2 inches)
60018
60019 ==Team Rivalries==
60020 Games in which teams with rivalries typically draw large crowds and interest regardless of both teams positions on the ladder. Collingwood is a famous club in the league because it is a rival of almost all other traditional clubs and also known as the 'team people love to hate'.
60021
60022 ===Traditional Rivals===
60023 * [[Carlton Football Club | Carlton]] v [[Collingwood Football Club | Collingwood]]&lt;br&gt;Arguably the greatest and longest standing rivalry in the competition. Two working class clubs in close proximity, fuelled by the 1970 Grand Final in which Carlton extinguished hopes of Collingwood breaking a premiership drought. Games between these two clubs regularly attract large crowds regardless of whether they are both at the bottom of the ladder.
60024
60025 * [[Richmond Football Club | Richmond]] v [[Collingwood Football Club | Collingwood]] &lt;br&gt;Arising from the fact that the two areas neighbour each other,and that Richmond supporters often mocked Collingwood suppoters whom they thought were &quot;feral&quot;. also Richmond and Collingwood were both highly successful in the late 1920's to the early 1930's, meeting each other in several grand finals .
60026
60027 * [[Melbourne Football Club | Melbourne]] v [[Collingwood Football Club | Collingwood]] &lt;br&gt;As per Richmond vs Collingwood but additionally fuelled by a narrow loss to Collingwood which stopped Melbourne from winning a fourth flag in a row in 1958. And the fact that Melbourne played half their premierships against them.
60028
60029 * [[Essendon Football Club | Essendon]] v [[Collingwood Football Club | Collingwood]]&lt;br&gt;Arising from the inaugural [[ANZAC Day]] clash and Essendon's loss to Collingwood in the 1990 Grand Final. Games between these sides draw large crowds.
60030
60031 * [[Essendon Football Club | Essendon]] v [[Carlton Football Club | Carlton]] &lt;br&gt;As is the case with two successful sides in any competition, fans of each club love to defeat the other.
60032
60033 === Local Derbies===
60034 * [[Adelaide Football Club | Adelaide]] v [[Port Adelaide Football Club | Port Adelaide]] &lt;br&gt;Known as The Showdown
60035
60036 * [[West Coast Eagles | West Coast]] v [[Fremantle Football Club | Fremantle]] &lt;br&gt;Known as The [[Western Derby]]
60037
60038 ===More Recent Rivals===
60039 * [[Brisbane Lions|Brisbane]] v [[Sydney Swans | Sydney]] &lt;br&gt;Two frontier states for the AFL, the AFL uses the [[Rugby League]] [[State of Origin]] rivalry between [[Queensland]] and [[New South Wales]] to draw crowds to games between these teams.
60040
60041 * [[Melbourne Football Club|Melbourne]] v [[Geelong Football Club | Geelong]] &lt;br&gt; The first 2 clubs in the league. Melbourne CEO [[Steve Harris]] once made comments about how Melbourne people never like to travel to Geelong, with this rivalry being manufactured by the AFL in the recent [[AFL Rivalry Round]] concept.
60042
60043 * [[Essendon Football Club|Essendon]] v [[Hawthorn Football Club | Hawthorn]] &lt;br&gt; The clubs contested the Grand Final on several occasions in the 1980s.
60044
60045 * [[Brisbane Lions|Brisbane]] v [[Essendon Football Club|Essendon]] &lt;br&gt; The two sides who clashed in the 2001 Grand Final, has since developed into a great rivalry thanks to respective coaches Leigh Matthews (Brisbane) and Kevin Sheedy (Essendon), with several famous clashes already.
60046
60047 * [[Brisbane Lions|Brisbane]] v [[Collingwood Football Club|Collingwood]] &lt;br&gt; The Brisbane Lions defeated Collingwood in the 2002 and 2003 Grand Final, which caused Grand Final Rematches and great rivalry between the two teams. This continued onwards with many Lions fans disliking Collingwood, and their President [[Eddie McGuire]].
60048
60049 * [[Brisbane Lions|Brisbane]] v [[Port Adelaide Power|Port Adelaide]] &lt;br&gt; The two sides who dominated the AFL from 2001-2004, they had identical winning percentages over the four years. The Lions won three consecutive titles (2001-2003), while Port developed a reputation as chokers in big matches until they won the 2004 title, defeating Brisbane in that decieder. Matches between the two are always hard fought encounters. The two sides have also drawn on two occasions, in 1997 and 1998.
60050
60051 * [[West Coast Eagles|West Coast]] v [[Essendon Football Club|Essendon]] &lt;br&gt; The rivalry started when Essendon coach Kevin Sheedy celebrated a victory by running down from the coaches box to the ground waving his jacket around his head. Now the fans of the victorious team in these clashes celebrate the victory by waving their jackets.
60052
60053 * [[St Kilda Football Club|St Kilda]] v [[Geelong Football Club|Geelong]] &lt;br&gt;Currently Victoria's two best teams. Both have reasonably young teams making their mark in AFL.
60054
60055 ===Past Rivals===
60056 * [[St Kilda Football Club|St Kilda]] v [[South Melbourne Football Club|South Melbourne]] &lt;br&gt;These clubs shared the same geographical area until the Swans moved to Sydney. These teams played for the 'Lake Trophy'.
60057
60058 * [[Collingwood Football Club|Collingwood]] v [[Fitzroy Football Club | Fitzroy]] &lt;br&gt;As with St Kilda and South Melbourne, these clubs shared the same geographical area until Fitzroy folded (and was absorbed by Brisbane) and began a new rivalry with Collingwood from successive Grand Final encounters.
60059
60060 ===Rivalries which remain &quot;untapped&quot;===
60061 * [[Richmond Football Club | Richmond]] v [[Fremantle Dockers | Fremantle]] &lt;br&gt;Richmond was Fremantle's first opponent in 1995, and later in the season became the first team to play the Dockers twice. Comedian [[Trevor Marmalade]] joked at the time that this made the two teams &quot;traditional rivals&quot;. Interestingly, many matches between the two teams have been close contests, but neither side seems to consider the other a closely-matched rival.
60062
60063 ==Future==
60064 Several areas have been discussed as expansion possibilities, most often [[Tasmania]], western [[Sydney]], North [[Queensland]], the [[Gold Coast, Queensland|Gold Coast]], [[Canberra]], [[Darwin, Northern Territory|Darwin]] and even [[New Zealand]] or [[South Africa]], but the AFL have an aim to keep the competition to 16 teams. It is generally thought that if the AFL expands into a new area, one of the less financially well-off Victorian clubs will re-locate, rather than an entirely new club being formed. The Western Bulldogs and Kangaroos are most often considered candidates for re-location, and some theorise that their respective name changes in the 1990s were in anticipation of such a move.
60065
60066 Having experimented with home games in Western [[Sydney]], the Kangaroos play regular premiership season games at [[Manuka Oval]] in Canberra, and the Bulldogs have played in [[Cairns, Queensland|Cairns]] and [[Darwin, Northern Territory|Darwin]], leading to more speculation that they are attempting to build a supporter base in those areas for future re-location.
60067
60068 Mergers have also been an option for the AFL, as was seen with the Brisbane Bears and the defunct Fitzroy Lions in 1996. If two Victorian teams merge, then it makes room for a 16th team to come from an interstate city - the likely candidates for this are the [[Southport Sharks]] or a Tasmanian team based in [[Hobart]] or [[Launceston]]. However, that since the 1996 [[Melbourne Hawks]] merger attempt, the AFL has been less willing to actively persue the amalgamation of two Victorian-based clubs as an option.
60069
60070 ==Hall of Fame==
60071 For the centenary of the VFL/AFL in 1996, the [[Australian Football Hall of Fame]] was formed. Its members not only consist of those who have contributed to the VFL/AFL, but from Australian football in general (in such leagues as the [[SANFL]] and [[West Australian Football League|WAFL]]). That year 136 Australian Rules identities were inducted, including 100 players, 10 coaches, 10 umpires, 10 administrators and 6 media representatives.
60072
60073 ===Legends of the Game===
60074 In 1996, thirteen Hall of Fame members were declared ''Legends of the Game''. Now, each year another member of the Hall of Fame is declared a legend. The following is a list of ''Legends of the Game''.
60075
60076 *[[Ron Barassi|Ron Barassi Junior]] ''(added 1996)''
60077 *[[Haydn Bunton Senior]]''(added 1996)''
60078 *[[Roy Cazaly]] ''(added 1996)''
60079 *[[John Coleman]] ''(added 1996)''
60080 *[[Gordon Coventry]] ''(added 1996)''
60081 *[[Jack Dyer]] ''(added 1996)''
60082 *[[Graham Farmer]] ''(added 1996)''
60083 *[[Leigh Matthews]] ''(added 1996)''
60084 *[[John Nicholls]] ''(added 1996)''
60085 *[[Bob Pratt]] ''(added 1996)''
60086 *[[Dick Reynolds]] ''(added 1996)''
60087 *[[Bob Skilton]] ''(added 1996)''
60088 *[[E.J. 'Ted' Whitten|Ted Whitten Senior]] ''(added 1996)''
60089 *[[Ian Stewart (Australian footballer)|Ian Stewart]] ''(added 1997)''
60090 *[[Gordon Coventry]] ''(added 1998)''
60091 *[[Peter Hudson]] ''(added 1999)''
60092 *[[Kevin Bartlett]] ''(added 2000)''
60093 *[[Barry Robran]] ''(added 2001)''
60094 *[[Bill Hutchison]] ''(added 2003)''
60095 *[[Jock McHale]] ''(added 2005)''
60096
60097 ==Team of the Century==
60098 To celebrate the 100th season of the AFL, the &quot;AFL Team of the Century&quot; was named in 1996.
60099
60100 {{Aussie rules team | title = AFL Team of the Century
60101 | backpocket1 = [[Bernie Smith]] (Geelong)
60102 | fullback = [[Stephen Silvagni]] (Carlton)
60103 | backpocket2 = [[John Nicholls]] (Carlton)
60104 | halfbackflank1 = [[Bruce Doull]] (Carlton)
60105 | centrehalfback = [[Ted Whitten]] (Footscray)
60106 | halfbackflank2 = [[Kevin Murray]] (Fitzroy)
60107 | wing1 = [[Keith Greig]] (North Melbourne)
60108 | centre = [[Ian Stewart (Australian footballer)|Ian Stewart]] (St Kilda, Richmond)
60109 | wing2 = [[Francis Bourke]] (Richmond)
60110 | halfforwardflank1 = [[Alex Jesaulenko]] (Carlton, St Kilda)
60111 | centrehalfforward = [[Royce Hart]] (Richmond)
60112 | halfforwardflank2 = [[Dick Reynolds]] (Essendon)
60113 | forwardpocket1 = [[Leigh Matthews]] (Hawthorn)
60114 | fullforward = [[John Coleman]] (Essendon)
60115 | forwardpocket2 = [[Haydn Bunton Senior]] (Fitzroy)
60116 | ruck = [[Graham Farmer]] (Geelong)
60117 | ruckrover = [[Ron Barassi]] (Melbourne, Carlton)
60118 | rover = [[Bob Skilton]] (South Melbourne)
60119 | interchange1 = [[Gary Ablett]] (Hawthorn, Geelong)
60120 | interchange2 = [[Jack Dyer]] (Richmond)
60121 | interchange3 = [[Greg Williams]] (Geelong, Sydney, Carlton)
60122 | interchange4 =
60123 | interchange5 =
60124 | interchange6 =
60125 | coach = [[Norm Smith]]
60126 }}
60127
60128 [[Jim Elder]] was declared the ''Umpire of the Century'' was to coincide with the Team of the Century. Since the naming of this side, all AFL clubs have nominated their own teams of the century. An [[Indigenous Team of the Century]] was also selected in 2005, featuring the best Aboriginal players of the previous 100 years.
60129
60130 ==Corporate Relations==
60131
60132 ===Membership===
60133 The AFL sells membership that entitle subscribers to reserve seats for matches at the [[Telstra Dome]] and [[Melbourne Cricket Ground]] in Melbourne and priority access to finals. AFL Members can nominate a club to get priority Grand Final tickets.
60134
60135 ===Broadcasting===
60136
60137 ====Television====
60138 The official television broadcast partners of the AFL are: [[Nine Network]], [[Network Ten]], and [[Foxtel]] ([[Fox Footy Channel]]).
60139
60140 As of [[2007]] the official Free to Air television brodcast partners will be: the [[Seven Network]] and [[Network Ten]]. The Pay TV partner, if any, is yet to be confirmed.
60141
60142 Before [[2001]], the [[Seven Network]] had broadcast the AFL for 45 years. The only year they didn't hold the rights was 1987, when the rights were bought by Sportsplay, a satellite channel, who then onsold the rights to the [[Australian Broadcasting Corporation]]. In 1997, the Seven Network's main rivals created a consortium to snatch the rights from the network. Seven, however, did purchase a guaranteed last rights bid which in the future proved to be handy for the network. In January 2006, shortly after the death of media magnate [[Kerry Packer]], a Seven/Ten alliance used Seven's last rights bid to match Nine's offer of $AUD 780 million for broadcast rights in what was the biggest sport broadcasting deal in Australian history.
60143
60144 =====International Broadcasting=====
60145 *[[ABC Asia Pacific]] currently broadcasts the full AFL Premiership season to more than 39 countries.
60146 *AFL is broadcast in the [[United States]] and [[Canada]], but not free-to-air. In the 1980s, [[ESPN]] played a highlights package called ''Fosters Australian Rules''. The [[AFANA]] is an organisation aimed at increasing coverage in North America.
60147
60148 Currently, [[Fox Soccer Channel]] (in the USA) and [[Fox Sports World Canada]] show a game of the week and a weekly one-hour recap show. The AFL Grand Final is broadcast live. The recap show also airs on various regional affiliates of [[Fox Sports Net]].
60149
60150 *Although Australian rules is not shown in [[Ireland]], [[Setanta]] airs [[International Rules]] matches.
60151
60152 ====Radio====
60153 The official radio broacast partners of the AFL are [[Triple M]], [[3AW]], [[ABC Local Radio]], [[DMG Radio Australia|FiveAA]], [[Southern Cross Broadcasting|6PR]], [[K-Rock]], and the [[National Indigenous Radio Service]].
60154
60155 ====Publishing and Print====
60156 The official print broadcast partner of the AFL is [[News Limited]].
60157 The [[AFL Record]] is a print publication that is read by around 225,000 people each week [http://www.aflpublishing.com.au/].
60158
60159 ====Internet====
60160 The official internet/3G broadcast partner of the AFL is [[Bigpond]]. The AFL also provides exclusive broadband content including streaming video for international fans via its website.
60161
60162 ===Merchandising===
60163 The AFL run a chain of stores that sell various merchandise from all teams, and the merchandise is also available from other retailers.
60164
60165 ====Hall of Fame and Sensation====
60166 A modern museum called the Hall of Fame and Sensation opened in Melbourne in 2003 to celebrate the culture of the AFL and the [[Australian Football Hall of Fame]]. The museum, a licenced spin-off of the AFL was originally touted for the MCG, the Hall of Fame failed to get support of the Melbourne Cricket Club, so the new QV shopping centre on Swanston Street was chosen as the location next to one of the busiest AFL shops. Later controversy surrounded the appoint meant of an administration as the museum began running at a loss. Many blamed high entry prices which were subsequently reduced and the museum remains open to the public. Hall of Fame and Sensation features various honour boards and artefacts as well as a range of innovative interactive displays designed to emerse fans and visitors in the experience of elite aussie rules.
60167
60168 ====Video Games====
60169
60170 :''Main Article: [[List of Australian rules football computer games]].''
60171
60172 These are computer/video games that were licensed to use the AFL / Australian Football sports brand:
60173 *''[[Australian Rules (video game)|Australian Rules]]'' ([[1987]]) [[Commodore 64|C64]]
60174 *''[[Aussie Rules Footy]]'' ([[1991]]) [[Nintendo Entertainment System|NES]]
60175 *''[[AFL Finals Fever]]'' ([[1996]]) [[IBM PC compatible|PC]]
60176 *''[[AFL '98]]'' ([[1999]]) [[IBM PC compatible|PC]]/[[PlayStation |PSX]] ([[PAL]])
60177 *''[[AFL '99]]'' ([[2000]]) [[IBM PC compatible|PC]]/[[PlayStation |PSX]] ([[PAL]])
60178 *''[[Aussie Rules Coach]]'' ([[2001]]) [[IBM PC compatible|PC]]
60179 *''[[Kevin Sheedy Coach]]'' ([[2002]]) [[IBM PC compatible|PC]]
60180 *''[[AFL Live 2003]]'' ([[2003]]) [[IBM PC compatible|PC]]/[[PlayStation 2|PS2]]/[[Xbox]] ([[PAL]])
60181 *''[[AFL Live 2004]]'' ([[2004]]) [[IBM PC compatible|PC]]/[[PlayStation 2|PS2]]/[[Xbox]] ([[PAL]])
60182 *''[[AFL Premiership 2005]]'' ([[2005]]) [[IBM PC compatible|PC]]/[[PlayStation 2|PS2]]/[[Xbox]] ([[PAL]])
60183
60184 ====Gambling====
60185 The AFL is the subject of [[footy tipping]] and betting competitions around Australia run by individuals, syndicates, workplaces and bookmakers.
60186
60187 ==See also==
60188
60189 * [[Australian Rules Football]]
60190 * [[:Category:VFL/AFL players|AFL Footballers]]
60191 * [[List of Australian Football League premiers|AFL Premiers]]
60192 * [[Brownlow Medal]]
60193 * [[Coleman Medal]]
60194 * [[Leigh Matthews Trophy]]
60195 * [[Sports attendances]]
60196 * [[List of Celebrity Supporters of AFL Clubs]]
60197 * [[WP:AFL|WikiProject AFL]]
60198
60199 ==External links==
60200 *[http://www.afl.com.au AFL Official Site]
60201 *[http://www.aflpublishing.com.au/ AFL Publishing]
60202 *[http://www.afl-online.com AFL Online Forum]
60203 *[http://bomberblitz.com/~rmered/clubs.htm History of AFL/VFL jumpers]
60204 *[http://afl.com.au/cp2/c2/webi/article/233594ae.xls Season 2006 Interactive Fixture]
60205 *[http://stats.rleague.com/afl/afl_index.html Complete VFL/AFL results]
60206 *[http://www.myafl.com/forum/ AFL Fan Forum]
60207 *[http://www.gamerwithin.com/?view=article&amp;article=575 AFL Premiership 2005 Review (PS2 Game)]
60208 *[http://www.aussierulesinternational.com Aussie Rules International]
60209 *[http://www.footballaustralien.com The French footy teams site]
60210
60211 *[http://footystats.freeservers.com/Daily/Diary.html/ FootyStats Diary]
60212 *[http://www.heraldsun.news.com.au/footy/ Herald Sun Footy News]
60213 *[http://www.allthestats.com AlltheStats]
60214 *[http://www.worldfootynews.com World Footy News]
60215 {{AFL}}
60216
60217 [[Category:Australian Football League]]
60218 [[Category:Australian rules football competitions]]
60219 [[Category:Sports_governing_bodies_in_Australia]]
60220 [[Category:Australian_Rules_football_grounds]]
60221
60222 [[cs:AFL]]
60223 [[scn:AFL]]
60224 [[sv:AFL]]
60225 [[fr:Australian Football League]]</text>
60226 </revision>
60227 </page>
60228 <page>
60229 <title>AK47</title>
60230 <id>1151</id>
60231 <revision>
60232 <id>15899653</id>
60233 <timestamp>2002-02-25T15:43:11Z</timestamp>
60234 <contributor>
60235 <ip>Conversion script</ip>
60236 </contributor>
60237 <minor />
60238 <comment>Automated conversion</comment>
60239 <text xml:space="preserve">#REDIRECT [[AK-47]]
60240 </text>
60241 </revision>
60242 </page>
60243 <page>
60244 <title>Alan Garner</title>
60245 <id>1152</id>
60246 <revision>
60247 <id>38212435</id>
60248 <timestamp>2006-02-04T23:06:12Z</timestamp>
60249 <contributor>
60250 <username>D6</username>
60251 <id>75561</id>
60252 </contributor>
60253 <minor />
60254 <comment>adding [[category:Living people]]</comment>
60255 <text xml:space="preserve">'''Alan Garner''' (born [[Congleton]] [[October 17]], [[1934]]) is an English writer whose work is firmly rooted in his local [[Cheshire]]. His very early writing was marketed mainly for [[Children's literature|children]] and could be described as [[fantasy fiction|fantasy]], though he himself rejects the label of &quot;children's writer&quot;:
60256
60257 :I do not write for children, but for myself. Adolescents read my books. By adolescence, I mean an arbitrary age somewhere between 10 and 18. This group of people is the most important of all.
60258
60259 His more recent work (''Strandloper'', ''Thursbitch'') is more specifically intended for adult readers, while the earlier ''[[The Stone Book Quartet]]'' (which received the [[Phoenix Award]] in 1996) is poetic in style and inspiration. Garner pays particular attention to language, and strives to render the cadence of the Cheshire tongue in modern English. This he explains by the sense of anger he felt on reading &quot;Sir Gawain and the Green Knight&quot;: the footnotes would not have been needed by his father. This and other aspects of his writing are the subject of Neil Philip's ''[[A Fine Anger]], (Collins, 1981)'', which offers a detailed analysis of his work.
60260
60261 His most recent novel is ''Thursbitch''. Other works have won the Guardian Award, the Carnegie Medal,and the Lewis Carroll Shelf Award, as well as the Chicago International Film Festival 1st Prize for his educational film &quot;Images.&quot;
60262
60263 His collection of essays and public talks, ''[[The Voice That Thunders]]'', contains much autobiographical material, as well as critical reflection upon folklore and language, literature and education, the nature of myth and time. Garner is an accomplished public speaker.
60264
60265 The author [[Philip Pullman]] is a strong admirer, and ''[[The Weirdstone of Brisingamen]]'' is an acknowledged classic of children's literature.
60266
60267 He was awarded the [[Officer of the Order of the British Empire|OBE]] for services to literature in the [[2001]] [[British honours system|New Year's Honours list]].
60268
60269 == Works ==
60270
60271 His best known works are:
60272
60273 * ''[[The Weirdstone of Brisingamen]]''
60274 * ''[[The Moon of Gomrath]]''
60275 * ''[[Elidor]]''
60276 * ''[[The Owl Service]]''
60277 * ''[[Red Shift (novel)|Red Shift]]''
60278 * ''[[The Stone Book Quartet]]''
60279 * ''[[The Voice That Thunders]]''
60280 * ''[[Strandloper]]''
60281 * ''[[Thursbitch]]''
60282
60283 He has also edited a collection of stories about fools, ''The Guizer'' (1975).
60284
60285 [[Category:1934 births|Garner, Alan]]
60286 [[Category:Living people|Garner, Alan]]
60287 [[Category:British short story writers|Garner, Alan]]
60288 [[Category:British children's writers|Garner, Alan]]
60289 [[Category:English fantasy writers|Garner, Alan]]
60290 [[Category:Guardian award winners|Garner, Alan]]
60291 [[Category:Officers of the British Empire|Garner, Alan]]
60292
60293 [[de:Alan Garner]]
60294 [[ja:ã‚ĸナãƒŗãƒģã‚Ŧãƒŧナãƒŧ]]</text>
60295 </revision>
60296 </page>
60297 <page>
60298 <title>Amhrann na bhFiann</title>
60299 <id>1153</id>
60300 <revision>
60301 <id>15899655</id>
60302 <timestamp>2002-11-28T08:29:11Z</timestamp>
60303 <contributor>
60304 <ip>134.95.200.164</ip>
60305 </contributor>
60306 <minor />
60307 <comment>double redirect</comment>
60308 <text xml:space="preserve">#REDIRECT [[AmhrÃĄn_na_bhFiann]]</text>
60309 </revision>
60310 </page>
60311 <page>
60312 <title>August 2</title>
60313 <id>1154</id>
60314 <revision>
60315 <id>42064608</id>
60316 <timestamp>2006-03-03T15:46:27Z</timestamp>
60317 <contributor>
60318 <username>Rklawton</username>
60319 <id>754622</id>
60320 </contributor>
60321 <comment>rv bad data</comment>
60322 <text xml:space="preserve">{| style=&quot;float:right;&quot;
60323 |-
60324 |{{AugustCalendar}}
60325 |-
60326 |{{ThisDateInRecentYears|Month=August|Day=2}}
60327 |}
60328 '''[[August 2]]''' is the 214th day of the year in the [[Gregorian Calendar]] (215th in [[leap year]]s), with 151 days remaining.
60329
60330 ==Events==
60331 *[[338 BC]] - [[History of Ancient Greece#The_Rise_of_Macedon|Rise of Macedon]]: [[Philip II of Macedon]] crushes [[Athens]] and [[Thebes (Greece)|Thebes]] in the [[Battle of Chaeronea (338 BC)|Battle of Chaeronea]].
60332 *[[216 BC]] - [[Punic Wars]]: In the [[Battle of Cannae]], [[Hannibal]] destroys the [[Roman Republic|Roman]] army of [[Lucius Aemilius Paullus]] and [[Gaius Terentius Varro]] in what is considered one of the great masterpieces of the tactical art.
60333 *[[461]] - [[Majorian]] resigns as [[Western Roman Emperor]]; shortly afterwards [[Libius Severus]] is declared western [[Roman Empire|Roman]] emperor by [[Ricimer]]
60334 *[[1610]] - [[Henry Hudson]] sails into what it is now known as [[Hudson Bay]], thinking he had made it through the [[Northwest Passage]] and reached the [[Pacific Ocean]].
60335 *[[1776]] - Delegates to the [[Continental Congress]] begin signing the [[United States Declaration of Independence]].
60336 *[[1790]] - The first [[US Census]] is conducted.
60337 *[[1798]] - [[Second Coalition]]: The [[Battle of the Nile]] between [[France|French]] and [[Kingdom of Great Britain|British]] navies ends with a British victory.
60338 *[[1869]] - [[Japan|Japan's]] [[samurai]], [[farmer]], [[artisan]], [[merchant]] class system is abolished as part of the [[Meiji Restoration]] reforms. (Traditional [[Japanese calendar|Japanese date]]: June 25, 1869).
60339 *[[1870]] - [[Tower Subway]], the world's first [[metro|underground tube railway]], opens in [[London]].
60340 *[[1903]] - [[Fall of the Ottoman Empire]]: Unsuccessful uprising of the [[Bulgarians]] against [[Ottoman Empire|Ottoman]] [[Turkey]], also known as the [[Ilinden uprising]].
60341 *[[1916]] - [[World War I]]: Austrian sabotage causes the sinking of the Italian battleship [[Italian battleship Leonardo da Vinci|''Leonardo da Vinci'']] in [[Taranto]].
60342 *[[1918]] - [[Japan]] announces that it is deploying troops to [[Siberia]] in the aftermath of [[World War I]].
60343 *[[1934]] - [[Gleichschaltung]]: [[Adolf Hitler]] becomes [[FÃŧhrer]] of [[Germany]].
60344 *[[1943]] - [[PT-109]], with future president of the United States Lieutenant [[John F. Kennedy]] aboard, sinks.
60345 *[[1945]] - [[World War II]]: [[Potsdam Conference]], in which the [[Allied Powers]] discuss the future of defeated [[Germany]], concludes.
60346 *[[1950]] - The [[New World Translation of the Christian Greek Scriptures]] is released in a public event held in [[Yankee Stadium]] in [[New York City]].
60347 *[[1955]] - [[Velcro]] is patented.
60348 *[[1964]] - [[North Vietnam]] allegedly fires on a US destroyer in the [[Gulf of Tonkin Incident]].
60349 *[[1967]] - The second [[Blackwall Tunnel]] opens in [[Greenwich, London]].
60350 *[[1975]] - In [[New Orleans, Louisiana]], the [[Superdome]] officially opens with an [[American football|NFL football]] game between the [[New Orleans Saints]] and [[Houston Oilers]].
60351 *[[1976]] - An intruder breaks into [[Priscilla Davis]]' mansion in [[Fort Worth, Texas]] and kills [[Andrea Wilborn]] and [[Stan Farr]].
60352 *[[1979]] - New York Yankees catcher [[Thurman Munson]] dies in a plane crash. An avid pilot, he was practicing takeoffs and landings in his new Cessna Citation jet. The official cause of the crash was determined to be pilot error.
60353 *[[1980]] - A [[Bologna Massacre|bomb explodes]] at the [[Bologna Central Station|railway station]] in [[Bologna]], [[Italy]], killing 85 people and wounding more than 200.
60354 *[[1985]] - A [[Delta Air Lines]] [[Lockheed L-1011]] [[TriStar]] crashes at [[Dallas/Fort Worth International Airport]] in [[Texas]], killing 137.
60355 *[[1990]] - [[Iraq]] invades [[Kuwait]], eventually leading to the [[Gulf War]].
60356 *[[1994]] - Popular Japanese television and movie actor [[Beat Takeshi]] is seriously injured in a motorcycle accident.
60357 *[[2004]] - [[Monday demonstrations, 2004|Monday demonstrations]] against social cutbacks began in [[Germany]]
60358 *[[2005]] - [[Air France Flight 358]] skids off the runway at [[Toronto Pearson International Airport]] outside [[Toronto]], [[Canada]], destroying the plane but resulting in no loss of life.
60359
60360 ==Births==
60361 *[[1533]] - [[Theodor Zwinger]], Swiss scholar (d. [[1588]])
60362 *[[1672]] - [[Johann Jakob Scheuchzer]], Swiss scholar (d. [[1733]])
60363 *[[1674]] - [[Philip II, Duke of OrlÊans]], regent of France (d. [[1723]])
60364 *[[1696]] - [[Mahmud I]], [[Ottoman Sultan]] (d. [[1754]])
60365 *[[1703]] - [[Lorenzo Ricci]], Italian Jesuit leader (d. [[1775]])
60366 *[[1754]] - [[Pierre Charles L'Enfant]], French-born architect and city planner (d. [[1825]])
60367 *[[1788]] - [[Leopold Gmelin]], German chemist (d. [[1853]])
60368 *[[1815]] - [[Adolf Friedrich von Schack]], German writer (d. [[1894]])
60369 *[[1834]] - [[FrÊdÊric Bartholdi]], French sculptor (d. [[1904]])
60370 *[[1835]] - [[Elisha Gray]], American inventor and entrepreneur (d. [[1901]])
60371 *[[1854]] - [[Milan I]], [[King of Serbia]] (d. [[1901]])
60372 *[[1865]] - [[Irving Babbitt]], American literary critic (d. [[1933]])
60373 *[[1868]] - King [[Constantine I of Greece]] (d. [[1923]])
60374 *[[1871]] - [[John French Sloan]], American artist (d. [[1951]])
60375 *[[1892]] - [[Jack Warner]], Canadian film producer (d. [[1978]])
60376 *[[1897]] - [[Max Weber (politician)|Max Weber]], Swiss Federal Councilor (d. [[1974]])
60377 *[[1900]] - [[Helen Morgan]], American actress (d. [[1941]])
60378 *[[1905]] - [[Karl Amadeus Hartmann]], German composer (d. [[1963]])
60379 *1905 - [[Myrna Loy]], American actress (d. [[1993]])
60380 *[[1912]] - [[Vladimir Zerjavic]], Croatian statistician (d. [[2001]])
60381 *[[1914]] - [[Beatrice Straight]], American actress (d. [[2001]])
60382 *[[1915]] - [[Gary Merrill]], American actor (d. [[1990]])
60383 *[[1924]] - [[James Baldwin (writer)|James Baldwin]], American author (d. [[1987]])
60384 * 1924 - [[Carroll O'Connor]], American actor (d. [[2001]])
60385 *[[1925]] - [[Jorge Rafael Videla]], Argentinian dictator
60386 * 1925 - [[Alan Whicker]], British journalist and broadcaster (“Whicker’s World”)
60387 *[[1930]] - [[Vali Myers (artist)]], (d. [[2003]])
60388 *[[1932]] - [[Peter O'Toole]], Irish-born actor
60389 *[[1934]] - [[Valery Bykovsky]], cosmonaut
60390 *[[1935]] - [[Hank Cochran]], country music singer and songwriter
60391 *[[1937]] - [[Garth Hudson]], Canadian musician ([[The Band]])
60392 *[[1939]] - [[Wes Craven]], American film director
60393 *[[1941]] - [[Doris Coley]], American singer ([[Shirelles]]) (d. [[2000]])
60394 *[[1942]] - [[Isabel Allende]], Chilean author
60395 *[[1945]] - [[Alex Jesaulenko]], [[Australian rules football|Australian Rules footballer]]
60396 *[[1947]] - [[Massiel]], Spanish singer and [[Eurovision Song Contest]] winner
60397 *[[1948]] - [[Dennis Prager]], American radio talk show host and author
60398 *[[1950]] - [[Lance Ito]], American judge
60399 *[[1951]] - [[Andrew Gold]], American singer, musician and songwriter
60400 *[[1953]] - [[Butch Patrick]], American actor
60401 *[[1954]] - [[Sammy McIlroy]], Northern Irish footballer and football manager
60402 *[[1957]] - [[Mojo Nixon]], American musician and actor
60403 *[[1959]] - [[Apollonia Kotero]], American singer and actress
60404 *[[1961]] - [[Linda Fratianne]], American figure skater
60405 *[[1964]] - [[Mary-Louise Parker]], American actress
60406 *[[1969]] - [[Fernando Couto]], Portuguese footballer
60407 *1969 - [[Richard Hallebeek]], Dutch guitarist
60408 *[[1970]] - [[Tony Amonte]], American hockey player
60409 *1970 - [[Kevin Smith]], American actor, director, and screenwriter
60410 *[[1971]] - [[Michael Hughes (footballer)|Michael Hughes]], Northern Irish footballer
60411 *[[1972]] - [[Justyna Steczkowska]], Polish singer
60412 *[[1974]] - [[Jeremy Castle]], American singer and songwriter
60413 *[[1975]] - [[Xu Huaiwen]], Chinese-born badminton player
60414 *[[1977]] - [[Edward Furlong]], American actor
60415 *1977 - [[Dave Farrel]], American musician
60416 *[[1982]] - [[HÊlder Postiga]], Portuguese footballer
60417 *[[1985]] - [[Jeff Healy]], Canadian musician
60418 *[[1992]] - [[Hallie Kate Eisenberg]], American actress
60419
60420 ==Deaths==
60421 *[[686]] - [[Pope John V]]
60422 *[[1100]] - King [[William II of England]]
60423 *[[1222]] - Count [[Raymond VI of Toulouse]] (b. [[1156]])
60424 *[[1511]] - [[Andrew Barton]], Scottish naval leader
60425 *[[1589]] - King [[Henry III of France]] (b. [[1551]])
60426 *[[1611]] - [[Kiyomasa Kato|Kato Kiyomasa]], Japanese warlord and samurai (b. [[1562]])
60427 *[[1696]] - [[Robert Campbell of Glenlyon]], Scottish military commander at the Massacre of Glencoe (b. [[1630]])
60428 *[[1769]] - [[Daniel Finch, 8th Earl of Winchilsea]], English politician (b. [[1689]])
60429 *[[1776]] - [[Louis François I, Prince of Conti]], French military leader (b. [[1717]])
60430 *[[1788]] - [[Thomas Gainsborough]], English artist (b. [[1727]])
60431 *[[1815]] - [[Guillaume Marie Anne Brune]], French marshal (murdered) (b. [[1763]])
60432 *[[1859]] - [[Horace Mann]], American educator and abolitionist (b. [[1796]])
60433 *[[1876]] - [[Wild Bill Hickok|James Butler &quot;Wild Bill&quot; Hickok]], American gunfighter (b. [[1837]])
60434 *[[1890]] - [[Louise-Victorine Ackermann]], French poet (b. [[1813]])
60435 *[[1903]] - [[Edmond Nocard]], French veterinarian (b. [[1850]])
60436 *[[1921]] - [[Enrico Caruso]], Italian tenor (b. [[1873]])
60437 *[[1922]] - [[Alexander Graham Bell]], Scottish-born inventor (b. [[1847]])
60438 *[[1923]] - [[Warren G. Harding]], 29th [[President of the United States]] (b. [[1865]])
60439 *[[1934]] - [[Paul von Hindenburg]], German general and politician (b. [[1847]])
60440 *[[1936]] - [[Louis Bleriot|Louis BlÊriot]], French aviation pioneer (b. [[1872]])
60441 *[[1939]] - [[Harvey Spencer Lewis]], American Rosacrucian mystic (b. [[1883]])
60442 *[[1945]] - [[Pietro Mascagni]], Italian composer (b. [[1863]])
60443 *[[1976]] - [[Fritz Lang]], Austrian film director (b. [[1890]])
60444 *[[1978]] - [[Carlos ChÃĄvez]], Mexican composer (b. [[1899]])
60445 *[[1979]] - [[Thurman Munson]], baseball player (b. [[1947]])
60446 *[[1986]] - [[Roy Cohn]], American politician (b. [[1927]])
60447 *[[1988]] - [[Raymond Carver]], American writer (b. [[1938]])
60448 *[[1990]] - [[Norman Mclean]], American writer (b. [[1902]])
60449 *[[1997]] - [[William S. Burroughs]], American writer (b. [[1914]])
60450 *[[1998]] - [[Shari Lewis]], American puppeteer (b. [[1933]])
60451 *[[2003]] - [[Don Estelle]], British actor (b. [[1933]])
60452 *2003 - [[Mike Levey]], American television personality (b. [[1948]])
60453 *[[2004]] - [[Don Tosti]], musician (b. [[1923]])
60454
60455 ==Holidays and observances==
60456 *[[Costa Rica]] - [[Our Lady of the Angels]]
60457 *[[Bulgaria]]/[[Republic of Macedonia]] - [[Ilinden]] (St. Ilya Day), a day of remembrance of the [[Ilinden Uprising]]
60458 *Feast day of Ilya the Prophet in Russian [[Orthodox Church]]
60459 *Feast day of St [[Peter Julian Eymard]] [[Roman Catholic Church]]
60460 *Day of [[airborne forces]] in [[Russia]]
60461
60462 ==External links==
60463 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/2 BBC: On This Day]
60464 * [http://www.nytimes.com/learning/general/onthisday/20050802.html ''The New York Times'': On This Day]
60465 * [http://www.historychannel.com/tdih/tdih.jsp?category=leadstory ''This Day In History'': History Channel]
60466 ----
60467
60468 [[August 1]] - [[August 3]] - [[July 2]] - [[September 2]] -- [[historical anniversaries|listing of all days]]
60469
60470 {{months}}
60471
60472 [[ceb:Agosto 2]]
60473 [[ilo:Agosto 2]]
60474 [[nap:2 'e aÚsto]]
60475 [[pam:Agostu 2]]
60476 [[war:Agosto 2]]
60477
60478 [[af:2 Augustus]]
60479 [[ar:2 ØŖØēØŗØˇØŗ]]
60480 [[an:2 d'agosto]]
60481 [[ast:2 d'agostu]]
60482 [[bg:2 авĐŗŅƒŅŅ‚]]
60483 [[be:2 ĐļĐŊŅ–ŅžĐŊŅ]]
60484 [[bs:2. avgust]]
60485 [[ca:2 d'agost]]
60486 [[cv:ÇŅƒŅ€ĐģĐ°, 2]]
60487 [[co:2 d'aostu]]
60488 [[cs:2. srpen]]
60489 [[cy:2 Awst]]
60490 [[da:2. august]]
60491 [[de:2. August]]
60492 [[et:2. august]]
60493 [[el:2 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
60494 [[es:2 de agosto]]
60495 [[eo:2-a de aÅ­gusto]]
60496 [[eu:Abuztuaren 2]]
60497 [[fo:2. august]]
60498 [[fr:2 aoÃģt]]
60499 [[fy:2 augustus]]
60500 [[ga:2 LÃēnasa]]
60501 [[gl:2 de agosto]]
60502 [[ko:8ė›” 2ėŧ]]
60503 [[hr:2. kolovoza]]
60504 [[io:2 di agosto]]
60505 [[id:2 Agustus]]
60506 [[ia:2 de augusto]]
60507 [[ie:2 august]]
60508 [[is:2. ÃĄgÃēst]]
60509 [[it:2 agosto]]
60510 [[he:2 באוגוסט]]
60511 [[jv:2 Agustus]]
60512 [[ka:2 აგვისáƒĸო]]
60513 [[csb:2 zÊlnika]]
60514 [[ku:2'ÃĒ gelawÃĒjÃĒ]]
60515 [[la:2 Augusti]]
60516 [[lt:RugpjÅĢčio 2]]
60517 [[lb:2. August]]
60518 [[li:2 augustus]]
60519 [[hu:Augusztus 2]]
60520 [[mk:2 авĐŗŅƒŅŅ‚]]
60521 [[ms:2 Ogos]]
60522 [[nl:2 augustus]]
60523 [[ja:8月2æ—Ĩ]]
60524 [[no:2. august]]
60525 [[nn:2. august]]
60526 [[oc:2 d'agost]]
60527 [[pl:2 sierpnia]]
60528 [[pt:2 de Agosto]]
60529 [[ro:2 august]]
60530 [[ru:2 авĐŗŅƒŅŅ‚Đ°]]
60531 [[sco:2 August]]
60532 [[sq:2 Gusht]]
60533 [[scn:2 di austu]]
60534 [[simple:August 2]]
60535 [[sk:2. august]]
60536 [[sl:2. avgust]]
60537 [[sr:2. авĐŗŅƒŅŅ‚]]
60538 [[fi:2. elokuuta]]
60539 [[sv:2 augusti]]
60540 [[tl:Agosto 2]]
60541 [[tt:2. August]]
60542 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 2]]
60543 [[th:2 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
60544 [[vi:2 thÃĄng 8]]
60545 [[tr:2 Ağustos]]
60546 [[uk:2 ŅĐĩŅ€ĐŋĐŊŅ]]
60547 [[ur:2 اگØŗØĒ]]
60548 [[wa:2 d' awousse]]
60549 [[zh:8月2æ—Ĩ]]</text>
60550 </revision>
60551 </page>
60552 <page>
60553 <title>Atlantic (disambiguation)</title>
60554 <id>1155</id>
60555 <revision>
60556 <id>40351937</id>
60557 <timestamp>2006-02-20T00:20:04Z</timestamp>
60558 <contributor>
60559 <username>Botteville</username>
60560 <id>347079</id>
60561 </contributor>
60562 <comment>addition</comment>
60563 <text xml:space="preserve">'''Atlantic''' may mean:
60564
60565 *The [[Atlantic Ocean]], a major [[ocean]] in the world
60566 * [[Atlantic Canada]], consisting of the four Canadian provinces on the Atlantic Ocean
60567 * [[Atlantic, Iowa]]
60568 * [[Atlantic, Pennsylvania]]
60569 * [[Atlantic, Virginia]]
60570 * [[Atlantic City, New Jersey]]
60571 * [[Atlantic County, New Jersey]]
60572 * [[Atlantic Beach, Florida]]
60573 * [[Atlantic Beach, North Carolina]]
60574 * [[Atlantic Beach, New York]]
60575 * [[Atlantic Records]], a rock and R&amp;B music label
60576 * [[RMS Atlantic]], a [[steamship]] that sank off [[Halifax, Nova Scotia|Halifax]] in [[1873]] killing 546 people.
60577 *''[[The Atlantic Monthly]]'', a monthly magazine published in the United States
60578 * Atlantic, a [[steam locomotive]] with a [[4-4-2 (locomotive)|4-4-2]] [[wheel arrangement]]
60579 *The ''[[Atlantic (passenger train)]]'', a named passenger train operated by [[Canadian Pacific Railway]] and later [[VIA Rail]]
60580 * The Atlantic Alliance, another name for [[NATO]].
60581 * The [[Atlantic Revolutions]], included the [[American Revolution|American]] and [[French Revolution]]s
60582 * The [[Atlantic (period)|Atlantic period]] of palaeoclimatology
60583
60584 {{disambig}}
60585
60586 [[de:Atlantic]]
60587 [[fo:Atlantic]]
60588 [[fr:Atlantic]]</text>
60589 </revision>
60590 </page>
60591 <page>
60592 <title>Australia, New Zealand, United States security treaty</title>
60593 <id>1157</id>
60594 <revision>
60595 <id>15899658</id>
60596 <timestamp>2002-02-25T15:51:15Z</timestamp>
60597 <contributor>
60598 <ip>Conversion script</ip>
60599 </contributor>
60600 <minor />
60601 <comment>Automated conversion</comment>
60602 <text xml:space="preserve">#REDIRECT [[ANZUS]]
60603 </text>
60604 </revision>
60605 </page>
60606 <page>
60607 <title>Algebraic number</title>
60608 <id>1158</id>
60609 <revision>
60610 <id>40171455</id>
60611 <timestamp>2006-02-18T18:40:46Z</timestamp>
60612 <contributor>
60613 <username>MathMartin</username>
60614 <id>29707</id>
60615 </contributor>
60616 <minor />
60617 <comment>link</comment>
60618 <text xml:space="preserve">In [[mathematics]], an '''algebraic number''' relative to a [[field (mathematics)|field]] &lt;math&gt;F&lt;/math&gt; is any element &lt;math&gt;x&lt;/math&gt; of a given field &lt;math&gt;K&lt;/math&gt; containing &lt;math&gt;F&lt;/math&gt; such that &lt;math&gt;x&lt;/math&gt; is a solution of a [[polynomial]] [[equation]] of the form: ''a''&lt;sub&gt;''n''&lt;/sub&gt;''x''&lt;sup&gt;''n''&lt;/sup&gt; + ''a''&lt;sub&gt;''n''&amp;minus;1&lt;/sub&gt;''x''&lt;sup&gt;''n''&amp;minus;1&lt;/sup&gt; + ¡¡¡ + ''a''&lt;sub&gt;1&lt;/sub&gt;''x'' + ''a''&lt;sub&gt;0&lt;/sub&gt; = 0
60619 where ''n'' is a [[positive integer]] called the ''degree'' of the polynomial, every coefficient ''a''&lt;sub&gt;''i''&lt;/sub&gt; is an element of ''F'', and ''a''&lt;sub&gt;''n''&lt;/sub&gt; is nonzero. If the field ''F'' is the field '''Q''' of [[rational number]]s and ''K'' is an [[algebraically closed field]] then the algebraic numbers relative to '''Q''' are simply called '''algebraic numbers'''. The [[algebraically closed field]] in which these numbers lie can be the [[complex number]]s '''C''', but sometimes other fields are used. Any such [[algebraic closure]] is unique [[up to]] field [[isomorphism]], but may differ in topological properties. Considered purely as a field it is unique, and it is either this abstract field devoid of topology or the closure of the rationals in the complex numbers which is most often called the field of algebraic numbers.
60620
60621 All rationals are algebraic. A [[real number|real]] number that is not rational may or may not be algebraic; for example [[irrational number]]s such as 2&lt;sup&gt;1/2&lt;/sup&gt; (the [[square root]] of 2) and 3&lt;sup&gt;1/3&lt;/sup&gt;/2 (half the [[cube root]] of 3) are also algebraic because they are the solutions of ''x''&lt;sup&gt;2&lt;/sup&gt;&amp;nbsp;&amp;minus;&amp;nbsp;2&amp;nbsp;=&amp;nbsp;0
60622 and 8''x''&lt;sup&gt;3&lt;/sup&gt;&amp;nbsp;&amp;minus;&amp;nbsp;3&amp;nbsp;=&amp;nbsp;0, respectively. But most real numbers are not algebraic; examples of this are [[Pi|&amp;pi;]] and ''[[e (mathematical constant)|e]]''.
60623 If a complex number is not an algebraic number then it is called a [[transcendental number]]. So, for instance ''i'', the [[imaginary unit]], is an algebraic number since it satisfies
60624 ''x''&lt;sup&gt;2&lt;/sup&gt;&amp;nbsp;+&amp;nbsp;1&amp;nbsp;=&amp;nbsp;0; however &lt;math&gt;i^i&lt;/math&gt; is transcendental by the [[Gelfond-Schneider theorem]]; one branch of this number is e&lt;sup&gt;-&amp;pi;/2&lt;/sup&gt;, which shows that e&lt;sup&gt;&amp;pi;&lt;/sup&gt; is also transcendental.
60625
60626 If an algebraic number satisfies such an equation as given above with a [[polynomial]] of degree ''n'' and not such an equation with a lower degree, then the number is said to be an ''algebraic number of degree n''.
60627
60628 ==The field of algebraic numbers== {{main|algebraic number field}}
60629 The sum, difference, product and quotient of two algebraic numbers is again algebraic, and the algebraic numbers therefore form a [[field (mathematics)|field]]. It can be shown that, if we allow the coefficients &lt;math&gt;a_i&lt;/math&gt; to be any algebraic numbers, then every solution of the equation will again be an algebraic number. This can be rephrased by saying that the field of algebraic numbers is [[algebraically closed field|algebraically closed]]. In fact, it is the smallest algebraically closed field containing the rationals, and is therefore called the [[algebraic closure]] of the rationals.
60630
60631 ==Numbers defined by radicals==
60632 All numbers which can be obtained from the integers using a [[finite]] number of [[addition]]s, [[subtraction]]s, [[multiplication]]s, [[division (mathematics)|division]]s, and ''n''&lt;sup&gt;th&lt;/sup&gt; roots (where ''n'' is a positive integer) are algebraic. The converse, however, is not true: there are algebraic numbers which cannot be written in this manner. All of these numbers are solutions to polynomials of degree &amp;ge;&amp;nbsp;5, (see [[Quintic equation]]s and the [[Abel–Ruffini theorem]]). This is a result of [[Galois theory]]. An example of such a number would be the unique real root of ''x''&lt;sup&gt;5&lt;/sup&gt;&amp;nbsp;&amp;minus;&amp;nbsp;x&amp;nbsp;&amp;minus;&amp;nbsp;1&amp;nbsp;=&amp;nbsp;0.
60633
60634 ==Algebraic integers== {{main|algebraic integer}}
60635 An algebraic number which satisfies a [[polynomial equation]] of degree ''n'' with leading coefficient ''a''&lt;sub&gt;''n''&lt;/sub&gt;&amp;nbsp;=&amp;nbsp;1 (that is, a [[monic polynomial]]) and all other coefficients ''a''&lt;sub&gt;''i''&lt;/sub&gt; belonging to the set '''Z''' of [[integer]]s, is called an '''[[algebraic integer]]'''. Examples of algebraic integers are 3&amp;radic;{{overline|2}}&amp;nbsp;+&amp;nbsp;5 and 6''i''&amp;nbsp;-&amp;nbsp;2.
60636
60637 The sum, difference and product of algebraic integers are again algebraic integers, which means that the algebraic integers form a [[ring (algebra)|ring]]. The name ''algebraic integer'' comes from the fact that the only rational numbers which are algebraic integers are the integers, and because the algebraic integers in any [[algebraic number field|number field]] are in many ways analogous to the integers. If ''K'' is a number field, its '''ring of integers''' is the subring of algebraic integers in ''K'', and is frequently denoted as ''O''&lt;sub&gt;K&lt;/sub&gt;.
60638
60639 ==Special classes of algebraic number==
60640 *[[Gaussian integer]]
60641 *[[Eisenstein integer]]
60642 *[[Quadratic irrational]]
60643 *[[Fundamental unit]]
60644 *[[Root of unity]]
60645 *[[Gaussian period]]
60646 *[[Pisot-Vijayaraghavan number]]
60647 *[[Salem number]]
60648
60649 [[Category:Abstract algebra]]
60650 [[Category:Algebra]]
60651 [[Category:Algebraic numbers|*]]
60652 [[Category:Number theory]]
60653
60654 [[cs:AlgebraickÊ číslo]]
60655 [[da:Algebraiske tal]]
60656 [[de:Algebraische Zahl]]
60657 [[es:NÃēmero algebraico]]
60658 [[fa:اؚداد ØŦØ¨ØąÛŒ]]
60659 [[fr:Nombre algÊbrique]]
60660 [[gl:NÃēmero alxebraico]]
60661 [[he:מספר אלגברי]]
60662 [[it:Numero algebrico]]
60663 [[ja:äģŖ数įš„æ•°]]
60664 [[ko:대ėˆ˜ė  ėˆ˜]]
60665 [[nl:Algebraïsch getal]]
60666 [[pl:Liczby algebraiczne]]
60667 [[pt:NÃēmero algÊbrico]]
60668 [[ru:АĐģĐŗĐĩĐąŅ€Đ°Đ¸Ņ‡ĐĩŅĐēĐžĐĩ Ņ‡Đ¸ŅĐģĐž]]
60669 [[zh:äģŖ數數]]</text>
60670 </revision>
60671 </page>
60672 <page>
60673 <title>Ankh-Morpork</title>
60674 <id>1159</id>
60675 <revision>
60676 <id>41606822</id>
60677 <timestamp>2006-02-28T13:40:08Z</timestamp>
60678 <contributor>
60679 <username>Daibhid C</username>
60680 <id>47619</id>
60681 </contributor>
60682 <comment>/* Public holidays */</comment>
60683 <text xml:space="preserve">{| border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; align=&quot;right&quot; width=&quot;325&quot; style=&quot;margin-left:0.5em;&quot;
60684 |align=&quot;center&quot; colspan=&quot;2&quot; | '''Ankh-Morpork'''&lt;br /&gt;(Modern Morporkian)&lt;br /&gt;
60685 '''Ankhius et Morporkia'''&lt;br /&gt; ([[Minor Discworld concepts#Latatian|Latatian]], the Old Language)&lt;br /&gt;
60686 |-
60687 |align=&quot;center&quot; colspan=&quot;2&quot; |
60688 [[Image:Discworld-ankh-morpork-amoswolfe.png|300px|center|Coat of arms of Ankh-Morpork]]
60689 [[Coat of arms]]: A shield, quartered by a river (the [[Ankh (river)|Ankh]]) and tower (the Tower of Art). The quarters bear two moneybags, a field of [[cabbage]]s and the unmarked black field of the [[Havelock Vetinari|Vetinaris]]. &lt;br /&gt; The shield is supported by two hippopotami and crested with a [[morepork|morpork]] holding an [[ankh]].
60690 |-
60691 |align=&quot;center&quot; colspan=&quot;2&quot; | [[motto]]s: ''Quanti canicula ille in fenestra''&lt;br /&gt; (Latatian: How much is that small dog in the window)&lt;br /&gt;
60692 ''Merus in pectum et in aquam''&lt;br /&gt;(Latatian: Pure in heart and water)
60693 |-
60694 |Official [[language]] || Morporkian is [[de facto]]
60695 |-
60696 |Patrician || Lord [[Havelock Vetinari]]
60697 |-
60698 |[[Area]] || Approx 50 mile&amp;sup2; (130 km&amp;sup2; including surrounding fiefdom
60699 |-
60700 |[[Population]] || Approx. 1,000,000 (including surrounding fiefdom)
60701 |-
60702 |Establishment || Founded 2564 years before AM dating &lt;br /&gt; Modern city-state established 4th Grune 1688 AM
60703 |-
60704 |[[Currency]] || Ankh-Morpork Dollar
60705 |-
60706 |[[National anthem]] || ''[[We can rule you wholesale|We Can Rule You Wholesale]]''
60707 |}
60708 '''Ankh-Morpork''' is a [[fiction]]al [[city-state]] which features in [[Terry Pratchett]]'s ''[[Discworld]]'' series of fantasy novels. As cities go, it is on the far side of corrupt and polluted, and is subject to outbreaks of comedic violence and brou-ha-ha on a fairly regular basis. It is home to the [[Unseen University]], a centre of magical learning.
60709
60710 Ankh-Morpork is also the mercantile capital of the [[Discworld (world)|Discworld]], and the books give an excellent flavour of a &quot;working&quot; quasi-medieval city. Even when it is under attack from a [[European dragon|dragon]], the vegetable carts still have to come in.
60711
60712 In ''[[The Art of Discworld]]'' Pratchett explains that the city is similar to [[Tallinn]] and central [[Prague]], but adds that it has elements of 18th century [[London]], 19th century [[Seattle, Washington|Seattle]] and modern [[New York, New York|New York]]. He also states that since the creation of ''The Streets of Ankh-Morpork'', he has tried to ensure that the descriptions of character movements and locations in the books match the Ankh-Morpork map; this has allowed him, and fans of the series, to visualise the story more clearly. Ankh-Morpork is also referred to as &quot;The Big Oyster&quot;, or &quot;The Big Wahooni&quot; on occasions, further increasing the bond with &quot;The Big Apple&quot;, New York.
60713
60714 ==Geography==
60715 Ankh-Morpork lies on the River Ankh (the most polluted waterway on the Discworld), where the fertile loam of the [[Sto Plains]] (similar to [[Western Europe]]) meets the [[Circle Sea]] (the Discworld's version of the [[Mediterranean Sea|Mediterranean]]). This, naturally, puts it in an excellent trading position.
60716
60717 Lying approximately equidistant from the cold Hub and tropical Rim, Ankh-Morpork is in the Discworld's equivalent of the [[temperate]] zone.
60718
60719 The name &quot;Ankh-Morpork&quot; refers to both the city itself, a [[defensive wall|walled city]] about a mile (1.6 km) across, and the surrounding suburbs and farms of its [[fiefdom]].
60720
60721 The central city divides more or less into Ankh (the posh part) and Morpork (the humble part, which includes the slum area known as &quot;the Shades&quot;), which are separated by the River Ankh.
60722
60723 Ankh-Morpork is built on black loam, broadly, but mostly what it is built on is more Ankh-Morpork. Because of the nature of the Ankh-Morpork citizenry and the flooding of the River Ankh, they figured it was simply easier to build on top of the existing buildings when the sediment grew too high, rather than excavate them out. This has resulted in two things: Firstly, many people own basements and have no idea they do. Secondly, there is a &quot;cave network&quot; below Ankh-Morpork made up of old streets and abandoned sewers &amp;ndash; these &quot;unknown basements&quot; allow people to get around relatively unimpeded. The city's [[dwarf]] population have extended this into a complex network of tunnels, which has recently been made municipal property.
60724
60725 ===The River Ankh===
60726 Even before it enters Ankh-Morpork, the River Ankh is full of [[silt]] from the plains; by the time it gets to the seaward side of the city, &quot;even an [[agnostic]] could walk across it&quot;.
60727
60728 The citizens of the city are strangely proud of this fact, even going so far as to say that &quot;it is easier to suffocate than drown in the Ankh.&quot; They also claim it to be the purest water on the Disc, as &quot;Anything that's passed through so many kidneys has to be very pure indeed.&quot; Owing to the build-up of centuries, the bed of the river is higher than some parts of the city. When winter snows swell the flow, the low-rent areas of Morpork flood. In spring some parts catch fire, and others sprout small trees.
60729
60730 In the times when the city catches fire, the river gates are closed, and the river rises and smothers the flames.
60731
60732 In both ''[[Men At Arms]]'' and the computer game ''[[Discworld Noir]]'', the Ankh is described as &quot;the only river in the world on which you could draw a chalk outline&quot;.
60733
60734 ==History==
60735 According to legend, the first city of Ankh-Morpork was founded thousands of years ago by twin brothers who were raised by a [[hippopotamus]] (an allusion to the myth of [[Romulus and Remus]]). It is in memory of this that the hippo is the royal animal of Ankh. The original city was little more than a walled keep, surrounding the Tower of Art, a building of mysterious origin.
60736
60737 At one point it had an empire, similar to the [[Roman Empire]], that covered half the continent including the neighbouring country of [[Klatch]]. These were the days of the &quot;Pax Morporkia,&quot; another reference to Rome and their [[Pax Romana]].
60738
60739 The empire was largely the creation of General [[Minor Discworld characters#General Tacticus|Tacticus]] (an obvious pun or [[word play|play on word]]s), the greatest military mind in history. Tacticus refused to accept that the Empire was growing too big to control, and was finally shipped off to be king of [[Genua]]. As king he decided that the greatest threat to Genua was the Empire, and [[Declaration of war|declared war]] on it.
60740
60741 This was a [[Golden Age]], ruled by the Kings of Ankh, who are recalled in legend as wise, noble and fair. The line died out approximately 2000 years before the present, giving way to real kings who were realistically corrupt and peverse and ultimately leading to the collapse of the empire.
60742
60743 Shortly before this, however, the mage [[Albert (Discworld)|Alberto Malich]] had founded Unseen University in the Tower of Art, and Ankh-Morpork continued as a service town for the wizards.
60744
60745 Royalty became extremely debased and the later kings of Ankh-Morpork are recalled in history as power-mad and corrupt, or just mad; some are mentioned by name in ''[[Men at Arms]]'':
60746
60747 *Queen Alguinna IV
60748 *King Artorollo (a contemporary of Alberto Malich)
60749 *King Cirone IV
60750 *Queen Coanna
60751 *King Loyala the Aaargh (Had a 1.13 second rule from coronation to assassination) - ''[[The Discworld Companion]]''
60752 *King Ludwig the Tree (Known to issue royal proclamations on the need to develop a new type of frog and similar important matters, and also responsible for the city motto &quot;Quanti Canicula Ille In Fenestra&quot;)- ''[[The Discworld Companion]]''
60753 *King Paragore
60754 *King Tyrril (ruled circa AM 907)
60755 *King Veltrick III
60756 *Webblethorpe the Unconscious
60757
60758 The last and worst - the euphemistically-remembered Lorenzo the Kind (the full extent of whose infamy is not revealed, save that he was said to be &quot;very fond of children&quot; and had in his dungeons &quot;machines for . . .&quot;) - was overthrown in the Ankh-Morpork Civil War of 1688 (dating from the founding of UU). The question of what to do with the deposed king (no judge would try him) was settled when he was executed by the then Commander of the City Watch, Suffer-Not-Injustice [[Samuel Vimes|Vimes]]. Known as &quot;Old Stoneface,&quot; his regicide resulted in his being banned from bearing arms (These events parallel the [[English Civil War]] of the [[1640s]], and the execution of [[Charles I of England|Charles I]] by [[Oliver Cromwell]]). Afterwards &quot;Old Stoneface&quot; (an ancestor of the current City Watch Commander [[Samuel Vimes]]) and his Ironheads ( a play on &quot;[[Roundheads]]&quot;) attempted to introduce [[democracy]], but the people voted against it. After &quot;Old Stoneface&quot; himself was overthrown, Ankh-Morpork reverted to a non-hereditary [[oligarchy|oligarchic]] system, where the leaders are still ruthless tyrants, but don't have the audacity to invoke divine right. It is, however, rumoured that the royal blood line continued and that the true king, Ironfoundersson, walks the streets of the city on a nightly basis. The [[Havelock Vetinari|Patrician]] rules the city, and operates a specialised form of &quot;One Man, One Vote&quot; democracy: the Patrician is the Man, and he has the Vote.
60759
60760
60761 Under the Patricians the city has become the mercantile and [[political capital]] of the Discworld, so much so that the Sto Plains operates under a new Pax Morporkia, which operates not on the principle of &quot;If you fight, we will kill you,&quot; but on the principle of &quot;If you fight, we will call in your mortgages.&quot; The current Patrician has opened the city to [[dwarfs (Discworld)|dwarfs]], [[trolls (Discworld)|trolls]], [[gnomes (Discworld)|gnome]]s, humans from across the Disc and even the [[undead (Discworld)|undead]], making a truly [[multiculturalism|multicultural]] society, with both the advantages and problems that suggests. (The current Patrician's own, typically pragmatic, view on multiculturalism is &quot;[[Alloys]] are stronger.&quot;)
60762
60763 In recent years, the city has seen numerous changes. Most notable are: the rise of the [[semaphore (communication)|semaphore]] network (the &quot;[[clacks (Discworld)|clacks]]&quot;), the invention of the newspaper (with the help of the [[iconograph]]), and the revitalisation of the [[Ankh-Morpork City Watch|City Watch]] and the [[Ankh-Morpork Post Office]].
60764
60765 Civic symbols include Morporkia, a woman in a cabbage-spangled cloak and an old-fashioned helmet, carrying a shield with the civic [[heraldry|coat of arms]] and a toasting-fork symbolising &quot;something or other&quot; (compare [[Britannia]], [[Historical Columbia|Columbia]]).
60766
60767 ==Politics==
60768 The succession of the Patrician is normally either by assassination or revolution. It has been known for Patricians to resign, but it is very much the exception.
60769
60770 Power is to some degree shared with the many [[Guilds of Ankh-Morpork]] (including legalised [[Theft|Thieves]], [[Assassin|Assassins]] and &quot;[[prostitute|Seamstresses]]&quot;) and the surviving nobility. They form a sort of city council, but the Patrician has the only vote at meetings.
60771
60772 The current office-holder is Lord [[Havelock Vetinari]], a former [[Assassin]].
60773
60774 The nearest surviving relative of the former [[royal family]] seems to be Captain [[Carrot Ironfoundersson]], technically a dwarf. However, he has gone to some effort to keep this as quiet as possible. The origin of Corporal [[Nobby Nobbs]] remains shrouded in mystery. At one point he was identified as being a descendant of the Earl of Ankh (and therefore the next in line), but this was (probably) a deliberate deception.
60775
60776 A Patrician has almost absolute power over the affairs of the city and works together with the leaders of the city's [[Guilds of Ankh-Morpork|Guilds]], who are the ones who unofficially elect him in the first place. Eligible for election are members of rich and influential families. Unfortunately, almost all of the people who have held the post through the years proved once in office to be little different from a king, except that power did not pass automatically to their descendants. They were despotic, oppressive and fairly often mad. Past Patricians have included:
60777 *Mad Lord Snapcase (preceded Vetinari)
60778 *Homicidal Lord Winder (preceded Snapcase)
60779 *Deranged Lord Harmoni
60780 *Laughing Lord Scapula
60781 *Frenzied Earl Hargath
60782 *Nersh the Lunatic
60783 *Giggling Lord Smince
60784 *[[Olaf Quimby II]]
60785
60786 ==Public holidays==
60787 {| class=&quot;wikitable&quot;
60788 |-
60789 ! Date || Name
60790 |-
60791 | 1 Ick|| Hogswatch Day ([[New Year]], [[Christmas]])
60792 |-
60793 | [[28 April]] || The [[Terry Pratchett|Creator's]] birthday
60794 |-
60795 | [[1 May]] || [[May Day]] (also called May Blossom Day)
60796 |-
60797 | [[25 May]] || The Twenty-Fifth Of May (commemorates the last Ankh-Morpork revolution, but only if you participated)
60798 |-
60799 | 6 Grune || Patrician's Day (in reality [[Stephen Briggs]]' birthday)
60800 |-
60801 | The first [[Tuesday]], [[Wednesday]] and [[Thursday]] after the last half moon in Sektober || Soul Cake Days
60802 |-
60803 | [[31 December]] || Hogswatch Eve
60804 |-
60805 | [[32 December]] || [[Minor Discworld concepts#Hogswatchnight|Hogswatchnight]]
60806 |}
60807
60808 ==External links==
60809 * [http://www.lspace.org/ The L-Space Web], possibly the definitive Discworld web site
60810 * [http://www.avidgamers.com/Otherside/ When Dragons Belch and Hippos Flee], an Ankh-Morpork roleplaying site, where you can be your favorite character.
60811
60812 ==Real-World Connections==
60813 Ankh-Morpork is twinned with the town of [[Wincanton]] in [[Somerset]], in the south-west [[United Kingdom]] on the spherical [[planet]] [[Earth]] (also known as [[Minor Discworld concepts#Roundworld|Roundworld]]). The town is home to a Discworld shop called [http://www.artificer.co.uk/ The Cunning Artificer] which is named after a street in Ankh-Morpork. The fact that [[Witches (Discworld)|witches]], [[Rincewind|wizards]] and even [[The Luggage]] have been seen in the vicinity of the shop suggests that it may be one of the [[Minor Discworld concepts#Wandering_Shops|wandering shops]] encountered in ''[[The Light Fantastic]]'' and ''[[Soul Music]]''.
60814
60815 ==References==
60816 *Pratchett, Terry (1983). ''[[The Colour of Magic]]''. Colin Smythe.
60817 *Pratchett, Terry (1989). ''[[Guards! Guards!]]''. Gollancz.
60818 *Pratchett, Terry (1993). ''[[Men At Arms]]''. Gollancz.
60819 *Pratchett, Terry (1996). ''[[Feet of Clay]]''. Gollancz.
60820 *Pratchett, Terry (1997). ''[[Jingo (novel)|Jingo]]''. Gollancz.
60821 *Pratchett, Terry (2000). ''[[The Truth (novel)|The Truth]]''. Gollancz.
60822 *Pratchett, Terry (2002). ''[[Night Watch (novel)|Night Watch]]''. Gollancz.
60823 *Pratchett, Terry &amp; Briggs, Stephen (1993). ''The Streets Of Ankh Morpork''. Corgi.
60824 *Pratchett, Terry &amp; Briggs, Stephen (2003). ''The Discworld Companion'' (3rd ed.). Gollancz.
60825 *Pratchett, Terry &amp; Pearson, Bernard (2004). ''The Discworld Almanak''. Doubleday.
60826 *Pratchett, Terry &amp; Kidby, Paul (2004). ''The Art of Discworld'' ISBN 0575075112. Gollancz.
60827
60828 {{Discworld}}
60829
60830 [[Category:Discworld locations]]
60831 [[Category:Fictional towns and cities]]
60832
60833 [[bg:АĐŊĐēŅ…-МоŅ€ĐŋĐžŅ€Đē]]
60834 [[cs:Ankh-Morpork]]
60835 [[de:Ankh-Morpork]]
60836 [[fr:Ankh-Morpork]]
60837 [[nl:Ankh-Meurbork]]
60838 [[sv:Ankh-Morpork]]</text>
60839 </revision>
60840 </page>
60841 <page>
60842 <title>Automorphism</title>
60843 <id>1160</id>
60844 <revision>
60845 <id>38358177</id>
60846 <timestamp>2006-02-05T20:48:26Z</timestamp>
60847 <contributor>
60848 <username>Tosha</username>
60849 <id>37304</id>
60850 </contributor>
60851 <minor />
60852 <comment>/* Reference */ ru</comment>
60853 <text xml:space="preserve">In [[mathematics]], an '''automorphism''' is an [[isomorphism]] from a mathematical object to itself. It is, in some sense, a [[symmetry]] of the object, and a way of [[map (mathematics)|mapping]] the object to itself while preserving all of its structure. The set of all automorphisms of an object forms a [[group (mathematics)|group]], called the '''automorphism group'''. It is, loosely speaking, the [[symmetry group]] of the object.
60854
60855 == Definition ==
60856
60857 The exact definition of an automorphism depends on the type of &quot;mathematical object&quot; in question and what, precisely, constitutes an &quot;isomorphism&quot; of that object. The most general setting in which these words have meaning is an abstract branch of mathematics called [[category theory]]. Category theory deals with abstract objects and [[morphism]]s between those objects.
60858
60859 In category theory, an '''automorphism''' is an [[endomorphism]] (i.e. a [[morphism]] from an object to itself) which is also an [[Category theory#Types of morphisms|isomorphism]] (in the categorical sense of the word).
60860
60861 This is a very abstract definition since, in category theory, morphisms aren't necessarily functions and objects aren't necessarily sets. In most concrete settings, however, the objects will be sets with some additional structure and the morphisms will be functions preserving that structure.
60862
60863 In the context of [[abstract algebra]], for example, a mathematical object is an [[algebraic structure]] such as a [[group (mathematics)|group]], [[ring (mathematics)|ring]], or [[vector space]]. An isomorphism is simply a [[bijective]] [[homomorphism]]. (Of course, the definition of a homomorphism depends on the type of algebraic structure; see, for example: [[group homomorphism]], [[ring homomorphism]], and [[linear operator]]).
60864
60865 == Automorphism group ==
60866
60867 The set of automorphisms of an object ''X'' form a [[group (mathematics)|group]] under composition of [[morphism]]s. This group is called the '''automorphism group''' of ''X''. That this is indeed a group is simple to see:
60868 * [[Closure (binary operation)|Closure]]: composition of two endomorphisms is another endomorphism.
60869 * [[Associativity]]: morphism composition is associative by definition.
60870 * [[Identity element|Identity]]: the identity is the identity morphism from an object to itself which exists by definition.
60871 * [[Inverse element|Inverses]]: by definition every isomorphism has an inverse which is also an isomorphism, and since the inverse is also an endomorphism of the same object it is an automorphism.
60872
60873 The automorphism group of an object ''X'' in a category ''C'' is denoted Aut&lt;sub&gt;''C''&lt;/sub&gt;(''X''), or simply Aut(''X'') if the category is clear from context.
60874
60875 == Examples ==
60876
60877 *In [[set theory]], an automorphism of a set ''X'' is an arbitrary [[permutation]] of the elements of ''X''. The automorphism group of ''X'' is also called the [[symmetric group]] on ''X''.
60878
60879 *A group automorphism is a [[group isomorphism]] from a group to itself. Informally, it is a permutation of the group elements such that the structure remains unchanged. For every group ''G'' there is a natural group homomorphism ''G'' &amp;rarr; Aut(''G'') whose [[kernel (algebra)|kernel]] is the [[center of a group|center]] of ''G''. Thus, if ''G'' is centerless it can be embedded into its own automorphism group. (See the discussion on inner automorphisms below).
60880
60881 *In [[linear algebra]], an endomorphism of a [[vector space]] ''V'' is a [[linear transformation|linear operator]] ''V'' &amp;rarr; ''V''. An automorphism is an invertible linear operator on ''V''. The automorphism group of ''V'' is just the [[general linear group]], GL(''V'').
60882
60883 *A field automorphism is a [[bijection|bijective]] [[ring homomorphism]] from a [[field (mathematics)|field]] to itself. In the case of the [[rational number]]s, '''Q''', or the [[real number]]s, '''R''', there are no nontrivial field automorphisms (this follows from the fact that such automorphisms are [[Monotonic function|order-preserving]]). In the case of the [[complex number]]s, '''C''', there is a unique nontrivial automorphism that sends '''R''' into '''R''': [[complex conjugate|complex conjugation]], but there are infinitely many &quot;wild&quot; automorphisms (see the paper by Yale cited below). Field automorphisms are important to the theory of [[field extension]]s, in particular [[Galois extension]]s. In the case of a Galois extension ''L''/''K'' the [[subgroup]] of all automorphisms of ''L'' fixing ''K'' pointwise is called the [[Galois group]] of the extension.
60884
60885 *The set of [[integer]]s, '''Z''', considered as a group under addition, has a unique nontrivial automorphism : negation. Considered as a [[ring (mathematics)|ring]], however, it has only the trivial automorphism. Generally speaking, negation is an automorphism of any [[abelian group]], but not of a ring or field.
60886
60887 *In [[graph theory]] an automorphism of a graph is a permutation of the nodes that preserves edges and non-edges. In particular, if two nodes are joined by an edge, so are their images under the permutation.
60888
60889 *In [[order theory]], see [[order automorphism]].
60890
60891 *An automorphism of a differentiable [[manifold]] ''M'' is a [[diffeomorphism]] from ''M'' to itself. The automorphism group is sometimes denoted Diff(''M'').
60892
60893 *In [[Riemannian geometry]] an automorphism is a self-[[isometry]]. The automorphism group is also called the [[isometry group]].
60894
60895 *In the category of [[Riemann surface]]s, an automorphism is a bijective [[holomorphic function|holomorphic]] map (also called a [[conformal map]]), from a surface to itself. For example, the automorphisms of the [[Riemann sphere]] are [[MÃļbius transformation]]s.
60896
60897 == Inner and outer automorphisms ==
60898
60899 In some categories&amp;mdash;notably [[group (mathematics)|group]]s, [[ring (mathematics)|ring]]s, and [[Lie algebra]]s&amp;mdash;it is possible to separate automorphisms into two classes.
60900
60901 In the case of groups:
60902
60903 The [[inner automorphism]]s are the conjugations by the elements of the group itself. For each element ''a'' of a group ''G'', conjugation by ''a'' is the operation &amp;phi;&lt;sub&gt;''a''&lt;/sub&gt; : ''G''&amp;nbsp;&amp;rarr;&amp;nbsp;''G'' given by &amp;phi;&lt;sub&gt;''a''&lt;/sub&gt;(''g'') = ''aga''&lt;sup&gt;&amp;minus;1&lt;/sup&gt;. One can easily check that conjugation by ''a'' is actually a group automorphism. They form a [[normal subgroup]] of Aut(''G''), denoted by Inn(''G'').
60904
60905 The other automorphisms are called [[outer automorphism]]s. The [[quotient group]] Aut(''G'')&amp;nbsp;/&amp;nbsp;Inn(''G'') is usually denoted by Out(''G''); the non-trivial elements are the cosets containing the outer automorphisms.
60906
60907 The same definition holds in any [[unital]] [[ring (mathematics)|ring]] or [[algebra over a field|algebra]] where ''a'' is any [[Unit (ring theory)|invertible element]]. For [[Lie algebra]]s the definition is slightly different.
60908
60909 == See also ==
60910
60911 *[[endomorphism]]
60912 *[[endomorphism ring]]
60913 *[[antiautomorphism]]
60914 *[[Frobenius automorphism]]
60915
60916 == Reference ==
60917
60918 Yale, Paul B. ''Mathematics Magazine''. &quot;Automorphisms of the Complex Numbers&quot;. Vol 39. Num. 3. May, 1966. pp. 135-141. Available via http://www.jstor.org
60919
60920 [[Category:Abstract algebra]]
60921 [[Category:Algebra]]
60922 [[Category:Category theory]]
60923 [[Category:Symmetry]]
60924
60925 &lt;!--[[en:Automorphism]]--&gt;
60926
60927 [[de:Automorphismus]]
60928 [[es:Automorfismo]]
60929 [[fr:Automorphisme]]
60930 [[nl:Automorfisme]]
60931 [[pl:Automorfizm]]
60932 [[ru:АвŅ‚ĐžĐŧĐžŅ€Ņ„иСĐŧ]]</text>
60933 </revision>
60934 </page>
60935 <page>
60936 <title>Accordion</title>
60937 <id>1162</id>
60938 <revision>
60939 <id>41876968</id>
60940 <timestamp>2006-03-02T08:15:31Z</timestamp>
60941 <contributor>
60942 <username>Mikkalai</username>
60943 <id>28438</id>
60944 </contributor>
60945 <comment>/* External links */ {{commonscat|accordions}}</comment>
60946 <text xml:space="preserve">{{SpecialChars}}[[Image:Accordion.png|thumb|right|A button accordion]]An '''accordion''' is a [[musical instrument]] of the handheld [[bellows]]-driven [[free reed aerophone]] family, sometimes referred to as [[squeezebox]]es.
60947
60948 The accordion is played by compression and expansion of a bellows, which generates air flow across [[reed (music)|reeds]]; a [[Musical keyboard|keyboard]] controls which reeds receive air flow and therefore the tones produced.
60949
60950 :''For a full description of the sound-producing mechanism, see '''[[Free reed aerophone]]'''.''
60951
60952 == Physical description ==
60953 Modern accordions consists of a body in two parts, each generally rectangular in shape, separated by a bellows. On each part of the body is a [[Musical keyboard|keyboard]] containing buttons, levers or [[piano]]-style keys. When pressed, the buttons travel in a direction perpendicular to the motion of the bellows (towards the performer). Most, but not all modern accordions also have buttons capable of producing entire [[chord (music)|chords]], whereas concertinas' buttons produce only single notes.
60954
60955 The related [[concertina]] differs in that its buttons never produce chords and travel parallel to the travel of the bellows (towards the opposite end of the instrument); there are also differences in the internal materials, construction, mechanics, and [[tone color]], but the basic principles of sound production are identical.
60956
60957 == History ==
60958 The accordion is one of several [[Europe]]an inventions of the early [[19th century]] that used free reeds driven by a bellows; notable among them were:
60959 *The [[Aeoline]], by German Bernhard Eschenbach (and his cousin, Caspar Schlimbach), [[1810]].
60960 **Was a piano with added aeoline register.
60961 **Aeoline Harmonika and Pysharmonika are very similar names at that time.
60962 *** Aeoline and Aura ware first without bellows or keyboard.
60963 *The [[Hand Physhamonika]] [[Anton Haeckel]] [[1818]] Hand type mentioned in music newspaper [[1821]].
60964 *The [[flutina]], by Pichenot Jeune, ca. [[1831]]
60965 *The [[concertina]], patented in two forms (perhaps independently):
60966 **[[Carl Friedrich Uhlig]], [[1834]].
60967 **[[Sir Charles Wheatstone]], examples built after 1829, but not patented until [[1844]]
60968
60969 An instrument called '''accordion''' was first patented in [[1829]] by Cyrill Demian in [[Vienna]]. (Interestingly, the original patent shows the name &quot;eoline&quot; crossed out and replaced with &quot;accordion&quot; in different handwriting). Demian's instrument bore little resemblance to modern instruments: It only had a left hand keyboard; the right hand simply operated the bellows. One key feature for which Damian sought the patent was the sounding of an entire chord by depressing one key. His instrument also could sound two different chords with the same key: one for each bellows direction (press, draw); this is called a ''bisonoric'' action.
60970
60971 At that time in Vienna, mouth harmonicas with &quot;Kanzellen&quot; (chambers) had already been available for many years, along with bigger instruments driven by hand bellows. The diatonic key arrangement was also already in use on mouth-blown instruments. Demian's patent thus covered an accompanying instrument: an accordion played with the left hand, opposite to the way that comtemporary chromatic hand harmonicas were played, small and light enough to for travellers to take with them and use to accompany singing. The patent also described instruments with both bass and treble sections, although Demian preferred the bass-only instrument owing to its cost and weight advantages.
60972
60973 The musician Adolph MÃŧller described a great variety of instruments in his [[1833]] &quot;Schule fÃŧr Accordion&quot;.
60974 At the time, Vienna and London had a close musical relationship, with musicians often performing in both cities in the same year, so it is possible that Wheatstone was aware of this type of instrument and may have used them to put his key-arrangement ideas into practice.
60975
60976 Jeune's flutina resembles Wheatstone's concertina in internal construction and [[tone color]], but it appears to complement Demian's accordion functionally. The flutina is a one-sided bisonoric melody-only instrument whose keys are operated with the right hand while the bellows is operated with the left. When the two instruments are combined, the result is quite similar to diatonic button accordions still manufactured today.
60977
60978 Further innovations followed and continue to the present: Various keyboard systems have been developed; voicings (the combination of multiple tones at different octaves) have been developed, with mechanisms to switch between different voices during performance; different methods of internal construction to improve tone, stability and durability, and so on.
60979
60980 == Piano accordions ==
60981 [[Image:KlavierAccordeon.jpg|thumbnail|right|a piano accordion]]
60982 The '''piano accordion''' is the instrument most often indicated by the term &quot;accordion&quot;, but it is one of the most recent inventions among accordion types, appearing late in the 19th century and not accepted worldwide until the early [[20th century]]. It has a right-hand [[keyboard (music)|keyboard]] similar to a [[piano]]; this facilitates learning for musicians already familiar or proficient on the piano.
60983
60984 The left hand keyboard is usually configured in the [[#Stradella bass system|Stradella system]], a combination of chords and single notes, arranged in a uniform series by harmonic relationship. Occasionally a ''free bass'' left hand is used, which has a series of single buttons in an arrangement similar to the chromatic button accordion. The free bass system facilitates the playing of bass melodies and counterpoint. It also allows for chord inversion and invention of chords not present in the Stradella system.
60985
60986 ''Converter'' bass systems allow an instrument to be readily converted from a Stradella system to a free-bass system with a switch.
60987
60988 The instrument was popularized in the United States by Count [[Guido Deiro]] who was the first piano accordionist to perform in [[Vaudeville]]. He is credited with making the first recordings of the instrument in [[1908]], making the first [[radio]] broadcast of the accordion in [[1921]] and the first sound [[film|motion picture]] featuring the accordion, for [[Vitaphone]], in [[1928]].
60989
60990 == Button accordions ==
60991 [[Image:C-Griff.svg|thumb|Chromatic button system (type C)]]
60992 [[Image:B-Griff.svg|thumb|Chromatic button system (type B)]]
60993 On '''button accordions''' the [[melody]]-side [[Musical keyboard|keyboard]] consists of a series of [[button]]s (rather than [[piano]]-style keys.) There exists a wide variation in keyboard systems, tuning, action and construction of these instruments.
60994
60995 '''Diatonic button accordions''' have a [[melody]]-side keyboard that is limited to the notes of [[diatonic]] [[scale (music)|scales]] in a small number of [[key (music)|keys]] (sometimes only one). The [[bass (music)|bass]] side usually contains the principal [[chord (music)|chords]] of the instrument's key and the root notes of those chords.
60996
60997 [[Image:Busking_Accordionist.jpg|thumb|Garmon' player]]Almost all diatonic button accordions (e.g.: [[melodeon]]) are bisonoric, meaning each button produces two notes: one when the [[bellows]] is compressed, another while it is expanded; a few instruments (e.g.: [[garmon']]) are unisonoric, with each button producing the same note regardless of bellows direction; still others have a combination of the two types of action: ''See [[#Hybrids|Hybrids]] below.''
60998
60999 A '''chromatic button accordion''' is a type of button accordion where the melody-side keyboard consists of uniform rows of buttons arranged so that the pitch increases [[chromatic scale|chromatically]] along diagonals. The bass-side keyboard is usually the Stradella system, one of the various free-bass systems, or a converter system. Included among chromatic button accordions is the [[Russia]]n [[Bayan (accordion)|bayan]]. Sometimes an instrument of this class is simply called a '''chromatic accordion''', although other types, including the piano accordion, are fully chromatic as well. There can be 3 to 5 rows of treble buttons. In a 5 row chromatic, two additional rows repeat the first 2 rows to facilitate options in fingering. Chromatic button accordions are preferred by many [[European classical music|classical music]] performers, since the treble keyboard with diagonally arranged buttons allows a greater range than a piano keyboard configuration.
61000
61001 Various cultures have made their own versions of the accordion, adapted to suit their own music. [[Russia]] alone has several, including the [[Bayan]], [[Garmon]], [[Livenka]], and [[Saratovskaya Garmonika]].
61002
61003 Various '''hybrids''' have been created between instruments of different keyboards and actions. Many remain curiosities, only a few have remained in use. Some notable examples are:
61004 *The [[Schrammel accordion]], used in [[Vienna|Viennese]] [[chamber music]] and [[Klezmer]], which has the treble keyboard of a chromatic button accordion and a bisonoric bass keyboard, similar to an expanded diatonic button accordion.
61005 *The [[schwyzerÃļrgeli]] or [[Switzerland|Swiss]] organ, which has a (usually) 3-row diatonic treble and 18 unisonoric bass buttons in a bass/chord arrangement (actually a subset of the Stradella system), that travel parallel to the bellows motion.
61006 *The [[trikitixa]] of the [[Basque people]] has a 2-row diatonic, bisonoric treble and a 12-button diatonic unisonoric bass.
61007 *In [[Scotland]], the favoured diatonic accordion is, paradoxically, the instrument known as the [[British Chromatic Accordion]]. While the right hand is bisonoric, the left hand follows the Stradella system. The elite form of this instrument is generally considered to be the German manufactured &quot;Shand Morino&quot;, produced by Hohner with the input of the late Sir Jimmy Shand. {{Ref|Howard98}}
61008
61009 ==Stradella bass system==
61010 [[Image:Acchords.png|thumb|right|250px|Stradella bass layout]]
61011
61012 The '''Stradella Bass System''' uses rows of buttons arranged in a [[circle of fifths]]; this places the principal major chords of a key in three adjacent rows. Each row contains, in order: A major third (the &quot;counter-bass&quot; note), the root note, the major chord, the minor chord, the seventh chord, and the diminished seventh chord.
61013
61014 Depending on the price, size or origin of the instrument, some rows may be missing completely or in different positions. In most Russian layouts the diminished seventh chord row is moved by one button, so that the C diminished seventh chord is where the F diminished seventh chord would be in a standard Stradella layout; this is done in order to achieve a better reachability with the forefinger.
61015
61016 Common configurations are:
61017 *&quot;12 Bass&quot; accordion: Fundamental Bass goes from B&amp;#9837; to A (the third to eighth column in the picture above), and only has Fundamental Bass and major chords.
61018 *&quot;24 Bass&quot; goes from A&amp;#9837; to A, and has Fundamental Bass, major and minor chords
61019 *&quot;32 Bass&quot; goes from E&amp;#9837; to E, and has FB, major, minor and seventh chords
61020 *&quot;48 Bass&quot; goes from E&amp;#9837; to E, and has all six rows
61021 *&quot;72 Bass&quot; goes from D&amp;#9837; to F&amp;#9839;, and has all six rows
61022 *&quot;80 Bass&quot; goes from C&amp;#9837; to G&amp;#9839;, and has everything except diminished
61023 *&quot;96 Bass&quot; is as 80 Bass, but with all six rows
61024 *&quot;120 Bass&quot; goes from A&amp;#9837;&amp;#9837; (i.e. low G) to A&amp;#9839; &amp;mdash; that's 20 columns &amp;mdash; with all six rows.
61025
61026 == Free bass systems ==
61027 There are various free bass systems in use; most consist of a rotated version or mirror image of one of the melody layouts used in chromatic button accordions. One notable exception is the Titano line of converter bass, which repeats the first two bass rows of the Stradella system one and two octaves higher moving outward from the bellows.
61028
61029 Skillfull use of the free bass system enabled the performance of classical piano music, rather than music arranged specifically for the accordion's standard chorded capability. Beginning in the 1960s, competitive performance on the accordion of classical piano compositions, by the great masters of music, occurred. Although never mainstreamed in the larger musical scene, this convergence with traditional classical music propelled young accordionists to an ultimate involvement with classical music heretofore not experienced.
61030
61031 Many modern and [[avant-garde]] composers (such as [[Sofia Gubaidulina]], [[Luciano Berio]] and [[Magnus Lindberg]]) have written for the free bass accordion and the instrument is becoming more frequently integrated into [[new music]] chamber and improvisation groups.
61032
61033 == Audio samples ==
61034 *{{Listen|filename=accordian_chords-01.ogg|title=Accordion chords|description=Chords being played on an accordion &amp;mdash; 145 KB |format=[[Ogg]]}}
61035
61036 ==Related instruments==
61037 === Squeezeboxes ===
61038 *[[Concertina]]
61039 *[[Bandoneon]]
61040 *[[Flutina]]
61041 === Other free-reeds ===
61042 *[[Harmonica]]
61043 *[[Harmonium]]
61044 *[[Melodica]]
61045 *[[Sheng]]
61046 *[[Khene]]
61047
61048 ==Trivia==
61049 *Despite the popularity of the accordion, especially in [[polka]] music by artists such as [[Lawrence Welk]], [[Myron Floren]], [[Frankie Yankovic]] and [[&quot;Weird Al&quot; Yankovic]] (no relation), the instrument does have its critics. An oft-reprinted cartoon in ''[[The Far Side]]'' is a split panel in which the upper half is captioned, &quot;Welcome to Heaven... here's your harp!&quot; while the lower panel is captioned, &quot;Welcome to Hell... here's your accordion!&quot;
61050
61051 ==References==
61052 #{{Note|Howard98}}p.98, Howard, Rob (2003) ''An A to Z of the Accordion and related instruments'' Stockport:Robaccord Publications ISBN 0-9546711-0-4
61053
61054 ==External links==
61055 {{commonscat|accordions}}
61056 *[http://www.mcrow.net/Accordion%20Virus.htm Accordion synth software for Reaktor]
61057
61058 {{Squeezebox}}
61059
61060
61061 [[Category:Free reed aerophones]]
61062 [[Category:Keyboard instruments]]
61063 [[Category:Sets of free reeds]]
61064
61065 [[de:Akkordeon]]
61066 [[es:AcordeÃŗn]]
61067 [[eo:Akordiono]]
61068 [[fr:AccordÊon]]
61069 [[gl:AcordeÃŗn]]
61070 [[ia:Accordion]]
61071 [[it:Fisarmonica]]
61072 [[he:אקורדיון]]
61073 [[nl:Accordeon]]
61074 [[ja:ã‚ĸã‚ŗãƒŧデã‚Ŗã‚Ēãƒŗ]]
61075 [[no:Trekkspill]]
61076 [[nn:Trekkspel]]
61077 [[pl:Akordeon]]
61078 [[pt:Sanfona]]
61079 [[ru:ГаŅ€ĐŧĐžĐŊŅŒ]]
61080 [[fi:Harmonikka]]
61081 [[sv:Dragspel]]
61082 [[uk:АĐēĐžŅ€Đ´ĐĩĐžĐŊ]]
61083 [[zh:手éŖŽį´]]</text>
61084 </revision>
61085 </page>
61086 <page>
61087 <title>Artificial intelligence</title>
61088 <id>1164</id>
61089 <revision>
61090 <id>42052332</id>
61091 <timestamp>2006-03-03T13:48:33Z</timestamp>
61092 <contributor>
61093 <username>Tailpig</username>
61094 <id>312490</id>
61095 </contributor>
61096 <comment>Revert to revision 42030028 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
61097 <text xml:space="preserve">{{portal}}
61098 [[Image:HONDA ASIMO.jpg|200px|thumb|right|Honda's intelligent humanoid robot]]
61099 {{Redirect|AI}}
61100 '''Artificial intelligence''' ('''AI''') is defined as [[intelligence (trait)|intelligence]] exhibited by an [[artificial]] entity. Such a system is generally assumed to be a [[computer]].
61101
61102 Although AI has a strong [[science fiction]] connotation, it forms a vital branch of [[computer science]], dealing with intelligent [[behavior]], [[learn]]ing and [[adaptation]] in [[machine]]s. [[Research]] in AI is concerned with producing machines to automate tasks requiring intelligent behavior. Examples include [[control system|control]], [[Automated planning and scheduling|planning and scheduling]], the ability to answer diagnostic and consumer questions, [[handwriting recognition|handwriting]], [[speech recognition|speech]], and [[facial recognition system|facial recognition]]. As such, it has become a [[scientific]] discipline, focused on providing solutions to real life problems. AI systems are now in routine use in [[economics]], [[medicine]], [[engineering]] and the [[military]], as well as being built into many common home computer [[Computer software|software]] applications, traditional strategy games like [[computer chess]] and other [[video games]].
61103
61104 ==Schools of thought==
61105
61106 AI divides roughly into two schools of thought: Conventional AI and [[Computational Intelligence]] (CI).
61107
61108 Conventional AI mostly involves methods now classified as [[machine learning]], characterized by [[formalism]] and [[statistical analysis]]. This is also known as [[symbolic]] AI, [[logical]] AI, [[Neats|neat AI]] and [[GOFAI|Good Old Fashioned Artificial Intelligence (GOFAI)]]. (Also see [[semantics]].) Methods include:
61109 *[[Expert system]]s: apply reasoning capabilities to reach a conclusion. An expert system can process large amounts of known information and provide conclusions based on them.
61110 *[[Case based reasoning]]
61111 *[[Bayesian network]]s
61112 *[[Behavior based AI]]: a modular method of building AI systems by hand.
61113
61114 Computational Intelligence involves [[iterative]] development or learning (e.g. parameter tuning e.g. in [[connectionist]] systems). Learning is based on [[empirical]] data and is associated with non-symbolic AI, [[Scruffies|scruffy AI]] and [[soft computing]]. Methods mainly include:
61115 *[[Neural network]]s: systems with very strong [[pattern recognition]] capabilities.
61116 *[[Fuzzy system]]s: techniques for [[reasoning under uncertainty]], has been widely used in modern industrial and consumer product control systems.
61117 *[[Evolutionary computation]]: applies biologically inspired concepts such as [[population]]s, [[mutation]] and [[survival of the fittest]] to generate increasingly better solutions to the problem. These methods most notably divide into [[evolutionary algorithm]]s (e.g. [[genetic algorithm]]s) and [[swarm intelligence]] (e.g. [[ant colony optimization|ant algorithm]]s).
61118
61119 With [[hybrid intelligent system]]s attempts are made to combine these two groups. Expert inference rules can be generated through neural network or [[production rule]]s from statistical learning such as in [[ACT-R]].
61120
61121 ==History==
61122 {{main|History of artificial intelligence}}
61123
61124 Early in the 17th century, [[RenÊ Descartes]] proposed that bodies of animals are nothing more than complex machines. [[Blaise Pascal]] created the first mechanical digital calculating machine in [[1642]]. In the 19th century, [[Charles Babbage]] and [[Ada Lovelace]] worked on programmable mechanical calculating machines.
61125
61126 [[Bertrand Russell]] and [[Alfred North Whitehead]] published ''[[Principia Mathematica]]'', which revolutionized formal logic. [[Warren McCulloch]] and [[Walter Pitts]] published &quot;A Logical Calculus of the Ideas Immanent in Nervous Activity&quot; in [[1943]] laying foundations for [[neural network]]s.
61127
61128 The 1950s were a period of active efforts in AI. The first working AI programs were written in 1951 to run on the Ferranti Mark I machine of the University of Manchester (UK): a draughts-playing program written by Christopher Strachey and a chess-playing program written by Dietrich Prinz. [[John McCarthy (computer scientist)|John McCarthy]] coined the term &quot;artificial intelligence&quot; in the first conference devoted to the subject, in 1956. He also invented the [[Lisp programming language]]. [[Alan Turing]] introduced the &quot;[[Turing test]]&quot; as a way of operationalizing a test of intelligent behavior. [[Joseph Weizenbaum]] built [[ELIZA]], a [[chatterbot]] implementing [[Rogerian psychotherapy]].
61129
61130 During the 1960s and 1970s, [[Joel Moses]] demonstrated the power of symbolic reasoning for integration problems in the Macsyma program, the first successful knowledge-based program in mathematics. [[Marvin Minsky]] and [[Seymour Papert]] publish ''Perceptrons'', demonstrating limits of simple neural nets and [[Alain Colmerauer]] developed the [[Prolog]] computer language. [[Ted Shortliffe]] demonstrated the power of rule-based systems for [[knowledge representation]] and inference in medical diagnosis and therapy in what is sometimes called the first expert system. [[Hans Moravec]] developed the first computer-controlled vehicle to [[autonomous vehicle|autonomously]] negotiate cluttered obstacle courses.
61131
61132 In the 1980s, neural networks became widely used with the [[backpropagation]] algorithm, first described by [[Paul John Werbos]] in [[1974]]. The 1990s marked major achievements in many areas of AI and demonstrations of various applications. Most notably [[Deep Blue]], a chess-playing computer, beat [[Garry Kasparov]] in a famous six-game match in 1997. [[Defense Advanced Research Projects Agency|DARPA]] stated that the costs saved by implementing AI methods for scheduling units in the first [[Gulf War]] have repaid the US government's entire investment in AI research since the 1950s.
61133
61134 ==Philosophy==
61135 {{portalpar|Mind and Brain}}
61136 ''Main article: [[Philosophy of artificial intelligence]]''
61137
61138 The [[strong AI]] vs. weak AI debate is still a hot topic amongst AI [[philosopher]]s. This involves [[philosophy of mind]] and the [[mind-body problem]]. Most notably [[Roger Penrose]] in his book ''[[The Emperor's New Mind]]'' and [[John Searle]] with his &quot;[[Chinese room]]&quot; [[thought experiment]] argue that true [[consciousness]] can not be achieved by [[formal logic]] systems, while [[Douglas Hofstadter]] in ''[[GÃļdel, Escher, Bach]]'' and [[Daniel Dennett]] in ''[[Consciousness Explained]]'' argue in favour of [[Functionalism (philosophy of mind)|Functionalism]]. In many strong AI supporters’ opinion, [[artificial consciousness]] is considered as the [[list of holy grails|holy grail]] of artificial intelligence.
61139
61140 ==Science fiction==
61141 In [[science fiction]] AI is commonly portrayed as an upcoming power trying to overthrow human authority as in [[HAL 9000]], [[Skynet]], [[Colossus: The Forbin Project|Colossus]] and [[The Matrix]] or as service [[humanoid]]s like [[C-3PO]], [[Data (Star Trek)|Data]], the [[Bicentennial Man]], the ''Mechas'' in [[A.I. (film)|A.I.]] or Sonny in [[I, Robot (film)|I, Robot]].
61142 &lt;!--this is not a list of your favorite sci-fi AI, keep it short and use only famous and clear examples--&gt;
61143
61144 The inevitability of AI world domination, sometimes called &quot;[[Technological singularity|the Singularity]]&quot;, is also argued by some science writers like [[Isaac Asimov]], [[Vernor Vinge]] and [[Kevin Warwick]]. In works such as the Japanese [[manga]] ''[[Ghost in the Shell (manga)|Ghost in the Shell]]'', the existence of intelligent machines questions the definition of life as organisms rather than a broader category of autonomous entities, establishing a notional concept of systemic intelligence.
61145 ''See [[list of fictional computers]] and [[list of fictional robots and androids]].''
61146
61147 ==See also==
61148 {{wikibookspar||Artificial Intelligence}}
61149
61150 *[[Philosophy of artificial intelligence]]
61151 *[[Strong Artificial Intelligence]]
61152 *[[Functionalism]] - a philosophical theory of mind which allows for artificial intelligence
61153
61154 Typical problems to which AI methods are applied:
61155 *[[Pattern recognition]]
61156 **[[Optical character recognition]]
61157 **[[Handwriting recognition]]
61158 **[[Speech recognition]]
61159 **[[Facial recognition system|Face recognition]]
61160
61161 *[[Natural language processing]], [[Translation]] and [[Chatterbot]]s
61162 *[[Non-linear control]] and [[Robotics]]
61163 *[[Computer vision]], [[Virtual reality]] and [[Image processing]]
61164 *[[Game theory]] and [[Strategic planning]]
61165 *[[Game AI]] and [[Computer game bot]]
61166 *[[Artificial Creativity]]
61167
61168 Other fields in which AI methods are implemented:
61169 *[[Automation]]
61170 *[[Bio-inspired computing]]
61171 *[[Cybernetics]]
61172 *[[Hybrid intelligent system]]
61173 *[[Intelligent agent]]
61174 *[[Intelligent control]]
61175 *[[Automated reasoning]]
61176 *[[Data mining]]
61177 *[[Behavior-based robotics]]
61178 *[[Cognitive robotics]]
61179 *[[Developmental robotics]]
61180 *[[Evolutionary robotics]]
61181 *[[Chatbot]]
61182 *[[Knowledge Representation]]
61183
61184 == Links to researchers, projects &amp; institutions ==
61185 *[[:Category:Artificial intelligence researchers|List of AI researchers]]
61186 *[[List of Artificial Intelligence projects|List of AI projects]]
61187 *[[List of important publications in computer science#Artificial intelligence|List of important AI publications]]
61188
61189 == External links==
61190
61191 *[http://www.aaai.org/ American Association for Artificial Intelligence]
61192 *[http://agiri.org/ AGIRI - Artificial General Intelligence Research Institute]
61193 *[http://www.eccai.org/ European Coordinating Committee for Artificial Intelligence]
61194 *[http://www.dfki.de/ German Research Center for Artificial Intelligence, DFKI]
61195 *[http://www.cild.iastate.edu/ Center for Computational Intelligence, Learning, and Discovery @ Iowa State University]
61196 *[http://ai-news.elzemozgurce.net/ Artificial Intelligence News]
61197 *[http://www.auai.org/ Association for Uncertainty in Artificial Intelligence]
61198 *[http://www.singinst.org Singularity Institute for Artificial Intelligence]
61199 *[http://www.aisb.org.uk/ The Society for the Study of AI and Simulation of Behaviour]
61200 *[http://www.cs.berkeley.edu/~russell/ai.html University of California at Berkeley AI Resources] links to 868 AI resource pages
61201 *[http://www.loebner.net/Prizef/loebner-prize.html Loebner Prize website].
61202 *[http://commonsense.media.mit.edu/cgi-bin/search.cgi/ OpenMind CommonSense]
61203 *[http://sourceforge.net/softwaremap/trove_list.php?form_cat=133 SourceForge Open Source AI projects] - 1139 projects
61204 *[http://www.aaai.org/AITopics/html/ethics.html Ethical and Social Implications of AI en Computerization]
61205 *[http://www.geocities.com/fhzeya20042000/lisp.htm A tutorial on AI programming language LISP]
61206 *[http://web.media.mit.edu/~minsky/ Marvin Minsky's Homepage]
61207 *[http://www.csail.mit.edu/ MIT's Computer Science and Artificial Intelligence Lab]
61208 *[http://www.isi.edu/divisions/div3/ AI research group at Information Sciences Institute]
61209 *[http://www.alanturing.net/turing_archive/pages/Reference%20Articles/What%20is%20AI.html What is Artificial Intelligence?]
61210 *[http://uk.arxiv.org/abs/cs.AI/0601052 Artificial and biological intelligence]
61211 *[http://plato.stanford.edu/entries/logic-ai/ Stanford Encyclopedia of Philosophy entry on Logic and Artificial Intelligence]
61212 *[http://www.ai-junkie.com/ AI-Junkie: Genetic Algorithm and Neural Network tutorials]
61213 *[http://www-ai.cs.uni-dortmund.de/ Artificial Intelligence Group] @ University of Dortmund, Germany
61214 &lt;!--This is not a list of your pet website or article, or favorite AI software &amp; books. please add those to the appropriate links in the see also section. Keep this list short and use only famous and clear examples--&gt;
61215
61216
61217 [[Category:Artificial intelligence]]
61218 [[Category:Computer science]]
61219
61220 [[ar:Ø°ŲƒØ§ØĄ اØĩØˇŲ†Ø§ØšŲŠ]]
61221 [[bg:ИСĐēŅƒŅŅ‚вĐĩĐŊ иĐŊŅ‚ĐĩĐģĐĩĐēŅ‚]]
61222 [[bs:VjeÅĄtačka inteligencija]]
61223 [[ca:Intel¡ligència artificial]]
61224 [[cs:UmělÃĄ inteligence]]
61225 [[da:Kunstig intelligens]]
61226 [[de:KÃŧnstliche Intelligenz]]
61227 [[et:Tehisintellekt]]
61228 [[es:Inteligencia artificial]]
61229 [[eo:Artefarita inteligenteco]]
61230 [[eu:Adimen artifiziala]]
61231 [[fa:Ų‡ŲˆØ´ Ų…ØĩŲ†ŲˆØšÛŒ]]
61232 [[fr:Intelligence artificielle]]
61233 [[gl:Intelixencia artificial]]
61234 [[ko:ė¸ęŗĩ ė§€ëŠĨ]]
61235 [[hi:ā¤†ā¤°āĨā¤Ÿā¤ŋā¤Ģā¤ŋā¤ļā¤ŋā¤¯ā¤˛ ā¤‡ā¤‚ā¤ŸāĨ‡ā¤˛ā¤ŋā¤œāĨ‡ā¤‚ā¤¸]]
61236 [[hr:Umjetna inteligencija]]
61237 [[io:Artifical inteligenteso]]
61238 [[id:Kecerdasan Buatan]]
61239 [[is:Gervigreind]]
61240 [[it:Intelligenza artificiale]]
61241 [[he:בינה מלאכו×Ēי×Ē]]
61242 [[lt:Dirbtinis intelektas]]
61243 [[hu:MestersÊges intelligencia]]
61244 [[nl:Kunstmatige intelligentie]]
61245 [[ja:äēēåˇĨįŸĨčƒŊ]]
61246 [[no:Kunstig intelligens]]
61247 [[pl:Sztuczna inteligencja]]
61248 [[pt:InteligÃĒncia artificial]]
61249 [[ro:InteligenÅŖă artificială]]
61250 [[ru:ИŅĐēŅƒŅŅŅ‚вĐĩĐŊĐŊŅ‹Đš иĐŊŅ‚ĐĩĐģĐģĐĩĐēŅ‚]]
61251 [[simple:Artificial intelligence]]
61252 [[sk:UmelÃĄ inteligencia]]
61253 [[sl:Umetna inteligenca]]
61254 [[fi:Tekoäly]]
61255 [[sv:Artificiell intelligens]]
61256 [[th:ā¸›ā¸ąā¸ā¸ā¸˛ā¸›ā¸Ŗā¸°ā¸”ā¸´ā¸Šā¸āšŒ]]
61257 [[vi:Trí tuáģ‡ nhÃĸn táēĄo]]
61258 [[tr:Yapay zeka]]
61259 [[uk:ШŅ‚ŅƒŅ‡ĐŊиК Ņ–ĐŊŅ‚ĐĩĐģĐĩĐēŅ‚]]
61260 [[zh:äēēåˇĨæ™ēčƒŊ]]</text>
61261 </revision>
61262 </page>
61263 <page>
61264 <title>Afro Celt Sound System</title>
61265 <id>1166</id>
61266 <revision>
61267 <id>41181483</id>
61268 <timestamp>2006-02-25T16:26:09Z</timestamp>
61269 <contributor>
61270 <ip>24.200.133.131</ip>
61271 </contributor>
61272 <comment>fr</comment>
61273 <text xml:space="preserve">The '''Afro Celt Sound System''' is a [[band (music)|musical group]] which fuses modern [[dance music|dance]] rhythms ([[trip-hop]], [[techno music|techno]], etc.) with [[Celtic music|Celtic]] and [[Africa]]n influences. It was formed by [[Grammy]]-nominated producer-guitarist [[Simon Emmerson]], and is considered to be somewhat of a [[world music]] [[supergroup (bands)|supergroup]], often having a wide range of guest artists on their albums.
61274
61275 Their albums have been released through [[Peter Gabriel]]'s [[Real World Records]], and they are also reportedly the best-selling band on the label, only exceeded in sales by Gabriel himself, and their striking live performances have often become the highlights of the [[WOMAD]] concert festivals. They signed a contract with Real World obliged to release five albums, of which the 2005 release ''Anatomic'' is the last; at this writing it is unclear what path the band will take in the future.
61276
61277 In 2003 they changed their name to the simpler '''Afro Celts'''; however, two of their latest albums, ''Pod'', a compilation of new mixes of songs from the first four albums, and their fifth studio album ''Anatomic'' uses the long and familiar form. This decision is apparently affected by the fact that they seem much more well-known as ''Afro Celt Sound System'' around the world.
61278
61279 ==Band members==
61280 When Afro Celts began their musical journey in the mid-1990s during the [[Real World Records|Real World]] Recording Week the difference between a guest artist and a band member was virtually non-existent, though as time has passed a following combination of people is most often associated with the name Afro Celt Sound System: ''(Please note that the new release Anatomic only lists Simon, James, Iarla and Martin as regulars)''
61281
61282 # [[Simon Emmerson]] (guitar, producing)
61283 # [[N'Faly Kouyate]] ([[kora (instrument)|kora]], [[balaphon]], [[n'goma]], vocals)
61284 # [[Moussa Sissokho]] ([[djembe]], [[talking drum]])
61285 # [[James McNally (musician)|James McNally]] (ex-[[Pogues]]; [[BodhrÃĄn]], [[accordion]], [[Tin whistle|whistle]])
61286 # [[Johnny Kalsi]] (the [[Dhol drum]])
61287 # [[Iarla Ó LionÃĄird]] (vocals)
61288 # [[Emer Maycock]] ([[tin whistle]], [[flute]], [[uillean pipes]])
61289 # [[Martin Russell]] (keyboards, producing, engineering, programming)
61290
61291 ==Discography==
61292 # ''[[Sound Magic (album)|Volume 1: Sound Magic]]'' (1996)
61293 # ''[[Release (album2)|Volume 2: Release]]'' (1999)
61294 # ''[[Further In Time (album)|Volume 3: Further in Time]]'' (2001)
61295 # ''[[Seed (album)|Seed]]'' (2003)
61296 # ''[[Pod (album2)|Pod]]'' (2004)
61297 # ''[[Anatomic (album)|Volume 5: Anatomic]]'' (2005)
61298
61299 ==Related links==
61300 [http://www.realworldrecords.com/afrocelts/ Afro Celts on Real World Records]
61301
61302 [http://www.afrocelts.org/ An Afro Celts Fan Website]
61303
61304 [[Category:World music groups]]
61305
61306
61307 [[ast:Afro Celts]]
61308 [[fi:Afro Celt Sound System]]
61309 [[fr:Afro Celt Sound System]]</text>
61310 </revision>
61311 </page>
61312 <page>
61313 <title>Ancient philosophy</title>
61314 <id>1167</id>
61315 <revision>
61316 <id>37485671</id>
61317 <timestamp>2006-01-31T07:20:53Z</timestamp>
61318 <contributor>
61319 <username>Pschemp</username>
61320 <id>110252</id>
61321 </contributor>
61322 <comment>Reversion to revision 35648191 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
61323 <text xml:space="preserve">{{histphil}}
61324
61325 This page lists some links to '''ancient philosophy''', although for Western thinkers prior to Socrates, see [[Pre-Socratic philosophy]]. In Europe, the spread of Christianity through the Roman world marked the end of [[Hellenistic]] philosophy and ushered in the beginnings of [[Medieval philosophy]].
61326
61327
61328
61329 ==Classical==
61330
61331 ===Greek===
61332 * [[Pericles]] (495-429)
61333 * [[Aspasia]] (469-406)
61334 * [[Socrates]](469-399)
61335 * [[Euclid of Megara]] (450-380)
61336 * [[Antisthenes]] (445-360)
61337 * [[Aristippus]] (435-356)
61338 * [[Plato]] (429-347)
61339 * [[Xenophon]] (429-355)
61340 * [[Speusippus]] (407-339)
61341 * [[Diogenes of Sinope]] (400-325)
61342 * [[Xenocrates]] (396-314)
61343 * [[Aristotle]] (384-322)
61344 * [[Stilpo]] (380-300)
61345 * [[Theophrastus]] (370-288)
61346 * [[Pyrrho]] (365-275)
61347 * [[Epicurus]] (341-270)
61348 * [[Zeno of Citium]] (365-263)
61349 * [[Cleanthes]] (331-232)
61350 * [[Timon (philosopher)|Timon]] (320-230)
61351 * [[Arcesilaus]] (316-232)
61352 * [[Menippus]] (3rd century BC)
61353 * [[Archimedes]] (circa 287 BC - 212 BC)
61354 * [[Chrysippus]] (280-207)
61355 * [[Carneades]] (214-129)
61356 * [[Philo of Larissa]] (160-80)
61357 * [[Posidonius]] (135-51)
61358 * [[Aenesidemus]] (1st century BC)
61359 * [[Philo of Alexandria]] (30 BC - 45 AD)
61360 * [[Plutarch]] (45-120)
61361 ===Roman===
61362 * [[Cicero]] (106-43)
61363 * [[Lucretius]] (94-55 BC)
61364 * [[Seneca the Younger|Seneca]] (4 BC - 65 AD)
61365 * [[Musonius Rufus]] (30 AD - 100)
61366 * [[Epictetus]] (55-135)
61367 * [[Marcus Aurelius]] (121-180)
61368 * [[Clement of Alexandria]] (150-215)
61369 * [[Alcinous]] (2nd century AD)
61370 * [[Sextus Empiricus]] (3rd century AD)
61371 * [[Alexander of Aphrodisias]] (3rd century AD)
61372 * [[Ammonius Saccas]] (3rd century AD)
61373 * [[Plotinus]] (205-270)
61374 * [[Porphyry (philosopher)|Porphyry]] (232-304)
61375 * [[Iamblichus (philosopher)|Iamblichus]] (242-327)
61376 * [[Themistius]] (317-388)
61377 * [[Augustine of Hippo]] (354-430)
61378 * [[Proclus]] (411-485)
61379 * [[Damascius]] (462-540)
61380 * [[Boethius]] (472-524)
61381 * [[Simplicius of Cilicia]] (490-560)
61382
61383 ==Schools of thought in the [[Hellenistic]] period==
61384
61385 *[[Cynicism]]
61386 *[[Epicureanism]]
61387 *[[Hedonism]]
61388 *[[Eclecticism]]
61389 *[[Neo-Platonism]]
61390 *[[Skepticism]]
61391 *[[Stoicism]]
61392
61393 ==Vedic philosophy==
61394
61395 In the east, Indian philosophy begins with the [[Vedas]] where questions related to laws of nature, the origin of the universe and the place of man in it are asked. In the famous [[Rigveda|Rigvedic]] ''Hymn of Creation'' the poet says:
61396
61397 &quot;Whence all creation had its origin,
61398 he, whether he fashioned it or whether he did not,
61399 he, who surveys it all from highest heaven,
61400 he knows--or maybe even he does not know.&quot;
61401
61402 In the [[Vedic religion|Vedic]] view, creation is ascribed to the self-consciousness of the primeval being (''Purusha''). This leads to the inquiry into ''the one being'' that underlies the diversity of empirical phenomena and the origin of all things. Cosmic order is termed ''rta'' and causal law by ''karma''. Nature (''prakriti'') is taken to have three qualities (''[[sattva]]'', ''[[rajas]]'', and ''[[tamas]]'').
61403
61404 *[[Vedas]]
61405 *[[Upanishads]]
61406 *[[Hinduism]]
61407
61408 ==Classical Indian philosophy==
61409
61410 In classical times, these inquiries were systematized in six schools of philosophy. The questions asked were:
61411
61412 *What is the ontological nature of consciousness?
61413 *How is cognition itself experienced?
61414 *Is mind (''chit'') intentional or not?
61415 *Does cognition have its own structure?
61416
61417 The six schools of [[Indian philosophy]] are:
61418
61419 *[[Mimamsa]]
61420 *[[Samkhya]]
61421 *[[Yoga]]
61422 *[[Vaisheshika]]
61423 *[[Nyaya]]
61424 *[[Vedanta]]
61425
61426 ==Old Iranian philosophy==
61427
61428 While there are ancient relations between the Indian [[Vedas]] and the Iranian [[Avesta]], the two main families of the Indo-Iranian philosophical traditions were characterized by fundamental differences in their implications for the human being's position in society and their view on the role of man in the universe. The first charter of [[human rights]] by [[Cyrus the Great]] is widely seen as a reflection of the questions and thoughts expressed by [[Zarathustra]] and developed in zoroastrian schools of thought.
61429
61430 *[[Avesta]]
61431 *[[Gathas]]
61432 *[[Zarathustra]]
61433 *[[Zoroastrianism]]
61434 *[[Mazdakism]]
61435 *[[Manichaeism]]
61436
61437 ==Chinese philosophy==
61438
61439 In China, less emphasis was put upon materialism as a basis for reflecting upon the world and more on conduct, manners and social behaviour, as evidenced by [[Taoism]] and [[Confucianism]].
61440
61441 *[[Chinese philosophy]] -- [[Confucianism]], [[Taoism]], [[Legalism (philosophy)|Legalism]]
61442 *[[Buddhist philosophy]] arose in India but contributions to it were made in [[China]], [[Japan]], and [[Korea]] also.
61443 *[[Eastern philosophy]]
61444
61445 == External links ==
61446 *[http://www.epistemelinks.com/Main/Topics.aspx?TopiCode=Anci Internet sources]
61447
61448 {{Philosophy navigation}}
61449
61450 [[Category:Ancient philosophy| ]]
61451
61452 [[be:ФŅ–ĐģŅĐˇĐžŅ„Ņ–Ņ Đ°ĐŊŅ‚Ņ‹Ņ‡ĐŊĐ°ŅŅŒŅ†Ņ–]]
61453 [[de:Philosophie der Antike]]
61454 [[eo:Greka filozofio]]
61455 [[eu:Kategoria:Haraitzinako filosofia]]
61456 [[fr:Origine de la philosophie]]
61457 [[it:Filosofia antica]]
61458 [[he:פילוסופיה ×ĸ×Ēיקה]]
61459 [[nl:Klassieke filosofie]]
61460 [[pl:Filozofia staroÅŧytna]]
61461 [[ru:АĐŊŅ‚иŅ‡ĐŊĐ°Ņ Ņ„иĐģĐžŅĐžŅ„иŅ]]
61462 [[fi:Antiikin filosofia]]
61463 [[sv:Antikens filosofi]]
61464 [[zh:å¤å¸Œč…Šå“˛å­ĻåŽļ]]</text>
61465 </revision>
61466 </page>
61467 <page>
61468 <title>Anaximander</title>
61469 <id>1168</id>
61470 <revision>
61471 <id>41581865</id>
61472 <timestamp>2006-02-28T07:44:20Z</timestamp>
61473 <contributor>
61474 <username>Zirland</username>
61475 <id>335898</id>
61476 </contributor>
61477 <minor />
61478 <comment>interwiki</comment>
61479 <text xml:space="preserve">[[Image:Anaximander.jpg|thumb|right|Anaximander|200px]]
61480 '''Anaximander''' ([[Greek language|Greek]]: '''&amp;#913;&amp;#957;&amp;#945;&amp;#958;&amp;#943;&amp;#956;&amp;#945;&amp;#957;&amp;#948;&amp;#961;&amp;#959;&amp;#962;''')(c.610 BC&amp;ndash;c. [[546 BC]]) also known as '''Aniximander''', was the second of the physical philosophers of [[Ionia]], a citizen of [[Miletus]], a companion or pupil of [[Thales]], and teacher of [[Anaximenes of Miletus]]. Little is known of his life and work. [[Aelian]] makes him the leader of the Milesian colony to [[Amphipolis]], and hence some have inferred that he was a prominent citizen. The computations of [[Apollodorus of Athens]] have fixed his birth in 611, and his death shortly after 547 B.C.
61481
61482 Ancient sources represent him as a successful student of [[astronomy]] and [[geography]], and an early proponent of [[exact science]]. He has also been said to have introduced such astronomical instruments as the [[sundial]] and the [[gnomon]] to ancient [[Greece]]. Furthermore, he is credited with having created the first map of the world, which was circular in form and showed the known lands of the world grouped around the Aegean Sea at the center and all of this was surrounded by the ocean.
61483
61484 ==Cosmology and the ''apeiron''==
61485 Anaximander's reputation is due mainly to a cosmological work, little of which remains. From the few extant fragments, we learn that he believed the beginning or first principle (''[[arche]],'' a word first found in Anaximander's writings, and which he probably invented) is an endless, unlimited mass ([[apeiron]]), subject to neither old age nor decay, which perpetually yields fresh materials from which everything we can perceive is derived.
61486
61487 He never defined this principle precisely, and it has generally (e.g. by [[Aristotle]] and [[Augustine of Hippo|Augustine]]) been understood as a sort of primal [[Chaos_(mythology)|chaos]]. It embraced the opposites of hot and cold, wet and dry, and directed the movement of things, by which there grew up all of the host of shapes and differences which are found in &quot;all the worlds&quot;--as he believed there were many.
61488
61489 Out of the vague and limitless body there sprang a central mass &amp;mdash; this earth of ours, cylindrical in shape, poised equidistant from surrounding orbs of fire, which had originally clung to it like the bark round a tree, until their continuity was severed, and they parted into several wheel-shaped and fire-filled bubbles of air.
61490
61491 Man himself and the animals had come into being by like transmutations. Mankind was supposed by Anaximander to have sprung from some other species of animals, probably aquatic. For, he thought, man with his extended infancy could not have survived, originally, in the manner he does presently. For this, even though he had no theory of [[natural selection]], some people consider him to be [[evolution]]ary theory's most ancient proponent.
61492
61493 Anaximander offered up the theory of the apeiron in direct response to the earlier theory of his teacher, [[Thales]], who had claimed that the primary substance was [[water]]. Anaximander reasoned that water cannot embrace all of the opposites found in nature &amp;mdash; for example, water can only be wet, never dry &amp;mdash; and therefore, it can not be the one primary substance. Nor could any of the other candidates, so Anaximander postulated the [[apeiron]] as a substance that, although it could not be perceived directly, could explain the opposites he could clearly see around him.
61494
61495
61496 ----
61497 The one surviving fragment of Anaximander was transmitted as a quote by [[Simplicius_of_Cilicia|Simplicius]] and could be translated as
61498 &lt;h3 align=&quot;center&quot;&gt;Whence things have their origin,&lt;br&gt;
61499 Thence also their destruction happens, &lt;br&gt;
61500 As is the order of things; &lt;br&gt;
61501 For they execute the sentence upon one another&lt;br&gt;
61502 - The condemnation for the crime -&lt;br&gt;
61503 In conformity with the ordinance of Time. &lt;/h3&gt;
61504
61505 == Interpretations ==
61506 [[Bertrand Russell]] in ''The History of Western Philosophy'' interprets the above quote as an assertion of the necessity of an appropriate balance between earth, fire, and water elements, all of which may be independently seeking to aggrandize their proportions relative to the others. Anaximander seems to express his belief that a natural order ensures balance between these elements, that where there was fire, ashes (earth) now exist. Anaximander's Greek peers echoed this sentiment with their belief of natural boundaries that not even their Gods could operate beyond.
61507
61508
61509 [[Nietzsche]], in his ''[[Philosophy in the Tragic Age of the Greeks]]'', claimed that Anaximander was a pessimist. Anaximander asserted that the primal being of the world was state of indefiniteness. In accordance with this, anything definite has to eventually pass back into indefiniteness. In other words, Anaximander viewed &quot;...all coming-to-be as though it were an illegitimate emancipation from eternal being, a wrong for which destruction is the only penance.&quot; (''Ibid.'', § 4) The world of individual objects, in this way of thinking, has no worth and should perish.
61510
61511 == Known Works ==
61512
61513 ''On Nature'', circa ?
61514 :; Subject : Philosophy
61515 :; Referenced in : [[Simplicius_of_Cilicia|Simplicius]] in Phys., p. 24, 13sq.
61516 :; Authenticity : Likely
61517
61518 Map, circa ? (lost)
61519 :; Subject : (First?) Map of his Known World
61520 :; Referenced in : [[Agathemerus]], [[Geographie informatio]]
61521 :; Authenticity : Likely
61522
61523 Some of Anaximander's ideas were also preserved in [[Theophrastus]]'s (lost) history of philosophy, and re-quoted by later authors.
61524
61525 ==Honors==
61526 * [[Anaximander (crater)|Anaximander crater]] on the [[Moon]], at 66N, 48W, is named after him. For a picture, see:
61527 * http://www.dirkcouprie.nl/Anaximander.html
61528 * The [[asteroid]] [[6006 Anaximandros]] is also named after him.
61529
61530 ==References==
61531 Dirk L.Couprie, Roobert Hahn, and Gerard Naddaf, 2003. 'Anaximander in Context: New Studies in the Origins of Greek Philosophy', Albany N.Y.: State University of New York Press
61532
61533 ==See also==
61534 *[[Milesian school]]
61535
61536 ==External links==
61537
61538 * &quot;http://www.utm.edu/research/iep/a/anaximan.htm&quot; Anaximander from The Internet Encyclopedia of Philosophy.
61539 * &quot;http://www.dirkcouprie.nl/Anaximander-bibliography.htm&quot; for an extensive bibliography.
61540
61541 {{1911}}
61542
61543 {{Presocratics}}
61544
61545 [[Category:610 BC births]]
61546 [[Category:609 BC births]]
61547 [[Category:547 BC deaths]]
61548 [[Category:Ancient Greek philosophers]]
61549 [[Category:Presocratic philosophers]]
61550
61551 [[ar:ØŖŲ†Ø§ŲƒØŗŲŠŲ…اŲ†Ø¯Øą]]
61552 [[bg:АĐŊĐ°ĐēŅĐ¸ĐŧĐ°ĐŊĐ´ŅŠŅ€]]
61553 [[bs:Anaksimandar]]
61554 [[ca:Anaximandre de Milet]]
61555 [[cs:Anaximandros]]
61556 [[da:Anaximander]]
61557 [[de:Anaximander]]
61558 [[el:ΑÎŊÎąÎžÎ¯ÎŧÎąÎŊδĪÎŋĪ‚]]
61559 [[es:Anaximandro]]
61560 [[eo:Anaksimandro]]
61561 [[eu:Anaximandros]]
61562 [[fa:ØĸŲ†Ø§ÚŠØŗیŲ…اŲ†Ø¯Øą Ų…Ų„ØˇÛŒ]]
61563 [[fr:Anaximandre]]
61564 [[gl:Anaximandro de Mileto]]
61565 [[hr:Anaksimandar]]
61566 [[id:Anaximander]]
61567 [[is:Anaxímandros]]
61568 [[it:Anassimandro]]
61569 [[he:אנכסימנדרוס]]
61570 [[la:Anaximander]]
61571 [[lv:Anaksimandrs]]
61572 [[hu:Anaximandrosz]]
61573 [[nl:Anaximandros]]
61574 [[ja:ã‚ĸãƒŠã‚¯ã‚ˇãƒžãƒŗドロ゚]]
61575 [[no:Anaximander]]
61576 [[nn:Anaximander]]
61577 [[pl:Anaksymander]]
61578 [[pt:Anaximandro de Mileto]]
61579 [[ro:Anaximandru]]
61580 [[ru:АĐŊĐ°ĐēŅĐ¸ĐŧĐ°ĐŊĐ´Ņ€]]
61581 [[sk:Anaximandros]]
61582 [[sl:Anaksimander]]
61583 [[sr:АĐŊĐ°ĐēŅĐ¸ĐŧĐ°ĐŊĐ´Đ°Ņ€]]
61584 [[fi:Anaksimandros]]
61585 [[sv:Anaximander]]
61586 [[tr:Anaksimandros]]
61587 [[zh:é˜ŋé‚Ŗ克čĨŋæ›ŧåžˇ]]</text>
61588 </revision>
61589 </page>
61590 <page>
61591 <title>APL</title>
61592 <id>1169</id>
61593 <revision>
61594 <id>38930486</id>
61595 <timestamp>2006-02-09T16:18:44Z</timestamp>
61596 <contributor>
61597 <ip>194.39.218.10</ip>
61598 </contributor>
61599 <text xml:space="preserve">'''APL''' is an [[abbreviation]], [[Acronym and initialism|acronym]], or [[Acronym and initialism|initialism]] that may refer to:
61600 *[[Acute promyelocytic leukemia]], a subtype of [[acute myelogenous leukemia]]
61601 *[[American President Lines]], a [[Singapore]]-based container transportation and shipping company
61602 *[[American Protective League]], a WWI era pro-war organization
61603 *[[Association of Pension Lawyers]]
61604 *[[APL programming language]], an [[array programming]] language invented in 1962
61605 *The [[Adaptive Public License]]
61606 *The [[Apple Public License]]
61607 *The [[AROS Public License]]
61608 *Applied Physics Letters (a journal published by [[American Institute of Physics]], [http://scitation.aip.org/aplo/ website])
61609 *The [[Applied Physics Laboratory|Applied Physics Laboratory]] at [[Johns Hopkins University]]
61610 *The [[Applied Physics Laboratory (University of Washington)|Applied Physics Laboratory]] at the [[University of Washington]]
61611 *The [[United States Navy]] [[hull classification symbol]] for Barracks Craft
61612 *[[Australian Pork Limited]]
61613 *The rap singer [[Allan Pineda Lindo]]
61614 *The [[metadata]] format for [[Monkey's Audio]] files
61615 *[[average picture level]]
61616 {{TLAdisambig}}
61617
61618 [[da:APL (flertydig)]]
61619 [[de:APL]]
61620 [[fr:APL]]</text>
61621 </revision>
61622 </page>
61623 <page>
61624 <title>Architect</title>
61625 <id>1170</id>
61626 <revision>
61627 <id>42018152</id>
61628 <timestamp>2006-03-03T06:27:24Z</timestamp>
61629 <contributor>
61630 <username>Jamesandra</username>
61631 <id>991772</id>
61632 </contributor>
61633 <comment>/* Notable Schools of Architecture */</comment>
61634 <text xml:space="preserve">{{otheruses}}
61635 [[Image:Architect.png|thumb|Architect at his drawing board, 1893]]
61636
61637 An '''architect''' is a person involved in the [[planning]], [[Design|designing]] and oversight of a [[Building|building's]] [[construction]]. The most basic definition of an architect is a professional who is qualified to design and provide advice - functional, aesthetic and technical - on built objects in our public and private landscapes. More generally, an architect is the designer of a scheme or plan.
61638
61639 &quot;Architect&quot; is derived from Latin: ''architectus'', and from Greek: ''arkhitekton'' (master builder), ''arkhi'' (chief) + ''tekton'' (builder, carpenter). [http://www.etymonline.com/index.php?search=architect&amp;searchmode=none]
61640
61641 In the broadest sense, an '''architect''' is a person who interfaces between the end user of a planned structure and the [[builder]]. That is, the architect translates the user's needs into the builder's requirements. The architect must be completely conversant with the user's environment, that is, the area of business or industry for which the structure is to be used, so that s/he can fully and completely understand the image of the final result that the user is trying to convey. Equally as important, the architect must thoroughly understand the building and operational codes with which the builder must conform and, upon completion, during use of the structure. That degree of knowledge is necessary so that s/he is not apt to omit any necessary requirements, or produce improper, conflicting, ambiguous, or confusing requirements. S/he must understand the various methods available to the builder for building the user's structure, so that s/he can negotiate with the user to produce a best possible compromise of the results desired within explicit cost and time boundaries.
61642
61643 Architects are professionals considered on par with doctors, engineers, and lawyers, and they must frequently make building design and planning decisions that affect the safety and well being of the general public. Architects are required to obtain specialized education and documented work experience to obtain professional licensure, similar to the requirements for other [[professional]]s, with requirements for practice varying greatly from place to place (see below).
61644
61645 The most prestigious award a living architect can receive is the [[Pritzker Prize]]. It is considered the equivalent of the [[Nobel Prize]] for [[architecture]]. Other awards for excellence in architecture are given by national and regional professional associations such as the [[American Institute of Architects]] and [[Royal Institute of British Architects]].
61646
61647 &lt;!--If you would like to describe someone who is not an architect, please consider adding another entry (or at least creating another paragraph). This one is intended to define the professional term Architect, which has a legal definition in most areas.--&gt;
61648
61649 &lt;!--This is not a legal dictionary--&gt;
61650
61651 Although '''architect''' may be a specific term referring to a licensed professional, the word is frequently used in the broader sense noted above to define someone who brings order to the built or unbuilt environment through the use of rational constructs using (engineering) design tools. ['''Note:''' someone who brings order to the built and/or unbuilt environment through the use of rational '''or irrational''' constructs and '''who may or may not use''' design tools is normally referred to as an [[artist]]. Although structures described by [[architectures]] may often be said to contain [[artistic]] features, as a whole they are rarely referred to as works of [[art]]. Similarly, works of [[art]] are rarely referred to as having an [[architecture]].]
61652
61653 For example, '''naval architects, software architects,''' etc., and graduates of schools of architecture not doing regulated project/construction documents are often called '''architects.''' However, '''non-licensed architects''' and designers working in the [[construction industry]] are prohibited from referring to themselves as '''architects''' in most countries.
61654
61655 ==Canada==
61656 In [[Canada]], architects are required to belong to provincial architectural associations that require them to complete an accredited degree in architecture, finish a multi-year internship process, pass a series of exams, and pay an annual fee to acquire and maintain a license to practice.
61657
61658 The [[Royal Architectural Institute of Canada]] [http://www.raic.org/] aims to be &quot;the voice of Architecture and its practice in Canada.&quot; Architects who are members of this organization are permitted to use the suffix MRAIC after their names. All members of the RAIC hold accredited degrees in architecture, but not all Canadian architects are members of the RAIC.
61659
61660 ==UK==
61661
61662 Architects in the [[UK]] qualify through courses and exams recognized by the [[Royal Institute of British Architects]] (RIBA) and prescribed by the [[Architects_Registration_Board|Architects Registration Board]] (ARB).
61663
61664 Typically the sequence of education leading to full [[professional certification|qualification]] and registration takes seven years and is:
61665
61666 * Three-year degree course
61667 * RIBA Part 1 exam
61668 * One year’s professional experience
61669 * Further two-year course
61670 * RIBA Part 2 exam
61671 * Another year’s professional experience
61672 * RIBA Part 3 exam
61673
61674 The title ‘architect’ has legal protection in the United Kingdom; under the [http://www.opsi.gov.uk/acts/acts1997/97022--f.htm#20 Architects Act 1997] it is against the law for people who are not registered to practise or carry on business under any name, style or title that contains the word.
61675
61676 However, [[draughtsmen]] and [[architectural technologists]] (previously architectural technicians), as well as many who have chosen not to register, may also provide architectural services.
61677
61678 ==USA==
61679 In the [[United States]], people wishing to become licensed architects (interns) are required to have a degree from a school accredited by the [[#External Links|NAAB]] and pass a series of exams administered by the National Council of Architectural Registration Boards (NCARB), referred to as the [[Architect Registration Exam]]ination (the ARE). In addition, interns must have a minimum of 3 years of documented, practical work experience (quantity depends on type of educational experience and type of educational degree earned) working under a licensed Architect before they may become eligible to take the ARE. Although the ARE is a national exam, each state has specific requirements and issues their own licenses (including California and Hawaii), due to varying environmental conditions in each region. Other states have reciprocity agreements, so licenses may be easily transferred between certain states. Schooling is not always required in such states as New York, for someone who works at least 10 years under an accredited architect is eligible for a licensing test.
61680
61681 There are three types of accredited (&quot;professional&quot;) degrees in architecture in the United States; a Bachelor of Architecture, a Master of Architecture, or a Doctor of Architecture (abbreviated as B.Arch., M.Arch., and D.Arch., respectively). These are called professional degrees as they are required to enter the profession. A Bachelor of Arts in Architecture (BA), Bachelor of Fine Arts in Architecture (BFA Arch), Bachelor of Science in Architecture (BS), or Bachelor of Environmental Design (B.Envd) typically takes four years - as opposed to five for a B. Arch degree - and is considered a pre-professional degree. However a professional degree may still be required (to take the ARE and to practice) and the programs are often combined usually leading to an M.Arch degree. A pre-professional degree is not necessary to enter a professional degree program, but accelerates completion. It is possible to become licensed as an Architect in other ways: reciprical licensure for over-seas architects and working under an architect as an intern for an extended period of time. Following graduation from a professional program, documented apprenticeship (typically 3 year internship) is required before the individual is eligible to take the ARE and become licensed.
61682
61683 The [[American Institute of Architects]] [http://www.aia.org] is a professional organization dedicated to offering a network of services to architects in the United States. Architects who are members of this organization are permitted to use the suffix AIA after their names. All architects who are licensed by their respective states have professional status as Registered Architects (RA), which is the suffix used if the architect is not also a member of the AIA.
61684
61685 ==Hong Kong==
61686 In [[Hong Kong]] to be an architect, one must be a graduate of a university specified by the HKIA plus a two year internship, then take the architect registration examination. Architects from U.K. and U.S.A. with 10 years experience aren't required to take the examination, but are required to attend an interview just as a formality.
61687
61688 Architects in Hong Kong are not authorized to submit building plans but use it as a 'title' only, unlike in most of the western world which carries a statutory obligation. To be able to submit building plans, architects, engineers or surveyors must go through another step by passing an authorized personal interview. Contrary to popular thought, most of the famous buildings in Hong Kong are designed by well-known international 'brand' architects and local architects act only as facilitators.
61689
61690 ==Australia==
61691 In [[Australia]] the title architect is legally protected and architects are registered through state boards. These boards are affiliated through the [http://www.aaca.org.au/index.html Architects Accreditation Council of Australia]. The AACA also provides accrediation for schools and assessments for architects with overseas qualifications for the purposes of migration.
61692
61693 There are three key requirements for registration. The first is a professional degree from a school of architecture accredited by the AACA. This is generally a Bachelor of Architecture degree of five or six years duration. The second is at least two years of practical experience and the third is the completion of the architectural practice examination.
61694
61695 Architects may also belong to the [http://www.architecture.com.au Royal Australian Institute of Architects] which is the professional organisation and members use the suffix RAIA after their name.
61696
61697 ==Famous architects==
61698 The architects in the [[List of architects|list of famous architects]] are in chronological order of when they did their most important work (or emerged), and alphabetized within each time period.
61699
61700
61701
61702 ==Notable Schools of Architecture==
61703
61704 *[[Architectural Association School of Architecture]], [[London]]
61705 *The Bartlett School of Architecture [http://www.bartlett.ucl.ac.uk/architecture/programmes/bsc.htm], Faculty of the Built Environment (London, UK)
61706 *[[Berlage Institute]] [http://www.berlage-institute.nl/], [[Rotterdam]]
61707 *[[Bauhaus]]: [[Weimar, Germany|Weimar]], [[Dessau]], and [[Berlin]]
61708 *[[Columbia University]] [http://www.columbia.edu/], Grad. School of Architecture Planning and Preservation ([[GSAPP]]) [http://www.arch.columbia.edu/]
61709 *The School of Art, Architecture and Planning [http://www.architecture.cornell.edu/] at [[Cornell University]] in Ithaca, New York
61710 *[[Dalhousie University]] (TUNS) School of Architecture [http://architectureandplanning.dal.ca/architecture/index.shtml] in Halifax, NS, Canada
61711 *[[École Nationale SupÊrieure d'Architecture de Versailles]], [[Versailles]], [[France]] [http://www.versailles.archi.fr]
61712 *[http://www.arch.ethz.ch/ ETH Zurich], [[Switzerland]]
61713 *[[Glasgow School of Art]], [[Glasgow]], [[Scotland]]
61714 *[[Harvard Graduate School of Design]]
61715 * University Institute of Architecture, [[Venice]], Italy
61716 * The School of Architecture[http://www.mcgill.ca/architecture/] at [[McGill University]]
61717 *[http://www.design.upenn.edu/index.php Penn Design] at the [[University of Pennsylvania]] in [[Philadelphia]], [[Pennsylvania]]
61718 *[[Politecnico di Milano]], [[Milan]], Italy
61719 *[[Rhode Island School of Design]] [http://www.risd.edu/]
61720 *[[Rural Studio]] [http://www.ruralstudio.org], of [[Auburn University]], [[Alabama]]
61721 *[http://arch.rwth-aachen.de/ RWTH Aachen], [[Germany]]
61722 *[[University of California, Berkeley|UC Berkeley]] College of Environmental Design
61723 *[[University of Texas at Austin]] School of Architecture
61724 *[[University of Washington]] [[College of Architecture and Urban Planning]]
61725 *[http://www.architecture.uwaterloo.ca/ School of Architecture] at the [[University of Waterloo]], Canada
61726 *[http://www.cardiff.ac.uk/archi/ Welsh School of Architecture], [[Cardiff University]], [[Cardiff]], [[UK]]
61727 *[[Yale University|Yale]] School of Architecture [http://www.architecture.yale.edu/] in New Haven, Connecticut
61728 *[[CCNY]] School of Architecture [http://www1.ccny.cuny.edu/prospective/architecture/] in New York City
61729
61730 ==See also==
61731 *[[Architecture]]
61732 *[[Architectural Designer]]
61733 *[[Architectural technologists]]
61734 *[[Building design]]
61735 *[[Civil engineer]]
61736 *[[Civil engineering]]
61737 *[[Clerk of the Works]]
61738 *[[Landscape architect]]
61739 *[[Landscape architecture]]
61740 *[[Naval architect]]
61741 *[[Project manager|Project Manager]] (PM)
61742 *[[Project Architect]] (PA)
61743 *[[Regional planning]]
61744 *[[Structural engineer]]
61745 *[[Structural engineering]]
61746 *[[Urban planning]]
61747 *[[Urban planner]]
61748 *[[Vernacular Architecture]]
61749
61750 ==External links==
61751 *[http://www.riba.org/ Royal Institute of British Architects] - Professional association for architects in the United Kingdom
61752 *[http://www.raic.org/ Royal Architectural Institute of Canada] - Professional association for architects in Canada
61753 *[http://www.aia.org/ American Institute of Architects] - Professional association for architects in the United States
61754 *[http://www.ncarb.org/ National Council of Architectural Registration Boards] - Administers professional registration testing in the United States
61755 *[http://www.naab.org/ National Architectural Accrediting Board] - Professional degree programs in architecture schools in the United States
61756 *[http://www.architecture.com.au Royal Australian Institute of Architects] - Professional association for architects in Australia
61757 *[http://architect.architecture.sk/ Famous architects] Biographies of well-known architects, almost all of the Modern Movement.
61758
61759 [[Category:Architects| ]]
61760 [[Category:Architecture and engineering occupations]]
61761 [[Category:Professions|Architect]]
61762 [[Category:Professional certification]]
61763
61764
61765 [[da:Arkitekt]]
61766 [[de:Architekt]]
61767 [[fi:Arkkitehti]]
61768 [[fr:Architecte]]
61769 [[he:אדריכל]]
61770 [[id:Arsitek]]
61771 [[io:Arkitekto]]
61772 [[it:Architetto]]
61773 [[nl:Architect]]
61774 [[ja:åģēį¯‰åŽļ]]
61775 [[nn:Arkitekt]]
61776 [[pl:Architekt]]
61777 [[pt:Arquiteto]]
61778 [[uk:АŅ€Ņ…Ņ–Ņ‚ĐĩĐēŅ‚ĐžŅ€]]
61779 [[zh:åģēį­‘师]]</text>
61780 </revision>
61781 </page>
61782 <page>
61783 <title>Abbreviation</title>
61784 <id>1171</id>
61785 <revision>
61786 <id>42059270</id>
61787 <timestamp>2006-03-03T14:54:36Z</timestamp>
61788 <contributor>
61789 <username>Manop</username>
61790 <id>292857</id>
61791 </contributor>
61792 <minor />
61793 <comment>adding th</comment>
61794 <text xml:space="preserve">{{mergefrom|Apocopation}}
61795 '''Abbreviation''' (from [[Latin]] ''brevis'' &quot;short&quot;) is strictly a shorter form of a word, but more particularly, an ''abbreviation'' is a letter or group of letters, taken from a word or words, and employed to represent them for the sake of brevity. For example, the word &quot;abbreviation&quot; can be abbreviated as &quot;abbr.&quot; or &quot;abbrev.&quot;
61796
61797 == Types of abbreviations ==
61798
61799 Apart from the common form of shortening one word, there are other types of abbreviations. These include [[acronym and initialism]] (including [[TLA]]),
61800 [[apocopation]] (that is, apocope), [[clipping (phonetics)]], [[elision]], [[syncope]], syllabic abbreviation, [[portmanteau]].
61801
61802 === Syllabic abbreviation ===
61803 A syllabic abbreviation (SA) is an abbreviation formed from (usually) initial [[syllable]]s of several [[Word (linguistics)|word]]s, such as ''[[Interpol]]'' for '''''Inter'''national '''pol'''ice''.
61804
61805 SAs are usually written in [[lower case]], sometimes starting with a [[capital letter]], and are always [[pronunciation|pronounced]] as words rather than letter by letter.
61806
61807 SAs should be distinguished from [[portmanteau]]x.
61808
61809 ==== Use in different languages ====
61810
61811 Syllabic abbreviations are not widely used in [[English language|English]] or [[French language|French]], but are common in [[German language|German]].
61812
61813 They prevailed in [[Nazi Germany|Germany under the Nazis]] and in the [[Soviet Union]] for naming the plethora of new bureaucratic organizations. For example, ''[[Gestapo]]'' stands for '''''Ge'''heime '''Sta'''ats-'''Po'''lizei'', or &quot;secret state police&quot;. This has given SAs a negative connotation, even though SAs were used in Germany before the Nazis, e.g., ''[[:de:Schupo|Schupo]]'' for ''Schutzpolizei''. Even now Germans call part of their police ''[[Kripo]]'' for ''Kriminalpolizei''. SAs were also typical of German language used in the [[German Democratic Republic]], e.g. ''[[Stasi]]'' for ''Staatssicherheit'' (&quot;state security&quot;, the secret police) or ''Vopo'' for ''Volkspolizist'' (&quot;people's policeman&quot;).
61814
61815 [[East Asia]]n languages whose writing uses [[Chinese language|Chinese]]-originated [[ideogram]]s instead of an alphabet form abbreviations similarly by using key [[Chinese character|character]]s from a term or phrase. For example, in [[Japanese language|Japanese]] the term for the [[United Nations]], ''kokusai reng&amp;#333;'' (&amp;#22269;&amp;#38555;&amp;#36899;&amp;#21512;) is often abbreviated to ''kokuren'' (&amp;#22269;&amp;#36899;). Another classic example is ''[[shogun]]''. Such abbreviations are called [[:ja:&amp;#30053;&amp;#35486;|ryakugo]] (&amp;#30053;&amp;#35486;) in [[Japanese language|Japanese]]. SAs are frequently used for names of universities: for instance, ''Beida'' (北大, Běidà) for [[Peking University]] ([[Beijing]]) and '''Tōdai'' (æąå¤§) for the [[University of Tokyo]].
61816
61817 ==== Usage of syllabic abbreviations in organisations ====
61818
61819 Syllabic abbreviations are preferred by the US [[Navy]] as it increases readability amidst the large number of [[initialism]]s that would otherwise have to fit into the same [[acronym]]s. Hence ''[[DESRON]] 6'' is used (in the full capital form) to mean &quot;Destroyer Squadron 6,&quot; while ''[[COMNAVFORLANT]]'' would be &quot;Commander, Naval Force (in the) Atlantic.&quot;
61820
61821 ==Style conventions==
61822 In [[modern English]] there are several conventions for abbreviations and the choice may be confusing. The only rule universally accepted is that one should be ''consistent,'' and to this end publishers express their preferences in a [[style guide]].
61823
61824 Questions which arise include the following:
61825 * Use of upper or lower case letters. If the original word was capitalised, then the first letter of its abbreviation should retain the capital, for example Lev. for Leviticus. When abbreviating words spelled with lower case letters, there is no consistent rule.
61826 * Use of periods (full stops) and spaces, for example when abbreviating United States, should one write &quot;US&quot;, &quot;U.S.&quot; or &quot;U.&amp;nbsp;S.&quot;? Spaces are generally not used between single letter abbreviations of words in the same phrase, so one almost never encounters &quot;U.&amp;nbsp;S.&quot;. In [[American English]], the period is usually added if the abbreviation may be interpreted as a word, though some American writers do not use a period here. There is no stop/period between letters of the same word, for example St. and not S.t. for Saint. While users of [[British English]] often abbreviate in the same manner, it is more common in formal writing that abbreviations are written with full stops if the word has been cut at the point of abbreviation (''e.g.,'' &quot;Street&quot; &amp;ndash; &quot;St[reet]&quot; &amp;ndash; becomes &quot;St.&quot;), but not otherwise (''e.g.,'' &quot;Saint&quot; &amp;ndash; &quot;S[ain]t&quot; &amp;ndash; becomes &quot;St&quot;); a third standard removes the full stops from all abbreviations (''e.g.,'' both &quot;Saint&quot; and &quot;Street&quot; become &quot;St&quot;). Thus in the [[United Kingdom]], titles such as &quot;Doctor&quot;, &quot;Mister&quot; and &quot;Mis'ess&quot; are commonly abbreviated as &quot;Dr&quot;, &quot;Mr&quot;, and &quot;Mrs&quot; respectively, they are also frequently written, as in Canada and the U.S., as &quot;Dr.&quot;, &quot;Mr.&quot; and &quot;Mrs.&quot; &lt;!--British English does not have a single standard. See [[American and British English differences]]--&gt;
61827 * [[Acronym]]s that were originally capitalized (with or without periods) but have since &quot;stood the test of time&quot; by entering the vocabulary as generic words are no longer abbreviated with capital letters nor with any periods&amp;mdash;''e.g.,'' [[sonar]], [[radar]], [[ladar]], [[laser]], and [[scuba]].
61828 * Whether to add an apostrophe for a plural where the plural is not formed by doubling up the last letter: should one write CDs or CD's? The apostrophe is not needed grammatically but sometimes is added to make it clear that the ''s'' is not part of the abbreviation. Because the apostrophe most often represents possession or a contraction, some style guides prefer that it not be used at all with abbreviations, but only with individual ''letters''&amp;mdash;&quot;Dot all your i's and cross all your t's!&quot; or &quot;Mind your p's and q's!&quot;&amp;mdash;or ''numbers''&amp;mdash;&quot;The dyslexic student mixes up his S's and 5's.&quot; Thus numbers, such as decades, that are understood to ''represent'' other concepts, are not written with apostrophes either&amp;mdash;''e.g.,'' &quot;The U.S. enjoyed an economic boom in the 1990s and the Roaring ’20s&quot;, referring to decades, or &quot;I am going to the bank to exchange four 5's for two 10's&quot;, where the 5's and 10's refer to banknotes.
61829
61830 Conventions followed by publications and newspapers:
61831 * Publications based in the United States tend to follow the style guides of the [[Chicago Manual of Style]] and the [[Associated Press]]. The [[U.S. Government]] follows a style guide published by the [[U.S. Government Printing Office]].
61832 ** There is some inconsistency in abbreviation styles, however, as they are not rigorously defined by style guides. Some two-word abbreviations, like &quot;United Nations&quot;, are abbreviated with uppercase letters and periods, and others, like &quot;personal computer&quot; (PC) and &quot;compact disc&quot; (CD), are not; rather, they are typically abbreviated without periods and in uppercase letters. A third variation is to use lowercase letters with periods; this is used by Time Magazine in abbreviating &quot;public relations&quot; (p.r.). Moreover, even three-word abbreviations (most U.S. publications use uppercase abbreviations without periods) are sometimes not consistently abbreviated, even within the same article.
61833 ** ''[[The New York Times]]'' is unique in having a consistent style by always abbreviating with periods: P.C., I.B.M., P.R. This is in contrast with the trend of British publications to completely make do without periods for convenience.
61834
61835 * Many British publications follow some of these guidelines in abbreviation:
61836 ** For the sake of convenience, many British publications, including the [[BBC]] and ''[[The Guardian]]'', have completely done away with the use of full stops or periods in all abbreviations. These include:
61837 *** Social titles, like Ms or Mr (though these would not have had full stops in any case &amp;mdash; see above) Capt, Prof, ''etc.;''
61838 *** Two-letter abbreviations for countries (US, not U.S.);
61839 *** Words are seldom abbreviated with lower case letters (PR, instead of p.r., or pr)
61840 *** Abbreviations beyond three letters (full caps for all except initialisms);
61841 *** Names (''e.g.,'' FW de Klerk, GB Whiteley, Park JS). A notable exception is the ''Economist'' (''e.g.,'' Mr F. W. de Klerk)
61842 *** Scientific units.
61843 ** [[Acronym]]s are referred to with only the first letter of the abbreviation capitalised. For instance, the [[North Atlantic Treaty Organisation]] can be abbreviated as Nato, and [[Severe Acute Respiratory Syndrome]] as Sars. [[Initialism]]s (which are similar to acronyms but which are not pronounced as words) are always written in capitals, for instance the British Broadcasting Corporation is abbreviated to BBC, never Bbc.
61844 ** When abbreviating scientific units, no space is added between the number and unit (''e.g.,'' 100mph, 100m, 10cm, 10ÂēC).
61845
61846 Miscellaneous and general rules
61847 * Plurals are often formed by doubling up the last letter of the abbreviation. Most of these deal with writing and publishing: MS=manuscript, MSS=manuscripts; l=line, ll=lines; p=page, pp=pages; s=section, ss=sections; op.=opus, opp.=opera). This form, derived from [[Latin]] is used in Europe in many places: dd=[[didot]]s. &quot;The following (lines or pages)&quot; is denoted by ff. One example that does not concern printing is hh=[[hand (unit)|hand]]s.
61848 * A doubled letter also appears in abbreviations of some Welsh names, as in [[Welsh language|Welsh]] the double &quot;l&quot; is a separate sound: &quot;Ll. George&quot; for (British prime minister) [[Lloyd George]].
61849 * Some titles, such as &quot;Reverend&quot; and &quot;Honourable&quot;, are spelt out when preceded by &quot;the&quot;, rather than as &quot;Rev.&quot; or &quot;Hon.&quot; respectively. This is true for most British publications, and some in the United States.
61850 * It is usually advised to spell out the abbreviation where it is new or unfamiliar to the reader (''e.g.,'' UNESCO in a magazine about ''music,'' because it more frequently refers to another entity in another context, the &lt;u&gt;U&lt;/u&gt;nited &lt;u&gt;N&lt;/u&gt;ations &lt;u&gt;E&lt;/u&gt;ducational, &lt;u&gt;S&lt;/u&gt;cientific and &lt;u&gt;C&lt;/u&gt;ultural &lt;u&gt;O&lt;/u&gt;rganization).
61851
61852 ==History==
61853 After [[World War II]], the British greatly reduced their use of the full stop and other punctuations after abbreviations in at least semi-formal writing, while the Americans more readily kept its use until more recently, and still maintain it more than Britons. The classic example, considered by their American counterparts quite curious, was the maintenance of the internal comma in a British organization of secret agents called the &quot;Special Operations, Executive&quot; &amp;ndash; &quot;S.O.,E.&quot; &amp;ndash; which is not found in histories written after about 1960.
61854
61855 But before that, many Britons were more scrupulous at maintaining the French form. In [[French language|French]], the period only follows an abbreviation if the last letter in the abbreviation is ''not'' the last letter of its antecedent: &quot;M.&quot; is the abbreviation for &quot;''monsieur''&quot; while &quot;Mme&quot; is that for &quot;''Madame''&quot; and &quot;Mlle&quot; for &quot;''Mademoiselle''&quot;. Like many other cross-[[English Channel|channel]] linguistic acquisitions, many Britons readily took this up and followed this rule themselves, while the Americans took a simpler rule and applied it rigorously.
61856
61857 Over the years, however, the lack of convention in some style guides has made it difficult to determine which two-word abbreviations should be abbreviated with periods and which should not. The U.S. media tend to abbreviate two-word abbreviations like United States (U.S.), but surprisingly, not personal computer (PC) or television (TV), which is a source of confusion. Many British publications have gradually done away with the use of periods in abbreviations completely.
61858
61859 ==Examples==
61860 *[[List of classical abbreviations]]
61861 *[[List of mediaeval abbreviations]]
61862 *[[List of abbreviations in use in 1911]]
61863 *[[List of acronyms and initialisms]]
61864 *[[Wiktionary:Wiktionary:Abbreviations in Webster|The abbreviations used in the 1913 edition of Webster's dictionary]]
61865
61866
61867
61868 ==See also==
61869 *[[List of syllabic abbreviations]]
61870 *[[Neologism]], word, term, or phrase which has been recently created
61871 *[[Internet slang]], [[list of computing and IT abbreviations]], [[list of medical abbreviations]], [[list of government and military acronyms]], [[Wikipedia:Abbreviations used in CIA World Factbook|abbreviations used in CIA World Factbook]],
61872 *[[ISO language code]], [[ISO country code]].
61873 *[[Ditloid]]
61874
61875 == External links ==
61876 {{wiktionarypar|abbreviation}}
61877 {{Wikisource1911Enc|Abbreviation}}
61878 * [http://www.abbreviationz.com/ AbbreviationZ] acronyms, abbreviations &amp; Initialisms directory.
61879 * [http://www.acronyma.com/ Acronyma]&amp;mdash;large database of acronyms and abbreviations (over 450,000 entries)
61880 * [http://www.acronymfinder.com/ Acronym Finder]&amp;mdash;searchable acronyms and abbreviations site (over 470,000 entries)
61881 * [http://www.special-dictionary.com/acronyms/ Special Dictionary]&amp;mdash;large abbreviation, acronym and initialism database with lookup function.
61882 * [http://www.aresearchguide.com/comabb.html Common, Uncommon and Specialized Abbreviations]
61883
61884
61885 [[Category:Abbreviations]]
61886
61887 [[cs:Zkratka]]
61888 [[da:Forkortelse]]
61889 [[de:AbkÃŧrzung]]
61890 [[es:Abreviatura]]
61891 [[eo:Mallongigo]]
61892 [[fr:AbrÊviation]]
61893 [[is:SkammstÃļfun]]
61894 [[la:Abbreviatio]]
61895 [[lb:Ofkierzung]]
61896 [[hu:RÃļvidítÊs]]
61897 [[nl:Afkorting]]
61898 [[ja:&amp;#30053;&amp;#35486;]]
61899 [[nds:Afk]]
61900 [[no:Forkortelse]]
61901 [[pl:SkrÃŗt]]
61902 [[ro:Abreviere]]
61903 [[ru:АййŅ€ĐĩвиаŅ‚ŅƒŅ€Đ°]]
61904 [[simple:Abbreviation]]
61905 [[sl:Kratica]]
61906 [[sv:FÃļrkortning]]
61907 [[th:ā¸­ā¸ąā¸ā¸Šā¸Ŗā¸ĸāšˆā¸­]]</text>
61908 </revision>
61909 </page>
61910 <page>
61911 <title>Abstract algebra</title>
61912 <id>1173</id>
61913 <revision>
61914 <id>41063296</id>
61915 <timestamp>2006-02-24T20:47:00Z</timestamp>
61916 <contributor>
61917 <username>Paul August</username>
61918 <id>87355</id>
61919 </contributor>
61920 <minor />
61921 <comment>grammar</comment>
61922 <text xml:space="preserve">:''This article is about the branch of mathematics. For other uses of the term &quot;algebra&quot; see [[algebra (disambiguation)]].''
61923
61924 '''Abstract algebra''' is the field of [[mathematics]] concerned with the study of [[algebraic structure]]s such as [[group (mathematics)|groups]], [[ring (mathematics)|rings]], [[field (mathematics)|fields]], [[module (mathematics)|modules]], [[vector space]]s, and [[algebra over a field|algebras]]. Many of these structures were defined formally in the nineteenth century, and, indeed, the study of abstract algebra was motivated by the need for more rigor in mathematics. The study of abstract algebra has brought into full view intricacies of the logical assumptions on which the whole of mathematics and the natural sciences are built, and today there is scarcely a branch of mathematics which doesn't utilize the results of algebra. What's more, in the course of study, algebraists discovered that apparently diverse logical structures can very often be brought by analogy to a very small core of axioms. This grants the mathematician who has learned algebra a deep sight, and empowers him broadly.
61925
61926 The term ''abstract algebra'' is used to distinguish the field from &quot;[[elementary algebra]]&quot; or &quot;high school algebra&quot;, which teach the correct rules for manipulating formulas and algebraic expressions involving [[real numbers|real]] and [[complex number]]s, and [[unknown]]s. Abstract algebra was at times in the first half of the [[twentieth century]] known as '''modern algebra'''.
61927
61928 The term '''abstract algebra''' is sometimes used in [[universal algebra]] where most authors use simply the term &quot;algebra&quot;.
61929
61930 == History and examples ==
61931
61932 Historically, algebraic structures usually arose first in some other field of mathematics, were specified axiomatically, and were then studied in their own right in abstract algebra. Because of this, abstract algebra has numerous fruitful connections to all other branches of mathematics.
61933
61934 Examples of algebraic structures with a single [[binary operation]] are:
61935
61936 * [[magma (algebra)|magmas]],
61937 * [[quasigroup]]s,
61938 * [[monoid]]s, [[semigroup]]s and, most important, [[group (mathematics)|groups]].
61939
61940 More complicated examples include:
61941
61942 * [[ring (mathematics)|rings]] and [[field (mathematics)|fields]]
61943 * [[module (mathematics)|modules]] and [[vector space]]s
61944 * [[algebra over a field|algebras over fields]]
61945 * [[associative algebra]]s and [[Lie algebra]]s
61946 * [[lattice (order)|lattice]]s and [[Boolean algebra]]s
61947
61948 In [[universal algebra]], all those definitions and facts are collected that apply to all algebraic structures alike. All the above classes of objects, together with the proper notion of [[homomorphism]], form [[category theory|categories]], and category theory frequently provides the formalism for translating between and comparing different algebraic structures.
61949
61950 ==An example==
61951 The systematic study of algebra has allowed mathematicians to bring under a common logical description apparently disparate conceptions. For example, consider two rather distinct operations: the composition of [[function composition|functions]], f(g(x)), and the multiplication of [[matrix multiplication|matrices]], AB. These two operations are, in fact, the same. To see this, think about multiplying two square matrices (AB) by a one-column vector, x. This, in fact, defines a function that is equivalent to composing Ay with Bx: Ay = A(Bx) = (AB)x. Functions under composition and matrices under multiplication form sets called [[monoid]]s; a monoid under an operation is associative for all its elements ( (ab)c = a(bc) ) and contains an element e such that, for any a, ae = ea = a.
61952
61953 ==See also==
61954 * [[List of publications in mathematics#Abstract algebra| Important publications in abstract algebra]]
61955
61956 ==Further reading==
61957 * {{cite book | author=Sethuraman, B. A. | title=Rings, Fields, Vector Spaces, and Group Theory: An Introduction to Abstract Algebra via Geometric Constructibility | publisher=Springer | year=1996 | id=ISBN 0-387-94848-1}}
61958
61959 ==External links==
61960 {{book}}
61961 * John Beachy: ''[http://www.math.niu.edu/~beachy/aaol/contents.html Abstract Algebra On Line]'', Comprehensive list of definitions and theorems.
61962 * Joseph Mileti: ''Mathematics Museum: [http://www.math.uchicago.edu/~mileti/museum/algebra.html Abstract Algebra]'', A good introduction to the subject in real-life terms.
61963
61964 {{Mathematics-footer}}
61965
61966 [[Category:Abstract algebra|*Abstract algebra]]
61967
61968 [[ar:ØŦØ¨Øą ØĒØŦØąŲŠØ¯ŲŠ]]
61969 [[da:Abstrakt algebra]]
61970 [[de:Abstrakte Algebra]]
61971 [[es:Álgebra abstracta]]
61972 [[fa:ØŦØ¨Øą Ų…ØŦØąØ¯]]
61973 [[fr:Algèbre abstraite]]
61974 [[ko:ėļ”ėƒëŒ€ėˆ˜í•™]]
61975 [[io:Abstrakta algebro]]
61976 [[it:Algebra astratta]]
61977 [[he:אלגברה מופשט×Ē]]
61978 [[nl:Abstracte algebra]]
61979 [[no:Abstrakt algebra]]
61980 [[nn:Abstrakt algebra]]
61981 [[pt:Álgebra abstrata]]
61982 [[ru:АйŅŅ‚Ņ€Đ°ĐēŅ‚ĐŊĐ°Ņ Đ°ĐģĐŗĐĩĐąŅ€Đ°]]
61983 [[fi:Abstrakti algebra]]
61984 [[sv:Abstrakt algebra]]
61985 [[th:ā¸žā¸ĩā¸Šā¸„ā¸“ā¸´ā¸•ā¸™ā¸˛ā¸Ąā¸˜ā¸Ŗā¸Ŗā¸Ą]]
61986 [[vi:ĐáēĄi sáģ‘ tráģĢu tÆ°áģŖng]]
61987 [[zh:æŠŊ蹥äģŖ数]]</text>
61988 </revision>
61989 </page>
61990 <page>
61991 <title>Aphrodite</title>
61992 <id>1174</id>
61993 <revision>
61994 <id>42027051</id>
61995 <timestamp>2006-03-03T08:20:20Z</timestamp>
61996 <contributor>
61997 <username>Haukurth</username>
61998 <id>16226</id>
61999 </contributor>
62000 <minor />
62001 <comment>Reverted edits by [[Special:Contributions/202.138.180.35|202.138.180.35]] ([[User talk:202.138.180.35|talk]]) to last version by Adam Bishop</comment>
62002 <text xml:space="preserve">&lt;!-- Image with unknown copyright status removed: [[Image:Aphrodite (Greek Mythology).jpg|thumb|Aphrodite, [[Ancient Greece|Greek]] goddess of love and beauty,and the patroness of physical love.]] --&gt;
62003
62004 {{otheruses}}
62005 '''Aphrodite''' ([[Wikipedia:Manual of Style (pronunciation)/IPA vs. other pronunciation symbols#Chart|World Book]] ''ÂĢAF roh DY teeÂģ'') ( {{unicode|&amp;#x1F08;}}&amp;#966;&amp;#961;&amp;#959;&amp;#948;&amp;#943;&amp;#964;&amp;#951;, &quot;risen from sea-foam&quot;) is the [[Greek mythology|Greek]] [[goddess]] of [[love]] and [[beauty]].
62006
62007 == Worship ==
62008 {{Greek myth (Olympian)}}
62009 The epithet ''Aphrodite Acidalia'' was occasionally added to her name, after the spring she used to bathe in, located in [[Boeotia]] ([[Virgil]] I, 720). She was also called ''Kypris'' or ''Cytherea'' after her alleged birth-places in [[Cyprus]] and [[Cythera]], respectively. The island of Cythera was a center of her cult. She was associated with [[Hesperia]] and frequently accompanied by the [[Oread]]s, [[nymph]]s of the mountains.
62010
62011 Aphrodite had a festival of her own, the Aphrodisiac, which was celebrated all over Greece but particularly in [[Athens, Greece|Athens]] and [[Corinth, Greece|Corinth]]. In Corinth, intercourse with her priestesses was considered a method of worshipping Aphrodite.
62012
62013 Aphrodite was associated with, and often depicted with [[dolphin]]s, [[dove]]s, [[swan]]s, [[pomegranate]]s,[[apples]], [[myrtle]], [[rose]] and [[Lime (Citrus aurantifolia)|lime]] trees.
62014
62015 Her Roman analogue is [[Venus (mythology)|Venus]]. Her [[Mesopotamia|Mesopotamian]] counterpart was [[Ishtar]]. Her Egyptian counterpart is [[Hathor]], and her Syro-Palestinian counterpart was [[`Ashtart|&amp;#8216;Ashtart]] (in standard Greek spelling ''Astarte''); her [[Etruscan mythology|Etruscan]] equivalent was [[Turan (mythology)|Turan]].
62016
62017 Venus was often referred to with epithet [[Venus Erycina]] (&quot;of the heather&quot;) after [[Mount Eryx]], [[Sicily]], one of the centers of her cult.
62018
62019 == Birth ==
62020
62021 [[Image:Bouguereau venus detail.jpg|115px|thumb|right|Aphrodite rising from the sea foam in birth, crowned with luxuriant tresses, as depicted in the [[19th century]] by [[William-Adolphe Bouguereau]] in his [[1879]] ''Birth of Venus'' (the [[Rome|Roman]] name for Aphrodite).]]
62022
62023 &quot;Foam-arisen&quot; Aphrodite was born of the sea foam near [[Paphos]], Cyprus after [[Cronus]] cut off [[Uranus (mythology)|Uranus]]' genitals and Cronus threw the penis into the sea. [[Hesiod's Theogony]] described that the genitals &quot;were carried over the sea a long time, and white foam arose from the immortal flesh; with a girl grew&quot; to become Aphrodite. Thus Aphrodite is of an older generation than Zeus. ''[[Iliad]]'' (Book V) expresses another version of her origin, by which she was considered a daughter of [[Dione (mythology)|Dione]], who was the original oracular goddess (&quot;Dione&quot; being simply &quot;the goddess,&quot; etymologically an equivalent of &quot;[[Diana (mythology)|Diana]]&quot;) at [[Dodona]]. In Homer, Aphrodite, venturing into battle to protect her son, [[Aeneas]], who has been wounded by [[Diomedes]] and returns to her mother, to sink down at her knee and be comforted. &quot;Dione&quot; seems to be an equivalent of Rhea, the [[Earth Mother]], whom Homer has relocated to Olympus. After this story, Aphrodite herself was sometimes referred to as &quot;Dione&quot;. Once [[Zeus]] had usurped the oak-grove oracle at Dodona, some poets made him out to be the father of Aphrodite.
62024
62025 Aphrodite's chief center of worship remained at Paphos, on the south-western coast of Cyprus, where the goddess of desire had long been worshipped as [[Ishtar]] and [[Ashtaroth]]. It is said that she first tentatively came ashore at [[Cytherea]], a stopping place for trade and culture between [[Crete]] and the [[Peloponnese|Peloponesus]]. Thus perhaps we have hints of the track of Aphrodite's original cult from the [[Levant]] to mainland [[Greece]].
62026
62027 In [[Plato]]'s ''[[Symposium]]'' the speech of Pausanias distinguishes two manifestations of Aphrodite, represented by the two stories: Aphrodite Ourania (&quot;heavenly&quot; Aphrodite), and Aphrodite Pandemos (&quot;Common&quot; Aphrodite). These two manifestations represented her role in homosexuality and heterosexuality, respectively.
62028
62029 Alternatively, Aphrodite was a daughter of [[Thalassa]] (for she was born of the Sea) and [[Zeus]].
62030
62031 == Adulthood ==
62032 Aphrodite, in many of the myths involving her, is characterized as vain, ill-tempered and easily offended. Though she is one of the few gods of the [[List of Greek mythological characters|Greek Pantheon]] to be actually married, she is frequently unfaithful to her husband. [[Hephaestus]], of course, is one of the most even-tempered of the Hellenic deities; Aphrodite seems to prefer [[Ares]], the volatile god of war. In [[Homer]]'s [[Iliad]] she surges into battle to save her son, but abandons him (in fact, drops him as she flies through the air) when she herself is hurt (Ares does much the same thing&lt;!-- I doubt this tidbit, originally included really happened: , and [[Zeus]] eventually sends him to his room without supper --&gt;). And she is the original cause of the [[Trojan War]] itself: not only did she start the whole affair by offering [[Helen]] of [[Troy]] to [[Paris (mythology)|Paris]], but the abduction was accomplished when Paris, seeing Helen for the first time, was inflamed with desire to have her&amp;mdash;which is Aphrodite's realm. Her domain may involve love, but it does not involve [[Romantic_love|romance]]; rather, it tends more towards [[lust]], the human irrational longing.
62033
62034 === Marriage with Hephaestus ===
62035 Due to her immense beauty, Zeus was frightened she'd be the cause of violence between the other gods. He married her off to [[Hephaestus]], the dour, humorless god of smithing. Hephaestus was overjoyed at being married to the goddess of beauty and forged her beautiful jewelry, including the cestus, a [[girdle]] that made her even more irresistible to men. Her unhappiness with her marriage caused Aphrodite to seek out companionship from others, most frequently [[Ares]], but also [[Adonis]], [[Anchises]] and more. Hephaestus once cleverly caught Ares and Aphrodite in bed with finely wrought chains, and brought all the other Olympian gods together to mock the pair (however, the &quot;goddesses stayed at home, all of them for shame.&quot;) Hephaestus would not free them until [[Poseidon]] promised Hephaestus that Ares would pay reparations, but both escaped as soon as the chains were lifted and their promise was not kept.
62036
62037 === Aphrodite and Psyche ===
62038 Aphrodite was jealous of the beauty of a mortal woman named [[Psyche]]. She asked [[Eros (mythology)|Eros]] to use his golden arrows to cause Psyche to fall in love with the ugliest man on earth. Eros agreed but then fell in love with Psyche on his own, or by accidentally pricking himself with a golden arrow. Meanwhile, Psyche's parents were anxious that their daughter remained unmarried. They consulted an [[oracle]] who told them she was destined for no mortal lover, but a monster who lived on top of a particular mountain. Psyche was resigned to her fate and climbed to the top of the mountain. There, [[Zephyrus]], the west wind, gently floated her downwards. She entered a cave on the appointed mountain, surprised to find it full of jewellery and finery. Eros visited her every night in the cave and they made love; he demanded only that she never light any lamps because he did not want her to know who he was (having wings made him distinctive). Her two sisters, jealous of Psyche, convinced her to do so one night and she lit a lamp, recognizing him instantly. A drop of hot lamp oil fell on Eros' chest and he awoke, then fled.
62039
62040 When Psyche told her two jealous elder sisters what had happened; they rejoiced secretly and each separately walked to the top of the mountain and did as Psyche described her entry to the cave, hoping Eros would pick them instead. Zephyrus did not pick them and they fell to their deaths at the base of the mountain.
62041
62042 Psyche searched for her lover across much of Greece, finally stumbling into a temple to [[Demeter]], where the floor was covered with piles of mixed grains. She started sorting the grains into organized piles and, when she finished, Demeter spoke to her, telling her that the best way to find Eros was to find his mother, Aphrodite, and earn her blessing. Psyche found a temple to Aphrodite and entered it. Aphrodite assigned her a similar task to Demeter's temple, but gave her an impossible deadline to finish it by. Eros intervened, for he still loved her, and caused some ants to organize the grains for her. Aphrodite was outraged at her success and told her to go to a field where golden sheep grazed and get some golden wool. Psyche went to the field and saw the sheep but was stopped by a river-god, whose river she had to cross to enter the field. He told her the sheep were mean and vicious and would kill her, but if she waited until noontime, the sheep would go the shade on the other side of the field and sleep; she could pick the wool that stuck to the branches and bark of the trees. Psyche did so and Aphrodite was even more outraged at her survival and success. Finally, Aphrodite claimed that the stress of caring for her son, depressed and ill as a result of Psyche's unfaithfulness, had caused her to lose some of her beauty. Psyche was to go to [[Hades]] and ask [[Persephone]], the queen of the underworld, for a bit of her beauty in a black box that Aphrodite gave to Psyche. Psyche walked to a tower, deciding that the quickest way to the underworld would be to die. A voice stopped her at the last moment and told her a route that would allow her to enter and return still living, as well as telling her how to pass [[Cerberus]], [[Charon (mythology)|Charon]] and the other dangers of the route. She pacified Cerberus, the three-headed dog, with a sweet honey-cake and paid Charon an [[obolus]] to take her into Hades. On the way there, she saw hands reaching out of the water. A voice told her to toss a honey cake to them. Once there, Persephone said she would be glad to do do Aphrodite a favor. She once more paid Charon, threw the cake out to the hands, and gave one to Cerberus.
62043
62044 Psyche left the underworld and decided to open the box and take a little bit of the beauty for herself, thinking that if she did so Eros would surely love her. Inside was a &quot;[[Wiktionary:stygian|Stygian]] sleep&quot; which overtook her. Eros, who had forgiven her, flew to her body and wiped the sleep from her eyes, then begged Zeus and Aphrodite for their consent to his wedding of Psyche. They agreed and Zeus made her immortal. Aphrodite danced at the wedding of Eros and Psyche and their subsequent child was named Pleasure, or (in the Roman mythology) [[Volupta]].
62045
62046 === Adonis ===
62047 Aphrodite was [[Adonis]]' lover and had a part in his birth. She urged [[Myrrha]] or Smyrna to commit [[incest]] with her father, [[Theias]], the King of [[Assyria]]. Another version says Myrrha's father was [[Cinyras]] of [[Cyprus]]. Myrrha's nurse helped with the scheme. When Theias discovered this, he flew into a rage, chasing his daughter with a knife. The gods turned her into a [[myrrh]] tree and Adonis eventually sprang from this tree. Alternatively, Aphrodite turned her into a tree and Adonis was born when Theias shot the tree with an arrow or when a boar used its tusks to tear the tree's bark off.
62048
62049 Once Adonis was born, Aphrodite took him under her wing, seducing him with the help of [[Helene (mythology)|Helene]], her friend, and was entranced by his unearthly beauty. She gave him to [[Persephone]] to watch over, but Persephone was also amazed at his beauty and refused to give him back. The argument between the two goddesses was settled either by [[Zeus]] or [[Calliope]], with Adonis spending four months with Aphrodite, four months with Persephone and four months of the years with whomever he chose. He always chose Aphrodite because Persephone was the cold, unfeeling goddess of the underworld.
62050
62051 Adonis was eventually killed by a jealous [[Ares]]. Aphrodite was warned of this jealousy and was told that Adonis would be killed by a bull that Ares transformed into. She tried to persuade Adonis to stay with her at all times, but his love of hunting was his downfall. While Adonis was hunting, Ares found him and gored him to death. Aphrodite arrived just in time to hear his last breath.
62052
62053 It is also said that Aphrodite bore a daughter to Adonis, [[Beroe]].
62054
62055 === The [[Judgement of Paris]] ===
62056 The gods and goddesses as well as various mortals were invited to the marriage of [[Peleus]] and [[Thetis]] (the eventual parents of [[Achilles]]). Only the goddess [[Eris]] (Discord) was not invited, but she arrived with a golden [[apple]] inscribed with the words &quot;to the fairest,&quot; which she threw among the goddesses. Aphrodite, [[Hera]], and [[Athena]] all claimed the apple, and the matter was put before [[Paris (mythology)|Paris]], the most handsome mortal. Hera tried to bribe Paris with an earthly kingdom, while Athena offered great military skill, but Aphrodite was judged most beautiful when she offered Paris the most beautiful mortal woman as a wife. This woman was [[Helen]], and her abduction by Paris led to the [[Trojan War]].
62057
62058 === Pygmalion and Galatea ===
62059 [[Pygmalion (mythology)|Pygmalion]] was a sculptor who had never found a woman worthy of his love. Aphrodite took pity on him and decided to show him the wonders of love. One day, Pygmalion was inspired by a dream of Aphrodite to make a woman out of [[ivory]] resembling her image, and he called her [[Galatea (mythology)|Galatea]]. He fell in love with the statue and decided he could not live without her. He prayed to Aphrodite, who carried out the final phase of her plan and brought the exquisite sculpture to life. Pygmalion loved Galatea and they were soon married.
62060
62061 Another version of this myth tells that the women of the village in which Pygmalion lived grew angry that he had not married. They all asked Aphrodite to force him to marry. Aphrodite accepted and went that very night to Pygmalion, and asked him to pick a woman to marry. She told him that if he did not pick one, she would do so for him. Not wanting to be married, he begged her for more time, asking that he be allowed to make a sculpture of Aphrodite before he had to choose his bride. Flattered, she accepted.
62062
62063 Pygmalion spent a lot of time making small clay sculptures of the Goddess, claiming it was needed so he could pick the right pose. As he started making the actual sculpture he was shocked to discover he actually wanted to finish, even though he knew he would have to marry someone when he finished. The reason he wanted to finish it was that he had fallen in love with the sculpture. The more he worked on it, the more it changed, until it no longer resembled Aphrodite at all.
62064
62065 At the very moment Pygmalion stepped away from the finished sculpture Aphrodite appeared and told him to choose his bride. Pygmalion chose the statue. Aphrodite told him that could not be, and asked him again to pick a bride. Pygmalion put his arms around the statue, and asked Aphrodite to turn him into a statue so he could be with her. Aphrodite took pity on him and brought the statue to life instead.
62066
62067 === Other Stories ===
62068 In one version of the story of [[Hippolytus (mythology)|Hippolytus]], Aphrodite was the catalyst for his death. He scorned the worship of Aphrodite for [[Artemis]] and, in revenge, Aphrodite caused his step-mother, [[Phaedra]], to fall in love with him, knowing Hippolytus would reject her. In the most popular version of the story, the play &quot;Hippolytus&quot; by [[Euripides]], Phaedra seeks revenge against Hippolytus by killing herself and, in her [[suicide note]], telling [[Theseus]], her husband and Hippolytus' father, that Hippolytus had raped her. Theseus then murdered his own son before Artemis told him the truth.
62069
62070 King [[Glaucus]] of Corinth angered Aphrodite and she made her horses angry during the funeral games of King [[Pelias]]. They tore him apart. His ghost supposedly frightened horses during the [[Isthmian Games]].
62071
62072 Aphrodite was often accompanied by the [[Charites]].
62073
62074 In book III of [[Homer]]'s ''[[Iliad]]'', Aphrodite saves [[Paris]] when he is about to be killed by [[Menelaos]].
62075
62076 Aphrodite was very protective of her son, Aeneas, who fought in the [[Trojan War]]. [[Diomedes]] almost killed Aeneas in battle but Aphrodite saved him. Diomedes wounded Aphrodite and she dropped her son, fleeing to [[Mt. Olympus]]. Aeneas was then enveloped in a cloud by [[Artemis]], who took him to [[Pergamos (Troy)|Pergamos]], a sacred spot in [[Troy]]. [[Apollo]] healed Aeneas there.
62077
62078 She turned [[Abas]] to stone for his pride.
62079
62080 She turned [[Anaxarete]] to stone for reacting so dispassionately to [[Iphis]]' pleas to love him, even after his suicide.
62081
62082 Aphrodite helps [[Hippomenes]] to win a footrace against [[Atalanta]] to win Atalanta's hand in marriage, giving him three golden apples to distract her with. However, when the couple fails to thank Aphrodite, she has them turned into lions (in other accounts they are turned into lions when either [[Zeus]] or [[Cybele]] find them having sex in their temple).
62083
62084 ==Aphrodite in Neopaganism==
62085 In many modern [[Neopaganism|Neopagan]] [[sect]]s, particularly [[New Age]] ''Hellenistic'' sects in the [[United States]], Aphrodite takes on the role of the goddess of passion. Not all passion Aphrodite inspires is lustful, much of it is believed to take the form of artistic passion and even passion in argument. Worship of Aphrodite is uncommon and is typically held by individual writers and artists. How she is worshipped often depends on what other gods a sect includes. For example, sects that worship [[Hera]] and/or [[Themis]] may include worship of Aphrodite, but encourage monogamy and stress her role in committed relationships and marriage. Sects that worship [[Dionysus]] and Aphrodite may be entirely hedonistic and include orgiastic rituals (such sects are often considered cults even by Neopagan standards). As such worship of Aphrodite varies between sects.
62086
62087 ==Consorts and children==
62088 * Deities
62089 ** [[Ares]]
62090 *** [[Anteros]]
62091 *** [[Eros (mythology)|Eros]] (Love)
62092 *** [[Harmonia (Greek_goddess)|Harmonia]] (Harmony)
62093 *** [[Himeros]]
62094 ***[[Deimos (mythology)|Deimos]] (Dread)
62095 ***[[Phobos (mythology)|Phobos]] (Fright)
62096 ** [[Dionysus]]
62097 *** [[Charites]]
62098 **** [[Aglaea]]
62099 **** [[Euphrosyne]]
62100 **** [[Thalia]]
62101 *** [[Hymenaios]]
62102 *** [[Priapus]]
62103 ** [[Hephaestus]]
62104 ** [[Hermes]]
62105 *** [[Eunomia]]
62106 *** [[Hermaphroditus]]
62107 *** [[Peitho]]
62108 *** [[Rhodos]]
62109 *** [[Tyche]]
62110 * Mortals
62111 ** [[Adonis]]
62112 ** [[Anchises]]
62113 *** [[Aeneas]]
62114 ** [[Butes]]
62115 *** [[Eryx]]
62116
62117 ==Other names==
62118 *''Acidalia''
62119 *''Anadyomene'' - the emerging as in ''Aphrodite Anadyomene'', a painting by [[Apelles]]
62120 *''[[Cytherea]]''
62121 *''Despina''
62122 *''Kypris''
62123
62124 ==See also==
62125 *[[Venus (mythology)|Venus]]
62126 *[[Aphrodite of Knidos]]
62127 *[[Venus de Milo]]
62128
62129 {{commons|Aphrodite}}
62130
62131 [[Category:Greek goddesses]]
62132 [[Category:Love and lust goddesses]]
62133 [[Category:Characters in the Iliad]]
62134 &lt;!-- interwiki --&gt;
62135
62136 [[ar:ØŖŲØąŲˆØ¯ŲŠØĒ]]
62137 [[bg:АŅ„Ņ€ĐžĐ´Đ¸Ņ‚Đ°]]
62138 [[be:АŅ„Ņ€Đ°Đ´Ņ‹Ņ‚Đ°]]
62139 [[bs:Afrodita]]
62140 [[ca:Afrodita]]
62141 [[cs:AfrodítÊ]]
62142 [[da:Afrodite]]
62143 [[de:Aphrodite]]
62144 [[et:Aphrodite]]
62145 [[el:ΑĪ†ĪÎŋδίĪ„Ρ (ÎŧĪ…θÎŋÎģÎŋÎŗÎ¯Îą)]]
62146 [[es:Afrodita]]
62147 [[eo:Afrodita]]
62148 [[fr:Aphrodite]]
62149 [[gl:Afrodita]]
62150 [[ko:ė•„í”„ëĄœë””í…Œ]]
62151 [[hr:Afrodita]]
62152 [[ia:Aphrodite]]
62153 [[is:AfrÃŗdíta]]
62154 [[it:Afrodite]]
62155 [[he:אפרודיטה]]
62156 [[la:Aphrodite]]
62157 [[lt:Afroditė]]
62158 [[lv:AfrodÄĢte]]
62159 [[lb:Aphrodite]]
62160 [[hu:AphroditÊ]]
62161 [[nl:Aphrodite]]
62162 [[ja:ã‚ĸプロデã‚Ŗテ]]
62163 [[no:Afrodite]]
62164 [[pl:Afrodyta]]
62165 [[pt:Afrodite]]
62166 [[ro:Afrodita]]
62167 [[ru:АŅ„Ņ€ĐžĐ´Đ¸Ņ‚Đ°]]
62168 [[simple:Aphrodite]]
62169 [[sk:Afrodita]]
62170 [[sl:Afrodita]]
62171 [[sr:АŅ„Ņ€ĐžĐ´Đ¸Ņ‚Đ°]]
62172 [[fi:Afrodite]]
62173 [[sv:Afrodite]]
62174 [[tl:Aphrodite]]
62175 [[uk:АŅ„Ņ€ĐžĐ´Ņ–Ņ‚Đ°]]
62176 [[zh:é˜ŋäŊ›æ´›į‹„åžˇ]]</text>
62177 </revision>
62178 </page>
62179 <page>
62180 <title>April 1</title>
62181 <id>1175</id>
62182 <revision>
62183 <id>41835935</id>
62184 <timestamp>2006-03-02T01:31:38Z</timestamp>
62185 <contributor>
62186 <username>Mikkalai</username>
62187 <id>28438</id>
62188 </contributor>
62189 <comment>/* Holidays and observances */</comment>
62190 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
62191 {| style=&quot;float:right;&quot;
62192 |-
62193 |{{AprilCalendar}}
62194 |-
62195 |{{ThisDateInRecentYears|Month=April|Day=1}}
62196 |}
62197 '''April 1''' is the [[91 (number)|91st]] day of the year (92nd in [[leap year]]s) in the [[Gregorian calendar]], with 274 days remaining.
62198 ==Events==
62199 *[[527]] - [[Byzantine Emperors|Byzantine Emperor]] [[Justin I]] names his nephew [[Justinian I]] as co-ruler and successor to the throne.
62200 *[[1318]] - [[Berwick-upon-Tweed]] is captured by the [[Scotland|Scottish]] from the [[England|English]]
62201 *[[1572]] - The [[Geuzen|Watergeuzen]] succeeded in capturing [[Brielle|Den Briel]], effectively sealing off the [[Meuse River]] from the [[Spanish Empire|Spaniards]].
62202 *[[1789]] - In [[New York City]], the [[United States House of Representatives]] holds its first quorum and elects [[Frederick Muhlenberg]] of [[Pennsylvania]] as its first House Speaker.
62203 *[[1826]] - [[Samuel Morey]] patents the [[internal combustion engine]].
62204 *[[1854]] - ''[[Hard Times]]'' begins serialisation in [[Charles Dickens]] magazine, ''Household Words''.
62205 *[[1857]] - [[Herman Melville]] publishes ''[[The Confidence-Man]]''.
62206 *[[1865]] - [[American Civil War]]: [[Battle of Five Forks]] - In [[Petersburg, Virginia]], Confederate General [[Robert E. Lee]] begins his final offensive.
62207 *[[1867]] - [[Singapore]] becomes a British [[crown colony]].
62208 *[[1868]] - [[Hampton University|Hampton Normal and Agricultural Institute]] is established in [[Hampton, Virginia]]
62209 *[[1873]] - The [[United Kingdom|British]] steamer [[SS Atlantic|SS ''Atlantic'']] sinks off [[Nova Scotia]], killing 547.
62210 *[[1891]] - The [[Wrigley Company]] is founded in [[Chicago, Illinois]].
62211 *[[1918]] - The [[Royal Flying Corps]] is replaced by the [[Royal Air Force]].
62212 *[[1924]] - [[Adolf Hitler]] is sentenced to five years in [[jail]] for his participation in the &quot;[[Beer Hall Putsch]].&quot; However, he spends only nine months in jail, during which he writes the book ''[[Mein Kampf]]''.
62213 *1924 - First revenue flight for [[Belgium]]'s [[Sabena]] Airlines
62214 *[[1933]] - The recently elected [[Nazism|Nazis]] under [[Julius Streicher]] organize a one-day boycott of all Jewish-owned businesses in [[Germany]], ushering in the series of [[anti-Semitism|anti-Semitic]] acts that will be known as the [[Holocaust]].
62215 *[[1934]] - [[Bonnie and Clyde]] kill two young highway patrolmen near [[Grapevine, Texas]].
62216 *[[1937]] - [[Aden]] becomes a British [[crown colony]].
62217 *[[1941]] - The [[Blockade Runner Badge]] for German navy is instituted.
62218 *[[1945]] - [[World War II]]: [[Battle of Okinawa|Operation Iceberg]] - [[United States]] troops land on [[Okinawa]] in the last campaign of the war.
62219 *[[1946]] - [[Aleutian Island earthquake]]: A 7.8 magnitude [[earthquake]] near the [[Aleutian Islands]] creates a [[tsunami]] that strikes the [[Hawaiian Islands]] killing 159 (mostly in [[Hilo, Hawaii]]).
62220 *1946 - Formation of the [[Malayan Union]].
62221 *[[1948]] - [[Cold War]]: [[Berlin Airlift]] - [[Military forces]], under direction of the Soviet-controlled government in [[East Germany]], set-up a land blockade of [[West Berlin]].
62222 *1948 - [[Faroe Islands]] receive [[self-governance|autonomy]] from [[Denmark]]
62223 *[[1949]] - [[Newfoundland]] becomes the tenth Province of [[Canada]]
62224 *1949 - [[Chinese Civil War]]: [[Communist Party of China]] hold unsuccessful peace talks with the [[Kuomintang]] in [[Beijing]], after three years of fighting.
62225 *1949 - The twenty-six counties of the [[Irish Free State]] become the [[Republic of Ireland]].
62226 *1949 - Founding of the [[Tokyo Stock Exchange]]
62227 *[[1954]] - President [[Dwight D. Eisenhower]] authorizes the creation of the [[United States Air Force Academy]] in [[Colorado]].
62228 *[[1955]] - The [[EOKA]] rebellion starts in [[Cyprus]], aiming at the island´s independence from [[Great Britain]].
62229 *[[1967]] - The [[United States Department of Transportation]] begins operation.
62230 *[[1969]] - The [[Hawker-Siddeley Harrier]] enters service with the [[Royal Air Force|RAF]].
62231 *[[1970]] - [[Phil Spector]] finishes the orchestral [[overdub]]s for the upcoming [[Beatles]] album, ''[[Let It Be (album)|Let It Be]]'', including the songs &quot;[[Let It Be (song)|Let It Be]]&quot;, &quot;[[Across the Universe]]&quot;, and &quot;[[The Long and Winding Road]]&quot;. This causes controversy among [[Beatles]] fans who feel that [[Phil Spector]] has overproduced the album.
62232 *1970 - President [[Richard Nixon]] signs the [[Public Health Cigarette Smoking Act]] into law banning [[cigarette]] advertisements in the [[United States]] starting on [[January 1]], [[1971]].
62233 *1970 - [[American Motors]] introduces the [[AMC Gremlin|Gremlin]].
62234 *[[1973]] - [[Project Tiger]], a [[tiger]] conservation project, is launched in the [[Corbett National Park]], [[India]].
62235 *[[1974]] - In the [[United Kingdom]], new [[administrative counties]] come into being.
62236 *[[1976]] - [[Apple Computer]] Company is formed by [[Steve Jobs]] and [[Steve Wozniak]].
62237 *1976 - The [[Central Railroad of New Jersey]] goes bankrupt and [[Conrail]] takes over its operations.
62238 *[[1979]] - [[Iran]]'s government becomes an [[Islamic Republic]] by a 98% vote, overthrowing the [[Shah]] officially.
62239 *[[1980]] - [[New York City]]'s [[Transit Worker Union 100]] goes on [[1980 transit strike|strike]], which continues for 11 days.
62240 *[[1985]] - [[Villanova University]] defeats [[Georgetown University]] 66-64 to win [[NCAA Men's Division I Basketball Championship]].
62241 *[[1996]] - [[University of Kentucky]] team wins [[NCAA Men's Division I Basketball Championship]].
62242 *[[1999]] - [[Nunavut]] is established as a [[Canada|Canadian]] territory carved from the eastern part of the [[Northwest Territories]].
62243 *[[2001]] - An [[EP-3E]] [[United States Navy]] plane collides with a Chinese [[People's Liberation Army]] [[fighter jet]]. The Navy crew makes an emergency landing in [[Hainan]], [[People's Republic of China]] and is detained.
62244 *2001 - Former president of [[Federal Republic of Yugoslavia]] [[Slobodan MiloÅĄević]] surrenders to police [[special forces]], to be tried on charges of [[war crime]]s.
62245 *2001 - The first legal [[same-sex marriage in the Netherlands]] is celebrated.
62246 *[[2002]] - The [[Netherlands]] legalizes [[euthanasia]], becoming the only nation in the world to do so.
62247 *[[2004]] - [[George W. Bush]] signs the [[Unborn Victims of Violence Act]], which makes an attack that leads to the death of a mother and her [[unborn child]] two criminal charges.
62248 *2004 - The first legal [[same-sex marriage in Canada|same-sex marriage in the Canadian province]] of [[Quebec]]: [[Michael Hendricks and RenÊ Leboeuf]] wed in [[Montreal]].
62249 *2004 - [[Gmail]], an email service from [[Google]] launches.
62250
62251 ==Births==
62252 *[[1220]] - [[Emperor Go-Saga]] of Japan (d. [[1272]])
62253 *[[1543]] - [[François de Bonne, duc de Lesdiguières]], Constable of France (d. [[1626]])
62254 *[[1578]] - [[William Harvey]], English physician (d. [[1657]])
62255 *[[1610]] - [[Charles de Saint-Évremond]], French soldier (d. [[1703]])
62256 *[[1640]] - [[Georg Mohr]], Danish mathematician (d. [[1697]])
62257 *[[1647]] - [[John Wilmot, 2nd Earl of Rochester]], English poet (d. [[1680]])
62258 *[[1732]] - [[Franz Josef Haydn]], Austrian composer (d. [[1809]])
62259 *[[1765]] - [[Luigi Schiavonetti]], Italian engraver (d. [[1810]])
62260 *[[1776]] - [[Sophie Germain]], French mathematician (d. [[1831]])
62261 *[[1815]] - [[Otto von Bismarck]], German politician (d. [[1898]])
62262 *1815 - [[Edward Clark]], Governor of Texas (d. [[1880]])
62263 *[[1834]] - [[Big Jim Fisk]], American entrepreneur (d. [[1872]])
62264 *[[1854]] - [[Bill Traylor]], American artist (d. [[1949]])
62265 *[[1856]] - [[Acacio Gabriel Viegas]], Indian physician (d. [[1933]])
62266 *[[1865]] - [[Richard Adolf Zsigmondy]], Austrian-born chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1929]])
62267 *[[1866]] - [[Ferruccio Busoni]], Italian pianist and composer (d. [[1924]])
62268 *[[1873]] ([[Gregorian calendar|N.S.]]) - [[Sergei Rachmaninoff]], Russian composer, pianist, and conductor (d. [[1943]])
62269 *[[1875]] - [[Edgar Wallace]], English writer (d. [[1932]])
62270 *[[1883]] - [[Lon Chaney, Sr.]], American actor (d. [[1930]])
62271 *[[1885]] - [[Wallace Beery]], American actor (d. [[1949]])
62272 *[[1895]] - [[Alberta Hunter]], American singer (d. [[1984]])
62273 *[[1897]] - [[Nita Naldi]], American actress (d. [[1961]])
62274 *[[1898]] - [[William James Sidis]], eccentric genius and child prodigy (d. [[1944]])
62275 *[[1899]] - [[Gustavs Celmins]], Latvian politician (d. [[1968]])
62276 *[[1900]] - [[Robert McDowell]], Mayor of [[Maryborough, Queensland]] (d. [[1988]])
62277 *[[1901]] - [[Whittaker Chambers]], American writer, editor, and defector (d. [[1961]])
62278 *[[1906]] - [[Alexander Sergeyevich Yakovlev]], Russian engineer and airplane designer (d. [[1989]])
62279 *[[1908]] - [[Abraham Maslow]], American psychologist (d. [[1970]])
62280 *[[1914]] - [[Jerome L. Walton]], Canadian author
62281 *[[1915]] - [[Otto Wilhelm Fischer]], Austrain actor (d. [[2004]])
62282 *[[1919]] - [[Joseph Murray]], American surgeon, recipient of the [[Nobel Prize in Physiology or Medicine]]
62283 *[[1920]] - [[Toshiro Mifune]], Japanese actor (d. [[1997]])
62284 *[[1922]] - [[William Manchester]], American writer (d. [[2004]])
62285 *[[1924]] - [[Brendan Byrne]], Governor of New Jersey
62286 *[[1926]] - [[Charles Bressler]], American tenor
62287 *1926 - [[Anne McCaffrey]], American author
62288 *[[1928]] - [[George Grizzard]], American actor
62289 *[[1929]] - [[Milan Kundera]], Czech writer
62290 *1929 - [[Jane Powell]], American dancer, actress, and singer
62291 *1929 - [[Bo Schembechler]], American football coach
62292 *[[1930]] - [[Grace Lee Whitney]], American actress
62293 *[[1931]] - [[Rolf Hochhuth]], German writer
62294 *[[1932]] - [[Gordon Jump]], American television actor (d. [[2003]])
62295 *1932 - [[Debbie Reynolds]], American actress
62296 *[[1933]] - [[Claude Cohen-Tannoudji]], French physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
62297 *[[1934]] - [[Don Hastings]], American actor
62298 *1934 - [[Rod Kanehl]], baseball player (d. [[2004]])
62299 *[[1935]] - [[Larry McDonald]], American politician (d. [[1983]])
62300 *[[1938]] - [[Ali MacGraw]], American actress
62301 *1938 - [[John Quade]], American actor
62302 *[[1939]] - [[Phil Niekro]], American baseball pitcher
62303 *[[1940]] - [[Wangari Maathai]], Kenyan environmentalist, recipient of the [[Nobel Peace Prize]]
62304 *[[1942]] - [[Samuel R. Delany]], American author
62305 *1942 - [[Annie Nightingale]], British disc jockey
62306 *[[1946]] - [[Ronnie Lane]], British musician ([[The Small Faces]] and [[The Faces]]) (d. [[1997]])
62307 *[[1947]] - [[Alain Connes]], French mathematician
62308 *[[1948]] - [[Jimmy Cliff]], Jamaican musician
62309 *[[1949]] - [[GÊrard Mestrallet]], French businessman
62310 *1949 - [[Gil Scott-Heron]], American musician and composer
62311 *1949 - [[Sammy Nelson]], Northern Irish footballer
62312 *[[1950]] - [[Samuel Alito]], Associate Justice of the [[United States Supreme Court]]
62313 *[[1952]] - [[Annette O'Toole]], American actress
62314 *[[1953]] - [[Barry Sonnenfeld]], producer and director
62315 *[[1964]] - [[Erik Breukink]], Dutch cyclist and manager
62316 *1964 - [[Scott Stevens]], Canadian ice hockey player
62317 *[[1965]] - [[Mark Jackson (basketball)|Mark Jackson]], American basketball player
62318 *[[1965]] - [[Robert Steadman]], English composer
62319 *[[1970]] - [[Sung Hi Lee]], Korean-born model
62320 *[[1971]] - [[Method Man]], American musician
62321 *[[1972]] - [[Hughes Brothers|Allen and Albert Hughes]], American film directors
62322 *[[1973]] - [[Stephen Fleming]], New Zealand cricketer
62323 *[[1975]] - [[George Bastl]], Swiss tennis player
62324 *[[1976]] - [[Clarence Seedorf]], Surinamese-Dutch footballer player
62325 *[[1980]] - [[Randy Orton]], American professional wrestler
62326 *1980 - [[YÅĢko Takeuchi]], Japanese actress
62327 *[[1981]] - [[Hannah Spearritt]], British singer ([[S Club 7]])
62328 *[[1982]] - [[Sam Huntington]], American actor
62329 *[[1983]] - [[Ólafur Ingi SkÃēlason]], Icelandic footballer
62330 *1983 - [[Sean Taylor]], American football player
62331
62332 ==Deaths==
62333 *[[1085]] - [[Emperor Shenzong]] of China (b. [[1048]])
62334 *[[1204]] - [[Eleanor of Aquitaine]], queen of [[Henry II of England]]
62335 *[[1205]] - King [[Amalric II of Jerusalem]] (b. [[1145]])
62336 *[[1528]] - [[Francisco de PeÃąalosa]], Spanish composer
62337 *[[1580]] - [[Alonso Mudarra]], Spanish composer
62338 *[[1621]] - [[Cristofano Allori]], Italian painter (b. [[1577]])
62339 *[[1637]] - [[Niwa Nagashige]], Japanese warlord (b. [[1571]])
62340 *[[1682]] - [[Franz Egon of FÃŧrstenberg]], Bishop of Strassburg (b. [[1625]])
62341 *[[1684]] - [[Roger Williams (theologian)|Roger Williams]], English theologian and colonist (b. [[1603]])
62342 *[[1787]] - [[Floyer Sydenham]], English classical scholar (b. [[1710]])
62343 *[[1839]] - [[Benjamin Pierce (governor)|Benjamin Pierce]], Governor of New Hampshire (b. [[1757]])
62344 *[[1872]] - [[Frederick Maurice]], English theologian (b. [[1805]])
62345 *[[1878]] - [[John Corry Wilson Daly]], Canadian politician (b. [[1796]])
62346 *[[1914]] - [[Rube Waddell]], baseball player (b. [[1876]])
62347 *[[1917]] - [[Scott Joplin]], American musician and composer (b. [[1868]])
62348 *[[1922]] - Emperor [[Karl I of Austria]] (b. [[1887]])
62349 *[[1946]] - [[Noah Beery]], American actor (b. [[1882]])
62350 *[[1947]] - King [[George II of Greece]] (b. [[1890]])
62351 *[[1950]] - [[Charles R. Drew]], American physician (b. [[1904]])
62352 *[[1966]] - [[Flann O'Brien]], Irish humorist (b. [[1911]])
62353 *[[1968]] - [[Lev Davidovich Landau]], Russian physicist, [[Nobel Prize]] laureate (b. [[1908]])
62354 *[[1976]] - [[Max Ernst]], German artist (b. [[1891]])
62355 *[[1984]] - [[Marvin Gaye]], American singer (b. [[1939]])
62356 *[[1986]] - [[Erik Bruhn]], Danish ballet dancer, choreographer (b. [[1928]])
62357 *[[1988]] - [[Joe Besser]], American actor and comedian (b. [[1907]])
62358 *[[1991]] - [[Martha Graham]], American dancer and choreographer (b. [[1894]])
62359 *[[1993]] - [[Alan Kulwicki]], American race car driver (b. [[1954]])
62360 *[[1998]] - [[Rozz Williams]], American musician ([[Christian Death]]) (b. [[1963]])
62361 *1998 - [[Gene Evans]], American actor (b. [[1922]])
62362 *[[2001]] - [[Olivia Barclay]], British astrologer (b. [[1919]])
62363 *2001 - [[Trinh Cong Son]], Vietnamese composer (b. [[1939]])
62364 *[[2003]] - [[Leslie Cheung]], Hong Kong actor and singer (b. [[1956]])
62365 *[[2004]] - [[Carrie Snodgress]], American actress (b. [[1946]])
62366 *[[2005]] - [[Harald Juhnke]], German entertainer (b. [[1929]])
62367 *2005 - [[Jack Keller (songwriter)|Jack Keller]], songwriter (leukemia) (b. [[1936]])
62368 *2005 - [[Robert Coldwell Wood]], American university president and political appointee (b. [[1923]])
62369
62370 ==Holidays and observances==
62371 * April 1 is known as [[April Fool's Day]] or All Fools' Day in many countries.
62372 * [[Feast day]] of [[Hugh of Grenoble|Saint Hugh]] in the [[Roman Catholic Church]] calendar
62373 * [[Roman Empire]] - [[Veneralia]] celebrated to honor [[Venus (mythology)|Venus]]
62374 * [[Japan]] - The official start of school years in most universities and schools. Also, the official First Day of Work at companies and offices for new university graduates hires, marked by welcoming ceremonies and speeches.
62375 * [[Canada]] - Beginning of government's [[fiscal year]]
62376 * [[India]] - Start of [[financial year]].
62377 * [[Brielle]] celebrates victory of [[1572]] over Spaniards.
62378 * In [[San Marino]], two [[Captains Regent]], elected by Parliament, take office for six months
62379 * Date that [[bobhouse]]s, used for ice-fishing, must be taken off frozen lakes in [[New Hampshire]].
62380 * [[International Day of the Birds]]
62381 * In [[England and Wales]], local government reorganisations traditionally happen on April 1.
62382 * [[Pigasus Award]] announcement
62383
62384 ==External links==
62385 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/1 BBC: On This Day]
62386 * [http://www.nytimes.com/learning/general/onthisday/20050401.html ''The New York Times'': On This Day]
62387 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=01 On This Day in Canada]
62388 ----
62389
62390 [[March 31]] - [[April 2]] - [[March 1]] - [[May 1]] -- [[historical anniversaries|listing of all days]]
62391
62392 {{months}}
62393
62394 [[af:1 April]]
62395 [[ar:1 ØĨØ¨ØąŲŠŲ„]]
62396 [[an:1 d'abril]]
62397 [[ast:1 d'abril]]
62398 [[bg:1 Đ°ĐŋŅ€Đ¸Đģ]]
62399 [[be:1 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
62400 [[bs:1. april]]
62401 [[ca:1 d'abril]]
62402 [[ceb:Abril 1]]
62403 [[cv:АĐēĐ°, 1]]
62404 [[co:1 d'aprile]]
62405 [[cs:1. duben]]
62406 [[cy:1 Ebrill]]
62407 [[da:1. april]]
62408 [[de:1. April]]
62409 [[et:1. aprill]]
62410 [[el:1 ΑĪ€ĪÎšÎģίÎŋĪ…]]
62411 [[es:1 de abril]]
62412 [[eo:1-a de aprilo]]
62413 [[eu:Apirilaren 1]]
62414 [[fo:1. apríl]]
62415 [[fr:1er avril]]
62416 [[fy:1 april]]
62417 [[ga:1 AibreÃĄn]]
62418 [[gl:1 de abril]]
62419 [[ko:4ė›” 1ėŧ]]
62420 [[hr:1. travnja]]
62421 [[io:1 di aprilo]]
62422 [[ilo:Abril 1]]
62423 [[id:1 April]]
62424 [[ia:1 de april]]
62425 [[ie:1 april]]
62426 [[is:1. apríl]]
62427 [[it:1 aprile]]
62428 [[he:1 באפריל]]
62429 [[jv:1 April]]
62430 [[ka:1 აპრილი]]
62431 [[csb:1 łÅŧÃĢkwiôta]]
62432 [[ku:1'ÃĒ avrÃĒlÃĒ]]
62433 [[lt:BalandÅžio 1]]
62434 [[lb:1. AbrÃĢll]]
62435 [[li:1 april]]
62436 [[hu:Április 1]]
62437 [[mk:1 Đ°ĐŋŅ€Đ¸Đģ]]
62438 [[ms:1 April]]
62439 [[nap:1 'e abbrile]]
62440 [[nl:1 april]]
62441 [[ja:4月1æ—Ĩ]]
62442 [[no:1. april]]
62443 [[nn:1. april]]
62444 [[oc:1 d'abril]]
62445 [[pl:1 kwietnia]]
62446 [[pt:1 de Abril]]
62447 [[ro:1 aprilie]]
62448 [[ru:1 Đ°ĐŋŅ€ĐĩĐģŅ]]
62449 [[sco:1 Aprile]]
62450 [[sq:1 Prill]]
62451 [[scn:1 di aprili]]
62452 [[simple:April 1]]
62453 [[sk:1. apríl]]
62454 [[sl:1. april]]
62455 [[sr:1. Đ°ĐŋŅ€Đ¸Đģ]]
62456 [[fi:1. huhtikuuta]]
62457 [[sv:1 april]]
62458 [[tl:Abril 1]]
62459 [[tt:1. Äpril]]
62460 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 1]]
62461 [[th:1 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
62462 [[vi:1 thÃĄng 4]]
62463 [[tr:1 Nisan]]
62464 [[uk:1 ĐēвŅ–Ņ‚ĐŊŅ]]
62465 [[ur:1 اŲžØąÛŒŲ„]]
62466 [[wa:1ÃŽ d' avri]]
62467 [[war:Abril 1]]
62468 [[zh:4月1æ—Ĩ]]
62469 [[pam:Abril 1]]</text>
62470 </revision>
62471 </page>
62472 <page>
62473 <title>Antisymmetric relation</title>
62474 <id>1176</id>
62475 <revision>
62476 <id>41074394</id>
62477 <timestamp>2006-02-24T22:03:45Z</timestamp>
62478 <contributor>
62479 <username>Wasseralm</username>
62480 <id>389528</id>
62481 </contributor>
62482 <minor />
62483 <comment>de:</comment>
62484 <text xml:space="preserve">In [[mathematics]], a [[binary relation]] ''R'' on a [[set]] ''X'' is '''antisymmetric''' if, for all ''a'' and ''b'' in ''X'', if ''a'' is related to ''b'' and ''b'' is related to ''a'', then ''a''&amp;nbsp;=&amp;nbsp;''b''.
62485
62486 In [[mathematical notation]], this is:
62487
62488 :&lt;math&gt;\forall a, b \in X,\ a R b \and b R a \; \Rightarrow \; a = b&lt;/math&gt;
62489
62490 [[inequality|Inequalities]] are antisymmetric, since for different numbers ''a'' and ''b'' not both ''a &amp;le; b'' and ''a &amp;ge; b'' can be true.
62491
62492 Note that 'antisymmetric' is not the logical negative of '[[symmetric relation|symmetric]]' (whereby ''aRb'' implies ''bRa''). (N.B.: Both are properties of relations expressed as universal statements about their members; their logical negations must be existential statements.) Thus, there are relations which are both symmetric and antisymmetric (e.g., [[equality (mathematics)|the equality relation]]) and there are relations which are neither symmetric nor antisymmetric (e.g., [[divisibility]] on the [[integer]]s).
62493
62494 Antisymmetry is different from [[Asymmetric relation|asymmetry]]. According to one definition of '''asymmetric''', anything that fails to be symmetric is asymmetric; the definition of antisymmetry is more specific than this. Another definition of '''asymmetric''' makes asymmetry equivalent to antisymmetry plus [[reflexive relation|irreflexivity]].
62495
62496 ==Examples==
62497 * [[Equality (mathematics) |Equality]]
62498 * &quot;... is even, ... is odd&quot;
62499 ::::::[[Image:Evenandodd.PNG]]
62500
62501 ==Properties containing antisymmetry==
62502
62503 * [[Partial order]] - An antisymmetric relation that is also [[transitive relation|transitive]] and [[reflexive relation|reflexive]].
62504
62505 * [[Total_order|total order]] - An antisymmetric relation that is also [[transitive relation|transitive]] and [[total relation|total]].
62506
62507 ==See also==
62508 * [[Symmetry in mathematics]]
62509 * [[Symmetric relation]]
62510
62511 [[Category:Set theory]]
62512
62513 [[cs:AntisymetrickÃĄ relace]]
62514 [[de:Antisymmetrie]]
62515 [[es:RelaciÃŗn antisimÊtrica]]
62516 [[he:אנטי סימטריו×Ē]]
62517 [[ko:반대ėš­ę´€ęŗ„]]
62518 [[pl:Relacja antysymetryczna]]
62519 [[sk:AntisymetrickÃĄ relÃĄcia]]
62520 [[zh:反寚į§°å…ŗįŗģ]]</text>
62521 </revision>
62522 </page>
62523 <page>
62524 <title>Aleister Crowley</title>
62525 <id>1177</id>
62526 <revision>
62527 <id>42059129</id>
62528 <timestamp>2006-03-03T14:53:06Z</timestamp>
62529 <contributor>
62530 <username>Pacula</username>
62531 <id>111499</id>
62532 </contributor>
62533 <minor />
62534 <comment>/* Mountaineering */ minor rewording for clarity</comment>
62535 <text xml:space="preserve">[[Image:Aleister Crowley.jpg|thumb|right|235px|Aleister Crowley]]
62536 '''Aleister Crowley''', born '''Edward Alexander Crowley''' ([[12 October]] [[1875]] – [[1 December]] [[1947]]) was an [[occult]]ist, [[mystic]], [[sexual revolution]]ary, and drug user (especially [[opium]]).
62537
62538 Other interests and accomplishments were wide-ranging (he was a [[chess master]], [[mountain climber]], [[poet]], [[writer]], [[painter]], [[astrologer]] and social [[critic]]). He was quite notorious during his life, and was dubbed &quot;The Wickedest Man In the World&quot;; the term first appeared in [[1928]] in ''[[John Bull (disambiguation)|John Bull]]'', a [[tabloid]] pictorial of the day.
62539
62540 ==Biography==
62541 Edward Alexander Crowley was born in [[Royal Leamington Spa]], [[Warwickshire]], [[England]], between 11:00pm and 12 midnight on [[12 October]] [[1875]].
62542
62543 His father, Edward Crowley, once maintained a lucrative family [[brewery]] business and was retired at the time of Aleister's birth. His mother, Emily Bertha Bishop, drew roots from a [[Devon]] and [[Somerset]] family.
62544
62545 Aleister grew up in a staunch [[Plymouth Brethren]] household. His father, after retiring from his daily duties as a brewer, took up the practice of [[preaching]] at a fanatical pace. Daily Bible studies and private tutoring were mainstays in young Aleister's childhood; however, after his father's death, his mother's efforts at indoctrinating her son in the Christian faith only served to provoke Aleister's [[scepticism]]. As a child, young Aleister's constant rebellious behaviour displeased his devout mother to such an extent she would chastize him by calling him &quot;The Beast&quot; (from the Book of Revelation), an epithet that Crowley would later happily adopt for himself. He objected to the labelling of what he saw as life's most worthwhile and enjoyable activities as &quot;sinful&quot;.
62546
62547 In response, Crowley created his own philosophical system, ''Scientific Illuminism'' — a synthesis of various Eastern [[mysticism|mystical]] systems (including [[Hinduism]], [[Buddhism]], [[Tantra]], the predecessor to Western sex magick, [[Zoroastrianism]] and the many systems of Yoga) fused with the Western occult sciences of the [[Hermetic Order of the Golden Dawn]] and the many reformed rituals of [[Freemasonry]] he later reformulated within the [[Ordo Templi Orientis]] (O.T.O). This system also appeals to scientific and philosophical [[scepticism]]. His undergraduate studies in [[chemistry]] at [[Trinity College, Cambridge]] helped forge the [[scientific scepticism]] that later culminated in the many-volumed and unparalleled occult publication, ''[[The Equinox]].''
62548
62549 Following the death of his father, the young Aleister (then &quot;Alec&quot; or &quot;Alick&quot;) turned to a form of [[Satanism]] in grief. However, within a few years he abandoned this for [[atheism]] and [[hedonism]], or in his words, &quot;began to behave like a normal, healthy human being.&quot; During the year [[1897]], he slowly came to view earthly pursuits as useless and began his lifelong exploration of esoteric matters. A number of events contributed to this change. (The [[Aleister Crowley#Chess|section on chess]] in this article gives one example.)
62550
62551 Involved as a young adult in the [[Hermetic Order of the Golden Dawn]], he first studied mysticism with and made enemies of [[William Butler Yeats]] and [[Arthur Edward Waite]]. Like many in occult circles of the time, Crowley voiced the view that Waite was a pretentious bore through searing critiques of Waite's writings and editorials of other authors' writings.
62552
62553 His friend and former Golden Dawn associate [[Allan Bennett]] introduced him to the ideas of [[Buddhism]], while [[MacGregor Mathers|Samuel Liddell MacGregor Mathers]], acting leader of the Golden Dawn organization, acted as his early mentor in western magick but would later become his enemy. Several decades after Crowley's participation in the Golden Dawn, Mathers claimed copyright protection over a particular ritual and sued Crowley for infringement after Crowley's public display of the ritual. In a book of fiction entitled ''[[Moonchild]],'' Crowley portrayed Mathers as the primary villain, including him as a character named SRMD, using the abbreviation of Mathers' magical name. Arthur Edward Waite also appeared in ''Moonchild'' as a villain named Arthwaite, while Bennett appeared in ''Moonchild'' as the main character's wise mentor, Simon Iff.
62554
62555 While he did not officially break with Mathers until [[1904]], Crowley lost faith in this teacher's abilities soon after the [[1900]] schism in the Golden Dawn (if not before). Later that year, Crowley travelled to Mexico and continued his magical studies in isolation. AC's writings suggest that he discovered the word ''[[Abracadabra|Abrahadabra]]'' during this time. (The article on this word explains the spelling.)
62556
62557 In October of [[1901]], after practising [[Raja Yoga]] for some time, he said he had reached a state he called [[dhyana]] — one of many states of unification in thoughts that are described in ''MAGICK Book IV'' (See [[egolessness|Crowley on egolessness]]). [[1902]] saw him writing the essay ''Berashith'' (the first word of [[Genesis (Old Testament)|Genesis]]), in which he gave [[meditation]] (or restraint of the mind to a single object) as the means of attaining his goal. The essay describes [[ceremony|ceremonial]] magic as a means of training the will, and of constantly directing one's thoughts to a given object through ritual. In his 1903 essay, ''Science and Buddhism'', Crowley urged an [[empirical]] approach to Buddhist teachings.
62558
62559 He said that a mystical experience in [[1904]] while on vacation in [[Cairo]], [[Egypt]], led to his founding of the [[philosophy of religion|religious philosophy]] known as [[Thelema]]. Aleister's wife Rose started to behave in an odd way, and this led him to think that some entity had made contact with her. At her instructions, he performed an invocation of the Egyptian god [[Horus]] on [[March 20]] with (he wrote) &quot;great success&quot;. According to Crowley, the god told him that a new magical Aeon had begun, and that A.C. would serve as its prophet. Rose continued to give information, telling Crowley in detailed terms to await a further revelation. On [[8 April]] and for the following two days at exactly noon he heard a voice, dictating the words of the text, ''Liber AL vel Legis,'' or ''[[The Book of the Law]],'' which Crowley wrote down. The voice claimed to be that of Aiwass (or Aiwaz &quot;the minister of Hoor-paar-kraat,&quot; or Horus, the god of force and fire, child of [[Isis and Osiris]]) and self-appointed conquering lord of the New Aeon, announced through his chosen scribe &quot;the prince-priest the Beast.&quot;
62560
62561 Portions of the book are in numerical [[cipher]], which Crowley claimed the inability to decode (Setian [[Michael Aquino]] later claimed to be able to decode them). Thelemic dogma (to the extent that Thelema has dogma) explains this by pointing to a warning within the ''Book of the Law'' — the speaker supposedly warned that the scribe, Ankh-af-na-khonsu (Aleister Crowley), was never to attempt to decode the ciphers, for to do so would end only in folly. The later-written ''The Law is For All'' sees Crowley warning everyone not to discuss the writing amongst fellow critics, for fear that a [[dogma|dogmatic]] position would arise. While he declared a &quot;new Equinox of the Gods&quot; in early 1904, supposedly passing on the revelation of [[March 20]] to the occult community, it took years for Crowley to fully accept the writing of the ''Book of the Law'' and follow its doctrine. Only after countless attempts to test its writings did he come to embrace them as the official doctrine of the New Aeon of [[Horus]]. The remainder of his professional and personal careers were spent expanding the new frontiers of scientific [[illuminism]].
62562
62563 Rose and Aleister had a daughter, whom AC named Nuit Ma Ahathoor Hecate Sappho Jezebel Lilith Crowley, in July of 1904. This child died in [[1906]]. They had another daughter, Lola Zaza, in the summer of that year, and AC devised a special ritual of thanksgiving for her birth. He performed a thanksgiving ritual before his first claimed success in the [[Abramelin]] operation, on [[October 9]], 1906. The events of that year gave the Abramelin book a central role in Crowley's system. He described the primary goal of the &quot;Great Work&quot; using a term from this book: &quot;the Knowledge and Conversation of the [[Holy Guardian Angel]].&quot; An essay in the first number of ''The Equinox'' gives several reasons for this choice of names:
62564 :''1. Because Abramelin's system is so simple and effective.''
62565
62566 :''2. Because since all theories of the universe are absurd it is better to talk in the language of one which is patently absurd, so as to mortify the metaphysical man.''
62567
62568 :''3. Because a child can understand it.''
62569
62570 Crowley was notorious in his lifetime — a frequent target of attacks in the [[tabloid press]], which labelled him &quot;The Wickedest Man in the World&quot; to his evident amusement. At one point, he was expelled from [[Italy]] after having established a sort of [[commune (intentional community)|commune]], the organization of which was based on his personal philosophies, the [[Abbey of Thelema]], at Cefalu, [[Sicily]].
62571
62572 In [[1934]] Crowley was declared bankrupt after losing a court case in which he sued the artist [[Nina Hamnett]] for calling him a black magician in her [[1932]] book, ''Laughing Torso.'' In addressing the jury, Mr Justice Swift said:
62573 &quot;I have been over forty years engaged in the administration of the law in one capacity or another. I thought that I knew of every conceivable form of wickedness. I thought that everything which was vicious and bad had been produced at one time or another before me. I have learnt in this case that we can always learn something more if we live long enough. I have never heard such dreadful, horrible, blasphemous and abominable stuff as that which has been produced by the man (Crowley) who describes himself to you as the greatest living poet.&quot;
62574
62575 Aleister Crowley died of a respiratory infection in a [[Hastings]] [[boarding house]] on [[December 1]], [[1947]], at the age of 72. According to some accounts he died on [[December 5]], [[1947]]. He was penniless and [[addict]]ed to [[opium]], which had been prescribed for his [[asthma]] and [[bronchitis]], at the time.
62576
62577 Biographer Lawrence Sutin passes on various stories about AC's death and last words. Frieda Harris supposedly reported him saying, &quot;I am perplexed,&quot; though she did not see him at the very end. According to John Symonds, a Mr Rowe witnessed Crowley's death along with a nurse, and reported his last words as, &quot;Sometimes I hate myself.&quot; Biographer Gerald Suster accepted the version of events he received from a &quot;[[Mr. W.H.|Mr W.H.]]&quot; in which Crowley dies pacing in his living-room. Supposedly Mr W.H. heard a crash while polishing furniture on the floor below, and entered Crowley's rooms to find him dead on the floor. Patricia &quot;Deirdre&quot; MacAlpine, the mother of his son, denied all this and reports a sudden gust of wind and peal of thunder at the (otherwise quiet) moment of his death. According to MacAlpine, Crowley remained bedridden for the last few days of his life, but was in light spirits and conversational. Readings at the cremation service in nearby Brighton included one of his own works, ''Hymn to Pan,'' and newspapers referred to the service as a [[black mass]]. [[Brighton]] council subsequently resolved to take all necessary steps to prevent such an incident occurring again.
62578
62579 ==Chess==
62580 Crowley learnt to play chess at the age of six and first competed on the Eastbourne College chess team (where he was taking classes in [[1892]]). He showed immediate competence, beating the adult champion in town and even editing a chess column for the local newspaper, the Eastbourne Gazette (Sutin, p.33), which he often used to criticise the Eastbourne team. He later joined the university chess club at [[Cambridge]], where he beat the president in his freshman year and practised two hours a day towards becoming a champion — &quot;My one serious worldly ambition had been to become the champion of the world at chess&quot; (Confessions, p.193).
62581
62582 However, he gave up his chess aspirations in [[1897]] when attending a chess conference in Berlin:
62583 &lt;blockquote&gt; But I had hardly entered the room where the masters were playing when I was seized with what may justly be described as a mystical experience. I seemed to be looking on at the tournament from outside myself. I saw the masters — one, shabby, snuffy and blear-eyed; another, in badly fitting would-be respectable shoddy; a third, a mere parody of humanity, and so on for the rest. These were the people to whose ranks I was seeking admission. &quot;There, but for the grace of God, goes Aleister Crowley,&quot; I exclaimed to myself with disgust, and there and then I registered a vow never to play another serious game of chess. I perceived with preternatural lucidity that I had not alighted on this planet with the object of playing chess. (Confessions, Ch.16). &lt;/blockquote&gt;
62584
62585 ==Mountaineering==
62586 In the summer of [[1902]], [[Oscar Eckenstein]] and Crowley undertook the first attempt to scale Chogo Ri (known in the west as [[K2]]), located in [[Pakistan]]. The Eckenstein-Crowley Expedition consisted of Eckenstein, Crowley, [[Guy Knowles]], H. Pfannl, V. Wesseley, and Dr [[Jules Jacot-Guillarmod]]. During this trip he won a world record for his hardships on the [[Baltoro Glacier]], sixty-eight straight days of glacial life.
62587
62588 In May [[1905]], he was approached by Dr [[Jules Jacot-Guillarmod]] ([[1868]] - [[1925]]) to accompany him on the first expedition to [[Kanchenjunga]] in [[Nepal]], the third largest mountain in the world. Guillarmod was left to organize the personnel while Crowley left to get things ready in [[Darjeeling]]. On [[July 31]] Guillarmod joined Crowley in Darjeeling, bringing with him two countrymen, Charles-Adolphe Reymond and Alexis Pache. Meanwhile, Crowley had recruited a local man, Alcesti C. Rigo de Righi, to act as Transport Manager. The team left Darjeeling on [[August 8]], [[1905]], and used the [[Singalila Ridge]] approach to Kangchenjunga. At [[Chabanjong]] they ran into the rear of the 135 [[coolie]]s who had been sent ahead on [[July 24]] and [[July 25]], who were carrying food rations for the team. The trek was led by Aleister Crowley, but four members of that party were killed in an avalanche. Some claims say they reached around 21,300 feet before turning back, however Crowley's autobiography claims they reached about 25,000 feet.
62589
62590 Crowley was sometimes famously scathing about other climbers, in particular [[O. G. Jones]], whom he considered a risk-taking self-publicist, and his 'two photographers' ([[George and Ashley Abraham]]).
62591
62592 ==Science, magic, and sexuality==
62593 Crowley claimed to use a [[scientific method]] to study what people at the time called &quot;spiritual&quot; experiences, making &quot;The Method of Science, the Aim of Religion&quot; the catchphrase of his magazine ''The Equinox''. By this he meant that mystical experiences should not be taken at [[face value]], but critiqued and experimented with in order to arrive at their underlying religious meaning. In this he may be considered to foreshadow Dr. [[Timothy Leary]], who at one point sought to apply the same method to [[psychedelic drug]] experiences. Yet like Leary's, Crowley's method has received little &quot;scientific&quot; attention outside the circle of Thelema's practitioners.
62594
62595 Crowley's magical and initiatory system has amongst its innermost reaches a set of teachings on sex &quot;magick.&quot; He frequently expressed views about sex that were radical for his time, and published numerous poems and tracts combining pagan religious themes with sexual imagery both heterosexual and homosexual.
62596
62597 [[Sex Magick]] is the use of the sex act—or the energies, passions or arousal states it evokes—as a point upon which to focus the will or magical desire for effects in the non-sexual world. In this, Crowley was inspired by [[Paschal Beverly Randolph]], an American author writing in the [[1870s]] who wrote (in his book ''Eulis!'') of using the &quot;nuptive moment&quot; (orgasm) as the time to make a &quot;prayer&quot; for events to occur.
62598
62599 ==Women==
62600
62601 During March [[1899]] Crowley met, at one of the semi-public performances of MacGregor Mathers' [[Rites of Isis]], an American [[soprano]] by the name of [[Susan Strong]] ([[3 August]], [[1870]] - [[11 March]], [[1946]]). Susan was the daughter of [[Dennis Strong]], an American Congressman and mayor of [[Brooklyn]]. She had gone to the [[United Kingdom|UK]] at the age of 21 and had enrolled in the [[Royal College of Music]], [[London]] under the tutelage of the famous Hungarian musician [[Francis Korbay]]. Crowley met up with her again in London when she sang the part of Venus in ''[[Tannhäuser (Wagner)|Tannhäuser]]'' on [[22 June]] [[1899]]. A torrid romance followed during which Susan swore to divorce her American husband and devote herself to Crowley. However on her return to the US, around October [[1899]], she apparently cooled in ardour. Crowley followed her to [[New York]] in June of the following year, but by then she was already on her way back to the [[United Kingdom|UK]] to appear in performances of the [[Royal Opera House]], [[Covent Garden]]. During [[1900]], while in Mexico City, Crowley experienced an [[epiphany (feeling)|epiphany]], during which he transcribed his play, titled ''[[Tannhäuser]]''. He attributed the inspiration of this play to his romance with Susan Strong.
62602
62603 ==Thelema==
62604 *''see also [[Thelema]]''
62605
62606 The religious or mystical system which Crowley founded, into which most of his writings fall, he named '''[[Thelema]]'''. Thelema combines a radical form of philosophical [[libertarianism]], akin in some ways to [[Friedrich Nietzsche|Nietzsche]], with a mystical initiatory system derived in part from the [[Hermetic Order of the Golden Dawn|Golden Dawn]].
62607
62608 Chief among the precepts of Thelema is the [[sovereignty of the individual]] will: &quot;Do what thou wilt shall be the whole of the Law.&quot; Crowley's idea of ''will,'' however, is not simply the individual's desires or wishes, but also incorporates a sense of the person's destiny or greater purpose: what he termed the &quot;Magick Will.&quot; Much of the initiatory system of Thelema is focused on discovering one's true will, true purpose, or [[higher self]]. Much else is devoted to an Eastern-inspired dissolution of the individual [[ego]], as a means to that end (see [[Choronzon]]).
62609
62610 The second precept of Thelema is &quot;Love is the law, love under will&quot; — and Crowley's meaning of &quot;Love&quot; is as complex as that of &quot;Will&quot;. It is frequently sexual: Crowley's system, like elements of the Golden Dawn before him, sees the dichotomy and tension between the male and female as fundamental to existence, and sexual &quot;magick&quot; and metaphor form a significant part of Thelemic ritual.
62611
62612 Thelema draws on numerous older sources and, like many other [[new religious movement]]s of its time, combines &quot;Western&quot; and &quot;Eastern&quot; traditions. Its chief Western influences include the Golden Dawn and elements of [[Freemasonry]]; Eastern influences include aspects of [[yoga]], [[Taoism]], [[Kabbalah]] and [[Tantra]].
62613
62614 ==Writings==
62615 Within the subject of occultism Crowley wrote widely, penning commentaries on the [[Tarot]] ''([[The Book of Thoth]])'', [[yoga]] ''(Book Four)'', the [[Kabbalah]] ''(Sepher Sephiroth)'', [[astrology]] ''(The General Principles of Astrology)'', and numerous other subjects. He also wrote a Thelemic &quot;translation&quot; of the ''[[Tao Te Ching]]'', based on earlier English translations since he knew little or no Chinese. Like the Golden Dawn mystics before him, Crowley evidently sought to comprehend the entire human religious and mystical experience in a single philosophy. He self-published many of his books, expending the majority of his inheritance to disseminate his views. Many of his fiction works, such as the &quot;Simon Iff&quot; detective stories and ''[[Moonchild]]'' have not received significant notice outside of occult circles. However his fictional work ''[[Diary Of A Drug Fiend]]'' has received acclaim from those involved in the field of [[substance-abuse rehabilitation|substance abuse rehabilitation]].
62616
62617 Crowley's most grandiose work is ''[[The Equinox]]'', a large bi-annual periodical that served as the official organ of the [[Argenteum Astrum]] (A∴A∴), and, later, the [[O.T.O.]] It was subtitled &quot;The Review of Scientific Illuminism&quot; and remains one of the definitive works on [[occultism]].
62618
62619 Crowley's other major works include:
62620 * ''[[The Book of Lies]]''
62621 * ''[[The Holy Books of Thelema]]''
62622 * ''[[Konx om Pax]]''
62623
62624 He also wrote a short, highly readable introduction to [[yoga]] (''Eight Lectures on Yoga'') and a [[polemic]] arguing against [[George Bernard Shaw]]'s interpretation of the [[Gospels]] in his preface to ''[[Androcles and the Lion]]''. Crowley's piece was edited by [[Francis King]] and published as ''Crowley on Christ'', and shows him at his erudite and witty best.
62625
62626 Crowley had a peculiar sense of humour. In his ''Book Four'' he includes a chapter purporting to illuminate the Qabalistic significance of [[Mother Goose]] [[nursery rhyme]]s. ''In re'' [[Humpty Dumpty]], for instance, he recommends the occult authority &quot;Ludovicus Carolus&quot; -- better known as [[Lewis Carroll]]. In a footnote to the chapter he admits that he had invented the alleged meanings, to show that one can find occult &quot;Truth&quot; in everything. The title to chapter [[69 (number)|69]] is given as &quot;The Way to Succeed - and the Way to Suck Eggs!&quot; a pun, as the chapter concerns the [[69 sex position]] as a mystical act.
62627
62628 Many Crowley biographies relate the story of [[L. Ron Hubbard]] and [[Jack Parsons]] and their attempt to create a &quot;moonchild&quot; (from Crowley's novel of that name). In Crowley's own words, &quot;Apparently Parsons and Hubbard or somebody is producing a moonchild. I get fairly frantic when I contemplate the idiocy of these louts.&quot; Clearly the admiration Hubbard had for Crowley was not reciprocated.
62629
62630 More famously still, he baited [[Christianity|Christians]] by naming himself [[To Mega Therion]], or &quot;The Great Beast&quot; of the [[Book of Revelation]].
62631
62632 Crowley was also a published, if minor, poet. He wrote the [[1929]] ''Hymn to Pan'' [http://www.paganlibrary.com/music_poetry/crowleys_pan_invocation.php], perhaps his most widely read and anthologized poem. Three pieces by Crowley, &quot;The Quest [http://www.bartleby.com/236/314.html]&quot;, &quot;The Neophyte [http://www.bartleby.com/236/315.html]&quot;, and &quot;The Rose and the Cross [http://www.bartleby.com/236/316.html]&quot;, appear in the [[1917]] collection ''[[The Oxford Book of English Mystical Verse]]''. Crowley's unusual sense of humour is on display in ''White Stains'' [http://www.rahoorkhuit.net/library/crowley/stain.html], an [[1898]] collection of [[pornography|pornographic]] verse pretended to be &quot;the literary remains of George Archibald Bishop, a neuropath of the Second Empire;&quot; the volume is prefaced with a notice that says that &quot; The Editor hopes that Mental Pathologists, for whose eyes alone this treatise is destined, will spare no precaution to prevent it falling into other hands.&quot;
62633
62634 ==Miscellany==
62635 *Crowley also tried to mint a number of new terms instead of the established ones he felt inadequate. For example he spelled [[magic (paranormal)|magic]] &quot;[[magick]]&quot; and renamed [[theurgy]] &quot;high magick&quot; and [[thaumaturgy]] &quot;low magick&quot;.
62636
62637 *&quot;In World War I Aleister Crowley ingratiated himself with a Hermetic sect in order to reveal to the Americans that its head was a highly dangerous German agent. In World War II it was well known in British Intelligence that many leading Nazis were interested in the occult and especially in astrology. Crowley did some work for [[MI5]], but his project for dropping occult information by leaflet on the enemy was rejected by the authorities.&quot; - Richard Deacon, Spyclopaedia
62638
62639 ==Crowley in popular culture==
62640 :''See [[Crowley in popular culture]]''
62641
62642 ==See also==
62643 * The [[Hermetic Order of the Golden Dawn]]
62644 * [[Homunculus]]
62645 * [[Argenteum Astrum]] (A∴A∴)
62646 * [[Ordo Templi Orientis]]
62647 * [[William Breeze]]
62648 * [[The Equinox]]
62649 * [[Thoth Tarot]]
62650 * [[Thelemapedia]]
62651 * [[Grady McMurtry]]
62652 * [[Jack Parsons]]
62653 * [[Lon Milo Duquette]]
62654
62655 ==References==
62656 * Carroll, Robert Todd (2004). &quot;[http://skepdic.com/crowley.html Aleister Crowley (1875-1947)]&quot;. The Skeptic's Dictionary. Retrieved [[30 December]] [[2004]].
62657 * Crowley, Aleister(1990) &quot;[http://deoxy.org/taowley.htm The Tao Teh King, Liber CLVII: THE EQUINOX Vol. III. No. VIII. ASCII VERSION]&quot;. Retrieved [[30 December]] [[2004]].
62658 * [http://www.egnu.org/thelema/ Free Encyclopedia of Thelema] (2005).
62659 * [http://www.egnu.org/thelema/index.php/The_Equinox The Equinox]. Retrieved [[24 March]] [[2005]].
62660 * A biography of Crowley by Lawrence Sutin, ''Do What Thou Wilt'' (2000) ISBN 0312288972.
62661
62662 ==External links==
62663 {{wikiquote}}
62664 {{Wikisource author}}
62665 *http://www.aleistercrowley.com/
62666 * {{gutenberg author| id=Aleister+Crowley | name=Aleister Crowley}}
62667 *[http://www.93beast.fea.st/files/ The most complete resource for books of Crowley in PDF format]
62668 *[http://www.newaeonfilms.com A site dedicated to a film being made on Crowley's life]
62669 *[http://altreligion.about.com/library/faqs/bl_crowleyfaq.htm Crowley Controversy FAQ]
62670 *[http://www.thelemapedia.org/index.php/Aleister_Crowley Aleister Crowley on Thelemapedia]
62671 *[http://www.rotten.com/library/bio/religion/aleister-crowley/ Aleister Crowley - The Rotten Library]
62672 *[http://www.rinf.com/e-books/Aleister-Crowley.html Aleister Crowley Ebooks]
62673 *[http://www.oxygenee.com/absinthe-BOOKS10.html Aleister Crowley and the Green Goddess]
62674
62675 [[Category:1875 births|Crowley, Aleister]]
62676 [[Category:1947 deaths|Crowley, Aleister]]
62677 [[Category:Astrologers|Crowley, Aleister]]
62678 [[Category:Bisexual writers|Crowley, Aleister]]
62679 [[Category:British chess players|Crowley, Aleister]]
62680 [[Category:English astrologers|Crowley, Aleister]]
62681 [[Category:English mountain climbers|Crowley, Aleister]]
62682 [[Category:English novelists|Crowley, Aleister]]
62683 [[Category:English occultists|Crowley, Aleister]]
62684 [[Category:Freemasons|Crowley]]
62685 [[Category:Hermeticism|Crowley, Aleister]]
62686 [[Category:Lesbian, gay, bisexual, or transgender people|Crowley, Aleister]]
62687 [[Category:Occultists|Crowley, Aleister]]
62688 [[Category:Thelema|Crowley, Aleister]]
62689
62690 [[af:Aleister Crowley]]
62691 [[cs:Aleister Crowley]]
62692 [[de:Aleister Crowley]]
62693 [[es:Aleister Crowley]]
62694 [[fr:Aleister Crowley]]
62695 [[it:Aleister Crowley]]
62696 [[nl:Aleister Crowley]]
62697 [[ja:ã‚ĸãƒŦイ゚ã‚ŋãƒŧãƒģクロã‚ĻãƒĒãƒŧ]]
62698 [[no:Aleister Crowley]]
62699 [[pl:Aleister Crowley]]
62700 [[pt:Aleister Crowley]]
62701 [[ru:КŅ€ĐžŅƒĐģи, АĐģиŅŅ‚ĐĩŅ€]]
62702 [[simple:Aleister Crowley]]
62703 [[fi:Aleister Crowley]]
62704 [[sv:Aleister Crowley]]</text>
62705 </revision>
62706 </page>
62707 <page>
62708 <title>Afterlife</title>
62709 <id>1178</id>
62710 <revision>
62711 <id>41839865</id>
62712 <timestamp>2006-03-02T02:05:47Z</timestamp>
62713 <contributor>
62714 <username>ZAROVE</username>
62715 <id>446619</id>
62716 </contributor>
62717 <comment>/* Logical arguments */ Most religions do not assert this.</comment>
62718 <text xml:space="preserve">:''For the Japanese film, see [[After Life]]. For the British television drama, see [[Afterlife (television)]]. For the PC game see [[Afterlife (game)]].''
62719
62720 The '''afterlife''' (or '''life after death''') is a generic term referring to a '''continuation''' of [[existence]], typically [[spirituality|spiritual]] and experiential, beyond this world, or after death. This article is about current generic and widely held or reported concepts of afterlife. ''See also: [[Underworld]], for a comprehensive catalog of specific traditions about afterlife.''
62721
62722 ==Afterlife as a belief==
62723 Many people believe in an afterlife. It is generally described as a non-verifiable and non-falsifiable [[belief]] within a [[religion]], because it is generally accepted as beyond the experiential knowledge or casual accessibility of most people (see [[esoteric knowledge]]). As a result, the popular mind relies on various sources for concepts about afterlife, arranged below in presumed order of reliability:
62724 *Testimony of individuals who claim experiential knowledge of facets of afterlife
62725 **by having died and then been sent back to this life ([[near-death experience]]s)
62726 **by having visited the afterlife during a period of unconsciousness ([[out-of-body experience]]s)
62727 **by having seen the afterlife during a revelatory vision
62728 **by a unique personal gift of remembering an afterlife (before-life) existence
62729 **by having communicated with (or received a message from) someone who has passed over ([[after death communication]] or [[electronic voice phenomenon|electronic voice phenomena]])
62730 *Testimony of individuals who are presumed to have special insights into the afterlife
62731 **holy ones
62732 **miracle workers
62733 **spectacular converts
62734 *Claimed testimony of visitors from the afterlife
62735 **God
62736 **Angels
62737 **Spirits
62738 *Human intuitions of goodness assumed to emanate from the afterlife
62739 *Speculation and extrapolation
62740 *Concoction
62741
62742 While there is information available from all of the above sources, a preponderance of concoctions, speculations, and extrapolations have arguably historically characterized formal descriptions of afterlife. Religious traditions have historically formalized and codified ideas about afterlife in widely divergent forms. Though the onset of the [[information age]] is bringing to light increasing consistency and uniformity of beliefs about afterlife from across and without religious boundaries, most afterlife conceptions continue to follow traditional descriptions, often viewed as rationally weak by skeptics who -- particularly [[atheism|atheists]] and [[agnosticism|agnostics]] of a secular humanist mindset -- may hold that we entirely cease to exist. However, it should be pointed out that not all atheists and agnostics necessarily rule out the existence of an afterlife. For example, many [[buddhism|Buddhists]] neither confirm nor deny the existence of the supernatural (gods, demons, heavens, hells, etc.), while simultaneously embracing the concept of [[rebirth (Buddhist)|rebirth]].
62743
62744 For those who do believe in an afterlife, the various conceptions about it differ in their answer to the following questions:
62745
62746 * Is the afterlife a normal life, or a different type of existence?
62747 * Are afterlife conditions a consequence of good and bad actions during life?
62748 * Is afterlife eternal?
62749 * Is it possible to reincarnate as a human or other form of life?
62750 * What happens at the moment of death?
62751 * Are [[ghost]]s and other [[undead]] a proof of an afterlife?
62752
62753 ==Afterlife as an individual existence==
62754 For an afterlife to exist, there must be something that survives the body when death occurs. This something is usually believed to be extraphysical and is usually called [[soul]] or spirit. Philosophers have long debated whether such an extraphysical substance can exist; see [[Mind-body problem]].
62755
62756 == Afterlife as reward or punishment ==
62757 One notion of afterlife which is common to [[Judaism]] (see [[Jewish eschatology#The afterlife and olam haba (the world to come)|the afterlife and ''olam haba'' [&quot;world to come&quot;] ]]), most sects of [[Christianity]], and [[Islam]] is that human [[soul]]s go on for [[eternity]] to a place of [[happiness]] or [[torment]], such as [[heaven]], [[hell]], or [[purgatory]] or [[limbo]].
62758
62759 Many [[religion|religions]] hold that after death people get reward or punishment based on their deeds or faith.
62760
62761 The [[Christian Bible]], for example, contains the words of Jesus: &quot;The measure you give will be the measure you get.&quot; ([[Gospel of Mark|Mark]] 4:24).
62762
62763 Some Christians, however, assert that Christianity does not hold to the doctrine that entry into Heaven can be earned, rather that it is a gift that is solely God's to give. A common line of reasoning for this is as follows: The Christian Bible states that &quot;all have sinned and fall short of the glory of God,&quot; ([[Epistle to the Romans|Romans]] 3:23) meaning nobody has ever managed to live their life without sinning at least once, and this precludes any sort of afterlife reward. Furthermore, &quot;the wages of sin is death...the gift of God is eternal life in Jesus Christ our Lord.&quot; ([[Epistle to the Romans|Romans]] 6:23) &quot;Eternal life&quot; is traditionally accepted to mean life in Heaven, after death. These passages lead some to believe that Christianity may be the only religion that does not hold to the doctrine that entry into Heaven can be earned, as nobody could ever earn it, and it is a gift that is solely God's to give.
62764
62765 For many, belief in an afterlife is a consolation in connection with death of a beloved one or the prospect of one's own death. On the other hand, [[fear]] of hell etc. may make death worse.
62766
62767 In the informal folk beliefs of many Christians, the souls of virtuous people ascend to Heaven and are converted into [[angels]] upon their deaths. However, a more literal reading of scripture suggests that the dead wait until the [[Last Judgment]], which is followed by resurrection for the faithful. More formal Christian theology makes a sharp distinction between ''angels'', who were created by [[God]] before the creation of humanity, and ''saints'', who are virtuous people who have received immortality from the grace of [[God]].
62768
62769 In view of the eternity of afterlife, some consider regular life as relatively unimportant, except for determining whether afterlife follows, and/or what kind. It is just a provisional situation, and the [[metaphor]] of a [[tent]] as provisional housing facility is used as quoted below:
62770
62771 :''For we know that if our earthly house of this [[tabernacle]] were dissolved, we have a [[building]] of God, a [[house]] not made with hands, eternal in the heavens.''(Bible, 2 Corinthians 5:1)
62772
62773 In what we know of [[Egyptian religion]], afterlife is very important.
62774 The believer had to act well and know the rituals explained in the [[Egyptian Book of the Dead]].
62775 If the corpse was properly [[embalm]]ed and entombed in a [[mastaba]], the defunct would relive in the [[Fields of Yalu]] and accompany the Sun god on its daily ride.
62776 If, during the [[psychomachia]], the souls&lt;!-- ka or ba? --&gt; of the defunct were found faulty, the [[Devourer]] monster would eat them.
62777
62778 Others, including some Universalists, believe in [[universalism]] which holds that all will eventually be rewarded regardless of what they have done or believed.
62779
62780 Life after death, however, is in no way a universal belief; for example, Jehovah's Witnesses interpret Ecclesiastes 9:5 as precluding an afterlife:
62781
62782 :''For the living know that they shall die: but the dead know not any thing, neither have they any more a reward;for the memory of them is forgotten.''
62783
62784 They believe that a resurrection in the flesh at some future date will be a reward and that death (non-existence) is a punishment.
62785
62786 == Afterlife as reincarnation ==
62787 Another afterlife concept which is found among [[Hinduism|Hindus]], [[Buddhism|Buddhists]], and [[Wicca|Wiccans]] is [[reincarnation]], whether as humans, [[animal]]s, or as spiritual beings. One consequence of the Hindu and Buddhist beliefs is that our current lives are also an afterlife, and both Hindus and Buddhists interpret events in our current life as being consequences of actions taken in previous lives, or [[Karma]].
62788
62789 Some [[Neopaganism|Neopagans]] believe in personal reincarnation, whereas some believe that the energy of one's soul reintegrates with a continuum of such energy which is recycled into other living things as they are born.
62790
62791 == Afterlife and modern science==
62792 Other conceptions of an afterlife do not depend as heavily on [[religion]]. Certain scientific fields developed in the [[20th century|20th]] and [[21st century|21st centuries]], that were previously either unknown or purely theoretical, support interesting speculation and questions regarding the afterlife.
62793
62794 For instance, the [[special theory of relativity]], known to many people at least in part through its most famous [[equation]] ([[Energy|E]]=[[mass|m]][[speed of light|c]]²), implies that neither [[matter]] nor [[energy]] can be created nor destroyed. This implies that the fundamental quantities that our [[brain]]s are comprised of cannot actually be destroyed. However, it is certainly observed that the specific composition of those quantities which produces the [[electromagnetic]] [[Electric current|current]]s and [[field (physics)|fields]] thought to comprise [[consciousness]] and [[cognition]] do change after death to forms that no longer produce these currents and fields, which presents the question: Is consciousness a sole result of the specific configuration of matter of a living brain, or do some forms of consciousness or experience remain present in the matter and energy that used to be a living brain? If the latter is true, even in part, then it is not certain that the subjective experience of a being's consciousness ends at the time of death, which could be strongly interpreted as a form of afterlife.
62795
62796 Also, the nature of consciousness and [[sentience]] itself is a subject of wide debate, and not agreed upon by any means. The emerging field of [[cognitive science]] attempts to study the nature of consciousness, sentience, and cognition. It is now possible to study the brain at moments closer to death than ever before, which may lead to insights regarding the cesstion of cognition, and possibly even insights into the subjective experience of consciousness at those times. Greater understanding of these concepts, and the processes that produce them, might have wide-ranging consequences for conceptions of an afterlife.
62797
62798 In a social-sciences sense, the increasing globalization of the world has exposed many people to new religions and [[philosophy|philosophies]]. While the major monotheistic religions of the world ([[Judaism]], [[Christianity]], [[Islam]], and their offshoots) almost universally preach some form of [[Cartesian dualism|mind-body dualism]], many &quot;Eastern&quot; religions, such as the many branches of [[Buddhism]] and [[Taoism]] do not contain any such claims, and may in fact preach ideologies that are opposed to it. [[Zen Buddhism]] in particular is famous for [[koan]]s and parables that are meant to teach that the nature of consciousness is transient and/or [[illusion|illusory]], with some schools going so far as to say that even the concept of a &quot;self&quot; is fundamentally flawed. Philosophical conceptions such as these, which reject mind-body dualism and contain ideas of life and existence separate from a &quot;self&quot; or unique [[soul]], remove in large part one of the major criticisms of scientific individuals regarding the afterlife - namely, that an individual must have a soul in order to experience consciousness after death.
62799
62800 The emerging field of [[artificial intelligence]] in [[computing]] presents interesting questions regarding an experience of afterlife, as well: If a [[robot]] is created which possesses cognition and problem-solving comparable to a human, is that robot considered conscious or &quot;alive&quot;? If so, can he, she, or it &quot;die&quot;? The memories of such robots, if they are ever constructed, could theoretically be composed of some form of electronic storage and stored on devices identical in purpose to modern [[hard drive]]s, which can be completely copied in a matter of seconds or hours. If a [[backup]] is made of such a theoretical robot's memory at some point, and that robot's current memory then is damaged, destroyed, or rendered inoperable, and then restored from the backup, in what sense, if any, does the newly restored robot's experience constitute [[resurrection]] - especially if, for instance, a [[wireless network]] is used to back up the robot's memory to the exact moment of destruction? Assuming that artificial intelligence [[research]] continues at the rapid pace it has shown so far, these and related questions may become quite meaningful in the future.
62801
62802 Finally, though it is not a traditional conception of an afterlife by any means, one particular (and controversial) interpretation of [[quantum physics]] actually implies that a conscious soul may be [[immortal]] in a certain sense - see [[quantum immortality]]. (Though, admittely, in this theory, the organism does not strictly ever &quot;die&quot;, so the term &quot;afterlife&quot; may be inappropriate.)
62803
62804 ==Related studies==
62805 In philosophy, the study of views of the afterlife is a concern of [[Eschatology]], which deals with the soul, the [[resurrection]] of the dead, the messianic era, and the end of the world.
62806
62807 The question of whether there is life after death is closely related to [[the mind-body problem]], and like that problem is one of the classic problems of so-called [[rational psychology]] and hence of one (now largely outdated) notion of the scope of [[metaphysics]].
62808
62809 The later works of [[Emanuel Swedenborg]] present one of the most comprehensive and systematic descriptions of the spiritual world, including [[heaven]] and [[hell]].
62810
62811 ==Criticism==
62812 Upon death, [[brain]] activity ceases and a person's body begins to [[decompose]]. This marks the end of the individual's [[mind]] in the physical world. The fundamental belief of an afterlife is that there exists a non-physical means (a soul or spirit) for the mind to survive the brain's destruction and continue to function in a non-physical world.
62813
62814 [[Occam's Razor]] is used by skeptics as a counter to this belief. There are two basic alternatives to be compared:
62815
62816 *When you die, your mind ceases to function and your body decomposes.
62817 *When you die, your mind continues to function despite the physical destruction of your brain, continuing its existence in a non-physical world.
62818
62819 The first belief is simple and well-supported. Much available scientific evidence indicates that the mind is the product of the brain's activity, and that destruction of the brain also destroys the mind. Therefore, some people conclude that believing in an afterlife (at least in a logically-consistent way) requires the additional [[assumption]]s that:
62820
62821 *There exists a non-physical entity associated with a person (the soul or spirit).
62822 *The mind can continue to operate in the absence of the brain, being somehow supported by the soul.
62823 *The soul exists in a non-physical [[Plane (cosmology)|dimension]] that we are unable to perceive in a measurable way.
62824
62825 Despite there being some objective evidence to support these beliefs, skeptics assert that science cannot prove the existence of an afterlife. The fact that these beliefs are nevertheless widely held may be explained by [[wishful thinking]].
62826
62827 Humans instinctively fear death as we know that our eventual deaths are inevitable. Therefore it is unsurprising that a belief system which promises an escape from death would be strongly embraced. People often suspend their better judgment when presented with &quot;too good to be true&quot; promises (consider [[Advance fee fraud|Nigerian scams]] and similar instances of fraud), and an escape from death is considered by some to be the ultimate promise.
62828
62829 The philosophical belief of [[materialism]] holds that only the physical universe exists. Though not all materialists would argue that this precludes belief in an afterlife, a great number of them do hold this viewpoint. [[Atheism]] and materialism are closely related, and most atheists do not believe in any sort of afterlife.
62830
62831 === Logical arguments ===
62832 If one accepts the afterlife, one also has to accept the concept of a [[soul]], since when someone dies, the physical body [[decompose]]s. Some religions assert that only humans have a soul (although some religions say that some other life forms, such as animals, also do). The question remains as to why would monkeys, which have been shown to be intelligent, not have a soul while humans would. Also, since at the [[subatomic]] level, all things are made of the same elements, why would other animals, plants--or even rocks--not have a soul? If intelligence is the criteria to have a soul, where would the line be drawn as far as mentally challenged people, or very smart animals? (This topic appears often in the work of [[Peter Singer]])
62833
62834 Another argument is that historically, many religions consider women lower than men in many walks of life. These discriminatory themes were also applied against black people in [[USA|America]], or earlier against [[Muslim]]s during the [[crusade]]s, where some human beings were described as having no soul, or going straight to [[Hell]]. It therefore seems that each argument, while based on a sacred ancient text of some sort (the [[Bible]], the [[Qur'an]], etc), are adapted to fit the modern world.{{fact}}
62835
62836 A last logical argument is that if all humans have an afterlife, and go to [[Heaven]] or [[Hell]], then their behavior in those places may be [[determinism|determined]], rather than willfully exerted. People either have free will, or don't. Free will is considered by many to be necessary to have a soul. If they do, then surely there should be evil in Heaven, and good in Hell.
62837
62838 === Philosophical arguments ===
62839
62840 Some non-believers in an afterlife, influenced by [[positivism (philosophy)]], have argued that claims of an afterlife are [[unverifiable]] and [[unfalsifiable]], and therefore cognitively [[meaningless]]. Some have argued that, on the contrary, particular claims concerning the nature of the afterlife are verifiable and falsifiable: all one has to do to verify/falsify them is die. On the other hand, they argue, the belief in the absence of an afterlife can be attacked as vacuous on the grounds that the statement &quot;I cease to exist&quot; is unverifiable, unfalsifiable, and therefore by the same token cognitively meaningless. In particular, the concept of our own non-existence is inconceivable (what experience corresponds to your own non-existence? none.)
62841
62842 Other philosophical issues about the idea of an afterlife can be expressed in thought experiments. Johnny is shot and ceases existence for five minutes ( allow, for the sake of the thought experiment, regardless of your beliefs, that he does not experience any form of afterlife in this time.) Then, five minutes later Johnny is cloned, an exact replica is made, possessing all of the factual knowledge, beliefs, values, intentional states and emotions etc he had at the time of death. Is this being the same Johnny that was killed? The result of this thought experiment is arguably very important to some religious groups.
62843
62844 Now, imagine that in accordance with the doctrines of some religious groups, that a person X dies and is ressurected after a period of death and essential non-existence (lack of awareness). Is this X the same X that died? The issue at stake is essentially whether identity is continuity over time, or a set of traits, i.e complexes of memory, personality, a soul etc.
62845
62846 ==See also==
62847 {{col-begin}}
62848 {{col-break}}
62849 * [[Akhirah]]
62850 * [[Animism]]
62851 * [[Atheism]]
62852 * [[Death]]
62853 * [[Doomsday]]
62854 * [[Electronic voice phenomenon]]
62855 * [[Elysium]]
62856 * [[Enlightenment (concept)|Enlightenment]]
62857 * [[Eschatology]]
62858 * [[Eternity]]
62859 * [[Ghost]]s
62860 * [[Heaven]]
62861 * [[Hell]]
62862 {{col-break}}
62863 * [[Immortality]]
62864 * [[Jewish eschatology]]
62865 * [[Life]]
62866 * [[Near-death experience]]
62867 * [[Out-of-body experience]]
62868 * [[Pre-Birth communication]]
62869 * [[Reincarnation]]
62870 * [[Salvation]]
62871 * [[Soul]]
62872 * [[Undead]]
62873 * [[Valhalla]]
62874 {{col-end}}
62875
62876 ==External links==
62877 *[http://www.victorzammit.com/ A Lawyer Presents the Case for the Afterlife]
62878 *[http://etext.lib.virginia.edu/cgi-local/DHI/dhi.cgi?id=dv1-76 Dictionary of the History of Ideas: ''Death and Immortality'']
62879 *[http://www.spiritualtravel.org/OBE/afterdeath.html A Tibetian Buddhist View of the Afterlife]
62880 *[http://www.unexplainedstuff.com/Afterlife-Mysteries/index.html Encyclopedia of Afterlife Theories]
62881 *[http://www.near-death.com/ Near-Death Experiences and the Afterlife]
62882 *[http://www.infidels.org/library/modern/michael_martin/heaven.html Common problems with the concept of Heaven]
62883 *[http://www.amazon.com/gp/product/0465024602/002-4685174-0810466?n=283155 The Problem of the Soul: Two Visions of Mind and How to Reconcile Them (Hardcover)]
62884 *[http://sedna.no.sapo.pt/death_scresearch/index.htm International Scientific Research into 'the Survival after physical death']
62885
62886
62887 [[Category:Religious philosophy and doctrine]]
62888 [[Category:Death]]
62889 [[Category:Jewish mysticism]]
62890 [[Category:Christian eschatology]]
62891 [[Category:Life after death]]
62892
62893 [[de:Ewiges Leben]]
62894 [[es:MÃĄs allÃĄ]]
62895 [[fr:Vie Êternelle]]
62896 [[la:Vita aeterna]]
62897 [[ja:æĨ世]]
62898 [[simple:Afterlife]]
62899 [[sv:Livet efter detta]]
62900 [[vi:Tháēŋ giáģ›i sau khi cháēŋt]]</text>
62901 </revision>
62902 </page>
62903 <page>
62904 <title>Admiral Doenitz</title>
62905 <id>1179</id>
62906 <revision>
62907 <id>15899678</id>
62908 <timestamp>2003-06-06T01:31:54Z</timestamp>
62909 <contributor>
62910 <username>Camembert</username>
62911 <id>3113</id>
62912 </contributor>
62913 <minor />
62914 <comment>fix double redir</comment>
62915 <text xml:space="preserve">#REDIRECT [[Karl DÃļnitz]]</text>
62916 </revision>
62917 </page>
62918 <page>
62919 <title>Astrometry</title>
62920 <id>1181</id>
62921 <revision>
62922 <id>41673112</id>
62923 <timestamp>2006-02-28T23:54:46Z</timestamp>
62924 <contributor>
62925 <ip>62.104.129.223</ip>
62926 </contributor>
62927 <text xml:space="preserve">{{unsourced}}
62928
62929 [[Image:Interferometric astrometry.jpg|thumb|right|300px|Illustration of the use of optical wavelength interferometry to determine precise positions of stars. ''Courtesy NASA/JPL-Caltech''.]]
62930
62931 '''Astrometry''' is a branch of [[astronomy]] that deals with the positions of [[star]]s and other [[celestial body|celestial bodies]], their distances and movements.
62932
62933 It is one of the oldest subfields of the [[science]], the successor to the more qualitative study of [[positional astronomy]]. Astrometry dates back at least to [[Hipparchus (astronomer)|Hipparchus]], who compiled the first [[Star catalogue|catalogue of stars]] visible to him and in doing so invented the [[Apparent magnitude|brightness scale]] basically still in use today. Modern astrometry was founded by [[Friedrich Bessel]] with his ''Fundamenta astronomiae'', which gave the mean position of 3222 stars observed between 1750 and 1762 by [[James Bradley]].
62934
62935 Apart from the fundamental function of providing [[Astronomer]]s with a [[reference frame]] to report their observations in, astrometry is also fundamental for fields like [[celestial mechanics]], [[stellar dynamics]] and [[galactic astronomy]]. In [[observational astronomy]], astrometric techniques help identify stellar objects by their unique motions. It is instrumental for keeping [[time]], in that [[Coordinated Universal Time|UTC]] is basically the [[International Atomic Time|atomic time]] synchronized to [[Earth]]'s rotation by means of exact observations. Astrometry is also involved in creating the [[cosmic distance ladder]] because it is used to establish [[parallax]] distance estimates for stars in the [[Milky Way]].
62936
62937 == Advances in astrometry ==
62938
62939 * [[Sundial]]s were effective at measuring time.
62940 * [[Astrolabe]]s were invented for measuring celestial angles.
62941 * Astrometric applications led to the development of [[spherical geometry]]
62942 * Careful measurement of [[planetary motion]]s by [[Tycho Brahe]], followed by analysis by [[Johannes Kepler]] proved the [[Copernican principle]], that Earth revolves about the [[Sun]].
62943 * The [[sextant]] dramatically improved measurement of celestial [[angle]]s.
62944 * [[James Bradley]] measured [[aberration of light|stellar aberration]] with a precise transit telescope.
62945 * The development of [[charge coupled device]]s (CCDs), and their adoption by astronomers in the 1980s, improved the precision of professional astrometric work.
62946 * The development of inexpensive CCDs, software, and telescopes allowed for large-scale [[amateur astronomy|amateur astrometric]] observation of [[minor planet]]s.
62947 * From 1989 to 1993, the European Space Agency's [[Hipparcos]] satellite performed astrometric measurements resulting in a catalogue of positions accurate to 20-30 milliarcsec for over a million stars.
62948
62949 Astronomers use astrometric techniques for the tracking of [[near-Earth objects]]. It has been also been used to detect [[extrasolar planets]] by measuring the displacement they cause in their parent star's apparent position on the sky, due to their mutual orbit around the center of mass of the system. NASA's planned [[Space Interferometry Mission]] ([[SIM PlanetQuest]]) will utilize astrometric techniques to detect [[terrestrial planets]] orbiting 200 or so of the nearest [[solar-type stars]].
62950
62951 Astrometric measurements are used by [[astrophysicist]]s to constrain certain models in [[celestial mechanics]]. By measuring the velocities of [[pulsar]]s, it is possible to put a limit on the [[asymmetry]] of [[supernova]] explosions. Also, astrometric results are used to determine the distribution of [[dark matter]] in the galaxy.
62952
62953 == Astrometrics ==
62954
62955 '''Astrometrics''' is the [[science]] of [[star|stellar]] [[measurement]]s and [[motion]]. Astrometrics was used, during the [[1990]]s, to detect [[extrasolar planet|extrasolar]] [[gas giant]]s [[orbit]]ing various [[solar system]]s. This was done by observing the &quot;[[stellar wobble]]&quot; of a star and calculating what kinds of [[gravity|gravitational]] [[force]]s would cause such motion; it was then determined that [[planet]]ary forces must be affecting the stars in question.
62956
62957 == Other references ==
62958
62959 In the [[fiction]]al ''[[Star Trek: Voyager]]'', the '''Astrometrics''' lab is the [[set (drama)|set]] for various [[scene]]s.
62960
62961 == See also ==
62962
62963 * [[Astrometric binary]]
62964 * [[Ephemeris]]
62965 * [[Gaia probe|Gaia Probe]] (ESA -- Planned for 2009-14)
62966 * [[Hipparcos|Hipparcos Space Astrometry Mission]] (ESA -- 1989-93)
62967 * [[Spherical astronomy]]
62968
62969 {{Astronomy-footer}}
62970
62971 [[Category:Astrometry| ]]
62972 [[Category:Astronomy]]
62973
62974 [[eo:astrometrio]]
62975 [[de:Astrometrie]]
62976 [[fr:AstromÊtrie]]
62977 [[id:Astrometri]]
62978 [[it:Astrometria]]
62979 [[nl:Astrometrie]]
62980 [[pl:Astrometria]]
62981 [[pt:Astrometria]]
62982 [[ro:Astrometrie]]
62983 [[ru:АŅŅ‚Ņ€ĐžĐŧĐĩŅ‚Ņ€Đ¸Ņ]]
62984 [[sl:astrometrija]]
62985 [[sr:АŅŅ‚Ņ€ĐžĐŧĐĩŅ‚Ņ€Đ¸Ņ˜Đ°]]
62986 [[fi:Astrometria]]</text>
62987 </revision>
62988 </page>
62989 <page>
62990 <title>Athena</title>
62991 <id>1182</id>
62992 <revision>
62993 <id>41950341</id>
62994 <timestamp>2006-03-02T21:01:09Z</timestamp>
62995 <contributor>
62996 <ip>172.160.197.182</ip>
62997 </contributor>
62998 <comment>/* Erichthonius */</comment>
62999 <text xml:space="preserve">:''This article is about the goddess Athena. For other uses see [[Athena (disambiguation)]].''
63000
63001 [[Image:Athena.png|right|thumb|200px|Drawing from a sculpture of Athena at the Louvre.]]
63002
63003 '''Athena''', ([[Greek language|Greek]] {{polytonic|áŧˆÎ¸ÎˇÎŊážļ}} AthēnÃĸ or {{polytonic|áŧˆÎ¸ÎŽÎŊΡ}} AthÊnē; [[Doric Greek|Doric]]: {{polytonic|áŧˆĪƒÎŦÎŊÎą}} AsÃĄna), the [[Greece|Greek]] [[goddess]] of [[wisdom]], [[strategy]], [[crafts]] and [[war]] associated by the [[Etruria|Etruscan]]s with their [[Etruscan mythology|goddess]] [[Menrva]] and later by the Romans as [[Minerva]], is attended by an [[Little Owl|owl]], wore a goatskin breastplate called the [[Aegis]] given to her by her father and is accompanied by the goddess of victory, [[Nike (mythology)|Nike]]. Athena is also a goddess associated with mentoring heroes. Athena is an armed warrior goddess, never a child, always a [[virgin]] (''parthenos''); she is said to have found the advances of men to be childish. The [[Parthenon]] at Athens, Greece is her most famous shrine. She never had a consort or lover, although once [[Hephaestus]] tried and failed.[[Herodotus]] and [[Plato]] incorrectly identified '''Athena''' with the [[Libyan (Ancient people)|Libyan]] (modern [[Berber]]s) goddess [[Neith]]. According to [[Plato]], Athena was derived from ''A-θÎĩÎŋ-ÎŊĪŒÎą'' (A-theo-noa) or ''H-θÎĩÎŋ-ÎŊĪŒÎą'' (E-theo-noa) meaning the mind of God ([[Cratylus|Crat.407b]]).
63004
63005
63006 ==History==
63007 [[Image:Athena head.jpg|thumb|left|200px|Athena from the east pediment of the Afea temple in [[Aegina]]]]
63008
63009 Athena was probably a goddess in the Aegean in the prehistoric times, although her name is not attested in [[Eteocretan]]. She has been compared to [[Anatolian]] mother goddesses like [[Cybele]], her name possibly of [[Lydian]] origin (G. Neumann, ''Kadmos'' 6, 1967), and her byname ''Pallas'' has been compared to Hittite ''palahh'', a divine raiment [http://www.dainst.org/index_79_en.html]. In [[Mycenaean Greek]], ''A-ta-na-po-ti-ni-ja'' ''/Athana potniya/'' (Mistress Athena) is referred to in the [[Knossos]] [[Linear B]] text V 2. and ''A-ta-no-dju-wa-ja'' ''/Athana diwya/'', the final part being the Linear B spelling of what we know from ancient Greek as ''Diwia'' (Mycenaean ''di-u-ja'' or ''di-wi-ja'') &quot;divine&quot; (see [[dyeus]]). There is evidence that in early times, Athena was an [[owl]] herself, or a [[bird goddess]] in general. In book 3 of the [[Odyssey]], she takes the form of a [[sea-eagle]]. Her tassled [[aegis]] may be the remnants of wings [http://www.fjkluth.com/athena.html]. Athena is associated with [[Athens]], a plural name because it was the place where she presided over her sisterhood, the Athenai, in earliest times.
63010
63011 In the [[List of Greek mythological characters|Olympian pantheon]], Athena was remade as the favorite daughter of [[Zeus]], born from his forehead. The story of her birth comes in several versions. In the one most commonly cited, Zeus lay with [[Metis (mythology)|Metis]], the goddess of crafty thought, but immediately feared the consequences. It had been prophesied that Metis would bear children more powerful than Zeus himself. In order to forestall these dire consequences, Zeus transformed Metis into a fly and swallowed her immediately after lying with her. He was too late: Metis had already conceived a child. Metis immediately began making a helmet and robe for her fetal daughter. The hammering as she made the helmet caused Zeus great pain and [[Prometheus]], [[Hephaestus]], [[Hermes]] or [[Palaemon]] (depending on the sources examined) cleaved Zeus's head with the double-headed Minoan axe ([[labrys]]). Athena leaped from Zeus's head, fully grown and armed, and Zeus was none the worse for the experience.
63012
63013 Athena was patron of the art of weaving and other crafts, wisdom and battle. Unlike [[Ares]], who was hot-headed and undependable in battle, Athena's domain was strategy and tactics. Having taken the side of the Greeks in the war against [[Troy]], Athena assisted the wily [[Odysseus]] on his journey home.
63014
63015 === Athena in art ===
63016 [[Image: AttalusICorrected.jpg|thumb|200px|right|'''Athena''' was depicted on the obverse side of the [[Coin]] of [[Attalus I]], depicting the head of Attalus' great uncle [[Philetaerus]].]]
63017 Athena is classically portrayed wearing full armor, carrying a lance and a shield with the head of the [[gorgon]] [[Medusa (mythology)|Medusa]] mounted on it. It is in this posture that she was depicted in [[Phidias]]'s famous gold and ivory statue of her, the [[Athena Parthenos]], now lost to history, in the [[Parthenon]] on the Athenian [[Acropolis, Athens|Acropolis]]. Athena is also often depicted with an [[owl]] (a symbol of wisdom) sitting on one of her shoulders. The [[Mourning Athena]] is a relief sculpture that dates around 460 BC and portrays a tired, emotional Athena.
63018
63019 In earlier, archaic portraits of Athena in [[vase-painting]]s, the goddess retains some of her Minoan character, such as great birdwings.
63020
63021 === Appellations ===
63022 Homer's most common [[epithets in Homer|epithet]] for Athena, ''ÎŗÎģÎąĪ…ÎēĪŽĪ€ÎšĪ‚'' (glaukopis) is usually translated &quot;bright-eyed&quot; and is a combination of ''ÎŗÎģÎąĪÎēÎŋĪ‚'' (glaukos) (which can be translated as &quot;gleaming,&quot; &quot;silvery,&quot; and later as &quot;bluish-green&quot; or &quot;gray&quot;) and ''ĪŽĪˆ'' (ôps - &quot;eye,&quot; or sometimes, &quot;face&quot;). It is interesting to note that ''ÎŗÎģÎąĪÎž'' (glaux - owl) is from the same root, presumably because of its own distinctive eyes. The bird which sees in the night is closely associated with the goddess of wisdom: in archaic images, she is frequently depicted with an owl perched on her head. In earlier times, Athena may well have been a [[bird goddess]], similar to [[Lilith|Lilitu]] and/or the goddess depicted with owls, wings and bird talons on the [[Burney relief]].
63023
63024 In her role as judge at [[Orestes (mythology)|Orestes]]' trial on the murder of his mother, [[Clytemnestra]] (which he won), Athena won the epithet &quot;Athena Areia.&quot;
63025
63026 Athena was often associated with the local [[Aegina|Aeginian]] goddess, ''ΑĪ†ÎąÎ¯Îą'' ([[Aphaea]]). She had the epithet &quot;Athena Ergane&quot; as the patron of craftsmen and artisans.
63027
63028 She was often referred to with the epithet &quot;ΠιÎģÎģÎŦĪ‚ ΑθηÎŊÎŦ&quot; (Pallas Athena). [[Pallas]] was an ambiguous figure, sometimes male sometimes female, never imagined apart from Athena. She killed Pallas in a mistake, and ever after wore her/his goatskin fringed with [[chthonic]] serpents, as the protective [[aegis]]. With the epithet &quot;[[Athena Parthenos]]&quot; (&quot;virgin&quot;), Athena was worshipped at the [[Parthenon]]. With the epithet &quot;Athena Promachos&quot; she led in battle. With the epithet &quot;Athena Polias&quot; (&quot;of the city&quot;), Athena was the protectress of Athens and the Acropolis.
63029
63030 In the [[Homeric Hymns]] and in [[Hesiod]]'s ''[[Theogony]]'', she is described with the curious epithet &quot;Tritogeneia.&quot; The exact meaning of this term is unclear. It seems to mean &quot;[[Triton (mythology)|Triton]]-born,&quot; perhaps indicating that the sea-god was her father according to some early myths, or that she was born near Lake Triton in [[Africa]]. Another possible meaning is &quot;triple-born&quot; or &quot;third-born,&quot; which may refer to her status as the third daughter of Zeus.
63031
63032 ==Episodes==
63033
63034 === Erichthonius ===
63035 According to [[Apollodorus]], [[Hephaestus]] attempted to [[rape]] Athena but was unsuccessful. His [[semen]] fell on the ground, and [[Erichthonius of Athens|Erichthonius]] was born from the earth. Athena then raised the baby as a foster mother. Alternatively, the semen landed on Athena's leg, and she wiped it off with a piece of wool which she tossed on the ground. Erichthonius arose from the ground and the wool. Another version says that Hephaestus wanted Athena to marry him but she disappeared on his bridal bed; he ejaculated onto the ground instead. Athena gave three sisters, [[Herse]], [[Pandrosus]] and [[Aglaulus]] the baby in a small box and warned them to never open it. Aglaulus and Herse opened the box which contained the infant and future-king, Erichthonius. The sight caused Herse and Aglaulus to go insane and they threw themselves off the [[Acropolis, Athens|Acropolis]].
63036
63037 An alternative version of the same story is that while Athena was gone to bring a mountain to use in the Acropolis, the two willful sisters opened the box. A crow witnessed the opening and flew away to tell Athena, who fell into a rage and dropped the mountain (now [[Mt. Lykabettos]]). Once again, Herse and Aglaulus went insane and threw themselves to their deaths off a cliff.
63038
63039 Erichthonius later became [[King of Athens]] and implemented many beneficial changes to Athenian culture. During this time, Athena frequently protected him.
63040
63041 === Athens ===
63042 Athena competed with [[Poseidon]] to be the patron deity of [[Athens, Greece|Athens]]. They agreed that each would give the Athenians one gift and the Athenians would choose whichever gift they preferred. Poseidon struck the ground with his [[trident]] and a spring sprung up; the water was salty and not very useful, whereas Athena offered them the first domesticated [[olive tree]]. The Athenians (or their king, [[Cecrops]]) accepted the olive tree and along with it Athena as their patron, for the olive tree brought wood, oil and food. This is thought to remember a clash between the inhabitants during [[Mycenae]]an times and newer immigrants. It is interesting to note that Athens at its height was a significant sea power, defeating the [[Iran|Persia]]n fleet at the [[Battle of Salamis]] near [[Salamis Island]] in [[480 BC]]. Athena was also the patron goddess of several other cities, notably [[Sparta]].
63043 In an alternate version, Poseidon invents the first horse. Athena's gift is still chosen.
63044
63045 === Arachne ===
63046 A woman named ΑĪÎŦĪ‡ÎŊΡ ([[Arachne]]) once boasted that she was a superior weaver to Athena, the goddess of weaving. Athena appeared to her disguised as an old woman and told Arachne to repent for her [[hubris]] but Arachne instead challenged Athena to a contest. The old woman threw off her disguise and the contest began. Athena wove a depiction of the conflict with Poseidon over Athens, while Arachne wove a depiction of Zeus' many romantic exploits. Athena was furious at her skill (the contest was never decided) and her choice of subject. Enraged, she destroyed Arachne's work and struck the girl's head with the shuttle. As she could not bear to endure the pain, Arachne unsuccessfully tried to [[hanging|hang]] herself, but was transformed by Athena into the first [[spider]], which forever weaves its [[silk]] for food.
63047
63048 ===Perseus and Medusa===
63049 Athena guided [[Perseus (mythology)|Perseus]] in eliminating [[Medusa (mythology)|Medusa]], a dangerous unreformed relic of the old pre-Olympian order, and she was awarded the grisly trophy that turned men to stone, for her shield.
63050
63051 === Heracles ===
63052 Athena instructed [[Heracles]] how to remove the skin from the [[Nemean Lion]], by using the lion's own claws to cut through its thick hide. The lion's hide became Heracles' signature garment, along with the olive-wood club he used in the battle. Athena also assisted Heracles on a few other labors.
63053
63054 She also helped Heracles defeat the [[Stymphalian Birds]], along with [[Hephaestus]].
63055
63056 === [[Tiresias]] and [[Chariclo]] ===
63057 Athena blinded [[Tiresias]] after he stumbled onto her bathing naked. His mother, [[Chariclo]], begged her to undo her curse, but Athena couldn't; she gave him prophecy instead.
63058
63059 == Miscellaneous ==
63060 Athena (Minerva) is the subject of the $50 1915-S Panama-Pacific [[commemorative coin]]. At 2.5 troy oz (78 g) gold, this is the largest (by [[weight]]) coin ever produced by the [[United States Mint|U.S. Mint]]. This was the first $50 coin issued by the U.S. Mint and no higher was produced until the production of the $100 platinum coins in [[1997]]. Of course, in terms of face-value in adjusted dollars, the [[1915]] is the highest denomination ever issued by the U.S. Mint.
63061
63062 A [[Parthenon (Nashville)|full-scale replica of the Parthenon]] has stood in [[Nashville, Tennessee]], which is known as the Athens of the South, for over a century. In [[1990]], a great [[Athena Parthenos|replica of Phidias' statue]] of the goddess was added, over 41 feet (12.5 m) tall and gilded.
63063
63064 Athena had a childhood friend named Pallas. During one of their outings, Athena accidentally shot Pallas with an arrow, fatally wounding her. Athena then decided to put Pallas's name before hers so that Pallas would always be remembered.
63065
63066 Athena is also featured prominently in various modern pop culture creations including a Japanese animation called [[Saint Seiya]]. Saint Seiya was originally created by Japanese manga artist [[Masami Kurumada]].
63067
63068 Athena had been given birth by Zeus &quot;the father of gods&quot; and Metis. Zeus had been told that any children he had by Metis would be very powerful and someday dethrone him.
63069
63070 ==External links==
63071 {{wikiquote}}
63072 {{commons|Athena}}
63073 *[http://fury.com/galleries/road_trip_2003/index-Pages/Image6.html Nashville's Athena statue]
63074 *[http://www.nashville.gov/parthenon/index.htm The Nashville Parthenon]
63075 *[http://www.anistor.co.hol.gr/english/enback/e023 Minoan Origins of Athena] by Virginia Hicks
63076
63077 {{Greek myth (Olympian)2}}
63078
63079 [[Category:Greek goddesses]]
63080 [[Category:Smithing goddesses]]
63081 [[Category:War goddesses]]
63082 [[Category:Wisdom goddesses]]
63083 [[Category:Characters in the Iliad]]
63084
63085 [[ar:ØĸØĢŲŠŲ†Ø§]]
63086 [[bg:АŅ‚иĐŊĐ° (ĐŧиŅ‚ĐžĐģĐžĐŗиŅ)]]
63087 [[bs:Atena]]
63088 [[ca:Atena]]
63089 [[cs:AthÊna]]
63090 [[da:Athene (gudinde)]]
63091 [[de:Athene]]
63092 [[el:ΑθηÎŊÎŦ (ÎŧĪ…θÎŋÎģÎŋÎŗÎ¯Îą)]]
63093 [[es:Atenea]]
63094 [[eo:Atena]]
63095 [[fr:AthÊna]]
63096 [[gl:Atenea]]
63097 [[ko:ė•„테나]]
63098 [[id:Dewi Athena]]
63099 [[it:Atena]]
63100 [[he:א×Ēנה]]
63101 [[la:Athena]]
63102 [[lt:Atėnė]]
63103 [[lv:Atēna]]
63104 [[hu:AthÊnÊ]]
63105 [[nl:Pallas Athene]]
63106 [[ja:ã‚ĸテナ]]
63107 [[no:Athene]]
63108 [[pl:Atena]]
63109 [[pt:Atena]]
63110 [[ro:Atena (zeiÅŖă)]]
63111 [[ru:АŅ„иĐŊĐ°]]
63112 [[sl:Atena]]
63113 [[sr:АŅ‚иĐŊĐ° (ĐŧиŅ‚ĐžĐģĐžĐŗиŅ˜Đ°)]]
63114 [[fi:Pallas Athene]]
63115 [[sv:Athena]]
63116 [[tl:Athena]]
63117 [[tr:Athena]]
63118 [[uk:АŅ„Ņ–ĐŊĐ°]]
63119 [[zh:雅典娜]]</text>
63120 </revision>
63121 </page>
63122 <page>
63123 <title>Amber Diceless Roleplaying Game</title>
63124 <id>1183</id>
63125 <revision>
63126 <id>40025276</id>
63127 <timestamp>2006-02-17T16:08:57Z</timestamp>
63128 <contributor>
63129 <username>Percy Snoodle</username>
63130 <id>163840</id>
63131 </contributor>
63132 <minor />
63133 <comment>return nbsps</comment>
63134 <text xml:space="preserve">{{infobox RPG
63135 |title= Amber&amp;nbsp;Diceless&amp;nbsp;Roleplaying&amp;nbsp;Game
63136 |image= [[Image:Amber_DRPG.jpg|200px]]
63137 |caption= Cover of the main ''Amber DRPG'' rulebook
63138 |designer= [[Erick Wujcik]]
63139 |publisher= [[Phage Press]]&lt;br&gt;[[Guardians of Order]]
63140 |date= 1991
63141 |genre= [[Fantasy]]
63142 |system= Custom (direct comparison of statistics without dice)
63143 |footnotes=
63144 }}
63145
63146 The '''Amber Diceless Roleplaying Game''' is a [[role-playing game]] created and written by [[Erick Wujcik]], set in the [[fictional universe]] created by author [[Roger Zelazny]] for his [[Chronicles of Amber]]. The game is unusual in that no [[dice]] are used in resolving conflicts or player actions; instead a simple system of comparative ability, and narrative description of the action by the players and [[gamemaster|game referee]], is used to determine how situations are resolved.
63147
63148 Amber DRPG was created in the [[1980s]], and is much more focused on relationships and roleplaying than most of the roleplaying games of that era. Most Amber characters are members of the two ruling classes in the Amber [[multiverse]], and are much more advanced in matters of strength, endurance, psyche, warfare and sorcery than ordinary beings. This means that the only individuals who are capable of opposing a character are from his or her family, a fact that leads to much suspicion and intrigue.
63149
63150 ==History==
63151 The original 256-page game book was published in 1991 by [[Phage Press]], covering material from the first five novels (the &quot;[[The Chronicles of Amber#The Corwin Cycle|Corwin Cycle]]&quot;) and some details - sorcery and the [[Logrus]] - from the remaining five novels (the &quot;[[The Chronicles of Amber#The Merlin Cycle|Merlin Cycle]]&quot;), in order to allow players to roleplay characters from the Courts of Chaos. Some details were changed slightly to allow more player choice - for example, players can be full Trump Artists without having walked the Pattern or the Logrus, which [[Merlin (The Chronicles of Amber)|Merlin]] says is impossible; and players' [[psychic]] abilities are far greater than those shown in the books.
63152
63153 [[Image:Shadow Knight.jpg|thumb|200px|right|Cover of Shadow Knight]]
63154 A 256-page companion volume, ''Shadow Knight'', was published in 1993. book includes the remaining elements from the Merlin novels, such as Broken Patterns, and allows players to create Constructs such as Merlin's Ghostwheel. The book presents the second series of novels not as additions to the series' [[Continuity (fiction)|continuity]] but as an example of a [[Campaign (role-playing games)|roleplaying campaign]] with Merlin, Luke, Julia, Jurt and Coral as the PCs. The remainder of the book is a colection of essays on the game, statistics for the new characters and an update of the older ones in light of their appearance in the second series, and (perhaps most usefully for GMs) plot summaries of each of the ten books. The book includes some material from the short story [[Amber Short Stories#The Salesman's Tale|The Salesman's Tale]], and some unpublished material from [[Prince of Chaos]], notably Coral's pregnancy by Merlin.
63155
63156 A third book, ''Rebma'', was promised and pre-orders were taken, but it never arrived, leading to accusations that it was [[vaporware]]. Wujcik also expressed a desire to create a book giving greater detail to the Courts of Chaos[http://www.sjgames.com/pyramid/sample.html?id=640]. However, the publishing rights to the Amber DRPG games were acquired in 2004 by [[Guardians of Order]], who took over sales of the game and announced their intention to release a new edition of the game, but since their restructuring no further news of the new edition has been forthcoming. The two existing books have been made available as [[Portable Document Format|PDF]] downloads (see [[#External links|External links]]).
63157
63158 ==Setting==
63159 {{main|The Chronicles of Amber}}
63160
63161 The game is set in the [[multiverse]] described in Zelazny's Chronicles of Amber. The first book assumes that gamemasters will set their campaigns after the patternfall war; that is, after the end of the fifth book in the series, [[The Courts of Chaos]], but uses material from the following books to describe those parts of Zelazny's cosmology that were featured there in more detail. Briefly, the Amber multiverse consists of '''Amber''', a city at one pole of the universe wherein is found [[the Pattern]], the symbol of [[Order]]; The '''Courts of Chaos''', an assembly of worlds at the other pole where can be found [[the Logrus]], the manifestation of [[Chaos]], and the Abyss, the source of all reality; and '''Shadow''', the collection of all possible [[universe]]s (shadows) between and around them. Inhabitants of either pole can use one or both of the Pattern and the Logrus to travel through Shadow.
63162
63163 It is assumed that players will portray the children of the main characters from the books - the ruling family of Amber, known as the Elder Amberites - or a resident of the Courts. However, since some feel that being the children of the main characters is too limiting, it is fairly common to either start with King Oberon's death ''before'' the book begins and roleplay the Elder Amberites as they vie for the throne; or to populate Amber from scratch with a different set of Elder Amberites. The former option is one presented in the book; the latter is known in the Amber community as an &quot;[[Amethyst]]&quot; game. A third option is to have the players portray [[Corwin (The Chronicles of Amber)|Corwin]]'s children, in an amber-like city built around Corwin's pattern; this is sometimes called an &quot;Argent&quot; game, since one of Corwin's heraldic colours is [[Silver]].
63164
63165 ==System==
63166 ===Attributes===
63167 Characters in Amber DRPG are represented by four [[attribute (role-playing games)|attributes]]: ''Psyche'', ''Strength'', ''Endurance'' and ''Warfare''.
63168 *'''Psyche''' is used for feats of willpower or magic.
63169 *'''Strength''' is used for feats of strength or unarmed combat.
63170 *'''Endurance''' is used for feats of endurance.
63171 *'''Warfare''' is used for armed combat, from duelling to commanding armies
63172 The attributes run from -25 (normal human level), through -10 (normal level for a denizen of the Courts of Chaos) and 0 (normal level for an inhabitant of Amber), upwards without limit. Scores above 0 are &quot;ranked&quot;, with the highest score being ranked 1st, the next-highest 2nd, and so on. The character with 1st rank in each attribute is considered &quot;superior&quot; in that attribute, being considered to be substantially better than the character with 2nd rank even if the difference in scores is small.
63173
63174 ====The Attribute Auction====
63175 A character's ability scores are purchased during [[character generation]] in an [[auction]]; players get 100 [[character point]]s, and bid on each attribute in turn. Unlike conventional auctions, bids are non-refundable; if one player bids 65 for psyche and another wins with a bid of 66, then the character with 66 is &quot;superior&quot; to the character with 65 even though there is only one bid difference. After the auction, players can secretly pay extra points to raise their ranks, but they can only pay to raise their scores to an existing rank. Further, a character with a bid-for rank is considered to have a slight advantage over character with a bought-up rank.
63176
63177 ====Psyche in Amber DRPG compared to the Chronicles====
63178 Characters with high psyche are presented as having strong [[telepathic]] abilities, being able to [[hypnotise]] and even mind-[[rape]] any character with lesser psyche with whom they can make eye-contact. This is likely due to two scenes in the Chronicles: first, when [[Corwin (The Chronicles of Amber)|Corwin]] faces the demon Strygwalldir, it is able to wrestle mentally with him when their gazes meet; and second, when Fiona is able to keep Brand immobile in the final battle at the Courts of Chaos. However, in general, the books only feature mental battles when there is some reason for mind-to-mind contact (for example, Trump contact) and magic is involved in both the above conflicts, so it is not clear whether Zelazny intended his characters to have such a power when it would have almost certainly assured Brand of victory.
63179
63180 ===Powers===
63181 Characters in Amber DRPG have access to the powers seen in the Chronicles of Amber: '''Pattern''', '''Logrus''', '''Shape-shifting''', '''Trump Artistry''', and magic. A character who has walked the pattern can walk in shadow to any possible universe, and while there can manipulate probability. A character who has mastered the Logrus can send out Logrus tendrils and pull themself or objects through shadow. Shape-shifters can alter their physical form, and Trump Artists can create Trumps, a sort of [[tarot]] card which allows mental communication and travel. Three types of magic are detailed: '''Power Words''', with a quick, small effect; '''Sorcery''', with pre-prepared spells as in many other game systems; and '''Conjuration''', the creation of small objects. Each of the first three powers is available in an advanced form.
63182
63183 ===Artifacts, Personal shadows and Constructs===
63184 While a character with Pattern, Logrus or Conjuration can acquire virtually any object, players can choose to spend character points to obtain objects with particular virtues - unbreakability, or a mind of their own. Since they have paid points for the items, they are a part of the character, and cannot lightly be destroyed. Similarly, a character can find any possible universe, but they can spend character points to know of or inhabit shadows which are (in some sense) &quot;real&quot; and therefore useful. The expansion, ''Shadow knight'', adds Constructs - artifacts with connections to shadows.
63185
63186 ===Stuff===
63187 Unspent character points become '''good stuff''' - a good luck for the character. Players are also allowed to overspend (in moderation), with the points becoming '''bad stuff''' - bad luck which the Gamemaster should inflict on the character. As well as representing luck, stuff can be seen as representing a character's outlook on the universe: characters with good stuff seeing the multiverse as a cheerful place, while characters with bad stuff see it as hostile.
63188
63189 ===Conflict resolution===
63190 In any given fair conflict between two characters, the character with the higher score in the relevant attribute will eventually win. The key word here is ''fair'' - if characters' ranks are close, and the weaker character has obtained some advantage, then the weaker character can prevail. This concept has been developed further in [[John Wick]]'s ''Advantage system''. Alternatively, if characters' attribute ranks are close, the weaker character can try to change the relevant attribute by changing the nature of the conflict. For example, if two characters are wrestling the relevant attribute is Strength; a character could reveal a weapon, changing it to Warfare; they could try to overcome the other character's mind using a power, changing it to Psyche; or they could concentrate their strength on defense, changing it to Endurance. This concept is similar to the concept of ''escalation'' in [[Dogs in the Vineyard]]. If there is a substantial difference between characters' ranks, the conflict is generally over before the weaker character can react.
63191
63192 ===The Golden Rule===
63193 Amber DRPG advises gamemasters to change rules as they see fit - even to the point of adding or removing powers or attributes.
63194
63195 ==Trivia==
63196 The book features Trump portrait of each of the elder Amberites. The trump picture of Corwin is executed in a subtly different style - and has features very similar to Roger Zelazny's.
63197
63198 ==References==
63199 * Erick Wujcik ''Amber Diceless Roleplaying Game'' (Phage Press, 1991) ISBN 1880494000
63200 * Erick Wujcik ''Shadow Knight'' (Phage Press, 1993) ISBN 1880494019
63201 * Roger Zelazny ''The Great Book of Amber'' ([[Eos Press]], 1999) ISBN 0380809060
63202
63203 == External links ==
63204 *[http://www.phagepress.com/ Phage Press]'s homepage for the game
63205 *Guardians of Order's [http://www.guardiansorder.com/boards/forumdisplay.php?f=21 Amber DRPG forum] and [http://www.guardiansorder.com/store/amber.php store]
63206 *[http://drivethrurpg.com/catalog/product_info.php?products_id=1447 Amber DRPG] and [http://drivethrurpg.com/catalog/product_info.php?products_id=1448 Shadow Knight] as PDF downloads
63207 *[http://calwestray.tripod.com/amber.htm Westray], an Amber DRPG fansite
63208 *[http://www.chorazin.org/gcircle/ The Golden Circle], and Amber [[webring]] with many Amber DRPG sites.
63209
63210 [[Category:The Chronicles of Amber]]
63211 [[Category:Fantasy role-playing games]]
63212 [[Category:Universal role-playing games]]
63213
63214 [[fr:Ambre (jeu de rôle)]]
63215 [[it:Ambra (gioco)]]
63216 [[pl:Amber (gra fabularna)]]</text>
63217 </revision>
63218 </page>
63219 <page>
63220 <title>Athene</title>
63221 <id>1184</id>
63222 <revision>
63223 <id>15899682</id>
63224 <timestamp>2002-05-19T17:18:35Z</timestamp>
63225 <contributor>
63226 <username>AxelBoldt</username>
63227 <id>2</id>
63228 </contributor>
63229 <comment>*</comment>
63230 <text xml:space="preserve">#REDIRECT [[Athena]]
63231 </text>
63232 </revision>
63233 </page>
63234 <page>
63235 <title>AphexTwin</title>
63236 <id>1186</id>
63237 <revision>
63238 <id>15899683</id>
63239 <timestamp>2002-06-12T02:07:16Z</timestamp>
63240 <contributor>
63241 <username>Bryan Derksen</username>
63242 <id>66</id>
63243 </contributor>
63244 <minor />
63245 <comment>removed old copy of article from below the redirect</comment>
63246 <text xml:space="preserve">#REDIRECT [[Aphex Twin]]
63247
63248 </text>
63249 </revision>
63250 </page>
63251 <page>
63252 <title>Alloy</title>
63253 <id>1187</id>
63254 <revision>
63255 <id>41729565</id>
63256 <timestamp>2006-03-01T09:40:48Z</timestamp>
63257 <contributor>
63258 <ip>165.21.154.117</ip>
63259 </contributor>
63260 <text xml:space="preserve">'''Alloy''' is a combination, either in [[solution]] or [[chemical compound|compound]], of two or more [[chemical element|elements]], which has a combination of at least one [[metal]], and where the resultant material has [[metallic]] properties. An alloy with two components is called a binary alloy; one with three is a ternary alloy; one with four is a quaternary alloy. The result is a metallic substance with properties different from those of its components.
63261
63262
63263 Alloys are usually designed to have properties that are more desirable than those of their components. For instance, [[steel]] is stronger than [[iron]], one of its main elements, and [[brass]] is more durable than [[copper]], but more attractive than [[zinc]].
63264
63265 Unlike pure metals, many alloys do not have a single [[melting point]]. Instead, they have a melting range in which the material is a mixture of [[solid]] and [[liquid]] phases. The temperature at which melting begins is called the [[solidus]], and that at which melting is complete is called the [[liquidus]]. Special alloys can be designed with a single melting point, however, and these are called [[eutectic]] mixtures.
63266
63267 Sometimes an alloy is just named for the base metal, as 14 [[Carat (purity)|karat]] (58%) [[gold]] is an alloy of gold with other elements. The same holds for [[silver]] used in [[jewellery]], and [[aluminium]] used structurally.
63268
63269 The term &quot;alloy&quot; is frequently used in everyday speech as an alternative to &quot;aluminium alloy.&quot; Many engineers find this convention offensive, since all steels and most other metals in practical use are also alloys. A typical example of such usage is &quot;alloy wheels&quot; fitted to an automobile.
63270
63271 ==See also==
63272
63273
63274
63275 * [[List of alloys]]
63276 * [[Intermetallics]]
63277
63278 {{Wiktionary}}
63279 [[Category:Alloys|*]]
63280
63281 [[uk:ЛŅ–ĐŗĐ°Ņ‚ŅƒŅ€Đ°]]
63282 [[af:Legering]]
63283 [[bg:ĐĄĐŋĐģав]]
63284 [[ca:Aliatge]]
63285 [[cs:Slitina]]
63286 [[da:Legering]]
63287 [[de:Legierung]]
63288 [[es:AleaciÃŗn]]
63289 [[eo:Alojo]]
63290 [[fr:Alliage]]
63291 [[ko:합금]]
63292 [[io:Aloyo]]
63293 [[id:Aloy]]
63294 [[is:MÃĄlmblanda]]
63295 [[it:Lega (metallurgia)]]
63296 [[he:סגסוג×Ē]]
63297 [[mk:ЛĐĩĐŗŅƒŅ€Đ°]]
63298 [[ms:Aloi]]
63299 [[nl:Legering]]
63300 [[ja:合金]]
63301 [[no:Legering]]
63302 [[nn:Legering]]
63303 [[pl:Stop metali]]
63304 [[pt:Liga metÃĄlica]]
63305 [[ru:ĐĄĐŋĐģав]]
63306 [[simple:Alloy]]
63307 [[sl:Zlitina]]
63308 [[sr:ЛĐĩĐŗŅƒŅ€Đ°]]
63309 [[fi:Lejeerinki]]
63310 [[sv:Legering]]
63311 [[ta:āŽ•āŽ˛āŽĒā¯āŽĒā¯āŽ˛ā¯‹āŽ•āŽŽā¯]]
63312 [[th:āš‚ā¸Ĩā¸Ģā¸°ā¸œā¸Ēā¸Ą]]
63313 [[vi:HáģŖp kim]]
63314 [[zh:合金]]</text>
63315 </revision>
63316 </page>
63317 <page>
63318 <title>Articles of Faith</title>
63319 <id>1189</id>
63320 <revision>
63321 <id>38406727</id>
63322 <timestamp>2006-02-06T03:02:23Z</timestamp>
63323 <contributor>
63324 <ip>65.34.202.199</ip>
63325 </contributor>
63326 <comment>Changed to six (vs. seven) articles by combining afterlife and Judgment in order to maintain consistency and clarity.</comment>
63327 <text xml:space="preserve">'''Articles of faith''' are formal [[creeds]], or lists of beliefs, sometimes numbered, and often beginning with &quot;We believe...&quot;, which attempt to more or less define the fundamental [[theology]] of a given [[religion]] and/or [[church]]. Articles of faith are common in both [[Christianity]] and [[Islam]].
63328
63329 == Catholicism ==
63330 The [[Nicene Creed]] and the shorter [[Apostles' Creed]] are articles, or professions of Faith said by members of the [[Roman Catholic Church]]. The Nicene is predominantly recited during the Catholic [[Mass (liturgy)|mass]] while the Apostle's is typically used for other occasions.
63331
63332 == Mormonism ==
63333 {{main|Articles of Faith (Mormonism)}}
63334 The ''Articles of Faith'' of [[Mormonism]] are a [[creed]] composed by [[Joseph Smith, Jr.]] as part of a [[1842]] [[The_Wentworth_Letter|letter]] sent to [[John Wentworth (mayor)|&quot;Long&quot; John Wentworth]], editor of the ''[[Chicago Democrat]]''. It is a concise listing of thirteen fundamental doctrines of [[Mormonism]].
63335
63336 Most [[Latter Day Saint]] denominations view the articles as an authoritative statement of basic theology. Some denominations, such as [[The Church of Jesus Christ of Latter-day Saints]], have adopted the articles as scripture (see ''[[Pearl of Great Price (Mormonism)]]'').
63337
63338 == Protestantism ==
63339 In [[Protestantism]], several denominations have articles of faith. The [[Anglican]] articles of faith are the [[Thirty-Nine Articles]], which were issued by the Convocation of clergy of the [[Church of England]] in [[1571]]. These articles were adapted by [[John Wesley]] as the [[Articles of Religion (Methodist)|Articles of Religion]], which are the defining articles of [[Methodism]].
63340
63341 == Islam ==
63342 Traditionally, there are six basic beliefs of Muslims, of which include a belief in:
63343 # Oneness of God
63344 # Angels
63345 # Prophets
63346 # Scriptures
63347 # [[Last Judgment|The Day of Judgment]] and the [[Akhirah]] or afterlife
63348 # [[Predestination]]
63349
63350 In Sahih [[Al-Muslim]] and [[Al-Bukhari]], [[Muhammad]] explains, &quot;It (Al-Iman/faith) is to affirm your faith in Allah, [[Angels in Islam|His angels]], His Books [[Prophets of Islam|His Messengers]] and the Last Day, and to believe in the Divine Destiny whether it be good or bad.&quot;
63351
63352 Retrieved from [[Aqidah]]
63353
63354 [[Category:Christianity]]
63355 [[Category:Christian texts]]
63356 [[Category:Latter Day Saint texts]]</text>
63357 </revision>
63358 </page>
63359 <page>
63360 <title>Alternative history</title>
63361 <id>1190</id>
63362 <revision>
63363 <id>40323664</id>
63364 <timestamp>2006-02-19T20:43:53Z</timestamp>
63365 <contributor>
63366 <username>KnightRider</username>
63367 <id>430793</id>
63368 </contributor>
63369 <minor />
63370 <comment>warnfile Modifying: es</comment>
63371 <text xml:space="preserve">:''For the [[speculative fiction]] subgenre, see [[alternate history (fiction)]]
63372
63373 '''Alternative history''' or '''alternate history''' develops out of historiography to identify historical points of view that have been ignored, overlooked, or unseeable. It usually denotes a [[history]] told from an alternative viewpoint, rather than from the view (actual or ascribed, obvious or inferred) of imperialists, conquerors or explorers. For example ''[[A People's History of the United States]]'' offers a view sympathetic to people [[Native Americans (Americas)|indigenous to the Americas]], while the term ''[[Herstory]]'' was coined to denote history presented from a feminist perspective.
63374
63375 This falls into two major categories:
63376 * [[Historical revisionism]] is the reexamination of the accepted facts and interpretations of history, with an eye towards updating it with newly discovered, more accurate, less biased or differently biased information.
63377 * When revisionism takes on a partisan tone, it is usually called [[Historical revisionism (political)|political historical revisionism]] i.e. a construction of past events which is refuted by well documented, verifiable, and very broadly accepted sources. Such histories may tend to blame their lack of scholarship or documentation on a [[conspiracy theory|conspiracy]] to erase such evidence.
63378
63379 Other alternative histories include:
63380 * The genre of speculative fiction includes the subgenre of [[Alternate history (fiction)|fictitious alternative history]], set in worlds in which history has diverged from history as it actually happened. The term [[uchronia]] refers to a hypothetical time period in such a divergent world.
63381 * [[Failed history]] covers events that have been predicted and had items created in the expectation that they would occur, but then in fact did not occur.
63382 * [[Virtual history]] (also known as ''counterfactual history'') is a form of history which attempts to answer &quot;what if&quot; questions. It is an academic extrapolation of alternate outcomes of historical events.
63383
63384 {{hist-stub}}
63385 [[Category:Alternate history|*]]
63386
63387 [[de:Alternativgeschichte]]
63388 [[es:Historia alterna]]</text>
63389 </revision>
63390 </page>
63391 <page>
63392 <title>API</title>
63393 <id>1191</id>
63394 <revision>
63395 <id>34100212</id>
63396 <timestamp>2006-01-06T11:40:35Z</timestamp>
63397 <contributor>
63398 <username>Oliver Lineham</username>
63399 <id>83708</id>
63400 </contributor>
63401 <comment>Redirect to most common usage</comment>
63402 <text xml:space="preserve">#REDIRECT [[Application_programming_interface]]</text>
63403 </revision>
63404 </page>
63405 <page>
63406 <title>Artistic revolution</title>
63407 <id>1192</id>
63408 <revision>
63409 <id>34326659</id>
63410 <timestamp>2006-01-08T04:29:23Z</timestamp>
63411 <contributor>
63412 <username>Sparkit</username>
63413 <id>194762</id>
63414 </contributor>
63415 <minor />
63416 <comment>[[:en:Wikipedia:Tools/Navigation_popups|Popups]]-assisted disambiguation from [[Renoir]] to [[Pierre-Auguste Renoir]]</comment>
63417 <text xml:space="preserve">Throughout history, forms of [[art]] have gone through periodic abrupt changes called '''artistic revolutions'''. Movements have come to an end to be replaced by a new movement markedly different in striking ways. See also [[cultural movement]]s.
63418
63419 == Artistic revolution and cultural/political revolutions ==
63420
63421 The role of fine art has been to simultaneously express values of the current culture while also offering criticism, balance, or alternatives to any such values that are proving no longer useful. So as times change, art changes. If changes were abrupt they were deemed revolutions. The best artists have predated society's changes due not to any prescenience, but because sensitive perceptivity is part of their 'talent' of seeing.
63422
63423 Artists have had to 'see' issues clearly in order to satisfy their current clients, yet not offend potential patrons. For example, paintings glorified aristocracy in the early 1600's when leadership was needed to nationalize small political groupings, but later as leadership became oppressive, satirization increased and subjects were less concerned with leaders and more with more common plights of mankind.
63424
63425 Examples of revoutionary art in conjunction with cultural/political movements:
63426
63427 *[[Trotskyist]] &amp; [[Diego Riveria]]
63428 *[[Black Panther Party]] &amp; Emory Douglas
63429 *Cuban [[Poster Art]]
63430 *[[Social Realism]] &amp; [[Ben Shahn]]
63431 *[[Feminist]] Art &amp; the [[Guerrilla Girls]]
63432 *[[Industrial Workers of the World]] &amp; [[Woody Guthrie]]
63433
63434 == Artistic revolution of style ==
63435
63436 But not all artistic revolutions were political. Revolutions of style have also abruptly changed the art of a culture. For example, when the careful, even tedious, art techniques of French neo-classicism became oppressive to artists living in more exuberant times, a stylistic revolution known as &quot;[[Impressionism]]&quot; vitalized brush strokes and color. [[Degas]], [[Monet]], [[Pierre-Auguste Renoir|Renoir]] burst onto the French culture, effecting a revolution with a style that has become commonplace today.
63437
63438 An artistic revolution can be begun by a single artist, but unless that artist gains some understanding, he becomes an iconoclast. The first [[Abstract Expressionists]] were considered madmen to give up their brushes and rely on the sheer force of energy to leave an image, but then the import of atomic bombs, all atomic energy, became realized, and art found no better way of expressing its power. [[Jackson Pollack]] is the artist best known for starting that revolution.
63439
63440 {{art-stub}}
63441
63442 [[Category:Art history]]</text>
63443 </revision>
63444 </page>
63445 <page>
63446 <title>Agrarianism</title>
63447 <id>1193</id>
63448 <revision>
63449 <id>40325398</id>
63450 <timestamp>2006-02-19T20:56:20Z</timestamp>
63451 <contributor>
63452 <username>RafaelG</username>
63453 <id>698764</id>
63454 </contributor>
63455 <text xml:space="preserve">'''Agrarianism''' is a [[social philosophy|social ]] and [[political philosophy]].
63456
63457 In his introduction to his 1969 book ''Agrarianism in American Literature'', [[M. Thomas Inge]] defines '''''agrarianism''''' by the following basic tenets:
63458
63459 *Cultivation of the soil provides direct contact with nature; through the contact with nature the agrarian is blessed with a closer relationship to God. Farming has within it a positive spiritual good; the farmer acquires the virtues of &quot;honor, manliness, [[self-reliance]], courage, moral integrity, and hospitality&quot; and follows the example of God when creating order out of chaos.
63460
63461 *The farmer &quot;has a sense of identity, a sense of historical and religious tradition, a feeling of belonging to a concrete family, place, and region, which are psychologically and culturally beneficial.&quot; The harmony of this life checks the encroachments of a fragmented, alienated modern society which has grown to inhuman scale.
63462
63463 *In contrast, farming offers total independence and [[self-sufficiency]]. It has a solid, stable position in the [[world order]]. But urban life, [[capitalism]], and technology destroy our independence and dignity while fostering vice and weakness within us. The agricultural community can provide checks and balances against the imbalances of modern society by its fellowship of labor and cooperation with other agrarians, while obeying the rhythms of nature. The agrarian community is the model society for mankind.
63464
63465 Agrarianism is not identical with the back to the earth movement, but it can be helpful to think of it in those terms. The agrarian philosophy is not to get people to reject progress, but rather to concentrate on the fundamental goods of the earth, communities of more limited economic and political scale than in modern society, and on simple living--even when this shift involves questioning the &quot;progressive&quot; character of some recent social and economic developments. Thus agrarianism is not [[industrial farming]], with its specialization on products and industrial scale.
63466
63467 The name &quot;agrarian&quot; is properly applied to figures from [[Horace]] and [[Virgil]] through [[Thomas Jefferson]], [[Transcendentalism|Transcendentals]] like [[Ralph Waldo Emerson|Emerson]] and [[Henry David Thoreau|Thoreau]], the [[Southern Agrarians]] movement of the 1920s and 1930s (also known as the [[Vanderbilt University|Vanderbilt]] Agrarians) and present-day authors [[Wendell Berry]], [[Alan Carlson]], [[Victor Davis Hanson]], and Michael Bunker.
63468
63469 In the 1910s and 1920s, agrarianism garnered significant popular attention, but was eclipsed in the postwar period. It revived somewhat in conjunction with the 1960s [[environmentalist movement]], and has been drawing an increasing number of adherents.
63470
63471 Recent agrarian thinkers are sometimes referred to as neo-Agrarian.
63472
63473 ==See also==
63474 * [[Junker]]s German landed aristocracy
63475 * The [[Amish]] and [[Mennonite]]s
63476 *[[Agrarian society]]
63477 *[[Alberta Progressive Conservatives]]
63478 *[[Back to the land]]
63479
63480 ==External links==
63481 *&quot;[http://www.newpantagruel.com/issues/2.3/agrarianism.php Agrarianism]&quot; in ''American Conservatism: An Encyclopedia''
63482 *[http://www.pastoralfarms.com/agrarian/ Christian Agrarianism]
63483 *[http://www.biblicalagrarianism.com Biblical Agrarianism]
63484 *[http://www.newagrarian.com The New Agrarian]
63485 *[http://www.theagrarianfoundation.com The Agrarian Foundation]
63486
63487
63488 [[Category:Political theories]]</text>
63489 </revision>
63490 </page>
63491 <page>
63492 <title>Atomic</title>
63493 <id>1194</id>
63494 <revision>
63495 <id>38497271</id>
63496 <timestamp>2006-02-06T19:21:39Z</timestamp>
63497 <contributor>
63498 <username>Ewlyahoocom</username>
63499 <id>241538</id>
63500 </contributor>
63501 <comment>#REDIRECT [[Atom]]</comment>
63502 <text xml:space="preserve">#REDIRECT [[Atom]]</text>
63503 </revision>
63504 </page>
63505 <page>
63506 <title>Allotropes</title>
63507 <id>1195</id>
63508 <revision>
63509 <id>15899691</id>
63510 <timestamp>2002-05-19T16:45:51Z</timestamp>
63511 <contributor>
63512 <username>AxelBoldt</username>
63513 <id>2</id>
63514 </contributor>
63515 <comment>fix redir</comment>
63516 <text xml:space="preserve">#REDIRECT [[Allotropy]]
63517 </text>
63518 </revision>
63519 </page>
63520 <page>
63521 <title>Angle</title>
63522 <id>1196</id>
63523 <revision>
63524 <id>42071377</id>
63525 <timestamp>2006-03-03T16:55:46Z</timestamp>
63526 <contributor>
63527 <username>Henrygb</username>
63528 <id>30415</id>
63529 </contributor>
63530 <comment>reflex angles</comment>
63531 <text xml:space="preserve">''This article is about angles in geometry. For other articles, see [[Angle (disambiguation)]]''
63532
63533 ----
63534
63535 An '''Angle''' (from the Lat. ''angulus'', a corner, a diminutive, of which the primitive form, ''angus'', does not occur in Latin; cognate are the Lat. angere, to compress into a bend or to strangle, and the [[Greek language|Greek]] {{polytonic|&amp;#7936;ÎŗÎēĪÎģÎŋĪ‚}} ''(angulÎŋs)'' crooked, curved; both connected with the Aryan or Indo-European root ''ank''-, to bend) is the figure formed by two [[Ray_(geometry)|rays]] sharing a common [[endpoint]], called the [[vertex]] of the angle. Angles provide a means of expressing the difference in [[slope]] between two rays meeting at a vertex without the need to explicitly define the slopes of the two rays. Angles are studied in [[geometry]] and [[trigonometry]].
63536
63537 [[Euclid]] defines a plane angle as the inclination to each other, in a plane, of two lines which meet each other, and do not lie straight with respect to each other. According to [[Proclus]] an angle must be either a quality or a quantity, or a relationship. The first concept was used by [[Eudemus]], who regarded an angle as a deviation from a straight line; the second by [[Carpus of Antioch]], who regarded it as the interval or space between the intersecting lines; Euclid adopted the third concept, although his definitions of right, acute, and obtuse angles are certainly quantitative.
63538
63539 ==Units of measure for angles==
63540 In order to measure an angle, a [[circle]] centered at the vertex is drawn. Since the circumference of a circle is always directly proportional to the length of its radius, the measure of the angle is independent of the size of the circle. Note that angles are dimensionless, since they are defined as the ratio of lengths.
63541
63542 *The ''[[radian]] measure'' of the angle is the length of the arc cut out by the angle, divided by the circle's radius. The [[SI]] system of units uses [[radian]]s as the (derived) unit for angles. This is also roughly subdivided into the [[angular_mil|mil]], which has several definitions in practice. Because of the relationship to arc length, radians are a special unit. Sines and cosines whose argument is in radians have particular analytic properties, just as do exponential functions in the base ''[[e (mathematical constant)|e]]''. (As we've discovered, this is no coincidence).
63543
63544 *The ''[[degree (angle)|degree]] measure'' of the angle is the length of the arc, divided by the circumference of the circle, and multiplied by 360. The symbol for degrees is a small superscript circle, as in 360°. 2&amp;pi; radians is equal to 360° (a full circle), so one radian is about 57° and one degree is &amp;pi;/180 radians. Degrees are further broken down into ''minutes of arc'' and ''seconds of arc'', which are 1/60th and 1/3600th of a degree, respectively. Minutes of arc are commonly encountered in discussions of [[external ballistics]], as a minute of arc covers almost exactly 1 inch at 100 yards (1 m at 1200 m). A [[rifle]] capable of shooting &quot;1 MOA&quot;, one minute of arc, can place all shots within 1 inch at 100 yards, 2 inches at 200 yards, etc. Minutes of arc were also used in [[navigation]], and a [[nautical mile]] is roughly defined as one minute of arc of the earth's surface.
63545
63546 *The ''[[grad (angle)|grad]]'', also called grade, gradian or gon, is an angular measure where the arc is divided by the circumference, and multiplied by 400. It is used mostly in [[triangulation]].
63547
63548 *The ''point'' is used in [[navigation]], and is defined as 1/32 of a circle, or exactly 11.25°.
63549
63550 *The ''full circle'' or ''full [[Turn (geometry)|turn]]s'' represents the number or fraction of complete full turns. For example, &amp;pi;/2 radians = 90° = 1/4 full circle
63551
63552 ==Conventions on measurement==
63553
63554 A convention universally adopted in mathematical writing is that angles given a sign are '''positive angles''' if measured [[Clockwise_and_counterclockwise|counterclockwise]], and '''negative angles''' if measured [[Clockwise_and_counterclockwise|clockwise]], from a given line. If no line is specified, it can be assumed to be the [[x-axis]] in the [[Cartesian plane]]. In [[navigation]], [[bearing (navigation)|bearings]] are measured from north, increasing clockwise, so a bearing of 45 is north-east. Negative bearings are not used in navigation, so north-west is 315.
63555
63556 In mathematics radians are assumed unless specified otherwise because this removes the arbitrariness of the number 360 in the degree system and because the [[trigonometric function]]s can be developed into particularly simple [[Taylor series]] if their arguments are specified in radians.
63557
63558 == Types of angles ==
63559
63560 An angle of [[pi|&amp;pi;]]/2 radians or 90°, one-quarter of the full circle is called a '''right angle'''.
63561
63562 Two [[line segment]]s, rays, or lines (or any combination) which form a right angle are said to be either '''[[perpendicular]]''' or '''[[orthogonality|orthogonal]]''':
63563
63564 {|
63565 |- style=&quot;vertical-align: top;&quot;
63566 |[[Image:Right_angle.svg|thumb|134px|Right angle]]
63567 |[[Image:Angle obtuse acute straight.svg|thumb|240px|Acute, obtuse, and straight angles (''a'', ''b'', ''c''). Here, ''a'' and ''b'' are [[Supplementary angles|supplement angles]].]]
63568 |}
63569 &lt;!-- old images
63570 | [[image:angle acute.png|thumb|150px|Acute angle]]
63571 | [[image:angle obtuse.png|thumb|200px|Obtuse angle]]
63572 | [[image:angle straight.png|thumb|200px|Straight angle]]
63573 --&gt;
63574 *Angles smaller than a right angle are called '''acute angles''' (less than 90 degrees)
63575 *Angles larger than a right angle are called '''obtuse angles''' (more than 90 degrees, less that 180).
63576 *Angles equal to two right angles are called '''straight angles''' (equal to 180 degrees).
63577 *Angles large than two right angles are called '''relex angles''' (more than 180 degrees).
63578
63579 *The difference between an acute angle and a right angle is termed the '''complement''' of the angle
63580 *The difference between an angle and two right angles is termed the '''supplement''' of the angle.
63581
63582 ==Some facts==
63583
63584 In [[Euclidean geometry]], the inner angles of a [[triangle (geometry)|triangle]] add up to &amp;pi; radians or 180°; the inner angles of a [[quadrilateral]] add up to 2&amp;pi; radians or 360°. In general, the inner angles of a [[polygon|simple polygon]] with ''n'' sides add up to (''n''&amp;nbsp;&amp;minus;&amp;nbsp;2)&amp;nbsp;&amp;times; &amp;nbsp; &amp;pi; radians or (''n''&amp;nbsp;&amp;minus;&amp;nbsp;2)&amp;nbsp; &amp;times; &amp;nbsp;180°.
63585
63586 If two [[straight line]]s intersect, four angles are formed. Each one has an equal measure to the angle across from it; these congruent angles are called vertical angles.
63587
63588 If a straight [[transversal line]] intersects two [[Parallel (geometry)|parallel]] lines, corresponding (alternate) angles at the two points of intersection are equal; [[adjacent angles]] are [[supplementary angles|supplementary]], that is they add to &amp;pi; radians or 180°.
63589
63590 ==A formal definition==
63591 A Euclidean angle is completely determined by the corresponding right triangle. In particular, if &lt;math&gt;\theta&lt;/math&gt; is a Euclidean angle, it is true that
63592
63593 :&lt;math&gt;\cos \theta = \frac{x}{\sqrt{x^2 + y^2}}&lt;/math&gt;
63594
63595 and
63596
63597 :&lt;math&gt;\sin \theta = \frac{y}{\sqrt{x^2 + y^2}}&lt;/math&gt;
63598
63599 for two numbers &lt;math&gt;x&lt;/math&gt; and &lt;math&gt;y&lt;/math&gt;. So an angle can be legitimately given by two numbers &lt;math&gt;x&lt;/math&gt; and &lt;math&gt;y&lt;/math&gt;.
63600
63601 To the ratio &lt;math&gt;\frac{y}{x}&lt;/math&gt; there correspond two angles in the geometric range &lt;math&gt;0 &lt; \theta &lt; 2\pi &lt;/math&gt;, since
63602
63603 :&lt;math&gt;\frac{\sin \theta }{\cos \theta } = \frac{\frac{y}{\sqrt{x^2 + y^2}}}{\frac{x}{\sqrt{x^2 + y^2}}} = \frac{y}{x} = \frac{-y}{-x} = \frac{\sin (\theta + \pi)}{\cos (\theta + \pi) } &lt;/math&gt;
63604
63605 ==Angles in different contexts==
63606
63607 In the [[Euclidean space|Euclidean plane]], the angle &amp;theta; between two [[vector (spatial)|vector]]s '''u''' and '''v''' is related to their [[dot product]] and their lengths by the formula
63608
63609 :&lt;math&gt;\mathbf{u} \cdot \mathbf{v} = \cos(\theta)\ \|\mathbf{u}\|\ \|\mathbf{v}\|.&lt;/math&gt;
63610
63611 This allows one to define angles in any real [[inner product space]], replacing the Euclidean dot product ¡ by the [[Hilbert space]] inner product &lt;¡,¡&gt;.
63612
63613 The angle between a line and a [[curve]] (mixed angle) or between two intersecting curves (curvilinear angle) is defined to be the angle between the [[tangent]]s at the point of intersection. Various names (now rarely, if ever, used) have been given to particular cases:&amp;#8212;amphicyrtic (Gr. &amp;#7936;&amp;#956;&amp;#966;&amp;#8055;, on both sides, &amp;#954;&amp;#965;&amp;#961;&amp;#964;&amp;#8057;&amp;#963;, [[convex]]) or cissoidal (Gr. &amp;#954;&amp;#953;&amp;#963;&amp;#963;&amp;#8057;&amp;#963;, ivy), biconvex; xystroidal or sistroidal (Gr. &amp;#958;&amp;#965;&amp;#963;&amp;#964;&amp;#961;&amp;#8055;&amp;#963;, a tool for scraping), concavo-convex; amphicoelic (Gr. &amp;#954;&amp;#959;&amp;#8055;&amp;#955;&amp;#951;, a hollow) or angulus lunularis, biconcave.
63614
63615 Two intersecting [[plane (mathematics)|planes]] form an angle, called their '''[[dihedral angle]]'''. It is defined as the angle between two lines normal to the planes.
63616
63617 Also a plane and an intersecting line form an angle. This angle is equal to [[pi|&amp;pi;]]/2 radians minus the angle between the intersecting line and the line that goes through the point of intersection and is [[perpendicular]] to the plane.
63618
63619 ==Angles in Riemannian geometry==
63620
63621 In [[Riemannian geometry]], the [[metric tensor]] is used to define the angle between two [[tangent]]s. Where ''U'' and ''V'' are tangent vectors and ''g''&lt;sub&gt;''ij''&lt;/sub&gt; are the components of the metric tensor ''G'',
63622
63623 :&lt;math&gt;
63624 \cos \theta = \frac{g_{ij}U^iV^j}
63625 {\sqrt{ \left| g_{ij}U^iU^j \right| \left| g_{ij}V^iV^j \right|}}.
63626 &lt;/math&gt;
63627
63628 ==Angles in astronomy==
63629
63630 In [[astronomy]], one can measure the ''angular separation'' of two [[star]]s by imagining two lines through the [[Earth]], each one intersecting one of the stars.
63631 Then the angle between those lines can be measured; this is the angular separation between the two stars.
63632
63633 Astronomers also measure the [[apparent size]] of objects.
63634 For example, the [[full moon]] has an angular measurement of approximately 0.5°, when viewed from Earth.
63635 One could say, &quot;The Moon subtends an angle of half a degree.&quot;
63636 The [[small-angle formula]] can be used to convert such an angular measurement into a distance/size ratio.
63637
63638 ==Angles in maritime navigation==
63639
63640 The modern format of angle used to indicate [[longitude]] or [[latitude]] is '''hemisphere degree minute.decimal''', where there are 60 minutes in a degree, for instance '''N 51 23.438''' or '''E 090 58.928'''.
63641
63642 The obsolete (but still commonly used) format of angle used to indicate [[longitude]] or [[latitude]] is '''hemisphere degree minute' second&quot;''', where there are 60 minutes in a degree and 60 seconds in a minute, for instance '''N 51 23&amp;prime;26&amp;Prime;''' or '''E 090 58&amp;prime;57&amp;Prime;'''
63643
63644 ==See also==
63645
63646 *[[Central angle]]
63647 *[[Complementary angles]]
63648 *[[Inscribed angle]]
63649 *[[Supplementary angles]]
63650 *[[solid angle]] for a concept of angle in three dimensions.
63651 *[[Astrological aspect]]
63652
63653 ==External links==
63654 * [http://www.cut-the-knot.org/triangle/ABisector.shtml Angle Bisectors] at [[cut-the-knot]]
63655 * [http://www.cut-the-knot.org/Curriculum/Geometry/PerpBiInQuadri.shtml Angle Bisectors and Perpendiculars in a Quadrilateral] at [[cut-the-knot]]
63656 * [http://www.cut-the-knot.org/Curriculum/Geometry/CyQuadri.shtml Angle Bisectors in a Quadrilateral] at [[cut-the-knot]]
63657 * [http://www.cut-the-knot.org/triangle/TriangleFromBisectors.shtml Constructing a triangle from its angle bisectors] at [[cut-the-knot]]
63658
63659 [[Category:Elementary geometry]]
63660 [[Category:Trigonometry]]
63661 [[Category:Angle|*]]
63662
63663 {{Link FA|nl}}
63664
63665 [[ar:Ø˛Ø§ŲˆŲŠØŠ]]
63666 [[bg:ĐĒĐŗŅŠĐģ]]
63667 [[ca:Angle]]
63668 [[cs:Úhel]]
63669 [[da:Vinkel (matematik)]]
63670 [[de:Winkel (Geometrie)]]
63671 [[es:Ángulo]]
63672 [[eo:Angulo]]
63673 [[fa:Ø˛Ø§ŲˆÛŒŲ‡]]
63674 [[fr:Angle]]
63675 [[ko:각도]]
63676 [[io:Angulo]]
63677 [[is:BogagrÃĄÃ°a]]
63678 [[it:Angolo]]
63679 [[he:זווי×Ē]]
63680 [[nl:Hoek (meetkunde)]]
63681 [[ja:角åēĻ]]
63682 [[pl:Kąt]]
63683 [[pt:Ângulo]]
63684 [[ru:ĐŖĐŗĐžĐģ]]
63685 [[simple:Angle]]
63686 [[sl:Kot]]
63687 [[sr:ĐŖĐŗĐ°Đž (ĐŧĐ°Ņ‚ĐĩĐŧĐ°Ņ‚иĐēĐ°)]]
63688 [[fi:Kulma]]
63689 [[sv:Vinkel]]
63690 [[ta:āŽ•ā¯‹āŽŖāŽŽā¯]]
63691 [[vi:GÃŗc]]
63692 [[zh:角]]</text>
63693 </revision>
63694 </page>
63695 <page>
63696 <title>Asa</title>
63697 <id>1197</id>
63698 <revision>
63699 <id>40967640</id>
63700 <timestamp>2006-02-24T04:18:50Z</timestamp>
63701 <contributor>
63702 <username>Royalbroil</username>
63703 <id>299408</id>
63704 </contributor>
63705 <minor />
63706 <text xml:space="preserve">'''Asa''' may be any of the following:
63707
63708 *'''[[Asa of Judah]]''', king of [[Kingdom of Judah|Judah]], the son of [[Abijam]], and grandson of [[Rehoboam]].
63709 *Asa, god of the '''[[Akamba]]''' people of [[Kenya]].
63710 *'''[[Asa Dotzler]]''', the founder and coordinator of [[Mozilla]]'s Quality Assurance and Testing Program.
63711 *Ása - the [[genitive]] of '''[[Æsir]]''', the predominant group among the [[Norse mythology|Norse]] gods.
63712 *[[United States Army Security Agency]]
63713 *[[United States]] [[Adult Soccer Association]]
63714 *[[American Speed Association]], was a second-tier [[stock car racing]] circuit in the [[United States]]
63715
63716 ''See also'': [[ASA]]
63717
63718 {{disambig}}</text>
63719 </revision>
63720 </page>
63721 <page>
63722 <title>Acoustics</title>
63723 <id>1198</id>
63724 <revision>
63725 <id>41752280</id>
63726 <timestamp>2006-03-01T14:14:24Z</timestamp>
63727 <contributor>
63728 <ip>158.111.4.26</ip>
63729 </contributor>
63730 <comment>/* Measurement methods */</comment>
63731 <text xml:space="preserve">'''Acoustics''' is a branch of [[physics]] and is the study of [[sound]], mechanical [[wave]]s in [[gas]]es, [[liquid]]s, and [[solid]]s. A [[scientist]] who works in the field of acoustics is an '''acoustician'''. The application of acoustics in [[technology]] is called [[acoustical engineering]]. There is often much overlap and interaction between the interests of acousticians and acoustical engineers.
63732
63733 &quot;... acoustics is characterized by its reliance on combinations of physical principles drawn from other sources; and that the primary task of modern physical acoustics is to effect a fusion of the principles normally adhering to other sciences into a coherent basis for understanding, measuring, controlling, and using the whole gamut of vibrational phenomena in any material Phillip.&quot; ''Origins in Acoustics''. F.V. Hunt. Yale University Press, 1978
63734
63735 The main sub-disciplines of acoustics are
63736
63737 * [[Aeroacoustics]] is the study of aerodynamic [[sound]], generated when a fluid flow interacts with a solid surface or with another flow. It has particular application to [[aeronautics]], examples being the study of sound made by jets and the physics of [[shock wave]]s ([[sonic boom]]s).
63738
63739 * [[Architectural acoustics]] is the study of how sound and buildings interact including the behavior of sound in [[concert hall]]s and auditoriums but also in office buildings, factories and homes.
63740
63741 * [[Bioacoustics]] is the study of the use of sound by [[animal]]s such as [[whale]]s, [[dolphin]]s and [[bat]]s.
63742
63743 * [[Biomedical acoustics]] is the study of the use of sound in [[medicine]], for example the use of [[ultrasound]] for diagnostic and therapeutic purposes.
63744
63745 * [[Loudspeaker acoustics]] is an engineering discipline behind the design of the [[loudspeaker]]
63746
63747 * [[Psychoacoustics]] is the study of how people react to sound, [[hearing (sense)|hearing]], [[perception]], and [[sound localization|localization]].
63748
63749 * [[Psychological Acoustics]] is the study of the mechanical, electrical and biochemical function of [[hearing (sense)|hearing]] in living organisms.
63750
63751 * [[Physical acoustics]] is the study of the detailed interaction of sound with materials and fluids and includes, for example, [[sonoluminescence]] (the emission of light by bubbles in a liquid excited by sound) and [[thermoacoustics]] (the interaction of sound and heat).
63752
63753 * [[Speech communication]] is the study of how [[speech]] is produced, the analysis of speech signals and the properties of speech transmission, storage, recognition and enhancement.
63754
63755 * [[Vibration acoustics]] ''Structural Acoustics and Vibration'' is the study of how sound and mechanical structures interact; for example, the transmission of sound through walls and the [[radiation of sound]] from [[vehicle]] panels.
63756
63757 * [[Ultrasonics]] is the study of high [[frequency]] sound, beyond the range of human hearing.
63758
63759 * [[Wolffian Acousitics]] is the study of salient features of pediatric ultrasound insofar as it reviews technologic factors, technique, and the normal anatomy used to evaluate the pediatric tract for abnormality.
63760
63761 * [[Musical acoustics]] is the study of the physics of [[musical instruments]]
63762
63763 * [[Underwater acoustics]] is the study of the [[propagation of sound]] in the [[ocean]]s. Closely associated with [[sonar]] research and development.
63764
63765 * [[Acoustic engineering]] is the study of how sound is generated and measured by [[loudspeaker]]s, [[microphone]]s, [[sonar projector]]s, [[hydrophone]]s, [[ultrasonic transducer]]s, [[sensor]]s, [[Electro Acoustics]], and all other topics on this list. (see external links)
63766
63767 A sound wave is characterized by its speed, its [[wavelength]] and its amplitude. The [[speed of sound]] depends on the medium through which the sound travels and also depends on [[temperature]] and not on the air pressure. The speed of sound is about 340 m/s in air and 1500 m/s in water. The wavelength is the distance from one wave peak to the next. The wavelength, &lt;math&gt;\lambda&lt;/math&gt; of a sound wave is related to the speed of sound &lt;math&gt;c&lt;/math&gt; and its frequency &lt;math&gt;f&lt;/math&gt; by
63768 :&lt;math&gt;
63769 \lambda = \frac{c}{f}
63770 &lt;/math&gt;.
63771 == Sound pressure level (SPL)==
63772
63773 The [[amplitude]] of a sound wave is usually characterized by its [[sound pressure]]. In a normal working environment, a very wide range of [[pressure]]s can occur and it is therefore a convention that sound pressure is measured on a [[logarithmic scale]] using the [[Decibel#Acoustics|decibel]]. If &lt;math&gt;p&lt;/math&gt; is the [[root mean square|rms]] sound pressure amplitude then the [[sound pressure level]] (SPL) is defined as 20 times the logarithm of the ratio of the pressure to some reference pressure.
63774
63775 '''[[Sound pressure level]] SPL''' is calculated in [[decibel]]s as
63776 :&lt;math&gt;
63777 L_p =20\, \log_{10}\left(\frac{p_1}{p_0}\right)=10\, \log_{10}\left(\frac{p_1^2}{p_0^2}\right)\mbox{ dB} SPL
63778 &lt;/math&gt;
63779
63780 The reference sound pressure in air is by convention the [[threshold of hearing]]:
63781
63782 :&lt;math&gt;p_0 = 2 \cdot 10^{-5} \mbox{ Pa}&lt;/math&gt;
63783
63784 :'''= 20 ÂĩPa in air and 1 ÂĩPa in water. (Pa = [[pascal]] = N / m²; N = [[newton]])'''
63785
63786 When speaking of sound levels, one must be sure to differentiate between [[sound pressure level]]s and sound power levels. Sound pressure levels are recorded by [[microphone]]s and other devices. This is a measurement of the amount of pressure in the air being sensed at a given location. It follows that its value can be determined through direct experimentation. In comparison, sound [[power (physics)|power]] levels are a measurement of the actual [[energy]] being put into use by a given device to create [[noise (environmental)|noise]]. Because of environmental factors, and other influences, the amount of energy a device devotes to creating sound may not be equal to the actual level of the sound as it's perceived. It can be useful to express sound pressure in this way when dealing with [[hearing (sense)|hearing]], as the perceived loudness of a sound correlates roughly logarithmically to its sound pressure. Both microphones and eardrums respond to the sound pressure level. They cannot convert the [[sound intensity]]. Sound power measurements cannot be directly measured, and must be inferred through other data.
63787
63788 ==Measurement methods==
63789
63790 There are two popular ways for scientists to perform sound power level measurements. They include a &quot;direct method&quot;, and a &quot;comparison method&quot;. The direct method computes sound power levels by computing an equation of environmental factors (such as room [[temperature]], [[humidity]], [[reverberation]] time, etc.) and sound pressure levels. A more precise implementation of this method can be found in the [[ISO3745]] acoustics standard. The comparison method however, is conducted by measuring sound pressure levels from a [[reference]] sound source which emits a known, constant, sound power level, and then comparing that level with the sound pressure level of the object being recorded. Each way is equally valid and accurate.
63791
63792 ==Reverberation and anechoic rooms==
63793
63794 Experiments such as the two methods mentioned above are sometimes performed in [[reverberation room]]s, or in some cases, [[anechoic room]]s. The design of a reverberation room is to create long lasting reflections, or [[echo (phenomenon)|echo]]es, of sound waves. This helps create a highly averaged and [[omnidirectional]] sound level throughout the entire chamber. A typical example of rooms with characteristics similar to reverberation rooms are concrete tunnels, caves, etc. Anechoic rooms, such as [[hemi-anechoic]] rooms, or fully anechoic rooms are created to simulate what is called a ''[[free field]]''. A free field is the representation of a theoretical [[infinite space]], in which no sound wave [[Reflection (physics)|reflection]]s, or echoes, take place. In rooms such as these, the only sounds which exist are being emitted directly from the source, and are not reflected from another part of the chamber. Anechoic rooms have the characteristic of being muted and muffled.
63795
63796 ==Helmholtz resonator==
63797
63798 A Helmholtz resonator is a container with an open hole or neck.
63799 It is sometimes used as a passive noise control device.
63800 It behaves essentially as a mass-spring-damper system, and its resonant frequency can be calculated as follows:
63801
63802 *''f'' = resonant frequency
63803 *''s'' = speed of sound in air
63804 *''r'' = radius of neck
63805 *''a'' = area of neck
63806 *''l'' = length of neck
63807 *''L''&amp;prime; = effective length of neck
63808 :''L''&amp;prime; = ''l'' + 1.7''r'' (outer end flanged)
63809 :''L''&amp;prime; = ''l'' + 1.4''r'' (outer end unflanged)
63810 *''v'' = volume
63811 :&lt;math&gt;f = (s/2 \pi)(\sqrt{a/(L' \cdot v)})&lt;/math&gt;
63812
63813 (A container with a hole, rather than a neck, behaves as being flanged, with a neck length of 0.)
63814
63815 The Helmholtz resonator is an example of the [[lumped component]] model of acoustic systems which is useful when the [[wavelength]] of interest is significantly larger than the physical dimensions of the system.
63816
63817 Familiar examples of Helmholtz resonators include blowing across the top of a bottle, [[whistling]], and the [[ocarina]].
63818
63819 ==Rectangular boxes==
63820
63821 *''f'' = frequency of standing wave of a rectangular box
63822 *''s'' = speed of sound in air
63823 *''x'', ''y'', ''z'' = dimensions of box
63824 *''N''&lt;sub&gt;''x''&lt;/sub&gt;, ''N''&lt;sub&gt;''y''&lt;/sub&gt;, ''N''&lt;sub&gt;''z''&lt;/sub&gt; = any integers
63825 :&lt;math&gt;f = (s/2)(\sqrt{(N_x/x)^2+(N_y/y)^2+(N_z/z)^2})&lt;/math&gt;
63826
63827 ==See also==
63828
63829 More specialized areas of acoustics include, but are not limited to, [[tonal analysis]], [[sound quality assessment]]s, and [[noise control]].
63830
63831 Subfields and related fields of acoustics:
63832 * [[Acoustic theory]]
63833 * [[Structural acoustics]]
63834 * [[Noise control]]
63835 * [[Outdoor sound propagation]]
63836 * [[Room acoustics]]
63837 * [[Concert hall acoustics]]
63838 * [[Musical instrument]]s
63839 * [[Underwater acoustics]]
63840 * [[Audio signal processing]]
63841 ** [[Audio storage]]
63842 ** [[Sound synthesis]]
63843 ** [[Speech processing]]
63844 * [[Psychoacoustics]]
63845 * [[list of publications in physics#Acoustics|Important publications in acoustics]]
63846
63847 ==External links==
63848 *[http://www.isvr.soton.ac.uk/SPCG/Tutorial/Tutorial/StartCD.htm Acoustics - Educational site with great animations]
63849 *[http://physics.kenyon.edu/EarlyApparatus/Rudolf_Koenig_Apparatus/Helmholtz_Resonator/Helmholtz_Resonator.html Helmholtz Resonator]
63850 *[http://www.phys.unsw.edu.au/~jw/Helmholtz.html Helmholtz Resonance]
63851 *[http://www.physics.umd.edu/lecdem/services/demos/demosh3/h3-41.htm Helmholtz Resonator with oscilloscope]
63852 *[http://www.fci.uach.cl/escuela/ingacustica/index.htm Acoustic Engineering at Universidad Austral de Chile]
63853 *[http://www.acoustics.salford.ac.uk/schools/index.htm Sounds Amazing: a learning resource for sound and waves]
63854 *[http://www.fe.up.pt/~carvalho/igrejase.htm Church Acoustics]
63855
63856 [[Category:Acoustics| ]]
63857 [[Category:Building engineering]]
63858
63859 [[az:Akustika]]
63860 [[bg:АĐēŅƒŅŅ‚иĐēĐ°]]
63861 [[ca:AcÃēstica]]
63862 [[cs:Akustika]]
63863 [[da:Akustik]]
63864 [[de:Akustik]]
63865 [[es:AcÃēstica]]
63866 [[eo:Akustiko]]
63867 [[fr:Acoustique]]
63868 [[gl:AcÃēstica]]
63869 [[ko:ėŒí–Ĩ학]]
63870 [[hr:Akustika]]
63871 [[io:Akustiko]]
63872 [[it:Acustica]]
63873 [[he:אקוסטיקה]]
63874 [[lb:Akustik]]
63875 [[nl:Akoestiek]]
63876 [[ja:éŸŗéŸŋå­Ļ]]
63877 [[pl:Akustyka]]
63878 [[pt:AcÃēstica]]
63879 [[ru:АĐēŅƒŅŅ‚иĐēĐ°]]
63880 [[sl:Akustika]]
63881 [[fi:Akustiikka]]
63882 [[sv:Akustik]]
63883 [[ta:āŽ’āŽ˛āŽŋāŽ¯āŽŋāŽ¯āŽ˛ā¯]]
63884 [[th:ā¸Ēā¸§ā¸™ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒ]]
63885 [[tr:Akustik]]
63886 [[zh:åŖ°å­Ļ]]</text>
63887 </revision>
63888 </page>
63889 <page>
63890 <title>Angle tribe</title>
63891 <id>1199</id>
63892 <revision>
63893 <id>15899695</id>
63894 <timestamp>2003-07-18T04:38:50Z</timestamp>
63895 <contributor>
63896 <username>Adam Bishop</username>
63897 <id>13008</id>
63898 </contributor>
63899 <comment>Redirecting to Angles...both existed, this one seemed the more unnecessary</comment>
63900 <text xml:space="preserve">#REDIRECT [[Angles]]</text>
63901 </revision>
63902 </page>
63903 <page>
63904 <title>Atomic physics</title>
63905 <id>1200</id>
63906 <revision>
63907 <id>39868446</id>
63908 <timestamp>2006-02-16T12:17:31Z</timestamp>
63909 <contributor>
63910 <username>Hede2000</username>
63911 <id>284384</id>
63912 </contributor>
63913 <minor />
63914 <comment>+da:</comment>
63915 <text xml:space="preserve">'''Atomic physics''' (or '''atom physics''') is the field of [[physics]] that studies the [[electron]] hull of [[atom]]s.
63916
63917 Lay people often associate the term ''atomic physics'' with [[nuclear power]] and [[nuclear bomb]]s, obviously due to the [[synonym]]ous use of ''atomic'' and ''nuclear'' in [[standard English]]. However, physicists distinguish between atomic physics (dealing with the effects of the [[electron]] hull and the nucleus's overall [[Spin_(physics)|spin]] and [[electric charge]]) and [[nuclear physics]] (dealing with the forces within [[atomic nucleus|atomic nuclei]] and reactions that alter, fuse or split them).
63918
63919 The beginning of atomic physics is marked by the discovery and scrutinious study of [[spectral line]]s. These are sharply defined lines in the spectrum of illuminated or (hot, hence ionized (see [[flame]]) and hence) light-emitting free atoms. (&quot;Free&quot; meaning that they are a [[gas]] or [[vapour]] and therefore not close to or interacting with other atoms.)
63920
63921 The study of these lines led to the [[Bohr atom model]] and on to our present understanding of the electron hull of the atom as described by the [[atomic orbital model]] which is the basis of all understanding of [[chemistry]]. These conclusions are, however, not at all straightforward, but rather were required by more than a century of research, which has succeeded in putting chemistry on a sound fundament but also gave rise to many other applications.
63922
63923 == See also ==
63924
63925 * [[Atomic clock]]: a typical application of atom physics
63926 * [[Energy level]]: a list of quantum mechanical effects important in atom physics
63927 * [[Quantum optics]]: a field that has lot of overlap with atom physics
63928
63929 == External links ==
63930
63931 * [http://plasma-gate.weizmann.ac.il/API.html Atomic Physics on the Internet]
63932
63933 [[Category:Atomic physics| ]]
63934 [[Category:Atomic, molecular, and optical physics]]
63935
63936 &lt;!-- Interlanguage links --&gt;
63937
63938 [[ar:ŲŲŠØ˛ŲŠØ§ØĄ Ø°ØąŲŠØŠ]]
63939 [[da:Atomfysik]]
63940 [[de:Atomphysik]]
63941 [[es:Física atÃŗmica]]
63942 [[id:Fisika atom]]
63943 [[he:פיזיקה אטומי×Ē]]
63944 [[lb:Atomphysik]]
63945 [[nl:Atoomfysica]]
63946 [[ja:原子į‰Šį†å­Ļ]]
63947 [[pl:Fizyka atomowa]]
63948 [[pt:Física atômica]]
63949 [[sv:Atomfysik]]
63950 [[ta:āŽ…āŽŖā¯āŽĩāŽŋāŽ¯āŽ˛ā¯]]
63951 [[zh:原子į‰Šį†å­Ļ]]</text>
63952 </revision>
63953 </page>
63954 <page>
63955 <title>American Sign Language</title>
63956 <id>1201</id>
63957 <revision>
63958 <id>41640776</id>
63959 <timestamp>2006-02-28T18:57:10Z</timestamp>
63960 <contributor>
63961 <username>BillFlis</username>
63962 <id>846916</id>
63963 </contributor>
63964 <minor />
63965 <text xml:space="preserve">{{Infobox Language
63966 |name=American Sign Language
63967 |nativename=ASL
63968 |states=[[United States]], [[Canada]] and [[Mexico]]
63969 |region=Anglophone [[North America]]
63970 |signers=500,000 to 2 million in the USA alone (others unknown)
63971 |family=emerging primarily from [[Old French Sign Language]], with significant input from [[Martha's Vineyard Sign Language]] and various [[home sign]] systems
63972 |iso3=ase
63973 }}
63974 '''American Sign Language''' ('''ASL''', also '''Amslan''' obs., '''Ameslan''' obs.) is the dominant [[sign language]] in the [[United States]], [[anglophone|English-speaking]] [[Canada]], and parts of [[Mexico]], used particularly in the [[Deaf community]]. Although the United Kingdom and the United States share English as a spoken language, [[British Sign Language]] (BSL) is quite different from ASL, and not mutually intelligible.
63975
63976 ASL is also used (sometimes alongside indigenous sign languages) in the [[Philippines]], [[Singapore]], [[Hong Kong]], [[Dominican Republic]], [[Haiti]], [[Puerto Rico]], [[Côte d'Ivoire]], [[Burkina Faso]], [[Ghana]], [[Togo]], [[Benin]], [[Nigeria]], [[Chad]], [[Gabon]], [[Democratic Republic of the Congo]], [[Central African Republic]], [[Mauritania]], [[Kenya]], [[Madagascar]], and [[Zimbabwe]]. Like other sign languages, its [[grammar]] and [[syntax]] are distinct from any [[spoken language]] in its area of influence. While there has been no reliable survey of the number of people who use ASL as their primary language, estimates range from 500,000 to 2 million in the U.S.A. alone [http://library.gallaudet.edu/dr/faq-asl-rank.html]. American Sign Language has been said (by Trudy Suggs in her book) to be the third-most-used language in America after English and Spanish.
63977
63978 ==History of ASL==
63979 In the [[United States]], as in most of the world, hearing families with deaf children often employ ad-hoc [[home sign]] for simple communications. Today though, ASL classes are offered in many secondary and postsecondary schools. ASL is a language distinct from spoken English—replete with its own syntax and grammar and supporting its own culture. The origin of modern ASL is ultimately tied to the confluence of many events and circumstances, including historical attempts at [[deaf education]]; possibly the sign used by the indigenous nations of North America; the unique situation present on a small island in Massachusetts; the attempts of a father to enlist a local minister to help educate his deaf daughter; and in no small part the ingenuity and genius of people (in this case deaf people) for language itself.
63980
63981 Standardized sign languages have been used in Italy since the [[17th century]] and in France since the [[18th century]] for the instruction of the deaf. [[Old French Sign Language]] was developed and used in [[Paris]] by the [[AbbÊ de l'ÉpÊe]] in his school for the deaf. These languages were always modeled after the natural sign languages already in use by the deaf cultures in their area of origin, often with additions to show aspects of the grammar of the local spoken languages.
63982
63983 American Plains Indians used [[Plains Indian Sign Language]] as an [[interlanguage]] for communication between people/tribes not sharing a common spoken language; its influence on ASL, if any, is unknown.
63984
63985 Off the coast of [[Massachusetts]], on the island of [[Martha's Vineyard]] in the 18th century, the population had a much higher rate of deafness than the general population of the continental United States because of the [[founder effect]] and the island's isolation. [[Martha's Vineyard Sign Language]] was well known by almost all islanders since so many families had deaf members. It afforded almost everyone the opportunity to have frequent contact with ASL while at an age most conducive to effortlessly learning a language.
63986
63987 Congregationalist minister and deaf educator [[Thomas Hopkins Gallaudet]] is credited with popularizing the signing technique in North America. At the behest of a father who was interested in educating his deaf daughter, [[Alice Cogswell]], he was enlisted to investigate methods of teaching the deaf. In the early 1800s he visited the AbbÊ de l'ÉpÊe's school in Paris and convinced one of the teachers, [[Laurent Clerc]], to return with him to America. In [[1817]] they founded the American Asylum for the Deaf and Dumb (now the [http://www.asd-1817.org/ American School for the Deaf]), in [[Hartford, Connecticut]], to teach sign language to American deaf students.
63988
63989 It was at this school that all these influences would intermingle, interact and what would become ASL was born. Many of the school's students were from Martha's Vineyard, and they mixed their &quot;native&quot; sign language with Clerc's OFSL. Other students probably brought their own highly localized sign language or &quot;home sign&quot; systems to the mix. Undoubtedly, spontaneous lexicon developed at the school as well. If there was any influence from sign language of [[Native American|indigenous people]], it may have been here that it was absorbed into the language.
63990
63991 Interestingly, because of the early influence of the sign language of France upon the school, the vocabularies of ASL and modern [[French Sign Language]] are approximately 60% shared, whereas ASL and [[British Sign Language]], for example, are almost completely dissimilar.
63992
63993 From its synthesis at this first public school for the deaf in North America, the language went on to grow. Many of the graduates of this school went on to found schools of their own in many other states, thus spreading the methods of Gallaudet and Clerc and serving to expand and standardize the language; as with most languages though, there are regional variations.
63994
63995 After being strongly established in this country there was a bitter fight between those who supported [[oralism]] over [[manualism]] in the late 1800s. Many notable individuals of high standing contributed to this row, such as [[Alexander Graham Bell]]. The oralists won many battles and for a long time the use of sign was suppressed, socially and pedagogically. Many considered sign to not even be a language at all. This situation was changed by [[William Stokoe]], a professor of English hired at [[Gallaudet University]] in 1955. He immediately became fascinated by ASL and began serious study of it. Eventually, through publication in linguistics journals of articles containing detailed linguistic analysis of ASL, he was able to convince the scientific mainstream that ASL was indeed a natural language on a par with any other.
63996
63997 The language continues to grow and change like any living language. In particular, ASL constantly adds new signs in an attempt to keep up with constantly changing technology.
63998
63999 ==Linguistics==
64000 ASL is a [[natural language]] as proved to the satisfaction of the linguistic community by [[William Stokoe]], and contains [[phonology]], [[Morphology (linguistics)|morphology]], [[semantics]], [[syntax]] and [[pragmatics]] just like [[spoken languages]]. It is a [[manual language]] meaning that the information is expressed not with combinations of sounds but with combinations of handshapes, palm orientations, movements of the hands, arms and body, and facial expressions. It is used natively and predominantly by the [[Deaf]] and [[hard-of-hearing]] of the United States and Canada.
64001
64002 ===Iconicity===
64003 Although it often seems as though the signs are meaningful of themselves, in fact they can be as arbitrary as words in spoken language. For example, hearing children often make the mistake of using &quot;you&quot; to refer to themselves, since others refer to them as &quot;you.&quot; Children who acquire the sign YOU (pointing at one's interlocutor) make similar mistakes&amp;nbsp;&amp;ndash; they will point at others to mean themselves, indicating that even something as seemingly explicit as pointing is an arbitrary sign in ASL, like words in a spoken language.
64004
64005 However, Edward Klima and Ursula Bellugi have modified the common theory that signs can be self-explanatory by grouping signs into three categories:
64006
64007 *Transparent: Non-signers can usually correctly guess the meaning
64008 *Translucent: Meaning makes sense to non-signers once it is explained
64009 *Opaque: Meaning cannot be guessed by non-signers
64010
64011 Klima and Bellugi used American Sign Language in formulating that classification. The theory that signs are self-explanatory can be conclusively disproved by the fact that non-signers cannot understand fluent, continuous sign language. The majority of signs are opaque.
64012
64013 Generally, signs that are &quot;Transparent&quot; are signs of objects or words that became popular after the basics of ASL were established. There are, of course, exceptions to this.
64014
64015 ===Grammar===
64016 The grammar of ASL uses spatial locations, motion, and context to indicate [[syntax]]. For example:
64017
64018 * The primary sentence structure in ASL is Topic-Comment and Object-Subject-Verb. For example, in the sentence &quot;I want the book,&quot; I is the subject, ''Book'' is the object, and ''want'' is the verb. The sentence, therefore, would be signed as &quot;BOOK, ME WANT.&quot; To add a time element, such as &quot;I want the book tomorrow&quot;, the time component is placed at the beginning of the sentence, making it look like this: &quot;TOMORROW BOOK ME WANT.&quot; In addition, [[prosody]] can alter sentence structure.
64019
64020 * ASL also relies heavily on Time Sequenced Ordering. Since ASL is a visual language, when signing a sentence or a story one signs it in the order in which events occurred. For example, in the case of the sentence &quot;I'm going to be late tonight because my boss handed me a huge stack of work after lunch,&quot; one would sign &quot;LUNCH FINISH, BOSS GIVE-ME BIG-STACK WORK, WILL ARRIVE LATE.&quot; In the case of stories, however, Time Sequenced Ordering can be a little more malleable since one could choose to sign information either in the order in which events occurred or in the order in which one found out about events.
64021
64022 * If a signer signs a noun and then points to a certain spot, he or she can refer back to that noun by pointing again to the same spot. This is also known as ''setting up'' something. For instance, if you point to a spot over your right shoulder in talking about your grandmother in another city, then when you mention her again, instead of signing &quot;GRANDMOTHER,&quot; you can just point back to the same spot.
64023
64024 * Within ASL there is a class of ''directional'' verbs. These include the signs for ''pay'', ''give'', ''show'', ''invite'', ''send'', and several others. Depending on which way the hand moves, either away from the body or towards, distinguishes between the subject and object of the sentence, which are both included within the one sign. For example, to sign &quot;I GIVE YOU&quot;, the hand in the shape of a flattened &quot;O&quot; moves away from the signer's body. In signing &quot;YOU GIVE ME&quot; the same handshape is drawn toward the body.
64025
64026 * To intensify the meaning of a verb or adjective (e.g., to say &quot;very calm&quot; instead of &quot;calm&quot;), the signer modulates the way it is expressed. Certain short words, such as &quot;sad&quot; or &quot;mad&quot; might be fingerspelled rather than signed. Other words can be repeated or slowed down, emphasizing their importance or degree. Some signs may be enlarged, so that they take up more body space. This can also involve a back and forth scissoring motion of the arms to indicate that the sign ought to be larger, but one is physically incapable of stretching the arms any farther than they already are. Moving the whole body and adding facial expressions are also useful modifiers.
64027
64028 * Raised eyebrows can indicate a yes-or-no question, while lowered eyebrows indicate a 'wh-question' or one that requests more information such as those that would use the question words: who, what, when, where, or why.
64029
64030 * To ask a rhetorical question, the eyebrows are raised to give the cue not to reply. Such as, &quot;I don't like [what?] (raised eyebrows), garlic&quot;.
64031
64032 * Like some spoken languages, ASL does not use the linking verb &quot;to be&quot; (either as a '[[copula]]' or a [[auxiliary verb|helping verb]]). An example of a copula is the English phrase &quot;My hair is wet&quot;, which when translated into ASL would be transliterated as, &quot;MY HAIR, WET&quot;. (The comma indicates a short pause and raised eyebrow to topicalize &quot;my hair&quot;.) An example of a helping verb is translating the English phrase &quot;We are going to the store tomorrow&quot;, some possible ASL sentences, literally translated, could be
64033 **&quot;TOMORROW, STORE WE GO.&quot; (Topicalization, TOMORROW is the focus)
64034 **&quot;STORE, WE GO TOMORROW.&quot; (Topicalization, STORE is the focus)
64035
64036 * In ASL, a signer might not use the word &quot;because&quot;, but instead break down the sentence into a [[rhetorical question]]. This is often used for clarity or emphasis. For instance, &quot;I love to eat [[pasta]] because I am [[Italian people|Italian]]&quot; would be translated into &quot;I LOVE EAT PASTA, WHY? I ITALIAN.&quot; Rhetorical questions do not replace the word &quot;because&quot;. Rather, they are used only when the speaker deems it necessary.
64037
64038 * Some signs can be executed in different locations for contextual reasons. The sign for &quot;PAIN&quot; - two pointed index fingers aimed at each other moved towards then away from each other - can be signed over one's leg to show that there is pain in the leg, or over the belly to indicate abdominal pain.
64039
64040 * Facial expression is also key in ASL. In signing &quot;ANGRY&quot;, a facial expression of anger should be put on. Without expressions like this, the effect would be similar to listening to someone who was speaking in extremely monotone spoken English, or it would be taken as an indication of sarcasm or some other departure from the usual meaning of the sign.
64041
64042 * ASL also makes use of mouth morphemes, certain sounds or mouth configurations that add meaning to a sign. For example, one could sign &quot;HE TALL&quot; and communicate that a man is reasonably tall, but by adding the mouth morpheme &quot;Cha,&quot; the sentence would then be understood as &quot;He's ENORMOUS!!!&quot;
64043
64044 ==Writing systems==
64045
64046 ASL is often glossed with English words written in all capital letters. This is however a method used simply to teach the structure of the language. ASL is a visual language not a written language. There is no one-to-one correspondence between words in ASL and English, and much of the inflectional modulation of ASL signs is lost.
64047
64048 There are two true writing systems in use for ASL: a [[phoneme|phonemic]] [[Stokoe notation]], which has a separate symbol or diacritic mark for every phonemic hand shape, motion, and position (though it leaves something to be desired in the representation of facial expression), and a more popular iconic system called [[SignWriting]], which represents each sign with a rather abstract illustration of its salient features. SignWriting is commonly used for student newsletters and similar purposes.
64049
64050 ==&quot;Baby Sign&quot;==
64051 {{main|Baby Sign}}
64052 In recent years, it has been shown that exposure to sign language has a positive impact on the socialization of hearing children. When infants are taught to sign, parents are able to converse with them at a [[Child development|developmental stage]] when they are not yet capable of producing verbal speech, which requires fine control of both breathing and the vocal tract. The ability of a child to actively communicate earlier than would otherwise be possible appears to accelerate language development and to decrease the frustrations of communication.
64053
64054 Many parents use a collection of simplified or ''ad hoc'' signs called &quot;baby sign&quot;, as infants do not have the dexterity required for true ASL. However, parents can learn to recognize their baby's approximations of adult ASL signs, just as later on they will learn to recognize their approximations of verbal language, so teaching an infant ASL is also possible. Typically young children will make an ASL sign in the correct location and use the correct hand motion, but may be able only to approximate the handshape, for example, using one finger instead of three in signing ''water''.
64055
64056 ==Primate usage==
64057 ASL has allegedly been taught to both species of [[chimpanzee]], the [[bonobo]] and [[common chimpanzee]], as well as to [[gorilla]]s. Several of the animals have been said to have mastered more than one hundred signs, though not all agree with the ability of the [[primate]]s to sign. For example, when the [[washoe (chimpanzee)|Washoe]] research team asked the handlers of the chimp to write signs down whenever they witnessed them being produced by Washoe, the hearing people on the team turned in long lists of signs while the only deaf [[native speaker]] of ASL on the team turned in blank lists, explaining that what she saw were not signs at all, but simply gestures. Further fomenting the controversy, the researchers in the studies of [[Koko (gorilla)|Koko]] and Washoe refused to share their raw data with the [[scientific community]]. The theory that non-human primates have learned ASL, or that they are even capable of learning ASL or any other natural language, is not currently accepted by linguists&amp;mdash;including linguists who accept similar but better documented claims of rudimentary human language acquisition by birds. Despite this, however, research on the ability of primates to learn symbol systems continues and receives occasional publicity in the media.
64058
64059 ==See also==
64060 *[[American Sign Language alphabet]]
64061 *[[British Sign Language]]
64062 *[[Signing Exact English]]
64063 *[[Gallaudet University]]
64064 *[[Registry of Interpreters for the Deaf]]
64065
64066 ==External links==
64067
64068 * [http://home.bluemarble.net/~langmin/miniatures/asl.htm Silent Eloquence: The sophistication of American Sign Language]
64069 * [http://home.bluemarble.net/~langmin/miniatures/interrogsign.htm Going to Read This?: Sign languages and that rise in the voice]
64070 * [http://www.bu.edu/asllrp/ The American Sign Language Linguistics Research Project]
64071 ** [http://www.bu.edu/asllrp/publications.html Publications of the ASLLRP]
64072 ** [http://www.bu.edu/asllrp/asllrpr12.pdf The Syntactic Organization of American Sign Language: A Synopsis] (.pdf)
64073 *[http://www.lifeprint.com/ ASL Resource Site] Free online lessons, ASL dictionary, and resources for teachers, students, and parents.
64074 *[http://www.handspeak.com/ HandSpeak] a leading online website on ASL, International Sign, Gestures, Baby Sign, and more.
64075 *[http://www.deaflibrary.org/asl.html About ASL] - article at [http://www.deaflibrary.org deaflibrary.org]
64076 *[http://www.ethnologue.com/show_language.asp?code=ase Ethnologue entry on ASL]
64077 *[http://commtechlab.msu.edu/sites/aslweb/browser.htm Videos Dictionary of ASL]
64078 *[http://newportwebs.com/thomas/ Chimpanzees &amp; Sign Language] - article focusing on chimpanzee communication through sign language.
64079 * [http://ling.ucsc.edu/Jorge/fernald.html Athabaskan Satellites &amp; ASL Ion-Morphs]
64080 *[http://www.vengefulstapler.com/serious/aslfl.html American Sign Language is a Foreign Language] - a research/argumentative paper for the consideration of ASL to fulfill University foreign language requirements.
64081
64082 ==References==
64083
64084 * {{cite book|author=Groce, Nora Ellen|year=1988|title=Everyone Here Spoke Sign Language: Hereditary Deafness on Martha's Vineyard|publisher=Cambridge: [[Harvard University Press]]|id=ISBN 067427041X}}
64085 * {{cite book|author=Klima, Edward, and Bellugi, Ursula|year=1979|title=The Signs of Language|publisher=Cambridge: [[Harvard University Press]]|id=ISBN 0674807952}}
64086 * [[Harlan Lane|Lane, Harlan L.]] (1984). ''When the mind hears: A history of the deaf''. New York: Random House. ISBN 0-3945-0878-5.
64087 * Padden, Carol; &amp; Humphries, Tom. (1988). ''Deaf in America: Voices from a culture''. Cambridge, MA: Harvard University Press. ISBN 0-6741-9423-3.
64088 * [[Oliver Sacks|Sacks, Oliver W.]] (1989). ''Seeing voices: A journey into the land of the deaf''. Berkeley: University of California Press. ISBN 0-5200-6083-0.
64089 * {{cite book|author=Stokoe, William C.|year=1976|title=Dictionary of American Sign Language on Linguistic Principles|publisher=Linstok Press|id=ISBN 0932130011}}
64090 * [[William Stokoe|Stokoe, William C.]] (1960). ''Sign language structure: An outline of the visual communication systems of the American deaf''. Studies in linguistics: Occasional papers (No. 8). Buffalo: Dept. of Anthropology and Linguistics, University of Buffalo.
64091
64092 [[Category:Sign languages]]
64093 [[Category:Deaf culture]]
64094 [[Category:Languages of the United States]]
64095 [[Category:Languages of Canada]]
64096 [[Category:Languages of Mexico]]
64097
64098 [[de:American Sign Language]]
64099 [[eo:Usona signolingvo]]
64100 [[nl:Amerikaanse Gebarentaal]]
64101 [[ja:ã‚ĸãƒĄãƒĒã‚Ģæ‰‹čŠą]]
64102 [[fi:Amerikkalainen viittomakieli]]
64103 [[zh:įžŽåœ‹æ‰‹čĒž]]</text>
64104 </revision>
64105 </page>
64106 <page>
64107 <title>Applet</title>
64108 <id>1202</id>
64109 <revision>
64110 <id>42069143</id>
64111 <timestamp>2006-03-03T16:32:39Z</timestamp>
64112 <contributor>
64113 <username>Gerbrant</username>
64114 <id>190376</id>
64115 </contributor>
64116 <minor />
64117 <comment>sp</comment>
64118 <text xml:space="preserve">An '''applet''' is a software component that runs in the context of another program, for example a [[web browser]]. An applet usually performs a very narrow function that has no independent use. Hence, it is an ''app''lication ''[[-let]]''. The term was introduced in [[AppleScript]] in 1993. An applet is distinguished from &quot;subroutine&quot; by several features. First, it executes only on the &quot;client&quot; platform environment of a system, as contrasted from &quot;servlet.&quot; As such, an applet provides functionality or performance beyond the default capabilities of its container (the browser). Also, in contrast with a subroutine, certain capabilities are restricted by the container. An applet is written in a language that is different from the scripting or [[HTML]] language which invokes it. The applet is written in a compiled language, while the scripting language of the container is an interpreted language, hence, the greater performance or functionality of the applet. Unlike a &quot;subroutine,&quot; a complete web component can be implemented as an applet.
64119
64120 == Attributes ==
64121
64122 Unlike a [[program]], an applet cannot run independently; an applet usually features display and graphics and often interacts with the human user. However, they are usually stateless and have restricted security privileges. The applet must run in a [[container]], which is provided by a host program, through a [[plugin]], or a variety of other applications including mobile devices that support the applet programming model.
64123
64124 == Interfaces ==
64125
64126 Applets usually have some form of [[user interface]] or perform a particular piece of the overall user interface in a web page. This distinguishes them from a program written in a [[scripting programming language]] (such as [[JavaScript]]) that also runs in the context of a larger, client program, but which would not be considered an applet.
64127
64128 Applets generally have the capability of interacting with and/or influencing their host program, through the restricted security privileges, although they are generally not required to do so.
64129
64130 == Examples ==
64131
64132 Common examples of applets are [[Java applet]]s and [[SWF|Flash movies]]. Another example is the [[Windows Media Player]] applet that is used to display embeded video files in [[Internet Explorer]] (and other [[Web browser|browsers]] that support the plugin). Some plugins also allow for displaying various 3D model formats in a web browser, via an applet that allow the view of the model to be rotated and zoomed. Many [[browser game]]s are applet-based, though some may develop into fully functional applications that require installation.
64133
64134 == See also ==
64135
64136 * [[Java applet]]
64137 * [http://www-math.mit.edu/daimp Some mathematics applets, at MIT]
64138
64139 [[da:Applet]]
64140 [[de:Applet]]
64141 [[es:Applet]]
64142 [[fr:Applet]]
64143 [[he:יישומון]]
64144 [[it:Applet]]
64145 [[ja:ã‚ĸプãƒŦット]]
64146 [[nl:Applet]]
64147 [[pl:Aplet]]
64148 [[pt:Applet]]
64149 [[ru:АĐŋĐŋĐģĐĩŅ‚]]
64150 [[sv:Applet]]
64151 [[zh:Applet]]
64152
64153 [[Category:Programming paradigms]]
64154 [[Category:Technology neologisms]]</text>
64155 </revision>
64156 </page>
64157 <page>
64158 <title>Alternate history (fiction)</title>
64159 <id>1203</id>
64160 <revision>
64161 <id>41551155</id>
64162 <timestamp>2006-02-28T02:32:18Z</timestamp>
64163 <contributor>
64164 <ip>208.222.71.17</ip>
64165 </contributor>
64166 <comment>Birmingham's POD--result is three worlds, not just two (phrase added)</comment>
64167 <text xml:space="preserve">{{Speculative fiction}}
64168 '''Alternate history''' or '''alternative history''' is a [[subgenre]] of [[speculative fiction]] (or some would say of [[science fiction]]), that is set in a world in which [[history]] has [[Point of divergence|diverged]] from history as it is generally known; more simply put, alternate history asks the question, &quot;What If history had developed differently?&quot; Most works that employ this rubric are set in factful historical contexts, yet feature several social, geopolitical or industrial circumstances that developed differently or at a different pace from our own, sometimes as a result of [[progress]] in [[technology|technological]] or [[society|social]] [[paradigms]] that were accomplished via the understanding already present in the given [[zeitgeist]]. While to some extent all [[fiction]] can be described as alternate history, the subgenre proper comprises fiction in which a change happens that causes history to diverge from our own.
64169
64170 Since the 1950s this type of fiction has to a large extent merged with science fictional framings involving (a) cross-time, or paratime, travel between alternate histories/universes (or some kind of psychic awareness of the existence of &quot;our&quot; universe by the people in the other, as in Nabokov and Dick; see below); or (b) ordinary voyaging uptime or downtime that results in a world splitting into two or more new timelines. So close have the cross-time, time-splitting and alternate history themes been interwoven that it is impossible to discuss them fully apart from one another. Thus, cross-time and time-splitting stories will be an important part of this article &lt;i&gt;insofar as they portray one or more alternate histories that diverged from a common past&lt;/i&gt;.
64171
64172 In [[French (language)|French]], alternate history novels are called ''uchronie''. This [[neologism]] is based on the word ''utopia'' (a place that doesn't exist) and the Greek for time, ''chronos''. An ''uchronie'', then, is defined as a time that doesn't exist.
64173
64174 == History of alternate history fiction ==
64175
64176 === Antiquity ===
64177 The earliest example of alternate history appears to be Book IX, sections 17-19, of [[Livy]]'s ''History of Rome from Its Foundation''. He contemplates the possibility of [[Alexander the Great]] expanding his father's empire westward instead of eastward and attacking Rome in the [[4th century BC]].
64178
64179 === 19th century ===
64180 The earliest alternate history published as a complete work, rather than an aside or digression in a longer work, is believed to be [[Louis NapolÊon Geoffroy-ChÃĸteau]]'s French nationalist tale, ''NapolÊon et la conquÃĒte du monde, 1812-1823'' ([[1836]]) &amp;ndash; in English ''Napoleon and the Conquest of the World''. In this book, Geoffroy-ChÃĸteau postulates that [[Napoleon I of France|Napoleon]] turns away from [[Moscow]] before the disastrous winter of [[1812]]. Without the severe losses he suffered historically, Napoleon is able to conquer the world. Geoffroy-ChÃĸteau's book must have been popular in [[France]], for the subsequent years saw many similar novels published.
64181
64182 In the [[English language]], the first known complete alternate history is [[Nathaniel Hawthorne]]'s [[short story]] &quot;P.'s Correspondence&quot;, published in [[1846]] and which recounts the tale of an apparent madman and his purported encounters with various literary and political figures of the 1840s. At novel length, the first alternate history in English would seem to be [[Castello Holford]]'s ''Aristopia'' ([[1895]]). While not as nationalistic as ''NapolÊon et la conquÃĒte du monde, 1812-1823'', ''Aristopia'' is another attempt to portray a utopian society which never existed. In ''Aristopia'', the earliest settlers in [[Virginia]] discover a reef made of solid [[gold]] and are able to build a [[Utopia|utopian]] society in [[North America]].
64183
64184 === Early 20th century and the era of the pulps===
64185
64186 Although a number of alternate history stories and novels appeared in the late 1800s and early 1900s, the next major work is perhaps the strongest anthology of alternate history ever assembled. In [[1932]], British historian [[Sir John Squire]] collected a series of essays, many of which could be considered stories, in ''If It Had Happened Otherwise'' from some of the leading historians of the period. In this work, scholars from major universities as well as important non-university-based authors turned their attention to such questions as &quot;If the Moors in Spain Had Won&quot; and &quot;If [[Louis XVI of France|Louis XVI]] Had Had an Atom of Firmness.&quot;
64187 The essays range from serious scholarly efforts through [[Henrik Van Loon]]'s fanciful and satiric portrayal of an independent 20th century Dutch city state on the island of Manhattan.
64188
64189 Four of the fourteen pieces examined the two most popular themes in alternate history prior to the [[World War II|Second World War]]: Napoleon's victory and the [[American Civil War]]. One of the entries in Squire's volume was [[Winston Churchill]]'s &quot;If Lee Had Not Won the Battle of Gettysburg&quot;, written from the viewpoint of a historian in a world where the [[Confederate States of America|Confederacy]] had won the [[American Civil War]], considering what would have happened if the North &lt;!-- Please do not change this, North is correct --&gt; had been victorious. (This kind of speculative work which posts from the point of view of an alternate history is variously known as a &quot;recursive alternate history&quot;, a &quot;double-blind what-if&quot; or an &quot;alternate-alternate history&quot;.) Other authors appearing in Squire's book included [[Hilaire Belloc]] and [[AndrÊ Maurois]].
64190
64191 Another example of alternate history from this period (and arguably the first to explicitly posit cross-time travel from one universe to another as anything more than a visionary experience) was [[H.G. Wells]]' ''[[Men Like Gods]]'' (1923) in which several British politicians are transferred via an accidental encounter with a cross-time machine into an alternate universe in which Britain had changed course in earlier centuries and developed into a seemingly pacifistic and utopian society. When the politicians from our world try to seize power, the utopians simply point a ray gun at them and send them on to someone else's universe. Wells works out the entire multiverse-pancake framing complete with paratime travel machines that would become popular with U.S. pulp writers (see below), but since his hero experiences only a single alternate world this story is not very different from conventional alternate history (the intruders from our world cause no significant change in the world they enter and are really just a device for examining the results of a past divergence between Wells' utopia and our own world).
64192
64193 The 1930s would see alternate history move into a new arena. The December [[1933]] issue of ''[[Astounding (magazine)|Astounding]]'' published [[Nat Schachner]]'s &quot;Ancestral Voices&quot;. This was quickly followed by [[Murray Leinster]]'s &quot;Sidewise in Time&quot;. While earlier alternate histories examined reasonably straight-forward divergences, Leinster attempted something completely different. In his &quot;world gone mad&quot;, pieces of Earth traded places with their analogs from different timelines. The story follows [[Robinson College (fictitious)|Robinson College]] Professor Minott as he wanders through these analogs, each of which features remnants of worlds which followed a different history.
64194
64195 === Time travel as a means of creating historical divergences ===
64196
64197 This period also saw the publication of the [[time travel]] novel ''[[Lest Darkness Fall]]'' by [[L. Sprague de Camp]], which was similar to [[Mark Twain]]'s ''[[A Connecticut Yankee in King Arthur's Court]]'' but sent an American academic to the [[Italy]] of the [[Ostrogoths]] at the time of the Byzantine invasion led by [[Belisarius]]. De Camp's work is concerned with the historical changes wrought by his time traveler, Martin Padway, thereby making the work an alternate history. Padway is depicted as making permament changes and implicitly forming a new time branch (in contrast to Twain's hero, who ultimately fails, with the result that history reverts to its &quot;normal&quot; course).
64198
64199 Time travel as the cause of a point of divergence (creating two histories where before there was one, or simply replacing the future that existed before the time traveling event) has continued to be a popular theme over the decades. In [[Bring the Jubilee]], by [[Ward Moore]], the hero, who lives in a backward world in which the South won the Civil War, travels through time and brings about an alternate history in which the North won at Gettysburg. [[Ray Bradbury]]'s [[A Sound of Thunder]] creates a scenario in which the time travelers inadvertently destroy all history as we know it.
64200
64201 When a story's assumptions about the nature of time necessitate, as in the Bradbury tale, a replacement of the visited historical time's future rather than just the creation of a new time line, the next step is obviously the founding of a time patrol (a device that is &lt;i&gt;not&lt;/i&gt; to be confused with the paratime police, see below). Such an agency has the grim task of saving civilization every day, every hour, with patrol members--depicted most notably in [[Poul_Anderson#Time_Patrol|Poul Anderson's Time Patrol]]--racing uptime and downtime to preserve the &quot;correct&quot; history.
64202
64203 Of course not all time travel stories involve alternate histories. The writer may ignore the possibility of change, or have the cause-and-effect work out so that the time traveler's actions cause the future he remembers, as in [[Harry Harrison]]'s [[Technicolor Time Machine]].
64204
64205 === The Connecticut Yankee wins at last! ===
64206
64207 A recent time travelling splitter variant involves entire communities (and not just individuals like Twain's [[A Connecticut Yankee in King Arthur's Court|Connecticut Yankee]]) being shifted uptime to be the founding fathers of new time branches. These communities are transported either from the present or the near-future to the past via a natural disaster, the action of technologically advanced aliens, or a human experiment gone wrong.
64208
64209 [[S.M. Stirling]] has written the ''[[Island in the Sea of Time]]'' trilogy, in which [[Nantucket]] Island and all its modern inhabitants are transported to [[Bronze Age]] times to become the world's first superpower. In [[Eric Flint]]'s [[1632 series]], a small town in [[West Virginia]] is transported to 17th century Europe and leads a revolution against the [[Hapsburgs]]. [[John Birmingham]]'s [[Axis of Time]] trilogy, deals with the culture shock when a United Nations naval task force from 2021 finds itself back in 1942 helping the Allies against the [[Empire of Japan|Japanese]] and the [[Nazi Germany|Germans]] (and doing almost as much harm as good in spite of its advanced weapons).
64210
64211 === Cross-time stories ===
64212
64213 H.G. Wells' &quot;cross-time&quot;/&quot;many universes&quot; variant (see above) was fully developed by De Camp in his 1940 short story &quot;The Wheels of If&quot; (''[[Unknown Fantasy Fiction]]'', October 1940), in which the hero is repeatedly shifted from one alternate history to another, each more remote from our own than the last. This subgenre was used early on for purposes far removed from quasi-academic examination of alternative outcomes to historical events. [[Fredric Brown]] employed it to satirize the s-f pulps and their adolescent readers--and fears of foreign invasion--in the classic ''[[What Mad Universe]]'' (1949). In [[Clifford Simak]]'s ''[[Ring Around the Sun]]'' (1953), the hero ends up in an alternate earth of thick forests in which humanity never developed (the ultimate divergence) but where a band of mutants is establishing a colony; the story line appears to frame the author's anxieties regarding [[McCarthyism]] and the [[Cold War]].
64214
64215 === Introducing the paratime patrol ===
64216 Also in the late 1940s and the 1950s, however, writers such as [[H. Beam Piper]], [[Sam Merwin Jr.]] and [[Andre Norton]] wrote thrillers set in a [[multiverse]] in which all alternate histories are co-existent and travel between them occurs via a technology involving portals and/or paratime capsules. These authors established the convention of a secret paratime trading empire that exploits and/or protects worlds lacking the paratime technology via a network of James Bond style secret agents (Piper called them the &quot;paratime police&quot;).
64217
64218 This concept provided a convenient framing for packing a smorgasbord of historical alternatives (and even of timeline &quot;branches&quot;) into a single novel, either via the hero chasing or being chased by the villain(s) through multiple worlds or (less artfully) via discussions between the paratime cops and their superiors (or between paratime agents and new recruits) regarding the histories of such worlds. Paratime thrillers published in recent decades often cite the [[Many-worlds interpretation|many-worlds interpretation]] of [[Quantum mechanics|quantum mechanics]] (first formulated by [[Hugh Everett III]] in 1957) to account for the differing worlds. Prior to Everett, science-fiction writers drew on cruder fringe-science and Ouspenskian speculations to explain their characters' cross-time jauntings.
64219
64220 The popular theme was further developed in the 1960s by [[Keith Laumer]] in the first two volumes of his ''Imperium'' trilogy, which would be completed in ''Zone Yellow'' (1990). Piper's politically more sophisticated variant was adopted and adapted by [[Michael Kurland]] and [[Jack Chalker]] in the 1980s; Chalker's ''[[God, Inc.]]'' trilogy (1987-89), featuring paratime detectives Sam and Brandy Horowitz, marks the first attempt at merging the paratime thriller with the police procedural. Kurland's ''[[Perchance]]'' (1988), the first volume of the never completed &quot;Chronicles of Elsewhen&quot;, presents a multiverse of secretive empires that utilize a variety of means for cross-time travel, ranging from high-tech capsules to mutant powers.
64221
64222 The concept of a cross-time version of a world war, involving rival paratime empires, was developed in [[Richard C. Meredith]]'s ''Timeliner'' trilogy in the 1970s, [[Michael McCollum]]'s ''A Greater Infinity'' (1982) and [[John Barnes (author)|John Barnes]]' ''Timeline Wars'' trilogy in the 1990s.
64223
64224 Given the limitless fictional possibilities of paratime travel themes, and the fact that both [[string theory]] and the many-worlds theory of quantum physics provide a highly plausible hard-science-fiction foundation for such stories, it is probable that this variant will continue to flourish in tandem with the more &quot;conventional&quot; alternate history stories described below.
64225
64226 === Development of more sophisticated framings ===
64227 Most of the early cross-time thrillers depicted the multiverse in Euclidean terms (pancake universes stretching to left and right of any given zero universe with the divergence point being earlier and earlier, and the differences greater and greater, the farther one moved in either direction from the zero point). McCollum and some later writers, however, have posited a pseudo-Einsteinian paratime in which universes are constantly shifting around, moving closer or farther from each other, with time dilating or contracting from one universe to another in unpredicable ways. This framing device expands the potential for using cross-time fiction to compare different outcomes uptime, downtime and crosstime all at once.
64228
64229 === Major U.S. writers explore alternate histories ===
64230
64231 In [[1962]], [[Philip K. Dick]] published [[The Man in the High Castle]], an alternate history in which [[Nazi Germany]] and [[imperial Japan]] won [[World War II]]. This book, widely regarded as Dick's masterpiece, has enhanced the prestige of alternate history in mainstream literary circles, although Dick was not yet recognized beyond s-f circles when it was first published. Dick's book also contained an example of &quot;alternate-alternate&quot; history, in that one of its characters is the author of a book in which the Allies won the war.
64232
64233 It was followed by [[Vladimir Nabokov]]'s ''[[Ada]]'' (1969) (full title, ''Ada, or Ardor: A Family Chronicle''), a story of incest that takes place within an alternate North America settled in part by Czarist Russia, and that borrows from Dick's idea of &quot;alternate-alternate&quot; history (the world of Nabokov's hero is wracked by rumors of a &quot;counter-earth&quot; that apparently is ours). Some critics believe that the references to a counter-earth suggest that the world portrayed in &quot;Ada&quot; is a delusion in the mind of the hero (another favorite theme of Dick's novels). But even if the Ada-world is regarded as a delusion, it is still alternate history, since Nabokov describes it in detail and makes it come alive artistically. (Since all AH works are imaginative fiction, it really matters little if the AH is presented as the author's fiction alone or as the author's fiction mediated through a delusional character.)
64234
64235 ''[[The Plot Against America]]'' ([[2004]]) by [[Philip Roth]] looks at an America where [[Franklin Delano Roosevelt]] is defeated in 1940 in his bid for a third term as President of the United States, and [[Charles Lindbergh]] is elected, leading to increasing [[fascism]] in the U.S.
64236
64237 === Contemporary alternate history in popular literature, including the s-f genre ===
64238
64239 The late 1980s and the 1990s saw a boom in popular-fiction versions of alternate history, fueled by the emergence of [[Harry Turtledove]], the [[steampunk]] genre and two series of anthologies&amp;mdash; the &quot;What Might Have Been&quot; series edited by [[Gregory Benford]] and the &quot;Alternate ...&quot; series edited by [[Mike Resnick]]. This period also saw alternate history works by [[S.M. Stirling]], [[Kim Stanley Robinson]], [[Harry Harrison]] and others.
64240
64241 Since the late 1990s, Harry Turtledove has been the most prolific practitioner of alternate history. His books include a series in which [[Confederate States of America|the South]] won the [[American Civil War]] and another in which aliens invade Earth during the [[World War II|Second World War]]. Other stories by this author include one with the premise that [[the Americas|America]] had not been colonized from [[Asia]] during the last [[ice age]]; as a result, the continent still has living [[mammoth]]s and a [[hominid]] species other than [[homo sapiens]]. Most recently (2005) he has begun a series in which the Japanese not only bomb [[Pearl Harbor]] but also invade and occupy the Hawaiian Islands. He has also launched an alternate history series for teenagers that utilizes a version of H. Beam Piper's paratime-trading-empire framing.
64242
64243 Perhaps the most incessantly explored theme in popular alternate history focusses on worlds in which the Nazis won World War Two. In some versions, the Nazis conquer the entire world; in others, they conquer most of the world but a &quot;Fortress America&quot; exists under siege. ''[[Fatherland (novel)|Fatherland]]'' (1992) by [[Robert Harris]], set in Europe following the [[Nazi]] victory, has been widely praised for portraying a more believable society and series of events than most other novels set in a Nazified world or Nazified Eurasia. Several writers have posited points of departure for such a world but then have injected time splitters from the future or paratime travel (for instance, [[James P. Hogan]]'s ''The Proteus Operation'' (1986) and [[Michael P. Kube-McDowell]]'s ''Alternities'' (1988)).
64244
64245 === Alternate history in the contemporary fantasy genre ===
64246
64247 Many fantasies and science fantasies are set in a world that has a history somewhat similar to our own world, but with magic added. Since the existence of magic implies different laws of nature it is difficult to imagine a credible point of divergence: The effects of divergence would have existed throughout human history and indeed throughout all evolution of life (unless one posits sudden changes in the laws of nature in medieval or modern times brought about by aliens, a time-space warp, etc.). One example of a universe that is in part historically recognizable but also obeys different physical laws is [[Poul Anderson]]'s ''Three Hearts and Three Lions'' in which the [[Matter of France]] is history, and the fairy folk are real and powerful. A partly familiar European history for which the author attempts to provide a logic-defying point of divergence is [[Randall Garrett]]'s &quot;Lord Darcy&quot; series. Whether a POD is hypothesized or not, it is probably best to regard such stories as depicting a kind of pseudo-alternity.
64248
64249 [[Jonathan Strange and Mr Norrell]] takes place in an alternate version of England where a separate Kingdom ruled by the Raven King and founded on magic existed for some time in Northumbria. In [[Patricia Wrede]]'s Regency fantasies, Great Britain has a Royal Society of Wizards, and in [[Poul Anderson]]'s ''A Midsummer's Tempest'' [[William Shakespeare]] is remembered as the Great Historian, with the novel itself taking place in the era of [[Cromwell]] and [[Charles I]]--and a premature [[Industrial Revolution]].
64250
64251 When the magical version of our world's history is set in contemporary times, one must clearly differentiate between alternate history on the one hand and secret history (as exemplified by [[Roswell]] saucers in an Air Force hanger or the [[Philadelphia Experiment]]) on the other. In works such as [[Robert A. Heinlein]]'s &quot;Magic, Incorporated&quot; where a construction company can use magic to rig up stands at a sporting event and [[Poul Anderson]]'s ''Operation Chaos'' and its sequel ''Operation Luna'', where djinns are serious weapons of war -- with atomic bombs -- the use of magic throughout the United States and other modern countries makes it clear that this is not secret history or the result of a mere POD. Indeed, whenever the effects of the fantasical elements are so powerful and pervasive that they cannot plausibly be explained via secret machinations or a point of departure caused by human decisions, then the history depicted should be regarded as a pseudo-alternity. (This should apply not just to fantasy alternities but to satiric ones in which highly improbable events occur, as in ''What Mad Universe''.)
64252
64253 [[Philip Pullman]] mined both pseudo-alternate history and cross-time themes in ''[[His Dark Materials]]'' (1996-2000), a science-fantasy trilogy for young adults. Most notable is his variant version of Elizabethan England in the first volume, although given the different (magical) laws of nature there could be no credible point of departure, nor does Pullman attempt to provide one.
64254
64255 A fantasy version of the paratime police was developed by children's writer [[Diana Wynne Jones]] in her [[Chrestomanci]] quartet (1977-1988), with wizards taking the place of high tech secret agents. Among the novels in this series, ''[[Witch Week]]'' stands out for its vivid depiction of a history alternate to that of Chrestomanci's own world rather than our own (and yet with a specific POD that turned it away from the &quot;normal&quot; history of most worlds visited by the wizard).
64256
64257 Although [[J.K. Rowling]] does not deal explicitly with cross-time or alternate history themes in her [[Harry Potter]] books (outside of the &quot;time turner&quot; used in book three), her world of wizards who coexist quasi-invisibly with the [[Muggles]] can be seen as an eccentric variant in which two subuniverses/subhistories co-exist as subsets of a larger universe/history (or one can regard [[Hogwarts]] and other magical locales as merely being pocket universes within a primary Muggles universe). Of course, if Rowling were to spell this out it would spoil much of the charm of her fictional world.
64258
64259 == Elements of Alternate History ==
64260
64261 There are certain elements which are common to all alternate histories, whether they deal with history on the micro-level (personal alternate histories) or the macro-level (world-changing events). These elements include:
64262
64263 *A point of change from the history of our world prior to the time at which the author is writing;
64264 *A change which would alter history as it is known; and
64265 *An examination of the ramifications of that change.
64266
64267 Alternate histories do not:
64268
64269 *Need to be set in the past;
64270 *Need to spell out the point of divergence;
64271 *Need to deal with world changing events; or
64272 *Need to include famous people.
64273
64274 == The boundaries of alternate history ==
64275
64276 This leads to readers encountering stories which read ''as though'' they were alternate history, but which are not. An example would be [[Robert A. Heinlein]]'s ''[[The Man Who Sold the Moon]]''. Written in the 1940s, it posits that the first moon launch is run by a private organization rather than a government agency in the 1960s. New readers encountering the book may well presume that this is alternate history since it is clearly a counter-factual depiction of the first moon launch, now almost 40 years in the past. However, ''when written'', the first moon launch was nearly 30 years in the ''future''. Thus, ''The Man Who Sold the Moon'' is [[science fiction]], not alternate history. The point of divergence happened after the time at which the author was writing.
64277
64278 Also one should not confuse the AH subgenre with [[secret history]], which gives an account of history at odds with our general understanding &amp;mdash; presenting its own account as having been concealed or suppressed by an elite.
64279
64280 AH also should not be mistaken for mythical history--a history which supposedly has been forgotten through the passage of time, not through conspiratorial suppression. The works of [[Robert Howard]] and [[J.R.R. Tolkien]] are excellent examples of fiction based on a lost-history framing, but they do not and cannot specify a point of departure from our own history, since there is no historical, archaeological or paleontological record on which such a POD could be based. Given the lack of any continuity with our world (and the lack of any kind of multiverse framing) such worlds are merely fantasy worlds and cannot be regarded as alternate history even in a borderline sense.
64281
64282 It is also possible to have novels that explore Points of Divergence (the key concept in alternate history) without actually being works of alternate history themselves. One good example is [[Marge Piercy]]'s critically acclaimed ''Woman on the Edge of Time'' (1976) in which a patient in a mental hospital is able to travel into two alternate futures--one an ecotopia run by reformed Weather Underground types and the other a fascist dystopia run by people-hating robots. Decisions she must make to resist an insidious new type of brain operation will determine which future wins. This is a time travel story, a cross-time story, a Christopher Priest style delusional alternate reality story and a POD story all rolled into one but it is &lt;i&gt;not&lt;/i&gt; alternate history because the POD occurs in the present (or perhaps the near future) not in the past.
64283
64284 Less obvious is the difference between alternate history and &quot;what if&quot; stories. The latter subgenre extrapolates, from the present, a concrete near-future possibility that is often an expression of current public fears (hence the alternate term &quot;cautionary tale&quot; used by Sackville-West, see below). For instance, beginning in the 1870s the British reading public was treated to a number of what-if books about a German or French invasion of an unready British Isles. During the [[Great Depression]], [[Sinclair Lewis]] wrote of a [[fascism | fascist]] takeover in the United State in his classic ''[[It Can't Happen Here]]'' ([[1935]]). During the early years of [[World War II]], [[Vita Sackville-West]] penned the science fantasy ''Grand Canyon'' ([[1942]]) in which the Germans invade a woefully unprepared United States. One could define such tales as borderline alternate history, since they are usually set in a time that is only shortly after the time of writing and the events described could not have occurred without a branching of history before, if only slightly before, the book was written.
64285
64286 The boundary, like many in literature, is a broad line with grey edges (not unlike the fog around the alternate universe portals in science-fiction stories of fifty years ago). Would a 2005 author writing a story set in [[1970]] in Heinlein's universe, or [[Jules Verne]]'s ''[[Captain Nemo]]'' universe be writing SF or AH? Opinions differ.
64287
64288 == Alternate history in other media ==
64289
64290 Several films have been made that exploit the concepts of alternate history, most notably [[Kevin Brownlow]]'s ''[[It Happened Here]]''. Another such film is ''[[2009 Lost Memories]]'', a Korean film supposing that [[Hirobumi Ito]] was not assassinated by [[An Jung-geun]] in Harbin, China, in [[1909]].
64291
64292 A few movies about alternate pasts, however, focus on individuals rather than historical events and some students of AH would say these are '''not''' alternate histories (e.g., [[Frank Capra]]&amp;#8217;s ''[[It's a Wonderful Life]]'', and more recently the films ''[[Sliding Doors]]'' and ''[[The Butterfly Effect]]''). However, in the Capra film the angel shows [[Jimmy Stewart]] an alternate history in which he was never born--the changes in his home town are serious and far-reaching, creating a much darker reality for his neighbors. Thus if one posits, as Capra does, that changes in personal lives create a ripple effect in the larger history, then such stories do qualify as a type of alternate history (one could call them &quot;alternative local history&quot; or &quot;alternative interpersonal history&quot;). Such worlds with relatively small (and sometimes almost undiscernable) changes in personal lives were given the name &quot;cognate universes&quot; by [[Jack Vance]] in the novelette &quot;Rumfuddle&quot; (1973).
64293
64294 The [[science fiction]] [[television show]] ''[[Sliders]]'' presented alternate histories under the science-inspired guise of quantum-navigating the [[multiverse]]. The alternate Americas in most episodes are nasty [[dystopias]], although sometimes this is not evident at first. Another such television show, a South Korean drama, [[Gung]] presents an point of divergence where the Korean monarchy is restored after the Independance from the Japanese Empire even up to the 21st Century.[http://www.imbc.com/broad/tv/drama/gung/index.html] (Note: This website is in Korean)
64295
64296 The dramatic possibilities of alternate history provide a diverse genre for exploration in [[role-playing game]]s. [[List of role-playing games#Period_Adventure.2FAlternate_History_Genres|Many games]] use an alternate historical background for their campaigns. In particular, [[GURPS]] uses a setting containing multiple different alternate histories as its default campaign setting.
64297
64298 ==Points of divergence==
64299
64300 The key change between our history and the alternate history is known as the &quot;[[Point of divergence]]&quot; (POD). In [[Philip K. Dick]]'s ''[[The Man in the High Castle]]'', the POD is the attempted assassination of [[Franklin D. Roosevelt]] in [[Miami]] in [[1933]]. In reality, this attempt failed. Another alternate history with a point of divergence connected to Roosevelt is the backdrop to [[Philip Roth]]'s novel [[The Plot Against America]], in which Roosevelt is defeated in the [[1940]] [[United States presidential election, 1940|US presidential election]] by the isolationist [[Charles Lindbergh]], who reaches an accommodation with the [[Axis powers]] in [[World War II]] and keeps the [[United States]] out of the war. In Robert Harris's [[Fatherland (novel)|Fatherland]], the POD occurs when a German attack into the [[Caucasus]] succeeds in the Nazis seizing vital oil and cutting off supplies to the [[Red Army]]. This forces the USSR to surrender, enabling the Axis Powers to bring the remaining Allies to the peace table, one by one. Some variants of the theory of the [[multiverse]] posit that PODs occur every instant, springing off [[parallel universe (fiction)|parallel universe]]s for each instance. Even mainstream [[science fiction]] stories are known to have points of divergence - the ''[[Star Trek]]'' franchise, for example, diverts from ours in that several key [[space disaster]]s never occurred, resulting in a much faster and smoother development of rocketry than in our timeline.
64301
64302 ==Counterfactual and virtual history==
64303 ''See main articles: [[historical revisionism]], [[virtual history]]''
64304
64305 [[Historian]]s also speculate in this manner; this type of speculation is known commonly as &quot;counterfactual history&quot; or &quot;[[virtual history]]&quot;. There is considerable debate within the community of historians about the validity and purpose of this type of speculation.
64306
64307 For alternate histories which some assert to be factual rather than speculative, see [[conspiracy theory]] and [[historical revisionism]].
64308
64309 ==Sidewise Award for Alternate History==
64310
64311 In [[1995]], the [[Sidewise Award for Alternate History]] was established to recognize best Long Form (novels and series) and best short form (stories) within the genres. The award is named for [[Murray Leinster]]'s story &quot;Sidewise in Time.&quot;
64312
64313 == Published alternate histories ==
64314
64315 Literally thousands of alternate history stories and novels have been published. Following is a somewhat random sampling:
64316
64317 * ''[[Weapons of Choice: Axis of Time series]]'' by [[John Birmingham]], which is part Alternate History, part Science Fiction. Its point of divergence is 1942 when an American-led UN Multinational Force arrives uptime from 2021 via a wormhole that was accidentally generated as a byproduct of a scientific experiment. Of course one could say there is also a downtime point of divergence--the point at which the UN force disappears from its &quot;normal&quot; time. (In other words, within the framing logic of parallel universe science fiction, the fictional experiment creates two new worlds or histories, while presumably leaving unchanged the future of a third world--the one in which the wormhole was never generated.)
64318
64319 * ''[[Lighter than a Feather]]'' (1971) by [[David Westheimer]], a story of the American invasion of Japan, [[Operation Olympic]], which was to have taken place in November 1945. The novel is seen from the point of view of both low-level Japanese military and civilian and American military members.
64320
64321 * ''[[Pastwatch: The Redemption of Christopher Columbus]]'' by [[Orson Scott Card]], in which scientists from the future travel back to the 15th century to prevent the European colonisation of the Americas.
64322
64323 * ''[[Alvin Maker]]'' by [[Orson Scott Card]], in which Card imagines North America where people wield magic, or knacks, and the revolution was only partly successful.
64324
64325 * ''[[Bring the Jubilee]]'' by [[Ward Moore]], in which the South was not defeated in the [[American Civil War]] because it won the [[Battle of Gettysburg]].
64326
64327 * ''[[The Man in the High Castle|The Man in the High Castle]]'' by [[Philip K. Dick]] set in a world where the [[Axis powers]] won [[World War II]].
64328
64329 * ''[[Fatherland (novel)|Fatherland]]'' by [[Robert Harris]] is also set in the 1960s in a Germany which won World War II.
64330
64331 *In &quot;The Forfeited Birthright of the Abortive Far Western Christian Civilization,&quot; [[Arnold J. Toynbee]] describes a world in which the Franks lost to the Muslims at the [[Battle of Tours]] in [[732]].
64332
64333 * ''[[SS-GB]]'' by [[Len Deighton]] is a detective novel set in 1941 Britain in which the Germans have successfully occupied the country.
64334
64335 * ''If Hitler Had Invaded England'', by [[C.S. Forester]], found in his collection of published short stories, ''Gold from Crete''. The story is a fictionalized account of a German invasion of Britain in 1940, based on what Forester saw as realistic projections of German and British capabilities. The German invasion fails short of reaching London due to continued British supremacy at sea and in the air. The resulting lack of river transport capability leads to an Allied victory.
64336
64337 * ''Pavane'', by [[Keith Roberts]], assumes that Queen [[Elizabeth I of England]] was assassinated, and in the ensuing disorder, the [[Spanish Armada]] was successful in suppressing [[Protestantism]]; the novel (actually a series of shorter pieces) is set in a 20th century where technology has advanced less than in our world, and where the [[Inquisition]] still has power.
64338
64339 * &quot;[[The Last Article]]&quot; is a [[short story]] by [[Harry Turtledove]], in which [[Mohandas Gandhi]] attempts to use [[non-violent resistance]] against India's [[Nazi]] occupiers.
64340
64341 * ''The Alteration'' by [[Kingsley Amis]] is set in a world very similar to that of ''Pavane''. In this world, [[Martin Luther]], rather than beginning the [[Protestant Reformation]], became [[pope]]. The novel concerns the attempt to prevent a young boy with a perfect singing voice from being recruited to the [[Holy See|Vatican's]] [[eunuch]] choir. There are a number of in-jokes, where famous works of [[fantasy and science fiction]] appear, under slightly different titles: 'The Wind in the Cloisters' and 'The Lord of the Chalices' for example.
64342
64343 * The &quot;[[Lord Darcy]]&quot; [[fantasy]] series by [[Randall Garrett]]; a number of short stories and one novel (''Too Many Magicians'') based on the premise that King [[Richard I of England|Richard I]] of [[England]] returned safely from [[France]] and that [[Roger Bacon]] had systematised the laws of [[magic (paranormal)|magic]]. The stories are a series of traditional [[detective fiction]]-style [[murder mystery|murder mysteries]] with forensic magic being used in the investigation.
64344
64345 * The &quot;[[Western Lights]]&quot; [[science fantasy]] series by [[Jeffrey Barlough]] posits a cataclysmic event that has &quot;sundered&quot; [[Western Europe]] from the rest of the world. The series features somewhat [[Steampunk]] [[Victorian era|Victorian]] technology and society juxtaposed with [[Ice Age]]-era creatures such as [[mastodon]] and [[saber-toothed tiger]]s. Titles include ''Dark Sleeper'', ''The House in the High Wood'', and ''Strange Cargo''.
64346
64347 * ''[[GURPS Alternate Earths]]'' (ISBN 1-55634-318-3) and ''[[GURPS Alternate Earths II]]'' (ISBN 1-55634-399-X) a pair of &quot;What might have been&quot; supplements for the Third Edition of the [[GURPS]] role-playing game. Includes a world with a surviving Confederacy, a Nazi/Japanese Empire world, an Aztecs-rule-America scenario, a Viking empire and a unique &quot;[[Hugo Gernsback|Gernsback]]&quot; world in which the dreams of mad scientists and [[Doc Savage]] have become reality. The conflict between the [[Infinity Patrol (GURPS)|Infinity Patrol]] and [[Centrum (GURPS)|Centrum]] across the multiplicity of parallel Earths detailed in these supplements (and originating in ''[[GURPS Time Travel]]'') was made central to the Fourth Edition of GURPS as the default setting in the Basic Set and in the supplement ''[[GURPS Infinite Worlds]]''.
64348
64349 * ''[[The Difference Engine]]'' by [[William Gibson (novelist)|William Gibson]] and [[Bruce Sterling]] is a [[steampunk]] novel which deals with a Victorian society in which [[Charles Babbage]]'s [[Analytical Engine]] takes on the roles of modern computers a century early.
64350
64351 * ''[[Arrowdreams: An Anthology of Alternate Canadas]]'', edited by [[Mark Shainblum]] and [[John Dupuis]] features stories by [[Eric Choi]], [[Dave Duncan (writer)|Dave Duncan]], [[Glenn Grant]], [[Paula Johanson]], [[Nancy Kilpatrick]], [[Laurent McAllister]], the late [[Keith Scott]], [[Shane Simmons]], [[Michael Skeet]], [[Edo van Belkom]] and [[Allan Weiss]]. The collection garnered an [[Aurora Award]] in the &quot;Best Other Work in English&quot; category, while Edo van Belkom's short story &quot;Hockey's Night in Canada&quot; captured another for &quot;Best Short-Form Work in English.&quot;
64352
64353 * ''[http://www.incunabula.org/ebooks.html Ong's Hat]'' by [[Ong's Hat, New Jersey]] is an Internet legend that deals with a group of renegade scientists from Princeton that developed a means of travel to parallel universes and fled this Universe to found a colony in another world.
64354
64355 * ''[[How Few Remain]]'' by [[Harry Turtledove]] is set twenty years after a Southern victory in the [[American Civil War]] established the [[Confederate States of America]]. This novel is followed by the [[Great War (Harry Turtledove)|Great War]] trilogy, set in the 1910s, the [[American Empire (Harry Turtledove)|American Empire]] trilogy, taking the timeline up through the 1920s and 30s, and the [[Settling Accounts (Harry Turtledove)|Settling Accounts]] trilogy, detailing an alternate World War II.
64356
64357 * ''[[The Two Georges]]'' by [[Harry Turtledove]] and actor [[Richard Dreyfuss]] is set in modern times under the assumption that [[George III of the United Kingdom|King George III]] of Great Britain and [[George Washington]] reached a settlement where the 13 Colonies remained within the British Empire with increased autonomy and virtually all of their grievances redressed. The book follows two Royal American Mounted Police officers attempting to recover the famous painting of the meeting between the Two Georges by [[Thomas Gainsborough]] after it had been stolen by anti-British terrorists. The painting had become a national treasure and the principal symbol of the unification between Britain and America.
64358
64359 * ''[[Making History]]'' (1996) by British actor, comedian and novelist [[Stephen Fry]] is set in a [[parallel world]] in which [[Adolf Hitler]] was never conceived, let alone born.
64360
64361 * ''[[For Want of a Nail]]'' (1973) by American business historian [[Robert N. Sobel]] - details a world in which the [[American Revolution]] failed. The British colonies become the Confederation of North America (CNA), while the defeated rebels go into exile in Spanish Tejas, eventually founding the United States of Mexico (USM) - a bitter rival to the CNA. The gigantic [[multinational corporation]] Kramer Associates, originally from Mexico but later based in [[Taiwan]], is the third world power, and the first power to detonate an [[atomic bomb]]. This book is of particular interest because it is written in the format of a standard popular history, complete with footnotes and discussions of differing historical interpretations, and for the fact that for many years, at least one major municipal library (the Denver Public Library) had this book filed in its history collection rather than as fiction.
64362
64363 * ''[[The Domination]]'' by [[S. M. Stirling]] - after the [[United States]] conquers [[Canada]] in the [[War of 1812]], the Loyalists move to [[South Africa]], where they join with the [[Boers]] to set up a [[slavery]]-based empire called the Domination of the [[Draka]]. The story tells of the struggle between the Domination and the [[free world]]. As the Draka come to dominate the world, they create a superhuman race.
64364
64365 * ''Conquistador'' by S.M. Stirling - an interdimensional gateway is discovered in California, which gives access to an alternate Earth in which the empire of [[Alexander the Great]] flourished, and where Europeans never discovered America.
64366
64367 * ''[[Wild Cards]]'' edited by [[George R. R. Martin]] - A series of collaborations based on the premise that an [[alien race]] released a virus just after the WWII that gave some people [[superpower]]s and others terrible deformities.
64368
64369 * ''[http://www.baen.com/library/0671319728/0671319728.htm 1632]'' by [[Eric Flint]] - (found online at the [[Baen Free Library|Baen Books free library]] in various ebook formats.) Its sequels, starting with ''[http://www.webscription.net/10.1125/Baen/0743435427/0743435427.htm 1633]'' are available for sale. A series based on the premise that an entire modern [[West Virginia]] town is transported in time and space to Germany during the [[Thirty Years War]].
64370
64371 *''Rivers of War'' by [[Eric Flint]] is an alternate history of the American frontier. It posits that [[Sam Houston]] was not injured at the beginning of the War of 1812, and substantially revises the history of the [[Trail of Tears]].
64372
64373 * ''1945'' by [[Newt Gingrich]] and [[William R. Forstchen]] assumes that the Germans perfected long-range [[jet aircraft]] by the end of [[World War II]] and conducted successful raids in North America against the US nuclear program.
64374
64375 * ''The Probability Broach'' by [[L. Neil Smith]] One single word in the [[Declaration of Independence]] differs and the US becomes the North American Confederation, a [[libertarian]] society. In the present some scientist will invent the Probability Broach and make contact with other universes.
64376 **''The Venus Belt''
64377 **''Their Majesties' Bucketeers''
64378 **''The Nagasaki Vector''
64379 **''Tom Paine Maru''
64380 **''The Gallatin Divergence''
64381
64382 *''The Indians Won'' (ISBN 0843910127) by [[Martin Cruz Smith]] imagines that the [[Native Americans (U.S.)|Native Americans]] had won the [[Indian Wars|Indian wars]] and kept their land.
64383
64384 * ''The Coming of the Demons'' by [[Gwenyth Hood]] imagines if the execution of [[Conradin|Conradin Hohenstaufen]] in Naples on [[October 29]], [[1268]] was averted by the arrival of the Pelezitereans, exiled alien wanderers from another galaxy, seeking an uninhabited planet on which to reestablish their advanced culture.
64385
64386 * ''[[1901]]'' by [[Robert Conroy]] depicts a hypothetical war between Germany and the United States at the start of [[William McKinley]]'s second term as President.
64387
64388 *[[Mamoru Oshii]]'s [[manga]] ''Kerebos'', a.k.a ''Hellhounds Panzer Cops'' in the United States, and the [[film]] [[Jin-Roh: The Wolf Brigade]], both of which take place in a 1960's Japan that was defeated and occupied by the Germans.
64389
64390 * [[Kim Stanley Robinson]]'s ''[[The Years of Rice and Salt]]'' imagines a world in which [[the Black Death]] of the 14th century kills 99% of the people in Europe. Over the next seven centuries, [[China]] and the [[Islamic world]] come to dominate the planet as they colonize a North America whose native peoples have all united in the Hodenosaunee League under the [[Iroquois]], clash in India (a place of many scientific innovations), and the Muslims resettle a depopulated Europe.
64391
64392 * [[Robert Silverberg]]'s ''[[Roma Eterna]]'' is set in a world where the [[Red Sea]] did not part before [[Moses]]. As a result, the [[Roman Empire]] grew and prospered without the influence of [[Christianity]]. The novel is a series of short stories set in the same alternate history, up to [[2000|2753]] [[ab urbe condita|AUC]].
64393
64394 * [[Terry Pratchett]]'s ''[[Strata (novel)|Strata]]'' is set in a world where [[Remus]] won the right to name the city and not [[Romulus]]. As a result, the [[Roman Empire]] is known as the ''Remen empire''. Other changes result from this.
64395
64396 * [[John M. Ford]]'s ''[[The Dragon Waiting]]'' is set in a Europe where the Emperor Julian lived long enough to re-establish paganism in the Roman Empire.
64397
64398 * ''[[The Shadow of the Lion]]'' and ''[[This Rough Magic]]'', a collaboration between [[Mercedes Lackey]], [[Eric Flint]] and [[Dave Freer]], is set in a renaissance Europe where the [[Library of Alexandria]] was not destroyed by a Christian mob and the now sainted [[Hypatia of Alexandria]] and [[John Chrysostom]] shaped religious thought, significantly altering how the Church developed. The novels center around the [[Republic of Venice]].
64399
64400 * The [[Belisarius series]] of novels by [[David Drake]] and [[Eric Flint]] take place when opposing factions from the future influence early times through intermediaries for their own purposes: the 'good' side operating through the [[Byzantine Empire|Byzantine]] general [[Belisarius]] and the 'evil' side operating through the Indian state of [[Malwa]].
64401
64402 * [[Michael Moorcock]]'s ''[[The Nomad of the Time-Streams]]'' trilogy (aka ''The Nomad of Time''), a series of novels featuring a grown-up version of [[E. Nesbit]]'s [[Oswald Bastable]] (from [[The Treasure Seekers]] and other books) who experiences a variety of alternate realities that have diverged from his own time-line.
64403 **''The War Lord of the Air''
64404 **''The Land Leviathan''
64405 **''The Steel Tsar''
64406
64407 == Online alternate histories ==
64408
64409 ''[[soc.history.what-if]]'' is a [[Usenet]] [[newsgroup]] devoted to discussing alternate histories. This newsgroup has spawned a number of interesting alternate timelines, including an online [[role playing game]] which has run continuously since [[2000]] called SHWI-ISOT with a [[POD]] in [[1800]] and in which the characters are based on the players being sent from the 21st century back to an alternate early 19th Century, where they have started altering history. The concept was inspired by [[S.M. Stirling]]'s &quot;Island on the Sea of Time&quot; books.
64410
64411 In online alternate history, the timeline is usually referred to by the abbreviation ''ATL'' (Alternate Time Line), as contrasted with ''OTL'' (Our Time Line) which refers to real history.
64412
64413 * ''[http://www.butteredcat.com/ 1933]'' an alternative view of the 20th century post-1933 in which [[Adolf Hitler]] succeeds in creating an alliance between Nazi Germany and the British Empire resulting in the invasion and conquests of France and the Soviet Union, and the resulting long and prolonged cold war between the Anglo-German alliance and the United States.
64414
64415 * ''[http://www.alternatehistory.com/foralltime/ For All Time]'' (&quot;President Chester A. Arthur&quot; or Mike Davis) is a [[dystopia]]n post-WWII scenario resulting from the death of Roosevelt shortly after the [[attack on Pearl Harbor]], featuring horrific three-way [[race riot]]s in the [[United States]] between white, black and Jewish gangs, and frequent usage of [[nuclear weapon]]s around the world.
64416
64417 * ''[http://www.shatteredworld.net Shattered World]'' (Bobby Hardenbrook) is a devastating alternate [[World War II]], resulting from a [[Soviet Union|Soviet]] invasion of [[Poland]] in [[1937]]. The timeline currently continues up to the autumn of [[1948]]. Some terminology is clearly inspired by [[The Domination]], as there is an &quot;Alliance for Democracy&quot; (which however does not include the United States) and a &quot;Eurasian War&quot;, which is an Axis-Soviet war which precedes the main World War II.
64418
64419 * ''[http://www.geocities.com/wmlives/ALB1.html A Loose Bandage]'' (Beck Reilly) is an alternate 20th century following the failed assassination of [[William McKinley]].
64420
64421 * ''[http://www.geocities.com/drammos/sealion1.html Sealion Fails]'' (Steven Rogers) is an alternate World War II in which Germany invades England, but the invasion is defeated.
64422
64423 * ''[http://www.quarryhouse.free-online.co.uk/ed/ASHATW.htm A Shot Heard Around the World]'' (Ed Thomas) follows from the [[assassin]]ation of the [[Prince of Wales]] in [[1900]] (who in OTL became King [[Edward VII of the United Kingdom|Edward VII]]), preventing the [[Entente Cordiale]]. Without Britain as an ally France and Russia are easily defeated by the [[Central Powers]]. After the war [[Charles de Gaulle]] seizes power in France, and plans a war of vengeance against the Germans.
64424
64425 * ''[http://www.angelfire.com/gundam/japanese_empire/ Dai Nippon Teikoku: An Alternate History]'' is a history of a Japan which loses its territories on the Asian mainland in a war with the [[Soviet Union]]. As a result, Japan never goes to war with the [[United States]], and thus retains [[Karafuto]] and [[Micronesia]].
64426
64427 * ''[http://www.alternatehistory.com/decadesofdarkness/ Decades of Darkness]'' (&quot;Kaiser Wilhelm III&quot;) suggests the early death of President [[Thomas Jefferson]] leading to the secession of [[New England]], resulting in a [[United States|United States of America]] dominated by [[slavery|slave owners]].
64428
64429 * ''[http://www.kebe.com/for-all-nails/ For All Nails]'' is an ongoing, collaborative online continuation of ''For Want of a Nail'', which ended in [[1971]], the year the book had been written. The authors believed the world depicted at the end of ''For Want of a Nail'' was an unpleasant one &amp;#8212; hence the name inspired by Chet's ''For All Time''.
64430
64431 * ''[http://www.clockworksky.net/puritan_world/ah_pw_top.html Puritan World]'' (Tony Jones). A different [[English Civil War]] results in a much earlier and much nastier [[American Revolution]]. Britain never becomes a world power. By 1996, the New Commonwealth, a [[totalitarianism|totalitarian]] [[Puritan]] [[theocracy]] controlling all of North America, Britain, Australia and most of Japan, has recently begun a [[world war]] against the combined European powers of the Octuple Alliance.
64432
64433 * ''[[Ill Bethisad]]'' is an ongoing, collaborative project with currently ca. 45 participants, originally created by [http://hobbit.griffler.co.nz/ Andrew Smith] from [[New Zealand]].
64434
64435 * ''[http://shwi.alternatehistory.com/Mr%20Hughes%20Goes%20to%20War.txt Mr. Hughes Goes to War]'' An alternate history where [[Charles Evans Hughes]] is elected [[President of the United States]] in [[1916]]
64436
64437 * ''[http://www2.gilemon.com:8080/mediawiki/index.php/Main_Page WikiDusk]'' is an Open Source novel - Wiki-editable - where on [[December 27]] [[2004]], a [[Starquake (star)|huge explosion halfway across the galaxy]] had packed even more power. [http://www.space.com/scienceastronomy/050718_star_quake.html]
64438
64439 [[Eric Flint]]'s rare policy of supporting [[fanfiction]] based on his [[1632 (novel)|1632 novel]] universe has created a vibrant forum section at [[Baen's Bar]], discussing the consequences of an event in which the fictional modern American town is transported back in time into the middle of the [[Thirty Years' War]], in the German province of [[Thuringia]].
64440
64441 ==Further Reading==
64442
64443 *Chapman, Edgar L., and Carl B. Yoke (eds.). ''Classic and Iconoclastic Alternate History Science Fiction''. Mellen, [[2003]]
64444 *Collins, William Joseph. ''Paths Not Taken: The Development, Structure, and Aesthetics of the Alternative History''. University of California at Davis [[1990]]
64445 *Gevers, Nicholas. ''Mirrors of the Past: Versions of History in Science Fiction and Fantasy''. University of Cape Town, [[1997]]
64446 *Hellekson, Karen. ''The Alternate History: Refiguring Historical Time''. [[Kent State University]] Press, [[2001]]
64447 *McKnight, Edgar Vernon, Jr. Alternative History: The Development of a Literary Genre. University of North Carolina at Chapel Hill [[1994]]
64448 *Snider, Adam. &quot;Thinking Sidewise: Tips for building an Alternate History collection&quot;. ''School Library Journal'' April [[2004]][http://www.schoollibraryjournal.com/article/CA406675]
64449
64450 ==See also==
64451 * [[Parallel universe (fiction)]]
64452 * [[Virtual history]]
64453 * [[Invasion literature]]
64454 * [[Time travel in fiction]]
64455
64456 ==External links==
64457
64458 *[http://groups-beta.google.com/group/soc.history.what-if soc.history.what-if] is the [[usenet]] [[newsgroup]] on alternate history
64459 *[http://games.groups.yahoo.com/group/SHWI-ISOT/ SHWI-ISOT] is an online [[Role playing game|RPG]] set in an alternate early 19th Century where people from the early 21st Century have been sent back and are altering history
64460 *[http://www.shadesofblack.org/wikisot/index.php?title=Main_Page WIKISOT] is the wiki record of history and events for the SHWI-ISOT online [[Role playing game|RPG]]
64461 *[http://www.uchronia.net/ Uchronia] has a good [http://www.uchronia.net/intro.html introduction to the topic], and lists over 2000 works of alternate history.
64462 *[http://www.alternatehistory.com/discussion Alternate History Discussion] is a moderated forum devoted to discussing alternate history.
64463 *[http://www.uchronia.net/sidewise The Sidewise Award for Alternate History] lists all the winners and nominees for the award since its inception and provides information for recommending works for consideration.
64464 *[http://althistory.blogspot.com/ Today in Alternate History], a daily-updated blog, featuring &quot;Important Events In History That Never Occurred Today&quot; in several recurring timelines.
64465 *[http://www.othertimelines.com/ This Day in Alternate History], not to be confused with the above.
64466 *[http://www.histalt.com/ Histalt.com] is author [[Richard J. (Rick) Sutcliffe]]'s collection of Alternate History links.
64467 *[http://www.paulkincaid.co.uk/article04.htm &quot;How to change the world&quot; - on Alternative histories]
64468 *[http://groups.yahoo.com/group/alternate-history mailing list about Alternate History]
64469 *[http://althistory.wikicities.com/wiki/Main_Page The Alternate History Wiki]
64470 *[http://www.johnreilly.info/althis.htm John Reilly's Alternative History]
64471 *[http://www.changingthetimes.net/ Changing The Times], is an Alternate History Electronic Magazine written and maintained by Alternate Historians.
64472 *[http://www.giampietrostocco.it/english.html Giampietro Stocco's thinking counterfactual], an Italian uchronic novelist's English homepage.
64473
64474 [[Category:Science fiction themes]]
64475 [[Category:Alternate history| ]]
64476 [[Category:Science fiction genres]]
64477
64478 [[bg:АĐģŅ‚ĐĩŅ€ĐŊĐ°Ņ‚ивĐŊĐ° иŅŅ‚ĐžŅ€Đ¸Ņ]]
64479 [[cs:Alternativní historie]]
64480 [[de:Alternativweltgeschichte]]
64481 [[es:Ucronía]]
64482 [[fr:Uchronie]]
64483 [[it:Ucronia]]
64484 [[no:Kontrafaktisk historie]]
64485 [[nl:Alternatieve geschiedenis]]
64486 [[pl:Historia alternatywna]]
64487 [[sv:Alternativvärld Historia]]--&gt;</text>
64488 </revision>
64489 </page>
64490 <page>
64491 <title>Audiogalaxy</title>
64492 <id>1204</id>
64493 <revision>
64494 <id>40100111</id>
64495 <timestamp>2006-02-18T03:16:22Z</timestamp>
64496 <contributor>
64497 <ip>66.71.60.92</ip>
64498 </contributor>
64499 <comment>deleted &quot;Joan Baez&quot; you stupid losers</comment>
64500 <text xml:space="preserve">[[Image:AGSatellite609.png|thumb|300px|Audiogalaxy Satellite 0.609]]
64501
64502 '''Audiogalaxy''' was a [[file sharing]] system located at http://www.audiogalaxy.com/ that indexed [[MP3]] files. Founded by [[Michael Merhej]] and sporting a web-based [[search engine]], always-on searching for requested files, auto-resume and low system impact, it quickly gained ground among file sharers abandoning [[Napster]] in [[2001]]. Some observing the previous downfall of Napster via lawsuit were shocked at the design of Audiogalaxy, which was in some ways more centralized than Napster.
64503
64504 *&quot;I don't get it- why do you guys still come here? lol&quot;- Famous quote by Michael Merhej who posted on the GD board!!!
64505
64506 * In May of 2001, Audiogalaxy implemented &quot;groups&quot; which allowed group members to send songs to everyone in the group. Clever hackers used this backdoor to circumvent the &quot;blocked songs&quot; restriction, where Audiogalaxy could deny transfer of specific copyrighted songs.
64507
64508 * For those curious, here is how blocked songs could be downloaded, Not quite &quot;hacking&quot; but a clever workaround:
64509 &quot;You need 2 accounts, so sign up for a second if you only have one.
64510 create a group with your 1st a/c and get your 2nd a/c to join it,
64511 go into your 2nd a/c &amp; click the song with the X you want 2 download,
64512 it will tell you its copyrighted
64513 look at the url in the address bar &amp; take note of the numbers at the end,
64514 paste this into the address bar &amp; add the numbers (and go to that url):
64515 http://www.audiogalaxy.com/groups/sendSong.php?&amp;g=
64516 click send to group
64517 go back into your 1st a/c &amp; run the satellite
64518 the copyrighted song will start downloading!&quot;
64519
64520 * On [[May 9]], [[2002]], Audiogalaxy required songs to be in the sender's shared folder to be sent. Previously, one could send any song to anyone by editing the [[Common Gateway Interface|CGI]] parameters. This protection was quickly defeated by creating a &quot;dummy&quot; file in one's shared folder, and sending a song with the same name -- due to Audiogalaxy's [[checksum]] [[hash function|hashing]], the correct file was always sent despite the dummy.
64521
64522 * Even though Audiogalaxy claimed that they were trying to cooperate with the [[music industry]] and block [[copyright]]ed songs from their network, they continued to offer illegal MP3s and were sued by [[RIAA]], on [[May 24]], [[2002]]. On this day, Audiogalaxy blocked sending of all blocked songs.
64523
64524 * On [[June 17]], [[2002]], Audiogalaxy reached an [[out-of-court settlement]] with the RIAA. The settlement reached would allow Audiogalaxy to operate a &quot;filter-in&quot; system, which required that for any music available, the songwriter, music publisher, and/or recording company must first consent to the use and sharing of the work.
64525
64526 * On [[September 8]], [[2002]], Audiogalaxy licensed and re-branded a for-pay streaming service called ''[[Rhapsody (online music service)|Rhapsody]]'' from [[Listen.com]] and discontinued its famous web-based P2P service.
64527
64528 * On [[December 25]], [[2002]], Martin Rieder wrote a preliminary form of a database-backed backwards-compatible Audiogalaxy server, dubbed OpenAG Server.
64529
64530
64531
64532 Audiogalaxy's stated mission was to facilitate sharing of music, though much more appears to have grown from its legacy. It was notable for its strong community due to such features as chat-enabled groups and per-artist [[internet forum]]s. Although music is no longer shared, some message boards are still moderately active. Some of the more active forums include the Radiohead, Rush, and General Discussion boards.
64533
64534 Files of any type could easily be shared via Audiogalaxy by renaming a file in a certain way. For example, cdrwin37.zip would be shared by renaming it to cdrwin37&lt;space&gt;zip&lt;space&gt;.mp3
64535
64536
64537 In August 2005, an imitation Audiogalaxy site was set up for discussion boards:
64538 http://www.agelesscommunity.com
64539 == External links ==
64540 *[http://www.riaa.com/PR_story.cfm?id=522 RIAA, NMPA Reach Settlement With Audiogalaxy.com]
64541 *[http://www.audiogalaxy.com/getRhapsody Audiogalaxy's Rhapsody service:]
64542 *[http://web.archive.org/web/20041128094621/http://www.kuro5hin.org/story/2002/6/21/171321/675 R.I.P Audiogalaxy] - Kennon Ballou's story of Audiogalaxy (an Audiogalaxy programmer) - Now on web.archive.org
64543
64544
64545
64546
64547 [[Category:File sharing networks]]
64548 [[Category:File sharing programs]]
64549 [[Category:Virtual communities]]
64550
64551 [[de:Audiogalaxy]]
64552 [[es:Audiogalaxy]]
64553 [[fr:Audiogalaxy]]
64554 [[pt:Audiogalaxy]]</text>
64555 </revision>
64556 </page>
64557 <page>
64558 <title>Atomic orbitals</title>
64559 <id>1205</id>
64560 <revision>
64561 <id>15899701</id>
64562 <timestamp>2004-12-18T04:35:48Z</timestamp>
64563 <contributor>
64564 <username>Smack</username>
64565 <id>10888</id>
64566 </contributor>
64567 <comment>#REDIRECT [[Atomic orbital]]</comment>
64568 <text xml:space="preserve">#REDIRECT [[Atomic orbital]]</text>
64569 </revision>
64570 </page>
64571 <page>
64572 <title>Atomic orbital</title>
64573 <id>1206</id>
64574 <revision>
64575 <id>41797829</id>
64576 <timestamp>2006-03-01T20:45:43Z</timestamp>
64577 <contributor>
64578 <username>Karol Langner</username>
64579 <id>60759</id>
64580 </contributor>
64581 <comment>wikilink</comment>
64582 <text xml:space="preserve">[[Image:Electron orbitals.png|right|thumb|350px|[[Electron]] atomic and [[molecular orbital|molecular]] orbitals]]
64583
64584 '''Atomic orbitals''' are the [[quantum state]]s of the individual electrons in the [[electron cloud]] around a single atom. Classically, the atomic orbitals can be thought of as similar to the orbits of the planets around the Sun. However, it is important to note that the atomic orbitals cannot actually be described classically. In fact, explaining the behaviour of the electrons that orbit an atom was one of the driving forces behind quantum mechanics. In quantum mechanics, the atomic orbitals are the quantum states that electrons surrounding an atom may exist in. These can be described as a [[wave function]] over space, as shown in the diagram on the right, by the ''n'', ''l'', and ''m'' [[quantum numbers]] of the orbital, or by the names of the orbitals, as used in [[electron configuration]]s.
64585
64586 == Historical Background ==
64587
64588 See the article [[atomic orbital model]] for details on how the current model of atomic orbitals was developed. This article also gives a less technical description of the model.
64589
64590 == Formal Quantum Mechanical Definition ==
64591
64592 In [[quantum mechanics]], the state of an atom, i.e. the [[eigenstate]]s of the atomic [[Hamiltonian (quantum mechanics)|Hamiltonian]], are expanded (see [[configuration interaction]] expansion and [[basis (linear algebra)]]) into [[linear combination]]s of anti-symmetrized products ([[Slater determinant]]s) of one-[[electron]] functions. The spatial components of these one-electron functions are called '''atomic orbitals'''. (When one considers also their [[spin (physics) | spin]] component, one speaks of '''atomic spin orbitals'''.)
64593
64594 In [[atomic physics]], the [[atomic spectral line]]s correspond to transitions ([[quantum leap]]s) between [[quantum state]]s of an [[atom]]. These states are labelled by a set of [[quantum number]]s summarized in the [[term symbol]] and usually associated to particular [[electron configuration]]s, i.e. by occupations schemes of '''atomic orbitals''' (e.g. &lt;math&gt;1s^2 2s^2 2p^6 &lt;/math&gt; for the ground state of [[neon]] -- term symbol: &lt;math&gt;{}^1S_0&lt;/math&gt;). This notation means that the corresponding [[Slater determinant]]s have a clear higher weight in the [[configuration interaction]] expansion. The atomic orbital concept is therefore a key concept for visualizing the excitation process associated to a given transition. One can say for example for a given transition that it corresponds to the excitation of an electron from an occupied orbital to a given unoccupied orbital. Nevertheless one has to keep in mind that electrons are [[fermion]]s ruled by [[Pauli exclusion principle]] and cannot be distinguished from the other electrons in the atom. Moreover, it sometimes happens that the configuration interaction expansion converges very slowly and that one cannot speak about simple one-determinantal wave function at all. This is the case when [[electron correlation]] is large.
64595
64596 == Hydrogen-like atoms ==
64597 {{main|Hydrogen-like atom}}
64598
64599 The simplest atomic orbitals are those that occur in an atom with a single electron, such as the [[hydrogen atom]]. In this case the atomic orbitals are the eigenstates of the hydrogen Hamiltonian. They can be obtained analytically (see [[Hydrogen atom]]). An atom of any other element [[ion]]ized down to a single electron is very similar to hydrogen, and the orbitals take the same form.
64600
64601 For atoms with two or more electrons, the governing equations can only be solved with the use of methods of iterative approximation. Orbitals of multi-electron atoms are ''qualitatively'' similar to those of hydrogen, and in the simplest models, they are taken to have the same form. For more rigorous and precise analysis, the numerical approximations must be used.
64602
64603 A given (hydrogen-like) atomic orbital is identified by unique values of three [[quantum number]]s: [[Principal quantum number|''n'']], [[Azimuthal quantum number|''l'']], and [[magnetic quantum number|''m&lt;sub&gt;l&lt;/sub&gt;'']]. The rules restricting the values of the quantum numbers, and their energies (see below), explain the [[electron configuration]] of the atoms and the [[periodic table]].
64604
64605 The stationary states ([[quantum state]]s) of the hydrogen-like atoms are its atomic orbital. However, in general, an electron's behavior is not fully described by a single orbital. Electron states are best represented by time-depending &quot;mixtures&quot; ([[linear combination]]s) of multiple orbitals. See [[Linear combination of atomic orbitals molecular orbital method]].
64606
64607 The quantum number ''n'' first appeared in the [[Bohr model]]. It determines, among other things, the distance of the electron from the nucleus; all electrons with the same value of ''n'' lay at the same distance. Modern quantum mechanics confirms that these orbitals are closely related. For this reason, orbitals with the same value of ''n'' are said to comprise an &quot;[[electron shell|shell]]&quot;. Orbitals with the same value of ''n'' and also the same value of ''l'' are even more closely related, and are said to comprise a &quot;[[electron subshell|subshell]]&quot;.
64608
64609 == Qualitative characterization ==
64610
64611 === Limitations on the quantum numbers ===
64612
64613 An atomic orbital is uniquely identified by the values of the three quantum numbers, and each set of the three quantum numbers corresponds to exactly one orbital, but the quantum numbers only occur in certain combinations of values. The rules governing the possible values of the quantum numbers are as follows:
64614
64615 The [[principal quantum number]] ''n'' is always a [[positive integer]]. In fact, it can be any positive integer, but for reasons discussed below, large numbers are seldom encountered. Each atom has, in general, many orbitals associated with each value of ''n''; these orbitals together are sometimes called a ''[[Electron shell|shell]]''.
64616
64617 The [[azimuthal quantum number]] &lt;math&gt;\ell&lt;/math&gt; is a non-negative integer. Within a shell where ''n'' is some integer ''n''&lt;sub&gt;0&lt;/sub&gt;, &lt;math&gt;\ell&lt;/math&gt; ranges across all (integer) values satisfying the relation &lt;math&gt;0 \le \ell \le n_0-1&lt;/math&gt;. For instance, the ''n'' = 1 shell has only orbitals with &lt;math&gt;\ell=0&lt;/math&gt;, and the ''n'' = 2 shell has only orbitals with &lt;math&gt;\ell=0&lt;/math&gt;, and &lt;math&gt;\ell=1&lt;/math&gt;. The set of orbitals associated with a particular value of &lt;math&gt;\ell&lt;/math&gt; are sometimes collectively called a ''subshell''.
64618
64619 The [[magnetic quantum number]] &lt;math&gt;m_\ell&lt;/math&gt; is also always an integer. Within a subshell where &lt;math&gt;\ell&lt;/math&gt; is some integer &lt;math&gt;\ell_0&lt;/math&gt;, &lt;math&gt;m_\ell&lt;/math&gt; ranges thus: &lt;math&gt;-\ell_0 \le m_\ell \le \ell_0&lt;/math&gt;.
64620
64621 The above results may be summarized in the following table. Each cell represents a subshell, and lists the values of &lt;math&gt;m_\ell&lt;/math&gt; available in that subshell. Empty cells represent subshells that do not exist.
64622
64623 {| class=&quot;wikitable&quot;
64624 |-
64625 !
64626 ! &lt;math&gt;l=0&lt;/math&gt;
64627 ! 1
64628 ! 2
64629 ! 3
64630 ! 4
64631 ! ...
64632 |-
64633 ! &lt;math&gt;n=1&lt;/math&gt;
64634 | &lt;math&gt;m_l=0&lt;/math&gt;
64635 | || || || ||
64636 |-
64637 ! 2
64638 | 0 || -1, 0, 1
64639 | || || ||
64640 |-
64641 ! 3
64642 | 0 || -1, 0, 1 || -2, -1, 0, 1, 2
64643 | || ||
64644 |-
64645 ! 4
64646 | 0 || -1, 0, 1 || -2, -1, 0, 1, 2 || -3, -2, -1, 0, 1, 2, 3
64647 | ||
64648 |-
64649 ! 5
64650 | 0 || -1, 0, 1 || -2, -1, 0, 1, 2 || -3, -2, -1, 0, 1, 2, 3 || -4, -3, -2 -1, 0, 1, 2, 3, 4
64651 |
64652 |-
64653 ! ...
64654 | ... || ... || ... || ... || ... || ...
64655 |}
64656
64657 Subshells are usually identified by their &lt;math&gt;n&lt;/math&gt;- and &lt;math&gt;\ell&lt;/math&gt;-values. &lt;math&gt;n&lt;/math&gt; is represented by its numerical value, but &lt;math&gt;\ell&lt;/math&gt; is represented by a letter as follows: 0 is represented by 's', 1 by 'p', 2 by 'd', 3 by 'f', and 4 by 'g'. For instance, one may speak of the subshell with &lt;math&gt;n=2&lt;/math&gt; and &lt;math&gt;\ell=0&lt;/math&gt; as a '2s subshell'.
64658
64659 === The shapes of orbitals ===
64660
64661 Any discussion of the shapes of electron orbitals is necessarily imprecise, because a given electron, regardless of which orbital it occupies, can at any moment be found at any distance from the nucleus and in any direction due to the [[Uncertainty Principle]].
64662
64663 However, the electron is much more likely to be found in certain regions of the atom than in others. Given this, a ''boundary [[surface]]'' can be drawn so that the electron has a high probability to be found anywhere within the surface, and all regions outside the surface have low values. The precise placement of the surface is arbitrary, but any reasonably compact determination must follow a pattern specified by the behavior of &lt;math&gt;\psi^2&lt;/math&gt;, the square of the wavefunction. This boundary surface is what is meant when the &quot;shape&quot; of an orbital is mentioned.
64664
64665 Generally speaking, the number &lt;math&gt;n&lt;/math&gt; determines the size and energy of the orbital: as &lt;math&gt;n&lt;/math&gt; increases, the size of the orbital increases.
64666
64667 Also in general terms, &lt;math&gt;\ell&lt;/math&gt; determines an orbital's shape, and &lt;math&gt;m_\ell&lt;/math&gt; its orientation. However, since some orbitals are described by equations in [[complex number]]s, the shape sometimes depends on &lt;math&gt;m_\ell&lt;/math&gt; also. &lt;math&gt;s&lt;/math&gt;-orbitals (&lt;math&gt;\ell=0&lt;/math&gt;) are shaped like spheres. &lt;math&gt;p&lt;/math&gt;-orbitals have the form of two [[ellipsoid]]s with a [[point of tangency]] at the [[atomic nucleus|nucleus]] (sometimes referred to as a dumbbell). The three &lt;math&gt;p&lt;/math&gt;-orbitals in each shell are oriented at right angles to each other, as determined by their respective values of &lt;math&gt;m_\ell&lt;/math&gt;.
64668
64669 Four of the five &lt;math&gt;d&lt;/math&gt;-orbitals look similar, each with four pear-shaped balls, each ball tangent to two others, and the centers of all four lying in one plane, between a pair of axes. Three of these planes are the &lt;math&gt;xy&lt;/math&gt;-, &lt;math&gt;xz&lt;/math&gt;-, and &lt;math&gt;yz&lt;/math&gt;-planes, and the fourth has the centres on the &lt;math&gt;x&lt;/math&gt; and &lt;math&gt;y&lt;/math&gt; axes. The fifth and final &lt;math&gt;d&lt;/math&gt;-orbital consists of three regions of high probability density: a [[torus]] with two pear-shaped regions placed symmetrically on its &lt;math&gt;z&lt;/math&gt; axis.
64670
64671 == Orbital energy ==
64672
64673 In atoms with a single electron (essentially the [[hydrogen atom]]), the energy of an orbital (and, consequently, of any electrons in the orbital) is determined exclusively by &lt;math&gt;n&lt;/math&gt;. The &lt;math&gt;n=1&lt;/math&gt; orbital has the lowest possible energy in the atom. Each successively higher value of &lt;math&gt;n&lt;/math&gt; has a higher level of energy, but the difference decreases as &lt;math&gt;n&lt;/math&gt; increases. For high &lt;math&gt;n&lt;/math&gt;, the level of energy becomes so high that the electron can easily escape from the atom.
64674
64675 In atoms with multiple electrons, the energy of an electron depends not only on the intrinsic properties of its orbital, but also on its interactions with the other electrons. These interactions depend on the detail of its spatial probability distribution, and so the [[energy level]]s of orbitals depend not only on &lt;math&gt;n&lt;/math&gt; but also on &lt;math&gt;\ell&lt;/math&gt;. Higher values of &lt;math&gt;\ell&lt;/math&gt; are associated with higher values of energy; for instance, the 2''p'' state is higher than the 2''s'' state. When &lt;math&gt;\ell&lt;/math&gt; = 3, the increase in energy of the orbital becomes so large as to push the energy of orbital above the energy of the ''s''-orbital in the next higher shell; when &lt;math&gt;\ell&lt;/math&gt; = 4 the energy is pushed into the shell two steps higher.
64676
64677 The energy order of the first 24 subshells is given in the following table. Each cell represents a subshell with &lt;math&gt;n&lt;/math&gt; and &lt;math&gt;\ell&lt;/math&gt; given by its row and column indices, respectively. The number in the cell is the subshell's position in the sequence. Empty cells represent subshells that either do not exist or stand farther down in the sequence.
64678
64679 {| class=&quot;wikitable&quot;
64680 |-
64681 !
64682 ! &lt;math&gt;s&lt;/math&gt;
64683 ! &lt;math&gt;p&lt;/math&gt;
64684 ! &lt;math&gt;d&lt;/math&gt;
64685 ! &lt;math&gt;f&lt;/math&gt;
64686 ! &lt;math&gt;g&lt;/math&gt;
64687 |-
64688 ! 1
64689 | 1 || || || ||
64690 |-
64691 ! 2
64692 | 2 || 3 || || ||
64693 |-
64694 ! 3
64695 | 4 || 5 || 7 || ||
64696 |-
64697 ! 4
64698 | 6 || 8 || 10 || 13 ||
64699 |-
64700 ! 5
64701 | 9 || 11 || 14 || 17 || 21
64702 |-
64703 ! 6
64704 |12 || 15 || 18 || 22 ||
64705 |-
64706 ! 7
64707 |16 || 19 || 23 || ||
64708 |-
64709 ! 8
64710 |20 || 24 || || ||
64711 |}
64712
64713 == Electron placement and the periodic table ==
64714
64715 Several rules govern the placement of electrons in orbitals (''[[electron configuration]]''). The first dictates that no two electrons in an atom may have the same set of values of quantum numbers (this is the [[Pauli exclusion principle]]). These quantum numbers include the three that define orbitals , as well as (the hitherto unmentioned) [[Spin quantum number|''s'']]. Thus, two electrons may occupy a single orbital, so long as they have different values of &lt;math&gt;s&lt;/math&gt;. However, ''only'' two electrons, because of their spin, can be associated with each orbital.
64716
64717 Additionally, an electron always tries to occupy the lowest possible energy state. It is possible for it to occupy any orbital so long as it does not violate the Pauli exclusion principle, but if lower-energy orbitals are available, this condition is unstable. The electron will eventually lose energy (by releasing a [[photon]]) and drop into the lower orbital. Thus, electrons fill orbitals in the order specified by the energy sequence given above.
64718
64719 This behavior is responsible for the structure of the [[periodic table]]. The table may be divided into several rows (called 'periods'), numbered starting with 1 at the top. The presently known elements occupy seven periods. If a certain period has number &lt;math&gt;i&lt;/math&gt;, it consists of elements whose outermost electrons fall in the &lt;math&gt;i&lt;/math&gt;th shell.
64720
64721 The periodic table may also be divided into several numbered rectangular 'blocks'. The elements belonging to a given block have this common feature: their highest-energy electrons all belong to the same &lt;math&gt;\ell&lt;/math&gt;-state (but the &lt;math&gt;n&lt;/math&gt; associated with that &lt;math&gt;\ell&lt;/math&gt;-state depends upon the period). For instance, the leftmost two columns constitute the 's-block'. The outermost electrons of Li and Be respectively belong to the 2s subshell, and those of Na and Mg to the 3s subshell.
64722
64723 The number of electrons in a neutral atom increases with the [[atomic number]]. The electrons in the outermost shell, or ''[[valence electron]]s'', tend to be responsible for an element's chemical behavior. Elements that contain the same number of valence electrons can be grouped together and display similar chemical properties.
64724
64725 ===See also===
64726
64727 * [[List of Hund's rules]]
64728 * [[Electron configuration]]
64729 * [[Atomic electron configuration table]]
64730 * [[Molecular orbital]]
64731 * [[Energy level]]
64732
64733 == External links ==
64734
64735 *[http://wps.prenhall.com/wps/media/objects/602/616516/Chapter_07.html Covalent Bonds and Molecular Structure]
64736 * [http://www.shef.ac.uk/chemistry/orbitron/ The Orbitron], a visualization of all common and uncommon atomic orbitals, from 1s to 7g
64737 * David Manthey's [http://www.orbitals.com/orb/index.html Orbital Viewer] renders orbitals with ''n''&amp;nbsp;&amp;le;&amp;nbsp;30
64738 * [http://www.falstad.com/qmatom/ Java orbital viewer applet]
64739
64740 == References ==
64741
64742 * Tipler, Paul &amp; Ralph Llewellyn (2003). ''Modern Physics'' (4th ed.). New York: W. H. Freeman and Company. ISBN 0-7167-4345-0
64743
64744 [[Category:Chemical bonding]]
64745 [[Category:Atomic physics]]
64746
64747 [[ca:Orbital atÃ˛mic]]
64748 [[de:Orbital]]
64749 [[es:Orbital atÃŗmico]]
64750 [[fa:اŲˆØąØ¨ÛŒØĒاŲ„]]
64751 [[fr:Orbitale atomique]]
64752 [[he:אורביטל]]
64753 [[nl:Orbitaal]]
64754 [[pl:Orbital]]
64755 [[pt:Orbital]]
64756 [[ru:АŅ‚ĐžĐŧĐŊĐ°Ņ ĐžŅ€ĐąĐ¸Ņ‚Đ°ĐģŅŒ]]
64757 [[sl:Orbitala]]
64758 [[fi:Orbitaali]]
64759 [[zh:原子čŊ¨é“]]</text>
64760 </revision>
64761 </page>
64762 <page>
64763 <title>Amino acid</title>
64764 <id>1207</id>
64765 <revision>
64766 <id>41581786</id>
64767 <timestamp>2006-02-28T07:43:10Z</timestamp>
64768 <contributor>
64769 <username>BorisTM</username>
64770 <id>198330</id>
64771 </contributor>
64772 <comment>129.130.214.183 and Atemperman, next time take the discussion to the [[Talk:Amino_acid|Amino acid talk page]]</comment>
64773 <text xml:space="preserve">In [[chemistry]], an '''amino acid''' is any [[molecule]] that contains both [[amino]] and [[carboxylic acid]] [[functional group|functional groups]]. In [[biochemistry]], this shorter and more general term is frequently used to refer to alpha amino acids: those amino acids in which the amino and carboxylate functionalities are attached to the same [[carbon]], the so-called [[alpha carbon|&amp;alpha;&amp;ndash;carbon]].
64774
64775 An '''amino acid residue''' is what is left of an amino acid once a molecule of [[water]] has been lost (an [[hydrogen ion|H&lt;sup&gt;+&lt;/sup&gt;]] from the nitrogenous side and an [[hydroxyl ion|OH&lt;sup&gt;-&lt;/sup&gt;]] from the carboxylic side) in the formation of a [[peptide bond]].
64776
64777 ==Overview==
64778 Amino acids are the basic structural building units of [[protein]]s. They form short [[polymer]] chains called [[peptide]]s or [[polypeptides]] which in turn form structures called [[protein]]s. The process of such formation is known as [[translation (biology)|translation]], which is part of [[protein synthesis]].
64779
64780 [[Image:Phe-stick.png|thumb|[[Phenylalanine]] is one of the standard amino acids.]]
64781
64782 Twenty amino acids are encoded by the standard [[genetic code]] and are called [[proteinogenic]] or '''standard amino acids'''.
64783 At least two others are also coded by DNA in a non-standard manner as follows:
64784
64785 * [[Selenocysteine]] is incorporated into some proteins at a UGA [[codon]], which is normally a stop codon.
64786 * [[Pyrrolysine]] is used by some [[methanogen]]s in [[enzyme]]s that they use to produce [[methane]]. It is coded for similarly to selenocysteine but with the codon UAG instead.
64787
64788 Other amino acids contained in proteins are usually formed by [[post-translational modification]], which is modification after translation in protein synthesis. These modifications are often essential for the function of the protein.
64789
64790 [[Proline]] is the only proteinogenic amino acid whose side group is cyclic and links to the a-amino group, forming a secondary amino group. Formerly, proline was misleadingly called an [[imino acid]].
64791
64792 Over one hundred amino acids have been found in nature. Some of these have been detected in [[meteorite]]s, especially in a type known as [[carbonaceous chondrite]]s. [[Microorganism]]s and [[plant]]s often produce very uncommon amino acids, which can be found in peptidic [[antibiotics]] (e.g., [[nisin]] or [[alamethicin]]). [[Lanthionine]] is a sulfide-bridged alanine dimer which is found together with [[saturation (chemistry)|unsaturated]] amino acids in [[lantibiotics]] (antibiotic peptides of microbial origin). [[1-Aminocyclopropane-1-carboxylic acid|1-Aminocyclopropane-1-carboxylic acid (ACC)]] is a small disubstituted cyclic amino acid and a key intermediate in the production of the plant [[hormone]] [[ethylene]].
64793
64794 In addition to protein synthesis, amino acids have other biologically-important roles. [[Glycine]] and [[glutamate]] are [[neurotransmitter]]s as well as standard amino acids in proteins. Many amino acids are used to synthesize other molecules, for example:
64795 * [[tryptophan]] is a precursor of the neurotransmitter [[serotonin]]
64796 * [[glycine]] is one of the reactants in the synthesis of [[porphyrins]] such as [[heme]].
64797
64798 Numerous non-standard amino acids are also biologically-important: [[Gamma-aminobutyric acid]] is another neurotransmitter, [[carnitine]] is used in [[lipid]] transport within a [[cell (biology)|cell]], [[ornithine]], [[citrulline]], [[homocysteine]], [[hydroxyproline]], [[hydroxylysine]], and [[sarcosine]].
64799
64800 Some of the 20 standard amino acids are called [[essential amino acid]]s because they cannot be [[synthesize]]d by the [[human body|body]] from other [[chemical compound|compound]]s through [[chemical reaction]]s, but instead must be taken in with food. In [[human]]s, the essential amino acids are [[lysine]], [[leucine]], [[isoleucine]], [[methionine]], [[phenylalanine]], [[threonine]], [[tryptophan]], [[valine]]. [[Histidine]] and [[arginine]] are generally considered essential only in children, because of their inability to synthesise them given their undeveloped metabolisms.
64801
64802 The phrase &quot;branched-chain amino acids&quot; is sometimes used to refer to the aliphatic amino acids: leucine, isoleucine and valine.
64803
64804 ==General structure==
64805
64806 The general structure of proteinogenic alpha amino acids is:
64807
64808 &lt;i&gt;R&lt;/i&gt;
64809 |
64810 H&lt;sub&gt;2&lt;/sub&gt;N-C-COOH
64811 |
64812 H
64813 Where &lt;i&gt;R&lt;/i&gt; represents a ''side chain'' specific to each amino acid. Amino acids are usually classified by the [[chemical property|properties]] of the side chain into four groups. The side chain can make them behave like a [[weak acid|weak]] [[acid]], a [[weak base|weak]] [[basic (chemistry)|base]], a [[hydrophile]], if they are [[polar molecule|polar]], and [[hydrophobe]] if they are [[nonpolar]].
64814
64815 ===Isomerism===
64816 Except for [[glycine]], where &lt;i&gt;R&lt;/i&gt; = H, amino acids occur in two possible [[optical isomerism|optical isomers]], called D and L. Using the newer [[Cahn Ingold Prelog priority rules]] for designating the configuration of optical isomers, the L isomer would assigned the letter S and the D isomer would be assigned the letter R. The L (or S) amino acids represent the vast majority of amino acids found in [[protein]]s. D (or R) amino acids are found in some proteins produced by exotic sea-dwelling organisms, such as [[cone snail]]s. They are also abundant components of the [[cell wall]]s of [[bacterium|bacteria]].
64817
64818 The L- and D- conventions for amino acid do not refer to their own optical activity, but rather to the optical activity of glyceraldehyde as an analogue of the amino acids. S-glyceraldehyde is levorotary, and R-glyceraldehyde is dexterorotary, and so S- amino acids are called &quot;L-&quot; even if they are not levorotary, and R- amino acids are likewise called &quot;D-&quot; even if they are not dexterorotary.
64819
64820 ==Reactions==
64821 Proteins are created by [[polymerization]] of amino acids by [[peptide bond]]s in a process called [[translation (biology)|translation]]. This [[condensation]] reaction yields the newly formed peptide bond and a molecule of water.
64822
64823 [[image:amino_acids_1.png|none|Peptide bond formation]]
64824 &lt;small&gt;&lt;center&gt;''Peptide bond formation&lt;br /&gt;1. Amino acid; 2, [[zwitterion]] structure; 3, two amino acids forming a peptide bond. (See also [[Chemical bond|bond]].)''&lt;/center&gt;&lt;/small&gt;
64825
64826 ==List of standard amino acids==
64827 ===Structures===
64828 Structures and symbols of the 20 amino acids present in genetic code.
64829
64830 &lt;gallery&gt;
64831 Image:L-Alanine.png|[[Alanine]] (Ala / A)
64832 Image:L-Arginine.png|[[Arginine]] (Arg / R)
64833 image:L-Asparagine.png|[[Asparagine]] (Asn / N)
64834 image:L-Aspartic Acid.png|[[Aspartic acid|Aspartic Acid]] (Asp / D)
64835 image:L-Cysteine.png|[[Cysteine]] (Cys / C)
64836 image:L-Glutamic Acid.png|[[Glutamic Acid]] (Glu / E)
64837 image:L-Glutamine.png|[[Glutamine]] (Gln / Q)
64838 image:Glycine2.png|[[Glycine]] (Gly / G)
64839 image:L-Histidine.png|[[Histidine]] (His / H)
64840 image:L-Isoleucine.png|[[Isoleucine]] (Ile / I)
64841 image:L-Leucine.png|[[Leucine]] (Leu / L)
64842 image:L-Lysine.png|[[Lysine]] (Lys / K)
64843 image:L-Methionine.png|[[Methionine]] (Met / M)
64844 image:L-Phenylalanine.png|[[Phenylalanine]] (Phe / F)
64845 image:L-Proline.png|[[Proline]] (Pro / P)
64846 image:L-Serine.png|[[Serine]] (Ser / S)
64847 image:L-Threonine.png|[[Threonine]] (Thr / T)
64848 image:L-Tryptophan.png|[[Tryptophan]] (Trp / W)
64849 image:L-Tyrosine.png|[[Tyrosine]] (Tyr / Y)
64850 image:L-Valine.png|[[Valine]] (Val / V)
64851 &lt;/gallery&gt;
64852
64853 ===Chemical properties===
64854 Following is a table listing the one letter symbols, the three-letter symbols, and the chemical properties of the side chains of the standard amino acids. The mass listed is the weighted average of all common isotopes, and includes the mass of H&lt;sub&gt;2&lt;/sub&gt;O. The one-letter symbol for an undetermined amino acid is ''X''. The three-letter symbol ''Asx'' or one-letter symbol ''B'' means the amino acid is either [[asparagine]] or [[aspartic acid]], whereas ''Glx'' or ''Z'' means either [[glutamic acid]] or [[glutamine]]. The three-letter symbol ''Sec'' or one-letter symbol ''U'' refers to [[selenocysteine]]. The letters ''J'' and ''O'' are not used.
64855
64856 {| border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
64857 |-
64858 ! colspan=&quot;2&quot; | Abbrev.
64859 ! Full Name
64860 ! Side chain type
64861 ! Mass
64862 ! [[Isoelectric point|pI]]
64863 ! [[dissociation constant|pK]]&lt;sub&gt;1&lt;/sub&gt;&lt;br&gt;(Îą-COOH)
64864 ! pK&lt;sub&gt;2&lt;/sub&gt;&lt;br&gt;(Îą-&lt;sup&gt;+&lt;/sup&gt;NH&lt;sub&gt;3&lt;/sub&gt;)
64865 ! pKr (R)
64866 ! Remarks
64867 |-
64868 | A
64869 | Ala
64870 | [[Alanine]]
64871 | [[hydrophobic]]
64872 | 89.09
64873 | 6.01
64874 | 2.35
64875 | 9.87
64876 |
64877 | Very abundant, very versatile. More stiff than glycine, but small enough to pose only small steric limits for the protein conformation. It behaves fairly neutrally, can be located in both hydrophilic regions on the protein outside and the hydrophobic areas inside.
64878 |-
64879 | C
64880 | Cys
64881 | [[Cysteine]]
64882 | hydrophobic (Nagano, 1999)
64883 | 121.16
64884 | 5.05
64885 | 1.92
64886 | 10.70
64887 | 8.18
64888 | The sulfur atom binds readily to [[heavy metals|heavy metal]] ions. Under oxidizing conditions, two cysteines can join together by a [[disulfide bond]] to form the amino acid [[cystine]]. When cystines are part of a protein, [[insulin]] for example, this enforces [[tertiary structure]] and makes the protein more resistant to unfolding and [[denaturation (biochemistry)|denaturation]]; disulphide bridges are therefore common in proteins that have to function in harsh environments, digestive enzymes (e.g., [[pepsin]] and [[chymotrypsin]]), structural proteins (e.g., [[keratin]]), and proteins too small to hold their shape on their own (eg. [[insulin]]).
64889 |-
64890 | D
64891 | Asp
64892 | [[Aspartic acid]]
64893 | [[acidic]]
64894 | 133.10
64895 | 2.85
64896 | 1.99
64897 | 9.90
64898 | 3.90
64899 | Behaves similarly to glutamic acid. Carries a hydrophilic acidic group with strong negative charge. Usually is located on the outer surface of the protein, making it water-soluble. Binds to positively-charged molecules and ions, often used in enzymes to fix the metal ion. When located inside of the protein, aspartate and glutamate are usually paired with arginine and lysine.
64900 |-
64901 | E
64902 | Glu
64903 | [[Glutamic acid]]
64904 | acidic
64905 | 147.13
64906 | 3.15
64907 | 2.10
64908 | 9.47
64909 | 4.07
64910 | Behaves similar to aspartic acid. Has longer, slightly more flexible side chain.
64911 |-
64912 | F
64913 | Phe
64914 | [[Phenylalanine]]
64915 | hydrophobic
64916 | 165.19
64917 | 5.49
64918 | 2.20
64919 | 9.31
64920 |
64921 | [[essential amino acid|Essential]] for humans. Phenylalanine, tyrosine, and tryptophan contain large rigid [[aromaticity|aromatic]] group on the side chain. These are the biggest amino acids. Like isoleucine, leucine and valine, these are hydrophobic and tend to orient towards the interior of the folded protein molecule.
64922 |-
64923 | G
64924 | Gly
64925 | [[Glycine]]
64926 | hydrophobic
64927 | 75.07
64928 | 6.06
64929 | 2.35
64930 | 9.78
64931 |
64932 | Because of the two hydrogen atoms at the Îą carbon, glycine is not [[optical isomerism|optically active]]. It is the tiniest amino acid, rotates easily, adds flexibility to the protein chain. It is able to fit into the tightest spaces, e.g., the triple helix of [[collagen]]. As too much flexibility is usually not desired, as a structural component it is less common than alanine.
64933 |-
64934 | H
64935 | His
64936 | [[Histidine]]
64937 | [[basic (chemistry)|basic]]
64938 | 155.16
64939 | 7.60
64940 | 1.80
64941 | 9.33
64942 | 6.04
64943 |In even slightly acidic conditions [[protonation]] of the nitrogen occurs, changing the properties of histidine and the polypeptide as a whole. It is used by many proteins as a regulatory mechanism, changing the conformation and behavior of the polypeptide in acidic regions such as the late [[endosome]] or [[lysosome]], enforcing conformation change in enzymes. However only a few histidines are needed for this, so it is comparatively scarce.
64944 |-
64945 | I
64946 | Ile
64947 | [[Isoleucine]]
64948 | hydrophobic
64949 | 131.17
64950 | 6.05
64951 | 2.32
64952 | 9.76
64953 |
64954 | [[essential amino acid|Essential]] for humans. Isoleucine, leucine and valine have large aliphatic hydrophobic side chains. Their molecules are rigid, and their mutual hydrophobic interactions are important for the correct folding of proteins, as these chains tend to be located inside of the protein molecule.
64955 |-
64956 | K
64957 | Lys
64958 | [[Lysine]]
64959 | basic
64960 | 146.19
64961 | 9.60
64962 | 2.16
64963 | 9.06
64964 | 10.54
64965 | [[essential amino acid|Essential]] for humans. Behaves similarly to arginine. Contains a long flexible side-chain with a positively-charged end. The flexibility of the chain makes lysine and arginine suitable for binding to molecules with many negative charges on their surfaces. E.g., [[deoxyribonucleic acid|DNA]]-binding proteins have their active regions rich with arginine and lysine. The strong charge makes these two amino acids prone to be located on the outer hydrophilic surfaces of the proteins; when they are found inside, they are usually paired with a corresponding negatively-charged amino acid, e.g., aspartate or glutamate.
64966 |-
64967 | L
64968 | Leu
64969 | [[Leucine]]
64970 | hydrophobic
64971 | 131.17
64972 | 6.01
64973 | 2.33
64974 | 9.74
64975 |
64976 | [[essential amino acid|Essential]] for humans. Behaves similar to isoleucine and valine. See isoleucine.
64977 |-
64978 | M
64979 | Met
64980 | [[Methionine]]
64981 | hydrophobic
64982 | 149.21
64983 | 5.74
64984 | 2.13
64985 | 9.28
64986 |
64987 | [[essential amino acid|Essential]] for humans. Always the first amino acid to be incorporated into a protein; sometimes removed after translation. Like cysteine, contains sulfur, but with a methyl group instead of hydrogen. This methyl group can be activated, and is used in many reactions where a new carbon atom is being added to another molecule.
64988 |-
64989 | N
64990 | Asn
64991 | [[Asparagine]]
64992 | hydrophilic
64993 | 132.12
64994 | 5.41
64995 | 2.14
64996 | 8.72
64997 |
64998 | Neutralized version of aspartic acid.
64999 |-
65000 | P
65001 | Pro
65002 | [[Proline]]
65003 | hydrophobic
65004 | 115.13
65005 | 6.30
65006 | 1.95
65007 | 10.64
65008 |
65009 | Contains an unusual ring to the N-end amine group, which forces the CO-NH amide sequence into a fixed conformation. Can disrupt protein folding structures like [[alpha helix|ι helix]] or [[beta sheet|β sheet]], forcing the desired kink in the protein chain. Common in [[collagen]], where it undergoes a [[posttranslational modification]] to [[hydroxyproline]]. Uncommon elsewhere.
65010 |-
65011 | Q
65012 | Gln
65013 | [[Glutamine]]
65014 | hydrophilic
65015 | 146.15
65016 | 5.65
65017 | 2.17
65018 | 9.13
65019 |
65020 | Neutralized version of glutamic acid. Used in proteins and as a storage for [[ammonia]].
65021 |-
65022 | R
65023 | Arg
65024 | [[Arginine]]
65025 | basic
65026 | 174.20
65027 | 10.76
65028 | 1.82
65029 | 8.99
65030 | 12.48
65031 | Functionally similar to lysine.
65032 |-
65033 | S
65034 | Ser
65035 | [[Serine]]
65036 | hydrophilic
65037 | 105.09
65038 | 5.68
65039 | 2.19
65040 | 9.21
65041 |
65042 | Serine and threonine have a short group ended with a [[hydroxyl]] group. Its hydrogen is easy to remove, so serine and threonine often act as hydrogen donors in enzymes. Both are very hydrophylic, therefore the outer regions of soluble proteins tend to be rich with them.
65043 |-
65044 | T
65045 | Thr
65046 | [[Threonine]]
65047 | hydrophilic
65048 | 119.12
65049 | 5.60
65050 | 2.09
65051 | 9.10
65052 |
65053 | [[essential amino acid|Essential]] for humans. Behaves similarly to serine.
65054 |-
65055 | V
65056 | Val
65057 | [[Valine]]
65058 | hydrophobic
65059 | 117.15
65060 | 6.00
65061 | 2.39
65062 | 9.74
65063 |
65064 | [[essential amino acid|Essential]] for humans. Behaves similarly to isoleucine and leucine. See isoleucine.
65065 |-
65066 | W
65067 | Trp
65068 | [[Tryptophan]]
65069 | hydrophobic
65070 | 204.23
65071 | 5.89
65072 | 2.46
65073 | 9.41
65074 |
65075 | [[essential amino acid|Essential]] for humans. Behaves similarly to phenylalanine and tyrosine (see phenylalanine). Precursor of [[serotonin]].
65076 |-
65077 | Y
65078 | Tyr
65079 | [[Tyrosine]]
65080 | hydrophobic
65081 | 181.19
65082 | 5.64
65083 | 2.20
65084 | 9.21
65085 | 10.46
65086 | Behaves similarly to phenylalanine and tryptophan (see phenylalanine). Precursor of [[melanin]], [[epinephrine]], and [[thyroid hormone]]s.
65087 |}
65088
65089
65090
65091 {| border=&quot;1&quot; bordercolor=&quot;black&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot;
65092 |-
65093 ! Amino acid
65094 ! Abbrev.
65095 ! Side chain
65096 ! Hydro- phobic
65097 ! Polar
65098 ! [[Electric charge|Charged]]
65099 ! Small
65100 ! Tiny
65101 ! [[Aromaticity|Aromatic]] or [[Aliphatic]]
65102 ! [[van der Waals]] volume
65103 | align=&quot;center&quot; | '''[[Genetic code|Codon]]'''
65104 | align=&quot;center&quot; | '''Occurrence in proteins (%)'''
65105 |- align=&quot;center&quot;
65106 | align=&quot;left&quot; | [[Alanine]]
65107 | Ala, A
65108 | -CH&lt;sub&gt;3&lt;/sub&gt;
65109 | X
65110 | -
65111 | -
65112 | X
65113 | X
65114 | -
65115 | align=&quot;center&quot; | 67
65116 | GCU, GCC, GCA, GCG
65117 | 7.8
65118 |- align=&quot;center&quot;
65119 | align=&quot;left&quot; | [[Cysteine]]
65120 | Cys, C
65121 | -CH&lt;sub&gt;2&lt;/sub&gt;[[Sulfur|S]]H
65122 | X
65123 | -
65124 | -
65125 | X
65126 | -
65127 | -
65128 | align=&quot;center&quot; | 86
65129 | UGU, UGC
65130 | align=&quot;center&quot; | 1.9
65131 |- align=&quot;center&quot;
65132 | align=&quot;left&quot; | [[Aspartate]]
65133 | Asp, D
65134 | -CH&lt;sub&gt;2&lt;/sub&gt;COOH
65135 | -
65136 | X
65137 | negative
65138 | X
65139 | -
65140 | -
65141 | align=&quot;center&quot; | 91
65142 | GAU, GAC
65143 | align=&quot;center&quot; | 5.3
65144 |- align=&quot;center&quot;
65145 | align=&quot;left&quot; | [[Glutamate]]
65146 | Glu, E
65147 | -CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;COOH
65148 | -
65149 | X
65150 | negative
65151 | -
65152 | -
65153 | -
65154 | align=&quot;center&quot; | 109
65155 | GAA, GAG
65156 | align=&quot;center&quot; | 6.3
65157 |- align=&quot;center&quot;
65158 | align=&quot;left&quot; | [[Phenylalanine]]
65159 | Phe, F
65160 | -CH&lt;sub&gt;2&lt;/sub&gt;C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;5&lt;/sub&gt;
65161 | X
65162 | -
65163 | -
65164 | -
65165 | -
65166 | [[Aromaticity|Aromatic]]
65167 | align=&quot;center&quot; | 135
65168 | UUU, UUC
65169 | 3.9
65170 |- align=&quot;center&quot;
65171 | align=&quot;left&quot; | [[Glycine]]
65172 | Gly, G
65173 | -H
65174 | X
65175 | -
65176 | -
65177 | X
65178 | X
65179 | -
65180 | align=&quot;center&quot; | 48
65181 | GGU, GGC, GGA, GGG
65182 | 7.2
65183 |- align=&quot;center&quot;
65184 | align=&quot;left&quot; | [[Histidine]]
65185 | His, H
65186 | -CH&lt;sub&gt;2&lt;/sub&gt;-[[imidazole|C&lt;sub&gt;3&lt;/sub&gt;H&lt;sub&gt;3&lt;/sub&gt;N&lt;sub&gt;2&lt;/sub&gt;]]
65187 | -
65188 | X
65189 | positive
65190 | -
65191 | -
65192 | [[Aromaticity|Aromatic]]
65193 | align=&quot;center&quot; | 118
65194 | CAU, CAC
65195 | 2.3
65196 |- align=&quot;center&quot;
65197 | align=&quot;left&quot; | [[Isoleucine]]
65198 | Ile, I
65199 | -CH(CH&lt;sub&gt;3&lt;/sub&gt;)CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;3&lt;/sub&gt;
65200 | X
65201 | -
65202 | -
65203 | -
65204 | -
65205 | [[Aliphatic]]
65206 | align=&quot;center&quot; | 124
65207 | AUU, AUC, AUA
65208 | 5.3
65209 |- align=&quot;center&quot;
65210 | align=&quot;left&quot; | [[Lysine]]
65211 | Lys, K
65212 | -(CH&lt;sub&gt;2&lt;/sub&gt;)&lt;sub&gt;4&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
65213 | -
65214 | X
65215 | positive
65216 | -
65217 | -
65218 | -
65219 | align=&quot;center&quot; | 135
65220 | AAA, AAG
65221 | 5.9
65222 |- align=&quot;center&quot;
65223 | align=&quot;left&quot; | [[Leucine]]
65224 | Leu, L
65225 | -CH&lt;sub&gt;2&lt;/sub&gt;CH(CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;
65226 | X
65227 | -
65228 | -
65229 | -
65230 | -
65231 | [[Aliphatic]]
65232 | align=&quot;center&quot; | 124
65233 | UUA, UUG, CUU, CUC, CUA, CUG
65234 | 9.1
65235 |- align=&quot;center&quot;
65236 | align=&quot;left&quot; | [[Methionine]]
65237 | Met, M
65238 | -CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;[[Sulfur|S]]CH&lt;sub&gt;3&lt;/sub&gt;
65239 | X
65240 | -
65241 | -
65242 | -
65243 | -
65244 | -
65245 | align=&quot;center&quot; | 124
65246 | AUG
65247 | 2.3
65248 |- align=&quot;center&quot;
65249 | align=&quot;left&quot; | [[Asparagine]]
65250 | Asn, N
65251 | -CH&lt;sub&gt;2&lt;/sub&gt;CONH&lt;sub&gt;2&lt;/sub&gt;
65252 | -
65253 | X
65254 | -
65255 | X
65256 | -
65257 | -
65258 | align=&quot;center&quot; | 96
65259 | AAU, AAC
65260 | 4.3
65261 |- align=&quot;center&quot;
65262 | align=&quot;left&quot; | [[Proline]]
65263 | Pro, P
65264 | -CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;-
65265 | X
65266 | -
65267 | -
65268 | X
65269 | -
65270 | -
65271 | align=&quot;center&quot; | 90
65272 | CCU, CCC, CCA, CCG
65273 | 5.2
65274 |- align=&quot;center&quot;
65275 | align=&quot;left&quot; | [[Glutamine]]
65276 | Gln, Q
65277 | -CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;CONH&lt;sub&gt;2&lt;/sub&gt;
65278 | -
65279 | X
65280 | -
65281 | -
65282 | -
65283 | -
65284 | align=&quot;center&quot; | 114
65285 | CAA, CAG
65286 | 4.2
65287 |- align=&quot;center&quot;
65288 | align=&quot;left&quot; | [[Arginine]]
65289 | Arg, R
65290 | -(CH&lt;sub&gt;2&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt;NH-C(NH)NH&lt;sub&gt;2&lt;/sub&gt;
65291 | -
65292 | X
65293 | positive
65294 | -
65295 | -
65296 | -
65297 | align=&quot;center&quot; | 148
65298 | CGU, CGC, CGA, CGG, AGA, AGG
65299 | 5.1
65300 |- align=&quot;center&quot;
65301 | align=&quot;left&quot; | [[Serine]]
65302 | Ser, S
65303 | -CH&lt;sub&gt;2&lt;/sub&gt;OH
65304 | -
65305 | X
65306 | -
65307 | X
65308 | X
65309 | -
65310 | align=&quot;center&quot; | 73
65311 | UCU, UCC, UCA, UCG, AGU,AGC
65312 | 6.8
65313 |- align=&quot;center&quot;
65314 | align=&quot;left&quot; | [[Threonine]]
65315 | Thr, T
65316 | -CH(OH)CH&lt;sub&gt;3&lt;/sub&gt;
65317 | X
65318 | X
65319 | -
65320 | X
65321 | -
65322 | -
65323 | align=&quot;center&quot; | 93
65324 | ACU, ACC, ACA, ACG
65325 | 5.9
65326 |- align=&quot;center&quot;
65327 | align=&quot;left&quot; | [[Valine]]
65328 | Val, V
65329 | -CH(CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;
65330 | X
65331 | -
65332 | -
65333 | X
65334 | -
65335 | [[Aliphatic]]
65336 | align=&quot;center&quot; | 105
65337 | GUU, GUC, GUA, GUG
65338 | 6.6
65339 |- align=&quot;center&quot;
65340 | align=&quot;left&quot; | [[Tryptophan]]
65341 | Trp, W
65342 | -CH&lt;sub&gt;2&lt;/sub&gt;[[indole|C&lt;sub&gt;8&lt;/sub&gt;H&lt;sub&gt;6&lt;/sub&gt;N]]
65343 | X
65344 | -
65345 | -
65346 | -
65347 | -
65348 | [[Aromaticity|Aromatic]]
65349 | align=&quot;center&quot; | 163
65350 | UGG
65351 | 1.4
65352 |- align=&quot;center&quot;
65353 | align=&quot;left&quot; | [[Tyrosine]]
65354 | Tyr, Y
65355 | -CH&lt;sub&gt;2&lt;/sub&gt;-C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;4&lt;/sub&gt;OH
65356 | X
65357 | X
65358 | -
65359 | -
65360 | -
65361 | [[Aromaticity|Aromatic]]
65362 | align=&quot;center&quot; | 141
65363 | UAU, UAC
65364 | 3.2
65365 |}
65366
65367 == Hydrophilic and hydrophobic amino acids ==
65368 Depending on how [[polar molecule|polar]] the side chain, aminoacids can be [[hydrophilic]] or [[hydrophobic]] to various degree. This influences their interaction with other structures, both within the protein itself and within other proteins. The distribution of hydrophilic and hydrophobic aminoacids determines the [[tertiary structure]] of the protein, and their physical location on the outside structure of the proteins influences their [[quaternary structure]]. For example, soluble proteins have surfaces rich with polar aminoacids like [[serine]] and [[threonine]], while [[integral membrane protein]]s tend to have outer ring of hydrophobic aminoacids that anchors them to the [[lipid bilayer]], and proteins anchored to the membrane have a hydrophobic end that locks into the membrane. Similarly, proteins that have to bind to positive-charged molecules have surfaces rich with negatively charged aminoacids like glutamate and aspartate, while proteins binding to negative-charged molecules have surfaces rich with positively charged chains like lysine and arginine.
65369
65370 Hydrophilic and hydrophobic interactions of the proteins do not have to rely only on aminoacids themselves. By various [[posttranslational modification]]s other chains can be attached to the proteins, forming hydrophobic [[lipoprotein]]s or hydrophylic [[glycoprotein]]s.
65371
65372 == Nonstandard amino acids ==
65373 Aside from the twenty standard amino acids and the two special amino acids, [[selenocysteine]] and [[pyrrolysine]], already mentioned above, there is a vast number of &quot;nonstandard amino acids&quot; which are not used in the body's regular manufacturing of proteins. Examples of nonstandard amino acids include the [[sulfur]]-containing [[taurine]] and the neurotransmitters [[GABA]] and [[dopamine]]. Other examples are [[lanthionine]], [[2-aminoisobutyric acid]], [[dehydroalanine]], [[dehydro-amino-butyric acid]],
65374
65375 Nonstandard amino acids are usually formed through modifications to standard amino acids. For example, taurine can be formed by the [[decarboxylation]] of cysteine, while dopamine is synthesized from tyrosine and [[hydroxyproline]] is made by a [[posttranslational modification]] from [[proline]].
65376
65377 ==Uses of substances derived from amino acids==
65378 * [[Aspartame]] (aspartyl-phenylalanine-1-methyl ester) is an artificial sweetener.
65379 * [[5-HTP]] (5-hydroxytryptophan) has been used to treat neurological problems associated with [[PKU]] (phenylketonuria), as well as depression (as an alternative to L-Tryptophan).
65380 * [[L-DOPA]] (L-dihydroxyphenylalanine) is a drug used to treat [[Parkinsonism]].
65381 * [[Monosodium glutamate]] is a [[food additive]] to enhance flavor.
65382
65383 ==See also==
65384 *[[Essential amino acids]]
65385 *[[Strecker amino acid synthesis]]
65386
65387 ==References==
65388 *Doolittle, R.F. (1989) Redundancies in protein sequences. In ''Predictions of Protein Structure and the Principles of Protein Conformation'' (Fasman, G.D. ed) Plenum Press, New York, pp. 599-623
65389 *David L. Nelson and Michael M. Cox, ''Lehninger Principles of Biochemistry'', 3rd edition, 2000, Worth Publishers, ISBN 1572591536
65390 * [http://www.sciencedirect.com/science?_ob=ArticleURL&amp;_udi=B6T36-3XB0N6H-H&amp;_coverDate=09%2F10%2F1999&amp;_alid=241945989&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_qd=1&amp;_cdi=4938&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=3cb10a335716303532fc517906a12b3a On the hydrophobic nature of cysteine.]
65391
65392 ==External links==
65393 * [http://micro.magnet.fsu.edu/aminoacids/index.html Molecular Expressions: The Amino Acid Collection] - Has detailed information and microscopy photographs of each amino acid.
65394 *[http://researchnews.osu.edu/archive/aminoacd.htm 22nd amino acid] - Press release from Ohio State claiming discovery of a 22nd amino acid.
65395
65396 [[Category:Amino acids]]
65397 [[Category:Nitrogen metabolism]]
65398
65399 [[th:ā¸ā¸Ŗā¸”ā¸­ā¸°ā¸Ąā¸´āš‚ā¸™]]
65400 [[bg:АĐŧиĐŊĐžĐēиŅĐĩĐģиĐŊĐ°]]
65401 [[ca:Aminoàcid]]
65402 [[cs:Aminokyselina]]
65403 [[da:Aminosyre]]
65404 [[de:Aminosäuren]]
65405 [[et:Aminohapped]]
65406 [[es:AminoÃĄcido]]
65407 [[eo:Aminoacido]]
65408 [[fa:اØŗیدŲ‡Ø§ÛŒ ØĸŲ…ÛŒŲ†Ų‡]]
65409 [[fr:Acide aminÊ]]
65410 [[gl:AminoÃĄcido]]
65411 [[ko:ė•„미노ė‚°]]
65412 [[io:Amin-acido]]
65413 [[it:Amminoacidi]]
65414 [[he:חומ×Ļ×Ē אמינו]]
65415 [[lt:AminorÅĢgÅĄtis]]
65416 [[lv:Aminoskābe]]
65417 [[lb:Aminosaier]]
65418 [[hu:Aminosav]]
65419 [[mk:АĐŧиĐŊĐž ĐēиŅĐĩĐģиĐŊĐ°]]
65420 [[nl:Aminozuur]]
65421 [[ja:ã‚ĸミノ酸]]
65422 [[no:Aminosyre]]
65423 [[nn:Aminosyre]]
65424 [[pl:Aminokwas]]
65425 [[pt:AminoÃĄcido]]
65426 [[ru:АĐŧиĐŊĐžĐēиŅĐģĐžŅ‚Ņ‹]]
65427 [[sl:Aminokislina]]
65428 [[sr:АĐŧиĐŊĐžĐēиŅĐĩĐģиĐŊĐ°]]
65429 [[su:Asam amino]]
65430 [[fi:Aminohappo]]
65431 [[sv:Aminosyra]]
65432 [[th:ā¸ā¸Ŗā¸”ā¸­ā¸°ā¸Ąā¸´āš‚ā¸™]]
65433 [[tr:Aminoasit]]
65434 [[uk:АĐŧŅ–ĐŊĐžĐēиŅĐģĐžŅ‚Đ°]]
65435 [[zh:æ°¨åŸē酸]]</text>
65436 </revision>
65437 </page>
65438 <page>
65439 <title>Alan Turing</title>
65440 <id>1208</id>
65441 <revision>
65442 <id>41467421</id>
65443 <timestamp>2006-02-27T15:22:09Z</timestamp>
65444 <contributor>
65445 <username>GilliamJF</username>
65446 <id>506179</id>
65447 </contributor>
65448 <comment>/* Turing in fiction */ dab agent</comment>
65449 <text xml:space="preserve">[[Image:Alan Turing.jpg|thumb|200px|right|Alan Turing is often considered the father of modern [[computer science]].]]
65450 '''Alan Mathison Turing''' ([[June 23]], [[1912]] &amp;ndash; [[June 7]], [[1954]]) was a [[United Kingdom|British]] [[mathematician]], [[logician]], and [[cryptographer]]. Turing is often considered to be a father of modern [[computer science]].
65451
65452 With the [[Turing Test]], Turing made a significant and characteristically provocative contribution to the debate regarding [[artificial intelligence]]: whether it will ever be possible to say that a machine is [[consciousness|conscious]] and can [[thought|think]]. He provided an influential formalisation of the concept of [[algorithm]] and computation with the [[Turing machine]], formulating the now widely accepted &quot;Turing&quot; version of the [[Church–Turing thesis]], namely that any practical computing model has either the equivalent or a subset of the capabilities of a Turing machine.
65453 During [[World War II]], Turing worked at [[Bletchley Park]], Britain's [[cryptanalysis|codebreaking]] centre and was for a time head of [[Hut 8]], the section responsible for German Naval cryptanalysis. He devised a number of techniques for breaking German ciphers, including the method of the [[bombe]], an electromechanical machine which could find settings for the [[Enigma machine]].
65454
65455 After the war, he worked at the [[National Physical Laboratory]], creating one of the first designs for a stored-program computer, although it was never actually built. In 1947 he moved to the [[Victoria University of Manchester|University of Manchester]] to work, largely on software, on the [[Manchester Mark I]] then emerging as one of the world's earliest true computers.
65456
65457 In [[1952]], Turing was convicted of acts of gross indecency after admitting to a sexual relationship with a man in Manchester. He was placed on probation and required to undergo [[hormone therapy]]. When Alan Turing died in [[1954]], an inquest found that he had committed suicide by eating an apple laced with [[cyanide]].
65458
65459 == Childhood and youth ==
65460 Turing was conceived in 1911 in Chatrapur, [[India]]. His father, Julius Mathison Turing, was a member of the Indian civil service. Julius and wife Ethel (''nÊe'' Stoney) wanted Alan to be brought up in [[United Kingdom|Britain]], so they returned to [[Paddington]], [[London]]. His father's civil service commission was still active, and during Turing's childhood years his parents travelled between [[Guildford]], [[England]] and [[India]], leaving their two sons to stay with friends in England, rather than risk their health in the British colony. Very early in life, Turing showed signs of the genius he was to display more prominently later. He is said to have taught himself to read in three weeks, and to have shown an early affinity for numbers and puzzles.
65461
65462 His parents enrolled him at St. Michael's, a day school, at six years of age. The headmistress recognized his genius early on, as did many of his subsequent educators. In 1926, at the age of 14, he went on to [[Sherborne School]] in [[Dorset]]. His first day of term coincided with a [[general strike]] in England, and so determined was he to attend his first day that he rode his bike unaccompanied over sixty miles from [[Southampton]] to school, stopping overnight at an [[inn]] &amp;mdash; a feat reported in the local press.
65463
65464 Turing's natural inclination toward mathematics and science did not earn him respect with the teachers at Sherborne, a famous and expensive [[public school (England)|public school]] (a British private school with charitable status), whose definition of education placed more emphasis on the [[classics]]. His headmaster wrote to his parents: &quot;I hope he will not fall between two schools. If he is to stay at Public School, he must aim at becoming ''educated''. If he is to be solely a ''Scientific Specialist'', he is wasting his time at a Public School&quot;.{{rf|1|Hodges.26}}
65465
65466 But despite this, Turing continued to show remarkable ability in the studies he loved, solving advanced problems in 1927 without having even studied elementary [[calculus]]. In 1928, aged sixteen, Turing encountered [[Albert Einstein]]'s work; not only did he grasp it, but he extrapolated Einstein's questioning of [[Newton's laws of motion]] from a text in which this was never made explicit.
65467
65468 [[Image:KingsCollegeChapel.jpg|thumb|320px|The computer room at King's is now named after Turing, who became a student there in 1931 and a Fellow in 1935.]]
65469
65470 Turing's hopes and ambitions at school were raised by his strong feelings for his friend Christopher Morcom, with whom he fell in love, though the feeling was not reciprocated. Morcom died only a few weeks into their last term at Sherborne, from complications of [[bovine]] [[tuberculosis]], contracted after drinking infected cow's milk as a boy. Turing was heart-broken.
65471
65472 == University and his work on computability ==
65473 Due to his unwillingness to work as hard on his classical studies as on science and mathematics, Turing failed to win a scholarship to [[Trinity College, Cambridge]], and went on to the college of his second choice, [[King's College, Cambridge]]. He was an undergraduate from 1931 to 1934, graduating with a distinguished degree, and in 1935 was elected a Fellow at King's on the strength of a dissertation on the Gaussian [[error function]].
65474
65475 [[Image:Turingbus.jpg|thumb|320px|Alan Turing, on the steps of the bus, with members of the Walton Athletic Club, 1946.]]
65476 In his momentous paper &quot;On Computable Numbers, with an Application to the Entscheidungsproblem&quot; (submitted on [[May 28]], [[1936]]), Turing reformulated [[Kurt GÃļdel]]'s [[1931]] results on the limits of proof and computation, substituting GÃļdel's universal arithmetics-based formal language by what are now called [[Turing machine]]s, formal and simple devices. He proved that such a machine would be capable of performing any conceivable mathematical problem if it were representable as an [[algorithm]], even if no actual Turing machine would be likely to have practical applications, being much slower than alternatives.
65477
65478 Turing machines are to this day the central object of study in [[computation|theory of computation]]. He went on to prove that there was no solution to the ''[[Entscheidungsproblem]]'' by first showing that the [[halting problem]] for Turing machines is uncomputable: it is not possible to algorithmically decide whether a given Turing machine will ever halt. While his proof was published subsequent to [[Alonzo Church]]'s equivalent proof in respect to his [[lambda calculus]], Turing's work is considerably more accessible and intuitive. It was also novel in its notion of a &quot;Universal (Turing) Machine,&quot; the idea that such a machine could perform the tasks of any other machine. The paper also introduces the notion of [[definable number]]s.
65479
65480 Most of 1937 and 1938 he spent at [[Princeton University]], studying under Alonzo Church. In 1938 he obtained his [[Doctor of Philosophy|Ph.D.]] from Princeton; his dissertation introduced the notion of [[hypercomputation]] where Turing machines are augmented with so-called [[oracle machine|oracles]], allowing a study of problems that cannot be solved algorithmically.
65481
65482 Back in Cambridge in 1939, he attended lectures by [[Ludwig Wittgenstein]] about the [[foundations of mathematics]]. The two argued and disagreed vehemently, with Turing defending formalism and Wittgenstein arguing that mathematics is overvalued and does not discover any absolute truths (Wittgenstein 1932/1976).
65483
65484 == Cryptanalysis ==
65485 [[Image:Bombe-rebuild.jpg|thumbnail|300px|Replica of a bombe machine]]
65486 During [[World War II]], Turing was a major participant in the efforts at [[Bletchley Park]] to break German ciphers. Turing's codebreaking work was kept secret until the [[1970s]]; not even his close friends knew about it. He contributed several mathematical insights into breaking both the [[Enigma machine]] and the [[Lorenz SZ 40/42]] (a teletype cipher attachment codenamed &quot;Tunny&quot; by the British), and was, for a time, head of Hut 8, the section responsible for reading German Naval signals.
65487
65488 [[Image:Turing_flat.jpg|thumb|240px|left|Two cottages in the stable yard at Bletchley Park. Turing worked here from 1939&amp;ndash;1940 until he moved to Hut 8.]]
65489 Since September 1938, Turing had been recruited to work part-time for the [[Government Code and Cypher School]]. Turing reported to [[Bletchley Park]] when war was declared in September 1939. To break Enigma, Turing devised an electromechanical machine which searched for the correct settings of the Enigma rotors.
65490
65491 The machine was called the [[bombe]], named after the Polish-designed ''[[Bomba (cryptography)|bomba]]''. Using a bombe, it was possible to ignore the effect of the Enigma plugboard and consider the settings of its rotors alone, and eliminate most of them from consideration. For each possible setting, a chain of logical deductions was implemented electrically, and it was possible to detect when a contradiction had occurred and rule out that setting. Turing's bombe was first installed on [[18 March]] [[1940]], and, with an enhancement suggested by mathematician [[Gordon Welchman]], was the primary tool used to read Enigma traffic. Over 200 bombes were in operation by the end of the war.
65492
65493 In December 1940, Turing solved the naval Enigma indicator system, which was more complex than the indicator systems used by the other services. Turing also invented a [[Bayesian]] statistical technique termed &quot;[[Banburismus]]&quot; to assist in breaking Naval Enigma. Banburismus could rule out certain orders of the Enigma rotors, reducing time needed to test settings on the bombes. Against the Lorenz cipher, Turing devised a technique termed ''Turingismus'' or ''Turingery'', although other methods were also used.
65494
65495 In the spring of 1941, Turing proposed marriage to fellow Hut 8 co-worker [[Joan Clarke]], although the engagement was broken off by mutual agreement in the summer.
65496
65497 In late November 1942, Turing visited the US to work on [[secure speech]] devices and Naval Enigma, returning in March 1943. During his absence, [[Conel Hugh O'Donel Alexander|Hugh Alexander]] had assumed the position of head of Hut 8, although Alexander had been ''de facto'' head for some time, Turing having little interest in the day-to-day running of the section. Turing became a general consultant for cryptanalysis at Bletchley Park.
65498
65499 In the latter part of the war, teaching himself electronics at the same time, Turing undertook (assisted by engineer [[Donald Bayley]]) the design of a portable machine codenamed ''[[Delilah (secure speech)|Delilah]]'' to allow [[secure voice]] communications. Intended for different applications, Delilah lacked capability for use with long-distance radio transmissions, and was completed too late to be used in the war. Though Turing demonstrated it to officials by encrypting/decrypting a recording of a [[Winston Churchill]] speech, Delilah was not adopted for use.
65500
65501 In 1945, Turing was awarded the [[Order of the British Empire|OBE]] for his sterling wartime services.
65502
65503 == Early computers and the Turing Test ==
65504 [[Image:Turingrunning.jpeg|frame|left|Turing achieved world-class [[Marathon (sport)|Marathon]] standards. His best time of 2 hours, 46 minutes, 3 seconds, was only 11 minutes slower than the winner in the [[1948 Summer Olympics|1948 Olympic Games]].]]
65505
65506 From 1945 to 1947 he was at the [[National Physical Laboratory]], where he worked on the design of [[ACE (computer)|ACE]] (Automatic Computing Engine). He presented a paper on February 19, 1946, which was the first complete design of a [[Von Neumann architecture|stored-program computer]]. Although he succeeded in designing the ACE, there were delays in starting the project and he became disillusioned. In late 1947 he returned to Cambridge for a 'sabbatical' year. While he was at Cambridge, work on building the ACE stopped before it was ever begun. In 1949 he became deputy director of the computing laboratory at the [[Victoria University of Manchester|University of Manchester]], and worked on software for one of the earliest true computers &amp;mdash; the [[Manchester Mark I]]. During this time he continued to do more abstract work, and in &quot;[[Computing machinery and intelligence]]&quot; (Mind, October 1950), Turing addressed the problem of [[artificial intelligence]], and proposed an experiment now known as the [[Turing test]], an attempt to define a standard for a machine to be called &quot;sentient&quot;.
65507
65508 In 1948, Turing, working with his former undergraduate colleague, [[D.G. Champernowne]], began writing a chess program for a computer that did not yet exist. In 1952, lacking a computer powerful enough to execute the program, Turing played a game in which he simulated the computer, taking about half an hour per move. [http://www.chessgames.com/perl/chessgame?gid=1356927 The game] was recorded; the program lost to a colleague of Turing, [[Alick Glennie]], however, it is said that the program won a game against Champernowne's wife.
65509
65510 == Pattern formation and mathematical biology ==
65511 Turing worked from 1952 until his death in 1954 on [[mathematical biology]], specifically [[morphogenesis]]. He published one paper on the subject called &quot;The Chemical Basis of Morphogenesis&quot; in 1952. His central interest in the field was understanding [[Leonardo of Pisa|Fibonacci]] phyllotaxis, the existence of [[Fibonacci number]]s in plant structures. He used reaction-diffusion equations which are now central to the field of [[pattern formation]]. Later papers went unpublished until 1992 when ''Collected Works of A.M. Turing'' was published.
65512
65513 == Prosecution for homosexuality and Turing's death ==
65514
65515 Turing was a homosexual man during a period when homosexuality was illegal. In 1952, his lover, Arnold Murray, helped an accomplice to break into Turing's house, and Turing went to the police to report the crime. As a result of the police investigation, Turing acknowledged a sexual relationship with Murray, and they were charged with gross indecency under [[Criminal_Law_Amendment_Act_of_1885#Section_11|Section 11]] of the Criminal Law Amendment Act of 1885. Turing was unrepentant and was convicted. Although he could have been sent to prison, he was placed on probation, conditional on him undergoing [[hormone|hormonal]] [[chemical castration|treatment]] designed to reduce [[libido]]. He accepted the [[estrogen|oestrogen]] hormone injections, which lasted for a year, with side effects including the [[gynecomastia|development of breasts]]. His conviction led to a removal of his security clearance and prevented him from continuing consultancy for [[GCHQ]] on cryptographic matters.
65516
65517 In 1954, he died of [[cyanide]] [[poisoning]], apparently from a cyanide-laced apple he left half-eaten. The apple itself was never tested for contamination with cyanide, and cyanide poisoning as a cause of death was established by a post-mortem. Most believe that his death was intentional, and the death was ruled a [[suicide]]. It is rumoured that this method of self-poisoning was in tribute to Turing's beloved film ''[[Snow White and the Seven Dwarfs (1937 film)|Snow White and the Seven Dwarfs]]''. His mother, however, strenuously argued that the ingestion was accidental due to his careless storage of laboratory chemicals. Friends of his have said that Turing may have killed himself in this ambiguous way quite deliberately, to give his mother some plausible deniability. The possibility of assassination has also been suggested, owing to Turing's involvement in the secret service and the perception of Turing as a security risk due to his homosexuality.
65518
65519 In the book, ''Zeroes and Ones'', author [[Sadie Plant]] speculates that the [[rainbow]] [[Apple Computer#Logo|Apple logo]] with a bite taken out of it was an homage to Turing. This seems to be an [[urban legend]] as the Apple logo was designed in 1976, two years before Gilbert Baker's [[rainbow flag|rainbow pride flag]].
65520
65521 :''See also'': [[Sodomy law]], [[:Category:LGBT civil rights]]
65522
65523 == Recognition ==
65524 Since 1966, the [[Turing Award]] has been given by the [[Association for Computing Machinery]] to a person for technical contributions to the computing community. It is widely considered to be the equivalent of the [[Nobel Prize]] in the computing world.
65525
65526 In 1994 a stretch of the [[Manchester]] city ring road was named Alan Turing Way.
65527
65528 On [[23 June]] [[1998]], on what would have been Turing's 86th birthday, [[Andrew Hodges]], his biographer, unveiled an official [[English Heritage]] [[Blue Plaque]] on his childhood home in Warrington Crescent, [[London]], now the Colonnade hotel [http://www.turing.org.uk/bio/oration.html], [http://www.blueplaque.com/detail.php?plaque_id=348].
65529
65530 [[Image:Alan Turing Memorial Closer.jpg|left|thumbnail|200px|Alan Turing memorial statue in Sackville Park]]
65531 A [[Alan Turing Memorial|statue of Turing]] was unveiled in [[Manchester]]
65532 &lt;!-- by [[English Heritage]] I am unsure whether this is true or not - the sculptor who made the statute was commissioned by the Alan Turing Memorial Fund
65533 Seek http://www.btinternet.com/~glynhughes/sculpture/turing.htm --&gt;
65534 on [[June 23]] [[2001]]. It is in [[Sackville Park]], between the [[University of Manchester]] building on Whitworth Street and the [[Canal Street, Manchester|Canal Street]] [[gay village]]. To mark the 50th anniversary of his death, a memorial plaque was unveiled at his former residence, Hollymeade, in Wilmslow on [[June 7]] [[2004]].
65535 [[Image:Turing_Plaque.jpg|thumbnail|200px|Plaque marking Turing's home]]
65536
65537 The [[Alan Turing Institute]] was initiated by [[UMIST]] and [[Victoria University of Manchester|University of Manchester]] in Summer 2004.
65538
65539 A celebration of Turing's life and achievements was held at the [[Victoria University of Manchester|University of Manchester]] on [[5 June]] [[2004]]; it was arranged by the [[British Logic Colloquium]] and the [[British Society for the History of Mathematics]].
65540
65541 On [[October 28]] [[2004]] a bronze statue of Alan Turing sculpted by [[John W. Mills]] was unveiled at the [[University of Surrey]] [http://portal.surrey.ac.uk/press/oct2004/281004a/]. The statue marks the 50th anniversary of Turing's death. It portrays Turing carrying his books across the campus.
65542
65543 [[Holtsoft]] produces a [[Turing programming language|programming language]] named for Turing. The language is designed for beginner programmers and has no direct access to the hardware.
65544
65545 The [[Polytechnic University of Puerto Rico]] named a computer laboratory for graduate studies the [[Turing Lab]].
65546
65547 == Turing biographies ==
65548 * Andrew Hodges wrote a definitive biography ''Alan Turing: The Enigma'' in 1983 (see references below).
65549 * The play ''Breaking the Code'' by Hugh Whitemore is about the life and death of Turing. In the original [[West End]] and [[Broadway theatre|Broadway]] runs, the role of Turing was played by [[Derek Jacobi]], who also played Turing in a 1995 television adaptation of the play.
65550 *{{cite book | author=Leavitt, David | title=The Man Who Knew Too Much: Alan Turing and the Invention of the Computer | publisher=New York: W. W. Norton | year=2005 | id=ISBN 0393052362}}
65551
65552 == Turing in fiction==
65553 * Turing appears as a character in [[Neal Stephenson]]'s ''[[Cryptonomicon]]''.
65554 * In another one of Stephenson's books, ''[[The Diamond Age]]'', there is an intuitive explanation of recursion, important to Turing's and related work on computability, put into the format of a child's book.
65555 * &quot;Turing Police&quot; (Artificial Intelligence law enforcers) appear in [[William Gibson (novelist)|William Gibson]]'s ''[[Neuromancer]]''.
65556 *In White Wolf Game Studio's [[World of Darkness]] role-playing universe, Turing was a leading member of the [[Mage: The Ascension|mage]] faction known as the [[Virtual Adepts]].
65557 * An [[FBI]] [[Special agent|agent]] named Alan Turing made an appearance in the [[webcomic]] ''[[Questionable Content]]'' as a homage to Turing.
65558 * Appears in ''[[Enigma (novel)|Enigma]]'' by [[Robert Harris]]
65559 * A young Alan Turing introduces the title character to [[Kurt GÃļdel|GÃļdel]]'s first [[GÃļdel's incompleteness theorem|incompleteness theorem]] in [[Apostolos Doxiadis]]'s novel ''[[Uncle Petros and Goldbach's Conjecture]]''.
65560 * In the 1989 ''[[Doctor Who]]'' serial ''[[The Curse of Fenric]]'', the character of Dr. Judson is based on Turing. Turing himself is a narrator of the [[Doctor Who spin-offs#Original fiction|''Doctor Who'' spin-off]] [[Eighth Doctor Adventures|novel]] ''The Turing Test'' by Paul Leonard.
65561 * [[Greg Egan]]'s novella, ''[http://gregegan.customer.netspace.net.au/MISC/ORACLE/Oracle.html Oracle]'', is about an alternate universe version of Turing
65562 * In [[Arthur C. Clarke]]'s [[2010: Odyssey Two]], the sequel to [[2001: A Space Odyssey (novel)|2001: A Space Odyssey]], the stoic [[Dr. Chandra]], the programmer who created [[HAL 9000]], has a completely spartan cubicle except for a photo of Turing beside his computer screen.
65563
65564 == See also ==
65565 * [[List of gay, lesbian or bisexual people]]
65566 * [[Alan Turing's Unorganized Machines]]
65567
65568 == References ==
65569 * {{MacTutor Biography|id=Turing|title=Alan Mathison Turing}}
65570 * Copeland, B. Jack (2004) &quot;Colossus: Its Origins and Originators&quot;. ''[[IEEE Annals of the History of Computing]]'', 26(4):38&amp;ndash;45.
65571 * Copeland, B. Jack (editor, 2004) ''[http://www.oup.co.uk/isbn/0-19-825079-7 The Essential Turing]''. [[Oxford University Press]], ISBN 0-19-825079-7 (hardback) and ISBN 0-19-825080-0 (paperback).
65572 * Copeland, B. Jack (editor, 2005), ''[http://www.oup.co.uk/isbn/0-19-856593-3 Alan Turing's Automatic Computing Engine]''. [[Oxford University Press]], ISBN 0-19-856593-3.
65573 * Hodges, Andrew (1983/2000). ''Alan Turing: The Enigma''. [[Simon &amp; Schuster]], 1983, ISBN 0-671-49207-1. Also: Walker Publishing Company, 2000.
65574 * [[Christof Teuscher]] (editor 2004), ''Alan Turing: Life and Legacy of a Great Thinker''. [[Springer-Verlag]], ISBN 3540200207.
65575 * Yates, David M. (1997) ''Turing's Legacy: A history of computing at the National Physical Laboratory 1945&amp;ndash;1995''. London: [[Science Museum, London|Science Museum]], ISBN 0-901805-94-7.
65576 * [[Ludwig Wittgenstein]] (1932/1976) ''Wittgenstein's Lectures on the Foundations of Mathematics (1932-1935)''. Edited by Cora Diamond. Cornell University Press.
65577 * [http://www.nytimes.com/2005/12/18/books/review/18johnson.html Johnson, George (2005) &quot;Enigmatic&quot;]. New York Times Book Review (12/18/2005). Review of David Leavitt, &lt;cite&gt;The Man Who Knew Too Much: Alan Turing and the Invention of the Computer (2005)&lt;/cite&gt;.
65578 * [http://www.newyorker.com/critics/books/articles/060206crbo_books Holt, Jim (2006) &quot;CODE-BREAKER The life and death of Alan Turing.&quot;]. The New Yorker (1/30/2006). Review of David Leavitt, &lt;cite&gt;The Man Who Knew Too Much: Alan Turing and the Invention of the Computer (2005)&lt;/cite&gt;.
65579
65580 ==Note==
65581 {{ent|1|Hodges.26}} Hodges p. 26.
65582
65583 == External links ==
65584 {{wikiquote}}
65585 * [http://www.turing.org.uk/turing/ Alan Turing Home Page] by Andrew Hodges including a [http://www.turing.org.uk/bio/part1.html short biography]
65586 * [http://www.alanturing.net/ AlanTuring.net Turing Archive for the History of Computing] by Jack Copeland
65587 * [http://www.idsia.ch/~juergen/turing.html A short biography]
65588 * [http://www.systemtoolbox.com/article.php?history_id=3 Alan Turing &amp;ndash; Towards a Digital Mind: Part 1]
65589 * [http://www.loebner.net/Prizef/TuringArticle.html Computing machinery and intelligence] &amp;mdash; full text of article.
65590 * [http://www.skyscraper.org.uk Skyscraper song inspired by Alan Turing]
65591 * [http://www.5xm.com/turing/ Hollymeade unveiling of memorial plaque marking 50th anniversary of Turing's untimely death]
65592 * [http://www.swintons.net/jonathan/turing.htm Alan Turing and morphogenesis]
65593 * [http://www.turingarchive.org The Turing Archive]
65594 * [http://www.teuscher.ch/turingday Turing Day 2002]
65595 * [http://www.maths.man.ac.uk/logic/turing2004/ Turing 2004: A celebration of his life and achievements]
65596 * [http://plato.stanford.edu/entries/turing/ Stanford Encyclopedia of Philosophy entry]
65597 * [http://www.adeptis.ru/vinci/m_part1_2.html Photos]
65598
65599 {{Link FA|es}}
65600
65601 [[Category:1912 births|Turing, Alan]]
65602 [[Category:1954 deaths|Turing, Alan]]
65603 [[Category:20th century mathematicians|Turing, Alan]]
65604 [[Category:20th century philosophers|Turing, Alan]]
65605 [[Category:Alan Turing|Alan Turing]]
65606 [[Category:Alumni of King's College, Cambridge|Turing, Alan]]
65607 [[Category:British World War II veterans|Turing, Alan]]
65608 [[Category:British computer scientists|Turing, Alan]]
65609 [[Category:British cryptographers at Bletchley Park|Turing, Alan]]
65610 [[Category:Computer designers|Turing, Alan]]
65611 [[Category:Computer pioneers|Turing, Alan]]
65612 [[Category:Computer scientists|Turing, Alan]]
65613 [[Category:English inventors|Turing, Alan]]
65614 [[Category:English mathematicians|Turing, Alan]]
65615 [[Category:Fellows of the Royal Society|Turing, Alan]]
65616 [[Category:Formal methods people|Turing, Alan]]
65617 [[Category:LGBT history of the United Kingdom|Turing, Alan]]
65618 [[Category:Lesbian, gay, bisexual, or transgender people|Turing, Alan]]
65619 [[Category:Suicides|Turing, Alan]]
65620 [[Category:Old Shirburnians|Turing, Alan]]
65621
65622 [[af:Alan Turing]]
65623 [[ast:Alan Turing]]
65624 [[bg:АĐģŅŠĐŊ ĐĸŅŽŅ€Đ¸ĐŊĐŗ]]
65625 [[bs:Alan Turing]]
65626 [[ca:Alan Turing]]
65627 [[cs:Alan Turing]]
65628 [[de:Alan Turing]]
65629 [[et:Alan Turing]]
65630 [[el:ΆÎģÎąÎŊ ΤÎŋĪĪÎšÎŊÎŗÎē]]
65631 [[es:Alan Mathison Turing]]
65632 [[eo:Alan TURING]]
65633 [[fa:ØĸŲ„Ų† ØĒŲˆØąÛŒŲ†Ú¯]]
65634 [[fr:Alan Mathison Turing]]
65635 [[gl:Alan Turing]]
65636 [[ko:ė•¨ëŸ° 튜링]]
65637 [[hr:Alan Turing]]
65638 [[io:Alan Turing]]
65639 [[id:Alan Turing]]
65640 [[is:Alan Turing]]
65641 [[it:Alan Turing]]
65642 [[he:אלן טיורינג]]
65643 [[lt:Alanas Tiuringas]]
65644 [[lb:Alan M. Turing]]
65645 [[li:Alan Turing]]
65646 [[hu:Alan Turing]]
65647 [[nl:Alan Turing]]
65648 [[ja:ã‚ĸナãƒŗãƒģチãƒĨãƒŧãƒĒãƒŗグ]]
65649 [[no:Alan Turing]]
65650 [[nn:Alan Turing]]
65651 [[pl:Alan Mathison Turing]]
65652 [[pt:Alan Turing]]
65653 [[ro:Alan Turing]]
65654 [[ru:ĐĸŅŒŅŽŅ€Đ¸ĐŊĐŗ, АĐģĐ°ĐŊ МаŅ‚иŅĐžĐŊ]]
65655 [[sh:Alan Turing]]
65656 [[scn:Alan Turing]]
65657 [[simple:Alan Turing]]
65658 [[sk:Alan Mathison Turing]]
65659 [[sr:АĐģĐ°ĐŊ ĐĸŅ˜ŅƒŅ€Đ¸ĐŊĐŗ]]
65660 [[fi:Alan Turing]]
65661 [[sv:Alan Turing]]
65662 [[th:āšā¸­ā¸Ĩā¸ąā¸™ ā¸—ā¸ąā¸§ā¸Ŗā¸´ā¸‡]]
65663 [[vi:Alan Turing]]
65664 [[tr:Alan Turing]]
65665 [[uk:Đĸ'ŅŽŅ€Ņ–ĐŊŌ‘ АĐģĐ°ĐŊ МĐĩŅ‚Ņ–ŅĐžĐŊ]]
65666 [[zh:艾äŧĻÂˇå›žįĩ]]</text>
65667 </revision>
65668 </page>
65669 <page>
65670 <title>Area</title>
65671 <id>1209</id>
65672 <revision>
65673 <id>41919041</id>
65674 <timestamp>2006-03-02T16:48:44Z</timestamp>
65675 <contributor>
65676 <username>Oleg Alexandrov</username>
65677 <id>153314</id>
65678 </contributor>
65679 <minor />
65680 <comment>revert inappropriate links</comment>
65681 <text xml:space="preserve">:''This article explains the meaning of area as a [[physical quantity]]. The article [[area (geometry)]] is more mathematical. See also [[area (disambiguation)]].''
65682
65683 '''Area''' is a physical [[quantity]] expressing the size of a part of a [[surface]]. '''Surface area''' is the summation of the areas of the exposed sides of an [[object (philosophy)|object]].
65684
65685 == Units ==
65686
65687 Units for measuring surface area include:
65688 :[[square metre]] = [[SI derived unit]]
65689 :[[are]] = 100 square metres
65690 :[[hectare]] = 10,000 square metres
65691 :[[square kilometre]] = 1,000,000 square metres
65692 :square megametre = 10&lt;sup&gt;12&lt;/sup&gt; square metres
65693
65694 [[Imperial unit]]s, as currently defined from the metre:
65695 :[[square foot]] (plural square feet) = 0.09290304 square metres
65696 :[[square yard]] = 9 square feet = 0.83612736 square metres
65697 :square [[perch]] = 30.25 square yards = 25.2928526 square metres
65698 :[[acre]] = 160 square perches or 43,560 square feet = 4046.8564224 square metres
65699 :[[square mile]] = 640 acres = 2.5899881103 square kilometres
65700
65701 Old European area units, still in used in some private matters (e.g. land sale advertisements)
65702 :square [[fathom]]or fahomia in some sources = 3.5967 square metres
65703 :[[cadastral]] moon(acre) = 1600īŋŊ square fathoms = 5755 square metres
65704
65705 The article [[Orders of magnitude]] links to lists of [[orders of magnitude (area)|objects of comparable surface area]].
65706
65707 ==Useful formulas==
65708 *Area of a [[rectangle]] (and, in particular, a [[square (geometry)|square]]): [[length]] &amp;times; [[width]]
65709 *Area of a [[triangle]]: [[ÂŊ]] &amp;times; [[base]] &amp;times; [[height]]
65710 *Area of a [[disk (mathematics)|disk]]: [[pi|&amp;pi;]] &amp;times; [[radius|r]]²
65711 *Area of an [[ellipse]]: [[pi|&amp;pi;]] &amp;times; [[semi-major axis|a]] &amp;times; [[semi-minor axis|b]]
65712 *Area of a [[sphere]]: 4 &amp;times; [[pi|&amp;pi;]] &amp;times; [[radius|r]]² = &amp;pi; &amp;times; [[diameter|d]]² (which is the first [[derivative]] of the [[formula]] for [[volume]] of a [[sphere]])
65713 *Area of a [[trapezoid]]: If a and b are the two parallel sides and h is the distance (height) between the parallels, the area formula is as below:
65714 :&lt;math&gt;A=\frac{1}{2}(a+b)h&lt;/math&gt; or &lt;math&gt;A=\frac{h(a+b)}{2}&lt;/math&gt;
65715 *Total surface area of a [[right circular cylinder]]: 2 &amp;times; [[pi| &amp;pi;]] &amp;times; [[radius|r]] &amp;times; ([[height|h]] + [[radius|r]])
65716 *Lateral surface area of a [[right circular cylinder]]: 2 &amp;times; [[pi| &amp;pi;]] &amp;times; [[radius|r]] &amp;times; [[height|h]]
65717 *Total surface area of a [[right circular cone]]: [[pi| &amp;pi;]] &amp;times; [[radius|r]] &amp;times; ([[slant height|l]] + [[radius|r]])
65718 *Lateral surface area of a [[right circular cone]]: [[pi| &amp;pi;]] &amp;times; [[radius|r]] &amp;times; [[slant height|l]]
65719
65720 &lt;!--The total surface area and lateral surface area of a right circular cylinder and cone formulae were taken from R.S. Aggarwal's Mathematics for Class 8--&gt;
65721 &lt;!--
65722 a table of areas&lt;-&gt;diameters isn't exactly very relevant here. and statements of currents are meaningless without information on the cable type ambient temperature and installation conditions.
65723 ==Cross sectional area (CSA) of electrical wire==
65724
65725 Rough figures for the cross sectional area of copper conductor:
65726
65727 CSA (mm²) diameter (mm) current (A)
65728 1.0 2.8 13
65729 1.5 3.5 17
65730 2.5 4.2 24
65731 4.0 4.8 32
65732 6.0 5.4 41
65733 10.0 6.8 55
65734 16.0 8.0 74
65735 25.0 9.8 97 --&gt;
65736
65737 [[Category:Area|*]]
65738
65739 [[als:Fläche]]
65740 [[ar:Ų…Øŗاح؊]]
65741 [[bg:ПĐģĐžŅ‰]]
65742 [[be:ПĐģĐžŅˆŅ‡Đ°]]
65743 [[ca:Àrea]]
65744 [[cs:Povrch]]
65745 [[da:Areal]]
65746 [[de:Fläche]]
65747 [[et:Pindala]]
65748 [[el:ΈÎēĪ„ÎąĪƒÎˇ]]
65749 [[eo:Areo]]
65750 [[fa:Ų…ØŗاحØĒ]]
65751 [[fi:Pinta-ala]]
65752 [[fo:Vídd]]
65753 [[fr:Superficie]]
65754 [[gu:āĒ•āĢāĒˇāĢ‡āĒ¤āĢāĒ°āĒĢāĒŗ]]
65755 [[he:שטח]]
65756 [[hr:PovrÅĄina]]
65757 [[ia:Superficie]]
65758 [[io:Areo]]
65759 [[is:FlatarmÃĄl]]
65760 [[ja:éĸįŠ]]
65761 [[ka:ფართობი]]
65762 [[ko:늴ė ]]
65763 [[la:Area]]
65764 [[lv:PlatÄĢba]]
65765 [[lt:Plotas]]
65766 [[li:Oppervlak]]
65767 [[mg:Velarantany]]
65768 [[nl:Oppervlakte]]
65769 [[nn:Flatevidd]]
65770 [[no:Areal]]
65771 [[pl:Powierzchnia]]
65772 [[pt:Área]]
65773 [[ru:ПĐģĐžŅ‰Đ°Đ´ŅŒ]]
65774 [[simple:Area]]
65775 [[sl:PovrÅĄina]]
65776 [[sv:YtmÃĨtt]]
65777 [[th:ā¸žā¸ˇāš‰ā¸™ā¸—ā¸ĩāšˆ]]
65778 [[uk:ПĐģĐžŅ‰Đ°]]
65779 [[vi:Diáģ‡n tích]]
65780 [[zh:éĸį§¯]]
65781 [[zh-min-nan:BÄĢn-chek]]</text>
65782 </revision>
65783 </page>
65784 <page>
65785 <title>Astronomical unit</title>
65786 <id>1210</id>
65787 <revision>
65788 <id>41421590</id>
65789 <timestamp>2006-02-27T05:16:45Z</timestamp>
65790 <contributor>
65791 <username>Jeffrey O. Gustafson</username>
65792 <id>158658</id>
65793 </contributor>
65794 <minor />
65795 <comment>/* History */ punctpov</comment>
65796 <text xml:space="preserve">The '''astronomical unit''' ('''AU''' or '''au''' or '''a.u.''' or sometimes '''ua''') is a unit of [[distance]], approximately equal to the [[mean]] distance between [[Earth]] and [[Sun]]. The currently accepted value of the AU is 149 597 870 691 Âą 30 metres (about 150 million kilometres or 93 million miles).
65797
65798 The symbol &quot;ua&quot; is recommended by the [[Bureau International des Poids et Mesures]] [http://www.bipm.org/en/si/si_brochure/chapter4/table7.html], but in the United States and other anglophone countries the reverse usage is more common. The [[International Astronomical Union]] recommends &quot;au&quot; [http://www.iau.org/IAU/Activities/nomenclature/units.html] and [[international standard]] [[ISO 31-1]] uses &quot;AU&quot;.
65799
65800 == The distance ==
65801
65802 Earth's [[orbit]] is not a [[circle]] but an [[ellipse]]; originally, the AU was defined as the [[length]] of the [[semimajor axis]] of said orbit. For greater precision, the International Astronomical Union in [[1976]] defined the AU as the distance from the Sun at which a [[test particle|particle]] of negligible [[mass]], in an unperturbed circular orbit, would have an [[orbital period]] of 365.256 898 3 days (a [[Gaussian year]]). More accurately, it is the distance such that the heliocentric [[gravitational constant]] (the product GM&lt;sub&gt;&amp;#9737;&lt;/sub&gt;) is equal to (0.017 202 098 95)² AUÂŗ/d².
65803
65804 ==History==
65805
65806 [[Aristarchus of Samos]] estimated the distance to the Sun to be about 20 times the distance to the moon, whereas the true ratio is about 390. His estimate was based on the angle between the half moon and the sun, which he estimated as 87&amp;deg;.
65807
65808 According to [[Eusebius of Caesarea]] in the ''[[Praeparatio Evangelica]]'', [[Eratosthenes]] found the distance to the sun to be &quot;ĪƒĪ„ιδΚĪ‰ÎŊ ÎŧĪ…ĪÎšÎąÎ´ÎąĪ‚ Ī„ÎĩĪ„ĪÎąÎēÎŋĪƒÎšÎąĪ‚ ÎēιΚ ÎŋÎēĪ„Ī‰ÎēΚĪƒÎŧĪ…ĪÎšÎąĪ‚&quot; (literally &quot;of stadia myriads 400 and 80000&quot;). This has been translated either as 4,080,000 [[stadia]] (1903 translation by [[E. H. Gifford]]), or as 804,000,000 stadia (edition of [[Edouard des Places]], dated 1974-1991). Using the Greek stadium of 185 metres, the former translation comes to a far-too-low 755,000 km, whereas the second translation comes to a very accurate 149 million km.
65809
65810 At the time the AU was introduced, its actual value was very poorly known, but planetary distances in terms of AU could be determined from heliocentric geometry and [[Kepler's laws of planetary motion]]. The value of the AU was first estimated by [[Jean Richer]] and [[Giovanni Domenico Cassini]] in [[1672]]. By measuring the [[parallax]] of [[Mars (planet)|Mars]] from two locations on the Earth, they arrived at a figure of about 140 million kilometers.
65811
65812 A somewhat more accurate estimate can be obtained by observing the [[transit of Venus]].
65813 This method was devised by [[Edmond Halley]], and applied to the transits of Venus observed in [[1761]] and [[1769]], and then again in [[1874]] and [[1882]].
65814
65815 Another method involved determining the constant of [[aberration of light|aberration]], and [[Simon Newcomb]] gave great weight to this method when deriving his widely accepted value of 8.80&quot; for the [[solar parallax]] (close to the modern value of 8.794 148&quot;).
65816
65817 The discovery of the [[near-Earth asteroid]] [[433 Eros]] and its passage near the Earth in [[1900]]&amp;ndash;[[1901]] allowed a considerable improvement in parallax measurement. More recently very precise measurements have been carried out by [[radar]] and by [[telemetry]] from [[space probe]]s.
65818
65819 While the value of the astronomical unit is now known to great precision, the value of the mass of the Sun is not, because of uncertainty in the value of the [[gravitational constant]]. Because the gravitational constant is known to only five or six significant digits while the positions of the planets are known to 11 or 12 digits, calculations in celestial mechanics are typically performed in solar masses and astronomical units rather than in kilograms and kilometres. This approach makes all results dependent on the gravitational constant. A conversion to [[SI]] units would separate the results from the gravitational constant, at the cost of introducing additional uncertainty by assigning a specific value to that unknown constant.
65820
65821 It is known that the mass of the Sun is very slowly decreasing, and therefore the orbital period of a body at a given distance is increasing. This implies that the AU is getting smaller (by about one centimetre per year) over time.
65822
65823 == Examples ==
65824
65825 The distances are approximate mean distances. It has to be taken into consideration that the distances between [[astronomical object|celestial bodies]] change in [[time]] due to their [[orbit]]s and other factors.
65826
65827 * The [[Earth]] is 1.00 Âą 0.02 AU from the [[Sun]].
65828 * The [[Moon]] is 0.0026 Âą 0.0001 AU from the Earth.
65829 * [[Mars (planet)|Mars]] is 1.52 Âą 0.14 AU from the Sun.
65830 * [[Jupiter]] is 5.20 Âą 0.05 AU from the Sun.
65831 * [[Pluto (planet)|Pluto]] is 39.5 Âą 9.8 AU from the Sun.
65832 * [[90377 Sedna]]'s orbit ranges between 76 and 942 AU from the Sun; Sedna is currently ([[as of 2006]]) about 90 AU from the Sun.
65833 * As of November 2005, [[Voyager 1]] (the farthest [[human]]-made object) is 97 AU from the Sun.
65834 * The mean diameter of the [[Solar system]], including the [[Oort cloud]], is approximately 10&lt;sup&gt;5&lt;/sup&gt; AU.
65835 * [[Proxima Centauri]] (the nearest [[star]]) is ~268 000 AU away from the Sun.
65836 * The mean diameter of [[Betelgeuse]] is 2.57 AU.
65837 * The distance from the Sun to the centre of the [[Milky Way]] is approximately 1.7×10&lt;sup&gt;9&lt;/sup&gt; AU.
65838
65839 Some conversion factors:
65840 * 1 AU = 149 597 870.691 Âą 0.030 km &amp;#8776; 92 955 807 miles &amp;#8776; 8.317 [[light-year|light minutes]] &amp;#8776; 499 [[light-second]]s
65841 * 1 [[light-second]] &amp;#8776; 0.002 AU
65842 * 1 [[light-minute]] &amp;#8776; 0.120 AU
65843 * 1 [[light-hour]] &amp;#8776; 7.214 AU
65844 * 1 [[light-day]] &amp;#8776; 173 AU
65845 * 1 [[light-year]] &amp;#8776; 63 241 AU
65846 * 1 [[parsec|pc]] &amp;#8776; 206 265 AU
65847
65848 == See also ==
65849
65850 * [[Conversion of units]]
65851 * [[Light year]]
65852 * [[Orders of magnitude]]
65853 * [[Parsec]]
65854
65855 == References ==
65856
65857 * E. Myles Standish. &quot;Report of the IAU WGAS Sub-group on Numerical Standards&quot;. In ''Highlights of Astronomy'', I. Appenzeller, ed. Dordrecht: Kluwer Academic Publishers, 1995. ''(Complete report available online: [http://ssd.jpl.nasa.gov/iau-comm4/iausgnsrpt.ps PostScript]. Tables from the report also available: [http://ssd.jpl.nasa.gov/astro_constants.html Astrodynamic Constants and Parameters])''
65858 * D. D. McCarthy ed., IERS Conventions (1996), IERS Technical Note 21, Observatoire de Paris, July 1996
65859
65860 == External links ==
65861
65862 * [http://physics.nist.gov/cuu/Units/outside.html Units outside the SI] ''(at the [[NIST]] web site)''
65863 * [http://www.iau.org/IAU/Activities/nomenclature/units.html Recommendations concerning Units] ''(at the [[International Astronomical Union|IAU]] web site)''
65864 * [http://home.comcast.net/~pdnoerd/SMassLoss.html Solar Mass Loss, the Astronomical Unit, and the Scale of the Solar System] ''(a discussion of the relation between the AU and other quantities)''
65865
65866 [[Category:Celestial mechanics]]
65867 [[Category:Astronomical units of length]]
65868
65869 [[bg:АŅŅ‚Ņ€ĐžĐŊĐžĐŧиŅ‡ĐĩŅĐēĐ° ĐĩдиĐŊиŅ†Đ°]]
65870 [[be:АŅŅ‚Ņ€Đ°ĐŊĐ°ĐŧŅ–Ņ‡ĐŊĐ°Ņ адСŅ–ĐŊĐēĐ°]]
65871 [[ca:Unitat astronÃ˛mica]]
65872 [[cs:AstronomickÃĄ jednotka]]
65873 [[cy:Uned seryddol]]
65874 [[da:Astronomisk enhed]]
65875 [[de:Astronomische Einheit]]
65876 [[et:Astronoomiline Ãŧhik]]
65877 [[el:ΑĪƒĪ„ĪÎŋÎŊÎŋÎŧΚÎēÎŽ ÎŧÎŋÎŊÎŦδι]]
65878 [[es:Unidad astronÃŗmica]]
65879 [[eo:Astronomia unuo]]
65880 [[eu:Unitate astronomiko]]
65881 [[fr:UnitÊ astronomique]]
65882 [[gl:Unidade astronÃŗmica]]
65883 [[ko:ė˛œëŦ¸ 단ėœ„]]
65884 [[hr:Astronomska jedinica]]
65885 [[io:Astronomiala unajo]]
65886 [[id:Unit astronomi]]
65887 [[it:Unità Astronomica]]
65888 [[he:יחידה אסטרונומי×Ē]]
65889 [[lt:Astronominis vienetas]]
65890 [[lb:Astronomesch Eenheet]]
65891 [[hu:CsillagÃĄszati egysÊg]]
65892 [[nl:Astronomische eenheid]]
65893 [[ja:夊文単äŊ]]
65894 [[no:Astronomisk enhet]]
65895 [[nn:Astronomisk eining]]
65896 [[pl:Jednostka astronomiczna]]
65897 [[pt:Unidade astronômica]]
65898 [[ro:Unitatea astronomică]]
65899 [[ru:АŅŅ‚Ņ€ĐžĐŊĐžĐŧиŅ‡ĐĩŅĐēĐ°Ņ ĐĩдиĐŊиŅ†Đ°]]
65900 [[scn:Unità astrunomica]]
65901 [[sk:AstronomickÃĄ jednotka]]
65902 [[sl:Astronomska enota]]
65903 [[sr:АŅŅ‚Ņ€ĐžĐŊĐžĐŧŅĐēĐ° Ņ˜ĐĩдиĐŊиŅ†Đ°]]
65904 [[fi:Astronominen yksikkÃļ]]
65905 [[sv:Astronomisk enhet]]
65906 [[th:ā¸Ģā¸™āšˆā¸§ā¸ĸā¸”ā¸˛ā¸Ŗā¸˛ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒ]]
65907 [[vi:ÄÆĄn váģ‹ thiÃĒn văn]]
65908 [[zh:夊文喎äŊ]]
65909 [[zh-min-nan:Thian-bÃģn tan-ÅĢi]]</text>
65910 </revision>
65911 </page>
65912 <page>
65913 <title>Artist</title>
65914 <id>1212</id>
65915 <revision>
65916 <id>41253429</id>
65917 <timestamp>2006-02-26T02:12:51Z</timestamp>
65918 <contributor>
65919 <username>Dianawild</username>
65920 <id>992393</id>
65921 </contributor>
65922 <text xml:space="preserve">{{wiktionary}}
65923 {{wikiquote}}
65924 '''Artist''' is a descriptive term applied to a person who engages in an activity deemed to be an [[art]]. It is also used in a qualitative sense of a person [[creativity|creative]] in, [[innovation|innovative]] in, or adept at, an artistic practice.
65925
65926 Most often, the term describes those who create within a context of 'high culture', activities such as [[drawing and painting]], [[sculpture]], [[acting]], [[dancing]], [[writing]], [[filmmaking]] and [[music]] &amp;mdash; people who use imagination, and talent or skill, to create works that can be judged to have an [[aesthetic]] value. [[Art history|Art historians]] and [[Art critic| critics]] will define as artists those who produce [[art]] within a recognised or recognisable discipline.
65927
65928 The term is also used to denote highly skilled people in non-&quot;arts&quot; activities, as well &amp;mdash; crafts, medicine, alchemy, mechanics, mathematics, defense (martial arts) and architecture, for example. The designation is applied to illegal activities, like a &quot;scam artist&quot;. The term 'artist' could also refer to a con artist.
65929
65930 There is no consensus about what constitutes &quot;art&quot; or who is, or is not, an &quot;artist&quot;. Often, discussions on the subject focus on the differences between &quot;artist&quot; and &quot;[[Technician|technician]]&quot; or &quot;[[Entertainer|entertainer]],&quot; or &quot;[[Artisan|artisan]],&quot; &quot;[[fine arts|fine art]]&quot; and &quot;[[Applied art|applied art]],&quot; or what constitutes art and what does not. In addition, the [[French language|French]] word '''artiste''' (which in French, simply means &quot;artist&quot;) has been imported into the [[English language]]; in English-usage it has connotations (some of them derogatory) which differ somewhat from the English term [[artist]].
65931
65932 The Oxford English dictionary, cites broad meanings of the term &quot;artist,&quot;
65933
65934 :* A learned person or Master of Arts.
65935 :* One who pursues a practical science, traditionally medicine, astrology, alchemy, chemistry.
65936 :* A follower of a pursuit in which skill comes by study or practice - the opposite of a theorist.
65937 :* A follower of a manual art, such as a mechanic.
65938 :* One who makes their [[craft]] a fine art.
65939 :* One who cultivates one of the fine arts - traditionally the arts presided over by the [[muses]].
65940
65941 (referenced from: {{cite book | author=C. T. Onions | title=The Shorter Oxford English Dictionary | publisher=Clarendon Press Oxford | year=1991 | id=ISBN 0-19-861126-9}})
65942
65943 In Greek the word &quot;techn&amp;#283;&quot; is often mistranslated into &quot;art.&quot; In actuality, &quot;techn&amp;#283;&quot; implies mastery of a craft (any craft.) The Latin-derived form of the word is &quot;tecnicus&quot;, from which the English words [[technique]], [[technology]], [[technical]] are derived. Our word art is derived from the Latin &quot;ars&quot;, which, though literally defined means &quot;skill method&quot; or &quot;technique&quot;, holds a connotation of [[beauty]].
65944
65945 Many contemporary definitions of &quot;artist&quot; and &quot;art&quot; are highly contingent on [[culture]], resisting aesthetic prescription, in much the same way that the features constituting [[beauty]] and the beautiful cannot be easily standardized without corruption into [[kitsch]].
65946
65947
65948 == Examples of art and artist ==
65949
65950 *[[Actor]]: [[Laurence Olivier]]
65951 *[[Architect]]: [[Antoni Gaudí]]
65952 *[[Ballet]]: [[Vaslav Nijinsky]]
65953 *[[Calligraphy]]: [[Hokusai]]
65954 *[[Choreographer]]: [[Martha Graham]]
65955 *[[Composer]]: [[Giuseppe Fortunino Francesco Verdi]]
65956 *[[Conceptual Art]]: [[Vanessa Beecroft]]
65957 *[[Dancer]]: [[Isadora Duncan]]
65958 *[[Entertainer]]: [[PT Barnum]]
65959 *[[Fashion designer]]: [[Pierre Cardin]]
65960 *[[Figure Skating|Figure Skater]]:[[Michelle Kwan]]
65961 *[[Game designer]]: [[Shigeru Miyamoto]]
65962 *[[Horticulture]]: [[AndrÊ le Nôtre]]
65963 *[[Illusionist]]: [[Houdini]]
65964 *[[Industrial designer]]: [[Pininfarina]]
65965 *[[Jeweller]]: [[FabergÊ]]
65966 *[[Movie director]]: [[Sergei Eisenstein]]
65967 *[[Muralist]]: [[Diego Rivera]]
65968 *[[Musician]]: [[Niccolo Paganini]]
65969 *[[Novelist]]: [[Dostoevsky]]
65970 *[[Musical instrument|Musical instrument maker]]: [[Stradivari]]
65971 *[[Orator]]: [[Cicero]]
65972 *[[Painter]]: [[Pablo Ruiz Picasso]]
65973 *[[Photographer]]: [[Robert Mapplethorpe]]
65974 *[[Pianist]]: [[Glenn Gould]]
65975 *[[Playwright]]: [[Harold Pinter]]
65976 *[[Poet]]: [[William Shakespeare]]
65977 *[[Potter]]: [[Peter Voulkos]]
65978 *[[Singer]]: [[Nico]]
65979 *[[Sculpture|Sculptor]]: [[Michelangelo Buonarotti]]
65980 *[[Storyteller]]: [[1001_Arabian_Nights|el-Gahshigar]]
65981
65982
65983 [[Category:Artists| ]]
65984 [[Category:Art and design workers]]
65985 [[Category:Aesthetics]]
65986
65987 [[cs:Umělec]]
65988 [[cy:Arlunydd]]
65989 [[de:KÃŧnstler]]
65990 [[eo:Artisto]]
65991 [[fr:Artiste]]
65992 [[ko:미ėˆ ę°€]]
65993 [[id:Artis]]
65994 [[iu:ᑕᑯá’Ĩᓇᖅᓕᐅᖅᑎá‘Ļ]]
65995 [[he:אמן]]
65996 [[lt:Artistas]]
65997 [[mi:Kaitito]]
65998 [[ms:Artis]]
65999 [[nl:Artiest]]
66000 [[ja:įžŽčĄ“åŽļ]]
66001 [[sq:Artisti]]
66002 [[fi:Taiteilija]]
66003 [[sv:Konstnär]]
66004 [[uk:ĐĨŅƒĐ´ĐžĐļĐŊиĐē]]
66005 [[zh:č‰ē术åŽļ]]</text>
66006 </revision>
66007 </page>
66008 <page>
66009 <title>Actaeon</title>
66010 <id>1213</id>
66011 <revision>
66012 <id>41064001</id>
66013 <timestamp>2006-02-24T20:51:50Z</timestamp>
66014 <contributor>
66015 <username>Unyoyega</username>
66016 <id>460372</id>
66017 </contributor>
66018 <minor />
66019 <comment>fixing interwikis +: lb</comment>
66020 <text xml:space="preserve">[[Image:Aktation, Nordisk familjebok.png|thumb|Actaeon and his dogs]]
66021 In [[Greek mythology]], '''Actaeon''' (or '''Aktaion'''), son of [[Aristaeus]] and [[Autonoe]] in [[Boeotia]], was a hunter who suffered the wrath of [[Artemis]].
66022
66023 Artemis was bathing in the woods near Boeotian [[Orchomenus (town)|Orchomenos]] when the hunter Actaeon stumbled across her, thus seeing her naked. He stopped and stared, amazed at her ravishing beauty. When she saw him, Artemis punished him by declaring that he must never speak again — if he tried to speak, he would be changed into a [[Deer (mythology)|stag]] — for his unlucky profanation of her virgin's mysteries. Upon hearing his hunting group calling to him, he cried out to them and immediately was changed into a stag. His own hounds turned upon him instantly and killed him. He was torn apart. The hounds were so upset with their master's death, that [[Chiron]] made a statue so lifelike that the hounds thought it was Actaeon.
66024
66025 There are various other versions: [[Bibliotheca (Pseudo-Apollodorus)|Apollodorus]] states that his offence was that he was a rival of [[Zeus]] for [[Semele]] (who was also his aunt), while in [[Euripedes]] ''Bacchae'' he boasts that he is better hunter than Artemis.
66026
66027 &lt;table&gt;&lt;tr&gt;&lt;td&gt;
66028 :áŊĪážˇĪ‚ Ī„áŊ¸ÎŊ áŧˆÎēĪ„έĪ‰ÎŊÎŋĪ‚ áŧ„θÎģΚÎŋÎŊ ÎŧĪŒĪÎŋÎŊ,
66029 :áŊƒÎŊ áŊ ÎŧĪŒĪƒÎšĪ„ÎŋΚ ĪƒÎēĪÎģÎąÎēÎĩĪ‚ áŧƒĪ‚ áŧÎ¸ĪÎ­ĪˆÎąĪ„Îŋ
66030 :δΚÎĩĪƒĪ€ÎŦĪƒÎąÎŊĪ„Îŋ, ÎēĪÎĩίĪƒĪƒÎŋÎŊ' áŧÎŊ ÎēĪ…ÎŊÎąÎŗÎ¯ÎąÎšĪ‚
66031 :áŧˆĪĪ„έÎŧΚδÎŋĪ‚ ÎĩáŧļÎŊιΚ ÎēÎŋÎŧĪ€ÎŦĪƒÎąÎŊĪ„', áŧÎŊ áŊ€ĪÎŗÎŦĪƒÎšÎŊ.
66032 &lt;td&gt;
66033 :Look at Actaeon's wretched fate
66034 :who by the man-eating hounds he had raised,
66035 :was torn apart, better at hunting
66036 :than Artemis he had boasted to be, in the meadows.
66037 &lt;/table&gt;
66038
66039 [[Diodorus Siculus]] has it that Actaeon wanted to marry Artemis. Other authors say the hounds were Artemis' own.
66040
66041 == Actaeon in art ==
66042 {{Commonscat|Actaeon}}
66043
66044 Actaeon torn by his hounds is a common theme in [[5th century BC]] Greek art: in some [[red-figure pottery|vase painting]]s he is shown wearing a deerskin, in others antlers sprout from his head. Pictures of Artemis surprised by Actaeon while bathing are found among [[Pompeii|Pompeian]] wall paintings.
66045
66046 &lt;!--[[Image:Tizian 001.jpg|thumb|Titian: ''Diana suprised by Actaeon while bathing'']]--&gt;
66047 The theme was one of many revived in the [[Renaissance]]. See for example:
66048
66049 *[http://www.nationalgallery.org.uk/cgi-bin/WebObjects.dll/CollectionPublisher.woa/wa/work?workNumber=NG6420 ''The Death of Actaeon''], by [[Titian]]
66050
66051 ==References==
66052
66053 * ''The [[Oxford Classical Dictionary]]'', ''s.v.'' &quot;Actaeon&quot;
66054 * [[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'', 3.138ff
66055 * [[Euripedes]], ''[[The Bacchae|Bacchae]]'', 337–40
66056 * [[Diodorus Siculus]] 4.81.4
66057
66058
66059 [[Category:Shapeshifting]]
66060 [[Category:Greek mythological people]]
66061
66062 [[ca:ActeÃŗ]]
66063 [[de:Aktaion]]
66064 [[et:Aktaion]]
66065 [[es:ActeÃŗn]]
66066 [[fr:ActÊon]]
66067 [[gl:ActeÃŗn]]
66068 [[it:Atteone]]
66069 [[lt:Aktaeonas]]
66070 [[lb:Aktaion]]
66071 [[nl:Actaeon]]
66072 [[pl:Akteon (mitologia)]]
66073 [[ru:АĐēŅ‚ĐĩĐžĐŊ]]
66074 [[sv:Aktaion]]
66075 [[uk:АĐēŅ‚ĐĩĐžĐŊ]]</text>
66076 </revision>
66077 </page>
66078 <page>
66079 <title>Anglicanism</title>
66080 <id>1214</id>
66081 <revision>
66082 <id>42155455</id>
66083 <timestamp>2006-03-04T04:37:43Z</timestamp>
66084 <contributor>
66085 <username>Paul foord</username>
66086 <id>240061</id>
66087 </contributor>
66088 <minor />
66089 <comment>/* See also */ wl fix</comment>
66090 <text xml:space="preserve">{{christianity}}
66091 The term '''''Anglican''''' (from [[Anglia]], the [[Latin (language)|Latin]] name for England) describes the people and churches that follow the religious traditions developed by the [[state religion|established]] [[Church of England]]. The [[Anglican Communion]] codifies the Anglican relationship to the Church of England as a theologically broad and often diverging community of churches, which holds the English church as its mother institution. Adherents of Anglicanism within the [[Anglican Communion]] (that is in communion with the [[See of Canterbury]]) worldwide number around 70 million but there are numerous denominations which consider themselves Anglican but which are out of the Communion.
66092
66093 The issue of [[Catholic]] and [[Protestantism|Protestant]] affiliation is often confusing. Whilst many Anglicans regard themselves as being within the Protestant tradition, many other Anglicans, especially [[Anglo-Catholicism|Anglo-Catholics]], do not consider themselves as Protestants. The Church of England claims explicitly that the Church &quot;upholds the catholic faith.&quot; (The Athanasian Creed states &quot;And the catholic faith is this: That we worship one God in Trinity, and Trinity in Unity; Neither confounding the persons, nor dividing the substance.&quot; The phrase &quot;catholic church&quot; by definition means the universal Christian Church but also holds the sense of the &quot;church in its fullness&quot; ).
66094
66095 Ultimately, the Anglican Church considers itself as being both catholic (stressing its continuity with the ancient Church), and Reformed / Protestant (noting that the Church does not accept the universal infallible authority of the Pope). The conduct of eucharistically-centred worship services is in keeping with the catholic liturgical tradition and the Communion emphasises its status of [[full communion]] with the [[Old Catholic Church|Old-Catholic Utrecht Union]] &amp;mdash; a small community of churches which split from the [[Roman Catholic Church]] in [[1870]] over the doctrine of papal infallibility. On the other hand, the development of Anglicanism as a distinctive theological tradition is also deeply connected with the [[Protestant Reformation]].
66096
66097 As with the [[Eastern Orthodox Church|Orthodox]] and [[Roman Catholic Church|Roman Catholic]] churches (but unlike most Protestant churches), Anglicans claim authority within the church through [[apostolic succession]] from the first followers of [[Jesus]]. The Anglican-Roman Catholic International Consultation actually reached agreement on the doctrine of the ministry in their Elucidation of 1979 [http://www.prounione.urbe.it/dia-int/arcic/doc/e_arcic_elucid_min.html], but the [[Roman Catholic Church]] continues to hold that Anglican Orders are not &quot;valid.&quot; In contrast, Anglican Orders are recognized as valid by the [[Old Catholic Church|Old-Catholics]] and [[Lutheran]]s, communions which also consider themselves &quot;the Catholic Church.&quot; Anglicans traditionally date their church back at least to its first Archbishop of Canterbury, [[Augustine of Canterbury|Saint Augustine of Canterbury]], in the 6th century and even centuries earlier to the [[Roman Britain|Roman occupation]]. Many Anglicans point out that Christian missionaries existed in the British lands from the 1st century, with bishops established at Glastonbury by commission from the Apostle Philip. They consider [[Celtic Christianity]] a prefix of their faith, since many Celtic elements remained, even after the Synod of Whitby conformed to Roman customs (well after the establishment of the Canterbury See). They also point out that bishops from the British Isles participated in the early Ecumenical Councils - most significantly [[Pelagius]], the monk who was almost successful in stopping [[Original Sin]] from becoming an official Church doctrine.
66098
66099 == Origins ==
66100 ''See also: [[History of the Church of England]]''
66101
66102 While Anglicans acknowledge that the [[schisms|schism]] from papal authority under [[Henry VIII of England]] led to the Church of England existing as a separate entity, they also stress its continuity with the pre-Reformation Church of England. The organisational machinery of the Church of England was in place by the time of the Synod of Hertford in 672-673 AD when the English bishops were for the first time able to act as one body under the leadership of the Archbishop of Canterbury. Since the [[Elizabethan Religious Settlement]] the [[Church of England]] has enjoyed a heritage that is both Catholic and Protestant with the British monarch as its [[Supreme Governor]]. Contrary to much popular belief, the British monarch is not the constitutional &quot;Head&quot; of the Church of England and it is incorrect to refer to the monarch as such. The monarch has no constitutional role in Anglican churches in other parts of the world although the prayer books of several countries maintain prayers for &quot;Our Sovereign Lady Elizabeth,&quot; and the versicle at [[Morning Prayer]] &quot;O Lord save the Queen,&quot; which in the United States prayer book, for example, is altered to &quot;O Lord save the state.&quot;
66103
66104 {{Anglicanism}}
66105 Nonetheless, the [[English Reformation]] was initially driven by the dynastic goals of [[Henry VIII of England]], who, in his quest for a queen to bear him a male heir, found it necessary and profitable to replace the [[Papacy]] with the English crown. Henry's need for a legitimate male heir was real. England's previous experience in the twelfth century of rule by a queen had been a disaster that no-one wished to see repeated. (see [[Empress Matilda]]) It was not Henry's intention to found a new church. He was well informed enough about history to know that the powers he was claiming were those which had been exercised by European monarchs over the church in their dominions since the time of Constantine and that what had changed since then had been the growth of papal power. The [[Act of Supremacy]] put Henry at the head of the church in [[1534]], while acts such as the [[Dissolution of the Monasteries]] put huge amounts of church land and property into the hands of [[the Crown]] and ultimately into those of the English nobility. These created vested interests which made a powerful material incentive to support a separate Christian church in England under the rule of the Monarch. The theological justification for Anglican distinctiveness was begun by the [[Archbishop of Canterbury]] [[Thomas Cranmer]] and continued by other thinkers such as [[Richard Hooker (theologian)|Richard Hooker]] and [[Lancelot Andrewes]]. Cranmer had studied in Europe and was influenced by the ideas of the [[Protestant Reformation|Reformation]] and had also married despite being a priest. Because Cranmer and other leaders of the Church of England had been ordained by bishops in the [[Apostolic Succession]], and passed on that ordination to their successors, Anglicans consider that they have retained the historic apostolic succession, but differ as to how significant this is.
66106
66107 During the short reign of [[Edward VI of England |Edward VI]], Henry's son, Cranmer was able to move the Church of England significantly towards a more Protestant [[Calvinist]] position. The first [[Book of Common Prayer]] dates from this period. This reform was reversed abruptly in the subsequent reign of [[Mary I of England|Queen Mary]]. Only under [[Elizabeth I of England|Queen Elizabeth I]] was the English church established as a reformed Catholic church that was accepting of Calvinistic and Evangelical theology.
66108
66109 In the 16th century religious life was an important part of the cement which held society together. Differences in religion were likely to lead to civil unrest at the very least, with treason and foreign invasion possibly thrown in as well. Elizabeth's solution to the problem of minimising bloodshed over religion in her dominions was a [[Elizabethan Religious Settlement|religious settlement]] which prescribed a fixed, sparer form of worship, in the vernacular, in which everyone was expected to take part, i.e. ''common prayer'', but a belief system formulated in a way that would allow people with different understandings of what the Bible taught to give assent. The Protestant principle that all things must be proved by scripture was endorsed in article VI of the [[Thirty-nine Articles]], so that no one could be required to believe anything unless it could be clearly proved from the Scriptures. This did recognise that there were areas where the Bible did not give clear cut teaching, where differences of opinion among Christians were legitimate. The bulk of the population was willing to go along with Elizabeth's religious settlement, but extremists at both ends of the theological spectrum would have nothing to do with it, and cracks in the façade of religious unity in England were appearing.
66110
66111 For the next century there were significant swings back and forth between the [[Puritan]]s and those with a less Reformed understanding of Anglicanism. It must be understood that the concept of religious freedom was in those days neither understood nor accepted by many people, and that the groups involved in the struggle were aiming for control, not freedom. By continental standards the level of violence over religion was not high, but among the casualties were a king ([[Charles I of England|Charles I]]) and an Archbishop of Canterbury ([[William Laud]]). The final outcome in [[1660]] after the [[English Restoration|Restoration]] of [[Charles II of England|Charles II]] was not too far removed from the Elizabethan ideal. One difference was that the ideal of encompassing all the people of England in one religious organisation, taken for granted by the [[Tudors]], had to be abandoned. The religious landscape of England assumed its present form, with an Anglican established church occupying the middle ground, and the two extremes, Roman Catholic and those Puritans who dissented from the establishment, too strong to be suppressed altogether, having to continue their existence outside the national church, rather than controlling it. The English Reformation may be said to have ended at this point.
66112
66113 The Elizabethan settlement failed in that it was never able to gain the assent of the entire English people. Yet as the Anglican form of Christianity is now flourishing in many parts of the world far away from England it may possibly have succeeded beyond the wildest expectations of anybody alive in the sixteenth and seventeenth centuries.
66114
66115 ==Leadership==
66116
66117 The [[Archbishop of Canterbury]] has a precedence of honour over the other archbishops of the Anglican Communion. He is recognised as [[primus inter pares]], or first amongst equals. The Archbishop of Canterbury, however, does not exercise any direct authority in the provinces outside England. The current Archbishop of Canterbury, [[Rowan Williams]], as former [[Archbishop of Wales]], is the first primate appointed from outside the Church of England since the Reformation. All Anglican priests have Apostolic Succession.
66118
66119 Since the reign of [[Henry VIII of England|Henry VIII]] ultimate authority in the [[Church of England]] has been vested in the reigning monarch. Since the time of [[Elizabeth I of England|Elizabeth I]] the sovereign's title has been 'Supreme Governor' rather than 'Head' of the Church of England. In practice this means that the monarch has the responsibility of seeing that the administrative machinery of the church is running smoothly, and in particular that new bishops are appointed when needed. Today this responsibility is discharged by the Prime Minister. Anglican churches outside England do not have this relationship with the British monarch, however it remains the case that the Archbishop of Canterbury, leader of the worldwide Anglican Communion, is appointed by [[the Crown]] of the United Kingdom (in theory; in practice by the [[Prime Minister of the United Kingdom|Prime Minister]]).
66120
66121 ==Churches==
66122 Anglicanism is most commonly identified with the established [[Church of England]], but Anglican churches exist in most parts of the world. In some countries (e.g., the [[United States]], [[Scotland]]) the Anglican church is known as Episcopal, from the Latin ''episcopus'', &quot;[[bishop]]&quot;, which comes from a [[Greek language|Greek]] word literally meaning an &quot;overseer.&quot; Some Anglican churches are not in communion with the Archbishop of Canterbury but consider themselves ''Anglican'' because they retain practices of the Church of England and the [[Book of Common Prayer]].
66123
66124 Each [[national church]] or [[province (Anglican)|province]] is headed by a [[Primate (religion)|Primate]] called a [[Primus of Scotland|Primus]] in the [[Scottish Episcopal Church]], an [[Archbishop]] in most countries, a [[Presiding Bishop]] in the [[Episcopal Church in the United States of America|Episcopal Church USA]] and a Prime Bishop in the Philippine Episcopal Church. These churches are divided into a number of dioceses, usually corresponding to state or metropolitan divisions.
66125
66126 There are three orders of the ordained ministry: [[deacon]], [[priest]] and [[bishop]]. No requirement is made for [[clerical celibacy]] and women may be ordained as deacons in almost all provinces, as priests in some, and as bishops in a few provinces. Religious orders of monks, brothers, sisters and nuns were suppressed in England during the Reformation but have made a reappearance in Victorian times and thrive today.
66127
66128 Those Anglican churches &quot;in [[full communion|communion]]&quot; with the See of [[Canterbury, Kent|Canterbury]] constitute the [[Anglican Communion]], a formal organisation made up of churches at the national level. However, there are a large number of denominations (albeit insignificant in terms of number of adherents) which call themselves Anglican that are known as the &quot;[[Anglican continuing churches|continuing church]]&quot; movement and do not acknowledge the Anglican Communion. They are generally conservative-to-traditionalist and, to a varying degree [[Anglo-Catholicism|Anglo-Catholic]] in their doctrinal orientation, but tend to side politically with [[Evangelicalism|Evangelicals]] of the right; some, however, are at the extreme evangelical end of the churchmanship spectrum, such as the [[Church of England in South Africa]] (not in communion in Canterbury but in communion with the [[Diocese of Sydney]]), and the [[Reformed Episcopal Church]]. They consider the Church of England and the [[Episcopal Church in the United States of America]], as well as some other member churches of the Anglican Communion, to have departed from the historic faith by ordaining women, by ordaining openly gay people, by altering the theological emphases of the 1928 [[Book of Common Prayer]] of the Episcopal Church of the United States or the 1662 Book of Common Prayer of the Church of England, and by loosening the Church's traditional regulations concerning sexual and marital matters. There are also those independent jurisdictions, such as The National Anglican Catholic Church of the United States - which uses Anglican, Catholic and Lutheran principles in their doctrine. In the Indian subcontinent Anglican churches have entered into formal union with evangelical protestant denominations while remaining part of the Anglican Communion and indeed bringing their Presbyterian and other historically non-Anglican fellows along with them. As a percentage of the total population these united churches are not significant but numerically they are very substantial other than in Bangladesh. See [[Church of North India]], [[Church of South India]], [[Church of Pakistan]] and [[Church of Bangladesh]].
66129
66130 ==Doctrine==
66131
66132 Anglicans look for authority (in the formula of [[Richard Hooker (theologian)|Richard Hooker]]) in the experience of Scripture, Reason, and Tradition (the practices and writings of the historical church). While it is often taught that these three are of equal value (using an image of a three-legged stool), the Anglican formularies have always pointed out that:
66133
66134 ::&quot;Scripture containeth all things necessary to salvation: so that whatsoever is not read therein, nor may be proved thereby, is not to be required of any man, that it should be believed as an article of the Faith, or be thought requisite or necessary to salvation.&quot; (Article VI, The [[Thirty-nine Articles|Anglican Thirty-nine Articles of Religion]]).
66135
66136 Historically, Anglicans have regarded the [[Bible]], the three Creeds ([[Nicene Creed]], [[Apostles' Creed]], and [[Athanasian Creed]]), the [[Thirty-Nine Articles]] of Religion and the [[Book of Common Prayer]] (1662) as the principal norms of doctrine. Thus, some have said that the Anglican Church retains much of the liturgy of the Roman Catholic Church, but is tolerant of [[Reformed]] doctrine. This state of affairs is a consequence of the [[Elizabethan Religious Settlement]]. The traditional liturgy of Anglicanism, the 1662 Book of Common Prayer, has been considered &quot;too Catholic&quot; by those of Puritan leanings in the 16th century and Evangelicals in later periods, and &quot;too Evangelical&quot; by those of [[Anglo-Catholicism|Anglo-Catholic]] leanings.
66137
66138 This distinction is routinely a matter of debate both within specific Anglican Churches and throughout the Anglican Communion by members themselves. Since the [[Oxford Movement]] of the mid-19th century, many churches of the Communion have embraced and extended liturgical and pastoral practices dissimilar with most Reformed Protestant theology. This extends beyond the ceremony of [[High Church]] services to even more theologically significant territory. Some Anglican clergy practise all seven of the [[sacraments]] in a marked way, in departure from the teaching of early Protestant thinkers like [[John Calvin]] and [[Martin Luther]], even though opinions vary about the best way to understand these &quot;sacramental rites&quot;. For example, some Anglican clergy will hear private confessions from their parishioners, a practice widely discontinued in Protestant denominations. Nevertheless, while Anglo-Catholic practices, particularly liturgical ones, have become much more mainstream within the denomination over the last century, there remain many areas where practices and beliefs remain on the more Protestant or Evangelical side of the debate.
66139
66140 ==Churchmanship==
66141
66142 Anglicanism has always been characterised by diversity in theology and the ceremonial (or lack thereof) of the liturgy. Different individuals, groups, parishes, dioceses, and national churches may identify more with Catholic traditions and theology or, alternatively, with the principles of Evangelicalism.
66143
66144 Some Anglicans follow such devotional practices common among Roman Catholics as solemn benediction of the reserved sacrament, use of the [[rosary]], or of [[anglican prayer beads]], and prayer to the departed saints, which is contrary to the teaching of some of the English Reformers. Some give greater weight to the [[deuterocanonical books|deuterocanonical]] books of the Bible. (See [[Biblical canon]].) Officially, Anglican teaching is that these books may be read in church for their instruction in morals, but not used to establish any doctrine. In recent years, prayer books (or &quot;alternate services&quot; books) of several countries have, out of deference to a greater agreement with Eastern [[Conciliarism]] (and a perceived greater respect accorded Anglicanism by Eastern Orthodoxy than by Roman Catholicism), instituted a number of historically Eastern and [[Oriental Orthodox]] elements in their liturgies, including replacing the [[Gloria in excelsis]] with the [[Trisagion]] and deleting the [[filioque]] from the [[Creed]].
66145
66146 For their part, those Anglicans who emphasise the Reformed-Protestant nature of the Church stress the Reformation themes of [[Salvation#Christian views of salvation|salvation]] by grace through faith, the two dominical sacraments of the Gospel, and Scripture as containing all that is necessary to salvation in an explicit sense.
66147
66148 The range of Anglican belief and practice became particularly divisive during the 19th century, as the [[Anglo-Catholicism | Anglo-Catholic]] and [[Evangelicalism|Evangelical]] movements emphasised the more Catholic or the more Reformed sides of Anglican Christianity. These groups or &quot;parties&quot; are still often equated with the terms &quot;High Church&quot; and &quot;Low Church&quot;, and these terms are commonly used to speak of the level of ceremony that is favoured. These terms are also used to discuss the theological place of the organised church within the Body of Christ.
66149
66150 The spectrum of Anglican beliefs and practice is too large to be fit into these labels. Most Anglicans are broadly Evangelical and Catholic and, in fact, stress that Anglicanism, rightly understood, is western Christianity's &quot;[[Via Media]]&quot; (middle way) between what were considered medieval &quot;excesses&quot; of Roman Catholicism and the &quot;excesses&quot; of the fervent European Continental Protestantism, represented strongly by Geneva. Via Media may also be understood as underscoring Anglicanism's preference for a communitarian and methodological approach to theological issues rather than either total relativism on the one hand or dogmatic absolutism on the other.
66151
66152 The nineteenth century saw new heights of intellectual activity in the Anglican Church. Since that time, the theological contributions of the Church to the wider spectrum of Christian thought have declined somewhat, though there is some resurgence on Anglicanism's theological left. Another recent trend has been the emergence of fundamentalism in some strands of Anglicanism. Fundamentalism, seen as an anti-intellectual movement, rejects all but the most literal readings of the Bible. This controversial doctrine is regarded by most as highly divisive, rejecting all prior tradition and is seen by its critics as a reactionary measure by those who cannot cope with the relativisation of truth that has been a predominant feature of the post-modernist epoch. Traditionally, Anglicanism had been associated with the English university systems and hence, the literary criticism produced in those organisations has been applied to the study of ancient scriptures, although not uncritically.
66153
66154 ==Social issues==
66155
66156 A question of whether or not Christianity is a pacifist religion has remained a matter of debate for Anglicans. In 1937, the Anglican Pacifist Fellowship emerged as a distinct reform organisation, seeking to make pacifism a clearly defined part of Anglican theology. The group rapidly gained popularity amongst Anglican intellectuals, including [[Vera Brittain]], [[Evelyn Underhill]] and former British political leader [[George Lansbury]].
66157
66158 Whilst never actively endorsed by the Anglican Church, many Anglicans unofficially have adopted the Augustinian &quot;[[the Just War Theory|Just War]]&quot; doctrine. The Anglican Pacifist Fellowship remain highly active and rejects this doctrine. The Fellowship seeks to reform the Church by reintroducing the [[pacifism]] inherent in the beliefs of many of the earliest Christians and present in their interpretation of Christ's [[Sermon on the Mount]]. Confusing the matter all the more however, is that the 37th Article of Religion states clearly that &quot;it is lawful for Christian men, at the commandment of the Magistrate, to wear weapons, and serve in the wars.&quot;
66159
66160 ==Religious life==
66161
66162 A small yet influential aspect of Anglicanism is its [[religious order]]s of [[monk]]s and [[nun]]s. Shortly after the beginning of the revival of the [[Anglo-Catholicism|Catholic Movement]] in the Church of England, there was felt to be a need for some Anglican [[Sisters of Charity]]. In the 1840s Mother [[Priscilla Lydia Sellon]] became the first woman to take the vows of religion in communion with the [[Province of Canterbury]] since the Reformation, and a series of letters were exchanged publically between her and the Rev. James [[Spurrell]], Vicar of Great Shelford, Cambs., who criticised Miss Sellon's Sisters of Mercy. From the 1840s and throughout the next hundred years, religious orders for both men and women proliferated in the [[UK]], the [[United States]], [[Canada]], and [[India]], as well as in various countries of [[Africa]], [[Asia]], and the [[Pacific]].
66163
66164 Anglican religious life at one time boasted hundreds of orders and communities, and thousands of [[religious]]. An important aspect of Anglican religious life is that most communities of both men and women lived their lives consecrated to [[God]] under the [[vow]]s of [[poverty]], [[sexual abstinence|chastity]] and [[obedience]] (or in [[Benedictine]] communities, Stability, Conversion of Life, and Obedience) by practicing a mixed life of reciting the full eight services of the [[Breviary]] in choir, along with a daily [[Eucharist]], plus service to the poor. The mixed life, combining aspects of the [[contemplative order]]s and the [[active order]]s remains to this day a hallmark of Anglican religious life.
66165
66166 Since the 1960s there has been a sharp falling off in the numbers of religious in most parts of the Anglican Communion, just as in the Roman Catholic Church. Many once large and international communities have been reduced to a single convent or monastery comprised of elderly men or women. In the last few decades of the 20th century, novices have for most communities been few and far between. Some orders and communities have already become extinct.
66167
66168 There are however, still several thousand Anglican religious working today in approximately 200 communities around the world.
66169
66170 The most significant growth has been in the [[Melanesia]]n countries of the [[Solomon Islands]], [[Vanuatu]] and [[Papua New Guinea]]. The [[Melanesian Brotherhood]], founded at [[Tabalia]], [[Guadalcanal (Pacific Ocean island)|Guadalcanal]], in [[1925]] by Ini Kopuria, is now the largest Anglican Community in the world with over 450 [[monk|brother]]s in the Solomon Islands, Vanuatu, Papua New Guinea, the [[Philippines]] and the United Kingdom. The [[Sisters of the Church]], started by Mother Emily Ayckbown in England in 1870, has more [[nun|sisters]] in the Solomons than all their other communities. The [[Community of the Sisters of Melanesia]], started in 1980 by Sister Nesta Tiboe, is a growing community of women throughout the Solomon Islands. The [[Society of Saint Francis]], founded as a union of various [[Franciscan]] orders in the 1920s, has experienced great growth in the Solomon Islands. Other communities of religious have been started by Anglicans in Papua New Guinea and in Vanuatu. Most Melanesian Anglican religious are in their early to mid 20s -- vows may be temporary and it is generally assumed that brothers, at least, will leave and marry in due course -- making the average age 40 to 50 years younger than their brothers and sisters in other countries. This growth is especially surprising because celibacy was not regarded as a Melanesian virtue; on the other hand, it is perhaps more accurate to conceptualise Melanesian religious as youth volunteers than as monastic orders on the medieval European model.
66171
66172 == Bibliography ==
66173
66174 * {{cite book
66175 | first = Norman | last = Doe
66176 | year = 1998
66177 | title = Canon Law in the Anglican Communion: A Worldwide Perspective
66178 | location = [[Oxford]]
66179 | publisher = Clarendon Press
66180 | id = ISBN 0198267827
66181 }}
66182
66183 * {{cite book
66184 | author = Hein, David (compiler)
66185 | authorlink = David Hein
66186 | year = 1991
66187 | title = Readings in Anglican Spirituality
66188 | location = Cincinnati
66189 | publisher = Forward Movement Publications
66190 | id = ISBN 0880281251
66191 }}
66192
66193 * {{cite book
66194 | author = Hein, David, and Gardiner H. Shattuck Jr.
66195 | year = 2005
66196 | title = The Episcopalians
66197 | location = New York
66198 | publisher = Church Publishing
66199 }}
66200
66201 * {{cite book
66202 | first = R.C.D. | last = Jasper
66203 | authorlink = R.C.D. Jasper
66204 | year = 1989
66205 | title = The Development of the Anglican Liturgy, 1662-1980
66206 | location = London
66207 | publisher = SPCK
66208 }}
66209
66210 * {{cite book
66211 | author = More and Cross
66212 | title = Anglicanism
66213 }}
66214
66215 * {{cite book
66216 | first = Stephen | last = Neill
66217 | authorlink = Stephen Neill
66218 | title = Anglicanism
66219 }}
66220
66221 * {{cite book
66222 | first = William L. | last = Sachs
66223 | authorlink = William L. Sachs
66224 | year = 1993
66225 | title = The Transformation of Anglicanism: From State Church to Global Community
66226 | location = [[Cambridge]]
66227 | publisher = Cambridge University Press
66228 }}
66229
66230 * {{cite book
66231 | author = [[Stephen Sykes|Sykes, Stephen]], [[John Booty|Booty, John]], &amp; [[Jonathan Knight (theologist)|Knight, Jonathan]], (eds.)
66232 | title = The Study of Anglicanism
66233 | location = Minneapolis, MN
66234 | publisher = Fortress Press
66235 }}
66236
66237 * {{cite book
66238 | first = William | last = Temple
66239 | authorlink = William Temple
66240 | title = Doctrine in the Church of England
66241 }}
66242
66243 ==See also==
66244
66245 *[[Marian exiles]]
66246 *[[Congregationalism]]
66247 *[[Continuing Anglican Movement]]
66248 *[[Anglican Use]]
66249 *[[Anglican prayer beads]]
66250 *[[Anglican Church of Canada]]
66251 *[[Anglican Church of Australia]]
66252 *[[Sydney Anglicans]]
66253 *[[Christianity]]
66254 *[[Christian apologetics]]
66255 *[[Morning Prayer]]
66256 *[[Evensong]]
66257 *[[Methodism]]
66258 *[[Presbyterianism]]
66259 *[[Puritans]]
66260 *[[Baptists]]
66261 *[[Episcopal Church in the United States]]
66262 *[[United and uniting churches]]
66263 **[[Church of South India]]
66264 **[[Church of North India]]
66265 **[[Church of Pakistan]]
66266 **[[Church of Bangladesh]]
66267
66268 == External links ==
66269
66270 *[http://www.anglicancommunion.org Anglican Communion] - The official site of the Anglican Communion.
66271 *[http://www.cofe.anglican.org/faith/anglican/ What it means to be an Anglican: Official CofE site]
66272 *[http://www.anglicansonline.org Anglicans Online] - An unofficial site of the Anglican Communion. One of the biggest resources of Anglicanism in the world.
66273 *[http://justus.anglican.org/resources/pc/ Anglican historical texts]
66274 *[http://www.religionfacts.com/christianity/denominations/anglicanism.htm Anglicanism: ReligionFacts.com] - Articles on Anglican history, ritual, and organisation, plus an image gallery of people and places.
66275 *[http://www.anglicanpeacemaker.org.uk/ Anglican Pacifist Fellowship] - The official site of the Anglican Church's peace movement.
66276
66277 {{Anglican Churches}}
66278
66279 [[Category:Anglicanism|*]]
66280 [[Category:Religion in the United Kingdom]]
66281 [[Category:Christian denominations]]
66282 [[Category:Protestantism]]
66283
66284 [[ca:Anglicanisme]]
66285 [[cs:AnglikÃĄnství]]
66286 [[de:Anglikanismus]]
66287 [[es:Anglicanismo]]
66288 [[eo:Anglikanismo]]
66289 [[fr:Anglicanisme]]
66290 [[ko:ė„ąęŗĩ회]]
66291 [[ia:Anglicanismo]]
66292 [[it:Anglicanesimo]]
66293 [[he:אנגליקניו×Ē]]
66294 [[nl:Anglicaanse Kerk]]
66295 [[ja:聖å…Ŧäŧš]]
66296 [[no:Den anglikanske kirke]]
66297 [[pl:Anglikanizm]]
66298 [[ru:АĐŊĐŗĐģиĐēĐ°ĐŊŅĐēĐ°Ņ Ņ†ĐĩŅ€ĐēОвŅŒ]]
66299 [[fi:Anglikaanikirkko]]
66300 [[scn:Chiesa Anglicana]]
66301 [[sv:Anglikanska kyrkogemenskapen]]
66302 [[vi:Anh giÃĄo]]
66303 [[zh:聖å…Ŧ會]]</text>
66304 </revision>
66305 </page>
66306 <page>
66307 <title>Airplane (disambiguation)</title>
66308 <id>1215</id>
66309 <revision>
66310 <id>40510443</id>
66311 <timestamp>2006-02-21T02:28:42Z</timestamp>
66312 <contributor>
66313 <username>Ceyockey</username>
66314 <id>150564</id>
66315 </contributor>
66316 <minor />
66317 <comment>revisions for style</comment>
66318 <text xml:space="preserve">The term '''airplane''' typically refers to any [[fixed-wing aircraft]], also known internationally as ''aeroplane''.
66319
66320 '''Airplane''' has several additional meanings:
66321 * ''[[Airplane!]]'', a 1980 American comedy film
66322 * [[Jefferson Airplane]], often referred to as &quot;Airplane&quot;, an American rock music band
66323
66324 {{Wiktionarypar2|aeroplane|airplane}}
66325 {{disambig}}</text>
66326 </revision>
66327 </page>
66328 <page>
66329 <title>Athens</title>
66330 <id>1216</id>
66331 <revision>
66332 <id>41947106</id>
66333 <timestamp>2006-03-02T20:37:05Z</timestamp>
66334 <contributor>
66335 <ip>217.9.28.30</ip>
66336 </contributor>
66337 <comment>/* 20th century architecture in Athens */</comment>
66338 <text xml:space="preserve">{{dablink|This is an article about the capital of Greece. For other uses see [[Athens (disambiguation)]].}}
66339 {{Infobox Town GR
66340 |name = Athens
66341 |name_local = ΑθήÎŊÎą
66342 |image_coa =
66343 |image_map = GreeceAttica.png
66344 |periph = [[Attica]]
66345 |prefec = [[Athens Prefecture|Athens]]
66346 |province =
66347 |population = 745,514
66348 |population_as_of = 2001
66349 |population_ref = [http://www.statistics.gr/gr_tables/S1100_SAP_1_monimos2001.htm source]
66350 |pop_dens = 19,133
66351 |area = 39.0
66352 |elevation = 70
66353 |lat_deg = 38
66354 |lat_min = 0
66355 |lat_hem = N
66356 |lon_deg = 23
66357 |lon_min = 43
66358 |lon_hem = E
66359 |postal_code = 10x xx, 11x xx, 120 xx
66360 |area_code = 210
66361 |licence = Y, Z
66362 |mayor = Theodoros Mpehrakis
66363 |website = [http://www.cityofathens.gr www.cityofathens.gr]
66364 }}
66365 '''Athens''' ([[Greek language|Greek]]: ΑθήÎŊÎą ''Athína'' [[International Phonetic Alphabet|IPA]] {{IPA|/a'θina/}}) is the [[capital]] of [[Greece]] and one of the most famous cities in the world. Modern Athens is a large and cosmopolitan city; Ancient Athens was a powerful [[city-state]] and renowned centre of learning. It was named after its goddess from ancient Greek mythology, [[Athena]]. Athens is located at {{coor dm|38|00|N|23|43|E|}} (38.00°, 23.72°).
66366
66367 The metropolitan area of Athens is home to some 3.9 million people. Currently the city (metropolitan area) is growing northwards and eastwards across [[Attica]] (Greater Athens). Athens is the dominant centre of economic, cultural, and political life in Greece today.
66368
66369 Ancient Athens has often been called the cradle of [[Western civilization]] due to the impact of its cultural and political achievements during the 4th and 5th centuries BC. This heritage has left it with a number of ancient buildings, monuments and artworks, the most famous being the [[Parthenon]] on the [[Acropolis]], widely regarded as one of the finest examples of Classical Greek art and architecture. Many of these cultural landmarks were renovated for the [[2004 Olympic Games]].
66370 [[image:ac.parthenon5.jpg|thumb|right|250px|The [[Parthenon]] seen from the hill of the Pnyx to the west]]
66371
66372 ==Name==
66373 {{nameWikt}}
66374
66375 In [[ancient Greek|ancient]] [[Greek language|Greek]], the name of Athens was '''{{Polytonic|&amp;#7944;θ&amp;#8134;ÎŊιΚ}}'''-''Athenai'', plural of {{Polytonic|&amp;#7944;θΡÎŊÎŦ}}-''Athene'', the Greek name of the Goddess [[Athena]]. The city's name was used in the plural like those of {{Polytonic|Θ&amp;#8134;βιΚ}}-''Thebai'' ([[Thebes, Greece|Thebes]]) and {{Polytonic|ΜĪ…Îē&amp;#8134;ÎŊιΚ}}-''Mykenai'' ([[Mycenae]]) because it consisted of several parts. In the [[19th century]], this name was formally re-adopted as the city's name. Since the official abandonment of [[Katharevousa]] Greek in the [[1970s]], however, the popular form ''Athínai'' has become the city's official name. See also a list of [[Names of European cities in different languages#A|alternative names]] for Athens.
66376
66377 ==History==
66378 ''Main article: [[History of Athens]]''
66379 [[Image:Map Athens MKL1888.png|thumb|1888 German map of Athens]]
66380 Athens was the leading city in Greece during the greatest period of Greek civilization during the [[1st millennium BC]]. During the &quot;Golden Age&quot; of Greece (roughly [[500 BC]] to [[300 BC]]) it was the world's leading cultural, commercial and intellectual center, and indeed it is in the ideas and practices of ancient Athens that what we now call &quot;Western civilization&quot; has its origins. In 431 B.C, Athens went to war with another city-state, Sparta. Due to its losses during a plague, Athens was defeated by Sparta, and its walls were pulled down.
66381
66382 The schools of philosophy were closed in AD [[529]] by the Christian [[Byzantine Empire]], which disapproved of the schools' [[Paganism|pagan]] thinking. During the Byzantine era, Athens gradually lost a great deal of status and, by the time of the [[Crusades]], it was already reduced to a provincial town. It faced a crushing blow between the 13th and 15th centuries, when the city was fought over by the Greek Byzantines and the 'French' and Italian [[Crusaders]]. In [[1458]] the city fell to the [[Ottoman Empire]] under Sultan [[Mehmed II|Mehmet II the Conqueror]]. As the Emperor entered the city, he was greatly struck by the beauty of its ancient monuments and issued a [[firman]] (imperial decree) that Athens' ruins not be disturbed, on pain of death. The [[Parthenon]] was in fact converted into a [[mosque]] and therefore preserved.
66383
66384 Despite the Sultan's good intentions to preserve Athens as a model Ottoman provincial capital, the city's population went into decline and conditions worsened as the Ottoman Empire declined from the late 17th Century. As time went by, the Ottoman administration slackened its care for Athens' old buildings; the Parthenon/Mosque was used as a warehouse for ammunition during the Venetian siege of Athens in [[1687]], and consequently the temple was severely damaged when a Venetian [[projectile|shell]] targeted the site and set off several casks of gunpowder stored inside the Parthenon/Mosque.
66385
66386 The Ottoman Empire relinquished control of Athens after the [[Greek War of Independence]]. The city was inhabited by just around 5,000 people at the time it was adopted as the capital of the newly established Kingdom of Greece on [[18 September]] [[1834]]. During the next few decades the city was rebuilt into a modern city adhering mainly to the [[neoclassical architecture|Neoclassic style]]. In [[1896]] Athens became the first host city of the revived [[1896 Summer Olympics]].The next large expansion occurred in the [[1920s]] when suburbs were created to house Greek refugees from [[Asia Minor]]. During [[World War II]] the city was occupied by [[Germany]] and fared badly in the war's later years. After the war the city started to grow again, this time into a concrete jungle, seeing the near total destruction of its Neoclassical heritage.
66387
66388 ==Location and setting==
66389 &lt;!-- Unsourced image removed: [[Image:ZAPPION.jpg|thumb|left|The Zappion; a conference centre designed by [[Theofil Hansen]] in 1870, is surrounded by extensive gardens]] --&gt;
66390
66391 [[Image:Mk01n101.jpg|thumbnail|The Academy, designed by [[Theofil Hansen]] and completed in 1885, is flanked by the National Library and the University of Athens.]]
66392
66393 Along with its numerous suburbs, Athens has a population of about 3.9 million representing approximately one third of the total population of Greece. Athens grew rapidly in the years following [[World War II]] until ca. 1980 and suffered from overcrowding and traffic congestion. Greek entry into the [[EEC]] in [[1981]] brought new, unprecedented investment into the city along with problems of increasingly worsening industrial congestion and air pollution. Throughout the 1990s the city's authorities undertook a series of decisive measures in order to combat the smog which used to form over the city, particularly during the hottest days of the year. Even though Athens is considered the most polluted capital in Europe, those measures proved to be successful and nowadays smog or ''nefos'' in Greek is less of an issue for Athens, even when temperatures soar above 40 C. As far as the situation with the traffic congestion is concerned, the latter has been considerably improved, even though it is not resolved as yet. Part of this improvement is attributed both to the transformation of the once highly problematic Kiffissos Avenue into a modern, 8 lane urban motorway that stretches for more than 11 km along the ancient [[Kifissos]] River, linking many of Athens' western suburbs, from [[Peristeri]] to the port of [[Piraeus]] and to the construction of the [[Attiki Odos]] motorway. Nevertheless Athens is still not a driver-friendly city. Today Athens is a vibrant metropolis with improved infrastructure, world-class ancient monuments and museums, a legendary nightlife and increasing number of shopping malls.
66394
66395 Athens sprawls across the central plain of [[Attica]], which is bound by Mount [[Aegaleo]] in the west, Mount [[Parnitha]] in the north, Mount [[Penteli]] in the northeast, Mount [[Hymettus]] in the east, and the [[Saronic Gulf]] in the southwest. Athens has expanded to cover the entire plain making it difficult to significantly grow further in size in the future due to the forementioned existing natural boundaries. The geomorphology of the city frequently causes the so called [[temperature inversion]] phenomenon that was partly responsible for the air pollution problems Athens faced in the recent past. ([[Los Angeles, California|Los Angeles]] has similar geomorphology and similar problems).
66396
66397 The ancient site of the city is centered on the rocky hill of the [[Acropolis]]. In ancient times the port of [[Piraeus]] (modern name Pireas) was a separate city, but it has now been absorbed into greater Athens.
66398
66399 The centre of the city is [[Syntagma Square]] (Constitution Square), site of the former Royal Palace, now the [[Hellenic Parliament|Greek Parliament]] and other 19th century public buildings. This is essentially the core of the city, the place where most of the famous ancient monuments are located, all within a radius of 2 km.
66400 [[Image:Panorama_of_Athens.jpg|thumbnail|320px|Panorama of Athens, showing the [[Acropolis]] and other ancient sites.]]
66401 Athens was the host of the [[2004 Summer Olympics]]. Athens was also the host of the [[1896 Summer Olympics]] and of the [[1906 Summer Olympics|1906 Intercalated Games]].
66402
66403 ==Tourist attractions==
66404 Athens has been a popular [[tourist destination]] even since antiquity. Visitors from all over the globe have always been eager to visit its famous ancient monuments. Over the past decade, the infrastructure and social amenities of Athens have been radically improved as a result of the city's successful bid to stage the [[2004]] [[Olympic Games]]. The Greek state, aided by the [[European Union|E.U.]], has poured money into infrastructure projects such as the new, state of the art [[Eleftherios Venizelos Airport|&quot;Eleftherios Venizelos&quot; International Airport]], the massive expansion of the [[Athens Metro|Metro]] system, and the new [[Attiki Odos]] ring-road. As a result, the numbers of international visitors are only expected to rise even further in the coming years. Currently, Athens is the 6th most visited capital in Europe.
66405
66406 Athens is home to a vast number of 5 and 4 star hotels, some of which were refurbished ahead of the 2004 Olympics. Entire parts of the downtown area have also been redeveloped under a masterplan called &quot;Unification of Archaeological Sites of Athens&quot; [http://www.astynet.gr/index.asp]. In one of the most important projects of the scheme, the famous Dionysiou Aeropagitou street has been pedestrianized thus forming a fascinating scenic route. The route starts from the [[Temple of Olympian Zeus]] at Vasilissis Olgas Avenue, continues under the southern slopes of the [[Acropolis]] near [[Plaka]] and finishes just outside the [[Temple of Hephaestus]] in [[Theseum]]. This remarkable route provides the visitors breathtaking views of the [[Parthenon]] and the [[ancient Agora of Athens|Agora]] (the meeting point of ancient Athenians), away from the bustle and hustle of the city centre. Near Syntagma Square (described above) stands the highly impressive [[Kallimarmaro]] Stadium, the place where the first modern [[1896 Summer Olympics|Olympic Games]] took place in [[1896]]. It is a replica of the ancient Athens Stadium. It holds a special interest, not only for romantic reasons but also because it is the only major stadium (60,000 spectators) made entirely of white marble from [[Penteli]], the same as the one used for the construction of the Parthenon.
66407
66408 &lt;!-- Image with unknown copyright status removed: [[Image:Kallimarmaron.jpg|thumb|200px|right|Kallimarmaro Stadium of Athens]] --&gt;
66409 The city's classic museums like the National Archaeological [[Museum]] at Patission Street (which holds the world's greatest collection of [[Greek art]]), the Benaki Museum in Piraeus Street (including its new Islamic Art branch) [http://www.benaki.gr], the Byzantine Museum, or the Museum of Cycladic Art in the Kolonaki district (strongly recommended for its collection of elegant white metamodern figures, more than 3,000 years old) [http://www.cycladic-m.gr], were all renovated ahead of the 2004 Olympics. A new Acropolis Museum is being built [http://www.culture.gr/2/21/215/21502/e21509c.html] in the central Makriyanni district according to a design by acclaimed Swiss-french architect [[Bernard Tschumi]]. Not to be missed is also the very impressive Athens [[Planetarium]] [http://www.eugenfound.edu.gr], considered to be among the world's best.
66410
66411 The old campus of the [[University of Athens]], located in the middle section of Panepistimiou Avenue, is one of the finest buildings in the city. This combined with the adjacent National Library and the Athens Academy form the imposing &quot;Athens Trilogy&quot;, built in the mid-19th century. However, most of the university's functions have been moved to a much larger, modern campus located in the eastern suburb of [[Zografou|ZogrÃĄfou]]. The second most significant academic institution of the city is the [[National Technical University of Athens|Athens Polytechnic School]] (''Ethniko Metsovio Politechnio''), located in Patission Street. More than 20 students were killed inside the School in [[November 17]],[[1973]] during the [[Athens Polytechnic Uprising]] against the military junta that ruled the nation from [[April 21]], [[1967]] untill [[July 23]], [[1974]].
66412
66413 '''Entertainment''' and '''night life''': Athens is full of possibilities, catering for most tastes and cultures. To begin with, it has a large number of multiplex, but especially unique, open air garden cinemas; it enjoys more theatres than any other European city (including ancient marble ones that are home to the Athens Festival [http://www.hellenicfestival.gr/site/index_en.htm] from May to October) and many music venues including a state of the art [[music]] hall known as the &quot;Megaron Moussikis&quot; [http://www.megaron.gr] that attracts world-famous artists all year round. The Athens coastline, extending from the major commercial port of [[Piraeus]] to the southernmost suburb of Vouliagmeni for more than 25 km, is also connected to the city centre with a (very slow) tram and it boasts a series of high class restaurants, cafes, exciting music venues and sports facilities. In addition, Athens is packed with trendy and fashionable bars and nightclubs that are literally crowded by the city's youth on a daily basis. Especially during the summer, the southern elegant suburbs of [[Glyfada]], [[Voula]] and [[Vouliagmeni]] become home to countless such places, situated all along Poseidonos and Alkyonidon Avenues.
66414
66415 Turning now to the city centre, the Psiri neighborhood - aka Athens' 'meat packing district'- has acquired many new mainstream bars, thus becoming a hotspot for many glitratti. It also features a number of live music restaurants called &quot;rebetadika&quot;, after [[rebetiko]], a unique kind of music that blossomed in [[Syros]] and Athens from the 1920's till the 1960's. [[Rebetiko]] is admired by many, therefore virtually every night rebetadika get crammed by people of all ages that will sing, dance and drink wine until the dawn. [[Plaka]] remains the traditional top tourist destination, with many [[taverna]]s featuring 'traditional' music, but the food, though very good, is often more expensive compared to other parts of the city. Plaka, lying just beneath the Acropolis, is famous for its numerous neoclassic buildings, making it one of the most scenic districts in central Athens. Monastiraki, on the other hand, is famous for its string of small tourist shops as well as its crowded flea market and the tavernas that specialize in [[souvlaki]]. Another district notably famous for its student-crammed, stylish cafes is [[Theseum]], lying just west of [[Monastiraki]]. Theseum, or Thission is home to the remarkable ancient [[Temple of Hephaestus]], standing on top of a small hill. The Gazi area, one of the latest in full redevelopment, is located around a historic gas factory in downtown Athens, that has been converted into the ''Technopolis'' (Athens's new cultural multiplex) for all the family and has a number of expensive small clubs, bars and restaurants as well as Athens' nascent gay ;village'.
66416
66417 The chic [[Kolonaki]] area, near Syntagma Square, is full of boutiques catering to well-heeled customers by day and bars and restaurants by night. Ermou Street, an approximately 1 km pedestrian road connecting [[Syntagma Square]] to [[Monastiraki]], has traditionally been considered a consumer paradise for both the Athenians and foreign tourists. Full of fashion shops and shopping centers featuring most international brands, it has become one of the most expensive roads in [[Europe]]. Huge malls such as the &quot;Attica&quot; mall in Panepistimiou Avenue and &quot;The Mall Athens&quot; [http://www.themallathens.gr] located in the classy northern suburb of [[Maroussi]] also offer an enormous variety of international selections that can totally satisfy even the most demanding customer. Some central areas (mostly just south of [[Omonoia Square]]) are mainly peopled by immigrants and are therefore full of colorful ethnic restaurants and shops. [[Image:Lykavittos uncropped.jpg|thumb|right|A panoramic view of Athens from the Lykavittos Hill.]]
66418 Casinos operate on both Mount Parnitha, some 30 km from downtown Athens (accessible by car or cable car) and the nearby town of [[Loutraki]] (accessible by car via the Athens - Corinth National Highway or the suburban railway). An entirely new attraction is the massively upgraded main Olympic Complex (known by its Greek acronym OAKA). The whole area has been redeveloped under designs by the Spanish architect [[Santiago Calatrava]] with steel arches, lanscaped gardens, fountains, futuristic passages and a landmark new blue glass roof which was added to the main Stadium. A second olympic complex, next to the sea at the beach of [[Kallithea]] (Faliron), also boasts futuristic stadiums, shops and an elevated esplanade.
66419
66420 Many of Athens' southern suburbs (such as [[Alimos]], [[Palaio Faliro]], [[Elliniko]], [[Voula]], [[Vouliagmeni]] and [[Vari]]) host a number of beautiful, sandy beaches, most of which are operated by the Hellenic Tourism Organization [http://www.gnto.gr]. This means that one has to pay a fee in order to get in. None the less, this fee is not expensive in most cases and it includes a number of related, convenient services like parking facilities, coctail drinks and umbrellas. These beaches are extremely popular in the summer by both Athenians and foreign tourists. The city is also surrounded by four easily accessible mountains (Parnitha and Penteli to the north, Hemmettus to the southeast and Egaleo to the west). Mount Parnitha, in particular, is the tallest of all (1,453 m) and it has been declared a protected National Park. It has tens of well-marked paths, gorges, springs, torrents and caves and you may even meet deer or bears while exploring its dense forests. Hiking and mountain biking in all four mountains have been and still remain popular outdoor activities for many Athenians. What is more, [[Lykavittos]] is the tallest hill of the city that, according to an ancient legend, was actually a boulder thrown down by Goddess Athena. Located in the city center, near Alexandras' and Vassilisis Sofia's Avenues, it offers magnificent, literally breathtaking views of sprawling Athens that lies underneath. On top of it, stands the picturesque St. George's church which is definitely a must-see. The nearby islands of [[Salamis Island|Salamina]], [[Aegina|Aigina]], [[Poros]], [[Hydra, Saronic Islands|Hydra]] and [[Spetses]] are also sites of spectacular natural beauty and historical architecture. Work is underway to transform the grounds of the old Athens Airport - named [[Ellinikon International Airport|Hellinikon]] - in the southern suburbs into a massive landscaped park (considered to be the largest in Europe when ready). The Athens municipality maintains a site of tourist interest: http://www.cityofathens.gr/
66421
66422 === 20th century architecture in Athens ===
66423 *East terminal by [[Eero Saarinen]], at former Hellenikon airport, 1960-63
66424
66425 *American embassy by [[Walter Gropius]], at Vassilis Sophias Avenue, 1961
66426
66427 *[[Athens Olympic Sports Complex]], by [[Santiago Calatrava]] ([[2001]]-[[2004]]) ([http://users.auth.gr/~lvorgias/ sketches and models])
66428
66429 *National Bank at Aiolou Str./Sopholeous Str. by [[Mario Botta]] in 2002
66430
66431 *Bridge at Metro-station Katehaki by [[Santiago Calatrava]] ([[2004]])
66432
66433 *New Acropolis Museum by [[Bernard Tschumi]] ([[2001]]-[[2006]])
66434
66435 ==Transportation==
66436 [[Image:Athens-Transport-Map-All.png|thumb|right|A Greek map of the greater Athens area shows the metro, tram, and suburban railway lines as well as the Eleftherios Venizelos Airport and the various Olympic facilities.]]
66437 &lt;!-- Image with unknown copyright status removed: [[Image:Athens_airport_new.jpg|right|thumb|200px|New Athens Airport named after the politician [[Eleftherios Venizelos]]]] --&gt;
66438 &lt;!-- Image with unknown copyright status removed: [[Image:Attiki_odos_flyover.jpg|right|thumb|200px|Attiki Odos Motorway]] --&gt;
66439 The [[public transport]] system in Athens consists of [[bus]][http://www.oasa.gr], [[metro]][http://www.ametro.gr/], [[tram]][http://linuxweb.internet.gr/tramsa/html/gr/index.php] and suburban railway [http://www.proastiakos.gr] services.
66440
66441 The [[Athens Metro]] is one of the most modern and efficient systems in the world. It has four lines, three of which are distinguished by the colours used in maps and signs (green, blue and red). The green line, which is the oldest and for the most part runs on the ground, connects [[Piraeus]] to [[Kifissia]]. The other two lines were constructed mainly during the 1990s and the first sections opened in [[January]] [[2000]]. They run entirely underground. The blue line runs from [[Monastiraki]] to [[Doukissis Plakentias]] and the [[Eleftherios Venizelos International Airport]], and the red line from [[Aghios Antonios]] to [[Aghios Dimitrios]]. Extensions to both lines are under construction, most notably westwards to Egaleo and eastwards to the Old Hellinikon Airport East Terminal (future Metropolitan Park). The fourth line is the Proastiakos (suburban) which runs from the [[Eleftherios Venizelos International Airport]] to Athens Central train station. The whole network is managed by three different companies (ISAP line 1)[http://www.isap.gr], Attiko Metro (lines 2 &amp; 3) and Proastiakos (line 4).
66442
66443 The whole Metro system of Athens is currently 91 km long. The mass transport system in Athens has been drastically improved and expanded in the recent years, up until [[1999]] the length of the system was of just 25 km (23 stations) and comprised of only one line. It's expected that by 2009 it will reach 124 km (72 stations), after the construction of the current phase of expansions is completed.
66444
66445 The bus service consists of a network of lines on which normal buses, [[trolley bus|electric buses]], and natural gas buses run (the largest fleet of natural gas run buses in Europe). There are plenty of bus lines serving Athens and the suburbs, and they link the centre of the city with most of the suburbs and neighborhoods.
66446
66447 The tram runs from Syntagma Square to [[Palaio Faliro]], where the line splits in two branches, towards [[Glyfada]] and Neo Faliro. Both Syntagma - Palaio Faliro - Neo Faliro and the Glyfada branch opened on [[19 July]] [[2004]]. Further extensions are planned towards [[Piraeus]] and Vouliagmeni.
66448
66449 There are many [[taxicab|taxis]] in Athens, which can be recognised by the yellow colour of the vehicles. They are quite cheap and during rush hours it is considered normal to hail a taxi even when it is in service (although, strictly speaking, this is forbidden); in that case, if the one halting it happens to go to the same direction as the customer and the customer does not mind (although this is never brought up or an issue), he is also allowed in, and each one pays normally as if they were the only customer.
66450
66451 Athens is served, since [[March]] [[2001]], by the [[Eleftherios Venizelos International Airport]] at [[Spata]], east of the city, about a 45-minute taxi ride from the city centre. There is also an express bus service connecting the airport to the metro system and 2 express bus services connecting the airport to [[Piraeus]] port and the city centre respectively. Athens is also the hub of the Greek National Railway System, and ferries from [[Piraeus]] Port travel to all Greek islands.
66452
66453 There are two motorways that travel to the west towards [[Patra]]: ([[Greece Interstate 8A|GR-8A]], [[E94]]) and to the north towards [[Thessaloniki]] ([[Greece Interstate 1|GR-1]], [[E75]]). In [[2001]]-[[2004]] a ring road toll-motorway ([[Attiki Odos]]) was gradually completed, which extends from [[Eleusis|Elefsina]] on the west to the airport after circling the city from the north, plus another from [[Kaisariani]] to [[Glyka Nera]] where it meets the main road for [[Eleusis]] and the airport. Its total length is now about 70 km, up from 18 km in March 2001 when the first section opened to traffic. There are about 21 exits and 4 junctions, up from 8.
66454
66455 See [[Athens Mass Transit System]] for more on this topic.
66456
66457 ==Municipality==
66458 [[Image:Athens_seal.jpg|thumb|100px||right|'''Municipality of Athens''' Seal]]
66459 The modern city of Athens consists of what were formerly distinct towns and villages which gradually expanded and merged into a single large metropolis; most of this expansion occurred in the second half of the 20th century. Greater Athens is now divided into 54 municipalities, the largest of which is the '''Municipality of Athens''' or ''Dimos Athinaion'', with about 750,000 people (the next largest are [[Piraeus|Municipality of Piraeus]], [[Peristeri|Municipality of Peristeri]] and [[Peristeri|Municipality of Kallithea]]). ''Athens'' can therefore refer either to the entire metropolitan area or to the Municipality of Athens. Each of the municipalities of Athens has an elected district council and a directly elected mayor. Mrs. [[Dora Bakoyanni]] of the conservative [[New Democracy]] party was [[Mayor of Athens]] from [[1 January]] [[2003]] until [[15 February]] [[2006]], when she joined Greek Cabinet as Minister of Foreign affairs. She was the 76th Mayor of Athens and the first female to hold the post in the history of the city. She was replaced by Theodoros Mpehrakis.
66460 The Municipality of Athens is divided into 7 ''municipal districts'' or ''demotika diamerismata''. The 7-district division however is mainly used for administrative purposes , while for Athenians the most popular way of dividing the city proper is through its ''neighborhoods'' (usually referred to as areas in English), each with its own distinct history and characteristics.
66461 For someone unfamiliar with Athens, getting to know about these ''neighborhoods'' can often come very handy for exploring and understanding the city.
66462 &lt;br clear=&quot;all&quot;&gt;
66463
66464 ==Olympics 2004==
66465 &lt;!-- Unsourced image removed: [[Image:ceremony4.jpg|thumb|200px|right|Scene from the opening ceremony of the Athens Olympics 2004]] --&gt;
66466 [[Image:3D View of Athens.jpg|thumb|200px|right|Simulated view of Athens from above]]
66467 Athens was awarded the [[2004 Summer Olympics]] on [[September 5]], [[1997]] in [[Lausanne]], [[Switzerland]], after having lost a previous bid to host the [[1996 Summer Olympics]], the celebration of the 100th anniversary of the modern [[Olympic Games]], to [[Atlanta]], [[USA]]. It was to be the second time Athens had hosted the Olympic Games, the first being in [[1896]].
66468
66469 In [[1997]], Athens made an improved bid based largely on an appeal to Olympic history. In the last round of voting, Athens defeated [[Rome]], 66 [[vote]]s to 41. Before this, [[Buenos Aires]], [[Stockholm]], and [[Cape Town]], had already been eliminated from consideration after receiving fewer votes.
66470
66471 In the first three years of preparations, the [[International Olympic Committee]] repeatedly expressed concerns over the status of progress of construction work of the new Olympic venues. In [[2000]] the Organizing Committee's president was replaced by [[Gianna Angelopoulos-Daskalaki]], who was the president of the Bidding Committe back in [[1997]], and preparations began at an accelerated pace. Although the heavy cost was criticized, as is not unusual with Olympic preparations, Athens was transformed into a modern city that enjoys state-of-the-art technology in transportation and urban development. Some of the most modern sporting venues in the world were created, almost all of which were fully ready on schedule. The 2004 Games were adjudged a huge success, as both security and organization were exceptionally good and only a few visitors reported minor problems, mainly concerning transportation or accommodation issues. Essentially, the only notable problem was a somewhat sparse attendance of some preliminary events, during the first days of competition. Eventually, however, a total of more than 3.2 million tickets were sold [http://216.239.59.104/search?q=cache:nBu-MEzPTloJ:www.worldmayor.com/results05/profile_bakoyannis.html+2004+athens+olympics+tickets+3.2+million&amp;hl=en], which was higher than any other Olympics with the exception of [[Sydney]] (more than 5 million tickets were sold there in [[2000]]).
66472
66473 ==See also==
66474 * [[Athens Metro]]
66475 * [[Eurovision Song Contest 2006]]
66476 * [[Hellenic civilization]]
66477 * [[Politics of Greece]]
66478 * [[University of Athens]]
66479
66480 ==Cities nicknamed &quot;Athens&quot;==
66481 ''See [[Athens (disambiguation)]] for other cities named &quot;Athens&quot;.''
66482 * Athens of the East - [[Madurai|Madurai, India]]
66483 * Athens of the West - [[Berkeley, California]]
66484 * Athens of the South - [[Nashville, Tennessee]]
66485 * Athens of the North - [[Edinburgh|Edinburgh, Scotland]]
66486 * Athens of America - [[Boston, Massachusetts]]
66487 * Spree Athens - [[Berlin]], Germany
66488 * Athens on the Isar - [[Munich]], Germany
66489 * Athens of Latin America - [[BogotÃĄ]], [[Colombia]]
66490 * Athens of Finland - [[Jyväskylä]], Finland
66491 * Serbian Athens - [[Novi Sad|Novi Sad, Serbia and Montenegro]]
66492 * Athens of Ireland - [[Cork]], [[Ireland]]
66493
66494 ==External links==
66495 *[http://www.cityofathens.gr City of Athens official website]
66496 *[http://www.athensguide.org/pictures-of-athens.html Pictures of Athens]
66497 *[http://www.athens-today.com/ Take a long virtual tour of Athens]
66498 *[http://www.culture2000.tee.gr/ Athens contemporary architecture and suggested walking routes]
66499 *[http://www.timeoutathens.gr/englishnew/default.asp/ TimeOut Athens - Find out what's on in Athens]
66500 *[http://www.athinorama.gr/ ''Athenorama'': the city's oldest weekly entertainment guide (in Greek)]
66501 *[http://www.oasa.gr/ Journey planner by the city's transport authority]
66502 *[http://www.athens2004.com/ 2004 Olympics official website]
66503 *[http://www.chem.uoa.gr/Location/AthensMap/Athensmap.htm Interactive Map of Central Athens]
66504 *[http://www.transport.ntua.gr/map/en/ Real time traffic map of Athens]
66505 *[http://www.constitution.org/ari/athen_00.htm The Athenian Constitution, Aristotle]
66506 *[http://earthfromspace.photoglobe.info/spc_athens_greece.html Earth from Space] - Athens
66507
66508 {| width =&quot;75%&quot; border = 2 align=&quot;center&quot;
66509 |-
66510 | width =&quot;35%&quot; align=&quot;center&quot; |
66511 | width =&quot;30%&quot; align=&quot;center&quot; | '''North:''' [[Galatsi]], [[Filothei]]
66512 | width =&quot;35%&quot; align=&quot;center&quot; |
66513 |-
66514 | width =&quot;10%&quot; align=&quot;center&quot; | '''West:''' [[Peristeri]], [[Aigaleo]], [[Tavros]], [[Kallithea]]
66515 | width =&quot;35%&quot; align=&quot;center&quot; | '''Athens'''
66516 | width =&quot;30%&quot; align=&quot;center&quot; | '''East:''' [[Zografou]]
66517 |-
66518 | width =&quot;35%&quot; align=&quot;center&quot; |
66519 | width =&quot;30%&quot; align=&quot;center&quot; | '''South:''' [[Dafni]], [[Ymittos]]
66520 | width =&quot;35%&quot; align=&quot;center&quot; |
66521 |}
66522
66523 &lt;!-- The below are interlanguage links. --&gt;
66524
66525 {{Olympic Summer Games Host Cities}}
66526 {{placeopedia}}
66527
66528
66529 [[Category:Athens| ]]
66530 [[Category:Archaeological sites in Greece]]
66531 [[Category:Capitals in Europe|Greece]]
66532 [[Category:Cities and towns in Greece]]
66533 [[Category:Coastal cities]]
66534 [[Category:Greek prefectural capitals]]
66535 [[Category:Host cities of the Summer Olympic Games]]
66536 [[Category:Eurovision host cities]]
66537
66538 {{Link FA|el}}
66539
66540 [[ar:ØŖØĢŲŠŲ†Ø§]]
66541 [[an:Atenas]]
66542 [[roa-rup:Athena]]
66543 [[be:АŅ‚ŅĐŊŅ‹]]
66544 [[bg:АŅ‚иĐŊĐ°]]
66545 [[zh-min-nan:Athína]]
66546 [[bs:Atina]]
66547 [[ca:Atenes]]
66548 [[cs:AthÊny]]
66549 [[da:Athen]]
66550 [[de:Athen]]
66551 [[et:Ateena]]
66552 [[el:ΑθήÎŊÎą]]
66553 [[es:Atenas]]
66554 [[eo:Ateno]]
66555 [[eu:Atenas]]
66556 [[fo:Athen]]
66557 [[fr:Athènes]]
66558 [[fy:Atene]]
66559 [[ga:An Aithin]]
66560 [[gl:Atenas - ΑθήÎŊÎą]]
66561 [[ko:ė•„테네]]
66562 [[io:Athina]]
66563 [[id:Athena]]
66564 [[is:AÞena]]
66565 [[it:Atene]]
66566 [[he:א×Ēונה]]
66567 [[ka:ათენი]]
66568 [[la:Athenae]]
66569 [[lv:Atēnas]]
66570 [[lt:Atėnai]]
66571 [[lb:Athen]]
66572 [[hu:AthÊn]]
66573 [[mk:АŅ‚иĐŊĐ°]]
66574 [[nl:Athene]]
66575 [[nds:Athen]]
66576 [[ja:ã‚ĸテネ]]
66577 [[no:Athen]]
66578 [[nn:Aten]]
66579 [[pl:Ateny]]
66580 [[pt:Atenas]]
66581 [[ro:Atena]]
66582 [[ru:АŅ„иĐŊŅ‹]]
66583 [[scn:Ateni]]
66584 [[simple:Athens]]
66585 [[sk:AtÊny]]
66586 [[sl:Atene]]
66587 [[sr:АŅ‚иĐŊĐ°]]
66588 [[fi:Ateena]]
66589 [[sv:Aten]]
66590 [[tl:Athína]]
66591 [[ta:āŽāŽ¤ā¯†āŽŠā¯āŽ¸ā¯]]
66592 [[th:āš€ā¸­āš€ā¸˜ā¸™ā¸ĒāšŒ]]
66593 [[tr:Atina]]
66594 [[uk:АŅ„Ņ–ĐŊи]]
66595 [[zh:雅典]]</text>
66596 </revision>
66597 </page>
66598 <page>
66599 <title>Anguilla</title>
66600 <id>1217</id>
66601 <revision>
66602 <id>41671601</id>
66603 <timestamp>2006-02-28T23:44:00Z</timestamp>
66604 <contributor>
66605 <username>Phil Boswell</username>
66606 <id>24373</id>
66607 </contributor>
66608 <comment>migrate {{web reference}} to {{[[template:cite web|cite web]]}} using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
66609 <text xml:space="preserve">:''See [[Anguillidae]] for the zoological genus.''
66610
66611 {| class=&quot;infobox&quot; width=&quot;300&quot;
66612 |+ &lt;big&gt;'''Anguilla'''&lt;/big&gt;
66613 |-
66614 |style=&quot;background:#efefef;&quot; align=&quot;center&quot; colspan=&quot;2&quot;|
66615 {| border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
66616 |-
66617 |align=&quot;center&quot; width=&quot;140px&quot;|[[Image:Flag of Anguilla.svg|125px|Flag of Anguilla]]
66618 |align=&quot;center&quot; width=&quot;140px&quot;|[[Image:Coat of Arms of Anguilla.png|90px|Coat of Arms of Anguilla]]
66619 |-
66620 |align=&quot;center&quot; width=&quot;140px&quot;|([[Flag of Anguilla|Full Size]])
66621 |align=&quot;center&quot; width=&quot;140px&quot;|([[Coat of arms of Anguilla|In Detail]])
66622 |}
66623 |-
66624 |align=&quot;center&quot; colspan=2 style=&quot;border-bottom:3px solid gray;&quot;|&lt;font size=&quot;-1&quot;&gt;''National [[motto]]:&lt;br/&gt; Each Endeavouring, All Achieving''&lt;/font&gt;
66625 |-
66626 |align=center colspan=2|[[Image:LocationAnguilla.png]]
66627 |-
66628 |width=&quot;115px&quot;|[[Official language]]||[[English language|English]]
66629 |-
66630 |[[Political status]]
66631 || Non-[[sovereignty|sovereign]], [[Overseas territory]] of the [[U.K]]
66632 |-
66633 |[[Capital]]||[[The Valley, Anguilla|The Valley]]
66634 |-
66635 |[[Governor of Anguilla|Governor]]||[[Alan Huckle]]
66636 |-
66637 |[[Chief Minister of Anguilla|Chief Minister]] ||[[Osbourne Fleming]]
66638 |-
66639 |[[Area]]&lt;br/&gt;&amp;nbsp;- Total &lt;br/&gt;&lt;br/&gt;&amp;nbsp;- % water||[[List of countries by area|Ranked n/a]]&lt;br&gt;[[1 E7 m²|91 km&amp;sup2;]]&lt;br&gt; 35 mi²&lt;br&gt;Negligible
66640 |-
66641 |[[Population]]&lt;br&gt;
66642 &amp;nbsp;- Total (2002)&lt;br&gt;
66643 &amp;nbsp;- [[Population density|Density]]
66644 |&lt;br&gt;&lt;br&gt;
66645 12,800&lt;br&gt;
66646 140/km&amp;sup2;&lt;br&gt;
66647 363/mi²
66648 |-
66649 |[[Currency]]||[[East Caribbean dollar]]
66650 |-
66651 |[[Time zone]]||[[Coordinated Universal Time|UTC]] -4
66652 |-
66653 |[[National Song]]||God Bless Anguilla {{ref|national_song}}
66654 |-
66655 |[[Top-level domain|Internet TLD]]||[[.ai]]
66656 |-
66657 |[[List of country calling codes|Calling Code]]||[[Area code 264|1-264]]
66658 |}
66659
66660 '''Anguilla''' is a [[British overseas territory]] in the [[Caribbean]], the most northerly of the [[Leeward Islands]] in the [[Lesser Antilles]]. It consists of 5 islands, with the capital, [[The Valley, Anguilla|The Valley]] situated on the main island of Anguilla. The total area of the territory is 102 square kilometres (39.4 [[square mile|mi²]]), with a population of approximately 14,000 in 2005.
66661
66662 ==History==
66663 {{main|History of {{PAGENAME}}}}
66664
66665 First colonized by English settlers in 1650, Anguilla was incorporated into a single British dependency along with the neighbouring islands of [[Saint Kitts]] and [[Nevis]] in the early 19th century, much to the objections of many Anguillans. In 1980, however, Anguilla formally withdrew from the territory, becoming a separate British dependency, which it remains.
66666
66667 ==Politics==
66668 {{main|Politics of {{PAGENAME}}}}
66669
66670 Executive authority is invested in [[Elizabeth II of the United Kingdom|The Queen]], who is represented in the territory by the [[Governor of Anguilla|Governor]]. The Governor is appointed by the Queen on the advice of the British Government. Defence and Foreign Affairs remain the responsibility of the [[United Kingdom]].
66671
66672 The constitution of Anguilla came into force in 1982, amended in 1990. The head of the government is the [[Chief Minister of Anguilla|Chief Minister]] who is appointed by the Governor. The legislative branch consists of a [[unicameral parliament]], the House of Assembly, made up of 11 members. Elections are held for 7 seats in the House of Assembly, 2 members being ex-offcio and 2 appointed.
66673
66674 The current Governor is [[Alan Huckle]], appointed in May 2004. The current Chief Minister is [[Osbourne Fleming]] following the victory of the United Front in elections held during February 2005.
66675
66676 ==Geography==
66677 {{main|Geography of {{PAGENAME}}}}
66678 Anguilla is a collection of flat and low-lying islands and [[cay]]s of coral and limestone in the Caribbean Sea, east of Puerto Rico.
66679
66680 The islands and cays in the territory of Anguilla(besides the largest, Anguilla itself) include:
66681 * [[Anguillita Island]]
66682 * [[Dog Island]]
66683 * [[Little Scrub Island]]
66684 * [[Prickly Pear Cays]]
66685 * [[Sandy Island, Anguilla|Sandy Island]]
66686 * [[Scrub Island]]
66687 * [[Seal Island]]
66688 * [[Sombrero, Anguilla|Sombrero]]
66689
66690 ==Economy==
66691 {{main|Economy of {{PAGENAME}}}}
66692 [[Image:Anguilla map.png|thumb|250px|Map of Anguilla]]
66693 The island's main industries are fishing and tourism, with offshore banking playing an increasing role in the economy.
66694
66695 ==Demographics==
66696 {{main|Demographics of {{PAGENAME}}}}
66697
66698 The majority of Anguillans are [[Protestant]] and are of [[Africa]]n descent.
66699
66700 ==Culture==
66701 {{main|Culture of {{PAGENAME}}}}
66702
66703 == Miscellaneous topics ==
66704 *[[Communications in {{PAGENAME}}]]
66705 *[[Transportation in {{PAGENAME}}]]
66706
66707 ==Reference==
66708 #{{note|national_song}} {{cite web | url = http://www.gov.ai/national_song.htm |
66709 title = National Song of Anguilla |
66710 work = Official Website of the Government of Anguilla |
66711 accessyear = 2005 | accessdate = October 12 }}
66712 #{{note | UN_decolonisation }} {{cite web | url = http://www.un.org/Depts/dpi/decolonization/trust3.htm | title = Non-Self-Governing Territories listed by General Assembly in 2002 |
66713 work = United Nations Special Committee of 24 on Decolonization |
66714 accessyear = 2005 | accessdate = March 10 }}
66715
66716 ==External links==
66717 * [http://www.freeanguilla.com/ Free Anguilla - A Network of Anguilla Forums (non partisan discussion)
66718 * [http://www.anguillanews.com/ Anguilla News] (News, People profiles, Talk, Carnival and more)
66719 * [http://www.gov.ai/ Government of Anguilla] (Official web site)
66720 * [http://www.loc.gov/rr/international/hispanic/anguilla/anguilla.html Library of Congress Portals on the World - Anguilla]
66721 * [http://www.cia.gov/cia/publications/factbook/geos/av.html CIA - The World Factbook -- Anguilla] - [[CIA]]'s Factbook on Anguilla
66722 * [http://www.caribbeandiving.com/resources/Anguilla.html Anguilla] Resources
66723 * [http://www.caribbean-on-line.com/islands/ag/agmap.shtml Map of Anguilla]
66724
66725 [[Image:Sandy_Ground_Anguilla.jpg|thumb|465px|left|Overlooking Sandy Ground, Anguilla]]
66726
66727 {{West Indies}}
66728 {{Caricom}}
66729 {{British dependencies}}
66730
66731 [[Category:Anguilla]]
66732 [[Category:Caribbean islands]]
66733 [[Category:Special territories of the European Union]]
66734
66735 [[ca:Anguilla]]
66736 [[de:Anguilla]]
66737 [[el:ΑÎŊÎŗÎēÎŋĪ…ίÎģÎą]]
66738 [[eo:Angvilo]]
66739 [[es:Anguila (dependencia)]]
66740 [[et:Anguilla]]
66741 [[fi:Anguilla]]
66742 [[fr:Anguilla]]
66743 [[gl:Anguila - Anguilla]]
66744 [[he:אנגווילה]]
66745 [[hu:Anguilla]]
66746 [[id:Anguilla]]
66747 [[io:Anguila]]
66748 [[is:Angvilla]]
66749 [[it:Anguilla (isola)]]
66750 [[ja:ã‚ĸãƒŗゎナ]]
66751 [[ko:ė•ĩꡈëŧ]]
66752 [[lt:Angilija]]
66753 [[lv:AngiÄŧa]]
66754 [[nds:Anguilla]]
66755 [[nl:Anguilla (eiland)]]
66756 [[no:Anguilla]]
66757 [[pl:Anguilla]]
66758 [[pt:Anguilla]]
66759 [[ro:Anguilla]]
66760 [[simple:Anguilla]]
66761 [[sl:Angvila]]
66762 [[sr:АĐŊĐŗиŅ™Đ°]]
66763 [[sv:Anguilla]]
66764 [[tr:Anguilla]]
66765 [[uk:АĐŊĐŗŅ–ĐģŅŒŅ]]
66766 [[zh:厉圭拉]]
66767 [[zh-min-nan:Anguilla]]</text>
66768 </revision>
66769 </page>
66770 <page>
66771 <title>Anguilla/History</title>
66772 <id>1218</id>
66773 <revision>
66774 <id>15899714</id>
66775 <timestamp>2002-02-25T15:43:11Z</timestamp>
66776 <contributor>
66777 <username>LA2</username>
66778 <id>445</id>
66779 </contributor>
66780 <minor />
66781 <comment>*</comment>
66782 <text xml:space="preserve">#REDIRECT [[History of Anguilla]]</text>
66783 </revision>
66784 </page>
66785 <page>
66786 <title>Anguilla/Geography</title>
66787 <id>1219</id>
66788 <revision>
66789 <id>15899715</id>
66790 <timestamp>2002-08-03T16:20:50Z</timestamp>
66791 <contributor>
66792 <username>Ellmist</username>
66793 <id>2214</id>
66794 </contributor>
66795 <comment>move to Geography of Anguilla</comment>
66796 <text xml:space="preserve">#REDIRECT [[Geography of Anguilla]]</text>
66797 </revision>
66798 </page>
66799 <page>
66800 <title>Anguilla/Transnational issues</title>
66801 <id>1220</id>
66802 <revision>
66803 <id>15899716</id>
66804 <timestamp>2002-10-11T06:49:20Z</timestamp>
66805 <contributor>
66806 <username>Jeronimo</username>
66807 <id>108</id>
66808 </contributor>
66809 <minor />
66810 <comment>redirect</comment>
66811 <text xml:space="preserve">#REDIRECT [[Anguilla]]</text>
66812 </revision>
66813 </page>
66814 <page>
66815 <title>Anguilla/Military</title>
66816 <id>1221</id>
66817 <revision>
66818 <id>25373041</id>
66819 <timestamp>2005-10-12T19:11:11Z</timestamp>
66820 <contributor>
66821 <username>JesseW</username>
66822 <id>33352</id>
66823 </contributor>
66824 <comment>snap double link</comment>
66825 <text xml:space="preserve">#REDIRECT [[Anguilla]]</text>
66826 </revision>
66827 </page>
66828 <page>
66829 <title>Anguilla/Transportation</title>
66830 <id>1222</id>
66831 <revision>
66832 <id>24813234</id>
66833 <timestamp>2005-10-05T14:23:00Z</timestamp>
66834 <contributor>
66835 <username>Kbdank71</username>
66836 <id>197953</id>
66837 </contributor>
66838 <comment>fix double redirect</comment>
66839 <text xml:space="preserve">#REDIRECT [[Transport in Anguilla]]</text>
66840 </revision>
66841 </page>
66842 <page>
66843 <title>Anguilla/Communications</title>
66844 <id>1223</id>
66845 <revision>
66846 <id>15899719</id>
66847 <timestamp>2002-08-07T17:09:45Z</timestamp>
66848 <contributor>
66849 <username>Koyaanis Qatsi</username>
66850 <id>90</id>
66851 </contributor>
66852 <minor />
66853 <comment>correct redirect</comment>
66854 <text xml:space="preserve">#REDIRECT [[Communications in Anguilla]]</text>
66855 </revision>
66856 </page>
66857 <page>
66858 <title>Anguilla/Economy</title>
66859 <id>1224</id>
66860 <revision>
66861 <id>15899720</id>
66862 <timestamp>2002-08-03T16:22:48Z</timestamp>
66863 <contributor>
66864 <username>Ellmist</username>
66865 <id>2214</id>
66866 </contributor>
66867 <comment>move to Economy of Anguilla</comment>
66868 <text xml:space="preserve">#REDIRECT [[Economy of Anguilla]]</text>
66869 </revision>
66870 </page>
66871 <page>
66872 <title>Government of Anguilla</title>
66873 <id>1225</id>
66874 <revision>
66875 <id>15899721</id>
66876 <timestamp>2002-08-04T11:29:34Z</timestamp>
66877 <contributor>
66878 <username>Ellmist</username>
66879 <id>2214</id>
66880 </contributor>
66881 <comment>move to Politics of Anguilla</comment>
66882 <text xml:space="preserve">#REDIRECT [[Politics of Anguilla]]</text>
66883 </revision>
66884 </page>
66885 <page>
66886 <title>Anguilla/People</title>
66887 <id>1226</id>
66888 <revision>
66889 <id>15899722</id>
66890 <timestamp>2002-08-20T15:32:56Z</timestamp>
66891 <contributor>
66892 <username>Koyaanis Qatsi</username>
66893 <id>90</id>
66894 </contributor>
66895 <text xml:space="preserve">#REDIRECT [[Demographics of Anguilla]]</text>
66896 </revision>
66897 </page>
66898 <page>
66899 <title>Ashmore and Cartier Islands</title>
66900 <id>1227</id>
66901 <revision>
66902 <id>38450213</id>
66903 <timestamp>2006-02-06T11:19:58Z</timestamp>
66904 <contributor>
66905 <username>JackofOz</username>
66906 <id>33566</id>
66907 </contributor>
66908 <comment>completely separate from the NT generally speaking (it may be deemed part of the NT for particular purposes only); the Dept changed its name at least 7 years ago</comment>
66909 <text xml:space="preserve">[[Image:AshmoreandCartierIslands.png|frame|Ashmore and Cartier Islands]]
66910 The '''Territory of Ashmore and Cartier Islands''' are two groups of small low-lying uninhabited tropical [[island]]s in the [[Indian Ocean]] situated on the edge of the [[continental shelf]] north-west of [[Australia]] and south of the [[Indonesia]]n island of [[Rote Island|Roti]] at {{coor dm|12|14|S|123|5|E|}}.
66911
66912 The territory includes '''Ashmore Reef''' (West, Middle, and East Islets) and '''Cartier Island''' (70 km east) with, a total area of 199.45 km&lt;sup&gt;2&lt;/sup&gt; within the reefs and including the [[lagoons]], and 114,400 m&lt;sup&gt;2&lt;/sup&gt; of dry land. While they have a total of 74.1 km of shoreline, measured along the outer edge of the reef, there are no ports or harbors, only offshore anchorage. Nearby '''Hibernia Reef''', 42 km Northeast of Ashmore Reef, is not part of the territory. It has no permanently dry land area, although large parts of the reef become exposed during low tide.
66913
66914 *Ashmore Reef 155.40 km&lt;sup&gt;2&lt;/sup&gt; area within reef (including lagoon)
66915 **West Islet, 51,200 m&amp;sup2; land area;
66916 **Middle Islet, 21,200 m&amp;sup2; land area;
66917 **East Islet, 25,000 m&amp;sup2; land area;
66918 *Cartier Reef (44.03 km&lt;sup&gt;2&lt;/sup&gt; area within reef (including lagoon)
66919 **Cartier Island, 17,000 m&amp;sup2; land area;
66920
66921 There is an automatic weather station on West Islet.
66922
66923 The territory is administered from [[Canberra]] by the Australian Department of the Environment and Heritage. The data code is AT. Defence is the responsibility of Australia, with periodic visits by the [[Royal Australian Navy]] and [[Royal Australian Air Force]]. The islands are visited by seasonal caretakers.
66924
66925 The '''Ashmore Reef Marine National Nature Reserve''' was established in August [[1983]]. It is of significant [[biodiversity]] value as it is in the flow of the [[Indonesian throughflow]] [[ocean current|current]] from the [[Pacific Ocean]] through the [[Malay archipelago|Indonesian Archipelago]] to the [[Indian Ocean]]. It is also in a surface current west from the [[Arafura Sea]] and [[Timor Sea]]. There are 14 distinct species of [[sea snake]] in the area, more than in any other area. There is also an unusually high level of [[species diversity]] of [[coral]], [[mollusk]]s, and [[fish]]. A memorandum of understanding between the Australian and Indonesian governments allows Indonesian fishermen access to their traditional fishing grounds within the region, subject to limits.
66926
66927 '''Cartier Island Marine Reserve''' includes the entire sand cay of Cartier Island, the reef surrounding it, the ocean for a 7.2 km radius around the island, and 1000 m below the seafloor. It was proclaimed in [[2000]].
66928
66929 There is no economic activity in the Territory.
66930
66931 As Ashmore Reef is the closest point of Australian territory to Indonesia, it has been a popular target for [[people smugglers]] to take [[asylum seekers]] to Australia. They were transported at great personal risk and expense in leaky fishing boats and dumped on the island, expecting to be rescued by Australia and granted [[refugee]] status there. As Australia was not the [http://refugeethesaurus.org/hms/refugee_obj.php?type=terms&amp;id=2143 country of first asylum] for these &quot;[[boat people]]&quot;, Australia did not consider it had a responsibility to accept them. A number of things were done to discourage the practice such as attempting to have the people smugglers arrested in Indonesia; [[Mandatory detention in Australia|mandatory detention]] of all arrivals until their status could be determined; the so-called [[Pacific Solution]] of processing them in third countries; and finally excising these and many other small islands from the [[Australian migration zone]].
66932
66933 &lt;br clear=all&gt;
66934 ==External link==
66935 * [http://ea.gov.au/coasts/mpa/cartier/ Cartier Island Marine Reserve]
66936 * [http://www.cia.gov/cia/publications/factbook/geos/at.html CIA - The World Factbook&amp;mdash;Ashmore and Cartier Islands] - [[CIA]]'s Factbook on Ashmore and Cartier Islands
66937 * [http://www.ga.gov.au/education/facts/dimensions/externalterr/ashmore.htm Geoscience Australia&amp;mdash;Ashmore and Cartier Islands]
66938 * [http://www.deh.gov.au/coasts/mpa/ashmore/ Department of the Environment and Heritage&amp;mdash;Ashmore Reef National Nature Reserve]
66939 {{Australia}}
66940
66941 [[Category:Australian states and territories]]
66942 [[Category:Islands]]
66943
66944 [[de:Ashmore- und Cartier-Inseln]]
66945 [[es:Islas Ashmore y Cartier]]
66946 [[eo:Aŝmora kaj Kartia Insuloj]]
66947 [[fr:Îles Ashmore et Cartier]]
66948 [[gl:Illas Ashmore e Cartier]]
66949 [[it:Isole Ashmore e Cartier]]
66950 [[he:איי אשמור וקרטייה]]
66951 [[hu:Ashmore- Ês Cartier-szigetek]]
66952 [[nl:Ashmore- en Cartiereilanden]]
66953 [[ja:ã‚ĸã‚ˇãƒĨãƒĸã‚ĸãƒģã‚ĢãƒĢテã‚ŖエčĢ¸åŗļ]]
66954 [[pl:Wyspy Ashmore i Cartiera]]
66955 [[pt:Ilhas Ashmore e Cartier]]
66956 [[fi:Ashmore ja Cartiersaaret]]
66957 [[zh:é˜ŋäģ€čŽĢå°”å’ŒåĄæˇå˛›]]</text>
66958 </revision>
66959 </page>
66960 <page>
66961 <title>Ashmore and Cartier Islands/Geography</title>
66962 <id>1228</id>
66963 <revision>
66964 <id>15899724</id>
66965 <timestamp>2002-08-31T18:16:37Z</timestamp>
66966 <contributor>
66967 <username>The Epopt</username>
66968 <id>30</id>
66969 </contributor>
66970 <comment>#REDIRECT [[Ashmore and Cartier Islands]] -- merged</comment>
66971 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
66972 </revision>
66973 </page>
66974 <page>
66975 <title>Ashmore and Cartier Islands/People</title>
66976 <id>1229</id>
66977 <revision>
66978 <id>15899725</id>
66979 <timestamp>2002-08-20T16:55:53Z</timestamp>
66980 <contributor>
66981 <username>Koyaanis Qatsi</username>
66982 <id>90</id>
66983 </contributor>
66984 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
66985 </revision>
66986 </page>
66987 <page>
66988 <title>Ashmore and Cartier Islands/Government</title>
66989 <id>1230</id>
66990 <revision>
66991 <id>15899726</id>
66992 <timestamp>2002-08-31T18:16:35Z</timestamp>
66993 <contributor>
66994 <username>The Epopt</username>
66995 <id>30</id>
66996 </contributor>
66997 <comment>#REDIRECT [[Ashmore and Cartier Islands]] -- merged</comment>
66998 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
66999 </revision>
67000 </page>
67001 <page>
67002 <title>Ashmore and Cartier Islands/Transportation</title>
67003 <id>1231</id>
67004 <revision>
67005 <id>15899727</id>
67006 <timestamp>2002-08-31T18:16:30Z</timestamp>
67007 <contributor>
67008 <username>The Epopt</username>
67009 <id>30</id>
67010 </contributor>
67011 <comment>#REDIRECT [[Ashmore and Cartier Islands]] -- merged</comment>
67012 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
67013 </revision>
67014 </page>
67015 <page>
67016 <title>Ashmore and Cartier Islands/Economy</title>
67017 <id>1232</id>
67018 <revision>
67019 <id>15899728</id>
67020 <timestamp>2002-08-31T18:16:32Z</timestamp>
67021 <contributor>
67022 <username>The Epopt</username>
67023 <id>30</id>
67024 </contributor>
67025 <comment>#REDIRECT [[Ashmore and Cartier Islands]] -- merged</comment>
67026 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
67027 </revision>
67028 </page>
67029 <page>
67030 <title>Ashmore and Cartier Islands/Military</title>
67031 <id>1233</id>
67032 <revision>
67033 <id>15899729</id>
67034 <timestamp>2002-08-31T18:16:27Z</timestamp>
67035 <contributor>
67036 <username>The Epopt</username>
67037 <id>30</id>
67038 </contributor>
67039 <comment>#REDIRECT [[Ashmore and Cartier Islands]] -- merged</comment>
67040 <text xml:space="preserve">#REDIRECT [[Ashmore and Cartier Islands]]</text>
67041 </revision>
67042 </page>
67043 <page>
67044 <title>Acoustic theory</title>
67045 <id>1234</id>
67046 <revision>
67047 <id>26709978</id>
67048 <timestamp>2005-10-28T14:55:39Z</timestamp>
67049 <contributor>
67050 <username>Bluebot</username>
67051 <id>527862</id>
67052 </contributor>
67053 <minor />
67054 <comment>Fixed See also/External links error(s).</comment>
67055 <text xml:space="preserve">[[Category:Fluid dynamics]]
67056 '''Acoustic theory''' is the field relating to mathematical description of [[sound]] [[waves]]. It is derived from [[fluid dynamics]]. See [[acoustics]] for the [[engineering]] approach.
67057
67058 The propagation of sound waves in air can be modeled by an equation of motion (conservation of [[momentum]]) and an equation of continuity (conservation of [[mass]]). With some simplifications, in particular constant density, they can be given as follows:
67059 : &lt;math&gt;\rho_0 \frac{\partial}{\partial t} \mathbf{v}(\mathbf{x}, t) + \nabla p(\mathbf{x}, t) = 0&lt;/math&gt;
67060 : &lt;math&gt;\frac{\partial}{\partial t} p(\mathbf{x}, t) + \rho_0 c^2 \nabla \cdot \mathbf{v}(\mathbf{x}, t) = 0&lt;/math&gt;
67061 where &lt;math&gt;p(\mathbf{x}, t)&lt;/math&gt; is the acoustic pressure and &lt;math&gt;\mathbf{v}(\mathbf{x}, t)&lt;/math&gt; is the acoustic fluid velocity vector, &lt;math&gt;\mathbf{x}&lt;/math&gt; is the vector of spatial coordinates &lt;math&gt;x, y, z&lt;/math&gt;, &lt;math&gt;t&lt;/math&gt; is the time, &lt;math&gt;\rho_0&lt;/math&gt; is the static density of air and &lt;math&gt;c&lt;/math&gt; is the speed of sound in air.
67062
67063 ==See also==
67064 * [[Transfer function]]
67065 * [[Sound pressure]]
67066 * [[Acoustic impedance]]
67067 * [[Acoustic resistance]]
67068 * [[Gas Laws|law of gases]]
67069 * [[Frequency]]
67070 * [[Fourier analysis]]
67071 * [[Instrumental acoustics]]
67072 * [[Music theory]]
67073 * [[Voice production]]
67074 * [[Formant]]
67075 * [[Speech synthesis]]
67076 * [[Loudspeaker acoustics]]
67077 * [[Lumped component]] model</text>
67078 </revision>
67079 </page>
67080 <page>
67081 <title>Alexander Mackenzie</title>
67082 <id>1235</id>
67083 <revision>
67084 <id>42099118</id>
67085 <timestamp>2006-03-03T20:49:38Z</timestamp>
67086 <contributor>
67087 <username>Fawcett5</username>
67088 <id>132013</id>
67089 </contributor>
67090 <minor />
67091 <text xml:space="preserve">{{dablink|For other people called ''Alexander Mackenzie'' see [[Alexander Mackenzie (disambiguation)]]}}
67092 {{Infobox PM
67093 | name=The Hon. Alexander Mackenzie
67094 | image=Alexander_mackenzie.jpg
67095 | country=Canada
67096 | term=[[November 7]], [[1873]] &amp;ndash; [[October 8]], [[1878]]
67097 | before=[[John A. Macdonald]]
67098 | after=[[John A. Macdonald]]
67099 | date_birth=[[January 28]], [[1822]]
67100 | place_birth=[[Logierait]], [[Scotland]]
67101 | date_death=[[April 17]], [[1892]]
67102 | place_death=[[Toronto]], [[Ontario]]
67103 | party=[[Liberal Party of Canada]]
67104 }}
67105 '''Alexander Mackenzie''', [[Queen's Privy Council for Canada|PC]] ([[January 28]], [[1822]] &amp;ndash; [[April 17]], [[1892]]), a building contractor and writer, was the second [[Prime Minister of Canada]] from [[November 7]], [[1873]] to [[October 8]], [[1878]].
67106
67107 He was born in [[Logierait]], [[Perth and Kinross]], [[Scotland]]. He [[emigrate]]d to [[Canada]] in [[1842]] after completing an education in [[public schools]] at [[Perth, Scotland|Perth]], [[Moulin]], and [[Dunkeld]], Scotland. Mackenzie married Helen Neil ([[1826]]-[[1852]]) in [[1845]] and with her had three children, with only one girl surviving infancy. In [[1853]], he married [[Jane Sym]] ([[1825]]-[[1893]]).
67108
67109 When the [[John A. Macdonald|Macdonald]] government fell due to the [[Pacific scandal]] in 1873, the [[Governor General of Canada|Governor General]], [[Frederick Hamilton-Temple-Blackwood, 1st Marquess of Dufferin and Ava|Lord Dufferin]], had to call on someone to form a government. There was no clear leader of the [[Liberal Party of Canada|Liberal Party]]. Mackenzie was the fourth person called upon, and the first to accept, the post of Prime Minister. Mackenzie formed a government and then asked the Governor General to call an [[Canadian federal election, 1874|election for January 1874]]. The Liberals won, and Mackenzie remained prime minister until the [[Canadian federal election, 1878|1878 election]] when Macdonald's [[Conservative Party of Canada (historical)|Conservatives]] returned to power with a [[majority government]].
67110
67111 As Prime Minister, Alexander Mackenzie strove to reform and simplify the machinery of government. He introduced the [[secret ballot]]; created the [[Supreme Court of Canada]]; established the [[Royal Military College]] of Canada in [[Kingston, Ontario]] in [[1874]]; created the Office of the Auditor General in 1878; and struggled to launch the [[Canadian Pacific Railway|national railway]]. After his government's defeat, Mackenzie remained [[Leader of the Opposition (Canada)|Leader of the Opposition]] until [[1880]], when he relinquished the party leadership to [[Edward Blake]].
67112
67113 At the time, it was customary for the [[British monarch]] to [[knight]] all Canadian Prime Ministers. Alexander Mackenzie declined all offers of a British [[knighthood]].
67114
67115 He died in [[Toronto]], [[Ontario]], from a stroke that resulted from hitting his head during a fall. He is buried in the Lakeview Cemetery, [[Sarnia, Ontario]].
67116
67117 == Supreme Court Appointments ==
67118 Mackenzie appointed the following Justices to the [[Supreme Court of Canada]]:
67119 * Sir [[William Buell Richards]] ([[Chief Justice of Canada|Chief Justice]]) - ([[September 30]], [[1875]] - [[January 10]], [[1879]])
67120 * Sir [[William Johnstone Ritchie]] - ([[September 30]], [[1875]] - [[September 25]], [[1892]])
67121 * Sir [[Samuel Henry Strong]] - ([[September 30]], [[1875]] - [[November 18]], [[1902]])
67122 * [[Jean-Thomas Taschereau]] - ([[September 30]], [[1875]] - [[October 6]], [[1878]])
67123 * [[Telesphore Fournier]] - ([[September 30]], [[1875]] - [[September 12]], [[1895]])
67124 * [[William Alexander Henry]] - ([[September 30]], [[1875]] - [[May 3]], [[1888]])
67125 * Sir [[Henri Elzear Taschereau]] - ([[October 7]], [[1878]] - [[May 2]], [[1906]])
67126
67127 == Helen Neil Mackenzie ==
67128 '''Helen Neil Mackenzie''' ([[October 21]], [[1826]]-[[January 4]], [[1852]]) was the first wife of Alexander Mackenzie. She had three children, and died after being married to Mackenzie for seven years. Helen and Alexander only had one child (two other children died in infancy), a girl, named Mary Mackenzie. It was because of Helen, who previously emigrated to Canada with her family, that Alexander himself came to Canada.
67129
67130 == External links ==
67131 {{wikiquote}}
67132 *[http://www.biographi.ca/EN/ShowBio.asp?BioId=40374 Biography at the ''Dictionary of Canadian Biography Online'']
67133
67134 {{start box}}
67135 {{succession box|
67136 before=[[George Brown (Canadian politician)|George Brown]]|
67137 title=[[Liberal Party of Canada|Leader of the Liberal Party of Canada]]|
67138 after=[[Edward Blake]]|
67139 years=1873-1880
67140 }}
67141 {{succession box|
67142 before=''vacant''|
67143 title=[[Leader of the Opposition (Canada)|Leader of the Opposition]]|
67144 after=[[John A. Macdonald|Sir John A. Macdonald]]|
67145 years=1873
67146 }}
67147 {{succession box|
67148 before=[[John A. Macdonald|Sir John A. Macdonald]]|
67149 title=[[Prime Minister of Canada]]|
67150 years=1873&amp;ndash;1878|
67151 after=[[John A. Macdonald|Sir John A. Macdonald]]
67152 }}
67153 {{succession box|
67154 before=[[John A. Macdonald|Sir John A. Macdonald]]|
67155 title=[[Leader of the Opposition (Canada)|Leader of the Opposition]]|
67156 after=[[Edward Blake]]|
67157 years=1878&amp;ndash;1880
67158 }}
67159 {{end box}}
67160 {{start box}}
67161 {{succession box|
67162 before=None|
67163 title=[[Lambton (electoral district)|MP for Lambton, ON]]|
67164 after=Abolished|
67165 years=1867&amp;ndash;1882
67166 }}
67167 {{succession box|
67168 before=[[Alfred Boultbee]]|
67169 title=[[York East|MP for York East, ON]]|
67170 after=[[William F. McLean]]|
67171 years=1882&amp;ndash;1892
67172 }}
67173 {{end box}}
67174
67175 {{canPM}}
67176
67177 {{Liberal Leaders}}
67178
67179 &lt;!-- Metadata: see [[Wikipedia:Persondata]] --&gt;
67180 {{Persondata
67181 |NAME=Mackenzie, Alexander
67182 |ALTERNATIVE NAMES=
67183 |SHORT DESCRIPTION=2nd Prime Minister of Canada ([[1873]]-[[1878]])
67184 |DATE OF BIRTH=[[January 28]], [[1822]]
67185 |PLACE OF BIRTH=[[Logierait]], [[Perthshire]], [[Scotland]]
67186 |DATE OF DEATH=[[April 17]], [[1892]]
67187 |PLACE OF DEATH=[[Toronto]]
67188 }}
67189
67190 [[Category:1822 births|Mackenzie, Alexander]]
67191 [[Category:1892 deaths|Mackenzie, Alexander]]
67192 [[Category:Canadian businesspeople|Mackenzie, Alexander]]
67193 [[Category:Canadian writers|Mackenzie, Alexander]]
67194 [[Category:Leaders of the Liberal Party of Canada|Mackenzie]]
67195 [[Category:Natives of Perth and Kinross|Mackenzie, Alexander]]
67196 [[Category:Prime Ministers of Canada|Mackenzie, Alexander]]
67197 [[Category:Sarnians|Mackenzie, Alexander]]
67198 [[Category:Scottish Canadians|Mackenzie, Alexander]]
67199 [[Category:Scottish business people|Mackenzie, Alexander]]
67200 [[Category:Scottish writers|Mackenzie, Alexander]]
67201 [[Category:Teetotalers|Mackenzie, Alexander]]
67202 [[Category:Pre-Confederation Ontario people|Mackenzie, Alex]]
67203
67204 [[de:Alexander Mackenzie (Politiker)]]
67205 [[fr:Alexander Mackenzie (politicien)]]
67206 [[pl:Alexander Mackenzie (premier Kanady)]]
67207 [[pt:Alexander Mackenzie]]</text>
67208 </revision>
67209 </page>
67210 <page>
67211 <title>Annexation</title>
67212 <id>1237</id>
67213 <revision>
67214 <id>41784233</id>
67215 <timestamp>2006-03-01T18:56:01Z</timestamp>
67216 <contributor>
67217 <username>Rmhermen</username>
67218 <id>835</id>
67219 </contributor>
67220 <minor />
67221 <comment>Reverted edits by [[Special:Contributions/24.213.67.178|24.213.67.178]] ([[User talk:24.213.67.178|talk]]) to last version by Arre</comment>
67222 <text xml:space="preserve">'''Annexation''' ([[Latin]] ''ad'', to, and ''nexus'', joining) is the legal incorporation of some territory into another geo-political entity (either adjacent or non-contiguous). Usually, it is implied that the territory and population being ''annexed'' is the smaller, more peripheral or weaker of the two merging entities. It can also imply a certain measure of coercion, [[expansionism]] or [[unilateralism]] on the part of the stronger of the merging entities. Because of this, more positive words like [[political union]] or [[reunification]] are sometimes preferred.
67223
67224 == More detailed overview ==
67225
67226 Annexation may be the consequence of a voluntary cession from one state to another through purchase or other treaty, or of conversion from a protectorate or sphere of influence, or occupation through military conquest. A [[city]] might annex unincorporated areas or a [[country]] might annex other [[disputed territories]]. The assumption of a protectorate over another state, or of a [[sphere of influence]], is not strictly annexation, the latter implying the complete displacement in the annexed territory of the government or state by which it was previously ruled.
67227
67228 In [[international relations]] the term ''annexation'' is usually applied when the emphasis is placed on the fact that territorial possession is achieved by force and unilaterally rather than through [[treaty|treaties]] or negotiations. The cession of [[Alsace-Lorraine]] to [[Germany]] by [[France]], although brought about by the war of 1870, was for the purposes of international law a voluntary cession. Under the treaty of [[December 17]], [[1885]], between the French Republic and the queen of [[Madagascar]], a French protectorate was established over this island. In 1896 this protectorate was converted by France into an annexation, and Madagascar then became &quot;French territory.&quot; The formal annexation of [[Bosnia-Herzegovina]] by [[Austria]] ([[October 5]], [[1908]]) was an unauthorized conversion of an &quot;occupation&quot; authorized by the [[Treaty of Berlin, 1878|Treaty of Berlin]] (1878), which had, however, for years operated as a ''de facto'' annexation. A case of conquest was that effected by the [[South African War]] (Second Boer War) of 1899–1902, in which the [[Transvaal Republic]] and the [[Orange Free State]] were extinguished, first ''de facto'' by occupation of the whole of their territory, and then ''[[de jure]]'' by terms of surrender entered into by the [[Boer]] generals acting as a government.
67229
67230 By annexation, as between civilized peoples, the annexing state takes over the whole succession with the rights and obligations attaching to the ceded territory, subject only to any modifying conditions contained in the treaty of cession. These, however, are binding only as between the parties to them. In the case of the annexation of the territories of the Transvaal republic and Orange Free State, a rather complicated situation arose out of the facts, on the one hand, that the ceding states closed their own existence and left no recourse to third parties against the previous ruling authority, and, on the other, that, having no means owing to the ''de facto'' [[United Kingdom|British]] occupation, of raising money by taxation, the dispossessed governments raised money by selling certain securities, more especially a large holding of shares in the [[South African Railway Company]], to neutral purchasers. The [[British government]] repudiated these sales as having been made by a government which the British government had already displaced. The question of at what point, in a war of conquest, the state succession becomes operative is one of great delicacy. As early as [[January 6]], [[1900]], the high commissioner at [[Cape Town]] issued a proclamation giving notice that the British government would &quot;not recognize as valid or effectual&quot; any conveyance, transfer or transmission of any property made by the government of the Transvaal republic or Orange Free State subsequently to [[October 10]], [[1899]], the date of the commencement of the war. A proclamation forbidding transactions with a state which might still be capable of maintaining its independence could obviously bind only those subject to the authority of the state issuing it. Like paper [[blockade]]s and fictitious occupations of territory, such premature proclamations are viewed by international jurists as not being ''jure gentium''. The proclamation was succeeded, on [[March 9]], [[1900]], by another of the high commissioner at Cape Town, reiterating the notice, but confining it to &quot;lands, railways, mines or mining rights.&quot; And on [[September 1]], [[1900]] Lord Roberts proclaimed at [[Pretoria]] the annexation of the territories of the Transvaal republic to the British dominions. That the war continued for nearly two years after this proclamation shows how fictitious the claim of annexation was. The difficulty which arose out of the transfer of the South African Railway shares held by the Transvaal government was satisfactorily terminated by the purchase by the British government of the total capital of the company from the different groups of [[shareholder]]s (see on this case, Sir Thomas Barclay, ''[[Law Quarterly Review]]'', July 1905; and Professor Westlake, in the same ''Review'', October 1905).
67231
67232 In a judgment of the [[Judicial Committee of the Privy Council]] in 1899 (''Cook'' v. ''Sprigg'', A.C. 572), [[Lord Chancellor]] Halsbury made an important distinction as regards the obligations of state succession. The case in question was a claim of title against the [[Crown]], represented by the government of [[Cape Colony]]. It was made by persons holding a concession of certain rights in eastern [[Pondoland]] from a native chief. Before the grantees had taken up their grant by acts of possession, Pondoland was annexed to Cape Colony. The colonial government refused to recognize the grant on different grounds, the chief of them being that the concession conferred no legal rights before the annexation and therefore could confer none afterwards, a sufficiently good ground in itself. The judicial committee, however, rested its decision chiefly on the allegation that the acquisition of the territory was an act of state and that &quot;no municipal court had authority to enforce such an obligation&quot; as the duty of the new government to respect existing titles. &quot;It is no answer,&quot; said Lord Halsbury, &quot;to say that by the ordinary principles of international law private property is respected by the sovereign which accepts the cession and assumes the duties and legal obligations of the former sovereign with respect to such private property within the ceded territory. All that can be meant by such a proposition is that according to the well-understood rules of international law a change of sovereignty by cession ought not to affect private property, but no municipal tribunal has authority to enforce such an obligation. And if there is either an express or a well-understood bargain between the ceding potentate and the government to which the cession is made that private property shall be respected, that is only a bargain which can be enforced by sovereign against sovereign in the ordinary course of diplomatic pressure.&quot; In an editorial note on this case the ''Law Quarterly Review'' of January 1900 (p. 1), dissenting from the view of the judicial committee that &quot;no municipal tribunal has authority to enforce such an obligation,&quot; the writer observes that &quot;we can read this only as meant to lay down that, on the annexation of territory even by peaceable cession, there is a total abeyance of justice until the will of the annexing power is expressly made known; and that, although the will of that power is commonly to respect existing private rights, there is no rule or presumption to that effect of which any court must or indeed can take notice.&quot; So construed the doctrine is not only contrary to international law, but according to so authoritative an exponent of the common law as Sir F. Pollock, there is no warrant for it in English [[common law]].
67233
67234 An interesting point of [[United States]] constitutional law arose out of the [[cession]] of the [[Philippines]] to the United States, through the fact that the [[Constitution of the United States|federal constitution]] does not lend itself to the exercise by the federal congress of unlimited powers, such as are vested in the [[British parliament]]. The sole authority for the powers of the [[United States Congress|federal congress]] is a written constitution with defined powers. Anything done in excess of those powers is null and void. The [[Supreme Court of the United States]], on the other hand, declared that, by the constitution, a government is ordained and established &quot;for the United States of America&quot; and not for countries outside their limits (''Ross's Case'', 140 U.S. 453, 464), and that no such power to legislate for annexed territories as that vested in the British [[Privy Council of the United Kingdom|Crown in Council]] is enjoyed by the president of the United States (''Field'' v. ''Clark'', 143 U.S. 649, 692). Every detail connected with the administration of the territories acquired from [[Spain]] under the [[Treaty of Paris]] ([[December 10]], [[1898]]) gave rise to minute discussion.
67235
67236 == Examples of annexation ==
67237
67238 === Hawai'i ===
67239
67240 In 1898, [[Hawaii]] (having moved from a [[Kingdom of Hawaii|Kingdom]] to a [[Republic of Hawaii|Republic]] five years earlier in the overthrow of Queen Liliuokalani) was annexed into the United States.
67241
67242 === Texas ===
67243 {{main|Texas Annexation}}
67244 In 1836, the people of [[Texas]] voted to request that the United States annex Texas. Concerned with [[United States Constitution|the constitutionality]] of annexation and for fear of offending the controlling power, [[Mexico]], however, the [[Martin Van Buren|Van Buren Administration]] rejected the request, which was eventually withdrawn. In 1843, the United States became concerned with [[United Kingdom|British]] designs on Texas. A new president, [[John Tyler]], became a proponent of annexation. Following acceptance of the terms of annexation by the people of Texas, the young nation became a part of the United States in 1846.
67245
67246 === Ohio City ===
67247 [[Ohio City (Cuyahoga County), Ohio|Ohio City]], a suburb and fierce rival of [[Cleveland, Ohio]] was peacefully annexed to the city on [[June 5]], [[1854]].
67248
67249 === City of Atlanta ===
67250 In 1909 the [[United States|U.S.]] city of [[Atlanta]], then located only in [[Fulton County, Georgia|Fulton County]], annexed into part of neighboring [[DeKalb County, Georgia|DeKalb County]] (from which Fulton County had originally been divided). The situation continues to provide some problems, such as when police arrest suspects on charges set forth in [[Georgia (U.S. state)|Georgia]] [[U.S. state|state]] law, and city police must determine which county's jail they must be taken to.
67251
67252 === Jerusalem ===
67253 In the aftermath of the 1967 [[Six Day War]], in which [[Israel]] had occupied East [[Jerusalem]] as well as the [[West Bank]], [[Gaza]] and the [[Golan Heights]], Israel declared East and West Jerusalem one united city, incorporating the eastern part into one municipality, but soon after declaring to the UN that its measures were not annexation. In 1980 Israel passed the Jerusalem law, which redeclared the unity of Jerusalem as Israel's capital, but did not declare its borders. Some consider the latter act annexation, but without explict declaration of sovereignty this is in doubt. Israel's measures are not internationally recognized.
67254
67255 === Golan ===
67256 In 1981, Israel extended its &quot;laws, jurisdiction and administration&quot; to the [[Golan Heights]] (including the [[Shebaa Farms]]), which it captured from [[Syria]] in the 1967 [[Six Day War]]. This not entirely clear &quot;annexation&quot; declaration was declared &quot;null and void and without international legal effect&quot; by the [[United Nations]].
67257
67258 === Kuwait ===
67259 After being allied with [[Iraq]] during the [[Iran-Iraq War|Iran–Iraq War]] (largely due to desiring Iraqi protection from Islamic [[Iran]]), [[Kuwait]] was invaded and annexed by Iraq (under [[Saddam Hussein]]) in August 1990. Hussein's primary justifications included a charge that Kuwaiti territory was in fact an Iraqi province, and that annexation was retaliation for &quot;economic warfare&quot; Kuwait had waged through [[slant drilling]] into Iraq's oil supplies. The monarchy was deposed after annexation, and an Iraqi governor installed.
67260
67261 Though initially ambiguous toward a potential annexation of Kuwait by Iraq,{{fact}} US President [[George H. W. Bush]] ultimately condemned Hussein's actions, and moved to drive out Iraqi forces. Authorized by the [[UN Security Council]], an [[United States|American]]-led coalition of 34 nations fought the [[Persian Gulf War]] to reinstate the Kuwaiti [[Emir]]. Hussein's invasion (and annexation) was deemed illegal and Kuwait remains an independent nation today.
67262
67263 === Western Sahara ===
67264
67265 In 1975, [[Morocco]] invaded the former [[Spain|Spanish]] colony of [[Western Sahara]] and proclaimed it part of the kingdom. This has never been recognized internationally, and a nationalist movement, the [[Polisario Front]], representing the evicted [[Sahrawi]] native population, persists in claiming the area for an exiled [[Sahrawi Arab Democratic Republic|Sahrawi republic]]. A [[United Nations]] peace process was initiated in 1991, but it has been stalled, and the resumption of hostilities remain a possibility.
67266
67267 === Wales ===
67268 [[Wales]] was annexed to the legal system of [[England]] by the [[Laws in Wales Acts 1535-1542|Laws in Wales Acts 1535–1542]] to create a single jurisdiction, but references in legislation for 'England' were still taken as excluding Wales. The [[Wales and Berwick Act 1746]] meant that in all future laws, 'England' would by default include Wales (and [[Berwick-upon-Tweed]]). In 1967 the Wales and Berwick Act insofar as it applied to Wales was repealed. For many administrative and judicial purposes they are still treated as the single entity [[England and Wales]].
67269
67270 === Korea ===
67271 On [[August 22]], [[1910]], [[Korea]] was officially annexed by [[Japan]] with the [[Korea-Japan Annexation Treaty|Korea–Japan Annexation Treaty]] signed by [[Lee Wan-Yong]], [[Prime Minister of Korea]], and [[Masatake Terauchi]], Japanese Resident-General in Korea who became the [[Governor-General of Korea]]. Korea continued to be ruled by [[Japan]] until Japan's surrender to the Allied Forces on [[15 August]] [[1945]]. See [[Korea under Japanese rule]] for further information.
67272
67273 ===Austria===
67274 On [[March 12]], [[1938]], [[Nazi Germany]] annexed [[Austria]] in the ''[[Anschluss]]''. Austria's annexation marked the first major steps in [[Adolf Hitler]]'s long-desired expansion of Germany. The country was liberated from Nazi power at the end of [[World War II]] by the [[Allies of World War II|Allied Forces]].
67275
67276 ===Ethiopia===
67277 On [[May 9]], [[1936]], [[Ethiopia]] was annexed by [[Italy]], only to be liberated during the Allied [[East African Campaign]].
67278
67279 ==See also==
67280 *[[Expansionism]]
67281 *[[Fait accompli]]
67282 *[[Status quo ante bellum]]
67283 *[[Lebensraum]]
67284 *[[Irredentism]]
67285 *[[Revanchism]]
67286 *[[Reunification]]
67287 *Canadian [[Annexationist Movement]]
67288
67289 ==References==
67290
67291 * Carman F. Randolph, ''Law and Policy of Annexation'' (New York and London, 1901)
67292 * Charles Henry Butler, ''Treaty-making Power of the United States'' (New York, 1902), vol. i. p. 79 ''et seq''.
67293 * {{1911}}
67294
67295 [[Category:International law]]
67296 [[Category:Political geography]]
67297
67298 [[bg:АĐŊĐĩĐēŅĐ¸Ņ]]
67299 [[cs:Anexe]]
67300 [[de:Annexion]]
67301 [[et:Anneksioon]]
67302 [[eo:Anekso]]
67303 [[hr:Aneksija]]
67304 [[nl:Annexatie]]
67305 [[pl:Aneksja]]
67306 [[ru:АĐŊĐŊĐĩĐēŅĐ¸Ņ]]
67307 [[sv:Annexion]]</text>
67308 </revision>
67309 </page>
67310 <page>
67311 <title>Atomic bomb</title>
67312 <id>1238</id>
67313 <revision>
67314 <id>15899734</id>
67315 <timestamp>2005-04-28T04:40:32Z</timestamp>
67316 <contributor>
67317 <ip>80.191.221.15</ip>
67318 </contributor>
67319 <text xml:space="preserve">#REDIRECT [[Nuclear weapon]]</text>
67320 </revision>
67321 </page>
67322 <page>
67323 <title>Ashoka</title>
67324 <id>1239</id>
67325 <revision>
67326 <id>41901762</id>
67327 <timestamp>2006-03-02T14:08:10Z</timestamp>
67328 <contributor>
67329 <username>BrownHairedGirl</username>
67330 <id>754619</id>
67331 </contributor>
67332 <comment>/* Embrace of Buddhism */ disambig servant</comment>
67333 <text xml:space="preserve">{{dablink|For other meanings, see [[Ashoka (disambiguation)]].}}
67334 [[Image:Ashoka2.jpg|thumb|200px|Emperor Ashoka (a possible picturisation)]]
67335 '''Ashoka the Great''' ([[Devanagari language|Devanagari]]: &amp;#2309;&amp;#2358;&amp;#2379;&amp;#2325;; [[IAST|IAST transliteration]]: ''{{IAST|Aşoka}}'') was the emperor of the [[Mauryan Empire]] from [[273 BCE]] to [[232 BCE]]. After a number of military conquests, Ashoka reigned over most of [[South Asia]] and beyond, from present-day [[Afghanistan]] to [[Bengal]] and as far south as [[Mysore]]. An early supporter of [[Buddhism]], Ashoka established monuments marking several significant sites in the life of [[Shakyamuni Buddha]], and according to Buddhist tradition was closely involved in the preservation and transmission of Buddhism. In his edicts he is reffered to as &quot;Devaanaampriya&quot; or &quot;The Beloved Of The Gods&quot;
67336
67337 The name &quot;Ashoka&quot; means &quot;without sorrow&quot; in [[Sanskrit]]. Ashoka was the first ruler of ancient [[Bharatavarsha]] ([[India]]), after the famed [[Mahabharata]] rulers, to unify such a vast territory under his empire, which in retrospect exceeds the boundaries of the present-day [[Republic of India]].
67338
67339 The [[British literature|British author]] [[H.G. Wells]] wrote of Ashoka: ''&quot;In the history of the world there have been thousands of kings and emperors who called themselves 'their highnesses,' 'their majesties,' and 'their exalted majesties' and so on. They shone for a brief moment, and as quickly disappeared. But Ashoka shines and shines brightly like a bright star, even unto this day.&quot;''
67340
67341
67342 ==Historical sources==
67343 Information about the life and reign of Ashoka primarily comes from a relatively small number of Buddhist sources. In particular, the [[Sanskrit]] ''[[Avadana|Ashoka Avadana]]'' ('Story of Ashoka') and the two [[Pāli]] chronicles of [[Sri Lanka]] (the [[Dipavamsa]] and [[Mahavamsa]]) provide most of the currently known information about Asoka. Additional information is contributed by the [[Edicts of Asoka]], whose authorship was finally attributed to the Ashoka of Buddhist legend after the discovery of dynastic lists that gave the name used in the edicts ('''Priyadarsi'''- meaning 'good looking', or 'favored by the Gods') as a title or additional name of Ashoka Mauriya.
67344
67345 The use of Buddhist sources in reconstructing the life of Ashoka has had a strong influence on perceptions of Ashoka, and the interpretations of his edicts. Building on traditional accounts, early scholars regarded Ashoka as a primarily Buddhist monarch who underwent a conversion to Buddhism and was actively engaged in sponsoring and supporting the Buddhist monastic institution.
67346
67347 Later scholars have tended to question this assessment. The only source of information not attributable to Buddhist sources- the Ashokan edicts- make only a few references to Buddhism directly, despite many references to the concept of [[dharma]] (Sanskrit: [[dharma]]). Some interpreters have seen this as an indication that Ashoka was attempting to craft an inclusive, poly-religious civil religion for his empire that was centered on the concept of ''dharma'' as a positive moral force, but which did not embrace or advocate any particular philosophy attributable to the religious movements of Ashoka's age (such as the [[Jain]]s, Buddhists, orthodox [[Brahmanism|Brahmanists]], and [[Ajivika]]s).
67348
67349 Most likely, the complex religious environment of the age would have required careful diplomatic management in order to avoid provoking religious unrest. Modern scholars and adherants of the traditional Buddhist perspective both tend to agree that Ashoka's rule was marked by tolerance towards a number of religious faiths.
67350
67351 ==Early life==
67352 Ashoka was the son of the [[Maurya|Mauryan]] emperor [[Bindusara]] by a relatively lower ranked Queen known as Dharma. Dharma, it is said was the daughter of a poor Brahmin, who was introduced into the harem by her father as it was predicted that her son would be a great king. Understandably, her status in the harem was very low. Ashoka had several elder half-brothers and just one younger sibling, Vitthashoka, another son of Dharma.
67353 The Buddhist sources also indicate that he was quite ugly.
67354
67355 ==Rise to power==
67356 Developing into an impeccable warrior general and a shrewd statesman, Ashoka went on to command several [[regiment]]s of the Mauryan army. His growing popularity across the empire made his elder brothers wary of his chances of being favoured by [[Bindusara]] to become the next emperor. The eldest of them, Prince [[Susima]], the traditional heir to the throne, persuaded Bindusara to send Ashoka to quell an uprising in the city of [[Takshashila]] in the north-west province of [[Sindh]], of which Prince Susima was the governor. Takshashila was a highly volatile place because of the war-like [[Indo-Greek]] population and mismanagement by Susima himself. This had led to the formation of different [[militia]]s causing unrest. Ashoka complied and left for the troubled area. As news of Ashoka's visit with his army trickled in, he was welcomed by the revolting militias and the uprising ended without a fight. (The province revolted once more during the rule of Ashoka, but this time the uprising was crushed with an iron fist).
67357
67358 Ashoka's success made his half-brothers more wary of his intentions of becoming the emperor, and more incitements from Susima led Bindusara to send Ashoka into exile. He went into [[Orissa|Kalinga]] and stayed incognito there. There he met a fisherwoman named [[Kaurwaki]], with whom he fell in love; recently found inscriptions indicate that she went on to become his second or third queen.
67359
67360 Meanwhile, there was again a violent uprising in [[Ujjain]]. Emperor Bindusara summoned Ashoka back after an exile of two years. Ashoka went into Ujjain and in the ensuing battle was injured, but his generals quelled the uprising. Ashoka was treated in hiding so that loyalists of the Susima group could not harm him. He was treated by Buddhist monks and nuns. This is where he first learned the teachings of the [[Gautama Buddha|Buddha]], and it is also where he met Devi, who was his personal nurse and the daughter of a merchant from adjacent [[Vidisha]]. After recovering, he married her. Ashoka, at this time, was already married to Asandhimitra who was to be his much loved chief queen for many years till her death. She seems to have stayed on in Patliputra all her life.
67361
67362 The following year passed quite peacefully for him and Devi was about to deliver his first child. In the meantime, Emperor Bindusara took ill and was on his death bed. A clique of ministers lead by Radhagupta, who hated Susima, summoned Ashoka to take the crown, though Bindusara preferred Susima. As the Buddhist lore goes, in a fit of rage, Prince Ashoka attacked [[Pataliputra]] (modern day [[Patna]]), and killed all his brothers, including Susima, and threw their bodies in a well in Pataliputra. It is not known if Bindusara was already dead at this time. At that stage of his life, many called him '''Chanda Ashoka''' meaning murderer and heartless Ashoka.The Buddhist legends paint a gory picture of his sadistic activities at this time. Most are incredible, and must be read as supporting background to highlight the transformation Buddhism brought about later.
67363
67364 Ascending the throne, Ashoka expanded his empire over the next eight years, expanding it from the present-day boundaries of [[Bangladesh]] and the state of [[Assam]] in India in the east to the territory of present-day [[Iran]] and [[Afghanistan]] in the west; from the [[Pamir Knots]] in the north to the almost peninsular part of [[southern India]]. At that stage of his life, he was called '''Chakravarti''' which literally translates to &quot;he for whom the wheel of law turns&quot; (broadly meaning the emperor).
67365
67366 ====Conquest of Kalinga====
67367 [[Image:ashokan_empire.gif|right|thumb|250px|After the battle of Kalinga, Ashoka ruled most of the Indian subcontinent]]
67368 While the early part of Ashoka's reign was apparently quite bloodthirsty, he became a follower of the Buddha's teaching after his conquest of Kalinga, on the east coast of India in the present-day state of [[Orissa]]. Kalinga was a state that prided itself on its [[sovereignty]] and [[democracy]]; with its monarchical-cum-parliamentary democracy, it was quite an exception in ancient Bharata, as there existed the concept of [[Rajdharma]], meaning the duty of the rulers, which was intrinsically entwined with the concept of bravery and [[Kshatriya dharma]].
67369
67370 The pretext for the start of the [[Kalinga War]] ([[265 BC]] or [[263 BC]]) is uncertain. One of Susima's brothers might have fled to Kalinga and found official refuge there. This enraged Ashoka immensely. He was advised by his ministers to attack Kalinga for this act of treachery. Ashoka then asked Kalinga's royalty to submit before his supremacy. When they defied this ''[[diktat]]'', Ashoka sent one of his generals to Kalinga to make them submit.
67371
67372 The general and his forces were, however, completely routed through the skilled tactics of Kalinga's commander-in-chief. Ashoka, baffled at this defeat, attacked with the greatest invasion ever recorded in Indian history until then. Kalinga put up a stiff resistance, but they were no match for Ashoka's brutal strength. The whole of Kalinga was plundered and destroyed: Ashoka's later edicts say that about 100,000 people were killed on the Kalinga side and 10,000 from Ashoka's army; thousands of men and women were deported.
67373
67374 ==Embrace of Buddhism==
67375 As the legend goes, one day after the war was over, Ashoka ventured out to roam the city and all he could see were burnt houses and scattered corpses. This sight made him sick and he cried the famous quotation, &quot;What have I done?&quot; The brutality of the conquest led him to adopt [[Buddhism]] and he used his position to propagate the relatively new philosophy to new heights, as far as ancient [[Rome]] and [[Egypt]]. From that point Ashoka, who had been described as &quot;the cruel Ashoka&quot; (''Chandashoka''), started to be described as &quot;the pious Ashoka&quot; (''Dharmashoka''). He propagated the Vibhajjvada school of Buddhism and preached it within his domain and worldwide from about [[250 BC]]. Emperor Ashoka undoubtedly has to be credited with the first serious attempt to develop a Buddhist [[polity]].
67376
67377 [[Image:MauryanCoin.JPG|thumb|300px|Silver punch-mark coins of the '''Mauryan empire''', bear Buddhist symbols such as the [[dharma wheel]], the elephant (previous form of the Buddha), the tree under which enlightenment happened, and the burial mound where the Buddha died (obverse). [[3rd century BC]].]]
67378
67379 Prominent in this cause were his son Venerable [[Mahindra]] and daughter [[Sanghamitra]] (whose name means &quot;friend of the [[Sangha]]&quot;), who established Buddhism in [[Ceylon]] (now [[Sri Lanka]]). He built thousands of [[stupa]]s and [[Vihara]]s for Buddhist followers. The Stupas of [[Sanchi]] are world famous and the stupa named Sanchi Stupa 1 was built by Emperor Ashoka. During the remaining portion of Ashoka's reign, he pursued an official policy of [[nonviolence]] or [[ahimsa]]. Even the unnecessary slaughter or mutilation of animals was immediately abolished. [[Wildlife]] became protected by the king's law against [[sport]] [[hunting]] and [[branding]]. Limited hunting was permitted for consumption reasons but Ashoka also promoted the concept of [[vegetarianism]]. Ashoka also showed mercy to those imprisoned, allowing them outside one day each year. He attempted to raise the professional ambition of the common man by building [[university|universities]] for study and water transit and [[irrigation]] systems for [[trade]] and [[agriculture]]. He treated his subjects as equals regardless of their religion, politics and [[caste]]. The kingdoms surrounding his, so easily overthrown, were instead made to be well-respected allies.
67380
67381 He is acclaimed for constructing [[hospital]]s for animals and renovating major roads throughout [[India]]. Dharmashoka defined the main principles of ''dharma'' (''dharma'' in [[Pāli]]) as nonviolence, [[tolerance]] of all [[sect]]s and opinions, [[obedience]] to parents, [[respect]] for the [[Brahman]]s and other religious teachers and [[priest]]s, [[liberal]] towards friends, humane treatment of [[servant (domestic)|servant]]s, and [[generosity]] towards all. These principles suggest a general ethic of behavior to which no religious or social group could object.
67382
67383 [[Image:AsokaKandahar.jpg|thumb|250px|left|Bilingual edict ([[Greek language|Greek]] and [[Aramaic]]) by king Ashoka, from [[Kandahar]]. [[Kabul]] Museum.]]
67384 Some critics say that Ashoka was afraid of more wars, but among his neighbors, including the [[Seleucid Empire]] and the [[Greco-Bactrian]] kingdom established by [[Diodotus I]], none could match his strength. He was a contemporary of both [[Antiochus I Soter]] and his successor [[Antiochus II Theos]] of the [[Seleucid dynasty]] as well as Diodotus I and his son [[Diodotus II]] of the Greco-Bactrian kingdom. If his [[inscription]]s and [[edict]]s are well studied, one finds that he was familiar with the [[Hellenic world]] but never in awe of it. The [[Edicts of Ashoka]], which talk of friendly relations, give the names of both Antiochus of the Seleucid empire and [[Ptolemy III]] of [[Egypt]]. But the fame of the Mauryan empire was widespread from the time that Ashoka's grandfather [[Chandragupta Maurya]] defeated [[Seleucus I Nicator|Seleucus Nicator]], the founder of the [[Seleucid Dynasty]].
67385
67386 The [[Pillars of Ashoka|Ashoka Pillar]] at [[Sarnath]] is the most popular of the relics left by Ashoka. Made of [[sandstone]], this pillar records the visit of the emperor to Sarnath, in the [[3rd century BC]]. It has a [[Lion Capital of Asoka|four-lion capital]] (four lions standing back to back) which was adopted as the [[National emblem|emblem]] of the modern Indian republic. The lion symbolises both Ashoka's imperial rule and the kingship of the Buddha. In translating these monuments, historians learn the bulk of what is assumed to have been true fact of the Mauryan Empire. It is difficult to determine whether certain events ever happened, but the stone etchings depict clearly of how Ashoka wanted to be thought and how he wanted to be remembered.
67387
67388 Ashoka's own words as known from his Edicts are: &quot;All men are my children. I am like a father to them. As every father desires the good and the happiness of his children, I wish that all men should be happy always.&quot; Edward D'Cruz interprets the Ashokan ''dharma'' as a &quot;religion to be used as a symbol of a new imperial unity and a cementing force to weld the diverse and heterogeneous elements of the empire&quot;.
67389
67390 '''See also''': [[Edicts of Ashoka]]
67391
67392 ==Death and legacy==
67393 [[Image:Asoka1.gif|thumb|right|200px|Ashoka's first rock inscription at [[Girnar]]]]
67394 Emperor Ashoka ruled for an estimated forty years, and after his death, the Maurya dynasty lasted just fifty more years. Ashoka had many wives and children, but their names are lost to time. [[Mahindra]] and [[Sanghamitra]] were twins born by his fourth wife, [[Devi]], in the city of [[Ujjain]]. He had entrusted to them the job of making his state religion, Buddhism, more popular across the known and the unknown world. [[Mahindra]] and [[Sanghamitra]] went into [[Sri Lanka]] and converted the King, the Queen and their people to Buddhism. So they were naturally not the ones handling state affairs after him.
67395 In his old age, he seems to have come under the spell of his youngest wife Tishyarakshita. It is said that she had got his son Kunala, the regent in Takshashila, blinded by a wily stratagem. When Ashoka discovered this he had Kunala's son Samprati declared the successor. But his rule did not last long after Ashoka's death.
67396
67397 [[Image:AshokaCapital.jpg|left|thumb|200px|The [[Emblem of India]] is a replica of [[Ashoka Pillar]]]]
67398
67399 The reign of Emperor Ashoka Maurya could easily have disappeared into history as the ages passed by, and would have, if he had not left behind a record of his trials. The testimony of this wise king was discovered in the form of magnificently sculpted pillars and boulders with a variety of actions and teachings he wished to be published etched into the stone. What Ashoka left behind was the first written language in India since the ancient city of [[Harappa]]. Rather than Sanskrit, the language used for inscription was the current spoken form called [[Prakrit]].
67400
67401 In the year [[185 BC]], about fifty years after Ashoka's death, the last Mauryan ruler, [[Brhadrata]], was brutally murdered by the commander-in-chief of the Mauryan armed forces, [[Pusyamitra Sunga]], while he was taking the Guard of Honor of his forces. Pusyamitra Sunga founded the [[Sunga dynasty]] ([[185 BC]]-[[78 BC]]) and ruled just a fragmented part of the Mauryan Empire.
67402
67403 Not until some 2,000 years later under [[Akbar|Akbar the Great]] and his great-grandson [[Aurangzeb]] would as large a portion of the [[subcontinent]] as that ruled by Ashoka again be united under a single ruler. When India gained independence from the [[British Empire]] it adopted Ashoka's emblem for its own, placing the [[dharma wheel]](The Wheel of Rightious Duty) that crowned his many columns on the [[Flag of India|flag]] of the newly independent state.
67404
67405 Ashoka was ranked #53 on [[Michael H. Hart]]'s [[The 100|list of the most influential figures in history]].
67406
67407 A semi-fictionalized portrayal of Ashoka's life was produced as a motion picture recently under the title [[Asoka (film)|Asoka]].
67408
67409 ===Ashoka and Buddhist Kingship===
67410 One of the more enduring legacies of Ashoka Maurya was the model that he provided for the relationship between Buddhism and the state. Throughout Theravada Southeast Asia, the model of rulership embodied by Ashoka replaced the Brahmanist notion of divine kingship that had previously dominated (in the [[Angkor]] kingdom, for instance). Under this model of 'Buddhist kingship', the king sought to legitimize his rule not through descent from a divine source, but by supporting and earning the approval of the Buddhist ''[[sangha]]''. Following Ashoka's example, kings established monasteries, funded the construction of stupas, and supported the ordination of monks in their kingdom. Many rulers also took an active role in resolving disputes over the status and regulation of the sangha, as Ashoka had in calling a conclave to settle a number of contentious issues during his reign. This development ultimately lead to a close association in many Southeast Asian countries between the monarchy and the religious hierarchy, an association that can still be seen today in the state-supported [[Buddhism in Thailand|Buddhism of Thailand]] and the traditional role of the Thai king as both a religious and secular leader.
67411
67412 Ashoka also said that all his courtiers were true to their self and governed the people in a moral manner
67413
67414 ==Ashoka in popular culture==
67415
67416 * ''[[Asoka (film)|Asoka]]'' is a [[film]] based on his life.
67417 * ''Asoka ki chinta'' is a famous hindi poem by [[Jaishankar Prasad]]. The poem portrays Asoka's mindset during [[Kalinga War]].
67418 * In some [[conspiracy theories]] Ashoka is mentioned as the founder of a powerful secret society called the [[Nine Unknown Men]].
67419 * Ashoka is a character in the turn-based strategy game [[Civilization 4]].
67420
67421 ==Sources==
67422 Swearer, Donald. ''Buddhism and Society in Southeast Asia''. Anima Books. Chambersburg, PA. 1981. ISBN 0890120234.
67423
67424 ==External links==
67425 {{wikiquote}}
67426 [http://www.buddhanet.net/pdf_file/king_asoka.pdf King Asoka and Buddhism. Historical and Literary studies]
67427
67428 {{start box}}
67429 {{succession box|title=[[Mauryan dynasty|Mauryan ruler]] | before=[[Bindusara]]|after=[[Dasaratha_Maurya|Dasaratha]]|years=[[272 BC|272]]-[[232 BC]]}}
67430 {{end box}}
67431 {{Indian selected article}}
67432
67433 [[Category:Mauryan dynasty]]
67434 [[Category:Buddhists]]
67435 [[Category:Indian monarchs|Ashoka]]
67436 [[Category:Theravada Buddhism]]
67437 [[Category:History of Orissa]]
67438
67439 [[de:Ashoka]]
67440 [[es:Ashoka]]
67441 [[fa:ØĸØ´ŲˆÚŠØ§ شاŲ‡]]
67442 [[fr:Ashoka]]
67443 [[id:Asoka]]
67444 [[hu:AsÃŗka]]
67445 [[nl:Asoka]]
67446 [[ja:ã‚ĸã‚ˇãƒ§ãƒŧã‚ĢįŽ‹]]
67447 [[pl:Aśoka]]
67448 [[pt:Asoka]]
67449 [[ru:АŅˆĐžĐēĐ°]]
67450 [[fi:Ashoka]]
67451 [[sv:Ashoka]]
67452 [[vi:A-dáģĨc vÆ°ÆĄng]]
67453 [[zh:é˜ŋ育įŽ‹]]</text>
67454 </revision>
67455 </page>
67456 <page>
67457 <title>Archaea</title>
67458 <id>1240</id>
67459 <revision>
67460 <id>41711512</id>
67461 <timestamp>2006-03-01T05:47:16Z</timestamp>
67462 <contributor>
67463 <ip>63.24.31.63</ip>
67464 </contributor>
67465 <comment>Be a pal and give some links to these terms</comment>
67466 <text xml:space="preserve">{{Taxobox
67467 | color = darkgray
67468 | name = Archaea
67469 | domain = '''Archaea'''
67470 | domain_authority = [[Carl Woese|Woese]], [[Otto Kandler|Kandler]] &amp; [[Mark Wheelis|Wheelis]], 1990
67471 | subdivision_ranks = Phyla / Classes
67472 | subdivision =
67473 Phylum [[Crenarchaeota]]&lt;br /&gt;
67474 Phylum [[Euryarchaeota]]&lt;br /&gt;
67475 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Halobacteria]]&lt;br /&gt;
67476 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Methanobacteria]]&lt;br /&gt;
67477 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Methanococci]]&lt;br /&gt;
67478 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Methanopyri]]&lt;br /&gt;
67479 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Archaeoglobi]]&lt;br /&gt;
67480 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Thermoplasmata]]&lt;br /&gt;
67481 &amp;nbsp;&amp;nbsp;&amp;nbsp; [[Thermococci]]&lt;br /&gt;
67482 Phylum [[Korarchaeota]]&lt;br /&gt;
67483 Phylum [[Nanoarchaeum|Nanoarchaeota]]
67484 }}
67485 The '''Archaea''' ({{IPA2|ɑːˌkiːə}}), also called '''Archaebacteria''' ({{IPA2|ˈɑːkÉĒbakˌtÉĒərÉĒə}}), are a major division of [[life|living]] [[organism]]s. Although there is still uncertainty in the exact [[phylogeny]] of the groups, Archaea, [[Eukaryote]]s and [[Bacteria]] are the fundamental classifications in what is called the [[three-domain system]]. Archaea are, like bacteria, single-cell organisms lacking [[cell nucleus|nuclei]] and are therefore classified as [[prokaryote]]s &amp;mdash; known as [[Monera]] in the five-[[kingdom (biology)|kingdom]] [[Linnaean taxonomy | taxonomy]]. They were originally described in [[extremophile | extreme]] environments, but have since been found in all types of [[habitat]]s.
67486
67487 == History ==
67488 Archaea were identified in [[1977]] by [[Carl Woese]] and George Fox based on their separation from other prokaryotes on 16S [[rRNA]] [[phylogenetic tree]]s. These two groups were originally named the Archaebacteria and Eubacteria, treated as [[kingdom (biology)|kingdom]]s or subkingdoms. Woese argued that they represented fundamentally different branches of living things. He later renamed the groups Archaea and [[Bacteria]] to emphasize this, and argued that together with [[Eukarya]] they comprise [[three-domain system|three domains]] of living things.
67489
67490 == Archaea, Bacteria and Eukaryotes==
67491 Archaea are similar to other prokaryotes in most aspects of [[Cell (biology)|cell]] structure and [[metabolism]]. However, their genetic [[transcription (genetics)|transcription]] and [[translation (genetics)|translation]] &amp;mdash; the two central processes in [[molecular biology]] &amp;mdash; do not show the typical bacterial features, but are extremely similar to those of [[eukaryote]]s. For instance, archaean translation uses eukaryotic initiation and elongation factors, and their transcription involves TATA-binding proteins and TFIIB as in eukaryotes.
67492
67493 Several other characteristics also set the Archaea apart. Like bacteria and eukaryotes, archaea possess [[glycerol]] based [[phospholipids]]. However, three features of the archaeal lipids are unusual:
67494
67495 *The archaeal lipids are unique because the stereochemistry of the glycerol is the reverse of that found in bacteria and eukaryotes. This is strong evidence for a different biosynthetic pathway.
67496
67497 *Most bacteria and eukaryotes have membranes composed mainly of glycerol-[[ester]] [[lipid]]s, whereas archaea have membranes composed of glycerol-''[[ether]]'' lipids. Even when bacteria have ether-linked lipids, the stereochemistry of the glycerol is the bacterial form. This differences may be an adaptation on the part of Archaea to [[hyperthermophile|hyperthermophily]]. However, it is worth noting that even mesophilic archaea have ether-linked lipids.
67498
67499 *Archaeal lipids are based upon the [[isoprene|isoprenoid]] sidechain. This is a five-carbon unit that is also common in rubber and as a component of some vitamins common in bacteria and eukaryotes. However, only the archaea incorporate these compounds into their cellular lipids, frequently as C-20 (four monomers) or C-40 (eight monomers) sidechains. In some archaea, the C-40 isoprenoid side-chain is actually long enough to span the membrane, forming a monolayer for a [[cell membrane]] with glycerol phosphate moieties on both ends.
67500
67501 Although dramatic, this adaptation is most common in the extremely thermophilic archaea. Although not unique, the archaeal cell walls are also unusual. For instance, the cell walls of most archaea are formed by surface layer proteins or an S-layer. S-layers are common in bacteria, where they serve as the sole cell wall component in some organisms (like the Planctomyces) or an outer layer in many organisms with peptidoglycan. With the exception of one group of methanogens, archaea lack a [[peptidoglycan]] wall. Even in this case, the peptidoglycan is very different from the type found in bacteria. Archaeans also have [[flagellum|flagella]] that are notably different in composition and development from the superficially similar flagella of bacteria.
67502
67503 [[image:PhylogeneticTree.jpg|thumb|left|320px|A phylogenetic tree based on [[rRNA]] data, showing the separation of bacteria, archaea, and eukaryotes.]]
67504
67505 ==Habitats==
67506 Many archaeans are [[extremophile]]s. Some live at very high temperatures, often above 100&amp;deg;C, as found in [[geyser]]s and [[black smoker]]s. Others are found in very cold habitats or in highly-[[salt|saline]], [[acid]]ic, or [[alkaline]] water. However, other archaeans are [[mesophile]]s, and have been found in environments like [[marsh]]land, [[sewage]], and [[soil]]. Many [[methanogen]]ic archaea are found in the digestive tracts of animals such as [[ruminant]]s, [[termite]]s, and humans. Archaea are usually harmless to other organisms and none are known to cause disease.
67507
67508 ==Form==
67509 Individual archaeans range from 0.1 &amp;mu;m to over 15 &amp;mu;m in diameter, and some form aggregates or filaments up to 200 &amp;mu;m in length. They occur in various shapes, such as spherical, rod-shape, spiral, lobed, or rectangular. They also exhibit a variety of different types of metabolism. Of note, the [[halobacteria]] can use light to produce [[adenosine triphosphate|ATP]], although no Archaea conduct [[photosynthesis]] with an electron transport chain, as occurs in other groups.
67510
67511 ==Evolution and classification==
67512
67513 Archaea are divided into two main groups based on rRNA trees, the [[Euryarchaeota]] and [[Crenarchaeota]]. Two other groups have been tentatively created for certain environmental samples and the peculiar species ''[[Nanoarchaeum|Nanoarchaeum equitans]]'', discovered in 2002 by [[Karl Stetter]], but their affinities are uncertain.
67514
67515 Woese argued that the bacteria, archaea, and eukaryotes each represent a primary line of descent that diverged early on from an ancestral ''[[progenote]]'' with poorly-developed genetic machinery. This hypothesis is reflected in the name Archaea, from the Greek ''archae'' or ancient. Later he treated these groups formally as [[three-domain system|domain]]s, each comprising several kingdoms. This division has become very popular, although the idea of the progenote itself is not generally supported. Some biologists, however, have argued that the archaebacteria and eukaryotes arose from specialized eubacteria.
67516
67517 The relationship between Archaea and Eukarya remains an important problem. Aside from the similarities noted above, many genetic trees group the two together. Some place eukaryotes closer to Eurarchaeota than Crenarchaeota are, although the membrane chemistry suggests otherwise. However, the discovery of archaean-like genes in certain [[bacterium|bacteria]], such as ''Thermotoga'', makes their relationship difficult to determine. Some have suggested that eukaryotes arose through fusion of an archaean and eubacterium, which became the nucleus and cytoplasm, which accounts for various genetic similarities but runs into difficulties explaining cell structure.
67518
67519 Single gene [[sequencing]] for [[systematics]] has led to whole [[genome sequencing]]; currently 24 archaeal genomes have been completed with 22 partially completed [http://www.ncbi.nlm.nih.gov/genomes/lproks.cgi].
67520
67521 ==External links==
67522 * [http://www.microbe.org/microbes/archaea.asp Archaea]
67523 * [http://www.archaea.unsw.edu.au/ ArchaeaWeb - by UNSW - Information about Archaea]
67524 * [http://www.ucmp.berkeley.edu/archaea/archaea.html Introduction to the Archaea, ecology, systematics and morphology]
67525 * [http://www.mediscover.net/Extremophiles.cfm Extremophiles Bioprospecting for antimicrobials, Dr Sarah Maloney] Citat: &quot;...Ground breaking research on extremophiles continues to this day, with the recently-discovered 22nd genetically-encoded [[amino acid]] &amp;ndash; [[pyrrolysine]] &amp;ndash; from the archaeon, ''Methanosarcina barkeri'', (Hao et al., 2002; Srinivasan et al., 2002)....&quot;
67526 * [http://news.bbc.co.uk/1/hi/sci/tech/399972.stm BBC News July 21, 1999: Toughest bug reveals genetic secrets] Citat: &quot;...It [''Pyrococcus abyssi''] likes conditions that the vast majority of other organisms would find impossible to live in. It thrives best at temperatures of about 103 degrees [Celsius] and under pressures of about 200 atmospheres....&quot;
67527 * [http://www.genoscope.cns.fr/Pab/ Pyrococcus abyssi Home page at Genoscope]
67528
67529 ==References==
67530 * {{cite book | author=Howland, John L. | title=The Surprising Archaea: Discovering Another Domain of Life | publisher=Oxford: Oxford University Press | year=2000 | id=ISBN 0-19-511183-4}}
67531 * {{cite journal | author=Lake, J.A. | title=Origin of the eukaryotic nucleus determined by rate-invariant analysis of rRNA sequences | journal=Nature | year=1988 | volume=331 | pages=184–186}}
67532 * {{cite journal | author=Woese, Carl R.; Fox, George E. | title=Phylogenetic Structure of the Prokaryotic Domain: The Primary Kingdoms | journal=Proceedings of the National Academy of Sciences of the United States of America | year=1977 | issue=11 | volume=74 | pages=5088–5090}}
67533 * {{cite journal | author = Woese, Carl R., Kandler, Otto, Wheelis, Mark L | title = Towards a natural system of organisms: Proposal for the domains Archaea, Bacteria, and Eucarya | journal = Proceedings of the National Academy of Sciences | year = 1990 | issue = 12 | volume = 87 | pages = 4576–4579}}
67534
67535 [[Category:Archaea| ]]
67536 [[Category:Extremophiles]]
67537
67538 [[ca:Arqueobacteri]]
67539 [[cs:Archea]]
67540 [[cy:Archaea]]
67541 [[da:Archaea]]
67542 [[de:Archaeen]]
67543 [[et:Arhed]]
67544 [[es:Archaea]]
67545 [[eo:Arkio]]
67546 [[fr:Archaea]]
67547 [[ko:ęŗ ė„¸ęˇ ]]
67548 [[he:חיידקים קדומים]]
67549 [[la:Archaea]]
67550 [[lb:ArchaeÃĢn]]
67551 [[nl:Archaea]]
67552 [[nds:Archaeen]]
67553 [[ja:古į´°čŒ]]
67554 [[no:Arkebakterier]]
67555 [[pl:Archeowce]]
67556 [[pt:Archaea]]
67557 [[sl:Arheja]]
67558 [[fi:ArkkieliÃļt]]
67559 [[sv:ArkÊer]]
67560 [[vi:Archaea]]
67561 [[zh:古į´°čŒ]]</text>
67562 </revision>
67563 </page>
67564 <page>
67565 <title>Use of the word American</title>
67566 <id>1241</id>
67567 <revision>
67568 <id>41992568</id>
67569 <timestamp>2006-03-03T02:20:29Z</timestamp>
67570 <contributor>
67571 <username>Che829</username>
67572 <id>401724</id>
67573 </contributor>
67574 <comment>/* The alternatives */</comment>
67575 <text xml:space="preserve">{{pov}}
67576 '''''American''''', when used as an adjective, most frequently is used to mean &quot;of the [[United States|United States of America]]&quot; in the English language. Less frequently, in a United States context, it means &quot;of or relating to [[the Americas]].&quot; When used as a noun, it most frequently is used to mean &quot;United States [[citizen]].&quot; Less frequently, &quot;residing in the Americas,&quot; or &quot;[[American English]].&quot;
67577
67578 ==''American'' in the Americas==
67579 The word [[The Americas|America]] was [[The Americas#Naming of America|derived]] by [[Holy Roman Empire|German]] cartographer [[Martin WaldseemÃŧller]] from the Latinized version of the name of [[Amerigo Vespucci]] (''Americus Vespucius''), an [[Italy|Italian]] merchant and cartographer whose exploratory journeys in the late 1400s and early 1500s brought him to the eastern coastline of [[South America]] and to the [[Caribbean]]. The term ''American'' was subsequently used as an adjective describing the [[New World]] and its native people.
67580
67581 Starting by 1700 the word &quot;American&quot; was used by Europeans for the Indians in the New World. In 1765 came the first use to describe the British colonists. That usage was widespread by 1774, and in 1776 the [[Declaration of Independence (United States)|Declaration of Independence]] proclaimed a new country, &quot;The United States of America.&quot; At that time &quot;America&quot; was also used to designate continents in atlases published in Europe, but very few people ever saw those books. The [[American Revolution]] was closely followed in Europe, and the term became common for the inhabitants of the new nation. Since 1776, the term ''American'' has gained universal usage in reference to residents of the [[United States of America]]. Controversy has arisen over whether this usage is appropriate, or whether the term should only be used as an adjective covering the whole of [[North America]] and [[South America]]. Geographers disagree among themselves: English language atlases display two continents, &quot;North America&quot; and &quot;South America&quot; while Spanish language atlases display one continent, &quot;America.&quot;
67582
67583 Proponents of the usage of ''American'' as a lexical attachment to 'America' broadly defined as the continent/s of North and South America argue that current usage is at best inaccurate, historically incorrect and at worst redolent of perceived US [[imperialism]]. They add that the main purpose of clear language is to avoid ambiguity.
67584
67585 Proponents of the usage of ''American'' to refer to the United States argue that the USA is the only sovereign nation in the world with the word ''America'' in its official name. Additionally, other nations, including Mexico presently and Brazil in the past, have or have had the term &quot;United States&quot; in their official names. Thus, to many, referring to U.S. citizens as ''Americans'' is convenient and legitimate, while using ''U.S.'' could in fact be ambiguous. Also, there is tradition to consider as the term has been applied to residents of the U.S. from the very beginning of that country.
67586
67587 Critics opposed to the change say that [[essentialism]] regarding words is an error. Lexicographers tell how people use the word; they do not issue edicts that say &quot;America&quot; can only refer to geographical continents rather than a country. Every major dictionary makes clear that &quot;American&quot; applied to residents of the U.S. is standard usage, and has been for over 200 years in every Anglophone country.
67588
67589 In [[Canada]], the term &quot;American&quot; is widely understood to refer exclusively to citizens of the U.S., and Canadians do not refer to themselves as Americans. On the other hand, in [[Spain]], people who have lived in the Western Hemisphere but now live in Spain may be called, in Spanish, ''americanos'' (translated into English as &quot;Americans&quot;).
67590
67591 In discussions of geography, one might specify North America, Central America, or South America when the reference is to a continent or region. Residents of the Western Hemisphere rarely call themselves &quot;North American&quot; or &quot;South American&quot;; the term &quot;Central American&quot; is more common. Many alternative [[neologism]]s to ''American'' have been proposed to refer to the United States of America, but they have failed to garner widespread acceptance.
67592
67593 This has given rise to terms like &quot;[[Mexican-American]]&quot; or &quot;Canadian-American&quot; to refer to people of Mexican or Canadian origin living in the United States—either as first-generation immigrants or their descendants. These terms are never used to refer to natives of Mexico or Canada. Geo-politically speaking, such terms are redundant.
67594
67595 [[Canadian identity|Canadians]] in particular have devoted a great deal of attention to proclaiming that they are not-Americans -meaning US citizens-, both in their own cultural products and when they travel outside the region and are frequently mistaken as coming from the United States.
67596
67597 ===American in the US Census===
67598 [[Image:American1346.gif|thumb|&quot;American&quot; ancestry in US counties.]]
67599
67600 In the United States census, millions of people describe their (main) [[ethnic origin]] as &quot;American&quot;, particularly those belonging in southern states. This region has a high percentage of people who trace their descent to the colonial origins of the United States and often lack records of the particular, but generally, British countries of their ancestor's origins.
67601
67602 ==''American'' in cultural usages==
67603 '''American''', culturally, generally refers to things which originated within the United States of America.
67604
67605 Some foods, such as hamburgers, are seen as [[American cuisine]].
67606
67607 Some sports, such as [[baseball]] or [[American football]], are seen as American, even though they may be played in other countries.
67608
67609 Some music, such as [[jazz]], [[country music]], or [[American folk music]] are seen as American, even though they may be popular in other countries.
67610
67611 ==''American'' in other languages==
67612 [[English language|English]] speakers commonly use ''American'' to refer to the United States only. In the [[United Kingdom]], the use of 'US' as an adjective is preferred where it can be comfortably used, and is prevalent in media and government house-styles.
67613
67614 In [[Spanish language|Spanish]], ''americano'' tends to refer to any resident of the Americas and not from the United States; English spoken in Latin America often makes this distinction as well.
67615
67616 ''US-American'' is another option, and is the dominant demonym in German (''US-Amerikaner''). Latin Americans also have the [[euphemism]] ''norteamericano'' (''North American'', which itself conflates the USA and Canada and possibly Mexico).
67617
67618 ''United Statian'' is awkward in English, but it exists in Spanish (''estadounidense'') and occasionally in German (''Vereinigten Staatler''), and in [[Portuguese language|Portuguese]] (both in [[Portugal]] and [[Brazil]]), where the term ''estadunidense'' is growing and it is considered more appropriate than the common term ''norte-americano''.
67619
67620 The word [[Gringo]] is widely used in all of [[Latin America]], particularly in Mexico, to make a reference to U.S. residents, not necessarily in a pejorative way. ''Yanqui'' (''[[Yankee]]'') is also very common in some regions.
67621
67622 There have been a number of attempts to [[neologism|coin]] an alternative to &quot;[[American (disambiguation)|American]]&quot; as an adjective (a [[demonym]]) for a citizen of the [[United States]], that would not simultaneously mean a citizen of the Americas.
67623
67624 With the [[1994]] passage of the [[North American Free Trade Agreement]], the following words were used to label the ''United States Section'' of that organization: in [[Canadian French]], ''Êtatsunien''; in Spanish, ''estadounidense''.
67625
67626 ==Seeking alternate names==
67627 Many people use the word &quot;American&quot; to indicate any inhabitant of [[the Americas]] (which many people in other parts of the world tend to consider a single continent, called America) rather than specifically a citizen of the United States; and perceive the latter usage of &quot;American&quot; to be potentially ambiguous, and perhaps aggressive in tone or imperialistic, a rather widespread view in Latin America.
67628
67629 However, many in the US assert that the word &quot;America&quot; in &quot;United States of America&quot; denotes the country's proper name, and is not a geographical indicator. They argue that the interpretation of ''United States '''of''' America'' to mean a country named ''United States'' located in the continent of ''America'' is mistaken. Instead, they argue that the preposition ''of'' is equivalent to the ''of'' in ''Federative Republic '''of''' Brazil'', ''Commonwealth '''of''' Australia'', ''Federal Republic '''of''' Germany''. That is, the ''of'' indicates the name of the state. In addition, other countries use &quot;United&quot; or &quot;States&quot; in their names as well. Indeed, the formal name of [[Mexico]] is ''Estados Unidos Mexicanos'', currently officially translated as &quot;United Mexican States&quot; had in the past been translated as &quot;United States of Mexico.&quot;
67630
67631 Regardless, many question a nation's right to formally appropriate the name of a continent for itself, citing the fact that America existed long before the United States ''of'' America. Indeed, [[Amerigo Vespucci]] (who travelled extensively throughout the Caribbean basin) never set foot on present US territory.
67632
67633 Some U.S. citizens and Latin Americans alike have no problem with the simultaneous usage of &quot;American&quot; as an adjective for all inhabitants of the Americas, and make the distinction between the demonym for a country and the demonym for a continent (or continents). They argue that there is no reason the two cannot share the term if it is used in distinct but equally legitimate contexts.
67634
67635 In other cases, the motivation is not so much political as it is academic, to avoid a perceived ambiguity. For instance, in legal circles a citizen of the United States is usually referred to as a 'U.S. citizen,' not an 'American citizen,' which could arguably apply to citizens of other American nation states as well.
67636
67637 A modern alternative term used by Latin speakers to reffer the people from the United Sates in their language is &quot;USen,&quot; situable short for &quot;United States Citizen.&quot;
67638
67639 ==The alternatives==
67640 Attempts to create such a name have failed to gain widespread use. Proposals have included:
67641 *Americanite
67642 *Appalacian (now only considered an accurate term for the people of [[Appalachia]])
67643 *Colonican
67644 *Columbard
67645 *[[Historical Columbia|Columbia]]n (hence the [[Washington, D.C.|District of Columbia]])
67646 *Frede or Fredonian
67647 *[[Nacirema]]
67648 *Statesider
67649 *Uesican (pronounced {{IPA|[juˈɛsÉĒkən]}}) or Uessian (pronounced {{IPA|[juˈɛsiən]}})
67650 *Unisan or Unisian
67651 *United States American, United Stater, United Stateser, United Statian, United Statesian, or United Statesman
67652 *USAian, U.S. American, Usan, USAn, Usanian, Usian (pronounced {{IPA|[ˈjuʒən]}}), U-S-ian, or [[Usonia]]n (pronounced {{IPA|[juˈsoʊniən]}})
67653 *USen
67654 *Vespuccino
67655 *Washingtonian.
67656
67657 References to these words have been around since the early days of the republic, but ''American'' has become by far the most common term. ''[[Usonia]]n'' is used in architectural circles, and ''Washingtonian'' remains as the adjective for the state of [[Washington]] and the city of [[Washington, D.C.]].
67658
67659 Several of these terms have direct parallels in languages other than [[English language|English]]. Many languages have already created their own distinct word for a citizen of the United States:
67660 *''United Statian'' directly parallels the [[Spanish language|Spanish]] term ''estadounidense''.
67661 *''Norteamericano'' (North American) is common in [[Latin America]], but suffers from the same kind of ambiguity as ''American'', since Canadians and Mexicans, amongst others, are also North Americans.
67662 * In [[Portuguese language|Portuguese]], ''norte-americano'' is the most commonly used term. ''Estadunidense'' is gaining some popularity, specifically in [[Brazil]], where its usage traditionally rises during times of tension with the USA.
67663 *''Amerikan'' is a derogatory spelling, after the Eastern European spelling made popular in the West by Franz Kafka's 1946 novel.
67664 *''Usonian'', from [[Usonia]], a term [[Frank Lloyd Wright]] used to describe his vision for American [[architecture]], homes, and cities, and used by [[John Dos Passos]] in his [[U.S.A. trilogy]].
67665 * The [[Esperanto]] term for the [[United States|United States of America]] is ''Usono''. This is generally thought to come from &quot;[[Usonia]].&quot; In Esperanto, one forms the word for a citizen of a given country using the suffix &quot;-an&quot; which means &quot;member of.&quot; Therefore a citizen of the United States is ''usonano''. (Such derived words are not capitalized.) Esperanto terms for the American geographic regions and their people are ''Ameriko/amerikano'', ''Norda Ameriko/nordamerikano'', ''Meza Ameriko/mezamerikano'', and ''Suda Ameriko/sudamerikano''.
67666 *''Usanian'' is derived from the [[Ido]] word ''Usana''.
67667 *''[[Yankee]]'', often shortened to ''Yank'', is used all over the world in an informal manner similar to the use of the Mexican word ''[[Gringo]]''. Both terms may occasionally be used in an affectionate or pejorative sense. On occasion some U.S. citizens will take offense at the term ''Yankee'', particularly Southerners (residents of the [[Southeastern United States]]), who use ''Yankee'' to refer to Northerners (residents of the [[Northeastern United States]]), sometimes in a derogatory way. (Some people from [[Scotland]] or [[Wales]] may use ''Yankee'' as a deliberate riposte to people from the US who refer to them as English, from the enduring misconception that [[England]] is coterminous with the [[United Kingdom]].)
67668 **The colloquial term ''Yank'' for a U.S citizen, used in [[United Kingdom|Britain]] and [[Australia]], is a derivative of ''Yankee''. In Australia, the [[Cockney]] [[Cockney rhyming slang|rhyming slang]] term ''Sepo'' survives, derived from ''septic tank''.
67669 * In [[French language|French]], ''États-Unien(ne)'', ''Étatsunien(ne)'', or ''Étasunien(ne)'' are gaining some popularity.
67670 * In [[Italian language|Italian]] the term ''Statunitense'' (from 'Stati Uniti' = 'United States') is quite widespread, especially referring to sporting events.
67671 * In [[German language|German]], ''US-Amerikaner'' may be used to avoid ambiguity or to be [[politically correct]], but it may come across as pedantic if used conversationally. ''Amerikaner'' is in general usage in German, and is widely accepted to refer to the United States. ''Ami'' is a colloquialism which unambiguously refers to US citizens. The German usage of ''Ami'' is akin to the Mexican usage of ''[[Gringo]]'', in that it can be neutral, patronizing, or perhaps even affectionate.
67672 * In [[Icelandic language|Icelandic]] the term ''Bandaríkjamenn'' is quite widespread, Bandaríkin (United States) and menn for (people/persons)
67673
67674 ==Less serious alternatives==
67675 Less serious terms that have been popular on the Internet at various times include
67676 *Leftpondian - from the fact that the USA is on the left side of the Atlantic Ocean (the &quot;pond&quot;) as seen on a map with north at the top. This term is often used to include Canadians as well.
67677 *Merkin - from the way some Americans pronounce the word &quot;American&quot;, but also playing on the word's [[merkin|other meaning]].
67678
67679 == See also ==
67680
67681 * [[Americas (terminology)]]
67682 * [[Alternative words for British]]
67683
67684 ==Scholarly sources==
67685 * [http://www.questia.com/PM.qst?a=o&amp;d=58426145 Allen, Irving L. ''The Language of Ethnic Conflict: Social Organization and Lexical Culture'' (1983).]
67686 * Herbst, Philip H. ''Color of Words: An Encyclopaedic Dictionary of Ethnic Bias in the United States'' (1997) ISBN 1877864978.
67687
67688 ==External links==
67689 * [http://www.guardian.co.uk/Columnists/Column/0,,234240,00.html &quot;The trouble with Americans&quot;] by [[The Guardian]] on the use of the word &quot;American&quot; meaning &quot;US citizen&quot; ([[September 7]], [[1998]])
67690
67691 [[Category:American culture]]
67692
67693 [[es:El uso de la palabra americana/o]]</text>
67694 </revision>
67695 </page>
67696 <page>
67697 <title>Ada programming language</title>
67698 <id>1242</id>
67699 <revision>
67700 <id>41939950</id>
67701 <timestamp>2006-03-02T19:42:31Z</timestamp>
67702 <contributor>
67703 <username>ManuelGR</username>
67704 <id>36220</id>
67705 </contributor>
67706 <minor />
67707 <text xml:space="preserve">{{Infobox programming language
67708 |name = Ada
67709 |logo = [[Image:Ada Lovelace.jpg|157px]]
67710 |paradigm = [[multi-paradigm programming language|multi-paradigm]]: [[Concurrent programming language|concurrent]], [[Distributed programming|distributed]], [[Generic programming|generic-programming]], [[Imperative programming|imperative]], [[object-oriented programming|object-oriented]]
67711 |year = 1983, last revised 2005
67712 |designer = [[Jean Ichbiah]]
67713 |typing = [[Datatype#Static_and_dynamic_typing|static]], [[Datatype#Strong_and_weak_typing|strong]], [[Datatype#safely_and_unsafely_typed|safe]], [[Datatype#Nominative_vs_structural_typing|nominative]]
67714 |implementations = [[GNAT]]
67715 |dialects = Ada&amp;nbsp;83, Ada&amp;nbsp;95, Ada&amp;nbsp;2005
67716 |influenced_by = [[ALGOL]], [[Pascal programming language|Pascal]], [[C++]] (Ada&amp;nbsp;95), [[Smalltalk]] (Ada&amp;nbsp;95)
67717 |influenced = [[C++]]
67718 }}
67719 '''Ada''' is a [[Structured programming|structured]], [[statically typed]] [[Imperative programming|imperative]] [[computer programming|computer]] [[programming language]] designed by a team led by [[Jean Ichbiah]] of [[Groupe Bull|CII Honeywell Bull]] during [[1977]]&amp;ndash;[[1983]]. It addresses many of the same tasks as [[C programming language|C]] or [[C++]], but with one of the best [[Type safety|type-safety]] systems available in a [[statically typed]] programming language. Ada was named after [[Ada Lovelace]], often credited as the first computer programmer.
67720
67721 == Features ==
67722
67723 Ada was originally targeted at [[embedded system|embedded]] and [[real-time]] systems, and is still commonly used for those purposes. The Ada&amp;nbsp;95 revision, designed by [[Tucker Taft|S. Tucker Taft]] of [[Intermetrics]] between [[1992]] and [[1995]], improved support for systems, numerical, and financial programming.
67724
67725 Notable features of Ada include [[strongly typed languages|strong typing]], [[modularity (programming)|modularity mechanisms]] (packages), [[run-time checking]], [[parallel processing]] (tasks), [[exception handling]], and [[generic programming|generic]]s. Ada&amp;nbsp;95 added support for [[object-oriented programming]], including [[dynamic dispatch]].
67726
67727 Ada supports run-time checks in order to protect against access to unallocated memory, [[buffer overflow]] errors, [[off by one errors]], array access errors, and other avoidable bugs. These checks can be disabled in the interest of efficiency, but can often be compiled efficiently. It also includes facilities to help program verification. For these reasons, it is very widely used in critical systems like [[avionics]], weapons and spacecraft.
67728
67729 It also supports a large number of compile-time checks to help avoid bugs that would not be detectable until run-time in some other languages or would require explicit checks to be added to the source code.
67730
67731 Ada's dynamic [[memory management]] is safe and high-level, like Java and unlike C. The specification does not require any particular implementation. Though the semantics of the language allow automatic [[garbage collection (computer science)|garbage collection]] of inaccessible objects, most implementations do not support it. Ada does support a limited form of [[region-based storage management]]. Invalid accesses can always be detected at run time (unless of course the check is turned off) and sometimes at compile time.
67732
67733 The Ada language definition is unusual among [[International Organization for Standardization|ISO]] standards in that it is [[free content]]. One result of this is that the standard document (known as the ''Ada Reference Manual'' or ''ARM'') is the usual reference Ada programmers resort to for technical details, in the same way as a particular standard textbook serves other programming languages.
67734
67735 == History ==
67736
67737 In the [[1970s]], the [[United States Department of Defense|US Department of Defense]] (DoD) was concerned by the number of different programming languages being used for its projects, many of which were obsolete or hardware-dependent, and none of which supported safe modular programming. In [[1975]] the [[Higher Order Language Working Group]] (HOLWG) was formed with the intent of reducing this number by finding or creating a programming language generally suitable for the department's requirements; the result was Ada. The total number of high-level programming languages in use for such projects fell from over 450 in [[1983]] to 37 by [[1996]].
67738
67739 {{Wikisource|Steelman language requirements}} The [[working group]] created a series of language requirements documents&amp;mdash;the Strawman, Woodenman, Tinman, Ironman and [[Steelman language requirements|Steelman]] documents. Many existing languages were formally reviewed, but the team concluded in [[1977]] that no existing language met the specifications.
67740
67741 Requests for proposals for a new programming language were issued and four contractors were hired to develop their proposals under the names of Red ([[Intermetrics]] led by [[Benjamin Brosgol]]), Green ([[CII Honeywell Bull]], led by [[Jean Ichbiah]]), Blue ([[SofTech]], led by [[John Goodenough]]), and Yellow ([[SRI International]], led by [[Jay Spitzen ]]).&lt;!-- Though Intermetrics and Bull have previous links, I am including them for parallelism. --&gt; In April 1978, after public scrutiny, the Red and Green proposals passed to the next phase. In May of [[1979]], the Green proposal, designed by Jean Ichbiah at CII Honeywell Bull, was chosen and given the name Ada&amp;mdash;after [[Ada Lovelace|Augusta Ada, Countess of Lovelace]]. This proposal was influenced by the programming language [[LIS programming language|LIS]] that Ichbiah and his group had developed in the [[1970s]]. The preliminary Ada reference manual
67742 was published in ACM SIGPLAN Notices in June 1979. The Military Standard reference manual was approved on [[December 10]], [[1980]] ([[Ada Lovelace]]'s birthday), and
67743 given the number MIL-STD-1815 in honor of Ada Lovelace's birth year.
67744
67745 [[Image:Ada Lovelace 1838.jpg|right|caption|thumbnail|157px|[[Ada Lovelace|Augusta Ada King]], Countess of Lovelace.]]
67746 In [[1987]], the US Department of Defense began to require the use of Ada (the ''Ada mandate'') for every software project where new code was more than 30% of result, though exceptions to this rule were often granted. This requirement was effectively removed in [[1997]], as the DoD began to embrace COTS ([[commercial off-the-shelf]]) technology. Similar requirements existed in other [[North Atlantic Treaty Organisation]] countries.
67747
67748 Because Ada is a strongly-typed language, it has been used outside the military in commercial aviation projects, where a software bug can mean fatalities. The fly-by-wire system in the [[Boeing 777]] runs software written in Ada.
67749
67750 The language became an [[ANSI]] standard in [[1983]] ([http://archive.adaic.com/standards/83lrm/html/Welcome.html ANSI/MIL-STD 1815A], and
67751 without any further changes became
67752 an [[International standard|ISO standard]] in [[1987]] (ISO-8652:1987). This version of the language is commonly known as Ada&amp;nbsp;83, from the date of its adoption by ANSI, but is sometimes referred to also as Ada&amp;nbsp;87, from the date of its adoption by ISO.
67753
67754 Ada&amp;nbsp;95, the joint ISO/ANSI standard ([http://www.adaic.org/standards/95lrm/html/RM-TTL.html ISO-8652:1995]) is the latest standard for Ada. It was published in February [[1995]] (making Ada&amp;nbsp;95 the first ISO standard object-oriented programming language). To help with the standard revision and future acceptance, the [[US Air Force]] funded the development of the [[GNAT]] [[Compiler]]. Nowadays the GNAT Compiler is part of the [[GNU Compiler Collection]].
67755
67756 Work continues on improving and updating the technical content of the Ada programming language. A Technical Corrigendum to Ada&amp;nbsp;95 was published in October [[2001]]. Presently, more work is being done to produce the roughly once-a-decade major update
67757 to Ada, expected in [[2007]] (see [http://www.open-std.org/JTC1/SC22/WG9/projects.htm#AMD official schedule]). This new version is commonly known as Ada&amp;nbsp;2005, just as Ada&amp;nbsp;95 was commonly known as Ada&amp;nbsp;94 prior to its publication.
67758
67759 == &quot;Hello, world!&quot; in Ada ==
67760 A common example of a language's [[syntax]] is the [[Hello world program]]:
67761
67762 '''with''' Ada.Text_IO;
67763
67764 '''procedure''' Hello '''is'''
67765 '''begin'''
67766 Ada.Text_IO.Put_Line(&quot;Hello, world!&quot;);
67767 '''end''' Hello;
67768
67769 There are shortcuts available for &lt;tt&gt;Ada.Text_IO.Put_Line&lt;/tt&gt;, needing less typing, however they are not used here for better understanding. For a detailed explanation see [[Wikibooks:Ada Programming/Basic]].
67770
67771 == The Ariane 5 failure ==
67772 A commonly encountered myth blames the loss of [[Ariane 5 Flight 501]], a [[European Space Agency]] [[Ariane 5]] rocket, on a bug in an Ada program or on disabling Ada's runtime checks. For the [[Ariane 4]] it had been proven that those runtime checks weren't needed. Although range checks and appropriate exception handlers on all type conversions might have trapped the problem, the problem itself was a design decision to reuse a part and its software from the [[Ariane 4]] rocket without adequate analysis of its suitability or tests on [[Ariane 5]] data.
67773
67774 == See also ==
67775 === Online tutorials ===
67776 Ada has always been a very open language, and there are many online tutorials available. The following sites have link collections to Ada tutorials
67777
67778 * [[wikibooks:Programming:Ada:Tutorials|Wikibook tutorial for programming in Ada]] - needs some additions
67779 * [http://www.adahome.com/Tutorials at Adahome] - not updated very recently however
67780 * [http://www.adaworld.com/tutorialsmain.html at adaworld] - this site is very good
67781 * [http://www.computer-books.us/ada95.php at Computer-Books.us] - A collection of Ada books available for free download.
67782
67783 === Organizations ===
67784 *[[Ada Information Clearinghouse]]
67785 *[[SIGAda]] - [[Association for Computing Machinery|ACM]] Special Interest Group on Ada
67786 *[[Ada-Europe]] - European organization to promote the use of Ada
67787
67788 === Compilers ===
67789 * [[GNAT]] - [[GNAT Modified General Public License|Free]] compiler based on [[GNU Compiler Collection|GCC]]
67790 * [[JGNAT]] - [[GNAT]]-based compiler for the [[Java Runtime Environment]]
67791 * [[MGNAT]] - [[GNAT]]-based compiler for the [[.NET Framework]] Environment ([[A Sharp (.NET)|A#]] project)
67792 * [[ObjectAda]]
67793
67794 === Tools ===
67795 * [[Aunit]]
67796 * [[AdaGIDE]] (A free GNAT Ada [[Integrated Development Environment]] for Windows)
67797 * [[GNAT Programming Studio]] (GPS)
67798 * [[GNAVI]] (Ada Visual RAD)
67799 * [[GNATCOM]] (Ada binding for Microsoft [[Component Object Model|COM]] spec.)
67800 * [[GtkAda]] (Ada binding for [[GTK+]])
67801 * [[PolyORB]]
67802 * [[XML-Ada|XML/Ada]] and [[XML4Ada95]]
67803 * [[XIA/XPath In Ada]] (An Ada binding to the [[XPath]] 1.0 spec.)
67804 * [http://www.prismtechnologies.com/section-item.asp?sid4=&amp;sid3=187&amp;sid2=10&amp;sid=18&amp;id=389 OrbRiver Ada]
67805
67806 === Related programming languages ===
67807 * [[SPARK programming language|SPARK]] - High integrity language based on an Ada subset
67808 * [[VHDL]]
67809
67810 === See also ===
67811 * [[High Integrity System]]s
67812 * [[Ravenscar profile]]
67813
67814 == References ==
67815 === International Standards ===
67816 * [[ISO 8652|ISO/IEC 8652]]: Information technology &amp;mdash; Programming languages &amp;mdash; Ada
67817 * [[ISO 15291|ISO/IEC 15291]]: Information technology &amp;mdash; Programming languages &amp;mdash; Ada Semantic Interface Specification ([[wiktionary:ASIS|ASIS]])
67818 * [[ISO 18009|ISO/IEC 18009]]: Information technology &amp;mdash; Programming languages &amp;mdash; Ada: Conformity assessment of a language processor ([[wiktionary:ACATS|ACATS]])
67819 * [[IEEE 1003|IEEE Standard 1003.5b-1996]], the [[POSIX]] Ada binding
67820 * [http://www.omg.org/technology/documents/formal/ada_language_mapping.htm Ada Language Mapping Specification], the [[CORBA]] [[Interface description language|IDL]] to Ada mapping
67821
67822 === Books ===
67823 {{wikibookspar||Ada Programming}}
67824 * [[Jan Skansholm]]: ''Ada&amp;nbsp;95 From the Beginning'', Addison-Wesley, ISBN 0-201-40376-5
67825 * [[John Barnes (computer scientist)|John Barnes]]: ''Programming in Ada plus Language Reference Manual'', Addison-Wesley, ISBN 0-201-56539-0
67826 * [[John Barnes (computer scientist)|John Barnes]]: ''Programming in Ada&amp;nbsp;95'', Addison-Wesley, ISBN 0-201-34293-6
67827 * [[John Barnes (computer scientist)|John Barnes]]: ''High Integrity Ada: The SPARK Approach'', Addison-Wesley, ISBN 0201175177
67828 * [[John Barnes (computer scientist)|John Barnes]]: ''High Integrity Software: The SPARK Approach to Safety and Security'', Addison-Wesley, ISBN 0-321-13616-0
67829 * [[Dean W. Gonzalez]]: ''Ada Programmer's Handbook'', Benjamin-Cummings Publishing Company, ISBN 0805325298
67830 * [[M. Ben-Ari]]: ''Ada for Software Engineers'', John Wiley &amp; Sons, ISBN 0-471-97912-0
67831 * [[Norman Cohen]]: ''Ada as a Second Language'', McGraw-Hill Science/Engineering/Math, ISBN 0-0-7011607-5
67832 * [[Alan Burns]], [[Andy Wellings]]: ''Real-Time Systems and Programming Languages. Ada&amp;nbsp;95, Real-Time Java and Real-Time POSIX.'', Addison-Wesley, ISBN 0-201-72988-1
67833 * [[Alan Burns]], [[Andy Wellings]]: ''Concurrency in Ada'', Cambridge University Press, ISBN 0-521-62911-X
67834 * [[Colin Atkinson]]: ''Object-Oriented Reuse, Concurrency and Distribution: An Ada-Based Approach'', Addison-Wesley, ISBN 0201565277
67835 * [[Grady Booch]], [[Doug Bryan]]: ''Software Engineering with Ada'', Addison-Wesley, ISBN 0805306080
67836 * [[Daniel Stubbs]], [[Neil W. Webre]]: ''Data Structures with Abstract Data Types and Ada'', Brooks Cole, ISBN 0-534-14448-9
67837 * [[Pascal Ledru]]: ''Distributed Programming in Ada with Protected Objects'', Dissertation.com, ISBN 1-58112-034-6
67838 * [[Fintan Culwin]]: ''Ada, a Developmental Approach'', Prentice Hall, ISBN 0132646803
67839 * [[John English]], [[Fintan Culwin]]: ''Ada&amp;nbsp;95 the Craft of Object Oriented Programming'', Prentice Hall, ISBN 0-1-3230350-7
67840 * [[David A. Wheeler]]: ''Ada&amp;nbsp;95'', Springer-Verlag, ISBN 0-387-94801-5
67841 * [[David R. Musser]], [[Alexander Stepanov]]: ''The Ada Generic Library: Linear List Processing Packages'', Springer-Verlag, ISBN 0387971335
67842 * [[Michael B. Feldman]]: ''Software Construction and Data Structures with Ada&amp;nbsp;95'', Addison-Wesley, ISBN 0201887959
67843 * [[Simon Johnston]]: ''Ada&amp;nbsp;95 for C and C++ Programmers'', Addison-Wesley, ISBN 0201403633
67844 *[[Michael B. Feldman]], [[Elliot B. Koffman]]: ''Ada&amp;nbsp;95'', Addison-Wesley, ISBN 0-201-36123-X
67845 * [[Nell Dale]], [[Chip Weems]], [[John McCormick]]: ''Programming and Problem Solving with Ada&amp;nbsp;95'', Jones &amp; Bartlett Publishers, ISBN 0763702935
67846 * [[Nell Dale]], [[Susan Lilly]], [[John McCormick]]: ''Ada Plus Data Structures: An Object-Based Approach'', Jones &amp; Bartlett Publishers, ISBN 0669416762
67847 * [[Bruce C. Krell]]: ''Developing With Ada: Life-Cycle Methods'', Bantam Dell Pub Group, ISBN 0553091026
67848 * [[Judy Bishop]]: ''Distributed Ada: Developments and Experiences'', Cambridge University Press, ISBN 0-521-39251-9
67849 * [[Bo Sanden]]: ''Software Systems Construction With Examples in Ada'', Prentice Hall, ISBN 013030834X
67850 * [[Bruce Hillam]]: ''Introduction to Abstract Data Types Using Ada'', Prentice Hall, ISBN 0130459496
67851 * [[David Rudd]]: ''Introduction to Software Design and Development With Ada'', Brooks Cole, ISBN 0314028293
67852 * [[Ian C. Pyle]]: ''Developing Safety Systems: A Guide Using Ada'', Prentice Hall, ISBN 0132042983
67853 * [[Louis Baker]]: ''Artificial Intelligence With Ada'', McGraw-Hill, ISBN 0070033501
67854 * [[Alan Burns]], [[Andy Wellings]]: ''HRT-HOOD: A Structured Design Method for Hard Real-Time Ada Systems'', North-Holland, ISBN 0444821643
67855 * [[Walter Savitch, Charles Peterson]]: ''Ada: An Introduction to the Art and Science of Programming'', Benjamin-Cummings Publishing Company, ISBN 0805370706
67856 * [[Mark Allen Weiss]]: ''Data Structures and Algorithm Analysis in Ada'', Benjamin-Cummings Publishing Company, ISBN 0805390553
67857
67858 == Ada Wikis ==
67859 === General Info ===
67860 * [http://ada.krischik.com Ada@Krischik]
67861 * [[wiktionary:ACATS]]
67862 * [[wiktionary:Ada]]
67863 * [[wiktionary:ASIS]]
67864
67865 === Tutorials ===
67866 * [http://en.wikibooks.org/wiki/Ada_Programming Ada Programming]
67867 * [http://es.wikibooks.org/wiki/ProgramaciÃŗn_en_Ada ProgramaciÃŗn en Ada]
67868 * [http://fr.wikibooks.org/wiki/Programmation_Ada Programmation Ada]
67869
67870 === Projects ===
67871 * [http://adacl.sourceforge.net/index.php AdaCL]
67872 * [http://booch95.sourceforge.net/pmwiki.php The Ada&amp;nbsp;95 Booch Components]
67873 * [http://gnuada.sourceforge.net The GNU Ada Compiler]
67874 * [http://gnat-asis.sourceforge.net ASIS]
67875 * [http://gnat-glade.sourceforge.net GLADE]
67876 * [http://gnat-florist.sourceforge.net Florist]
67877 * [http://wikibook-ada.sourceforge.net Wikibook Ada Programming]
67878
67879 == External links ==
67880 * [http://adaworld.com/ Ada World]
67881 * [http://adapower.com/ AdaPower]
67882 * [http://www.sigada.org/ ACM SIGAda]
67883 * [http://www.ada-europe.org/ Ada-Europe Organization]
67884 * [http://www.adaic.com/ Ada Information Clearinghouse]
67885 * [http://www.open-std.org/jtc1/sc22/wg9/ ISO Home of Ada Standards]
67886 * [http://www.computer-books.us/ada95.php Ada&amp;nbsp;95 Books Available Online]
67887 * [http://www.ada-auth.org/ Ada Rapporteur Group (evolution of standard)]
67888 * [http://www.ada-answers.com/ Ada Answers - Building better software with Ada]
67889 * [http://citeseer.org/cs?q=%22Ada%22 Citations from CiteSeer]
67890 * [news:comp.lang.ada Forum]
67891 * [http://oopweb.com/Ada/Documents/Lovelace/Volume.html Ada Tutorial]
67892 * [http://www.seas.gwu.edu/~mfeldman/ada-project-summary.html Projects Using Ada]
67893 * [http://www.cs.kuleuven.ac.be/~dirk/ada-belgium/events/ Conference announcements for the international Ada community]
67894
67895 === GNAT - Free Ada compiler ===
67896 * [http://www.adacore.com/academic.php Ada Academic Initiative]
67897 * [http://libre.adacore.com/ &quot;Libre&quot; Ada Software]
67898 * [http://gnuada.sourceforge.net The GNU Ada Project]
67899 * [http://www.gnuada.org/ GNU Ada Homepage]
67900 * [http://www.gnat.com/ GNAT]
67901 * [http://www.usafa.af.mil/df/dfcs/bios/mcc_html/adagide.cfm AdaGIDE, the Ada GNAT Integrated Development Environment for Windows]
67902 * [http://www.gnavi.org/ GNAVI Ada Visual RAD]
67903 * [http://www.martincarlisle.com/a_sharp.html A#: Ada on .NET]
67904
67905 {{Major programming languages small}}
67906
67907 [[Category:.NET programming languages]]
67908 [[Category:Ada programming language|*Ada]]
67909 [[Category:Algol programming language family]]
67910 [[Category:ANSI standards]]
67911 [[Category:Concurrent programming languages]]
67912 [[Category:Imperative programming languages]]
67913 [[Category:ISO standards]]
67914 [[Category:Multi-paradigm programming languages]]
67915 [[Category:Object-oriented programming languages]]
67916 [[Category:Procedural programming languages]]
67917 [[Category:Programming languages]]
67918 [[Category:Statically-typed programming languages]]
67919 [[Category:Systems programming languages]]
67920
67921 [[bg:Ada]]
67922 [[ca:Ada]]
67923 [[cs:Ada]]
67924 [[da:Ada (programmeringssprog)]]
67925 [[de:Ada (Programmiersprache)]]
67926 [[es:Lenguaje de programaciÃŗn Ada]]
67927 [[fi:Ada]]
67928 [[fr:Ada (langage)]]
67929 [[gl:Ada]]
67930 [[he:×ĸדה (׊פ×Ē ×Ēכנו×Ē)]]
67931 [[it:Ada]]
67932 [[ja:Ada]]
67933 [[nl:Ada]]
67934 [[nn:programmeringssprÃĨket Ada]]
67935 [[no:Ada]]
67936 [[pl:Ada (informatyka)]]
67937 [[pt:Linguagem de programaçÃŖo Ada]]
67938 [[ru:Ада (ŅĐˇŅ‹Đē ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧĐŧиŅ€ĐžĐ˛Đ°ĐŊиŅ)]]
67939 [[sk:Ada (programovací jazyk)]]
67940 [[sl:Ada (programski jezik)]]
67941 [[sv:Ada (programsprÃĨk)]]
67942 [[th:ā¸ ā¸˛ā¸Šā¸˛ Ada]]
67943 [[tr:Ada programlama dili]]
67944 [[uk:Мова ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧŅƒĐ˛Đ°ĐŊĐŊŅ Ada]]
67945 [[zh:Ada]]</text>
67946 </revision>
67947 </page>
67948 <page>
67949 <title>Alpha ray</title>
67950 <id>1245</id>
67951 <revision>
67952 <id>15899740</id>
67953 <timestamp>2002-02-25T15:51:15Z</timestamp>
67954 <contributor>
67955 <username>Trelvis</username>
67956 <id>15</id>
67957 </contributor>
67958 <comment>moving content to better name</comment>
67959 <text xml:space="preserve">#REDIRECT [[Alpha particle]]</text>
67960 </revision>
67961 </page>
67962 <page>
67963 <title>Alfonso Arau</title>
67964 <id>1246</id>
67965 <revision>
67966 <id>38220756</id>
67967 <timestamp>2006-02-04T23:56:29Z</timestamp>
67968 <contributor>
67969 <username>D6</username>
67970 <id>75561</id>
67971 </contributor>
67972 <minor />
67973 <comment>adding [[category:Living people]]</comment>
67974 <text xml:space="preserve">'''Alfonso Arau''' (born [[January 11]], [[1932]]) is a [[Mexico|Mexican]] director of such films as ''[[Zapata: The Dream of a Hero]]'', ''[[Like Water for Chocolate]]'' (Mexico, 1992) (the novel of which was, somewhat [[Irony|ironically]], written by his wife, [[Laura Esquivel]]), and ''[[A Walk in the Clouds]]'', which starred [[Keanu Reeves]] and [[Anthony Quinn]].
67975
67976 He is also an actor. Among others, he had the antagonic role of &quot;El Guapo&quot; in ÂĄ[[Three Amigos]]! (USA, 1986), a comedy with [[Martin Short]], [[Steve Martin]], and [[Chevy Chase]]. He also played Captain Herrera in [[Sam Peckinpah]]'s 1969 western, [[The Wild Bunch]].
67977
67978 In 1973 he acted and directed ''CalzÃŗnzin Inspector'', a movie based on a Mexican comic called ''Los Supermachos'', of great Mexican cartoonist [[Rius]], although Rius disapproved the movie. The movie is about two indigenous Mexicans who are confused for government inspectors from the capital by the corrupt mayor of a small town, and is an humorous political critique, aimed squarely at then ruling party [[Partido Revolucionario Institucional|PRI]] and its [[cacique|caciques]], in a time when freedom of speech in regard to political matters was highly restricted.
67979 There are at least two versions of the movie, the shorter one having some scenes deleted, the most notable one shows the killing of a renegade farmer by a policeman shooting at his back.
67980
67981 A notable movie was ''El rincÃŗn de las vírgenes'' (Mexico, 1972), &quot;The Virgins' Corner&quot; where he plays the helper to a fake mystical doctor travelling town to town, remembering their travels when a group of women intend to propose the doctor for sainthood. The movie is set in the 1920's in rural Mexico.
67982
67983 In December 2004 the Santa Fe Film Festival bestowed its Luminaria Award for lifetime achievement in cinema to Alfonso Arau as a cornerstone to its five-day festival. Jon Bowman, executive director of the Santa Fe Film Festival said, &quot;Arau is truly a renaissance artist, with a deep and innate understanding of all phases of the cinematic medium.&quot;
67984
67985 ==External links==
67986 *[http://aarau.8m.com Alfonso Arau Web Site]
67987 *{{imdb name|id=0000778|name=Alfonso Arau}}
67988 *[http://www.tvtome.com/tvtome/servlet/PersonDetail/personid-165003/ Alfonso Arau TV Tome Guide]
67989 *[http://santafefilmfestival.com/ Santa Fe Film Festival]
67990
67991 [[Category:1932 births|Arau, Alfonso]]
67992 [[Category:Living people|Arau, Alfonso]]
67993 [[Category:Mexican film directors|Arau, Alfonso]]</text>
67994 </revision>
67995 </page>
67996 <page>
67997 <title>Alfonso CuarÃŗn</title>
67998 <id>1247</id>
67999 <revision>
68000 <id>40408375</id>
68001 <timestamp>2006-02-20T09:19:04Z</timestamp>
68002 <contributor>
68003 <username>Tskoge</username>
68004 <id>174597</id>
68005 </contributor>
68006 <minor />
68007 <comment>rv. [[Wikipedia:External links|MoS]] and simple math</comment>
68008 <text xml:space="preserve">[[Image: Acuaron.jpg|200px|thumb|Alfonso Cuaron]]'''Alfonso CuarÃŗn Orozco''' (born [[November 28]], [[1961]] in [[Mexico City]], [[Mexico]]) is a Mexican [[film director]].
68009
68010 Alfonso CuarÃŗn grew up in the city as well; he went on to study both filmmaking and philosophy at the [[National Autonomous University of Mexico]]. After graduating, Cuaron began working in television in Mexico, first as a technician and then as a director. Cuaron's television work led to assignments as an assistant director for several [[Latin American]] film productions (including ''[[Gaby: A True Story]]'' and ''[[Romero]]''), and in 1991, he landed his first big-screen directorial assignment.
68011
68012 ''[[Solo con tu pareja]]'' was a dark comedy about a womanizing businessman who learns he's contracted [[AIDS]]; the film was a massive hit in Mexico, and was enthusiastically received around the world. Director [[Sydney Pollack]] was impressed enough with ''[[Solo con tu pareja]]'' that he hired Cuaron to direct an episode of ''[[Fallen Angels]]'', a series of neo-noir stories produced for the Showtime premium cable network in 1993; other directors who worked on the series included [[Steven Soderbergh]], [[Jonathan Kaplan]], [[Peter Bogdanovich]], and [[Tom Hanks]].
68013
68014 In 1995, CuarÃŗn released his first feature film produced in the United States, ''[[A Little Princess (1995 film)|A Little Princess]]'', an adaptation of [[Frances Hodgson Burnett]]'s classic novel. Cuaron's next feature was also a literary adaptation, a modernized version of [[Charles Dickens]]' ''[[Great Expectations]]'' starring [[Ethan Hawke]], [[Gwyneth Paltrow]], and [[Robert De Niro]].
68015
68016 CuarÃŗn's next project found him making a severe left turn; shot in [[Mexico]] with a Spanish-speaking cast, ''[[Y tu mamÃĄ tambiÊn]]'' was a funny, provocative, and controversial road comedy about two sexually obsessed teenagers who take an extended road trip with an attractive woman in her thirties. The film's open portrayal of sexuality and frequent rude humor, as well as the politically and socially relevant asides, made the film an international hit and a major success with critics.
68017
68018 He also directed the third film in the successful ''[[Harry Potter]]'' series, ''[[Harry Potter and the Prisoner of Azkaban (movie)|Harry Potter and the Prisoner of Azkaban]]''. CuarÃŗn has faced criticism amongst the more puritanical Potter fans for &quot;ruining&quot; the Prisoner of Azkaban film; given that the first two instalments, helmed by [[Chris Columbus]], had adhered stringently to the books, CuarÃŗn's rather more individualistic film (which brought with it a far darker tone, costume changes, omitted subplots and other changes to the accepted continuity) came as something of a shock to many fans. However, author [[J.K. Rowling]] has said that this movie is so far her personal favorite from the series, and remained the most critically lauded of the blockbuster series.
68019
68020 His next feature will be ''[[The Children of Men (film)|The Children of Men]]'' an adaptation of the [[P.D. James]] novel of the [[The Children of Men|same name]].
68021
68022 == Filmography ==
68023
68024 * ''[[The Children of Men (film)|The Children of Men]]'' (2006)
68025 * ''[[Harry Potter and the Prisoner of Azkaban (movie)|Harry Potter and the Prisoner of Azkaban]]'' (2003)
68026 * ''[[Y tu mamÃĄ tambiÊn]]'' (2001)
68027 * ''[[Great Expectations (film)|Great Expectations]]'' (1998)
68028 * ''[[A Little Princess (1995 film)|A Little Princess]]'' (1995)
68029 * ''[[Solo con tu pareja]]'' (1991)
68030
68031 == External link ==
68032
68033 * {{imdb name|id=0190859|name=Alfonso CuarÃŗn}}
68034
68035 [[Category:1961 births|Cuaron, Alfonso]]
68036 [[Category:Living people|Cuaron, Alfonso]]
68037 [[Category:Mexican film directors|Cuaron, Alfonso]]
68038 [[Category:UNAM alumni|Cuaron, Alfonso]]
68039 [[Category:People from Mexico City|Cuaron, Alfonso]]
68040 [[Category:Writing Original Screenplay Oscar Nominee|Cuaron, Alfonso]]
68041
68042 [[de:Alfonso CuarÃŗn]]
68043 [[es:Alfonso CuarÃŗn]]
68044 [[fr:Alfonso CuarÃŗn]]
68045 [[ja:&amp;#12450;&amp;#12523;&amp;#12501;&amp;#12457;&amp;#12531;&amp;#12477;&amp;#12539;&amp;#12461;&amp;#12517;&amp;#12450;&amp;#12525;&amp;#12531;]]
68046 [[no:Alfonso CuarÃŗn]]</text>
68047 </revision>
68048 </page>
68049 <page>
68050 <title>Arthur Meighen</title>
68051 <id>1251</id>
68052 <revision>
68053 <id>41683017</id>
68054 <timestamp>2006-03-01T01:08:37Z</timestamp>
68055 <contributor>
68056 <username>Habsfannova</username>
68057 <id>90869</id>
68058 </contributor>
68059 <minor />
68060 <comment>/* Opposition leader */</comment>
68061 <text xml:space="preserve">{{Infobox PM
68062 | name=Rt. Hon. Arthur Meighen
68063 | image=ArthurMeighenheadshot.jpg
68064 | country=Canada
68065 | term=[[July 10]], [[1920]] &amp;ndash; [[December 29]], [[1921]]&lt;br&gt;[[June 29]], [[1926]] &amp;ndash; [[September 25]], [[1926]]
68066 | before=[[Robert Laird Borden|Robert Borden]]&lt;br&gt;[[William Lyon Mackenzie King|Mackenzie King]]
68067 | after=[[William Lyon Mackenzie King|Mackenzie King]]
68068 | date_birth=[[June 16]], [[1874]]
68069 | place_birth=[[Anderson, Ontario|Anderson]], [[Ontario]]
68070 | date_death=[[August 5]], [[1960]]
68071 | place_death=[[Toronto]], [[Ontario]]
68072 | party=[[Conservative Party of Canada (historical)|Conservative]], [[Unionist Party (Canada)|Unionist]]
68073 }}
68074
68075 '''Arthur Meighen''', [[Queen's Privy Council for Canada|PC]] , [[Queen's Counsel|QC]] , [[Bachelor of Arts|BA]] , [[Doctor of Laws|LL.D]] ([[June 16]], [[1874]] – [[August 5]], [[1960]]) was the ninth [[Prime Minister of Canada]] from [[July 10]], [[1920]], to [[December 29]], [[1921]], and [[June 29]] to [[September 25]], [[1926]]. He was the first Prime Minister from [[Western Canada]] and the only, so far, from the Province of [[Manitoba]]. Both of his terms were brief, and the second was unprecedented and arose partially out of conflicts between the [[Governor General of Canada]] and Meighen's rival, [[William Lyon Mackenzie King]].
68076 ==Background==
68077 Meighen was born in [[Anderson, Ontario|Anderson]], [[Ontario]], [[Canada]]. He graduated from the [[University of Toronto]], earning a B.A. in [[Mathematics]] in [[1896]]. In [[1904]] he married [[Isabel J. Cox]] ([[1882]] - [[1985]]) with whom he had two sons and one daughter. In 1990, one of his grandsons, [[Michael Meighen]] was appointed to the [[Canadian Senate]] on the recommendation of Prime Minister [[Brian Mulroney]].
68078
68079 Meighen experimented in several professions, including those of teacher, lawyer and businessman, before becoming involved in politics as a member of the [[Conservative Party of Canada (historical)|Conservatives]]. In public, Meighen was a top class debater, and was known for his sharp wit.
68080
68081 ==Cabinet==
68082 He was first elected to the [[Canadian House of Commons]] in [[1908]], defeating incumbent [[John Crawford]] in the [[Manitoba]] riding of [[Portage La Prairie]]. He was re-elected in 1908 and [[1911]], and again in 1913 after being appointed [[Solicitor-General]] (at the time, newly appointed Ministers had to seek re-election).
68083
68084 Meighen served as Solicitor-General from [[June 26]], [[1913]], until [[August 25]], [[1917]], when he was appointed [[Minister of Mines]] and [[Secretary of State for Canada]]. In 1917, he was mainly responsible for implementing [[Conscription Crisis of 1917|conscription]]. Noteworthy was the government's decision to give votes to conscription supporters (soldiers and their families), while denying that right to potential opponents of conscription such as immigrants. He was again shifted on [[October 12]], [[1917]], this time to the positions of [[Minister of the Interior]] and [[Superintendent of Indian Affairs]].
68085
68086 As Minister of the Interior, he steered the largest piece of legislation ever enacted in the British Commonwealth through Parliament - creating the Canadian National Railway Company, which continues today. Meighen was re-appointed [[Minister of Mines]] on the last day of [[1920]]. In [[1919]], as acting [[Minister of Justice (Canada)|Minister of Justice]] and senior Manitoban in the government of Sir [[Robert Laird Borden]], Meighen helped put down the [[Winnipeg General Strike of 1919|Winnipeg General Strike]] by force.
68087 ==First Term==
68088 Meighen became leader of the [[Conservative Party of Canada (historical)|Conservative]] and [[Unionist Party (Canada)|Unionist]] Party and [[Prime Minister]] on [[July 7]], [[1920]], when Borden resigned. He would quickly call an election.
68089
68090 Meighen fought the [[Canadian federal election, 1921|1921 election]] under the banner of the [[National Liberal and Conservative Party]] in an attempt to keep the allegiance of Liberals who had supported the [[World War I|wartime]] Unionist government. However, his actions in implementing Conscription hurt his party's already-weak support in Quebec, while the Winnipeg General Strike and farm tariffs made him unpopular among labour and farmers alike. The party was defeated by the [[Liberal Party of Canada|Liberals]] led by [[William Lyon Mackenzie King]], and Meighen was personally defeated in [[Portage La Prairie]], falling to third place behind the newly-formed Progressive Party. He continued to lead the Conservative Party (which had reverted to its traditional name), and returned to parliament in [[1922]] for the eastern [[Ontario]] riding of [[Grenville County, Ontario|Grenville]].
68091
68092 ==Opposition leader==
68093 [[Image:Meighen biopg1 large.jpg|right|thumb|200px|Meighen was cast by opponents, especially in Quebec, as beholden to Britain's colonial actions.]]
68094 Meighen's term as opposition leader would be most marked by his response to the [[Chanak Affair|crisis at Chanak]], in which Colonial secretary [[Winston Churchill]] leaked to the newspapers that the Dominions may be called upon to help British forces in the area. King refused to commit to sending troops, resenting the way Churchill went above the Dominion leader's heads. King used the rationale that Parliament should decide, and that the matter was not important enough to recall Parliament. Meighen strongly condemned his action, saying in a Toronto hotel, &quot;When Britain's messgage came, then Canada should have said, 'Ready, aye ready, we stand by you.'&quot; When the crisis died down within days, Meighen was left with a reputation as blindly in favour of Britain's interests.
68095
68096 Meighen and King, unlike Laurier and Borden, had a very personal distrust and hatred for each other. Megihen looked down on King, whom he called &quot;Rex&quot; (King's old University nickname), and considered him unprinicpled.
68097
68098 The Liberal government of Mackenzie King was soon beset with scandals and corruption. Much of this was uncovered in a Royal Commission established to probe wrongdoing in Quebec, and in particular, in connection with building the Beauharnois Canal. The [[Tories]] won a plurality of seats in the [[Canadian federal election, 1925 |inconclusive election of 1925]], but King was able to hold onto to power until [[1926]] through an alliance with the [[Progressive Party of Canada|Progressives]]. Meighen denounced King staying in power, saying he was holding on to office like a &quot;lobster with lockjaw.&quot;
68099
68100 ==Second term==
68101 A scandal in the Customs department was soon found, making the Progressives wary of supporting King. When King was on the verge of losing a vote in the Commons in 1926, he asked the Governor General, [[Julian H.G. Byng, Viscount Byng of Vimy|Lord Byng]], to call an election. Despite every effort to cling to power, Mackenzie King's shaky government was defeated in the House of Commons. King resigned and Meighen was invited to form a government, having secured a measure of support from the opposition farm parties. This became known as the &quot;[[King-Byng Affair]]&quot;, an attack by Mackenzie King on the Governor General's right to refuse an election where an alternative government is capable of commanding the support of the House of Commons.
68102
68103 Because of the possibility of losing a vote in Commons while Megihen and his ministers were re-elected (a relic of British law dating to 1701 that was repealed in Canada in 1938), Meighen made his ministers &quot;acting&quot; ones, and did not give them the oath of office. King made an uproar about the situation, attracting Progressive support to take down the government. The government would lose confidence by one vote. There being no other Parliamentary grouping to call upon, Byng called an election. Meighan's party was swept from office, and Meighen was again defeated in [[Portage La Prairie]]. He resigned as Conservative Party leader shortly thereafter.
68104
68105 ==Afterward==
68106 [[Image:Meighen56.jpg|thumb|right|150px|Meighen in 1956.]]
68107
68108 Meighen was appointed to the [[Senate of Canada|Senate]] in 1932 by [[R.B. Bennett]]. He served as Leader of the Government in the Senate and Minister without Portfolio from [[February 3]], [[1932]], to [[October 22]], [[1935]].
68109
68110 In 1941, Meighen was prevailed upon to become leader of the Conservative Party again. He resigned his Senate seat on [[January 16]], [[1942]], and campaigned in a by-election for the [[Toronto]] riding of [[York South]]. According to custom, the Liberals would not run a candidate in the riding. But King, still harbouring a deep hatred for Meighen and thinking that the ardently conscriptionist Meighen coming back into Commons would further imflame the [[Conscription Crisis of 1944|conscription crisis]], would send resources to the [[Cooperative Commonwealth Federation|CCF]]'s [[Joseph Noseworthy]]. Meighen would go down to defeat, and once again withdrew from public life.
68111
68112 Arthur Meighen died in [[Toronto]], [[Ontario]], aged 86, on [[August 5]], [[1960]], and was buried in St. Mary's Cemetery, St. Mary's, Ontario, near his birthplace.
68113
68114 == External links ==
68115 *[http://www.biographi.ca/EN/ShowBio.asp?BioId=42122 Biography at the ''Dictionary of Canadian Biography Online'']
68116 *[http://www.freewebtown.com/stmarysont/ Arthur Meighen Statue, St. Mary's, Ontario]
68117
68118 {{start box}}
68119
68120 {{succession box three to two | title1=[[Prime Minister of Canada]] | before=[[Robert Laird Borden|Robert Borden]] | years1=1920&amp;ndash;1921 | after1=[[William Lyon Mackenzie King|Mackenzie King]] | title2=[[Secretary of State for External Affairs (Canada)|Secretary of State for External Affairs]] | years2=1920 &amp;ndash; 1921 | title3=[[Conservative Party of Canada (historical)|Leader of the Conservative Party]] | years3=1920 &amp;ndash; 1926 | after2=[[Hugh Guthrie]]}}
68121 {{succession box two to two | title1=[[Prime Minister of Canada]] | before=[[William Lyon Mackenzie King|Mackenzie King]] | years1=1926 | after=[[William Lyon Mackenzie King|Mackenzie King]] | title2=[[Secretary of State for External Affairs (Canada)|Secretary of State for External Affairs]] | years2=1926}}
68122 {{succession box|
68123 before=[[John Alexander Macdonald (Canadian Senator)|John Alexander Macdonald]]|
68124 title=[[Leader of the Government in the Senate (Canada)|Government Leader in the Senate]]|
68125 after=[[Raoul Dandurand]]|
68126 years=1932 &amp;ndash; 1935
68127 }}
68128 {{succession box | title=[[Conservative Party of Canada (historical)|Leader of the Conservative Party]] | before=[[Richard Hanson]] | years=1941&amp;ndash;1942 |
68129 after=[[John Bracken]]}}
68130 {{end box}}
68131 {{start box}}
68132 {{succession box|
68133 before=John Crawford|
68134 title=[[Portage la Prairie (electoral district)|MP for Portage la Prairie, MB]]|
68135 after=Harry Leader|
68136 years=1908 &amp;ndash; 1921
68137 }}
68138 {{succession box|
68139 before=Azra Casselman|
68140 title=[[Grenville (electoral district)|MP for Grenville, ON]]|
68141 after=Abolished|
68142 years=1922 &amp;ndash; 1925
68143 }}
68144 {{succession box|
68145 before=Harry Leader|
68146 title=[[Portage la Prairie (electoral district)|MP for Portage la Prairie, MB]]|
68147 after=Ewen Alexander McPherson|
68148 years=1925 &amp;ndash; 1926
68149 }}
68150 {{end box}}
68151
68152 {{canPM}}
68153
68154 {{Conservative Leaders}}
68155
68156 [[Category:1874 births|Meighen, Arthur]]
68157 [[Category:1960 deaths|Meighen, Arthur]]
68158 [[Category:Canadian lawyers|Meighen, Arthur]]
68159 [[Category:Historical Members of the Canadian Senate|Meighen, Arthur]]
68160 [[Category:Leaders of the Conservative Party of Canada|Meighen, Arthur]]
68161 [[Category:Manitoba politicians|Meighen, Arthur]]
68162 [[Category:Members of the Canadian House of Commons from Manitoba|Meighen, Arthur]]
68163 [[Category:Members of the Canadian House of Commons from Ontario|Meighen, Arthur]]
68164 [[Category:Members of the Queen's Privy Council for Canada|Meighen, Arthur]]
68165 [[Category:People from Manitoba|Meighen, Arthur]]
68166 [[Category:Prime Ministers of Canada|Meighen, Arthur]]
68167 [[Category:University of Toronto alumni|Meighen, Arthur]]
68168 [[Category:Irish Canadians|Meighen, Arthur]]
68169
68170 {{Persondata
68171 |NAME=Meighen, Arthur
68172 |ALTERNATIVE NAMES=
68173 |SHORT DESCRIPTION=9th Prime Minister of Canada (1920 - 1921, 1926)
68174 |DATE OF BIRTH=[[June 16]], [[1874]]
68175 |PLACE OF BIRTH=[[[[Anderson, Ontario]]
68176 |DATE OF DEATH=[[August 5]], [[1960]]
68177 |PLACE OF DEATH=[[Toronto, Canada]]
68178 }}
68179
68180 [[fr:Arthur Meighen]]
68181 [[pl:Arthur Meighen]]
68182 [[pt:Arthur Meighen]]</text>
68183 </revision>
68184 </page>
68185 <page>
68186 <title>Arianism</title>
68187 <id>1252</id>
68188 <revision>
68189 <id>39247296</id>
68190 <timestamp>2006-02-11T20:55:44Z</timestamp>
68191 <contributor>
68192 <username>Str1977</username>
68193 <id>244946</id>
68194 </contributor>
68195 <minor />
68196 <text xml:space="preserve">{{Christianity}}
68197 :'' This article is about theological views like those of Arius. [[Aryan]] is an unrelated ethnic concept.''
68198 :''Arians may also refer to [[Polish brethren]].''
68199
68200 '''Arianism''' was a [[Christology|Christological]] view held by followers of [[Arius]], a Christian priest who lived and taught in [[Alexandria]], Egypt, in the early [[4th century]]. Arius taught that [[God the Father#God the Father in Christianity|God the Father]] and [[Godhead (Christianity)|the Son]] were not co-eternal, seeing the [[Incarnation#As used in the Christian tradition|pre-incarnate]] [[Jesus]] as a divine being but nonetheless created by (and consequently inferior to) the Father at some point, before which the Son did not exist. In English-language works, it is sometimes said that Arians believe that Jesus is or was a &quot;creature&quot;; in this context, the word is being used in its original sense of &quot;created being.&quot;
68201
68202 The conflict between Arianism and the [[Trinitarianism|Trinitarian]] beliefs was the first major doctrinal confrontation in the Church after the legalization of Christianity by Emperor [[Constantine I of the Roman Empire|Constantine I]]. Controversy over Arianism extended over the greater part of the fourth century and involved most church members, simple believers and monks as well as bishops and emperors. While Arianism did dominate for several decades in the family of the Emperor, the Imperial nobility and higher ranking clergy, in the end it was Trinitarianism which prevailed theologically and politically at the end of the fourth century, and which has since been a virtually uncontested doctrine in all major branches of the Eastern and Western Church. Arianism, which had been taught by the Arian missionary [[Ulfilas]] to the Germanic tribes, did linger for some centuries among several Germanic tribes in western Europe, especially [[Goths]] and [[Langobards]] but did not play any significant theological role thereafter.
68203
68204 ==Beliefs==
68205 Because most contemporary written material on Arianism was written by its opponents, the nature of Arius' teachings are difficult to define precisely today. The letter of [[Auxentius]][http://ccat.sas.upenn.edu/jod/texts/auxentius.trans.html], a [[4th century]] Arian [[Roman Catholic Archdiocese of Milan|bishop of Milan]], regarding the missionary [[Ulfilas]], gives the clearest picture of Arian beliefs on the nature of the [[Trinity]]: God the Father (&quot;unbegotten&quot;), always existing, was separate from the lesser Jesus Christ (&quot;only-begotten&quot;), born before time began and creator of the world. The Father, working through the Son, created the Holy Spirit, who was subservient to the Son as the Son was to the Father. The Father was seen as &quot;the only true God.&quot; I Corinthians 8:5-6 was cited as proof text:
68206
68207 :&quot;Indeed, even though there may be so-called gods in heaven or on earth — as in fact there are many gods and many lords — yet for us there is one God (''theos''), the Father, from whom are all things and for whom we exist, and one Lord (''kyrios''), Jesus Christ, through whom are all things and through whom we exist.&quot; (NRSV)
68208
68209 == The Council of Nicea and its aftermath ==
68210 In [[321]] Arius was denounced by a [[synod]] at Alexandria for teaching a heterodox view of the relationship of Jesus to God the Father. Because Arius and his followers had great influence in the schools of Alexandria &amp;mdash; counterparts to modern universities or seminaries &amp;mdash; their theological views spread, especially in the eastern Mediterranean. By [[325]] the controversy had become significant enough that Emperor Constantine called an assembly of bishops, the [[First Council of Nicea|First]] [[Ecumenical council|Council]] of [[Nicaea]] (modern Iznik, Turkey), which condemned Arius' doctrine and formulated the [[Nicene Creed]], which is still recited in [[Catholicism|Catholic]], [[Orthodox]], and some [[Protestant]] services. The Nicene Creed's central term, used to describe the relationship between the Father and the Son, is [[ousia|homoousios]], meaning &quot;of the same substance&quot; or &quot;of one being&quot;. (The [[Athanasian Creed]] is less often used but is a more overtly anti-Arian statement on the Trinity.)
68211
68212 Constantine exiled those who refused to accept the Nicean creed &amp;mdash; Arius himself, the deacon [[Euzoios]], and the Libyan bishops [[Theonas of Ptolemais]] and [[Secundus of Mamarica]] &amp;mdash; and also the bishops who signed the creed but refused to join in Arius' condemnation, [[Eusebius of Nicomedia]] and [[Theognis of Nicea]]. The Emperor also ordered all copies of the ''Thalia'', the book in which Arius had expressed his teachings, to be [[Book burning|burned]]. This ended the open theological dispute for a few years, though under the surface opposition to the Nicean creed remained.
68213
68214 Though he was committed to maintaining what the church had defined at Nicea, Constantine was also bent on pacifying the situation and eventually became more lenient towards those condemned and exiled at the council. First he allowed Eusebius of Nicomedia, who was a prot&amp;eacute;g&amp;eacute; of his sister, and Theognis to return once they had signed an ambiguous statement of faith. The two, and other friends of Arius, worked for Arius' rehabilitation. At the synod of Tyre in [[335]] they brought accusations against Athanasius, bishop of Alexandria, the primary opponent of Arius; after this, Constantine had [[Athanasius]] banished, since he considered him an impediment to reconciliation. In the same year, the synod of Jerusalem readmitted Arius to communion, and in [[336]], Constantine allowed Arius to return to his hometown. Arius, however, died on the day he was scheduled to depart from Constantinople. Eusebius and Theognis remained in the Emperor's favour, and when Constantine, who had been a [[catechumen]] much of his adult life, accepted [[baptism]] on his deathbed, it was from Eusebius of Nicomedia.
68215
68216 == The theological debates reopen ==
68217 The Council of Nicea had not ended the controversy, as many bishops of the Eastern provinces disputed the ''homoousios'', the central term of the Nicene creed, as it had been used by [[Paul of Samosata]], who had advocated a [[Monarchianism|monarchianist]] [[Christology]]. Both the man and his teaching, including the term ''homoousios'', had been condemned by synods in Antioch in [[269]].
68218
68219 Hence, after Constantine's death in [[337]], open dispute resumed again. Constantine's son Constantius II, who had become Emperor of the eastern part of the Empire actually encouraged the Arians and set out to reverse the Nicene creed. His advisor in these affairs was Eusebius of Nicomedia, who had already at the Council of Nicea been the head of the Arian party, who also was made bishop of Constantinople.
68220
68221 Constantius used his power to exile bishops adhering to the Nicene creed, especially [[Athanasius]] of Alexandria, who fled to Rome. In [[355]] Constantius became the sole Emperor and extended his pro-Arian policy towards the western provinces, frequently using force to push through his creed, even exiling [[Pope Liberius]].
68222
68223 As debates raged in an attempt to come up with a new formula, three camps evolved among the opponents of the Nicene creed. The first group mainly opposed the Nicene terminology and preferred the term ''homoiousios'' (alike in substance) to the Nicene ''homoousios'', while they rejected Arius and his teaching and accepted the equality and coeternality of the persons of the Trinity. Because of this centrist position, and despite their rejection of Arius, they were called &quot;semi-Arians&quot; by their opponents. The second group also avoided invoking the name of Arius, but in large part followed Arius' teachings and, in another attempted compromise wording, described the Son as being like (''homoi'') the Father. A third group explicitly called upon Arius and described the Son as unlike (''anhomoi'') the Father. Constantius wavered in his support between the first and the second party, while harshly persecuting the third.
68224
68225 The debates between these groups resulted in numerous synods among them [[Sardica]] in [[343]], the council of Sirmium in [[358]] and the double council of Rimini and Selecia in [[359]], and no less than fourteen further creed formulas between 340 and 360, and the pagan observer Ammianus Marcellinus commented sarcastically: &quot;The highways were covered with galloping bishops.&quot; None of these attempts were acceptable to the defenders of Nicene orthodoxy: writing about the latter councils, Saint [[Jerome]] remarked that the world &quot;awoke with a groan to find itself Arian.&quot;
68226
68227 After Constantius' death in [[361]], his successor [[Julian the Apostate|Julian]], a devotee of [[Paganism|Rome's pagan gods]], declared that he would no longer attempt to favor one church faction over another, and allowed all exiled bishops to return; this had the objective of further increasing dissension among Christians. The Emperor [[Valens]], however, revived Constantius' policy and supported the &quot;Homoian&quot; party, exiling bishops and often using force. During this persecution many bishops were exiled to the other ends of the Empire, (e.g., [[Hilarius of Poitiers]] to the Eastern provinces). These contacts and the common plight subsequently led to a rapprochement between the Western supporters of the Nicene creed and the ''homoousios'' and the Eastern semi-Arians.
68228
68229 After Valens' death in the [[Battle of Adrianople (378)|Battle of]] [[Adrianople]] in [[378]], the accession of [[Theodosius I]], who adhered to the Nicene creed, allowed for settling the dispute in [[381]]: at the [[Second Ecumenical Council]] in Constantinople, a group of mainly Eastern bishops assembled and accepted the Nicene Creed, which was supplemented in regard to the [[Holy Spirit]]. This is generally considered the end of the dispute about the Trinity and the end of Arianism among the Roman, non-Germanic peoples.
68230
68231 == Nicene Christianity becomes the state religion of Rome ==
68232 {{cleanup-merge}}
68233 In the 4th century, the Christian Church in the Roman Empire was wracked with controversy over the nature of the [[Trinity]]. In 325 AD, the [[First Council of Nicaea|Council of Nicea]] had condemned the teachings of the theologian [[Arius]]: that Jesus was a created being and inferior to God the Father, and that the Father and Son were of a similar substance (''homoiousion'' in Greek) but not identical. The Council of Nicea had formulated the [[Nicene Creed]], which declared that Jesus and God the Father were of the same substance (''[[ousia|homoousion]]'' in Greek, a term which was condemned at the Council of Antioch in 264-268). The Council of Nicea did not settle these controversies, and by the time of Theodosius' accession, there were still several different church factions that sought to impose their views on Christianity as a whole. While no mainstream churchmen within the Empire explicitly adhered to Arius or his teachings, there were those who still used the ''homoiousion'' formula, as well as those who attempted to bypass the debate by merely saying that Jesus was like (''homoi'' in Greek) God the Father. All these non-Nicenes were frequently labeled as [[Arians]] (i.e., followers of Arius) by their opponents, though they would not have identified themselves as such. (For a succinct survey of the situation just before Theodosius' accession, see ''Failure of Empire,'' Noel Lenski (U. of California Press, 2002, ISBN 0520233328) pp. 235-237)
68234
68235 The emperor Valens had favored the group who used the ''homoi'' formula; this theology was prominent in much of the East and had under the sons of Constantine the Great gained a foothold in the west. Theodosius, on the other hand, cleaved closely to the Nicene Creed: this was the line that predominated in the West and was held by the important Alexandrian church.
68236
68237 Two days after Theodosius arrived in Constantinople, [[November 24]], [[380]], Theodosius expelled the non-Nicene bishop, [[Demophilus of Constantinople]], and surrendered the churches of that city to [[Gregory Nazianzus]], the leader of the small Nicene community there, an act which provoked rioting. Theodosius had just been baptized, by bishop Acholius of Thessalonica, during a severe illness, as was common in the early Christian world. In February he and Gratian published an edict that all their subjects should profess the faith of the bishops of Rome and Alexandria (i.e., the Nicene faith).
68238
68239 Although much of the church hierarchy in the East had held non-Nicene positions in the decades leading up to Theodosius' accession, he managed to impose Nicene uniformity during his reign. Later Nicene writers took special glee in the ignominious death of Valens, the Arians' protector, and indeed his defeat probably damaged the standing of the Homoian faction.
68240
68241 For the first part of his rule, Theodosius seems to have ignored the semi-official standing of the Christian bishops; in fact he had voiced his support for the preservation of temples or pagan statues as useful public buildings. Then, in a series of decrees called the '''Theodosian decrees''' he progressively declared that those pagan feasts that had not yet been rendered Christian ones were now to be workdays (in [[389]]). In [[391]], he outlawed [[Animal sacrifice|blood sacrifice]] and decreed &quot;no one is to go to the sanctuaries, walk through the temples, or raise his eyes to statues created by the labor of man&quot;. The temples that were thus closed could be declared &quot;abandoned&quot; as Bishop [[Theophilus of Alexandria]] immediately noted in applying for permission to demolish a site and cover it with a Christian church, an act that must have received general sanction, for [[Mithraism|mithraea]] forming crypts of churches and temples forming the foundations of 5th century churches appear throughout the former Roman Empire. Theodosius participated in actions by Christians against major cult sites: the destruction of the gigantic [[Serapeum]] of Alexandria and its library by a mob in around [[392]], authorized by Theodosius (''extirpium malum'') and described in exultant detail by Christian propagandists, was only the most spectacular such occasion (Peter Brown, ''The Rise of Western Christendom,'' 2003, p. 73-74). The destruction of the greatest temple in Alexandria gave encouragement to Christian vigilantism and mob action in other centers, often spurred on by the local bishops, as early hagiographies proudly relate.
68242
68243 By decree in 391, Theodosius ended the subsidies that had still trickled to some remnants of Greco-Roman civic paganism too. The [[Sacred fire of Vesta|eternal fire]] in the [[Vesta|Temple of Vesta]] in the [[Roman Forum]] was extinguished, and the [[Vestal Virgins]] were disbanded. Taking the auspices and practicing witchcraft were to be punished. Pagan members of the [[Roman Senate|Senate]] in Rome appealed to him to restore the [[Altar of Victory]] in the Senate House; he refused. After the last [[Ancient Olympic Games|Olympic Games]] in [[393]], Theodosius cancelled the much-diminished games, and the reckoning of dates by [[Olympiad]]s soon came to an end.
68244
68245 Now Theodosius portrayed himself on his coins holding the [[labarum]].
68246
68247 The apparent change of policy that resulted in the &quot;Theodosian decrees&quot; has often been credited to the increased influence of [[Ambrose]], [[Roman Catholic Archdiocese of Milan|bishop of Milan]]. The personal piety of Theodosius cannot be assessed. It is worth noting that in 390 Ambrose had excommunicated Theodosius, who had recently ordered the massacre of several thousand inhabitants of [[Thessalonica]], in response to the assassination of his military governor stationed in the city and that Theodosius performed several months of public penance. The specifics of the decrees were superficially limited in scope, specific measures in response to various petitions and accusations from the increasingly militant Christians throughout his administration. In 391 or 392 he officially sanctioned the destruction of the most famous of the temples in the East, the [[Serapeum]] at Alexandria. Bands of monks and Christian officials had long been accustomed to take the law into their own hands and destroy various centers of pagan worship, but the destruction of the Serapeum seemed to confirm that such actions enjoyed the emperor's tacit approval at least, and served to encourage such action in the future. Theodosius had been effectively manipulated into sanctioning the destruction of the Serapeum by local officials who had essentially engineered the crisis there for this very purpose.
68248
68249 Ambrose preached a [[panegyric]] at Theodosius' [[funeral]].
68250
68251 == Arianism in the early medieval Germanic kingdoms ==
68252 However, during the time of Arianism's flowering in [[Constantinople]], the [[Goths|Goth]] convert [[Ulfilas]] (later the subject of the letter of Auxentius cited above) was sent as a missionary to the Gothic barbarians across the [[Danube River|Danube]], a mission favored for political reasons by emperor [[Constantius]]. Ulfilas' initial success in converting this Germanic people to an Arian form of Christianity was strengthened by later events. When the Germanic peoples entered the [[Roman Empire]] and founded successor-kingdoms in the western part, most had been Arian Christians for more than a century.
68253
68254 The conflict in the 4th century had seen Arian and Nicene factions struggling for control of the Church; in contrast, in the kingdoms these Arian Germans established on the wreckage of the Western Roman Empire in the 5th century, there were entirely separate Arian and Nicene Churches with parallel hierarchies, each serving different sets of believers, the Germanic elites being Arians and the majority population being trinitarian. Many scholars see the persistence of the Germans' Arian religion as a strategy to differentiate the Germanic elite from the local inhabitants and maintain their group identity against the local culture.
68255
68256 While most Germanic tribes in general were tolerant regarding the trinitarian beliefs of their subjects, the Vandals tried for several decennia to force their Arian belief on their North African trinitarian subjects, exiling trinitarian clergy, dissolving monasteries and exercising heavy pressure on non-conforming Christians.
68257
68258 For more information on these Arian kingdoms, see the articles on the [[Ostrogoths]], [[Visigoths]], [[Vandals]], [[Burgundians]], and [[Lombards]]. (The [[Franks]] were unique among the Germanic peoples in that they entered the empire as pagans and converted to Nicene Christianity directly.) By the beginning of the [[8th century]], these kingdoms had either been conquered by Nicene neighbors (Ostrogoths, Vandals, Burgundians) or their rulers had accepted Nicene Christianity (Visigoths, Lombards).
68259
68260 == &quot;Arian&quot; as a polemical epithet ==
68261 In many ways, the conflict around Arian beliefs in the fourth, fifth, and sixth centuries helped firmly define the centrality of the Trinity in mainstream Christian theology. As the first major intra-Christian conflict after Christianity's legalization, the struggle between Nicenes and Arians left a deep impression on the institutional memory of Nicene churches. Thus, over the past 1,500 years, some Christians have used the term ''Arian'' to refer to those groups that see themselves as worshipping Jesus Christ or respecting his teachings, but do not hold to the [[Nicene creed]].
68262
68263 Like the Arians, many groups have embraced the belief that Jesus is not the one God, but a separate being subordinate to the Father, and that Jesus at one time did not exist. Some of these profess, as the Arians did, that God made all things through the pre-existent Christ. Some profess that Jesus became divine, through exaltation, just as the Arians believed. Drawing a parallel between these groups and Arians can be useful for distinguishing a type of unbelief in the Trinity. But, despite the frequency with which this name is used as a polemical label, there has been no historically continuous survival of Arianism into the modern era. The groups so labelled do not hold beliefs identical to Arianism. For this reason, they do not use the name as a self-description, even if they acknowledge that their beliefs are at points in agreement with, or in broad terms similar to, Arianism.
68264
68265 Those whose religious beliefs have been compared to or labeled as Arianism include:
68266
68267 *[[Unitarianism|Unitarians]], who believe that God is one as opposed to a Trinity, and many of whom believe in the moral authority, but not the deity, of Jesus.
68268 *[[Jehovah's Witnesses]], who hold that at one point in time Jesus did not exist.
68269 *[[Christadelphians]], who believe that Jesus' pre-natal existence was conceptual, as the &quot;Logos&quot;, rather than literal.
68270 *Followers of the various churches of the [[Latter Day Saint movement]], who believe in the unity in purpose of the Godhead but that Jesus is a divine being separate from and subordinate to God the Father.
68271 *[[Islam|Muslims]], who believe that Jesus (generally called [[Isa]]), was a prophet of the one God, but not himself divine.
68272
68273 For more on the theology of these groups, see their respective articles.
68274
68275 ==See also==
68276 * [[Germanic Christianity]]
68277 * [[Protestantism]]
68278 * [[Semi-Arianism]]
68279 * [[Anomoean]], extreme sect of pure Arians
68280 * [[Christology]]
68281
68282 == Bibliography ==
68283
68284 * [[Athanasius of Alexandria]], ''History of the Arians'' [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-47.htm Part I] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-48.htm Part II] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-49.htm Part III] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-50.htm Part IV] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-51.htm Part V] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-52.htm Part VI] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-53.htm Part VII] [http://www.ccel.org/fathers2/NPNF2-04/Npnf2-04-54.htm Part VIII]
68285 * Ivor J. Davidson, ''A Public Faith'', Volume 2 of Baker History of the Church, 2005, ISBN 0801012759
68286 * J.N.D. Kelly, ''Early Christian Doctrines'', 1978, ISBN 006064334X
68287 * William C. Rusch, ''The Trinitarian Controversy'', (Sources of Early Christian Thought), 1980, ISBN 0800614100
68288 * [[John Henry Newman]], ''[http://www.newmanreader.org/works/arians/index.html Arians of the Fourth Century]'', 1871
68289 * [[Philip Schaff|Schaff, Philip]] ''[http://www.ccel.org/s/schaff/history/3_ch09.htm Theological Controversies and the Development of Orthodoxy]'', History of the Christian Church, Vol III, Ch. IX
68290
68291 ==External links==
68292 *[http://www.newadvent.org/cathen/01707c.htm CATHOLIC ENCYCLOPEDIA: Arianism]
68293 *[http://mb-soft.com/believe/txo/arianism.htm Believe: Arianism]
68294
68295 [[Category:Ancient Christian Denominations]]
68296 [[Category:Ancient Roman Christianity]]
68297 [[Category:Antitrinitarianism]]
68298 [[Category:Arianism]]
68299 [[Category:Christian theology]]
68300 [[Category:Heresy]]
68301 [[Category:Late Antiquity]]
68302 [[bg:АŅ€Đ¸Đ°ĐŊŅŅ‚вО]]
68303 [[cs:AriÃĄnství]]
68304 [[da:Arianisme]]
68305 [[de:Arianismus]]
68306 [[eo:Arianismo]]
68307 [[es:Arrianismo]]
68308 [[fi:Areiolaisuus]]
68309 [[fr:Arianisme]]
68310 [[gl:Arianismo]]
68311 [[he:המינו×Ē האריאני×Ē]]
68312 [[ia:Arianismo]]
68313 [[it:Arianesimo]]
68314 [[ja:ã‚ĸãƒĒã‚Ļã‚šæ´ž]]
68315 [[nl:Arianisme]]
68316 [[no:Arianisme]]
68317 [[pl:Arianizm]]
68318 [[pt:Arianismo]]
68319 [[ru:АŅ€Đ¸Đ°ĐŊŅŅ‚вО]]
68320 [[sv:Arianism]]
68321 [[zh:é˜ŋ里įƒæ•™æ´ž]]</text>
68322 </revision>
68323 </page>
68324 <page>
68325 <title>August 1</title>
68326 <id>1254</id>
68327 <revision>
68328 <id>41892543</id>
68329 <timestamp>2006-03-02T12:16:13Z</timestamp>
68330 <contributor>
68331 <username>Furry</username>
68332 <id>461810</id>
68333 </contributor>
68334 <comment>/* Births */ Added birth of Lionel Bart in 1930.</comment>
68335 <text xml:space="preserve">{| style=&quot;float:right;&quot;
68336 |-
68337 |{{AugustCalendar}}
68338 |-
68339 |{{ThisDateInRecentYears|Month=August|Day=1}}
68340 |}
68341 '''August 1''' is the 213th day of the year in the [[Gregorian Calendar]] (214th in [[leap year]]s), with 152 days remaining.
68342
68343 ==Events==
68344 *[[30 BC]] - [[Octavian]] (later known as [[Augustus]]) enters [[Alexandria]], [[Egypt]], bringing it under the control of the [[Roman Republic]].
68345 *[[527]] - [[Justinian I]] becomes [[Byzantine Emperor]].
68346 *[[607]] - [[Ono no Imoko]] is dispatched as envoy to the [[Sui Dynasty|Sui]] court in [[China]] (Traditional [[Japanese calendar|Japanese date]]: July 3, 607).
68347 *[[1291]] - The [[Switzerland|Swiss Confederation]] is formed.
68348 *[[1461]] - [[Edward IV of England|Edward IV]] is crowned king of [[England]].
68349 *[[1492]] - [[Ferdinand V of Spain|Ferdinand]] and [[Isabella of Castile|Isabella]] drive the [[Jew|Jews]] out of [[Spain]].
68350 *[[1498]] - [[Christopher Columbus]] becomes the first European to visit [[Venezuela]].
68351 *[[1619]] - First African [[slavery|slave]]s arrive in [[Jamestown, Virginia]].
68352 *[[1664]] - The [[Ottoman Empire]] is defeated in the [[Battle of Saint Gotthard]] by an [[Habsburg Monarchy|Austria]]n army led by [[Raimondo Montecuccoli]], resulting in the [[Peace of VasvÃĄr]].
68353 *[[1774]] - The element [[oxygen]] is discovered by [[Carl Wilhelm]] and [[Joseph Priestley]].
68354 *[[1798]] - [[Battle of the Nile]] starts between French and British fleets.
68355 *[[1820]] - [[London]]'s [[Regent's Canal]] opens.
68356 *[[1831]] - [[London Bridge]] opens.
68357 *[[1832]] - The [[Black Hawk War]] ends.
68358 *[[1834]] - [[Slavery]] is abolished in the [[British Empire]].
68359 *[[1838]] - Slaves in [[Trinidad and Tobago]] are emancipated.
68360 *[[1864]] - The [[Elgin Watch Company]] is founded in [[Elgin, Illinois]]
68361 *[[1876]] - [[Colorado]] is admitted as the 38th [[U.S. state]].
68362 *[[1894]] - The [[Sino-Japanese War (1894-1895)|First Sino-Japanese War]] erupts between [[Japan]] and [[China]] over [[Korea]].
68363 *[[1902]] - The [[United States]] buys the rights to the [[Panama Canal]] from [[France]].
68364 *[[1907]] - First [[Scouting|Scout]] camp opens on [[Brownsea Island]]. It was set up on July 29th and ran until August 9th.
68365 *[[1914]] - [[Germany]] declares war on [[Russia]] at the opening of [[World War I]].
68366 *[[1927]] - The [[Nanchang Uprising]] marks the first significant battle in the [[Chinese Civil War]] between the [[Kuomintang]] and [[Communist Party of China]]. This day is commemorated as the anniversary of the founding of the [[People's Liberation Army]].
68367 *[[1936]] - The [[Berlin]] [[Olympic Games]] open.
68368 *[[1937]] - [[Tito]] reads the resolution &quot;[[Manifesto]] of constitutional [[congress]] of KPH&quot; to the constitutive [[congress]] of KPH ([[Croatian Communist Party]]) in woods near [[Samobor]].
68369 *[[1941]] - The first [[Jeep]] is produced.
68370 *[[1944]] - [[Anne Frank]] makes the last entry in her [[diary]].
68371 *1944 - [[Warsaw Uprising]] against the [[Nazi]] occupation breaks out in [[Warsaw]], [[Poland]].
68372 *[[1945]] - [[Mel Ott]] becomes the third member of the [[500 home run club]] with a [[Home run|home run]] at the [[Polo Grounds]] in [[New York, New York]].
68373 *[[1946]] - The Japanese Federation of Trade Unions is formed.
68374 *[[1948]] - The [[U.S. Air Force Office of Special Investigations]] is founded.
68375 *[[1957]] - The United States and [[Canada]] form the North American Air Defense Command ([[North American Aerospace Defense Command|NORAD]]).
68376 *[[1960]] - [[Dahomey]] (later renamed [[Benin]]) declares independence from [[France]]
68377 ** [[Communist party|Communist]] [[Party of Independence and Work|PAI]] is banned in [[Senegal]].
68378 *[[1961]] - [[Six Flags Over Texas]], the first [[Six Flags]] [[amusement park|park]], opens.
68379 *[[1965]] - Princess [[Beatrix of the Netherlands|Beatrix]] of the [[Netherlands]] announces her engagement to [[Claus von Amsberg]].
68380 *[[1966]] - [[Charles Whitman]] kills 15 people shooting from a tower at the [[University of Texas at Austin]] before being killed by the police.
68381 *1966 - Purges of intellectuals and imperialists becomes official [[People's Republic of China]] policy at the beginning of the [[Cultural Revolution]].
68382 *[[1967]] - [[Israel]] annexes East [[Jerusalem]].
68383 *[[1970]] - [[Powder Ridge Rock Festival]]
68384 *[[1971]] - [[George Harrison]]'s [[The Concert for Bangladesh|Concert for Bangladesh]] in New York City features, among others, [[Bob Dylan]], [[Eric Clapton]], [[Ringo Starr]] and [[Leon Russell]].
68385 *[[1975]] - [[CSCE Final Act]] creates the [[Organization for Security and Co-operation in Europe|Conference for Security and Co-operation in Europe]].
68386 *[[1977]] - [[Frank H.T. Rhodes]] is elected President of [[Cornell University]], a post he would hold for 18 years.
68387 *[[1981]] - First broadcasts by [[MTV]]. The first video played was &quot;[[Video Killed The Radio Star]]&quot; by the [[Buggles]].
68388 *[[1994]] - [[Michael Jackson]] and [[Lisa Marie Presley]] confirm rumors that they had married eleven weeks earlier.
68389 *[[1996]] - [[Olympic Games]]: [[Michael Johnson (athlete)|Michael Johnson]] wins the 200-meter dash in 19.32 seconds, beating the old world record by over 0.3 seconds.
68390 *1996 - [[MTV2]] makes its first broadcasts. The first video played was [[Beck]]'s &quot;[[Where It's At]]&quot;.
68391 *[[2001]] - An agreement is reached on the position of the minority [[Albanian language]] in the [[Republic of Macedonia]].
68392 *2001 - [[Bulgaria]], [[Cyprus]], [[Latvia]], [[Malta]], [[Slovenia]] and [[Slovakia]] join the [[European Environment Agency]].
68393 *2001 - Alabama Supreme Court Chief Justice [[Roy Moore]] has a 2-1/2 ton [[Ten Commandments]] monument installed in the rotunda of the judiciary building, leading to a [[Glassroth v. Moore|lawsuit]] to have it removed and his own removal from office.
68394 *[[2004]] - A supermarket fire kills 215 people and injures 300 in [[AsunciÃŗn]], [[Paraguay]].
68395 *[[2005]] - [[German spelling reform of 1996]] is formally implemented
68396 *2005 - [[Disneyland Resort Line]] of the [[Hong Kong]] [[MTR]] opens to the public.
68397
68398 ==Births==
68399 *[[10 BC]] - [[Claudius]], [[Roman Emperor]] (d. [[54]])
68400 *[[126]] - [[Pertinax]], [[Roman Emperor]] (d. [[193]])
68401 *[[1313]] - [[Emperor Kogon]] of Japan (d. [[1364]])
68402 *[[1377]] - [[Emperor Go-Komatsu of Japan]] (d. [[1433]])
68403 *[[1545]] - [[Andrew Melville]], Scottish theologian and religious reformer (b. [[1622]])
68404 *[[1555]] - [[Edward Kelley]], English spirit medium (d. [[1597]])
68405 *[[1579]] - [[Luís VÊlez de Guevara]], Spanish writer (d. [[1644]])
68406 *[[1630]] - [[Thomas Clifford, 1st Baron Clifford of Chudleigh]], English statesman (d. [[1673]])
68407 *[[1713]] - [[Charles I, Duke of Brunswick-LÃŧneburg]] (d. [[1780]])
68408 *[[1714]] - [[Richard Wilson (painter)|Richard Wilson]], Welsh painter (d. [[1782]])
68409 *[[1744]] - [[Jean-Baptiste Lamarck]], French scientist (d. [[1829]])
68410 *[[1770]] - [[William Clark]], American explorer (d. [[1838]])
68411 *[[1779]] - [[Francis Scott Key]], American lawyer and lyricist (d. [[1843]])
68412 *1779 - [[Lorenz Oken]], German naturalist (d. [[1851]])
68413 *[[1815]] - [[Richard Henry Dana, Jr.]], American lawyer, politician, and author (d. [[1882]])
68414 *[[1818]] - [[Maria Mitchell]], American astronomer (d. [[1889]])
68415 *[[1819]] - [[Herman Melville]], American writer (d. [[1891]])
68416 *[[1858]] - [[Hans Rott]], Austrian composer (d. [[1884]])
68417 *[[1885]] - [[George de Hevesy]], Hungarian chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1966]])
68418 *[[1889]] - [[Walter Gerlach]], German physicist (d. [[1979]])
68419 *[[1891]] - [[Karl Kobelt]], Swiss politician (d. [[1968]])
68420 *[[1921]] - [[Jack Kramer (tennis player)|Jack Kramer]], American tennis player
68421 *[[1922]] - [[Pat McDonald]], Australian actress (d. [[1990]])
68422 *[[1924]] - [[Georges Charpak]], Ukrainian-born physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
68423 *[[1925]] - [[Ernst Jandl]], Austrian writer (d. [[2000]])
68424 *[[1927]] - [[Raymond Leppard]], English conductor
68425 *[[1930]] - [[Pierre Bourdieu]], French sociologist (d. [[2002]])
68426 * 1930 - [[Lionel Bart]], English song-writer (d. [[1999]])
68427 *[[1932]] - [[Meir Kahane]], American orthodox rabbi and founder of the Jewish Defense League (d. [[1990]])
68428 *[[1933]] - [[Dom DeLuise]], American actor and comedian
68429 *[[1936]] - [[Yves Saint Laurent]], French fashion designer
68430 *[[1937]] - [[Al D'Amato]], U.S. Senator from New York
68431 *[[1942]] - [[Jerry Garcia]], American guitarist, lyricist, and singer (The [[Grateful Dead]]) (d. [[1995]])
68432 *[[1945]] - [[Douglas D. Osheroff]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
68433 *[[1946]] - [[Fiona Stanley]], Australian epidemiologist
68434 *[[1949]] - [[Kurmanbek Bakiyev]], President of Kyrgyzstan
68435 *[[1950]] - [[Jim Carroll]], American poet and actor
68436 *[[1952]] - [[Zoran Đinđić]], [[Prime Minister of Serbia]] (d. [[2003]])
68437 *[[1953]] - [[Robert Cray]], American singer
68438 *[[1955]] - [[Trevor Berbick]], Jamaican boxer
68439 *[[1956]] - [[Tom Leykis]], American radio personality
68440 *[[1958]] - [[Adrian Dunbar]], Northern Irish actor
68441 *[[1959]] - [[Joe Elliott]], English musician ([[Def Leppard]])
68442 *[[1960]] - [[Chuck D]], American rapper ([[Public Enemy]])
68443 *1960 - [[Richard Roeper]], American newspaper columnist and film critic
68444 *[[1962]] - [[Robert Clift]], British field hockey player
68445 *[[1963]] - [[Coolio]], American rapper
68446 *[[1965]] - [[Sam Mendes]], British stage and film director
68447 *[[1970]] - [[David James (footballer)|David James]], English footballer
68448 *[[1973]] - [[Tempestt Bledsoe]], American actress
68449 *[[1978]] - [[Edgerrin James]], American football player
68450
68451 ==Deaths==
68452 *[[371]] - [[St Eusebius of Vercelli]], Italian bishop
68453 *[[1137]] - King [[Louis VI of France]] (b. [[1081]])
68454 *[[1227]] - [[Shimazu Tadahisa]], Japanese warlord (b. [[1179]])
68455 *[[1402]] - [[Edmund of Langley, 1st Duke of York]], son of [[Edward III of England]] (b. [[1341]])
68456 *[[1457]] - [[Lorenzo Valla]], Italian humanist
68457 *[[1464]] - [[Cosimo de' Medici]], ruler of Florence (b. [[1386]])
68458 *[[1541]] - [[Simon Grynaeus]], German theologian (b. [[1493]])
68459 *[[1546]] - [[Peter Faber]], French Jesuit theologian (b. [[1506]])
68460 *[[1557]] - [[Olaus Magnus]], Swedish writer (b. [[1490]])
68461 *[[1580]] - [[Albrecht Giese IV]], German politician and diplomat (b. [[1524]])
68462 *[[1589]] - [[Jacques ClÊment]], French assassin of [[Henry III of France]] (b. [[1567]])
68463 *[[1598]] - [[Abraham Ortelius]], Belgian cartographer (b. [[1527]])
68464 *[[1714]] - Queen [[Anne of Great Britain]] (b. [[1665]])
68465 *[[1787]] - [[Alphonsus Liguori]], Italian founder of the Redemptionist order (b. [[1696]])
68466 *[[1796]] - [[Robert Pigot]], British army officer (b. [[1720]])
68467 *[[1798]] - [[François-Paul Brueys D'Aigalliers]], French admiral (killed in battle) (b. [[1853]])
68468 *[[1851]] - [[William Joseph Behr]], German writer (b. [[1775]])
68469 *[[1866]] - [[John Ross (Cherokee chief)]], Principal Chief of the Cherokee Nation (b. [[1790]])
68470 *[[1917]] - [[Frank Little]], American labor organizer (lynched) (b. [[1879]])
68471 *[[1918]] - [[John Riley Banister]], American cowboy and Texas Ranger (b. [[1854]])
68472 *[[1920]] - [[Bal Gangadhar Tilak]], Indian nationalist leader (b. [[1856]])
68473 *[[1964]] - [[Johnny Burnette]], American singer (b. [[1934]])
68474 *[[1967]] - [[Richard Kuhn]], Austrian chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1900]])
68475 *[[1970]] - [[Frances Farmer]], American actress (b. [[1913]])
68476 *1970 - [[Otto Heinrich Warburg]], German physician and physiologist, [[Nobel Prize in Physiology or Medicine|Nobel Prize]] laureate (b. [[1883]])
68477 *[[1973]] - [[Gian Francesco Malipiero]], Italian composer (b. [[1882]])
68478 *[[1977]] - [[Gary Powers]], American spy plane pilot (b. [[1929]])
68479 *[[1981]] - [[Paddy Chayefsky]], American writer (b. [[1923]])
68480 *[[1989]] - [[John Ogdon]], English pianist (b. [[1937]])
68481 *[[1990]] - [[Norbert Elias]], German sociologist (b. [[1897]])
68482 *1990 - [[Graham Young]], British serial killer (b. [[1947]])
68483 *[[1996]] - [[Frida Boccara]], French singer (b. [[1940]])
68484 *1996 - [[Tadeus Reichstein]], Polish chemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1897]])
68485 *[[1997]] - [[Sviatoslav Richter]], Ukrainian pianist (b. [[1915]])
68486 *[[1999]] - [[Nirad C. Chaudhuri]], Indian-born writer (b. [[1897]])
68487 *[[2001]] - [[Korey Stringer]], American football player (b. [[1974]])
68488 *[[2003]] - [[Guy Thys]], Belgian football coach (b. [[1922]])
68489 *2003 - [[Marie Trintignant]], French actress (b. [[1962]])
68490 *[[2004]] - [[Philip Hauge Abelson]] American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1913]])
68491 *[[2005]] - [[Al Aronowitz]], American music journalist (b. [[1928]])
68492 *2005 - King [[Fahd of Saudi Arabia]] (b. [[1923]])
68493 *2005 - [[Constant Nieuwenhuys]], Dutch painter (b. [[1920]])
68494 *2005 - [[Wim Boost|Wibo]], Dutch cartoonist (b. [[1918]])
68495
68496 ==Holidays and observances==
68497 *[[Eastern Orthodoxy|Orthodox Christianity]] - [[Procession of the Cross]]
68498 *[[Angola]] - [[Armed Forces Day]]
68499 *[[Barbados]], [[Trinidad and Tobago]] - [[Emancipation Day]]
68500 *[[Benin]] - [[National Day]]
68501 *[[People's Republic of China]] - Anniversary of the Founding of the [[People's Liberation Army]]
68502 *[[Democratic Republic of Congo]] - Parent's Day
68503 *[[Nicaragua]] - [[Fiesta Day]]
68504 *[[Rastafari movement]] - Celebration of the liberation of [[Haile Selassie]] from [[slavery]]
68505 *[[Switzerland]] - [[National Day]]
68506 *[[BahÃĄ'í Faith]] - [[Feast of KamÃĄl]] (Perfection) - First day of the eighth month of the [[BahÃĄ'í Calendar]]
68507 *[[Lughnasadh]] - LÃĄ LÃēnasa, the traditional first day of [[Autumn]] in [[Ireland]].
68508 *[[Lammas]] - [[Neopagan]] festival of [[Lammas]]
68509 *[[Lebanon]] - Army's Day ([[Eid al-Jaysh]])
68510 *[[Yorkshire]], [[United Kingdom]] - [[Yorkshire Day]]
68511 *[[Citizenship Day]] in the [[United States]].
68512
68513 ==External links==
68514 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/1 BBC: On This Day]
68515 * [http://www.nytimes.com/learning/general/onthisday/20050801.html ''The New York Times'': On This Day]
68516
68517 ----
68518
68519 [[July 31]] - [[August 2]] - [[July 1]] - [[September 1]] -- [[historical anniversaries|listing of all days]]
68520
68521 {{months}}
68522
68523 [[af:1 Augustus]]
68524 [[als:1. August]]
68525 [[ar:1 اØēØŗØˇØŗ]]
68526 [[an:1 d'agosto]]
68527 [[ast:1 d'agostu]]
68528 [[bg:1 авĐŗŅƒŅŅ‚]]
68529 [[be:1 ĐļĐŊŅ–ŅžĐŊŅ]]
68530 [[bs:1. avgust]]
68531 [[ca:1 d'agost]]
68532 [[ceb:Agosto 1]]
68533 [[cv:ÇŅƒŅ€ĐģĐ°, 1]]
68534 [[co:1 d'aostu]]
68535 [[cs:1. srpen]]
68536 [[cy:1 Awst]]
68537 [[da:1. august]]
68538 [[de:1. August]]
68539 [[et:1. august]]
68540 [[el:1 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
68541 [[es:1 de agosto]]
68542 [[eo:1-a de aÅ­gusto]]
68543 [[eu:Abuztuaren 1]]
68544 [[fo:1. august]]
68545 [[fr:1er aoÃģt]]
68546 [[fy:1 augustus]]
68547 [[ga:1 LÃēnasa]]
68548 [[gl:1 de agosto]]
68549 [[ko:8ė›” 1ėŧ]]
68550 [[hr:1. kolovoza]]
68551 [[io:1 di agosto]]
68552 [[ilo:Agosto 1]]
68553 [[id:1 Agustus]]
68554 [[ia:1 de augusto]]
68555 [[ie:1 august]]
68556 [[is:1. ÃĄgÃēst]]
68557 [[it:1 agosto]]
68558 [[he:1 באוגוסט]]
68559 [[jv:1 Agustus]]
68560 [[ka:1 აგვისáƒĸო]]
68561 [[csb:1 zÊlnika]]
68562 [[ku:1'ÃĒ gelawÃĒjÃĒ]]
68563 [[la:1 Augusti]]
68564 [[lt:RugpjÅĢčio 1]]
68565 [[lb:1. August]]
68566 [[li:1 augustus]]
68567 [[hu:Augusztus 1]]
68568 [[mk:1 авĐŗŅƒŅŅ‚]]
68569 [[ms:1 Ogos]]
68570 [[nap:1 'e aÚsto]]
68571 [[nl:1 augustus]]
68572 [[ja:8月1æ—Ĩ]]
68573 [[no:1. august]]
68574 [[nn:1. august]]
68575 [[oc:1 d'agost]]
68576 [[pl:1 sierpnia]]
68577 [[pt:1 de Agosto]]
68578 [[ro:1 august]]
68579 [[ru:1 авĐŗŅƒŅŅ‚Đ°]]
68580 [[sco:1 August]]
68581 [[sq:1 Gusht]]
68582 [[scn:1 di austu]]
68583 [[simple:August 1]]
68584 [[sk:1. august]]
68585 [[sl:1. avgust]]
68586 [[sr:1. авĐŗŅƒŅŅ‚]]
68587 [[fi:1. elokuuta]]
68588 [[sv:1 augusti]]
68589 [[tl:Agosto 1]]
68590 [[tt:1. August]]
68591 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 1]]
68592 [[th:1 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
68593 [[vi:1 thÃĄng 8]]
68594 [[tr:1 Ağustos]]
68595 [[uk:1 ŅĐĩŅ€ĐŋĐŊŅ]]
68596 [[wa:1ÃŽ d' awousse]]
68597 [[war:Agosto 1]]
68598 [[zh:8月1æ—Ĩ]]
68599 [[pam:Agostu 1]]</text>
68600 </revision>
68601 </page>
68602 <page>
68603 <title>Astronomical Units</title>
68604 <id>1255</id>
68605 <revision>
68606 <id>15899748</id>
68607 <timestamp>2002-02-25T15:51:15Z</timestamp>
68608 <contributor>
68609 <username>-- April</username>
68610 <id>166</id>
68611 </contributor>
68612 <minor />
68613 <comment>make redirect</comment>
68614 <text xml:space="preserve">#redirect [[Astronomical unit]]</text>
68615 </revision>
68616 </page>
68617 <page>
68618 <title>Antoninus Pius</title>
68619 <id>1256</id>
68620 <revision>
68621 <id>40695888</id>
68622 <timestamp>2006-02-22T10:33:10Z</timestamp>
68623 <contributor>
68624 <username>Panairjdde</username>
68625 <id>2400</id>
68626 </contributor>
68627 <minor />
68628 <text xml:space="preserve">[[Image:Antonius Pius 01.jpg|thumb|right|Emperor Antoninus Pius]]
68629 [[Image:Sesterius-Antoninus Pius-Italia-RIC 0746a.jpg|200px|thumb|right|[[Sestertius]] of Antoninus Pius, with the personification of [[Italia (Roman province)|Italia]] on reverse. Antoninus had been entrusted with the government of this province as [[proconsul]].]]
68630 '''Titus Aurelius Fulvus Boionius Arrius Antoninus Pius''' ([[September 19]], [[86]]&amp;ndash;[[March 7]] [[161]]) was [[Roman Emperors|Roman emperor]] from [[138]] to [[161]]. He was the fourth of the [[Five Good Emperors]] and a member of the [[Aurelii]].
68631
68632 He was the son of [[Titus Aurelius Fulvus]], [[consul]] in [[89]] whose family came from [[Nemausus]] (modern-day [[NÃŽmes]]), and was born near [[Lanuvium]]. After the death of his father, he was brought up under the care of [[Arrius Antoninus]], his maternal grandfather, a man of integrity and culture, and a friend of [[Pliny the Younger]].
68633
68634 Having filled with more than usual success the offices of [[quaestor]] and [[praetor]], he obtained the consulship in [[120]]; he was next appointed by the Emperor [[Hadrian]] as one of the four [[proconsul]]s to administer [[Italia (Roman province)|Italia]], then greatly increased his reputation by his conduct as [[proconsul]] of [[Asia Province|Asia]]. He acquired much favour with the Emperor Hadrian, who adopted him as his son and successor on [[February 25]], 138, after the death of his first adopted son [[Aelius Verus]], on the condition that he himself would adopt Marcus Annius Verus, the son of his wife's brother, and Lucius, son of Aelius Verus, who afterwards became the emperors [[Marcus Aurelius]] and [[Lucius Verus|Lucius Aelius Verus]] (colleague of Marcus Aurelius).
68635
68636 Antoninus in many ways was the ideal of the landed gentleman praised not only by ancient Romans, but also by later scholars of classical history, such as [[Edward Gibbon]] or the author of the article on Antoninus Pius in the ninth edition of the [[1911 EncyclopÃĻdia Britannica|Encyclopedia Britannica]]:
68637
68638 : A few months afterwards, on Hadrian's death, he was enthusiastically welcomed to the throne by the Roman people, who, for once, were not disappointed in their anticipation of a happy reign. For Antoninus came to his new office with simple tastes, kindly disposition, extensive experience, a well-trained intelligence and the sincerest desire for the welfare of his subjects. Instead of plundering to support his prodigality, he emptied his private treasury to assist distressed provinces and cities, and everywhere exercised rigid economy (hence the nickname &amp;kappa;&amp;upsilon;&amp;mu;&amp;iota;&amp;nu;&amp;omicron;&amp;pi;&amp;rho;&amp;iota;&amp;sigma;&amp;tau;&amp;eta;&amp;sigmaf; &quot;cummin-splitter&quot;). Instead of exaggerating into treason whatever was susceptible of unfavorable interpretation, he spurned the very conspiracies that were formed against him into opportunities for demonstrating his clemency. Instead of stirring up persecution against the Christians, he extended to them the strong hand of his protection throughout the empire. Rather than give occasion to that oppression which he regarded as inseparable from an emperor's progress through his dominions, he was content to spend all the years of his reign in Rome, or its neighbourhood.
68639
68640 Of the public transactions of this period we have scant information, but, to judge by what we possess, those twenty-two years were not remarkably eventful in comparison to those before and after his; the surviving evidence is not complete enough to determine whether we should interpret, with older scholars, that he wisely curtailed the activities of the Roman Empire to a careful minimum, or perhaps that he was uninterested in events away from Rome and [[Italy]] and his inaction contributed to the pressing troubles that faced not only Marcus Aurelius but also the emperors of the [[third century]].
68641
68642 [[Image:RomaForoRomanoTempioAntoninoFaustina.JPG|thumb|Temple of Antoninus and [[Faustina the Elder|Faustina]] in the [[Roman forum]] (now the church of [[San Lorenzo in Miranda]]). The emperor and his ''[[Augusta (honorific)|Augusta]]'' were deified after their death by [[Marcus Aurelius]].]]
68643
68644 One of his first acts as Emperor was to persuade the [[Roman Senate |Senate]] to grant divine honours to Hadrian, which they had at first refused; his efforts to persuade the Senate to grant these honours is one of the reasons given for his title of ''Pius'' (dutiful in affection; compare ''[[pietas]]''). Two other reasons for this title are that he would support his aged father-in-law with his hand at Senate meetings, and that he had saved those men that Hadrian, during his period of ill-health, had condemned to death. He built temples, theaters, and mausoleums, promoted the arts and sciences, and bestowed honours and salaries upon the teachers of [[rhetoric]] and [[philosophy]].
68645
68646 His reign was comparatively peaceful; there were several military disturbances throughout the Empire in his time, in [[Mauretania]], [[Iudaea (Roman province)|Iudaea]], and amongst the [[Brigantes]] in [[Roman Britain|Britannia]], but none of them are considered serious. The unrest in Britannia is believed to have led to the construction of the [[Antonine Wall]] from the [[Firth of Forth]] to the [[Firth of Clyde]], although it was soon abandoned.
68647
68648 In his domestic relations Antoninus was not so fortunate. His wife, [[Faustina the Elder]], has almost become a byword for her lack of womanly virtue; but she seems to have kept her hold on his affections to the last. On her death in the third year of his reign, he honoured her memory by the foundation of a [[charity]] for orphan girls, who bore the name of ''Alimentariae Faustinianae'', following the practice of prior emperors in endowing an ''[[alimentaria]]'' to promote the welfare of children and an increased population. He had by her two sons and two daughters; but they all died before his elevation to the throne, except [[Annia Faustina]], who became the wife of Marcus Aurelius.
68649
68650 Antoninus died of fever at [[Lorium]] in [[Etruria]], about twelve miles from Rome, on [[March 7]] 161, giving the keynote to his life in the last word that he uttered when the [[tribune]] of the night-watch came to ask the password &amp;mdash; &quot;aequanimitas&quot;.
68651
68652 The only account of his life handed down to us is that of Julius Capitolinus, one of the ''[[Scriptores Historiae Augustae]]''.
68653
68654 ===Contacts with China===
68655 The [[Hou Hanshu]] (History of the Later Han [[China|Chinese]] dynasty) recounted the first of several [[Roman embassies to China]] sent out by Emperor Antoninus Pius. The mission came from the South, and therefore probably by sea, entering China by the frontier of [[Jinan]] or [[Tonkin]], bringing presents of [[rhinoceros]] horns, ivory, and [[tortoise shell]] which had probably been acquired in [[Southern Asia]].
68656
68657 The emperor was most likely [[Marcus Aurelius]], who was the reigning emperor. Antoninus Pius died in 161, while the convoy arrived in [[166]]. The confusion arises because Marcus Aurelius took as additional names, those of his predecessor as a mark of respect. He is referred to in Chinese history as &quot;An Tun&quot; (= Antoninus), hence the confusion.
68658
68659 The mission reached the Chinese capital of [[Luoyang]] in 166 and was met by [[Emperor Huan of Han China|Emperor Huan]] of the [[Han Dynasty]]. About the same time, and possibly through this embassy, the Chinese acquired a treatise of [[astronomy]] from [[Daqin]] (Rome).
68660
68661 == References ==
68662 * Bossart-Mueller, ''Zur Geschichte des Kaisers A.'' (1868)
68663 * Lacour-Gayet, ''A. le Pieux et son Temps'' (1888)
68664 * Bryant, ''The Reign of Antonine'' (Cambridge Historical Essays, 1895)
68665 * P. B. Watson, ''Marcus Aurelius Antoninus'' (London, 1884), chap. ii.
68666 * {{1911}}
68667
68668 {{Commons|Antoninus Pius}}
68669
68670 {{start box}}
68671 {{succession box|title=[[List of Roman Emperors|Roman Emperor]]|before=[[Hadrian]]|after=[[Marcus Aurelius]] and [[Lucius Verus]]|years=138&amp;ndash;161}}
68672 {{succession box|title=[[Five Good Emperors]]|before=[[Hadrian]]|after=[[Marcus Aurelius]]|years=96&amp;ndash;180}}
68673 {{end box}}
68674
68675 [[Category:86 births]]
68676 [[Category:161 deaths]]
68677 [[Category:Roman emperors]]
68678 [[Category:Nerva-Antonine Dynasty]]
68679 [[Category:Adoptive parents]]
68680
68681 [[bg:АĐŊŅ‚ĐžĐŊиĐŊ Пий]]
68682 [[da:Antoninus Pius]]
68683 [[de:Antoninus Pius]]
68684 [[et:Antoninus Pius]]
68685 [[es:Antonino Pío]]
68686 [[eo:Antonino Pia]]
68687 [[eu:Antonino Pio]]
68688 [[fr:Antonin le Pieux]]
68689 [[ko:ė•ˆí† ë‹ˆëˆ„ėŠ¤ í”ŧėš°ėŠ¤]]
68690 [[hr:Antonin Pio]]
68691 [[it:Antonino Pio]]
68692 [[he:אנטונינוס פיוס]]
68693 [[ka:ანáƒĸონინáƒŖქ პიáƒŖქი]]
68694 [[la:T. Aurelius Fulvius Boionius Arrius Antoninus Pius]]
68695 [[hu:Antoninus Pius]]
68696 [[nl:Antoninus Pius]]
68697 [[ja:ã‚ĸãƒŗトニヌ゚ãƒģピã‚Ļã‚š]]
68698 [[no:Antoninus Pius]]
68699 [[pl:Antoninus Pius]]
68700 [[pt:Antonino Pio]]
68701 [[ro:Antoninus Pius]]
68702 [[ru:АĐŊŅ‚ĐžĐŊиĐŊ Пий]]
68703 [[fi:Antoninus Pius]]
68704 [[sv:Antoninus Pius]]
68705 [[uk:АĐŊŅ‚ĐžĐŊŅ–Đš ПŅ–Đš]]
68706 [[zh:厉æ•ĻåŽÂˇæ¯•å°¤]]</text>
68707 </revision>
68708 </page>
68709 <page>
68710 <title>Antonine Wall</title>
68711 <id>1257</id>
68712 <revision>
68713 <id>40436655</id>
68714 <timestamp>2006-02-20T15:12:47Z</timestamp>
68715 <contributor>
68716 <username>Neddyseagoon</username>
68717 <id>883252</id>
68718 </contributor>
68719 <comment>/* External links */</comment>
68720 <text xml:space="preserve">[[Image:DSCF0062.JPG|thumb|200px|right|The Antonine Wall, looking east, from Barr Hill between Twechar and [[Croy, North Lanarkshire|Croy]]]]
68721
68722 [[Image:DSCF0051.JPG|thumb|200px|right|The Antonine Wall, remains of Roman fortlet, Barr Hill, near Twechar]]
68723
68724 [[Image:Hadrians Wall map.png|thumb|300px|right]]
68725
68726 {{commons|Antonine Wall}}
68727
68728 The '''Antonine Wall''' is a [[rock (geology)|stone]] and [[sod|turf]] [[fortification]], built by the [[Roman Empire|Roman]]s across what is now the [[central belt]] of [[Scotland]].
68729
68730 Construction of the Antonine Wall began in [[142]] CE during the reign of [[Antoninus Pius]], and was completed in [[144]]. The wall stretches 60 [[kilometre]]s (37 [[mile]]s) from [[Old Kirkpatrick, Scotland|Old Kirkpatrick]] in [[West Dunbartonshire]] on the [[Firth of Clyde]] to [[Bo'ness]], [[Falkirk (council area)|Falkirk]], on the [[Firth of Forth]]. The wall was intended to replace [[Hadrian's Wall]] 160 km (100 miles) to the south, as the frontier of ''[[Roman Britain|Britannia]]'', but while the Romans did establish temporary forts and camps north of the wall, they did not conquer the [[Caledonians]], and the Antonine Wall suffered many attacks. The Romans called the land north of the wall ''[[Caledonia]]''.
68731
68732 The Antonine Wall was inferior to Hadrian's Wall in terms of scale and construction, but it was still an impressive achievement, considering that it was completed in only two years, at the northern edge of the Roman [[empire]] in what they perceived as a cold and hostile land. The wall was typically an earth bank, about four metres high, with a wide [[ditch]] on the north side, and a [[Roman road|military way]] or road on the south. The Romans initially planned to build forts every six miles, but this was soon revised to every two miles, resulting in a total of 19 forts along the wall.
68733
68734 The wall was abandoned after only 20 years, when the [[Roman legion]]s withdrew to Hadrian's Wall in AD [[164]]. After a series of attacks in AD [[197]], Emperor [[Septimius Severus]] arrived in Scotland in AD [[208]] to secure the frontier, and repaired parts of the wall. Although this re-occupation only lasted a few years, the wall is sometimes referred to (by later Roman historians) as the '''Severan Wall'''.
68735
68736 Although most of the wall has been destroyed over time, sections of the wall can still be seen in [[Bearsden]], [[Kirkintilloch]], [[Twechar]], [[Croy, North Lanarkshire|Croy]], [[Falkirk, Scotland|Falkirk]] and [[Polmont, Scotland|Polmont]].
68737
68738 ==See also==
68739 * [[History of Scotland]]
68740 * [[Historic Sites in Scotland]]
68741 * [[Roman Britain]]
68742 * [[Trimontium]]
68743 * [[List of walls]].
68744
68745 ==External links==
68746 * http://www.athenapub.com/antwall1.htm
68747 * http://www.athenapub.com/britsite/hillfoot.htm
68748 * http://www.roman-britain.org/frontiers/antonine.htm
68749 * http://www.almac.co.uk/FalkirkTCM/Rome.htm
68750 * http://www.kilsyth.org.uk/
68751
68752
68753 [[Category:Ancient Roman architecture]]
68754 [[Category:Archaeological sites in Scotland]]
68755 [[Category:Fortification]]
68756 [[Category:Nerva-Antonine Dynasty]]
68757 [[Category:Roman military occupation in southern Scotland]]
68758 [[Category:Roman sites in Scotland]]
68759 [[Category:Separation barriers]]
68760 [[Category:Walls]]
68761 [[Category:Roman frontiers]]
68762
68763 {{Scotland-stub}}
68764 {{UK-hist-stub}}
68765
68766 [[cs:Antoninův val]]
68767 [[de:Antoninuswall]]
68768 [[es:Muro de Antonino]]
68769 [[fr:Mur d'Antonin]]
68770 [[no:Den antoninske mur]]
68771 [[fi:Antoninuksen valli]]
68772 [[zh:厉多厁é•ŋ城]]</text>
68773 </revision>
68774 </page>
68775 <page>
68776 <title>August 3</title>
68777 <id>1259</id>
68778 <revision>
68779 <id>41773404</id>
68780 <timestamp>2006-03-01T17:23:35Z</timestamp>
68781 <contributor>
68782 <username>Rklawton</username>
68783 <id>754622</id>
68784 </contributor>
68785 <comment>/* Births */ removed Ram Suri - no matching article</comment>
68786 <text xml:space="preserve">{| style=&quot;float:right;&quot;
68787 |-
68788 |{{AugustCalendar}}
68789 |-
68790 |{{ThisDateInRecentYears|Month=August|Day=3}}
68791 |}
68792 '''[[August 3]]''' is the 215th day of the year in the [[Gregorian Calendar]] (216th in [[leap year]]s), with 150 days remaining.
68793
68794 ==Events==
68795 *[[8]] - Roman general [[Tiberius]] defeats [[Dalmatians]] on the river Bathinus.
68796 * [[435]] - Deposed [[Patriarch of Constantinople]] [[Nestorius]], considered the originator of the [[Christology|Christological]] &quot;[[heresy]]&quot; (at the time) known as [[Nestorianism]], was exiled by [[List of Byzantine Emperors|Byzantine Emperor]] [[Theodosius II]] to a [[monastery]] in [[Egypt]].
68797 *[[1492]] - [[Christopher Columbus]] sets sail from [[Palos de la Frontera]], [[Spain]].
68798 *1492 - The [[Jew]]s of [[Spain]] are expelled by the [[Catholic Monarchs]].
68799 *[[1527]] - First known letter was sent from North America by [[John Rut]] while at [[St. John's, Newfoundland and Labrador|St. John's]], [[Newfoundland]].
68800 *[[1635]] - The third of the [[Tokugawa shogunate|Tokugawa shoguns]], [[Tokugawa Iemitsu|Iemitsu]], establishes the system of alternate attendance by which the feudal [[daimyo|daimyō]] are required to spend one year at [[Edo Castle]] in [[Tokyo]] and one year back home at their feudal manor, while their families remained in [[Tokyo]] as virtual political hostages. (Traditional [[Japanese calendar|Japanese Date]]: June 21, 1635).
68801 *[[1645]] - The [[Battle of NÃļrdlingen (1645)|Second Battle of NÃļrdlingen]] is fought between the forces of [[France]] and the [[Holy Roman Empire]].
68802 *[[1678]] - [[Robert LaSalle]] builds the ''[[Griffon (ship)|Griffon]]'', the first known ship built in America.
68803 *[[1783]] - [[Mount Asama]] erupts in [[Japan]], killing 35,000 people.
68804 *[[1860]] - The [[Second Maori War]] begins in [[New Zealand]].
68805 *[[1900]] - [[Firestone Tire]] &amp; Rubber Company founded.
68806 *[[1914]] - [[World War I|First World War]]: [[Germany]] declares war against [[France]].
68807 *[[1916]] - First World War: The [[Battle of Romani]] is fought between forces of the [[British Empire]] and the [[Ottoman Empire]].
68808 *[[1923]] - [[Calvin Coolidge]] is inaugurated as the 30th [[President of the United States]].
68809 *[[1940]] - [[World War II|Second World War]]: [[Italy]] invades [[British Somaliland]].
68810 *[[1946]] - [[National Basketball Association]] is founded in the [[United States]].
68811 *[[1948]] - [[Whittaker Chambers]] accuses [[Alger Hiss]] of being a [[communist]] and a [[secret agent|spy]] for the [[Soviet Union]].
68812 *[[1958]] - The [[Nuclear energy|nuclear]] [[submarine]] [[USS Nautilus (SSN-571)|USS ''Nautilus'']] travels beneath the [[Arctic Ocean|Arctic]] ice cap.
68813 *[[1960]] - [[Niger]] gains independence from [[France]].
68814 *[[1972]] - [[United States|U.S.]] Senate ratifies the [[Anti-Ballistic Missile Treaty]].
68815 *[[1973]] - [[R&amp;B]] singer [[Stevie Wonder]] releases the classic album ''[[Innervisions]]''.
68816 *[[1975]] - A privately chartered [[Boeing]] 707 impacts the mountainside near [[Agadir]], [[Morocco]] killing 188.
68817 *[[1977]] - [[United States Senate]] Hearing on [[MKULTRA]].
68818 *[[1981]] - In the United States, Professional [[Air traffic controller|Air Traffic Controllers]] Organization walks off the job. All 13,000 members will eventually be fired by President [[Ronald Reagan]].
68819 *1981 - [[Senegal]]ese opposition parties, under the leadership of [[Mamadou Dia]], launches the [[Antiimperialist Action Front-Suxxali Reew Mi]].
68820 *[[1990]] - The highest temperature recorded in the [[United Kingdom|UK]] until [[10 August]], [[2003]] - 37.1°C (98.8°F) at [[Cheltenham]] in [[Gloucestershire]].
68821 *[[1997]] - [[Oued El-Had and Mezouara massacre]] in [[Algeria]]; 40-76 villagers killed.
68822 *[[2004]] - The pedestal of the [[Statue of Liberty]] reopens after being closed since [[September 11, 2001]].
68823 *[[2005]] - [[President]] [[Maaouya Ould Sid'Ahmed Taya]] of [[Mauritania]] is overthrown in a [[military coup]] while attending the [[funeral]] of [[King Fahd]] in [[Saudi Arabia]].
68824
68825 ==Births==
68826 *[[1509]] - [[Étienne Dolet]], French scholar and printer (d. [[1546]])
68827 *[[1604]] - [[John Eliot (missionary)|John Eliot]], English missionary (d. [[1690]])
68828 *[[1692]] - [[John Henley]], English clergyman (d. [[1759]])
68829 *[[1770]] - King [[Friedrich Wilhelm III of Prussia]] (d. [[1840]])
68830 *[[1801]] - [[Joseph Paxton]], English gardener and architect (d. [[1865]])
68831 *[[1808]] - [[Hamilton Fish]], American politician (d. [[1893]])
68832 *[[1811]] - [[Elisha Graves Otis]], American inventor (d. [[1861]])
68833 *[[1817]] - [[Archduke Albert (1817-1895)|Archduke Albert]], Austrian general (d. [[1895]])
68834 *[[1832]] - [[Ivan Zajc]], Croatian composer (d. [[1914]])
68835 *[[1856]] - [[Alfred Deakin]], second [[Prime Minister of Australia]] (d. [[1919]])
68836 *[[1860]] - [[W.K. Dickson]], Scottish inventor (d. [[1935]])
68837 *[[1867]] - [[Stanley Baldwin]], [[Prime Minister of the United Kingdom]] (d. [[1947]])
68838 *[[1872]] - King [[Haakon VII of Norway]] (d. [[1957]])
68839 *[[1887]] - [[Rupert Brooke]], English poet (d. [[1915]])
68840 *[[1894]] - [[Harry Heilmann]], baseball player (d. [[1951]])
68841 *[[1900]] - [[Ernie Pyle]], American war correspondent (d. [[1945]])
68842 *1900 - [[John T. Scopes]], American defendant (d. [[1970]])
68843 *[[1901]] - [[Stefan Wyszynski]], Polish Catholic prelate (d. [[1981]])
68844 *[[1903]] - [[Habib Bourguiba]], Tunisian Politician (d. [[2000]])
68845 *[[1904]] - [[Clifford D. Simak]], American author (d. [[1988]])
68846 *[[1905]] - [[Dolores del Rio]], Mexican-born actress (d. [[1983]])
68847 *1905 - Cardinal [[Franz KÃļnig]], Austrian Catholic archbishop (d. [[2004]])
68848 *[[1916]] - [[JosÊ Manuel Moreno]], Argentine footballer (d. [[1978]])
68849 *[[1918]] - [[Sidney Gottlieb]], American Central Intelligence Agency official (d. [[1999]])
68850 *[[1920]] - [[P.D. James]], English novelist
68851 *[[1923]] - [[Shenouda III of Alexandria]], Pope of the Coptic Orthodox Church
68852 *[[1924]] - [[Leon Uris]], American novelist (d. [[2003]])
68853 *[[1925]] - [[Marv Levy]], American football coach
68854 *[[1926]] - [[Tony Bennett]], American singer
68855 * 1926 - [[Anthony Sampson]], British journalist and biographer (d. [[2004]])
68856 *[[1927]] - [[Gordon Scott]], American actor (Tarzan)
68857 *[[1935]] - [[Georgi Shonin]], cosmonaut (d. [[1997]])
68858 *[[1936]] - [[Edward Petherbridge]], English actor
68859 *[[1937]] - [[Steven Berkoff]], British actor
68860 * 1937 - [[Diane Wakoski]], American poet
68861 *[[1938]] - [[Terry Wogan]], Irish radio and television presenter
68862 *[[1940]] - [[Lance Alworth]], American football player
68863 * 1940 - [[Martin Sheen]], American actor
68864 *[[1941]] - [[Beverly Lee]], American singer ([[Shirelles]])
68865 * 1941 - [[Martha Stewart]], American publisher and media personality
68866 *[[1946]] - [[Jack Straw (politician)|Jack Straw]], British politician
68867 *[[1948]] - [[Jean-Pierre Raffarin]], [[Prime Minister of France]]
68868 *[[1950]] - [[John Landis]], American film director
68869 *[[1951]] - [[Marcel Dionne]], Canadian hockey player
68870 * 1951 - [[Jay North]], American actor
68871 *[[1952]] - [[Osvaldo Ardiles]], Argentine footballer and coach
68872 *[[1959]] - [[Martin Atkins]], English drummer
68873 * 1959 - [[Koichi Tanaka]], Japanese scientist, recipient of the [[Nobel Prize in Chemistry]]
68874 *[[1963]] - [[James Hetfield]], American singer and guitarist ([[Metallica]])
68875 *[[1970]] - [[Gina G]], British singer
68876 *[[1977]] - [[Tom Brady]], American football player
68877 *[[1979]] - [[Evangeline Lilly]], Canadian actress and fashion model
68878
68879 ==Deaths==
68880 *[[1181]] - [[Pope Alexander III]] (c. [[1105]])
68881 *[[1460]] - King [[James II of Scotland]] (b. [[1430]])
68882 *[[1546]] - [[Antonio da Sangallo the Younger]], Italian architect (b. [[1484]])
68883 *1546 - [[Étienne Dolet]], French scholar and printer (b. [[1509]])
68884 *[[1604]] - [[Bernardino de Mendoza]], Spanish military commander
68885 *[[1621]] - [[Guillaume du Vair]], French writer (b. [[1556]])
68886 *[[1667]] - [[Francesco Borromini]], Swiss sculptor and architect (b. [[1599]])
68887 *[[1712]] - [[Joshua Barnes]], English scholar (b. [[1654]])
68888 *[[1720]] - [[Anthonie Heinsius]], Dutch statesman (b. [[1641]])
68889 *[[1721]] - [[Grinling Gibbons]], Dutch-born woodcarver (b. [[1648]])
68890 *[[1761]] - [[Johann Matthias Gesner]], German classical scholar (b. [[1691]])
68891 *[[1773]] - [[Stanisław Konarski]], Polish writer (b. [[1700]])
68892 *[[1780]] - [[Étienne Bonnot de Condillac]], French philosopher (b. [[1715]])
68893 *[[1792]] - [[Richard Arkwright]], English industrialist and inventor (b. [[1732]])
68894 *[[1797]] - [[Jeffrey Amherst]], British military commander (b. [[1717]])
68895 *[[1805]] - [[Christopher Anstey]], English writer (b. [[1724]])
68896 *[[1857]] - [[Eugène Sue]], French novelist (b. [[1804]])
68897 *[[1867]] - [[Philipp August BÃļckh]], German scholar and antiquarian (b. [[1785]])
68898 *[[1877]] - [[William Butler Ogden]], first Mayor of Chicago (b.[[1805]])
68899 *[[1879]] - [[Joseph Severn]], English painter (b. [[1793]])
68900 *[[1916]] - Sir [[Roger Casement]], Irish rebel (hanged) (b. [[1864]])
68901 *[[1924]] - [[Joseph Conrad]], Polish-born writer (b. [[1857]])
68902 *[[1929]] - [[Emil Berliner]], German-born telephone and recording pioneer (b. [[1851]])
68903 *1929 - [[Thorstein Veblen]], American economist (b. [[1857]])
68904 *[[1942]] - [[Richard Willstätter]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1872]])
68905 *[[1954]] - [[Colette]], French writer (b. [[1873]])
68906 *[[1964]] - [[Flannery O'Connor]], American writer (b. [[1925]])
68907 *[[1966]] - [[Lenny Bruce]], American comedian (b. [[1925]])
68908 *[[1973]] - [[Richard Marshall]], U.S. Army general (b. [[1895]])
68909 *[[1977]] - [[Alfred Lunt]], American actor (b. [[1892]])
68910 *1977 - Archbishop [[Makarios]] of Cyprus (b. [[1913]])
68911 *[[1979]] - [[Bertil Ohlin]], Swedish economist, [[Nobel Prize in Economics|Nobel Prize]] laureate (b. [[1899]])
68912 *[[1983]] - [[Carolyn Jones]], American actress (b. [[1929]])
68913 *[[1995]] - [[Ida Lupino]], English actress and director (b. [[1914]])
68914 *1995 - [[Edward Whittemore]], American writer (b. [[1933]])
68915 *[[1998]] - [[Alfred Schnittke]], Russian composer (b. [[1934]])
68916 *[[2001]] - [[Christopher Hewett]], British actor (b. [[1922]])
68917 *[[2002]] - [[Carmen Silvera]], British actress (b. [[1922]])
68918 *[[2003]] - [[Roger Voudouris]], American singer and songwriter (b. [[1954]])
68919 *[[2004]] - [[Henri Cartier-Bresson]], French photographer (b. [[1908]])
68920 *[[2005]] - [[Françoise d'Eaubonne]], French feminist (b. [[1920]])
68921 *2005 - [[Steven Vincent]], American journalist (b. [[1955]])
68922
68923 ==Holidays and observances==
68924
68925 *[[Equatorial Guinea]] - [[Armed Forces Day]]
68926 *[[Niger]] - [[Independence Day]]
68927
68928 == External links ==
68929 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/3 BBC: On This Day]
68930 * [http://www.nytimes.com/learning/general/onthisday/20050803.html ''The New York Times'': On This Day]
68931 ----
68932
68933 [[August 2]] - [[August 4]] - [[July 3]] - [[September 3]] -- [[historical anniversaries|listing of all days]]
68934
68935 {{months}}
68936
68937 [[ilo:Agosto 3]]
68938
68939 [[af:3 Augustus]]
68940 [[ar:3 ØŖØēØŗØˇØŗ]]
68941 [[an:3 d'agosto]]
68942 [[ast:3 d'agostu]]
68943 [[bg:3 авĐŗŅƒŅŅ‚]]
68944 [[be:3 ĐļĐŊŅ–ŅžĐŊŅ]]
68945 [[bs:3. avgust]]
68946 [[ca:3 d'agost]]
68947 [[ceb:Agosto 3]]
68948 [[cv:ÇŅƒŅ€ĐģĐ°, 3]]
68949 [[co:3 d'aostu]]
68950 [[cs:3. srpen]]
68951 [[cy:3 Awst]]
68952 [[da:3. august]]
68953 [[de:3. August]]
68954 [[et:3. august]]
68955 [[el:3 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
68956 [[es:3 de agosto]]
68957 [[eo:3-a de aÅ­gusto]]
68958 [[eu:Abuztuaren 3]]
68959 [[fo:3. august]]
68960 [[fr:3 aoÃģt]]
68961 [[fy:3 augustus]]
68962 [[ga:3 LÃēnasa]]
68963 [[gl:3 de agosto]]
68964 [[ko:8ė›” 3ėŧ]]
68965 [[hr:3. kolovoza]]
68966 [[io:3 di agosto]]
68967 [[id:3 Agustus]]
68968 [[ia:3 de augusto]]
68969 [[ie:3 august]]
68970 [[is:3. ÃĄgÃēst]]
68971 [[it:3 agosto]]
68972 [[he:3 באוגוסט]]
68973 [[jv:3 Agustus]]
68974 [[ka:3 აგვისáƒĸო]]
68975 [[csb:3 zÊlnika]]
68976 [[ku:3'ÃĒ gelawÃĒjÃĒ]]
68977 [[lt:RugpjÅĢčio 3]]
68978 [[lb:3. August]]
68979 [[li:3 augustus]]
68980 [[hu:Augusztus 3]]
68981 [[mk:3 авĐŗŅƒŅŅ‚]]
68982 [[ms:3 Ogos]]
68983 [[nap:3 'e aÚsto]]
68984 [[nl:3 augustus]]
68985 [[ja:8月3æ—Ĩ]]
68986 [[no:3. august]]
68987 [[nn:3. august]]
68988 [[oc:3 d'agost]]
68989 [[pl:3 sierpnia]]
68990 [[pt:3 de Agosto]]
68991 [[ro:3 august]]
68992 [[ru:3 авĐŗŅƒŅŅ‚Đ°]]
68993 [[sco:3 August]]
68994 [[sq:3 Gusht]]
68995 [[scn:3 di austu]]
68996 [[simple:August 3]]
68997 [[sk:3. august]]
68998 [[sl:3. avgust]]
68999 [[sr:3. авĐŗŅƒŅŅ‚]]
69000 [[fi:3. elokuuta]]
69001 [[sv:3 augusti]]
69002 [[tl:Agosto 3]]
69003 [[tt:3. August]]
69004 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 3]]
69005 [[th:3 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
69006 [[vi:3 thÃĄng 8]]
69007 [[tr:3 Ağustos]]
69008 [[uk:3 ŅĐĩŅ€ĐŋĐŊŅ]]
69009 [[wa:3 d' awousse]]
69010 [[war:Agosto 3]]
69011 [[zh:8月3æ—Ĩ]]
69012 [[pam:Agostu 3]]</text>
69013 </revision>
69014 </page>
69015 <page>
69016 <title>Advanced Encryption Standard</title>
69017 <id>1260</id>
69018 <revision>
69019 <id>41635903</id>
69020 <timestamp>2006-02-28T18:12:56Z</timestamp>
69021 <contributor>
69022 <username>Ciphergoth</username>
69023 <id>9493</id>
69024 </contributor>
69025 <comment>express that differently - move AddRoundKey to the front</comment>
69026 <text xml:space="preserve">{{Infobox Block Ciphers|
69027 fullName = AES |
69028 image = AES-SubBytes.png |
69029 caption = The &lt;tt&gt;SubBytes&lt;/tt&gt; step, one of four stages in a round of AES.|
69030 yearPublished = [[1998]] |
69031 derivedFrom = [[Square (cipher)]] |
69032 derivedTo = [[Crypton (cypher)]], [[Anubis (cipher)]], [[GRAND CRU]] |
69033 designers = [[Vincent Rijmen]] and [[Joan Daemen]] |
69034 blockSize = 128 bits [[Advanced_Encryption_Standard#blocksize|note]]|
69035 keySize = 128, 192 or 256 bits [[Advanced_Encryption_Standard#keysize|note]]|
69036 cipherStructure = [[Substitution-permutation network]] |
69037 rounds = 10, 12 and 14 (for the respective key sizes) |
69038 cryptanalysis = A [[related-key attack]] can break up to 9 rounds of 256-bit AES. A [[chosen-plaintext attack]] can break 8 rounds of 192- and 256-bit AES, and 7 rounds of 128-bit AES. (Ferguson et al, 2000). |
69039 |}}
69040 In [[cryptography]], the '''Advanced Encryption Standard''' ('''AES'''), also known as '''Rijndael''', is a [[block cipher]] adopted as an [[encryption]] standard by the [[United States|US]] government. It is expected to be used worldwide and analysed extensively, as was the case with its predecessor, the [[Data Encryption Standard]] (DES). AES was adopted by [[National Institute of Standards and Technology]] (NIST) as US [[Federal Information Processing Standard|FIPS]] PUB 197 in [[November]] [[2001]] after a 5-year standardisation process (see [[Advanced Encryption Standard process]] for more details).
69041
69042 The cipher was developed by two [[Belgium|Belgian]] cryptographers, [[Joan Daemen]] and [[Vincent Rijmen]], and submitted to the AES selection process under the name &quot;Rijndael&quot;, a [[portmanteau]] comprising the names of the inventors. Rijndael can be pronounced &quot;Rhine dahl&quot;, a long &quot;[[i]]&quot; and a silent &quot;[[e]]&quot; ([[International Phonetic Alphabet|IPA]]: {{IPA|[&amp;#633;aindal]}}). In the sound file linked below, it is pronounced {{IPA|[r&amp;#688;aindau]}}.
69043
69044 ==Development==
69045 Rijndael was a refinement of an earlier design by Daemen and Rijmen, [[Square (cipher)|Square]]; Square was a development from [[Shark (cipher)|Shark]].
69046
69047 Unlike its predecessor DES, Rijndael is a [[substitution-permutation network]], not a [[Feistel network]]. AES is fast in both [[computer software|software]] and [[hardware]], is relatively easy to implement, and requires little [[computer memory|memory]]. As a new encryption standard, it is currently being deployed on a large scale.
69048 &lt;br clear=&quot;all&quot;&gt;
69049
69050 ==Description of the cipher==
69051 {| align=&quot;right&quot; style=&quot;margin: 0 0 1em 1em;&quot; width=&quot;325px&quot;
69052 | [[Image:AES-AddRoundKey.png|right|320px|thumbnail|In the &lt;tt&gt;AddRoundKey&lt;/tt&gt; step, each byte of the state is combined with a byte of the round subkey using the [[XOR]] operation (&amp;oplus;).]]
69053 |-
69054 | [[Image:AES-SubBytes.png|right|320px|thumbnail|In the &lt;tt&gt;SubBytes&lt;/tt&gt; step, each byte in the state is replaced with its entry in a fixed 8-bit lookup table, ''S''; ''b&lt;sub&gt;ij&lt;/sub&gt;'' = ''S(a&lt;sub&gt;ij&lt;/sub&gt;)''.]]
69055 |-
69056 | [[Image:AES-ShiftRows.png|right|320px|thumbnail|In the &lt;tt&gt;ShiftRows&lt;/tt&gt; step, bytes in each row of the state are shifted cyclically to the left. The number of places each byte is shifted differs for each row.]]
69057 |-
69058 | [[Image:AES-MixColumns.png|right|320px|thumbnail|In the &lt;tt&gt;MixColumns&lt;/tt&gt; step, each column of the state is multiplied with a fixed polynomial ''c(x)''.]]
69059 |-
69060 |}
69061 Strictly speaking, AES is not precisely Rijndael (although in practice they are used interchangeably) as Rijndael supports a larger range of [[block size (cryptography)|block]] and [[key size]]s; AES has a fixed block size of 128 [[bit]]s and a key size of 128, 192 or 256 bits, whereas Rijndael can be specified with key and block sizes in any multiple of 32 bits, with a minimum of 128 bits and a maximum of 256 bits.
69062
69063 The key is expanded using [[Rijndael key schedule|Rijndael's key schedule]].
69064
69065 Most of AES calculations are done in a special [[Finite field arithmetic|finite field]].
69066
69067 AES operates on a 4&amp;times;4 array of [[byte]]s, termed the ''state'' (versions of Rijndael with a larger block size have additional columns in the state). For encryption, each round of AES (except the last round) consists of four stages:
69068 # &lt;tt&gt;AddRoundKey&lt;/tt&gt; &amp;mdash; each byte of the state is combined with the round key; each round key is derived from the cipher key using a [[key schedule]].
69069 # &lt;tt&gt;SubBytes&lt;/tt&gt; &amp;mdash; a non-linear substitution step where each byte is replaced with another according to a [[Rijndael S-box|lookup table]].
69070 # &lt;tt&gt;ShiftRows&lt;/tt&gt; &amp;mdash; a transposition step where each row of the state is shifted cyclically a certain number of steps.
69071 # &lt;tt&gt;MixColumns&lt;/tt&gt; &amp;mdash; a mixing operation which operates on the columns of the state, combining the four bytes in each column using a linear transformation.
69072 The final round replaces the &lt;tt&gt;MixColumns&lt;/tt&gt; stage with another instance of &lt;tt&gt;AddRoundKey&lt;/tt&gt;.
69073
69074 ===The &lt;tt&gt;AddRoundKey&lt;/tt&gt; step===
69075 In the &lt;tt&gt;AddRoundKey&lt;/tt&gt; step, the subkey is combined with the state. For each round, a subkey is derived from the main [[key (cryptography)|key]] using the [[Rijndael key schedule|key schedule]]; each subkey is the same size as the state. The subkey is added by combining each byte of the state with the corresponding byte of the subkey using bitwise [[XOR]].
69076
69077 ===The &lt;tt&gt;SubBytes&lt;/tt&gt; step===
69078 In the &lt;tt&gt;SubBytes&lt;/tt&gt; step, each byte in the array is updated using an 8-bit [[Rijndael S-box|S-box]]. This operation provides the non-linearity in the [[cipher]]. The S-box used is derived from the [[inverse function]] over '''[[Finite field|GF]]'''(''2&lt;sup&gt;8&lt;/sup&gt;''), known to have good non-linearity properties. To avoid attacks based on simple algebraic properties, the S-box is constructed by combining the inverse function with an invertible [[affine transformation]]. The S-box is also chosen to avoid any fixed points (and so is a [[derangement]]), and also any opposite fixed points.
69079
69080 The S-box is more fully described in the article [[Rijndael S-box]].
69081
69082 ===The &lt;tt&gt;ShiftRows&lt;/tt&gt; step===
69083 The &lt;tt&gt;ShiftRows&lt;/tt&gt; step operates on the rows of the state; it cyclically shifts the bytes in each row by a certain offset. For AES, the first row is left unchanged. Each byte of the second row is shifted one to the left. Similarly, the third and fourth rows are shifted by offsets of two and three respectively. In this way, each column of the output state of the &lt;tt&gt;ShiftRows&lt;/tt&gt; step is composed of bytes from each column of the input state. (Rijndael variants with a larger block size have slightly different offsets).
69084
69085 ===The &lt;tt&gt;MixColumns&lt;/tt&gt; step===
69086 In the &lt;tt&gt;MixColumns&lt;/tt&gt; step, the four bytes of each column of the state are combined using an invertible linear transformation. The &lt;tt&gt;MixColumns&lt;/tt&gt; function takes four bytes as input and outputs four bytes, where each input byte affects all four output bytes. Together with &lt;tt&gt;ShiftRows&lt;/tt&gt;, &lt;tt&gt;MixColumns&lt;/tt&gt; provides [[diffusion (cryptography)|diffusion]] in the cipher. Each column is treated as a polynomial over '''GF'''(''2&lt;sup&gt;8&lt;/sup&gt;'') and is then multiplied modulo &lt;math&gt;x^4+1&lt;/math&gt; with a fixed polynomial &lt;math&gt;c(x) = 3x^3 + x^2 + x + 2&lt;/math&gt;. The &lt;tt&gt;MixColumns&lt;/tt&gt; step can also be viewed as a matrix multiply in [[Finite field arithmetic|Rijndael's finite field]].
69087
69088 This process is described further in the article [[Rijndael mix columns]].
69089
69090 ===Optimization of the cipher===
69091 On systems with 32-bit or larger words, it is possible to speed up execution of this cipher by converting the &lt;tt&gt;SubBytes&lt;/tt&gt;, &lt;tt&gt;ShiftRows&lt;/tt&gt; and &lt;tt&gt;MixColumns&lt;/tt&gt; transformations into tables. One then has four 256-entry 32-bit tables, which utilizes a total of four kilobytes (4096 bytes) of memory--a kilobyte for each table. A round can now be done with 16 table lookups and 12 32-bit exclusive-or operations, followed by four 32-bit exclusive-or operations in the &lt;tt&gt;AddRoundKey&lt;/tt&gt; step.
69092
69093 If the resulting four kilobyte table size is too large for a given target platform, the table lookup operation can be performed with a single 256-entry 32-bit table by the use of circular rotates.
69094
69095 ==Security==
69096 [[As of 2006]], the only successful attacks against AES have been [[side channel attack]]s. The [[National Security Agency]] (NSA) reviewed all the AES finalists, including Rijndael, and stated that all of them were secure enough for [[US Government]] non-classified data. In June 2003, the US Government announced that AES may be used for [[classified information]]:
69097 :&quot;''The design and strength of all key lengths of the AES algorithm (i.e., 128, 192 and 256) are sufficient to protect classified information up to the SECRET level. TOP SECRET information will require use of either the 192 or 256 key lengths. The implementation of AES in products intended to protect national security systems and/or information must be reviewed and certified by NSA prior to their acquisition and use.''&quot; &amp;mdash; [http://www.cnss.gov/Assets/pdf/cnssp_15_fs.pdf]
69098 This marks the first time that the public has had access to a cipher approved by NSA for TOP SECRET information. It is interesting to note that many public products use 128-bit secret keys by default; it is possible that NSA suspects a fundamental weakness in keys this short, or they may simply prefer a safety margin for top secret documents (which may require security decades into the future).
69099
69100 The most common way to attack block ciphers is to try various attacks on versions of the cipher with a reduced number of rounds. AES has 10 rounds for 128-bit keys, 12 rounds for 192-bit keys, and 14 rounds for 256-bit keys. [[As of 2006]], the best known attacks are on 7 rounds for 128-bit keys, 8 rounds for 192-bit keys, and 9 rounds for 256-bit keys (Ferguson et al, 2000 {{ref|improved}}).
69101
69102 Some cryptographers worry about the security of AES. They feel that the margin between the number of rounds specified in the cipher and the best known attacks is too small for comfort. The risk is that some way to improve these attacks might be found and that, if so, the cipher could be broken. In this meaning, a [[cryptanalysis|cryptographic]] &quot;break&quot; is anything faster than an [[brute force attack|exhaustive search]], so an attack against 128-bit key AES requiring 'only' 2&lt;sup&gt;120&lt;/sup&gt; operations would be considered a break even though it would be, now, quite infeasible. In practical application, any break of AES which is only this 'good' would be irrelevant. For the moment, such concerns can be ignored. The largest publicly-known brute-force attack has been against a 64 bit [[RC5]] key by [[distributed.net]] (finishing in 2002; [[Moore's Law]] implies that this is roughly equivalent to an attack on a 66-bit key today).
69103
69104 Another concern is the [[mathematics|mathematical]] structure of AES. Unlike most other block ciphers, AES has a very neat mathematical description [http://www.macfergus.com/pub/rdalgeq.html], [http://www.isg.rhul.ac.uk/~sean/]. This has not yet led to any attacks, but some researchers are worried that future attacks may find a way to exploit this structure.
69105
69106 In [[2002]], a theoretical attack, termed the &quot;[[XSL attack]]&quot;, was announced by [[Nicolas Courtois]] and [[Josef Pieprzyk]], showing a potential weakness in the AES algorithm. Several cryptography experts have found problems in the underlying mathematics of the proposed attack, suggesting that the authors may have made a mistake in their estimates. Whether this line of attack can be made to work against AES remains an open question. For the moment, the XSL attack against AES appears speculative; it is unlikely that anyone could carry out the current attack in practice.
69107
69108 ===Side channel attacks===
69109 Side channel attacks do not attack the underlying cipher, but attack implementations of the cipher on systems which inadvertently leak data.
69110
69111 In April 2005, [[Daniel J. Bernstein|D.J. Bernstein]] announced a [http://cr.yp.to/papers.html#cachetiming cache timing attack] that he used to break a custom server that used [[OpenSSL]]'s AES encryption. The custom server was designed to give out as much timing information as possible, and the attack required over 200 million chosen plaintexts. Some say the attack is not practical against real-world implementations [http://groups.google.com/groups?selm=42620794%40news.cadence.com]; [[Bruce Schneier]] called the research a &quot;nice timing attack.&quot; [http://www.schneier.com/blog/archives/2005/05/aes_timing_atta_1.html]
69112
69113 In October 2005, Adi Shamir and two other researchers presented a paper demonstrating several [http://www.wisdom.weizmann.ac.il/~tromer/papers/cache.pdf cache timing attacks]([[PDF]] file) against AES. One attack was able to obtain an entire AES key after only 800 writes, in 65 milliseconds. These attacks require the attacker to be able to run programs on the same system that is performing AES encryptions.
69114
69115 ==See also==
69116 * [[Advanced Encryption Standard process]]
69117 * [[List of applications that use AES]]
69118
69119 ==External links==
69120 * [http://www.esat.kuleuven.ac.be/~rijmen/rijndael/ The Rijndael Page (Forwards automaticaly to the AES Lounge use old version link to browse)]
69121 * [http://www.iaik.tu-graz.ac.at/research/krypto/AES/old/%7Erijmen/rijndael/ The Rijndael Page (old version)]
69122 * [http://www.iaik.tu-graz.ac.at/research/krypto/AES/ Literature survey on AES]
69123 &lt;!-- Broken link
69124 * [http://rijndael.info/audio/rijndael_pronunciation.wav Recordings of the pronunciation of &quot;Rijndael&quot;] (85 KB [[wav]] file)--&gt;
69125 * [http://csrc.nist.gov/encryption/aes/ The archive of the old official AES website]
69126 * [http://www.csrc.nist.gov/publications/fips/fips197/fips-197.pdf FIPS PUB 197: the official AES standard] ([[Portable_Document_Format|PDF]] file)
69127 &lt;!-- The following is a dead link 2005/05/15
69128 * [http://www.nstissc.gov/Assets/pdf/fact%20sheet.pdf The C.N.S.S. announcement regarding the use of AES for classified data] ([[Portable_Document_Format|PDF]] file)--&gt;
69129 * [http://www.quadibloc.com/crypto/co040401.htm John Savard's description of the AES algorithm]
69130
69131 ===Implementations===
69132 * [http://www.cs.eku.edu/faculty/styer/460/Encrypt/JS-AES.html A Javascript AES calculator showing intermediate values]
69133 * [http://fp.gladman.plus.com/cryptography_technology/rijndael/ Brian Gladman's BSD licensed implementations of AES]
69134 * [http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip Paulo Barreto's public domain C implementation of AES]
69135 * [http://cr.yp.to/mac.html D.J. Bernstein's public-domain implementation of AES]
69136 * [http://www.lysator.liu.se/~nisse/nettle/ The GPL-licensed Nettle library also includes an AES implementation]
69137
69138 ==Notes==
69139 * &lt;div id=blocksize&gt;Block sizes of 128, 160, 192, 224, and 256 bits are supported by The Rijndael algorithm, but only the 128-bit block size is specified in the AES standard.&lt;/div&gt;
69140 * &lt;div id=keysize&gt; Key sizes of 128, 160, 192, 224, and 256 bits are supported by The Rijndael algorithm, but only the 128, 192, and 256 bit key sizes are specified in the AES standard.&lt;/div&gt;
69141
69142 ==References==
69143 * Nicolas Courtois, Josef Pieprzyk, &quot;Cryptanalysis of Block Ciphers with Overdefined Systems of Equations&quot;. pp267&amp;ndash;287, ASIACRYPT 2002.
69144 * Joan Daemen and Vincent Rijmen, &quot;The Design of Rijndael: AES - The Advanced Encryption Standard.&quot; Springer-Verlag, 2002. ISBN 3540425802.
69145 * {{note|improved}} [[Niels Ferguson]], [[John Kelsey]], [[Stefan Lucks]], [[Bruce Schneier]], [[Mike Stay]], [[David Wagner]], and [[Doug Whiting]], ''Improved Cryptanalysis of Rijndael'', [[Fast Software Encryption]], 2000 pp213&amp;ndash;230 [http://www.schneier.com/paper-rijndael.html]
69146
69147 [[Category:Block ciphers]]
69148 [[Category:Type 1 encryption algorithms]]
69149 [[Category:Free ciphers]]
69150
69151 {{Block_ciphers}}
69152
69153 [[da:Advanced Encryption Standard]]
69154 [[de:Advanced Encryption Standard]]
69155 [[es:AES]]
69156 [[fr:Standard de chiffrement avancÊ]]
69157 [[it:Advanced Encryption Standard]]
69158 [[nl:Advanced Encryption Standard]]
69159 [[ja:AESæš—åˇ]]
69160 [[no:Advanced Encryption Standard]]
69161 [[pl:AES]]
69162 [[pt:PadrÃŖo de EncriptaçÃŖo Avançada]]
69163 [[sv:Advanced Encryption Standard]]
69164 [[tr:AES]]</text>
69165 </revision>
69166 </page>
69167 <page>
69168 <title>April 26</title>
69169 <id>1261</id>
69170 <revision>
69171 <id>41491787</id>
69172 <timestamp>2006-02-27T18:55:29Z</timestamp>
69173 <contributor>
69174 <username>PFHLai</username>
69175 <id>63672</id>
69176 </contributor>
69177 <comment>/* Events */ + * [[1805]] - '''[[United States Marines]]''' captured '''[[Derne, Tripoli]]''' under the command of '''[[First Lieutenant Presley N. O'Bannon]]'''. Moved from the SelAnniv template</comment>
69178 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
69179 {| style=&quot;float:right;&quot;
69180 |-
69181 |{{AprilCalendar}}
69182 |-
69183 |{{ThisDateInRecentYears|Month=April|Day=26}}
69184 |}
69185 '''[[April 26]]''' is the 116th day of the year in the [[Gregorian Calendar]] (117th in [[leap year]]s). There are 249 days remaining.
69186 ==Events==
69187 *[[1478]] - The [[Pazzi]] attack [[Lorenzo de' Medici]] and kill his brother [[Giuliano di Piero de' Medici|Giuliano]] during High Mass in the [[Florence]] Cathedral.
69188 *[[1607]] - [[England|English]] colonists of the [[Jamestown settlement]] make landfall at [[Cape Henry]], [[Virginia]].
69189 *[[1802]] - A general amnesty signed by [[Napoleon Bonaparte]] allowed all but about one thousand of the most notorious [[ÊmigrÊ]]s of the [[French Revolution]] to return to [[France]], as part of a reconciliary gesture to make peace with the various factions of the [[Ancien Regime]] that would ultimately consolidate his own rule.
69190 * [[1805]] - [[United States Marines]] captured [[Derne, Tripoli]] under the command of First Lieutenant [[Presley N. O'Bannon]].
69191 *[[1865]] - [[American Civil War]]: [[Confederate States of America|Confederate]] General [[Joseph Johnston]] surrenders his army to General [[William Tecumseh Sherman]] at the [[Bennett Place]] near [[Durham, North Carolina]].
69192 *[[1865]] - Union cavalry troopers corner [[John Wilkes Booth]], [[Abraham Lincoln|President Lincoln]]'s assassin, in a [[Barn (building)|barn]] in [[Virginia]]. Booth is shot dead by cavalryman [[Boston Corbett]].
69193 *[[1925]] - [[Paul von Hindenburg]] defeats [[Wilhelm Marx]] in the second round of the [[German presidential election, 1925|German presidential election]] to become the first directly elected [[Reichspräsident]], the [[head of state]] of the [[Weimar Republic]].
69194 *[[1933]] - The [[Gestapo]], the official [[secret police|secret police force]] of [[Nazi Germany]], is established.
69195 *[[1937]] - [[Spanish Civil War]]: [[Guernica]], [[Spain]] is bombed by [[Germany|German]] [[Luftwaffe]].
69196 *[[1942]] - The worst-ever mining accident in history kills 1,549 [[miner]]s in an [[explosion]] at the [[Honkeiko Colliery]], [[Manchuria]].
69197 *[[1946]] - [[Father Divine]], a controversial religious leader who claims to be [[God]], marries the much-younger [[Edna Rose Ritchings]], a celebrated anniversary in the [[International Peace Mission movement]].
69198 *[[1954]] - The [[Geneva Conference (1954)|Geneva Conference]], an effort to restore peace in [[Indochina]] and [[Korea]], begins.
69199 *[[1962]] - [[NASA]]'s [[Ranger 4]] spacecraft crashes into the [[Moon]].
69200 *[[1964]] - [[Tanganyika]] and [[Zanzibar]] merge to form [[Tanzania]].
69201 *[[1986]] - In [[Ukraine]], a nuclear reactor at the [[Chernobyl]] [[nuclear plant]] [[Chernobyl accident|explodes]], creating the world's worst [[nuclear disaster]].
69202 *[[1991]] - Seventy tornadoes break out in the central [[United States]]. Before its end, [[Andover, Kansas]], would record the year's only [[Fujita scale|F5]] tornado (see [[Andover, Kansas Tornado Outbreak]]).
69203 *[[1994]] - [[South Africa]] holds its first multiracial elections.
69204 *[[1994]] - A [[China Airlines]] [[Airbus A-300]]-600R crashes at [[Nagoya Airport]], [[Japan]] killing 264.
69205 *[[2002]] - 19-year-old Robert Steinhäuser [[Erfurt_massacre|shoots and kills 17 people]] at his school in Erfurt, [[Germany]].
69206 *[[2005]] - Under international pressure, [[Syria]] withdraws the last of its 14,000 troop military garrison in [[Lebanon]], ending its 29-year military domination of that country.
69207 *[[2005]] - [[Setanta Sports]] launches a US television channel on [[DirecTV]].
69208
69209 ==Births==
69210 *[[121]] - [[Marcus Aurelius]], [[Roman Emperor]] (d. [[180]])
69211 *[[1538]] - [[Gian Paolo Lomazzo]], Italian painter (d. [[1600]])
69212 *[[1573]] - [[Marie de' Medici]], queen of [[Henry IV of France]] (d. [[1642]])
69213 *[[1564]] (baptized) - [[William Shakespeare]], English writer (d. [[1616]])
69214 *[[1648]] - King [[Peter II of Portugal]] (d. [[1706]])
69215 *[[1710]] - [[Thomas Reid]], Scottish philosopher (d. [[1796]])
69216 *[[1711]] - [[David Hume]], Scottish philosopher and historian (d. [[1776]])
69217 *[[1718]] - [[Esek Hopkins]], American Revolutionary War admiral (d. [[1802]])
69218 *[[1765]] - [[Emma, Lady Hamilton]], English mistress of [[Horatio Nelson]] (d. [[1815]])
69219 *[[1774]] - [[Christian Leopold von Buch]], German geologist (d. [[1853]])
69220 *[[1785]] - [[John James Audubon]], French-American naturalist and illustrator (d. [[1851]])
69221 *[[1787]] - [[Ludwig Uhland]], German poet (d. [[1862]])
69222 *[[1798]] - [[James Beckwourth]], American explorer (d. [[1867]])
69223 *1798 - [[Eugène Delacroix]], French painter (d. [[1863]])
69224 *[[1812]] - [[Alfred Krupp]], German industrialist (d. [[1887]])
69225 *[[1822]] - [[Frederick Law Olmsted]], American landscape architect (d. [[1903]])
69226 *[[1826]] - [[George Hull Ward]], American general (d. [[1863]])
69227 *[[1826]] - [[Ambrose R. Wright]], American Civil War General (d. [[1872]]
69228 *[[1879]] - [[Owen Willans Richardson]], British physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1959]])
69229 *[[1886]] - [[Ma Rainey]], American singer (d. [[1939]])
69230 *[[1888]] - [[Anita Loos]], American writer (d. [[1981]])
69231 *[[1889]] - [[Ludwig Wittgenstein]], Austrian-born philosopher (d. [[1951]])
69232 *[[1894]] - [[Rudolf Hess]], Nazi official (d. [[1987]])
69233 *[[1896]] - [[Ernst Udet]], German World War II pilot (d. [[1941]])
69234 *[[1897]] - [[Eddie Eagan]], American sportsman (d. [[1967]])
69235 *1897 - [[Douglas Sirk]], German-born film director (d. [[1987]])
69236 *[[1898]] - [[Vicente Aleixandre]], Spanish writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1984]])
69237 *1898 - [[John Grierson]], Scottish filmmaker (d. [[1972]])
69238 *[[1900]] - [[Charles Richter]], American geophysicist and inventor (d. [[1985]])
69239 *[[1911]] - [[Marianne Hoppe]], German actress (d. [[2002]])
69240 *[[1912]] - [[A. E. van Vogt]], Canadian writer (d. [[2000]])
69241 *[[1914]] - [[Bernard Malamud]], American author (d. [[1986]])
69242 *1914 - [[James W. Rouse]], American real estate investor, activist, and philanthropist (d. [[1996]])
69243 *[[1916]] - [[Morris West]], Australian writer (d. [[1999]])
69244 *[[1917]] - [[I.M. Pei]], Chinese-born architect
69245 *[[1918]] - [[Fanny Blankers-Koen]], Dutch athlete (d. [[2004]])
69246 *1918 - [[Stafford Repp]] American actor (d. [[1974]])
69247 *[[1925]] - [[Jørgen Ingmann]], Danish musician (d. [[1990]])
69248 *[[1926]] - [[Michael Mathias Prechtl]], German illustrator (d. [[2003]])
69249 *[[1932]] - [[Michael Smith (chemist)|Michael Smith]], English-born chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[2000]])
69250 *[[1933]] - [[Carol Burnett]], American singer, actress, and comedian
69251 *1933 - [[Arno Allan Penzias]], German-born physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate
69252 *[[1934]] - [[Alan Arkin]], American actor
69253 *[[1936]] - [[Lane Smith]], American actor
69254 *[[1938]] - [[Duane Eddy]], American musician
69255 *[[1940]] - [[Giorgio Moroder]], German composer
69256 *[[1942]] - [[Claudine Auger]], French actress
69257 *1942 - [[Michael Kergin]], Canadian diplomat
69258 *1942 - [[Bobby Rydell]], American singer
69259 *[[1943]] - [[Gary Wright]], American singer
69260 *1943 - [[Peter Zumthor]], Swiss architect
69261 *[[1946]] - [[Vladimir Zhirinovsky]], Russian politician
69262 *[[1949]] - [[Carlos Bianchi]], Argetinian football coach and player
69263 *[[1956]] - [[Koo Stark]], American actress
69264 *[[1958]] - [[Jeffrey Guterman]], American mental health counselor
69265 *[[1960]] - [[Roger Andrew Taylor|Roger Taylor]], English musician ([[Duran Duran]])
69266 *[[1961]] - [[Joan Chen]], Chinese-born actress
69267 *[[1963]] - [[Jet Li]], Chinese martial artist and actor
69268 *[[1965]] - [[Kevin James]], American comedian and actor
69269 *[[1967]] - [[Glen Jacobs]], American professional wrestler
69270 *[[1970]] - [[Tionne Watkins]], American singer ([[TLC]])
69271 *[[1973]] - [[Chris Perry (footballer)|Chris Perry]], English footballer
69272 *[[1975]] - [[Joey Jordison]], American musician ([[Slipknot (band)|Slipknot]])
69273 *[[1976]] - [[Jose Pasillas]], American musician ([[Incubus (band)|Incubus]])
69274 *[[1977]] - [[Tom Welling]], American actor
69275 *[[1980]] - [[Jordana Brewster]], American actress
69276 *[[1982]] - [[Joanne Gobure]], Nauruan poet
69277 *[[1983]] - [[Jessica Lynch]], American P.O.W. captured and rescued in Iraq in 2003
69278 *[[1984]] - [[Mija Martina]], Bosnian singer
69279
69280 ==Deaths==
69281 *[[1192]] - [[Emperor Go-Shirakawa]] of Japan (b. [[1127]])
69282 *[[1444]] - [[Robert Campin]], Flemish painter (b. [[1378]])
69283 *[[1478]] - [[Giuliano di Piero de' Medici]], ruler of Florence (assassinated) (b. [[1453]])
69284 *[[1489]] - [[Ashikaga Yoshihisa]], Japanese shogun (b. [[1465]])
69285 *[[1716]] - [[John Somers, 1st Baron Somers]], Lord Chancellor of England (b. [[1651]])
69286 *[[1784]] - [[Nano Nagle]], Irish convent founder (b. [[1718]])
69287 *[[1789]] - Count [[Petr Ivanovich Panin]], Russian soldier (b. [[1721]])
69288 *[[1865]] - [[John Wilkes Booth]], American actor and assassin (shot) (b. [[1838]])
69289 *[[1892]] - Sir [[Provo Wallis]], British Admiral and naval hero (b. [[1791]])
69290 *[[1910]] - [[Bjørnstjerne Bjørnson]], Norwegian author, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1832]])
69291 *[[1920]] - [[Srinivasa Ramanujan]], Indian mathematician (b. [[1887]])
69292 *[[1932]] - [[Hart Crane]], American poet (suicide) (b. [[1899]])
69293 *1932 - [[William Lockwood]], English cricketer (b. [[1868]])
69294 *[[1938]] - [[Edmund Husserl]], Austrian philosopher (b. [[1859]])
69295 *[[1940]] - [[Carl Bosch]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b.g [[1874]])
69296 *[[1951]] - [[Arnold Sommerfeld]], German physicist (b. [[1868]])
69297 *[[1956]] - [[Edward Arnold (actor)|Edward Arnold]], American actor (b. [[1890]])
69298 *[[1964]] - [[E. J. Pratt]], Canadian poet born Newfoundland (b. [[1882]])
69299 *[[1969]] - [[Morihei Ueshiba]], Japanese martial artist (b. [[1883]])
69300 *[[1970]] - [[Gypsy Rose Lee]], American actress (b. [[1911]])
69301 *[[1973]] - [[Irene Ryan]], American actress (b. [[1902]])
69302 *[[1976]] - [[Sid James]], British comedian (b. [[1913]])
69303 *[[1981]] - [[Jim Davis (actor)|Jim Davis]], American actor (b. [[1909]])
69304 *[[1984]] - [[Count Basie]], American musician and composer (b. [[1904]])
69305 *[[1986]] - [[Broderick Crawford]], American actor (stroke) (b. [[1911]])
69306 *1986 - [[Dechko Uzunov]], Bulgarian painter (b. [[1899]])
69307 *[[1988]] - [[James McCracken]], American tenor (b. [[1926]])
69308 *[[1989]] - [[Lucille Ball]], American actress and comedian (b. [[1911]])
69309 *[[1991]] - [[Carmine Coppola]], American composer and conductor (b. [[1910]])
69310 *1991 - [[Emily McLaughlin]], American actress (b. [[1930]])
69311 *[[1996]] - [[Stirling Silliphant]], American writer and producer (b. [[1918]])
69312 *[[1999]] - [[Jill Dando]], British television presenter (b. [[1961]])
69313 *[[2002]] - [[Lisa Lopes]], American singer (b. [[1971]])
69314 *[[2003]] - [[Rosemary Brown (politician)|Rosemary Brown]], Canadian politician (b. [[1930]])
69315 *2003 - [[Edward Max Nicholson|Max Nicholson]], Irish environmentalist (b. [[1904]])
69316 *2003 - [[Peter Stone]], American writer (b. [[1930]])
69317 *[[2004]] - [[Hubert Selby Jr.]], American author (b. [[1928]])
69318 *[[2005]] - [[Mason Adams]], American actor (b. [[1919]])
69319 *2005 - [[Blade Icewood]], American rapper (b. [[1977]])
69320 *2005 - [[Maria Schell]], Austrian-born actress (b. [[1926]])
69321
69322 ==Holidays and observances==
69323 * [[Feast day]] of the following [[saint]]s in the [[Roman Catholic Church]]:
69324 **[[Saint Alda]] (d. 1309)
69325 **[[Richarius]] or Riquier (d. 643)
69326 **[[Radbertus|Paschasius]] (d. 865)
69327 **Saint Cletus ([[Pope Anacletus]]) and [[Marcellinus]] ([[Pope]]s and [[martyr]]s)
69328 **[[Lucidius]] (4th century)
69329 **[[Trudpert]] ([[Ireland|Irish]] [[monk]] martyred in [[Germany]] in [[607]]).
69330 * [[Tanzania]] - [[Union Day]]
69331 * [[Shi'a Islam]] - [[Mawlid]], [[Muhammad]]'s [[birthday]] ([[2005]])
69332 * [[Florida]] and [[Georgia (U.S. state)|Georgia, USA]] - [[Confederate Memorial Day]]
69333 * [[Intellectual property]] - [[World Intellectual Property Day]] (since [[2001]])
69334
69335 ==External links==
69336 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/26 BBC: On This Day]
69337
69338
69339 ==Other Facts==
69340
69341 This date is reffered to in the [[Alec Empire]] song &quot;[[2641998]]&quot; (26/4/1998)
69342 ----
69343
69344 [[April 25]] - [[April 27]] - [[March 26]] - [[May 26]] &amp;ndash; [[historical anniversaries|listing of all days]]
69345
69346 {{months}}
69347
69348 [[ceb:Abril 26]]
69349 [[nap:26 'e abbrile]]
69350 [[war:Abril 26]]
69351 [[pam:Abril 26]]
69352
69353 [[af:26 April]]
69354 [[ar:26 ØŖØ¨ØąŲŠŲ„]]
69355 [[an:26 d'abril]]
69356 [[ast:26 d'abril]]
69357 [[bg:26 Đ°ĐŋŅ€Đ¸Đģ]]
69358 [[be:26 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
69359 [[bs:26. april]]
69360 [[ca:26 d'abril]]
69361 [[cv:АĐēĐ°, 26]]
69362 [[co:26 d'aprile]]
69363 [[cs:26. duben]]
69364 [[cy:26 Ebrill]]
69365 [[da:26. april]]
69366 [[de:26. April]]
69367 [[et:26. aprill]]
69368 [[el:26 ΑĪ€ĪÎšÎģίÎŋĪ…]]
69369 [[es:26 de abril]]
69370 [[eo:26-a de aprilo]]
69371 [[eu:Apirilaren 26]]
69372 [[fo:26. apríl]]
69373 [[fr:26 avril]]
69374 [[fy:26 april]]
69375 [[ga:26 AibreÃĄn]]
69376 [[gl:26 de abril]]
69377 [[ko:4ė›” 26ėŧ]]
69378 [[hr:26. travnja]]
69379 [[io:26 di aprilo]]
69380 [[id:26 April]]
69381 [[ia:26 de april]]
69382 [[ie:26 april]]
69383 [[is:26. apríl]]
69384 [[it:26 aprile]]
69385 [[he:26 באפריל]]
69386 [[jv:26 April]]
69387 [[ka:26 აპრილი]]
69388 [[csb:26 łÅŧÃĢkwiôta]]
69389 [[ku:26'ÃĒ avrÃĒlÃĒ]]
69390 [[lt:BalandÅžio 26]]
69391 [[lb:26. AbrÃĢll]]
69392 [[li:26 april]]
69393 [[hu:Április 26]]
69394 [[mk:26 Đ°ĐŋŅ€Đ¸Đģ]]
69395 [[ms:26 April]]
69396 [[nl:26 april]]
69397 [[ja:4月26æ—Ĩ]]
69398 [[no:26. april]]
69399 [[nn:26. april]]
69400 [[oc:26 d'abril]]
69401 [[pl:26 kwietnia]]
69402 [[pt:26 de Abril]]
69403 [[ro:26 aprilie]]
69404 [[ru:26 Đ°ĐŋŅ€ĐĩĐģŅ]]
69405 [[sco:26 Aprile]]
69406 [[sq:26 Prill]]
69407 [[scn:26 di aprili]]
69408 [[simple:April 26]]
69409 [[sk:26. apríl]]
69410 [[sl:26. april]]
69411 [[sr:26. Đ°ĐŋŅ€Đ¸Đģ]]
69412 [[fi:26. huhtikuuta]]
69413 [[sv:26 april]]
69414 [[tl:Abril 26]]
69415 [[tt:26. Äpril]]
69416 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 26]]
69417 [[th:26 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
69418 [[vi:26 thÃĄng 4]]
69419 [[tr:26 Nisan]]
69420 [[uk:26 ĐēвŅ–Ņ‚ĐŊŅ]]
69421 [[ur:26 اŲžØąÛŒŲ„]]
69422 [[wa:26 d' avri]]
69423 [[zh:4月26æ—Ĩ]]</text>
69424 </revision>
69425 </page>
69426 <page>
69427 <title>Argot</title>
69428 <id>1262</id>
69429 <revision>
69430 <id>42089985</id>
69431 <timestamp>2006-03-03T19:34:55Z</timestamp>
69432 <contributor>
69433 <username>Polylerus</username>
69434 <id>111744</id>
69435 </contributor>
69436 <minor />
69437 <text xml:space="preserve">'''Argot''' is primarily slang used by various groups, including but not limited to thieves and other criminals, to prevent outsiders from understanding their conversations. ''Argot'' is [[French language|French]] for [[slang]]. See also [[Cant (language)]] and [[cryptolect]].
69438
69439 ==See also==
69440 *[[Barallete]]
69441 *[[Bron (language)|Bron]]
69442 *[[Broun (language)|Broun]]
69443 *[[CalÃŗ]]
69444 *[[Cant (language)|Cant]]
69445 *[[Fala dos arxinas]] ([[Verbo dos arginas]])
69446 *[[Gacería]]
69447 *[[Gail language|Gail]]
69448 *[[Klezmer-loshn]]
69449 *[[Language game]]
69450 *[[Langue verte]]
69451 *[[Louchebem]]
69452 *[[Pig Latin]]
69453 *[[Polari]]
69454 *[[Rotwelsch]]
69455 *[[Šatrovački]]
69456 *[[slang]]
69457 *[[Variety (linguistics)]]
69458 *[[Verlan]]
69459 *[[Xíriga]]
69460
69461 [[Category:Cant languages]]
69462 [[Category:Folklore]]
69463
69464 [[bg:ĐĸĐ°ĐĩĐŊ ĐŗОвОŅ€]]
69465 [[da:Argot]]
69466 [[de:Argot]]
69467 [[es:Germanía]]
69468 [[fr:Argot]]
69469 [[ja:æĨ­į•Œį”¨čĒž]]
69470 [[ru:АŅ€ĐŗĐž]]
69471 [[sk:Argot]]
69472 [[sv:Argot]]</text>
69473 </revision>
69474 </page>
69475 <page>
69476 <title>Anisotropy</title>
69477 <id>1264</id>
69478 <revision>
69479 <id>41768292</id>
69480 <timestamp>2006-03-01T16:38:10Z</timestamp>
69481 <contributor>
69482 <ip>81.168.72.184</ip>
69483 </contributor>
69484 <comment>/* External links */</comment>
69485 <text xml:space="preserve">{{wiktionarypar|anisotropy}}
69486 [[image:WMAP.jpg|thumb|300px|[[WMAP]] image of the anisotropic background cosmic radiation]]
69487 '''Anisotropy''' (the opposite of [[isotropy]]) is the property of being directionally dependent.
69488
69489 In the field of [[computer graphics]], an anisotropic surface will change in appearance as it is rotated about its geometric [[surface normal|normal]], as is the case with [[velvet]]. Anisotropic scaling occurs when something is scaled by different amounts in different directions. An example is down-scaling a 64&amp;times;64-pixel [[texture]] to cover a 12&amp;times;34-pixel [[rectangle]]; this is [[anisotropic filtering]].
69490
69491 An anisotropic [[filter]], on the other hand, is a filter with increasingly smaller [[interstitial]] spaces in the direction of filtration so that the [[proximal]] [[region]]s filter
69492 out larger particles and [[distal]] regions increasingly remove smaller particles, resulting in greater flow-through and more efficient filtration.
69493
69494 [[Cosmologists]] use the term to describe the fluctuations in the [[background radiation]] left over after the [[big bang]]. The term refers to the difference in the temperature of the [[cosmic microwave background radiation]] with direction.
69495
69496 An anisotropic liquid is one which has the fluidity of a normal liquid, but, unlike water or [[chloroform]], which contain no structural ordering of the molecules, they have an average structural order relative to each other along their molecular axis. [[Liquid crystals]] are examples of anisotropic liquids.
69497
69498 Some materials [[heat conduction|conduct heat]] in a way that is isotropic, that is independent of spatial orientation around the heat source. It is more common for heat conduction to be anisotropic, which implies that detailed geometric modeling of typically diverse materials being thermally managed is required. The materials used to transfer and reject heat from the heat source in [[electronics]] are often anisotropic.
69499
69500 [[Geological]] formations where distinct layers of sedimentary material are disposited can exhibit electrical anisotropy. That is electrical [[conductivity]] in one direction e.g. parallel to a layer, is different to that in another e.g. perpendicular to a layer. This property is used in the gas and [[oil exploration]] industry to identify hydrocarbon-bearing sands in sequences of [[sand]] and [[shale]]. Sand bearing [[hydrocarbon]] assets have high resistivity (relatively low conductivity) whereas shales are much more conductive. [[Formation evaluation]] instruments measure this conductivity and [[resistivity]] and the results are used to help best site oil and gas wells.
69501
69502 Many [[crystal]]s are anisotropic to [[light]], and exhibit properties such as [[birefringence]]. [[Crystal optics]] describes light propagation in these media.
69503
69504 == External links ==
69505 *[http://baker-atlas.bakerhughesdirect.com/oil-and-gas-exploration/ Baker Atlas - Formation Evaluation]
69506
69507 *[http://baker-atlas.bakerhughesdirect.com/anisotropy-and-resistivity-measurements/ Baker Atlas - Anisotropy and Resistivity Measurements]
69508
69509 [[Category:Anisotropy| ]]
69510
69511 [[ca:Anisotropia]]
69512 [[de:Anisotropie]]
69513 [[fr:Anisotrope]]
69514 [[it:Anisotropia]]
69515 [[pl:Anizotropia]]
69516 [[ru:АĐŊиСОŅ‚Ņ€ĐžĐŋиŅ]]
69517 [[sk:Anizotropia]]
69518 [[sv:Anisotrop]]</text>
69519 </revision>
69520 </page>
69521 <page>
69522 <title>Alpha rays</title>
69523 <id>1265</id>
69524 <revision>
69525 <id>15899757</id>
69526 <timestamp>2002-02-25T15:51:15Z</timestamp>
69527 <contributor>
69528 <username>Trelvis</username>
69529 <id>15</id>
69530 </contributor>
69531 <comment>redirect to full article </comment>
69532 <text xml:space="preserve">#REDIRECT [[Alpha particle]]</text>
69533 </revision>
69534 </page>
69535 <page>
69536 <title>Alpha particles</title>
69537 <id>1266</id>
69538 <revision>
69539 <id>15899758</id>
69540 <timestamp>2002-02-25T15:51:15Z</timestamp>
69541 <contributor>
69542 <username>Trelvis</username>
69543 <id>15</id>
69544 </contributor>
69545 <comment>redirect to full article </comment>
69546 <text xml:space="preserve">#REDIRECT [[Alpha particle]]
69547 </text>
69548 </revision>
69549 </page>
69550 <page>
69551 <title>Alpha decay</title>
69552 <id>1267</id>
69553 <revision>
69554 <id>41615194</id>
69555 <timestamp>2006-02-28T15:06:54Z</timestamp>
69556 <contributor>
69557 <username>Racoontje</username>
69558 <id>407719</id>
69559 </contributor>
69560 <comment>An alpha particle is the same thing as a helium *nucleus*, not a helium *atom*</comment>
69561 <text xml:space="preserve">{{Nuclear_processes}}
69562 '''Alpha decay''' is a form of [[radioactivity|radioactive]] decay in which an [[atomic nucleus]] ejects an [[alpha particle]] through the electromagnetic force and transforms into a nucleus with [[atomic weight|mass number]] 4 less and [[atomic number]] 2 less.
69563 For example:
69564 :&lt;math&gt;
69565 {}^2{}^{38}_{92}\hbox{U}\;\to\;{}^2{}^{34}_{90}\hbox{Th}\;+\;{}^4_2\hbox{He}^{2+},
69566 &lt;/math&gt;
69567 although this is usually written as:
69568 :&lt;math&gt;
69569 {}^{238}\hbox{U}\;\to\;^{234}\hbox{Th}\;+\;\alpha.
69570 &lt;/math&gt;
69571 Note that an [[alpha particle]] is a [[helium]] nucleus, and that both mass number and atomic number are conserved.
69572 Alpha decay can essentially be thought of as [[nuclear fission]] where the parent nucleus splits into two daughter nuclei. Alpha decay is fundamentally a [[quantum tunneling]] process. Unlike [[beta decay]], alpha decay is governed by the [[strong nuclear force]].
69573
69574 Alpha particles with their typical kinetic energy of 5 MeV (that is ≈0.13% of their total energy, i.e. 110 TJ/kg), have a speed of 15,000 km/s.
69575
69576 Because of alpha decay, virtually all of the [[helium]] produced in the [[United States]] and elsewhere comes from trapped underground deposits associated with minerals containing [[uranium]] or [[thorium]], and brought to the surface as a by-product of [[natural gas]] production.
69577
69578
69579 [[Alpha particles]] emitted by radioactive nuclei are among the most hazardous forms of [[ionizing radiation|radiation]], if these nuclei are incorporated within a human body. As any heavy charged particle, alpha particles lost their energy in very short distance in dense media, causing significant damage to surrounding biomolecules. On the other hand, the external alpha irradiation cannot cause any damages because alphas are completely absorbed by a very thin ([[micrometer]]s) dead layer of [[skin]] as well as by few centimeters of air. However, if a substance radiating alpha particles is injected, ingested or inhaled by an organism it may become a risk, potentially inflicting very serious damage to the [[organism]]s' [[genetics|genetic]] makeup.
69580
69581 &lt;!--Interwiki--&gt;
69582 &lt;!--Categories--&gt;
69583 [[Category:Radioactivity]]
69584
69585 [[de:Alphazerfall]]
69586 [[fr:RadioactivitÊ Îą]]
69587 [[ko:ė•ŒíŒŒ ëļ•ę´´]]
69588 [[is:Alfasundrun]]
69589 [[it:Decadimento alfa]]
69590 [[he:קרינ×Ē אלפא]]
69591 [[hu:Alfa-rÊszecske]]
69592 [[ja:ã‚ĸãƒĢãƒ•ã‚Ąå´ŠåŖŠ]]
69593 [[pl:Rozpad alfa]]
69594 [[ru:АĐģŅŒŅ„Đ°-Ņ€Đ°ŅĐŋĐ°Đ´]]
69595 [[sl:Razpad alfa]]
69596 [[sv:AlfasÃļnderfall]]
69597 [[zh:Î‘čĄ°å˜]]</text>
69598 </revision>
69599 </page>
69600 <page>
69601 <title>AI</title>
69602 <id>1268</id>
69603 <revision>
69604 <id>25762433</id>
69605 <timestamp>2005-10-17T19:36:09Z</timestamp>
69606 <contributor>
69607 <username>BrokenSegue</username>
69608 <id>101451</id>
69609 </contributor>
69610 <comment>Artificial intelligence is probably a better place to redirect to</comment>
69611 <text xml:space="preserve">#REDIRECT [[Artificial intelligence]] {{R from abbreviation}}</text>
69612 </revision>
69613 </page>
69614 <page>
69615 <title>Extreme poverty</title>
69616 <id>1270</id>
69617 <revision>
69618 <id>40129712</id>
69619 <timestamp>2006-02-18T09:58:20Z</timestamp>
69620 <contributor>
69621 <username>Cantus</username>
69622 <id>46083</id>
69623 </contributor>
69624 <comment>/* See also */</comment>
69625 <text xml:space="preserve">'''Extreme poverty''' is the most severe state of [[poverty]], where people have minimal or very limited access to basic necessities, such as [[food]], [[clothing]], [[shelter]], [[education]] and [[health care]]. The [[World Bank Group|World Bank]] defines extreme poverty as living on US $1 or less per day, and estimates that 1.1 billion people currently live under these conditions. Eradiction of extreme poverty and [[hunger]] by [[2015]] is a [[Millennium Development Goals|Millennium Development Goal]].
69626
69627 Extreme poverty is most common in [[Sub-Saharan Africa]].
69628
69629 ==See also==
69630 *[[List of countries by percentage of population living in poverty]]
69631 *[[Income inequality metrics]]
69632 *[[Make Poverty History]]
69633 *[[Poverty line]]
69634 *[[Poverty reduction]]
69635
69636 ==References==
69637 *Sachs, Jeffrey (2005). ''The End of Poverty: Economic Possibilities for Our Time'' Penguin Press Hc ISBN 1594200459
69638 {{expand list}}
69639
69640 ==External links==
69641 *[http://topics.developmentgateway.org/poverty/rc/BrowseContent.do~source=RCContentUser~folderId=3330 Poverty Indicators, Statistics &amp; Measurement]
69642 *[http://www.census.gov/hhes/poverty/povmeas/papers/elastap4.html Is There Such a Thing as an Absolute Poverty Line Over Time?]
69643 * [http://aspe.hhs.gov/poverty/papers/relabs.htm New Light on the Behavior of Poverty Lines Over Time]
69644 *[http://www.whiteband.org/ WhiteBand.org - Global Call to Action Against Poverty]
69645
69646 {{econ-stub}}</text>
69647 </revision>
69648 </page>
69649 <page>
69650 <title>Analytical engine</title>
69651 <id>1271</id>
69652 <revision>
69653 <id>41777238</id>
69654 <timestamp>2006-03-01T17:56:10Z</timestamp>
69655 <contributor>
69656 <ip>70.226.135.121</ip>
69657 </contributor>
69658 <comment>Remove vandalism from 199.248.201.204</comment>
69659 <text xml:space="preserve">The '''analytical engine''', an important step in the [[history of computers]], is the design of a mechanical modern general-purpose [[computer]] by the British professor of mathematics [[Charles Babbage]]. It was first described in [[1837]], but Babbage continued to work on the design until his death in [[1871]]. Because of financial, political, and legal issues, the engine was never actually built. General-purpose computers that were logically comparable to the analytical engine did not come into existence until about 100 years later.
69660
69661 Some believe that the technological limitations of the time were a further obstacle to the construction of the machine; others believe that the machine could have been built successfully with the technology of the era if funding and political support had been stronger.
69662
69663 ==Design==
69664 Charles Babbage's first attempt at a mechanical computing device was the [[difference engine]], a special-purpose computer designed to tabulate [[logarithm]]s and [[trigonometric function]]s by evaluating approximate [[polynomial]]s. As this project faltered for personal and political reasons, he realized that a much more general design was possible, he started work designing the analytical engine.
69665
69666 The analytical engine was to be powered by a [[steam engine]] and would have been over 30 meters long and 10 meters wide. The input (programs and data) was to be provided to the machine on [[punch card]]s, a method being used at the time to direct mechanical [[loom|looms]]. For output, the machine would have a printer, a curve plotter and a bell. The machine would also be able to punch numbers onto cards to be read in later. It employed ordinary base-10 fixed-point arithmetic. There was a store (i.e., a memory) capable of holding 1,000 numbers of 50 digits each. An arithmetical unit (the &quot;mill&quot;) would be able to perform all four arithmetical operations.
69667
69668 The programming language to be employed was akin to modern day [[assembly language|assembly languages]]. Loops and conditional branching were possible and so the language as conceived would have been [[Turing-complete]]. Three different types of punch cards were used: one for arithmetical operations, one for numerical constants, and one for load and store operations, transferring numbers from the store to the arithmetical unit or back. There were three separate readers for the three types of cards.
69669
69670 In 1842, the Italian mathematician [[Federico Luigi, Conte Menabrea|Luigi Menabrea]], whom Babbage had met while travelling in Italy, wrote a description of the engine in French. In [[1843]], the description was translated into English and extensively annotated by [[Ada Lovelace|Ada King, Countess of Lovelace]], who had become interested in the engine ten years earlier. In recognition of [[Ada Byron's notes on the analytical engine|her additions to Menabrea's paper]], she has been described as the first computer [[programmer]]. The modern computer programming language [[Ada programming language|Ada]] is named in her honor.
69671
69672 ==Partial construction==
69673 In [[1878]], a committee of the British Association for the Advancement of Science recommended against constructing the analytical engine, which sank Babbage's efforts for government funding.
69674
69675 In [[1910]], Babbage's son Henry P. Babbage reported that a part of the mill and the printing apparatus had been constructed
69676 and had been used to calculate a (faulty) list of multiples of [[pi]]. This constituted only a small part of the whole engine; it was not programmable and had no storage.
69677
69678 ==Influence==
69679
69680 ===Computer science===
69681 The analytical engine was then all but forgotten with three known exceptions. [[Percy Ludgate]] wrote about the engine in 1915 and even designed his own analytical engine (it was drawn up in detail but never built). Ludgate's engine would be much smaller than Babbage's of about 8 cubic feet (230 L) and hypothetically would be capable of multiplying two 20-decimal-digit numbers in about 6 seconds. [[Leonardo Torres y Quevedo]] and [[Vannevar Bush]] also knew of Babbage's work, though the three inventors likely did not know of each other.
69682
69683 Closely related to Babbage's work on the analytical engine was the work of [[George Stibitz]] of [[Bell Laboratories]] in [[New York]] just prior to [[World War II|WWII]] and [[Howard Aiken|Howard Hathaway Aiken]] at [[Harvard]], during and just after WWII. They both built electromechanical (i.e. relay-and-switch) computers which were closely related to the analytical engine, though neither was (quite) a modern programmable computer. Aiken's machine was largely financed by [[IBM]] and was called the [[Harvard Mark I]].
69684
69685 From Babbage's autobiography:
69686 :''As soon as an Analytical Engine exists, it will necessarily guide the future course of the science. ''
69687
69688 ===Fiction===
69689 The [[cyberpunk]] novelists [[William Gibson (novelist)|William Gibson]] and [[Bruce Sterling]] co-authored a [[steampunk]] novel of [[Alternate history (fiction)|alternative history]] entitled ''[[The Difference Engine]]'' in which Babbage's difference and analytical engines became available to Victorian society. The novel explores the consequences and implications of the early introduction of computational technology.
69690
69691 ==External links==
69692 *[http://www.fourmilab.ch/babbage The Analytical Engine at Fourmilab]
69693 * L. F. Menabrea, Ada Augusta, [http://www.fourmilab.ch/babbage/sketch.html Sketch of the Analytical Engine], Bibliothèque Universelle de Genève, Number 82, October 1842.
69694 * [[Brian Randell|Randell, Brian]], [http://www.cs.ncl.ac.uk/research/pubs/articles/papers/398.pdf From Analytical Engine to Electronic Digital Computer: The Contributions of Ludgate, Torres, and Bush], ''[[Annals of the History of Computing]]'', Volume 4, Number 4, October 1982.
69695
69696 [[Category:History of computing]]
69697 [[Category:Early computers]]
69698 [[Category:English inventions]]
69699 [[Category:One-of-a-kind computers]]
69700 [[Category:Mathematical tools]]
69701 [[Category:Mechanical calculators]]
69702
69703 [[de:Analytical Engine]]
69704 [[es:MÃĄquina analítica]]
69705 [[fi:Analyyttinen kone]]
69706 [[ja:č§Ŗ析抟é–ĸ]]
69707 [[sv:Den analytiska maskinen]]</text>
69708 </revision>
69709 </page>
69710 <page>
69711 <title>Augustus</title>
69712 <id>1273</id>
69713 <revision>
69714 <id>42120054</id>
69715 <timestamp>2006-03-03T23:22:23Z</timestamp>
69716 <contributor>
69717 <ip>68.12.208.244</ip>
69718 </contributor>
69719 <comment>/* Select Bibliography */</comment>
69720 <text xml:space="preserve">[[Image:Statue-Augustus.jpg|right|thumb|250px|The famous statue of Octavian at the Prima Porta ([[Vatican Museums]])]]
69721 '''[[Caesar (title)|Caesar]] [[Augustus (honorific)|Augustus]]''' ([[Latin]]:&lt;small&gt;Imperator Caesari Divi Filius Augustus&lt;/small&gt;) [[#Notes|&amp;sup1;]] ([[23 September]] [[63 BC]] &amp;ndash; [[19 August]] [[14|AD&amp;nbsp;14]]), known to modern historians as '''Octavian''' for the period of his life prior to [[27 BC]], is considered the first and one of the most important [[Roman Emperors]], though he downplayed his own position by preferring the traditional Republic title of ''[[princeps]],'' usually translated as &quot;first citizen&quot;. Although he preserved the outward form of the [[Roman Republic]], he ruled as an [[autocrat]] for more than 40 years and his rule is the dividing line between the Republic and the [[Roman Empire]]. He ended a century of [[Civil war|civil wars]] and gave Rome an era of peace, prosperity, and imperial greatness, known as the ''[[Pax Romana]]'', the Roman peace. He was married to [[Livia Drusilla]] for 51 years.
69722
69723 ==Early life==
69724 Augustus was born in Rome with the name '''Gaius Octavius'''. His father, also [[Gaius Octavius]], came from a respectable but undistinguished family of the [[equestrian (Roman)|equestrian]] order and was governor of [[Macedonia (Roman province)|Macedonia]]. Shortly after Octavius's birth, his father gave him the surname of '''Thurinus''', possibly to commemorate his victory at [[Thurii]] over a rebellious band of slaves. His mother, [[Atia|Atia Balba Caesonia]], was the niece of [[Julius Caesar]], soon to be Rome's most successful general and [[Dictator]] for Life. He spent his early years in his grandfather's house near Veletrae (modern [[Velletri]]). In [[58 BC]], when he was four, his father died. He spent most of his childhood in the house of his stepfather, [[Lucius Marcius Philippus]].
69725
69726 In [[51 BC]], aged eleven, he delivered the funeral oration for his grandmother [[Julia Caesaris]]. He put on the ''[[toga virilis]]'' at fifteen, and was elected to the [[College of Pontiffs]]. Caesar requested that Octavius join his staff for his campaign in [[Africa (province)|Africa]], but Atia protested that he was too young. The following year, [[46 BC]], she consented for him to join Caesar in [[Hispania]], but he fell ill and was unable to travel. When he had recovered, he sailed to the front, but was shipwrecked; after coming ashore with a handful of companions, he made it across hostile territory to Caesar's camp, which impressed his great-uncle considerably. Caesar and Octavius returned home in the same carriage, and Caesar secretly changed his will.
69727
69728 ==Rise to power==
69729 [[Image:aug11_01.jpg|right|thumb|250px|Bust of Caesar Augustus.]]
69730
69731 When [[Julius Caesar#Assassination|Caesar was assassinated]] in March 44 BC, Octavius was studying in Apollonia, in what is now [[Albania]]. When Caesar's will was read it revealed that, having no legitimate children, he had adopted his great-nephew as his son and main heir. By virtue of his [[adoption in Rome|adoption]], Octavius assumed the name Gaius Julius Caesar. Roman tradition dictated that he also append the surname ''Octavianus'' to indicate his biological family, from which historians derive the name ''Octavian''; however, no evidence exists that he ever used the name ''Octavianus''. [[Mark Antony]] later charged that he had earned his adoption by Caesar through sexual favors, though [[Suetonius]] describes Antony's accusation as political slander.{{ref|slander}}
69732
69733 Octavian, as he is now conventionally called, recruited a small force in Apollonia. Crossing over to Italy, he bolstered his personal forces with Caesar's veteran legionaries, gathering support by emphasizing his status as heir to Caesar. Only eighteen years old, he was consistently underestimated by his rivals for power.
69734
69735 In Rome, he found Marcus Antonius ([[Mark Antony]]) in control. After a tense standoff, and a war in Gaul after Antony tried to take control of the province from [[Decimus Brutus]], he formed an uneasy alliance with [[Mark Antony]] and [[Marcus Aemilius Lepidus (triumvir)|Marcus Aemilius Lepidus]], Caesar's principal colleagues. The three formed a [[junta]] called the [[Second Triumvirate]], an explicit grant of special powers lasting five years and supported by law, unlike the unofficial [[First Triumvirate]] of [[Pompey]], Caesar and [[Marcus Licinius Crassus|Crassus]].{{ref|2ndTri}}
69736
69737 The triumvirs then set in motion proscriptions in which three hundred senators and two thousand ''[[Equestrian (Roman)|equites]]'' were deprived of their property and, for those who failed to escape, their lives, going beyond a simple purge of those allied with the assassins, and probably motivated by a need to raise money to pay their troops.{{ref|pros}}
69738
69739 Antony and Octavian then marched against Brutus and Cassius, who had fled to the east. At [[Philippi]] in [[Macedonia (Roman province)|Macedonia]], the Caesarian army was victorious and Brutus and Cassius committed [[suicide]] ([[42 BC]]). While Octavian returned to Rome, Antony went to [[Egypt]] where he allied himself with Queen [[Cleopatra VII of Egypt|Cleopatra]], the ex-lover of Julius Caesar and mother of Caesar's infant son, [[Caesarion]].
69740
69741 While in Egypt, Antony had an affair with Cleopatra that resulted in the birth of three children, [[Alexander Helios]], [[Cleopatra Selene (II)|Cleopatra Selene]], and [[Ptolemy Philadelphus (Cleopatra)|Ptolemy Philadelphus]]. Antony later left Cleopatra to make a strategic marriage with Octavian's sister [[Octavia]] in [[40 BC]]. During their marriage Octavia gave birth to two daughters, both named [[Antonia]]. In [[37 BC]] Antony deserted Octavia and went back to Egypt to be with Cleopatra. The Roman dominions were then divided between Octavian in the west and Antony in the east.
69742
69743 Antony occupied himself with military campaigns in the east and a romantic affair with Cleopatra; Octavian built a network of allies in Rome, consolidated his power, and spread [[propaganda]] implying that Antony was becoming less than Roman because of his preoccupation with Egyptian affairs and traditions. The situation grew more and more tense, and finally, in [[32 BC]], Octavian declared war. It was quickly decided: in the bay of [[Battle of Actium|Actium]] on the western coast of Greece, after Antony's men began deserting, the fleets met in a great battle in which many ships burned and thousands on both sides lost their lives. Octavian defeated his rivals who then fled to Egypt. He pursued them, and after another defeat, Antony committed suicide. Cleopatra also committed suicide after her upcoming role in Octavian's triumph was &quot;carefully explained to her&quot; and [[Caesarion]], the supposed son of Julius Caesar by Cleopatra, was &quot;butchered without compunction&quot;. Augustus supposedly said &quot;two Caesars are one too many&quot; as he ordered Caesarion's death.{{ref|suicide}}. It is said that Cleopatra used a snake to kill herself.
69744
69745 ==Octavian becomes Augustus: the creation of the Principate==
69746 [[Image:Caesar augustus.jpg|right|thumb|200px|&lt;small&gt;Augustus as a magistrate&lt;/small&gt;]]
69747
69748 The Western half of the Empire had sworn allegiance to Octavian prior to Actium in [[30 BC]], and after Actium and the defeat of Antony and Cleopatra, the Eastern half of the Empire followed suit, placing Octavian in the position of ruler of the entire Empire. Years of civil war had left [[Rome]] in a state of near-lawlessness, but the Republic was not prepared to accept the control of Octavian as a [[despot]]. At the same time, Octavian could not simply give up his authority without risking further civil wars amongst the Roman generals, and even if he desired no position of authority whatsoever, his position demanded that he look to the well-being of the City and provinces. Disbanding his personal forces, Octavian held elections and took up the position of [[consul]]; as such, though he had given up his personal armies, he was now legally in command of the legions of Rome.
69749
69750 ===The First Settlement===
69751 In [[27 BC]] he officially returned power to the [[Roman Senate|Senate]] of Rome, and offered to relinquish his own military supremacy over [[Egypt]]. Reportedly, the suggestion of Octavian's stepping down as consul led to rioting amongst the Plebeians in Rome. A compromise was reached between the Senate and Octavian's supporters, known as the First Settlement. Octavian was given proconsular authority over the Western half of the empire and [[Syria (Roman province)|Syria]] &amp;mdash; the provinces that, combined, contained almost 70% of the Roman legions.
69752
69753 The Senate also gave him the titles ''[[Augustus (honorific)|Augustus]]'' and ''[[Princeps]]''. ''Augustus'' was a title of religious rather than political authority. In the mindset of contemporary religious beliefs, it would have cleverly symbolized a stamp of authority over humanity that went beyond any constitutional definition of his status. Additionally, after the harsh methods employed in consolidating his control, that the change in name would also serve to separate his benign reign as Augustus from his reign of terror as Octavian. ''Princeps'' translates to &quot;first-citizen&quot; or &quot;first-leader&quot;. It had been a title under the Republic for those who had served the state well; for example, [[Gnaeus Pompey]] had held the title.
69754
69755 In addition, and perhaps the most dangerous innovation, Augustus was granted the right to wear the Civic Crown of laurel and oak. This crown was usually held above the head of a Roman general during a [[Roman Triumph|Triumph]], with the individual holding the crown charged to continually repeat, &quot;Remember, thou art mortal,&quot; to the triumphant general. The fact that not only was Augustus awarded this crown but awarded the right to actually wear it upon his head is perhaps the clearest indication of the creation of a [[monarchy]]. However, it must be noted that none of these titles, or the Civic Crown, granted Octavian any additional powers or authority; for all intents and purposes the new Augustus was simply a highly-honored Roman citizen, holding the consulship.
69756
69757 These actions were highly abnormal from the Roman Senate, but this was not the same body of patricians that had murdered Caesar. Both Antony and Octavian had purged the Senate of suspect elements and planted it with their loyal partisans. How free a hand the Senate had in these transactions, and what backroom deals were made, remain unknown.
69758
69759 ===The Second Settlement===
69760 In [[23 BC]] Augustus renounced the consulship, but retained his consular ''[[imperium]]'', leading to a second compromise between Augustus and the Senate known as the Second Settlement. Augustus was granted the power of a [[tribune]] (''tribunicia potestas''), though not the title, which allowed him to convene the Senate and people at will and lay business before it, veto the actions of either the Assembly or the Senate, preside over elections, and the right to speak first at any meeting. Also included in Augustus' tribunician authority were powers usually reserved for the Roman [[censor]]; these included the right to supervise public morals and scrutinize laws to ensure they were in the public interest, as well as the ability to hold a [[census]] and determine the membership of the Senate. No Tribune of Rome ever had these powers, and there was no precedent within the Roman system for combining the powers of the Tribune and the Censor into a single position, nor was Augustus ever elected to the office of Censor. Whether censorial powers were granted to Augustus as part of his ''tribunician'' authority, or he simply assumed these responsibilities, is still a matter of debate.
69761
69762 In addition to tribunician authority, Augustus was granted sole ''imperium'' within the city of Rome itself: all armed forces in the city, formerly under the control of the [[Prefect|Praefects]], were now under the sole authority of Augustus. Additionally, Augustus was granted ''imperium proconsulare maius'', or &quot;imperium over all the proconsuls&quot;, which translated to the right to interfere in any province in the Roman Empire and override the decisions of any governor. With ''maius imperium,'' Augustus was the only individual able to receive a triumph as he was ostensibly the head of every Roman army.
69763
69764 Many of the political subtleties of the Second Settlement seem to have evaded the comprehension of the Plebeian class. When in [[22 BC]] Augustus failed to stand for election as consul, fears arose once again that Augustus, seen as the great &quot;defender of the people&quot;, was being forced from power by the aristocratic Senate. In [[22 BC|22]], [[21 BC|21]], and [[20 BC]] the people rioted in response, and only allowed a single consul to be elected for each of those years, ostensibly to leave the other position open for Augustus. Finally in [[19 BC]] the Senate voted to allow Augustus to wear the consul's insignia in public and before the Senate, sometimes known as the Third Settlement. This seems to have assuaged the populace; regardless of whether or not Augustus was actually a consul, the importance was that he appeared as one before the people.
69765
69766 With these powers in mind, it must be understood that all forms of permanent and legal power within Rome officially lay with the Senate and the people; Augustus was given extraordinary powers, but only as a pronconsul and magistrate under the authority of the Senate. Augustus never presented himself as a king or autocrat, once again only allowing himself to be addressed by the title ''[[Princeps]]''. After the death of Lepidus in [[13 BC]] he additionally took up the position of [[pontifex maximus]].
69767
69768 Later Roman Emperors would generally be limited to the powers and titles originally granted to Augustus, though often, in order to display humility, newly appointed Emperors would often decline one or more of the honorifics given to Augustus. Just as often, as their reign progressed, Emperors would appropriate all of the titles, regardless of whether they had actually been granted by the Senate. The Civic Crown, consular insignia, and later the purple robes of a Triumphant general (''[[toga picta]]'') became the imperial insignia well into the [[Byzantine Empire|Byzantine]] era, and were even adopted by many Germanic tribes invading the former Western empire as insignia of their right to rule.
69769
69770 ==Reign==
69771 Having gained power by means of great audacity, Augustus ruled with great prudence. In exchange for near absolute power, he gave Rome 40 years of civic peace and increasing prosperity, celebrated in history as the [[Pax Romana]], or ''Roman Peace''.
69772
69773 ===Military reforms===
69774 He created Rome's first permanent army and navy and stationed the [[Roman legion|legions]] along the Empire's borders, where they could not meddle in politics. A special unit, the [[Praetorian Guard]], garrisoned Rome and protected the Emperor's person. He also reformed Rome's finance and tax systems. Augustus channeled the enormous wealth brought in from the Empire to keeping the army happy with generous payments.
69775
69776 ===Provincial reforms and imperial expansion===
69777 The Roman Empire expanded enormously during the reign of Augustus. [[Cantabrian Wars|A war in the mountains of northern Hispania]] from [[26 BC]] to [[19 BC]] finally resulted in that territory's conquest. After [[Gauls|Gallic]] raids, the [[Alps|Alpine]] territories were conquered. Rome's borders were advanced to the natural frontier of the [[Danube]], and the province of [[Galatia]] was occupied. Further west, an attempt to advance into [[Germany]] ended with the defeat at the [[Battle of the Teutoburg Forest]] in [[9|AD 9]]. Thereafter Augustus and his successors accepted the [[Rhine]] as the Empire's permanent border. In the east, he satisfied himself with establishing Roman control over [[Armenia]] and the [[Transcaucasus]]. He left the [[Parthia|Parthian Empire]] alone maintaining generally good relations with them, arranging with them to return the standards lost to them by [[Crassus]], an event portrayed on the breastplate of the ''Prima Porta Augustus''.
69778
69779 ====Britain====
69780 The Res Gestae says he received two kings of Britain. He considered [[Roman conquest of Britain#Aborted invasions|invasion]] on occasions but called it off.
69781
69782 ====India====
69783 There was an Indian in his retinue ([[Plutarch]], Life of Alexander, 69.9), and he claimed in the Raes Gestae to have received fealty from 'kings' of India.
69784
69785 ===Civil reforms, innovations and entertainments in Rome===
69786 He founded a ministry of [[transport]] that built an extensive network of roads &amp;mdash; enabling improved communication, trade, and [[mail]]. Augustus also founded the world's first [[fire brigade]], and created a regular [[Cohortes urbanae|police]] force for Rome.
69787
69788 He channeled the enormous wealth brought in from the Empire to keeping the army happy with generous payments, and keeping the citizens of Rome happy by staging magnificent games. His use of games and special events to celebrate himself and his family cemented his popularity.
69789
69790 ===Building programmes in Rome===
69791 He famously boasted that he &quot;found Rome [[brick]] and left it [[marble]]&quot; (though that hardly applied to the rickety flats of the [[Subura]]).
69792 He built
69793 *a new home or [[Curia]] for the Senate
69794 *the [[Forum of Augustus]]
69795 *new temples to
69796 **[[Apollo]]
69797 **Divine Julius
69798 **[[Temple of Mars Ultor|Mars Ultor]] in his new [[Forum of Augustus|forum]]
69799 *a shrine near the [[Circus Maximus]].
69800
69801 He restored
69802 *the [[Capitoline Temple]]
69803 *the Theater of [[Pompey]]
69804 These are recorded as his projects, but his name was deliberately uncredited.
69805
69806 He also encouraged others to carry out building projects, such as [[Lucius Cornelius Balbus (minor)]] and the [[Museo Nazionale Romano#Crypta Balbi|Crypta Balbi]].
69807
69808 ===Economic policy===
69809 Roman rulers understood little about [[economics]], and Augustus was no exception. Like all the Emperors, he overtaxed agriculture and spent the revenue on armies, temples, and games. However, wages and prices moved freely and allowed efficient markets to operate. When the Empire stopped expanding, and had no more loot coming in from conquests, its economy began to stagnate and eventually decline. The reign of Augustus is thus seen in some ways as the high point of Rome's power and prosperity. Augustus settled retired soldiers on the land in an effort to revive agriculture, but the capital remained dependent on grain imports from Egypt.
69810
69811 ===Religious reforms===
69812 Augustus also strongly supported worship of [[Roman gods]], especially [[Apollo]], and depicted Roman defeat of Egypt as Roman gods defeating [[Egyptian mythology|Egypt's]].
69813
69814 ===Harking back to Rome's heritage===
69815 He sponsored Virgil's [[Aeneid]] in the hopes that it would increase pride in Roman heritage (one of the titles he had refused in favour of Augustus was [[Romulus]], as a 'second founder' of Rome).
69816
69817 ===His own image===
69818 [[Image:ac.augustus.jpg|left|thumb|200px|Bronze statue of Augustus, Archaeological Museum, Athens]]
69819 [[Image:Statue-Augustus.jpg|right|thumb|250px|The 'Prima Porta Augustus'([[Vatican Museums]])]]
69820 He made a concerted campaign to have a standard version of his image reproduced throughout the empire as a focus of loyalty and, sometimes, [[Imperial cult (Ancient Rome)#From Julius Caesar to Hadrian|worship]]. Even when he was old, he was portrayed this way. As a result, his image is the most recognizable of all the emperors in museums across the world, including
69821
69822 * *[[British Museum]] (eg head from [[Meroe]][http://www.thebritishmuseum.ac.uk/compass/ixbin/hixclient.exe?_IXDB_=compass&amp;_IXSR_=df9&amp;_IXSS_=_IXFPFX_%3dgraphical%252ffull%252f%26_IXNOMATCHES_%3dgraphical%252fno_matches%252ehtml%26%2524%2b%2528with%2bv2_searchable_index%2529%2bsort%3d%252e%26_IXDB_%3dcompass%26%257bUPPER%257d%253av2_free_text_tindex%3dAugustus%26_IXsearchterm%3dAugustus&amp;_IXFIRST_=9&amp;_IXMAXHITS_=1&amp;_IXSPFX_=graphical/full/&amp;_IXsearchterm=Augustus&amp;submit-button=summary]
69823
69824 * *[[Museo Nazionale Romano#Palazzo Massimo]], Via Labicana type, found on the [[Via Labicana]], Augustus as a [[Pontifex Maximus]]
69825
69826 * *[[Vatican Museums]], Prima Porta Augustus.
69827
69828 See The Power of Images in the Age of Augustus, Paul Zanker.
69829
69830 ===Moral crusade===
69831 Augustus also launched a morality crusade, promoting marriage, family, and childbirth while discouraging luxury, unrestrained sex (including [[prostitution]] and [[homosexuality]]), and adultery. It was largely unsuccessful (indeed, his own daughter and - possibly in connection to her - Ovid were both banished due to it.)
69832
69833 ===Cultural patronage===
69834 As a patron of the arts, Augustus showered favors on poets, artists, sculptors, and architects. His reign is considered the Golden Age of [[Roman literature]]. [[Horace]], [[Livy]], [[Ovid]], and [[Virgil]] flourished under his protection, but in return, they had to pay tribute to his genius and adhere to his standards. (Ovid was banished from Rome for violating Augustus's morality codes.)
69835
69836 ===Conclusion===
69837 He eventually won over most of the Roman intellectual class, although many still pined in private for the Republic. His use of games and special events to celebrate himself and his family cemented his popularity. By the time Augustus died, a return to the old system was unimaginable. The only question was who would succeed him as sole ruler.
69838
69839 ==Succession==
69840
69841 Augustus' control of power throughout the Empire was so absolute that it allowed him to name his successor, a custom that had been abandoned and derided in Rome since the foundation of the Republic. At first, indications pointed toward his sister's son [[Marcus Claudius Marcellus (Julio-Claudian dynasty)|Marcellus]], who had been married to Augustus' daughter [[Julia Caesaris]]. However, Marcellus died of food poisoning in 23 BC. Reports of later historians that this poisoning, and other later deaths, were caused by Augustus' wife [[Livia Drusilla]] are inconclusive at best.
69842
69843 After the death of Marcellus, Augustus married his daughter to his right hand man, [[Marcus Vipsanius Agrippa|Marcus Agrippa]]. This union produced five children, three sons and two daughters: [[Gaius Caesar]], [[Lucius Caesar]], [[Vipsania Julia]], [[Agrippina the Elder]], and [[Postumus Agrippa]], so named because he was born after Marcus Agrippa died. Augustus' intent to make the first two children his heirs was apparent when he adopted them as his own children. Augustus also showed favor to his stepsons, Livia's children from her first marriage, [[Nero Claudius Drusus Germanicus]] and [[Tiberius|Tiberius Claudius]], after they had conquered a large portion of [[Germany]].
69844
69845 After Agrippa died in [[12 BC]], Livia's son Tiberius divorced his own wife and married Agrippa's widow. Tiberius shared in Augustus' tribune powers, but shortly thereafter went into retirement. After the early deaths of both Gaius and Lucius in [[4|AD 4]] and [[2|AD 2]] respectively, and the earlier death of his brother Drusus ([[9 BC]]), Tiberius was recalled to Rome, where he was adopted by Augustus.
69846
69847 On [[August 19]], [[14|AD 14]], Augustus died. Postumus Agrippa and Tiberius had been named co-heirs. However, Postumus had been banished, and was put to death around the same time. Who ordered his death is unknown, but the way was clear for Tiberius to assume the same powers that his stepfather had.
69848
69849 ==Augustus's legacy==
69850 [[Image:Hw-augustus.jpg|right|thumb|200px|Portrait drawing of Augustus: a detail of the famous statue found at Prima Porta]]
69851 Augustus was deified soon after his death, and both his borrowed surname, Caesar, and his title ''Augustus'' became the permanent titles of the rulers of Rome for the next 400 years, and were still in use at [[Constantinople]] fourteen centuries after his death. In many languages, ''caesar'' became the word for ''emperor'', as in German (''[[Kaiser|Kaiser]]''), in Dutch (''keizer''), and in Russian (''[[Tsar|tsar]]''). The cult of the Divine Augustus continued until the state religion of the Empire was changed to [[Christianity]] in the [[4th century]]. Consequently, there are many excellent statues and busts of the first, and in some ways the greatest, of the emperors. Augustus' mausoleum also originally contained bronze pillars inscribed with a record of his life, the ''[[Res Gestae Divi Augusti]]''.
69852
69853 Caesar Augustus is mentioned in Luke 2:1.
69854
69855 Many consider Augustus to be Rome's greatest emperor; his policies certainly extended the empire's life span and initiated the celebrated ''[[Pax Romana]]'' or ''Pax Augusta''. He was handsome, intelligent, decisive, and a shrewd politician, but he was not perhaps as charismatic as Julius Caesar or Marc Antony. Nevertheless, his legacy proved more enduring.
69856
69857 The month of [[August]] (Latin ''Augustus'') is named after Augustus; until his time it was called [[Sextilis]] (the sixth month of the [[Roman calendar]]). Commonly repeated lore has it that August has 31 days because Augustus wanted his month to match the length of Julius Caesar's [[July]], but this is an invention of the 13th-century scholar [[Johannes de Sacrobosco]]. Sextilis in fact had 31 days before it was renamed, and it was not chosen for its length (see [[Julian calendar]]).
69858
69859 In looking back on the reign of Augustus and its legacy to the Roman world, its longevity should not be overlooked as a key factor in its success. People were born and reached middle age without knowing any form of government other than the Principate. Had Augustus died earlier (in 23 BC, for instance), matters may have turned out differently. The attrition of the civil wars on the old Republican oligarchy and the longevity of Augustus, therefore, must be seen as major contributing factors in the transformation of the Roman state into a de facto monarchy in these years. Augustus' own experience, his patience, his tact, and his political acumen also played their parts. He directed the future of the empire down many lasting paths, from the existence of a standing professional army stationed at or near the frontiers, to the dynastic principle so often employed in the imperial succession, to the embellishment of the capital at the emperor's expense. Augustus' ultimate legacy was the peace and prosperity the empire enjoyed for the next two centuries under the system he initiated. His memory was enshrined in the political ethos of the Imperial age as a paradigm of the good emperor, and although every emperor adopted his name, Caesar Augustus, only a handful, such as [[Trajan]], earned genuine comparison with him. His reign laid the foundations of a regime that lasted for 250 years.
69860
69861 ==Augustus in popular culture==
69862
69863 In the [[Home Box Office|HBO]] television series &quot;[[Rome (TV series)|Rome]]&quot;, young Octavian is portrayed by [[Max Pirkis]].
69864
69865 Augustus was ranked #18 on [[Michael H. Hart]]'s [[The 100|list of the most influential figures in history]].
69866
69867 Augustus was portrayed in the famous [[BBC]] [[miniseries]] [http://www.imdb.com/title/tt0074006/?fr=c2l0ZT1kZnx0dD0xfGZiPXV8cG49MHxrdz0xfHE9SSBjbGF1ZGl1c3xmdD0xfG14PTIwfGxtPTUwMHxjbz0xfGh0bWw9MXxubT0x;fc=1;ft=21;fm=1 ''I, Claudius''] by [http://www.imdb.com/name/nm0000306/ Brian Blessed]. (1975)
69868
69869 Augustus was portrayed in the movie [http://www.imdb.com/title/tt0340529/ ''Imperium: Augustus''] (part of the [[Imperium (movie)|Imperium]] movie series) by [[Peter O'Toole]].
69870
69871 ==See also==
69872 *[[Augustus (honorific)]]
69873 *[[Julio-Claudian Family Tree]]
69874
69875 ==Notes ==
69876 # {{note|slander}} [[Suetonius]], ''Augustus'' [http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Suetonius/12Caesars/Augustus*.html#68 68], [http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Suetonius/12Caesars/Augustus*.html#71 71]
69877 # {{note|2ndTri}} From the Gracchi to Nero: HH Scullard p163
69878 # {{note|pros}} From the Gracchi to Nero: HH Scullard p164
69879 # {{note|suicide}} Alexander to Actium: Peter Green pp 697
69880
69881 ==External links==
69882
69883 {{commons|Augustus}}
69884 {{wikiquote|Augustus}}
69885
69886 ===Primary sources===
69887 a
69888 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Augustus/Res_Gestae/home.html The Res Gestae Divi Augusti] (The Deeds of Augustus, ''his own account'': complete Latin and Greek texts with facing English translation)
69889 * [http://www.usask.ca/antharch/cnea/DeptTransls/ResGest.html Selections from the Res Gestae] (in a different English translation)
69890 * [http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Suetonius/12Caesars/Augustus*.html Suetonius' biography of Augustus, Latin text with English translation]
69891 * [http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Cassius_Dio/home.html#45 Cassius Dio's Roman History: Books 45&amp;#8209;56, English translation]
69892 * [http://www.csun.edu/~hcfll004/nicolaus.html Life of Augustus] by [[Nicolaus of Damascus]]
69893
69894 ===Secondary material===
69895 * [http://www.roman-emperors.org/auggie.htm De Imperatoribus Romanis] (A good detailed biography)
69896 * [http://janusquirinus.org/Octavian/OctavianHome.html Octavian / Augustus]
69897 *[http://www.jerryfielden.com/essays/augustus.htm Augustus and the Roman army &amp;#8211; Mutual Loyalty and Rewards]
69898
69899 ==Select Bibliography==
69900 * ''The Power of Images in the Age of Augustus'', Paul Zanker.
69901 * ''Augustan Culture'', Karl Galinsky.
69902
69903 {{start box}}
69904 {{succession box|title=[[List of Roman consuls|Consul]] of the [[Roman Republic]]|before=[[Gaius Julius Caesar]] and [[Marc Antony|Marcus Antonius]]||after=[[Aulus Hirtius]] and [[Gaius Vibius Pansa Caetronianus]] |years=[[44 BC]]}}
69905 {{succession box|title=[[List of Roman consuls|Consul]] of the [[Roman Republic]]|before=[[Aemilius Lepidus Paullus]]||after=[[Gnaeus Domitius Ahenobarbus (1st century BC)|Gnaeus Domitius Ahenobarbus]] and [[Gaius Sosius]] |years=[[33 BC]]}}
69906 {{succession box|title=[[Julio-Claudian Dynasty]]|before=&amp;mdash;|after=[[Tiberius]]|years=63 BC &amp;ndash;14 AD}}
69907 {{succession box|title=[[Roman Emperor]]| before=&amp;mdash; | CoEmperor= | after=[[Tiberius]]|years=27 BC-14 AD}}
69908 {{end box}}
69909
69910 [[Category:63 BC births|Augustus, Caesar]]
69911 [[Category:14 deaths|Augustus, Caesar]]
69912 [[Category:Natives of Rome|Augustus, Caesar]]
69913 [[Category:Julio-Claudian Dynasty|Augustus, Caesar]]
69914 [[Category:Deified Roman Emperors|Augustus, Caesar]]
69915 [[Category:Adoptive parents|Augustus, Caesar]]
69916 [[Category:Historical figures portrayed by Shakespeare]]
69917
69918 [[bg:ОĐēŅ‚авиаĐŊ АвĐŗŅƒŅŅ‚]]
69919 [[ca:August]]
69920 [[cs:Augustus]]
69921 [[da:CÃĻsar Augustus]]
69922 [[de:Augustus]]
69923 {{Link FA|de}}
69924 [[et:Augustus]]
69925 [[es:CÊsar Augusto]]
69926 {{Link FA|es}}
69927 [[eo:AÅ­gusto Cezaro]]
69928 [[eu:Zesar Augusto]]
69929 [[fr:Auguste]]
69930 [[ko:ė•„ėš°ęĩŦėŠ¤íˆŦėŠ¤]]
69931 [[hr:August]]
69932 [[it:Augusto (imperatore romano)]]
69933 [[he:אוגוסטוס קיסר]]
69934 [[la:G. Iulius Caesar Octavianus Augustus]]
69935 [[hu:Augustus]]
69936 {{Link FA|hu}}
69937 [[nl:Gaius Julius Caesar Octavianus (Augustus)]]
69938 [[ja:ã‚ĸã‚Ļグ゚トã‚Ĩã‚š]]
69939 [[no:Augustus]]
69940 [[pl:Oktawian August]]
69941 [[pt:CÊsar Augusto]]
69942 [[ro:Caesar Augustus]]
69943 [[ru:Гай ĐŽĐģиК ĐĻĐĩСаŅ€ŅŒ ОĐēŅ‚авиаĐŊ АвĐŗŅƒŅŅ‚]]
69944 [[scn:Cesari Augustu]]
69945 [[simple:Caesar Augustus]]
69946 [[sl:Gaj Avgust Oktavijan]]
69947 [[sh:August]]
69948 [[fi:Augustus]]
69949 [[sr:ОĐēŅ‚авиŅ˜Đ°ĐŊ АвĐŗŅƒŅŅ‚]]
69950 [[sv:Augustus]]
69951 [[tl:Caesar Augustus]]
69952 [[uk:ОĐēŅ‚авŅ–Đ°ĐŊ АвŌ‘ŅƒŅŅ‚]]
69953 [[zh:åą‹å¤§įģ´]]</text>
69954 </revision>
69955 </page>
69956 <page>
69957 <title>Geography of Antarctica</title>
69958 <id>1274</id>
69959 <revision>
69960 <id>39866053</id>
69961 <timestamp>2006-02-16T11:44:46Z</timestamp>
69962 <contributor>
69963 <username>William M. Connolley</username>
69964 <id>8072</id>
69965 </contributor>
69966 <comment>+/- ???: plus!</comment>
69967 <text xml:space="preserve">[[Image:Booth_Island.jpg|250px|thumb|right|Photo of [[Booth Island]] in [[Antarctica]]]]
69968 [[Image:Antarctica2.jpg|250px|thumb|right|[http://www.photolib.noaa.gov/corps/images/big/corp2359.jpg] higher resolution copy]]
69969 [[Image:Lake Fryxell.jpg|thumb|200px|The [[Blue ice (glacial)|Blue ice]] covering [[Lake Fryxell]], in the Transantarctic Mountains, comes from [[glacier|glacial]] meltwater from the [[Canada Glacier]] and other smaller glaciers. The fresh water stays on top of the lake and freezes, sealing in briny water below.]]
69970 The continent of [[Antarctica]] is located mostly south of the [[Antarctic Circle]]. Physically Antarctica is divided in two by mountains close to the neck between the [[Ross Sea]] and the [[Weddell Sea]]. The portion of the continent west of the Weddell Sea and east of the Ross Sea is called [[Western Antarctica]] and the remainder [[Eastern Antarctica]], since they correspond roughly to the eastern and western hemispheres relative to the [[Prime Meridian|Greenwich meridian]]. This usage has been regarded as [[Eurocentrism|Eurocentric]] by some, and the alternative terms Lesser Antarctica and Greater Antarctica (respectively) are sometimes preferred.
69971
69972 Western Antarctica is covered by the [[West Antarctic Ice Sheet]]. There has been some concern about this [[ice sheet]], because there is a small chance that it will collapse. If it does, ocean levels would rise by a few metres in a very short period of time.
69973
69974 In some areas, the ice sheet rests on bedrock below sea level [http://www.antarctica.ac.uk/aedc/bedmap/examples/bed10.gif].
69975
69976 ==Statistics==
69977
69978 ; Area:
69979 :* Total: [[1 E13 m²|14 million sq km]]
69980 :* Land: 14 million km² ([[1 E11 m²|280,000 sq km]] ice-free, 13.72 million km² ice-covered) (est.)
69981 :* Note: Fifth-largest continent, following [[Asia]], [[Africa]], [[North America]], and [[South America]], but larger than [[Australia]] and the subcontinent of [[Europe]]
69982 ; Land boundaries:
69983 : None
69984 ; Coastline:
69985 : [[1 E7 m|17,968 km]]
69986 ; Maritime claims:
69987 : None
69988 ; Climate:
69989 : Severe low temperatures vary with latitude, elevation, and distance from the ocean; East Antarctica is colder than West Antarctica because of its higher elevation; Antarctic Peninsula has the most moderate climate; higher temperatures occur in January along the coast and average slightly below freezing
69990 ; Terrain:
69991 : About 98% thick continental ice sheet and 2% barren rock, with average elevations [[1 E3 m|between 2,000 and 4,000 meters]]; mountain ranges up to 5,140 meters; ice-free coastal areas include parts of southern [[Victoria Land]], [[Wilkes Land]], the [[Antarctic Peninsula]] area, and parts of [[Ross Island]] on [[McMurdo Sound]]; [[glacier]]s form ice shelves along about half of the coastline, and floating ice shelves constitute 11% of the area of the continent. The dry valleys of Antarctica are a particularly interesting region of Antarctica. Due to extreme winds and lack of precipitation, this area is devoid of any snow and barren earth is visible.
69992 ; Elevation extremes:
69993 :* Lowest point: [[Southern Ocean]] 0 [[metre|m]], although in some areas the bedrock under the ice sheet is below sea level.
69994 :* Highest point: [[Vinson Massif]] 4,897 m ([[Ellsworth Mountains]])
69995 ; Natural resources:
69996 : None presently exploited; [[iron]] ore, [[chromium]], [[copper]], [[gold]], [[nickel]], [[platinum]] and other minerals, and [[coal]] and [[hydrocarbons]] have been found in small, uncommercial quantities
69997 ; Land use:
69998 :* Other: 100% (ice 98%, barren rock 2%)
69999 ; Irrigated land:
70000 : 0 km² (1993)
70001 ; Natural hazards:
70002 : [[katabatic wind|Katabatic]] (gravity-driven) winds blow coastward from the high interior; frequent blizzards form near the foot of the plateau; cyclonic storms form over the ocean and move clockwise along the coast; volcanism on [[Deception Island]] and isolated areas of West Antarctica; other seismic activity rare and weak
70003 ; Environment - current issues:
70004 : [[Ozone hole]], [[sea level rise]]
70005 ; Geography - note:
70006 : The coldest, windiest, highest (2,300 m on average), and driest continent; during summer, more solar radiation reaches the surface at the [[South Pole]] than is received at the [[Equator]] in an equivalent period; mostly uninhabitable.
70007
70008 ==Volcanoes==
70009 There are four [[volcano]]es on the mainland of Antarctica that are
70010 considered to be active on the basis of observed fumarolic activity or
70011 &quot;recent&quot; tephra deposits:
70012 [[Mount Melbourne]] (2,730 m) (74°21'S., 164°42'E.), a stratovolcano;
70013 [[Mount Berlin]] (3,500 m) (76°03'S., 135°52'W.), a stratovolcano;
70014 Mount Kauffman (2,365 m) (75°37'S., 132°25'W.), a stratovolcano; and
70015 [[Mount Hampton]] (3,325 m) (76°29'S., 125°48'W.), a volcanic caldera.
70016
70017 Several volcanoes on offshore islands have records of historic activity.
70018 [[Mount Erebus]] (3,795m), a stratovolcano on
70019 [[Ross Island]] with 10 known eruptions and 1 suspected eruption.
70020 On the opposite side of the continent,
70021 [[Deception Island]]
70022 (62°57'S., 60°38'W.), a volcanic caldera with 10 known
70023 and 4 suspected eruptions, have been the most active.
70024 [[Buckle Island]] in the [[Balleny Islands]] (66°50'S., 163°12'E.),
70025 [[Penguin Island (South Shetland Islands)|Penguin Island]] (62°06'S., 57°54'W.),
70026 Paulet Island (63°35'S., 55°47'W.), and
70027 Lindenberg Island (64°55'S., 59°40'W.) are also
70028 considered to be active.
70029
70030 ==See also==
70031 * [[List of antarctic and sub-antarctic islands]]
70032
70033 ==External links==
70034 * [http://sd-www.jhuapl.edu/FlareGenesis/Antarctica/1999/pictures/antarctica_pol_map.jpg Political Claims Map]
70035 * [http://terraweb.wr.usgs.gov/TRS/projects/Antarctica/AVHRR.html USGS TerraWeb: Satellite Image Map of Antarctica]
70036 * [http://erg.usgs.gov/isb/pubs/factsheets/fs05101.html United States Antarctic Resource Center (USARC)]
70037 * [http://www.antarctica.ac.uk/aedc/bedmap/ BEDMAP]
70038
70039 [[Category:Geography of Antarctica| ]]
70040 [[nl:Aardrijkskunde van Antarctica]]</text>
70041 </revision>
70042 </page>
70043 <page>
70044 <title>Demographics of Antarctica</title>
70045 <id>1275</id>
70046 <revision>
70047 <id>39280180</id>
70048 <timestamp>2006-02-12T01:40:14Z</timestamp>
70049 <contributor>
70050 <username>Circeus</username>
70051 <id>98785</id>
70052 </contributor>
70053 <minor />
70054 <text xml:space="preserve">'''[[Antarctica]]''' has no indigenous inhabitants, but there are seasonally staffed research stations. Approximately 29 nations, all signatory to the [[Antarctic Treaty]], send personnel to perform seasonal (summer) and year-round research on the continent and in its surrounding oceans; the population of persons doing and supporting science on the continent and its nearby islands south of 60 degrees south latitude (the region covered by the Antarctic Treaty) varies from approximately 4,000 in summer to 1,000 in winter; in addition, approximately 1,000 personnel including ship's crew and scientists doing onboard research are present in the waters of the treaty region.
70055
70056 At least three children have been born in Antarctica. The first was [[Emilio Marcos Palma]], born [[January 7]], [[1978]] to [[Argentina|Argentine]] parents on the Argentine Base [[Esperanza Base|Esperanza]], near the tip of the Antarctic peninsula. In [[1986]], [[Juan Pablo Camacho]] was born at the Presidente Eduardo Frei Montalva Base, becoming the first [[Chile]]an born in Antarctica. Soon after a girl, Gisella, was born at the same station.
70057 {|class=&quot;wikitable&quot;
70058 |-
70059 ! Nation
70060 ! Summer &lt;br /&gt;(January) &lt;br /&gt; population &lt;br /&gt; 3,687 total &lt;br /&gt; (1998-9)
70061 ! Winter &lt;br /&gt;(July) &lt;br /&gt;population &lt;br /&gt; 964 total &lt;br /&gt;
70062 (1998-9)
70063 ! Year-round&lt;br /&gt; Stations &lt;bR&gt; 42 total &lt;br /&gt; (1998-9)
70064 ! Summer-only &lt;br /&gt; Stations &lt;br /&gt; 32 total &lt;br /&gt; (1998-9)
70065 |-
70066 | [[Argentina]] || 302 || 165 || 6 || 7
70067 |-
70068 | [[Australia]] || 201 || 75 || 4 || 4
70069 |-
70070 | [[Belgium]] || 13 || - || - || -
70071 |-
70072 | [[Brazil]] || 80 || 12 || 1 || -
70073 |-
70074 | [[Bulgaria]] || 16 || - || - || 1
70075 |-
70076 | [[Chile]] || 352 || 129 || 4 || 7
70077 |-
70078 | [[China]] || 70 || 33 || 2 || -
70079 |-
70080 | [[Finland]] || 11 || - || 1 || -
70081 |-
70082 | [[France]] || 100 || 33 || 1 || -
70083 |-
70084 | [[Germany]] || 51 || 9 || 1 || 1
70085 |-
70086 | [[India]] || 60 || 25 || 1 || 1
70087 |-
70088 | [[Italy]] || 106 || - || 1 || -
70089 |-
70090 | [[Japan]] || 136 || 40 || 1 || 3
70091 |-
70092 | [[South Korea]] || 14 || 14 || 1 || -
70093 |-
70094 | [[Netherlands]] || 10 || - || - || -
70095 |-
70096 | [[New Zealand]] || 60 || 10 || 1 || 1
70097 |-
70098 | [[Norway]] || 40 || - || 1 || -
70099 |-
70100 | [[Peru]] || 28 || - || - || 1
70101 |-
70102 | [[Poland]] || 70 || 20 || 1 || -
70103 |-
70104 | [[Russia]] || 254 || 102 || 6 || 3
70105 |-
70106 | [[South Africa]] || 80 || 10 || 1 || -
70107 |-
70108 | [[Spain]] || 43 || - || 1 || -
70109 |-
70110 | [[Sweden]] || 20 || - || - || 2
70111 |-
70112 | [[Ukraine]] || &amp;nbsp; || &amp;nbsp; || 1 || -
70113 |-
70114 | [[United Kingdom|UK]] || 192 || 39
70115 | 2 || 5
70116 |-
70117 | [[United States|US]] || 1,378 || 248
70118 | 3 || -
70119 |-
70120 | [[Uruguay]] || &amp;nbsp; || &amp;nbsp; || 1 || -
70121 |}
70122
70123 In addition, during the austral summer some nations have numerous occupied locations such as tent camps, summer-long temporary facilities, and mobile traverses in support of research (July 2000 est.)
70124
70125
70126 ==See also==
70127 *[[Argentine Antarctica]]
70128 [[Category:Antarctica]]</text>
70129 </revision>
70130 </page>
70131 <page>
70132 <title>Economy of Antarctica</title>
70133 <id>1276</id>
70134 <revision>
70135 <id>38845359</id>
70136 <timestamp>2006-02-09T00:32:30Z</timestamp>
70137 <contributor>
70138 <username>Arvedui</username>
70139 <id>126848</id>
70140 </contributor>
70141 <minor />
70142 <comment>clarification of awkward wording</comment>
70143 <text xml:space="preserve">No [[economics|economic]] activity is conducted at present in [[Antarctica]], except for [[fishing]] off the coast and small-scale [[tourism]], both based abroad. Antarctic fisheries in [[1998]]-[[1999]] ([[July 1]]- [[June 30]]) reported landing 119,898 metric tons. Unregulated [[fishing]] landed five to six times more than the regulated fishery, and allegedly illegal fishing in antarctic waters in [[1998]] resulted in the seizure (by [[France]] and [[Australia]]) of at least eight fishing ships. A total of 10,013 tourists visited in the [[1998]]-[[1999]] summer, up from the 9,604 who visited the previous year. Nearly all of them were passengers on 16 commercial (nongovernmental) ships and several [[yacht]]s that made 116 trips during the summer. Most tourist trips lasted approximately two weeks.
70144
70145 Small-scale tourism has existed since 1957. Since 1969, over 30,000 tourists have been to Antarctica.[http://www.knet.co.za/antarctica/political.htm] As of 2006, several ships transport people to Antarctica to visit specific scenic locations. Sight-seeing flights also used to take people from Australia and New Zealand over Antarctica and back again, until the fatal crash of [[Air New Zealand Flight 901]] near [[Mount Erebus]] late in 1979.
70146
70147 {{economics-stub}}
70148 {{Antarctica-geo-stub}}
70149 [[Category:Antarctica]]
70150 [[Category:Economies by region]]</text>
70151 </revision>
70152 </page>
70153 <page>
70154 <title>Government of Antarctica</title>
70155 <id>1277</id>
70156 <revision>
70157 <id>22973613</id>
70158 <timestamp>2005-09-10T13:45:56Z</timestamp>
70159 <contributor>
70160 <username>Citylover</username>
70161 <id>406359</id>
70162 </contributor>
70163 <comment>&quot;#REDIRECT [[Antarctic Treaty System]]&quot; added</comment>
70164 <text xml:space="preserve">#REDIRECT [[Antarctic Treaty System]]</text>
70165 </revision>
70166 </page>
70167 <page>
70168 <title>Communications in Antarctica</title>
70169 <id>1278</id>
70170 <revision>
70171 <id>38491058</id>
70172 <timestamp>2006-02-06T18:23:44Z</timestamp>
70173 <contributor>
70174 <username>Gflores</username>
70175 <id>153556</id>
70176 </contributor>
70177 <minor />
70178 <text xml:space="preserve">'''Telephones - main lines in use:'''
70179 0
70180 &lt;br /&gt;(note: information for US bases only (2001))
70181
70182 '''Telephones - mobile cellular:'''
70183 NA; [[Iridium (satellite)|Iridium]] system in use
70184
70185 '''[[Telephone]] system:'''
70186 &lt;br /&gt;''general assessment:''
70187 local systems at some research stations
70188 &lt;br /&gt;''domestic:''
70189 NA
70190 &lt;br /&gt;''international:''
70191 via satellite from some research stations
70192
70193 '''[[Radio]] broadcast stations:'''
70194 AM: NA,
70195 FM: 2,
70196 shortwave: 1
70197 &lt;br /&gt;(note: information for US bases only (2002))
70198
70199 '''Radios:'''
70200 NA
70201
70202 '''[[Television]] broadcast stations:'''
70203 1 (cable system with six channels; American Forces Antarctic Network-McMurdo)
70204 &lt;br /&gt;(note: information for US bases only (2002))
70205
70206 '''Televisions:'''
70207 several hundred at McMurdo Station (US)
70208 &lt;br /&gt;(note: information for US bases only (2001))
70209
70210 '''[[Internet]] Service Providers (ISPs):'''
70211 a fiber cable on polar plateau planned to finish in [[2009]] [1]
70212
70213 '''[[Country codes|Country code]] (Top level domain):'''
70214 AQ
70215
70216 ''Information from [[CIA World Factbook]], [[as of 2002|2002]] edition''
70217
70218 Argentine bases in general: Marambio base has wireless internet and 2 mobile phones servers
70219
70220 :''See also:'' [[Antarctica]]
70221
70222 ==External links==
70223 * [http://www.anetstation.com ANetStation] - radio station in Antarctica
70224 [[Category:Communications by country|Antarctica]]
70225 [[Category:Antarctica]]</text>
70226 </revision>
70227 </page>
70228 <page>
70229 <title>Transportation in Antarctica</title>
70230 <id>1279</id>
70231 <revision>
70232 <id>40663199</id>
70233 <timestamp>2006-02-22T03:40:01Z</timestamp>
70234 <contributor>
70235 <username>Abracadabrantesque</username>
70236 <id>972037</id>
70237 </contributor>
70238 <minor />
70239 <comment>french article</comment>
70240 <text xml:space="preserve">'''Transportation in Antarctica''' is usually done over sea or plane, and requires special measures against the cold.
70241
70242 ==Ports and harbors==
70243 [[Antarctica]]'s only harbour is at [[McMurdo Station]]. Most coastal stations have offshore anchorages, and supplies are transferred from ship to shore by small boats, barges, and helicopters. A few stations have a basic wharf facility. All ships at port are subject to inspection in accordance with Article 7, [[Antarctic Treaty]]; offshore anchorage is sparse and intermittent.
70244 [[McMurdo Station]] ({{coor dm|77|51|S|166|40|E|}}), [[Palmer Station]] ({{coor dm|64|43|S|64|03|W|}}); government use only except by permit (see Permit Office under &quot;Legal System&quot;).
70245
70246 ==Airports==
70247 Antarctica has 20 airports, but there are no developed public-access airports or landing facilities. 30 stations, operated by 16 national governments party to the [[Antarctic Treaty]], have landing facilities for either [[helicopter]]s and/or fixed-wing [[aircraft]]; commercial enterprises operate two additional air facilities.
70248
70249 Helicopter pads are available at 27 stations; runways at 15 locations are gravel, sea-ice, blue-ice, or compacted snow suitable for landing wheeled, fixed-wing aircraft; of these, 1 is greater than 3 km in length, 6 are between 2 km and 3 km in length, 3 are between 1 km and 2 km in length, 3 are less than 1 km in length, and 2 are of unknown length; snow surface skiways, limited to use by [[ski]]-equipped, fixed-wing aircraft, are available at another 15 locations; of these, 4 are greater than 3 km in length, 3 are between 2 km and 3 km in length, 2 are between 1 km and 2 km in length, 2 are less than 1 km in length, and data is unavailable for the remaining 4.
70250
70251 Antarctic airports are subject to severe restrictions and limitations resulting from extreme seasonal and geographic conditions; they do not meet [[ICAO]] standards, and advance approval from the respective governmental or nongovernmental operating organization is required for landing (1999 est.)
70252
70253 '''Airports - with unpaved runways:'''
70254 *''total:'' 20
70255 *''over 3,047 m:'' 6
70256 *''2,438 to 3,047 m:'' 3
70257 *''1,524 to 2,437 m:'' 1
70258 *''914 to 1,523 m:'' 4
70259 *''under 914 m:'' 6 (2003 est.)
70260
70261 '''Heliports:''' 27 stations have restricted helicopter landing facilities (helipads) (2003 est.)
70262
70263 [[Category:Antarctica]]
70264 [[Category:Transportation by country|Antarctica]]
70265
70266 [[fr:Transport en Antarctique]]</text>
70267 </revision>
70268 </page>
70269 <page>
70270 <title>Military of Antarctica</title>
70271 <id>1280</id>
70272 <revision>
70273 <id>15899771</id>
70274 <timestamp>2004-12-27T12:01:41Z</timestamp>
70275 <contributor>
70276 <username>Jiang</username>
70277 <id>10049</id>
70278 </contributor>
70279 <comment>merge due to nonexisten subject</comment>
70280 <text xml:space="preserve">#REDIRECT[[Antarctica]]</text>
70281 </revision>
70282 </page>
70283 <page>
70284 <title>Antarctica/History</title>
70285 <id>1282</id>
70286 <revision>
70287 <id>15899772</id>
70288 <timestamp>2002-05-05T00:23:16Z</timestamp>
70289 <contributor>
70290 <username>Maveric149</username>
70291 <id>62</id>
70292 </contributor>
70293 <comment>*#redirect [[History of Antarctica]]</comment>
70294 <text xml:space="preserve">#redirect [[History of Antarctica]]</text>
70295 </revision>
70296 </page>
70297 <page>
70298 <title>Geography of Alabama</title>
70299 <id>1285</id>
70300 <revision>
70301 <id>38356684</id>
70302 <timestamp>2006-02-05T20:37:51Z</timestamp>
70303 <contributor>
70304 <username>Psmith</username>
70305 <id>25471</id>
70306 </contributor>
70307 <minor />
70308 <comment>/* Physical Features */ rv vandalism</comment>
70309 <text xml:space="preserve">[[image:Physio-al.jpg|right|float|frame|Physiographic Regions in Alabama]]
70310 ==Physical Features==
70311 The surface of [[Alabama]] in the N. and N.E., embracing about two-fifths of its area, is diversified and picturesque; the remaining portion is occupied by a gently undulating plain having a general incline south-westward toward the [[Mississippi River]] and the [[Gulf of Mexico]].
70312
70313 Extending entirely across the state of Alabama for about 20 m. S. of its N. boundary, and in the middle stretching 60 m. farther S., is the ''Cumberland Plateau'', or ''Tennessee Valley'' region, broken into broad table-lands by the dissection of rivers. In the N. part of this plateau, W. of [[Jackson County, Alabama|Jackson county]], there are about 1000 sq. m. of level highlands from 700 to 800 ft. above the sea. South of these highlands, occupying a narrow strip on each side of the [[Tennessee River]], is a country of gentle rolling lowlands varying in elevation from 500 to 800 ft. To the N.E. of these highlands and lowlands is a rugged section with steep mountain-sides, deep narrow coves and valleys, and flat mountain-tops. Its elevations range from 400 to 1800 ft. In the remainder of this region, the S. portion, the most prominent feature is Little Mountain, extending about 80 m. from E. to W. between two valleys, and Asing precipitouslyon the N. side 500 ft. above them or 1000ft. above the sea.
70314
70315 Adjoining the Cumberland Plateau region on the S.E. is the ''Appalachian Valley'' (locally known as Coosa Valley) region, which is the S. extremity of the great [[Appalachian Mountains]], and occupies an area within the state of about 8000 sq. m. This is a [[limestone]] belt with parallel hard rock ridges left standing by erosion to form mountains. Although the general direction of the mountains, ridges and valleys is N.E. and S.W., irregularity is one of the most prominent characteristics. In the N.E. are several flat-topped mountains, of which Raccoon and [[Lookout Mountain|Lookout]] are the most prominent, having a maximum elevation near the [[Georgia (U.S. state)|Georgia]] line of little more than 1800 ft. and gradually decreasing in height toward the S.W., where Sand Mountain is a continuation of Raccoon. South of these the mountains are marked by steep N.W. sides, sharp crests and gently sloping S.E. sides.
70316
70317 South-east of the Appalachian Valley region, the ''Piedmont Plateau'' also crosses the Alabama border from the N.E. and occupies a small triangular-shaped section of which [[Randolph County, Alabama|Randolph]] and [[Clay County, Alabama|Clay]] counties, together with the N. part of [[Tallapoosa County, Alabama|Tallapoosa]] and [[Chambers County, Alabama|Chambers]], form the principal portion. Its surface is gently undulating and has an elevation of about 1000 ft. above the sea. The Piedmont Plateau is a lowland worn down by erosion on hard crystalline rocks, then uplifted to form a plateau.
70318
70319 The remainder of the state is occupied by the ''Coastal Plain''. This is crossed by foot-hills and rolling prairies in the central part of the state, where it has a mean elevation of about 600 ft., becomes lower and more level toward the S.W., and in the extreme S. is flat and but slightly elevated above the sea.
70320
70321 The Cumberland Plateau region is drained to the W.N.W. by the [[Tennessee River]] and its tributaries; all other parts of the state are drained to the S.W. In the Appalachian Valley region the Coosa is the principal river; and in the Piedmont Plateau, the Tallapoosa. In the Coastal Plain are the Tombigbee in the W., the Alabama (formed by the Coosa and Tallapoosa) in the W. central, and in the E. the Chattahoochee, which forms almost half of the Georgia boundary. The [[Tombigbee River|Tombigbee]] and [[Alabama River|Alabama]] unite near the S.W. corner of the state, their waters discharging into [[Mobile Bay]] by the [[Mobile River|Mobile]] and Tensas rivers. The Black Warrior is a considerable stream which joins the Tombigbee from the E.
70322
70323 The valleys in the N. and N.E. are usually deep and narrow, but in the Coastal Plain they are broad and in most cases rise in three successive terraces above the stream. The harbour of Mobile was formed by the drowning of the lower part of the valley of the Alabama and Tombigbee rivers as a result of the sinking of the land here, such sinking having occurred on other parts of the Gulf coast.
70324
70325 The fauna and flora of Alabama are similar to those of the Gulf states in general and have no distinctive characteristics.
70326
70327 ==Climate and Soil==
70328 The [[climate]] of Alabama is temperate and fairly uniform.
70329
70330 The heat of summer is tempered in the south by the winds from the [[Gulf of Mexico]], and in the north by the elevation above the sea. The average annual temperature is highest in the southwest along the coast (where the climate is [[subtropical]]), and lowest in the northeast among the highlands. Thus at Mobile the annual mean is 67°F (19°C), the mean for the summer 81°F (27°C), and for the winter 52°F (11°C); and at Valley Head, in De Kalb county, the annual mean is 59°F (15°C), the mean for the summer 75°F (24°C), and for the winter 41°F (5°C). At Montgomery, in the central region, the average annual temperature is 66°F (19°C), with a winter average of 49°F (9°C), and a summer average of 81°F (27°C). The average winter minimum for the entire state is 35°F (2°C), and there is an average of 35 days in each year in which the thermometer falls below the freezing-point. At extremely rare intervals the thermometer has fallen below zero (-18°F), as was the case in the remarkable cold wave of the 12th-13th of February [[1899]], when an absolute minimum of -17°F (-29°C) was registered at [[Valley Head, Alabama|Valley Head]]. The highest temperature ever recorded was 109°F (43°C) in [[Talladega County, Alabama|Talladega]] county in [[1902]].
70331
70332 The amount of precipitation is greatest along the coast (62 inches/1,574 mm) and evenly distributed through the rest of the state (about 52 inches/1,320 mm). During each winter there is usually one fall of snow in the south and two in the north; but the snow quickly disappears, and sometimes, during an entire winter, the ground is not covered with snow. [[Hailstorm]]s occur occasionally in the spring and summer, but are seldom destructive. Heavy [[fog]]s are rare, and are confined chiefly to the coast. [[Thunderstorm]]s occur throughout the year, but are most common in the summer. The prevailing winds are from the south. [[Tropical cyclone|Hurricane]]s are quite common in the state, especially in the southern part, and major hurricanes occasionally strike the coast which can be very destructive.
70333
70334 As regards its soil, Alabama may be divided into four regions. Extending from the Gulf northward for about 150 miles (240 km) is the outer belt of the Coastal Plain, also called the ''Timber Belt,'' whose soil is sandy and poor, but responds well to fertilization. North of this is the inner lowland of the Coastal Plain, or the ''Black Prairie,'' which includes some 13,000 square miles and seventeen counties. It receives its name from its soil (weathered from the weak underlying limestone), which is black in colour, almost destitute of sand and loam, and rich in limestone and marl formations, especially adapted to the production of cotton; hence the region is also called the ''Cotton Belt.'' Between the ''Cotton Belt'' and the [[Tennessee Valley]] is the [[mineral]] region, the ''Old Land'' area -- a region of resistant rocks -- whose soils, also derived from weathering in silu, are of varied fertility, the best coming from the granites, sandstones and limestones, the poorest from the gneisses, schists and slates. North of the mineral region is the ''Cereal Belt,'' embracing the Tennessee Valley and the counties beyond, whose richest soils are the red clays and dark loams of the river valley; north of which are less fertile soils, produced by siliceous and sandstone formations.
70335
70336 ==Public lands==
70337 Alabama includes several types of public use lands:
70338
70339 * [[List of Alabama state parks|Alabama State Parks]]
70340
70341 Alabama has four national forests and one national preserve within its borders. They provide over 25% of the state's public recreation land. There is a national seashore that runs along the gulf coast, encompassing several islands and beachfront areas.
70342
70343 * [[United States National Monument|National Monument]]s
70344 ** [[Little River Canyon National Preserve]]
70345 ** [[Russell Cave National Monument]]
70346
70347 * [[National Forest]]s
70348 ** [[Conecuh National Forest]]
70349 ** [[Talladega National Forest]]
70350 ** [[Tuskegee National Forest]]
70351 ** [[William B. Bankhead National Forest]]
70352
70353 * [[U.S. Wilderness Area|Wilderness Area]]s
70354 ** [[Cheaha Wilderness]]
70355 ** [[Dugger Mountain Wilderness]]
70356 ** [[Sipsey Wilderness]]
70357
70358 * [[National Scenic Trail]]
70359 ** [[Natchez Trace Trail]]
70360
70361 * [[National Recreation Trail]]
70362 ** [[Pinhoti National Recreation Trail]]
70363
70364 * [[National Wildlife Refuge]]
70365 ** [[Bon Secour National Wildlife Refuge]]
70366 ** [[Cahaba River National Wildlife Refuge]]
70367 ** [[Choctaw National Wildlife Refuge]]
70368 ** [[Eufaula National Wildlife Refuge]]
70369 ** [[Fern Cave National Wildlife Refuge]]
70370 ** [[Key Cave National Wildlife Refuge]]
70371 ** [[Mountain Longleaf National Wildlife Refuge]]
70372 ** [[Sauta Cave National Wildlife Refuge]]
70373 ** [[Watercress Darter National Wildlife Refuge]]
70374 ** [[Wheeler National Wildlife Refuge]]
70375
70376 * [[National Seashore]]
70377 ** [[Gulf Islands National Seashore]]
70378
70379 ==See also==
70380 * [[Alabama]]
70381 * [[Geography of the United States]]
70382
70383 == External links ==
70384 * [http://www.gsa.state.al.us/ State of Alabama Geological Survey]
70385 * [http://tapestry.usgs.gov/states/alabama.html USGS - Tapestry of Time - Alabama]
70386 * [http://www.al.com/parks/north.html Summary of Alabama Park &amp; Recreation Sites]
70387 * [http://www.stateparks.com/al.html Interactive Map of Park &amp; Recreation Sites]
70388
70389 [[Category:Geography of Alabama| ]]</text>
70390 </revision>
70391 </page>
70392 <page>
70393 <title>List of governors of Alabama</title>
70394 <id>1286</id>
70395 <revision>
70396 <id>40359107</id>
70397 <timestamp>2006-02-20T01:16:18Z</timestamp>
70398 <contributor>
70399 <username>Rich Farmbrough</username>
70400 <id>82835</id>
70401 </contributor>
70402 <minor />
70403 <comment>External links per MoS.</comment>
70404 <text xml:space="preserve">The following is a list of the territorial and state governors of [[Alabama]].
70405
70406 ==Governor of [[Alabama Territory]]==
70407 [[William Wyatt Bibb]], served [[1817]]-[[1819]]
70408
70409 ==Governors of the State==
70410 &lt;br clear=&quot;all&quot;&gt;
70411 {| cellpadding=4 cellspacing=2
70412 |- bgcolor=#cccccc
70413 !Name!!Served!!Party
70414 |- bgcolor=#DDEEFF
70415 |[[William Wyatt Bibb]]&lt;sup&gt;1&lt;/sup&gt;
70416 |1819&amp;ndash;[[1820]]
70417 |[[Democratic Party (United States)|Democratic]]
70418 |- bgcolor=#DDEEFF
70419 |[[Thomas Bibb]]&lt;sup&gt;2&lt;/sup&gt;
70420 |1820&amp;ndash;[[1821]]
70421 |Democratic
70422 |- bgcolor=#DDEEFF
70423 |[[Israel Pickens]]
70424 |1821&amp;ndash;[[1825]]
70425 |Democratic
70426 |- bgcolor=#DDEEFF
70427 |[[John Murphy (Alabama)|John Murphy]]
70428 |1825&amp;ndash;[[1829]]
70429 |Democratic
70430 |- bgcolor=#DDEEFF
70431 |[[Gabriel Moore]]
70432 |1829&amp;ndash;[[1831]]
70433 |Democratic
70434 |- bgcolor=#DDEEFF
70435 |[[Samuel B. Moore]]&lt;sup&gt;3&lt;/sup&gt;
70436 |1831
70437 |Democratic
70438 |- bgcolor=#DDEEFF
70439 |[[John Gayle]]
70440 |1831&amp;ndash;[[1835]]
70441 |Democratic
70442 |- bgcolor=#DDEEFF
70443 |[[Clement C. Clay]]
70444 |1835&amp;ndash;[[1837]]
70445 |Democratic
70446 |- bgcolor=#DDEEFF
70447 |[[Hugh McVay]]&lt;sup&gt;4&lt;/sup&gt;
70448 |1837
70449 |Democratic
70450 |- bgcolor=#DDEEFF
70451 |[[Arthur P. Bagby]]
70452 |1837&amp;ndash;[[1841]]
70453 |Democratic
70454 |- bgcolor=#DDEEFF
70455 |[[Benjamin Fitzpatrick]]
70456 |1841&amp;ndash;[[1845]]
70457 |Democratic
70458 |- bgcolor=#DDEEFF
70459 |[[Joshua L. Martin]]
70460 |1845&amp;ndash;[[1847]]
70461 |Democratic
70462 |- bgcolor=#DDEEFF
70463 |[[Reuben Chapman]]
70464 |1847&amp;ndash;[[1849]]
70465 |Democratic
70466 |- bgcolor=#DDEEFF
70467 |[[Henry W. Collier]]
70468 |1849&amp;ndash;[[1853]]
70469 |Democratic
70470 |- bgcolor=#DDEEFF
70471 |[[John A. Winston]]
70472 |1853&amp;ndash;[[1857]]
70473 |Democratic
70474 |- bgcolor=#DDEEFF
70475 |[[Andrew B. Moore]]
70476 |1857&amp;ndash;[[1861]]
70477 |Democratic
70478 |- bgcolor=#DDEEFF
70479 |[[John Gill Shorter]]
70480 |1861&amp;ndash;[[1863]]
70481 |Democratic
70482 |- bgcolor=#DDEEFF
70483 |[[Thomas H. Watts]]
70484 |1863&amp;ndash;[[1865]]
70485 |Democratic
70486 |-
70487 |[[Lewis E. Parsons]]&lt;sup&gt;5&lt;/sup&gt;
70488 |1865
70489 |Provisional
70490 |- bgcolor=#FFE8E8
70491 |[[Robert M. Patton]]
70492 |1865&amp;ndash;[[1867]]
70493 |[[Republican Party (United States)|Republican]]
70494 |-
70495 |[[Wager Swayne]]&lt;sup&gt;6&lt;/sup&gt;
70496 |1867&amp;ndash;[[1868]]
70497 |Military
70498 |- bgcolor=#FFE8E8
70499 |[[William H. Smith]]
70500 |1868&amp;ndash;[[1870]]
70501 |Republican
70502 |- bgcolor=#DDEEFF
70503 |[[Robert B. Lindsay]]
70504 |1870&amp;ndash;[[1872]]
70505 |Democratic
70506 |- bgcolor=#FFE8E8
70507 |[[David P. Lewis]]
70508 |1872&amp;ndash;[[1874]]
70509 |Republican
70510 |- bgcolor=#DDEEFF
70511 |[[George S. Houston]]
70512 |1874&amp;ndash;[[1878]]
70513 |Democratic
70514 |- bgcolor=#DDEEFF
70515 |[[Rufus W. Cobb]]
70516 |1878&amp;ndash;[[1882]]
70517 |Democratic
70518 |- bgcolor=#DDEEFF
70519 |[[Edward A. O'Neal]]
70520 |1882&amp;ndash;[[1886]]
70521 |Democratic
70522 |- bgcolor=#DDEEFF
70523 |[[Thomas Seay]]
70524 |1886&amp;ndash;[[1890]]
70525 |Democratic
70526 |- bgcolor=#DDEEFF
70527 |[[Thomas G. Jones]]
70528 |1890&amp;ndash;[[1894]]
70529 |Democratic
70530 |- bgcolor=#DDEEFF
70531 |[[William C. Oates]]
70532 |1894&amp;ndash;[[1896]]
70533 |Democratic
70534 |- bgcolor=#DDEEFF
70535 |[[Joseph F. Johnston]]
70536 |1896&amp;ndash;[[1900]]
70537 |Democratic
70538 |- bgcolor=#DDEEFF
70539 |[[William D. Jelks]]&lt;sup&gt;7&lt;/sup&gt;
70540 |1900
70541 |Democratic
70542 |- bgcolor=#DDEEFF
70543 |[[William J. Samford]]
70544 |1900&amp;ndash;[[1901]]
70545 |Democratic
70546 |- bgcolor=#DDEEFF
70547 |[[William D. Jelks]]
70548 |1901&amp;ndash;[[1907]]
70549 |Democratic
70550 |- bgcolor=#DDEEFF
70551 |[[Russell Cunningham]]&lt;sup&gt;8&lt;/sup&gt;
70552 |[[1904]]&amp;ndash;[[1905]]
70553 |Democratic
70554 |- bgcolor=#DDEEFF
70555 |[[B. B. Comer]]
70556 |1907&amp;ndash;[[1911]]
70557 |Democratic
70558 |- bgcolor=#DDEEFF
70559 |[[Emmet O'Neal]]
70560 |1911&amp;ndash;[[1915]]
70561 |Democratic
70562 |- bgcolor=#DDEEFF
70563 |[[Charles Henderson]]
70564 |1915&amp;ndash;[[1919]]
70565 |Democratic
70566 |- bgcolor=#DDEEFF
70567 |[[Thomas Kilby]]
70568 |1919&amp;ndash;[[1923]]
70569 |Democratic
70570 |- bgcolor=#DDEEFF
70571 |[[William W. Brandon]]
70572 |1923&amp;ndash;[[1927]]
70573 |Democratic
70574 |- bgcolor=#DDEEFF
70575 |[[Charles McDowell]]&lt;sup&gt;9&lt;/sup&gt;
70576 |[[1924]]
70577 |Democratic
70578 |- bgcolor=#DDEEFF
70579 |[[Bibb Graves]]
70580 |1927&amp;ndash;[[1931]]
70581 |Democratic
70582 |- bgcolor=#DDEEFF
70583 |[[Benjamin M. Miller]]
70584 |1931&amp;ndash;[[1935]]
70585 |Democratic
70586 |- bgcolor=#DDEEFF
70587 |[[Bibb Graves]]
70588 |1935&amp;ndash;[[1939]]
70589 |Democratic
70590 |- bgcolor=#DDEEFF
70591 |[[Frank M. Dixon]]
70592 |1939&amp;ndash;[[1943]]
70593 |Democratic
70594 |- bgcolor=#DDEEFF
70595 |[[Chauncey Sparks]]
70596 |1943&amp;ndash;[[1947]]
70597 |Democratic
70598 |- bgcolor=#DDEEFF
70599 |[[Jim Folsom|James E. Folsom Sr.]]
70600 |1947&amp;ndash;[[1951]]
70601 |Democratic
70602 |- bgcolor=#DDEEFF
70603 |[[Gordon Persons]]
70604 |1951&amp;ndash;[[1955]]
70605 |Democratic
70606 |- bgcolor=#DDEEFF
70607 |[[Jim Folsom|James E. Folsom Sr.]]
70608 |1955&amp;ndash;[[1959]]
70609 |Democratic
70610 |- bgcolor=#DDEEFF
70611 |[[John Malcom Patterson|John Patterson]]
70612 |1959&amp;ndash;[[1963]]
70613 |Democratic
70614 |- bgcolor=#DDEEFF
70615 |[[George Wallace]]
70616 |1963&amp;ndash;[[1967]]
70617 |Democratic
70618 |- bgcolor=#DDEEFF
70619 |[[Lurleen Wallace]]&lt;sup&gt;10&lt;/sup&gt;
70620 |1967&amp;ndash;[[1968]]
70621 |Democratic
70622 |- bgcolor=#DDEEFF
70623 |[[Albert Brewer]]
70624 |1968&amp;ndash;[[1971]]
70625 |Democratic
70626 |- bgcolor=#DDEEFF
70627 |[[George Wallace]]
70628 |1971&amp;ndash;[[1979]]
70629 |Democratic
70630 |- bgcolor=#DDEEFF
70631 |[[Jere Beasley]]&lt;sup&gt;11&lt;/sup&gt;
70632 |[[1972]]
70633 |Democratic
70634 |- bgcolor=#DDEEFF
70635 |[[Fob James|Forrest H. &quot;Fob&quot; James Jr.]]
70636 |1979&amp;ndash;[[1983]]
70637 |Democratic
70638 |- bgcolor=#DDEEFF
70639 |[[George Wallace]]
70640 |1983&amp;ndash;[[1987]]
70641 |Democratic
70642 |- bgcolor=#FFE8E8
70643 |[[H. Guy Hunt]]
70644 |1987&amp;ndash;[[1993]]
70645 |Republican
70646 |- bgcolor=#DDEEFF
70647 |[[Jim Folsom, Jr.|James E. Folsom Jr.]]&lt;sup&gt;12&lt;/sup&gt;
70648 |1993&amp;ndash;[[1995]]
70649 |Democratic
70650 |- bgcolor=#FFE8E8
70651 |[[Fob James|Forrest H. &quot;Fob&quot; James Jr.]]
70652 |1995&amp;ndash;[[1999]]
70653 |Republican
70654 |- bgcolor=#DDEEFF
70655 |[[Don Siegelman]]
70656 |1999&amp;ndash;[[2003]]
70657 |Democratic
70658 |- bgcolor=#FFE8E8
70659 |[[Bob Riley (Alabama)|Robert R. Riley]]
70660 |2003&amp;mdash;
70661 |Republican
70662 |}
70663
70664 ==Notes==
70665 #William Wyatt Bibb was appointed as territorial governor; he was then elected first governor in 1819.
70666 #William Wyatt Bibb died in 1820, and his brother Thomas Bibb, then president of the state senate, filled the unexpired term.
70667 #In 1831, Governor Moore was elected to the [[United States Senate]], and Samuel Moore, the president of the state senate, filled the unexpired term.
70668 #In 1837, Governor Clay was appointed to the [[United States Senate]], and Hugh McVay, the president of the state senate, filled the unexpired term.
70669 #Lewis Parsons was appointed provisional governor by the [[Union (American Civil War)|Union]] occupation.
70670 #Wager Swayne was appointed military governor during [[Reconstruction]].
70671 #William Samford was out of state for 26 days at the beginning of his term seeking medical treatment, so William D. Jelks was acting governor.
70672 #Russell Cunningham was governor for nearly a year when governor William D. Jelks was out of state for medical treatment.
70673 #William W. Brandon was out of state for 21 days in 1924, and since the state constitution require the lieutenant governor to act as governor if the governor is out of the state for 20 days, Charles McDowell served two days as governor.
70674 #Lurleen Wallace, wife of George Wallace, died in 1968. Albert Brewer, the lieutenant governor, filled the unexpired term.
70675 #While campaigning for [[President of the United States]] in 1972, George Wallace was shot in an assassination attempt. After a few months of recovery in a [[Maryland]] hospital, Wallace resumed his duties as governor. Lieutenant Governor Jere Beasley served as governor for a month after Wallace had been out of the state for more than 20 days, as per the constitution.
70676 #H. Guy Hunt was removed from office upon conviction of illegally using campaign and inagural funds to pay personal debts. Lieutenant Governor [[Jim Folsom, Jr.|James E. Folsom Jr.]] filled the unexpired term.
70677
70678 Until 1845, the term of state officials was one year, from then until 1901 it was two years, and since 1901 it has been four years.
70679
70680 ==External links==
70681 [http://www.archives.state.al.us/govslist.html The Alabama Department of Archives &amp; History's List of Alabama Governors]
70682 {| border=&quot;1&quot; align=&quot;center&quot; style=&quot;text-align:center;&quot;
70683 |-
70684 |width=&quot;30%&quot;|Preceded by:&lt;br&gt;'''-'''
70685 |width=&quot;40%&quot;|'''[[Lists of United States Governors]]'''
70686 |width=&quot;30%&quot;|Succeeded by:&lt;br&gt;'''[[List of Governors of Alaska]]'''
70687 |}
70688 [[Category:Lists of United States governors|Alabama]]
70689 [[Category:Governors of Alabama|*]]
70690
70691 [[de:Liste der Gouverneure von Alabama]]
70692 [[fr:Liste des gouverneurs de l'Alabama]]
70693 [[nl:Lijst van gouverneurs van Alabama]]
70694 [[pl:Gubernatorzy stanu Alabama]]
70695 [[sl:Seznam guvernerjev Alabame]]</text>
70696 </revision>
70697 </page>
70698 <page>
70699 <title>Alabama/History</title>
70700 <id>1287</id>
70701 <revision>
70702 <id>15899777</id>
70703 <timestamp>2002-02-25T15:43:11Z</timestamp>
70704 <contributor>
70705 <username>LA2</username>
70706 <id>445</id>
70707 </contributor>
70708 <comment>*redirect to avoid subpages</comment>
70709 <text xml:space="preserve">#REDIRECT [[History of Alabama]]</text>
70710 </revision>
70711 </page>
70712 <page>
70713 <title>Apocrypha</title>
70714 <id>1288</id>
70715 <revision>
70716 <id>42145193</id>
70717 <timestamp>2006-03-04T02:56:47Z</timestamp>
70718 <contributor>
70719 <username>ASDamick</username>
70720 <id>153752</id>
70721 </contributor>
70722 <minor />
70723 <comment>rv</comment>
70724 <text xml:space="preserve">{{christianity}}
70725 '''Apocrypha''' is a [[Greek language|Greek]] word (ÎąĪ€ĪŒÎēĪĪ…Ī†Îą, neuter plural of ÎąĪ€ĪŒÎēĪĪ…Ī†ÎŋĪ‚), from ÎąĪ€ÎŋÎēĪĪ…Ī€Ī„ÎĩΚÎŊ, to hide away. Thus it connotes the idea of &quot;closed&quot; or &quot;hidden.&quot; (In this sense apocrypha is in contrast with [[apocalypse]], which means &quot;opened,&quot; &quot;revealed,&quot; or &quot;uncovered.&quot;) '''Apocryphon''' is the singular noun, '''apocrypha''' the plural noun, and '''apocryphal''' the adjective. These words are used to describe the character of a certain class of religiously oriented ancient writings.
70726
70727 By an analogy the term is extended to non-religious contexts to refer to questionable sources.
70728
70729 ==Non-religious usage==
70730 &lt;!-- I placed this small section on top, since the whole rest is religious subject --&gt;
70731 In everyday conversation, '''''apocryphal''''' typically denotes &quot;of highly questionable or no authenticity&quot;, when describing a story nevertheless frequently told and widely believed. In [[literature]], '''''apocrypha''''' are works that purport to have been created by somebody other than their real author, usually a famous figure, as in the case of the [[Ossian|Ossianic]] cycle invented by [[James Macpherson]].
70732
70733 ==Religious usage==
70734 In [[Judeo-Christian]] [[theology]], the word '''apocrypha''' refers to texts that are not considered [[Biblical canon|canonical]], part of [[Scripture|the Bible]], but are of roughly similar style and age as the accepted canonical Scriptures. [[Roman Catholic Church|Catholic]] and [[Orthodox Christianity|Orthodox Christian]] Bibles typically contain several texts not included in the Biblical canon by other Christians or by Judaism, who see them as apocryphal. Catholics and Orthodox consider these texts equally canonical as other books of the Bible, with Catholics terming them ''[[deuterocanon]]ical'' (from [[Greek language|Greek]]: &quot;second canon,&quot; or &quot;measuring rule&quot;).
70735
70736 R.M. Wilson wrote:
70737 :&quot;The Greek word ''apocryphos'' did not always have the disparaging sense which later became attached to it. In [[Gnosticism|Gnostic]] circles it was used of books the contents of which were too sacred to be divulged to the common herd, and it was in fact the [[heresy|heretical]] associations which it thus came to possess which led to its use as a term of disparagement. In the [[Nag Hammadi library]], for example, one document bears the title Apocryphon or Secret Book of John, another that of Apocryphon of James, and several Gnostic gospels contain solemn warnings against imparting their contents to any save the deserving, or for the sake of material gain.&quot;
70738 :&amp;mdash;from ''Studies in the Gospel of Thomas'' (the &quot;apocryphal&quot; [[Gospel of Thomas]])&lt;/blockquote&gt;
70739
70740 Apart from the broad sense mentioned in the first paragraph above, Protestants use the word &quot;apocrypha&quot;, in a narrow sense, of those books that they exclude from their canon of Scripture, but that other Churches view as canonical and venerate as divinely inspired, written under the influence of the Holy Spirit. Disagreement between Christian Churches is almost non-existent about the canon of the [[New Testament]], but the inclusion of some books in the [[Old Testament]] canon is disputed. Since many now considered these books to be of late composition, Protestant scholars sometimes call them &quot;intertestamental&quot;, i.e. intermediate between the Old and New Testaments, and hold that God imposed a period of silence, with no prophecy or Scripture, to prepare for the coming of [[Jesus]].
70741
70742 The [[Church of England]] takes an intermediate position; its 6th article of religion says of them &quot;the Church doth read for example of life and instruction of manners; but yet doth it not apply them to establish any doctrine&quot;.
70743
70744 The books that come under the description &quot;apocrypha&quot; in the broad sense but not in this narrow sense are called apocrypha by Catholics and Jews, but Protestants usually call them [[Pseudepigrapha]]. Many of them have [[Apocalypse|apocalyptic]] themes.
70745
70746 The history of the earlier usage of the term &quot;Apocrypha&quot; is not free from obscurity. We shall therefore enter at once on a short account of the origin of this literature in [[Judaism]], of its adoption by early [[Christianity]], of the various meanings which the term &quot;apocryphal&quot; assumed in the course of its history, and having so done we shall proceed to classify and deal with the books that belong to this literature. The word most generally denotes writings which claimed to be, or were by certain sects regarded as, sacred scriptures although excluded from the canonical scriptures.
70747
70748 ===Apocrypha in Judaism===
70749 Certain circles in Judaism, as the [[Essenes]] in Palestine (Josephus, ''B.J.'' ii. 8. 7) and the [[Therapeutae]] (Philo, ''De Vita Contempl.'' ii. 475, ed. Mangey) in Egypt possessed a secret literature. But such literature was not confined to the members of these communities, but had been current among the [[Chasids]] and their successors the [[Pharisees]]. (Judaism was long accustomed to lay claim to an esoteric tradition. Thus though it insisted on the exclusive canonicity of the 24 books, it claimed the possession of an [[oral law]] handed down from [[Moses]], and just as the apocryphal books overshadowed in certain instances the canonical scriptures, so often the oral law displaced the written in the regard of Judaism.) To this literature belong essentially the [[apocalyptic literature|apocalypses]] which were published in fast succession from [[Daniel]] onwards. These works bore, perforce, the names of ancient Hebrew worthies in order to procure them a hearing among the writers' real contemporaries. To reconcile their late appearance with their claims to primitive antiquity the alleged author is represented as &quot;shutting up and sealing&quot; (Dan. xii. 4, 9) the book, until the time of its fulfilment had arrived; for that it was not designed for his own generation but for far-distant ages (Ass. Mos. i. 16, 17). It is not improbable that with many Jewish enthusiasts this literature was more highly treasured than the canonical scriptures. Indeed, we have a categorical statement to this effect in 4 Ezra xiv. 44 sqq., which tells how Ezra was inspired to dictate the sacred scriptures which had been destroyed in the overthrow of Jerusalem: &quot;In forty days they wrote ninety-four books: and it came to pass when the forty days were fulfilled that the Highest spake, saying: the first that thou hast written publish openly that the worthy and unworthy may read it; but keep the seventy last that thou mayst deliver them only to such as be wise among the people; for in them is the spring of understanding, the fountain of wisdom and the stream of knowledge.&quot; Such esoteric books are apocryphal in the original conception of the term. In due course the Jewish authorities drew up a canon or book of sacred scriptures in response to Christianity; they marked other books off from those which claimed to be such without justification.
70750
70751 The true scriptures, according to the Jewish canon (Yad. iii. 5; Toseph. Yad. ii. 3), were those which defiled the hands of such as touched them. But other scholars, such as Zahn, SchÃŧrer, Porter, state that the secret books with which we have been dealing formed a class by themselves and were called &quot;Genuzim&quot; (גנוזים), and that this name and idea passed from Judaism over into the Greek, and that ÎąĪ€ÎŋÎēĪĪ…Ī†Îą βΚβÎģΚι is a translation of ספרים גנוזים. But the Hebrew verb does not mean &quot;to hide&quot; but &quot;to store away,&quot; and is only used of things in themselves precious. Moreover, the phrase is unknown in Talmudic literature. The derivation of this idea from Judaism has therefore not yet been established. Whether the Jews had any distinct name for these esoteric works we do not know. For writings that stood wholly without the pale of sacred books such as the books of heretics or Samaritans they used the designation Hisonim, Sanh. x. I (ספרים ח×Ļונים and ספרי המינים. To this class in later times even Sirach was relegated, and indeed all books not included in the canon (Midr. r. Num. 14 and on Koheleth xii. 12; cf. Jer. Sabb. 16). (See Porter in Hastings' ''Bible Dict.'' i. 113) In Aqiba's time Sirach and other apocryphal books were not reckoned among the Hisonim; for Sirach was largely quoted by rabbis in Palestine till the 3rd century A.D.
70752
70753 ===Apocrypha in Christianity===
70754 Christianity from [[Jesus]] had no secret or [[esoteric]] teaching. It was essentially the revelation or manifestation of the truth of God. But as Christianity took its origin from Judaism, it is not unnatural that a large body of Jewish ideas was incorporated in the system of Christian thought. The bulk of these in due course underwent transformation either complete or partial, but there was always a residuum of incongruous and inconsistent elements existing side by side with the essential truths of Christianity. This was no isolated phenomenon; for in every progressive period of the history of religion we have on the one side the doctrine of God advancing in depth and fullness: on the other we have [[cosmology|cosmological]], [[eschatology|eschatological]] and other survivals, which, however justifiable in earlier stages, are in unmistakable antagonism with the theistic beliefs of the time. The eschatology of a nation--and the most influential portion of Jewish and Christian apocrypha are eschatological--is always the last part of their religion to experience the transforming power of new ideas and new facts.
70755
70756 The contemporary religious literature of Judaism outside the canon was composed of apocryphal books, the bulk of which bore an apocalyptic character, and dealt with the coming of the Messianic kingdom. These naturally became the popular religious books of the rising Jewish-Christian communities, and were held by them in still higher esteem, if possible, than by the Jews. Occasionally these Jewish writings were re-edited or adapted to their new readers by Christian additions, but on the whole it was found sufficient to submit them to a system of reinterpretation in order to make them testify to the truth of Christianity and foreshadow its ultimate destinies. Christianity, moreover, moved by the same apocalyptic tendency as Judaism, gave birth to new Christian apocryphs, though, in the case of most of them, the subject matter was to a large extent traditional and derived from Jewish sources.
70757
70758 Another prolific source of apocryphal gospels, acts and apocalypses was Gnosticism. While the characteristic features of apocalyptic literature were derived from Judaism, those of Gnosticism sprang partly from Greek philosophy, partly from oriental religions. They insisted on an allegorical interpretation of the apostolic writings: they alleged themselves to be the guardians of a secret apostolic tradition and laid claim to prophetic inspiration. With them, as with the bulk of the Christians of the 1st and 2nd centuries, apocryphal books as such were highly esteemed. They were so designated by those who valued them. It was not till later times that the term became one of reproach.
70759
70760 We have remarked above that the Jewish apocrypha--especially the apocalyptic section and the host of Christian apocryphs--became the ordinary religious literature of the early Christians. And this is not strange seeing that of the former such abundant use was made by the writers of the New Testament. (The New Testament shows undoubtedly an acquaintance with several of the apocryphal books. Thus James i. 19 shows dependence on Sirach v. II, Hebrews i. 3 on Wisdom vii. 26, Hebrews xi. 35 on II Maccabees vi., Romans ix. 21 on Wisdom xv. 7, 2 Cor. v. 1, 4 on Wisdom ix. 15, &amp;c.) Thus [[Book of Jude|Jude]] quotes the [[Book of Enoch]] by name, while undoubted use of this book appears in the four gospels and 1 Peter. The influence of the [[Testaments of the Twelve Patriarchs]] is still more apparent in the Pauline Epistles and the Gospels, and the same holds true of Jubilees and the Assumption of Moses, though in a very slight degree. The genuineness and inspiration of Enoch were believed in by the writer of the Ep. of Barnabas, [[Irenaeus]], [[Tertullian]] and [[Clement of Alexandria]], and much of the early church. But the high position which apocryphal books occupied in the first two centuries was undermined by a variety of influences. All claims to the possession of a secret tradition were denied (Irenaeus ii. 27. 2, iii. 2. 1, 3. 1; Tertullian, ''Praescript.'' 22-27): true inspiration was limited to the apostolic age, and universal acceptance by the church was required as a proof of apostolic authorship. Under the action of such principles apocryphal books tended to pass into the class of spurious and heretical writings.
70761
70762 ==== Esoteric writings ====
70763 Turning now to the consideration of the word &quot;apocryphal&quot; itself, we find that in its earliest use it was applied in a laudatory sense to writings,which were kept secret because they were the vehicles of esoteric knowledge which was too profound or too sacred to be imparted to any save the initiated. Thus it occurs in a magical book of Moses, which has been edited from a Leiden papyrus of the 3rd or 4th century by Dieterich (Abraxas, 109). This book, which may be as old as the 1st century, is entitled: &quot;A holy and secret Book of Moses, called eighth, or holy&quot; (ΜĪ‰Ī…ĪƒÎĩĪ‰Ī‚ áŧąÎĩĪÎą βΚβÎģÎŋĪ‚ ÎąĪ€ÎŋÎēĪĪ…Ī†ÎŋĪ‚ ÎĩĪ€ÎšÎēÎąÎģÎŋĪ…ÎŧÎĩÎŊΡ ÎŋÎŗδÎŋΡ áŧĄ áŧÎŗΚι). The disciples of the Gnostic Prodicus boasted (Clem. Alex. ''Strom.'' i. 15. 69) that they possessed the
70764 secret (ÎąĪ€ÎŋÎēĪĪ…Ī†ÎŋĪ…Ī‚) books of Zoroaster. 4 Ezra is in its author's view a secret work whose value was greater than that of the canonical scriptures (xiv. 44 sqq.) because of its transcendent revelations of the future. It is in a like laudatory meaning that Gregory reckons the New Testament apocalypse as ÎĩÎŊ ÎąĪ€ÎŋÎēĪĪ…Ī†ÎŋΚĪ‚ (''Oratio in suam ordinationem'', iii. 549, ed. Migne; cf. Epiphanius, ''Haer.'' li. 3). The word enjoyed high consideration among the Gnostics (cf. Acts of Thomas, 10, 27, 44).
70765
70766 ==== Questionable writings ====
70767 But the word was applied to writings that were kept from public circulation not because of their transcendent, but of, their secondary or questionable value. Thus Origen distinguishes between writings which were read by the churches and apocryphal writings; ÎŗĪÎąĪ†Îˇ ÎŧΡ Ī†ÎĩĪÎŋÎŧÎĩÎŊΡ ÎŧÎĩ&amp;nu ÎĩÎŊ Ī„ÎŋΚĪ‚ ÎēÎŋΚÎŊÎŋΚĪ‚ ÎēιΚ δÎĩδΡÎŧÎŋĪƒÎšÎĩĪ…ÎŧÎĩÎŊÎŋΚĪ‚ βΚβÎģΚÎŋΚĪ‚ ÎĩΚÎēÎŋĪ‚ δ áŊĪ„Κ ÎĩÎŊ ÎąĪ€ÎŋÎēĪĪ…Ī†ÎŋΚĪ‚ Ī†ÎĩĪÎŋÎŧÎĩÎŊΡ (Origen's ''Comm. in Matt.'', x. 18, on Matt. xiii. 57, ed. Lommatzsch iii. 49 sqq.). Cf. ''Epist. ad Africam'', ix. (Lommatzsch xvii. 31): Euseb. ''H.E.'' ii. 23, 25; iii. 3, 6. See Zahn, ''Gesch. Kanons'', i. 126 sqq. Thus the
70768 meaning of ÎąĪ€ÎŋÎēĪĪ…Ī†ÎŋĪ‚ is here practically equivalent to &quot;excluded from the public use of the church,&quot; and prepares the way for the third and unfavourable sense of this word.
70769
70770 ==== Spurious writings ====
70771 The word came finally to mean what is false, spurious, bad, heretical. If we may trust the text, this meaning appears in Origen (''Prolog, in Cant. Cantic.'', Lommatzsch xiv. 325): &quot;De scripturis his, quae appellantur apocryphae, pro eo quod multa in iis corrupta et contra fidem veram inveniuntur a majoribus tradita non placuit iis dari locum nec admitti ad auctoritatem.&quot;
70772
70773 ==== Other meanings ====
70774 In addition to the above three meanings strange uses of the term appear in the western church. Thus the Gelasian Decree includes the works of Eusebius, Tertullian and Clement of Alexandria, under this designation. Augustine (''De Civ. Dei'', xv. 23) explains it as meaning obscurity of origin, while Jerome (''Protogus Galeatus'') declares that all books outside the Hebrew canon belong to this class of apocrypha. Jerome's practice, however, did not square with his theory. The western church did not accept Jerome's definition of apocrypha, but retained the word in its original meaning, though great confusion prevailed. Thus the degree of estimation in which the apocryphal books have been held in the church has varied much according to place and time. As they stood in the Septuagint or Greek canon, along with the other books, and with no marks of distinction, they were practically employed by the Greek Fathers in the same way as the other books; hence Origen, Clement and others often cite them as &quot;scripture,&quot; &quot;divine scripture,&quot; &quot;inspired,&quot; and the like. On the other hand, teachers connected with Palestine, and familiar with the Hebrew canon, rigidly exclude all but the books contained there. This view is reflected, for example, in the canon of Melito of Sardis, and in the prefaces and letters of Jerome. Augustine, however (''De Doct. Christ''. ii. 8), attaches himself to the other side. Two well-defined views in this way prevailed, to which was added a third, according to which the books, though not to be put in the same rank as the canonical scriptures of the Hebrew collection, yet were of value for moral uses and to be read in congregations,--and hence they were called &quot;ecclesiastical&quot;--a designation first found in Rufinus (''ob''. 410). Notwithstanding the decisions of some councils held in Africa, which were in favour of the view of Augustine, these diverse opinions regarding the apocryphal books continued to prevail in the church down through the ages till the great dogmatic era of the Reformation. At that epoch the same three opinions were taken up and congealed into dogmas, which may be considered characteristic of the churches adopting them. In 1546 the council of Trent adopted the canon of Augustine, declaring &quot;He is also to be anathema who does not receive these entire books, with all their parts, as they have been accustomed to be read in the Catholic Church, and are found in the ancient editions of the Latin Vulgate, as sacred and canonical.&quot; The whole of the books in question, with the exception of 1st and 2nd Esdras, and the Prayer of Manasses, were declared canonical at Trent. On the other hand, the Protestants universally adhered to the opinion that only the books in the Hebrew collection are canonical. Already Wycliffe had declared that &quot;whatever book is in the Old Testament besides these twenty-five (Hebrew) shall be set among the apocrypha, that is, without authority or belief.&quot; Yet among the churches of the Reformation a milder and a severer view prevailed regarding the apocrypha. Both in the German and English translations (Luther's, 1537; Coverdale's, 1535, &amp;c.) these books are separated from the others and set by themselves; but while in some confessions, ''e.g''. the Westminster, a decided judgment is passed on them, that they are not &quot;to be any otherwise approved or made use of than other human writings,&quot; a milder verdict is expressed regarding them in many other quarters, ''e.g''. in the &quot;argument&quot; prefixed to them in the Geneva Bible; in the Sixth Article of the Church of England, where it is said that &quot;the other books the church doth read for example of life and instruction of manners,&quot; though not to establish doctrine; and elsewhere.
70775
70776 == Old Testament apocryphal books ==
70777
70778 We shall now proceed to enumerate the apocryphal books: first the Apocrypha Proper, and next the rest of the Old and New Testament apocryphal literature.
70779
70780 === The Apocrypha Proper ===
70781 or the apocrypha of the Old Testament as considered by English-speaking Protestants, consists of the following books: 1 Esdras, 2 Esdras, Tobit, Judith, Additions to Esther, Wisdom of Solomon, Ecclesiasticus (Sirach), Baruch, Epistle of Jeremiah, Additions to Daniel (Prayer of Azariah, Song of the Three Holy Children, History of Susannah, and Bel &amp; the Dragon), Prayer of Manasseh, 1 Maccabees, 2 Maccabees. Thus the Apocrypha Proper constitutes the surplusage of the Vulgate or Bible of the Roman Catholic Church over the Hebrew Old Testament. Since this surplusage is in turn derived from the Septuagint, from which the old Latin version was translated, it thus follows that the difference between the Protestant and the Catholic Old Testament is, roughly speaking, traceable to the difference between the Palestinian and the Alexandrian canons of the Old Testament. But this is only true with certain reservations; for the Latin Vulgate was revised by Jerome according to the Hebrew, and, where Hebrew originals were wanting, according to the Septuagint. Furthermore, the Vulgate rejects 3 and 4 Maccabees and Psalm cli., which generally appear in the Septuagint, while the Septuagint and Luther's Bible reject 4 Ezra, which is found in the Vulgate and the Apocrypha Proper. Luther's Bible, moreover, rejects also 3 Ezra. It should further be observed that the Vulgate adds the Prayer of Manasses and 3 and 4 Ezra after the New Testament as apocryphal.
70782
70783 It is hardly possible to form any classification which is not open to some objection. In any case the classification must be to some extent provisional, since scholars are still divided as to the original language, date and place of composition of some of the books which must come under our classification. (Thus some of the additions to Daniel and the Prayer of Manasseh are most probably derived from a Semitic original written in Palestine, yet in compliance with the prevailing opinion they are classed under Hellenistic Jewish literature. Again, the Slavonic [[Book of Enoch|Enoch]] goes back undoubtedly in parts to a Semitic original, though most of it may have been written by a Greek Jew in Egypt.) We may, however, discriminate
70784 * the Palestinian and
70785 * the Hellenistic literature
70786 of the Old Testament, though even this distinction is open to serious objections. The former literature was generally written in Hebrew or Aramaic, and seldom in Greek; the latter naturally in Greek. Next, within these literatures we shall distinguish three or four classes according to the nature of the subject with which they deal. Thus the books of which we have to treat will be classed as:
70787 * Historical,
70788 * Legendary (Haggadic),
70789 * Apocalyptic,
70790 * Didactic or Sapiential.
70791
70792 The Apocrypha Proper then would be classified as follows:--
70793
70794 *Palestinian Jewish Literature
70795 **Historical
70796 ***1 (i.e. 3) Ezra.
70797 ***1 Maccabees.
70798 **Legendary
70799 ***Book of [[Baruch]]
70800 ***[[Book of Judith]]
70801 **Apocalyptic
70802 ***2 (i.e. 4) Ezra (see also [[Apocalyptic literature]])
70803 **Didactic
70804 ***Sirach (see [[Ecclesiasticus]])
70805 ***Tobit
70806 *Hellenistic Jewish Literature:--
70807 **Historical and Legendary
70808 ***Additions to [[Daniel]]
70809 ***Additions to [[Esther]]
70810 ***[[Epistle of Jeremy]]
70811 ***[[2 Maccabees]]
70812 ***Prayer of [[Manasses]]
70813 **Didactic
70814 ***[[Book of Wisdom]]
70815
70816 Since all these books are dealt with in separate articles, they call for no further notice here.
70817
70818 === References ===
70819 Texts:
70820 * Holmes and Parsons, ''Vet. Test. Graecum cum var. lectionibus'' (Oxford, 1798-1827)
70821 * Swete, ''Old Testament in Greek'', i.-iii. (Cambridge, 1887-1894)
70822 * Fritzsche, ''Libri Apocryphi V. T. Graece'' (1871).
70823 Commentaries:--
70824 * O. F. Fritzsche and Grimm, ''Kurzgef. exeget. Handbuch zu den Apok. des A.T''. (Leipzig, 1851-1860)
70825 * E. C. Bissell, ''Apocrypha of the Old Testament'' (Edinburgh, 1880)
70826 * Zockler, ''Apok. des A.T.'' (Munchen, 1891)
70827 * Wace, ''The Apocrypha'' (&quot;Speaker's Commentary&quot;) (1888).
70828 Introduction and General Literature:
70829 * E. SchÃŧrer, ''Geschichte des jud. Volkes'', vol. iii. 135 sqq., and his article on &quot;Apokryphen&quot; in Herzog's ''Realencykl''. i. 622-653
70830 * Porter in Hastings' ''Bible Dic''. i. 111-123.
70831
70832 == Other Old Testament apocryphal literature ==
70833 * Historical
70834 ** History of Johannes Hyrcanus.
70835 * Legendary
70836 ** Book of Jubilees
70837 ** Paralipomena Jeremiae, or the Rest of the Words of Baruch
70838 ** Martyrdom of Isaiah
70839 ** Pseudo-Philo's Liber Antiquitatum
70840 ** Books of Adam
70841 ** Jannes and Jambres
70842 ** Joseph and Asenath.
70843 * Apocalyptic
70844 ** (See [[Apocalyptic literature]])
70845
70846 === Historical ===
70847 ==== History of Johannes Hyrcanus ====
70848 The ''History of Johannes Hyrcanus'' is mentioned in 1 Macc. xvi. 23-24, but no trace has been discovered of its existence elsewhere. It must have early passed out of circulation, as it was unknown to Josephus.
70849
70850 === Legendary ===
70851 ==== Book of Jubilees ====
70852 The ''Book of Jubilees'' was written in Hebrew between the year of the accession of Hyrcanus to the high-priesthood in 135 and his breach with the Pharisees some years before his death in 105 B.C. ''Jubilees'' was translated into Greek and from Greek into Ethiopic and Latin. It is preserved in its entirety only in Ethiopic. ''Jubilees'' is the most advanced pre-Christian representative of the midrashic tendency, which was already at work in the Book of Chronicles. This is a rewriting of the book of Genesis and the early chapters of Exodus. His work constitutes an enlarged targum on these books, and its object is to prove the everlasting validity of the law, which, though revealed in time, was superior to time. Writing in the palmiest days of the Maccabean dominion, he looked for the immediate advent of the Messianic kingdom. This kingdom was to be ruled over by a Messiah sprung not from Judah but from Levi, that is, from the reigning Maccabean family. This kingdom was to be gradually realized on earth, the transformation of physical nature going hand in hand with the ethical transformation of man. (For a fuller account see [[Book of Jubilees]].)
70853
70854 ==== ''Paralipomena Jeremiae'', or the ''Rest of the Words of Baruch'' ====
70855 This book has been preserved in Greek, Ethiopic, Armenian and Slavonic. The Greek was first printed at Venice in 1609, and next by Ceriani in 1868 under the title ''Paralipomena Jeremiae''. It bears the same name in the Armenian, but in Ethiopic it is known by the second title. (See [[Baruch]].)
70856
70857 ==== Martyrdom of Isaiah ====
70858 This Jewish work has been in part preserved in the ''Ascension of Isaiah''. To it belong i. 1, 2a, 6b-13a; ii. 1-8, 10-iii. 12; v. 1c-14 of that book. It is of Jewish origin, and recounts the martyrdom of Isaiah at the hands of Manasseh. (See [[Ascension of Isaiah]])
70859
70860 ==== Pseudo-Philo's Liber Antiquitatum Biblicarum ====
70861 Though the Latin version of this book was thrice printed in the 16th century (in 1527, 1550 and 1599), it was practically unknown to modern scholars till it was recognized by [[F. C. Conybeare]] and discussed by Cohn in the ''Jewish Quarterly Review'', 1898, pp. 279-332. It is an Haggadic revision of the Biblical history from Adam to the death of Saul. Its chronology agrees frequently with the LXX. against that of the Massoretic text, though conversely in a few cases. The Latin is undoubtedly translated from the Greek. Greek words are frequently transliterated. While the LXX. is occasionally followed in its translation of Biblical passages, in others the Massoretic is followed against the LXX., and in one or two passages the text presupposes a text different from both. On many grounds Cohn infers a Hebrew original. The eschatology is similar to that taught in the similitudes of the [[Book of Enoch]]. In fact, Eth. En. li. 1 is reproduced in this connexion. Prayers of the departed are said to be valueless. The book was written after A.D. 70; for, as Cohn has shown, the exact date of the fall of Herod's temple is predicted.
70862
70863 ==== Life of Adam and Eve ====
70864 Writings dealing with this subject are extant in Greek, Latin, Slavonic, Syriac, Armenian and Arabic. They go back undoubtedly to a Jewish basis, but in some of the forms in which they appear at present they are christianized throughout. The oldest and for the most part Jewish portion of this literature is preserved to us in Greek, Armenian, Latin and Slavonic,
70865 # The Greek ΔιηÎŗΡĪƒÎšĪ‚ Ī€ÎĩĪÎš ΑδαÎŧ ÎēιΚ ΕĪ…ÎąĪ‚ (published under the misleading title ΑĪ€ÎŋÎēÎąÎģĪ…ĪˆÎšĪ‚ ΜĪ‰Ī…ĪƒÎĩĪ‰Ī‚ in Tischendorf's ''Apocalypses Apocryphae'', 1866) deals with the Fall and the death of Adam and Eve. Ceriani edited this text from a Milan MS. (''Monumenta Sacra et Profana'', v. i). This work is found also in Armenian, and has been published by the Mechitharist community in Venice in their ''Collection of Uncanonical Writings of the Old Testament'', and translated by Conybeare (''Jewish Quarterly Review'', vii. 216 sqq., 1895), and by Issaverdens in 1901.
70866 # The ''Vita Adae et Evae'' is closely related and in part identical with the ΔιηÎŗΡĪƒÎšĪ‚. It was printed by W. Meyer in ''Abh. d. MÃŧnch. Akad.'', Philos.-philol. Cl. xiv., 1878.
70867 # The Slavonic Adam book was published by Jajic along with a Latin translation (''Denkschr. d. Wien. Akad. d. Wiss.'' xlii., 1893). This version agrees for the most part with the ΔιηÎŗΡĪƒÎšĪ‚. It has, moreover, a section, §§ 28-39, which though not found in the ΔιηÎŗΡĪƒÎšĪ‚ is found in the ''Vita''.
70868 # :Before we discuss these three documents we shall mention other members of this literature, which, though derivable ultimately from Jewish sources, are Christian in their present form,
70869 # ''The Book of Adam and Eve'', also called the [[Conflict of Adam and Eve with Satan]], translated from the Ethiopic (1882) by Malan. This was first translated by Dillmann (''Das christl. Adambuch des Morgenlandes'', 1853), and the Ethiopic book first edited by Trump (''Abh. d. MÃŧnch. Akad.'' xv., 1870-1881).
70870 # A Syriac work entitled ''Die SchalzhÃļhle'' translated by Bezold from three Syriac MSS. in 1883 and subsequently edited in Syriac in 1888. This work has close affinities to the Conflict, but is said by Dillmann to be more original,
70871
70872 Armenian books on the ''Death of Adam'' (''Uncanonical Writings of O.T.'' pp. 84 sqq., 1901, translated from the Armenian), ''Creation and Transgression of Adam'' (op. cit. 39 sqq.), ''Expulsion of Adam from Paradise'' (op. cit. 47 sqq.), ''Penitence of Adam and Eve'' (op. cit. 71 sqq.) are mainly later writings from Christian hands.
70873
70874 Returning to the question of the Jewish origin of ΔιηÎŗΡĪƒÎšĪ‚, ''Vita'', Slavonic Adam book, we have already observed that these spring from a common original. As to the language of this original, scholars are divided. The evidence, however, seems to be strongly in favour of Hebrew. How otherwise are we to explain such Hebraisms (or Syriacisms) as ÎĩĪ…Ī‰ áŋĨÎĩÎĩΚ Ī„Îŋ áŧ‘ÎģιΚÎŋÎŊ ÎĩΞ ÎąĪ…Ī„Îŋ&amp;upsilon (§ 9), ÎŋáŊ‘ ÎĩΚĪ€ÎĩÎŊ... ÎŧΡ Ī†ÎąÎŗÎĩΚÎŊ ÎąĪ€ ÎąĪ…Ī„ÎŋĪ… (§ 21). For others see §§ 23, 33. Moreover, as Fuchs has pointed out, in the words áŧ‘ĪƒÎˇ ÎĩÎŊ ÎŧÎąĪ„ιΚÎŋΚĪ‚ addressed to Eve (§ 25) there is a corruption of חבליס into הבליס. Thus the words were: &quot;Thou shalt have pangs.&quot; In fact, Hebraisms abound throughout this book. (See Fuchs, ''Apok. u. Pseud, d. A.T.'' ii. 511; ''Jewish Encyc.'' i. 179 sq.)
70875
70876 ==== Jannes and Jambres ====
70877 These two men are referred to in 2 Tim. iii. 8 as the Egyptian magicians who withstood Moses. The book which treats of them is mentioned by Origen (''ad Matt.'' xxiii. 37 and xxvii. 9 [''Jannes et Mambres Liber'']), and in the Gelasian Decree as the ''Paenitentia Jamnis et Mambre''. The names in Greek are generally ΙαÎŊÎŊΡĪƒ ÎēιΚ ΙαÎŧβĪÎˇĪ‚ (=יניס וימבריס) as in the Targ.-Jon. on Exod. i. 15; vii. ii. In the Talmud they appear as יוחני וממרא. Since the western text of 2 Tim. iii. 8 has ΜαÎŧβĪÎˇĪ‚, Westcott and Hort infer that this form was derived from a Palestinian source. These names were known not only to Jewish but also to heathen writers, such as Pliny and Apuleius. The book, therefore, may go back to pre-Christian times. (See SchÃŧrer iii. 292-294; ''Ency. Biblica'', ii. 2327-2329.)
70878
70879 ==== Joseph and Asenath ====
70880 The statement in Gen. xli. 45, 50 that Joseph married the daughter of a heathen priest naturally gave offence to later Judaism, and gave rise to the belief that Asenath was really the daughter of Shechem and Dinah, and only the foster-daughter of Potipherah (''Targ.-Jon.'' on Gen. xli. 45; Tractat. ''Sopherim'', xxi. 9; ''Jalkut Shimoni'', c. 134. See Oppenheim, ''Fabula Josephi et Asenethae'', 1886, pp. 2-4). Origen also was acquainted with some form of the legend (''Selecta in Genesin'', ad Gen. xli. 45, ed. Lommatzsch, viii. 89-90). The Christian legend, which is no doubt in the main based on the Jewish, is found in Greek, Syriac, Armenian, Slavonic and Medieval Latin. Since it is not earlier than the 3rd or 4th century, it will be sufficient here to refer to Smith's ''Dict. of Christ. Biog.'' i. 176-177; Hastings' ''Bible Dict.'' i. 162-163; SchÃŧrer, iii. 289-291.
70881
70882 === Didactic or Sapiential ===
70883 ==== Pirke Aboth ====
70884 The ''Pirke Aboth'', a collection of sayings of the Jewish Fathers, are preserved in the 9th Tractate of the Fourth Order of the Mishnah. They are attributed to some sixty Jewish teachers, belonging for the most part to the years A.D. 70-170, though a few of them are of a much earlier date. The book holds the same place in rabbinical literature as the Book of Proverbs in the Bible. The sayings are often admirable. Thus in iv. 1-4, &quot;Who is wise? He that learns from every man.... Who is mighty? He that subdues his nature.... Who is rich? He that is contented with his lot.... Who is honoured? He that honours mankind.&quot; (See further [[Pirke Aboth]].)
70885
70886 == New Testament apocryphal literature ==
70887
70888 [[New Testament apocrypha]] &amp;mdash; books similar to those in the [[New Testament]] but rejected by Catholics, Orthodox and Protestants &amp;mdash; include several gospels and lives of apostles. Some of them were clearly produced by [[Gnosticism|Gnostic]] authors or members of other groups later defined as [[heresy|heterodox]]. Many were discovered in the [[19th century|19th]] and [[20th century|20th centuries]], and produced lively speculation about the state of affairs in early [[Christianity]].
70889
70890 Though Protestants, Catholics and, in general, Orthodox agree on the canon of the [[New Testament]], the [[Ethiopian Orthodox]] are reported by some scholars to add [[Epistles of Clement|I &amp; II Clement]], and [[Shepherd of Hermas]] to the [[New Testament]]. Others deny this. See [http://www.islamic-awareness.org/Bible/Text/Canon/ethiopican.html this link] for details.
70891
70892 [[Martin Luther (religious leader)|Martin Luther]] considered the [[Epistle of James]] apocryphal, because he highly doubted its authorship by any of the several New Testament figures named James, and because it contains a statement that seemed to contradict his teachings of [[Salvation#Christian views of salvation|Salvation]] by faith alone: &quot;Faith without works is dead&quot; (2:26). He had a similar feeling about the [[Epistle to the Hebrews]], the [[Epistle of Jude]] and the [[Book of Revelation|Revelation]], and relegated those four books to an appendix in his Bible. Later [[Lutherans]] included these books as full parts in their New Testament, but kept them behind all the other books. The Lutheran New Testament (at least in [[German language|German]]) is thus arranged slightly differently from that of most other Churches.
70893
70894 The New Testament apocryphal book that is most famous today is the [[Gospel of Thomas]], the only complete text of which was found in [[Nag Hammadi]] along with other works, most of which were New Testament apocrypha. The entry on [[Gnosticism]] lists more recovered texts considered to be of Gnostic origin.
70895
70896 While the New Testament apocrypha are not seen as divinely inspired, artists and theologians have drawn on them for such matters as the names of [[Dismas]] and [[Gestas]] and details about the [[Three Wise Men]]. The first explicit expression on the [[perpetual virginity of Mary]] is found in the pseudepigraphical [[Infancy Gospel of James]].
70897
70898 An extensive online archive of New Testament Apocrypha is available at
70899 [http://www.comparative-religion.com/christianity/apocrypha/ www.comparative-religion.com/christianity/apocrypha/] and comprises more than 80 works, including fragments.
70900
70901 Among the New Testament Apocrypha are the following:
70902
70903 * Gospels
70904 ** Uncanonical sayings of the Lord in Christian and Jewish writings.
70905 ** [[Gospel according to the Egyptians]].
70906 ** [[Gospel according to the Hebrews]].
70907 ** [[Protevangel of James]].
70908 ** [[Gospel of Nicodemus]].
70909 ** [[Gospel of Peter]].
70910 ** [[Gospel of Thomas]].
70911 ** [[Gospel of the Twelve]].
70912 ** Gnostic gospels of [[Saint Andrew|Andrew]], [[Apelles]], [[Barnabas]], [[Bartholomew]], [[Basilides]], [[Cerinthus]] and some seventeen others.
70913 * Acts and Teachings of the Apostles
70914 ** [[Acts of Andrew]] and later forms of these Acts.
70915 ** [[Acts of John]].
70916 ** [[Acts of Paul]].
70917 ** [[Acts of Peter]].
70918 ** [[Preaching of Peter]].
70919 ** [[Acts of Thomas]].
70920 ** [[Teaching of the Twelve Apostles]].
70921 ** Apostolic constitutions.
70922
70923 * Epistles
70924 ** [[The Abgar Epistles]].
70925 ** [[Epistle of Barnabas]].
70926 ** [[Epistle of Clement]].
70927 ** &quot;Clement's&quot; [[2nd Epistle of the Corinthians]].
70928 ** &quot;Clement's&quot; [[Epistles on Virginity]].
70929 ** &quot;Clement's&quot; [[Epistles to James]].
70930 ** [[Epistles of Ignatius]].
70931 ** [[Epistle of Polycarp]].
70932 ** Pauline Epp. to the Laodiceans and Alexandrians.
70933 ** 3 Pauline Ep. to the Corinthians.
70934 * Apocalypses
70935 ** see under [[Apocalyptic literature]]
70936
70937 ''See also: '' [[New Testament Apocrypha]], a listing of books rejected by most Christians.
70938
70939 === Gospels ===
70940 ==== Uncanonical Sayings of the Lord in Christian and Jewish Sources ====
70941 ''Main Article: [[Agrapha]]''
70942
70943 Under the head of canonical sayings not found in the Gospels only one is found, i.e. that in Acts xx. 35. The uncanonical sayings have been collected by Preuschen (''Reste der ausserkanonischen Evangelien'', 1901, pp. 44-47) and Hennecke (''NTliche Apok.'' 9-11). The same subject is dealt with in the elaborate volumes of Resch (''Aussercanonische Paralleltexte zu den Evangelien'', vols. i.-iii., 1893-1895).
70944
70945 To this section belongs also the ''Fayum Gospel Fragment'' and the ''Logia'' published by Grenfell and Hunt. [These editors have discovered (1907) a gospel fragment of the 2nd century which represents a dialogue between our Lord and a chief priest--a Pharisee.] The former contains two sayings of Christ and one of Peter, such as we find in the canonical gospels, Matt. xxvi. 31-34, Mark xiv. 27-30. The papyrus, which is of the 3rd century, was discovered by [[Gustav Bickell]] among the Rainer collection, who characterized it (''Z. f. kath. Theol.'', 1885, pp. 498-504) as a fragment of one of the primitive gospels mentioned in Luke i. 1. On the other hand, it has been contended that it is merely a fragment of an early patristic homily. (See [[Zahn]], ''Gesch. Kanons'', ii. 780-790; [[Harnack]], ''Texte und Untersuchungen'', v. 4; [[Preuschen]], op. cit. p. 19.) The ''[[Logia]]'' is the name given to the sayings contained in a papyrus leaf, by its discoverers Grenfell and Hunt. They think the papyrus was probably written about A.D. 200. According to Harnack, it is an extract from the ''Gospel of the Egyptians''. All the passages referring to Jesus in the Talmud are given by [[Laible]], ''Jesus Christus im Talmud'', with an appendix, &quot;Die talmudischen Texte,&quot; by [[Gustaf Dalman]] (2nd ed. 1901). The first edition of this work was translated into English by [[A. W. Streane]] (''Jesus Christ in the Talmud'', 1893). In [[Hennecke]]'s ''NTliche Apok. Handbuch'' (pp.47-71) there is a valuable study of this question by [[A. Meyer]], entitled ''Jesus, Jesu JÃŧnger und das Evangelium im Talmud und verwandten jÃŧdischen Schriften'', to which also a good bibliography of the subject is prefixed.
70946
70947 ==== Gospel according to the Egyptians ====
70948 This gospel is first mentioned by [[Clem. Alex.]] (''Strom.'' iii. 6. 45; 9. 63, 66; 13. 92), subsequently by [[Origen]] (''Hom. in Luc.'' i.) and [[Epiphanius]] (''Haer.'' lxii. 2), and a fragment is preserved in the so-called 2 Clem. Rom. xii. 2. It circulated among various heretical circles; amongst the [[Encratites]] (Clem. ''Strom.'' iii. 9), the [[Nassenes]] (Hippolyt. ''Philos.'' v. 7), and the [[Sabellians]] (Epiph. ''Haer.'' lxii. 2). Only three or four fragments survive; see [[Lipsius]] (Smith and [[Wace]], ''Dict. of Christ. Biog.'' ii. 712, 713); Zahn, ''Gesch. Kanons'', ii. 628-642; Preuschen, ''Reste d. ausserkanonischen Evangelien'', 1901, p. 2, which show that it was a product of [[pantheistic]] [[Gnosticism]]. With this pantheistic Gnosticism is associated a severe asceticism. The distinctions of sex are one day to come to an end; the prohibition of marriage follows naturally on this view. Hence Christ is represented as coming to destroy the work of the female (Clem. Alex. ''Strom.'' iii. 9. 63). Lipsius and Zahn assign it to the middle of the 2nd century. It may be earlier.
70949
70950 ==== Protevangel of James ====
70951 This title was first given in the 16th century to a writing which is referred to as ''The Book of James'' (áŧĄ βΚβÎģÎŋĪ‚ ΙαÎēÎŋβĪ‰Ī…) by Origen (tom. xi. ''in Matt.''). Its author designates it as áŧšĪƒĪ„ÎŋĪÎšÎą. For various other designations see [[Tischendorf]], ''Evang. Apocr.'' 1 seq. The narrative extends from the Conception of the Virgin to the Death of Zacharias. Lipsius shows that in the present form of the book there is side by side a strange &quot;admixture of intimate knowledge and gross ignorance of Jewish thought and custom,&quot; and that accordingly we must &quot;distinguish between an original Jewish Christian writing and a Gnostic recast of it.&quot; The former was known to Justin (''Dial.'' 78, 101) and Clem. Alex. (''Strom.'' vii. 16), and belongs at latest to the earliest years of the 2nd century. The Gnostic recast Lipsius dates about the middle of the 3rd century. From these two works arose independently the ''Protevangel'' in its present form and the Latin pseudo-Matthaeus (''Evangelium pseudo-Matthaei''). The ''Evangelium de Nativitate Mariae'' is a redaction of the latter. (See Lipsius in Smith's ''Dict. of Christ. Biog.'' ii. 701-703.) But if we except the Zachariah and John group of legends, it is not necessary to assume the Gnostic recast of this work in the 3rd century as is done by Lipsius. The author had at his disposal two distinct groups of legends about Mary. One of these groups is certainly of non-Jewish origin, as it conceives Mary as living in the temple somewhat after the manner of a vestal virgin or a priestess of Isis. The other group is more in accord with the orthodox gospels. The book appears to have been written in Egypt, and in the early years of the 2nd century. For, since Origen states that many appealed to it in support of the view that the brothers of Jesus were sons of Joseph by a former marriage, the book must have been current about A.D. 200. From Origen we may ascend to Clem. Alex. who (''Strom.'' vi. 93) shows acquaintance with one of the chief doctrines of the book--the perpetual virginity of Mary. Finally, as Justin's statements as to the birth of Jesus in a cave and Mary's descent from David show in all probability his acquaintance with the book, it may with good grounds be assigned to the first decade of the 2nd century. (So Zahn, ''Gesch. Kanons'', i. 485, 499, 502, 504, 539; ii. 774-780.) For the Greek text see Tischendorf, ''Evang. Apocr.'' 1-50; B. P. Grenfell, ''An Alexandrian erotic Fragment and other Papyri'', 1896, pp. 13-17: for the Syriac, Wright, ''Contributions to Apocryphal Literature of the N.T.'', 1865, pp. 3-7; A. S. Lewis, ''Studia Sinaitica'', xi. pp. 1-22. See literature generally in Hennecke, ''NTliche Apok. Handbuch'', 106 seq.
70952
70953 ==== Gospel of Nicodemus ====
70954 This title is first met with in the 13th century. It is used to designate an apocryphal writing entitled in the older MSS. áŊ‘Ī€ÎŋÎŊΡÎŧÎąĪ„Îą Ī„ÎŋĪ… ΚĪ…ĪÎšÎŋĪ… áŧĄÎŧĪ‰ÎŊ ΙηĪƒÎŋĪ… ΧĪÎšĪƒĪ„ÎŋĪ… Ī€ĪÎąĪ‡Î¸ÎĩÎŊĪ„Îą ÎĩĪ€Îš ΠÎŋÎŊĪ„ΚÎŋĪ… ΠΚÎģÎąĪ„ÎŋĪ…: also &quot;Gesta Salvatoris Domini... inventa Theodosio magno imperatore in Ierusalem in praetorio Pontii Pilati in codicibus publicis.&quot; See Tischendorf, ''Evang. Apocr.'' pp. 333-335. This work gives an account of the Passion (i.-xi.), the Resurrection (xii.-xvi.), and the ''Descensus ad Inferos'' (xvii.-xxvii.). Chapters i.-xvi. are extant, in the Greek, Coptic, and two Armenian versions. The two Latin versions and a Byzantine recension of the Greek contain i.-xxvii. (see Tischendorf, ''Evangelia Apocrypha'', pp. 210-458). All known texts go back to A. D. 425, if one may trust the reference to Theodosius. But this was only a revision, for as early as 376 Epiphanius (''Haer.'' i. 1.) presupposes the existence of a like text. In 325 Eusebius (''H.E.'' ii. 2) was acquainted only with the heathen ''Acts of Pilate'', and knew nothing of a Christian work. Tischendorf and Hofmann, however, find evidence of its existence in Justin's reference to the áŧ‰ÎēĪ„Îą ΠΚÎģÎąĪ„ÎŋĪ… (''Apol.'' i. 35, 48), and in Tertullian's mention of the ''Acta Pilati'' (''Apol.'' 21), and on this evidence attribute our texts to the first half of the 2nd century. But these references have been denied by Scholten, Lipsius, and Lightfoot. Recently Schubert has sought to derive the elements which are found in the Petrine Gospel, but not in the canonical gospels, from the original ''Acta Pilati'', while Zahn exactly reverses the relation of these two works. Rendel Harris (1899) advocated the view that the Gospel of Nicodemus, as we possess it, is merely a prose version of the Gospel of Nicodemus written originally in Homeric centones as early as the 2nd century. Lipsius and DobschÃŧtz relegate the book to the 4th century. The question is not settled yet (see Lipsius in Smith's ''Dict. of Christ. Biography'', ii. 708-709, and DobschÃŧtz in Hastings' ''Bible Dictionary'', iii. 544-547).
70955
70956 ==== Gospel according to the Hebrews ====
70957 This gospel was cited by Ignatius (''Ad Smyrnaeos'', iii.) according to Jerome (''Viris illus.'' 16, and ''in Jes.'' lib. xviii.), but this is declared to be untrustworthy by Zahn, op. cit. i. 921; ii. 701, 702. It was written in Aramaic in Hebrew letters, according to Jerome (''Adv. Pelag.'' iii. 2), and translated by him into Greek and Latin. Both these translations are lost. A collection of the Greek and Latin fragments that have survived, mainly in Origen and Jerome, will be found in Hilgenfeld's ''NT extra Canonem receptum'', Nicholson's ''Gospel according to the Hebrews'' (1879), Westcott's ''Introd. to the Gospels'', and Zahn's ''Gesch. des NTlichen Kanons'', ii. 642-723; Preuschen, op. cit. 3-8. This gospel was regarded by many in the first centuries as the Hebrew original of the canonical Matthew (Jerome, ''in Matt.'' xii. 13; ''Adv. Pelag.'' iii. 1). With the canonical gospel it agrees in some of its sayings; in others it is independent. It circulated among the Nazarenes in Syria, and was composed, according to Zahn (op. cit. ii. 722), between the years 135 and 150. Jerome identifies it with the ''Gospel of the Twelve'' (''Adv. Pelag.'' iii. 2), and states that it was used by the Ebionites (''Comm. in Matt.'' xii. 13). Zahn (op. cit. ii. 662, 724) contests both these statements. The former he traces to a mistaken interpretation of Origen (''Hom. I. in Luc.''). Lipsius, on the other hand, accepts the statements of Jerome (Smith and Wace, ''Dict. of Christian Biography'', ii. 709-712), and is of opinion that this gospel, in the form in which it was known to Epiphanius, Jerome and Origen, was &quot;a recast of an older original,&quot; which, written originally in Aramaic, was nearly related to the Logia used by St Matthew and the Ebionitic writing used by St Luke, &quot;which itself was only a later redaction of the Logia.&quot;
70958
70959 According to the most recent investigations we may conclude that the Gospel according to the Hebrews was current among the Nazarenes and Ebionites as early as 100-125, since Ignatius was familiar with the phrase &quot;I am no bodiless demon&quot;--a phrase which, according to Jerome (''Comm. in Is.'' xviii.), belonged to this Gospel.
70960
70961 The name &quot;Gospel according to the Hebrews&quot; cannot have been original; for if it had been so named because of its general use among the Hebrews, yet the Hebrews themselves would not have used this designation. It may have been known simply as &quot;the Gospel.&quot; The language was Western Aramaic, the mother tongue of Jesus and his apostles. Two forms of Western Aramaic survive: the Jerusalem form of the dialect, in the Aramaic portions of Daniel and Ezra; and the Galilean, in isolated expressions in the Talmud (3rd century), and in a fragmentary 5th century translation of the Bible. The quotations from the Old Testament are made from the Massoretic text.
70962
70963 This gospel must have been translated at an early date into Greek, as Clement and Origen cite it as generally accessible, and Eusebius recounts that many reckoned it among the received books. The gospel is synoptic in character and is closely related to Matthew, though in the Resurrection accounts it has affinities with Luke. Like Mark it seems to have had no history of the birth of Christ, and to have begun with the baptism. (For the literature see Hennecke, ''NTliche Apok. Handbuch'', 21-23.)
70964
70965 ==== [[Gospel of Peter]] ====
70966 Before 1892 we had some knowledge of this gospel. Thus Serapion, bishop of Antioch (A.D. 190-203) found it in use in the church of Rhossus in Cilicia, and condemned it as Docetic (Eusebius, ''H.E.'' vi. 12). Again, Origen (''In Matt.'' tom. xvii. 10) says that it represented the brethren of Christ as his half-brothers. In 1885 a long fragment was discovered at Akhmim, and published by Bouriant in 1892, and subsequently by Lods, Robinson, Harnack, Zahn, Schubert, Swete.
70967
70968 ==== Gospel of Thomas ====
70969 This gospel professes to give an account of Christ's boyhood. It appears in two recensions. The more complete recension bears the title ΘĪ‰ÎŧÎą ΙĪƒĪÎąÎˇÎģΚĪ„ÎŋĪ… ÎĻΚÎģÎŋĪƒÎŋĪ†ÎŋĪ… áŋĨΡĪ„Îą ÎĩΚĪ‚ Ī„Îą Ī€ÎąÎšÎ´ÎšÎēÎą ΚĪ…ĪÎšĪ…, and treats of the period from the 7th to the 12th year (Tischendorf, ''Evangelia Apocrypha'', 1876, 140-157). The more fragmentary recension gives the history of the childhood from the 5th to the 8th year, and is entitled ÎŖĪ…ÎŗÎŗĪÎąÎŧÎŧÎą Ī„ÎŋĪ… áŧÎŗΚÎŋĪ… ÎąĪ€ÎŋĪƒĪ„ÎŋÎģÎŋĪ… ΘĪ‰ÎŧÎą Ī€ÎĩĪÎš Ī„ΡĪ‚ Ī€ÎąÎšÎ´ÎšÎēΡĪ‚ ÎąÎŊÎąĪƒĪ„ĪÎŋĪ†ÎˇĪ‚ Ī„ÎŋĪ… ΚĪ…ĪÎšÎŋĪ… (Tischendorf, op. cit. pp. 158-163). Two Latin translations have been published in this work by the same scholar--one on pp. 164-180, the other under the wrong title, ''Pseudo-Matthaei Evangelium'', on pp. 93-112. A Syriac version, with an English translation, was published by Wright in 1875. This gospel was originally still more Docetic than it now is, according to Lipsius. Its present form is due to an orthodox revision which discarded, so far as possible, all Gnostic traces. Lipsius (Smith's ''Dict. of Christ. Biog.'' ii. 703) assigns it to the latter half of the 2nd century, but Zahn (''Gesch. Kan.'' ii. 771), on good grounds, to the earlier half. The latter scholar shows that probably it was used by Justin (''Dial.'' 88). At all events it circulated among the Marcosians (Irenaeus, ''Haer.'' i. 20) and the Naasenes (Hippolytus, ''Refut.'' v. 7), and subsequently among the Manichaeans, and is frequently quoted from Origen downwards (''Hom. I. in Luc.''). If the stichometry of Nicephorus is right, the existing form of the book is merely fragmentary compared with its original compass. For literature see Hennecke, ''NTliche Apokryphen Handbuch'', 132 seq.
70970
70971 ==== Gospel of the Twelve ====
70972 This gospel, which Origen knew (''Hom. I. in Luc.''), is not to be identified with the ''Gospel according to the Hebrews'' (see above), with Lipsius and others, who have sought to reconstruct the original gospel from the surviving fragments of these two distinct works. The only surviving fragments of the ''Gospel of the Twelve'' have been preserved by Epiphanius (''Haer.'' xxx. 13-16, 22: see Preuschen, op. cit. 9-11). It began with an account of the baptism. It was used by the Ebionites, and was written, according to Zahn (op. cit. ii. 742), about A.D. 170.
70973
70974 ==== Other gospels mainly Gnostic and almost all lost ====
70975 ===== Gospel of Andrew =====
70976 This is condemned in the Gelasian Decree, and is probably the gospel mentioned by Innocent (1 Ep. iii. 7) and Augustine (''Contra advers. Leg. et Proph.'' i. 20).
70977
70978 ===== Gospel of Apelles =====
70979 Mentioned by Jerome in his ''Prooem. ad Matt.''
70980
70981 ===== Gospel of Barnabas =====
70982 Condemned in the Gelasian Decree (see under [[Barnabas]] ''ad fin''.).
70983
70984 ===== Gospel of Bartholomew =====
70985 Mentioned by Jerome in his ''Prooem. ad Matt.'' and condemned in the Gelasian Decree.
70986
70987 ===== Gospel of Basilides =====
70988 Mentioned by Origen (''Tract. 26 in Matt.'' xxxiii. 34, and in his ''Prooem. in Luc.''); by Jerome in his ''Prooem. in Matt.'' (See Harnack i. 161; ii. 536-537; Zahn, ''Gesch. Kanons'', i. 763-774.)
70989
70990 ===== Gospel of Cerinthus =====
70991 Mentioned by Epiphanius (''Haer.'' li. 7).
70992
70993 ===== Gospel of the Ebionites =====
70994 A fragmentary edition of the canonical Matthew according to Epiphanius (''Haer.'' xxx. 13), used by the Ebionites and called by them the Hebrew Gospel.
70995
70996 ===== Gospel of Eve =====
70997 A quotation from this gospel is given by Epiphanius (''Haer.'' xxvi. 2, 3). It is possible that this is the Gospel of Perfection which he touches upon in xxvi. 2. The quotation shows that this gospel was the expression of complete pantheism.
70998
70999 ===== Gospel of James the Less =====
71000 Condemned in the Gelasian Decree.
71001
71002 ===== Wisdom of Jesus Christ =====
71003 This third work contained in the Coptic MS. referred to under ''Gospel of Mary'' gives cosmological disclosures and is presumably of Valentinian origin.
71004
71005 ===== Apocryph of John =====
71006 This book, which is found in the Coptic MS. referred to under ''Gospel of Mary'' and contains cosmological disclosures of Christ, is said to have formed the source of Irenaeus' account of the Gnostics of Barbelus (i. 29-31). Thus this work would have been written before 170.
71007
71008 ===== Gospel of Judas Iscariot =====
71009 References to this gospel as in use among the Cainites are made by Irenaeus (i. 31. 1); Epiphanius (xxxviii. 1. 3).
71010
71011 ===== Gospel, The Living (Evangelium Vivum) =====
71012 This was a gospel of the Manichaeans. See Epiphanius, ''Haer''. lxvi. 2; Photius, ''Contra Manich''. i.
71013
71014 ===== Gospel of Marcion =====
71015 On this important gospel see Zahn, ''Gesch. Kanons'', i. 585-718.
71016
71017 ===== Descent of Mary (ΤÎĩÎŊÎŊÎą ΜαĪÎšÎąĪ‚) =====
71018 This book was an anti-Jewish legend representing Zacharias as having been put to death by the Jews because he had seen the God of the Jews in the form of an ass in the temple (Epiphanius, ''Haer''. xxvi. 12).
71019
71020 ===== Questions of Mary (Great and Little) =====
71021 Epiphanius (''Haer''. xxvi. 8) gives some excerpts from this work.
71022
71023 ===== Gospel of Mary =====
71024 This gospel is found in a Coptic MS. of the 5th century. According to Schmidt's short account, ''Sitzungsberichte d. preuss. Akad. d. Wiss. zu. Berlin'' (1896), pp. 839 sqq., this gospel gives disclosures on the nature of matter (áŊ‘ÎģΡ) and the progress of the Gnostic soul through the seven planets.
71025
71026 ===== Gospel of Matthias =====
71027 Though this gospel is attested by Origen (''Horm. in Luc.'' i.), Eusebius, ''H.E.'' iii. 25. 6, and the List of Sixty Books, not a shred of it has been preserved, unless with Zahn ii. 751 sqq. we are to identify it with the ''Traditions of Matthias'', from which Clement has drawn some quotations.
71028
71029 ===== Gospel of Perfection (Evangelium perfectionis) =====
71030 Used by the followers of Basilides and other Gnostics. See Epiphanius, ''Haer.'' xxvi. 2.
71031
71032 ===== Gospel of Philip =====
71033 This gospel described the progress of a soul through the next world. It is of a strongly Encratite character and dates from the 2nd century. A fragment is preserved in Epiphanius, ''Haer''. xxvi. 13. In Preuschen, ''Reste'', p. 13, the quotation breaks off too soon. See Zahn ii. 761-768.
71034
71035 ===== Gospel of Thaddaeus =====
71036 Condemned by the Gelasian Decree.
71037
71038 ===== Gospel of Thomas =====
71039 Of this gospel only one fragment has been preserved in Hippolytus, ''Philos''. v. 7, pp. 140 seq. See Zahn, ''op. cit.'' i. 746 seq.; ii. 768-773; Harnack ii. 593-595.
71040
71041 ===== Gospel of Truth =====
71042 This gospel is mentioned by Irenaeus i. 11. 9, and was used by the Valentinians. See Zahn i. 748 sqq.
71043
71044 === Acts and Teachings of the Apostles ===
71045 ==== Acts of Andrew ====
71046 These Acts, which are of a strongly Encratite character, have come down to us in a fragmentary condition. They belong to the earliest ages, for they are mentioned by Eusebius, ''H.E.'' iii. 25; Epiphanius, ''Haer.'' xlvii. 1; lxi. 1; lxiii. 2; [[Philastrius]], ''Haer.'' lxviii., as current among the Manichaeans and heretics. They are attributed to [[Leucius]], a Docetic writer, by Augustine (''c. Felic. Manich.'' ii. 6) and [[Euodius]] (''De Fide c. Manich.'' 38). Euodius in the passage just referred to preserves two small fragments of the original Acts. On internal grounds the section recounting Andrew's imprisonment (Bonnet, ''Acta Apostolorum Apocrypha'', ii. 38-45) is also probably a constituent of the original work. As regards the martyrdom, owing to the confusion introduced by the multitudinous Catholic revisions of this section of the Acts, it is practically impossible to restore its original form. For a complete discussion of the various documents see Lipsius, ''Apokryphen Apostelgeschichte'', i. 543-622; also James in Hastings' ''Bible Dict.'' i. 92-93; Hennecke, ''NT. Apokryphen'', ''in loc.'' The best texts are given in Bonnet's ''Acta Apostolorum Apocrypha'', 1898, II. i. 1-127. These contain also the ''Acts of Andrew and Matthew'' (or Matthias) in which Matthew (or Matthias) is represented as a captive in the country of the anthropophagi. Christ takes Andrew and his disciples with Him, and effects the rescue of Matthew. The legend is found also in Ethiopic, Syriac and Anglo-Saxon. Also the ''Acts of Peter and Andrew'', which among other incidents recount the miracle of a camel passing through the eye of a needle. This work is preserved partly in Greek, but in its entirety in Slavonic.
71047
71048 ==== Acts of John ====
71049 Clement of Alexandria in his ''Hypotyposes'' on 1 John i. 1 seems to refer to chapters xciii. (or lxxxix.) of these Acts. Eusebius (''H.E.'' iii. 25. 6), Epiphanius (''Haer.'' xlvii. 1) and other ancient writers assign them to the authorship of Leucius Charinus. It is generally admitted that they were written in the 2nd century. The text has been edited most completely by Bonnet, ''Acta Apostol. Apocr.'', 1898, 151-216. The contents might be summarized with Hennecke as follows:--Arrival and first sojourn of the apostle in Ephesus (xviii.-lv.); return to Ephesus and second sojourn (history of Drusiana, lviii.-lxxxvi.); account of the crucifixion of Jesus and His apparent death (lxxxvii.-cv.); the death of John (cvi.-cxv.). There are manifest gaps in the narrative, a fact which we would infer from the extent assigned to it (i.e. 2500 stichoi) by Nicephorus. According to this authority one-third of the text is now lost. Many chapters are lost at the beginning; there is a gap in chapter xxxvii., also before lviii., not to mention others. The encratite tendency in these Acts is not so strongly developed as in those of Andrew and Thomas. James (''Anecdota'', ii. 1-25) has given strong grounds for regarding the Acts of John and Peter as derived from one and the same author, but there are like affinities existing between the Acts of Peter and those of Paul. For a discussion of this work see Zahn, ''Gesch. Kanons'', ii. 856-865; Lipsius, ''Apok. Apostelgesch.'' i. 348-542; Hennecke, ''NT. Apokryphen'', 423-432. For bibliography, Hennecke, ''NT. Apok. Handbuch'', 492 sq.
71050
71051 ==== Acts of Paul ====
71052 The discovery of the Coptic translation of these Acts in 1897, and its publication by C. Schmidt (''Acta Pauli aus der Heidelberger koptischen Papyrushandschrift herausgegeben'', Leipzig, 1894), have confirmed what had been previously only a hypothesis that the Acts of Thecla had formed a part of the larger Acts of Paul. The Acts therefore embrace now the following elements:-
71053 * Two quotations given by Origen in his ''Princip.'' i. 2. 3 and his comment on John xx. 12. From the latter it follows that in the Acts of Paul the death of Peter was recounted,
71054 * ''Apocryphal 3rd Epistle of Paul to the Corinthians'' and ''Epistle from the Corinthians to Paul''. These two letters are connected by a short account which is intended to give the historical situation. Paul is in prison on account of Stratonice, the wife of Apollophanes. The Greek and Latin versions of these letters have for the most part disappeared, but they have been preserved in Syriac, and through Syriac they obtained for the time being a place in the Armenian Bible immediately after 2 Corinthians. Aphraates cites two passages from 3 Corinthians as words of the apostle, and Ephraem expounded them in his commentary on the Pauline Epistles. They must therefore have been regarded as canonical in the first half of the 4th century. From the Syriac Bible they made their way into the Armenian and maintained their place without opposition to the 7th century. On the Latin text see Carrière and Berger, ''Correspondance apocr. de S. P. et des Corinthiens'', 1891. For a translation of Ephraem's commentary see Zahn ii. 592-611 and Vetter, ''Der Apocr. 3. Korinthien'', 70 sqq., 1894. The Coptic version (C. Schmidt, ''Acta Pauli'', pp. 74-82), which is here imperfect, is clearly from a Greek original, while the Latin and Armenian are from the Syriac.
71055 * ''The Acts of Paul and Thecla''. These were written, according to Tertullian (''De Baptismo'', 17) by a presbyter of Asia, who was deposed from his office on account of his forgery. This, the earliest of Christian romances (probably before A.D. 150), recounts the adventures and sufferings of a virgin, Thecla of Iconium. Lipsius discovers Gnostic traits in the story, but these are denied by Zahn (''Gesch. Kanons'', ii. 902). See Lipsius, ''op. cit.'' ii. 424-467; Zahn (''op. cit.'' ii. 892-910). The best text is that of Lipsius, ''Acta Apostol. Apocr.'', 1891, i. 235-272. There are Syriac, Arabic, Ethiopic and Slavonic versions. As we have seen above, these Acts are now recognized as belonging originally to the Acts of Paul. They were, however, published separately long before the Gelasian Decree (496). Jerome also was acquainted with them as an independent work. Thecla was most probably a real personage, around whom a legend had already gathered in the 2nd century. Of this legend the author of the Acts of Paul made use, and introduced into it certain historical and geographical facts,
71056 * The healing of Hermocrates of dropsy in Myra. Through a comparison of the Coptic version with the Pseudo-Cyprian writing &quot;Caena,&quot; Rolffs (Hennecke, ''NT. Apok.'' 361) concludes that this incident formed originally a constituent of our book,
71057 * The strife with beasts at Ephesus. This event is mentioned by Nicephorus Callistus (''H.E.'' ii. 25) as recounted in the Ī€ÎĩĪÎšÎŋδÎŋΚ of Paul. The identity of this work with the Acts of Paul is confirmed by a remark of Hippolytus in his commentary on Daniel iii. 29. 4, ed. Bonwetsch 176 (so Rolffs).
71058 * Martyrdom of Paul. The death of Paul by the sentence of Nero at Rome forms the close of the Acts of Paul. The text is in the utmost confusion. It is best given by Lipsius, ''Acta Apostol. Apocr.'' i. 104-117.
71059
71060 Notwithstanding all the care that has been taken in collecting the fragments of these Acts, only about 900 stichoi out of the 3600 assigned to them in the Stichometry of Nicephorus have as yet been recovered.
71061
71062 The author was, according to Tertullian (''De Baptism.'' 17), a presbyter in Asia, who out of honour to Paul wrote the Acts, forging at the same time 3 Corinthians. Thus the work was composed before 190, and, since it most probably uses the martyrdom of Polycarp, after 155. The object of the writer is to embody in St Paul the model ideal of the popular Christianity of the 2nd century. His main emphasis is laid on chastity and the resurrection of the flesh. The tone of the work is Catholic and anti-Gnostic. For the bibliography of the subject see Hennecke, ''NT. Apok.'' 358-360.
71063
71064 ==== Acts of Peter ====
71065 These acts are first mentioned by Eusebius (''H.E.'' iii. 3) by name, and first referred to by the African poet Commodian about A.D. 250. Harnack, who was the first to show that these Acts were Catholic in character and not Gnostic as had previously been alleged, assigns their composition to this period mainly on the ground that Hippolytus was not acquainted with them; but even were this assumption true, it would not prove the non-existence of the Acts in question. According to Photius, moreover, the Acts of Peter also were composed by this same Leucius Charinus, who, according to Zahn (''Gesch. Kanons'', ii. 864), wrote about 160 (''op. cit.'' p. 848). Schmidt and Ficker, however, maintain that the Acts were written about 200 and in Asia Minor. These Acts, which Ficker holds were written as a continuation and completion of the canonical Acts of the Apostles, deal with Peter's victorious conflict with Simon Magus, and his subsequent martyrdom at Rome under Nero. It is difficult to determine the relation of the so-called Latin ''Actus Vercellenses'' (which there are good grounds for assuming were originally called the ΠĪÎąÎžÎĩΚĪ‚ ΠÎĩĪ„ĪÎŋĪ…) with the Acts of John and Paul. Schmidt thinks that the author of the former made use of the latter, James that the Acts of Peter and of John were by one and the same author, but Ficker is of opinion that their affinities can be explained by their derivation from the same ecclesiastical atmosphere and school of theological thought. No less close affinities exist between our Acts and the Acts of Thomas, Andrew and Philip. In the case of the Acts of Thomas the problem is complicated, sometimes the Acts of Peter seem dependent on the Acts of Thomas, and sometimes the converse.
71066
71067 For the relation of the ''Actus Vercellenses'' to the &quot;Martyrdom of the holy apostles Peter and Paul&quot; (''Acta Apostol. Apocr.'' i. 118-177) and to the &quot;Acts of the holy apostles Peter and Paul&quot; (''Acta Apostol. Apocr.'' i. 178-234) see Lipsius ii. 1. 84 sqq. The &quot;Acts of Xanthippe and Polyxena,&quot; first edited by James (''Texts and Studies'', ii. 3. 1893), and assigned by him to the middle of the 3rd century, as well as the &quot;Acts of the Disputation of Archelaus, bishop of Mesopotamia, and the Heresiarch Manes&quot; (&quot;Acta Disputationis Archelai Episcopi Mesopotamiae et Manetis Haeresiarchae,&quot; in Routh's ''Reliquiae Sacrae'', v. 36-206), have borrowed largely from our work.
71068
71069 The text of the ''Actus Vercellenses'' is edited by Lipsius, ''Acta Apostol. Apocr.'' i. 45-79. An independent Latin translation of the &quot;Martyrdom of Peter&quot; is published by Lipsius (''op. cit.'' i. 1-22), ''Martyrium beati Petri Apostoli a Lino episcopo conscriptum''. On the Coptic fragment, which Schmidt maintains is an original constituent of these Acts, see that writer's work: ''Die alten Petrusakten im Zusammenhang der apokryphen Apostelliteratur nebst einem neuentdeckten Fragment'', and ''Texte und Untersuch''. N.F. ix. 1 (1903). For the literature see Hennecke, ''Neutestamentliche Apokryphen Handbuch'', 395 sqq.
71070
71071 ==== Preaching of Peter ====
71072 This book (ΠÎĩĪ„ĪÎŋĪ… ÎēΡĪĪ…ÎŗÎŧÎą) gave the substance of a series of discourses spoken by one person in the name of the apostles. Clement of Alexandria quotes it several times as a genuine record of Peter's teaching. Heracleon had previously used it (see Origen, ''In Evang. Johann.'' t. xiii. 17). It is spoken unfavourably of by Origen (''De Prin.'' Praef. 8). It was probably in the hands of Justin and Aristides. Hence Zahn gives its date as 90-100 at latest; DobschÃŧtz, as 100-110; and Harnack, as 110-130. The extant fragments contain sayings of Jesus, and warnings against Judaism and Polytheism.
71073
71074 They have been edited by Hilgenfeld: ''Nov. Test. extra Can.'', 1884, iv. 51-65, and by von DobschÃŧtz, ''Das Kerygma Petri'', 1893. Salmon (''Dict. Christ. Biog.'' iv. 329-330) thinks that this work is part of a larger work, ''A Preaching of Peter and a Preaching of Paul'', implied in a statement of Lactantius (''Inst. Div.'' iv. 21); but this view is contested by Zahn, see ''Gesch. Kanons'', ii. 820-834, particularly pp. 827-828; Chase, in Hastings' ''Bible Dict.'' iv. 776.
71075
71076 ==== Acts of Thomas ====
71077 This is one of the earliest and most famous of the Gnostic Acts. It has been but slightly tampered with by orthodox hands. These Acts were used by the Encratites (Epiphanius, ''Haer.'' xlvii. 1), the Manichaeans (Augustine, ''Contra Faust''. xxii. 79), the Apostolici (Epiphanius lxi. 1) and Priscillianists. The work is divided into thirteen Acts, to which the Martyrdom of Thomas attaches as the fourteenth. It was originally written in Syriac, as Burkitt (''Journ. of Theol. Studies'', i. 278 sqq.) has finally proved, though Macke and NÃļldeke had previously advanced grounds for this view. The Greek and Latin texts were edited by Bonnet in 1883 and again in 1903, ii. 2; the Greek also by James, ''Apoc. Anec.'' ii. 28-45, and the Syriac by Wright (''Apocr. Acts of the Gospels'', 1871, i. 172-333). Photius ascribes their composition to Leucius Charinus--therefore to the 2nd century, but Lipsius assigns it to the early decades of the 3rd. (See Lipsius, ''Apokryphen Apostelgeschichten'', i. 225-347; Hennecke, ''N.T. Apokryphen'', 473-480.)
71078
71079 ==== Teaching of the Twelve Apostles (Didache) ====
71080 This important work was discovered by Philotheos Bryennios in Constantinople and published in 1883. Since that date it has been frequently edited. The bibliography can be found in Schaff's and in Harnack's editions. The book divides itself into three parts. The first (i.-vi.) contains a body of ethical instruction which is founded on a Jewish and probably pre-Christian document, which forms the basis also of the ''Epistle of Barnabas''. The second part consists of vii.-xv., and treats of church ritual and discipline; and the third part is eschatological and deals with the second Advent. The book is variously dated by different scholars: Zahn assigns it to the years A.D. 80-120; Harnack to 120-165; Lightfoot and Funk to 80-100; Salmon to 120. (See Salmon in ''Dict. of Christ. Biog.'' iv. 806-815, also article [[Didache]].)
71081
71082 ==== Apostolical Constitutions ====
71083 For the various collections of these ecclesiastical regulations--the Syriac ''Didascalia, Ecclesiastical Canons of the Holy Apostles'', &amp;c.--see separate article [[Apostolical Constitutions]].
71084
71085 === Epistles ===
71086 ==== The Abgar Epistles ====
71087 These epistles are found in Eusebius (''H.E.'' i. 3), who translated them from the Syriac. They are two in number, and purport to be a petition of Abgar Uchomo, king of Edessa, to Christ to visit Edessa, and Christ's answer, promising after his ascension to send one of his disciples, who should &quot;cure thee of thy disease, and give eternal life and peace to thee and all thy people.&quot; Lipsius thinks that these letters were manufactured about the year 200. (See ''Dict. Christ. Biog.'' iv. 878-881, with the literature there mentioned.) The above correspondence, which appears also in Syriac, is inwoven with the legend of Addai or Thaddaeus. The best critical edition of the Greek text will be found in Lipsius, ''Acta Apostolorum Apocrypha'', 1891, pp. 279-283. (See also [[Abgar]].)
71088
71089 ==== Epistle of Barnabas ====
71090 The special object of this epistle was to guard its readers against the danger of relapsing into Judaism. The date is placed by some scholars as early as 70-79, by others as late as the early years of the emperor Hadrian, 117. The text has been edited by Hilgenfeld in 1877, Gebhardt and Harnack in 1878, and Funk in 1887 and 1901. In these works will be found full bibliographies. (See further [[Barnabas]].)
71091
71092 ==== Epistle of Clement ====
71093 The object of this epistle is the restoration of harmony to the church of Corinth, which had been vexed by internal discussions. The epistle may be safely ascribed to the years 95-96. The writer was in all probability the bishop of Rome of that name. He is named an apostle and his work was reckoned as canonical by Clement of Alexandria (''Strom.'' iv. 17. 105), and as late as the time of Eusebius (''H.E.'' iii. 16) it was still read in some of the churches. Critical editions have been published by Gebhardt and Harnack, ''Patr. Apost. Op.'', 1876, and in the smaller form in 1900, Lightfoot, 1890, Funk, 1901. The Syriac version has been edited by Kennet, ''Epp. of St Clement to the Corinthians in Syriac'', 1899, and the Old Latin version by Morin, ''S. Clementis Romani ad Corinthios epistulae versio Latina antiquissima'', 1894.
71094
71095 ==== &quot;Clement's&quot; 2nd Ep. to the Corinthians ====
71096 This so-called letter of Clement is not mentioned by any writer before Eusebius (''H. E.'' iii. 38. 4). It is not a letter but really a homily written in Rome about the middle of the 2nd century. The writer is a Gentile. Some of his citations are derived from the Gospel to the Egyptians.
71097
71098 ==== Clement's Epistles on Virginity ====
71099 These two letters are preserved only in Syriac which is a translation from the Greek. They are first referred to by Epiphanius and next by Jerome. Critics have assigned them to the middle of the 2nd century. They have been edited by [[Ian Theodor Beelen]], Louvain, 1856.
71100
71101 ==== Clement's Epistles to James ====
71102 On these two letters which are found in the Clementine Homilies, see Smith's ''Dict. of Christian Biography'', i. 559, 570, and Lehmann's monograph, ''Die Clementischen Schriften'', Gotha, 1867, in which references will be found to other sources of information.
71103
71104 ==== Epistles of Ignatius ====
71105 There are two collections of letters bearing the name of Ignatius, who was martyred between 105 and 117. The first consists of seven letters addressed by Ignatius to the Ephesians, Magnesians, Trallians, Romans, Philadelphians, Smyrnaeans and to Polycarp. The second collection consists of the preceding extensively interpolated, and six others of Mary to Ignatius, of Ignatius to Mary, to the Tarsians, Antiochians, Philippians and Hero, a deacon of Antioch. The latter collection is a pseudepigraph written in the 4th century or the beginning of the 5th. The authenticity of the first collection also has been denied, but the evidence appears to be against this contention. The literature is overwhelming in its extent. See Zahn, ''Patr. Apost. Op.'', 1876; Funk, ''Die apostol. Väter'', 1901; Lightfoot, ''Apostolic Fathers'', 1889.
71106
71107 ==== Epistle of Polycarp ====
71108 The genuineness of this epistle stands or falls with that of the Ignatian epistles. See article in Smith's ''Dictionary of Christian Biography'', iv. 423-431; Lightfoot, ''Apostolic Fathers'', i. 629-702; also [[Polycarp]].
71109
71110 ==== Pauline Epistles to the Laodiceans and the Alexandrians ====
71111 The first of these is found only in Latin. This, according to Lightfoot (see ''Colossians'', 272-298) and Zahn, is a translation from the Greek. Such an epistle is mentioned in the Muratorian canon. See Zahn, ''op. cit.'' ii. 566-585. The Epistle to the Alexandrians is mentioned only in the Muratorian canon (see Zahn ii. 586-592).
71112
71113 For the ''Third Epistle of Paul to the Corinthians'', and ''Epistle from the Corinthians to Paul'', see under &quot;Acts of Paul&quot; above.
71114
71115 ===The Council of Jamnia ===
71116 At least until the [[Council of Jamnia]] in [[92]] AD, [[Jew]]s did not have a single unified [[Biblical canon#Jewish canon|canon]] of Scripture. Some ancient Jewish sects (including the [[Essenes]], as evidenced in the [[Dead Sea scrolls]]) included as Scripture much that modern Jews consider non-canonical. The Council explicitly excluded certain books for reasons that included their late composition or because they were not written in [[Hebrew language|Hebrew]] (although some parts of the [[Hebrew Bible]] or [[Tanakh]] itself are in [[Biblical Aramaic]]). The word Apocrypha means hidden writing, and it was given to such books by the Jews to distinguish them from the books which they accepted as canonical.
71117
71118 Gentiles continued to use a Greek translation made in the period from the [[3rd century BC|third]] to the [[1st century BC|first]] centuries BC, in [[Alexandria]], [[Egypt]]. This work, which became known as the [[Septuagint]], included several books that were rejected at Jamnia.
71119
71120 While Jews do not accept these books, saying they lack the unction of the prophetic books of the canon, they regard them as consistent, for most part, with the wisdom which rests on the fear of God and loyalty to His law, and some Jews have at various times drawn from them as a legitimate part of Jewish literary creativity, even using elements from them as the basis for two important parts of the Jewish liturgy.
71121
71122 In the [[Mahzor]] (High Holy Day prayer book), a medieval Jewish poet used the book of [[Sirach]] as the basis for a beautiful poem, Ke'Ohel HaNimtah.
71123
71124 A closing [[piyyut]] in the [[Seder Avodah]] section, in the [[Yom Kippur]] Musaf begins:
71125 :&quot;How glorious indeed was the High Priest, when he safely left the Holy of Holies.&lt;br /&gt;
71126 :Like the clearest canopy of Heaven was the dazzling countenance of the priest.&quot;
71127 &lt;!-- (This can be seen, for example, on page 828 of the Birnbaum edition of the Mahzor.) --&gt;
71128 Mahzor replaces the medieval [[piyyut]] with the relevant section from Ben Sira, which is more direct.
71129
71130 Apocrypha have even formed the basis of the most important of all Jewish prayers, the [[Amidah]] (the Shemonah Esrah). Sirach provides the vocabulary and framework for many of the Amidah's blessings, which were instituted by the men of the Great Assembly. The description of the origins of [[Hanukkah]] is also to be found in the books rejected at Jamnia.
71131
71132 While the texts themselves may not be accepted as canonical, some of their contents are regarded as historical truth. In particular, [[1 Maccabees]] is cited by Jewish scholars as highly reliable history and was used by [[Josephus]] in his history of the Maccabean revolt.
71133
71134 ===Majority Christian usage===
71135 The [[Roman Catholic Church]] and the [[Eastern Orthodox Church|Eastern Orthodox]] and [[Oriental Orthodoxy|Oriental Orthodox]] Churches (thus the great majority of Christians) accept as part of the Old Testament some books excluded from the Jewish canon. Roman Catholics refer to them as [[deuterocanonical books]], a term first used by [[Sixtus of Siena]] in 1566, signifying that definitive recognition of their canonical status came later than that of the other books. Catholics and Orthodox do not call these books &quot;apocrypha&quot;, a term they apply only to other books that fall within the definition given in the first paragraph of this article.
71136
71137 The deuterocanonical books are ''[[Book of Tobit|Tobit]]'', ''[[Book of Judith|Judith]]'', ''[[1 Maccabees]]'', ''[[2 Maccabees]]'', ''[[Wisdom of Solomon]]'', ''[[Sirach|Sirach (Ecclesiasticus)]]'', and ''[[Book of Baruch|Baruch]]'', as well as some parts of ''[[Book of Esther|Esther]]'' and ''[[Book of Daniel|Daniel]]''.
71138
71139 Eastern Orthodox Churches sometimes also consider ''[[3 Maccabees]]'', ''[[4 Maccabees]]'', ''[[1 Esdras]]'' and/or ''[[2 Esdras]]'' to be deuterocanonical and include [[Psalm 151]] with the ''[[Psalms]]'', while the [[Ethiopian Orthodox]] venerate additional books, such as ''[[Jubilees]]'', ''[[Book of Enoch|Enoch]]'', and the ''[[Rest of the Words of Baruch]]''. The inclusion of Enoch is justified on the grounds that the ''Book of [[Jude]]'' quotes it as Scripture. See [http://www.islamic-awareness.org/Bible/Text/Canon/ethiopican.html here] for conflicting accounts on what is actually included in the Ethiopian canon.
71140
71141 Since there was no fixed canon even among Jews until the Council of Jamnia (c.70-90 CE), it is not surprising that, historically, there have been hesitations among Christians, especially in the early centuries, about which [[Old Testament]] books to consider canonical. The inability of Christians to use in controversy with Jews books that the latter did not accept as divinely inspired was one reason why some attributed lesser authority to these books. St Jerome explicitly denied the canonical character of any Old Testament book not included in the Hebrew Bible; but later, in his Preface to the Book of Tobit (PL 29, 24-25), stated that he translated the deuterocanonical books into Latin as a concession to the authority of the bishops; and in [[402]] CE declared he had not really denied the inspiration of these books, but had only given the opinion of the Jews (''Apol. contra Ruf.'' 11, 33. PL 23, 476).
71142
71143 In view of that controversy, a list of canonical books (with the deuterocanonical books included) was drawn up at councils in Africa and approved (though not in ''ex cathedra'' form, which would have been anachronistic, in any event) by the Pope of the time. This was generally accepted in the West, while in the East, particularly in Syria, general agreement was reached only in the seventh century. Within the Roman Catholic Church, individual leaders and scholars, even at a later date, sometimes expressed contrary views, but the matter was definitively settled in [[1546]], when the [[Council of Trent]], reacting to the views of the Protestant Reformers, declared that it accepted all the books of the Old and New Testaments with equal feelings of piety and reverence, and named them in accordance with the list of the fifth-century African councils. The [[First Vatican Council]] reaffirmed this declaration.
71144
71145 === Protestant views ===
71146 [[Martin Luther (religious leader)|Martin Luther]] rejected the books that do not appear in the Jewish Tanakh, partly because of the stress the Reformers laid on translating from the original text, and partly because some passages contradicted his views, especially where [[2 Maccabees]] speaks, by implication, of [[purgatory]]: &quot;It is therefore a holy and wholesome thought to pray for the dead, that they may be loosed from sins.&quot; (12:46).
71147
71148 Protestants called the deuterocanonical books apocrypha. Luther and the Anglican Church regarded them as useful for edification, but not to be relied upon for doctrine, while Calvin and in general his followers attached no value to them beyond that of any other human writing, and objected to any use of them in church.
71149
71150 In [[1615]], the Archbishop of Canterbury imposed a year’s imprisonment for publishing Bibles without the &quot;Apocrypha&quot;; but in later printings of the Bible in English these books were omitted more and more. In the early nineteenth century, the Edinburgh Bible Society denounced them as superstitious and absurd, and soon all the Bible Societies decided not to publish them. More recently, in spite of the expense involved, Protestant Bibles in English have again sometimes included them, placing them in a separate section either between the Old Testament and the New or at the end.
71151
71152 What most Christians consider to be integral parts of Esther and Daniel are in some instances counted by Protestants as additional books. In the book of Esther, it is difficult to separate these from the rest, since they are tightly integrated into the Greek text, and even the common parts of the book contain small variations from the Hebrew text. Protestant Bibles therefore sometimes give the entire book of Esther in two versions, one, based on the Hebrew text, as part of the Protestant Old Testament, and one, translated from the Greek, in the &quot;Apocrypha&quot; section.
71153
71154 Not all Protestants have omitted the deuterocanonical books. For example, all Luther Bibles in the Lutheran areas of [[Germany]] included them until [[World War II]]. Only after the war, when American [[Bible Society|Bible Societies]] offered funding on condition that the Apocrypha were omitted, they began to be dropped from most editions. Additionally, the original edition of the KJV (1611) included them between the Old and New Testaments.
71155
71156 ''See also: '' [[Books of the Bible]], a side-by-side comparison of the Jewish, Catholic, Protestant, and Orthodox canons.
71157
71158 ===Latter Day Saint views===
71159 Adherents of [[Latter Day Saint]] denominations believe that [[Joseph Smith, Jr.]], as a prophet, received a revelation from [[Jesus|Jesus Christ]] in answer to a question about the validity of the (Protestant) Apocrypha at [[Kirtland, Ohio]] on [[March 9]], [[1833]], which is now [http://scriptures.lds.org/dc/91 Section 91] of the [[Doctrine and Covenants]]. The section reads in part:
71160
71161 :There are many things contained therein that are true, and it is mostly translated correctly; there are many things contained therein that are not true, which are interpolations by the hands of men&amp;mdash;Therefore, whoso readeth it, let him understand, for the Spirit manifesteth truth; And whoso is enlightened by the Spirit shall obtain benefit therefrom.
71162
71163 This echoes the sentiment of most American Protestants of his day.
71164
71165 Although the [[Church of Jesus Christ of Latter-day Saints]] (LDS), the largest Latter Day Saint denomination, typically uses editions of the [[King James Version]] (KJV) of the Bible that do not currently include the Apocrypha, these have been used by members and leaders in the past, especially when such editions were more readily available. In non-English-speaking lands, Latter Day Saints use Bibles other than the KJV, some of which include the Apocrypha. The LDS Church plays a part in distributing such Bibles.
71166
71167 Latter Day Saints generally believe that &quot;The Apocrypha&quot; are of questionable authenticity, but have some value. However, they place more emphasis on other hidden records which have been revealed and are believed to be reliable, such as the [[Book of Mormon]], the [[Joseph Smith Translation]], [[Book of Abraham]], a translation of writings of John (see [[Doctrine and Covenants]] 93:6-18 [http://scriptures.lds.org/dc/93/6-18#6] and other ancient records or &quot;hidden books&quot; which will come forth in time and be revealed as mankind are ready to accept new knowledge.
71168
71169 ==References==
71170 * {{1911}}
71171
71172 ==External links==
71173 *[http://www.earlychristianwritings.com/ Extensive research into NT Apocrypha] Good research resource and timeline
71174 *[http://www.comparative-religion.com/christianity/apocrypha Complete NT Apocrypha] The largest claimed collection of NT apocrypha online
71175 *[http://www.pseudepigrapha.com Major collection of pseudepigrapha] Large number of NT and OT apocrypha and general pseudepigrapha
71176 *[http://www-user.uni-bremen.de/~wie/nt-apokrypha.html German Apocrypha research] Scholarly research site on individual manuscripts.
71177 *[http://st-takla.org/pub_Deuterocanon/Deuterocanon-Apocrypha_El-Asfar_El-Kanoneya_El-Tanya__0-index.html Deuterocanonical books] - Full text from Saint Takla Haymanot Church Website (also available the full text in Arabic)
71178 *[http://www.atmajyoti.org/ul_unknown_lives_forward.asp The Unknown Lives of Jesus and Mary] from the Apocrypha and other little known sources.
71179 *[http://scriptures.lds.org/bda/apcryph LDS Bible Dictionary &gt; Apocrypha] Definition &amp; LDS POV, including brief book descriptions.
71180 *[http://www.riseisrael.com/apocrypha.htm Read the Apocrypha]
71181 * [http://discordia.loveshade.org/apocrypha/apocrypha2.pdf ''Apocrypha Discordia, De Seconde Edityon''] (1.1M [[Portable Document Format|PDF]])
71182 *[http://wesley.nnu.edu/biblical_studies/noncanon/index.htm Noncanonical Literature]
71183
71184 [[Category:Apocrypha|Apocrypha]]
71185 [[Category:Christian texts]]
71186 [[Category:Judaism]]
71187
71188 [[ca:Llibres apÃ˛crifs]]
71189 [[cs:Apokryf]]
71190 [[da:Apokryfe skrifter]]
71191 [[de:Apokryphen]]
71192 [[el:ΑĪ€ĪŒÎēĪĪ…Ī†Îą]]
71193 [[es:Textos apÃŗcrifos]]
71194 [[et:ApokrÃŧÃŧfid]]
71195 [[fr:Apocryphe]]
71196 [[hu:Apokrif]]
71197 [[it:Apocrifo]]
71198 [[ja:外典]]
71199 [[ko:ę˛Ŋė™¸ė„ąė„œ]]
71200 [[la:Apocrypha]]
71201 [[nl:Apocrief]]
71202 [[no:Apokryfer]]
71203 [[pl:Apokryf]]
71204 [[pt:Livros apÃŗcrifos]]
71205 [[ru:АĐŋĐžĐēŅ€Đ¸Ņ„Ņ‹]]
71206 [[simple:Apocrypha]]
71207 [[sv:Apokryferna]]
71208 [[uk:АĐŋĐžĐēŅ€Đ¸Ņ„и]]
71209 [[zh:åŊįļ“]]</text>
71210 </revision>
71211 </page>
71212 <page>
71213 <title>Augustus (honorific)</title>
71214 <id>1289</id>
71215 <revision>
71216 <id>36006465</id>
71217 <timestamp>2006-01-20T21:31:34Z</timestamp>
71218 <contributor>
71219 <ip>81.234.119.136</ip>
71220 </contributor>
71221 <text xml:space="preserve">:''For the Emperor, see [[Augustus]]. For his (last) wife, see [[Julia Augusta]]''
71222 {{Roman government}}
71223 '''''Augustus''''' (plural '''''augusti''''') is [[Latin]] for &quot;majestic&quot; or &quot;venerable&quot;. The feminine form is '''''Augusta'''''.
71224 The Greek equivalent is [[sebastos]], or a mere grecization (by changing of the ending) ''augustos''.
71225
71226 ==Origin and nature==
71227 Although the use of the ''[[Roman naming convention|cognomen]]'' &quot;Augustus&quot; as part of one's name is generally understood to identify the [[Caesar Augustus|Emperor Augustus]], this is somewhat misleading; &quot;Augustus&quot; was the most significant name associated with the Emperor, but it did not actually represent any sort of constitutional office. The Imperial dignity was not an ordinary office, but rather an extraordinary concentration of ordinary powers in the hands of one man; &quot;Augustus&quot; was the name that unambiguously identified that man.
71228
71229 *The first &quot;Augustus&quot; (and first man counted as a [[Roman Emperor]]) was [[Caesar Augustus|Gaius Julius Caesar Octavianus]], who was given that name by the [[Roman Senate]] on [[January 16]], [[27 BC]]; over the next forty years, Caesar Augustus (as he is now known) literally set the standard by which subsequent Emperors could be recognised, by accumulating various offices and powers and making his own name (&quot;Augustus&quot;) identifiable with the consolidation of powers. Although the name signified nothing in constitutional theory, it was recognised as representing all the powers that Caesar Augustus had accumulated.
71230
71231 As ''[[princeps senatus]]'' (lit., &quot;prince of the senate&quot;, &quot;first man of the senate&quot;) he was the parliamentary leader of the house in the Senate and received diplomatic embassages on behalf of that body; as ''[[pontifex maximus]]'' (lit. &quot;greatest bridgemaker&quot;) he was the chief priest of the Roman state religion; as bearing [[consul]]ar ''[[imperium]]'' he had [[authority]] equal to the official chief (and [[eponym]]ous) magistrates within [[Rome]] and as bearing ''imperium maius'' he had authority greater than theirs outside Rome (because of this, he outranked all provincial governors and was also supreme commander of all Roman [[legion]]s); as bearing ''[[tribune|tribunicia potestas]]'' (&quot;tribunician power&quot;) he had personal inviolability (''sacrosanctitas'') and the right to [[veto]] any act or proposal by any magistrate within Rome. In a famous passages of ''Res Gestae'', Augustus claims for him, as ''princeps'', ''[[auctoritas]]'', has underlined philosopher [[Giorgio Agamben]]. This concentration of powers became the model by which all subsequent Emperors ruled Rome in constitutional theory (in practice this systematic and sophisticated theory gradually lost any resemblance to reality in the [[3rd century|III]] and [[4th century|IV centuries]], when the Emperors became rather more reminiscent of oriental despots than &quot;first among equals&quot;).
71232
71233 *Octavian &quot;Caesar Augustus&quot; also set the standard by which Roman Emperors were named. The three titles used by the majority of Roman Emperors -- &quot;''[[imperator]]''&quot;, &quot;''[[Caesar (title)|caesar]]''&quot; and &quot;''augustus''&quot; -- were all used personally by Caesar Augustus (he officially styled himself &quot;Imperator Caesar Augustus&quot;); of these names, only &quot;Augustus&quot; was unique to the Emperor himself, as others could and did bear the titles &quot;Imperator&quot; and &quot;Caesar&quot; (it should be noted, however, that the Emperor's mother or wife could bear the name &quot;Augusta&quot;). It became customary for an Emperor-designate to adopt the name ''NN. Caesar'' (where NN. is the individual's personal name) or later ''NN. Nobilissimus Caesar'' (&quot;NN. Most Noble Caesar&quot;), and occasionally to be awarded the title ''Princeps Iuventutis'' (&quot;Prince of Youth&quot;). Upon accession to the purple, the new Emperor usually adopted the name ''Imperator Caesar NN. Augustus'' (later Emperors took to inserting ''Pius Felix'', &quot;Pious and Blest&quot;, and ''Invictus'', &quot;Unconquered&quot;, between their personal names and ''Augustus'').
71234
71235 In this usage, by signifying the complete assumption of all Imperial powers, &quot;''Augustus''&quot; is roughly analogous to &quot;[[Emperor]]&quot;, though a modern reader should be careful not to project onto the ancients a modern, monarchical understanding of what an emperor is. As noted, there was no constitutional office associated with the imperial dignity; the Emperor's personal authority (''dignitas'') and influence (''[[auctoritas]]'') derived from his position as ''princeps senatus'', and his legal authority derived from his ''consulari imperium'' and ''tribunicia potestas''; in Roman constitutional theory, one might consider &quot;''augustus''&quot; as being shorthand for &quot;''princeps senatus et pontifex maximus consulari imperio et tribuniciae potestate''&quot; (loosely, &quot;Leader of the House and Chief Priest with Consular ''Imperium'' and Tribunician Power&quot;).
71236
71237 In many ways, &quot;''augustus''&quot; is comparable to the [[United Kingdom|British]] dignity of [[prince]]; it is a personal title, dignity, or attribute rather than a title of nobility such as [[duke]] or king. The Emperor was most commonly referred to as ''princeps'' (''[[basileus]]'', &quot;[[sovereign]]&quot;, in Greek).
71238
71239 ==Women of the Imperial dynasty==
71240 Originally, the title '''Augusta''' was only exceptionally bestowed on women of the Imperial dynasties: for these women it meant a fortification of their worldly power, and a status near to divinity. There was no qualification with higher prestige.
71241
71242 The first woman to receive it was [[Livia Drusilla]], by the last will of her husband [[Emperor Augustus]] (14 AD). Hence she was known as [[Julia Augusta]]. As much as Augustus was the model for all further Augustusses, Julia Augusta was the model for all further Augustas. A model that included scheming for a son to become successor to the throne, and falling in disgrace under the new Emperor if the scheming had been successful.
71243
71244 [[Agrippina minor]], becoming &quot;Augusta&quot; under her last husband [[Claudius]], would oblige to the model, being sent to death by her son [[Nero]], a few years after he had become Emperor.
71245
71246 If ''Augustus'' as honorific could be compared to the title of ''Prince'' in moderner societies, then ''Augusta'' would not so much be ''Princess'' than rather something more exceptional like ''[[Princess Royal]]'', deliberately given by the reigning monarch in rare cases, to a relative that received by this title prominence among other members of the royal household. Of course, it's only a partial comparison: ''Princess Royal'' was a title most often received by younger women, while ''Augusta'' was rather reserved for the aged - in this sense ''Augusta'' has something of the connotation of ''[[Queen mum]]'' too. Further, the &quot;akin to divinity&quot; does not really translate in any of these moderner titles or understood honorifics.
71247
71248 ==In the Divided Roman Empire==
71249 Later, under the [[Tetrarchy]], the rank of &quot;''augustus''&quot; referred to the two senior Emperors (in East and West), while &quot;''caesar''&quot; referred to the junior sub-Emperors.
71250
71251 The aforementioned three principal titles of the emperors -- &quot;''imperator''&quot;, &quot;''caesar''&quot;, and &quot;''augustus''&quot; -- were rendered as ''[[autocrat|autokratôr]]'', ''kaisar'', and ''augustos'' (or ''sebastos'') in Greek. The Greek title continued to be used in the [[Byzantine Empire]] until its extinction in [[1453]], although &quot;''sebastos''&quot; lost its Imperial exclusivity: persons who were not the Emperor could receive titles formed from &quot;''sebastos''&quot;, and &quot;''autokratôr''&quot; became the exclusive title of the Emperor.
71252
71253 ==Legacy==
71254 The Latin title of the [[Holy Roman Emperor]]s was usually &quot;''Imperator Augustus''&quot;, which conveys the modern understanding of &quot;emperor&quot; rather than the original Roman sense (i.e., the &quot;first citizen&quot; of the Republic). Ironically, although the [[German language|German]] word for &quot;emperor&quot; is &quot;''Kaiser''&quot;, a clear derivative of &quot;''caesar''&quot;, that was the only one of the three principal titles of the Latin- and Greek-speaking Roman Emperors that was not regularly used in Latin by the German-speaking Holy Roman Emperors.
71255
71256 == See also ==
71257
71258 * ''[[Archons]]''
71259 * ''[[Auctoritas]]''
71260 * ''[[Basileus]]''
71261 * ''[[Imperium]]''
71262
71263 [[Category:Roman Empire]]
71264 [[Category:Ancient Roman titles]]
71265 [[Category:Honorifics]]
71266 [[Category:Roman law]]
71267
71268
71269 [[de:Augustus]]
71270 [[el:ΑĪÎŗÎŋĪ…ĪƒĪ„ÎŋĪ‚ (Ī„ίĪ„ÎģÎŋĪ‚)]]
71271 [[et:Augustus (lisanimi)]]
71272 [[he:אוגוסטוס (×Ēואר)]]
71273 [[pl:August (tytu&amp;#322;)]]
71274 [[pt:Augusto]]
71275 [[ro:Augustus]]
71276 [[no:Augustus (tittel)]]
71277 [[nl:Augustus (titel)]]
71278 [[zh:&amp;#22885;&amp;#21476;&amp;#26031;&amp;#37117;]]
71279 [[sv:Augustus (titel)]]</text>
71280 </revision>
71281 </page>
71282 <page>
71283 <title>Antartic Treaty</title>
71284 <id>1290</id>
71285 <revision>
71286 <id>15899780</id>
71287 <timestamp>2003-01-17T05:41:36Z</timestamp>
71288 <contributor>
71289 <username>Ellmist</username>
71290 <id>2214</id>
71291 </contributor>
71292 <comment>#REDIRECT [[Antarctic_Treaty_System]]</comment>
71293 <text xml:space="preserve">#REDIRECT [[Antarctic_Treaty_System]]</text>
71294 </revision>
71295 </page>
71296 <page>
71297 <title>Antarctic Treaty System</title>
71298 <id>1291</id>
71299 <revision>
71300 <id>41965140</id>
71301 <timestamp>2006-03-02T22:47:27Z</timestamp>
71302 <contributor>
71303 <username>Bota47</username>
71304 <id>341052</id>
71305 </contributor>
71306 <minor />
71307 <comment>robot Adding: cs</comment>
71308 <text xml:space="preserve">{| align=&quot;right&quot;
71309 |{{International ownership conventions}}
71310 |}
71311
71312 The '''Antarctic Treaty''' and related agreements, collectively called the '''Antarctic Treaty System''' or '''ATS''', regulate the [[international relations]] with respect to [[Antarctica]], [[Earth]]'s only uninhabited [[continent]]. For the purposes of the [[treaty]] system, Antarctica is defined as all land and [[ice shelf|ice shelves]] south of the southern 60th [[Circle of latitude|parallel]]. The treaty was signed by 12 countries, including the [[Soviet Union]] and the [[United States]], and set aside Antarctica as a scientific preserve, established freedom of scientific investigation and banned military activity on that [[continent]]. This was the first [[arms control]] agreement established during the [[Cold War]].
71313
71314 [[Image:Flag of Antarctica.svg|thumb|200px|right|Graham Bertram (NAVA) 1996 conceptual flag for Antarctica]]
71315 == The Antarctic Treaty System ==
71316
71317 [[Image:Antarctica.jpg|thumb|250px|right|Research stations and territorial claims in Antarctica (2002).]]
71318
71319 === The (Main) Antarctic Treaty ===
71320
71321 The main treaty was opened for signature on [[December 1]], [[1959]], and officially entered into force on [[June 23]], [[1961]]. The original signatories were the 12 countries active in Antarctica during the [[International Geophysical Year]] of 1957-58 and willing to accept a US invitation to the conference at which the treaty was negotiated. These countries were [[Argentina]], [[Australia]], [[Belgium]], [[Chile]], [[France]], [[Japan]], [[New Zealand]], [[Norway]], [[South Africa]], the U.S.S.R., the [[United Kingdom]] and the United States (which opened the [[Amundsen-Scott South Pole Station]] for the [[International Geophysical Year]]).
71322
71323 ==== Articles of the Antarctic Treaty ====
71324
71325 *'''Article 1''' - area to be used for peaceful purposes only; military activity, such as weapons testing, is prohibited, but military personnel and equipment may be used for scientific research or any other peaceful purpose;
71326
71327 *'''Article 2''' - freedom of scientific investigation and cooperation shall continue;
71328
71329 *'''Article 3''' - free exchange of information and personnel in cooperation with the [[United Nations]] and other international agencies;
71330
71331 *'''Article 4''' - does not recognize, dispute, or establish territorial claims and no new claims shall be asserted while the treaty is in force;
71332
71333 *'''Article 5''' - prohibits nuclear explosions or disposal of radioactive wastes;
71334
71335 *'''Article 6''' - includes under the treaty all land and ice shelves south of 60 degrees 00 minutes south;
71336
71337 *'''Article 7''' - treaty-state observers have free access, including aerial observation, to any area and may inspect all stations, installations, and equipment; advance notice of all activities and of the introduction of military personnel must be given;
71338
71339 *'''Article 8''' - allows for jurisdiction over observers and scientists by their own states;
71340
71341 *'''Article 9''' - frequent consultative meetings take place among member nations;
71342
71343 *'''Article 10''' - treaty states will discourage activities by any country in Antarctica that are contrary to the treaty;
71344
71345 *'''Article 11''' - disputes to be settled peacefully by the parties concerned or, ultimately, by the [[International Court of Justice]];
71346
71347 *'''Articles 12, 13, 14''' - deal with upholding, interpreting, and amending the treaty among involved nations.
71348
71349 The main objective of the ATS is to ensure &lt;cite&gt; in the interests of all mankind that Antarctica shall continue forever to be used exclusively for peaceful purposes and shall not become the scene or object of international discord &lt;/cite&gt;. The treaty forbids &lt;cite&gt; any measures of a military nature&lt;/cite&gt;, but not the presence of military personnel per se. It also defers the question of territorial claims asserted by some nations and not recognized by others.
71350
71351 === Other agreements ===
71352 [[Image:wiki_antarctictreaty.JPG|thumb|left|250px|Stamp, [[USA]], [[1991]]]]
71353 Other agreements - some 200 recommendations adopted at treaty consultative meetings and ratified by governments - include:
71354 * [[Agreed Measures for the Conservation of Antarctic Fauna and Flora]] (1964) (entered into force in 1982)
71355 * The [[Convention for the Conservation of Antarctic Seals]] (1972)
71356 * The [[Convention for the Conservation of Antarctic Marine Living Resources]] (1980)
71357 * The [[Convention on the Regulation of Antarctic Mineral Resource Activities]] (1988) (although it was signed in 1988, it was subsequently rejected and never entered into force)
71358 * The [[Protocol on Environmental Protection to the Antarctic Treaty]] was signed [[4 October]] [[1991]] and entered into force [[14 January]] [[1998]]; this agreement prevents development and provides for the protection of the Antarctic environment through five specific annexes on marine pollution, fauna, and flora, environmental impact assessments, waste management, and protected areas. It prohibits all activities relating to mineral resources except scientific research.
71359
71360 ==Meetings==
71361 The Antarctic Treaty System's yearly ''Antarctic Treaty Consultative Meetings (ATCM)'' are the international forum for the administration and management of the region. Only 28 of the 45 parties to the agreements have the right to participate in these meetings. These parties are the ''Consultative Parties'' and, in addition to the twelve original signatories, include 16 countries that have demonstrated their interest in Antarctica by carrying out substantial scientific activity there.
71362
71363 ==Members==
71364 [[Image:Antarctic Treaty.png|400px|center|thumb|
71365 {{legend|brown|signatory, ''consulting'', [[Antarctic territories|territorial]] [[land claim|claim]]}}
71366 {{legend|orange|signatory, ''consulting'', [[Antarctic Treaty System|reserved right for territorial claim]]}}
71367 {{legend|lightgreen|signatory, ''consulting''}}
71368 {{legend|yellow|signatory, ''acceding'' status}}
71369 {{legend|gray|non-signatory}}]]&lt;br clear=&quot;all&quot; /&gt;
71370 {|class=&quot;wikitable&quot;
71371 !Country!!Original signatory!!Consultative!!Acceding
71372 |-
71373 |[[Argentina]] [[Argentine Antarctica|''claim'']]*
71374 |colspan=&quot;2&quot;|[[1961-06-26]]
71375 |
71376 |-
71377 |[[Australia]] [[Australian Antarctic Territory|''claim'']]
71378 |colspan=&quot;2&quot;|[[1961-06-23]]
71379 |
71380 |-
71381 |[[Austria]]
71382 |
71383 |
71384 |style=&quot;background:lightgray;&quot;|[[1987-08-25]]
71385 |-
71386 |[[Belgium]]
71387 |colspan=&quot;2&quot;|[[1960-07-26]]
71388 |
71389 |-
71390 |[[Brazil]]
71391 |
71392 |[[1983-09-12]]
71393 |[[1975-05-16]]
71394 |-
71395 |[[Bulgaria]]
71396 |
71397 |[[1998-05-25]]
71398 |[[1978-09-11]]
71399 |-
71400 |[[Canada]]
71401 |
71402 |
71403 |style=&quot;background:lightgray;&quot;|[[1988-05-04]]
71404 |-
71405 |[[Chile]] [[Magallanes y la AntÃĄrtica Chilena|''claim'']]*
71406 |colspan=&quot;2&quot;|[[1961-06-23]]
71407 |
71408 |-
71409 |[[People's Republic of China|China]]
71410 |
71411 |[[1985-10-07]]
71412 |[[1983-06-08]]
71413 |-
71414 |[[Colombia]]
71415 |
71416 |
71417 |style=&quot;background:lightgray;&quot;|[[1989-01-31]]
71418 |-
71419 |[[Cuba]]
71420 |
71421 |
71422 |style=&quot;background:lightgray;&quot;|[[1984-08-16]]
71423 |-
71424 |[[Czech Republic]] ([[Czechoslovakia]])
71425 |
71426 |
71427 |style=&quot;background:lightgray;&quot;|[[1962-06-14]]
71428 |-
71429 |[[Denmark]]
71430 |
71431 |
71432 |style=&quot;background:lightgray;&quot;|[[1965-05-20]]
71433 |-
71434 |[[Ecuador]]
71435 |
71436 |[[1990-11-19]]
71437 |[[1987-09-15]]
71438 |-
71439 |[[Estonia]]
71440 |
71441 |
71442 |style=&quot;background:lightgray;&quot;|[[2001-05-17]]
71443 |-
71444 |[[Finland]]
71445 |
71446 |[[1989-10-09]]
71447 |[[1984-05-15]]
71448 |-
71449 |[[France]] [[AdÊlie Land|''claim'']]
71450 |colspan=&quot;2&quot;|[[1960-09-16]]
71451 |
71452 |-
71453 |[[Germany]]&lt;br /&gt;
71454 ''[[East Germany]]''
71455 |
71456 |[[1981-03-03]]&lt;br /&gt;
71457 ''[[1987-10-05]]''
71458 |[[1979-02-05]]&lt;br /&gt;
71459 ''[[1974-11-19]]''
71460 |-
71461 |[[Greece]]
71462 |
71463 |
71464 |style=&quot;background:lightgray;&quot;|[[1987-01-08]]
71465 |-
71466 |[[Guatemala]]
71467 |
71468 |
71469 |style=&quot;background:lightgray;&quot;|[[1991-07-31]]
71470 |-
71471 |[[Hungary]]
71472 |
71473 |
71474 |style=&quot;background:lightgray;&quot;|[[1984-01-27]]
71475 |-
71476 |[[India]]
71477 |
71478 |[[1983-09-12]]
71479 |[[1983-08-19]]
71480 |-
71481 |[[Italy]]
71482 |
71483 |[[1987-10-05]]
71484 |[[1981-03-18]]
71485 |-
71486 |[[Japan]]
71487 |colspan=&quot;2&quot;|[[1960-08-04]]
71488 |
71489 |-
71490 |[[Netherlands]]
71491 |
71492 |[[1990-11-19]]
71493 |[[1967-03-30]]
71494 |-
71495 |[[New Zealand]] [[Ross Dependency|''claim'']]
71496 |colspan=&quot;2&quot;|[[1960-11-01]]
71497 |
71498 |-
71499 |[[North Korea]]
71500 |
71501 |
71502 |style=&quot;background:lightgray;&quot;|[[1987-01-21]]
71503 |-
71504 |[[Norway]] [[Dronning Maud Land|''claim'']]
71505 |colspan=&quot;2&quot;|[[1960-08-24]]
71506 |
71507 |-
71508 |[[Papua New Guinea]]
71509 |
71510 |
71511 |style=&quot;background:lightgray;&quot;|[[1981-03-16]]
71512 |-
71513 |[[Peru]]
71514 |
71515 |[[1989-10-09]]
71516 |[[1981-04-10]]
71517 |-
71518 |[[Poland]]
71519 |
71520 |[[1977-07-29]]
71521 |[[1961-06-08]]
71522 |-
71523 |[[Romania]]
71524 |
71525 |
71526 |style=&quot;background:lightgray;&quot;|[[1971-09-15]]
71527 |-
71528 |[[Russia]] ([[Soviet Union]])**
71529 |colspan=&quot;2&quot;|[[1960-11-02]]
71530 |
71531 |-
71532 |[[Slovak Socialist Republic|Slovak Republic]] ([[Czechoslovakia]])
71533 |
71534 |
71535 |style=&quot;background:lightgray;&quot;|[[1962-06-14]]
71536 |-
71537 |[[South Africa]]
71538 |colspan=&quot;2&quot;|[[1960-06-21]]
71539 |
71540 |-
71541 |[[South Korea]]
71542 |
71543 |[[1989-10-09]]
71544 |[[1986-11-28]]
71545 |-
71546 |[[Spain]]
71547 |
71548 |[[1988-09-21]]
71549 |[[1982-03-31]]
71550 |-
71551 |[[Sweden]]
71552 |
71553 |[[1988-09-21]]
71554 |[[1984-03-24]]
71555 |-
71556 |[[Switzerland]]
71557 |
71558 |
71559 |style=&quot;background:lightgray;&quot;|[[1990-11-15]]
71560 |-
71561 |[[Turkey]]
71562 |
71563 |
71564 |style=&quot;background:lightgray;&quot;|[[1996-01-25]]
71565 |-
71566 |[[Ukraine]]
71567 |
71568 |[[2004-05-27]]
71569 |[[1992-10-28]]
71570 |-
71571 |[[United Kingdom]] [[British Antarctic Territory|''claim'']]*
71572 |colspan=&quot;2&quot;|[[1960-05-31]]
71573 |
71574 |-
71575 |[[United States]]**
71576 |colspan=&quot;2&quot;|[[1960-08-18]]
71577 |
71578 |-
71579 |[[Uruguay]]
71580 |
71581 |[[1985-10-07]]
71582 |[[1980-01-11]]
71583 |-
71584 |[[Venezuela]]
71585 |
71586 |
71587 |style=&quot;background:lightgray;&quot;|[[1999-05-24]]
71588 |}
71589
71590 &lt;nowiki&gt;*&lt;/nowiki&gt; Claims overlap.&lt;br /&gt;
71591 &lt;nowiki&gt;**&lt;/nowiki&gt; Reserved the right to claim areas.
71592
71593 At the end of 2004, there were 45 treaty member nations: 28 consultative and 17 acceding. Consultative (voting) members include the seven nations that claim portions of Antarctica as national territory. The 20 nonclaimant nations do not recognize the claims of others.
71594
71595 == Legal system ==
71596
71597 Antarctica has no [[government]]. Various countries claim areas of it, but most countries do not recognize those claims. The area between 90 degrees west and 150 degrees west is the only land on Earth not claimed by any country.
71598
71599 ===Argentina and Chile===
71600
71601 According to Argentine regulations, any crime committed within 50 [[kilometer]]s of any Argentine base is to be judged in [[Ushuaia]] (as capital of [[Tierra del Fuego, Antarctica, and South Atlantic Islands]]). In the part of [[Argentine Antarctica]] that is also claimed by Chile, the person to be judged can ask to be transferred there.
71602
71603 ===United States===
71604
71605 The [[law of the United States]], including certain criminal offenses by or against U.S. nationals, such as murder, may apply to areas not under jurisdiction of other countries. To this end, the United States now stations special deputy [[United States Marshal|U. S. Marshals]] in Antarctica to provide a law enforcement presence. [http://www.usmarshals.gov/history/antarctica/]
71606
71607 Some U.S. laws directly apply to Antarctica. For example, the [[Antarctic Conservation Act]], 16 [[U.S.C.]] section 2401 et seq., provides civil and criminal penalties for the following activities, unless authorized by regulation of [[statute]]:
71608
71609 *the taking of native mammals or birds;
71610 *the introduction of nonindigenous plants and animals;
71611 *entry into specially protected or scientific areas;
71612 *the discharge or disposal of pollutants;
71613 *the importation into the U.S. of certain items from Antarctica
71614
71615 Violation of the Antarctic Conservation Act carries penalties of up to $10,000 in fines and one year in prison. The Departments of [[United States Department of the Treasury|Treasury]], [[United States Department of Commerce|Commerce]], [[United States Department of Transportation|Transportation]], and [[United States Department of the Interior|Interior]] share enforcement responsibilities.
71616
71617 Public Law 95-541, the Antarctic Conservation Act of 1978, requires expeditions from the U.S. to Antarctica to notify, in advance, the [[Office of Oceans and Polar Affairs]] of the [[United States Department of State|State Department]], which reports such plans to other nations as required by the Antarctic Treaty.
71618
71619 Further information is provided by the [[Office of Polar Programs]] of the [[National Science Foundation]].
71620
71621 == See also ==
71622
71623 {{Antarctica claims}}
71624
71625 == External links ==
71626 {{Wikisource|The Antarctic Treaty}}
71627
71628 * [http://www.70south.com/resources/treaty/ 70South: Info on the Antarctic Treaty]
71629 * [http://www.ats.aq Antarctic Treaty Secretariat]
71630 * [http://www.nsf.gov/od/opp/antarct/anttrty.jsp Full Text of the Antarctic Treaty]
71631 * [http://www.nsf.gov/dir/index.jsp?org=OPP National Science Foundation - Office of Polar Programs]
71632 * [http://www.ats.aq/meetings.php List of all Antarctic Treaty Consultative Meetings]
71633 * [http://www.signonsandiego.com/uniontrib/20050825/news_lz7e25koreas.html An Antarctic Solution for the Koreas] San Diego Union-Tribune, August 25, 2005 (Both South Korea and [[North Korea are members of the Antarctic Treaty)
71634
71635 [[Category:Antarctica]]
71636 [[Category:Cold War treaties]]
71637 [[Category:New Zealand and the Antarctic]]
71638 [[Category:Treaties]]
71639
71640 [[cs:AntarktickÃŊ smluvní systÊm]]
71641 [[de:Nationales Antarktisprogramm]]
71642 [[es:Tratado AntÃĄrtico]]
71643 [[fr:TraitÊ sur l'Antarctique]]
71644 [[ko:남극 ėĄ°ė•Ŋ]]
71645 [[nl:Antarctisch Verdrag]]
71646 [[ja:南æĨĩæĄį´„]]
71647 [[no:Antarktis-traktaten]]
71648 [[pl:Traktat Antarktyczny]]
71649 [[pt:Tratado da AntÃĄrtida]]
71650 [[simple:Antarctic Treaty System]]
71651 [[sv:AntarktisfÃļrdraget]]
71652 [[uk:АĐŊŅ‚Đ°Ņ€ĐēŅ‚иŅ‡ĐŊиК Đ´ĐžĐŗОвŅ–Ņ€]]</text>
71653 </revision>
71654 </page>
71655 <page>
71656 <title>Algernon Swinburne</title>
71657 <id>1292</id>
71658 <revision>
71659 <id>40556504</id>
71660 <timestamp>2006-02-21T11:49:57Z</timestamp>
71661 <contributor>
71662 <username>AndrewMcQ</username>
71663 <id>87960</id>
71664 </contributor>
71665 <comment>details of birth</comment>
71666 <text xml:space="preserve">[[Image:Swinburne.jpg|thumb|150px|Algernon Swinburne, Portrait by [[Dante Gabriel Rossetti|Rossetti]] ]]
71667 '''Algernon Charles Swinburne''' ([[April 5]], [[1837]] &amp;ndash; [[April 10]], [[1909]]) was a [[Victorian era]] [[England|English]] poet. His [[poetry]] was highly controversial in its day, much of it containing recurring themes of [[sadomasochism]], death-wish, [[lesbian|lesbianism]] and anti-[[Christianity|Christian]] sentiments.
71668
71669 Swinburne was born in [[London]], and raised on the [[Isle of Wight]], and at [[Capheaton Hall]], near [[Wallington Hall|Wallington]], [[Northumberland]]. He was associated with the [[Pre-Raphaelite]] movement, and counted among his best friends [[Dante Gabriel Rossetti]].
71670
71671 He is considered a ''[[Decadence|decadent]]'' poet, albeit that he professed to perhaps rather more vice than he actually indulged in, a fact which [[Oscar Wilde]] notably and acerbically commented upon.
71672
71673 Many of his early and still admired poems evoke the Victorian fascination with the [[Middle Ages]], and some of them are explicitly [[medieval_(term)|medieval]] in style, tone and construction, these representatives notably being &quot;The Leper,&quot; &quot;Laus Veneris,&quot; and &quot;St Dorothy&quot;.
71674
71675 He was an [[Alcoholism|alcoholic]] and a highly excitable character. His health suffered as a result, until he finally broke down and was taken into care by his friend [[Theodore Watts]], who looked after him for the rest of his life in [[Putney]]. Thereafter he lost his youthful rebelliousness and developed into a figure of social respectability.
71676
71677 His [[vocabulary]], [[rhyme]] and [[Meter (poetry)|metre]] arguably make him one of the best poets of the [[English language]]; but his poetry has been criticized as overly flowery and meaningless, choosing words to fit the rhyme rather than to contribute towards meaning.
71678
71679 Works include: ''Atalanta in Calydon'', ''Poems and Ballads'' (series I, II and III -- these contain most of his more controversial works), ''Songs Before Sunrise'', ''Lesbia Brandon'' (novel published posthumously).
71680
71681 He also wrote poems in favour of the unification of [[Italy]]. He was a student at [[Balliol College, Oxford]], and his work in his day was very popular among undergraduates at [[University of Oxford|Oxford]] and [[University of Cambridge|Cambridge]], though today it has largely gone out of fashion. This, at least, is the current popular and even the academic view of the decline of Swinburne's reputation, but it contains some distortion.
71682
71683 In fact Swinburne's ''Poems and Ballads, First Series'' and his ''Atalanta in Calydon'' have never been out of critical favor. It was Swinburne's misfortune that the two works, published when he was nearly 30, soon established him as England's premier poet, the successor to [[Alfred, Lord Tennyson]] and [[Robert Browning]]. This was a position he held in the popular mind until his death, but sophisticated critics like [[A. E. Housman]] felt, rightly or wrongly, that the job of being one of England's very greatest poets was beyond him.
71684
71685 Swinburne may have felt this way himself. He was a highly intelligent man and in later life a much-respected critic, and he himself believed that the older a man was, the more cynical and less trustworthy he became. Swinburne may have been one of the first people not to trust anyone over thirty. This of course created problems for him after he himself passed that age.
71686
71687 After the first ''Poems and Ballads'', Swinburne's later poetry is devoted more to politics and philosophy. He does not utterly stop writing love poetry, but he is far less shocking. His versification, and especially his rhyming technique, remain masterful to the end. He is the virtual star of the third volume of [[George Saintsbury]]'s famous ''History of English Prosody'', and Housman, a more measured and even somewhat hostile critic, devoted paragraphs of praise to his rhyming ability.
71688
71689 It should also be noted that Swinburne continues to impact today's culture though in small degree. In the [[Cradle of Filth]] song &quot;The Forest Whispers My Name&quot; from the album The Principle Of Evil Made Flesh (1994) the following selection from Swinburne's ''The Garden of Proserpine'' can be found:
71690
71691 &quot;Pale, beyond porch and portal,
71692 Crowned with leaves, she stands,
71693 Who gathers all things mortal,
71694 With cold immortal hands,
71695 Her languid lips are sweeter,
71696 Than love's who fears to greet her,
71697 To men that mix and meet her,
71698 From many times and lands.&quot;
71699
71700 The other lyrics of Cradle of Filth also follow a similar vein as the writings of Swinburne. Themes of romance, love lost, mythical imagery and the macabre are frequent and a clear Swinburne influence is apparent.
71701
71702 Some of his poems:
71703 *[[Hymn to Proserpine]]
71704 *[[The Triumph of Time]]
71705
71706 ==Further Reading==
71707 {{wikisource author}}
71708 A modern study of his religious attitudes:
71709 *''Swinburne and His Gods: the Roots and Growth of an Agnostic Poetry'' by Margot Kathleen Louis (ISBN 0773507159)
71710
71711 ==Trivia==
71712
71713 '''Ernest Wheldrake''' was a fictional character invented by Swinburne, who reviewed imaginary works by him. This was as a satire on the [[spasmodic poets]]. Wheldrake is also a character used by [[Michael Moorcock]] in his fiction.
71714
71715 == External links ==
71716 * {{gutenberg author| id=Algernon+Charles+Swinburne | name=Algernon Swinburne}}
71717
71718 [[Category:1837 births|Swinburne, Algernon Charles]]
71719 [[Category:1909 deaths|Swinburne, Algernon Charles]]
71720 [[Category:English poets|Swinburne, Algernon]]
71721 [[Category:Old Etonians|Swinburne, Algernon]]
71722
71723 [[de:Algernon Swinburne]]
71724 [[fr:Algernon Swinburne]]
71725 [[sv:Algernon Swinburne]]</text>
71726 </revision>
71727 </page>
71728 <page>
71729 <title>Alfred Lawson</title>
71730 <id>1293</id>
71731 <revision>
71732 <id>40673630</id>
71733 <timestamp>2006-02-22T05:16:13Z</timestamp>
71734 <contributor>
71735 <ip>66.73.169.108</ip>
71736 </contributor>
71737 <text xml:space="preserve">'''Alfred William Lawson''' ([[1869]]-[[1954]]) was a professional [[baseball]] player from 1887 through 1908 and went on to play a pioneering role in the US aircraft industry, publishing an early aviation trade journal. During this time he also wrote a novel, Born Again, clearly inspired by the popular Utopian fantasy [[Looking Backward]] by [[Edward Bellamy]], an early harbinger of the metaphysical turn his career would take. He is frequently cited as the inventor of the [[airliner]] and claimed to have been the first to deliver air mail on a schedule. However, his several attempts at building his own airplanes all ended in crashes which discouraged investors.
71738
71739 In the 1920s he promoted [[vegetarianism]] and claimed to have found the secret of living to 200. He also developed his own highly unusual theories of physics, according to which such concepts as &quot;penetrability&quot; and &quot;zig-zag-and-swirl&quot; were discoveries on par with [[Einstein]]'s [[Theory of Relativity]]. Numerous books confidently expounding on these concepts flowed from his pen, all set in the distinctive typography which makes Lawson publications recognizable at 50 paces. Most of the books confidently predict the worldwide adoption of Lawsonian principles by the year 2000.
71740
71741 He later propounded his own philosophy [[Lawsonomy]], and the [[Lawsonian religion]]. He also developed during the [[Great Depression]] the [[populist]] economic theory of [[direct credit]]s, according to which banks are the cause of all economic woe, the oppressors of both capital and labour. Lawson believed that the government should replace banks as the provider of loans to business and workers. His rallies and lectures attracted thousands of listeners in the early 30s, mainly in the upper midwest, but by the late 30s the crowds had dwindled.
71742
71743 In 1943 he founded the so-called University of Lawsonomy in Des Moines to spread his teachings and offer the degree of &quot;Knowlegian,&quot; but after various IRS and other investigations it was closed and finally sold in 1954, the year of Lawson's death. Lawson's financial arrangements remain mysterious to this day and in later years he seems to have owned little property, moving from city to city as a guest of his farflung acolytes. A 1952 attempt to haul him before a Senate investigative committee and get to the bottom of his operation ended with the cagey old gentleman leaving the senators outwitted and baffled.
71744
71745 A farm near Racine, Wisconsin is the only remaining university facility, although a tiny handful of churches may yet survive in places such as Wichita, Kansas.
71746
71747 He has been described as the &quot;[[Leonardo da Vinci]] of kooks&quot;.
71748
71749 ==Quotation==
71750 *&quot;When I look into the vastness of space and see the marvelous workings of its contents... I sometimes think I was born ten or twenty thousand years ahead of time.&quot; -- Alfred Lawson
71751
71752 ==External links==
71753 *[http://www.rcls.org/lawson/intro.htm Lawson's Progress] an elaborate web tribute
71754 *[http://www.lawsonomy.org/Lawsonomy11.html The three volumes of Lasonomy], written by Lawson
71755
71756 [[Category:1869 births|Lawson, Alfred]]
71757 [[Category:1954 deaths|Lawson, Alfred]]</text>
71758 </revision>
71759 </page>
71760 <page>
71761 <title>ALCS</title>
71762 <id>1295</id>
71763 <revision>
71764 <id>35507250</id>
71765 <timestamp>2006-01-17T05:53:49Z</timestamp>
71766 <contributor>
71767 <username>William Allen Simpson</username>
71768 <id>580725</id>
71769 </contributor>
71770 <comment>{4LA} {4LC}</comment>
71771 <text xml:space="preserve">;ALCS
71772 * [[American League Championship Series]], in American baseball
71773 * [[ALCS transaction monitor]], a transaction processing monitor for the airline industry
71774
71775 {{4LC}}</text>
71776 </revision>
71777 </page>
71778 <page>
71779 <title>Apocrypha/Tanakh</title>
71780 <id>1297</id>
71781 <revision>
71782 <id>15899786</id>
71783 <timestamp>2004-01-13T01:32:23Z</timestamp>
71784 <contributor>
71785 <username>UtherSRG</username>
71786 <id>33145</id>
71787 </contributor>
71788 <minor />
71789 <text xml:space="preserve">#REDIRECT [[Tanakh]]</text>
71790 </revision>
71791 </page>
71792 <page>
71793 <title>Ames, Iowa</title>
71794 <id>1298</id>
71795 <revision>
71796 <id>42158089</id>
71797 <timestamp>2006-03-04T05:06:52Z</timestamp>
71798 <contributor>
71799 <ip>12.215.83.96</ip>
71800 </contributor>
71801 <text xml:space="preserve">[[Image:Bales of hay.jpg|thumb|right|Bales of hay on a farm near Ames, Iowa]]
71802
71803 '''Ames''' is a city located in [[Story County, Iowa|Story County]], [[Iowa]]. As of the [[United States 2000 Census|2000 Census]], the city had a total population of 50,731. The city was named after [[19th century]] [[United States House of Representatives|U.S. congressman]] [[Oakes Ames]] of [[Massachusetts]], who was influential in the building of the [[First transcontinental railroad (North America)|transcontinental railroad]]. Ames was founded near a location that was deemed favorable for a railroad crossing of the [[Skunk River]]. It is located roughly 30 miles (48 km) north of the state capital [[Des Moines, Iowa|Des Moines]]. Two small rivers run through the town: the Skunk River and [[Squaw Creek (Iowa)|Squaw Creek]].
71804
71805 Ames is home of [[Iowa State University]] of Science &amp; Technology, a [[space grant colleges|space grant college]], at its founding, the state's (Morrill Act) [[land-grant university]], formerly known as the Iowa State College of Agriculture and Mechanic Arts. Ames is the home of the closely allied U.S Department of Agriculture's National Animal Disease Center, and the main offices of the Iowa state Department of Transportation. State and Federal institutions are the largest employers in Ames.
71806
71807 Other area employers include a [[3M]] manufacturing plant; [[Sauer-Danfoss]], a hydraulics manufacturer; [[Barilla]], a pasta manufacturer; [[Pella (company)|Pella]] a window manufacturer; and [[Ball Corporation|Ball]], a manufacturer of canning jars and plastic bottles.
71808
71809 == Geography ==
71810 [[Image:IAMap-doton-Ames.PNG|right|Location of Ames, Iowa]]
71811 Ames is located at 42&amp;deg;1'38&quot; North, 93&amp;deg;37'54&quot; West (42.027335, -93.631586){{GR|1}}.
71812
71813 According to the [[United States Census Bureau]], the city has a total area of 55.9 [[square kilometre|km&amp;sup2;]] (21.6 [[square mile|mi&amp;sup2;]]). 55.9 km&amp;sup2; (21.6 mi&amp;sup2;) of it is land and 0.1 km&amp;sup2; (0.04 mi&amp;sup2;) of it is water. The total area is 0.09% water.
71814
71815 Ames is located on Interstate 35, US Highways 30 &amp; 69, and the cross country line of the the Union Pacific Railroad.
71816
71817 == Demographics ==
71818 As of the [[United States 2000 Census|2000 Census]], there are 50,731 people, 18,085 households, and 8,970 families residing in the city. The [[population density]] is 908.1/km&amp;sup2; (2,352.3/mi&amp;sup2;). There are 18,757 housing units at an average density of 335.7/km&amp;sup2; (869.7/mi&amp;sup2;). The racial makeup of the city is 87.34% White, 7.70% [[Asia|Asian]], 2.65% [[African American]], 1.98% [[Hispanic American]] or [[Latino]] of any race, 0.15% [[Native Americans in the United States|Native American]], 0.04% Pacific Islander, 0.76% from other races, and 1.36% from two or more races.
71819
71820 There are 18,085 households out of which 22.3% have children under the age of 18 living with them, 42.0% are [[Marriage|married couples]] living together, 5.3% have a female householder with no husband present, and 50.4% are non-families. 28.5% of all households are made up of individuals and 5.9% have someone living alone who is 65 years of age or older. The average household size is 2.30 and the average family size is 2.85.
71821
71822 In the city the population is spread out with 14.6% under the age of 18, 40.0% from 18 to 24, 23.7% from 25 to 44, 13.9% from 45 to 64, and 7.7% who are 65 years of age or older. The median age is 24 years. For every 100 females there are 109.3 males. For every 100 females age 18 and over, there are 109.9 males.
71823
71824 A large number of Ames residents are university students. In 2004, for example, there were 26,390 students enrolled at Iowa State.
71825
71826 The median income for a household in the city is $36,042, and the median income for a family is $56,439. Males have a median income of $37,877 versus $28,198 for females. The [[per capita income]] for the city is $18,881. 20.4% of the population and 7.6% of families are below the [[poverty line]]. Out of the total population, 9.2% of those under the age of 18 and 4.1% of those 65 and older are living below the poverty line.
71827
71828 == Important events ==
71829 Prof. [[John_Vincent_Atanasoff | John V. Atanasoff]] and his graduate student, Clifford Berry, are now credited with the creation of the first true electronic digital computer in the basement of the physics department during the years 1937-1942. The Atanasoff/Berry computer used binary arithmetic circuits, regenerative memory, and logic circuits. These seminal ideas were communicated by Atanasoff to John Mauchly during a visit to Iowa State in the 1940s who then used them in the design of the better-known ENIAC built some years later.
71830
71831 Ames has been selected to host the first National Special Olympics in 2006 (summer). Ames has regularly hosted numerous statewide athletic events such as the Iowa Games and Iowa Shrine Bowl.
71832
71833 Ada Hayden Heritage Park opened in summer of 2004. It lies west of [[US 69]] just north of Ames. It is a large park complex featuring two connected lakes (former quarries) and walking/biking trails.
71834
71835 == Points of interest ==
71836 * [[Reiman Gardens]]
71837 * [[Jack Trice Stadium]]
71838 Farm House Museum, Brunnier Art Museum, Art on Campus Collection, Iowa State University. For more information visit www.museums.iastate.edu
71839
71840 == People ==
71841 * [[Neal Stephenson]], Author, grew up in Ames, Iowa
71842 * [[Peter Schickele]], Musician, was born in Ames, Iowa
71843 * [[George Washington Carver]], Inventor, was an alumni and a professor at ISU.
71844 Billy Sunday, evangelist and major league baseball player, born in Ames
71845
71846 Fred Hoiberg, NBA basketball player, native of Ames and ISU graduate
71847
71848 Carrie Chapman Catt, women's rights activist, ISU graduate
71849
71850 Ted Kooser, U.S. Poet Laureate, was raised in Ames, Iowa and attended Iowa State University.
71851 == External links ==
71852 {{Mapit-US-cityscale|42.027335|-93.631586}}
71853 *[http://ortho.gis.iastate.edu/ Maps from ISU GIS Support and Research Facility]
71854 *[http://urj.net/congs/ia/ia003/ Ames Jewish Congregation] - [[Union for Reform Judaism]]
71855 *[http://www.bridgewayofames.org/ Bridgeway Congregation] - [[Reformed Church in America]]
71856 *[http://chefmoz.org/United_States/IA/Ames/ Ames Dining Guide] on [[Chefmoz]]
71857 *[http://www.mainstreetculturaldistrict.com/ The Main Street Cultural District]
71858 *[http://www.dragonartsames.com/ Dragon Arts Martial Arts and Cultural Center]
71859 [[Category:Cities in Iowa]]
71860 [[Category:Story County, Iowa]]
71861 [[Category:University towns]]
71862
71863 [[es:Ames]]
71864 [[gl:Ames]]
71865 [[io:Ames, Iowa]]
71866 [[nl:Ames]]
71867 [[pl:Ames (Iowa)]]
71868 [[pt:Ames]]
71869 [[zh:č‰žå§†æ–¯]]</text>
71870 </revision>
71871 </page>
71872 <page>
71873 <title>Abbadides</title>
71874 <id>1299</id>
71875 <revision>
71876 <id>15899788</id>
71877 <timestamp>2002-05-19T16:47:02Z</timestamp>
71878 <contributor>
71879 <username>AxelBoldt</username>
71880 <id>2</id>
71881 </contributor>
71882 <comment>*</comment>
71883 <text xml:space="preserve">#REDIRECT [[Abbadid]]
71884 </text>
71885 </revision>
71886 </page>
71887 <page>
71888 <title>Abalone</title>
71889 <id>1300</id>
71890 <revision>
71891 <id>41304303</id>
71892 <timestamp>2006-02-26T11:57:35Z</timestamp>
71893 <contributor>
71894 <username>Captainbeefart</username>
71895 <id>727376</id>
71896 </contributor>
71897 <minor />
71898 <comment>Beefart typo. Genus has initial capital</comment>
71899 <text xml:space="preserve">:''For other uses, see [[Abalone (disambiguation)]].''
71900 [[image:abalone.jpg|thumb|right|A piece of abalone shell]]
71901 [[Image:AbaloneOutside.jpg|thumb|right|The outside of an abalone shell]]
71902 [[Image:AbaloneInside.jpg|thumb|right|The inside surface of an abalone shell]]
71903 [[Image:AbaloneMeat.jpg|thumb|right|The raw meat of abalone]]
71904
71905 '''Abalone''' is the [[American English]] variant of the [[Spanish language|Spanish]] name ''AbulÃŗn'' used for various species of [[shellfish]] ([[mollusk]]s) from the [[Haliotidae]] family ([[genus]] ''Haliotis''). The abalones belong to the large class of gastropods ([[Gastropoda]]). There is only one genus in the family Haliotidae, and about four to seven subgenera. The taxonomy is somewhat confused. The number of species range from about 100 to about 130 species (due to the occurrence of [[hybrid]]s), characterized by a richly coloured (on the inside&amp;mdash;the outside is rough and mostly brown) shell yielding [[mother-of-pearl]]. This is also commonly called ''ear-shell,'' in [[Guernsey]] ''ormer'' (Fr. ''ormier'', for ''oreille de mer''), ''perlemoen'' in [[South Africa]] and ''pāua'' in [[New Zealand]]. Abalone is also prevalent in [[Australia]]n and [[South Africa]]n coastal waters and is highly valued. The meat of an abalone is also considered an expensive delicacy in certain parts of South-East and East Asia, especially in [[Japan]], although it has a high cholesterol content.
71906
71907 ==Distribution and characteristics==
71908 The Haliotid family has a worldwide distribution, along the coastal waters of every continent, except South America and the eastern coast of the USA. Most abalones are found off the Southern Hemisphere coasts of New Zealand, South Africa and Australia, and Western North America and Japan in the Northern Hemisphere.
71909
71910 The family has unmistakable characteristics : the shell is rounded to oval, with two to three whorls, and the last one [[auriform]] (= grown into a large ‘ear’), giving rise to the common name ‘ear-shell’. The [[body whorl]] has a series of holes (four to ten depending on the species), near the anterior margin.
71911
71912 There is no [[Operculum (gastropod)|operculum]]. The back is convex, ranging from highly arched to very flattened. These shells cling solidly with their muscular foot to rocky surfaces at [[sublittoral]] depths. The color is very variable from species to species. The inside of the shell consists of iridiscent, silvery white to greenred [[mother-of-pearl]] through to ''Haliotis Iris'' which can comprise of; pinks and reds with predominant deep blues, greens and purples.
71913
71914 Abalones reach maturity at a small size. Their fertility is high and increases with size (from 10,000 to 11 million eggs at a time).
71915
71916 The larvae feed on plankton. The adults are herbivores and feed on macroalgae, preferring red algae. Sizes vary from 20 mm (''Haliotis pulcherrima'') to 200 mm (or even more) (''Haliotis rufescens'').
71917
71918 ==Abalone diving in California==
71919
71920 Sport harvesting of Red Abalone is permitted with a California fishing license and an abalone stamp card. Abalone may only be taken while free diving (as opposed to scuba diving). Taking of abalone is not permited south of the mouth of the San Francisco Bay. There is a size minimum of seven inches measured across the shell and a quantity limit of three per day and 24 per year. Abalone may only be taken in season. Transportation of abalone may only legally occur while the abalone is still in the shell. Sale of sport obtained abalone is illegal (including the shell). Only Red Abalone may be taken; black, white, pink, and flat abalone are protected by law.
71921
71922 An abalone diver is normally equipped with a very thick wetsuit, including a hood, booties, and gloves. He or she would also wear a mask, snorkel, weight belt, abalone iron, and abalone gauge. It is common to dive for abalone in water six to 20+ feet deep. Abalone are normally found on rocks in kelp beds (they eat kelp). The abalone iron is used to pry the abalone from the rock before it can fully clamp down. Visibility is normally five to ten feet. Divers commonly dive out of boats, kayaks, tube floats, and directly off shore. An eight inch abalone is considered a good catch, nine inches extremely good, and a ten inch plus (250 mm) abalone would be a trophy catch. Rock picking is a separate method from diving where the rock picker feels underneath rocks at low tides for abalone.
71923
71924 There has been a trade in [[diving]] to catch abalones off parts of the USA coast from before 1939. In [[World War II]], many of these abalone divers were recruited into the USA [[armed forces]] and trained as [[frogman|frogmen]].
71925
71926 ==Abalone diving in New Zealand==
71927
71928 [[Image:Abalone-farm1web.jpg|thumb|right|250px|Abalone farm]]
71929
71930 There is an extensive global [[black market]] in the collection and export of abalone meat. In New Zealand, where abalone is called '''pāua''' in the [[Māori language]], this can be a particularly awkward problem where the right to harvest pāua can be granted legally under [[Māori]] customary rights. When such permits to harvest are abused, it is frequently difficult to police. The legal recreational daily limit is 10 pāua per diver with a minimum shell length of 125 mm. The limit is strictly enforced by roving Ministry of Fisheries officers with the backing of the Police force. Pāua 'poaching' is a major industry in New Zealand with many thousands being taken illegally, often undersized. Convictions have resulted in seizure of diving gear, boats and motor vehicles as well as fines and in rare cases; imprisonment. The Ministry of Fisheries expects in the year 2004/05, nearly 1000 tons of pāua will be poached, with 75% of that being
71931 undersized.[http://www.fish.govt.nz/information/corp-docs/soi-04-08/pau2-industry-association.pdf]
71932
71933 Highly polished [[New Zealand]] pāua shells are extremely popular as souvenirs with their striking blue, green and purple iridescence. The [[muscle]] tissue of the [[mollusk]] is often eaten, and the [[gonad]]s of the abalone are delicacies in [[China]] and [[Japan]].
71934
71935 ==Ormers in the Channel Islands==
71936
71937 Ormers (''Haliotis tuberculata'') are considered a delicacy in the Channel Islands and are pursued with great alacrity by the locals. Unfortunately, this has led to a dramatic depletion in numbers since the latter half of the 19th century, and 'ormering' is now strictly regulated in order to preserve stocks. The gathering of ormers is now restricted to a number of 'ormering tides', from the [[January 1]] to [[April 30]], which occur on the full or new moon and two days following. No ormers may be taken from the beach that are under 8 cm in shell length. Diving is strictly prohibited. Any breach of these laws is a criminal offence and can lead to a heavy fine. The demand for ormers is such that they led to the world's first underwater arrest, when a Mr Kempthorne-Leigh of Guernsey was arrested by a police officer in full diving gear when illegally diving for ormers.
71938
71939 ==Abalone shell==
71940
71941 In addition, material scientists at the [[University of California, San Diego]] are studying abalone's strong [[calcium carbonate]] tiled structure for insight into a new wave of bullet-proof [[body armor]].
71942
71943 ==List of species with common name==
71944 [[Image:Pinkabalone 300.jpg|thumb|right|250px|Pink Abalone (''Haliotis corrugata'')]]
71945 *''Haliotis ancile '' : [[Shield Abalone]].
71946 *''Haliotis aquatilis'' : [[Japanese Abalone]].
71947 *''Haliotis asinina'' : [[Ass’s ear Abalone]].
71948 *''Haliotis assimilis'' : [[Threaded Abalone]].
71949 *''Haliotis australis'' : [[Australian Abalone]], Austral Abalone.
71950 *''Haliotis brazieri '': [[Brazier’s Abalone]].
71951 *''Haliotis coccoradiata '' : [[Reddish-rayed Abalone]].
71952 *''Haliotis conicopora '' : [[Conical Pore Abalone]], Brownlip Abalone
71953 *''Haliotis corrugata '' : [[Pink Abalone]].
71954 *''Haliotis crachedorii'' : [[Black Abalone]].
71955 [[Image:Whiteabalone 300.jpg|thumb|right|250px|White Abalone (''Haliotis sorenseni'')]]
71956 *''Haliotis crebrisculpta '' : [[Close Sculptures Abalone]].
71957 *''Haliotis cyclobates '' : [[Whirling Abalone]].
71958 *''Haliotis dalli'' : [[Dall’s Abalone]].
71959 *''Haliotis discus'' : [[Disk Abalone]].
71960 *''Haliotis diversicolor '' : [[Variously Coloured Abalone]].
71961 *''Haliotis dohrniana '' : [[Dhorn’s Abalone]].
71962 *''Haliotis elegans'' : [[Elegant Abalone]].
71963 *''Haliotis emmae'' : [[Emma’s Abalone]].
71964 *''Haliotis ethologus'' : [[Mimic Abalone]].
71965 *''Haliotis fulgens'' : [[Green Abalone]].
71966 *''Haliotis gigantea'' : [[Giant Abalone]].
71967 *''Haliotis glabra'' : [[Glistening Abalone]].
71968 *''Haliotis hargravesi'' : [[Hargraves’s Abalone]].
71969 *''Haliotis howensis'' : [[Lord Howe Abalone]].
71970 *''Haliotis iris'' : [[Blackfoot Abalone]].
71971 *''Haliotis iris'' : [[Rainbow Abalone]], Paua Abalone.
71972 *''Haliotis jacnensis '' : [[Jacna Abalone]].
71973 *''Haliotis kamschatkana'' : [[Pinto Abalone]].
71974 *''Haliotis laevigata smooth'' : [[Australian Abalone]], Greenlip Abalone.
71975 *''Haliotis melculus'' : [[Honey Abalone]].
71976 *''Haliotis midae'' : [[Midas Ear Abalone]], Perlemoen Abalone.
71977 *''Haliotis multiperforata'' : [[Many-holed Abalone]].
71978 *''Haliotis ovina'' : [[Oval Abalone]], Sheep's Ear Abalone
71979 *''Haliotis parva'' : [[Canaliculate Abalone]].
71980 *''Haliotis planata'' : [[Planate Abalone]].
71981 *''Haliotis pourtalesii'' : [[Pourtale’s Abalone]].
71982 *''Haliotis pulcherrima'' : [[Most Beautiful Abalone]].
71983 *''Haliotis queketti'' : [[Quekett’s Abalone]].
71984 *''Haliotis roei'' : [[Roe's Abalone]]
71985 *''Haliotis rosacea'': [[Rosy Abalone]].
71986 *''Haliotis rubra'' : [[Ruber Abalone]].
71987 *''Haliotis rufescens'': [[Red Abalone]].
71988 *''Haliotis scalaris'' : [[Staircase Abalone]], Ridged Ear Abalone.
71989 *''Haliotis semiplicata'' : [[Semiplicate Abalone]].
71990 *''Haliotis sorenseni'' : [[White Abalone]].
71991 *''Haliotis spadicea'' : [[Blood-spotted Abalone]].
71992 *''Haliotis speciosa'' : [[Splendid Abalone]].
71993 *''Haliotis squamata'' : [[Scaly Australian Abalone]].
71994 *''Haliotis squamosa'' : [[Squamose Abalone]].
71995 *''Haliotis tuberculata '': [[European Edible Abalone]], Tube Abalone, Tuberculate Ormer.
71996 *''Haliotis varia'' : [[Variable Abalone]].
71997 *''Haliotis venusta'' : [[Lovely Abalone]].
71998 *''Haliotis virginea'' : [[Virgin Abalone]].
71999 *''Haliotis walallensis'' : [[Northern Green Abalone]], [[Flat Abalone]].
72000
72001 '''Other species :'''
72002 ''Haliotis clathrata, Haliotis barbouri, Haliotis crebrisculpta, Haliotis dissona, Haliotis exigua, Haliotis fatui, Haliotis kamtschatkana assimilis, Haliotis kamtschatkana kamtschatkana, Haliotis madaka, Haliotis mariae, Haliotis patamakanthini, Haliotis pustulata, Haliotis roberti, Haliotis rubiginosa, Haliotis rubra, Haliotis rugosa, Haliotis thailandis, Haliotis unilateralis''.
72003
72004 ==Research==
72005 {{Wikisource1911Enc|Abalone}}
72006
72007 *Lin, A., and Meyers, M.A. 2005. Growth and structure in abalone shell, ''Materials Science and Engineering A'' '''390'''(Jan. 15):27–41 (see [http://www.sciencedirect.com/science?_ob=ArticleURL&amp;_udi=B6TXD-4DH2DRS-1&amp;_coverDate=01%2F15%2F2005&amp;_alid=256050522&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_qd=1&amp;_cdi=5588&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=f4efd0a3d7cf3b4a0b8f9861cff4514d abstract])
72008 *[http://www.dfg.ca.gov/mrd/ab_info.html California Red Abalone]
72009 *[http://www.isa.org/InTechTemplate.cfm?Section=InTech&amp;template=/ContentManagement/ContentDisplay.cfm&amp;ContentID=41313 Bullet proof abalone]
72010 *[http://www.seapulse.com/gallery/details.php?image_id=7 Abalone Varieties]
72011
72012 ==External links==
72013 {{Commons|Category:Haliotidae}}
72014 * [http://www.wired.com/news/technology/0,1282,49847,00.html Abalone Farming on a Boat]
72015 *[http://www.ocde.k12.ca.us/sciencek12/Tidepool7/index.htm Abalone biology]
72016 * [http://texts.cdlib.org/dynaxml/servlet/dynaXML?docId=kt738nb1zx&amp;doc.view=frames&amp;chunk.id=d0e112&amp;toc.depth=1&amp;toc.id=d0e112&amp;query=0 Online Archive of California]
72017 * [http://www.conchology.be/availableShells/SearchspeciesGallery.php?family=HALIOTIDAE&amp;species=&amp;index=true Conchology]
72018 * [http://www.specimenshells.net/5266.htm Specimen shells; many pictures.]
72019 * [http://manandmollusc.net/links_gastropoda.html Man and Mollusk : many links]
72020 * [http://www.homepages.paradise.net.nz/ljhill/ Natural Abalone &quot;horn&quot; Pearls : Sample photos]
72021 * [http://web.uct.ac.za/depts/zoology/abnet/species.html Imagemap of worldwide abalone distribution]
72022
72023 [[Category:Gastropods]]
72024 [[Category:Chinese cuisine]]
72025 [[Category:Seafood]]
72026 [[Category:Tree of Life cleanup]]
72027
72028 [[de:Seeohren]]
72029 [[ja:ã‚ĸワビ]]
72030 [[tr:Denizkulağı (Hayvan)]]
72031 [[uk:АйаĐģĐžĐŊ]]
72032 [[zh:鮑魚]]</text>
72033 </revision>
72034 </page>
72035 <page>
72036 <title>Abbess</title>
72037 <id>1301</id>
72038 <revision>
72039 <id>41813052</id>
72040 <timestamp>2006-03-01T22:38:09Z</timestamp>
72041 <contributor>
72042 <username>JeffW</username>
72043 <id>927455</id>
72044 </contributor>
72045 <comment>not a people category</comment>
72046 <text xml:space="preserve">An '''Abbess''' ([[Latin]] ''abbatissa,'' fem. form of ''abbas,'' [[abbot]]) is the female [[religious superior|superior]], or [[Mother Superior]], of an
72047 [[abbey]] or [[abbey|convent]] of [[nun]]s.
72048
72049 The mode of election, position, rights and authority of an abbess correspond generally with those of an [[abbot]]. The office is elective, the choice being by the secret votes of the sisters from their own body. The abbess is solemnly admitted to her office by [[episcopal]] [[benediction]], together with the
72050 conferring of a staff and pectoral cross, and holds for life, though liable to be deprived for misconduct.
72051 The [[council of Trent]] fixed the qualifying age at forty, with eight years of profession. Abbesses have a right to demand absolute obedience of their nuns, over whom they exercise discipline, extending even to the power of expulsion, subject, however, to the [[bishop]]. As a female an abbess is incapable of performing the spiritual functions of the priesthood belonging to an abbot. She cannot ordain, confer the veil, nor excommunicate. In England abbesses attended ecclesiastical councils, e.g. that of Becanfield in [[694]], where they signed before the [[presbyter]]s.
72052
72053 By [[Celtic Christianity|Celtic]] usage abbesses presided over joint-houses of monks and nuns. This custom accompanied Celtic monastic missions to France and Spain, and even to Rome itself. At a later period, A.D. [[1115]], Robert, the founder of [[Fontevraud Abbey]] near [[Chinon]] and [[Saumur]], [[France]] committed the government of the whole order, men as well as women, to a female superior.
72054
72055 In the German Evangelical church the title of abbess (''Äbtissin'') has in some cases--e.g. Itzehoe--survived to designate the heads of abbeys which since the Protestant [[Reformation]] have continued as ''Stifte,'' i.e. collegiate foundations, which provide a home and an income for unmarried ladies, generally of noble birth, called canonesses (''Kanonissinen'') or more usually ''Stiftsdamen.'' This office of abbess is of considerable social dignity, and was sometimes filled by princesses of the reigning houses.
72056
72057 {{Wikisource1911Enc|Abbess}}
72058 {{1911}}
72059
72060 [[Category:Religious work]]
72061 [[Category:Religious executives]]
72062 [[Category:Roman Catholic Church offices]]
72063 [[Category:1911 Britannica]]
72064
72065 [[da:Abbedisse]]
72066 [[it:Badessa]]
72067 [[gl:Abadesa]]
72068 [[ru:АййаŅ‚иŅĐ°]]
72069 [[fi:Abbedissa]]
72070 [[sv:Abbedissa]]</text>
72071 </revision>
72072 </page>
72073 <page>
72074 <title>Human abdomen</title>
72075 <id>1302</id>
72076 <revision>
72077 <id>41551531</id>
72078 <timestamp>2006-02-28T02:35:14Z</timestamp>
72079 <contributor>
72080 <username>Shadowcaster</username>
72081 <id>736084</id>
72082 </contributor>
72083 <comment>Removed image. picture was unproffesional to be included.</comment>
72084 <text xml:space="preserve">The human abdomen (from the [[Latin]] word meaning &quot;belly&quot;) is the part of the body between the [[pelvis]] and the [[thorax]]. Anatomically, the abdomen stretches from the thorax at the [[thoracic diaphragm]] to the pelvis at the [[pelvic brim]]. The '''pelvic brim''' stretches from the [[lumbosacral angle]] (the [[intervertebral disk]] between L5 and S1) to the [[pubic symphysis]] and is the edge of the [[pelvic inlet]]. The space above this inlet and under the thoracic diaphragm is termed the [[abdominal cavity]]. The boundary of the abdominal cavity is the abdominal wall in the front and the peritoneal surface at the rear.
72085
72086 Functionally, the human abdomen is where most of the [[alimentary tract]] is placed and so most of the absorption and digestion of food occurs here. The alimentary tract in the abdomen consists of the lower [[oesophagus]], the [[stomach]], the [[duodenum]], the [[jejunum]], [[ileum]], the [[cecum]] and the [[Vermiform appendix|appendix]], the [[ascending colon|ascending]], [[transverse colon|transverse]] and [[descending colon|descending colons]], the [[sigmoid colon]] and the [[rectum]]. Other vital organs inside the abdomen include the [[liver]], the [[kidneys]], the [[pancreas]] and the [[spleen]].
72087
72088 The '''abdominal wall''' is split into the posterior (back), lateral (sides) and anterior (front) walls. There is a common set of layers covering and forming all the walls: the deepest being the [[extraperitoneal fat]], the [[parietal peritoneum]], and a layer of [[fascia]] which has different names over where it covers (eg transversalis, psoas fascia). Superficial to these, but ''not'' present in the posterior wall are the three layers of muscle, the [[transversus abdominus]] (tranvserse abdominal muscle), the [[internal oblique|internal]] (obliquus internus) and the [[external oblique]] (obliquus externus).
72089
72090 ==Muscles of the abdominal wall==
72091 [[Image:Grays_Anatomy_image392.png|thumb|RIGHT|200px|''Henry Gray (1825–1861). Anatomy of the Human Body.'']]
72092 The obliquus externus ([[external oblique muscle|external oblique]]) [[muscle]] is the outermost muscle covering the side of the abdomen. It is broad, flat, and irregularly quadrilateral. It originates on the lower eight [[rib]]s, and then curves down and forward towards its insertion on the outer anterior crest of the [[Ilium (disambiguation)|ilium]] and (via the sheath of the [[rectus abdominus]] muscle) the midline [[linea alba]].
72093
72094 The obliquus internus ([[internal oblique muscle|internal oblique]]) muscle is triangularly shaped and is smaller and thinner than the external oblique muscle that overlies it. It originates from [[Poupart's ligament]]/[[inguinal ligament]] and the inner anterior crest of the ilium. The lower two-thirds of it insert, in common with fibers of the external oblique and the underlying transversus abdominus, into the [[linea alba]]. The upper third inserts into the lower six ribs. The transversus abdominus muscle is flat and triangular, with its fibers running horizontally. It lies between the internal oblique and the underlying transversalis fascia. It originates from Poupart's ligament, the inner lip of the ilium, the lumbar fascia and the inner surface of the [[cartilage]]s of the six lower ribs. It inserts into the linea alba behind the [[rectus abdominis]].
72095
72096 The [[rectus abdominis muscle]]s are long and flat. They originate at the [[pubic bone]], run up the abdomen on either side of the linea alba, and insert into the cartilages of the fifth, sixth, and seventh ribs. The muscle is crossed by three [[tendon|tendinous]] intersections called the [[linae transversae]]. The rectus abdominus is enclosed in a thick sheath formed, as described above, by fibers from each of the three muscles of the lateral abdominal wall.
72097
72098 The [[pyramidalis muscle]] is small and triangular. It is located in the lower abdomen in front of the rectus abdominis. It originates at the pubic bone and is inserted into the linea alba half way up to the [[umbilicus]] (belly button).
72099
72100 == Abdominal organs ==
72101 [[Image:Gray1120.png|thumb|RIGHT|200px|The relations of the viscera and large vessels of the abdomen.]]
72102 The abdomen contains most of the tubelike organs of the digestive tract, as well as several solid organs. Hollow abdominal organs include the [[stomach]], the [[small intestine]], and the [[colon (anatomy)|colon]] with its attached [[Vermiform appendix|appendix]]. Organs such as the [[liver]], its attached [[gallbladder]], and the [[pancreas]] function in close association with the digestive tract and communicate with it via ducts. The [[spleen]], [[kidney]]s, and [[adrenal gland]]s also lie within the abdomen, along with many blood vessels including the [[aorta]] and [[venae cavae|inferior vena cava]]. Anatomists may consider the [[urinary bladder]], [[uterus]], [[fallopian tube]]s, and [[ovary|ovaries]] as either abdominal organs or as pelvic organs. Finally, the abdomen contains an extensive membrane called the [[peritoneum]]. A fold of peritoneum may completely cover certain organs, whereas it may cover only one side of organs that usually lie closer to the abdominal wall. Anatomists call the latter type of organs ''retroperitoneal.''
72103
72104 == Surface landmarks of the abdomen ==
72105
72106 In the mid-line a slight furrow extends from the ensiform cartilage/[[xiphoid process]] above to the [[symphysis pubis]] below, representing the [[linea alba]] in the abdominal wall. At about its midpoint sits the umbilicus or navel. On each side of it the broad recti muscles stand out in muscular people. The outline of these muscles is interrupted by three or more transverse depressions indicating the [[lineae transversae]]. There is usually one about the [[ensiform cartilage]], one at the [[umbilicus]], and one between. It is the combination of the linea alba and the linea transversae which form the abdominal &quot;six-pack&quot; sought by body builders.
72107
72108 The upper lateral limit of the abdomen is the subcostal margin formed by the cartilages of the false ribs (8, 9, 10) joining one another. The lower lateral limit is the anterior
72109 crest of the [[ilium]] and [[Poupart's ligament]], which runs from the anterior superior spine of the ilium to the spine of the [[pubis]]. These lower limits are marked by visible grooves. Just above the pubic spines on either side are the external abdominal rings, which are openings in the muscular wall of the abdomen through which the [[spermatic cord]] emerges in the male, and through which an [[inguinal hernia]] may rupture.
72110
72111 One method by which the location of the abdominal contents can be appreciated is to draw three horizontal and two vertical lines. The highest of the former is the [[transpyloric line]] of C. Addison, which is situated half-way between the [[suprasternal notch]] and the top of the symphysis pubis, and often cuts the pyloric opening of the stomach an inch to the right of the mid-line. The [[hilum]] of each [[kidney]] is a little below it, while its left end approximately touches the lower limit of the [[spleen]]. It corresponds to the first lumbar vertebra behind. The second line is the subcostal, drawn from the lowest point of the [[subcostal arch]] (tenth rib). It corresponds to the upper part of the third lumbar vertebra, and it is an inch or so above the umbilicus. It indicates roughly the [[transverse colon]], the lower ends of the kidneys, and the upper limit of the transverse (3rd) part of the [[duodenum]]. The third line is called the intertubercular, and runs across between the two rough [[tubercle]]s, which can be felt on the outer lip of the crest of the ilium about two and a half inches (60 mm) from the anterior superior spine. This line corresponds to the body of the fifth lumbar vertebra, and passes through or just above the [[ileo-caecal valve]], where the [[small intestine]] joins the [[large intestine|large]]. The two vertical or mid-Poupart lines are drawn from the point midway between the anterior superior spine and the pubic symphysis on each side, vertically upward to the costal margin. The right one is the most valuable, as the [[ileo-caecal valve]] is situated where it cuts the intertubercular line. The orifice of the [[vermiform appendix]] lies an inch lower, at [[McBurney's point]]. In its upper part, the vertical line meets the transpyloric line at the lower margin of the ribs, usually the ninth, and here the [[gallbladder]] is situated. The left mid-Poupart line corresponds in its upper three-quarters to the inner edge of the [[descending colon]]. The right subcostal margin corresponds to the lower limit of the [[liver]], while the right nipple is about half an inch above the upper limit of this [[viscus]].
72112
72113 These three horizontal and two vertical lines divide the abdomen into nine &quot;regions.&quot; These regions are: the left and right [[hypchondria]] the left and right lateral regions, the left and right [[inguinal]] regions, the [[epigastrium]], the umbilical region, and the pubic region.
72114
72115 ==See also==
72116 * [[Waist]]
72117 * [[List of muscles of the human body]]
72118 * [[Alimentary canal]]
72119 * [[Abdominal pain]]
72120
72121 ==References==
72122 *Tortora, Gerard J., Anagnostakos, Nicholas P. (1984) ''Principles of Anatomy and Physiology'', Harper &amp; Row Publishers, New York ISBN 0-06-046656-1
72123 *Gray, Henry, (1977) ''Anatomy, Descriptive and Surgical (Gray's Anatomy)'' Bounty Books
72124 *Taber, Clarence Wilber, (1981) ''Taber's Cyclopedic medical dictionary 14 Edition'', F.A Davis Company, Philadelphia ISBN 0-8036-8307-3
72125
72126 [[Category:Abdomen]]
72127 [[Category:Human anatomy]]
72128
72129 {{human anatomical features}}
72130
72131 [[de:Abdomen]]
72132 [[es:Abdomen]]
72133 [[fr:Abdomen]]
72134 [[gl:Abdome]]
72135 [[it:Addome]]
72136 [[he:בטן]]
72137 [[lt:Pilvelis]]
72138 [[nl:Buik]]
72139 [[pl:Odwłok]]
72140 [[pt:AbdÃŗmen]]
72141 [[simple:Abdomen]]
72142 [[tl:Abdomen]]</text>
72143 </revision>
72144 </page>
72145 <page>
72146 <title>Abdominal surgery</title>
72147 <id>1303</id>
72148 <revision>
72149 <id>29398876</id>
72150 <timestamp>2005-11-27T18:37:15Z</timestamp>
72151 <contributor>
72152 <username>Nephron</username>
72153 <id>321400</id>
72154 </contributor>
72155 <minor />
72156 <comment>+gen surg</comment>
72157 <text xml:space="preserve">The term '''''abdominal surgery''''' broadly covers surgical procedures that involve opening the [[abdomen]]. Surgery of each abdominal organ is dealt with separately in connection with the description of that organ (see [[stomach]], [[kidney]], [[liver]], etc.) Diseases affecting the abdominal cavity are dealt with generally under their own names (e.g. [[appendicitis]]). The three most common abdominal surgeries are described below.
72158
72159 *Exploratory [[Laparotomy]] -- This refers to the opening of the [[abdominal cavity]] for direct examination of its contents, for example, to locate a source of bleeding or [[Physical trauma|trauma]]. It may or may not be followed by repair or removal of the primary problem.
72160
72161 *[[Appendectomy]] -- Surgical opening of the abdominal cavity and removal of the [[vermiform appendix|appendix]]. Typically performed as definitive treatment for [[appendicitis]], although sometimes the appendix is prophylactically removed incidental to another abdominal procedure.
72162
72163 *[[Laparoscopy]] -- A [[minimally invasive]] approach to abdominal surgery where rigid tubes are inserted through small incisions into the abdominal cavity. The tubes allow introduction of a small camera, surgical instruments, and gases into the cavity for direct or indirect visualization and treatment of the abdomen. The abdomen is inflated with carbon dioxide gas to facilitate visualization and, often, a small video camera is used to show the procedure on a monitor in the operating room. The surgeon manipulates instruments within the abdominal cavity to perform procedures such as cholecystectomy (gallbladder removal), the most common laparoscopic procedure. The laparoscopic method speeds recovery time and reduces blood loss and infection as compared to the traditional &quot;open&quot; [[cholecystecomy]].
72164
72165 Complications of abdominal surgery include [[hemorrhage|bleeding]], [[infection]], [[shock]], and ileus (short-term paralysis of the bowel.) Sterile technique, [[aseptic]] post-operative care, [[antibiotics]], and vigilant post-operative [[monitoring]] greatly reduce the risk of these complications. Planned surgery performed under sterile conditions is much less risky than that performed under emergency or unsterile conditions. The contents of the bowel are unsterile, and thus leakage of bowel contents, as from [[trauma]], substantially increases the risk of infection.
72166
72167 {{Wikisource1911Enc|Abdominal surgery}}
72168 ==See also==
72169 *[[Abdominoplasty]]
72170 *[[General Surgery]]
72171
72172 [[Category:Types of surgery]]</text>
72173 </revision>
72174 </page>
72175 <page>
72176 <title>Abduction</title>
72177 <id>1304</id>
72178 <revision>
72179 <id>39531714</id>
72180 <timestamp>2006-02-14T03:05:05Z</timestamp>
72181 <contributor>
72182 <username>Dcfleck</username>
72183 <id>81021</id>
72184 </contributor>
72185 <minor />
72186 <comment>Removing redlink</comment>
72187 <text xml:space="preserve">{{Wiktionarypar|abduction}}
72188 '''Abduction''' may refer to:
72189 * [[Kidnapping]], as a near synonym in criminal law, but sometimes used particularly in cases involving a woman or child
72190 * [[Abduction (physiology)]], a type of movement involving a change in organ or limb position
72191 * [[Abductive reasoning]], a method of reasoning in logic
72192 * [[Child abduction]], the abduction or kidnapping of a young child (or baby) by an older person
72193 * [[Abduction phenomenon]], an umbrella term used to describe a number of hypotheses, claims or assertions stating that extraterrestrial creatures kidnap individuals
72194 * [[North Korean abductions of Japanese]] or [[North Korean abductions of South Koreans]], a policy of abduction during the 1970s and 1980s pursued by the North Korean government
72195 * [[Abduction: The Megumi Yokota Story]], a 2005 American documentary film
72196
72197 {{disambig}}
72198
72199 [[ca:abducciÃŗ]]
72200 [[de:Verschleppung]]
72201 [[fr:Abduction]]
72202 [[nl:Ontvoering]]
72203 [[ja:æ‹‰č‡´]]
72204 [[ru:АйдŅƒĐēŅ†Đ¸Ņ]]
72205 [[tl:Abduksyon]]</text>
72206 </revision>
72207 </page>
72208 <page>
72209 <title>Abensberg</title>
72210 <id>1305</id>
72211 <revision>
72212 <id>38478174</id>
72213 <timestamp>2006-02-06T16:36:35Z</timestamp>
72214 <contributor>
72215 <username>Tsca.bot</username>
72216 <id>601940</id>
72217 </contributor>
72218 <minor />
72219 <comment>robot adding: nl, pl</comment>
72220 <text xml:space="preserve">'''Abensberg''' is a town in [[Bavaria]], [[Germany]]. It used to be a spa town located at {{coor dm|48|49|N|11|51|E|type:city(12500)_region:DE-BY}}, on the Abens, a tributary of the [[Danube]], 18 m. S.W. of [[Regensburg]], with which it is connected by rail and motorway (A93). Pop. (2004) about 12500.
72221
72222 It has a small spa, and its sulphur baths are resorted to for the cure of rheumatism and gout. The water is not used any more. The town is the Castra Abusina of the Romans, and Roman remains exist in the neighbourhood.
72223
72224 Here, in the [[Battle of Abensberg]] on the 20th of April 1809, [[Napoleon]] gained a signal victory over the Austrians under the Archduke Louis and General Hiller.
72225
72226 Abensberg is the birthplace of [[Johannes Aventinus]].
72227
72228 Abensberg is also a [[seal district]] of the [[Hallertau]] [[hop (plant)|hop-planting]] area.
72229
72230 ==References==
72231 {{1911}}
72232
72233 [[Category:Towns in Bavaria]]
72234 [[Category:Spa towns]]
72235
72236 pl:Abensberg]]
72237
72238 [[de:Abensberg]]
72239 [[fr:Abensberg]]
72240 [[gl:Abensberg]]
72241 [[nl:Abensberg]]
72242 [[pl:Abensberg]]
72243 [[ru:АйĐĩĐŊŅĐąĐĩŅ€Đŗ]]
72244 [[sv:Abensberg]]</text>
72245 </revision>
72246 </page>
72247 <page>
72248 <title>Arminianism</title>
72249 <id>1306</id>
72250 <revision>
72251 <id>42141869</id>
72252 <timestamp>2006-03-04T02:26:45Z</timestamp>
72253 <contributor>
72254 <username>David Schroder</username>
72255 <id>937976</id>
72256 </contributor>
72257 <comment>(1) Changes based on peer review - mostly minor; (2) combination of the two alternative views on election into one uniform view (see talk)</comment>
72258 <text xml:space="preserve">{{Arminianism}}
72259 :''For the Armenian nationality, see [[Armenia]] or the [[Armenian language]].''
72260 :''For the theological doctrines of [[Arius]], see [[Arianism]].''
72261
72262 '''Arminianism''' is a school of [[Soteriology|soteriological]] thought in [[Protestant]] [[Christian theology]] founded by the Dutch theologian [[Jacobus Arminius]]. Its acceptence stretches through much of mainstream [[Protestantism]], particularly [[Evangelicalism]]. Due to the influence of [[John Wesley]], it is perhaps most prominent in the [[Methodism|Methodist movement]].
72263
72264 Arminianism is historically viewed as the primary opponent of [[Calvinism]]. Its main tenets hold that:
72265 * All men are naturally unable to make any effort towards salvation
72266 * God's election is conditional on faith in Jesus
72267 * Jesus' atonement was potentially for all people
72268 * God's grace does not act in a deterministic fashion
72269 * Salvation can be lost, as continued salvation is conditional upon continued faith
72270
72271 Within the broad scope of [[History of Christianity | church history]], Arminianism and Calvinism are closely related. Nonetheless, debates from respective followers are often so heated and public that direct references to both doctrines appear frequently in [[Culture of the United States | American culture]].
72272
72273 Arminianism is most accurately used to define those who affirm the original beliefs of Jacobus Arminius himself, but the term can also be understood as an umbrella for a larger grouping of ideas including those of [[Hugo Grotius]], [[John Wesley]], [[Clark Pinnock]], and others. There are two primary perspectives on how the system is applied in detail: Classical Arminianism, which sees Arminius as its figurehead, and Wesleyan Arminianism, which (as the name suggests) sees John Wesley as its figurehead. Wesleyan Arminianism is sometimes synonomous with Methodism. Additionally, Arminianism is understood by its critics to also include [[Pelagianism]], though supporters from both primary perspectives deny this vehemently.
72274
72275 ==History==
72276 :''Main artcle: [[History of Calvinist-Arminian Debate]]''
72277
72278 Jacobus Arminius was a Dutch pastor and theologian in the late 16th and early 17th centuries. He was taught by Theodore Beza, Calvin's hand-picked successor, but he rejected his teacher's theology as making God the author of sin. Instead Arminius proposed that the election of God was ''of believers'', thereby making it [[Conditional election | conditional on faith]]. Arminius's views were challenged by the Dutch Calvinists, but Arminius died before a national synod could occur.
72279
72280 Arminius followers, not wanting to adopt their leader's name, called themselves the [[Remonstrants]]. When Arminius died before he could satisfy Holland's State General's request for a 14-page paper outlining his views, the Remonstrants replied in his stead crafting the [[Five articles of Remonstrance]]. After some political manuevering, the Dutch Calvinists were able to convince [[Maurice de Nassau | Prince Maurice of Nassau]] deal with the situation. Maurice systematically removed Arminian magistrates from office and called a national synod at Dordrecht. This [[Synod of Dort]] was open primarily to Dutch Calvinists (Arminians were excluded) with token Calvinist representatives from other countries, and in 1618 published a condemnation of Arminius and his followers as heretics. Part of this publication was the famous [[Five points of Calvinism]] in response to the five articles of Remonstrance.
72281
72282 Arminians across Holland were removed from office, imprisoned, banished, and sworn to silence. Twelve years later Holland officially granted Arminianism protection as a religion, although animosity between Arminians and Calvinists continued.
72283
72284 The debate between Calvin's followers and Arminius' followers is distinctive of post-Reformation church history. The heated discussions between friends and fellow [[Methodist]] ministers [[John Wesley]] and [[George Whitfield]] were characteristic of many similar debates. Wesley was a champion of Arminius' teachings, defending his [[soteriology]] in a periodical titled ''The Arminian'' and writing articles such as ''Predestination Calmly Considered''. He defended Arminius against charges of [[semi-Pelagianism]], holding strongly to beliefs in original sin and total depravity. At the same time, Wesley attacked the [[determinism]] that he claimed characterized unconditional election and maintained a belief in the [[Conditional Preservation of the Saints | ability to lose salvation]]. Wesley also clarified the doctrine of [[prevenient grace]] and preached the ability of Christians to attain to [[Christian perfection | perfection]].
72285
72286 ==Current landscape==
72287 Advocates of both Arminianism and Calvinism find a home in many Protestant denominations. Denominations leaning in the Arminian direction include Anglicans, [[Methodism | Methodists]], General Baptists, Pentecostals, and Charismatics. Denominations leaning in the Calvinist direction include Particular Baptists, Reformed Baptists, Presbyterians, and Congregationalists. The majority of [[Southern Baptists]], including [[Billy Graham]], accept Arminianism with an exception allowing for [[Perseverance of the saints | perseverance of the saints]]{{Ref|1-BFM}}, {{Ref|2-Harmon}}, {{Ref|3-Walls}} although many see Calvinism as growing in acceptance.{{Ref|4-Walls}} The majority of [[Lutherans]] hold to a mediating view taught by [[Philip Melanchthon]].
72288
72289 The current scholarly support for Arminianism is wide and varied. One particular thrust is a return to the teachings of Arminius - a system termed ''Classical'' Arminianism by F. Leroy Forlines (author of ''The Quest for Truth: Answering Life's Inescapable Questions''). Stephen Ashby (professor at Ball State University and contributor to ''Four Views on Eternal Security'') and Robert Picirilli (pastor, former academic dean and professor at Free Will Baptist Bible College, and author of ''Grace, Faith, and Free Will'') are two of the more prominent supporters. Through [[Methodism]], Wesley's teachings also inspire a large scholarly following, with vocal proponents including [[J. Kenneth Grider]], [[Stanley Hauerwas]], and [[William Willimon]].
72290
72291 Recent influence of the [[New Perspective on Paul]] movement has also strongly influenced Arminianism - primarily through a view of corporate election. Proponents of this movement include [[James Dunn (theologian) | James Dunn]] and [[Tom Wright (theologian) | N.T. Wright]]. Other Arminian theologians holding similar perspectives but not directly aligned with the New perspectives movement include Robert Shank (author of 'Elect in the Son'), [[David Pawson]] (British teacher/theologian and author of ''Once Saved, Always Saved?''), Paul Marston and Roger Forster (co-authors of ''God's Strategy in Human History''), Jerry Walls and Joseph Dongell (professors at [[Asbury Theological Seminary]] and co-authors of ''Why I Am Not a Calvinist'').
72292
72293 ==Theology==
72294 Arminian theology usually falls into one of two groups - Classical Arminianism, drawn from the teaching of Jacobus Arminius - and Wesleyan Arminian, drawing primarily from Wesley. Both groups overlap substantially. In addition,
72295
72296 ===Classical Arminianism===
72297 [[Image:Arminius.jpg|thumbnail|300px|right|Portrait of [[Jacobus Arminius]].]]
72298 Classical Arminianism (sometimes titled Reformed Arminianism or Reformation Arminianism) is the theological system that was presented by [[Jacobus Arminius]] and maintained by the [[Remonstrants]]{{ref|5-Ashby}}; its influence serves as the foundation for all Arminian systems. A list of beliefs is given below:
72299
72300 *'''Depravity is [[Total depravity | total]]''': Arminius states &quot;In this [fallen] state, the free will of man towards the true good is not only wounded, infirm, bent, and weakend; but it is also imprisoned, destroyed, and lost. And its powers are not only debilitated and useless unless they be assisted by grace, but it has no powers whatever except such as are excited by Divine grace.&quot;{{ref|6-Arminius}}
72301
72302 *'''Atonement is intended [[Unlimited atonement | for all]]''': Jesus' death was for all people, Jesus draws all people to himself, and all people have opportunity for salvation through faith.{{ref|7-Arminius}}
72303
72304 *'''Jesus' death [[Atonement (Satisfaction view) | satisfies]] God's justice''': The penalty for the sins of the elect are paid in full through Jesus' work on the cross. Thus Christ's atonement is intended for all, but requires faith to be effected. Arminius states &quot;Justification, when used for the act of a Judge, is either purely the imputation of righteoussness through mercy...or that man is justified before God...according to the rigour of justice without any forgiveness.&quot;{{ref|8-Arminius}} Stephen Ashby clarifies &quot;Arminius allowed for only two possible ways in which the sinner might be justified: (1) by our absolute and perfect adherence to the law, or (2) purely by God's imputation of Christ's righteousness.&quot;{{ref|9-Ashby}}
72305
72306 *'''Grace is resistible''': God takes initiative in the salvation process and His grace comes to all people. This grace (often called ''[[Prevenient Grace | prevenient]]'' or pre-regenerating grace) acts on all people to convict them of the Gospel, draw them strongly towards salvation, and enable the possibility of sincere faith. Picrilli states &quot;indeed this grace is so close to regeneration that it inevitably leads to regeneration unless finally resisted.&quot; {{ref|10-Picirilli}} The offer of salvation through grace does not act irresistably in a purely cause-effect, deterministic method but rather in an influence-and-response fashion that can be both freely accepted and freely denied.{{ref|11-Forlines}}
72307
72308 *'''Man has free will to respond or resist''': Free will is limited by God's sovereignty, but God sovereignly allows all men the choice to accept the Gospel of Jesus through faith, simultaneously allowing all men to resist.
72309
72310 *'''Election is [[Conditional election | conditional]]''': Arminius defined ''election'' as &quot;the decree of God by which, of Himself, from eternity, He decreed to justify in Christ, believers, and to accept them unto eternal life.&quot;{{ref|12-Arminius}} God alone determines who will be saved and his determination is that all who believe Jesus through faith will be justified. According to Arminius, &quot;God regards no one in Christ unless they are engrafted in him by faith.&quot;{{ref|13-Arminius}}
72311
72312 *'''God predestines the elect to a glorious future''': Predestination is not the predetermination of who will believe, but rather the predetermination of the believer's future inheritance. The elect are therefore predestined to sonship through adoption, glorification, and eternal life.{{ref|14-Pawson}}
72313
72314 *'''Eternal security is also [[Conditional Preservation of the Saints | conditional]]''': All believers have full assurance of salvation with the condition that they remain in Christ. Salvation is conditioned on faith, therefore perseverance is also conditioned.{{ref|15-Picirilli}} Apostasy (turning from Christ) is only commited through a deliberate, willful rejection of Jesus and renouncement of belief.{{ref|16-Picirilli}}
72315
72316 The [[Five articles of Remonstrance]] that Arminius' followers formulated in 1610 state the above beliefs regarding (I) conditional election, (II) unlimited atonement, (III) total depravity, (IV) total depravity and resistable grace, and (V) possibility of apostasy. Note, however, that the five articles completely denied perseverance of the saints; Arminius, himself, said that &quot;I never taught that a true believer can...fall away from the faith...yet I will not conceal, that there are passages of Scripture which seem to me to wear this aspect; and those answers to them which I have been permitted to see, are not of such as kind as to approve themselves on all points to my understanding.&quot;{{Ref|17-Arminius}}
72317
72318 The core beliefs of Jacobus Arminius and the Remonstrants are summarized as such by theologian Stephen Ashby:
72319
72320 :1. Prior to being ''drawn and enabled'', one is ''unable to believe...able only to resist.''&lt;br&gt;
72321 :2. Having been ''drawn and enabled'', but prior to regeneration, one is ''able to believe...able also to resist.''&lt;br&gt;
72322 :3. After one ''believes'', God then regenerates; one is ''able to continue believing...able also to resist.''&lt;br&gt;
72323 :4. Upon ''resisting'' to the point of ''unbelief'', one is ''unable again to believe...able only to resist.''{{Ref|18-Ashby}}&lt;br&gt;
72324
72325 ===Wesleyan Arminianism===
72326 :''See also: [[Methodism]]''
72327 Apart from Arminius himself, John Wesley has historically been the strongest proponent of Arminianism. Wesley thoroughly agreed with the vast majority of what Arminius taught, maintaining strong doctrines of original sin, total depravity, conditional election, prevenient grace, unlimited atonement, and possibly apostasy.
72328 [[Image:John_Wesley.jpg|thumbnail|350px|right|Portrait of [[John Wesley]].]]
72329 Wesley departs from tradition and forges into new theological territory on three issues primarily.
72330 * '''Atonement''' - Wesley's atonement is a hybrid of the [[Atonement (Satisfaction view) | penal substitution theory]] and [[Hugo Grotius]]' (a lawyer and one of the Remonstrants) [[Atonement (Governmental view) | governmental theory]]. Steven Harper states &quot;Wesley does not place the substitionary element primarily within a legal framework...rather it is the need to bring into proper relationship the 'justice' between God's love for persons and God's hatred of sin...it is not the satisfaction of a legal demand for justice so much as it is an act of mediated reconciliation.&quot; {{ref|19-Harper}}
72331 * '''Possibility of apostasy''' - Wesley fully acknowledges the possibility that Christians could apostasize and lose their salvation. Wesley's sermon ''A call to backsliders'' is one of his more influential sermons, and Harper summarizes as follows: &quot;the act of committing sin is not in itself ground for the loss of salvation...the loss of salvation is much more related to experiences that are profound and prolonged. Wesley sees two primary pathways that could result in a permanent fall from grace: unconfessed sin and the actual expression of apostasy.&quot; {{Ref|20-Harper}} Wesley disagrees with Arminius, however, in maintaining that apostasy was not final; Wesley himself, when talking about those who have made &quot;shipwrecks&quot; of their faith (1 Tim 1:19), claims that &quot;not one, or a hundred only, but I am persuaded, several thousands...Innumerable are the instances of this kind, of those who had fallen but now stand upright.&quot;{{Ref|21-Wesley}}
72332 * '''[[Christian perfection]]''' - Christian perfection, according to Wesley, is “purity of intention, dedicating all the life to God” and “the mind which was in Christ, enabling us to walk as Christ walked.” It is “loving God with all our heart, and our neighbor as ourselves”. {{ref|22-Wesley}} It is 'a restoration not only to the favour, but likewise to the image of God,” our “being filled with the fullness of God&quot;.{{ref|23-Wesley}} Wesley was clear that Christian perfection did not imply perfection of bodily health or an infallibility of judgment. It also does not mean we no longer violate the will of God, for involuntary transgressions remain. Perfected Christians remain subject to temptation, and have continued need to pray for forgiveness and holiness. It is not an absolute perfection but a perfection in love. Furthermore, Wesley did not teach a salvation by perfection, but rather says that, &quot;Even perfect holiness is acceptable to God only through Jesus Christ.&quot;{{Ref|24-Wesley}}
72333
72334 ===Other variations===
72335
72336 Since the time of Arminius, his name has come to represent a very large variety of beliefs. Some of these beliefs, such as Pelagianism (see [[Arminianism#Pelagianism | below]]) are not considered to be within Arminianism orthodoxy and are dealt with elsewhere. Some doctrines, however, do adhere to the Arminian foundation and, while minority views, are highlighted below.
72337
72338 ====Open theism====
72339 :''Main article: [[Open theism]]''
72340
72341 The doctrine of open theism states that God is not all-powerful, all-knowing, all-present, but is rather ''most''-powerful, ''most''-knowing, ''most''-present. As such, open theists resolve the issue of human free will and God's sovereignty by claiming that God is not logically capable of predetermining human choices - salvation or otherwise. [[Clark Pinnock]] is one of the most well-known propenents.
72342
72343 Some Arminians, such as professor and theologian Robert Picirilli, reject the doctrine of open theism as a &quot;deformed Arminianism&quot;.{{Ref|25-Picirilli}} Joseph Dongell stated that &quot;open theism actually moves beyond classical Arminianism towards process theology.&quot;{{Ref|26-Dongell}} The majority Arminian view accepts [[Classical Theism | classical theism]] - the belief that God's power, knowledge, and presence have no limits outside of His divine character. Most Arminians reconcile human free will with God's sovereignty and foreknowledge by holding three points:
72344 * Human free will is limited by original sin, though God's [[prevenient grace]] restores to humanity the ability to accept God's call of salvation.{{ref|27-Picirilli}}
72345 * God purposely exercises his sovereignty in ways that do not illustrate its extent - in other words, He has the power and authority to predetermine salvation but he chooses to apply it through different means.{{ref|28-Ashby}}
72346 * God's foreknowledge of the future is exhaustive and complete, and therefore the future is certain and not contingent on human action. God does not determine the future, but He does know it. God's certainty and human contingency are compatible.{{ref|29-Picirilli}}
72347
72348 ====Corporate view of election====
72349 :''See also: [[Conditional election]]''
72350
72351 The majority Arminian view is that election is individual and based on God's foreknowledge of faith, but a second perspective deserves merit. These Arminians reject the concept of individual election entirely, prefering to understand the doctrine in corporate terms. According to this corporate election, God never chose individuals to elect to salvation, but rather He chose to elect the believing Church to salvation. Dutch Reformed theologian Herman Ridderbos says &quot;[The certainty of salvation] does not rest on the fact that the church belongs to a certain &quot;number&quot;, but that it belongs to Christ, from before the foundation of the world. Fixity does not lie in a hidden decree, therefore, but in corporate unity of the Church with Christ, whom it has come to know in the gospel and has learned to embrace in faith.&quot;{{ref|30-Ridderbos}}
72352
72353 Corporate election draws support from a similar concept of corporate election found in the Old Testament and Jewish law. Indeed most Biblical scholarship is in agreement that Judeo-Greco-Roman thought in the 1st century was opposite of the Western world's &quot;individual first&quot; mantra - it was very collectivist in nature.{{ref|31-Abasciano}} Identity stemmed from membership in a group more than individuality.{{ref|32-Abasciano}} According to Romans 9-11, supporters claim, Jewish election as the chosen people ceased with their national rejection of Jesus as Messiah. As a result of the new covenant, God's chosen people are now the corporate body of Christ, the church (sometimes called ''spiritual Israel'' - see also [[Covenant theology]]). Pastor and theologian Dr. Brian Abasciano claims &quot;What Paul says about Jews, Gentiles, and Christians, whether of their place in God’s plan, or their election, or their salvation, or how they should think or behave, he says from a corporate perspective which views the group as primary and those he speaks about as embedded in the group. These individuals act as members of the group to which they belong, and what happens to them happens by virtue of their membership in the group.&quot;{{ref|33-Abasciano}}
72354
72355 These scholars also maintain that Jesus was the only human ever elected and that individuals must be &quot;in Christ&quot; (Eph 1:3-4) through faith to be part of the elect. Joseph Dongell, professor at Asbury Theological Seminary, states &quot;the most conscipuous feature of Ephesians 1:3-2:10 is the phrase 'in Christ', which occurs twelve times in Ephesians 1:3-4 alone...this means that Jesus Christ himself is the chosen one, the predestined one. Whenever one is incorporated into him by grace through faith, one comes to share in Jesus' special status as chosen of God.&quot;{{ref|34-Dongell}} Markus Barth illustrates the inter-connectedness: &quot;Election in Christ must be understood as the election of God's people. Only as members of that community do individuals share in the benefits of God's gracious choice.&quot;{{ref|35-Barth}}
72356
72357 ==Comparison to other views==
72358 Understanding Arminianism is aided by understanding the theological alternatives - Pelagianism and Calvinism. Arminianism, like any major belief system, is frequently misunderstood both by critics and would-be supporters. Listed below are a few common misconceptions.
72359
72360 ===Common misconceptions===
72361 * '''Arminianism supports works-based salvation''' - No well-known system of Arminianism denies salvation &quot;by faith alone&quot; and &quot;by faith first to last&quot;. This misconception is often directed at the Arminian possibility of apostasy, which critics maintain requires continual good works to achieve final salvation. To Arminians, however, both intial salvation ''and'' eternal security are &quot;by faith alone&quot;; hence &quot;by faith first ''to last''&quot;. Belief through faith is the condition for entrance into the Kingdom of God; unbelief is the condition for exit from the Kingdom of God - not a lack of good works.{{ref|36-Pawson}} {{ref|37-Picirilli}} {{ref|38-Ashby}}
72362 * '''Arminianism denies original sin and total depravity''' - No system of Arminianism founded on Arminius or Wesley denies original sin or total depravity;{{ref|39-Ashby}} both Arminius and Wesley ''strongly'' affirmed that man's basic condition is one in which he cannot be righteous, understand God, or seek God.{{ref|40-Arminius}} See the comparison to Calvinism below for where the two systems diverge.
72363 * '''Arminianism denies Jesus' substitutionary payment for sins''' - Both Arminius and Wesley believed in the necessity and sufficiency of Christ's atonement through substitution.{{ref|41-Picirilli}} Arminius held that God's justice was satisfied [[Atonement (Satisfaction view) | individually]]{{ref|42-Ashby}} while Hugo Grotius and many of Wesley's followers taught that it was satisfied [[Atonement (Governmental view) | corporately]].{{ref|43-Picirilli}}
72364
72365 ===Comparison to Pelagianism===
72366 :''Main article: [[Pelagianism]]. See also: [[Semi-Pelagianism]], and [[History of Calvinist-Arminian Debate]]''
72367
72368 [[Pelagius]] was a British monk and opponent of [[Augustine of Hippo]] and [[St. Jerome | Jerome]] in the early 5th Century AD. When he arrived in Christian Rome from Britain, Pelagius was appalled at the lack of holiness he found. Pelagius preached justification through faith alone, but also believed salvation was finished through good works and moral uprightness. Furthermore, Pelagius completely denied the [[Predestination | double predestination]] and [[irresistible grace]] affirmed by Augustine. Several of his students - notably [[Caelestius]] - went further than their teacher and rejected justification by faith.
72369
72370 Through the influence of Augustine and Jerome, the teachings of Pelagius and Caelestius were rejected by the Papacy as heretical. Historically [[Pelagianism]] has come to to represent any system that denies original sin, holds that by nature humans are capable of good, and maintains morality and works are part of the equation that yields salvation. [[Semi-Pelagianism]] is a variation on the original more akin to Pelagius' own thought - that justification is through faith, but that Adam's original sin was merely a bad example, humans can naturally seek God, and salvation is completed through works. Both systems reject a Calvinist understanding of predestination.
72371
72372 Many critics of Arminianism, both historically and currently, claim that Arminianism condones, accepts, or even explicitly supports Pelagianism of either variety. Arminius refered to Pelagianism as &quot;the grand falsehood&quot; and stated that he &quot;must confess that I detest, from my heart, the consequences [of that theology].&quot;{{ref|44-Arminius}} David Pawson, a British pastor/theologian, decries this association as &quot;libelous&quot; when attributed to Arminius' or Wesley's doctrine.{{ref|45-Pawson}} Indeed most Arminians reject all accusations of Pelagianism; nonetheless, partially due to Calvinist opponents,{{ref|46-Pawson}} {{ref|47-Picirilli}} the two terms remain intertwined in popular usage. Listed below are similarities and contrasts between Arminianism and Pelagianism.
72373
72374 :'''Similarities:''' Both systems reject doctrines of Calvinistic predestination and irresistible grace. Both systems accept the Biblical importance of works, morality, and striving to become more holy.
72375
72376 :'''Differences:''' Arminianism maintains original sin, total depravity, substitutionary atonement, and salvation through faith alone. Arminianism maintains that works and holiness, while important, have no determining effect on salvation at any point in the process.
72377
72378 ===Comparison to Calvinism===
72379 {{Methodism}}
72380 :''Main article: [[Calvinism]]''
72381 Ever since Arminius and his followers revolted against Calvinism in the early 17th century, soteriology has been largely divided between Calvinism and Arminianism. On the conservative side of Calvinism is [[Hyper-Calvinism]] and on the liberal side of Arminianism is [[Pelagianism]], but the overwhelming majority of [[Protestantism | Protestant]], [[Evangelicalism | evangelical]] pastors and theologians hold to one of these two systems or somewhere in between.
72382
72383 ====Similarities====
72384 *'''[[Total depravity]]''' - Arminians affirm with Calvinists the doctrine of total depravity. The differences come in the understanding of how God remedies this depravity.
72385
72386 *'''[[Substitutionary_atonement | Substitutionary effect of atonement]]''' - Arminians also affirm with Calvinists the substitutionary effect of Christ's atonement and that this effect is limited only to the elect. Classical Arminians would agree with Calvinists that this substitution was an individual [[Atonement (Satisfaction view) | penal satisfaction]] for all of the elect, while most Wesleyan Arminians would maintain that the substitution was corporate and [[Atonement (Governmental view) | governmental]] in nature.
72387
72388 ====Differences====
72389 * '''Extent of Atonement''' - Arminians hold to a universal drawing and [[Unlimited atonement | universal extent of atonement]] instead of the specific drawing and [[limited atonement | limited extent]] held by Calvinism. Ashby states:
72390 ::&quot;God could have sovereignly chosen to remedy humanity's situation differently than by the particularistic, cause-and-effect means proposed by Calvinism. In other words, when God saw his fallen human race in as bad a condition as it could possibly be in -'' 'dead in sins' ''and'' 'unable to do the least spiritual good' ''- logically, nothing would have precluded him from sovereignly choosing to reach out to all people with enabling grace (often referred to as prevenient grace). In fact, the Apostle Paul says that 'the grace of God that brings salvation has appeared to all men' (Titus 2:11)&quot;{{ref|48-Ashby}}
72391
72392 * '''Nature of Grace''' - Arminians believe that through God's [[prevenient grace]], he restores free will concerning salvation to all humanity. Individuals, therefore, are able either to accept the Gospel call through faith or resist it through unbelief. Calvinists hold that an individual's response to the Gospel call is determined by God, not man; thus God's grace is [[Irresistible grace | irresistible]]. Ashby continues:
72393 ::&quot;The Calvinist recoils and says, 'if all are enabled and all are drawn, then universalism must surely result - all would be saved.' To which I would say, 'Yes, ''if'' God's grace were irresistable grace.' Once again, however, God can sovereignly choose that his salvation is not going to proceed along the lines of a deterministic, cause-and-effect relationship. Rather, he is going to allow the sinner to resist the offer of grace, which grace he has sovereignly enabled the sinner to accept.&quot; {{ref|49-Ashby}}
72394
72395 * '''Conditionality of Election''' - Arminians hold that election to eternal salvation comes through (within) Jesus and therefore has the [[Conditional election| condition of faith]] attached. The Calvinist doctrine of [[unconditional election]] states that salvation cannot be earned and therefore has no human conditions - faith is not a condition, but rather a means. Jerry Dongell uses an illustration of a terrorist prison camp, with the sinner securely tied, blindfolded, gagged, and drugged and contrasts the two versions of Divine rescue offered:
72396 ::&quot;The Calvinist view of the divine invasion is simple. God invades the camp, carries the prisoner out, strips the prisoner of her shackles and blinders, and injects &quot;faith&quot; into the prisoner's veins. The former prisoner, having already been rescued from prison and positioned outside the walls, now trusts the Deliverer because of the potency of the administered faith serum. God has been the lone actor throughout, in the sense that the human response of faith is directly and irresistibly caused by God...
72397
72398 ::&quot;The classical Arminian believes that God steals into the prison and makes it to the bedside of the victim. God injects a serum that begins to clear the prisoner's mind of delusions and quell her hostile reactions. God removes the gag from the prisoner's mouth and shines a flashlight around the pitch-black room. The prisoner remains mute as the Rescuer's voice whispers &quot;Do you know where you are? Let me tell you! Do you know who you are? Let me show you!&quot; And the wooing begins, divine truth begins to dawn on the prisoner's heart and mind; the Savior holds up a small mirror to show the prisoner her sunken eyes and frail body. &quot;Do you see what they've done to you, and do you see how you've given yourself to them?&quot; Even in the dim light, the prisoner's weakened eyes are beginning to focus. The rescuer continues &quot;Do you know who I am, and that I want you for myself?&quot; Perhaps the prisoner makes no obvious advance but does not turn away. The questions keep coming: &quot;Can I show you pictues of who you once were and the wondrous plans I have for you in the years to come?&quot; The prisoner's heartbeat quickens as the Savior presses on: &quot;I know that part of you suspects that I have come to harm you. But let me show you something - my hands, they're a bit bloody. I crawled through the awful tangle of barbed wire to get you.&quot; Now here in this newly created sacred space, in this moment of new possibility, the Savior whispers &quot;I want to carry you out of here right now! Give me your heart! Trust me!&quot;{{ref|50-Dongell}}
72399
72400 * '''Perseverance''' - Arminians believe that future salvation and eternal life is secured in Christ and protected from all external forces, but is [[Conditional Preservation of the Saints | conditional on remaining in Christ]] and can be lost through apostasy. This conditional perseverance is in contrast to the doctrine of [[Perseverance of the Saints]] and concept of &quot;once saved, always saved&quot;. Pawson comments:
72401 ::&quot;The Arminian position is accurately portrayed by someone throwing a lifeline to a drowning man and saying 'grab hold of this and keep holding on tightly until I pull you to safety.' I would maintain that no one rescued in this way would dream that he had saved himself or even made a 'contribution' which merited his rescue. He would be filled with gratitude towards his rescuer.&quot;{{ref|51-Pawson}}
72402
72403 ==See also==
72404 {|
72405 | valign=&quot;top&quot; |
72406 '''Doctrine'''
72407 * [[Total depravity]]
72408 * [[Prevenient grace]]
72409 * [[Unlimited atonement]]
72410 * [[Substitutionary atonement]]
72411 ** [[Atonement (Satisfaction view) | Penal satisfaction atonement]]
72412 ** [[Atonement (Governmental view) | Governmental atonement]]
72413 * [[Free will]]
72414 * [[Conditional election]]
72415 * [[Conditional preservation of the Saints]]
72416 | valign=&quot;top&quot; |
72417 '''People, History, Denominations'''
72418 * [[Jacobus Arminius]]
72419 * [[Hugo Grotius]]
72420 * [[Remonstrants | The Remonstrants]]
72421 * [[Methodism]]
72422 ** [[John Wesley]]
72423 ** [[Charles Wesley]]
72424 * [[Anglicanism]]
72425 * [[Pentecostalism]] &amp; [[Charismatics]]
72426 * [[Baptist | General &amp; Free Will Baptists]]
72427 * [[History of Calvinist-Arminian Debate]]
72428 | valign=&quot;top&quot; |
72429 '''Opposing Views'''
72430 * [[Calvinism]]
72431 ** [[Five points of Calvinism]]
72432 ** [[John Calvin]]
72433 ** [[Unconditional election]]
72434 ** [[Limited atonement]]
72435 ** [[Irresistible grace]]
72436 ** [[Perseverance of the Saints]]
72437 * [[Pelagianism]]
72438 ** [[Pelagius]]
72439 ** [[Semi-Pelagianism]]
72440 |}
72441
72442 ==Further reading==
72443 ''Pro''
72444 *Ashby, Stephen M (contributor) and Harper, Steven (contributor) ''Four Views on Eternal Security'' (Grand Rapids: Zondervan, 2002) ISBN 0310234395 - Stephen Ashby and Steven Harper present and defend their cases for Reformed Arminianism (classical) and Wesleyan Arminianism respectively against Michael Horton (Classical Calvinism), Norman Geisler (Moderate Calvinism) and each other.
72445
72446 *Forlines, Leroy F., Pinson, Matthew J. and Ashby, Stephen M. ''The Quest for Truth: Answering Life's Inescapable Questions'' (Nashville: Randall House Publications, 2001) ISBN 0892658649 - Forlines and his co-authors present a comprehensive systematic theology of salvation from an Arminian perspective.
72447
72448 *Forster, Roger and Marston, Paul ''God's Strategy in Human History'' 2nd ed. (Wipf and Stock Publishers, 2000) ISBN 1579102735 - The authors take a deep look at the grammatical and historical contexts of New Testament passages dealing with predestination and election, along with historical sources from the first 300 years A.D., and come to Arminian conclusions.
72449
72450 *Pawson, David ''Once Saved, Always Saved? A Study in Perseverance and Inheritance'' (London: Hodder &amp; Staughton, 1996) ISBN 0340610662 - British pastor and theologian takes a deeper look at the Scriptural, historical, and theological arguments against the doctrine of &quot;once saved, always saved&quot;.
72451
72452 *Picirilli, Robert ''Grace, Faith, Free Will: Contrasting Views of Salvation: Calvinism and Arminianism'' (Nashville: Randall House Publications, 2002) ISBN 0892656484 - Picirilli takes a closer look at the life and views of Jacobus Arminius and presents his historical and theological argument for Reformation Arminianism (classical).
72453
72454 *Shank, Dr. Robert ''Elect in the Son'' (Bethany House Publishers, 1989) ISBN 1556610920 - The classic defense of Arminianism. First published in the mid-20th century, it remains one of the primary defenses of Arminian thought.
72455
72456 *Walls, Jerry L. and Dongell, Joseph R. ''Why I Am Not a Calvinist'' (Downer's Grove: Intervarsity Press, 2004) ISBN 0830832491 - Walls and Dongell present their Scriptural and philosophical arguments against Calvinism, focusing primarily on the nature of human freedom, divine sovereignty, self-consistency, and the Christian life.
72457
72458 ''Con''
72459 *Grudem, Wayne ''Systematic Theology'' (Grand Rapids: Zondervan, 1995) ISBN 0310286700 - A well-reasoned and Scriptural systematic theology that presents a Calvinist view.
72460
72461 *Peterson, Robert A. and Williams, Michael D. ''Why I Am Not an Arminian'' (Downer's Grove: Intervarsity Press, 2004) ISBN 0830832483 - The counterpoint to ''Why I Am Not a Calvinist'' presents a Scriptural and philosophical case against Arminianism.
72462
72463 *White, James R. ''The Potter's Freedom'' (Calvary Press, 2000) ISBN 1879737434 - A Calvinist response to Norman Geisler's ''Chosen but Free'' (in which Geisler presents a &quot;moderate Calvinism&quot; that only holds to perseverance of the Saints), it is widely considered by both supporters and opponents to be a strong, consistent portrayal of Calvinism.
72464
72465 ==Notes==
72466 &lt;div style=&quot;font-size:smaller;&quot;&gt;
72467 '''History'''
72468 &lt;br&gt;''see [[History of Calvinist-Arminian Debate]] for additional notes''
72469 &lt;br&gt; (1) {{note|1-BFM}} &quot;The Baptist Faith and Message, 2000 Revision&quot; (http://www.sbc.net/bfm/bfm2000.asp#iv)
72470 &lt;br&gt; (2) {{note|2-Harmon}} Harmon, Richard W. ''Baptists and Other Denominations'' (Nashville: Convention Press, 1984) 17-18, 45-46
72471 &lt;br&gt; (3) {{note|3-Walls}} Walls, Jerry and Dongell, Joseph ''Why I Am Not a Calvinist'' (Downer's Grove: Intervarsity Press, 2004) 12-13, 16-17
72472 &lt;br&gt; (4) {{note|4-Walls}} Ibid., 7-20
72473 &lt;br&gt;'''Classical Arminianism'''
72474 &lt;br&gt; (5) {{note|5-Ashby}} Ashby, Stephen &quot;Reformed Arminianism&quot; ''Four Views on Eternal Security'' (Grand Rapids: Zondervan, 2002), 137
72475 &lt;br&gt; (6) {{note|6-Arminius}} Arminius, James ''The Writings of James Arminius'' (three vols.), tr. James Nichols and W.R. Bagnall (Grand Rapids: Baker, 1956), I:252
72476 &lt;br&gt; (7) {{note|7-Arminius}} Ibid., I:316
72477 &lt;br&gt; (8) {{note|8-Arminius}} Ibid., III:454
72478 &lt;br&gt; (9) {{note|9-Ashby}} Ashby ''Four Views'', 140
72479 &lt;br&gt; (10) {{note|10-Picirilli}} Picirilli, Robert ''Grace, Faith, Free Will: Contrasting Views of Salvation: Calvinism and Arminianism'' (Nashville: Randall House Publications, 2002), 154ff
72480 &lt;br&gt; (11) {{note|11-Forlines}} Forlines, Leroy F., Pinson, Matthew J. and Ashby, Stephen M. ''The Quest for Truth: Answering Life's Inescapable Questions'' (Nashville: Randall House Publications, 2001), 313-321
72481 &lt;br&gt; (12) {{note|12-Arminius}} Arminius ''Writings'', III:311
72482 &lt;br&gt; (13) {{note|13-Arminius}} Ibid.
72483 &lt;br&gt; (14) {{note|14-Pawson}} Pawson, David ''Once Saved, Always Saved? A Study in Perseverance and Inheritance'' (London: Hodder &amp; Staughton, 1996), 109ff
72484 &lt;br&gt; (15) {{note|15-Picirilli}} Picirilli ''Grace, Faith, Free Will'' 203
72485 &lt;br&gt; (16) {{note|16-Picirilli}} Ibid., 204ff
72486 &lt;br&gt; (17) {{note|17-Arminius}} Arminius ''Writings'', I:254
72487 &lt;br&gt; (18) {{note|18-Ashby}} Ashby ''Four Views'', 159
72488 &lt;br&gt;'''Wesleyan Arminianism'''
72489 &lt;br&gt; (19) {{note|19-Harper}} Harper, Steven &quot;Wesleyan Arminianism&quot; ''Four Views on Eternal Security'' (Grand Rapids: Zondervan, 2002) 227ff
72490 &lt;br&gt; (20) {{note|20-Harper}} Ibid., 239-240
72491 &lt;br&gt; (21) {{note|21-Wesley}} Wesley, John &quot;A Call to Backsliders&quot; ''The Works of John Wesley'', ed. Thomas Jackson, 14 vols. (London: Wesley Methodist Book Room, 1872; repr, Grand Rapids: Baker, 1986) 3:211ff
72492 &lt;br&gt; (22) {{note|22-Wesley}} Wesley, John &quot;A Plain Account of Christian Perfection&quot;, ''Works''
72493 &lt;br&gt; (23) {{note|23-Wesley}} Wesley, John &quot;The End of Christ’s Coming&quot;, ''Works''
72494 &lt;br&gt; (24) {{note|24-Wesley}} Wesley, John &quot;A Plain Account of Christian Perfection&quot;, ''Works''
72495 &lt;br&gt;'''Other Variations'''
72496 &lt;br&gt; (25) {{note|25-Picirilli}} Picirilli, ''Grace, Faith, Free Will'', 40 - Picirilli actually objects so strongly to the link between Arminianism and Open theism that he devotes an entire section to his objections. See 59ff
72497 &lt;br&gt; (26) {{note|26-Dongell}} Dongell, Joseph and Walls, Jerry ''Why I Am Not a Calvinist'', 45
72498 &lt;br&gt; (27) {{note|27-Picirilli}} Picirilli, ''Grace, Faith, Free Will'', 42-43, 59ff
72499 &lt;br&gt; (28) {{note|28-Ashby}} Ashby, ''Four Views on Eternal Security'', 146-147
72500 &lt;br&gt; (29) {{note|29-Picirilli}} Picirilli, ''Grace, Faith, Free Will'', 40
72501 &lt;br&gt; (30) {{note|30-Ridderbos}} Ridderbos, Herman ''Paul: An Outline of His Theology'' trans. John Richard de Witt (Grand Rapids: Eerdmans, 1975), 350-351
72502 &lt;br&gt; (31) {{note|31-Abasciano}} Abasciano, Brian ''Paul’s Use of the Old Testament in Romans 9:1-9: An Intertextual and Theological Exegesis'' (T&amp;T Clark Publishers, 2006), ISBN 0567030733
72503 &lt;br&gt; (32) {{note|32-Abasciano}} Ibid.
72504 &lt;br&gt; (33) {{note|33-Abasciano}} Ibid.
72505 &lt;br&gt; (34) {{note|34-Dongell}} Dongell, Joseph and Walls, Jerry ''Why I am Not a Calvinist'', 76
72506 &lt;br&gt; (35) {{note|35-Barth}} Barth, Markus ''Ephesians'' (Garden City, N.Y.: Doubleday, 1974), 108
72507 &lt;br&gt;'''Comparison to Opposing Views'''
72508 &lt;br&gt; (36) {{note|36-Pawson}} Pawson ''Once Saved, Always Saved?'' 121-124
72509 &lt;br&gt; (37) {{note|37-Picirilli}} Picirilli ''Grace, Faith, Free Will'' 160ff
72510 &lt;br&gt; (38) {{note|38-Ashby}} Ashby ''Four Views on Eternal Security'' 142ff
72511 &lt;br&gt; (39) {{note|39-Ashby}} Ibid., 138-139
72512 &lt;br&gt; (40) {{note|40-Arminius}} Arminius, ''Writings'' 2:192
72513 &lt;br&gt; (41) {{note|41-Picirilli}} Picirilli ''Grace, Faith, Free Will'' 104-105, 132ff
72514 &lt;br&gt; (42) {{note|42-Ashby}} Ashby ''Four Views on Eternal Security'' 140ff
72515 &lt;br&gt; (43) {{note|43-Picirilli}} Picirilli ''Grace, Faith, Free Will'' 132
72516 &lt;br&gt; (44) {{note|44-Arminius}} Arminius ''Writings'', II:219ff (the entire treatise occupies pages 196-452)
72517 &lt;br&gt; (45) {{note|45-Pawson}} Pawson ''Once Saved, Always Saved?'', 106
72518 &lt;br&gt; (46) {{note|46-Pawson}} Ibid., 97-98, 106
72519 &lt;br&gt; (47) {{note|47-Picirilli}} Picirilli ''Grace, Faith, Free Will'', 6ff
72520 &lt;br&gt; (48) {{note|48-Ashby}} Ashby ''Four Views on Eternal Security'' 146-147
72521 &lt;br&gt; (49) {{note|49-Ashby}} Ibid.
72522 &lt;br&gt; (50) {{note|50-Dongell}} Dongell, Joseph and Walls, Jerry ''Why I Am Not a Calvinist''
72523 &lt;br&gt; (51) {{note|51-Pawson}} Pawson ''Once Saved, Always Saved?'' 106
72524 &lt;/div&gt;
72525
72526 ==External links==
72527 * [http://wesley.nnu.edu/arminianism/Arminius/index.htm The Works of Arminius]
72528 * [http://gbgm-umc.org/Umhistory/Wesley/arminian.stm What is an Arminian?] by John Wesley
72529 * [http://gbgm-umc.org/Umhistory/Wesley/sermons/serm-058.stm Sermon #58: &quot;On Predestination&quot;] by John Wesley
72530 * [http://wesley.nnu.edu/wesleyan_theology/theojrnl/16-20/17-12.htm The Nature of Wesleyan Theology] by J. Kenneth Grider
72531 * [http://www.biblical-theology.com/security/eternal.htm Eternal Security] by Gordon Olson
72532 * [http://www.biblical-theology.com/security/ues.htm Eternal Security] by Daniel Corner
72533 * [http://www.biblicaladvancedbasics.com/Security.pdf Eternal Security] by Frederick E. Lewis
72534 * [http://www.affcrit.com/pdfs/2003/01/03_01_wr.pdf The Perseverance of the Saints] - PDF article showing the differences and similarities between Arminian and Calvinist viewpoints on the perseverance of the saints while arguing for assurance of salvation
72535 * [http://wesley.nnu.edu/wesleyan_theology/theojrnl/21-25/22-06.htm Characteristics of Wesley's Arminianism] by Luke L. Keefer, Jr.
72536 * [http://www.newadvent.org/cathen/01740c.htm Arminianism] from the Catholic Encyclopedia
72537 * [http://www.monergism.com/thethreshold/articles/topic/arminianism.html A Comparison of Arminian Theology with the Calvinist Tradition] (from a conservative Calvinist perspective)
72538 * [http://www.gotquestions.org/arminianism.html Is Arminianism Biblical?] (from a Calvinist perspective)
72539 * [http://www.the-highway.com/Arminianism_Exposed2.html Armininaism Exposed] by Mark Herzer (from a Calvinist perspective)
72540
72541 [[Category:Christian theology]]
72542 [[Category:Methodism]]
72543 [[Category:Protestantism]]
72544 [[Category:Reformation]]
72545 [[Category:Theology]]
72546 [[Category:Arminianism]]
72547
72548 [[de:Remonstranten]]
72549 [[es:Arminianismo]]
72550 [[fr:Arminianisme]]
72551 [[ia:Arminianismo]]
72552 [[nl:Remonstranten]]
72553 [[ja:&amp;#12450;&amp;#12523;&amp;#12511;&amp;#12491;&amp;#12454;&amp;#12473;&amp;#20027;&amp;#32681;]]
72554 [[pl:Arminianizm]]
72555 [[sv:Arminianism]]</text>
72556 </revision>
72557 </page>
72558 <page>
72559 <title>The Alan Parsons Project</title>
72560 <id>1307</id>
72561 <revision>
72562 <id>40663533</id>
72563 <timestamp>2006-02-22T03:42:54Z</timestamp>
72564 <contributor>
72565 <username>That Guy, From That Show!</username>
72566 <id>419920</id>
72567 </contributor>
72568 <minor />
72569 <comment>[[WP:AWB|AWB assisted]] formatting and related</comment>
72570 <text xml:space="preserve">'''The Alan Parsons Project''' was a British [[progressive rock]] and pop group active between 1975 and 1987 founded by [[Alan Parsons]] and [[Eric Woolfson]].
72571
72572 Most of their titles, especially the early work, share common traits (likely influenced by [[Pink Floyd]]'s ''[[Dark Side of the Moon]]'', on which Parsons was the [[audio engineer]] in [[1973 in music|1973]]): they were [[concept album]]s, they tended to begin with an instrumental introduction which faded into the first song, often had an instrumental piece in the middle of the second [[gramophone record|LP]] side, and concluded with a quiet, sad, or powerful song. (The opening instrumental was largely done away with by 1980; no later Project album except &quot;Eye In The Sky&quot; featured one.)
72573
72574 The group was also unusual for its lack of a single lead vocalist. Lead vocal duties alternate between Woolfson (mostly for slow or sad songs) and a stream of guest vocalists chosen by their vocal style to complement each song. Woolfson sang lead on many of the group's hits (including &quot;Time&quot; and &quot;Eye In The Sky&quot;) and the record company pressured Parsons to use him more, but Parsons preferred &quot;real&quot; singers, which Woolfson admitted he was not. In addition to Woolfson, Chris Rainbow, Lenny Zakatek, and Colin Blunstone made regular appearances. Other singers, such as Ambrosia's David Pack, Vitamin Z's Geoff Barradale, and Procol Harum's Gary Brooker, have recorded only once or twice with the Project. Parsons himself only sang lead on one song (&quot;The Raven&quot;) and can be heard singing backup on another (&quot;To One in Paradise&quot;). Both of those songs appeared on the group's first record, ''[[Tales of Mystery and Imagination]]'', an album containing music based on the stories and poetry of [[Edgar Allan Poe]].
72575
72576 Although the vocalists varied, a small number of musicians worked with the Alan Parsons Project regularly. They, and Parsons' production, are the reason listeners can instantly recognize a song as a Project work even with an unfamiliar singer. Andrew Powell (composer and arranger of orchestral music throughout the life of the Project), Ian Bairnson (guitar) and Richard Cottle (synthesizer and saxophone) were integral parts of the Project's sound. Powell is also notable for having composed a [[film score]] in the Project style for [[Richard Donner]]'s film ''[[Ladyhawke]]''.
72577
72578 Behind the revolving lineup and the regular sidemen, the true core of the Project was the duo of Parsons and Woolfson. Eric Woolfson was a lawyer by profession, but is a classically-trained composer and pianist as well. Alan Parsons was a successful producer and accomplished engineer. Both worked together to craft noteworthy songs with impeccable fidelity, and almost all songs on Project albums are credited to &quot;Woolfson/Parsons.&quot;
72579
72580 == Members ==
72581 * [[Alan Parsons]], keyboards, production, engineering;
72582 * [[Eric Woolfson]], keyboards, executive production
72583 * [[Andrew Powell]], keyboards, orchestral arrangements;
72584 * [[Ian Bairnson]], guitars
72585 *Bass: [[David Paton]] (1975-1985); Laurie Cottle (1985-1987)
72586 *Drums, Percussion: [[Stuart Tosh]] (1975-1977); Stuart Elliott (1977-1987)
72587 *Saxophones, Keyboards: [[Mel Collins]] (1980-1984); Richard Cottle (1984-1987)
72588 *Vocals: [[Eric Woolfson]], Lenny Zakatek, [[John Miles (musician)|John Miles]], [[Chris Rainbow]], [[Colin Blunstone]], [[David Paton]], and many others including [[Arthur Brown (musician)|Arthur Brown]].
72589
72590 ==Trivia==
72591 *In the [[Austin Powers]] movie ''[[Austin Powers: The Spy Who Shagged Me|The Spy who Shagged Me]]'', [[Dr. Evil]]'s laser was called &quot;The Alan Parsons Project,&quot; after the &quot;noted Cambridge physicist Dr. Parsons&quot;
72592 *The project for developing a new site for the [[National Library for the Blind]] is officially called &quot;The Alan Parsons Project&quot;
72593 *&quot;Sirius&quot;, the instrumental piece that opens ''Eye In The Sky,'' is popular in the [[National Basketball Association|NBA]] as background music during player introductions. It is perhaps best remembered as playing this role for all six [[Chicago Bulls]] championship teams of the 1990s.
72594 *&quot;Sirius&quot; and ''Eye In The Sky'''s other instrumental, &quot;Mammagamma&quot;, were used as music-under for a [[1987]] [[The Weather Channel|Weather Channel]] special on thunderstorms (this was far before the network engaged in regular non-live programming), alongside the music of [[Jean-Michel Jarre]].
72595 * In [[The Simpsons]] episode 3F21 [[Homerpalooza]], Homer thought that The Alan Parsons Project was &quot;some sort of hovercraft&quot;.
72596 * [[Grandaddy]]'s promo-only single &quot;[[Alan Parsons In A Winter Wonderland|Alan Parsons in a Winter Wonderland]]&quot; is a humourous cover of the Christmas song [[Winter Wonderland]], with lyrics altered to make the song about Alan Parsons.
72597
72598 == Discography ==
72599 * [[1975 in music|1975]] ''[[Tales of Mystery and Imagination]]'' - based on stories by the writer [[Edgar Allan Poe]]. The later reissue on CD (in 1987) was remixed from the original master tapes, enhancing some of the tracks and restoring the [[Orson Welles]] narration (recorded a few weeks before his death) that was left off the original due to record company 'concerns'.
72600 * [[1977 in music|1977]] ''[[I Robot (album)|I Robot]]'' - The title quotes [[Isaac Asimov]]'s [[I, Robot|work]], &quot;a view of tomorrow through the eyes of today&quot;. Includes minor hits &quot;I Wouldn't Want to Be Like You&quot; and &quot;Breakdown.&quot;
72601 * [[1978 in music|1978]] ''[[Pyramid (album)|Pyramid]]'' - [[Ancient Egypt]] surfaces repeatedly, the album is called &quot;a view of yesterday through the eyes of today&quot;.
72602 * [[1979 in music|1979]] ''[[Eve (album)|Eve]]'' - about [[woman|women]]; this is the only Project album to feature female lead vocalists - and even then only on two tracks.
72603 * [[1980 in music|1980]] ''[[The Turn of a Friendly Card]]'' - about [[gambling]], literally and figuratively. Includes their hits &quot;Time&quot; and &quot;Games People Play.&quot;
72604 * [[1982 in music|1982]] ''[[Eye in the Sky]]'' - presumably about surveillance, [[Life]] and the [[Universe]], but some insist it is about &quot;forgotten and lost values&quot;. Album contains their most famous single, &quot;Eye in the Sky.&quot;
72605 * [[1984 in music|1984]] ''[[Ammonia Avenue]]'' - although this album has no discernable theme, it is their most &quot;radio-friendly&quot; album. Includes &quot;Don't Answer Me&quot; and &quot;You Don't Believe&quot; (the latter first appeared on a 1983 &quot;best of&quot; collection).
72606 * [[1984 in music|1984]] ''[[Vulture Culture]]'' - a critique of consumerism and, in particular, American popular culture. Includes &quot;Let's Talk About Me.&quot;
72607 * [[1985 in music|1985]] ''[[Stereotomy]]'' - The effect of fame and fortune on various people - singers, actors, etc.
72608 * [[1987 in music|1987]] ''[[Gaudi (album)|Gaudi]]'' - songs inspired by the life of Catalan architect [[Antoni Gaudí]], with a song named after his most famous work, [[Sagrada familia|La Sagrada Familia]].
72609
72610 After those albums, Parsons released other titles under his name (''[[Try Anything Once]]'', ''[[On Air]]'', ''[[The Time Machine (album)|The Time Machine]]'', and ''[[A Valid Path]]''), while Woolfson made [[concept albums]] named ''Freudiana'' (about [[Sigmund Freud]]'s work on [[psychology]]) and ''[[Poe - More Tales of Mystery and Imagination]]'' (continuing from the Alan Parsons Project's first album about [[Edgar Allan Poe]]'s literature).
72611
72612 Although the studio version of ''Freudiana'' was produced by Alan Parsons (and featured the regular Project backing musicians, making it an 'unofficial' Project album), it was primarily Eric Woolfson's idea to turn it into a musical. This eventually led to a rift between the two artists. While Alan Parsons pursued his own solo career and took many members of the Project on the road for the first time in a successful worldwide tour, Eric Woolfson went on to produce musical plays influenced by the Project's music. ''Freudiana'', ''Gaudi'' and ''Gambler'' were three musicals that included some Project songs like &quot;Eye in the Sky&quot;, &quot;Time&quot;, &quot;Inside Looking Out,&quot; and &quot;Limelight.&quot; The live music from ''Gambler'' was only distributed at the performance site (in [[Cologne]], Germany).
72613
72614 A collection called ''The Instrumental Works'' (1990; now out of print) includes many of the Project's instrumental tracks.
72615
72616 [[Category:English musical groups|Alan Parsons Project, The]]
72617 [[Category:Progressive rock groups|Alan Parsons Project, The]]
72618
72619 [[de:The Alan Parsons Project]]
72620 [[es:Alan Parsons Project]]
72621 [[nl:The Alan Parsons Project]]
72622 [[no:Alan Parsons Project]]
72623 [[pl:Alan Parsons Project]]
72624 [[pt:The Alan Parsons Project]]
72625 [[ru:The Alan Parsons Project]]
72626 [[sv:Alan Parsons Project]]</text>
72627 </revision>
72628 </page>
72629 <page>
72630 <title>Alan Parsons</title>
72631 <id>1308</id>
72632 <revision>
72633 <id>41423702</id>
72634 <timestamp>2006-02-27T05:37:05Z</timestamp>
72635 <contributor>
72636 <username>Folkor</username>
72637 <id>244426</id>
72638 </contributor>
72639 <minor />
72640 <text xml:space="preserve">'''Alan Parsons''' (born [[December 20]], [[1949]]) is a [[United Kingdom|British]] musician.
72641
72642 He began his musical career as a staff engineer at EMI Studios, and first garnered significant industry exposure via his work on the [[Beatles]]' 1969 masterpiece ''[[Abbey Road (album)|Abbey Road]]''. Parsons subsequently worked with [[Paul McCartney]] on several of [[Wings (band)|Wings]]' earliest albums; he also oversaw recordings from [[Al Stewart]], [[Cockney Rebel]], [[Pilot]], [[Ambrosia (band)|Ambrosia]], and the [[Hollies]], but solidified his reputation by working on [[Pink Floyd]]'s ''[[Dark Side of the Moon]]''.
72643
72644 Alan Parsons was known for going beyond what one would consider the normal scope of a recording engineer. He considered himself to be a recording [[Film director|director]] and was known to compare what he did with albums to what [[Stanley Kubrick]] did on film. This is obvious in his work with Al Stewart's &quot;[[Year of the Cat]]&quot;, where Parsons added the [[saxophone]] part and transformed the original folk concept into the [[jazz]] influenced [[ballad]] that put Al Stewart onto the charts. It is also seen in Parson's influence on the Hollies &quot;[[He Ain't Heavy, He's My Brother]]&quot; and &quot;[[The Air That I Breathe]]&quot;, sharp departures from their 60s pop &quot;Stay&quot;, &quot;Just One Look&quot;, &quot;Stop, Stop, Stop&quot;, [[Bus Stop (song)|&quot;Bus Stop&quot;]], or [[Betty Everett|&quot;It's in His Kiss&quot;]].
72645
72646 Although an accomplished [[vocalist]] and [[flutist]], Parsons only sang infrequent and incidental parts on his albums. Recordings featuring his [[flute]] are virtually unknown.
72647
72648 Influenced by his work on Stewart's concept album ''[[Time Passages]]'', Parsons decided to begin creating his own thematic records; along with songwriter [[Eric Woolfson]], he soon founded [[The Alan Parsons Project]]. Although Parsons played keyboards and infrequently sang on his records, the Project was designed primarily as a forum for a revolving collection of vocalists and session players — among them [[Arthur Brown]], ex-Zombie [[Colin Blunstone]], [[Cockney Rebel]]'s [[Steve Harley]], the [[Hollies]]' [[Allan Clarke]] and guitarist [[Ian Bairnson]] — to interpret and perform Parsons and Woolfson's conceptually-linked, lushly-synthesized music.
72649
72650 The Project debuted in 1976 with ''[[Tales of Mystery and Imagination]]'', a collection inspired by the work of [[Edgar Allen Poe]]. The album was remixed for release on CD and includes narration by [[Orson Wells]] which was left off the vinyl version. Similarly, the science fiction of [[Isaac Asimov]] served as the raw material for 1977's follow-up ''[[I Robot (album)|I Robot]]''. With 1980s ''[[The Turn of a Friendly Card]]'', a meditation on gambling, the [[Alan Parsons Project]] scored a Top 20 hit, &quot;[[Games People Play]]&quot;. 1982's ''[[Eye in the Sky]]'' was their most successful effort, and notched a Top Three hit with its title track. While 1984's ''[[Ammonia Avenue]]'' went gold, the Project's subsequent LPs earned little notice, although records like 1985's ''[[Vulture Culture]]'' and 1987's ''[[Gaudi]]'' found favor with longtime fans.
72651
72652 Following the breakup of The Project, he went on to create several solo albums:
72653
72654 *[[1993]] ''[[Try Anything Once]]'',
72655 *[[1996]] ''[[On Air]]'' - includes CD-ROM containing some history of [[aviation]],
72656 *[[1999]] ''[[The Time Machine (album)|The Time Machine]]'',
72657 *2004 ''[[A Valid Path]]'', with [[David Gilmour]] on &quot;Return to [[Tunguska]]&quot;.
72658 ==External links==
72659 *[http://www.alanparsonsmusic.com/ Official Site]
72660
72661 [[Category:1949 births|Parsons, Alan]]
72662 [[Category:Living people|Parsons, Alan]]
72663 [[Category:British record producers|Parsons, Alan]]
72664
72665 [[de:Alan Parsons]]
72666 [[fr:Alan Parsons]]
72667 [[nl:Alan Parsons]]
72668 [[pl:Alan Parsons]]
72669 [[pt:Alan Parsons]]
72670
72671 {{UK-musician-stub}}</text>
72672 </revision>
72673 </page>
72674 <page>
72675 <title>Almost all</title>
72676 <id>1309</id>
72677 <revision>
72678 <id>38589079</id>
72679 <timestamp>2006-02-07T08:07:37Z</timestamp>
72680 <contributor>
72681 <username>Scott Ritchie</username>
72682 <id>105861</id>
72683 </contributor>
72684 <comment>Note there are an infinite number of primes (to contrast with usage of &quot;all but finitely many&quot;)</comment>
72685 <text xml:space="preserve">In [[mathematics]], the phrase '''almost all''' has a number of specialised uses.
72686
72687 &quot;Almost all&quot; is sometimes used synonymously with &quot;all but [[finite]]ly many&quot;; see [[almost]].
72688
72689 In [[number theory]], if ''P''(''n'') is a property of positive [[integer]]s, and if ''p''(''N'') denotes the number of positive integers ''n'' less than ''N'' for which ''P''(''n'') holds, and if
72690
72691 :''p''(''N'')/''N'' &amp;rarr; 1 as ''N'' &amp;rarr; &amp;infin;
72692
72693 (see [[limit]]), then we say that &quot;''P''(''n'') holds for almost all positive integers ''n''&quot; and write
72694 :&lt;math&gt;(\forall^\infty n) P(n)&lt;/math&gt;.
72695
72696 For example, the [[prime number theorem]] states that the number of [[prime numbers]] less than or equal to ''N'' is asymptotically equal to ''N''/ln ''N''. Therefore the proportion of prime integers is roughly 1/ln ''N'', which tends to 0. Thus, ''almost all'' positive integers are composite, however there are still an infinite number of primes.
72697
72698 Occasionally, &quot;almost all&quot; is used in the sense of &quot;[[almost everywhere]]&quot; in [[measure theory]], or in the closely related sense of &quot;[[almost surely]]&quot; in [[probability theory]].
72699
72700 ==See also==
72701
72702 *[[Sufficiently large]]
72703
72704 [[Category:Mathematical terminology]]
72705 [[Category:Mathematical notation]]</text>
72706 </revision>
72707 </page>
72708 <page>
72709 <title>Ada Byron's notes on the analytical engine</title>
72710 <id>1311</id>
72711 <revision>
72712 <id>39325297</id>
72713 <timestamp>2006-02-12T10:10:48Z</timestamp>
72714 <contributor>
72715 <username>Lambiam</username>
72716 <id>745100</id>
72717 </contributor>
72718 <minor />
72719 <comment>ref. to otherwise ununderstandable &quot;Baum&quot;</comment>
72720 <text xml:space="preserve">In [[1846]] [[Charles Babbage]] was invited to give a seminar at the [[University of Turin]] about his [[analytical engine]].
72721 [[Federico Luigi, Conte Menabrea|Luigi Menabrea]], a young [[Italy|Italian]] [[engineer]] wrote up Babbage's lecture in [[French language|French]], and this transcript was subsequently published in the [[Bibliothèque Universelle de Genève]] in [[1842]].
72722
72723 Babbage asked [[Ada Lovelace]] (born Ada Byron) to translate Menabrea's paper into English. He then further asked Lady Ada to augment the notes she had added to the translation, and she spent most of a year doing this.
72724
72725 These notes, which are more extensive than Menabrea's paper, were then published in ''The Ladies Diary'' and ''Taylor's Scientific Memoirs'' (under the initialism A.A.L.).
72726
72727 Her notes were labelled A, B, C, D, E, F and G, the last one being the longest.
72728
72729 In note G Ada describes an [[algorithm]] for the [[analytical engine]] to compute [[Bernoulli number]]s. It is generally considered the first algorithm ever specifically tailored for implementation on a [[computer]], and for this reason she is considered by many to be the first [[programmer|computer programmer]].
72730
72731 Note G could possibly also be said to be the first expression of the modern computer phrase &quot;[[Garbage In, Garbage Out]]&quot;. Lovelace writes:
72732
72733 :''&quot;The Analytical Engine has no pretensions whatever to originate anything. It can do whatever we know how to order it to perform. It can follow analysis; but it has no power of anticipating any analytical relations or truths.''&quot;
72734
72735 On the other hand, proponents of [[Artificial intelligence]] would dismiss the above quote as nonsense: [[Automated theorem proving]] could be cited as a counterexample.
72736
72737 According to Linda Talisman on
72738 [http://www.cs.yale.edu/homes/tap/Files/ada-lovelace-notes.html]:
72739 &quot;Baum &lt;nowiki&gt;[&lt;/nowiki&gt;Baum, Joan. ''The Calculating Passion of Ada Byron''. Archon
72740 Books, Hamden, Conn., 1986. ISBN 0208021191&lt;nowiki&gt;]&lt;/nowiki&gt; cites:
72741 *Perl, Teri. The Ladies Diary or Woman's Almanac, 1704-1841, Historica Mathematica 6 (1979): 36-53
72742 *Wallis, Ruth and Peter. Female Philomaths, Historica Mathematica 7, (1980), 57-64
72743 &lt;blockquote&gt;
72744 There were indeed women in mid-century England who signed
72745 their names to mathematical articles in popular journals,
72746 and there were influential periodicals, such as the
72747 [[Edinburgh Review]], that lent intellectual women psychological
72748 support.... Although the [[Ladies Diary]] ..., the most popular
72749 of the mathematical periodicals, encouraged women to join
72750 wit with beauty, it attracted serious amateurs of both
72751 sexes... [it] was a respectable place to pose mathematical
72752 problems and sustain debate... since there were few science
72753 periodicals in England until the 1830s, technical articles
72754 often appeared in general periodicals like the Ladies Diary.
72755 It may have been something similar that originally sparked
72756 [[Mary Fairfax Somerville|Mrs. Somerville's]] interest in mathematics. At a tea party
72757 one afternoon, she recalled years later, young Mary Fairfax
72758 had been given a ladies' fashion magazine that contained a
72759 puzzle, the answer to which was given in strange symbols.
72760 These symbols turned out to be [[algebra]]. And that magazine
72761 became her introduction to the world of [[Euclidean geometry]]
72762 and number.
72763 &lt;/blockquote&gt;
72764 Baum, p. 35&quot;.
72765
72766 ==External links==
72767 *[http://www.fourmilab.ch/babbage/sketch.html ''Sketch of The Analytical Engine Invented by Charles Babbage'' by L. F. Menabrea with notes upon the Memoir by the translator Ada Augusta, Countess of Lovelace]
72768 *[http://www.cs.yale.edu/homes/tap/Files/ada-lovelace-notes.html ''Ada Lovelace's Notes and The Ladies Diary'']
72769
72770 [[Category:History of computing]]</text>
72771 </revision>
72772 </page>
72773 <page>
72774 <title>Augustine</title>
72775 <id>1312</id>
72776 <revision>
72777 <id>42116803</id>
72778 <timestamp>2006-03-03T22:56:57Z</timestamp>
72779 <contributor>
72780 <ip>86.49.59.222</ip>
72781 </contributor>
72782 <comment>+cs + de interwiki links</comment>
72783 <text xml:space="preserve">'''Augustine''' may refer to:
72784
72785 '''Saints:'''
72786 * [[Augustine of Hippo]], (354-430) theologian, author of ''The City of God'', ''Confessions''
72787 * [[Augustine of Canterbury]], (d. 604) first [[Archbishop of Canterbury]]
72788
72789 '''Or:'''
72790 *[[Augustinians]], an order of Catholic monk named after Augustine of Hippo
72791 *[[Augustine Volcano]] on [[Augustine Island]] in [[Alaska]]
72792 *[[St. Augustine, Florida]], a city in the United States
72793 *[[James Augustine]], a Power Forward and Center for the [[Illinois Fighting Illini|University of Illinois]] Men's Basketball Team
72794
72795 {{disambig}}
72796
72797 [[cs:Augustin]]
72798 [[de:Augustin]]
72799 [[ko:ė•„ėš°ęĩŦėŠ¤í‹°ëˆ„ėŠ¤]]
72800 [[pl:Augustyn]]
72801 [[ru:АвĐŗŅƒŅŅ‚иĐŊ]]</text>
72802 </revision>
72803 </page>
72804 <page>
72805 <title>Aromatic hydrocarbon</title>
72806 <id>1313</id>
72807 <revision>
72808 <id>42037537</id>
72809 <timestamp>2006-03-03T10:43:58Z</timestamp>
72810 <contributor>
72811 <username>Chobot</username>
72812 <id>259798</id>
72813 </contributor>
72814 <minor />
72815 <comment>robot Adding: ar, he, ko</comment>
72816 <text xml:space="preserve">An '''aromatic hydrocarbon''' (abbreviated as AH), or '''arene''' is a [[hydrocarbon]], the [[molecular structure]] of which incorporates one or more planar sets of six [[carbon]] atoms that are connected by [[delocalised electron]]s numbering the same as if they consisted of alternating single and double [[Covalent bond|covalent bonds]]. After the simplest possible [[aromatic]] hydrocarbon, [[benzene]], such a configuration of six carbon atoms is known as a [[benzene ring]].
72817
72818 == Benzene ring model ==
72819 [[image:toluene.png|100px|right|thumb| [[Toluene]] ]]{{main|aromaticity}}
72820 Each carbon atom in the hexagonal cycle has four electrons to share. One goes to the hydrogen atom, and one each to the two neighboring carbons. This leaves one to share with one of its two neighboring carbon atoms, which is why the benzene molecule is drawn with alternating single and double bonds around the hexagon.
72821
72822
72823 Many chemists just draw a circle around the inside of the ring to show that there are six electrons floating around in delocalized molecular orbitals the size of the ring itself. This also accurately represents the equivalent nature of the six bonds all of [[bond order]] ~1.5. This equivalency is well explained by [[Resonance (chemistry)|resonance form]]s. The electrons float above and below the ring, and the electromagnetic fields they generate keep the ring flat.
72824
72825 In modern terminology, benzene rings can be described as compounds in which a continuous, closed system of rings contains separate sets of [[VSEPR#Sigma_Bonds|sigma]] and [[VSEPR#Pi_Bonds|pi electron]]s.
72826 The [[atomic orbital]]s forming the sigma system are sp&lt;sup&gt;2&lt;/sup&gt; [[orbital hybridisation|hybridized]], and those forming the pi system are pure p orbitals.
72827
72828 * Properties:
72829 # They have close conjugation.
72830 # The Carbon atoms are sp&lt;sup&gt;2&lt;/sup&gt; hybridized, and therefore have a trigonal planar structure.
72831 # The Carbon-Hydrogen ratio is very large.
72832 # [[HÃŧckel's rule]]s apply
72833 # They burn with a sooty yellow flame because of the high carbon-hydrogen ratio.
72834 # They undergo [[electrophilic substitution reaction]]s
72835
72836 == Benzene and derivatives of benzene ==
72837 [[image:Benzene-structure.png|75px|right|thumb| [[Benzene]] ]]{{main|benzene}}
72838 Aromatic hydrocarbons can be ''monocyclic'' or ''polycyclic''. [[Benzene]], C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;6&lt;/sub&gt;, is the simplest AH and was recognized as the first aromatic hydrocarbon, with the nature of its bonding first being recognized by [[Friedrich August KekulÊ von Stradonitz]] in the [[19th century]].
72839
72840 ==PAHs==
72841 {{main|Polycyclic aromatic hydrocarbon}}
72842 [[image:napthalene.png|100px|right|thumb| [[Naphthalene]] ]]Some important arenes are the '''polycyclic aromatic hydrocarbons''' (PAH); they are also called '''polynuclear aromatic hydrocarbons'''. They are composed of more than one aromatic ring. The simplest PAH is [[benzocyclobutene]] ([[Carbon|C]]&lt;sub&gt;8&lt;/sub&gt;[[Hydrogen|H]]&lt;sub&gt;6&lt;/sub&gt;).
72843
72844 == PAHs and the origins of life ==
72845 {{main|PAH world hypothesis}}
72846 In January 2004 (at the 203rd Meeting of the [[American Astronomical Society]]), it was reported (as cited in Battersby, 2004) that a team led by A. Witt of the [[University of Toledo|University of Toledo, Ohio]] studied ultraviolet light emitted by the [[Red Rectangle nebula]] and found the spectral signatures of [[anthracene]] and [[pyrene]]. (No other such complex molecules had ever before been found in space.) This discovery was considered confirmation of a hypothesis that as nebulae of the same type as the Red Rectangle approach the ends of their lives, convection currents cause carbon and hydrogen in the nebulae's core to get caught in stellar winds, and radiate outward. As they cool, the atoms supposedly bond to each other in various ways and eventually form particles of a million or more atoms.
72847
72848 Witt and his team inferred (as cited in Battersby, 2004) that since they discovered PAHs&amp;mdash;which may have been vital in the formation of early life on Earth&amp;mdash;in a nebula, nebulae, by necessity, are where they originate.
72849
72850 == External links ==
72851 * [http://www.pca.state.mn.us/programs/pubs/qa-pahs.pdf Carcinogenic FAC list] in [[Portable Document Format]].
72852 * [http://www.atsdr.cdc.gov/toxprofiles/tp69.html Toxicological profiles of PAH].
72853 * [http://books.nap.edu/books/POD088/html/385.html#pagetop LIST of PAH].
72854 * [http://www.aapg.org/explorer/2002/11nov/abiogenic.cfm Abiogenic Gas Debate 11:2002 (EXPLORER)]
72855
72856 == References ==
72857 *American Astronomical Society. (n.d.). Meeting program contents. Retrieved January 11, 2004 from http://www.aas.org/meetings/aas203/
72858 *Battersby, S. (2004). Space molecules point to organic origins. Retrieved January 11, 2004 from http://www.newscientist.com/news/news.jsp?id=ns99994552
72859
72860 [[Category:Aromatic hydrocarbons]] [[Category:Hydrocarbons]] [[Category:Origin of life]]
72861
72862 [[ar:ØŖØąŲˆŲ…اØĒŲŠØŠ]]
72863 [[de:Aromaten]]
72864 [[et:Areenid]]
72865 [[es:Hidrocarburo aromÃĄtico]]
72866 [[fr:Hydrocarbure aromatique]]
72867 [[ko:ë°Ší–ĨėĄą 탄화ėˆ˜ė†Œ]]
72868 [[he:ארומטיו×Ē]]
72869 [[lv:Aromātiskie ogÄŧÅĢdeņraÅži]]
72870 [[nl:Aromatische verbinding]]
72871 [[ja:čŠŗéĻ™æ—į‚­åŒ–æ°´į´ ]]
72872 [[pl:WęglowodÃŗr aromatyczny]]
72873 [[ru:АŅ€ĐĩĐŊŅ‹]]
72874 [[sv:Aromatiska kolväten]]
72875 [[zh:čŠŗįƒƒ]]</text>
72876 </revision>
72877 </page>
72878 <page>
72879 <title>Abbadids</title>
72880 <id>1314</id>
72881 <revision>
72882 <id>15899803</id>
72883 <timestamp>2002-04-20T23:13:27Z</timestamp>
72884 <contributor>
72885 <username>Maveric149</username>
72886 <id>62</id>
72887 </contributor>
72888 <comment>*#redirect[[Abbadid]]</comment>
72889 <text xml:space="preserve">#redirect[[Abbadid]]</text>
72890 </revision>
72891 </page>
72892 <page>
72893 <title>Abbey</title>
72894 <id>1315</id>
72895 <revision>
72896 <id>41349281</id>
72897 <timestamp>2006-02-26T19:42:44Z</timestamp>
72898 <contributor>
72899 <username>Dragonix</username>
72900 <id>976685</id>
72901 </contributor>
72902 <minor />
72903 <comment>/* [[Benedictine abbey]]s */</comment>
72904 <text xml:space="preserve">:''This article is about an '''abbey''' as a Christian [[monastery|monastic community]]. For other uses, see [[Abbey (disambiguation)]]''.
72905 {{christianity}}
72906 An '''abbey''' (from the [[Latin]] ''abbatia,'' which is derived from the [[Syriac language|Syriac]] ''abba,'' &quot;father&quot;), is a [[Christianity|Christian]] '''[[monastery]]''' or '''convent''', under the government of an [[Abbot]] or an [[Abbess]], who serve as the spiritual father or mother of the community. A '''[[priory]]''' only differed from an abbey in that the superior bore the title of [[prior]] instead of abbot. Priories were originally offshoots from the larger abbeys, to the abbots of which they continued subordinate; however, the actual distinction between abbeys and priories was lost by the [[Renaissance]]. Do not confuse the term ''convent'' with the term monastery. Both nuns and monks live in monasteries. Sisters, members of active orders, live in convents. Nuns who are cloistered live in monasteries.
72907
72908 The earliest known Christian monastic communities (see [[Monasticism]]) consisted of groups of cells or huts collected about a common centre, which was usually the house of some hermit or anchorite famous for holiness or singular asceticism, but without any attempt at orderly arrangement. Such communities were not an invention of Christianity. The example had been already set in part by the [[Essenes]] in [[Judea]] and perhaps by the [[Therapeutae]] in [[Egypt]].
72909
72910 In the earliest age of Christian [[monasticism]] the [[ascetic]]s were accustomed to live singly, independent of one another, not far from some village church, supporting themselves by the labour of their own hands, and distributing the surplus after the supply of their own scanty wants to the poor. Increasing religious fervour, aided by persecution, drove them farther and farther away from the civilization into mountain solitudes or lonely deserts. The deserts of Egypt swarmed with the &quot;cells&quot; or huts of these anchorites. [[Anthony the Great]], who had retired to the Egyptian Thebaid during the persecution of [[Maximian]], A.D. [[312]], was the most celebrated among them for his
72911 austerities, his sanctity, and his power as an exorcist. His fame collected round him a host of followers imitating his asceticism in an attempt to imitate his sanctity. The deeper he withdrew into the wilderness, the more numerous his disciples became. They refused to be separated from him, and built their ceils round that of their spiritual father. Thus arose the first monastic community, consisting of anchorites living each in his own little dwelling, united together under one superior. Anthony, as Neander remarks (Church History, vol. iii. p. 316, Clark's trans.), &quot;without any conscious design of his own, had become the founder of a new mode of living in common, Coenobitism.&quot; By degrees order
72912 was introduced in the groups of huts. They were arranged in lines like the tents in an encampment, or the houses in a street. From this arrangement these lines of single cells came to be known as Laurae, Laurai, &quot;streets&quot; or &quot;lanes.&quot;
72913 {{TOCleft}}
72914 The real founder of cenobitic (''koinos,'' common, and ''bios,'' life) monasteries in the modern sense was [[Pachomius]], an Egyptian of the beginning of the [[4th century]]. The first community established by him was at Tabennae, an island of the [[Nile]] in [[Upper Egypt]]. Eight others were founded in the region during his lifetime, numbering 3,000 monks. Within fifty years from his death his societies could claim 50,000 members. These coenobia resembled villages, peopled by a hard-working religious community, all of one sex.
72915
72916 The buildings were detached, small and of the humblest character. Each cell or hut, according to [[Sozomen]] (H.R. iii. 14), contained three monks. They took their chief meal in a common refectory or dining hall at 3 P.M., up to which hour they usually fasted. They ate in silence, with hoods so drawn over their faces that they could see nothing but what was on the table before them. The monks spent the time not devoted to religious services or study in manual labour. [[Palladius]], who visited the Egyptian monasteries about the close of the [[4th century]], found among the 300 members of the coenobium of [[Panopolis]], under the [[Pachomius|Pachomian]] rule, 15 tailors, 7 smiths, 4 carpenters, 12 cameldrivers and 15 tanners. Each separate community had its own ''oeconomus'' or steward, who was subject to a chief steward stationed at the head establishment. All the produce of the monks' labour was committed to him, and by him shipped to [[Alexandria]]. The money raised by the sale was expended in the purchase of stores for the support of the communities, and what was over was devoted to charity. Twice in the year the superiors of the several [[coenobia]] met at the chief monastery, under the presidency of an archimandrite (&quot;the chief of the fold,&quot; from ''miandra'', a sheepfold), and at the last meeting gave in reports of their administration for the year. The coenobia of Syria belonged to the Pachomian institution. We learn many details concerning those in the vicinity of [[Antioch]] from [[Chrysostom]]'s writings. The monks lived in separate huts, ''kalbbia,'' forming a religious hamlet on the mountain side. They were subject to an abbot, and observed a common rule. (They had no refectory, but ate their common meal, of bread and water only, when the day's labour was over, reclining on strewn grass, sometimes out of doors.) Four times in the day they joined in [[prayer]]s and [[psalms]].
72917
72918 ===Santa Laura, Mount Athos===
72919 The necessity for defence from hostile attacks (for monastic houses tended to accumulate rich gifts), economy of space and convenience of access from one part of the community to another, by degrees dictated a more compact and orderly arrangement of the buildings of a monastic coenobium. Large piles of building were erected, with strong outside walls, capable of resisting the assaults of an enemy, within which all the necessary edifices were ranged round one or more open courts, usually surrounded with [[cloister]]s. The usual Eastern arrangement is exemplified in the plan of the convent of the [[Holy Laura]], [[Mount Athos]]. &lt;br /&gt;
72920 {| align=&quot;right&quot;
72921 |+ '''Monastery of Santa Laura, Mount Athos (Lenoir)'''
72922 |-
72923 | [[image:abbey_01.png]] ||
72924 :A. Gateway
72925 :B. Chapels
72926 :C. Guest-house
72927 :D. Church
72928 :E. Cloister
72929 :F. Fountain
72930 :G. Refectory
72931 :H. Kitchen
72932 :I. Cells
72933 :K. Storehouses
72934 :L. Postern Gate
72935 :M. Tower
72936 |}
72937
72938 This monastery, like the oriental monasteries generally, is surrounded by a strong and lofty blank stone wall, enclosing an area of between 3 and 4 acres (12,000 and 16,000 m&amp;sup2;). The longer side extends to a length of about 500 feet. There is only one main entrance, on the north side (A), defended by three separate iron doors. Near the entrance is a large tower (M), a constant feature in the monasteries of the Levant. There is a small postern gate at L. The enceinte comprises two large open courts, surrounded with buildings connected with cloister galleries of wood or stone. The outer court, which is much the larger, contains the granaries and storehouses (K), and the kitchen (H) and other offices connected with the refectory (G). Immediately adjacent to the gateway is a two-storied guest-house, opening from a cloister (C). The inner court is surrounded by a cloister (EE), from which open the monks' cells (II). In the centre of this court stands the [[catholicon]] or conventual church, a square building with an apse of the
72939 cruciform domical Byzantine type, approached by a domed [[narthex]]. In front of the church stands a marble fountain (F), covered by a dome supported on columns.
72940 Opening from the western side of the cloister, but actually standing in the outer court, is the refectory (G), a large cruciform building, about 100 feet (30 m) each way, decorated within with frescoes of saints. At the upper end is a semicircular recess, recalling the triclinium of the Lateran Palace at Rome, in which is placed the seat of the hegumenos or abbot. This apartment is chiefly used as a hall of meeting, the oriental monks usually taking their meals in their separate cells.
72941
72942 The annexed plan of a [[Coptic Christianity|Coptic]] monastery, from Lenoir, shows a church of three aisles, with cellular apses, and two ranges of cells on either side of an oblong gallery.
72943 {| align=&quot;right&quot;
72944 |+ '''Plan of Coptic Monastery'''
72945 |-
72946 | [[image:abbey_02.png]] ||
72947 :A. Narthex
72948 :B. Church
72949 :C. Corridor, with cells on each side
72950 :D. Staircase
72951 |}
72952
72953 == [[Benedictine abbey]]s ==
72954 Monasticism in the West owes its extension and development to [[Benedict of Nursia]] (born A.D. [[480]]). His rule was diffused with miraculous rapidity from the parent foundation on [[Monte Cassino]] through the whole of [[western Europe]], and every country witnessed the erection of monasteries far exceeding anything that had yet been seen in spaciousness and splendour. Few great towns in Italy were without their Benedictine convent, and they quickly rose in all the great centres of population in [[England]], [[France]] and [[Spain]]. The number of these monasteries founded between A.D. [[520]] and [[700]] is amazing. Before the [[Council of Constance]], A.D. [[1415]], no fewer than 15,070 abbeys had been established of this [[order (religious)|order]] alone. The buildings of a Benedictine abbey were uniformly arranged after one plan, modified where necessary (as at Durham and Worcester, where the monasteries stand close to the steep bank of a river) to accommodate the arrangement to local circumstances. We have no existing examples of the earlier monasteries of the Benedictine order. They have all yielded to the ravages of time and the violence of man. But we have fortunately preserved to us an elaborate plan of the great Swiss monastery of St Gall, erected about A.D. [[820]], which puts us in possession of the whole arrangements of a monastery of the first class towards the early part of the 9th century. This curious and interesting plan has been made the subject of a memoir both by [[Keller]] ([[ZÃŧrich]], [[1844]]) and by Professor [[Robert Willis]] (''Arch. Journal,'' 1848, vol. v. pp. 86-117. To the latter we are indebted for the substance of the following description, as well as for the plan, reduced from his elucidated transcript of the original preserved in the archives of the convent. The general appearance of the convent is that of a town of isolated houses with streets running between them. It is evidently planned in compliance with the Benedictine rule, which enjoined that, if possible, the monastery should contain within itself every necessary of life, as well as the buildings more intimately connected with the religious and social life of its inmates. It should comprise a [[mill (factory)|mill]], a [[bakehouse]], [[stable]]s, and [[cattle|cow]]-houses, together with accommodation for carrying on all necessary mechanical arts within the walls, so as to obviate the necessity of the monks going outside its limits.
72955 [[Image:Jumièges.jpg|thumb|right|200px|Abbey of Jumièges, [[Normandy]]]]
72956 The general distribution of the buildings may be thus described:-The church, with its cloister to the south, occupies the centre of a quadrangular area, about 430 feet square. The buildings, as in all great monasteries, are distributed into groups. The church forms the nucleus, as the centre of the religious life of the community. In closest connection with the church is the group of buildings appropriated to the monastic line and its daily requirements---the refectory for eating, the dormitory for sleeping, the common room for social intercourse, the chapter-house for religious and disciplinary conference. These essential elements of monastic life are ranged about a cloister court, surrounded by a covered arcade, affording communication sheltered from the elements between the various buildings. The infirmary for sick monks, with the physician's house and physic garden, lies to the east. In the same group with the infirmary is the school for the novices. The outer school, with its headmaster's house against the opposite wall of the church, stands outside the convent enclosure, in close proximity to the abbot's house, that he might have a constant eye over them. The buildings devoted to hospitality are divided into three groups,--one for the reception of distinguished guests, another for monks visiting the monastery, a third for poor travellers and pilgrims. The first and third are placed to the right and left of the common entrance of the monastery,---the hospitium for distinguished guests being placed on the north side of the church, not far from the abbot's house; that for the poor on the south side next to the farm buildings. The monks are lodged in a guest-house built against the north wall of the church. The group of buildings connected with the material wants of the establishment is placed to the south and west of the church, and is distinctly separated from the monastic buildings. The kitchen, buttery and offices are reached by a passage from the west end of the refectory, and are connected with the bakehouse and brewhouse, which are placed still farther away. The whole of the southern and western sides is devoted to workshops, stables and farm-buildings. The buildings, with some exceptions, seem to have been of one story only, and all but the church were probably erected of wood. The whole includes thirty-three separate blocks. The church (D) is cruciform, with a nave of nine bays, and a semicircular apse at either extremity. That to the west is surrounded by a semicircular colonnade, leaving an open &quot;paradise&quot; (E) between it and the wall of the church. The whole area is divided by screens into various chapels. The high altar (A) stands immediately to the east of the transept, or ritual choir; the altar of [[Paul of Tarsus|Saint Paul]] (B) in the eastern, and that of [[St Peter]] (C) in the western apse. A cylindrical campanile stands detached from the church on either side of the western apse (FF).
72957
72958 The `cloister court', (G) on the south side of the nave of the
72959 {| width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;center&quot;
72960 |+ '''Ground plan of St. Gall'''
72961 |-
72962 | align=&quot;center&quot; colspan=&quot;2&quot; | [[image:st_gall_plan.jpg]]
72963 | valign=&quot;top&quot; |
72964 &lt;pre&gt;
72965 CHURCH.
72966 A. High altar.
72967 B. Altar of St Paul.
72968 C. Altar of St Peter.
72969 D. Nave.
72970 E. Paradise.
72971 FF. Towers.
72972 MONASTIC BUILDINGS
72973 G. Cloister.
72974 H. Calefactory, with dormitory over.
72975 I. Necessary.
72976 J. Abbot's house.
72977 K. Refectory.
72978 L. Kitchen.
72979 M. Bakehouse and brewhouse.
72980 N. Cellar.
72981 O. Parlour. (over.
72982 P1. Scriptorium with library k,
72983 P2. Sacristy and vestry.
72984 Q. House of Novices--1.chapel;
72985 2. refectory; 3. calefactory;
72986 4. dormitory; 5. master's room
72987 6. chambers.
72988 R. Infirmary--1--6 as above in
72989 the house of novices.
72990 S. Doctor's house.
72991 T. Physic garden.
72992 U. House for blood-letting.
72993 V. School.
72994 W. Schoolmaster's lodgings.
72995 X1X1. Guest-house for those of superior rank
72996 X2X2. Guest-house for the poor.
72997 Y. Guest-chamber for strange monks.
72998
72999 MENIAL DEPARTMENT.
73000 Z. Factory.
73001 a. Threshing-floor
73002 b. Workshops.
73003 c, c. Mills.
73004 d. Kiln.
73005 e. Stables.
73006 f Cow-sheds.
73007 g. Goat-sheds.
73008 h. Pig-sties. i. Sheep-folds.
73009 k, k. Servants' and workmen's sleeping-chambers.
73010 l. Gardener's house
73011 m,m. Hen and duck house.
73012 n. Poultry-keeper's house.
73013 o. Garden.
73014 q. Bakehouse for sacramental
73015
73016 s, s, s. Kitchens.
73017 t, t, t. Baths.
73018 &lt;/pre&gt;
73019 |}
73020
73021 church has on its east side the &quot;[[pisalis]]&quot; or &quot;[[calefactory]]&quot;, (H), the common sitting-room of the brethren, warmed by flues beneath the floor. On this side in later monasteries we invariably find the [[chapter house]], the absence of which in this plan is somewhat surprising. It appears, however, from the inscriptions on the plan itself, that the north walk of the cloisters served for the purposes of a chapter-house, and was fitted up with benches on the long sides. Above the calefactory is the &quot;[[dormitory]]&quot; opening into the south transept of the church, to enable the monks to attend the nocturnal services with readiness. A passage at the other end leads to the &quot;[[necessarium]]&quot; (I), a portion of the monastic buildings always planned with extreme care. The southern side is occupied by the &quot;refectory&quot; (K), from the west end of which by a vestibule the kitchen (L) is reached. This is separated from the main buildings of the monastery, and is connected by a long passage with a building containing the bake house and brewhouse (M), and the sleeping-rooms of the servants. The upper story of the refectory is the &quot;vestiarium,&quot; where the ordinary clothes of the brethren were kept. On the western side of the cloister is another two story building (N). The cellar is below, and the [[larder]] and store-room above. Between this building and the church, opening by one door into the cloisters, and by another to the outer part of the monastery area, is the &quot;parlour&quot; for interviews with visitors from the external world (O). On the eastern side of the north transept is the &quot;[[scriptorium]]&quot; or writing-room (P1), with the library above.
73022
73023 To the east of the church stands a group of buildings comprising two miniature conventual establishments, each complete in itself. Each has a covered cloister surrounded by the usual buildings, i.e. refectory, dormitory, etc., and a church or chapel on one side, placed back to back. A detached building belonging to each contains a bath and a kitchen. One of these diminutive convents is appropriated to the &quot;[[oblati]]&quot; or novices (Q), the other to the sick monks as an &quot;[[infirmary]]&quot; (R).
73024
73025 The &quot;residence of the physicians&quot; (S) stands contiguous to the infirmary, and the physic garden (T) at the north-east corner of the monastery. Besides other rooms, it contains a drug store, and a chamber for those who are dangerously ill. The &quot;house for bloodletting and purging&quot; adjoins it on the west (U).
73026
73027 The &quot;outer school,&quot; to the north of the convent area, contains a large schoolroom divided across the middle by a screen or partition, and surrounded by fourteen little rooms, termed the dwellings of the scholars. The head-master's house (W) is opposite, built against the side wall of the church. The two &quot;[[hospitia]]&quot; or guest-houses for the entertainment of strangers of different degrees (X1 X2) comprise a large common chamber or refectory in the centre, surrounded by sleeping-apartments. Each is provided with its own brewhouse and bakehouse, and that for travellers of a superior order has a kitchen and storeroom, with bedrooms for their servants and stables for their horses. There is also an &quot;hospitium&quot; for strange monks, abutting on the north wall of the church (Y).
73028
73029 Beyond the cloister, at the extreme verge of the convent area to the south, stands the &quot;factory&quot; (Z), containing workshops for [[shoemaker]]s, saddlers (or shoemakers, sellarii), cutlers and grinders, [[trencher]]-makers, [[tanner]]s, curriers, fullers, [[smith]]s and [[goldsmith]]s, with their dwellings in the rear. On this side we also find the farm buildings, the large granary and threshing-floor (a), mills (c), malthouse (d). Facing the west are the stables (e), ox-sheds (f), goatstables (gl, piggeries (h), sheep-folds
73030 (i), together with the servants' and labourers' quarters (k). At the south-east corner we find the hen and duck house, and poultry-yard (m), and the dwelling of the keeper (n). Hard by is the kitchen garden (o), the beds bearing the names of the vegetables growing in them, onions, garlic, celery, lettuces, poppy, carrots, cabbages, etc., eighteen in all. In the same way the physic garden presents the names of the medicinal herbs, and the cemetery (p) those of the trees, apple, pear, plum, quince, etc., planted there.
73031
73032 &lt;!-- ==[[Canterbury Cathedral]]== --&gt;
73033
73034 ==[[Westminster Abbey]]==
73035 Westminster Abbey is another example of a great Benedictine abbey, identical in its general arrangements, so far as they can be traced, with those described above. The cloister and monastic buildings lie to the south side of the church. Parallel to the nave, on the south side of the cloister, was the refectory, with its lavatory at the door.
73036 On the eastern side we find the remains of the dormitory, raised on a vaulted substructure and communicating with the south transept. The chapter-house opens out of the same alley of the cloister. The small cloister lay to the south-east of the larger cloister, and still farther to the east we have the remains of the infirmary with the table hall, the refectory of those who were able to leave their chambers. The abbot's house formed a small courtyard at the west entrance, close to the inner gateway.
73037 Considerable portions of this remain, including the abbot's parlour, celebrated as &quot;the Jerusalem Chamber,&quot; his hall, now used for the Westminster King's Scholars, and the kitchen and butteries beyond.
73038
73039 ==York==
73040 [[St Mary's Abbey, York]], of which the ground-plan is annexed, exhibits the usual Benedictine arrangements. The precincts are surrounded by a strong fortified wall on three sides, the river [[Ouse]] being sufficient protection on the fourth side. The entrance was by a strong gateway (U) to the north. Close to the entrance was a chapel, where is now the church of St Olaf (W), in which the new-comers paid their devotions immediately on their arrival. Near the gate to the south was the guest-hall or hospitium (T). The buildings are completely ruined, but enough remains to enable us to identify the grand cruciform church (A), the cloister-court with the chapterhouse (B), the refectory (I), the kitchen-court with its offices (K, O, O) and the other principal apartments. The infirmary has perished completely.
73041
73042 FIG. 4
73043
73044 St Mary's Abbey, York (Benedictine).--Churton's Monnastic Ruins.
73045 A. Church. O. Offices.
73046 B. Chapter-house. P. Cellars.
73047 C. Vestibule to ditto. Q. Uncertain.
73048 E. Library or scriptorium. R. Passage to abbot's house.
73049 F. Calefactory. S. Passage to common house.
73050 G. Necessary. T. Hospitium.
73051 H. Parlour. U. Great gate.
73052 I. Refectory. V. Porter's lodge.
73053
73054 K. Great kitchen and court. W. Church of St Olaf.
73055 L. Cellarer's office. X. Tower.
73056 M. Cellars. Y. Entrance from Bootham.
73057 N. Passage to cloister.
73058
73059 The history of monasticism is one of alternate periods of decay and revival. With growth in popular esteem came increase in material wealth, leading to luxury and worldliness. The first religious ardour cooled, the strictness of the rule was relaxed, until by the [[10th century]] the decay of discipline was so complete in France that the monks are said to have been frequently unacquainted with the rule of St Benedict, and even ignorant that they were bound by any rule at all. The reformation of abuses generally took the form of the establishment of new monastic orders, with new and more stringent rules, requiring a modification of the architectural arrangements. One of the earliest of these reformed orders was the Cluniac. This order took its name from,the little village of Cluny, 12 miles N.W. of Macon, near which, about A.D. [[909]], a reformed Benedictine abbey was founded by William, duke of Aquitaine and count of Auvergne, under Berno, abbot of Beaume. He was succeeded by Odo, who is often regarded as the founder of the order. The fame of Cluny spread far and wide. Its rigid rule was adopted by a vast number of the old Benedictine abbeys, who placed themselves in affiliation to the mother society, while new foundations sprang up in large numbers, all owing allegiance to the &quot;archabbot,&quot; established at Cluny.
73060 By the end of the 12th century the number of monasteries affiliated to Cluny in the various countries of western Europe amounted to 2000. The monastic establishment of Cluny was one of the most extensive and magnificent in France. We may form some idea of its enormous dimensions from the fact recorded, that when, in A.D. [[1245]], [[Pope Innocent IV]], accompanied by twelve cardinals, a patriarch, three archbishops, the two generals of the Carthusians and Cistercians, the king (St Louis), and three of his sons, the queen mother, Baldwin, count of Flanders and emperor of Constantinople, the duke of Burgundy, and six lords, visited the abbey, the whole party, with their attendants, were lodged within the monastery without disarranging the monks, 400 in number. Nearly the whole of the abbey buildings, including the magnificent church, were swept away at the close of the 18th century. When the annexed ground-plan was taken, shortly before its destruction, nearly all the monastery, with the exception of the church, had been rebuilt.
73061
73062 The church, the ground-plan of which bears a remarkable resemblance to that of Lincoln Cathedral, was of vast dimensions. It was 656 ft. high. The nave (G) had double vaulted aisles on either side. Like Lincoln, it had an eastern as well as a western transept, each furnished with apsidal chapels to the east. The western transept was 213 ft. long, and the eastern 123 ft. The choir terminated in a semicircular apse (F), surrounded by five chapels, also semicircular. The western entrance was approached by an ante-church, or narthex (B), itself an aisled church of no mean dimensions, flanked by two towers, rising from a stately flight of steps bearing a large stone cross. To the south of the church lay the cloister-court (H), of immense size, placed much farther to the west than is usually the case. On the south side of the cloister stood the refectory (P), an immense building, 100 ft (30 m) long and 60 ft (18 m) wide, accommodating six longitudinal and three transverse rows of tables. It was adorned with the portraits of the chief benefactors of the abbey, and with Scriptural subjects. The end wall displayed the Last Judgment. We are unhappily unable to identify any other of the principal buildings (N). The abbot's residence (K), still partly standing, adjoined the entrance-gate. The guest-house (L) was close by. The bakehouse (M), also remaining, is a detached building of immense size.
73063
73064 ==English Cluniac==
73065 The first English house of the Cluniac order was that of [[Lewes]], founded by the earl of Warren, c. A.D. 1077. Of this only a few fragments of the domestic buildings exist. The best preserved Cluniac houses in England are Castle Acre, Norfolk, and Wenlock, Shropshire. Ground-plans of both are given in Britton's Architectural Antiquities. They show several departures from the Benedictine arrangement. In each the prior's house is remarkably perfect. All Cluniac houses in England were French colonies, governed by priors of that nation. They did not secure their independence nor become &quot;abbeys&quot; till the reign of Henry VI. The Cluniac revival, with all its brilliancy, was but short-lived. The celebrity of this, as of other orders, worked its moral ruin. With their growth in wealth and dignity the Cluniac foundations became as worldly in life and as relaxed in discipline as their predecessors, and a fresh reform was needed.
73066
73067 ==Cistercian==
73068 [[Image:Abbey-of-senanque-provence-gordes.jpg|thumb||200px|right|Cistercian Abbey of Senanque]]
73069
73070 The next great monastic revival, the [[Cistercian]], arising in the last years of the 11th century, had a wider diffusion, and a longer and more honourable existence. Owing its real origin, as a distinct foundation of reformed [[Benedictines]], in the year [[1098]], to [[Stephen Harding]] (a native of [[Dorset]], educated in the monastery of Sherborne), and deriving its name from Citeaux (Cistercium), a desolate and almost inaccessible forest solitude, on the borders of [[Champagne, France|Champagne]] and [[Burgundy]], the rapid growth and wide celebrity of the order are undoubtedly to be attributed to the enthusiastic piety of St Bernard, abbot of the first of the monastic colonies, subsequently sent forth in such quick succession by the first Cistercian houses, the far-famed abbey of [[Clairvaux]] (de Clara Valle), A.D. [[1116]]. The rigid self-abnegation, which was the ruling principle of this reformed congregation of the Benedictine order, extended itself to the churches and other buildings erected by them. The characteristic of the Cistercian abbeys was the extremest simplicity and a studied plainness. Only one tower--a central one --was permitted, and that was to be very low. Unnecessary pinnacles and turrets were prohibited. The [[triforium]] was omitted. The windows were to be plain and undivided, and it was forbidden to decorate them with stained glass. All needless ornament was proscribed. The crosses must be of wood; the candlesticks of iron. The renunciation of the world was to be evidenced in all that met the eye. The same spirit manifested itself in the choice of the sites of their monasteries. The more dismal, the more savage, the more hopeless a spot appeared, the more did it please their rigid mood. But they came not merely as ascetics, but as improvers. The Cistercian monasteries are, as a rule, found placed in deep well-watered valleys. They always stand on the border of a stream; not rarely, as at Fountains, the buildings extend over it. These valleys, now so rich and productive, wore a very different aspect when the brethren first chose them as the place of their retirement. Wide swamps, deep morasses, tangled thickets, wild impassable forests, were their prevailing features. The &quot;bright valley,&quot; Clara Vallis of St Bernard, was known as the &quot;valley of Wormwood,&quot; infamous as a den of robbers. &quot;It was a savage dreary solitude, so utterly barren that at first Bernard and his companions were reduced to live on beech leaves.&quot;-(Milman's Lat. Christ. vol. iii. p. 335.)
73071
73072 ===Abbey Church of St.-Denis===
73073 ''See'' [[Abbey Church of Saint Denis|Abbey Church of St.-Denis]].
73074
73075 ===Clairvaux Abbey===
73076 ''See'' [[Clairvaux Abbey]].
73077
73078 ===Citeaux Abbey===
73079 ''See'' [[Citeaux Abbey]].
73080
73081 ===Kirkstall Abbey===
73082 ''See'' [[Kirkstall Abbey]].
73083
73084 ===Fountains Abbey===
73085 ''See'' [[Fountains Abbey]].
73086
73087 ==Austin Canons==
73088 The buildings of the Austin [[canon (priest)|canons]] or Black canons (so called from the colour of their habit) present few distinctive peculiarities. This order had its first seat in [[England]] at [[Colchester, England|Colchester]], where a house for Austin canons was founded about A.D. [[1105]], and it very soon spread widely. As an order of regular clergy, holding a middle position between monks and secular canons, almost resembling a community of parish priests living under rule, they adopted naves of great length to accommodate large congregations. The choir is usually long, and is sometimes, as at Llanthony and Christchurch (Twynham), shut off from the aisles, or, as at Bolton, Kirkham, etc., is destitute of aisles altogether. The nave in the northern houses, not unfrequently, had only a north aisle, as at Bolton, Brinkburn and [[Lanercost Priory|Lanercost]]. The arrangement of the monastic buildings followed the ordinary type. The prior's lodge was almost invariably attached to the S.W. angle of the nave.
73089 {| border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;
73090 |+
73091 ===Bristol Cathedral===
73092 |-
73093 | align=&quot;center&quot; |
73094 [[image:bristol_abbey.png]]
73095
73096 | align=&quot;left&quot; |
73097 &lt;pre&gt;
73098 FIG. 11.--St Augustine's Abbey, Bristol (Bristol
73099 A. Church.
73100 B. Great cloister.
73101 C. Little cloister.
73102 D. Chapter-house.
73103 E. Calefactory.
73104 F. Refectory.
73105 G. Parlour.
73106 H. Kitchen.
73107 I. Kitchen court.
73108 K. Cellars.
73109 L. Abbot's hall.
73110 P. Abbot's gateway.
73111 R. Infirmary.
73112 S. Friars' lodging.
73113 T. King's hall.
73114 V. Guest-house.
73115 W. Abbey gateway.
73116 X. Barns, stables, etc
73117 Y. Lavatory.
73118 &lt;/pre&gt;
73119 |}
73120
73121 The above plan of the [[Abbey of St Augustine]]'s at [[Bristol]], now the [[Bristol Cathedral|cathedral church of that city]], shows the arrangement of the buildings, which departs very little from the ordinary Benedictine type. The Austin canons' house at Thornton, in Lincolnshire, is remarkable for the size and magnificence of its gate-house, the upper floors of which formed the guest-house of the establishment, and for possessing an octagonal chapter-house of Decorated date.
73122
73123 ==Premonstratensians==
73124 The Premonstratensian regular canons, or White canons, had as many as 35 houses in England, of which the most perfect remaining are those of [[Easby, Yorkshire]], and [[Bayham, Kent]]. The head house of the order in England was Welbeck. This order was a reformed branch of the Austin canons, founded, A.D. [[1119]], by Norbert (born at [[Xanten]], on the [[Lower Rhine]], c. [[1080]]) at Premontre, a secluded marshy valley in the forest of [[Coucy]] in the diocese of [[Laon]]. The order spread widely. Even in the founder's lifetime it possessed houses in [[Syria]] and [[Palestine (region)|Palestine]]. It long maintained its rigid austerity, until in the course of years wealth impaired its discipline, and its members sank into indolence and luxury. The Premonstratensians were brought to England shortly after A.D. [[1140]], and were first settled at Newhouse, in Lincolnshire, near the [[Humber]]. The ground-plan of Easby Abbey, owing to its situation on the edge of the steeply sloping banks of a river, is singularly irregular. The cloister is duly placed on the south side of the church, and the chief buildings occupy their usual positions round it. But the cloister garth, as at Chichester, is not rectangular, and all the surrounding buildings are thus made to sprawl in a very awkward fashion. The church follows the plan adopted by the Austin canons in their northern abbeys, and has only one aisle to the nave--that to the north; while the choir is long, narrow and aisleless. Each transept has an aisle to the east, forming three chapels.
73125
73126 The church at Bayham was destitute of aisles either to nave or choir. The latter terminated in a three-sided apse. This church is remarkable for its exceeding narrowness in proportion to its length. Extending in longitudinal dimensions 257 ft., it is not more than 25 ft. broad. Stern Premonstratensian canons wanted no congregations, and cared for no possessions; therefore they built their church like a long room.
73127
73128 The Premonstratension order still exists and a small group of these Chanones de Premontre now run the former Benedictine Abbey at Conques in South West France, which has become well known as a refuge for pilgrims travelling the Way of Saint James, from Le Puy en Velay in Auvergne, to Santiago de Compostella in Galicia, Spain.
73129
73130 ==Carthusian==
73131 The [[Carthusian]] order, on its establishment by [[Bruno of Cologne|St Bruno]], about A.D. [[1084]], developed a greatly modified form and arrangement of a monastic institution. The principle of this order, which combined the coenobitic with the solitary life, demanded the erection of buildings on a novel plan. This plan, which was first adopted by St Bruno and his twelve companions at the original institution at [[Chartreux]], near [[Grenoble]], was maintained in all the Carthusian establishments throughout [[Europe]], even after the ascetic severity of the order had been to some extent relaxed, and the primitive simplicity of their buildings had been exchanged for the magnificence of decoration which characterizes such foundations as the [[Certosa]]s of [[Pavia]] and [[Florence]]. According to the rule of St Bruno, all the members of a Carthusian brotherhood lived in the most absolute solitude and silence. Each occupied a small detached cottage, standing by itself in a small garden surrounded by high walls and connected by a common corridor or cloister. In these cottages or cells a Carthusian monk passed his time in the strictest asceticism, only leaving his solitary dwelling to attend the services of the Church, except on certain days when the brotherhood assembled in the refectory. The peculiarity of the arrangements of a Carthusian monastery, or charter-house, as it was called in England, from a corruption of the French chartreux, is exhibited in the plan of that of [[Clermont]], from [[Viollet-le-Duc]].
73132
73133 ==Clermont==
73134 The whole establishment is surrounded hy a wall, furnished at intervals with watch towers. The enclosure is divided into two courts, of which the eastern court, surrounded by a cloister, from which the cottages of the monks open, is musch the larger. The two courts are divided by the main buildings of the monastery, including the church, the sanctuary, divided from the monks' choir, by a screen with two altars, the smaller cloister to the south surrounded by the chapter-house, the refectory and the chapel of Pontgibaud. The kitchen with its offices lies behind the refectory, accessible from the outer court without entering the cloister.
73135
73136 To the north of the church, beyond the [[sacristy]], and the side chapels, there is the cell of the sub-prior, with its garden. The lodgings of the prior occupy the centre of the outer court, immediately in front of the west door of the church, and face the gateway of the convent. A small raised court with a fountain is before it. This outer court also contains the guest-chambers, the stables and lodgings of the [[lay brothers]], the barns and granaries, the [[dovecot]] and the bakehouse. There is also a prison. In this outer court, in all the earlier foundations, as at Witham, there was a smaller church in addition to the larger church of the monks.)
73137
73138 The outer and inner courts are connected by a long passage, wide enough to admit a cart laden with wood to supply the cells of the brethren with fuel. The number of cells surrounding the great cloister is 18. They are all arranged on a uniform plan. Each little dwelling contains three rooms: a sitting-room warmed by a stove in winter; a sleeping-room furnished with a bed, a table, a bench, and a bookcase; and a closet. Between the cell and the cloister gallery is a passage or corridor, cutting off the inmate of the cell from all sound or movement which might interrupt his meditations. The superior had free access to this corridor, and through open niches was able to inspect the garden without being seen. There is a hatch or turn-table, in which the daily allowance of food was deposited by a brother appointed for that purpose, affording no view either inwards or outwards.
73139
73140 The above arrangements are found with scarcely any variation in all the charter-houses of western Europe. The [[Yorkshire]] [[Charterhouse]] of [[Mount Grace]], founded by [[Thomas Holland]], the young duke of Surrey, nephew of Richard II. and marshal of England, during the revival of the popularity of the order, about A.D. [[1397]], is the most perfect and best preserved English example. It is characterized by all the simplicity of the order. The church is a modest building, long, narrow and aisleless. Within the wall of enclosure are two courts. The smaller of the two, the south, presents the usual arrangement of church, refectory, etc., opening out of a cloister. The buildings are plain and solid. The northern court contains the cells, 14 in number.
73141
73142 It is surrotmded by a double stone wall, the two walls being about 30 ft. or 40 ft. apart. Between these, each in its own garden, stand the cells; low-built two-storied cottages, of two or three rooms on the ground-floor, lighted by a larger and a smaller window to the side, and provided with a doorway to the court, and one at the back, opposite to one in the outer wall, through which the monk may have conveyed the sweepings of his cell and the refuse of his garden to the &quot;eremus&quot; beyond. By the side of the door to the court is a little hatch through which the daily pittance of food was supplied, so contrived by turning at an angle in the wall that no one could either look in or look out. A very perfect example of this hatch---an arrangement belonging to all Carthusian houses--exists at [[Miraflores]], near [[Burgos]], which remains nearly as it was completed in 1480.
73143
73144 There were only nine Carthusian houses in England. The earliest was that at [[Witham]] in [[Somerset]], founded by [[Henry II of England|Henry II]], by whom the order was first brought into England. The wealthiest and most magnificent was that of Sheen or Richmond in [[Surrey]], founded by [[Henry V of England|Henry V]] about [[1414]]. The dimensions of the buildings at Sheen are stated to have been remarkably large. The great court measured 300 by 250 ft (91 by 76 m); the cloisters were a square of 500 ft (152 m); the hall was 110 ft (34 m) in length by 60 ft (18 m) in breadth.
73145
73146 ==Mendicant Friars==
73147 An article on monastic arrangements would be incomplete without some account of the convents of the Mendicant or Preaching Friars, including the Black Friars or [[Dominican Order|Dominican]]s, the Grey or [[Franciscan]]s, the White or [[Carmelites]], the Eremite or [[Augustinians|Augustinian]], Friars. These orders arose at the beginning of the 13th century, with the growth of towns and cities. Whereas Benedictines and their various branches had worked to achieve self-sufficient agricultural estates, the Mendicant Friars operated differently. Planting themselves, as a rule, in large towns, and by preference in the poorest and most densely populated districts, the Preaching Friars were obliged to adapt their buildings to the requirements of the site. Regularity of arrangement, therefore, was not possible, even if they had studied it. Their churches, built for the reception of large congregations of hearers rather than worshippers, form a class by themselves, totally unlike those of the elder orders in ground-plan and character. They were usually long parallelograms unbroken by transepts. The nave very usually consisted of two equal bodies, one containing the stalls of the brotherhood, the other left entirely free for the congregation. The constructional choir is often wanting, the whole church forming one uninterrupted structure, with a continuous range of windows. The east end was usually square, but the Friars Church at [[Winchelsea]] had a polygonal apse. We not unfrequently find a single transept, sometimes of great size, rivalling or exceeding the nave. This arrangement is frequent in [[Ireland]], where the numerous small friaries afford admirable exemplifications of these peculiarities of ground-plan. The friars' churches were at first destitute of towers; but in the 14th and 15th centuries, tall, slender towers were commonly inserted between the nave and the choir. The Grey Friars at Lynn, where the tower is hexagonal, is a good example. The arrangement of the monastic buildings is equally peculiar and characteristic. We miss entirely the regularity of the buildings of the earlier orders. At the Jacobins at Paris, a cloister lay to the north of the long narrow church of two parallel aisles, while the refectory--a room of immense length, quite detached from the cloister--stretched across the area before the west front of the church. At Toulouse the nave also has two parallel aisles, but the choir is apsidal, with radiating chapel. The refectory stretches northwards at right angles to the cloister, which lies to the north of the church, having the chapter-house and sacristy on the east.
73148
73149 ==Norwich, Gloucester ==
73150 As examples of English friaries, the Dominican house at [[Norwich]], and those of the Dominicans and Franciscans at Gloucester, may be mentioned. The church of the Black Friars of Norwich departs from the original type in the nave (now St Andrew's Hall), in having regular aisles. In this it resembles the earlier examples of the Grey Friars at Reading. The choir is long and aisleless; an hexagonal tower between the two, like that existing at Lynn, has perished. Thc cloister and monastic buildings remain tolerably perfect to the north. The Dominican convent at Gloucester still exhibits the cloister-court, on the north side of which is the desecrated church. The refectory is on the west side and on the south the dormitory of the 13th century. This is a remarkably good example. There were 18 cells or cubicles on each side, divided by partitions, the bases of which remain. On the east side was the prior's house, a building of later date. At the Grey or Franciscan Friars, the church followed the ordinary type in having two equal bodies, each gabled, with a continuous range of windows. There was a slender tower between the nave and the choir.
73151
73152 ==Hulne==
73153 Of the convents of the Carmelite or White Friars we have a good example in the Abbey of Hulne, near Alnwick, the first of the order in England, founded A.D. [[1240]].
73154
73155 The church is a narrow oblong, destitute of aisles, 123 ft. long by only 26 ft. wide. The cloisters are to the south, with the chapter-house, etc., to the east, with the dormitory over. The prior's lodge is placed to the west of the cloister. The guest-houses adjoin the entrance gateway, to which a chapel was annexed on the south side of the conventual area. The nave of the church of the Austin Friars or Eremites in London is still standing. It is of Decorated date, and has wide centre and side aisles, divided by a very light and graceful arcade. Some fragments of the south walk of the cloister of the Grey Friars remained among the buildings of [[Christ's Hospital]] (the Blue-Coat School), while they were still standing. Of the Black Friars all has perished but the name. Taken as a whole, the remains of the establishments of the friars afford little warrant for the bitter invective of the Benedictine of St Alban's, Matthew Paris: &quot;The friars who have been founded hardly 40 years have built residences as the palaces of kings. These are they who, enlarging day by day their sumptuous edifices, encircling them with lofty walls, lay up in them their incalculable treasures, imprudently transgressing the bounds of poverty and violating the very fundamental rules of their profession.&quot; Allowance must here be made for jealousy of a rival order just rising in popularity.
73156
73157 ==Cells==
73158 Every large monastery had depending upon it smaller foundations known as cells or priories. Sometimes these foundations were no more than a single building serving as residence and farm offices, while other examples were miniature monasteries for 5 or 10 monks. The outlying farming establishments belonging to the monastic foundations were known as villae or granges. They were usually staffed by [[lay-brothers]], sometimes under the supervision of a single monk.
73159
73160 ==Abbots and abbesses as rulers==
73161 Some cities were ruled by heads of a certain abbey. For more information, see [[abbey-principality]].
73162
73163 ==Nunnery==
73164 A '''nunnery''' is a convent of nuns. The first nunnery in England was built at [[Folkestone]] in about 635 by [[Eadbald of Kent|King Eadbald]].
73165
73166 ==See also==
73167 * [[List of abbeys and priories]]
73168
73169 ==External links==
73170 {{Commons|Abbey}}
73171 *[http://www.newadvent.org/cathen/01010a.htm Abbey] Catholic Encyclopedia
73172 *[http://encyclopedia.jrank.org/A10_ADA/ABBEY_Lat_abbatia_from_Syr_abb.html Abbey] ''Encyclopaedia Britannica'' (1911)
73173 *[http://www.sacred-destinations.com/sacred-sites/christian-monasteries.htm Abbeys and Monasteries Index] Sacred Destinations
73174 *[http://www.sacred-destinations.com/france/abbeys-of-france.htm Abbeys of France] Sacred Destinations
73175
73176 [[Category:Abbeys|*]]
73177 [[Category:Art history]]
73178
73179 [[ca:Abadia]]
73180 [[de:Abtei]]
73181 [[es:Abadía]]
73182 [[fr:Abbaye]]
73183 [[gl:Abadía]]
73184 [[it:Abbazia]]
73185 [[lb:Abtei]]
73186 [[nl:Abdij]]
73187 [[pl:Opactwo]]
73188 [[pt:Abadia]]
73189 [[ru:АййаŅ‚ŅŅ‚вО]]</text>
73190 </revision>
73191 </page>
73192 <page>
73193 <title>Annales School</title>
73194 <id>1316</id>
73195 <revision>
73196 <id>40578874</id>
73197 <timestamp>2006-02-21T16:05:19Z</timestamp>
73198 <contributor>
73199 <ip>213.190.157.130</ip>
73200 </contributor>
73201 <text xml:space="preserve">The '''Annales School''' is a school of historical writing named after the French scholarly journal ''[[Annales d'histoire Êconomique et sociale]]'' (later called ''[[Annales. Economies, sociÊtÊs, civilisations]]'', then renamed in [[1994]] as ''[[Annales. Histoire, Sciences Sociales]]'') where it was first expounded. Annales school history is best known for incorporating [[social science|social scientific]] methods into history.
73202
73203 The Annales was founded and edited by [[Marc Bloch]] and [[Lucien Febvre]] in [[1929]], while they were teaching at the [[University of Strasbourg]]. These authors quickly became associated with the distinctive Annales approach, which combined geography, history, and the sociological approaches of the [[Annee Sociologique]] (many members of which were their colleagues at Strasbourg) to produce an approach which rejected the predominant emphasis on politics, diplomacy and war of many 19th century historians. Instead, they pioneered an approach to a study of long-term historical structures (''[[la longue durÊe]]'') over events. Geography, material culture, and what later Annalistes called ''mentalities'' or the psychology of the epoch are also characteristic areas of study.
73204 An eminent member of this school, [[Georges Duby]], wrote in the forward of his book &quot;Le dimanche de Bouvines&quot; that the history he is teaching &quot;rejected on the sidelines the sensational, was reluctant to the simple acounting of events, strived on the contrary to pose and solve problems and, neglecting the surface trepidations, wanted to observe on the long and medium term the evolution of economy, society and civilisation.&quot;
73205
73206 Bloch was shot by the [[Gestapo]] during the German occupation of France in [[World War II]], and Febvre carried on the Annales approach in the 1940s and 1950s. It was during this time that he trained [[Fernand Braudel]], who would become one of the best known exponents of this school. Braudel's work came to define a 'second' era of Annales historiography and was very influential throughout the 1960s and 1970s, especially for his work on the Mediterranean region in the era of Philip II of Spain.
73207
73208 While authors such as [[Emmanuel Le Roy Ladurie]] and [[Jacques Le Goff]] continue to carry the Annales banner, today the Annales approach has been less distinctive as more and more historians do work in [[cultural history]] and [[economic history]].
73209
73210 ''See also:'' [[Historiography]]
73211
73212 ==References==
73213
73214 * [http://www.strath.ac.uk/Departments/History/s_adams/annales.htm Fernand Braudel and the Annales School by David Moon]
73215
73216 ==Further reading==
73217 *Peter Burke. ''The French Historical Revolution: The Annales School, 1929-1989''. Stanford University Press. 1991.
73218 *François Dosse. ''The New History in France: The Triumph of the Annales''. University of Illinois Press. 1994.
73219 *Lynn Hunt and Jacques Revel (eds). ''Histories: French Constructions of the Past''. The New Press. 1994. (A collection of essays with many pieces from the Annales--the long introduction is excellent, and contains many good references).
73220
73221 [[Category:Historiography]]
73222 [[Category:Historiosophy]]
73223
73224 [[cs:Å kola Annales]]
73225 [[de:Annales-Schule]]
73226 [[es:Escuela de los Annales]]
73227 [[fr:École des Annales]]
73228 [[it:Scuola delle Annales]]
73229 [[ja:ã‚ĸナãƒŧãƒĢå­Ļæ´ž]]
73230 [[lt:AnalÅŗ mokykla]]
73231 [[pl:Szkoła Annales]]
73232 [[pt:Escola dos Annales]]
73233 [[fi:Annalistinen koulukunta]]
73234 [[sv:Annales-skolan]]
73235 [[zh:嚴鑑學洞]]</text>
73236 </revision>
73237 </page>
73238 <page>
73239 <title>Antimatter</title>
73240 <id>1317</id>
73241 <revision>
73242 <id>42074510</id>
73243 <timestamp>2006-03-03T17:23:36Z</timestamp>
73244 <contributor>
73245 <username>Lynch82</username>
73246 <id>1016163</id>
73247 </contributor>
73248 <minor />
73249 <comment>/* Artificial production */ minor changes</comment>
73250 <text xml:space="preserve">:''For the [[physics]] of antimatter, see the article on [[antiparticle]]s; for the [[Cubanate]] album, see [[Antimatter (album)]].''
73251 {{Antimatter}}
73252 '''Antimatter''' or '''contra-terrene matter''' is [[matter]] that is composed of the [[antiparticle]]s of those that constitute normal matter. If a particle and its antiparticle come in contact with each other, the two [[Annihilation|annihilate]] and produce a burst of [[energy]], which results in the production of other particles and antiparticles or [[electromagnetic radiation]]. In these reactions, [[rest mass]] is not conserved, although (as in any other reaction) energy ([[E=mc²]]) is conserved.
73253
73254 == History ==
73255 In 1928 [[Paul Dirac]] developed a [[theory of relativity|relativistic]] equation for the [[electron]], now known as the [[Dirac equation]]. Curiously, the equation was found to have negative energy solutions in addition to the normal positive ones. This presented a problem, as electrons tend toward the lowest possible energy level; energies of negative infinity are nonsensical. As a way of getting around this, Dirac proposed that the vacuum can be considered a &quot;sea&quot; of negative energy, the [[Dirac sea]]. Any electrons would therefore have to sit on top of the sea.
73256
73257 Thinking further, Dirac found that a &quot;hole&quot; in the sea would have a positive charge. At first he thought that this was the [[proton]], but [[Hermann Weyl]] pointed out the hole should have the same mass as the electron. The existence of this particle, the [[positron]], was confirmed experimentally in 1932 by [[Carl D. Anderson]].
73258
73259 Today's [[standard model]] shows that every particle has an antiparticle, for which each additive [[quantum number]] has the negative of the value it has for the normal matter particle. The sign reversal applies only to quantum numbers (properties) which are additive, such as [[charge]], but not to [[mass]], for example. The [[positron]] has the opposite charge but the same mass as the electron. An [[atom]] of [[antihydrogen]] is composed of a negatively-charged [[antiproton]] being [[atomic orbital|orbited]] by a positively-charged [[positron]] .
73260
73261 == Antimatter production ==
73262 ===Artificial production===
73263 The artificial production of antimatter (specifically [[antihydrogen]]) first became a reality in the early 1990s. [[Charles Munger]] of the [[SLAC]], and associates at [[Fermilab]], realised that an [[antiproton]], travelling at [[relativistic speeds]] and passing close to the [[nucleus]] of an [[atom]], would have the potential to force the creation of an [[electron]]-[[positron]] pair. It was postulated that under this scenario the antiproton would have a small chance of pairing with the positron (ejecting the electron) to form an antihydrogen atom.
73264
73265 In [[1995]] [[CERN]] announced that it had successfully created 9 antihydrogen atoms by implementing the SLAC/Fermilab concept during the [[PS210 experiment]]. The experiment was preformed using the Low-Energy Antiproton Ring ([[LEAR]]), and was lead by [[Walter Oelert]] and [[Mario Macri]]. Fermilab soon confirmed the CERN findings by producing approximately 100 antihydrogen atoms at their facilities.
73266
73267 The antihydrogen atoms created during PS210, and subsequent experiments (at both CERN and Fermilab) were extremely energetic (&quot;hot&quot;) and were not well suited to study. To resolve this hurdle, and to gain a better understanding of antihydrogen, two collaborations were formed in the late 1990s - [[ATHENA]] and [[ATRAP]]. The primary goal of these collaborations is the creation of less energetic (&quot;cold&quot;) antihydrogen, better suited to study.
73268
73269 In [[1999]] CERN activated the [[Antiproton Decelerator]], a device capable of decelerating antiprotons from 3.5 GeV/c to 5.3 MeV – still too &quot;hot&quot; to produce study effective antihydrogen, but a huge leap forward.
73270
73271 In late [[2002]] the ATHENA project announced that they had created the worlds first &quot;cold&quot; antihydrogen. The antiprotons used in the experiment were 'cooled' sufficiently by decelerating them (using the Antiproton Decelerator), passing them through a thin sheet of foil, and finally capturing them in a [[Penning Trap]]. The antiprotons also underwent [[stochastic cooling]] at several stages during the process.
73272
73273 The ATHENA team's antiproton cooling process is effective, but highly inefficient. Approximately 25 million antiprotons leave the Antiproton Decelerator; roughly 10 thousand make it to the Penning Trap.
73274
73275 In early 2004 ATHENA researchers released data on a new method of creating low energy antihydrogen.
73276
73277 The technique involves slowing antiprotons using the Antiproton Decelerator, and injecting them into a Penning trap (specifically a Penning-Malmberg trap). Once trapped the antiprotons are mixed with electrons that have been cooled to an energy potential significantly less than the antiprotons; the resulting Coulomb collisions cool the antiprotons while warming the electrons until the particles reach an equilibrium of approximately 4 K.
73278
73279 While the antiprotons are being cooled in the first trap, a small cloud of positron plasma is injected into a second trap (the mixing trap). Exciting the resonance of the mixing trap’s confinement fields can control the temperature of the positron plasma; but the procedure is more effective when the plasma is in thermal equilibrium with the trap’s environment. The positron plasma cloud is generated in a positron accumulator prior to injection; the source of the positrons is usually radioactive sodium.
73280
73281 Once the antiprotons are sufficiently cooled, the antiproton-electron mixture is transferred into the mixing trap (containing the positrons). The electrons are subsequently removed by a series of fast pulses in the mixing traps electrical field. When the antiprotons reach the positron plasma further Coulomb collisions occur, resulting in further cooling of the antiprotons. When the positrons and antiprotons approach thermal equilibrium antihydrogen atoms begin to form. Being electrically neutral the antihydrogen atoms are not effected by the trap and can leave the confinement fields.
73282
73283 Using this method ATHENA researchers predict they will be able to create to 100 antihydrogen atoms per operational second.
73284
73285 ATHENA and ATRAP are now seeking to further 'cool' the antihydrogen atoms by subjecting them to an [[inhomogeneous field]]. While antihydrogen atoms are electrically neutral, their spin produces [[magnetic moments]]. These magnetic moments vary depending on the [[spin direction]] (up or down) of the atom, and can be deflected by inhomogeneous fields regardless of electrical charge.
73286
73287 The biggest limiting factor in the production of antimatter is the availability of antiprotons. Recent data released by CERN states that when fully operational their facilities are capable of producing &lt;math&gt;10^7&lt;/math&gt; antiprotons per second. Assuming an optimal conversion of antiprotons to antihydrogen (which is far from true) it would take two billion years (give or take a few thousand) to produce 1 gram of antihydrogen.
73288
73289 Another limiting factor to antimatter production is storage. As stated above there is no known way to effectively store antihydrogen. The ATHENA project has managed to keep antihydrogen atoms from annihilation for 10s of seconds - just enough time to briefly study their behaviour.
73290
73291 Antimatter/matter reactions have practical applications in medical imaging, such as [[positron emission tomography]] (PET). In some kinds of [[beta decay]], a nuclide loses surplus positive charge by emitting a positron (in the same event, a proton becomes a neutron, and [[neutrino]]s are also given off). Nuclides with surplus positive charge are easily made in a [[cyclotron]] and are widely generated for medical use.
73292
73293 ===Naturally occurring production===
73294 Antiparticles are created everywhere in the [[universe]] where high-energy particle collisions take place. High-energy [[cosmic ray]]s impacting Earth's atmosphere (or any other matter in the [[solar system]]) produce minute quantities of antimatter in the resulting [[particle jet]]s, which is immediately destroyed by contact with nearby matter. It may similarly be produced in regions like the center of the [[Milky Way Galaxy]], where very energetic celestial events occur. The presence of the resulting antimatter is detected by the gamma rays produced when it annihilates with nearby matter.
73295
73296 Antiparticles are also produced in any environment with a sufficiently high temperature (mean particle energy greater than the [[pair production]] threshold). The region of space near a [[black hole]]'s [[event horizon]] can be thought of as being such an environment, with the resulting matter and antimatter being a component of [[Hawking radiation]]. During the period of [[baryogenesis]], when the universe was extremely hot and dense, matter and antimatter were continually produced and annihilated. The presence of remaining matter, and absence of detection of remaining antimatter{{ref|BigBang}}, is attributed to [[CP-violation|violation]] of the [[CP-symmetry]] relating matter and antimatter. The exact mechanism of this violation during baryogenesis remains a mystery.
73297
73298 == Notation ==
73299 Physicists need a notation to distinguish particles from antiparticles. One way is to denote an antiparticle by adding a bar (or [[macron]]) over the symbol for the particle. For example, the proton and antiproton are denoted as &lt;math&gt;\mathrm{p}\,&lt;/math&gt; and &lt;math&gt;\bar{\mathrm{p}}&lt;/math&gt;, respectively.
73300
73301 Another convention is to distinguish particles by their [[electric charge]]. Thus, the electron and positron are denoted simply as e&lt;sup&gt;&amp;minus;&lt;/sup&gt; and e&lt;sup&gt;+&lt;/sup&gt;. Adding a bar over the e&lt;sup&gt;+&lt;/sup&gt; symbol would be redundant and is not done.
73302
73303 == Antimatter as fuel ==
73304 In antimatter-matter collisions, the entire rest [[mass]] of the particles is converted to [[energy]]. The [[Energies per unit mass|energy per unit mass]] is about 10 orders of magnitude greater than chemical energy, and about 2 orders of magnitude greater than nuclear energy that can be liberated today using chemical reactions or nuclear fission/fusion. The reaction of 1 [[kilogram|kg]] of antimatter with 1 kg of matter would produce 1.8&amp;times;10&lt;sup&gt;17&lt;/sup&gt; [[joule|J]] (180 petajoules) of energy (by the equation ''[[E=mc²]]''). In contrast, burning a kilogram of [[petrol|gasoline]] produces 4.2&amp;times;10&lt;sup&gt;7&lt;/sup&gt; J, and [[nuclear fusion]] of a kilogram of hydrogen would produce 2.6&amp;times;10&lt;sup&gt;15&lt;/sup&gt; J.
73305 Not all of that energy can be utilized by any realistic technology, because as much as 50% of energy produced in reactions between nucleons and antinucleons is carried away by [[neutrinos]], so, for all intents and purposes, it can be considered lost.{{ref|Reactions}}
73306
73307 The scarcity of antimatter means that it is not readily available to be used as fuel, although it could be used in [[antimatter catalyzed nuclear pulse propulsion]]. Generating a single antiproton is immensely difficult and requires particle accelerators and vast amounts of energy&amp;mdash;millions of times more than is released after it is annihilated with ordinary matter, due to inefficiencies in the process. Known methods of producing antimatter from energy also produce an equal amount of normal matter, so the theoretical limit is that half of the input energy is converted to antimatter. Counterbalancing this, when antimatter annihilates with ordinary matter, energy equal to twice the mass of the antimatter is liberated&amp;mdash;so energy storage in the form of antimatter could (in theory) be 100% efficient. Antimatter production is currently very limited, but has been growing at a nearly geometric rate since the discovery of the first antiproton in 1955.{{ref|History}} The current antimatter production rate is between 1 and 10 nanograms per year, and this is expected to increase dramatically with new facilities at [[CERN]] and [[Fermilab]]. With current technology, it is considered possible to attain antimatter for [[United States dollar|US$]]25 million per gram by optimizing the collision and collection parameters (given current electricity generation costs). Antimatter production costs, in mass production, are almost linearly tied in with electricity costs, so economical pure-antimatter thrust applications are unlikely to come online without the advent of such technologies as [[deuterium]]-tritium [[fusion power]]. However, it should be noted that in 2004, the annual production of antiprotons at CERN was several picograms at a cost of $20 million. This means to produce 1 gram of antimatter, CERN would need to spend 100 million trillion dollars and run the antimatter factory for 100 billion years.
73308
73309 Several [[NASA Institute for Advanced Concepts]]-funded studies are exploring whether the antimatter that occurs naturally in the [[Van Allen belt]]s of Earth, and ultimately, the belts of gas giants like [[Jupiter]], might be able to be collected with magnetic scoops, at hopefully a lower cost per gram.{{ref|VanAllenBelts}}
73310
73311 Since the energy density is vastly higher than these other forms, the thrust to weight equation used in [[antimatter rocket]]ry and [[spacecraft]] would be very different. In fact, the energy in a few grams of antimatter is enough to transport an unmanned spacecraft to [[Mars]] in about a month&amp;mdash;the [[Mars Global Surveyor]] took eleven months to reach Mars. It is hoped that antimatter could be used as [[fuel]] for [[interplanetary travel]] or possibly [[interstellar travel]], but it is also feared that if humanity ever gets the capabilities to do so, there could be the construction of [[antimatter weapon]]s.
73312
73313 == The Antiuniverse ==
73314 Dirac himself was the first to consider the existence of antimatter in an astronomical scale. But it was only after the confirmation of his theory, with the discovery of the positron, antiproton and antineutron that real speculation began on the possible existence of an antiuniverse. In the following years, motivated by basic [[symmetry]] principles, it was believed that the [[universe]] must consist of both matter and antimatter in equal amounts. If, however there were an isolated system of antimatter in the universe, free from interaction with ordinary matter, no earthbound observation could distinguish its true content, as photons (being their own antiparticle) are the same whether they are in a “universe” or an “antiuniverse”.
73315
73316 But assuming large zones of antimatter exist, there must be some boundary where antimatter atoms from the antimatter [[galaxies]] or [[stars]] will come into contact with normal atoms. In those regions a powerful flux of [[gamma rays]] would be produced. This has never been observed despite deployment of very sensitive instruments in space to detect them.
73317
73318 It is now thought that symmetry was broken in the early universe when [[charge]] and [[parity]] symmetry was violated ([[CP-violation]]). Standard [[Big Bang]] cosmology tells us that the universe initially contained equal amounts of matter and antimatter: however particles and [[antiparticle]]s evolved slightly differently. It was found that a particular heavy unstable particle, which is its own antiparticle, decays slightly more often to positrons (e&lt;sup&gt;+&lt;/sup&gt;) than to electrons (e&lt;sup&gt;-&lt;/sup&gt;). How this accounts for the preponderance of matter over antimatter has not been completely explained. The [[Standard Model]] of [[particle physics]] does have a way of accommodating a difference between the evolution of matter and antimatter, but it falls short of explaining the net excess of matter in the universe by about 10 orders of magnitude.
73319
73320 After Dirac, the sci-fi writers had a field day with visions of antiworlds,
73321 antistars and antiuniverses, all made of antimatter, and it is still a common [[plot device]], however suppositions of the existence a coeval, antimatter duplicate of this universe are not taken seriously in modern [[cosmology]].
73322
73323 : ''See also: [http://www2.slac.stanford.edu/tip/special/cp.htm What is direct CP-violation?]''
73324
73325 == Antimatter in popular culture ==
73326 The extremely large amount of energy released by matter/antimatter annihilation has inspired many appearances in fiction:
73327
73328 *A famous fictional example of antimatter in action is in the [[science fiction]] franchise ''[[Star Trek]]'', where it is a common energy source for [[starship]]s; large reactors generate power by mixing supercooled deuterium and antideuterium, with the annihilation reaction regulated by [[dilithium]] crystals. It is also used as a weapon, as in [[photon torpedo]]es.
73329 *Antimatter engines also appear in various books of the ''[[Dragonriders of Pern]]'' series by [[Anne McCaffrey]].
73330 *In [[Larry Niven|Niven's]] ''[[Ringworld]]'' series, antimatter appears as a weapon useful against even the super-dense matter [[scrith]].
73331 *[[Dan Brown]] explores the use of antimatter as a [[weapon]] in his novel ''[[Angels and Demons]]'', where terrorists threaten to destroy the [[Vatican City|Vatican]] with potentially unstable antimatter stolen from [[CERN]].
73332 *In ''[[The Night's Dawn Trilogy]]'' by [[Peter F. Hamilton]], antimatter is characterized as the most dangerous substance imaginable and outlawed across the Galaxy.
73333 *Antimatter is briefly referenced in the 1966 movie ''[[Batman: The Movie]],'' (several evil henchmen are turned into antimatter when they are revived using &quot;heavy water&quot; from the batcave), but the concept remains completely unexplained in this example.
73334 *In the episode of ''[[Doctor Who]]'', &quot;The Planet of Evil,&quot; the scientist Dr. Sorenson is transformed into an 'antiman' due to exposure to antimatter.
73335 *Late in ''[[The Rocky Horror Picture Show]]'', Riff confirms to Dr. Furter that the pitchfork-like weapon he has pointed at him is &quot;a [[laser]], capable of emitting a beam of pure antimatter.&quot; This misuse of the term led to the audience-response line, &quot;Then it's not a laser.&quot;
73336 *In [[comic books]] produced by [[DC Comics]], the notion of an antiuniverse, or in DC's parlance Anti-Matter Universe, was first utilized in the ''[[Green Lantern]]'' series in the [[1960s]]. The Anti-Matter Universe contains a world known as [[Qward]], home to the [[Green Lantern Corps]]' sworn enemies, the Weaponers of Qward.
73337 *In the ''[[City of Heroes]]'' comic book, the [[superhero]] [[Positron (City of Heroes)|Positron]] is capable of generating anti-matter, and utilizing it as a weapon.
73338 *In 1985, a powerful, twisted denizen of the Anti-Matter Universe known as the [[Anti-Monitor]] succeeded in destroying most of the DC [[Multiverse]] during the events of the twelve-issue [[limited series]] ''[[Crisis on Infinite Earths]]''.
73339 *The [[Protoss]] race of [[Starcraft]] uses antimatter for both propulsion and weaponry.
73340
73341 == See also ==
73342 * [[Gravitational interaction of antimatter]]
73343 * [[Elementary particle]]
73344 * [[Positron]]
73345
73346 == References ==
73347 * {{cite book | first=Paul | last=Tipler | coauthors=Ralph Llewellyn | title=Modern Physics | edition=4th ed. | publisher=W. H. Freeman | year=2002 | id=ISBN 0716743450}}
73348
73349 === Footnotes ===
73350 # {{note | BigBang }} {{cite web | year = 2000 | url = http://science.nasa.gov/headlines/y2000/ast29may_1m.htm | title = &quot;What's the Matter with Antimatter? | publisher = NASA Science News | accessdate = January 3 | accessyear = 2006 }}
73351 # {{note | Reactions }} {{cite web | author = Stanley K. Borowski | year = 1987 | url = http://gltrs.grc.nasa.gov/reports/1996/TM-107030.pdf | title = Comparison of Fusion/Antiproton Propulsion Systems for Interplanetary Travel | format = PDF | publisher = [[National Aeronautics and Space Administration]] | accessdate = December 7 | accessyear = 2005 }}
73352 # {{note | History }} {{cite web | author = Tyler Freeman | year = 2003 | url = http://ffden-2.phys.uaf.edu/212_fall2003.web.dir/tyler_freeman/history.htm | title = The History of Antimatter | work = Antimatter: The Science Fact | accessdate = December 7 | accessyear = 2005 }}
73353 # {{note | VanAllenBelts }} {{cite web | author = Jim Bickford | url = http://www.niac.usra.edu/files/studies/abstracts/1071Bickford.pdf | title = Extraction of Antiparticles in Planetary Magnetic Fields | format = PDF | publisher = NASA Institute for Advanced Concepts | accessdate = December 7 | accessyear = 2005 }}
73354
73355 == External links and references ==
73356 * [http://livefromcern.web.cern.ch/livefromcern/antimatter/webcast/AM-webcast06.html CERN Webcasts (Realplayer required)]
73357 * [http://www.positron.edu.au/faq.html What is Antimatter?] (from the Frequently Asked Questions at the Center for Antimatter-Matter Studies)
73358 * [http://public.web.cern.ch/Public/Content/Chapters/Spotlight/SpotlightAandD-en.html Some interesting FAQs from CERN] that contain lots of information about antimatter aimed at the general reader
73359
73360 [[Category:Antimatter| ]]
73361 [[Category:Matter]]
73362 [[Category:Quantum field theory]]
73363 [[Category:Particle physics]]
73364 [[Category:Physics in fiction]]
73365
73366 [[bg:АĐŊŅ‚иĐŧĐ°Ņ‚ĐĩŅ€Đ¸Ņ]]
73367 [[ca:Antimatèria]]
73368 [[cs:Antihmota]]
73369 [[da:Antistof (fysik)]]
73370 [[de:Antimaterie]]
73371 [[el:ΑÎŊĪ„ΚĪÎģΡ]]
73372 [[es:Antimateria]]
73373 [[fi:Antimateria]]
73374 [[fr:Antimatière]]
73375 [[gl:Antimateria]]
73376 [[he:אנטי-חומר]]
73377 [[hr:Antimaterija]]
73378 [[hu:Antianyag]]
73379 [[it:Antimateria]]
73380 [[ja:反į‰ŠčŗĒ]]
73381 [[lt:Antimaterija]]
73382 [[nl:Antimaterie]]
73383 [[no:Antimaterie]]
73384 [[pl:Antymateria]]
73385 [[pt:AntimatÊria]]
73386 [[ru:АĐŊŅ‚ивĐĩŅ‰ĐĩŅŅ‚вО]]
73387 [[simple:Antimatter]]
73388 [[sk:Antihmota]]
73389 [[sl:Antimaterija]]
73390 [[sr:АĐŊŅ‚иĐŧĐ°Ņ‚ĐĩŅ€Đ¸Ņ˜Đ°]]
73391 [[sv:Antimateria]]
73392 [[uk:АĐŊŅ‚иĐŧĐ°Ņ‚ĐĩŅ€Ņ–Ņ]]
73393 [[vi:PháēŖn váē­t cháēĨt]]
73394 [[zh:反į‰Šč´¨]]</text>
73395 </revision>
73396 </page>
73397 <page>
73398 <title>Antonio Gaudi</title>
73399 <id>1318</id>
73400 <revision>
73401 <id>15899807</id>
73402 <timestamp>2003-11-22T17:57:37Z</timestamp>
73403 <contributor>
73404 <username>Minesweeper</username>
73405 <id>7279</id>
73406 </contributor>
73407 <minor />
73408 <text xml:space="preserve">#REDIRECT [[Antoni Gaudí]]</text>
73409 </revision>
73410 </page>
73411 <page>
73412 <title>Antonio Gaudi/Palau Guell</title>
73413 <id>1320</id>
73414 <revision>
73415 <id>29513755</id>
73416 <timestamp>2005-11-28T19:53:12Z</timestamp>
73417 <contributor>
73418 <username>RussBot</username>
73419 <id>279219</id>
73420 </contributor>
73421 <minor />
73422 <comment>Robot: Fixing [[Special:DoubleRedirects|double-redirect]] -&quot;Palau Guell&quot; +&quot;Palau GÃŧell&quot;</comment>
73423 <text xml:space="preserve">#REDIRECT [[Palau GÃŧell]]</text>
73424 </revision>
73425 </page>
73426 <page>
73427 <title>Antonio Gaudi/Sagrada Familia</title>
73428 <id>1321</id>
73429 <revision>
73430 <id>41885593</id>
73431 <timestamp>2006-03-02T10:23:30Z</timestamp>
73432 <contributor>
73433 <username>RobertG</username>
73434 <id>232051</id>
73435 </contributor>
73436 <minor />
73437 <comment>fix double redirect</comment>
73438 <text xml:space="preserve">#REDIRECT [[Sagrada Família]]</text>
73439 </revision>
73440 </page>
73441 <page>
73442 <title>Casa BatllÃŗ</title>
73443 <id>1322</id>
73444 <revision>
73445 <id>38094883</id>
73446 <timestamp>2006-02-04T03:32:14Z</timestamp>
73447 <contributor>
73448 <username>Dogears</username>
73449 <id>733091</id>
73450 </contributor>
73451 <minor />
73452 <comment>+ category</comment>
73453 <text xml:space="preserve">{| border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; align=right
73454 |-
73455 | [[Image:Jfader batto facade.jpg|250px|thumb|The Casa BatllÃŗ in Barcelona]]
73456 |-
73457 | [[Image:Jfader batto roof.jpg|thumb|250px|The arched roof and complex chimney detailing]]
73458 |}
73459 '''Casa BatllÃŗ''' (pronounce Casa Batyo) is a building designed by [[Antoni Gaudi]] and built in years [[1905]]&amp;ndash;[[1907]]; located at 43, Passeig de Gràcia (''passeig'' is [[Catalan language|Catalan]] for promenade or [[avenue]]), part of the [[Illa de la DiscÃ˛rdia]] in the ''[[Eixample]]'' district of [[Barcelona]], [[Catalonia]], [[Spain]].
73460
73461 The local name for the building is ''Casa dels ossos'' (house of bones), and indeed it does have a [[viscera]]l, [[skeleton|skeletal]] organic quality. It was originally designed for a [[middle-class]] family and situated in a prosperous district of Barcelona.
73462
73463 The building looks very remarkable &amp;mdash; like everything Gaudi designed, only identifiable as [[Art Nouveau]] in the broadest sense. The ground floor, in particular, is rather astonishing with tracery, irregular oval windows and flowing sculpted stone work.
73464
73465 It seems that the goal of the designer was to avoid straight lines completely. Much of the [[façade]] is decorated with a [[mosaic]] made of broken ceramic tiles that starts in shades of golden orange moving into greenish blues. The roof is [[arch]]ed and was likened to the back of a [[European dragon|dragon]] or [[dinosaur]]. A common theory about the building is that the rounded feature to the left of centre, terminating at the top in a turret and cross, represents the sword of [[Saint George]], which has been plunged into the back of the dragon.
73466
73467 ==External links==
73468 *[http://www.casabatllo.es The official website of La Casa BatllÃŗ]
73469 *[http://www.greatbuildings.com/buildings/Casa_Batllo.html Casa BatllÃŗ on GreatBuildings.com]
73470 *[http://www.barcelona-tourist-guide.com/albums-en/gaudi-casa-batllo/index.html Casa BatllÃŗ pictures]
73471 *[http://www.op.net/~jmeltzer/Gaudi/batllo.html Casa BatllÃŗ description]
73472
73473 [[Category:Buildings and structures in Barcelona]]
73474 [[Category:Modernisme]]
73475 [[Category:Antoni Gaudí buildings]]
73476
73477 [[ca:Casa BatllÃŗ]]
73478 [[de:Casa BatllÃŗ]]
73479 [[es:Casa BatllÃŗ]]
73480 [[fr:Casa BatllÃŗ]]
73481 [[gl:Casa BatllÃŗ]]
73482 [[nl:Casa BatllÃŗ]]
73483 [[sr:Каза БаŅ‚Ņ™Đž]]</text>
73484 </revision>
73485 </page>
73486 <page>
73487 <title>Antonio Gaudi/Casa Milo</title>
73488 <id>1323</id>
73489 <revision>
73490 <id>15899812</id>
73491 <timestamp>2002-10-09T13:58:43Z</timestamp>
73492 <contributor>
73493 <username>Magnus Manske</username>
73494 <id>4</id>
73495 </contributor>
73496 <minor />
73497 <comment>#REDIRECT [[Casa_Milà]]</comment>
73498 <text xml:space="preserve">#REDIRECT [[Casa Milà]]</text>
73499 </revision>
73500 </page>
73501 <page>
73502 <title>Park Guell</title>
73503 <id>1324</id>
73504 <revision>
73505 <id>42074345</id>
73506 <timestamp>2006-03-03T17:22:09Z</timestamp>
73507 <contributor>
73508 <username>Rhobite</username>
73509 <id>82899</id>
73510 </contributor>
73511 <comment>la -&gt; the</comment>
73512 <text xml:space="preserve">[[image:Parcguell.jpg|right|frame|The entrance to the park]]
73513 '''Park GÃŧell''' is a garden complex with [[Architecture|architectural]] elements situated on the hill of [[El Carmel]] in the [[Gràcia]] district of [[Barcelona]], [[Spain]]. It was designed by the [[Catalan]] [[architect]] [[Antoni Gaudi|Antoni Gaudí]] and built in the years [[1900]] to [[1914]]. It is one of the [[UNESCO]] [[World Heritage Sites]].
73514
73515 The Park was originally part of a commercially unsuccessful housing site. The idea of Count [[Eusebio de Guell]]. It was inspired by British developments, hence the original English name ''Park''. It has been converted into a municipal garden. It can be reached by underground, although the stations are at a certain distance, by the regular buses, or best by the tourist buses. While the Park is free, Gaudí's house &amp;mdash; containing furniture that he designed &amp;mdash; can be visited at a cost.
73516
73517 [[image:Park Guell Terrace.JPG|left|thumb|[[Gaudí]]'s mosaic work on the main terrace]]
73518
73519 The design of the Park is clearly the work of an architect and Gaudí's unique style is also easily distinguishable. Wavy, lava-like shapes, at places tree-like or in form of Doric columns or stalactites, sometimes lavishly decorated with ornaments of [[trencadís|broken ceramic fragments, a Catalan technique]]. The landscaping of the Park is largely in tune with the natural terrain; steep slopes and cliffs have been allowed to remain, with winding paths, cuttings and grottoes adding to the natural feel.
73520
73521 Although it sounds unlikely, the place is skillfully designed and composed to bring the peace and calm that one would expect from a park. The buildings, though very original and remarkable, are relatively inconspicuous, considering other buildings designed by Gaudí. They have fantastically shaped roofs with unusual pinnacles. The focal point of the park is the main terrace, surrounded by a long bench in the form of a [[sea serpent]]. Gaudí used a naked man, sitting in clay, to design the bench. The curves form a number of enclaves, creating a more social atmosphere.
73522
73523 The large cross at the Park's high-point offers the most complete view of Barcelona. It is possible to view the main city in panaroma, with the [[Sagrada Familia]] and the [[Montjuïc]] area visible at a distance.
73524
73525 ==External links==
73526
73527 * [http://maps.google.com/maps?ll=41.414048,2.150187&amp;spn=0.003677,0.007522&amp;t=k Park GÃŧell at Google Maps]
73528 *[http://www.gardenvisit.com/ge/guel.htm Parque Guell Barcelona - Gardens Guide]
73529 * [http://www.barcelona-tourist-guide.com/albums-en/gaudi-park-guell/index.html Park GÃŧell Photo Gallery]
73530
73531 {{commons|Parc GÃŧell|Parc GÃŧell}}
73532
73533 [[Category:Barcelona]]
73534 [[Category:Modernisme]]
73535 [[Category:Parks in Spain|Guell]]
73536 [[Category:World Heritage Sites in Spain]]
73537 [[Category:Antoni Gaudí buildings]]
73538
73539 [[ca:Parc GÃŧell]]
73540 [[de:Park GÃŧell]]
73541 [[es:Parque GÃŧell]]
73542 [[fr:Parc GÃŧell]]
73543 [[nl:Parc GÃŧell]]
73544 [[ja:グエãƒĢå…Ŧ園]]
73545 [[ro:Parc GÃŧell]]
73546 [[sl:Park GÃŧell]]
73547 [[sr:ПаŅ€Đē ГŅƒĐĩĐģ]]
73548 [[sv:Parc GÃŧell]]</text>
73549 </revision>
73550 </page>
73551 <page>
73552 <title>Casa Milà</title>
73553 <id>1325</id>
73554 <revision>
73555 <id>38981191</id>
73556 <timestamp>2006-02-09T22:46:08Z</timestamp>
73557 <contributor>
73558 <username>Jahsonic</username>
73559 <id>5720</id>
73560 </contributor>
73561 <text xml:space="preserve">[[Image:Casamila.jpg|right|thumb|Casa Milà, Barcelona.]]
73562 [[Image:LaPedreraParabola.jpg|thumb|Image:LaPedreraParabola.jpg|[[Parabola|Parabolic]] or [[catenary]] [[arch]]es under the terrace of Casa Milà.]]
73563 '''Casa Milà''', better known as '''La Pedrera''' (Catalan for 'The Quarry'), is a building designed by the Catalan [[architect]] [[Antoni Gaudi|Antoni Gaudí]] and built in the years [[1905]] to [[1907]]. It is located at 92, Passeig de Gràcia ('passeig' is Catalan for promenade or avenue) in the ''[[Eixample]]'' district of [[Barcelona]], [[Catalonia]], [[Spain]]. It was built for Roger Segimon de Milà. It is one of the UNESCO [[World Heritage Sites]].
73564
73565 The building does not have any straight lines. Most people consider it magnificent and overwhelming -- some say it is like waves of lava or a sand-dune. This building seems to break our understanding of conventional [[architecture]]. The most astonishing part is the roof with an almost lunar appearance and dreamlike landscape.
73566
73567 The building can be considered more of a sculpture than a regular building. Critics remark on its detachment from usefulness, but others consider it to be art. The Barcelonese of the time considered it ugly, hence the &quot;quarry&quot; nickname, but today it is a landmark of Barcelona.
73568
73569 Casa Milà was a predecessor of some buildings with a similar [[biomorphism|biomorphic]] appearance:
73570
73571 * the 1921 [[Einstein Tower]] in [[Potsdam]], designed by [[Erich Mendelsohn]]
73572 * [[Solomon R. Guggenheim Museum]] in [[New York]], designed by [[Frank Lloyd Wright]]
73573 * [[Chapelle Notre Dame du Haut]], [[Ronchamp]], [[France]], designed by [[Le Corbusier]]
73574 * the [[Hundertwasserhaus]] and other words by Austrian architect [[Friedensreich Hundertwasser]]
73575 * Disney Concert Hall in [[Los Angeles, California|Los Angeles]], by [[Frank Gehry]]
73576
73577 Free exhibitions are often held on the first floor, which also provides some opportunity to see the interior design. There is a charge of â‚Ŧ7 for entrance to the apartments and roof.
73578
73579 ==Casa Milà in the media==
73580 * A scene in ''[[Professione: reporter]]'', a film directed by Michelangelo Antonioni, was filmed on the building's roof.
73581
73582 [[Image:Casa_Mila_roof.jpg|right|thumb|Stylized stairway entrances on the roof]]
73583
73584 ==See also==
73585 * [[List of buildings]]
73586 * [[List of museums]]
73587
73588 &lt;!-- [[Image:Model Gaudi Pedrera Kunsthal mei 2005.jpg|left|thumb|Scale model of a floor with apartments]] --&gt;
73589 ==External links==
73590 * [http://www.lapedreraeducacio.org/ La Pedrera EducaciÃŗ]
73591 * [http://www.lodgephoto.com/galleries/spain/barcelona/lapedrera-casamila/ Photographs of Casa Mila / La Pedrera]
73592 * [http://www.barcelona-tourist-guide.com/albums-en/gaudi-pedrera/index.html Photos of La Pedrera]
73593
73594
73595 [[Category:Buildings and structures in Barcelona]]
73596 [[Category:Modernisme]]
73597 [[Category:World Heritage Sites in Spain]]
73598 [[Category:Antoni Gaudí buildings]]
73599
73600 [[ca:Casa Milà]]
73601 [[de:Casa Milà]]
73602 [[es:Casa Milà]]
73603 [[fr:Casa Milà]]
73604 [[nl:Casa Milà]]
73605 [[ro:Casa Milà]]
73606 [[sv:Casa Milà]]</text>
73607 </revision>
73608 </page>
73609 <page>
73610 <title>Antiparticle</title>
73611 <id>1327</id>
73612 <revision>
73613 <id>41809972</id>
73614 <timestamp>2006-03-01T22:16:31Z</timestamp>
73615 <contributor>
73616 <ip>80.42.113.233</ip>
73617 </contributor>
73618 <comment>/* Experiment */</comment>
73619 <text xml:space="preserve">{{Template:Antimatter}}
73620
73621 Corresponding to each kind of [[particle physics|particle]], there is an associated '''antiparticle''' with the same [[mass]] and [[Spin (physics)|spin]]. Some particles, such as the [[photon]], are identical to their antiparticle; such particles must have no [[electric charge]], but not all charge-neutral particles are of this kind. The laws of nature were thought to be symmetric between particles and antiparticles until [[CP violation]] experiments found that [[time-reversal symmetry]] is violated in nature. The observed excess of [[baryon]]s over anti-baryons in the universe is one of the primary [[Unsolved problems in physics|unsolved problems]] in [[cosmology]].
73622
73623 Particle-antiparticle pairs can annihilate each other if they are in appropriate [[quantum state]]s. They can also be produced in various processes. These processes are used in today's [[particle accelerator]]s to create new particles and to test theories of [[particle physics]]. High energy processes in nature can create antiparticles. These are visible in [[cosmic ray]]s and in certain [[nuclear reaction]]s. The word [[antimatter]] properly refers to (elementary) antiparticles, composite antiparticles made with them (such as [[antihydrogen]]) and to larger assemblies of either.
73624
73625 == History ==
73626
73627 === Experiment ===
73628
73629 In [[1932]], soon after the prediction of [[positron]]s by [[Paul Dirac]], [[Carl D. Anderson]] found that cosmic-ray collisions produced these particles in a [[cloud chamber]]&amp;mdash; a [[particle detector]] in which moving [[electron]]s (or positrons) leave behind trails as they move through the gas. The [[electric charge]]-to-[[mass]] ratio of a particle can be measured by observing the curling of its cloud-chamber track in a [[magnetic field]]. Originally, positrons, because of the direction that their paths curled, were mistaken for electrons travelling in the opposite direction.
73630
73631 The antiproton and antineutron were found by [[Emilio Segrè]] and [[Owen Chamberlain]] in [[1955]] at the [[University of California, Berkeley]]. Since then the antiparticles of many other subatomic particles have been created in particle accelerator experiments. In recent years, complete atoms of [[antimatter]] have been assembled out of antiprotons and positrons, collected in electromagnetic traps.
73632
73633 === Hole theory ===
73634
73635 &lt;blockquote&gt;
73636 ... the development of quantum field theory made the interpretation of antiparticles as holes unnecessary, even though unfortunately it lingers on in many textbooks.
73637 &amp;nbsp;&amp;mdash;&amp;nbsp; [[Steven Weinberg]] in ''The quantum theory of fields'', Vol I, p 14, ISBN 0521550017
73638 &lt;/blockquote&gt;
73639
73640 Solutions of the [[Dirac equation]] contained negative energy quantum states. As a result, an electron could always radiate energy and fall into a negative energy state. Even worse, it could keep radiating infinite amount of energy because there were infinitely negative energy states available. To prevent this unphysical situation from happening, Dirac proposed that a &quot;sea&quot; of negative-energy electrons fills the universe, already occupying all of the lower energy states so that, due to the [[Pauli exclusion principle]] no other electron could fall into them. Sometimes, however, one of these negative energy particles could be lifted out of this [[Dirac sea]] to become a positive energy particle. But when lifted out, it would leave behind a ''hole'' in the sea which would act exactly like a positive energy electron with a reversed charge. These he interpreted as the [[proton]], and called his paper of 1930 ''A theory of electrons and protons''.
73641
73642 Dirac was aware of the problem that his picture implied an infinite negative charge for the universe. Dirac tried to argue that we would perceive this as the normal state of zero charge. Another difficulty was the difference in masses of the electron and the proton. Dirac tried to argue that this was due to the electromagnetic interactions with the sea, until [[Hermann Weyl]] proved that hole theory was completely symmetric between negative and positive charges. Dirac also predicted a reaction &lt;b&gt;e&amp;nbsp;+&amp;nbsp;p&amp;nbsp;→&amp;nbsp;Îŗ&amp;nbsp;+&amp;nbsp;Îŗ&lt;/b&gt; (electron and proton annihilate to give two [[photon]]s). [[Robert Oppenheimer]] and [[Igor Tamm]] proved that this would cause ordinary matter to disappear too fast. A year later, in 1931, Dirac modified his theory and postulated the [[positron]], a new particle of the same mass as the electron. The discovery of this particle the next year removed the last two objections to his theory.
73643
73644 However, the problem of infinite charge of the universe remains. Also, as we now know, [[bosons]] (if they exist) also have antiparticles, but since they do not obey the Pauli exclusion principle, hole theory doesn't work for them. A unified interpretation of antiparticles is now available in [[quantum field theory]], which solves both these problems.
73645
73646 == Particle-antiparticle annihilation ==
73647
73648 ''Main article: [[Annihilation]]''.
73649 [[Image:kkbar had.png|frame|An example of a virtual [[pion]] pair which influences the propagation of a [[kaon]] causing a neutral kaon to ''mix'' with the antikaon. This is an example of [[renormalization]] in [[quantum field theory]]&amp;mdash; the field theory being necessary because the number of particles changes from one to two and back again.]]
73650
73651 If a particle and antiparticle are in the appropriate quantum states, then they can '''annihilate''' each other and produce other particles. Reactions such as &lt;b&gt;e&lt;sup&gt;+&lt;/sup&gt; &amp;nbsp;+&amp;nbsp; e&lt;sup&gt;-&lt;/sup&gt; &amp;nbsp;→&amp;nbsp; Îŗ &amp;nbsp;+&amp;nbsp; Îŗ&lt;/b&gt; (the two-photon annihilation of an electron-positron pair) is an example.
73652 The single-photon annihilation of an electron-positron pair, &lt;b&gt;e&lt;sup&gt;+&lt;/sup&gt; &amp;nbsp;+&amp;nbsp; e&lt;sup&gt;-&lt;/sup&gt; &amp;nbsp;→&amp;nbsp; Îŗ&lt;/b&gt; cannot occur because it is impossible to conserve energy and momentum together in this process. The reverse reaction is also impossible for this reason. However, in [[quantum field theory]] this process is allowed as an intermediate quantum state for times short enough that the violation of energy conservation can be accommodated by the [[uncertainty principle]]. This opens the way for '''virtual pair''' production or annihilation in which a one particle quantum state may ''fluctuate'' into a two particle state and back. These processes are important in the [[vacuum state]] and [[renormalization]] of a [[quantum field theory]]. It also opens the way for [[neutral particle mixing]] through processes such as the one pictured here: which is a complicated example of [[mass renormalization]].
73653
73654 == Properties of antiparticles ==
73655
73656 [[Quantum state]]s of a particle and an antiparticle can be interchanged by applying the [[C-symmetry|charge conjugation]] (&lt;b&gt;C&lt;/b&gt;), [[P-symmetry|parity]] (&lt;b&gt;P&lt;/b&gt;), and [[T-symmetry|time reversal]] (&lt;b&gt;T&lt;/b&gt;). If &lt;b&gt;|p,Īƒ,n&gt;&lt;/b&gt; denotes the quantum state of a particle (&lt;b&gt;n&lt;/b&gt;) with momentum &lt;b&gt;p&lt;/b&gt;, spin &lt;b&gt;J&lt;/b&gt; whose component in the z-direction is Īƒ, then one has
73657 ::&lt;b&gt;CPT |p,Īƒ,n&gt; &amp;nbsp;=&amp;nbsp; (-1)&lt;sup&gt;J-Īƒ&lt;/sup&gt; |p,-Īƒ,n&lt;sup&gt;c&lt;/sup&gt;&gt;,&lt;/b&gt;
73658 where &lt;b&gt;n&lt;sup&gt;c&lt;/sup&gt;&lt;/b&gt; denotes the charge conjugate state, ie, the antiparticle. This behaviour under &lt;b&gt;CPT&lt;/b&gt; is the same as the statement that the particle and its antiparticle lie in the same [[irreducible representation]] of the [[Poincare group]]. Properties of antiparticles can be related to those of particles through this. If &lt;b&gt;T&lt;/b&gt; is a good symmetry of the dynamics, then
73659 ::&lt;b&gt;T |p,Īƒ,n&gt; &amp;nbsp;Îą&amp;nbsp; |-p,-Īƒ,n&gt;&lt;/b&gt;
73660 ::&lt;b&gt;CP |p,Īƒ,n&gt; &amp;nbsp;Îą&amp;nbsp; |-p,Īƒ,n&lt;sup&gt;c&lt;/sup&gt;&gt;&lt;/b&gt;
73661 ::&lt;b&gt;C |p,Īƒ,n&gt; &amp;nbsp;Îą&amp;nbsp; |p,Īƒ,n&lt;sup&gt;c&lt;/sup&gt;&gt;,&lt;/b&gt;
73662 where the proportionality sign indicates that there might be a phase on the right hand side. In other words, particle and antiparticle must have
73663 *the same mass &lt;b&gt;m&lt;/b&gt;
73664 *the same spin state &lt;b&gt;J&lt;/b&gt;
73665 *opposite [[electric charge]]s &lt;b&gt;q&lt;/b&gt; and &lt;b&gt;-q&lt;/b&gt;.
73666
73667 == Quantum field theory ==
73668
73669 &lt;i&gt;This section draws upon the ideas, language and notation of [[canonical quantization]] of a [[quantum field theory]].&lt;/i&gt;
73670
73671 One may try to quantize an electron [[field (physics)|field]] without mixing the annihilation and creation operators by writing
73672
73673 ::&lt;b&gt;Īˆ(x) &amp;nbsp;=&amp;nbsp; ∑&lt;sub&gt;k&lt;/sub&gt; u&lt;sub&gt;k&lt;/sub&gt;(x) a&lt;sub&gt;k&lt;/sub&gt; e&lt;sup&gt;-i E(k)t&lt;/sup&gt;,&lt;/b&gt;
73674
73675 where we use the symbol &lt;b&gt;k&lt;/b&gt; to denote the quantum numbers &lt;b&gt;p&lt;/b&gt; and Īƒ of the previous section and the sign of the energy, &lt;b&gt;E(k)&lt;/b&gt;, and &lt;b&gt;a&lt;sub&gt;k&lt;/sub&gt;&lt;/b&gt; denotes the corresponding annihilation operators. Of course, since we are dealing with [[fermion]]s, we have to have the operators satisfy canonical anti-commutation relations. However, if one now writes down the [[Hamiltonian (quantum mechanics)|Hamiltonian]]
73676
73677 ::H &amp;nbsp;=&amp;nbsp; ∑&lt;sub&gt;k&lt;/sub&gt; E(k) a&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k&lt;/sub&gt; a&lt;sub&gt;k&lt;/sub&gt;,&lt;/b&gt;
73678
73679 then one sees immediately that the expectation value of &lt;b&gt;H&lt;/b&gt; need not be positive. This is because &lt;b&gt;E(k)&lt;/b&gt; can have any sign whatsoever, and the combination of creation and annihilation operators has expectation value 1 or 0.
73680
73681 So one has to introduce the charge conjugate ''antiparticle'' field, with its own creation and annihilation operators satisfying the relations
73682
73683 ::&lt;b&gt;b&lt;sub&gt;k'&lt;/sub&gt; &amp;nbsp;=&amp;nbsp; a&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k&lt;/sub&gt;&lt;/b&gt; and &lt;b&gt;b&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k'&lt;/sub&gt; &amp;nbsp;=&amp;nbsp; a&lt;sub&gt;k&lt;/sub&gt;&lt;/b&gt;
73684
73685 where &lt;b&gt;k'&lt;/b&gt; has the same &lt;b&gt;p&lt;/b&gt;, and opposite Īƒ and sign of the energy. Then one can rewrite the field in the form
73686
73687 ::&lt;b&gt;Īˆ(x) &amp;nbsp;=&amp;nbsp; ∑&lt;sub&gt;k(+)&lt;/sub&gt; u&lt;sub&gt;k&lt;/sub&gt;(x) a&lt;sub&gt;k&lt;/sub&gt; e&lt;sup&gt;-i E(k)t&lt;/sup&gt; &amp;nbsp;+&amp;nbsp; ∑&lt;sub&gt;k(-)&lt;/sub&gt; u&lt;sub&gt;k&lt;/sub&gt;(x) b&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k&lt;/sub&gt; e&lt;sup&gt;-i E(k)t&lt;/sup&gt;,&lt;/b&gt;
73688
73689 where the first sum is over positive energy states and the second over those of negative energy. The energy becomes
73690
73691 ::&lt;b&gt;H &amp;nbsp;=&amp;nbsp; ∑&lt;sub&gt;k(+)&lt;/sub&gt; E(k) a&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k&lt;/sub&gt; a&lt;sub&gt;k&lt;/sub&gt; &amp;nbsp;+&amp;nbsp; ∑&lt;sub&gt;k(-)&lt;/sub&gt; |E(k)| b&lt;sup&gt;+&lt;/sup&gt;&lt;sub&gt;k&lt;/sub&gt; b&lt;sub&gt;k&lt;/sub&gt; &amp;nbsp;+&amp;nbsp; E&lt;sub&gt;0&lt;/sub&gt;,&lt;/b&gt;
73692
73693 where &lt;b&gt;E&lt;sub&gt;0&lt;/sub&gt;&lt;/b&gt; is an infinite negative constant. The [[vacuum state]] is defined as the state with no particle or antiparticle, ie, &lt;b&gt;a&lt;sub&gt;k&lt;/sub&gt; |0&gt; = 0&lt;/b&gt; and &lt;b&gt;b&lt;sub&gt;k&lt;/sub&gt; |0&gt; = 0&lt;/b&gt;. Then the energy of the vacuum is exactly &lt;b&gt;E&lt;sub&gt;0&lt;/sub&gt;&lt;/b&gt;. Since all energies are measured relative to the vacuum, &lt;b&gt;H&lt;/b&gt; is positive definite. Analysis of the properties of &lt;b&gt;a&lt;sub&gt;k&lt;/sub&gt;&lt;/b&gt; and &lt;b&gt;b&lt;sub&gt;k&lt;/sub&gt;&lt;/b&gt; shows that one is the annihilation operator for particles and the other for antiparticles. This is the case of a [[fermion]].
73694
73695 This approach is due to [[Vladimir Fock]], [[Wendell Furry]] and [[Robert Oppenheimer]]. If one quantizes a real [[scalar field]], then one finds that there is only one kind of annihilation operator; therefore real scalar fields describe neutral [[boson]]s. Since complex scalar fields admit two different kinds of annihilation operators, which are related by conjugation, such fields describe charged [[boson]]s.
73696
73697 === The Feynman-Stueckelberg interpretation ===
73698
73699 [[Image:antiparticle.png|thumb|350 px|left|Observer 1 sees two particles, one propagating inside the light cone, the other outside the light cone. Observer 2, moving at a uniform velocity with respect to the first observer, could then see the second particle as moving back in time, and with reversed charge: hence as an antiparticle. However, the mass and lifetime of such a particle would remain unchanged, as a consequence of relativity.]]
73700
73701 By considering the propagation of the positive energy half of the electron field backward in time, [[Richard Feynman]] showed that [[causality]] is violated unless one allows some particles to travel faster than [[light]]. However, if particles are allowed to do that, then from the point of view of another [[inertial observer]] it would look like it was travelling backward in [[time]] with the opposite [[charge]].
73702
73703 Hence Feynman reached a pictorial understanding of the fact that the particle and antiparticle have equal mass &lt;b&gt;m&lt;/b&gt; and spin &lt;b&gt;J&lt;/b&gt; but opposite charges. This allowed him to rewrite [[perturbation theory (quantum mechanics)|perturbation theory]] precisely in the form of diagrams, called [[Feynman diagram]]s, of particles propagating back and forth in time. This technique now is the most widespread method of computing amplitudes in [[quantum field theory]].
73704
73705 This picture was independently developed by [[Ernst Stueckelberg]], and has been called the '''Feynman-Stueckelberg interpretation''' of antiparticles.
73706
73707 == See also ==
73708
73709 * [[Gravitational interaction of antimatter]]
73710 * [[Parity (physics)|Parity]], [[charge conjugation]] and [[time reversal symmetry]].
73711 * [[CP violation]]s and the [[baryon asymmetry of the universe]].
73712 * [[Quantum field theory]] and the [[list of particles]]
73713 * [[Baryogenesis]]
73714
73715 == References ==
73716
73717 *Feynman, Richard P. &quot;The reason for antiparticles&quot;, in ''The 1986 Dirac memorial lectures'', R.P. Feynman and S. Weinberg. Cambridge University Press, 1987. ISBN 0521340004.
73718 *Weinberg, Steven. ''The quantum theory of fields, Volume 1: Foundations''. Cambridge University Press, 1995. ISBN 0521550017.
73719
73720 [[Category:Antimatter|Antimatter]]
73721
73722 [[ca:Antipartícula]]
73723 [[cs:AntiÄÃĄstice]]
73724 [[de:Antiteilchen]]
73725 [[fr:Antiparticule]]
73726 [[he:אנטי-חלקיק]]
73727 [[hu:AntirÊszecske]]
73728 [[ja:反į˛’子]]
73729 [[ru:АĐŊŅ‚иŅ‡Đ°ŅŅ‚иŅ†Ņ‹]]
73730 [[uk:АĐŊŅ‚иŅ‡Đ°ŅŅ‚иĐŊĐēĐ°]]
73731 [[zh:反į˛’子]]</text>
73732 </revision>
73733 </page>
73734 <page>
73735 <title>A.D.</title>
73736 <id>1328</id>
73737 <revision>
73738 <id>37356754</id>
73739 <timestamp>2006-01-30T13:41:38Z</timestamp>
73740 <contributor>
73741 <username>RussBot</username>
73742 <id>279219</id>
73743 </contributor>
73744 <minor />
73745 <comment>Robot: Fixing [[Special:DoubleRedirects|double-redirect]] -&quot;AD&quot; +&quot;Anno Domini&quot;</comment>
73746 <text xml:space="preserve">#REDIRECT [[Anno Domini]]</text>
73747 </revision>
73748 </page>
73749 <page>
73750 <title>Art nouveau</title>
73751 <id>1330</id>
73752 <revision>
73753 <id>15899819</id>
73754 <timestamp>2002-06-26T09:56:27Z</timestamp>
73755 <contributor>
73756 <ip>217.99.105.223</ip>
73757 </contributor>
73758 <comment>making redirection</comment>
73759 <text xml:space="preserve">#REDIRECT [[Art Nouveau]]</text>
73760 </revision>
73761 </page>
73762 <page>
73763 <title>Arabian Prince</title>
73764 <id>1331</id>
73765 <revision>
73766 <id>40884082</id>
73767 <timestamp>2006-02-23T17:28:58Z</timestamp>
73768 <contributor>
73769 <username>Urthogie</username>
73770 <id>106482</id>
73771 </contributor>
73772 <comment>fix category</comment>
73773 <text xml:space="preserve">'''Arabian Prince''' (born '''Mik Lezan''') is an [[electro hop]] and [[hip hop music|hip hop]] [[rapping|rapper]] from [[Los Angeles, California|Los Angeles]]. He started his career at [[RapSur Records]], a label setup by Russ Parr, and released some electro classics like &quot;Innovator&quot; &amp; &quot;Strange Life&quot;. A couple of years later he joined the Compton, CA, rap group [[Niggaz with Attitude]] (N.W.A.). The Arabian Prince found the going tough when he departed the group for a solo career in 1988. His debut Brother Arab on Orpheus barely scraped the bottom of the R&amp;B and pop charts in 1989. His first solo releases are in high demand nowadays. His credit albums include ''[[Brother Arab]]'' and ''[[Where's My Bytches]]'', as well as work on [[N.W.A.]]'s ''[[Straight Outta Compton]]'' and [[record producer|production]] for various other [[West Coast rap|West Coast hip hop]] artists.
73774 Arabian Prince has reappeared testing [[Computer and video games|video games]] for [[FOX Interactive]] around the year [[2000]] and currently runs a [[3d animation]] studio.
73775
73776 ==External links==
73777 *[http://www.compton.8m.com/arab The Underworld of the Arabian Prince]
73778
73779 [[Category:American rappers]]</text>
73780 </revision>
73781 </page>
73782 <page>
73783 <title>August 7</title>
73784 <id>1332</id>
73785 <revision>
73786 <id>40864386</id>
73787 <timestamp>2006-02-23T14:44:03Z</timestamp>
73788 <contributor>
73789 <username>Doesitbetter</username>
73790 <id>966706</id>
73791 </contributor>
73792 <text xml:space="preserve">{| style=&quot;float:right;&quot;
73793 |-
73794 |{{AugustCalendar}}
73795 |-
73796 |{{ThisDateInRecentYears|Month=August|Day=7}}
73797 |}
73798 '''August 7''' is the 219th day of the year in the [[Gregorian Calendar]] (220th in [[leap year]]s), with 146 days remaining. There are 94 days in North Hemisphere summer, South Hemisphere winter. The Northern Hemisphere is considered to be halfway through the [[summer]] on [[August 7]].
73799
73800
73801 ==Events==
73802 *[[1679]] - The [[brigantine]] [[Le Griffon]], commissioned by [[RenÊ Robert Cavelier, Sieur de La Salle]], is towed to the southern end of the [[Niagara River]], to become the first ship to sail the upper [[Great Lakes]] of [[North America]].
73803 *[[1782]] - [[George Washington]] orders the creation of the [[Badge of Military Merit]] to honor soldiers wounded in battle. It is later renamed to the more poetic [[Purple Heart]].
73804 *[[1789]] - The [[United States War Department]] is established.
73805 *[[1794]] - [[Whiskey Rebellion]] begins: Farmers in the [[Monongahela Valley]] of [[Pennsylvania]] rebel against the federal tax on [[liquor]] and distilled drinks.
73806 *[[1819]] - [[SimÃŗn Bolívar]] triumphs over [[Spain]] in the [[Battle of BoyacÃĄ]].
73807 *[[1879]] - The opening of the [[Poor Man's Palace]] in [[Manchester]].
73808 *[[1927]] - The [[Peace Bridge]] opens, between [[Fort Erie, Ontario]] and [[Buffalo, New York]].
73809 *[[1942]] - [[World War II]]: [[Battle of Guadalcanal]] begins - [[U.S. Marines]] initiate the first American offensive of the war with a landing on [[Guadalcanal (Pacific Ocean island)|Guadalcanal]] in the [[Solomon Islands]].
73810 *[[1944]] - [[IBM]] dedicates the first program-controlled [[calculator]], the Automatic Sequence Controlled Calculator (known best as the [[Harvard Mark I]]).
73811 *[[1945]] - President [[Harry Truman]] announces the successful bombing of [[Hiroshima]] with an [[nuclear weapon|atomic bomb]] while returning from the [[Potsdam Conference]] aboard the heavy cruiser [[USS Augusta (CA-31)]] in the middle of the [[Atlantic Ocean]].
73812 *[[1947]] - [[Thor Heyerdahl]]'s [[balsa wood]] raft the [[Kon-Tiki]], smashes into the [[reef]] at [[Raroia]] in the [[Tuamotu Islands]] after a 101-day, 7000-km (4375-mile) journey across the [[Pacific Ocean]] proving that pre-historic peoples could have traveled from [[South America]].
73813 *1947 - The [[Bombay Municipal Corporation]] formally takes over the [[Bombay Electric Supply and Transport]] (BEST).
73814 *[[1955]] - Tokyo Telecommunications Engineering, the precursor to [[Sony]], begins selling its first [[Transistor radio|transistor radios]] in [[Japan]].
73815 *[[1959]] - [[Explorer program]]: The [[United States]] launches [[Explorer 6]] from the Atlantic Missile Range in [[Cape Canaveral, Florida]].
73816 *[[1960]] - [[Côte d'Ivoire]] becomes independent.
73817 *[[1964]] - [[Vietnam War]]: The [[Congress of the United States|U.S. Congress]] passes the [[Gulf of Tonkin Resolution]] giving US President [[Lyndon B. Johnson]] broad war powers to deal with [[North Vietnam]]ese attacks on American forces.
73818 *[[1965]] - [[Singapore]] is expelled and separated from the [[Federation of Malaysia]].
73819 *[[1966]] - [[Race riot]]s occur in [[Lansing, Michigan]].
73820 *[[1967]] - Vietnam War: The [[People's Republic of China]] agrees to give [[North Vietnam]] an undisclosed amount of aid in the form of a grant.
73821 *[[1970]] - California Judge [[Harold Haley]] is taken hostage in his courtroom and killed during in an effort to free [[George Jackson (Black Panther)|George Jackson]] from police custody.
73822 *[[1973]] - [[NBC]] airs the final day of the [[Watergate hearings]] on U.S. daytime television.
73823 *[[1976]] - [[Viking program]]: [[Viking 2]] enters into orbit around [[Mars (planet)|Mars]].
73824 *[[1978]] - United States [[President]] [[Jimmy Carter]] declares a federal emergency at [[Love Canal]].
73825 *[[1981]] -''[[The Washington Star]]'' ceases all operations after 128 years of publication.
73826 *[[1985]] - [[Takao Doi]], [[Mamoru Mohri]] and [[Chiaki Mukai]] are chosen to be [[Japan|Japan's]] first [[astronaut|astronauts]].
73827 *[[1988]] - Rioting in [[New York City]]'s [[Tompkins Square Park]]
73828 *[[1989]] - [[U.S. Congress|U.S. Congressman]] [[Mickey Leland]] (D-[[Texas|TX]]) and 15 others die in a [[plane crash]] in [[Ethiopia]].
73829 *[[1990]] - At 12:34:56 (both AM and PM) the time and date by British reckoning was 12:34:56 7/8/90 i.e. 1234567890.
73830 *[[1995]] - [[Operation Storm]] is officialy declared over in [[Croatia]], resulting in total Croat victory over rebel Serb forces.
73831 *[[1997]] - [[Fine Air]] Flight 101, a cargo flight from Miami to Santo Domingo crashes onto NW 72nd Ave near [[Miami International Airport]], killing five people.
73832 *[[1998]] - [[1998 U.S. embassy bombings]]: Bombing of the United States embassies in [[Dar es Salaam]], [[Tanzania]], and [[Nairobi]], [[Kenya]], kill 224 people and injure over 4,500.
73833 *[[1999]] - A group of [[India]]n army veterans launch the [[political party]] [[Rashtriya Raksha Dal]].
73834 *[[2000]] - [[deviantART]].com is created by [[Scott Jarkoff]], Matteo Stevens, and Angelo Sortia.
73835 *[[2005]] - [[Russia]]n [[Priz class]] mini-submarine [[AS-28]] and its seven crewmembers are rescued off the Pacific coast
73836 * 2005 - Singer [[Marc Cohn]] is shot in the head during a [[carjacking]] attempt in [[Denver, Colorado|Denver]]; he survives.
73837
73838 ==Births==
73839 *[[1400]] - [[Guillaume Dufay]], French composer (d. [[1474]])
73840 *[[1533]] - [[Alonso de Ercilla y ZÃēÃąiga]], Basque soldier and poet (d. [[1595]])
73841 *[[1560]] - [[Elizabeth BÃĄthory]], Hungarian serial killer (d. [[1614]])
73842 *[[1574]] - [[Robert Dudley, styled Earl of Warwick]], English writer (d. [[1649]])
73843 *[[1598]] - [[Georg Stiernhielm]], Swedish poet (d. [[1672]])
73844 *[[1726]] - [[James Bowdoin]], American Revolutionary leader and politician (d. [[1790]])
73845 *[[1742]] - [[Nathanael Greene]], American Revolutionary general (d. [[1786]])
73846 *[[1779]] - [[Louis de Freycinet]], French explorer (d. [[1842]])
73847 *1779 - [[Carl Ritter]], German geographer (d. [[1859]])
73848 *[[1844]] - [[Auguste Michel-LÊvy]], French geologist (d. [[191]])
73849 *[[1860]] - [[Alan Leo]], British astrologer (d. [[1917]])
73850 *[[1867]] - [[Emil Nolde]], German painter (d. [[1956]])
73851 *[[1876]] - [[Mata Hari]], Dutch spy (d. [[1917]])
73852 *[[1877]] - [[Ulrich Salchow]], Swedish figure skater (d. [[1949]])
73853 *[[1885]] - [[Billie Burke]], American actress (d. [[1970]])
73854 *[[1904]] - [[Ralph Bunche]], American diplomat, recipient of the [[Nobel Peace Prize]] (d. [[1971]])
73855 *[[1925]] - [[M. S. Swaminathan]], Indian scientist
73856 *1925 - [[Felice and Boudleaux Bryant|Felice Bryant]], American country songwriter and singer (d. [[2003]])
73857 *[[1926]] - [[Stan Freberg]], American voice comedian
73858 *[[1928]] - [[James Randi]], Canadian magician
73859 *[[1929]] - [[Don Larsen]], baseball player
73860 *[[1932]] - [[Abebe Bikila]], Ethiopan athlete
73861 *[[1936]] - [[Rahsaan Roland Kirk]], American saxophonist
73862 *[[1940]] - [[Jean-Luc Dehaene]], [[Prime Minister of Belgium]]
73863 *[[1942]] - [[Garrison Keillor]], American writer and radio host
73864 *1942 - [[B.J. Thomas]], American singer
73865 *[[1943]] - [[Dino Valente]], American musician [[Quicksilver Messenger Service]] (d. [[1994]])
73866 *[[1944]] - [[David Rasche]], American actor
73867 *[[1945]] - [[Alan Page]], American football player
73868 *[[1948]] - [[Greg Chappell]], Australian test cricket player, captain and coach
73869 *[[1949]] - [[Walid Jumblatt]], leader of the Lebanese Druze
73870 *[[1952]] - [[Alexei Sayle]], British 'alternate' comedian
73871 *[[1955]] - [[Vladimir Sorokin]], Russian writer
73872 *[[1958]] - [[Bruce Dickinson]], English singer ([[Iron Maiden]])
73873 *[[1960]] - [[David Duchovny]], American actor
73874 *[[1963]] - [[Harold Perrineau Jr.]], American actor
73875 *[[1964]] - [[Michael Weishan]], American TV host, author
73876 *[[1966]] - [[Jimmy Wales]], American founder of Wikipedia
73877 *[[1973]] - [[Danny Graves]], American baseball player
73878 *[[1975]] - [[David Hicks]], Australian alleged terrorist
73879 *1975 - [[Charlize Theron]], South African actress
73880 *[[1978]] - [[Jamey Jasta]], American Singer ([[Hatebreed]])
73881 *[[1982]] - [[Yana Klochkova]], Ukrainian swimmer
73882 *[[1987]] - [[Sidney Crosby]], Canadian hockey player
73883
73884 ==Deaths==
73885 *[[461]] - [[Majorian]], [[Roman Emperor]] (assassinated) (b. [[420]])
73886 *[[479]] - [[Emperor Yuryaku|Emperor YÅĢryaku]] of Japan
73887 *[[1106]] - [[Henry IV, Holy Roman Emperor]] (b. [[1050]])
73888 *[[1485]] - [[Alexander Stewart, 1st Duke of Albany]], English prince
73889 *[[1613]] - [[Thomas Fleming (judge)|Thomas Fleming]], English judge (b. [[1544]])
73890 *[[1616]] - [[Vincenzo Scamozzi]], Italian architect (b. [[1548]])
73891 *[[1635]] - [[Friedrich von Spee]], German writer (b. [[1591]])
73892 *[[1661]] - [[Jin Shengtan]], Chinese editor, writer and critic (b. [[1608]])
73893 *[[1817]] - [[Pierre Samuel du Pont de Nemours]], French industrialist (b. [[1739]])
73894 *[[1834]] - [[Joseph Marie Jacquard]], French weaver and inventor (b. [[1752]])
73895 *[[1848]] - [[JÃļns Jakob Berzelius]], Swedish chemist (b. [[1779]])
73896 *[[1855]] - [[Mariano Arista]], [[President of Mexico]] (b. [[1802]])
73897 *[[1912]] - [[François-Alphonse Forel]], Swiss hydrologist (b. [[1841]])
73898 *[[1941]] - [[Rabindranath Tagore]], Indian author, [[Nobel Prize]] laureate (b. [[1861]])
73899 *[[1957]] - [[Oliver Hardy]], American comedian and actor (b. [[1892]])
73900 *[[1974]] - [[Rosario Castellanos]], Mexican poet (b. [[1925]])
73901 *[[1989]] - [[Mickey Leland]], [[U.S. Congress|U.S. Congressman]] (D-[[Texas|TX]]) (b. [[1944]])
73902 *[[1995]] - [[Brigid Brophy]], British author (b. [[1929]])
73903 *[[1999]] - [[Brion James]], American actor (b. [[1945]])
73904 *[[2004]] - [[Red Adair]], American firefighter (b. [[1915]])
73905 *2004 - [[Colin Bibby]], English ornithologist (b. [[1948]])
73906 *[[2005]] - [[Peter Jennings]], Canadian-born news anchor (b. [[1938]])
73907
73908
73909
73910 ==External links==
73911 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/7 BBC: On This Day]
73912 * [http://www.nytimes.com/learning/general/onthisday/20050807.html ''The New York Times'': On This Day]
73913
73914 ----
73915
73916 [[August 6]] - [[August 8]] - [[July 7]] - [[September 7]] -- [[historical anniversaries|listing of all days]]
73917
73918 {{months}}
73919
73920 [[ilo:Agosto 7]]
73921
73922 [[af:7 Augustus]]
73923 [[ar:7 ØŖØēØŗØˇØŗ]]
73924 [[an:7 d'agosto]]
73925 [[ast:7 d'agostu]]
73926 [[bg:7 авĐŗŅƒŅŅ‚]]
73927 [[be:7 ĐļĐŊŅ–ŅžĐŊŅ]]
73928 [[bs:7. avgust]]
73929 [[ca:7 d'agost]]
73930 [[ceb:Agosto 7]]
73931 [[cv:ÇŅƒŅ€ĐģĐ°, 7]]
73932 [[co:7 d'aostu]]
73933 [[cs:7. srpen]]
73934 [[cy:7 Awst]]
73935 [[da:7. august]]
73936 [[de:7. August]]
73937 [[et:7. august]]
73938 [[el:7 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
73939 [[es:7 de agosto]]
73940 [[eo:7-a de aÅ­gusto]]
73941 [[eu:Abuztuaren 7]]
73942 [[fo:7. august]]
73943 [[fr:7 aoÃģt]]
73944 [[fy:7 augustus]]
73945 [[ga:7 LÃēnasa]]
73946 [[gl:7 de agosto]]
73947 [[ko:8ė›” 7ėŧ]]
73948 [[hr:7. kolovoza]]
73949 [[io:7 di agosto]]
73950 [[id:7 Agustus]]
73951 [[ia:7 de augusto]]
73952 [[ie:7 august]]
73953 [[is:7. ÃĄgÃēst]]
73954 [[it:7 agosto]]
73955 [[he:7 באוגוסט]]
73956 [[jv:7 Agustus]]
73957 [[ka:7 აგვისáƒĸო]]
73958 [[csb:7 zÊlnika]]
73959 [[ku:7'ÃĒ gelawÃĒjÃĒ]]
73960 [[lt:RugpjÅĢčio 7]]
73961 [[lb:7. August]]
73962 [[li:7 augustus]]
73963 [[hu:Augusztus 7]]
73964 [[mk:7 авĐŗŅƒŅŅ‚]]
73965 [[ms:7 Ogos]]
73966 [[nap:7 'e aÚsto]]
73967 [[nl:7 augustus]]
73968 [[ja:8月7æ—Ĩ]]
73969 [[no:7. august]]
73970 [[nn:7. august]]
73971 [[oc:7 d'agost]]
73972 [[pl:7 sierpnia]]
73973 [[pt:7 de Agosto]]
73974 [[ro:7 august]]
73975 [[ru:7 авĐŗŅƒŅŅ‚Đ°]]
73976 [[sco:7 August]]
73977 [[sq:7 Gusht]]
73978 [[scn:7 di austu]]
73979 [[simple:August 7]]
73980 [[sk:7. august]]
73981 [[sl:7. avgust]]
73982 [[sr:7. авĐŗŅƒŅŅ‚]]
73983 [[fi:7. elokuuta]]
73984 [[sv:7 augusti]]
73985 [[tl:Agosto 7]]
73986 [[tt:7. August]]
73987 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 7]]
73988 [[th:7 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
73989 [[vi:7 thÃĄng 8]]
73990 [[tr:7 Ağustos]]
73991 [[uk:7 ŅĐĩŅ€ĐŋĐŊŅ]]
73992 [[wa:7 d' awousse]]
73993 [[war:Agosto 7]]
73994 [[zh:8月7æ—Ĩ]]
73995 [[pam:Agostu 7]]</text>
73996 </revision>
73997 </page>
73998 <page>
73999 <title>August 8</title>
74000 <id>1333</id>
74001 <revision>
74002 <id>41774686</id>
74003 <timestamp>2006-03-01T17:34:33Z</timestamp>
74004 <contributor>
74005 <username>Rklawton</username>
74006 <id>754622</id>
74007 </contributor>
74008 <comment>/* Deaths */ added birth year</comment>
74009 <text xml:space="preserve">{| style=&quot;float:right;&quot;
74010 |-
74011 |{{AugustCalendar}}
74012 |-
74013 |{{ThisDateInRecentYears|Month=August|Day=8}}
74014 |}
74015 '''August 8''' is the 220th day of the year in the [[Gregorian Calendar]] (221st in [[leap year]]s), with 145 days remaining.
74016
74017 ==Events==
74018 *[[1509]] - The Emperor [[Krishnadevaraya|Krishnadeva Raya]] is crowned, marking the beginning of the regeneration of the [[Vijayanagara Empire]].
74019 *[[1585]] - [[John Davis (English explorer)|John Davis]] enters [[Cumberland Sound]] in quest for the [[Northwest Passage]].
74020 *[[1588]] - [[Battle of Gravelines]] ends, marking the end of the [[Spanish Armada]]'s attempt to invade England.
74021 *[[1605]] - The city of [[Oulu]], [[Finland]], is founded by [[Charles IX of Sweden]].
74022 *[[1647]] - [[Battle of Dangan Hill]] - [[Ireland|Irish]] forces are defeated by [[Great Britain|British]] [[Parliament]]ary forces.
74023 *[[1786]] - [[Mont Blanc]] in [[Switzerland]] is climbed for the first time by [[Jacques Balmat]] and Dr [[Michael-Gabriel Paccard]].
74024 *[[1839]] - [[Beta Theta Pi]] is founded in [[Oxford, Ohio]].
74025 *[[1844]] - The [[Quorum of Twelve]], headed by [[Brigham Young]], is created as the leading body of the [[Mormon]] Church.
74026 *[[1863]] - [[American Civil War]]: Following his defeat in the [[Battle of Gettysburg]], General [[Robert E. Lee]] sends a letter of resignation to [[Confederate States of America|Confederate]] President [[Jefferson Davis]] (which is refused upon receipt).
74027 *[[1876]] - [[Thomas Edison]] receives a patent for his [[mimeograph]].
74028 *[[1911]] - [[Public Law 62-5]] sets the number of representatives in the [[United States House of Representatives]] at 435. The law will take effect in [[1913]].
74029 *[[1918]] - [[World War I]]: [[Battle of Amiens]] - [[Canada|Canadian]] troops, backed by [[Australia]]ns, begin a string of almost continuous victories with a push through the [[Germany|German]] front lines.
74030 *[[1929]] - The [[Germany|German]] airship ''[[LZ 127 Graf Zeppelin|Graf Zeppelin]]'' begins a round-the-world flight.
74031 *[[1930]] - [[Betty Boop]] premieres in the animated film ''Dizzy Dishes''.
74032 *[[1938]] - The [[Mauthausen concentration camp]] opens.
74033 *[[1942]] - [[World War II]]: In [[Washington, DC]], six [[Germany|German]] would-be saboteurs are executed.
74034 *1942 - [[Quit India]] resolution was passed by the [[Bombay]] session of the AICC, which leads to the start of a civil disobedience movement across [[India]]
74035 *[[1945]] - World War II - The [[Soviet Union]] declares war on [[Japan]] and invades [[Manchuria]].
74036 *1945 - The [[United Nations Charter]] is ratified by the [[United States]], which becomes the third nation to join.
74037 *[[1949]] - [[Bhutan]] becomes independent
74038 *[[1962]] - Elizabeth Ann Duncan becomes the last woman to be executed in the [[United States]] prior to the reintroduction of [[capital punishment]] in 1977.
74039 *[[1963]] - [[The Great Train Robbery of 1963|Great Train Robbery]]: In [[England]], a gang of 15 [[train robbery|train robbers]] steal 2.6 million pounds in bank notes.
74040 *[[1967]] - The [[Association of Southeast Asian Nations]] (ASEAN) is founded.
74041 *[[1968]] - Jurō Wada successfully performs [[Japan|Japan's]] first [[Organ transplant|heart transplant]].
74042 *[[1969]] - An iconic [http://en.wikipedia.org/wiki/Image:AbbeyRoad.jpg picture] of [[the Beatles]] is taken to be used on their album [[Abbey Road (album)|Abbey Road]].
74043 *[[1972]] - [[Richard Nixon]] accepts the nomination as candidate for the [[President of the United States|presidency]].
74044 *[[1973]] - U.S. Vice President Spiro Agnew goes on television to denounce accusations he had taken [[kickbacks]] while governor of Maryland.
74045 *1973 - [[Kim Dae-Jung]], a [[South Korea|South Korean]] politician and later president of South Korea, is [[1973 Kidnapping of Kim Dae-Jung|kidnapped]].
74046 *[[1974]] - [[Watergate scandal]]: U.S. President [[Richard Nixon]] announces his resignation, effective the next day.
74047 *[[1976]] - [[Boston_(album)|Boston]], by the rock band [[Boston_(band)|Boston]] is released. It will become the #1 best-selling debut album in history.
74048 *[[1988]] - General [[Ne Win]], ruler of [[Burma]] since [[1962]], suddenly resigns.
74049 *1988 - Chicago's [[Wrigley Field]] installs lights and attempts to play first game at night.
74050 *[[1989]] - [[STS-28]]: The [[Space Shuttle Columbia]] takes off on a secret five-day military mission.
74051 *[[1991]] - Collapse of [[Warsaw radio mast]], the tallest construction ever built
74052 *1991 - [[John McCarthy]], British Journalist held hostage in Lebanon for more than five years by [[Islamic Jihad]], is released.
74053 *[[1999]] - The series finale of ''[[Mystery Science Theater 3000]]'' airs on the [[Sci-Fi Channel]].
74054 *[[2000]] - [[Confederate States of America|Confederate]] submarine ''[[H.L. Hunley]]'' is raised to the surface after 136 years on the ocean floor.
74055 *[[2008]] - The opening ceremony of the [[2008 Summer Olympics]] is scheduled to begin at 8 o'clock (08-08-08-08)
74056
74057 ==Births==
74058 *[[1079]] - [[Emperor Horikawa]] of Japan (d. [[1107]])
74059 *[[1602]] - [[Gilles de Roberval]], French mathematician (d. [[1675]])
74060 *[[1605]] - [[CÃĻcilius Calvert, 2nd Baron Baltimore]], colonial Governor of Maryland (d. [[1675]])
74061 *[[1646]] - [[Godfrey Kneller]], German-born painter (d. [[1723]])
74062 *[[1673]] - [[John Ker]], Scottish spy (d. [[1726]])
74063 *[[1693]] - [[Laurent Belissen]], French composer (d. [[1762]])
74064 *[[1694]] - [[Francis Hutcheson (philosopher)|Francis Hutcheson]], Irish philosopher (d. [[1746]])
74065 *[[1720]] - [[Carl Fredrik Pechlin]], Swedish politician (d. [[1796]])
74066 *[[1814]] - [[Esther Hobart Morris|Esther Morris]], suffragist and the first U. S. woman judge (d. [[1902]])
74067 *[[1839]] - [[Nelson Miles]], U.S. general (d. [[1925]])
74068 *[[1866]] - [[Matthew Henson]], Arctic explorer (d. [[1955]])
74069 *[[1875]] - [[Artur da Silva Bernardes]], President of Brazil (d. [[1955]])
74070 *[[1879]] - [[Emiliano Zapata]], Mexican revolutionary (d. [[1919]])
74071 *[[1880]] - [[Earle Page]], eleventh [[Prime Minister of Australia]] (d. [[1961]])
74072 *[[1891]] - [[Adolf Busch]], German violinist (d. [[1952]])
74073 *[[1892]] - [[Rafael Moreno Aranzadi]], Spanish footballer (d. [[1922]])
74074 *[[1896]] - [[Marjorie Kinnan Rawlings]], American author (d. [[1953]])
74075 *[[1901]] - [[Ernest O. Lawrence]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1958]])
74076 *[[1902]] - [[Paul Dirac]], English physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1984]])
74077 *[[1905]] - [[AndrÊ Jolivet]], French composer (d. [[1974]])
74078 *[[1907]] - [[Benny Carter]], American musician and arranger (d. [[2003]])
74079 *[[1908]] - [[Arthur Goldberg]], U.S. Supreme Court Justice (d. [[1980]])
74080 *[[1910]] - [[Sylvia Sidney]], American actress (d. [[1999]])
74081 *[[1911]] - [[Rosetta LeNoire]], American actress (d. [[2002]])
74082 *[[1915]] - [[Jumbo Elliott|James &quot;Jumbo&quot; Elliott]], American track coach (d. [[1981]])
74083 *[[1919]] - [[Dino De Laurentiis]], Italian film producer
74084 *[[1920]] - [[Leo Chiosso]], Italian lyricist
74085 *[[1921]] - [[William Asher]], American film producer
74086 *1921 - [[John Herbert Chapman]], British physicist
74087 *1921 - [[Webb Pierce]], American singer (d. [[1991]])
74088 *1921 - [[Vulimiri Ramalingaswami]], Indian medical scientist
74089 *1921 - [[Esther Williams]], American actress and swimmer
74090 *[[1922]] - [[Rory Calhoun]], American actor (d. [[1999]])
74091 *1922 - [[Rudi Gernreich]], Austrian-born fashion designer (d. [[1985]])
74092 *[[1925]] - [[Alija Izetbegovic]], President of Bosnia-Herzegovina (d. [[2003]])
74093 *[[1927]] - [[Johnny Temple]], baseball player (d. [[1994]])
74094 *[[1928]] - [[Don Burrows]], Australian jazz musician
74095 *[[1929]] - [[Larisa Bogoraz]], Soviet dissident (d. [[2004]])
74096 *1929 - [[Ronald Biggs]], British criminal
74097 *[[1931]] - Sir [[Roger Penrose]], British physicist
74098 *[[1932]] - [[Mel Tillis]], American singer
74099 *[[1035]] - [[John Laws]], Australia radio personality
74100 *[[1936]] - [[Donald P. Bellisario]], American television producer
74101 *[[1936]] - [[Keith Barron]], English actor
74102 *[[1937]] - [[Dustin Hoffman]], American actor
74103 *[[1938]] - [[Connie Stevens]], American singer and actress
74104 *[[1939]] - [[Alexander Watson]], American ambassador and diplomat
74105 *[[1944]] - [[Peter Weir]], Australian film director
74106 *1944 - [[Uli Derickson]], Czech-born flight attendant
74107 *1944 - [[Brooke Bundy]], American actress
74108 *[[1949]] - [[Keith Carradine]], American actor
74109 *[[1951]] - [[Mamoru Oshii]], Japanese film director
74110 *[[1952]] -[[Jostein Gaarder]], Norwegian author
74111 *1952 - [[Robin Quivers]], American radio personality
74112 *[[1953]] - [[Don Most]] American actor
74113 *[[1954]] - [[Nigel Mansell]], English race car driver
74114 *[[1955]] - [[Herbert Prohaska]], Austrian footballer
74115 *[[1956]] - [[Branscombe Richmond]], American actor
74116 *[[1958]] - [[Deborah Norville]], American reporter and television host
74117 *[[1961]] - [[David Howell Evans|The Edge]], Irish guitarist ([[U2]])
74118 *[[1966]] - [[Chris Eubank]], English boxer
74119 *[[1973]] - [[Scott Stapp]], American singer ([[Creed (band)|Creed]])
74120 *[[1974]] - [[Ulises De la Cruz]], Ecuadoran footballer
74121 *[[1976]] - [[J.C. Chasez]], American singer ([[*NSYNC]])
74122 *1976 - [[Drew Lachey]], American singer
74123 *[[1978]] - [[Louis Saha]], French footballer
74124 *[[1979]] - [[Richard Harwood]], British cellist
74125 *[[1980]] - [[Sabine Klaschka]], German tennis player
74126 *1980 - [[Pat Noonan]], American soccer player
74127 *[[1981]] - [[Vanessa Amorosi]], Australian singer and songwriter
74128 *1981 - [[Roger Federer]], Swiss tennis player
74129 *[[1988]] - [[Princess Beatrice of York]]
74130 *[[1989]] - [[Sesil Karatantcheva]], Bulgarian tennis player
74131 &lt;!-- Please do not add your own birthday to this list. Thank you. --&gt;
74132
74133 ==Deaths==
74134 *[[869]] - [[Lothair II of Lotharingia]] (b. [[825]])
74135 *[[1445]] - [[Oswald von Wolkenstein]], Austrian composer
74136 *[[1553]] - [[Girolamo Fracastoro]], Italian physician (b. [[1478]])
74137 *[[1588]] - [[Alonso SÃĄnchez Coello]], Spanish painter
74138 *[[1604]] - [[Horio Tadauji]], Japanese warlord (b. [[1578]])
74139 *[[1684]] - [[George Booth, 1st Baron Delamer]] (b. [[1622]])
74140 *[[1694]] - [[Antoine Arnauld]], French philosopher and mathematician (b. [[1612]])
74141 *[[1759]] - [[Carl Heinrich Graun]], German composer
74142 *[[1828]] - [[Carl Peter Thunberg]], Swedish naturalist (b. [[1743]])
74143 *[[1879]] - [[Immanuel Hermann Fichte]], German philosopher (b. [[1797]])
74144 *[[1887]] - [[Alexander William Doniphan]], American lawyer and soldier (b. [[1808]])
74145 *[[1898]] - [[Eugène Boudin]], French painter (b. [[1824]])
74146 *[[1902]] - [[James Tissot]], French artist (b. [[1836]])
74147 *[[1911]] - [[William P. Frye]], American politician (b. [[1830]])
74148 *[[1933]] - [[Adolf Loos]], Austrian architect (b. [[1870]])
74149 *[[1940]] - [[Johnny Dodds]], American musician (b. [[1892]])
74150 *[[1944]] - [[Chaim Soutine]], Russian painter (b. [[1894]])
74151 *[[1965]] - [[Shirley Jackson]], American author (b. [[1916]])
74152 *[[1972]] - [[Andrea Feldman]], American actor (b. [[1948]])
74153 *[[1975]] - [[Julian &quot;Cannonball&quot; Adderley]], American jazz saxophonist (b. [[1928]])
74154 *[[1985]] - [[Louise Brooks]], American actress (b. [[1906]])
74155 *[[1987]] - [[Danilo BlanuÅĄa]], Croatian mathematician (b. [[1903]])
74156 *[[1991]] - [[James Irwin]], astronaut (b. [[1930]])
74157 *[[1996]] - [[Nevill Mott]], English physicist, [[Nobel Prize in Physics]] (b. [[1905]])
74158 *[[2004]] - [[Fay Wray]], American actress (b. [[1907]])
74159 *[[2005]] - [[Barbara Bel Geddes]], American actress (b. [[1922]])
74160 *2005 - [[John H. Johnson]], African-American publisher; billionaire (b. [[1918]])
74161 *2005 - [[Gene Mauch]], American athlete and manager (b. [[1925]])
74162 *2005 - [[Monica Sjoo]], Swedish artist (cancer) (b. [[1938]])
74163 *2005 - [[Ilse Werner]], German actress (b. [[1921]])
74164
74165 ==Holidays and observances==
74166 *[[Republic of China|Taiwan]]: [[Father's Day]]. (In [[Mandarin (linguistics)|Mandarin]], Ba Ba means father and 8-8, or August 8).
74167 *[[Sweden]] - Namesday of Queen [[Silvia Sommerlath|Silvia]], an [[Flag days in Sweden|Official Flag Day]].
74168
74169 ==Religious observances==
74170 *[[Roman Catholic Church]]: Memorial of [[St Dominic de Guzman]], priest, (1170-1221).
74171
74172 ==External links==
74173 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/8 BBC: On This Day]
74174 *[http://www.nytimes.com/learning/general/onthisday/20050808.html ''The New York Times'': On This Day]
74175 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Aug&amp;day=08 On This Day in Canada]
74176 ----
74177
74178 [[August 7]] - [[August 9]] - [[July 8]] - [[September 8]] -- [[historical anniversaries|listing of all days]]
74179
74180 {{months}}
74181
74182 [[af:8 Augustus]]
74183 [[ar:8 ØŖØēØŗØˇØŗ]]
74184 [[an:8 d'agosto]]
74185 [[ast:8 d'agostu]]
74186 [[bg:8 авĐŗŅƒŅŅ‚]]
74187 [[be:8 ĐļĐŊŅ–ŅžĐŊŅ]]
74188 [[bs:8. august]]
74189 [[ca:8 d'agost]]
74190 [[ceb:Agosto 8]]
74191 [[cv:ÇŅƒŅ€ĐģĐ°, 8]]
74192 [[co:8 d'aostu]]
74193 [[cs:8. srpen]]
74194 [[cy:8 Awst]]
74195 [[da:8. august]]
74196 [[de:8. August]]
74197 [[et:8. august]]
74198 [[el:8 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
74199 [[es:8 de agosto]]
74200 [[eo:8-a de aÅ­gusto]]
74201 [[eu:Abuztuaren 8]]
74202 [[fo:8. august]]
74203 [[fr:8 aoÃģt]]
74204 [[fy:8 augustus]]
74205 [[ga:8 LÃēnasa]]
74206 [[gl:8 de agosto]]
74207 [[ko:8ė›” 8ėŧ]]
74208 [[hr:8. kolovoza]]
74209 [[io:8 di agosto]]
74210 [[ilo:Agosto 8]]
74211 [[id:8 Agustus]]
74212 [[ia:8 de augusto]]
74213 [[ie:8 august]]
74214 [[is:8. ÃĄgÃēst]]
74215 [[it:8 agosto]]
74216 [[he:8 באוגוסט]]
74217 [[jv:8 Agustus]]
74218 [[ka:8 აგვისáƒĸო]]
74219 [[csb:8 zÊlnika]]
74220 [[ku:8'ÃĒ gelawÃĒjÃĒ]]
74221 [[la:8 Augusti]]
74222 [[lt:RugpjÅĢčio 8]]
74223 [[lb:8. August]]
74224 [[li:8 augustus]]
74225 [[hu:Augusztus 8]]
74226 [[mk:8 авĐŗŅƒŅŅ‚]]
74227 [[ms:8 Ogos]]
74228 [[nap:8 'e aÚsto]]
74229 [[nl:8 augustus]]
74230 [[ja:8月8æ—Ĩ]]
74231 [[no:8. august]]
74232 [[nn:8. august]]
74233 [[oc:8 d'agost]]
74234 [[pl:8 sierpnia]]
74235 [[pt:8 de Agosto]]
74236 [[ro:8 august]]
74237 [[ru:8 авĐŗŅƒŅŅ‚Đ°]]
74238 [[sq:8 Gusht]]
74239 [[scn:8 di austu]]
74240 [[simple:August 8]]
74241 [[sk:8. august]]
74242 [[sl:8. avgust]]
74243 [[sr:8. авĐŗŅƒŅŅ‚]]
74244 [[fi:8. elokuuta]]
74245 [[sv:8 augusti]]
74246 [[tl:Agosto 8]]
74247 [[tt:8. August]]
74248 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 8]]
74249 [[th:8 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
74250 [[vi:8 thÃĄng 8]]
74251 [[tr:8 Ağustos]]
74252 [[uk:8 ŅĐĩŅ€ĐŋĐŊŅ]]
74253 [[wa:8 d' awousse]]
74254 [[war:Agosto 8]]
74255 [[zh:8月8æ—Ĩ]]
74256 [[pam:Agostu 8]]</text>
74257 </revision>
74258 </page>
74259 <page>
74260 <title>April 16</title>
74261 <id>1334</id>
74262 <revision>
74263 <id>42092785</id>
74264 <timestamp>2006-03-03T19:57:12Z</timestamp>
74265 <contributor>
74266 <ip>81.48.151.33</ip>
74267 </contributor>
74268 <comment>(m) interwiki br</comment>
74269 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
74270 {| style=&quot;float:right;&quot;
74271 |-
74272 |{{AprilCalendar}}
74273 |-
74274 |{{ThisDateInRecentYears|Month=April|Day=16}}
74275 |}
74276 [[April 16]] is the 106th day of the year in the [[Gregorian calendar]] (107th in [[leap year]]s). There are 259 days remaining.
74277 ==Events==
74278 *[[1178 BC]] - A [[solar eclipse]] may mark the return of [[Odysseus]], legendary King of [[Ithaca]], to his kingdom after the [[Trojan War]].
74279 *[[1071]] - [[Bari]] falls to [[Robert Guiscard]], ending [[Byzantine Empire|Byzantine]] rule in [[Italy]].
74280 *[[1521]] - [[Martin Luther|Martin Luther's]] first appearance before the [[Diet of Worms]] to be examined by the [[Charles V, Holy Roman Emperor|Holy Roman Emperor Charles V]] and the rest of the estates of the empire.
74281 *[[1746]] - [[Second Jacobite Rebellion]]: The [[Battle of Culloden]], the last battle of the [[Jacobitism|Jacobite Uprising]] is fought, ultimately leading to the destruction of the [[Highland clan]]s.
74282 *[[1780]] - The [[University of MÃŧnster]] in [[MÃŧnster]], [[North Rhine-Westphalia]], [[Germany]] is founded
74283 *[[1799]] - [[Napoleonic Wars]]: [[Battle of Mount Tabor]] &amp;ndash; [[Napoleon]] drives [[Ottoman Turks]] across the [[River Jordan]] near [[Acre]].
74284 *[[1853]] - The first passenger rail opens in [[India]], from [[Bori Bunder]], [[Bombay]] to [[Thane]].
74285 *[[1863]] - [[American Civil War]]: [[Siege of Vicksburg]] &amp;ndash; 12 ships led by [[United States|Union]] Admiral [[David Dixon Porter]] move through heavy [[Confederate States of America|Confederate]] artillery fire on approach to [[Vicksburg, Mississippi]]. Only one ship is lost.
74286 *[[1881]] - In [[Dodge City, Kansas]], [[Bat Masterson]] fights his last gun battle.
74287 *[[1912]] - [[Harriet Quimby]] becomes the first woman to fly an [[Aircraft|airplane]] across the [[English Channel]].
74288 *[[1917]] - [[Vladimir Lenin]] returns to [[Petrograd]] (present-day Saint Petersburg) from exile in [[Finland]].
74289 *[[1919]] - [[Mohandas Gandhi]] organizes a day of &quot;prayer and fasting&quot; in response to the [[United Kingdom|British]] slaughter of [[India]]n protestors in the [[Amritsar Massacre]].
74290 *[[1922]] - The [[Treaty of Rapallo, 1922|Treaty of Rapallo]], in which [[Germany]] and the [[Soviet Union]] re-establish diplomatic relations between [[Berlin]] and [[Moscow]], is signed.
74291 *[[1926]] - ''[[Lolly Willows]]'' by [[Sylvia Townsend Warner]] is distributed as the first [[Book-of-the-Month Club]] selection.
74292 *[[1935]] - [[Radio]] program ''[[Fibber McGee and Molly]]'' debuts.
74293 *[[1943]] - Dr. [[Albert Hofmann]] discovers the psychedelic effects of [[LSD]].
74294 *[[1945]] - [[World War II|WWII]]: The [[Red Army]] begins the final assault on [[Germany|German]] forces around [[Berlin]].
74295 *1945 - The [[United States Army]] liberates [[Nazi]] ''Sonderlager'' (high security) [[Prisoner of war camp|Prisoner of War camp]] Oflag IVc ([[Colditz Castle]]).
74296 *1945 - German ship [[Goya (ship)|Goya]] sinks, killing more than 7,000 people.
74297 *[[1947]] - [[Texas City Disaster]]: An explosion on board a freighter in port causes the city of [[Texas City, Texas]], to catch fire, killing almost 600.
74298 *1947 - [[Bernard Baruch]] coins the term &quot;[[Cold War]]&quot; to describe the relationship between the [[United States]] and the [[Soviet Union]].
74299 *[[1949]] - [[Dave Garroway]] moves from [[radio]] to [[television]] to host the musical-variety show ''[[Garroway at Large]]''.
74300 *[[1963]] - [[Dr. Martin Luther King, Jr.]] pens his famous [[Letter From a Birmingham Jail]] while incarcerated in [[Birmingham, Alabama]] for protesting against segregation''.
74301 *[[1972]] - [[Apollo program]]: [[Apollo 16]] launches toward the [[Moon]] from [[Cape Canaveral, Florida]].
74302 *1972 - [[Vietnam War]]: [[Nguyen Hue Offensive]] &amp;ndash; Prompted by the [[North Vietnam]]ese offensive, the [[United States]] resumes bombing of [[Hanoi]] and [[Haiphong]].
74303 *[[1988]] - In [[ForlÃŦ]] ([[Italy]]), [[Red Brigades]] kill Italian senator [[Roberto Ruffilli]], an advisor of [[Prime Minister of Italy|Prime Minister]] [[Ciriaco de Mita]].
74304 *[[1992]] - The [[Katina P.]] runs aground off of [[Maputo]], [[Mozambique]]. 60,000 tons of crude oil spill into the ocean.
74305 *[[1996]] - [[France TÊlÊcom]] introduces its [[Wanadoo]] [[Internet]] service.
74306 *[[1998]] - One of the most serious urban [[tornado]]es in history does significant damage to downtown [[Nashville, Tennessee]] (see [[Nashville Tornado of 1998]]).
74307 *[[2000]] - Protests against the [[World Bank]] and [[IMF]] in [[Washington, DC]].
74308 *[[2001]] - First [[3G]] voice call on [[Vodafone]] UK's 3G network.
74309 *[[2003]] - [[Makobo Modjadji]] is crowned the new [[Rain Queen]] of [[Balobedu]].
74310 *2003 - [[The Accession Treaty]] is signed in Athens admitting 10 new member states to the [[European Union]].
74311 *[[2005]] - The [[BBC]] announces [[David Tennant]]'s casting as the [[Tenth Doctor]] in the long-running [[science-fiction]] [[television]] series, ''[[Doctor Who]]''.
74312
74313 ==Births==
74314 *[[778]] - King [[Louis the Pious]] (d. [[840]])
74315 *[[1319]] - King [[John II of France]] (d. [[1364]])
74316 *[[1495]] - [[Petrus Apianus]], German mathematician (d. [[1557]])
74317 *[[1646]] - [[Jules Hardouin Mansart]], French architect (d. [[1708]])
74318 *[[1660]] - [[Hans Sloane]], British collector and physician (d. [[1753]])
74319 *[[1661]] - [[Charles Montagu, 1st Earl of Halifax]], English poet and statesman (d. [[1715]])
74320 *[[1682]] - [[John Hadley]], inventor (d. [[1744]])
74321 *[[1728]] - [[Joseph Black]], Scottish chemist (d. [[1799]])
74322 *[[1730]] - [[Henry Clinton (American War of Independence)|Henry Clinton]], British general (d. [[1795]])
74323 *[[1755]] - [[Elisabeth Vigee-Lebrun]], French painter (d. [[1842]])
74324 *[[1800]] - [[George Bingham, 3rd Earl of Lucan]], British soldier (d. [[1888]])
74325 *[[1823]] - [[Ferdinand Eisenstein]], German mathematician (d. [[1852]])
74326 *[[1844]] - [[Anatole France]], French writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1924]])
74327 *[[1865]] - [[Henry George Chauvel]], Australian general (d. [[1945]])
74328 *[[1867]] - [[Wilbur Wright]], American aviation pioneer (d. [[1912]])
74329 *[[1871]] - [[John Millington Synge]], Irish writer (d. [[1909]])
74330 *[[1878]] - [[Tip Foster]], English cricketer (d. [[1914]])
74331 *[[1886]] - [[Ernst Thälmann]], German politician (d. [[1944]])
74332 *[[1889]] - [[Charles Chaplin]], English actor, writer, and film producer (d. [[1977]])
74333 *[[1904]] - [[Fifi D'Orsay]], Canadian actress (d. [[1983]])
74334 *[[1905]] - [[Frits Philips]], Dutch businessman (d. [[2005]])
74335 *[[1912]] - [[Garth Williams]], American illustrator (d. [[1996]])
74336 *[[1918]] - [[Spike Milligan]], British comedian (d. [[2002]])
74337 *[[1919]] - [[Merce Cunningham]], American dancer and choreographer
74338 *[[1921]] - [[Peter Ustinov]], English writer, actor, and film director (d. [[2004]])
74339 *[[1922]] - [[Kingsley Amis]], English author (d. [[1995]])
74340 *[[1924]] - [[Henry Mancini]], American composer (d. [[1994]])
74341 *[[1927]] - [[Edie Adams]], American actress
74342 *1927 - [[Pope Benedict XVI]]
74343 *1927 - [[Peter Mark Richman]], American actor
74344 *[[1928]] - [[Dick Lane|Dick &quot;Night Train&quot; Lane]], American football player (d. [[2002]])
74345 *[[1930]] - [[Herbie Mann]], American jazz flute player (d. [[2003]])
74346 *[[1933]] - [[Joan Bakewell]], British broadcaster
74347 *[[1935]] - [[Sarah Kirsch]], German poet
74348 *1935 - [[Bobby Vinton]], American singer
74349 *[[1937]] - [[Joseph Whipp]], American actor
74350 *[[1939]] - [[Dusty Springfield]], English singer (d. [[1999]])
74351 *[[1940]] - Queen [[Margaret II of Denmark]]
74352 *[[1946]] - [[Margot Adler]], American journalist
74353 *[[1947]] - [[Kareem Abdul-Jabbar]], American basketball player
74354 *1947 - [[Gerry Rafferty]], British musician and songwriter
74355 *[[1951]] - [[Pierre Toutain-Dorbec]], French photographer, painter, sculptor
74356 *1951 - [[Ioan Mihai Cochinescu]], Romanian writer and photographer
74357 *1951 - [[BjÃļrgvin HalldÃŗrsson]], Icelandic singer
74358 *[[1952]] - [[Bill Belichick]], American football coach
74359 *1952 - [[Billy West]], American voice actor
74360 *[[1953]] - [[J. Neil Schulman]], American writer and activist
74361 *[[1954]] - [[Ellen Barkin]], American actress
74362 *[[1955]] - [[Bruce Bochy]], baseball player and manager
74363 *[[1956]] - [[Lise-Marie Morerod]], Swiss skier
74364 *[[1959]] - [[Alison Ramsay]], Scottish field hockey player
74365 *[[1960]] - [[Rafael Benitez]], Spanish football manager
74366 *[[1961]] - [[Doris Dragović]], Croatian singer
74367 *[[1962]] - [[Ian MacKaye]], American musician ([[fugazi]] and [[Minor Threat]])
74368 *[[1965]] - [[Jon Cryer]], American actor
74369 *1965 - [[Martin Lawrence]], American actor, comedian, and producer
74370 *[[1971]] - [[Selena Quintanilla|Selena]], American singer (d. [[1995]])
74371 *[[1975]] - [[Sean Maher]], American actor
74372 *[[1976]] - [[Lukas Haas]], American actor
74373 *[[1977]] - [[Fredrik Ljungberg]], Swedish footballer
74374 *[[1978]] - [[Matthew Lloyd]], Australian football player
74375 *[[1979]] - [[Howlin' Pelle Almqvist]], Swedish musician [[The Hives]]
74376 *[[1994]] - [[Liliana Mumy]], American actress
74377
74378 ==Deaths==
74379 *[[69]] - [[Otho]], [[Roman Emperor]] (b. [[32]])
74380 *[[744]] - [[al-Walid II]], Umayyad caliph
74381 *[[924]] - [[Berengar of Friuli]], King of Italy
74382 *[[1113]] - [[Sviatopolk II of Kiev]], Russian prince (b. [[1050]])
74383 *[[1118]] - [[Adelaide del Vasto]], queen of [[Roger II of Sicily]]
74384 *[[1198]] - Duke [[Frederick I of Austria (Babenberg)|Frederick I of Austria]]
74385 *[[1645]] - [[Tobias Hume]], English composer
74386 *[[1687]] - [[George Villiers, 2nd Duke of Buckingham]], English statesman (b. [[1628]])
74387 *[[1689]] - [[Aphra Behn]], English dramatist
74388 *[[1783]] - [[Christian Mayer]], Czech astronomer (b. [[1719]])
74389 *[[1788]] - [[Georges-Louis Leclerc, Comte de Buffon]], French naturalist (b. [[1707]])
74390 *[[1828]] - [[Francisco Goya|Francisco de Goya]], Spanish painter (b. [[1746]])
74391 *[[1846]] - [[Domenico Dragonetti]], Italian composer (b. [[1763]])
74392 *[[1859]] - [[Alexis de Tocqueville]], French historian (b. [[1805]])
74393 *[[1888]] - [[Zygmunt Florenty WrÃŗblewski]], Polish physicist (b. [[1845]])
74394 *[[1904]] - [[Samuel Smiles]], Scottish writer and reformer (b. [[1812]])
74395 *[[1914]] - [[George William Hill]], American astronomer (b. [[1838]])
74396 *[[1915]] - [[Nelson W. Aldrich]], U.S. Senator from Rhode Island (b. [[1841]])
74397 *[[1938]] - [[Steve Bloomer]], English footballer (b. [[1874]])
74398 *[[1946]] - [[Arthur Chevrolet]], Swiss-born race car driver and automobile designer (b. [[1884]])
74399 *[[1958]] - [[Rosalind Franklin]], British chemist (b. [[1920]])
74400 *[[1968]] - [[Edna Ferber]], American author (b. [[1885]])
74401 *[[1972]] - [[Kawabata Yasunari]], Japanese writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1899]])
74402 *[[1978]] - [[Lucius Clay]], American general (b. [[1897]])
74403 *[[1985]] - [[Scott Brady]], American actor (b. [[1924]])
74404 *[[1991]] - [[David Lean]], British film director (b. [[1908]])
74405 *[[1992]] - [[Neville Brand]], American actor (b. [[1920]])
74406 *[[1994]] - [[Ralph Ellison]], American writer (b. [[1914]])
74407 *[[1997]] - [[Doris Angleton]], American socialite (b. [[1951]])
74408 *1997 - [[Roland Topor]], French illustrator (b. [[1938]])
74409 *[[1998]] - [[Fred Davis]], English snooker player (b. [[1913]])
74410 *[[2001]] - [[Michael Ritchie]], American film director (b. [[1920]])
74411 *[[2002]] - [[Ruth Fertel]], American restaurateur (b. [[1927]])
74412 *2002 - [[Robert Urich]], American actor (b. [[1946]])
74413 *[[2003]] - [[Graham Stuart Thomas]], English author and garden designer (b. [[1909]])
74414 *[[2005]] - [[Kay Walsh]], British actress (b. [[1911]])
74415
74416 ==Holidays and observances==
74417 *[[Feast day]]s:
74418 **[[Benedict Joseph Labre]] in the [[Roman Catholic Church]]
74419 **[[Bernadette Soubirous|Saint Bernadette]]
74420 **[[Paternus|Saint Paternus]]
74421 **[[Saint Cecilia]]
74422 **[[Fructuosus|Saint Fructuosus]]
74423 **[[Turibius|Saint Turibius]]
74424 **Saints Martial, Urban, Eventius, Caecilian, Julia, and their companions [[martyr]]s of [[304]]
74425 **[[Drogo|Saint Drogo]]
74426 *Birthday of the Queen celebrated in [[Greenland]]
74427
74428 ==External links==
74429 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/16 BBC: On This Day]
74430
74431 ----
74432
74433 [[April 15]] - [[April 17]] - [[March 16]] - [[May 16]] &amp;ndash; [[historical anniversaries|listing of all days]]
74434
74435 {{months}}
74436
74437 [[af:16 April]]
74438 [[ar:16 ØĨØ¨ØąŲŠŲ„]]
74439 [[an:16 d'abril]]
74440 [[ast:16 d'abril]]
74441 [[bg:16 Đ°ĐŋŅ€Đ¸Đģ]]
74442 [[be:16 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
74443 [[br:16 Ebrel]]
74444 [[bs:16. april]]
74445 [[ca:16 d'abril]]
74446 [[ceb:Abril 16]]
74447 [[cv:АĐēĐ°, 16]]
74448 [[co:16 d'aprile]]
74449 [[cs:16. duben]]
74450 [[cy:16 Ebrill]]
74451 [[da:16. april]]
74452 [[de:16. April]]
74453 [[et:16. aprill]]
74454 [[el:16 ΑĪ€ĪÎšÎģίÎŋĪ…]]
74455 [[es:16 de abril]]
74456 [[eo:16-a de aprilo]]
74457 [[eu:Apirilaren 16]]
74458 [[fo:16. apríl]]
74459 [[fr:16 avril]]
74460 [[fy:16 april]]
74461 [[ga:16 AibreÃĄn]]
74462 [[gl:16 de abril]]
74463 [[ko:4ė›” 16ėŧ]]
74464 [[hr:16. travnja]]
74465 [[io:16 di aprilo]]
74466 [[id:16 April]]
74467 [[ia:16 de april]]
74468 [[ie:16 april]]
74469 [[is:16. apríl]]
74470 [[it:16 aprile]]
74471 [[he:16 באפריל]]
74472 [[jv:16 April]]
74473 [[ka:16 აპრილი]]
74474 [[csb:16 łÅŧÃĢkwiôta]]
74475 [[ku:16'ÃĒ avrÃĒlÃĒ]]
74476 [[lt:BalandÅžio 16]]
74477 [[lb:16. AbrÃĢll]]
74478 [[li:16 april]]
74479 [[hu:Április 16]]
74480 [[mk:16 Đ°ĐŋŅ€Đ¸Đģ]]
74481 [[ms:16 April]]
74482 [[nap:16 'e abbrile]]
74483 [[nl:16 april]]
74484 [[ja:4月16æ—Ĩ]]
74485 [[no:16. april]]
74486 [[nn:16. april]]
74487 [[oc:16 d'abril]]
74488 [[pl:16 kwietnia]]
74489 [[pt:16 de Abril]]
74490 [[ro:16 aprilie]]
74491 [[ru:16 Đ°ĐŋŅ€ĐĩĐģŅ]]
74492 [[se:CuoŋomÃĄnu 16.]]
74493 [[sq:16 Prill]]
74494 [[scn:16 di aprili]]
74495 [[simple:April 16]]
74496 [[sk:16. apríl]]
74497 [[sl:16. april]]
74498 [[sr:16. Đ°ĐŋŅ€Đ¸Đģ]]
74499 [[fi:16. huhtikuuta]]
74500 [[sv:16 april]]
74501 [[tl:Abril 16]]
74502 [[tt:16. Äpril]]
74503 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 16]]
74504 [[th:16 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
74505 [[vi:16 thÃĄng 4]]
74506 [[tr:16 Nisan]]
74507 [[uk:16 ĐēвŅ–Ņ‚ĐŊŅ]]
74508 [[ur:16 اŲžØąÛŒŲ„]]
74509 [[wa:16 d' avri]]
74510 [[war:Abril 16]]
74511 [[zh:4月16æ—Ĩ]]
74512 [[pam:Abril 16]]</text>
74513 </revision>
74514 </page>
74515 <page>
74516 <title>Associativity</title>
74517 <id>1335</id>
74518 <revision>
74519 <id>41129832</id>
74520 <timestamp>2006-02-25T06:01:17Z</timestamp>
74521 <contributor>
74522 <username>Melchoir</username>
74523 <id>454640</id>
74524 </contributor>
74525 <minor />
74526 <comment>fix cat sorting</comment>
74527 <text xml:space="preserve">:''This article is about associativity in [[mathematics]]. For ''associativity'' in central processor unit memory cache architecture see [[CPU cache]].''
74528
74529 In [[mathematics]], '''associativity''' is a property that a [[binary operation]] can have. It means that the order of evaluation is immaterial if the operation appears more than once in an expression. Put another way, no [[parentheses]] are required for an associative operation. Consider for instance the equation
74530 :(5+2)+1 = 5+(2+1)
74531 Adding 5 and 2 gives 7, and adding 1 gives an end result of 8 for the left hand side. To evaluate the right hand side, we start with adding 2 and 1 giving 3, and then add 5 and 3 to get 8, again. So the equation holds true. In fact, it holds true for ''all'' [[real number]]s, not just for 5, 2 and 1. We say that &quot;addition of real numbers is an associative operation&quot;.
74532
74533 Associative operations are abundant in mathematics, and in fact most [[algebraic structure]]s explicitly require their binary operations to be associative. However, many important and interesting operations are non-associative; one common example would be the [[vector cross product]].
74534
74535 ==Definition==
74536
74537 Formally, a binary operation &lt;math&gt;*&lt;/math&gt; on a [[set]] ''S'' is called '''associative''' if it satisfies the '''associative law''':
74538 :&lt;math&gt;(x*y)*z=x*(y*z)\qquad\mbox{for all }x,y,z\in S.&lt;/math&gt;
74539 The evaluation order does not affect the value of such expressions, and it can be shown that the same holds for expressions containing ''any'' number of &lt;math&gt;*&lt;/math&gt; operations. Thus, when &lt;math&gt;*&lt;/math&gt; is associative, the evaluation order can therefore be left unspecified without causing ambiguity, by omitting the parentheses and writing simply:
74540 :&lt;math&gt;x*y*z.&lt;/math&gt;
74541
74542 ==Examples==
74543
74544 Some examples of associative operations include the following.
74545
74546 *In [[arithmetic]], [[addition]] and [[multiplication]] of [[real number]]s are associative; i.e.,
74547 ::&lt;math&gt;
74548 \left.
74549 \begin{matrix}
74550 (x+y)+z=x+(y+z)=x+y+z\quad
74551 \\
74552 (x\,y)z=x(y\,z)=x\,y\,z\qquad\qquad\qquad\quad\ \ \,
74553 \end{matrix}
74554 \right\}
74555 \mbox{for all }x,y,z\in\mathbb{R}.
74556 &lt;/math&gt;
74557
74558 *Addition and multiplication of [[complex number]]s and [[quaternion]]s is associative. Addition of [[octonion]]s is also associative, but multiplication of octonions is non-associative.
74559
74560 *The [[greatest common divisor]] and [[least common multiple]] functions act associatively.
74561 ::&lt;math&gt;
74562 \left.
74563 \begin{matrix}
74564 \operatorname{gcd}(\operatorname{gcd}(x,y),z)=
74565 \operatorname{gcd}(x,\operatorname{gcd}(y,z))=
74566 \operatorname{gcd}(x,y,z)\ \quad
74567 \\
74568 \operatorname{lcm}(\operatorname{lcm}(x,y),z)=
74569 \operatorname{lcm}(x,\operatorname{lcm}(y,z))=
74570 \operatorname{lcm}(x,y,z)\quad
74571 \end{matrix}
74572 \right\}\mbox{ for all }x,y,z\in\mathbb{Z}.
74573 &lt;/math&gt;
74574
74575 *[[Matrix multiplication]] is associative. Because [[linear transformation]]s can be represented by matrices, one can immediately conclude that linear transformations compose associatively.
74576
74577 *Taking the [[intersection (set theory)|intersection]] or the [[union (set theory)|union]] of [[set]]s:
74578 ::&lt;math&gt;
74579 \left.
74580 \begin{matrix}
74581 (A\cap B)\cap C=A\cap(B\cap C)=A\cap B\cap C\quad
74582 \\
74583 (A\cup B)\cup C=A\cup(B\cup C)=A\cup B\cup C\quad
74584 \end{matrix}
74585 \right\}\mbox{for all sets }A,B,C.
74586 &lt;/math&gt;
74587
74588 *If ''M'' is some set and ''S'' denotes the set of all functions from ''M'' to ''M'', then the operation of [[functional composition]] on ''S'' is associative:
74589
74590 ::&lt;math&gt;(f\circ g)\circ h=f\circ(g\circ h)=f\circ g\circ h\qquad\mbox{for all }f,g,h\in S.&lt;/math&gt;
74591
74592 *Slightly more generally, given four sets ''M'', ''N'', ''P'' and ''Q'', with ''h'': ''M'' to ''N'', ''g'': ''N'' to ''P'', and ''f'': ''P'' to ''Q'', then
74593
74594 ::&lt;math&gt;(f\circ g)\circ h=f\circ(g\circ h)=f\circ g\circ h&lt;/math&gt;
74595
74596 :as before. In short, composition of maps is always associative.
74597
74598 ==Non-associativity==
74599
74600 A binary operation &lt;math&gt;*&lt;/math&gt; on a set ''S'' that does not satisfy the associative law is called '''non-associative'''. Symbolically,
74601 :&lt;math&gt;(x*y)*z\ne x*(y*z)\qquad\mbox{for some }x,y,z\in S.&lt;/math&gt;
74602 For such an operation the order of evaluation ''does'' matter. [[Subtraction]], [[division (mathematics)|division]] and [[exponentiation]] are well-known examples of non-associative operations:
74603 :&lt;math&gt;
74604 \begin{matrix}
74605 (5-3)-2\ne 5-(3-2)\quad
74606 \\
74607 (4/2)/2\ne 4/(2/2)\qquad\qquad
74608 \\
74609 2^{(1^2)}\ne (2^1)^2.\quad\qquad\qquad
74610 \end{matrix}
74611 &lt;/math&gt;
74612 In general, parentheses must be used to indicate the order of evaluation if a non-associative operation appears more than once in an expression. However, [[mathematician]]s agree on a particular order of evaluation for several common non-associative operations. This is simply a syntactical convention to avoid parentheses.
74613
74614 A '''left-associative''' operation is a non-associative operation that is conventionally evaluated from left to right, i.e.,
74615 :&lt;math&gt;
74616 \left.
74617 \begin{matrix}
74618 x*y*z=(x*y)*z\qquad\qquad\quad\,
74619 \\
74620 w*x*y*z=((w*x)*y)*z\quad
74621 \\
74622 \mbox{etc.}\qquad\qquad\qquad\qquad\qquad\qquad\ \ \,
74623 \end{matrix}
74624 \right\}
74625 \mbox{for all }w,x,y,z\in S
74626 &lt;/math&gt;
74627 while a '''right-associative''' operation is conventionally evaluated from right to left:
74628 :&lt;math&gt;
74629 \left.
74630 \begin{matrix}
74631 x*y*z=x*(y*z)\qquad\qquad\quad\,
74632 \\
74633 w*x*y*z=w*(x*(y*z))\quad
74634 \\
74635 \mbox{etc.}\qquad\qquad\qquad\qquad\qquad\qquad\ \ \,
74636 \end{matrix}
74637 \right\}
74638 \mbox{for all }w,x,y,z\in S
74639 &lt;/math&gt;
74640 Both left-associative and right-associative operations occur; examples are given below.
74641
74642 ==More examples==
74643
74644 Left-associative operations include the following.
74645 *Subtraction and division of real numbers:
74646 ::&lt;math&gt;x-y-z=(x-y)-z\qquad\mbox{for all }x,y,z\in\mathbb{R};&lt;/math&gt;
74647 ::&lt;math&gt;x/y/z=(x/y)/z\qquad\qquad\quad\mbox{for all }x,y,z\in\mathbb{R}\mbox{ with }y\ne0,z\ne0.&lt;/math&gt;
74648
74649 Right-associative operations include the following.
74650 *[[Exponentiation]] of real numbers:
74651 ::&lt;math&gt;x^{y^z}=x^{(y^z)}.&lt;/math&gt;
74652
74653 :The reason exponentiation is right-associative is that a repeated left-associative exponentiation operation would be less useful. Multiple appearances could (and would) be rewritten with multiplication:
74654
74655 ::&lt;math&gt;(x^y)^z=x^{(yz)}.&lt;/math&gt;
74656
74657 Non-associative operations for which no conventional evaluation order is defined include the following.
74658 *Taking the pairwise [[average]] of real numbers:
74659 ::&lt;math&gt;{(x+y)/2+z\over2}\ne{x+(y+z)/2\over2}\ne{x+y+z\over3}\qquad\mbox{for some }x,y,z\in\mathbb{R}.&lt;/math&gt;
74660 *Taking the [[complement (set theory)|relative complement]] of sets:
74661 ::&lt;math&gt;(A\backslash B)\backslash C\ne A\backslash (B\backslash C)\qquad\mbox{for some sets }A,B,C.&lt;/math&gt;
74662
74663 ::&lt;div style=&quot;width: 360px; float:left; margin:0em 2em 0em 0em; text-align: left;&quot;&gt;[[image:RelativeComplement.png|Venn diagram of the relative complements (A\B)\C and A\(B\C)]]&lt;/div&gt;
74664 The green part in the left [[Venn diagram]] represents (''A''\''B'')\''C''. The green part in the right Venn diagram represents ''A''\(''B''\''C'')
74665 &lt;br style=&quot;clear:both;&quot;/&gt;
74666
74667 ==See also==
74668 *A [[semigroup]] is a set with an associative binary operation.
74669 *[[Commutativity]] and [[distributivity]] are two other frequently discussed properties of binary operations.
74670 *[[Power associativity]] and [[alternativity]] are weak forms of associativity.
74671
74672 [[Category:Abstract algebra]]
74673 [[Category:Elementary algebra]]
74674 [[Category:Binary operations|*Associativity]]
74675
74676 [[bg:АŅĐžŅ†Đ¸Đ°Ņ‚ивĐŊĐžŅŅ‚]]
74677 [[cs:Asociativita]]
74678 [[da:Associativitet]]
74679 [[de:Assoziativgesetz]]
74680 [[es:Asociatividad]]
74681 [[eo:Asocieco]]
74682 [[fr:AssociativitÊ]]
74683 [[ko:결합법ėš™]]
74684 [[it:Associatività]]
74685 [[he:אסו×Ļיאטיביו×Ē]]
74686 [[nl:Associativiteit]]
74687 [[ja:įĩåˆæŗ•å‰‡]]
74688 [[pl:Łączność (matematyka)]]
74689 [[ru:АŅŅĐžŅ†Đ¸Đ°Ņ‚ивĐŊĐ°Ņ ĐžĐŋĐĩŅ€Đ°Ņ†Đ¸Ņ]]
74690 [[sk:Asociatívna operÃĄcia]]
74691 [[sl:Asociativnost]]
74692 [[sv:Associativitet]]
74693 [[zh:įģ“合型]]</text>
74694 </revision>
74695 </page>
74696 <page>
74697 <title>Apache Software Foundation</title>
74698 <id>1336</id>
74699 <revision>
74700 <id>41407130</id>
74701 <timestamp>2006-02-27T03:00:03Z</timestamp>
74702 <contributor>
74703 <username>Catapult</username>
74704 <id>792235</id>
74705 </contributor>
74706 <minor />
74707 <comment>[[Wikipedia:Categories for deletion/Log/2006 February 20|CFD]]: removing deleted category[[user:freakofnurture|...]]</comment>
74708 <text xml:space="preserve">The '''Apache Software Foundation''' (ASF) is a non-profit corporation (classified as 501(c)3 in the United States) to support Apache software projects, including the [[Apache HTTP Server]]. The ASF was formed from the Apache Group and [[Delaware corporation|incorporated in Delaware]], USA, in June, 1999.
74709
74710 The Apache Software Foundation is a decentralized community of developers. The software they produce is distributed under the terms of the [[Apache License]] and are therefore [[free software]] / [[open source software]]. The Apache projects are characterized by a collaborative, consensus based development process and an open and pragmatic software license. Each project is managed by a self-selected team of technical experts who are active contributors to the project. The ASF is a [[meritocracy]], implying that membership to the foundation is granted only to volunteers who have actively contributed to Apache projects.
74711
74712 Among the ASF's objectives are to provide legal protection to volunteers working on Apache projects, and to prevent the ''Apache'' brand name from being used by other organizations without permission.
74713
74714 The ASF also holds several [http://www.apachecon.com/ ApacheCon] conferences each year, highlighting Apache projects, related technology, and allowing Apache developers to gather together.
74715
74716 ==Projects==
74717 Formally recognized Apache projects include:
74718
74719 *[[Apache HTTP Server]]: [[Web server]]
74720 *[[Apache Ant|Ant]]: [[Java programming language|Java]]-based build tool
74721 *[[Apache Portable Runtime|APR]]: Apache Portable Runtime, a portability library written in [[C programming language|C]]
74722 *[[Apache Beehive|Beehive]]: A Java visual object model
74723 *[[Apache Cocoon|Cocoon]]: [[XML]] publishing framework
74724 *[[Apache DB|DB]]: [[database]] solutions
74725 **[[Apache Derby]]: A pure [[Java programming language|Java]] [[Relational database management system]]
74726 *[[Apache Directory Server|Directory]]: A directory server supporting [[Lightweight Directory Access Protocol|LDAP]] and other protocols
74727 *[[Apache Excalibur]]: [[Inversion of Control]] container named [[Fortress]] and related components
74728 *[[Apache Forrest]]: documentation framework based upon Cocoon
74729 *[[Geronimo Application Server]]: a [[Java EE]] server
74730 *[[Apache Gump]]: [[integration]], [[dependencies]], and [[versioning]] management
74731 *[[Apache Incubator|Incubator]]: for aspiring ASF projects
74732 *[[Jakarta Project|Jakarta]]: server side [[Java programming language|Java]] (including its own set of sub-projects)
74733 *[[Apache James]]: [[Java programming language|Java]] [[electronic mail|email]] and [[usenet|news]] server
74734 *[[Apache Lenya|Lenya]]: [[content management system]]
74735 *[[Data logging|Logging]]: logging services for application debugging and auditing, including [[log4j]]
74736 *[[Lucene]]: text search engine library written entirely in [[Java programming language|Java]]
74737 *[[Apache_Maven|Maven]]: [[Java programming language|Java]] [[project management]] and comprehension tool
74738 *[[MyFaces]]: [[JavaServer Faces]] implementation
74739 *[[mod_perl]]: dynamic websites using [[Perl]]
74740 *[[Apache Portals]]: [[web portal]] related software
74741 *[[SpamAssassin]]: email filter used to identify [[e-mail spam|spam]].
74742 *[[Apache Struts|Struts]]: [[Java programming language|Java]] web applications framework
74743 *[[Apache TCL|TCL]]: dynamic websites using [[Tool Command Language]]
74744 *[[Apache Tomcat|Tomcat]]: a [[web container]] for serving servlets and JSP
74745 *[[Apache Web Services|Web services]]: [[Web service]] related systems
74746 *[[Apache XML|XML]]: [[XML]] solutions for the web
74747 *[[XMLBeans]]: [[XML]]-[[Java programming language|Java]] binding tool
74748 *[[XML Graphics]]: conversion of [[XML]] formats to graphical output
74749
74750 ==Board of Directors==
74751 The current board of directors includes:
74752 * [[Ken Coar]]
74753 * [[Justin Erenkrantz]]
74754 * [[Dirk-Willem van Gulik]]
74755 * [[Jim Jagielski]]
74756 * [[Ben Laurie]]
74757 * [[Stefano Mazzocchi]]
74758 * [[Sam Ruby]]
74759 * [[Greg Stein]] (chairman)
74760 * [[Sander Striker]]
74761
74762 ==History==
74763 The history of the Apache Software Foundation is linked to the Apache HTTP Server, the work on which started in [[1994]]. A group of eight developers started working on enhancing the [[National Center for Supercomputing Applications|NCSA]] [[HTTPd]] daemon. They were [[Brian Behlendorf]], [[Roy Fielding]], [[Rob Hartill]], [[David Robinson]], [[Cliff Skolnick]], [[Randy Terbush]], [[Robert S. Thau]] and [[Andrew Wilson]] with additional contributions from [[Eric Hagberg]], [[Frank Peters]] and [[Nicolas Pioch]].
74764
74765 The enhanced product called the Apache server was released in April [[1995]]. In [[1999]], members of the Apache Group formed the Foundation to provide support for the Apache HTTP Server. The ASF has a membership of 151 members and approximately 1000 committers as of 2005.
74766
74767 ==External links==
74768 *http://www.apache.org
74769 *http://wiki.apache.org/general
74770 *http://wiki.apache.org/ApacheCon/FrontPage
74771
74772
74773 [[Category:Free and Open Source software Foundations]]
74774 [[Category:Nonprofit Technology]]
74775
74776 [[da:Apache Software Foundation]]
74777 [[de:Apache Software Foundation]]
74778 [[es:Apache Software Foundation]]
74779 [[fr:Apache Software Foundation]]
74780 [[id:Apache Software Foundation]]
74781 [[it:Apache Software Foundation]]
74782 [[he:קרן ה×Ēוכנה Apache]]
74783 [[nl:Apache Software Foundation]]
74784 [[ja:Apacheã‚Ŋフトã‚Ļェã‚ĸ貥å›Ŗ]]
74785 [[pl:Apache Software Foundation]]
74786 [[ru:Apache Software Foundation]]
74787 [[sv:Apache Software Foundation]]
74788 [[tr:Apache]]</text>
74789 </revision>
74790 </page>
74791 <page>
74792 <title>Americans with disabilities act</title>
74793 <id>1337</id>
74794 <revision>
74795 <id>15899826</id>
74796 <timestamp>2002-05-19T16:47:46Z</timestamp>
74797 <contributor>
74798 <username>AxelBoldt</username>
74799 <id>2</id>
74800 </contributor>
74801 <comment>*</comment>
74802 <text xml:space="preserve">#REDIRECT [[Americans_with_Disabilities_Act_of_1990]]
74803 </text>
74804 </revision>
74805 </page>
74806 <page>
74807 <title>Americans with Disabilities Act of 1990</title>
74808 <id>1338</id>
74809 <revision>
74810 <id>39218933</id>
74811 <timestamp>2006-02-11T16:23:25Z</timestamp>
74812 <contributor>
74813 <username>Famspear</username>
74814 <id>600513</id>
74815 </contributor>
74816 <comment>Expand citation.</comment>
74817 <text xml:space="preserve">{{POV}}
74818 The '''Americans with Disabilities Act of 1990''' is the short title of [[United States]] Public Law 101-336, 104 Stat. 327 (July 26, 1990), codified at {{usc|42|12101}} et seq., [[List of United States federal legislation|signed into law]] on [[July 26]], [[1990]] by President [[George H. W. Bush|George H. W. Bush]]. It is a wide-ranging [[civil rights]] law that prohibits [[discrimination]] based on [[disability]]. It affords similar protections against discrimination to [[Americans with disabilities]] as the [[Civil Rights Act of 1964|Civil Rights Act]] of [[1964]], which made discrimination based on [[race]], [[religion]], [[gender|sex]], national origin, and other characteristics illegal. Certain specific conditions are excluded, including [[alcoholism]] and [[transsexual|transsexuality]].
74819
74820 ==Structure==
74821 The Americans with Disabilities Act, commonly referred to as the '''ADA''', consists of three introductory sections and five titles:
74822 *Introductory Sections
74823 **Table of Contents
74824 **Findings and Purposes
74825 **Definitions
74826 *Main Section
74827 **Title I - Employment
74828 **Title II - Public Services (and public transportation)
74829 **Title III - Public Accommodations (and Commercial Facilities)
74830 **Title IV - Telecommunications
74831 **Title V
74832
74833 ==Groups who worked to pass the ADA==
74834 The ADA is notable because many disparate groups, many of which had never worked before, came together for a common purpose. In addition, other [[civil rights]] groups outside the disability community helped.
74835 *[[AIDS Action Council]]
74836 *[[AIDS National InterFaith Network]]
74837 *[[American Civil Liberties Union]]
74838 *[[American Foundation for the Blind]]
74839 *[[Americans Disabled for Accessible Public Transit]] (ADAPT)
74840 *[[Association for Education and Rehabilitation of the Blind and Visually Handicapped]]
74841 *[[Association for Retarded Citizens]]
74842 *[[Consortium for Citizens with Disabilities]]
74843 *[[Disability Rights Education and Defense Fund]]
74844 *[[Dole Foundation]]
74845 *[[Eastern Paralyzed Veterans of America]]
74846 *[[Epilepsy Foundation of America]]
74847 *[[Human Rights Campaign]] Fund
74848 *[[Institution for Rehabilitation and Research]]
74849 *[[Leadership Conference on Civil Rights]]
74850 *[[Legal Action Center]]
74851 *[[Mental Health Law Project]]
74852 *[[National Association of Developmental Disabilities Councils]]
74853 *[[National Association of Protection and Advocacy Systems]]
74854 *[[National Center for Law and the Deaf]]
74855 *[[National Council of Independent Living]]
74856 *[[National Council on Disability]]
74857 *[[National Disability Action Center]]
74858 *[[National Easter Seals Society]]
74859 *[[National Organization Responding to AIDS]]
74860 *[[Paralyzed Veterans of America]]
74861 *[[President's Committee on Employment of People with Disabilities]]
74862 *[[Society for Accessible Travel &amp; Hospitality]]
74863 *[[Spina Bifida Association of America]]
74864 *[[United Cerebral Palsy Association]]
74865
74866 ==Quote==
74867 On signing the measure, George H. W. Bush said,
74868 &lt;blockquote&gt;&quot;I know there may have been concerns that the ADA may be too vague or too costly, or may lead endlessly to litigation. But I want to reassure you right now that my administration and the United States Congress have carefully crafted this Act. We've all been determined to ensure that it gives flexibility, particularly in terms of the timetable of implementation; and we've been committed to containing the costs that may be incurred.... ''Let the shameful wall of exclusion finally come tumbling down.''&quot;
74869 &lt;/blockquote&gt;
74870
74871 ==Controversy==
74872 ===Inherent flaws===
74873 Some critics argue that enactment of the ADA has resulted in little progress in eliminating such discrimination because the remedies allowed under the law are primarily ''complaint-driven''. That is, individuals must make complaints of discrimination to the person or agency charged with handling such complaints, only after which the agency may take action. Each title of the Act created an agency to handle such complaints, ranging from bodies of the federal [[executive branch]] to local civil rights enforcement agencies. Further, individuals under each title have the &quot;private right of action&quot;, that is, the right to privately [[lawsuit|sue]] the alleged discriminating person or body. Many of these lawsuits have helped to clarify provisions of the Act as the courts have interpreted the law in specific cases, creating a body of [[legal precedent]].
74874
74875 ===Criticism===
74876 Although it has greatly improved the quality of life for people with severe physical disabilities, the ADA has also been heavily criticized for being overinclusive in its reach. In turn, the ADA allegedly serves as a legal haven for malingerers and so-called &quot;professional plaintiffs&quot; who make a living out of suing noncompliant businesses and collecting monetary damages.
74877
74878 The ADA was the target of a vicious media backlash in mid-[[1997]] after the [[Equal Employment Opportunity Commission]] published its ADA guidelines in March. For example, ''[[The Onion]]'' satirized the ADA with an article about the passage of the &quot;Americans with No Abilities Act,&quot; and ''[[The Simpsons]]'' ran an episode in which [[Homer Simpson]] tried to become grossly obese so he would be exempt under the ADA from a mandatory workplace fitness program.
74879
74880 The underlying debate is over whether the ADA should cover people with disabilities that are ''not'' totally and catastrophically disabling. Most people agree that a person with a severe physical disability like [[paraplegia]] should be accommodated. But they are less likely to agree when the disability in question is a [[mental illness]], like [[clinical depression]], or consists of minor neck or back pain (see [[neuropathy]]). Others believe that accommodation laws put too many restrictions on the [[free market]] and should be repealed.
74881
74882 ==References==
74883
74884 * Linda Hamilton Krieger, ed., ''Backlash Against the ADA: Reinterpreting Disability Rights'' (Ann Arbor: University of Michigan Press, 2003).
74885 * Switzer, Jacqueline Vaughn. ''Disabled Rights: American Disability Policy and the Fight for Equality''. Georgetown University Press, 2003.
74886
74887 ==See also==
74888
74889 *[[Accessibility]]
74890 *[[Disability rights movement]]
74891 *[[List of disability rights activists]] &amp;mdash; includes a list of people who helped pass the ADA
74892 *[[List of anti-discrimination acts]]
74893 ** [[Disability discrimination act]]
74894
74895 ===Related categories===
74896 *[[:Category:Disability legislation]]
74897 *[[:Category:Rights of the disabled]]
74898
74899 ===ADA constitutionality-related cases===
74900 For cases determining the constitutionality of some of the ADA's provisions, see:
74901 *''[[Tennessee v. Lane]]''
74902 *''[[Board of Trustees of the University of Alabama v. Garrett]]''
74903
74904 ==External links==
74905 * [http://www.usdoj.gov/crt/ada/pubs/ada.txt Text of the Act]
74906 * [http://www.mises.org/freemarket_detail.asp?control=254&amp;sortorder=articledate Mises.org article:What Is Disabled?]
74907 * [http://www.thedisabilitylawyer.net/act/index.html How ADA applies to Disability Discrimination]
74908 * [http://www.disabilitykey.com ADA Resource Center]
74909 * [http://www.ericdigests.org/2002-1/ada.html Overview of ADA, IDEA, and Section 504: Update 2001]
74910 * [http://www.ericdigests.org/1996-3/ada.htm Overview of ADA, IDEA, and Section 504]
74911 * [http://www.ericdigests.org/2004-1/people.htm Employment of People with Disabilities]
74912 * [http://www.ericdigests.org/2000-3/web.htm Accessible Web Design]
74913 * [http://www.ericdigests.org/1996-4/testing.htm Testing Students with Disabilities]
74914
74915 [[Category:1990 in law]]
74916 [[Category:United States federal civil rights legislation]]
74917 [[Category:Disability legislation]]
74918 [[Category:Rights of the disabled]]
74919
74920 [[ja:ADA&amp;#27861;]]</text>
74921 </revision>
74922 </page>
74923 <page>
74924 <title>Americans with Disabilities Act of 1990/Findings and Purposes</title>
74925 <id>1339</id>
74926 <revision>
74927 <id>15899828</id>
74928 <timestamp>2002-09-26T07:55:16Z</timestamp>
74929 <contributor>
74930 <username>Jeronimo</username>
74931 <id>108</id>
74932 </contributor>
74933 <comment>only verbatim text, no real content - redirecting</comment>
74934 <text xml:space="preserve">#REDIRECT [[Americans with Disabilities Act of 1990]]</text>
74935 </revision>
74936 </page>
74937 <page>
74938 <title>Americans with Disabilities Act of 1990/Definitions</title>
74939 <id>1340</id>
74940 <revision>
74941 <id>15899829</id>
74942 <timestamp>2002-09-26T07:55:24Z</timestamp>
74943 <contributor>
74944 <username>Jeronimo</username>
74945 <id>108</id>
74946 </contributor>
74947 <comment>only verbatim text, no real content - redirecting</comment>
74948 <text xml:space="preserve">#REDIRECT [[Americans with Disabilities Act of 1990]]</text>
74949 </revision>
74950 </page>
74951 <page>
74952 <title>Americans with Disabilities Act of 1990/Title III</title>
74953 <id>1341</id>
74954 <revision>
74955 <id>15899830</id>
74956 <timestamp>2002-09-26T07:55:35Z</timestamp>
74957 <contributor>
74958 <username>Jeronimo</username>
74959 <id>108</id>
74960 </contributor>
74961 <comment>only verbatim text, no real content - redirecting</comment>
74962 <text xml:space="preserve">#REDIRECT [[Americans with Disabilities Act of 1990]]</text>
74963 </revision>
74964 </page>
74965 <page>
74966 <title>A.D</title>
74967 <id>1342</id>
74968 <revision>
74969 <id>37356769</id>
74970 <timestamp>2006-01-30T13:41:50Z</timestamp>
74971 <contributor>
74972 <username>RussBot</username>
74973 <id>279219</id>
74974 </contributor>
74975 <minor />
74976 <comment>Robot: Fixing [[Special:DoubleRedirects|double-redirect]] -&quot;AD&quot; +&quot;Anno Domini&quot;</comment>
74977 <text xml:space="preserve">#REDIRECT [[Anno Domini]]</text>
74978 </revision>
74979 </page>
74980 <page>
74981 <title>Active recall</title>
74982 <id>1343</id>
74983 <revision>
74984 <id>15899832</id>
74985 <timestamp>2005-03-20T01:20:22Z</timestamp>
74986 <contributor>
74987 <ip>203.26.206.129</ip>
74988 </contributor>
74989 <comment>Added flashcards</comment>
74990 <text xml:space="preserve">'''Active recall''' is a principle of efficient learning, which says that we need to actively stimulate [[memory]] in the learning process. It is an opposite to [[passive review]] in which the learning material is processed passively (e.g. by reading, watching, etc.).
74991
74992 For example, when you read a text about [[George Washington]], this is passive review.
74993
74994 If you answer a question &quot;Who was the first US President?&quot;, this is active recall.
74995
74996 Active recall is many times more efficient in consolidating [[long-term memory]]. This is why just reading your study notes before exam is not likely to leave a long-lasting memory trace. On the other hand, if you ask your colleague to test you on the same material, the results will be better in the long run.
74997
74998 Because our recall of a memory may be influenced by its position within a sequence of self-test questions it can be advantageous to randomise the order of those questions. This could be done for instance by putting questions and answers in a [[spreadsheet]] and sorting them by values produced by a randomisation function. [[Flashcards]] are also often used to stimulate active recall in education.
74999
75000 It is at the start of a learning task that active recall tasks need to be at their most frequent for retention. As long term memories form, rates of testing can be reduced. Recognition of this fact may aid efficient learning.
75001
75002 For more information on improving memory see [[Mnemonics]].
75003
75004 [[Category:Memory]]
75005 [[Category:Mnemonics]]</text>
75006 </revision>
75007 </page>
75008 <page>
75009 <title>Apple I</title>
75010 <id>1344</id>
75011 <revision>
75012 <id>37254376</id>
75013 <timestamp>2006-01-29T20:39:47Z</timestamp>
75014 <contributor>
75015 <ip>66.23.219.26</ip>
75016 </contributor>
75017 <comment>Minor grammar correction.</comment>
75018 <text xml:space="preserve">{| class =&quot;wikitable&quot; align=&quot;right&quot; width=250
75019 &lt;!--{|border=1 align=&quot;right&quot; cellpadding=2 cellspacing=0 width=250 style=&quot;margin-left:3em; margin-bottom: 2em; color: black; background: white;&quot;--&gt;
75020 |colspan=2|[[Image:Apple I.jpg|250px|Apple I computer]]
75021 |-
75022 !colspan=2 style=&quot;color: white; background: gray;&quot;|Apple I
75023 |-
75024 |width=&quot;40%&quot;|'''Manufacturer'''||[[Apple Computer]]
75025 |-
75026 |'''Type'''||[[Personal computer]]
75027 |-
75028 |'''Casing'''||Wood
75029 |-
75030 |'''Production'''||1976
75031 |-
75032 |'''Discontinued'''||March, 1977
75033 |-
75034 |'''CPU'''||[[MOS Technology 6502|MOS 6502]] @ [[megahertz|1 MHz]]
75035 |-
75036 |'''RAM'''||4 [[kilobyte|KB]] standard&lt;br&gt;expandable to 8 KB&lt;br&gt;or 48 KB using expansion cards
75037 |-
75038 |'''Graphics'''||40&amp;times;24 characters&lt;br&gt;Hardware-implemented scrolling
75039 |}
75040
75041 The '''Apple I''' was an early [[personal computer]], and the first to combine a [[computer keyboard|keyboard]] with a [[microprocessor]] and a connection to a [[computer display|monitor]].
75042
75043 The Apple I was designed by [[Steve Wozniak]] originally for personal use. Wozniak's friend [[Steve Jobs]] had the idea of selling the computer. It was sold as Apple's first product, beginning in April 1976. Its retail price was US$666.66. About 200 units were produced. Unlike other hobbyist computers of its day, which were sold as kits, the Apple I was a fully-assembled circuit board containing about 30 chips. However, to make a working computer, users still had to add a case, power supply, keyboard, and display. An optional board providing a cassette interface for storage was later released at a cost of $75.
75044
75045 The Apple I is sometimes credited as the first personal computer to be sold in fully assembled form; however, some argue that the honour rightfully belongs to other machines, such as the [[Datapoint 2200]].
75046
75047 The Apple I's use of a [[computer keyboard|keyboard]] and [[computer display|monitor]] was distinctive. Competing machines such as the [[Altair 8800]] generally were programmed with front-mounted toggle switches and used indicator lights (red [[light-emitting diode|LED]]s, most commonly) for output, and had to be extended with separate hardware to allow connection to keyboards and monitors. This made the Apple I an innovative machine for its day, despite its lack of graphics or sound capabilities. It was discontinued in March 1977, when it was replaced with the [[Apple II]].
75048
75049 As of the [[as of 2005|turn of the millennium]], an estimated 30 to 50 Apple Is are still known to exist, making it a [[collector's item]]. An Apple I reportedly sold for $50,000 at auction in 1999; however, a more typical price for an Apple I is in the $14,000&amp;ndash;$16,000 range. A software-compatible clone of the Apple I ([[Replica I]]) produced using modern components, was released in 2003 at a price of around $200.
75050
75051 ==References==
75052 * Owad, Tom (2005). ''[http://www.applefritter.com/replica Apple I Replica Creation: Back to the Garage.]'' Rockland, MA: Syngress Publishing. Copyright Š 2005. ISBN 1-931836-40-X.
75053
75054 ==External links==
75055 * [http://www.applefritter.com/apple1 Apple I Owners Club]
75056 * [http://lowendmac.com/orchard/05/0509.html Macintosh Prehistory: The Apple I]
75057 * [http://www.brielcomputers.com The Replica-1]
75058
75059 [[Category:Early microcomputers]]
75060 [[Category:Apple hardware]]
75061 [[Category:Apple II family|I]]
75062
75063 [[de:Apple I]]
75064 [[es:Apple I]]
75065 [[eo:Apple I]]
75066 [[fr:Apple I]]
75067 [[it:Apple I]]
75068 [[nl:Apple I]]
75069 [[ja:Apple I]]
75070 [[pl:Apple I]]
75071 [[sk:Apple I]]
75072 [[zh:Apple I]]</text>
75073 </revision>
75074 </page>
75075 <page>
75076 <title>Apache webserver</title>
75077 <id>1345</id>
75078 <revision>
75079 <id>15899834</id>
75080 <timestamp>2003-01-02T03:20:13Z</timestamp>
75081 <contributor>
75082 <username>Wapcaplet</username>
75083 <id>6264</id>
75084 </contributor>
75085 <minor />
75086 <text xml:space="preserve">#REDIRECT [[Apache HTTP Server]]</text>
75087 </revision>
75088 </page>
75089 <page>
75090 <title>Apatosaurus</title>
75091 <id>1346</id>
75092 <revision>
75093 <id>40384795</id>
75094 <timestamp>2006-02-20T04:53:02Z</timestamp>
75095 <contributor>
75096 <username>Denniss</username>
75097 <id>133598</id>
75098 </contributor>
75099 <minor />
75100 <comment>/* Classification and history */</comment>
75101 <text xml:space="preserve">{{Taxobox
75102 | color = pink
75103 | name = ''Apatosaurus''
75104 | status = {{StatusFossil}}
75105 | image = Apatosaurus.gif
75106 | image_width=240px
75107 | regnum = [[Animal]]ia
75108 | phylum = [[Chordate|Chordata]]
75109 | classis = [[Sauropsid|Sauropsida]]
75110 | superordo = [[Dinosaur|Dinosauria]]
75111 | ordo = [[Saurischia]]
75112 | subordo = [[Sauropodomorpha]]
75113 | infraordo = [[Sauropoda]]
75114 | familia = [[Diplodocidae]]
75115 | genus = '''''Apatosaurus'''''
75116 | genus_authority = [[Othniel Charles Marsh|Marsh]], 1877
75117 | subdivision_ranks = [[Species]]
75118 | subdivision =
75119 ''Apatosaurus ajax''&lt;br/&gt;
75120 ''Apatosaurus excelsus''&lt;br/&gt;
75121 ''Apatosaurus louisae''&lt;br/&gt;
75122 }}
75123
75124 '''''Apatosaurus''''' (ah-PAT-o-sawr-us) meaning &quot;deceptive lizard&quot;, because its [[Chevron (anatomy)|chevron bones]] were like those of ''[[Mosasaurus]]'' ([[Greek language|Greek]] ''apatelos'' = deceptive + ''sauros'' = lizard), often refered to as ''[[Brontosaurus]]'', is a [[genus]] of [[sauropod]] [[dinosaur]]s that lived about 140 [[million years ago]], during the [[Jurassic]] [[geologic period|period]]. They were some of the largest land [[animal]]s that ever existed, about 4.5 [[metre]]s (15 [[feet]]) tall at the hips, with a length of up to 25m (80 feet) and a mass up to 35 [[metric tonne]]s (40 [[short ton|ton]]s).
75125
75126 The cervical vertebra and the bones in the legs were bigger and heavier than that of [[Diplodocus]], but they both had the long neck and tail. The skull was first identified in [[1975]], a century after it got its name. ''Apatosaurus'' had a large claw on its first digit (thumb). The tail was held above the ground during normal locomotion.
75127
75128 ==Environment==
75129
75130 Early on, it was believed that ''Apatosaurus'' was too massive to support its own weight on dry land, so it was theorized that the sauropod must have lived partly submerged in water, perhaps in a swamp. Recent findings do not support this. In fact, like its relative ''[[Diplodocus]]'', ''Apatosaurus'' was a [[grazing]] animal with a very long neck, and a long tail that served as a counterweight. Fossilized footprints indicate that it probably lived in herds. To aid in processing food, ''Apatosaurus'' may have swallowed gizzard stones ([[gastrolith]]s) the same way many birds do today &amp;mdash; its jaws alone were not sufficient to chew tough plant fibers.
75131
75132 ''Apatosaurus'' perhaps lumbered along in flocks on riverbanks with trees, eating off the top leaves. Scientists believe that these sauropods could not raise their neck to an angle of 90 degrees, as doing so would slow blood flow to the brain excessively; blood starting at the body proper would take two or more minutes to reach the brain. Furthermore, studies of the structure of the neck vertebrae have revealed that the neck was not as flexible as previously thought. No one knows how Apatosaurs ate enough food to satisfy their enormous bodies. They probably ate constantly, pausing only to cool off, drink or to remove parasites. They must have slept standing upright. If attacked by a predator, one could defend itself by swinging its tail from side to side, or stomping on the meat-eater.
75133
75134 ==Classification and history==
75135
75136 [[Image:Apatosaurus2.jpg|left|thumb|200px|Apatosaurus' correct head]]
75137 In 1877, [[Othniel Charles Marsh]] published notes on his discovery of ''Apatosaurus ajax'', and then in 1879 described another, more complete dinosaur species, which he speculated to represent a new genus and named ''Brontosaurus excelsus''. In 1903, it was discovered that ''Brontosaurus excelsus'' was in fact an adult ''Apatosaurus'', and the name ''Apatosaurus'', having been published first, was deemed to have priority as the official name; ''Brontosaurus'' was relegated to being a synonym. In the 1970s, it was proven that the traditional &quot;Brontosaurus&quot; image known to all was, in fact, an ''Apatosaurus excelsus'' with a ''[[Camarasaurus]]'' head mistakenly placed on its body.
75138
75139 Fossils of this animal have been found in Nine Mile Quarry and Bone Cabin Quarry in [[Wyoming]], and at sites in [[Colorado]], [[Oklahoma]], [[Utah]], [[United States|USA]].
75140
75141 ===Species===
75142
75143 * ''A. ajax'' is the [[type species]] of the genera, and was named by the [[paleontologist]] [[Othniel Charles Marsh]] in 1877 after [[Telamonian Aias|Ajax]], the [[hero]] from [[Greek mythology]]. It is the [[holotype]] for the genera, and two partial skeletons have been found including part of a [[skull]].
75144 * ''A. excelsus'' (originally ''Brontosaurus'') was named by Marsh in 1879. It is known from six partial skeletons, including part of a skull, which have been found in the [[United States]], in [[Oklahoma]], [[Utah]], and [[Wyoming]].
75145 * ''A. louisae'' was named by [[William Holland]], in 1915. It is known from one partial skeleton, which was found in [[Colorado]], in the United States.
75146
75147 [[Robert T. Bakker]] made ''A. yahnahpin'' the [[holotype|type]] species of a new genus, ''Eobrontosaurus'' in 1998, so it is now properly ''Eobrontosaurus yahnahpin''. It was named by Filla, James and Redman in 1994. One partial skeleton has been found in Wyoming.
75148
75149 ==See also==
75150 *[[Brontosaurus]]
75151
75152 [[Category:Sauropods]]
75153 [[Category:Jurassic dinosaurs]]
75154
75155 [[de:Apatosaurus]]
75156 [[es:Apatosaurus]]
75157 [[fr:Brontosaure]]
75158 [[he:אפאטוזאור]]
75159 [[nl:Apatosaurus]]
75160 [[ja:ã‚ĸパトã‚ĩã‚ĻãƒĢã‚š]]
75161 [[pt:Apatossauro]]
75162 [[sk:Apatosaurus]]
75163 [[fi:Apatosaurus]]
75164 [[sv:Apatosaurus]]
75165 [[uk:АĐŋĐ°Ņ‚ОСавŅ€]]</text>
75166 </revision>
75167 </page>
75168 <page>
75169 <title>Allosaurus</title>
75170 <id>1347</id>
75171 <revision>
75172 <id>41553136</id>
75173 <timestamp>2006-02-28T02:48:37Z</timestamp>
75174 <contributor>
75175 <ip>129.170.119.237</ip>
75176 </contributor>
75177 <comment>/* External links */</comment>
75178 <text xml:space="preserve">&lt;!--
75179 Proposed Edit by 67.182.251.180
75180 Allosaurus was a huge carnivore. Allosaurus probably ate herbivore dinosaurs, like stegosaurs and iguanadons. It could kill medium-sized sauropods, and sick or injured large saurpods like apatosaurs and others of its kind. Allosaurus may have been a scavenger. Allosaurus probably had competition with Ceratosaurus, though Allosaurus was much larger.
75181 Bones of big sauropods, like Camarasaurus, Diplodocus, and Apatosaurus have Allosaurus tooth marks. A huge sauropod was most likely to big for even one Allosaurus to kill, so scientists think Allosuarus probably hunted in packs to kill such big Plant-eaters. But maybe Allosaurus could’ve only gone after injured or sick dinosaurs, not risking being killed by a strong and healthy Sauropod, or a whack of a tail.
75182 A recent study found that Allosaurus’ powerful bite was not in the musles of its jaws, but its neck and reinforced skull. It would gape and cleave flesh from its prey by using its powerfully-muscled neck to wield its impact-resistant skull like an axe. This would have done far more damage than simply opening and closing its jaws.
75183 Allosaurus was a Carnosaur, and his intelligence was high. His EQ ( Enephalization Quotient, or how its brain measured to its body) was about 1.9 EQ.
75184 In 1998, a Allosaurus nest was discovered in Wyoming. Fossils of adults and young were found, along with tons of Herbivore bones. The bones had teeth marks from young and from grown Allosaurs. This shows that Allosaurs may have brought food back to the nests to feed to their young.
75185 It’s not determined that Allosaurs were able to communicate vocally besides a hiss. But because their closest living relatives, birds and crocodiles can, it probably means Allosaurus could too. It’s certain that Allosaurus used visual communication some what. The crest on its head is proof of this. Its crest was probably colorful. Communicating by bobbing the head was probably part of courting and telling of enemies. Showing its massive teeth was probably another way of warding of threats.
75186 During the Mesozoic era, the climate was warmer, the seasons were mild, the sea level was higher, and there was no polar ice. In the mid-Jurassic, Laurasia and Gondwanaland started forming because Pangaea was breaking apart. By the late Jurassic, the spreading of Laurasia and Gondwanaland was almost complete. The climate of the Jurassic period was hot and dry, but later
75187 changed, with no polar ice, warm and moist, and very much flooding in vast areas. Pterosaurs starting flying in the sky.
75188 The seas during the Jurassic period were home to tons of coral reefs, fish, ichthyosaurs, (fishlike reptiles), plesiosaurs, giant marine crocodiles, ammonites, squid, sharks, and rays.
75189 Triassic plant lines continued. Many palm-like trees, called Cycads were around. There was also many seed ferns, gingkos, and conifers in the subtropical forests.
75190 So far, more than sixty complete and partial Allosaurus skeletons have been found. They’ve been found in Wyoming, Colorado, Utah, New Mexico, Montana, South Dakota, Oklahoma, and possibly Portugal and Tanzania.
75191 In one quarry here in Utah, remains of at least 44 Allosaurs were found mixed together! The teeth of Allosaurus are the most common remains of theropods from the late Jurassic in the American West.
75192 In 1991 a 95% complete Allosaurus skeleton was found, and was later named Big Al. the skeleton was excavated near Shell, Wyoming by the Museum of the Rockies and the University of Wyoming Geological Museum. It was originally discovered by a Swiss team led by Kirby Siber. They later found a second Allosaurus, named “Big Al Two”. It’s the best preserved skeleton of Allosaurus yet.
75193 --&gt;
75194 {{taxobox
75195 | color=pink
75196 | name=Allosaurus
75197 | image = Allosaurus-fossilized skull.jpeg
75198 | image_width = 225px
75199 | image_caption = [[Fossil]]ized ''Allosaurus'' [[skull]]
75200 | status = {{StatusFossil}}
75201 | regnum = [[Animal]]ia
75202 | phylum = [[Chordate|Chordata]]
75203 | classis = [[Reptile|Sauropsida]]
75204 | ordo = [[Saurischia]]
75205 | subordo = [[Theropoda]]
75206 | infraordo = [[Carnosauria]]
75207 | familia = [[Allosauridae]]
75208 | genus = '''''Allosaurus'''''
75209 | genus_authority = [[Othniel Charles Marsh|Marsh]] 1877
75210 | subdivision_ranks = Species
75211 | subdivision =
75212 ''?A. amplexus''&lt;br/&gt;
75213 ''?A. ferox''&lt;br/&gt;
75214 ''A. jimmadseni''&lt;br/&gt;
75215 ''A. fragilis'' ([[type species|type]])&lt;br/&gt;
75216 }}
75217 '''''Allosaurus''''' (AL-oh-sore-us) meaning “different lizard”, because its [[vertebrae]] were different from those of all other dinosaurs ([[Greek language|Greek]] ''allos'' = different + ''sauros'' = lizard), was a large [[carnivore|carnivorous]] [[dinosaur]] with a length of up to 12&amp;nbsp;[[metre|m]] (39&amp;nbsp;[[foot (unit of length)|ft]]). It was the most common large predator in [[North America]], 155 to 145 [[million years ago]], in the [[Jurassic]] [[geologic period|period]].
75218
75219 ''Allosaurus'' is the official [[state fossil]] of [[Utah]], in the [[United States]].
75220
75221 == Description ==
75222 [[Image:Allosaurus1.jpg|thumb|210px|left|A replica Allosaurus skeleton at a New Zealand museum]]
75223 ''Allosaurus'' is a classic big [[theropod]]: a large [[skull]] on a short [[neck]], a long [[tail]], and reduced forelimbs. Its most distinctive feature is a pair of blunt horns just above and in front of the eyes. Although short in comparison to the hindlimbs, the forelimbs are massive and bear large, eagle-like [[claw]]s. The skull shows evidence of being composed of separate modules, which could be moved in relation to one another, allowing large pieces of meat to be swallowed. The skeleton of ''Allosaurus'', like other theropods, shows [[bird]]like features like a wishbone and neck vertebrae hollowed by air sacs. It is thought that ''Allosaurus'' might have hunted in packs, allowing it to bring down the large sauropods of the time. Allosaurus was extremely light compared to other dinosaurs its size, which may have allowed it to leap onto its prey (something that only small dinosaurs could do) without sustaining severe injury.
75224
75225 == Findings ==
75226 ''Allosaurus'' is the most common theropod in the huge section of dinosaur-bearing rock in the [[American Southwest]] known as the [[Morrison Formation]]. Remains have been recovered in [[Montana]], [[Wyoming]], [[South Dakota]], [[Colorado]], [[Oklahoma]], [[New Mexico]], and Utah in the United States; and in [[Portugal]]. Curiously, ''Allosaurus'' shared the Jurassic landscape with several other theropods, including ''[[Ceratosaurus]]'' and the massive ''[[Torvosaurus]]''.
75227
75228 A famous [[fossil]] bed can be found in the [[Cleveland Lloyd Quarry]] in Utah. This fossil bed contains over 10,000 bones, mostly of ''Allosaurus'', with other dinosaurs like ''[[Stegosaurus]]'' and ''[[Ceratosaurus]]'' thrown in. It is still a mystery how the remnants of so many animals can be found in one place: normally the ratio of fossils of carnivorous animals over fossils of plant eaters is very small. Findings like these can be explained by pack hunting, although this is difficult to prove.
75229
75230 One of the more significant finds was the 1991 discovery of &quot;[[Big Al]]&quot; (MOR 593), a 95% complete, partially articulated, juvenile specimen that measured 8 meters (26 feet) in length. Nineteen bones were broken or showed signs of [[infection]], which probably contributed to Big Al's death. It was featured in &quot;The Ballad of Big Al&quot;, a special programme in the [[BBC]]'s ''[[Walking with Dinosaurs]]'' series. The fossils were excavated near [[Shell, Wyoming]] by the [[Museum of the Rockies]] and the [[University of Wyoming]] Geological Museum. This skeleton was initially discovered by a Swiss team led by Kirby Siber, which later excavated a second Allosaurus &quot;Big Al Two&quot;, which is the best preserved skeleton of its kind to date.
75231
75232 == Classification and history ==
75233 [[Image:Allo.JPG|thumb|right|200px|The Allosaurus Big Al]]
75234 The first ''Allosaurus'' [[fossil]] to be described was a &quot;petrified [[horse]] hoof&quot; given to [[Ferdinand Vandiveer Hayden]] in [[1869]] by the natives of Middle Park, near [[Granby, Colorado]]. It was actually a caudal [[vertebra]] (a tail bone), which [[Joseph Leidy]] tentatively assigned first to the ''[[Poicilopleuron]]'' [[genus]], and later to a new genus, ''[[Antrodemus]]''. However, it was [[Othniel Charles Marsh]] who gave the formal name ''Allosaurus fragilis'' to the genus and [[type species]] in [[1877]], based on much better material including a partial skeleton, from Garden Park, north of [[Canon City, Colorado]].
75235
75236 The name ''Allosaurus'' comes from the [[Greek language|Greek]] ''allos'', meaning &quot;strange&quot; or &quot;different&quot;; and ''sauros'', meaning &quot;lizard&quot; or &quot;reptile&quot;. The species epithet ''fragilis'' is [[Latin]] for &quot;fragile&quot;. Both refer to lightening features in the vertebrae.
75237
75238 It is unclear how many species of ''Allosaurus'' there were. The material from the Cleveland-Lloyd ''Allosaurus'' is much smaller and more lightly built than the huge, robust ''Allosaurus'' from [[Brigham Young University]]'s [[Dry Mesa Quarry]]. Fossils resembling ''Allosaurus'' have been described from [[Portugal]].
75239
75240 ''Allosaurus'''s closest relative is probably the Lower Cretaceous ''[[Acrocanthosaurus]]''.
75241
75242 == External links ==
75243 * &quot;[http://www.dinodata.net/Dd/Namelist/TABA/A078.htm ''Allosaurus'']&quot;. ''DinoData''.
75244 * [http://www.uwyo.edu/geomuseum/tour/allosaur.htm ''Allosaurus'', the story of &quot;Big Al&quot;], from the University of Wyoming Geological Museum in Laramie.
75245 * [http://pioneer.utah.gov/fossil.html Public Pioneer, Utah State Fossil, Allosaurus], from Utah.gov.
75246 * [http://www.nmnh.si.edu/paleo/dino/allo2.htm?143,44 ''Allosaurus fragilis''], [[Smithsonian Institute|Smithsonian]] National Museum of Natural History, Department of Paleobiology.
75247 * [http://dml.cmnh.org/1995Nov/msg00278.html List of the many possible ''Allosaurus'' species...]
75248
75249 [[Category:Theropods]]
75250 [[Category:Carnosaurs]]
75251 [[Category:Jurassic dinosaurs]]
75252
75253 [[de:Allosaurus]]
75254 [[es:Allosaurus]]
75255 [[fr:Allosaurus]]
75256 [[he:אלוזאור שברירי]]
75257 [[it:Allosaurus]]
75258 [[ja:ã‚ĸロã‚ĩã‚ĻãƒĢã‚š]]
75259 [[nl:Allosaurus]]
75260 [[pt:Alossauro]]
75261 [[sk:Allosaurus]]
75262 [[fi:Allosaurus]]
75263 [[sv:Allosaurus]]
75264 [[zh:čˇƒéž™åąž]]</text>
75265 </revision>
75266 </page>
75267 <page>
75268 <title>AK-47</title>
75269 <id>1348</id>
75270 <revision>
75271 <id>42100227</id>
75272 <timestamp>2006-03-03T20:58:40Z</timestamp>
75273 <contributor>
75274 <username>Bobblewik</username>
75275 <id>51235</id>
75276 </contributor>
75277 <minor />
75278 <comment>units</comment>
75279 <text xml:space="preserve">{{Firearm|
75280 name=AK-47
75281 |image=[[Image:Ak-47.gif|275px|Both sides of an AK-47]]
75282 |caption=Both sides of an AK-47
75283 |nation=[[Soviet Union]], [[Russia]]
75284 |type=[[Assault rifle]]
75285 |inventor=[[Mikhail Kalashnikov]]
75286 |date=1947
75287 |serv_date=1951–present
75288 |cartridge=[[7.62 x 39 mm|7.62 × 39 mm]]
75289 |action=[[Gas-operated]], [[rotating bolt]]
75290 |rof=600 round/min
75291 |velocity=710 m/s (~2,330 ft/s)
75292 |range=300 m
75293 |mass=4.3 kg
75294 |length=870 mm
75295 |barrel=415 mm
75296 |capacity=30-round detachable box; compatible w/ [[RPK]] 40-round box and 75-round [[drum magazine]]
75297 |sights=Adjustable [[iron sights]], optional mount required for optical sights
75298 |variant=AK-47, AKS, AKM [[GRAU|6P1]], AKMS, [[AK-74]], [[AK-101]], [[AK-102]], [[AK-103]], [[AK-104]], [[AK-105]], [[AK-107]], [[AK-108]]
75299 |num_built=Over 100 million
75300 |}}
75301
75302 The '''AK-47''' ('''''A'''vtomat '''K'''alashnikova 19'''47 '''''; [[Russian language|Russian]]: АвŅ‚ĐžĐŧĐ°Ņ‚ КаĐģĐ°ŅˆĐŊиĐēОва ОйŅ€Đ°ĐˇŅ†Đ° 1947 ĐŗОда) is a [[gas-operated]] [[assault rifle]] designed by [[Mikhail Kalashnikov]], produced by [[Russia]]n manufacturer [[IZH]], and used in many [[Eastern bloc]] nations during the [[Cold War]]. It was adopted and standardized in 1947. Compared to [[rifle]]s used in [[World War II]], the AK-47 was generally lighter, more compact, with a shorter range, a smaller [[7.62 x 39 mm|7.62 × 39 mm]] cartridge, and was capable of [[selective fire]]. It was one of the first assault rifles, and surely the most prolific. The AK-47 and its numerous variants have been produced in greater numbers than any other assault rifle in the 20th century, and it remains in production to this day.
75303
75304 ==Development==
75305 During the Second World War, Germany had developed the concept of the assault rifle. This concept was based on the premise that most military engagements in modern warfare were happening at fairly close range with the majority happening within 100 meters. The power and range of ‘full-power’ rifle cartridges was simply overkill for a vast majority of engagements with small arms. As a result, a cartridge and firearm were sought that would combine the features of a submachinegun (high capacity magazine and fully-automatic capability) with an intermediate power cartridge that would be effective to a range of 300 meters. For the sake of manufacturing, this was done by shortening the 8 mm Mauser cartridge to 33 mm and using a lighter bullet.
75306
75307 The resulting [[Sturmgewehr 44]] was not the first rifle to use these features; it was preceded by earlier [[Italy|Italian]], and [[Russia]]n, designs. The Germans were, however, the first to produce and field a sufficient number of the type to properly evaluate its utility. They fielded the weapon in large numbers against the Russians towards the end of the war. This experience deeply influenced Russian doctrine in the years following the war.
75308
75309 [[Image:AKlash.jpg|thumb|right|Mikhail Kalashnikov]]According to the story, tank sergeant Mikhail Kalashnikov began imagining his weapon while still in the hospital, after being wounded in the battle of [[Bryansk]]. He had been informed that a new weapon was required for the 7.62 × 39 mm cartridge developed by Elisarov and Semin in 1943. Sudayev's [[PPS43]] submachine gun was preferred to Kalashnikov's design. Kalashnikov redesigned his losing design after examining a German [[Sturmgewehr 44|STG 44]] in 1946. It has been suggested that Kalashnikov was chosen to lead a team of designers more for propaganda value due to his war-hero status rather than for his expertise, following Soviet patterns in other industries.
75310
75311 Despite circumstantial evidence, Mikhail Kalashnikov denies that his rifle was ''based'' on the German assault rifle. Internally the AK-47 owes much to the [[M1 Garand]] Rifle. The double locking lugs, unlocking raceway, and trigger mechanism are clearly derived from the earlier American design. This is not surprising as millions of Garand rifles had operated reliably in combat around the globe. Though mechanically similar to the Garand, the AK-47 clearly borrows its cartridge concept, weapon layout, gas system, and construction methods from the StG44. Where the Kalashnikov rifle differs is in its simplification of those contributing designs and adaptation to mass production by relatively unskilled labor. The AK-47 can be seen as a fusion of the best that the M1 Garand offered combined with the best aspects of the StG44 made by the best processes available in the Soviet Union at the time.
75312
75313 There were many difficulties during the initial phase of production. The first production models had stamped sheet metal receivers. Alarmingly, these rifles were wearing out rapidly. Instead of halting production, a heavy machined receiver was substituted for the sheet metal receiver. This was a more costly process, but the use of machined receivers accelerated production as tooling and labor for the earlier [[Mosin-Nagant]] rifle's machined receiver were easily adapted. Partly because of these problems, the Soviets were not able to distribute large numbers of the new rifle to soldiers until 1956.
75314
75315 Once manufacturing difficulties had been overcome, a redesigned version designated the AKM (''M'' for ''modernized'' or ''upgraded'') was introduced in 1959 . This new model used a stamped sheet metal receiver and featured a slanted device on the end of the barrel to compensate for muzzle rise under recoil. The AKM was exported around the world to aid in the spread of Communism. Licensed production of the Kalashnikov weapons abroad as well as unlicensed production was almost exclusively of the AKM. Despite this, rifles of this pattern are almost universally referred to as AK-47's.
75316
75317 In 1978, the Soviet Union began replacing their AK-47 and AKM rifles with a newer design, the [[AK-74]]. This new rifle and cartridge had only started being exported to eastern European nations when the Soviet Union collapsed.
75318
75319 [[Image:LCpl Cheema on the AK-47.JPG|right|thumb|280px|East Germany-made MPiKS 72, folding stock variant of AKM in the hands of a U.S. Marine]]
75320
75321 ==Notable features==
75322 The AK-47 is simple and inexpensive to manufacture and easy to clean and maintain. Its ruggedness and reliability is legendary. The large gas piston, generous clearances between moving parts, and tapered cartridge case design allow the gun to endure large amounts of foreign matter and fouling without failing to cycle. This reliability comes at the cost of accuracy.
75323
75324 The notched rear tangent iron sight is calibrated with each numeral denoting hundreds of meters. The front sight is a post adjustable for elevation in the field. Windage adjustment is done by the armory prior to issue. The battle setting places the round within a few centimeters above or below the point of aim out to approximately 250 meters. This &quot;[[point-blank range]]&quot; setting allows the shooter to fire the gun at any close target without adjusting the sights. Longer settings are intended for area suppression. These settings mirror the [[Mosin-Nagant]] and [[SKS]] rifles which the AK-47 replaced. This eased transition and simplified training.
75325
75326 The [[bore]] and [[chamber]], as well as the gas piston and the interior of the [[gas cylinder]], are generally [[chromium]] plated. This plating dramatically increases the life of these parts by resisting corrosion and wear. Chrome plating of critical parts is now common on most modern military weapons.
75327
75328 ==Ballistics==
75329 The standard AK-47 or AKM fires a [[7.62 x 39 mm|7.62 × 39 mm]] [[cartridge (weaponry)|round]] with a muzzle velocity of 710 m/s (2,329 ft/s). Muzzle energy is 1,990 [[joule]]s (1,467 ftâ€ĸlbf). Cartridge case length is 38.6 mm, weight is 18.21 g. Projectile weight is normally 8 g (123 gr). The AK-47 and AKM, with the 7.62 × 39 mm cartridge, have an effective range of around 300 meters. For comparison, the [[7.62 x 54 mm R]] cartridge has a projectile of 12 g (185 gr) at a velocity of 818 m/s (2,683 ft/s) for approximately 4,000 joules (2,950 ftâ€ĸlbf) of energy.
75330
75331 ==Operating cycle==
75332 [[Image:AK-components.jpg|thumb|right|280px|A diagram showing the design of AKM.]]
75333
75334 To fire, the operator inserts a loaded [[Magazine (firearm)|magazine]], moves the selector lever to the lowest position, pulls back and releases the charging handle, and then pulls the [[trigger]]. In this setting, the gun fires once requiring the trigger be released and depressed again for the next shot until the magazine is exhausted. With the selector in the middle position, the rifle continues to fire, automatically cycling fresh rounds into the chamber, until the magazine is exhausted or pressure is released from the trigger.
75335
75336 Dismantling the gun involves the operator depressing the magazine catch and removing the magazine. The charging handle is pulled to the rear and the operator inspects the chamber to verify the gun is unloaded. The operator presses forward on the retainer button at the rear of the receiver cover while simultaneously lifting up on the rear of the cover to remove it. He then pushes spring assembly forward and lifts it from its raceway, withdrawing it out of the bolt carrier and to the rear. The operator must then pull the carrier assembly all the way to the rear, lift it and then pull it away. He removes the bolt by pushing it to the rear of the bolt carrier; rotating the bolt so the camming lug clears the raceway on the underside of the bolt carrier and then pulls it forward and free. When cleaning, the operator will pay special attention to the barrel, bolt face, and gas piston, then oil lightly and reassemble.
75337
75338 [[Image:Misccaparms.jpg|thumb|right|280px|Small arms captured in [[Fallujah]], [[Iraq]] by the [[United States Marine Corps|U.S. Marine Corps]] in 2004 include two AK-47s (first and third from the left)]]
75339
75340 ==Legal status in the USA==
75341 Private ownership of fully-automatic AK-47 rifles is tightly regulated by the [[National Firearms Act]] of 1934. The [[Gun Control Act of 1968]] ceased import of foreign manufactured fully-automatic firearms for civilian sales and possession effectively halting further importation of civilian accessible AK-47 rifles. In [[1986]], an amendment to the [[Firearm Owners Protection Act]] stopped all future domestic manufacture of fully-automatic weapons for civilian use. However, machine guns manufactured domestically prior to 1986 and imported prior to 1968 may be transferred between civilians in accordance with federal and state law. Several Soviet and Chinese rifles made it into the U.S. during the mid-1960s when returning Vietnam Veterans brought them home after capture from enemy troops. Many of these were properly registered during the 1968 NFA amnesty. In addition, several states have laws on their books outlawing private possession of full-automatic firearms even with NFA approval.
75342
75343 Certain [[semi-automatic]] AK-47 models were banned by the now-expired [[Federal assault weapons ban]] of 1994&amp;ndash;2004. A semi-automatic rifle, similar externally to the AK-47 but operably identical to many hunting rifles, was used in a much publicized 1989 shooting in a [[Stockton, California]], schoolyard, and in the 1993 murders outside of the [[Langley, Virginia]], headquarters of the [[Central Intelligence Agency]] (see [[Mir Amir Kansi]]). Another much-publicized use of the AK-47 in the United States happened when bank robbers exchanged fire with police after a botched robbery. The [[North Hollywood shootout]] involved AK-47's that were illegal to possess. Ignoring the law while committing numerous other felonies, both assailants were shot and died at the scene. Citing these tragedies, gun control advocates lobbied for strict controls on military-style semi-automatic firearms even though most criminals do not buy their weapons legally.
75344
75345 ==Cultural influence==
75346 [[Image:Coat_of_arms_of_Mozambique.png|thumb|right|200px|Coat of arms of [[Mozambique]]]]
75347
75348 The AK-47 and its derivatives are favored by many non-[[Western world|West]]ern powers because of their ease of use, robustness, simplicity, and manufacturing cost effectiveness. Estimates for production range over 100 million units. During most of the [[Cold War]], the Soviet Union and China followed a military assistance program, supplying their arms and technical knowledge to numerous countries. In addition, another policy saw the supply of weapons, free of charge, to pro-communist fighters such as the [[Sandinistas]] and [[Viet-Cong]]. This policy was mirrored in the West, with the United States providing arms to such groups as the Afghan [[Mujahideen]].
75349
75350 The broad proliferation of this weapon is reflected by more than just its numbers. The AK-47 is included in the [[Mozambique]] flag and [[coat of arms]] (formerly also in [[Burkina Faso]] coat of arms) and the [[Hizballah]] flag. &quot;[[Kalash]]&quot;, a shortened form of &quot;[[Kalashnikov]]&quot;, is used as a name for boys in some African countries. Moreover, moviemakers who arm cinema terrorists, gang members (e.g. films like ''[[Boyz N The Hood]]''), and &quot;bad guys&quot; in general with AK-47s add much to the weapon's cultural mystique. Numerous computer and video games feature AK-47s. The weapon is used as a backdrop for reporters during Terrorism news stories. Fiction writers are also quick to arm their characters with the weapon.
75351
75352 The sheer ubiquity of the AK-47, its iconography, the fact that it possesses easily the most distinguishable weapon outline, and its nefarious association with violent conflict will ensure a significant and conspicuous impact on society.
75353
75354 [[Image:Far-sol-gas.jpg|thumb|right|280px|[[Cuban Revolutionary Armed Forces]] armed with AK-47's, engaging in a training exercise]]
75355
75356 ==Versions==
75357 Kalashnikov variants include:
75358 *'''AK-47 1948–51, 7.62 × 39 mm'''— the very earliest models had a stamped sheet metal receiver; now rare.
75359 *'''AK-47 1952, 7.62 × 39 mm'''— has a milled receiver and wooden buttstock and handguard. Barrel and chamber are chrome plated to resist corrosion. Rifle weight 4.2 kg.
75360 *'''AKS-47'''— featured a downward-folding metal stock similar to that of the German [[MP40]], for use in the restricted space in the [[BMP]] infantry combat vehicle.
75361 *'''[[RPK]] 7.62 × 39 mm'''— squad automatic rifle version with longer barrel and bipod.
75362 *'''AKM 7.62 × 39 mm'''— a simplified, lighter version of the AK-47; receiver is made from stamped and riveted sheet metal. A slanted muzzle device was added to counter climb in automatic fire. Rifle weight 3.61 kg.
75363 *'''AKMS 7.62 × 39 mm'''— folding-stock version of the AKM intended for [[airborne]] troops.
75364 *'''[[AK-74]] series 5.45 x 39 mm'''— see [[AK-74|main article]] for details.
75365
75366 [[Image:000715-F-2829R-001.jpg|thumb|right|280px| A Romanian soldier aids a U.S. Marine in clearing an RPK during the weapons familiarization phase of [[Exercise Rescue Eagle 2000]] at Babadag Range, Romania, on July 15, 2000]]
75367
75368 ==Other versions==
75369 The AK-47 and its descendants are or have been manufactured in the following countries: [[Egypt]], [[China]], [[North Korea]], [[East Germany]], [[Poland]], [[Yugoslavia]] (as the M70 and M80 series), [[Romania]], [[Hungary]] (as AMD-63 and AMD-65), [[Iraq]], and [[Bulgaria]]. Certainly more have been produced elsewhere, but the above list represents major producers. An updated AKM design is still produced in Russia.
75370
75371 The basic design of the AK-47 has been used as the basis for other successful rifle designs such as the [[Finland|Finnish]] [[Rk 62|Valmet 62/76]], the [[Israel]]i [[Galil]], the [[India]]n [[INSAS]] and the Yugoslav [[Zastava (weapon)]] M76 and M77 and M77/82 (not to be confused with the [[Barrett]] [[M82 (rifle)|M82]]) rifles. Several [[bullpup]] designs have surfaced, although none have been produced in quantity.
75372
75373 ==Quotes==
75374 Yuri Orlov, the protagonist from the ''[[Lord of War]]'' film:
75375 &lt;blockquote&gt;''Of all the weapons in the vast Soviet arsenal, nothing was more profitable than Avtomat Kalashnikova model of 1947. More commonly known as the AK-47, or Kalashnikov. It's the world's most popular assault rifle. A weapon all fighters love. An elegantly simple 9-pound amalgamation of forged steel and plywood. It doesn't break, jam, or overheat. It'll shoot whether it's covered in mud or filled with sand. It's so easy, even a child can use it; and they do. The Soviets put the gun on a coin. Mozambique put it on their flag. Since the end of the Cold War, the Kalashnikov has become the Russian people's greatest export. After that comes vodka, caviar, suicidal novelists. One thing is for sure, no one was lining up to buy their cars. [http://www.imdb.com/title/tt0399295/quotes]
75376 &lt;/blockquote&gt;
75377
75378 Ordell Robbie, the protagonist from the film ''[[Jackie Brown]]'':
75379
75380 &lt;blockquote&gt;''There it is, the AK-47. When you absolutely, positively, have to kill every single motherfucker in the room; accept no substitute.'' [http://www.imdb.com/title/tt0119396/quotes]
75381 &lt;/blockquote&gt;
75382
75383 ==See also==
75384 * [[List of modern armament manufacturers]]
75385 * [[Civilian &quot;Cousins&quot; of the AK-47]]
75386 * [[Comparison of the AK-47 and M16]]
75387 * [[AK-74]]
75388 * [[AK-101]]
75389 * [[AK-103]]
75390 * [[AK-107]] includes AK-108
75391 * [[Chinese Type 56 Assault Rifle]]
75392 * [[Karabinek-granatnik wz.1960]]
75393
75394 ==References==
75395 * Fackler et al. (1984). &quot;Wounding potential of the Russian AK-74 assault rifle&quot;, ''Journal of Trauma-Injury Infection &amp; Critical Care.'' '''24''', 263-6.
75396 * Ezell, Edward Clinton (1986). ''The AK-47 Story: Evolution of the Kalashnikov Weapons.'' Mechanicsburg, PA: Stackpole Books. ISBN 0811709167. (Prior to his death, Ezell was the curator of military history at the [[Smithsonian Museum]].)
75397 * ''[[Guinness Book of Records|Guinness World Records 2005]].'' ISBN 1892051222.
75398
75399 ==External links==
75400 * [http://www.izhmash.ru/eng manufacturer site]
75401 * [http://www.sturmgewehr.com/bhinton/AK/ Buddy Hinton Collection / AK]
75402 * [http://kalashnikov.guns.ru/ AK Site &amp;mdash; Kalashnikov Home Page]
75403 * [http://www.enemyforces.com/firearms/ak47.htm AK-47 Assault Rifle]
75404 * [http://www.everything2.com/index.pl?node_id=85766 AK-47@Everything2.com]
75405 * [http://www.us.imdb.com/title/tt0254151/ Automat Kalaschnikow] film documented the man and his machine
75406 * [http://www.milparade.com/kalashnikov/chapter9/09_15.shtml AK47S self-loading carbine (USA)]
75407 * Home of the [http://www.ak-47.net/ AK-47] on the Internet.
75408 * [http://www.sovietarmy.com/small_arms/ak-47.html AK-47 Assault rifle] [http://www.sovietarmy.com/ (SovietArmy.com)]
75409 * [http://www.nazarian.no/wep.asp?id=284&amp;group_id=5&amp;country_id=162&amp;lang=0 Nazarian`s Gun`s Recognition Guide]
75410 *[http://world.guns.ru/ Modern Firearms]
75411 * [http://www.sovietarmy.com/small_arms/akm.html AKM Assault Rifle] [http://www.sovietarmy.com/ (SovietArmy.com)]
75412 * [http://www.pbase.com/the_kampfer/image/47449546 animation of an AK-47 action in operation]
75413
75414 ==Video links==
75415 *[http://www.nazarian.no/wep.asp?id=284&amp;group_id=5&amp;country_id=162&amp;lang=0&amp;p=8 Nazarian's Gun's Recognition Guide (FILM) How AK47 Work Presentation (.Video clip)]
75416 *[http://www.nazarian.no/wep.asp?id=284&amp;group_id=5&amp;country_id=162&amp;lang=0&amp;p=7 Nazarian's Gun's Recognition Guide (FILM) AK-47 Presentation (.swf)]
75417 *[http://jardax.ethernet.cz/Gun/Video/ak47_slow.avi Kurzzeitmesstechnik Mehl Slow-Motion video of AK-47 action in operation (DivX Movie)]
75418 *[http://www.carfield.com.hk/fun/classic/machine/How_AK47_Work.avi Bruce Canfield animation of AK-47 action in operation.]
75419
75420 ==Manual==
75421 *[http://www.nazarian.no/images/wep/284_US_Army_AK47.pdf Nazarian's Gun's Recognition Guide (MANUAL) AK 47 Manual (.pdf)]
75422
75423 [[Category:7.62 mm firearms]]
75424 [[Category:Assault rifles]]
75425 [[Category:Cold War weapons of the Soviet Union]]
75426
75427 [[bg:АК-47]]
75428 [[de:AK-47]]
75429 [[et:AK-47]]
75430 [[es:AK-47]]
75431 [[fa:ÚŠŲ„اشŲ†ÛŒÚŠŲˆŲ]]
75432 [[fr:AK-47]]
75433 [[gl:AK-47]]
75434 [[ko:AK-47]]
75435 [[id:AK-47]]
75436 [[it:AK-47]]
75437 [[he:AK-47]]
75438 [[ku:AK-47]]
75439 [[hu:AK-47]]
75440 [[ms:AK-47]]
75441 [[nl:AK-47]]
75442 [[ja:AK-47]]
75443 [[no:AK-47]]
75444 [[pl:Karabinek AK]]
75445 [[pt:AK-47]]
75446 [[sl:AK-47]]
75447 [[sr:АК-47]]
75448 [[fi:AK-47]]
75449 [[sv:AK-47]]
75450 [[vi:AK-47]]
75451 [[tr:Ak-47]]
75452 [[zh:АК-47]]</text>
75453 </revision>
75454 </page>
75455 <page>
75456 <title>Atanasoff Berry Computer</title>
75457 <id>1349</id>
75458 <revision>
75459 <id>40590582</id>
75460 <timestamp>2006-02-21T17:54:41Z</timestamp>
75461 <contributor>
75462 <ip>12.108.99.34</ip>
75463 </contributor>
75464 <text xml:space="preserve">The '''Atanasoff-Berry Computer''' was the first electronic digital computer [http://www.cs.iastate.edu/jva/books/burks/overview.shtml] [http://en.wikipedia.org/wiki/ENIAC] and was a major step in the history of computing . It was built by [[John Vincent Atanasoff|Dr. John Vincent Atanasoff]] and [[Clifford E. Berry]] at [[Iowa State University]] during 1937-42. The Atanasoff-Berry Computer represented several innovations in computing, including a binary system of arithmetic, [[parallel processing]], [[DRAM|regenerative memory]], and a separation of memory and computing functions. It is sometimes referred to by its initials, ABC. John Vincent Atanasoff was awarded the [[National Medal of Technology]] by President [[George H. W. Bush]] in a Ceremony at the White House on November 13, 1990.
75465
75466 [[Image:ABC.GIF|thumb|300px|]] The Atanasoff-Berry Computer, constructed in the basement of the Physics building at Iowa State University, took over two years to complete due to lack of funds. The prototype was first demonstrated in November of 1939. The computer weighed more than seven hundred pounds (320 kg). It contained approximately 1 mile (1.6 km) of wire, 280 dual-triode [[vacuum tube]]s, 31 [[thyratron]]s, and was about the size of a desk.
75467
75468 It was not a [[Turing complete]] computer, which distinguishes it from later, more general machines, such as the 1946 [[ENIAC]], 1949 [[EDVAC]], the [[Victoria University of Manchester|University of Manchester]] designs, or [[Alan Turing]]'s post-War designs at [[National Physical Laboratory|NPL]] and elsewhere. Nor did it implement the [[stored program architecture]] that made practical fully general-purpose, reprogrammable computers.
75469
75470 The machine was, however, the first to implement three critical ideas that are still part of every modern computer:
75471 #Using [[binary_numeral_system|binary]] digits to represent all numbers and data
75472 #Performing all calculations using [[electronics]] rather than wheels, ratchets, or mechanical switches
75473 #Organizing a system in which [[computation]] and [[computer storage|memory]] are separated.
75474
75475 In addition, the computer pioneered the use of regenerative capacitor memory, as in the [[DRAM]] still widely used today.
75476
75477 The memory of the Atanasoff-Berry Computer was a pair of drums, each containing 1600 [[capacitor]]s that rotated on a common shaft once per second. The capacitors on each drum were organized into 32 &quot;bands&quot; of 50 (30 active bands and 2 spares in case a capacitor failed), giving the machine a speed of 30 additions/subtractions per second. Data was represented as 50-bit binary fixed point numbers. The electronics of the memory and arithmetic units could store and operate on 60 such numbers at a time (3000 bits).
75478
75479 The [[alternating current|AC]] power line frequency of 60 [[Hertz|Hz]] was the primary clock rate for the lowest level operations.
75480
75481 The logic functions were fully electronic, implemented with vacuum tubes. The family of [[logic gates]] ranged from inverters to two and three input gates. The input and output levels and operating voltages were compatible between the different gates. Each gate consisted of one inverting vacuum tube amplifier, preceded by a resistor divider input network that defined the logical function.
75482
75483 Although the Atanasoff-Berry Computer was an important step up from earlier computing machines, it was not a ''[[stored program]] computer''. An operator was needed to operate the control switches to set up its functions, much the way [[Booting|boot]] programs would be entered in later computers. Selection of the operation to be performed, reading, writing, converting to or from binary to decimal, or reducing a set of equations was made by front panel switches and in some cases jumpers.
75484
75485 There were two forms of input and output. Primary user input and output and an intermediate results output and input. The intermediate results storage allowed operation on problems too large to be handled entirely within the electronic memory.
75486
75487 Intermediate results were written onto paper sheets by electrostatically modifying the resistance at 1500 locations to represent 30 of the 50 bit numbers. Each sheet could be written or read in one second. The reliability of the system was limited to about 1 error in 100,000 calculations by these units, primarily attributed to lack of control of the sheets' material characteristics. In retrospect a solution could have been to add a parity bit to each number as written. This problem was not solved by the time Atanasoff left the university for war-related work.
75488
75489 Primary user input was via standard [[punched card]]s and output via a front panel display.
75490
75491 The ABC was designed for a fairly specific purpose, the solution of systems of simultaneous linear equations. It could handle systems with up to twenty-nine equations, which was large for the time. Problems of this scale were becoming common in physics, the department in which John Atanasoff worked. Basically, it could be fed two linear equations with up to twenty-nine variables and a constant term and eliminate one of the variables. This process would have to be repeated manually for each of the equations, which would result in a system of equations with one fewer variables. Then the whole process would have to be repeated to eliminate another variable.
75492
75493 The initial funds to start development and demonstrate the circuits involved was from the [[Agronomy]] department which was also interested in such problems for economic and research analysis. Further funding to complete the machine came from [[Research Corporation]] of America, in [[New York]].
75494
75495 Presper Eckert and John Mauchly were the first to patent a digital computing device, their [[ENIAC]] computer. ABC had been examined by [[John Mauchly]] in June [[1941]], and is alleged to have influenced his later work on ENIAC, although Mauchly denied this. In [[1967]] [[Honeywell]] started a court case against Sperry Rand in an attempt to break their patent, based on the ABC being [[prior art]]. The court released its final judgement on October 19, 1973. In [http://www.cs.iastate.edu/jva/court-papers/ Sperry Rand Vs. Honeywell] the court voided the ENIAC patent as a derivative of John Atanasoff's invention. The decision was not appealed.
75496
75497 Atanasoff was quite generous in stating, &quot;there is enough credit for everyone in the invention and development of the electronic computer.&quot; Eckert and Mauchly received most of the credit for inventing the first electronic-digital computer. Historians now say that the Atanasoff-Berry computer was the first.
75498
75499 The original ABC was eventually dismantled, when the University converted the basement to classrooms, and all of its pieces except for one memory drum were discarded. In [[1997]], a team of researchers from [[Ames Laboratory]] (located on the Iowa State campus) finished building a working replica of the Atanasoff-Berry Computer for a cost of $350,000. This replica dispelled any doubt over whether or not the ABC actually could perform the tasks it was designed to do. The new ABC is now on permanent display in the first floor lobby of the Durham Center for Computation and Communication at Iowa State University.
75500
75501 ==See also==
75502 * [[History of computing hardware]]
75503
75504 ==References==
75505 * Anthony Ralston and Edwin D. Reilly (ed), '' Encyclopedia of Computer Science, 3rd Ed. '', 1993, Van Nostrand Reinhold, New York ISBN 0442276796
75506 * [[Clark R. Mollenhoff]], ''Atanasoff: Forgotten Father of the Computer'', [[1988]], ISBN 0-8138-0032-3
75507
75508 ==External links==
75509 *[http://www.cs.iastate.edu/jva/jva-archive.shtml The Birth of the ABC]
75510 *[http://www.scl.ameslab.gov/ABC/ Rebuilding the ABC]
75511 *[http://www.scl.ameslab.gov/Projects/ABC/Trial.html The ENIAC patent trial]
75512 *[http://www.cbi.umn.edu/collections/inv/cbi00001.html Honeywell, Inc., Honeywell vs. Sperry Rand Records, 1846-1973]
75513
75514 [[Category:Early computers]]
75515 [[Category:History of computing]]
75516 [[Category:One-of-a-kind computers]]
75517 [[Category:Iowa State University]]
75518
75519 [[bg:КоĐŧĐŋŅŽŅ‚ŅŠŅ€ ĐŊĐ° АŅ‚Đ°ĐŊĐ°ŅĐžĐ˛-БĐĩŅ€Đ¸]]
75520 [[de:Atanasoff-Berry-Computer]]
75521 [[es:Atanasoff Berry Computer]]
75522 [[it:Atanasoff Berry Computer]]
75523 [[ja:ã‚ĸã‚ŋナã‚Ŋフ&amp;ベãƒĒãƒŧãƒģã‚ŗãƒŗピãƒĨãƒŧã‚ŋ]]
75524 [[zh:é˜ŋåĄ”įēŗį´ĸå¤Ģ-贝į‘žčŽĄįŽ—æœē]]</text>
75525 </revision>
75526 </page>
75527 <page>
75528 <title>A Midsummer Nights Dream</title>
75529 <id>1350</id>
75530 <revision>
75531 <id>15899839</id>
75532 <timestamp>2002-03-07T01:05:10Z</timestamp>
75533 <contributor>
75534 <username>Eclecticology</username>
75535 <id>372</id>
75536 </contributor>
75537 <comment>*</comment>
75538 <text xml:space="preserve">#REDIRECT [[A Midsummer Night's Dream]]</text>
75539 </revision>
75540 </page>
75541 <page>
75542 <title>Association of C and C++ Users</title>
75543 <id>1352</id>
75544 <revision>
75545 <id>33944428</id>
75546 <timestamp>2006-01-05T06:45:32Z</timestamp>
75547 <contributor>
75548 <username>Netoholic</username>
75549 <id>41995</id>
75550 </contributor>
75551 <minor />
75552 <comment>plus now allowed</comment>
75553 <text xml:space="preserve">The '''Association of C and C++ Users''' ('''ACCU''') is a worldwide organisation of people interested in programming languages. Originally, the association was primarily for [[C programming language|C]] programmers (it was then called the CUG), but it has since added [[C++]], [[C Sharp programming language|C#]], [[Java programming language|Java]], [[Perl]], and [[Python programming language|Python]] programmers to its membership. The long form of the organisation's name is thus historical and seldom used, the name '''ACCU''' is preferred.
75554
75555 Members of ACCU include professional programmers and companies as well as amateur programmers. The association is operated by a volunteer [[committee]], which is responsible for the organisation of an ACCU [[conference]] each spring in or near Oxford, as well as the publication of a number of journals.
75556
75557 The association has two types of membership: Regular membership provides access to the conferences and the association's principal journal, ''C Vu'', which contains articles, letters, and book reviews by members; Advanced membership additionally provides a subscription to ''Overload'', which is designed for more advanced programmers. Full-time students qualify for membership [[discount]]s.
75558
75559 ==External links==
75560 * [http://www.accu.org/ ACCU Official Site]
75561 * [http://www.accu-usa.org/ ACCU Silicon Valley Chapter]
75562
75563 [[Category:C programming language family]]</text>
75564 </revision>
75565 </page>
75566 <page>
75567 <title>Andrew</title>
75568 <id>1353</id>
75569 <revision>
75570 <id>42116594</id>
75571 <timestamp>2006-03-03T22:55:13Z</timestamp>
75572 <contributor>
75573 <username>Sesel</username>
75574 <id>51623</id>
75575 </contributor>
75576 <minor />
75577 <comment>Reverted edits by [[Special:Contributions/86.134.6.147|86.134.6.147]] ([[User talk:86.134.6.147|talk]]) to last version by Tailpig</comment>
75578 <text xml:space="preserve">{{Wiktionarypar|Andrew}}
75579 '''Andrew''' is an [[English language|English]] [[male]]'s [[personal name]]. For its meanings, etymology, pronunciation, and translations, see Wiktionary.
75580 People commonly known solely by the given name '''Andrew''' include:
75581 *[[Saint Andrew]]
75582 *[[Andrew I of Hungary]]
75583 *[[Andrew II of Hungary]]
75584 *[[Prince Andrew, Duke of York]]
75585 Things commonly known as '''Andrew''' include:
75586 *[[Andrew Project]] - [[Carnegie Mellon University]] computer project called &quot;Andrew&quot;
75587 *[[Hurricane Andrew]] - A strong [[Tropical cyclone|hurricane]] in [[1992]].
75588
75589 == See also ==
75590 * [[Andrea]]
75591 *[[Saint Andrew's Cross]]
75592 *[[St Andrew's Cross spider]]
75593 *[[Androgen]]
75594 * [[Drew]]
75595
75596
75597 {{disambig}}
75598
75599 [[da:Andreas]]
75600 [[de:Andreas]]
75601 [[el:ΑÎŊδĪÎ­ÎąĪ‚ (ΌÎŊÎŋÎŧÎą)]]
75602 [[eo:Andreo]]
75603 [[fr:AndrÊ]]
75604 [[hu:AndrÃĄs]]
75605 [[nl:Andreas]]
75606 [[pl:Andrzej]]
75607 [[ru:АĐŊĐ´Ņ€ĐĩĐš]]
75608 [[sk:Andrej]]
75609 [[sl:Andrej]]
75610 [[sv:Andreas]]</text>
75611 </revision>
75612 </page>
75613 <page>
75614 <title>Andes</title>
75615 <id>1354</id>
75616 <revision>
75617 <id>42078925</id>
75618 <timestamp>2006-03-03T18:00:33Z</timestamp>
75619 <contributor>
75620 <username>RexNL</username>
75621 <id>241337</id>
75622 </contributor>
75623 <minor />
75624 <comment>Reverted edits by [[Special:Contributions/24.39.1.140|24.39.1.140]] ([[User talk:24.39.1.140|talk]]) to last version by RexNL</comment>
75625 <text xml:space="preserve">{{Otherusesabout|the mountain system in South America}}
75626 [[Image:Andes Chile Argentina.jpg|thumb|300px|The Andes between [[Chile]] and [[Argentina]]]]
75627 [[Image:Nasa_anden.jpg|thumb|200px|right|Computer generated image of the Andes, made from a [[digital elevation model]] with a resolution of 30 [[arcsecond]]s]]
75628 The '''Andes''' is a vast [[mountain range]] forming a continuous chain of highland along the western coast of [[South America]]. It is roughly [[1_E6_m|7,000 km]] (4,400&amp;nbsp;miles) long, [[1_E5_m|500 km]] (300&amp;nbsp;miles) wide in some parts (widest between 18° to 20°S latitude), and of an average height of about [[1_E3_m|4,000 m]] (13,000 feet).
75629
75630 The Andean range is composed principally of two great chains separated by a deep intermediate [[depression (geology)|depression]], in which arise other chains of minor importance, the chief of which is [[Chile]]'s [[Cordillera de la Costa]]. Other small chains arise on the sides of the great chains. The ''Cordillera de la Costa'' starts from the southern extremity of the continent and runs in a northerly direction, parallel with the coast, being broken up at its beginning into a number of islands and afterwards forming the western boundary of the great central valley of Chile. To the north this coastal chain continues in small ridges or isolated hills along the [[Pacific Ocean]] as far as [[Venezuela]], always leaving the same valley more or less visible to the west of the western great chain. The mountains extend over seven countries: [[Argentina]], [[Bolivia]], [[Chile]], [[Colombia]], [[Ecuador]], [[Peru]] and [[Venezuela]].
75631
75632 The Andes range is the highest mountain range outside Asia, with the highest peak, [[Aconcagua]], rising to 6,959 m (23,000 feet) [[above sea level]]. The summit of [[Mount Chimborazo]] in the Ecuadorean Andes is the point on the Earth's surface most distant from its center, because of the [[equatorial bulge]]. The Andes cannot match the [[Himalaya]] in height but do so in width and are more than twice as long.
75633
75634 ==Physical features==
75635 ===Geology===
75636 The formation of the Andes extends into the [[Paleozoic]] Era, when [[terrane]] accretion was the dominant process. It was during the [[Cretaceous]] Period that the Andes began to take their present form, by the uplifting, [[Fault (geology)|faulting]] and [[Fold (geology)|folding]] of [[sedimentary rocks|sedimentary]] and [[metamorphic rocks]] of the ancient [[craton]]s to the east. Tectonic forces along the [[subduction zone]] along the entire west coast of South America where the [[Nazca Plate]] and a part of the [[Antarctic Plate]] are sliding beneath the [[South American Plate]] continue to produce an ongoing [[Orogeny|orogenic event]] resulting in minor to major earthquakes and volcanic eruptions to this day. In the extreme south a major [[transform fault]] separates [[Tierra del Fuego]] from the small [[Scotia Plate]]. Across the 1,000&amp;nbsp;km wide [[Drake Passage]] lie the mountains of the [[Antarctic Peninsula]] south of the Scotia Plate which appear to be a continuation of the Andes chain.
75637
75638 The Andes range has many active volcanoes, the most famous being [[Cotopaxi]], one of the highest active volcanos in the world.
75639
75640 The Andes can be divided into three sections: the Southern Andes in Argentina and Chile; the Central Andes, including the Chilean and Peruvian cordilleras; and the northern section in Venezuela, Colombia, and northern Ecuador consisting of two parallel ranges, the Cordillera Occidental and the Cordillera Oriental. The term ''cordillera'' comes from the Spanish word meaning 'rope'. The Andes range is approximately 200&amp;ndash;300&amp;nbsp;km wide throughout its length, except in the Bolivian flexure where it is 640&amp;nbsp;km wide [http://www.andes.org.uk/andes-information-files/famous-andes-peaks.htm] [http://www.bartleby.com/65/co/Cotopaxi.html].
75641
75642 ===Climate===
75643 The climate in the Andes varies greatly depending on location, altitude, proximity to the sea. The southern section is rainy and cool, the central Andes are dry. The northern Andes are typically rainy and warm, with an average temperature of 18&amp;nbsp;°C in Colombia. The climate is known to change drastically. [[Tropical rainforest]]s exist just miles away from the snow covered peak, Cotopaxi. The mountains have a large effect on the temperatures of nearby areas. The [[snow line]] depends on the location. It is at between 4,500&amp;ndash;4,800&amp;nbsp;m in the tropical Ecuadorian, Colombian, Venezuelan, and northern Peruvian Andes, rising to 4,800&amp;ndash;5,200&amp;nbsp;m in the drier mountains of southern Peru south to northern Chile south to about 30°S, then descending to 4,500&amp;nbsp;m on Aconcagua at 32°S, 2,000&amp;nbsp;m at 40°S, 500&amp;nbsp;m at 50°S, and only 300&amp;nbsp;m in [[Tierra del Fuego]] at 55°S; from 50°S, several of the larger glaciers descend to sea level ([[Google Earth]] images).
75644 [[Image:andes - punta arenas.jpg|thumb|left|View of the mountains in the countryside just outside of [[Punta Arenas, Chile]].]]
75645
75646 ===Plant and animal life===
75647 [[Tropical rainforests]] encircle the northern Andes. The [[cinchona]], a source of [[quinine]] which is used to treat malaria, is found in the Bolivian Andes. The high-altitude ''[[Polylepis]]'' forests are present in the Andean areas of Ecuador, Peru and Bolivia. The trees, QueÃąua, Yagual, Quinua and other names that local people use to call them, can be found at altitudes of 4,500&amp;nbsp;m above sea level. Once abundant, the forests began disappearing during the Incan period when much of it was used for building material and cooking fuel. The trees are now considered to be highly endangered with only 10 percent of the original forests remaining [http://www.blueplanetbiomes.org/andes_climate_page.htm].
75648
75649 The [[llama]] can be found living at high altitudes, predominantly in the Peru and Bolivia. The alpaca, a type of llama, is raised for its wool. The nocturnal [[chinchilla]], an endangered member of the [[rodent]] order, inhabits the Andes' alpine regions. The South American [[condor]] is the largest bird of its kind in the Western hemisphere. Other animals include the [[guemul]], [[puma]], [[camelids]] and, for birds, the [[partridge]], [[parina]], [[huallata]], and [[coot]]. Llamas and pumas play important roles in many Andean cultures.
75650
75651 ==The people==
75652 {{sect-stub}}
75653
75654 ===Transportation===
75655 The people of the Andes are not well connected with the city. Due to the arduous terrain, vehicles are discouraged. People generally walk to their destinations, using the llama as their primary pack animal.
75656
75657 ===Agriculture===
75658 The ancient peoples of the Andes such as the Incas have practiced irrigation techniques for over 6,000 years. Because of the mountain slopes, terracing has been a common practice. Maize and barley were important crops for these people. Currently, tobacco, cotton and coffee are the main export crops. The potato holds a very important role as an internally consumed crop.
75659
75660 By far the most important plant in terms of history and culture is coca, the leaves of which have been central to the Andean people for centuries. Coca has been a staple dietary supplement and cornerstone to Andean culture throughout much of its history.
75661
75662 ===Mining===
75663 Mining is quite prosperous in the Andes, with iron, gold, silver and copper being the main production minerals. The Andes are reputed to be one of the most important sources of these minerals in the world.
75664
75665 ==Peaks==
75666 This is a partial listing of the major peaks in the Andes mountain range&amp;mdash;typically 5 km or more in height.
75667 {{wrapper}}
75668 |[[Image:Licancabur.jpg|thumb|right|200px|[[Licancabur]], Bolivia/Chile]]
75669 |-
75670 |[[Image:Llullaillaco.jpg|thumb|right|200px|[[Llullaillaco]], Chile/Argentina]]
75671 |-
75672 |[[Image:Aconcagua - Argentina - January 2005 - by Sergio Schmiegelow.jpg|thumb|right|200px|[[Aconcagua]], Argentina]]
75673 |-
75674 |[[Image:Chimborazo from southwest.jpg|thumb|right|200px|[[Chimborazo]], Ecuador]]
75675 |-
75676 |[[Image:Alpamayo.jpg|thumb|right|200px|[[Alpamayo]], Peru]]
75677 |-
75678 |[[Image:El misti.jpg|thumb|right|200px|[[El Misti]], Peru]]
75679 |-
75680 |[[Image:Huascaran.jpg|thumb|right|200px|[[HuascarÃĄn]], Peru]]
75681 |}
75682 ===Bolivia===
75683 * [[Ancohuma]], 6,427 m
75684 * [[Cabaray]], 5,860 m
75685 * [[Chacaltaya]], 5,421 m
75686 * [[Huayna Potosí]], 6,088 m
75687 * [[Illampu]], 6,368 m
75688 * [[Illimani]], 6,438 m
75689 * [[Macizo de Larancagua]], 5,520 m
75690 * [[Macizo de Pacuni]], 5,400 m
75691 * [[Nevado Anallajsi]], 5,750 m
75692 * [[Nevado Sajama]], 6,542 m
75693 * [[Patilla Pata]], 5,300 m
75694 * [[Tata Sabaya]], 5,430 m
75695
75696 ===Bolivia/Chile===
75697 * [[Cerro Minchincha]], 5,305 m
75698 * [[Irruputuncu]], 5,163 m
75699 * [[Licancabur]], 5,920 m
75700 * [[Olca]], 5,407 m
75701 * [[Paruma]], 5,420 m
75702 * [[Pomerape]], 6,348 m
75703
75704 ===Chile/Argentina===
75705 * [[Aconcagua]], 6,962 m
75706 * [[Acotango]], 6,052 m
75707 * [[Cerro Bayo]], 5,401 m
75708 * [[Cerro Escorial]], 5,447 m
75709 * [[CordÃŗn del Azufre]], 5,463 m
75710 * [[Falso Azufre]], 5,890 m
75711 * [[Lastarria]], 5,697 m
75712 * [[Llullaillaco]], 6,739 m
75713 * [[Maipo (volcano)|Maipo]], 5,264 m
75714 * [[Marmolejo]], 6110 m
75715 * [[Ojos del Salado]], 6,893 m
75716 * [[Olca]], 5,407 m
75717 * [[Parinacota]], 6,348 m
75718 * [[Monte Pissis | Pissis]], 6,795 m
75719 * [[Sierra Nevada de Lagunas Bravas]], 6,127 m
75720 * [[Socompa]], 6,051 m
75721
75722 ===Colombia===
75723 * [[Galeras]], 4,276 m
75724 * [[Nevado del Ruiz]], 5,389 m
75725
75726 ===Ecuador===
75727 * [[Antisana]], 5,753 m
75728 * [[Cayambe (volcano)|Cayambe]], 5,790 m
75729 * [[Chimborazo (volcano)|Chimborazo]], 6,267 m
75730 * [[CorazÃŗn]], 4,790 m
75731 * [[Cotopaxi]], 5,897 m
75732 * [[El Altar]], 5,320 m
75733 * [[Illiniza]], 5,248 m
75734 * [[Pichincha (volcano)|Pichincha]], 4,784 m
75735 * [[Reventador]], 3,562 m
75736 * [[Sangay]], 5,230 m
75737 * [[Tungurahua]], 5,023 m
75738
75739 ===Peru===
75740 * [[Alpamayo]], 5,947 m
75741 * [[Carnicero]], 5,960 m
75742 * [[El Misti]], 5,822 m
75743 * [[El Toro (Andes)|El Toro]], 5,830 m
75744 * [[HuascarÃĄn]], 6,768 m
75745 * [[Jirishanca]], 6,094 m
75746 * [[Rasac]], 6,040 m
75747 * [[Rondoy]], 5,870 m
75748 * [[Sarapo]], 6,127 m
75749 * [[Seria Norte]], 5,860 m
75750 * [[Siula Grande]], 6,344 m
75751 * [[Yerupaja]], 6,635 m
75752 * [[Yerupaja Chico]], 6,089 m
75753
75754 ==Suggested reading==
75755 {{sect-stub}}
75756
75757 ==External links==
75758 {{commons|Andes}}
75759 *[http://www.photoglobe.info/db_merced/ PhotoGlobe: Andes around Mt. Mercedario]
75760 *[http://www.geo.arizona.edu/geo5xx/geo527/Andes/intro.html Andes geology Arizona Edu.]
75761 *[http://www.blueplanetbiomes.org/andes_climate_page.htm Climate and animal life of the Andes]
75762 *[http://www.ancientperu.com/ Civilizations of Ancient Peru]
75763
75764 [[Category:Mountain ranges]]
75765 [[Category:Mountains of South America]]
75766
75767 [[ar:ØŖŲ†Ø¯ŲŠØ˛]]
75768 [[be:АĐŊĐ´Ņ‹]]
75769 [[bg:АĐŊди]]
75770 [[ca:Andes]]
75771 [[cs:Andy]]
75772 [[da:Andesbjergene]]
75773 [[de:Anden]]
75774 [[es:Andes]]
75775 [[eo:Andoj]]
75776 [[eu:Andeak]]
75777 [[fr:Cordillère des Andes]]
75778 [[gl:Andes]]
75779 [[ko:ė•ˆë°ėŠ¤ ė‚°ë§Ĩ]]
75780 [[ia:Andes]]
75781 [[is:AndesfjÃļll]]
75782 [[it:Ande]]
75783 [[he:הרי האנדים]]
75784 [[la:Andes]]
75785 [[lv:Andi]]
75786 [[lt:Andai]]
75787 [[mk:АĐŊди]]
75788 [[nl:Andes (gebergte)]]
75789 [[ja:ã‚ĸãƒŗãƒ‡ã‚šåąąč„ˆ]]
75790 [[no:Andes]]
75791 [[nn:Andes]]
75792 [[pl:Andy]]
75793 [[pt:Cordilheira dos Andes]]
75794 [[ru:АĐŊĐ´Ņ‹]]
75795 [[simple:Andes]]
75796 [[sl:Andi]]
75797 [[sr:АĐŊди]]
75798 [[fi:Andit]]
75799 [[sv:Anderna]]
75800 [[th:āš€ā¸—ā¸ˇā¸­ā¸āš€ā¸‚ā¸˛āšā¸­ā¸™ā¸”ā¸ĩā¸Ē]]
75801 [[uk:АĐŊди]]
75802 [[zh:åŽ‰åœ°æ–¯åąąč„ˆ]]</text>
75803 </revision>
75804 </page>
75805 <page>
75806 <title>Anderida</title>
75807 <id>1355</id>
75808 <revision>
75809 <id>42054031</id>
75810 <timestamp>2006-03-03T14:06:28Z</timestamp>
75811 <contributor>
75812 <username>Neddyseagoon</username>
75813 <id>883252</id>
75814 </contributor>
75815 <comment>Merge</comment>
75816 <text xml:space="preserve">#redirect [[Pevensey Castle]]</text>
75817 </revision>
75818 </page>
75819 <page>
75820 <title>Ancylopoda</title>
75821 <id>1356</id>
75822 <revision>
75823 <id>40207398</id>
75824 <timestamp>2006-02-18T23:34:02Z</timestamp>
75825 <contributor>
75826 <username>Aranae</username>
75827 <id>135342</id>
75828 </contributor>
75829 <comment>rvt</comment>
75830 <text xml:space="preserve">{{Taxobox
75831 | color = pink
75832 | name = Ancylopods
75833 | regnum = [[Animal]]ia
75834 | phylum = [[Chordate|Chordata]]
75835 | classis = [[Mammalia]]
75836 | ordo = [[Perissodactyla]]
75837 | superfamilia = '''Chalicotherioidea'''
75838 }}
75839 '''Ancylopoda''', is a group of [[mammal]]s in the [[Perissodactyla]] that show long, curved and [[cleft]] [[claw]]s. [[Morphology (biology)|Morphological]] evidence indicates the Ancylopoda diverged from the [[tapir]]s, [[rhinoceros]]es and [[horse]]s ([[Euperissodactyla]]) after the [[Brontotheria]], however earlier authoritites such as [[Osborn]] sometimes considered the Ancylopoda to be outside Perissodactyla or, as was popular more recently, to be related to [[Brontotheria]].
75840
75841 {{paleo-stub}}
75842 {{mammal-stub}}
75843 [[Category:Odd-toed ungulates]]</text>
75844 </revision>
75845 </page>
75846 <page>
75847 <title>European anchovy</title>
75848 <id>1357</id>
75849 <revision>
75850 <id>37290056</id>
75851 <timestamp>2006-01-30T01:14:09Z</timestamp>
75852 <contributor>
75853 <username>Gdrbot</username>
75854 <id>263608</id>
75855 </contributor>
75856 <minor />
75857 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
75858 <text xml:space="preserve">{{Taxobox
75859 | color = pink
75860 | name = European anchovy
75861 | image = anchovy-thumbnail.jpg
75862 | image_caption = [[media:anchovy.jpg|''Original image'']]
75863 | regnum = [[Animal]]ia
75864 | phylum = [[Chordate|Chordata]]
75865 | classis = [[Actinopterygii]]
75866 | ordo = [[Clupeiformes]]
75867 | familia = [[Engraulidae]]
75868 | genus = '''''[[Engraulis]]'''''
75869 | species = '''''E. encrasicholus'''''
75870 | binomial = ''Engraulis encrasicholus''
75871 | binomial_authority = [[Carolus Linnaeus|Linnaeus]], 1758
75872 }}
75873 The '''European anchovy''' (''Engraulis encrasicholus'') is a [[fish]] somewhat related to the [[herring]]. Anchovies are placed in the family [[Engraulidae]].
75874
75875 It is easily distinguished by its deeply-cleft mouth, the angle of the gape being behind the eyes. The pointed snout extends beyond the lower jaw. The fish resembles a sprat in having a forked tail and a single dorsal fin, but
75876 the body is round and slender. The maximum length is 8 1/8 in.
75877
75878 Anchovies are abundant in the [[Mediterranean]], and are
75879 regularly caught on the coasts of [[Sicily]], [[Turkey]], [[Italy]], [[France]] and
75880 Spain. The range of the species also extends along the
75881 Atlantic coast of Europe to the south of [[Norway]]. In winter
75882 it is common off Devon and Cornwall ([[Great Britain]]), but has not hitherto been caught in such numbers as to be of commercial importance.
75883
75884 Formerly they were caught in large numbers off the coast of the [[Netherlands]] in summer when they entered the [[Wadden Sea]] and [[Zuider Zee]]. After the closing of the [[Zuider Zee]] they were still found in the Wadden Sea until the [[1960s]]. They were also caught in the estuary of the [[Scheldt]].
75885
75886 There is reason to believe that the anchovies found at the western end of the English Channel in November and December are those which annually migrated from the [[Zuider Zee]] and Scheldt in autumn, returning thither in the following
75887 spring; they were assumed to form an isolated stock, for none come up from the south in summer to occupy the [[English Channel]], though the species is resident on the coast of [[Portugal]].
75888
75889 The explanation appears to be that the shallow and landlocked waters of the Zuider Zee, as well as the sea on the Dutch coast, become raised to a higher temperature in summer than any part of the sea about the British coasts, and that therefore anchovies were able to spawn and maintain their numbers in these waters.
75890
75891 Their reproduction and development were first described by a Dutch naturalist from observations made on the shores of the Zuider Zee. Spawning takes place in June and July, and the eggs, like those of the majority of marine fishes, are buoyant and transparent, but they are peculiar in having an elongated, sausage-like shape, instead of being globular. They resemble those of the sprat and [[pilchard]] in having a segmented yolk and there is no oil globule.
75892
75893 The larva hatch two or three days after the fertilization of the egg, and are minute and transparent. In August young specimens 1&amp;frac12; to 3&amp;frac12; in. in length have been taken in the Zuider Zee, and these must derived from the spawning of the previous summer.
75894
75895 There is no evidence to decide the question whether all the young anchovies as well as the adults leave the Zuider Zee in autumn, but, considering the winter temperature there, it is probable that they do. The eggs have also been obtained from the Bay of Naples, and near Marseilles, also off the coast
75896 of Holland, and once at least off the coast of Lancashire.
75897
75898 The occurrence of anchovies in the English Channel has been carefully studied at the laboratory of the Marine Biological Association at Plymouth. They were most abundant in 1889 and 1890. In the former year considerable numbers were taken off Dover in drift nets of small mesh used for the capture of sprats. In the following December large numbers were taken together with sprats at Torquay. In November 1890 a thousand of the fish were obtained in two days from the pilchard boats fishing near Plymouth; these were caught near the Eddystone.
75899
75900 [[Category:Anchovies]]
75901
75902 [[ca:Aladroc]]
75903 [[es:Engraulis encrasicholus]]
75904 [[lt:Ančiuvis]]
75905 [[nl:Ansjovis]]
75906 [[ru:АĐŊŅ‡ĐžŅƒŅ]]
75907 [[tr:Hamsi]]</text>
75908 </revision>
75909 </page>
75910 <page>
75911 <title>Anchor</title>
75912 <id>1358</id>
75913 <revision>
75914 <id>40758594</id>
75915 <timestamp>2006-02-22T21:00:25Z</timestamp>
75916 <contributor>
75917 <username>Heron</username>
75918 <id>2954</id>
75919 </contributor>
75920 <minor />
75921 <comment>/* Modern designs */ sp.</comment>
75922 <text xml:space="preserve">:''For alternate meanings see [[anchor (disambiguation)]]''
75923
75924 A ship's or boat's '''anchor''' is used to attach the vessel to the bottom at a specific point. There are two primary classes of anchors—temporary and permanent. A permanent anchor is often called a ''[[mooring]]'', and is rarely moved; it's quite possible the vessel cannot hoist it aboard but must hire a service to move or maintain it. A temporary anchor is usually carried by the vessel, and hoisted aboard whenever the vessel is under way.
75925
75926 An anchor works by resisting the movement force of the vessel which is attached to it. There are two primary ways to do this - via sheer mass, and by &quot;hooking&quot; into the [[seabed]]. It may seem logical to think wind and currents are the largest forces an anchor must overcome, but actually the vertical movement of [[Ocean surface wave|waves]] develop the largest loads, and modern anchors are designed to use a combination of technique and shape to resist all these forces.
75927
75928 [[Image:Anchor1.png|right|frame|A stocked ship's anchor.&lt;small&gt;&lt;br /&gt;a. Shank&lt;br /&gt;b. Crown&lt;br /&gt;c. Arm&lt;br /&gt;d. Fluke&lt;br /&gt;e. Point&lt;br /&gt;f. &amp; g. Eye and Ring&lt;br /&gt;h. Stock&lt;br /&gt;i. Fisherman's bend&lt;/small&gt;]]
75929 The kind of anchor you probably envision is a temporary anchor, the kind which might be carried aboard a [[ship]] or a [[boat]]. A modern temporary anchor usually consists of a central bar called the ''shank'', and an armature with some form of flat surface (''fluke'' or ''palm'') to grip the bottom and a point to assist penetration of the bottom; the position at which the armature is attached to the shank is called the ''crown'', and the shank is usually fitted with a ring or shackle to attach it to the [[cable]]. There are many variations and additions to these basic elements—for example, the whole class of anchors which include a ''stock'' such as the [[anchor#Fisherman|fisherman]] and [[anchor#Fluke|fluke]] anchors.
75930
75931 A permanent anchor, on the other hand, may come in a wide range of types and has no standard form. A slab of rock with an iron ''staple'' in it to attach a chain to serves very well, as does a Chevy long-block motor. Modern moorings may be anchored by sand screws which look and act very much like over-sized screws drilled into the seabed, or by barbed metal beams pounded in (or even driven in with explosives) like pilings, or a variety of other non-mass means of getting a grip on the bottom. One method of building a mooring is to use three or more temporary anchors laid out with short lengths of chain attached to a swivel, so no matter which direction the vessel moves one or more anchors will be aligned to resist the force.
75932
75933 An interesting element of anchor jargon is the term ''under weigh'', which describes the anchor when it is hanging on the rope, not on the bottom; this is linked to the term ''to weigh anchor'', meaning to lift the anchor from the sea bed, allowing the ship or boat to move. Usually an anchor is described as ''under weigh'' when it has been broken out of the bottom and is being hauled up to the boat because all the weight of the anchor and rode (a term for the chain linking the anchor and the ship) are lifted, and when lifted from the water it becomes ''stowed''. Although the terms may be linked, ''under weigh'' should not be confused with ''under way'', which describes a vessel which is moving through the water,
75934
75935
75936 == Development ==
75937
75938 The earliest anchors were probably rocks and many rock anchors have been found dating from at least the [[Bronze Age]]. Many modern moorings still rely on a large rock as the primary element of their design. It simply works. However, using pure mass to resist the forces of a storm only works well as a permanent mooring; trying to move a large enough rock to another bay is nearly impossible.
75939
75940 A simple anchor using a pair of wood arms under a rock mass is a primitive anchor which is still in use today. The wood arms are pointed to penetrate the bottom, and the mass will overcome normal movement forces. Together they comprise what may have been the first successful attempts to hook into the seabed and use the strength there to prevent a vessel from moving. Almost all future anchor developments combine these two elements—a penetrating point and a reasonable mass.
75941
75942 In the western world the vast majority of anchors worked on the concept of the grappling hook—multiple points on arms such that at least one will be aimed toward the bottom. Suddenly the concept of the stock, a bar placed perpendicular to the hooking arm at the other end of the shank which would roll the anchor over so the point would penetrate the bottom, was developed and within a single century became the standard anchor type.
75943
75944 In the East, however, another model of anchor had been known for some time which also used a stock, but with the stock located at the crown along with the arm. This successful model is still built today in virtually unchanged form. It also informed such modern designs as the [[US Navy]]'s stockless Mark IV and the [[anchor#Fluke|fluke-style anchor]].
75945
75946 == Designs of temporary anchors ==
75947
75948 The range of designs is wide, but there are actually trends in designs for modern anchors which allow them to be classed as ''hook, plow'', and ''fluke'' types, depending on the method by which they set.
75949
75950 * ''Hook'' designs use a relatively small fluke surface on a heavy, narrow arm to penetrate deeply into problematic bottoms such as rocky, heavy kelp or eel grass, coral, or hard sand. Two of the more common versions of this design are the [[anchor#Fisherman|fisherman]] and the [[anchor#Grapnel|grapnel]].
75951
75952 * ''Plow'' designs are reminiscent of the antique farm plow, and are designed to bury themselves the bottom as force is applied to them, and are considered good in most bottom conditions from soft mud to rock. ''North sea'' designs are actually a variation of a plow in how they work; they bury into the bottom using their shape.
75953
75954 * ''Fluke'' designs use large fluke surfaces to develop very large resistance to loads once they dig into the seabed. Although they have less ability to penetrate and are designed to reset rather than turn, their light weight makes them very popular.
75955
75956 In the past 20 years or so, many new anchor designs have appeared. Driven by the popularity of private pleasure boats, these anchors are usually designed for small to medium sized vessels, and are usually not appropriate for large ships. See [[anchor#Modern_designs|modern designs]].
75957
75958 === Fisherman ===
75959 [[Image:fisherman2-sm.jpg|thumb|left|A fisherman style anchor suspended against the bows]]
75960 A traditional design, the fisherman, also known as a ''kedge'', is familiar to people who've never used an anchor. The design is a non-burying type, with one arm penetrating the seabed and the other standing proud. The anchor is popular as the ultimate storm anchor, and has a good reputation for use in rock, hard bottoms, and kelp or eel grass covered bottoms. The three piece versions can be stowed quite compactly, and most versions include a folding stock so the anchor may be stowed flat on deck.
75961 [[Image:Walraversijde28.jpg|thumb|right|250px|Medieval kedge with double stock; ca. 1465]]
75962 The primary weakness of the design is its ability to foul the cable over changing tides. Once fouled the anchor is likely to drag. In comparison tests the fisherman design developed much less resistance than other anchors of similar weight. It is difficult to bring aboard without scarring the topsides, and does not stow in a hawse pipe or over an anchor roller.
75963 &lt;br style=&quot;clear:both;&quot; /&gt;
75964
75965 === Fluke ===
75966
75967 [[Image:Fluke anchor.gif|thumb|A fluke-style anchor]]
75968
75969 The most common commercial brand is the Danforth, which is sometimes used as a generic name for the class. The fluke style uses a stock at the crown to which two large flat surfaces are attached. The stock is hinged so the flukes can orient toward the bottom (and on some designs may be adjusted for an optimal angle depending on the bottom type.) The design is a burying variety, and once well set can develop an amazing amount resistance. Its light weight and compact flat design make it easy to retrieve and relatively easy to store; some anchor rollers and hawse pipes can accommodate a fluke-style anchor. A few high-performance designs are available, such as the Fortress, which are lighter in weight for a given area and in tests have shown better than average results.
75970
75971 The fluke anchor has difficulty penetrating kelp and weed-covered bottoms, as well as rocky and particularly hard sand or clay bottoms. If there is much current or the vessel is moving while dropping the anchor it may &quot;kite&quot; or &quot;skate&quot; over the bottom due to the large fluke area acting as a sail or wing. Once set, the anchor tends to break out and reset when the direction of force changes dramatically, such as with the changing tide, and on some occasions it might not reset but instead drag.
75972
75973 === Grapnel ===
75974 [[Image:Grapnel-sm.jpg|thumb|A grapnel-style anchor]]
75975 A traditional design, the grapnel style is simple to design and build. It has a benefit in that no matter how it reaches the bottom one or more tines will be aimed to set. The design is a non-burying variety, with one or more tines digging in and the remainder above the seabed. In coral it is often able to set quickly by hooking into the structure, but may be more difficult to retrieve. A grapnel is often quite light, and may have additional uses as a tool to recover gear lost overboard; its weight also makes it relatively easy to bring aboard.
75976
75977 Grapnels rarely have enough fluke area to develop much hold in sand, clay, or mud. It is not unknown for the anchor to foul on its own rode, or to foul the tines with refuse from the bottom, preventing it from digging in. It is quite possible for this anchor to find such a good hook that, without a trip line, it is impossible to retrieve. The shape is generally not very compact, and is difficult to stow, although there are a few collapsing designs available.
75978
75979 === North sea ===
75980 [[Image:Anchor_Bruce.jpg|thumb|Small-boat version of the popular Bruce]]
75981 Designed originally for anchoring floating oil derricks in the [[North Sea]], this versatile design has become a popular option for smaller boaters as well. The burying design acts similarly to a large scoop, and is known for the speed with which it digs in. Although not an articulated design, it has the reputation of not breaking out with tide or wind changes, instead slowly turning in the bottom to align with the force. Some versions of the design, such as the Bruce, are reputed to be easy to retrieve once broken out of the bottom, and some anchor rollers can accommodate their shank.
75982
75983 North sea designs may have difficulty penetrating weedy bottoms, rock, and coral. They can be particularly difficult to break out. Although they can be got aboard without scarring the topsides, they take up an inordinate amount of locker space. They cannot be used with hawse pipes.
75984
75985 [[Image:Anchor_CQR.jpg|thumb|A CQR anchor]]
75986 === Plow ===
75987 Several companies produce a plow-style design, and they are particularly popular with cruising sailors. Plows are generally good in all bottoms, but not exceptional in any. The CQR design has a hinged shank, allowing the anchor to turn with direction changes rather than breaking out, and also arranged to force the point of the plow into the bottom if the anchor lands on its side. Another commercial design, the Delta uses an unhinged shank and a plow with specific angles to develop very similar performance. Both can be stored in some anchor roller designs
75988
75989 The plow is heavier than the average for the amount of resistance developed, and may take slightly longer pull to set thoroughly. It cannot be stored in a hawse pipe.
75990
75991
75992 === Modern designs ===
75993 [[Image:Anchor_Rocna.jpg|thumb|The New Zealand designed Rocna is an example of modern anchor design]]
75994 In recent years there has been something of a spurt in anchor design. Primarily designed to set very quickly, then generate superior holding power, these anchors (mostly proprietary inventions still under patent) are finding homes with users of small to medium sized vessels.
75995 * The German designed ''BÃŧgel'' has a sharp tip for penetrating weed, and features a roll-bar which orients the anchor to the correct attitude on the seabed
75996 * The ''Bulwagga'' is a unique design featuring three flukes instead of the regular two. It has performed well in tests by independent sources such as American boating magazine ''Practical Sailor''. [http://www.noteco.com/bulwagga/ Manufacturer's website]
75997 * The ''Spade'' is a French design particularly popular with sailors. Although relatively expensive, it performs well, and features a demountable shank and optional aluminium construction, which means a lighter and more easily stowable anchor
75998 * The New Zealand designed ''Rocna'' is a new anchor gaining popularity amongst cruisers. It too features a sharp toe for penetrating weed and grass, and has a particularly large fluke area. Its roll-bar is similar to that of the BÃŧgel, and means the correct setting attitude is achieved without the need for extra weight to be inserted into the tip (an inefficiency common in other anchor types). [http://www.rocna.com/ Manufacturer's website]
75999 &lt;br style=&quot;clear:both;&quot; /&gt;
76000
76001 == Designs of permanent anchors ==
76002
76003 These are used where the vessel is permanently sited, for example in the case of [[lightvessel]]s or channel marker [[buoy]]s. The anchor needs to hold the vessel in all weathers, including the most severe [[storm]], but only occasionally, or never, needs to be lifted, only for example if the vessel is to be towed into port for maintenance. An alternative to using an anchor under these circumstances may be to use a pile driven into the seabed.
76004
76005 === Mushroom ===
76006
76007 The mushroom anchor is suitable where the seabed is composed of silt or fine sand. It was invented by [[Robert Stevenson]], for use by an 82 ton converted fishing boat, ''Pharos'', which was used as a [[lightvessel]] between [[1807]] and [[1810]] near to [[Bell Rock]] whilst the [[lighthouse]] was being constructed. It was equipped with a 1.5 ton example.
76008
76009 It is shaped like an inverted mushroom, the head becoming buried in the silt. A counterweight is often provided at the other end of the shank to lay it down before it becomes buried.
76010
76011 A mushroom anchor will normally sink in the silt to the point where it has displaced its own weight in bottom material. These anchors are only suitable for a silt or mud bottom, since they rely upon suction and cohesion of the bottom material, which rocky or coarse sand bottoms lack. The holding power of this anchor is at best about twice its weight unless it becomes buried, when it can be as much as ten times its weight[http://www.inamarmarine.com/pdf/Moorings.pdf]. They are available in sizes from about 10 lb up to several tons.
76012
76013 === Deadweight ===
76014
76015 This is an anchor which relies solely on being a heavy weight. It is usually just a large block of concrete or stone at the end of the chain. Its holding power is equal to its weight underwater (i.e. taking its buoyancy into account) regardless of the type of seabed, although suction can increase this if it becomes buried. Consequently deadweight anchors are used where mushroom anchors are unsuitable, for example in rock, gravel or coarse sand. An advantage of a deadweight anchor over a mushroom is that if it does become dragged, then it continues to provide its original holding force. The disadvantage of using deadweight anchors in conditions where a mushroom anchor could be used is that it needs to be around ten times the weight of the equivalent mushroom anchor..
76016
76017 == Anchoring techniques ==
76018 [[Image:AS_HMAS Canberra_1.jpg|thumb|200px|right|Naval anchor incorporated into [[HMAS Canberra (1927)]] memorial, [[Canberra]], [[Australia]]]]
76019
76020 Heaving an anchor over the side is not good enough. There are several elements to anchor gear to be considered, and there are techniques to ensure a good ''set''. This article can discuss some of this information, but it is by no means a treatise for safe anchoring.
76021
76022 === Anchoring gear ===
76023
76024 The elements of anchoring gear include the anchor, the cable (also called a ''rode''), the method of attaching the two together, the method of attaching the cable to the ship, charts, and a method of learning the depth of the water.
76025
76026 Charts are vital to good anchoring. Knowing the location of potential dangers, as well as being useful in estimating the effects of weather and tide in the anchorage, is essential in choosing a good place to drop the hook. One can get by without referring to charts, but they are an important tool and a part of good anchoring gear, and a skilled mariner would not choose to anchor without them.
76027
76028 The depth of water is necessary for determining ''scope'', which is the ratio of length of cable to the depth measured from the highest point (usually the anchor roller or bow chock) to the seabed. For example, if the water is 25ft (8m) deep, and the anchor roller is 3ft (1m) above the water, the scope is the ratio between the amount of cable let out and 28ft (9m). For this reason it is important to have a reliable and accurate method of measuring the depth of water.
76029
76030 A cable or rode is the rope, chain, or combination thereof used to connect the anchor to the vessel. Neither rope nor chain is fundamentally superior as a cable or there would not be continued argument over the issue; each has its strengths and its weaknesses and it is not the purpose of this article to address these.
76031
76032 === Anchoring ===
76033
76034 The four primary questions to be considered before actually anchoring:
76035 :# Is the anchorage protected?
76036 :# Is the seabed good holding ground?
76037 :# What is the depth, tidal range, and the current tide state?
76038 :# Is there enough room?
76039
76040 ==== Is the anchorage protected? ====
76041
76042 A good anchorage offers protection from the current weather conditions, and will also offer protection from the expected weather. You should also consider if the anchorage will be suitable for other purposes, for example can you get safely to shore in your dinghy if that is one of your goals. And keep in mind comfort; a rolly harbor is no fun.
76043
76044 ==== Is the seabed good holding ground? ====
76045
76046 You should have charts to indicate the kind of bottom, as well as a tool such as a [[sounding lead]] to collect a sample from the bottom. Generally speaking, most anchors will hold well in sandy mud, mud and clay, or firm sand. Loose sand and soft mud are not desirable bottoms, and especially soft mud which should be avoided if at all possible. Rock, coral, and shale prevent anchors from digging in, although some anchors are designed to hook into such a bottom. Grassy bottoms may be good holding, but only if the anchor can penetrate the bottom.
76047
76048 ==== What is the depth, tidal range, and the current tide state? ====
76049
76050 If your anchorage is affected by [[tide]], you need to know the tide range and the times of high and low water. You need enough depth for your vessel throughout the range it might swing, at low tide, not just where you drop the anchor. This is also important when determining [[scope]], which should be figured for high tide and not the current tide state.
76051
76052 ==== Is there enough room? ====
76053
76054 If your anchorage is affected by tide, you should keep in mind that the swing range will be larger at low tide than at high tide. However, no matter where you anchor you need to consider what the larges possible swing range will be, and what obstacles and hazards might be within that range. Keep in mind that other vessels in the anchorage may have a swing range which can overlap yours. Boats on permanent moorings, or shorter scope, may not swing as far as you expect them to, or may swing either more rapidly or more slowly than your vessel (all-chain cables tend to swing more slowly than all-rope or chain-and-rope cables.)
76055
76056 There are techniques of anchoring to limit the swing of a vessel if the anchorage has limited room.
76057
76058 === Methods ===
76059
76060 The basic anchoring consists of determining the location, dropping the anchor, laying out the scope, setting the hook, and assessing where the vessel ends up. After figuring out on the chart where a desirable location would be, the vessel need to actually see what the situation is like; there may be other boats who thought that would be a good spot, or weather conditions are different than expected, or even additional hazards not noted on the chart which make a planned location undesirable.
76061
76062 If the location is good, the location to drop the anchor should be approached from down wind or down current, whichever is stronger. As the chosen spot is approached, the vessel should be stopped or even beginning to drift back. The anchor should be lowered quickly but under control until it is on the bottom. The vessel should continue to drift back, and the cable should be veered out under control so it will be relatively straight.
76063
76064 Once the desired scope is laid out (a minimum of 8:1 for setting the anchor, and 5:1 for holding, though the preferred ratio is 10:1 for both setting, and holding power), the vessel should be gently forced astern, usually using the auxiliary motor but possibly by backing a sail. A hand on the anchor line may telegraph a series of jerks and jolts, indicating the anchor is dragging, or a smooth tension indicative of digging in. As the anchor begins to dig in and resist backward force, the engine may be throttled up to get a thorough set. If the anchor continues to drag, or sets after having dragged to far, it should be retrieved and moved back to the desired position (or another location chosen.)
76065
76066 With the anchor set in the correct location, everything should be reconsidered. Is the location protected, now and for the forecast weather? Is the bottom a suitable holding ground, and is the anchor the right one for this type of bottom? Is there enough depth, both now and at low tide? Especially at low tide but also at all tide states, is there enough room for the boat to swing? Will another vessel swing into us, or will we swing into another vessel, when the tide or wind changes?
76067
76068 Some other techniques have been developed to reduce swing, or to deal with heavy weather.
76069 :* [[Anchor#Forked moor|Forked moor]]
76070 :* [[Anchor#Bow and Stern|Bow and Stern]]
76071 :* [[Anchor#Bahamian moor|Bahamian moor]]
76072 :* [[Anchor#Backing an anchor|Backing an anchor]]
76073
76074 ==== Forked moor ====
76075
76076 Using two anchors set approximately 45° apart, or wider angles up to 90°, from the bow is a strong mooring for facing into strong winds. To set anchors in this way, first one anchor is set in the normal fashion. Then, taking in on the first cable as the boat is motored into the wind and letting slack while drifting back, a second anchor is set approximately a half-scope away from the first on a line perpendicular to the wind. After this second anchor is set, the scope on the first is taken up until the vessel is lying between the two anchors and the load is taken equally on each cable.
76077
76078 This moor also to some degree limits the range of a vessel's swing to a narrower oval. Care should be taken that other vessels will not swing down on the boat due to the limited swing range.
76079
76080 ==== Bow and stern ====
76081
76082 Not to be mistaken with the '''[[Anchor#Bahamian moor|Bahamian moor]]''', below.
76083
76084 In the ''Bow and Stern'' technique, an anchor is set off each the bow and the stern, which can severely limit a vessel's swing range and also align it to steady wind, current or wave conditions. One method of accomplishing this moor is to set a bow anchor normally, then drop back to the limit of the bow cable (or to double the desired scope, e.g. 8:1 if the eventual scope should be 4:1, 10:1 if the eventual scope should be 5:1, etc.) to lower a stern anchor. By taking up on the bow cable the stern anchor can be set. After both anchors are set, tension is taken up on both cables to limit the swing or to align the vessel.
76085
76086 ==== Bahamian moor ====
76087
76088 Similar to the above, a ''Bahamian moor'' is used to sharply limit the swing range of a vessel, but allows it to swing to a current. One of the primary characteristics of this technique is the use of a swivel as follows: the first anchor is set normally, and the vessel drops back to the limit of anchor cable. A second anchor is attached to the end of the anchor cable, and is dropped and set. A swivel is attached to the middle of the anchor cable, and the vessel connected to that.
76089
76090 The vessel will now swing in the middle of two anchors, which is acceptable in strong reversing currents but a wind perpendicular to the current may break out the anchors as they are not aligned for this load.
76091
76092 ==== Backing an anchor ====
76093
76094 Also known as ''Tandem anchors'', in this technique two anchors are shackled to a single cable running crown-to-shank. With the leading anchor holding the cable down and the tension between the anchors taking load off, this technique can develop great holding power and has been used in &quot;ultimate storm&quot; circumstances. It does not limit swinging range, and might not be appropriate for crowded anchorages.
76095
76096 === Kedging ===
76097
76098 ''Kedging'' is a technique for moving or turning a ship by using a relatively light anchor known as a ''kedge''. It was of particular relevance to sailing warships which used them to out-manoeuvre opponents when the wind had dropped but might be used by any vessel in confined, shoal water to place it in a more desirable position, provided she had enough manpower.
76099
76100 == References ==
76101 {{commons|anchor}}
76102 * Edwards, Fred; ''Sailing as a Second Language: An illustrated dictionary,'' 1988 Highmark Publishing; ISBN 0-87742-965-0
76103 * Hinz, Earl R.; ''The Complete Book of Anchoring and Mooring, Rev. 2d ed.,'' 1986, 1994, 2001 Cornell Maritime Press; ISBN 0-87033-539-1
76104 * Hiscock, Eric C.; ''Cruising Under Sail, second edition,'' 1965 Oxford University Press; ISBN 0-19-217522-X
76105 * Pardey, Lin and Larry; ''The Capable Cruiser,''; 1995 Pardey Boooks/Paradise Cay Publications; ISBN 0-9646036-2-4
76106 * Rousmaniere, John; ''The Annapolis Book of Seamanship,'' 1983, 1989 Simon and Schuster; ISBN 0-671-67447-1
76107 * Smith, Everrett; ''Cruising World's Guide to Seamanship: Hold me tight,'' 1992 New York Times Sports/Leisure Magazines
76108
76109 == External links ==
76110 * [http://www.northstarmarinesupplies.com/ North Star Marine Supplies]- Popular online anchoring store.
76111 * [http://www.inamarmarine.com/pdf/Moorings.pdf Inamar recommendations for safe moorings]
76112 * [http://www.nightbeacon.com/lighthouseinformation/articles/Lightship_Anchors.htm Lightship anchors]
76113 * [http://www.rocna.com/boat_anchors/new_gen_boat_anchors.html A Process of Evolution] — An essay on boat anchors by New Zealand boatbuilder, offshore cruiser, &amp; consultant Peter Smith
76114 * [http://www.expressandstar.com/cgi-bin/artman/exec/view.cgi?archive=20&amp;num=59220&amp;printer=1 the titanic task that put the town on the map]
76115 * [http://titanic-model.com/articles/anchor/titanics_center_anchor.htm titanics centre anchor].
76116 * [http://www.yampy.co.uk/netherton/article.php?article=yamp782.txt all about the anchor some good photos]
76117 * [http://www.newman.ac.uk/Students_Websites/~w.j.smith/history.html history of netherton]
76118
76119 [[Category:Nautical terms]]
76120 [[Category:Ship construction]]
76121 [[Category:Sailing ship elements]]
76122
76123 [[da:Anker (søfart)]]
76124 [[de:Anker]]
76125 [[es:ancla]]
76126 [[fa:Ų„Ų†Ú¯Øą]]
76127 [[fr:Ancre]]
76128 [[he:×ĸוגן]]
76129 [[io:Ankro]]
76130 [[ja:錨]]
76131 [[la:Ancora]]
76132 [[lv:Enkurs]]
76133 [[nl:Anker (schip)]]
76134 [[pl:Kotwica]]
76135 [[pt:Âncora]]
76136 [[ru:КоŅ€Đ°ĐąĐĩĐģŅŒĐŊŅ‹Đš ŅĐēĐžŅ€ŅŒ]]
76137 [[fi:Ankkuri]]
76138 [[sv:Ankare]]
76139 [[zh:锚]]</text>
76140 </revision>
76141 </page>
76142 <page>
76143 <title>Anbar</title>
76144 <id>1359</id>
76145 <revision>
76146 <id>37226663</id>
76147 <timestamp>2006-01-29T16:36:13Z</timestamp>
76148 <contributor>
76149 <username>KI</username>
76150 <id>701676</id>
76151 </contributor>
76152 <comment>cleanup</comment>
76153 <text xml:space="preserve">:''For the province of Iraq see [[al Anbar]]''
76154
76155 '''Anbar''', originally called '''Firuz Shapur''', or '''Perisapora''', a town founded about AD [[350]] by [[Shapur II of Persia|Shapur (Sapor) II]], [[Sassanid dynasty|Sassanid]] king of [[Persia]], on the east bank of the [[Euphrates]], just south of the Nahr Isa, or Sakhlawieh [[canal]], the northernmost of the canals connecting that river with the [[Tigris]], in lat. 33 deg. 22' N., long. 43 deg. 49' E.
76156
76157 It was captured and destroyed by the emperor [[Julian the Apostate|Julian]] in A.D. [[363]], but speedily rebuilt.
76158 It became a refuge for the [[Christianity|Christian]] and [[Jew]]ish colonies of that region, and there are said to have been 90,000 Jews in the place at the time of its capture by [[Ali ibn Abi Talib]] in [[657]].
76159 The Arabs changed the name of the town to Anbar (&quot;[[granaries]]&quot;).
76160
76161 Abu al-Abbas as-Saffah, the founder of the [[Abbasid]] caliphate, made it his capital, and such it remained until the founding of [[Baghdad]] in [[762]]. It continued to be a place of much importance throughout the Abbasid period, but now it is now entirely deserted, occupied only by ruin mounds. Their great extent indicates the former importance of the city.
76162
76163 ==References==
76164 *{{1911}}</text>
76165 </revision>
76166 </page>
76167 <page>
76168 <title>Anazarbus</title>
76169 <id>1360</id>
76170 <revision>
76171 <id>37553930</id>
76172 <timestamp>2006-01-31T19:18:09Z</timestamp>
76173 <contributor>
76174 <username>Vriullop</username>
76175 <id>750481</id>
76176 </contributor>
76177 <minor />
76178 <comment>interwiki +ca</comment>
76179 <text xml:space="preserve">'''Anazarbus''' (med. '''Ain Zarba'''; mod. [[Anavarza]]) was an ancient [[Cilicia]]n city, situated in [[Anatolia]] in modern [[Turkey]], in the [[Aleian plain]] about 10 miles west of the main stream of the [[Pyramus river]] (Jihun) and near its tributary the [[Sempas Su]].
76180
76181 A lofty isolated ridge formed its [[acropolis]]. Though some of the masonry in the ruins is certainly pre-Roman, the [[Suda]]'s identification of it with [[Cyinda]], famous as a treasure city in the wars of [[Eumenes of Cardia]], cannot be accepted in the face of [[Strabo]]'s express location of Cyinda in western Cilicia.
76182
76183 Under the early [[Roman empire]] the place was known as '''Caesarea''', and was the metropolis of [[Cilicia Secunda]]. Rebuilt by the emperor [[Justin I]] after an [[earthquake]], it became '''Justinopolis''' ([[525]]); but the old native name persisted, and when [[Thoros I of Armenia|Thoros I]], king of [[Lesser Armenia]], made it his capital early in the [[12th century]], it was known as '''Anazarva'''.
76184
76185 Its great natural strength and situation, not far from the mouth of the [[Sis pass]], and near the great road which debouched from the [[Cilician Gates]], made Anazarbus play a considerable part in the struggles between the [[Byzantine Empire]] and the early [[Muslim]] invaders. It had been rebuilt by [[Harun al-Rashid]] in [[796]], refortified at great expense by [[Saif ad-Daula]], the [[Hamdanid]] (10th century) and sacked, and ruined by the crusaders.
76186
76187 The present wall of the lower city is of late construction, probably Armenian. It encloses a mass of ruins conspicuous in which are a fine [[triumphal arch]], the colonnades of two streets, a [[gymnasium (ancient Greece)|gymnasium]], etc. A stadium and a theatre lie outside on the south. The remains of the acropolis fortifications are very interesting, including roads and ditches hewn in the rock; but beyond ruins of two churches and a fine tower built by Thoros I. There are no notable structures in the upper town. For picturesqueness the site is not equalled in Cilicia, and it is worthwhile to trace the three fine [[aqueduct]]s to their sources.
76188
76189 A visit in December, 2002 showed that the three aqueducts mentioned above have been nearly completely destroyed. Only small, isolated sections are left standing with the largest portion lying in a pile of rubble that stretches the length of where the aqueducts once stood. A powerful earthquake that struck the area in 1945 is thought to be responsible for the destruction.
76190 ----
76191 {{1911}}
76192
76193
76194 [[Category: Anatolia]]
76195
76196 [[ca:Anazarbe]]
76197 [[pl:Anazarbus]]
76198 [[de:Anazarba]]</text>
76199 </revision>
76200 </page>
76201 <page>
76202 <title>Anagram</title>
76203 <id>1361</id>
76204 <revision>
76205 <id>41464673</id>
76206 <timestamp>2006-02-27T14:55:54Z</timestamp>
76207 <contributor>
76208 <username>Brian0918</username>
76209 <id>90640</id>
76210 </contributor>
76211 <minor />
76212 <comment>Reverted edits by [[Special:Contributions/71.66.123.13|71.66.123.13]] ([[User talk:71.66.123.13|talk]]) to last version by 205.210.253.10</comment>
76213 <text xml:space="preserve">An '''anagram''' ([[Greek language|Greek]] ''ana-'' = &quot;back&quot; or &quot;again&quot;, and ''graphein'' = &quot;to write&quot;) is a type of [[word play]], the result of rearranging the letters of a word or phrase to produce other words, using all the original letters exactly once. Anagrams are often expressed in the form of an equation, with the equals symbol (=) separating the original subject and the resulting anagram. ‘Earth = heart’ is an example of a simple anagram expressed so. In a more advanced, sophisticated form of anagramming, the aim is to ‘discover’ a result that has a linguistic meaning that defines or comments on the original subject in a humorous or ironic way; e.g., '''''Roll in the hay = Thrill a honey''''' (discovered by Tony Crafter). When the subject and the resulting anagram form a complete sentence, a tilde (~) is used instead of an equal sign; e.g., '''''[[Semolina]] ~ is no meal.'''''
76214
76215 ==History==
76216 The construction of anagrams is an [[amusement]] of great [[Ancient history|antiquity]]. [[Jew]]s are often credited with the invention of anagrams, probably because later Hebrew writers, particularly [[Kabbalist]]s, were fond of it, asserting that &quot;secret mysteries are woven in the numbers of letters&quot;. Anagrams were known to the [[ancient Greece|Greek]]s and also to the [[ancient Rome|Roman]]s, although the known [[Latin]] examples of words of more than one syllable are nearly all imperfect. The Romans called the art of finding anagrams the &quot;ars magna&quot; (great art). Interestingly, &quot;ars magna&quot; is a perfect anagram of the word &quot;anagrams&quot;.
76217
76218 They were popular throughout [[Europe]] during the [[Middle Ages]].
76219
76220 Indeed, the right to lampoon royalty and politicians via anagram was enshrined in English law in 1215, when King John, albeit under duress, signed the [[Magna Carta]] ''(Magna Carta = Anagram Act)'' at Runnymede, in Surrey, and later, particularly in [[France]], where an &quot;Anagrammatist to the King&quot; was appointed by [[Louis XIII of France|Louis XIII]]. W. Camden (''Remains,'' 7th ed., 1674) defines &quot;Anagrammatisme&quot; as &quot;a dissolution of a name truly written into his letters, as his elements, and a new connection of it by artificial transposition, without addition, subtraction or change of any letter, into different words, making some perfect sense applyable (i.e., ''applicable'') to the person named.&quot; [[John Dryden|Dryden]] disdainfully called the pastime the &quot;torturing of one poor word ten thousand ways&quot; but many men and women of note have found amusement in it.
76221
76222 A well-known anagram is the change of &quot;Ave Maria, gratia plena, Dominus tecum&quot; (''Hail Mary, full of grace, the Lord [is] with you'') into &quot;Virgo serena, pia, munda et immaculata&quot; (''Bright virgin, pious, clean and spotless''). Among others are the anagrammatic answer to [[Pilate]]'s question, &quot;Quid est veritas?&quot; (''What is truth?''), namely, &quot;Est vir qui adest&quot; (''It is the man who is here''); and the transposition of &quot;[[Horatio Nelson]]&quot; into &quot;Honor est a Nilo&quot; (Latin = ''Honor is from the [[Nile]]''); and of &quot;[[Florence Nightingale]]&quot; into &quot;Flit on, cheering angel&quot;. [[James I of England|James I]]'s courtiers discovered in &quot;James Stuart&quot; &quot;a just master&quot;, and converted &quot;Charles James Stuart&quot; into &quot;Claimes Arthur's seat&quot;. &quot;Eleanor Audeley&quot;, wife of [[Sir John Davies]], is said to have been brought before the High Commission in 1634 for extravagances, stimulated by the discovery that her name could be transposed to &quot;Reveale, O Daniel&quot;, and to have been laughed out of court by another anagram submitted by the [[Dean of Arches|dean of the Arches]], &quot;Dame Eleanor Davies&quot;, &quot;Never soe mad a ladie&quot;.
76223
76224 ==Numerical anagrams==
76225 Numerical anagrams use [[Roman numeral]]s within words. These numeral letters, taken together according to their numerical values, express some epoch, such as the year of an event.{{ref label|1728|1|^}}
76226
76227 An example of this kind is a [[distich]] of [[Godart]] on the birth of the [[List of French monarchs|French king]] [[Louis XIV of France|Louis XIV]], which occurred in the year 1638, on a day wherein there was an [[astrology|astrological]] [[conjunction]] of the [[Aquila (constellation)|Eagle]] with the [[Regulus|Lion's Heart]]:
76228
76229 :&quot;e'''X'''or'''I'''ens '''D'''e'''L'''ph'''I'''n aq'''VIL'''ÃĻ '''C'''or'''DI'''sq'''V'''e '''L'''eon'''I'''s
76230 :'''C'''ongress'''V''' ga'''LL'''os spe '''L'''ÃĻt'''I'''t'''I'''aq'''V'''e refe'''CI'''t.&quot;
76231
76232 This roughly translates to, &quot;On the conjunction of the eagle and the heart of the lion, the new [[Dauphin]] brings hope and happiness to the French.&quot; The highlighted Roman numerals sum to 1638.{{ref label|1728|1|^}}
76233
76234 ==Pseudonyms==
76235 The [[pseudonym]]s adopted by [[author]]s are often transposed forms, more or less exact, of their names; thus &quot;Calvinus&quot; becomes &quot;Alcuinus&quot; ([[V]] = [[U]]); &quot;[[Francois Rabelais]]&quot; = &quot;Alcofribas Nasier&quot;; &quot;[[Arrigo Boito]]&quot; = &quot;Tobia Gorrio&quot;; &quot;[[Edward Gorey]]&quot; = &quot;Ogdred Weary&quot;; &quot;[[Vladimir Nabokov]]&quot; = &quot;Vivian Darkbloom&quot;, = &quot;Vivian Bloodmark&quot; or = &quot;Dorian Vivalcomb&quot;; &quot;[[Bryan Waller Proctor]]&quot; = &quot;Barry Cornwall, poet&quot;; &quot;Henry Rogers&quot; = &quot;R. E. H. Greyson&quot;; &quot;(Sanche) de Gramont&quot; = &quot;[[Ted Morgan]]&quot;, and so on. It is to be noted that several of these are &quot;imperfect anagrams&quot;, letters having been left out in some cases for the sake of easy pronunciation.
76236
76237 &quot;Telliamed&quot;, a simple reversal, is the title of a well known work by &quot;De Maillet&quot;. One of the most remarkable pseudonyms of this class is the name &quot;[[Voltaire]]&quot;, which the celebrated [[philosopher]] assumed instead of his family name, François Marie Arouet, and which is now generally allowed to be an anagram of &quot;Arouet, l[e] j[eune]&quot;, that is, &quot;Arouet the younger&quot;. Anagramming may also be used to good effect in [[farce]] or [[parody]]. A writer might take an unpleasant person he knows, base a character in a book on him, and then transpose the letters in the source's name. For example, controversial Israeli Prime Minister [[Ariel Sharon]] might be satirized as, say, local greengrocer &quot;Leon A. Shirra&quot;&amp;mdash;a rather inventive way to avoid a [[libel]] lawsuit.
76238
76239 Anagrams have also shown up in [[rock music]]. [[The Doors]]' lead singer [[Jim Morrison]] invoked his name as &quot;Mr. Mojo Risin'&quot; on the song &quot;[[L.A. Woman]]&quot;, the band Sad CafÊ released an album called ''Facades'', [[Blur]] singer [[Damon Albarn]] uses the name Dan Abnormal for the title of a song on [[The Great Escape]] and all of the band adopt anagramed pseudonyms for the [[music video]] of [[M.O.R.]], the [[New Wave music|new wave]] band [[Missing Persons]] recorded an album called ''Spring Session M'', and Guns N' Roses lead singer [[Axl Rose]]'s stage name is an anagram of &quot;[[oral sex]]&quot;.
76240
76241 ==Astronomy==
76242 Perhaps the only practical use to which anagrams have been turned is to be found in the transpositions in which some of the [[astronomer]]s of the [[17th century]] embodied their discoveries with the design apparently of avoiding the risk that, while they were engaged in further verification, the credit of what they had found out might be claimed by others. Thus [[Galileo Galilei|Galileo]] announced his discovery that [[Venus (planet)|Venus]] had [[Moon phase|phase]]s like the [[Moon]] in the form &quot;Haec immatura a me iam frustra leguntur&amp;mdash;oy&quot; (Latin: ''This immature (feminine) one has already been read in vain by me&amp;mdash;oy'' (with a subject-verb number agreement error)), that is, &quot;Cynthiae figuras aemulatur Mater Amorum&quot; (Latin: ''The Mother of Loves [= Venus] imitates the figures of [[Cynthia]] [= the moon]''). Similarly, when [[Robert Hooke]] discovered [[Hooke's law]] in 1660, he first published it in anagram form. One might think of this as a primitive example of a [[zero-knowledge proof]].
76243
76244 There are also a few &quot;natural&quot; anagrams, English words unconsciously created by switching letters around. The French ''chaise longue'' (&quot;long chair&quot;) became the American &quot;[[chaise lounge]]&quot; by metathesis (transposition of letters and/or sounds). This is an example of [[folk etymology]]. It has also been speculated that the English &quot;curd&quot; comes from the Latin ''crudus'' (&quot;raw&quot;).
76245
76246 ==Methods==
76247 Before the computer age, anagrams were constructed using a pen and paper or lettered tiles, by playing with letter combinations and experimenting with variations. (Some individuals with prodigious talent have also been known to ‘see’ anagrams in words, unaided by tools.)
76248
76249 Computers have enabled a new method of creating anagrams, the anagram server. An anagram server utilizes an exhaustive database of words. The anagrammist (one who creates anagrams) enters a word or phrase into the server’s search engine, and the server produces a list containing every possible combination of words or phrases from the input word or phrase. Anagram servers use advanced features to control the search results, by excluding or including certain words, limiting the number or length of words in each anagram, or limiting the number of results.
76250
76251 When sharing their newly discovered anagrams with other enthusiasts, some anagrammists indicate the method they used. Anagrams constructed without aid of a computer are noted as having been done ‘manually’ or ‘by hand’; those made by utilizing a computer may be noted ‘by machine’ or ‘by computer’, or may indicate the name of the computer program (using ‘Anagram Genius’).
76252
76253 Anagram servers are available on the Internet. Some examples are
76254 *[http://www.wordsmith.org/anagram/index.html Internet Anagram Server]
76255 *[http://www.anagramgenius.com/server.html Anagram Genius]
76256 *[http://www.anagramlogic.com/ Anagram Logic Anagram Finder]
76257 *[http://www.arrak.fi/ag/index_en.html Arrak Anagrams]
76258
76259 There is also software to download and run locally, such as
76260 *[http://www.fourmilab.ch/anagram/ Fourmilab Anagram Finder]
76261 *[http://www.anagrammy.com/resources/anagram_artist.html Anagram Artist]
76262
76263 ==Crosswords==
76264 [[Cryptic crossword]] puzzles frequently use anagrammatic clues, usually indicating that they are anagrams by the inclusion of a word like &quot;confused&quot; or &quot;in disarray&quot;. An example would be '''Businessman burst into tears (9 letters)'''; the solution, '''Stationer''' is an anagram of '''into tears''', the letters of which have '''burst''' out of their original arrangement to form the name of a type of '''businessman'''.
76265
76266 What is the most anagrammable name on record? There must be few names as deliciously workable as that of &quot;[[Augustus de Morgan]]&quot; who tells that a friend had constructed about 800 on his name (specimens of which are given in his ''Budget of Paradoxes'', p. 82)!
76267
76268 ==See also==
76269 *[[List of anagrams]]
76270 *[[Anagram Indicators]]
76271 *[[anagramatic poem]]
76272 *the [[board game]] [[Anagrams]]
76273 *[[ambigram]]
76274 *[[blanagram]]
76275 *''[[The Da Vinci Code]]'', a book by [[Dan Brown]]
76276 *[[palindrome]]
76277 *[[pangram]]
76278 *[[constrained writing]]
76279 *[[letter bank]]
76280 *[[Dave Barry]]
76281
76282 ===Literary===
76283 *&quot;To be or not to be: that is the question, whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune.&quot; = &quot;In one of the [[William Shakespeare|Bard]]'s best-thought-of [[tragedy|tragedies]], our insistent hero, [[Hamlet]], queries on two fronts about how life turns rotten.&quot; (discovered by Cory Calhoun)
76284 *Ivanhoe by Sir Walter Scott = A novel by a Scottish writer
76285 *[[Rocket Boys]] = [[October Sky]]
76286 *[[The Restaurant at the End of the Universe]] = Of [[Arthur Dent]], never the enthusiast, 'e eats ([http://www.thedavincigame.com])
76287 *[[Tom Marvolo Riddle]] ([[Lord Voldemort]]'s real name) = I am Lord Voldemort (In the novel and the film of [[Harry Potter]] by [[J.K. Rowling]])
76288
76289 ==References==
76290 #{{note label|1728|1|^}}{{1728}}
76291 #{{note|Maddox1}} [http://maddox.xmission.com Anagram from Maddox's webpage].
76292
76293 ==External links==
76294 *[http://www.wineverygame.com/ Anagram oriented towards Scrabble]
76295 *[http://users.aol.com/s6sj7gt/ana.htm Anagrams, Long and Short]
76296 *[http://www.anagramgenius.com/ Anagram Genius software plus archive of thousands of example anagrams]
76297 *[http://users.aol.com/s6sj7gt/anabible.htm The Anagrammed Bible : Proverbs, Ecclesiastes, Song of Solomon], ISBN 0970214804
76298 *[http://www.wordsmith.org/anagram/index.html Internet Anagram Server (= I, rearrangement servant)]
76299 *[http://www.anagrammy.com The Anagrammy Awards]
76300 *[http://www.fourmilab.ch/anagram/ Anagram Finder (fourmilab.ch)]
76301 *[http://www.anagramlogic.com/ Anagram Logic Anagram Finder]
76302 *[http://www.anagramsite.com/ Anagram Site]
76303 *[http://cl4.org/comp/anapad/ AnaPad is a special text editor for anagrammatists: people who make anagrams. It is particularly useful for anagramming long texts, such as poems]
76304
76305
76306 [[Category:Puzzles]]
76307 [[Category:Surrealist games]]
76308 [[Category:Word games]]
76309 [[Category:Word play]]
76310
76311 [[cs:Anagram]]
76312 [[da:Anagram]]
76313 [[de:Anagramm]]
76314 [[eo:Anagramo]]
76315 [[es:Anagrama]]
76316 [[fr:Anagramme]]
76317 [[he:אנגרמה]]
76318 [[hu:Anagramma]]
76319 [[ia:Anagramma]]
76320 [[io:Anagramo]]
76321 [[it:Anagramma]]
76322 [[ja:ã‚ĸナグナム]]
76323 [[lb:Anagramm]]
76324 [[nl:Anagram]]
76325 [[no:Anagram]]
76326 [[pl:Anagram]]
76327 [[ru:АĐŊĐ°ĐŗŅ€Đ°ĐŧĐŧĐ°]]
76328 [[sl:Anagram]]
76329 [[sv:Anagram]]</text>
76330 </revision>
76331 </page>
76332 <page>
76333 <title>Anadyr River</title>
76334 <id>1362</id>
76335 <revision>
76336 <id>33469021</id>
76337 <timestamp>2006-01-01T10:48:26Z</timestamp>
76338 <contributor>
76339 <username>Tbonefin</username>
76340 <id>222675</id>
76341 </contributor>
76342 <minor />
76343 <comment>+fi</comment>
76344 <text xml:space="preserve">'''Anadyr''' (''АĐŊĐ°ĖĐ´Ņ‹Ņ€ŅŒ'') is a [[river]] in the extreme northeast of [[Siberia]], [[Russia]].
76345
76346 The river, taking its rise in the [[Stanovoi Mountains]] as the Ivashki or Ivachno, about 67°N latitude and 173°E longitude, flows through the [[Chukotka]], at first southwest and then east, and enters the Gulf of Anadyr after a course of about 500 miles. The country through which it passes is thinly populated, and is dominated by [[tundra]], which is rich with a variety of plant life. Much of the region is folded in rugged mountains, and is a beautiful landscape. For nine months of the year the ground is covered with snow, and the frozen rivers become navigable roads. [[Reindeer]], upon which the inhabitants subsist, were once found in considerable numbers, but the domestic reindeer population has collapsed dramatically since the reorganization and privatization of state-run collective farms beginning in [[1992]]. As herds of domestic reindeer have declined, herds of wild [[caribou]] have increased.
76347
76348 ==See also==
76349 * [[Anadyr, Russia|Anadyr]] (town)
76350 *[[Operation Anadyr]]
76351
76352 ==References==
76353 * {{1911}}
76354
76355 [[Category:Rivers of Russia]]
76356
76357 [[de:Anadyr (Fluss)]]
76358 [[pl:Anadyr (rzeka)]]
76359 [[uk:АĐŊадиŅ€ (Ņ€Ņ–ĐēĐ°)]]
76360 [[fi:Anadyr (joki)]]</text>
76361 </revision>
76362 </page>
76363 <page>
76364 <title>AndrÊ-Marie Ampère</title>
76365 <id>1363</id>
76366 <revision>
76367 <id>41832394</id>
76368 <timestamp>2006-03-02T01:03:02Z</timestamp>
76369 <contributor>
76370 <ip>158.158.240.230</ip>
76371 </contributor>
76372 <comment>deleted a random &quot;hello&quot; at the end of a paragraph</comment>
76373 <text xml:space="preserve">{{Infobox Celebrity
76374 | name =AndrÊ-Marie Ampère
76375 | image = AndrÊ Marie Ampère.jpg
76376 | caption =
76377 | birth_date = [[January 20]], [[1775]]
76378 | birth_place =
76379 | death_date =[[June 10]], [[1836]]
76380 | death_place = [[Marseille]],[[France]]
76381 | occupation = [[Physicist]]
76382 | salary =
76383 | networth =
76384 | website =
76385 | footnotes =
76386 }}
76387
76388 '''AndrÊ-Marie Ampère''' ([[January 20]] [[1775]] &amp;ndash; [[June 10]] [[1836]]), was a French [[physicist]] who is generally credited as one of the main discoverers of [[electromagnetism]]. The [[ampere]] unit of measurement of [[Current (electricity)|electric current]] is named after him.
76389
76390 ==Early days==
76391 Ampère was born in [[Lyon]], near his father's country house in [[Poleymieux]] and, as a [[child prodigy]], took a passionate delight in the pursuit of knowledge from his very infancy, and is reported to have worked out long arithmetical sums by means of pebbles and biscuit crumbs before he knew the figures. His father began to teach him [[Latin]], but ceased on discovering the boy's greater inclination and aptitude for mathematical studies. The young Ampère, however, soon resumed his Latin lessons, to enable him to master the works of [[Leonhard Euler|Euler]] and [[Daniel Bernoulli|Bernoulli]].
76392
76393 In later life he was accustomed to say that he knew as much about mathematics when he was eighteen as ever he knew; but, a [[polymath]], his reading embraced nearly the whole round of knowledge &amp;mdash; history, travels, poetry, philosophy and the natural sciences.
76394
76395 In [[1796]] he met Julie Carron, and an attachment sprang up between them. In [[1799]] they were married. From about 1796 Ampère gave private lessons at Lyons in [[mathematics]], [[chemistry]] and languages; and in [[1801]] he removed to Bourg, as professor of [[physics]] and [[chemistry]], leaving his ailing wife and infant son ([[Jean Jacques Ampère]]) at Lyon. She died in 1804, and he never recovered from her death. In the same year he was appointed professor of mathematics at the ''[[lycÊe]]'' of Lyon.
76396
76397 ==Contributions to physics and further studies==
76398 [[Jean Baptiste Joseph Delambre]]'s recommendation obtained for him the Lyon appointment, and afterwards ([[1804]]) a subordinate position in the polytechnic school at Paris, where he was appointed professor of mathematics in 1809. Here he continued to pursue his scientific research and his diverse studies with unabated diligence. He was admitted as a member of the Institute in [[1814]].
76399
76400 Ampère's fame mainly rests on the service that he rendered to science in establishing the relations between electricity and magnetism, and in developing the science of electromagnetism, or, as he called it, electrodynamics. On [[September 11]], [[1820]] he heard of [[Hans Christian Ørsted|H. C. Ørsted's]] discovery that a magnetic needle is acted on by a voltaic current. Only a week later, on [[September 18]], he presented a paper to the Academy containing a far more complete exposition of that and kindred phenomena.
76401
76402 ==Legacy and final days==
76403 The whole field thus opened up he explored with characteristic industry and care, and developed a mathematical theory which not only explained the electromagnetic phenomena already observed but also predicted many new ones.
76404
76405 He died at [[Marseille]] and is buried in the [[Cimetière de Montmartre]], Paris. The great amiability and childlike simplicity of Ampère's character are well brought out in his ''Journal et correspondance'' (Paris, [[1872]]). Forty-five years later, mathematicians recognized him.
76406
76407 ==References==
76408 *{{1911}}
76409 ==External links==
76410 * [http://www.ampere.cnrs.fr www.ampere.cnrs.fr - Ampere and the history of electricity], (Correspondence, bibliography, experiments, simulations, etc., edited by CNRS, France)
76411 * {{MacTutor Biography|id=Ampere}}
76412 [[Category:1775 births|Ampere, Andre Marie]]
76413 [[Category:1836 deaths|Ampere, Andre Marie]]
76414 [[Category:Electrostatics|Ampère, AndrÊ-Marie]]
76415 [[Category:French physicists|Ampère, AndrÊ-Marie]]
76416 [[Category:Alumni of the École Polytechnique|Ampère, AndrÊ-Marie]]
76417
76418 [[bn:āĻ†āĻāĻĻā§āĻ°ā§‡ āĻŽāĻžāĻ°āĻŋ āĻāĻŽā§āĻĒāĻŋāĻ¯āĻŧāĻžāĻ°]]
76419 [[ca:AndrÊ-Marie Ampère]]
76420 [[de:AndrÊ Marie Ampère]]
76421 [[es:AndrÊ-Marie Ampère]]
76422 [[eo:AndrÊ Marie AMPÈRE]]
76423 [[fr:AndrÊ-Marie Ampère]]
76424 [[fy:AndrÊ-Marie Ampère]]
76425 [[gl:AndrÊ Marie Ampère]]
76426 [[ko:ė•™ë“œë ˆ 마ëĻŦ ė•™íŽ˜ëĨ´]]
76427 [[hr:AndrÊ-Marie Ampère]]
76428 [[io:AndrÊ Marie Ampère]]
76429 [[is:AndrÊ-Marie Ampère]]
76430 [[it:AndrÊ-Marie Ampère]]
76431 [[he:אנדרה מרי אמפר]]
76432 [[hu:AndrÊ-Marie Ampère]]
76433 [[nl:AndrÊ-Marie Ampère]]
76434 [[ja:ã‚ĸãƒŗドãƒŦãƒģマãƒĒãƒŧãƒģã‚ĸãƒŗペãƒŧãƒĢ]]
76435 [[nn:AndrÊ-Marie Ampère]]
76436 [[pl:AndrÊ Marie Ampère]]
76437 [[pt:AndrÊ-Marie Ampère]]
76438 [[ro:AndrÊ-Marie Ampère]]
76439 [[ru:АĐŧĐŋĐĩŅ€, АĐŊĐ´Ņ€Đĩ МаŅ€Đ¸]]
76440 [[sk:AndrÊ Marie Ampère]]
76441 [[sl:AndrÊ-Marie Ampère]]
76442 [[fi:AndrÊ-Marie Ampère]]
76443 [[sv:AndrÊ-Marie Ampère]]
76444 [[vi:AndrÊ-Marie Ampère]]
76445 [[uk:АĐŧĐŋĐĩŅ€ АĐŊŅ€Đĩ МаŅ€Ņ–]]</text>
76446 </revision>
76447 </page>
76448 <page>
76449 <title>Amoeba</title>
76450 <id>1364</id>
76451 <revision>
76452 <id>42144735</id>
76453 <timestamp>2006-03-04T02:52:23Z</timestamp>
76454 <contributor>
76455 <username>Bk0</username>
76456 <id>65294</id>
76457 </contributor>
76458 <minor />
76459 <comment>/* ''Amoeba'' in popular culture */ non-notable</comment>
76460 <text xml:space="preserve">:''Alternate meanings: [[Amoeboid]], [[Amoebozoa]]''
76461 :''For the operating system, see [[Amoeba distributed operating system]]. For the record store, see [[Amoeba Music]].''
76462 {{Taxobox
76463 | color = khaki
76464 | name = ''Amoeba''
76465 | image = Chaos diffluens.jpg
76466 | image_width = 240px
76467 | image_caption = ''[[Amoeba proteus]]''
76468 | regnum = [[Protist]]a
76469 | phylum = [[Amoebozoa]]
76470 | familia = [[Amoebidae]]
76471 | genus = '''''Amoeba'''''
76472 | genus_authority = Bery de St. Vincent 1822
76473 }}
76474 '''''Amoeba''''' (also spelled '''''ameba''''') is a genus of [[protozoa]] that moves by means of temporary projections called [[pseudopods]], and is well-known as a representative unicellular organism. The word amoeba is variously used to refer to it and its close relatives, now grouped as the [[Amoebozoa]], or to all protozoa that move using pseudopods, otherwise termed [[amoeboid]]s. See those pages for further information.
76475
76476 ''Amoeba'' itself is found in freshwater, typically on decaying vegetation from streams, but is not especially common in nature. However, because of the ease with which they may be obtained and kept in the lab, they are common objects of study, both as representative protozoa and to demonstrate cell structure and function. The cells have several lobose pseudopods, with one large tubular pseudopod at the anterior and several secondary ones branching to the sides. The most famous species, ''A. proteus'', is 700-800 &amp;mu;m in length, but many others are much smaller. Each has a single [[cell nucleus|nucleus]], and a simple contractile [[vacuole]] which maintains its [[osmosis|osmotic]] pressure, as its most recognizable features.
76477
76478 Early naturalists referred to ''Amoeba'' as the [[Proteus]] [[animalcule]], after a Greek god who could change his shape. The name &quot;amibe&quot; was given to it by Bery St. Vincent, from the Greek ''amoibe'', meaning change.
76479
76480 A good method of collecting amoeba is to lower a jar upside down until it is just above the sediment surface. Then slowly let air escape so the top layer will be sucked into the jar. Try not to allow deeper sediment get sucked in. You can slowly move the jar when tilting it so you collect from a larger area. If no amoeba are found, one can try introducing some rice grains into the jar and waiting for them to start to rot. The bacteria eating the rice will be eaten by the amoeba, thus increasing the population and making them easier to find.
76481
76482 ==''Amoeba'' in popular culture==
76483
76484 * The North American writer [[Tom Robbins]] states, in the [[preface]] to his book [[Even Cowgirls Get the Blues]], that amoebas are [[cool]] because they [[reproduce]] by [[binary fission]], so the first amoeba is still alive to this day.
76485 * In the [[1984]] computer game [[Boulder Dash]], Rockford, the main character, is chased all the time by a constantly-growing amoeba.
76486 * In certain places of [[Brazil]], the term amoeba (in its [[Portuguese language|Portuguese]] form: ''ameba'') is used as a [[derogatory]] [[slang]] for &quot;slow, [[obtuse]] person&quot;.
76487
76488 ==External links==
76489 * [http://wikibooks.org/wiki/Biology_Cell_biology_Introduction_Cell_size Wikibooks: compare size of cells]
76490 * [http://www.factmonster.com/ce6/sci/A0803647.html Amoeba info]
76491 [[Category:Protista]][[Category:Amoeboids]][[Category:Amoebozoa]]
76492
76493 [[bg:АĐŧĐĩйа]]
76494 [[da:Amøbe]]
76495 [[de:AmÃļbe]]
76496 [[es:Ameba]]
76497 [[fr:Amibe]]
76498 [[it:Ameba]]
76499 [[he:אמבה]]
76500 [[lt:Amebos]]
76501 [[nl:Amoebe]]
76502 [[ja:ã‚ĸãƒĄãƒŧバ]]
76503 [[pl:Ameba]]
76504 [[pt:Ameba]]
76505 [[sr:АĐŧĐĩйа]]
76506 [[fi:Ameebat]]
76507 [[sv:AmÃļbor]]
76508 [[th:ā¸­ā¸°ā¸Ąā¸ĩā¸šā¸˛]]
76509 [[uk:АĐŧĐĩйа]]
76510 [[zh:變åŊĸ蟲]]</text>
76511 </revision>
76512 </page>
76513 <page>
76514 <title>Ammonia</title>
76515 <id>1365</id>
76516 <revision>
76517 <id>41786249</id>
76518 <timestamp>2006-03-01T19:13:10Z</timestamp>
76519 <contributor>
76520 <username>Itub</username>
76521 <id>426390</id>
76522 </contributor>
76523 <text xml:space="preserve">&lt;!-- Here is a table of data; skip past it to edit the text. --&gt;
76524 {| align=&quot;right&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;3&quot; style=&quot;margin: 0 0 0 0.5em; background: #FFFFFF; border-collapse: collapse; border-color: #C0C090;&quot;
76525 ! {{chembox header}} | {{PAGENAME}}
76526 |-
76527 | align=&quot;center&quot; colspan=&quot;2&quot; | [[Image:Ammonia_lone_electron_pair.PNG|200px|{{PAGENAME}}]]
76528 |-
76529 | align=&quot;center&quot; colspan=&quot;2&quot; | [[Image:Ammonia3D.png|200px|{{PAGENAME}} 3D representation]]
76530 |-
76531 ! {{chembox header}} | General
76532 |-
76533 | [[IUPAC nomenclature|Systematic name]]
76534 | Ammonia&lt;br/&gt;Azane (''see text'')
76535 |-
76536 | Trivial names
76537 | Spirit of hartshorn&lt;br/&gt;Nitrosil&lt;br/&gt;Vaporole
76538 |-
76539 | [[Chemical formula|Molecular formula]]
76540 | NH&lt;sub&gt;3&lt;/sub&gt;
76541 |-
76542 | [[Molar mass]]
76543 | 17.03 g/mol
76544 |-
76545 | Appearance
76546 | Colourless gas with &lt;br&gt;strong pungent odor
76547 |-
76548 | [[CAS registry number|CAS number]]
76549 | [7664-41-7]
76550 |-
76551 ! {{chembox header}} | Properties
76552 |-
76553 | [[Density]] and [[Phase (matter)|phase]]
76554 | .6813 g/L, gas
76555 |-
76556 | [[Soluble|Solubility]] in [[Water_(molecule)|water]]
76557 | 54 g/100 ml
76558 |-
76559 | [[Melting point]]
76560 | -78.27 °C (195.42 K)
76561 |-
76562 | [[Boiling point]]
76563 | -33.49 °C (240.74 K)
76564 |-
76565 | [[Base dissociation constant|Basicity]] (p''K''&lt;sub&gt;b&lt;/sub&gt;)
76566 | 4.75
76567 |-
76568 | [[Acid dissociation constant|Acidity]] (p''K''&lt;sub&gt;a&lt;/sub&gt;)
76569 | ''approx.'' 34
76570 |-
76571 ! {{chembox header}} | Thermodynamic data
76572 |-
76573 | [[Standard enthalpy change of formation|Std enthalpy of&lt;br/&gt;formation]] Δ&lt;sub&gt;f&lt;/sub&gt;''H''°&lt;sub&gt;gas&lt;/sub&gt;
76574 | -45.92 kJ/mol
76575 |-
76576 | [[Standard molar entropy|Standard molar&lt;br/&gt;entropy]] ''S''°&lt;sub&gt;gas&lt;/sub&gt;
76577 | 192.77 J¡K&lt;sup&gt;&amp;minus;1&lt;/sup&gt;¡mol&lt;sup&gt;&amp;minus;1&lt;/sup&gt;
76578 |-
76579 ! {{chembox header}} | Hazards &lt;!-- INDEX n° 007-001-00-5, 007-001-01-2 --&gt;
76580 |-
76581 | [[Directive 67/548/EEC|EU classification]]
76582 | [[#Safety precautions|''Conc. dependent.&lt;br/&gt;See text'']]
76583 |-
76584 | [[List of R-phrases|R-phrases]]
76585 | [[#Safety precautions|''Conc. dependent&lt;br/&gt;See text'']]
76586 |-
76587 | [[List of S-phrases|S-phrases]]
76588 | {{S1/2}}, {{S16}}, {{S36/37/39}},&lt;br/&gt;{{S45}}, {{S61}}
76589 |-
76590 | [[NFPA 704]]
76591 | [[Image:nfpa_h3.png]][[Image:nfpa_f1.png]][[Image:nfpa_r0.png]]
76592 |-
76593 ! {{chembox header}} | [[{{PAGENAME}} (data page)|Supplementary data page]]
76594 |-
76595 | [[{{PAGENAME}} (data page)#Structure and properties|Structure and&lt;br/&gt;properties]]
76596 | [[Refractive index|''n'']], [[Dielectric constant|''Îĩ&lt;sub&gt;r&lt;/sub&gt;'']], etc.
76597 |-
76598 | [[{{PAGENAME}} (data page)#Thermodynamic properties|Thermodynamic&lt;br/&gt;data]]
76599 | Phase behaviour&lt;br&gt;Solid, liquid, gas
76600 |-
76601 | [[{{PAGENAME}} (data page)#Spectral data|Spectral data]]
76602 | [[UV/VIS spectroscopy|UV]], [[Infrared spectroscopy|IR]], [[NMR spectroscopy|NMR]], [[Mass spectrometry|MS]]
76603 |-
76604 | [[{{PAGENAME}} (data page)#Regulatory data|Regulatory data]]
76605 | [[Flash point]],&lt;br/&gt;[[RTECS|RTECS number]], etc.
76606 |-
76607 ! {{chembox header}} | Related compounds
76608 |-
76609 | Related [[Amine]]s
76610 | ''See'' [[Amine]]
76611 |-
76612 | Related [[Hydride]]s
76613 | [[Phosphine]]&lt;br/&gt;[[Arsine]]
76614 |-
76615 | Related compounds
76616 | [[Hydrazine]]&lt;br/&gt;[[Hydrazoic acid]]&lt;br/&gt;[[Hydroxylamine]]&lt;br/&gt;[[Chloramine]]
76617 |-
76618 | {{chembox header}} | &lt;small&gt;Except where noted otherwise, data are given for&lt;br&gt; materials in their [[standard state|standard state (at 25 °C, 100 kPa)]]&lt;br/&gt;[[wikipedia:Chemical infobox|Infobox disclaimer and references]]&lt;/small&gt;
76619 |-
76620 |}
76621 '''Ammonia''' is a [[chemical compound|compound]] of [[nitrogen]] and [[hydrogen]] with the [[chemical formula|formula]] NH&lt;sub&gt;3&lt;/sub&gt;. At [[standard temperature and pressure]] ammonia is a [[gas]]. It is [[toxic]] and [[corrosive]] to some materials, and has a characteristic pungent [[odor]].
76622
76623 An ammonia molecule has a [[Trigonal pyramid (chemistry)|trigonal pyramid]] shape, as would be expected from [[VSEPR theory]]. This shape gives the molecule an overall [[dipole]] moment and makes it [[Polar molecule|polar]] so that ammonia very readily dissolves in [[Water (molecule)|water]]. The nitrogen atom in the molecule has a [[Lone pair|lone electron pair]], and ammonia acts as a [[Base (chemistry)|base]]. That means that, when in aqueous solution, it can take a [[proton]] from water; this produces a [[hydroxide]] [[anion]] and an [[ammonium]] [[cation]] (NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;), which has the shape of a regular tetrahedron. The degree to which ammonia forms the ammonium ion depends on the [[pH]] of the [[solution]]—at &quot;physiological&quot; pH (~7), about 99% of the ammonia molecules are protonated.
76624
76625 The main uses of ammonia are in the production of [[fertilizer]]s, [[explosive]]s and [[polymer]]s. It is also an ingredient in certain household glass cleaners. Ammonia is found in small quantities in the atmosphere, being produced from the [[putrefaction]] of nitrogenous animal and vegetable matter. Ammonia and ammonium salts are also found in small quantities in rainwater, while [[ammonium chloride]] (sal-ammoniac) and ammonium sulfate are found in volcanic districts; crystals of [[ammonium bicarbonate]] have been found in [[Patagonia]]n [[guano]]. Ammonium salts also are found distributed through all fertile soil and in seawater. Substances containing ammonia or that are similar to it are called ammoniacal.
76626
76627 == History ==
76628
76629 Salts of ammonia have been known from very early times; thus the term ''Hammoniacus sal'' appears in the writings of [[Pliny the Elder|Pliny]], although it is not known whether the term is identical with the more modern ''sal-ammoniac''.
76630
76631 In the form of sal-ammoniac, ammonia was known to the [[alchemy|alchemists]] as early as the [[13th century]], being mentioned by [[Albertus Magnus]]. It was also used by [[dyer]]s in the [[Middle Ages]] in the form of fermented [[urine]] to alter the colour of vegetable dyes. In the [[15th century]], [[Basilius Valentinus]] showed that ammonia could be obtained by the action of alkalis on sal-ammoniac. At a later period, when sal-ammoniac was obtained by distilling the hoofs and horns of oxen and neutralizing the resulting carbonate with [[hydrochloric acid]], the name '''Spirit of hartshorn''' was applied to ammonia.
76632
76633 Gaseous ammonia was first isolated by [[Joseph Priestley]] in [[1774]] and was termed by him ''alkaline air''. In [[1777]] [[Karl Wilhelm Scheele]] showed that it contained [[nitrogen]], and [[Claude Louis Berthollet]], in about [[1785]], ascertained its composition.
76634
76635 The [[Haber process]] to produce ammonia from the nitrogen contained in the air was developed by [[Fritz Haber]] and [[Carl Bosch]] in [[1909]] and patented in [[1910]]. It was first used on an industrial scale by the Germans during [[World War I]]. The ammonia was used to produce explosives to sustain their war effort.
76636
76637 == Synthesis and production ==
76638 Because of its many uses, ammonia is one of the most highly-produced inorganic chemicals.
76639 Today NH&lt;sub&gt;3&lt;/sub&gt; is manufactured by the [[Haber process]]. In this process, N&lt;sub&gt;2&lt;/sub&gt; and H&lt;sub&gt;2&lt;/sub&gt; combine in the presence of an [[iron]] [[catalyst]] at a pressure of 200&amp;nbsp;bar (20&amp;nbsp;MPa, 3000&amp;nbsp;lbf/in²) and a temperature of 500 °C. A molybdenum [[promoter]] may also be used.
76640
76641 ::N&lt;sub&gt;2&lt;/sub&gt; + 3H&lt;sub&gt;2&lt;/sub&gt; → 2 NH&lt;sub&gt;3&lt;/sub&gt;
76642
76643 Compared to older methods, the feedstocks of the Haber process are relatively inexpensive&amp;mdash;nitrogen makes up 78% of the [[Earth's atmosphere|atmosphere]], while hydrogen is produced in situ from [[natural gas|CH&lt;sub&gt;4&lt;/sub&gt;]]. Thus, the industrial process entails heating air and natural gas, a by-product is CO&lt;sub&gt;2&lt;/sub&gt;.
76644
76645 Before the start of WWI most ammonia was obtained by the dry [[distillation]] of nitrogenous vegetable and animal products; by the reduction of [[nitrous acid]] and [[nitrite]]s with [[hydrogen]]; and also by the decomposition of ammonium salts by alkaline hydroxides or by [[calcium oxide|quicklime]], the salt most generally used being the chloride ([[ammonium chloride|sal-ammoniac]]) thus
76646
76647 ::2NH&lt;sub&gt;4&lt;/sub&gt;Cl + 2CaO → CaCl&lt;sub&gt;2&lt;/sub&gt; + Ca(OH)&lt;sub&gt;2&lt;/sub&gt; + 2NH&lt;sub&gt;3&lt;/sub&gt;
76648
76649 It can also been obtained by the hydrolysis of many metal nitrides, for example,
76650
76651 ::Mg&lt;sub&gt;3&lt;/sub&gt;N&lt;sub&gt;2&lt;/sub&gt; + 6H&lt;sub&gt;2&lt;/sub&gt;O → 3Mg(OH)&lt;sub&gt;2&lt;/sub&gt; + 2NH&lt;sub&gt;3&lt;/sub&gt;
76652
76653 ==Biosynthesis==
76654 Ammonia is produced from atmospheric N&lt;sub&gt;2&lt;/sub&gt; by enzymes called [[nitrogenase]]s. The overall process is called [[nitrogen fixation]]. Although it is unlikely that biomimetic methods will be developed that are competitive with the [[Haber process]], intense effort has been directed toward understanding the mechanism of biological nitrogen fixation. The scientific interest in this problem is motivated by the unusual structure of the active site of the enzyme, which consists of an Fe&lt;sub&gt;7&lt;/sub&gt;MoS&lt;sub&gt;9&lt;/sub&gt; ensemble.
76655
76656 Ammonia is also a metabolic product of [[amino acid]] [[deamination]]. In humans, it is quickly converted to [[urea]], which is much less toxic. This urea is a major component of the dry weight of [[urine]].
76657 == Properties ==
76658
76659 Ammonia is a colourless [[gas]] with a characteristic pungent smell; it is [[lighter than air]], its density being 0.589 times that of [[Earth's atmosphere|air]]. It is easily liquefied and the [[liquid]] boils at -33.7 °C, and solidifies at -75 °C to a mass of white crystals. [[Liquid]] ammonia possesses strong [[ion]]izing powers ([[Dielectric constant|Îĩ]] = 22), and [[solution]]s of [[salt]]s in liquid ammonia have been much studied. Liquid ammonia has a very high [[standard enthalpy change of vaporization]] (23.35&amp;nbsp;kJ/mol, ''c.f.'' [[water (molecule)|water]] 40.65&amp;nbsp;kJ/mol, [[methane]] 8.19&amp;nbsp;kJ/mol, [[phosphine]] 14.6&amp;nbsp;kJ/mol) and can therefore be used in laboratories in non-insulated vessels at room temperature, even though it is well above its boiling point.
76660
76661 It is [[miscible]] with water. All the ammonia contained in an aqueous solution of the gas may be expelled by boiling. The [[water|aqueous]] solution of ammonia is [[Base (chemistry)|basic]]. The maximum concentration of ammonia in water (a [[saturation (chemistry)|saturated]] solution) has a [[density]] of 0.880 g cm&lt;sup&gt;-3&lt;/sup&gt; and is often known as '.880 Ammonia'.
76662
76663 It does not sustain [[combustion]], and it does not burn readily unless mixed with [[oxygen]], when it burns with a pale yellowish-green flame.
76664
76665 At high temperature and in the presence of a suitable catalyst, ammonia is decomposed into its constituent elements. [[Chlorine]] catches fire when passed into ammonia, forming [[nitrogen]] and [[hydrochloric acid]]; unless the ammonia is present in excess, the highly explosive [[nitrogen trichloride]] (NCl&lt;sub&gt;3&lt;/sub&gt;) is also formed.
76666
76667 The ammonia molecule readily undergoes [[nitrogen inversion]] at normal pressures, that is to say that the nitrogen atom passes through the plane of the three hydrogen atoms as if it were an umbrella turning inside out in a strong wind. The energy barrier to this inversion is 24.7&amp;nbsp;kJ/mol in ammonia, and the [[resonance frequency]] is 23.79&amp;nbsp;GHz, corresponding to [[microwave]] radiation of a [[wavelength]] of 1.260&amp;nbsp;cm. The absorption at this frequency was the first [[Microwave spectroscopy|microwave spectrum]] to be observed (C.&amp;nbsp;E.&amp;nbsp;Cleeton&amp;nbsp;&amp; N.&amp;nbsp;H.&amp;nbsp;Williams, [[1934]]).
76668
76669 === Formation of salts ===
76670
76671 One of the most characteristic properties of ammonia is its power of combining directly with [[acid]]s to form [[salt]]s; thus with [[hydrochloric acid]] it forms [[ammonium chloride]] (sal-ammoniac); with [[nitric acid]], [[ammonium nitrate]], etc. However perfectly dry ammonia will not combine with perfectly dry [[hydrogen chloride]], moisture being necessary to bring about the reaction.{{ref|NH4Cl}}
76672 ::NH&lt;sub&gt;3&lt;/sub&gt; + [[Hydrochloric acid|HCl]] → [[Ammonium chloride|NH&lt;sub&gt;4&lt;/sub&gt;Cl]]
76673
76674 The salts produced by the action of ammonia on acids are known as the [[:Category:Ammonium compounds|ammonium salts]] and all contain the [[ammonium]] [[ion]] (NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;).
76675
76676 === Acidity ===
76677
76678 Although ammonia is well-known as a base, it can also act as an extremely weak [[acid]]. It is a protic substance, and is capable of dissociation into the '''amide''' (NH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;&amp;minus;&lt;/sup&gt;) ion, for example when solid lithium nitride is added to liquid ammonia, forming a lithium amide solution:
76679
76680 Li&lt;sub&gt;3&lt;/sub&gt;N(s)+ 2NH&lt;sub&gt;3&lt;/sub&gt;(l) &amp;rarr; 3Li&lt;sup&gt;+&lt;/sup&gt;(am) + 3NH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;&amp;minus;&lt;/sup&gt;(am).
76681
76682 This is a Bronsted-Lowry acid-base reaction in which ammonia is acting as an acid.
76683
76684 === Formation of other compounds ===
76685
76686 Ammonia can act as a [[nucleophile]] in [[Nucleophilic substitution|substitution]] reactions. [[Amine]]s can be formed by the reaction of ammonia with [[alkyl halide]]s, although the resulting &amp;ndash;NH&lt;sub&gt;2&lt;/sub&gt; group is also nucleophilic and secondary and tertiary amines are often formed as by-products. Using an excess of ammonia helps minimise multiple substitution, and neutralises the hydrogen halide formed. [[Methylamine]] is prepared commercially by the reaction of ammonia with [[chloromethane]], and the reaction of ammonia with 2-bromopropanoic acid has been used to prepare [[racemic]] [[alanine]] in 70% yield. [[Ethanolamine]] is prepared by a ring-opening reaction with [[ethylene oxide]]: the reaction is sometimes allowed to go further to produce diethanolamine and triethanolamine.
76687
76688 [[Amide]]s can be prepared by the reaction of ammonia with a number of [[carboxylic acid]] derivatives. [[Acyl chloride]]s are the most reactive, but the ammonia must be present in at least a two-fold excess to neutralise the [[hydrogen chloride]] formed. [[Ester]]s and [[anhydride]]s also react with ammonia to form amides.
76689
76690 Ammonium salts of carboxylic acids can be dehydrated to amides so long as there are no thermally sensitive groups present: temperatures of 150&amp;ndash;200 °C are required.
76691
76692 The [[hydrogen]] in ammonia is capable of replacement by [[metal]]s, thus [[magnesium]] burns in the gas with the formation of [[magnesium nitride]] Mg&lt;sub&gt;3&lt;/sub&gt;N&lt;sub&gt;2&lt;/sub&gt;, and when the gas is passed over heated [[sodium]] or [[potassium]], sodamide, NaNH&lt;sub&gt;2&lt;/sub&gt;, and potassamide, KNH&lt;sub&gt;2&lt;/sub&gt;, are formed.
76693
76694 Where necessary in [[IUPAC nomenclature|substitutive nomenclature]], [[IUPAC]] recommendations prefer the name '''azane''' to ammonia: hence [[chloramine]] would be named ''chloroazane'' in substitutive nomenclature, not ''chloroammonia''.
76695
76696 === Ammonia as a ligand ===
76697
76698 Ammonia can act as a [[ligand]] in [[transition metal]] [[complex (chemistry)|complexes]]. It is a pure Īƒ-donor, in the middle of the [[spectrochemical series]], and shows intermediate [[HSAB concept|hard-soft]] behaviour. For historical reasons, ammonia is named '''ammine''' in the nomenclature of [[coordination compound]]s. Some notable ammine complexes include:
76699 *'''Hexamminecopper(II)''', [Cu(NH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;6&lt;/sub&gt;]&lt;sup&gt;2+&lt;/sup&gt;, a characteristic dark blue complex formed by adding ammonia to solution of copper(II) salts.
76700 *'''Diamminesilver(I)''', [Ag(NH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;]&lt;sup&gt;+&lt;/sup&gt;, the active species in [[Tollens' reagent]]. Formation of this complex can also help to distinguish between precipitates of the different silver halides: [[Silver chloride|AgCl]] is soluble in dilute (2&amp;nbsp;M) ammonia solution, [[Silver bromide|AgBr]] is only soluble in concentrated ammonia solution while [[Silver iodide|AgI]] is insoluble in aqueous solution of ammonia.
76701
76702 Ammine complexes of [[chromium]](III) were known in the late 19th century, and formed the basis of [[Alfred Werner]]'s theory of coordination compounds. Werner noted that only two isomers (''fac''- and ''mer''-) of the complex [CrCl&lt;sub&gt;3&lt;/sub&gt;(NH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;3&lt;/sub&gt;] could be formed, and concluded that the ligands must be arranged around the metal ion at the [[vertex|vertices]] of an [[octahedron]]. This has since been confirmed by [[X-ray crystallography]].
76703
76704 An ammine ligand bound to a metal ion is markedly more [[acid]]ic than a free ammonia molecule, although deprotonation in aqueous solution is still rare. One example is the [[Mercury(I) chloride|Calomel reaction]], where the resulting amidomercury(II) compound is highly insoluble.
76705 ::Hg&lt;sub&gt;2&lt;/sub&gt;Cl&lt;sub&gt;2&lt;/sub&gt; + 2NH&lt;sub&gt;3&lt;/sub&gt; → Hg + HgCl(NH&lt;sub&gt;2&lt;/sub&gt;) + NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt; + Cl&lt;sup&gt;&amp;minus;&lt;/sup&gt;
76706
76707 ==Uses==
76708
76709 The most important single use of ammonia is in the production of [[nitric acid]]. A mixture of one part ammonia to nine parts air is passed over a [[platinum]] gauze [[catalyst]] at 850 °C, whereupon the ammonia is oxidized to [[nitric oxide]].
76710 ::4NH&lt;sub&gt;3&lt;/sub&gt; + 5O&lt;sub&gt;2&lt;/sub&gt; → 4NO + 6H&lt;sub&gt;2&lt;/sub&gt;O
76711 The catalyst is essential, as the normal oxidation (or combustion) of ammonia gives [[Nitrogen|dinitrogen]] and water: the production of nitric oxide is an example of [[kinetic control]]. As the gas mixture cools to 200&amp;ndash;250 °C, the nitric oxide is in turn oxidized by the excess of [[oxygen]] present in the mixture, to give [[nitrogen dioxide]]. This is reacted with water to give nitric acid for use in the production of [[fertilizer]]s and [[explosive]]s.
76712
76713 In addition to serving as a fertilizer ingredient, ammonia can also be used directly as a fertilizer by forming a solution with irrigation water, without additional chemical processing. This later use allows the continuous growing of nitrogen dependent crops such as [[maize]] (corn) without [[agriculture|crop]] rotation but this type of use leads to poor [[soil]] health.
76714
76715 Ammonia has thermodynamic properties that make it very well suited as a [[Refrigeration|refrigerant]], since it liquefies readily under pressure, and was used in virtually all refrigeration units prior to the advent of [[haloalkane]]s such as [[Freon]]. However, ammonia is a toxic irritant and its corrosiveness to any [[copper]] [[alloy]]s increases the risk that an undesirable leak may develop and cause a noxious hazard. Its use in small refrigeration units has been largely replaced by haloalkanes, which are not toxic irritants and are practically not [[flammable]]. (Note: [[Butane]] and [[isobutane]], which have very suitable thermodynamic properties for refrigerants, are extremely flammable.) Ammonia continues to be used as a [[refrigerant]] in large industrial processes such as bulk icemaking and industrial food processing. Ammonia is also useful as a component in [[Absorptive refrigeration|absorption-type refrigerators]], which do not use compression and expansion cycles but can exploit heat differences. Since the implication of haloalkane being major contributors to [[ozone depletion]], ammonia is again seeing increasing use as a refrigerant.
76716
76717 Ammonia is a primary ingredient in old-style household cleaners.
76718
76719 It is also sometimes added to drinking water along with [[chlorine]] to form [[chloramine]], a [[disinfectant]]. Unlike chlorine on its own, chloramine does not combine with organic (carbon containing) materials to form [[carcinogen|carcinogenic]] [[halomethane]]s such as [[chloroform]].
76720
76721 == Liquid ammonia as a solvent ==
76722 :''See also: [[Inorganic nonaqueous solvent]]''
76723 Liquid ammonia is the best-known and most widely studied non-aqueous ionizing solvent. Its most conspicuous property is its ability to dissolve alkali metals to form highly coloured, electrically conducting solutions containing solvated electrons. Apart from these remarkable solutions, much of the chemistry in liquid ammonia can be classified by analogy with related reactions in aqueous solutions. Comparison of the physical properties of NH&lt;sub&gt;3&lt;/sub&gt; with those of water shows that NH&lt;sub&gt;3&lt;/sub&gt; has the lower melting point, boiling point, density, [[viscosity]], [[dielectric constant]] and [[electrical conductivity]]; this is due at least in part to the weaker H bonding in NH&lt;sub&gt;3&lt;/sub&gt; and the fact that such bonding cannot form cross-linked networks since each NH&lt;sub&gt;3&lt;/sub&gt; molecule has only 1 lone-pair of electrons compared with 2 for each H&lt;sub&gt;2&lt;/sub&gt;O molecule. The ionic self-[[dissociation constant]] of liquid NH&lt;sub&gt;3&lt;/sub&gt; at &amp;minus;50 °C is approx. 10&lt;sup&gt;-33&lt;/sup&gt; mol&lt;sup&gt;2&lt;/sup&gt;¡l&lt;sup&gt;-2&lt;/sup&gt;.
76724
76725 === Solubility of salts ===
76726 {|
76727 |-
76728 ! &amp;nbsp;
76729 ! Solubility (g per 100 g)
76730 |-
76731 | [[Ammonium acetate]]
76732 | 253.2
76733 |-
76734 | [[Ammonium nitrate]]
76735 | 389.6
76736 |-
76737 | [[Lithium nitrate]]
76738 | 243.7
76739 |-
76740 | [[Sodium nitrate]]
76741 | 97.6
76742 |-
76743 | [[Potassium nitrate]]
76744 | 10.4
76745 |-
76746 | [[Sodium fluoride]]
76747 | 0.35
76748 |-
76749 | [[Sodium chloride]]
76750 | 3.0
76751 |-
76752 | [[Sodium bromide]]
76753 | 138.0
76754 |-
76755 | [[Sodium iodide]]
76756 | 161.9
76757 |-
76758 | [[Sodium thiocyanate]]
76759 | 205.5
76760 |-
76761 |}
76762
76763 Liquid ammonia is an ionizing solvent, although less so than water, and dissolves a range of ionic compounds including many [[nitrate]]s, [[nitrite]]s, [[cyanide]]s and [[thiocyanate]]s. Most [[ammonium]] salts are soluble, and these salts act as [[acid]]s in liquid ammonia solutions. The solubility of [[halide]] salts increases from [[fluoride]] to [[iodide]]. A saturated solution of [[ammonium nitrate]] contains 0.83&amp;nbsp;mol solute per mole of ammonia, and has a [[vapour pressure]] of less than 1&amp;nbsp;bar even at 25 °C.
76764
76765 === Solutions of metals ===
76766 :''See also: [[Solvated electron]], [[metallic solution]]''
76767 Liquid ammonia will dissolve the [[alkali metal]]s and other [[Electronegativity|electropositive]] metals such as [[Calcium|Ca]], [[Strontium|Sr]], [[Barium|Ba]] [[Europium|Eu]] and [[Ytterbium|Yb]]. At low concentrations (&lt;&amp;nbsp;0.06&amp;nbsp;mol/L), deep blue solutions are formed: these contain metal cations and [[solvated electron]]s, free electrons which are surrounded by a cage of ammonia molecules. These solutions are very useful as strong reducing agents. At higher concentrations, the solutions are metallic in appearance and in electrical conductivity. At low temperatures, the two types of solution can coexist as [[Wiktionary:immiscible|immiscible]] phases.
76768
76769 === Redox properties of liquid ammonia ===
76770 {|
76771 |-
76772 ! &amp;nbsp;
76773 ! ''E''° (V, ammonia)
76774 ! ''E''° (V, water)
76775 |-
76776 | Li&lt;sup&gt;+&lt;/sup&gt; + e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} Li
76777 | &amp;minus;2.24
76778 | &amp;minus;3.04
76779 |-
76780 | K&lt;sup&gt;+&lt;/sup&gt; + e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} K
76781 | &amp;minus;1.98
76782 | &amp;minus;2.93
76783 |-
76784 | Na&lt;sup&gt;+&lt;/sup&gt; + e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} Na
76785 | &amp;minus;1.85
76786 | &amp;minus;2.71
76787 |-
76788 | Zn&lt;sup&gt;2+&lt;/sup&gt; + 2e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} Zn
76789 | &amp;minus;0.53
76790 | &amp;minus;0.76
76791 |-
76792 | NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt; + e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} ÂŊH&lt;sub&gt;2&lt;/sub&gt; + NH&lt;sub&gt;3&lt;/sub&gt;
76793 | 0.00
76794 | &amp;ndash;
76795 |-
76796 | Cu&lt;sup&gt;2+&lt;/sup&gt; + 2e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} Cu
76797 | +0.43
76798 | +0.34
76799 |-
76800 | Ag&lt;sup&gt;+&lt;/sup&gt; + e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} Ag
76801 | +0.83
76802 | +0.80
76803 |-
76804 |}
76805
76806 The range of thermodynamic stability of liquid ammonia solutions is very narrow, as the potential for oxidation to [[Nitrogen|dinitrogen]], ''E''°&amp;nbsp;(N&lt;sub&gt;2&lt;/sub&gt; + 6NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt; + 6e&lt;sup&gt;&amp;minus;&lt;/sup&gt; {{unicode|&amp;#8652;}} 8NH&lt;sub&gt;3&lt;/sub&gt;), is only +0.04&amp;nbsp;V. In practice, both oxidation to dinitrogen and reduction to [[Hydrogen|dihydrogen]] are slow. This is particularly true of reducing solutions: the solutions of the alkali metals mentioned above are stable for several days, slowly decomposing to the [[Amide|metal amide]] and dihydrogen. Most studies involving liquid ammonia solutions are done in reducing conditions: although oxidation of liquid ammonia is usually slow, there is still a risk of explosion, particularly if transition metal ions are present as possible catalysts.
76807
76808 == Detection and determination ==
76809
76810 Ammonia and ammonium salts can be readily detected, in very minute traces, by the addition of [[Nessler's solution]], which gives a distinct yellow coloration in the presence of the least trace of ammonia or ammonium salts. [[Sulfur sticks]] are burnt to detect small leaks in industrial ammonia refrigeration systems. Larger quantities can be detected by warming the salts with a caustic alkali or with [[calcium oxide|quicklime]], when the characteristic smell of ammonia will be at once apparent. The amount of ammonia in ammonium salts can be estimated quantitatively by distillation of the salts with [[sodium hydroxide|sodium]] or [[potassium hydroxide]], the ammonia evolved being absorbed in a known volume of standard [[sulfuric acid]] and the excess of acid then determined [[volumetric analysis|volumetrically]]; or the ammonia may be absorbed in [[hydrochloric acid]] and the [[ammonium chloride]] so formed precipitated as [[ammonium hexachloroplatinate]], (NH&lt;sub&gt;4&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;PtCl&lt;sub&gt;6&lt;/sub&gt;.
76811
76812 == Safety precautions ==
76813 === Toxicity ===
76814
76815 The toxicity of ammonia solutions does not usually cause problems for humans and other mammals, as a specific mechanism exists to prevent its build-up in the bloodstream. Ammonia is converted to [[carbamoyl phosphate]] by the enzyme [[carbamoyl phosphate synthase]], and then enters the [[urea cycle]] to be either incorporated into [[amino acid]]s or excreted in the urine. However [[fish]] and [[amphibian]]s lack this mechanism, as they can usually eliminate ammonia from their bodies by direct excretion. Ammonia even at dilute concentrations is highly toxic to aquatic animals, and for this reason it is [[Directive 67/548/EEC|classified]] as ''dangerous for the environment''.
76816
76817 === Household use ===
76818
76819 Solutions of ammonia (5&amp;ndash;10% by weight) are used as household cleaners, particularly for glass. These solutions are irritating to the eyes and [[mucous membrane]]s (respiratory and digestive tracts), and to a lesser extent the skin. They should '''never''' be mixed with [[chlorine]]-containing products, for example household [[bleach]], as a variety of toxic and [[carcinogen]]ic compounds are formed (''e.g.'', [[chloramine]], [[hydrazine]]).
76820
76821 === Laboratory use of ammonia solutions ===
76822
76823 The hazards of ammonia solutions depend on the concentration: &quot;dilute&quot; ammonia solutions are usually 5&amp;ndash;10% by weight (&lt;5.62&amp;nbsp;mol/L); &quot;concentrated&quot; solutions are usually prepared at &gt;25% by weight. A 25% (by weight) solution has a density of 0.907&amp;nbsp;g/cm&lt;sup&gt;3&lt;/sup&gt;, and a solution which has a lower density will be more concentrated. The [[Directive 67/548/EEC|European Union classification]] of ammonia solutions is given in the table.
76824
76825 &lt;!-- EU Index no. 007-001-01-2 --&gt;
76826 {| class=&quot;wikitable&quot;
76827 |-
76828 ! [[Concentration]]&lt;br/&gt;by weight
76829 ! Molarity
76830 ! Classification
76831 ! [[List of R-phrases|R-Phrases]]
76832 |-
76833 | 5&amp;ndash;10%
76834 | 2.87&amp;ndash;5.62 mol/L
76835 | Irritant ('''Xi''')
76836 | {{R36/37/38}}
76837 |-
76838 | 10&amp;ndash;25%
76839 | 5.62&amp;ndash;13.29 mol/L
76840 | Corrosive ('''C''')
76841 | {{R34}}
76842 |-
76843 | &gt;25%
76844 | &gt;13.29 mol/L
76845 | Corrosive ('''C''')&lt;br/&gt;Dangerous for&lt;br/&gt;the environment ('''N''')
76846 | {{R34}}, {{R50}}
76847 |-
76848 |}
76849
76850 :''[[List of S-phrases|S-Phrases]]: {{S1/2}}, {{S16}}, {{S36/37/39}}, {{S45}}, {{S61}}.''
76851
76852 The ammonia vapour from concentrated ammonia solutions is severely irritating to the eyes and the respiratory tract, and these solutions should only be handled in a fume hood. Saturated (&quot;0.880&quot;) solutions can develop a significant pressure inside a closed bottle in warm weather, and the bottle should be opened with care: this is not usually a problem for 25% (&quot;0.900&quot;) solutions.
76853
76854 Ammonia solutions should not be mixed with [[halogen]]s, as toxic and/or explosive products are formed. Prolonged contact of ammonia solutions with [[silver (element)|silver]], [[mercury (element)|mercury]] or [[iodide]] salts can also lead to explosive products: such mixtures are often formed in [[qualitative analysis]], and should be acidified and diluted before disposal once the test is completed.
76855
76856 === Laboratory use of anhydrous ammonia (gas or liquid) ===
76857
76858 &lt;!-- EU index no. 007-001-00-5 --&gt;
76859 &lt;!-- R10, 23, 34, 50; S1/2, 9, 16, 26, 36/37/39, 45, 61 --&gt;
76860 Anhydrous ammonia is classified as '''toxic''' ('''T''') and '''dangerous for the environment''' ('''N'''). The gas is flammable ([[autoignition temperature]]: 651 °C) and can form explosive mixtures with air (16&amp;ndash;25%). The [[permissible exposure limit]] (PEL) in the United States is 50&amp;nbsp;ppm (35&amp;nbsp;mg/m&lt;sup&gt;3&lt;/sup&gt;), while the [[IDLH]] concentration is estimated at 300&amp;nbsp;ppm. Repeated exposure to ammonia lowers the sensitivity to the smell of the gas: normally the odour is detectable at concentrations of less than 0.5&amp;nbsp;ppm, but desensitized individuals may not detect it even at concentrations of 100&amp;nbsp;ppm.
76861
76862 Ammonia reacts violently with the halogens, and causes the explosive polymerization of [[ethylene oxide]]. It also forms explosive compounds with compounds of [[gold (element)|gold]], silver, mercury, [[germanium]] or [[tellurium]], and with [[stibine]]. Violent reactions have also been reported with [[acetaldehyde]], [[hypochlorite]] solutions, [[potassium ferricyanide]] and [[peroxide]]s.
76863
76864 Anhydrous ammonia corrodes [[copper (element)|copper]]- and [[zinc (element)|zinc]]-containing [[alloy]]s, and so [[brass]] fittings should not be used for handling the gas. Liquid ammonia can also attack rubber and certain plastics.
76865
76866 == See also ==
76867 *[[Ammonia (data page)]]
76868 *[[Chlorination]]
76869 *[[Water purification]]
76870 *[[Nitrogen metabolism]]
76871
76872 == Reference ==
76873 #{{note|NH4Cl}} Baker, H. B. (1894). ''J. Chem. Soc.'' '''65''': 612.
76874
76875 == Bibliography ==
76876 {{1911}}
76877 * {{cite book
76878 | author=Greenwood, N. N.; &amp; Earnshaw, A.
76879 | title=Chemistry of the Elements
76880 | edition = 2nd Edn.
76881 | location =Oxford
76882 | publisher=Butterworth-Heinemann
76883 | year=1997
76884 | id=ISBN 0-7506-3365-4
76885 }}
76886 * {{cite book
76887 | author=Housecroft, C. E.; &amp; Sharpe, A.
76888 | title=Inorganic Chemistry
76889 | location =Harlow (UK)
76890 | publisher=Prentice Education
76891 | year=2001
76892 | id=ISBN 0-582-31080-6
76893 }}
76894 * {{cite book
76895 | author=Bretherick, L. (Ed.)
76896 | title=Hazards in the Chemical Laboratory
76897 | edition = 4th Edn.
76898 | location =London
76899 | publisher=Royal Society of Chemistry
76900 | year=1986
76901 | id=ISBN 0-85186-489-9
76902 }}
76903
76904 == External links ==
76905 *[http://www.cheresources.com/ammonia.shtml Ammonia: The Next Step]
76906 *[http://www.ilo.org/public/english/protection/safework/cis/products/icsc/dtasht/_icsc04/icsc0414.htm International Chemical Safety Card 0414] (anhydrous ammonia)
76907 *[http://www.ilo.org/public/english/protection/safework/cis/products/icsc/dtasht/_icsc02/icsc0215.htm International Chemical Safety Card 0215] (aqueous solutions)
76908 * [http://www.npi.gov.au/database/substance-info/profiles/8.html National Pollutant Inventory - Ammonia]
76909 *[http://www.cdc.gov/niosh/npg/npgd0028.html NIOSH Pocket Guide to Chemical Hazards]
76910 *{{ecb}}
76911 *{{PubChemLink|222}}
76912 *[http://www.inrs.fr Institut national de recherche et de securite] (''in French'')
76913 * [http://www.ammoniaspills.org Emergency Response to Ammonia Fertilizer Releases (Spills)] for the Minnesota Department of Agriculture
76914 *{{nist}}
76915 * [http://www.compchemwiki.org/index.php?title=Ammonia Computational Chemistry Wiki]
76916
76917 [[Category:Nitrogen compounds]]
76918 [[Category:Hydrides]]
76919 [[Category:Bases]]
76920 [[Category:Nitrogen metabolism]]
76921 [[Category:Household chemicals]]
76922 [[Category:Refrigerants]]
76923
76924 [[bg:АĐŧĐžĐŊŅĐē]]
76925 [[ca:Amoníac]]
76926 [[cs:Amoniak]]
76927 [[cy:Amonia]]
76928 [[da:Ammoniak]]
76929 [[de:Ammoniak]]
76930 [[es:Amoníaco]]
76931 [[fa:ØĸŲ…ŲˆŲ†ÛŒØ§ÚŠ]]
76932 [[fr:Ammoniac]]
76933 [[hr:Amonijak]]
76934 [[io:Amoniako]]
76935 [[it:Ammoniaca]]
76936 [[he:אמוניה]]
76937 [[lv:Amonjaks]]
76938 [[mk:АĐŧĐžĐŊиŅ˜Đ°Đē]]
76939 [[ms:Ammonia]]
76940 [[nl:Ammoniak]]
76941 [[ja:ã‚ĸãƒŗãƒĸニã‚ĸ]]
76942 [[no:Ammoniakk]]
76943 [[nn:Ammoniakk]]
76944 [[pl:Amoniak]]
76945 [[pt:Amoníaco]]
76946 [[ru:АĐŧĐŧиаĐē]]
76947 [[simple:Ammonia]]
76948 [[sr:АĐŧĐžĐŊиŅ˜Đ°Đē]]
76949 [[fi:Ammoniakki]]
76950 [[sv:Ammoniak]]
76951 [[th:āšā¸­ā¸Ąāš‚ā¸Ąāš€ā¸™ā¸ĩā¸ĸ]]
76952 [[uk:АĐŧŅ–Đ°Đē]]
76953 [[zh:æ°¨]]</text>
76954 </revision>
76955 </page>
76956 <page>
76957 <title>Amethyst</title>
76958 <id>1366</id>
76959 <revision>
76960 <id>41252368</id>
76961 <timestamp>2006-02-26T02:02:59Z</timestamp>
76962 <contributor>
76963 <username>Vsmith</username>
76964 <id>84417</id>
76965 </contributor>
76966 <minor />
76967 <comment>Reverted edits by [[Special:Contributions/68.8.110.18|68.8.110.18]] ([[User talk:68.8.110.18|talk]]) to last version by 85.157.107.161</comment>
76968 <text xml:space="preserve">{{Otheruses}}
76969
76970 '''Amethyst''' (SiO&lt;sub&gt;2&lt;/sub&gt;) is a violet or purple variety of [[quartz]] often used as an [[ornamental stone|ornament]]. The name is generally said to be derived from the Greek ''a'', &quot;not,&quot; and ''methuskein'', &quot;to intoxicate,&quot; expressing the old belief that the stone protected its owner from [[drunkenness]]. It was held that wine drunk out of a cup of amethyst would not [[Intoxication|intoxicate]]. However, the word may probably be a corruption of an Oriental name for the stone.
76971
76972 [[Image:Amethyst.bed.750pix.jpg|thumb|250px|right|A bed of amethyst crystals on base rock, 13cm (5in) long]]
76973
76974 In the [[20th century]], the color of amethyst was attributed to the presence of [[manganese]]. However, since it is capable of being greatly altered and even discharged by heat, the color was believed by some authorities to be from an organic source. [[Iron|Ferric]] [[thiocyanate]] was suggested, and [[sulfur]] was said to have been detected in the mineral. As of 2005, impurity atoms are known to be responsible of the colour of the amethyst.
76975
76976 On exposure to heat, amethyst generally becomes yellow, and much of the [[citrine]], [[cairngorm]], or yellow quartz of jewelry is said to be merely &quot;burnt amethyst&quot;. Veins of amethystine quartz are apt to lose their color on the exposed outcrop.
76977
76978 Amethyst is composed of an irregular superposition of alternate [[lamellar structure|lamellae]] of right-handed and left-handed quartz. It has been shown that this structure may be due to mechanical stresses. As a consequence of this composite formation, amethyst is apt to break with a rippled fracture, or to show &quot;thumb markings&quot;, and the intersection of two sets of curved ripples may produce on the fractured surface a pattern something like that of &quot;engine turning&quot;. Some mineralogists, following Sir [[David Brewster]], apply the name of amethyst to all quartz which exhibits this structure, regardless of color.
76979
76980 [[Image:Amethyst cut.jpg|Amethyst|thumb|250px]]
76981 Amethyst was used as a [[gemstone]] by the ancient [[Egypt]]ians and was largely employed in antiquity for [[intaglio]]s. Beads of amethyst are found in [[Anglo-Saxon]] graves in [[England]]. It is a widely distributed [[mineral]], but fine, clear specimens that are suitable for cutting as ornamental stones are confined to comparatively few localities. Such [[crystal]]s occur either in the cavities of mineral-veins and in [[granite|granitic]] rocks, or as a lining in [[agate]] [[geode]]s. A huge geode, or &quot;amethyst-grotto&quot;, from near Santa Cruz in southern [[Brazil]] was exhibited at the [[DÃŧsseldorf]] Exhibition of [[1902]]. Many of the hollow agates of Brazil and [[Uruguay]] contain a crop of amethyst crystals in the interior. Much fine amethyst comes from [[Russia]], especially from near [[Mursinka]] in the [[Ekaterinburg]] district, where it occurs in drusy cavities in granitic rocks. Many localities in [[India]] yield amethyst; and it is found also in [[Sri Lanka]], chiefly as pebbles.
76982
76983 [[Image:Srr046a.jpg|6 Carat Pear Shape Amethyst Ring|thumb|250px]]
76984 Due to its popularity as a gemstone, several descriptive terms have been coined in the gem trade to describe the varying colors of amethyst. &quot;Rose de France&quot; is usually a pale pinkish lavender or lilac shade (usually the least sought color). The most prized color is an intense violet with red flashes and is called &quot;Siberian&quot;, although gems of this color may occur from several locations other than [[Siberia]], notably [[Uruguay]] and [[Zambia]]. In more recent times, certain gems (usually of Bolivian origin) that have shown alternate bands of amethyst purple with citrine orange have been given the name [[ametrine]].
76985
76986 Purple [[corundum]], or [[sapphire]] of amethystine tint, is called Oriental amethyst, but this expression is often applied by jewellers to fine examples of the ordinary amethystine quartz, even when not derived from eastern sources. Professional gemological associations, such as the [[Gemological Institute of America]] (GIA) or the [[American Gemological Society]] (AGS), discourage the use of the term &quot;Oriental amethyst&quot; to describe any gem, as it may be misleading.
76987
76988 Amethyst occurs at many localities in the [[United States]], but these specimens are rarely fine enough for use in jewelry. Among these may be mentioned Amethyst Mountain, [[Texas]]; [[Yellowstone National Park]]; [[Delaware County, Pennsylvania]]; [[Haywood County, North Carolina]]; and Deer Hill, and Stow, [[Maine]]. It is found also in the [[Lake Superior]] district. Amethyst is relatively common in northwestern [[Ontario]], but uncommon elsewhere in [[Canada]]; it was selected as the provincial mineral of Ontario in 1975.
76989
76990 ==Value==
76991 Traditionally included in the cardinal, or most valuable, gemstones (along with [[diamond]], [[sapphire]], [[ruby]] and [[emerald]]), amethyst has lost much of its substantial value due to the discovery of extensive deposits in locations such as [[Brazil]]. Even high-quality examples are often sold in large unfinished slabs, or as geodes, in everyday locations.
76992
76993 ==Amethyst in folklore and astrology==
76994 Amethyst is the [[birthstone]] associated with February. It is also associated with the [[constellation]]s of [[Pisces]], [[Aries]] (especially the violet and purple variety), [[Aquarius]], and [[Sagittarius]]. It is a symbol of heavenly understanding, and of the pioneer in thought and action on the philosophical, religious, spiritual and material planes. Ranking members of the [[Catholic]] Church traditionally wear rings set with a large amethyst as part of their office.
76995
76996 ==See also==
76997 {{Commons|Amethyst}}
76998 *[[List of minerals]]
76999
77000 {{1911}}
77001
77002 [[Category:Gemstones]]
77003 [[Category:Quartz varieties]]
77004
77005 [[bg:АĐŧĐĩŅ‚иŅŅ‚]]
77006 [[ca:Ametista]]
77007 [[de:Amethyst]]
77008 [[es:Amatista]]
77009 [[fr:AmÊthyste]]
77010 [[ga:Aimitis]]
77011 [[he:אחלמה]]
77012 [[hu:Ametiszt]]
77013 [[nl:Amethist]]
77014 [[ja:ã‚ĸãƒĄã‚¸ã‚šãƒˆ]]
77015 [[pl:Ametyst]]
77016 [[pt:Ametista]]
77017 [[ru:АĐŧĐĩŅ‚иŅŅ‚]]
77018 [[sk:Ametyst]]
77019 [[sl:Ametist]]
77020 [[fi:Ametisti]]
77021 [[sv:Ametist]]
77022 [[uk:АĐŧĐĩŅ‚иŅŅ‚]]</text>
77023 </revision>
77024 </page>
77025 <page>
77026 <title>Albertosaurus</title>
77027 <id>1367</id>
77028 <revision>
77029 <id>41056732</id>
77030 <timestamp>2006-02-24T19:55:08Z</timestamp>
77031 <contributor>
77032 <username>Sheep81</username>
77033 <id>911938</id>
77034 </contributor>
77035 <comment>rearrangem,ent</comment>
77036 <text xml:space="preserve">{{Taxobox
77037 | color = pink
77038 | name = ''Albertosaurus''
77039 | fossil_range = [[Late Cretaceous]]
77040 | image = Albertosaurus model.jpg
77041 | image_width = 200px
77042 | regnum = [[Animal]]ia
77043 | phylum = [[Chordate|Chordata]]
77044 | classis = [[Archosaur|Archosauria]]
77045 | ordo = [[Saurischia]]
77046 | subordo = [[Theropod|Theropoda]]
77047 | familia = [[Tyrannosaurid|Tyrannosauridae]]
77048 | subfamilia = [[Albertosaurinae]]
77049 | genus = '''''Albertosaurus'''''
77050 | species = '''''A. sarcophagus'''''
77051 | binomial = ''Albertosaurus sarcophagus''
77052 | binomial_authority = [[Henry Fairfield Osborn|Osborn]], 1905
77053 }}
77054
77055 '''''Albertosaurus''''' is a [[genus]] of [[tyrannosaurid]] [[theropod]] [[dinosaur]] from the [[Late Cretaceous]] Period of [[North America]]. It was a large [[bipedal]] [[predator]] with a massive head and tiny forelimbs, much like the better-known ''[[Tyrannosaurus rex]]'', although not quite as big. Adults reached up to 30 feet (9 meters) in length.
77056
77057 ==Etymology==
77058
77059 The genus ''Albertosaurus'' can be translated as &quot;Alberta lizard&quot; and is named for the [[Canada|Canadian]] province of [[Alberta]], in which it was found. The name also incorporates the [[Greek language|Greek]] term ''sauros'', meaning &quot;lizard,&quot; which is the most common suffix used in dinosaur names.
77060
77061 There is one named [[species]] considered valid today (''A. sarcophagus''). This name has the same [[etymology]] as the [[sarcophagus|funeral container]] of the same name: a combination of the Greek words ''sarx'', meaning &quot;flesh,&quot; and ''phagos'', meaning &quot;to eat.&quot; This refers to its quite obvious carnivorous habits.
77062
77063 Both genus and species were named by famous [[United States|American]] [[paleontologist]] [[Henry Fairfield Osborn]] in [[1905]].
77064
77065 ==Taxonomy==
77066
77067 ''Albertosaurus'' is a member of the family [[Tyrannosauridae]] and is united with the closely related ''Gorgosaurus'' in the subfamily [[Albertosaurinae]]. Holtz (2004) also places the newly described ''[[Appalachiosaurus]]'' in this subfamily, while Carr et al. (2005) do not.
77068
77069 ===Invalid Species===
77070
77071 Other species have been named. ''A. arctunguis'', also from Alberta, was found to be a [[junior synonym]] of ''A. sarcophagus'' by Russell (1970). ''A. megagracilis'' (later renamed ''[[Dinotyrannus]]''), is a smaller animal from the [[Hell Creek Formation]] of [[Montana]], and is now thought to be a juvenile ''Tyrannosaurus''.
77072
77073 ===Synonymy with Gorgosaurus?===
77074
77075 In [[1970]], [[Dale Russell]] examined [[fossil]]s of both ''Albertosaurus'' and another tyrannosaurid, ''[[Gorgosaurus]]'', which comes from slightly older sediments, and found very few differences to separate them. While retaining the two as different species, he assigned them to the same genus. ''Gorgosaurus libratus'' was not named until [[1914]], so the name ''Albertosaurus'' retained [[ICZN|priority]] as the genus name since it was older, creating the new combination ''Albertosaurus libratus''.
77076
77077 This name found common use for a few decades, but a recent reanalysis of tyrannosaurid [[skull]]s performed by influential paleontologist [[Phil Currie]] in [[2003]] found that the differences are more pronounced than previously thought, although the two species are still closely related. As ''Albertosaurus'' and ''Gorgosaurus'' are considered [[sister taxa]], and there is no commonly accepted definition of a genus in paleontology, Currie acknowledged that the difference between retaining them in one genus or separating them into two is largely arbitrary. However, he recommended separating them to allow more flexibility when naming new species in the future, and because there is no greater degree of difference between the two than there is between ''[[Daspletosaurus]]'' and ''[[Tyrannosaurus]]'', which are almost universally retained as different genera. Other paleontologists, with the exception of Carr et al. (2005), have largely followed Currie's recommendation on the subject and ''Gorgosaurus'' is now widely recognized as a separate genus.
77078
77079 ==Location and Age==
77080
77081 ''Albertosaurus'' is known mostly from the [[Horseshoe Canyon Formation]] of [[Alberta]], [[Canada]]. This [[geologic formation|formation]] is from the early [[Maastrichtian]] stage of the [[Late Cretaceous]] Period, about 73 to 70 million years ago. Many other dinosaurs have been found there, including [[ornithomimidae|ornithomimids]], ''[[Chirostenotes]]'', [[dromaeosaurid]]s, [[ankylosauria]]ns, [[ceratopsia]]ns, [[pachycephalosaur]]s, and [[hadrosaurids]].
77082
77083 Fossils of ''Albertosaurus'' have also been reported from the [[United States|American]] states of Montana and [[Wyoming]], but these are not recognizable to species level according to Currie (2003) and Holtz (2004).
77084
77085 ==Remains==
77086
77087 [[Image:Dd albertos 300.jpg|frame|Albertosaurus]]
77088
77089 Currie (2003) recognized ten skulls which belong to ''A. sarcophagus'' with certainty, as well as seven skeletons of varying completeness. The [[holotype]] skull was found by famous Canadian [[geologist]] [[Joseph Tyrrell|Joseph B. Tyrrell]].
77090
77091 ===Bonebed in Alberta===
77092
77093 In addition, articulated remains of 12 more individuals of all different ages have been recovered from a [[bonebed]] locality in Alberta, providing a nearly complete sequence from juvenile to very old adults. This is now one of the most completely known tyrannosaurid species.
77094
77095 It is possible that such a large number of individuals in one place represents some sort of [[social behavior]] among albertosaurs, but this is difficult to prove.
77096
77097 ==References==
77098
77099 #{{cite journal
77100 | author = Osborn, H.F.
77101 | year = 1905
77102 | title = ''Tyrannosaurus'' and other Cretaceous carnivorous dinosaurs
77103 | journal = Bulletin of the American Museum of Natural History
77104 | volume = 21
77105 | pages = 259-265
77106 }} [original description]
77107 #{{cite journal
77108 | author = Russell, D.A.
77109 | year = 1970
77110 | title = Tyrannosaurs from the Late Cretaceous of western Canada
77111 | journal = National Museum of Natural Sciences, Publications in Paleontology
77112 | volume = 1
77113 | pages = 1-34
77114 }} [synonymization with ''Gorgosaurus'']
77115 #{{cite journal
77116 | author = Currie, P.J.
77117 | year = 2003
77118 | title = Cranial anatomy of tyrannosaurids from the Late Cretaceous of Alberta
77119 | journal = Acta Palaeontologica Polonica
77120 | volume = 48(20)
77121 | pages = 191-226
77122 }} [anatomy, re-separation from ''Gorgosaurus'']
77123 #{{cite journal
77124 | author = Currie, P.J., J.H. Hurum, &amp; K. Sabath
77125 | year = 2003
77126 | title = Skull structure and evolution in tyrannosaurid phylogeny
77127 | journal = Acta Palaeontologica Polonica
77128 | volume = 48(2)
77129 | pages = 227-234
77130 }} [includes phylogeny]
77131 #{{cite book
77132 | author = Holtz, T.R.
77133 | year = 2004
77134 | title = The Dinosauria
77135 | chapter = Chapter 5: Tyrannosauroidea.
77136 | editor = Weishampel, D.A., P. Dodson, &amp; H. Osmolska, eds.
77137 | edition = Second Edition
77138 | pages = 111-136
77139 | publisher = University of California Press
77140 | location = Berkeley
77141 }} [includes phylogeny]
77142 #{{cite journal
77143 | author = Carr, T.D., T.E. Williamson, &amp; D.R. Schwimmer
77144 | year = 2005
77145 | title = A new genus and species of tyrannosauroid from the Late Cretaceous (middle Campanian) Demopolis Formation of Alabama
77146 | journal = Journal of Vertebrate Paleontology
77147 | volume = 25(1)
77148 | pages = 119-143
77149 }} [description of ''Appalachiosaurus'', includes phylogeny]
77150
77151 [[Category:Cretaceous dinosaurs]]
77152 [[Category:Theropods]]
77153 [[Category:Tyrannosaurids]]
77154
77155 [[de:Albertosaurus]]
77156 [[es:Albertosaurus]]
77157 [[fr:Albertosaurus]]
77158 [[he:&amp;#1488;&amp;#1500;&amp;#1489;&amp;#1512;&amp;#1496;&amp;#1493;&amp;#1494;&amp;#1488;&amp;#1493;&amp;#1512;]]
77159 [[ja:&amp;#12450;&amp;#12523;&amp;#12496;&amp;#12540;&amp;#12488;&amp;#12469;&amp;#12454;&amp;#12523;&amp;#12473;]]
77160 [[sv:Albertosaurus]]
77161 [[nl:Albertosaurus]]
77162 [[pt:Albertossauro]]</text>
77163 </revision>
77164 </page>
77165 <page>
77166 <title>Assembly language</title>
77167 <id>1368</id>
77168 <revision>
77169 <id>41739134</id>
77170 <timestamp>2006-03-01T11:42:47Z</timestamp>
77171 <contributor>
77172 <username>Akamad</username>
77173 <id>292168</id>
77174 </contributor>
77175 <comment>Revert to revision 41652522 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
77176 <text xml:space="preserve">'''Assembly language''' commonly called '''assembly''' or '''asm''', is a [[human-readable]] notation for the [[machine language]] that a specific [[computer architecture]] uses. Machine language, a pattern of bits encoding machine operations, is made readable by replacing the raw values with symbols called ''mnemonics''.
77177
77178 For example, a computer with the appropriate processor will understand this [[x86]]/[[IA-32]] [[machine language]]:
77179 10110000 01100001
77180 For programmers, however, it is easier to remember the equivalent assembly language representation:
77181 mov al, 061h
77182 which means to move the [[hexadecimal]] value 61 (97 [[decimal]]) into the [[processor register]] with the name &quot;al&quot;. The [[mnemonic]] &quot;mov&quot; is short for &quot;move&quot;, and a comma-separated list of arguments or parameters follows it; this is a typical assembly language statement.
77183
77184 Transforming assembly into machine language is accomplished by an [[assembler]], and the reverse by a [[disassembler]]. Unlike in [[high-level language]]s, there is usually a [[1-to-1]] correspondence between simple assembly statements and machine language instructions. However, in some cases an assembler may provide ''pseudoinstructions'' which expand into several machine language instructions to provide commonly needed functionality. For example, for a machine that lacks a &quot;branch if greater or equal&quot; instruction, an assembler may provide a pseudoinstruction that expands to the machine's &quot;set if less than&quot; and &quot;branch if zero (on the result of the set instruction)&quot;.
77185
77186 Every [[computer architecture]] has its own machine language, and therefore its own assembly language. Computers differ by the number and type of operations that they support. They may also have different sizes and numbers of registers, and different representations of data types in storage. While all general-purpose computers are able to carry out essentially the same functionality, the way they do it differs, and the corresponding assembly language must reflect these differences.
77187
77188 In addition, multiple sets of [[mnemonic|mnemonics]] or assembly-language syntax may exist for a single instruction set. In these cases, the most popular one is usually that used by the manufacturer in their documentation.
77189
77190 ==Machine instructions==
77191 Instructions in assembly language are generally very simple, unlike in a [[high-level language]]. Any instruction that references memory (for data or as a jump target) will also have an [[addressing mode]] to determine how to calculate the required memory address. More complex operations must be built up out of these simple operations. Some operations available in most instruction sets include:
77192 * moving
77193 ** set a [[processor register|register]] (a temporary &quot;scratchpad&quot; location in the CPU itself) to a fixed constant value
77194 ** move data from a memory location to a register, or vice versa. This is done to obtain the data to perform a computation on it later, or to store the result of a computation.
77195 ** read and write data from hardware devices
77196 * computing
77197 ** add, subtract, multiply, or divide the values of two registers, placing the result in a register
77198 ** perform [[bitwise operation]]s, taking the conjunction/disjunction (and/or) of corresponding bits in a pair of registers, or the negation (not) of each bit in a register
77199 ** compare two values in registers (for example, to see if one is less, or if they are equal)
77200 * affecting program flow
77201 ** jump to another location in the program and execute instructions there
77202 ** jump to another location if a certain condition holds
77203 ** jump to another location, but save the location of the next instruction as a point to return to (a ''call'')
77204
77205 Some computers include one or more &quot;complex&quot; instructions in their instruction set. A single &quot;complex&quot; instruction does something that may take many instructions on other computers. Such instructions are typified by instructions that take multiple steps, may issue to multiple functional units, or otherwise appear to be a design exception to the simplest instructions which are implemented for the given processor. Some examples of such instruction include:
77206
77207 * saving many registers on the stack at once
77208 * moving large blocks of memory
77209 * complex and/or floating-point arithmetic ([[sine]], [[cosine]], [[square root]], etc.)
77210 * performing an atomic [[test-and-set]] instruction
77211 * instructions that combine ALU with an operand from memory rather than a register
77212
77213 A form of complex instructions that has become particularly popular recently are [[SIMD]] operations that perform the same arithmetic operation to multiple pieces of data at the same time, which have appeared under various trade names beginning with [[MMX]] and [[AltiVec]].
77214
77215 The design of instruction sets is a complex issue, with a simpler instruction set (generally grouped under the concept [[RISC]]) perhaps offering the potential for higher speeds, while a more complex one (traditionally called [[CISC]]) may offer particularly fast implementations of common performance-demanding tasks, may use memory (and thus [[cache]]) more efficiently, and be somewhat easier to program directly in assembly. See [[instruction set]] for a fuller discussion of this point.
77216
77217 ==Assembly language directives==
77218 In addition to codes for machine instructions, assembly languages have extra directives for assembling blocks of data, and assigning address locations for instructions or code.
77219
77220 They usually have a simple symbolic capability for defining values as symbolic expressions which are evaluated at assembly time, making it possible to write code that is easier to read and understand.
77221
77222 Like most computer languages, comments can be added to the [[source code]]; these often provide useful additional information to human readers of the code but are ignored by the assembler and so may be used freely.
77223
77224 They also usually have an embedded [[macro language]] to make it easier to generate complex pieces of code or data.
77225
77226 In practice, the absence of comments and the replacement of symbols with actual numbers makes the human interpretation of disassembled code considerably more difficult than the original (high level) source would be.
77227
77228 ==Usage of assembly language==
77229 Historically, a large number of programs have been written entirely in assembly language. A classic example was the early IBM PC [[spreadsheet]] program [[Lotus 123]]. Even into the 1990s, the majority of console video games were written in assembly language, including most games written for the [[Sega Genesis]] and the [[Super Nintendo Entertainment System]]. The popular arcade game [[NBA Jam]] (1993) was also coded entirely using assembly language.
77230
77231 There is some debate over the continued usefulness of assembly language. It is often said that modern compilers can render higher-level languages into codes that run as fast as hand-written assembly, but counter-examples can be made, and there is no clear consensus on this topic. It is reasonably certain that, given the increase in complexity of modern processors, effective hand-optimization is increasingly difficult and requires a great deal of knowledge.
77232
77233 However, some discrete calculations can still be rendered into faster running code with assembly, and some [[Low-level programming language|low-level]] programming is actually easier to do with assembly. Some system-dependent tasks performed by [[operating system|operating systems]] simply cannot be expressed in high-level languages. In particular, assembly is often used in writing the low level interaction between the operating system and the hardware, for instance in [[device driver|device drivers]]. Many compilers also render high-level languages into assembly first before fully compiling, allowing the assembly code to be viewed for debugging and optimization purposes.
77234
77235 It's also common, especially in relatively low-level languages such as [[C programming language|C]], to be able to embed assembly language into the source code with special syntax. Programs using such facilities, such as the [[Linux kernel]], often construct abstractions where different assembly language is used on each platform the program supports, but it is called by portable code through a uniform interface.
77236
77237 Many [[embedded system|embedded systems]] are also programmed in assembly to obtain the absolute maximum functionality out of what is often very limited computational resources, though this is gradually changing in some areas as more powerful chips become available for the same minimal cost.
77238
77239 Another common area of assembly language use is in the system [[BIOS]] of a computer. This low-level code is used to initialize and test the system hardware prior to booting the OS and is stored in [[Read-only memory|ROM]]. Once a certain level of hardware initialization has taken place, code written in higher level languages can be used, but almost always the code running immediately after power is applied is written in assembly language. This is usually due to the fact that system [[RAM]] may not yet be initialized at power-up and assembly language can execute without explicit use of memory, especially in the form of a [[stack (computing)|stack]].
77240
77241 Assembly language is also valuable in [[reverse engineering]], since many programs are distributed only in machine code form, and machine code is usually easy to translate into assembly language and carefully examine in this form, but very difficult to translate into a higher-level language. Tools such as the [[Interactive Disassembler]] make extensive use of disassembly for such a purpose.
77242
77243 [[MenuetOS]], a floppy-based operating system with a fully functional GUI is written entirely in assembly. A 64bit version is also available. The author claims that only through assembly language could he produce his system in less than 1.4 megabytes.&lt;!-- Lots of systems are programmed in assembler; why is MenuetOS notable? Because MenuetOS is written ENTIRELY in assembly, that's why. --&gt;
77244
77245 ==Example listing of assembly language source code==
77246
77247 {| style=&quot;margin-left: 1em; margin-bottom: 0.5em; border: solid 1px&quot;
77248 |&amp;bull; '''Addr'''
77249 |&amp;bull; '''Label'''
77250 |&amp;bull; '''Instruction''' &amp;bull;
77251 |&amp;bull; '''Object code''' &amp;bull;
77252 |{{ref|Murdocca}}
77253 |-
77254 |
77255 |
77256 |&lt;tt&gt;.begin&lt;/tt&gt;
77257 |
77258 |-
77259 |
77260 |
77261 |&lt;tt&gt;.org 2048&lt;/tt&gt;
77262 |
77263 |-
77264 |
77265 |&lt;tt&gt;a_start&lt;/tt&gt;
77266 |&lt;tt&gt;.equ 3000&lt;/tt&gt;
77267 |
77268 |-
77269 |&amp;nbsp;&lt;tt&gt;2048&lt;/tt&gt;
77270 |
77271 |&lt;tt&gt;ld [length],&amp;r1&lt;/tt&gt;
77272 |&lt;tt&gt;11000010 00000000 00101000 00101100&lt;/tt&gt;
77273 |-
77274 |&amp;nbsp;&lt;tt&gt;2052&lt;/tt&gt;
77275 |
77276 |&lt;tt&gt;ld [address],%r2 &amp;nbsp;&lt;/tt&gt;
77277 |&lt;tt&gt;11000100 00000000 00101000 00110000&lt;/tt&gt;
77278 |-
77279 |&amp;nbsp;&lt;tt&gt;2056&lt;/tt&gt;
77280 |
77281 |&lt;tt&gt;addcc %r3,%r0,%r3 &amp;nbsp;&lt;/tt&gt;
77282 |&lt;tt&gt;10000110 10001000 11000000 00000000&lt;/tt&gt;
77283 |-
77284 |&amp;nbsp;&lt;tt&gt;2060&lt;/tt&gt;
77285 |&lt;tt&gt;loop:&lt;/tt&gt;
77286 |&lt;tt&gt;addcc %r1,%r1,%r0 &amp;nbsp;&lt;/tt&gt;
77287 |&lt;tt&gt;10000000 10001000 01000000 00000001&lt;/tt&gt;
77288 |-
77289 |&amp;nbsp;&lt;tt&gt;2064&lt;/tt&gt;
77290 |
77291 |&lt;tt&gt;be done&amp;nbsp;&lt;/tt&gt;
77292 |&lt;tt&gt;00000010 10000000 00000000 00000110&lt;/tt&gt;
77293 |-
77294 |&amp;nbsp;&lt;tt&gt;2068&lt;/tt&gt;
77295 |
77296 |&lt;tt&gt;addcc %r1,-4,%r1 &amp;nbsp;&lt;/tt&gt;
77297 |&lt;tt&gt;10000010 10000000 01111111 11111100&lt;/tt&gt;
77298 |-
77299 |&amp;nbsp;&lt;tt&gt;2072&lt;/tt&gt;
77300 |
77301 |&lt;tt&gt;addcc %r1,%r2,%r4 &amp;nbsp;&lt;/tt&gt;
77302 |&lt;tt&gt;10001000 10000000 01000000 00000010&lt;/tt&gt;
77303 |-
77304 |&amp;nbsp;&lt;tt&gt;2076&lt;/tt&gt;
77305 |
77306 |&lt;tt&gt;ld %r4,%r5 &amp;nbsp;&lt;/tt&gt;
77307 |&lt;tt&gt;11001010 00000001 00000000 00000000&lt;/tt&gt;
77308 |-
77309 |&amp;nbsp;&lt;tt&gt;2080&lt;/tt&gt;
77310 |
77311 |&lt;tt&gt;ba loop &amp;nbsp;&lt;/tt&gt;
77312 |&lt;tt&gt;00010000 10111111 11111111 11111011&lt;/tt&gt;
77313 |-
77314 |&amp;nbsp;&lt;tt&gt;2084&lt;/tt&gt;
77315 |
77316 |&lt;tt&gt;addcc %r3,%r5,%r3 &amp;nbsp;&lt;/tt&gt;
77317 |&lt;tt&gt;10000110 10000000 11000000 00000101&lt;/tt&gt;
77318 |-
77319 |&amp;nbsp;&lt;tt&gt;2088&lt;/tt&gt;
77320 |&lt;tt&gt;done:&lt;/tt&gt;
77321 |&lt;tt&gt;jmpl %r15+4,%r0 &amp;nbsp;&lt;/tt&gt;
77322 |&lt;tt&gt;10000001 11000011 11100000 00000100&lt;/tt&gt;
77323 |-
77324 |&amp;nbsp;&lt;tt&gt;2092&lt;/tt&gt;
77325 |&lt;tt&gt;length:&lt;/tt&gt;
77326 |&lt;tt&gt;20 &amp;nbsp;&lt;/tt&gt;
77327 |&lt;tt&gt;00000000 00000000 00000000 00010100&lt;/tt&gt;
77328 |-
77329 |&amp;nbsp;&lt;tt&gt;2096&lt;/tt&gt;
77330 |&lt;tt&gt;address:&lt;/tt&gt;
77331 |&lt;tt&gt;a_start &amp;nbsp;&lt;/tt&gt;
77332 |&lt;tt&gt;00000000 00000000 00001011 10111000&lt;/tt&gt;
77333 |-
77334 |
77335 |
77336 |&lt;tt&gt;.org a_start &amp;nbsp;&lt;/tt&gt;
77337 |
77338 |-
77339 |&amp;nbsp;&lt;tt&gt;3000&lt;/tt&gt;
77340 |&lt;tt&gt;a:&lt;/tt&gt;
77341 |&lt;tt&gt;25 &amp;nbsp;&lt;/tt&gt;
77342 |&lt;tt&gt;00000000 00000000 00000000 00011001&lt;/tt&gt;
77343 |-
77344 |&amp;nbsp;&lt;tt&gt;3004&lt;/tt&gt;
77345 |
77346 |&lt;tt&gt;-10 &amp;nbsp;&lt;/tt&gt;
77347 |&lt;tt&gt;11111111 11111111 11111111 11110110&lt;/tt&gt;
77348 |-
77349 |&amp;nbsp;&lt;tt&gt;3008&lt;/tt&gt;
77350 |
77351 |&lt;tt&gt;33 &amp;nbsp;&lt;/tt&gt;
77352 |&lt;tt&gt;00000000 00000000 00000000 00100001&lt;/tt&gt;
77353 |-
77354 |&amp;nbsp;&lt;tt&gt;3012&lt;/tt&gt;
77355 |
77356 |&lt;tt&gt;-5 &amp;nbsp;&lt;/tt&gt;
77357 |&lt;tt&gt;11111111 11111111 11111111 11111011&lt;/tt&gt;
77358 |-
77359 |&amp;nbsp;&lt;tt&gt;3016&lt;/tt&gt;
77360 |
77361 |&lt;tt&gt;7 &amp;nbsp;&lt;/tt&gt;
77362 |&lt;tt&gt;00000000 00000000 00000000 00000111&lt;/tt&gt;
77363 |-
77364 |
77365 |
77366 |&lt;tt&gt;.end &amp;nbsp;&lt;/tt&gt;
77367 |
77368 |-
77369 |}
77370
77371 Example of a selection of instructions (for a [[Universal Virtual Computer|virtual computer]] {{ref|wwwPOCA}}) with the
77372 corresponding [[Memory address|address]] in memory where each instruction will be placed. These addresses are not static, see [[memory management]].
77373 Accompanying each instruction is the generated (by the assembler) object code that coincides with the virtual computer's architecture (or [[Instruction set|ISA]]).
77374
77375 ==See also==
77376 * [[Assembler]]
77377
77378 ==Books==
77379 *[http://cs.smith.edu/~thiebaut/ArtOfAssembly/artofasm.html The Art of Assembly Language Programming], by [[Randall Hyde]]
77380 *[http://www.computer-books.us/assembler.php Computer-Books.us], Online Assembly Language Books
77381 *[http://www.drpaulcarter.com/pcasm/redir.php?file=pcasm-book-pdf.zip PC Assembly Language] by [[Dr Paul Carter]]; *[http://drpaulcarter.com/pcasm/ PC Assembly Tutorial using NASM and GCC] by Paul Carter
77382 *[http://savannah.nongnu.org/projects/pgubook/ Programming from the Ground Up] by Jonathan Bartlett
77383
77384 ==External links==
77385 {{Wikibookspar||Programming:Assembly}}
77386 *[http://www.menuetos.net/ MenuetOS - hobby Operating System for the PC written entirely in 64bit assembly language]
77387 * [http://home.comcast.net/~dtgm/asm_links.html List of resources; books, websites, newsgroups, and IRC channels]
77388 * [http://asm.sf.net Linux Assembly]
77389 * [http://www.int80h.org/ Unix Assembly Language Programming]
77390 * [http://c2.com/cgi/wiki?LearningAssemblyLanguage PPR: Learning Assembly Language]
77391 * [http://www.codeteacher.com CodeTeacher]
77392 * [http://www.azillionmonkeys.com/qed/asmexample.html Assembly Language Programming Examples]
77393 * [http://www.cs.cornell.edu/talc/ Typed Assembly Language (TAL)]
77394 * [http://www.grc.com/smgassembly.htm Authoring Windows Applications In Assembly Language]
77395 {{Major programming languages small}}
77396 [[Category:Assembly languages|*Assembly language]]
77397 [[Category:Programming languages]]
77398 &lt;!-- interwiki --&gt;
77399 [[bg:АŅĐĩĐŧĐąĐģĐĩŅ€]]
77400 [[cs:Assembler]]
77401 [[da:Assemblersprog]]
77402 [[de:Assemblersprache]]
77403 [[eo:Asembla lingvo]]
77404 [[es:Lenguaje ensamblador]]
77405 [[et:Assemblerkeel]]
77406 [[fi:Assembly (ohjelmointikieli)]]
77407 [[fr:Assembleur (langage)]]
77408 [[he:׊פ×Ē_ץ×Ŗ]]
77409 [[hr:Assembler]]
77410 [[it:Assembly]]
77411 [[ja:ã‚ĸã‚ģãƒŗブãƒĒ言čĒž]]
77412 [[ko:ė–´ė…ˆë¸”ëĻŦė–´]]
77413 [[nl:Programmeertaal Assembler]]
77414 [[no:Assembler]]
77415 [[pl:Asembler]]
77416 [[pt:Assembly]]
77417 [[ru:АŅŅĐĩĐŧĐąĐģĐĩŅ€]]
77418 [[sl:zbirnik (programski jezik)]]
77419 [[th:ā¸ ā¸˛ā¸Šā¸˛āšā¸­ā¸Ēāš€ā¸‹ā¸Ąā¸šā¸Ĩā¸ĩ]]
77420 [[zh:æą‡įŧ–č¯­č¨€]]</text>
77421 </revision>
77422 </page>
77423 <page>
77424 <title>Ambrosia</title>
77425 <id>1369</id>
77426 <revision>
77427 <id>42098456</id>
77428 <timestamp>2006-03-03T20:43:15Z</timestamp>
77429 <contributor>
77430 <username>Dan Austin</username>
77431 <id>347811</id>
77432 </contributor>
77433 <minor />
77434 <text xml:space="preserve">{{Otheruses|the food or drink of the gods}}
77435
77436 In ancient [[Greek mythology|mythology]], '''Ambrosia''' (Greek {{lang|el|&amp;#945;&amp;#787;&amp;#956;&amp;#946;&amp;#961;&amp;#959;&amp;#963;&amp;#953;&amp;#769;&amp;#945;}}) is sometimes the food,
77437 sometimes the drink, of the [[gods]]. The word has generally been derived from Greek ''a-'' (&quot;not&quot;) and ''mbrotos'' (&quot;mortal&quot;); hence the food or drink of the immortals. [[Thetis]] anointed the infant [[Achilles]] with ambrosia and passed the child through the fire to make him immortal&amp;mdash;a familiar [[Phoenicia]]n custom&amp;mdash;but [[Peleus]], appalled, stopped her. In ''[[Iliad]]'' xvi, [[Apollo]] washed the black blood from the corpse of [[Sarpedon]] and anointed it with ambrosia, readied for its dreamlike return to Sarpedon's native [[Lycia]]. The classical scholar [[Arthur Woollgar Verrall]], however, denied that there is any clear example in which the word ''ambrosios'' necessarily means ''immortal'', and preferred to explain it as &quot;fragrant,&quot; a sense which is always suitable. If so, the word may be derived from the [[Semitic languages|Semitic]] ''MBR'' (&quot;amber&quot;, compare &quot;[[ambergris]]&quot;) to which Eastern nations attribute miraculous properties. In Europe, honey-colored [[amber]], sometimes far from its natural source, was already a grave gift in [[Neolithic]] times and was still worn in the [[7th century CE]] as a talisman by [[Druidry|druidic]] [[Frisia|Frisians]], though St. [[Eligius]] warned &quot;No woman should presume to hang amber from her neck.&quot; [[W. H. Roscher]] thinks that both '''nectar''' and ambrosia were kinds of [[honey]], in which case their power of conferring immortality would be due to the supposed healing and cleansing power of honey, which is in fact aseptic, and because fermented honey ([[mead]]) preceded [[wine]] as an [[entheogen]] in the Aegean world: the Great Goddess of [[Crete]] on some Minoan seals had a [[bee]] face: compare [[Merope]] and [[Melissa]]. See also [[Ichor]].
77438
77439 One of the impieties of [[Tantalus]], according to [[Pindar]], was that he offered to his guests the ambrosia of the Deathless Ones, a theft akin to that of [[Prometheus]], [[Karl Kerenyi]] noted (in ''Heroes of the Greeks''). [[Circe]] mentioned to [[Odysseus]] that a flock of doves brought the ambrosia to Olympus.
77440
77441 Derivatively, the word ''Ambrosia'' (neuter plural) was given to certain festivals in honour of [[Dionysus]], probably because of the predominance of feasting in connection with them.
77442
77443 &quot;Ambrosia&quot; is related to the [[Hinduism|Hindu]] [[amrita]], a drink which conferred immortality on the gods.
77444
77445 In [[Greek mythology]], one of the [[Hyades (mythology)|Hyades]].
77446
77447 Many modern scholars, including Danny Staples, relate ambrosia to the [[Psychedelics, dissociatives and deliriants | hallucinogen]]ic mushroom ''[[Amanita muscaria]].''
77448
77449 ==References==
77450 *[[Carl A. P. Ruck|Ruck, Carl A.P.]] and [[Danny Staples]], ''The World of Classical Myth'' 1994, p. 26 et seq.
77451 *[http://47.1911encyclopedia.org/A/AM/AMBROSIA.htm ''EncyclopÃĻdia Britannica'' 1911]: Ambrosia
77452
77453 [[Category:Greek mythology]][[Category:Fictional beverages]]
77454
77455
77456 [[de:Ambrosia]]
77457 [[es:Ambrosía]]
77458 [[eo:Ambrozio]]
77459 [[fr:Ambroisie]]
77460 [[it:Ambrosia (mitologia)]]
77461 [[he:אמברוסיה]]
77462 [[lt:Ambrozija]]
77463 [[nl:Ambrozijn]]
77464 [[pt:AmbrÃŗsia]]
77465 [[sv:Ambrosia]]</text>
77466 </revision>
77467 </page>
77468 <page>
77469 <title>Ambrose</title>
77470 <id>1370</id>
77471 <revision>
77472 <id>41486638</id>
77473 <timestamp>2006-02-27T18:11:40Z</timestamp>
77474 <contributor>
77475 <username>Bhadani</username>
77476 <id>219828</id>
77477 </contributor>
77478 <minor />
77479 <comment>Reverted edits by [[Special:Contributions/66.195.132.2|66.195.132.2]] ([[User talk:66.195.132.2|talk]]) to last version by 65.30.184.44</comment>
77480 <text xml:space="preserve">{{dablink|For other people and things named '''Ambrose''', see [[Ambrose (disambiguation)]]}}
77481
77482 [[Image:AmbroseOfMilan.jpg|thumb|Saint Ambrose, mosaic in church St. Ambrogio, Milan]]
77483 Saint '''Ambrose''', ([[Latin]]: ''Sanctus Ambrosius''; [[Italian language|Italian]]: ''Sant'Ambrogio'') (c [[340]]&amp;ndash;[[4 April]] [[397]]), [[Roman Catholic Archdiocese of Milan|bishop of Milan]], was one of the most eminent bishops of the 4th century. Together with [[Augustine of Hippo]], [[Jerome]], and [[Gregory I]], he his counted one of the four [[doctors of the Church|doctors of the West]] of antique church history.
77484
77485 ==Life==
77486 ===Worldly career===
77487 [[Image:AmbroseStatue.png|thumb|left|Statue of St. Ambrose]]
77488 Ambrose was a citizen of [[Rome]], born about [[337]]&amp;ndash;[[340]] in [[Trier]], [[Germany]], into a Christian family. His father was prefect of [[Gallia Narbonensis]], his mother was a woman of intellect and piety. There is a legend that as an infant, a swarm of [[bee]]s settled on his face while he lay in his cradle, leaving behind a drop of [[honey]]. His father considered this a [[Christian symbolism|sign]] of his future [[eloquence]] and honeyed-tongue. For this reason, bees and [[beehive (beekeeping)|beehives]] often appear in the [[Saint symbology|saint's symbology]].
77489
77490 After the early death of his father, Ambrose was destined to follow his father's career, and was accordingly educated in Rome, studying [[literature]], [[law]] and [[rhetoric]]. [[Praetor]] [[Anicius Probus]] first gave him a place in the council and then made him about 372 [[consular prefect]] of [[Liguria]] and [[Emilia]], with headquarters at [[Milan]], which was then beside Rome the second capital in Italy. Ambrose made an excellent administrator in this important position and became soon very popular.
77491
77492 ===Bishop of Milan===
77493 The diocese of Milan was at the time, like the rest of the church, deeply divided in the contest between Trinitarians and Arians. In [[374]], [[Auxentius]], bishop of Milan, died, and the [[Nicene]] and [[Arianism|Arian]] parties contended for the [[succession]]. The prefect went personally to the basilica where the election should take place, to prevent an uproar which was probable in this crisis. His address was interrupted by a call &quot;Ambrose for bishop!&quot; which was taken up by others upon which he was univocally elected bishop.
77494
77495 Ambrose was a likely candidate in this situation, because he was known to Trinitarians as sympathizer, but also acceptable to Arians due to the theologically neutral position he took as politician. He himself refused at first energetically the office, for which he was in no way prepared - he was so far only [[catechumen]] with no theological training. Only by intervention of the emperor he gave in and got within a week baptism and ordination and was duly installed as bishop of [[Milan]].
77496
77497 As bishop, he immediately adopted an ascetic lifestyle, apportioned his money to the poor, settled his land on the church, making only provision for his sister [[Marcellina]], and committed the care of his family to his brother.
77498
77499 According to legend, Saint Ambrose immediately and forcefully stopped heresy in Milan. Actually, he moved more realistically and deliberately, as he had not many arguments against Arianism which dominated especially among the clerics and higher levels of society. He started to study the basics of theology with [[Simplician]], a [[presbyter]] of Rome. Using to advantage his excellent knowledge of Greek, which was then rare in the West, he studied the Bible and Greek authors like [[Philo]], [[Origenes]], [[Athanasius]] and [[Basil of Caesarea]], with whom he was also exchanging letters [http://www.ccel.org/ccel/schaff/npnf208.ix.cxcviii.html (See letter of Basil to Ambrose)]. He applied his new knowledge as preacher, concentrating especially on exegesis of the Old Testament and his impressive rhetorical abilities impressed Augustine of Hippo, who hitherto had thought poorly of Christian preachers.
77500
77501 ===Ambrose and Arians===
77502 In the confrontation with Arians, Ambrose applied theological and political means, using his eloquence as effectively as his political experience and his excellent political connections.
77503
77504 [[Gratianus|Gratian]], the son of the elder [[Valentinian I]], was Trinitarian; but the younger [[Valentinian II|Valentinian]], who had now become his colleague in the empire, adopted the opinions of the [[Arians]], and all the arguments and eloquence of Ambrose could not reclaim the young prince to the orthodox faith. [[Theodosius I]], the emperor of the East, also professed the [[Nicene]] belief; but there were many adherents of [[Arius]] throughout his dominions, especially among the higher clergy. In this distracted state of religious opinion, two leaders of the Arians, [[Palladius]] and [[Secundianus]], confident of numbers, prevailed upon [[Gratian]] to call a general council from all parts of the empire. This request appeared so equitable that he complied without hesitation; but Ambrose, foreseeing the consequence, prevailed upon the emperor to have the matter determined by a council of the Western bishops.
77505
77506 A [[synod]], composed of thirty-two bishops, was accordingly held at [[Aquileia]] in the year [[381]]. Ambrose was elected president; and Palladius, being called upon to defend his opinions, declined, insisting that the meeting was a partial one, and that, all the bishops of the empire not being present, the sense of the Christian church concerning the question in dispute could not be obtained. A vote was then taken, when Palladius and his associate Secundianus were deposed from the episcopal office.
77507
77508 The increasing strength of the Arians proved a formidable task for Ambrose. In [[384]] the young emperor and his mother [[Justina]], along with a considerable number of [[clergy]] and [[laity]], especially military, professing the Arian faith, requested from the bishop the use of two churches, one in the city, the other in the suburbs of [[Milan]].
77509
77510 Ambrose refused, and was required to answer for his conduct before the council. He went, attended by a numerous crowd of people, whose impetuous zeal so overawed the ministers of Valentinian that he was permitted to retire without making the surrender of the churches. The day following, when he was performing divine service in the basilica, the prefect of the city came to persuade him to give up at least the Portian church in the suburbs. As he still continued obstinate, the court proceeded to violent measures: the officers of the household were commanded to prepare the [[Basilica]] and the Portian [[church]]es to celebrate divine service upon the arrival of the emperor and his mother at the ensuing [[festival]] of [[Easter]].
77511
77512 Perceiving the growing strength of the [[prelate]]'s interest, the court deemed it prudent to restrict its demand to the use of one of the churches. But all entreaties proved in vain, and drew forth the following characteristic declaration from the bishop:
77513 :&quot;If you demand my person, I am ready to submit: carry me to [[prison]] or to [[death]], I will not resist; but I will never betray the church of [[Jesus|Christ]]. I will not call upon the people to succour me; I will die at the foot of the [[altar]] rather than desert it. The tumult of the people I will not encourage: but [[God]] alone can appease it.&quot;
77514
77515 Circumstances never actually tried Ambrose's courage to this degree.
77516
77517 ===Ambrose and emperors===
77518 [[Image:AmbroseTheodosiusVanDyck.jpg|thumb|300px|van Dyck: Saint Ambrose and emperor Theodosius]]
77519 If the imperial court was displeased with the religious principles and conduct of Ambrose, it respected his great political talents; and when necessity required, his aid was solicited and generously granted. When [[Magnus Maximus]] usurped the supreme power in [[Gaul]], and was meditating a descent upon Italy, Valentinian sent Ambrose to dissuade him from the undertaking, and the embassy was successful.
77520
77521 On a second attempt of the same kind Ambrose was again employed; and although he was unsuccessful, it cannot be doubted that, if his advice had been followed, the schemes of the usurper would have proved abortive; but the enemy was permitted to enter [[Italy]]; and [[Milan]] was taken. Justina and her son fled; but Ambrose remained at his post, and did good service to many of the sufferers by causing the plate of the church to be melted for their relief.
77522
77523 Ambrose was equally zealous in combating the attempt made by the upholders of the old state religion to resist the enactments of Christian emperors. The pagan party was led by [[Quintus Aurelius Symmachus]], consul in [[391]], who presented to [[Valentinian II]] a forcible but unsuccessful petition praying for the restoration of the [[Altar of Victory]] to its ancient station in the hall of the [[Roman Senate]], the proper support of seven [[Vestal Virgin]]s, and the regular observance of the other pagan ceremonies.
77524
77525 To this petition Ambrose replied in a letter to Valentinian, arguing that the devoted worshippers of [[idolatry|idols]] had often been forsaken by their [[list of deities|deities]]; that the native valour of the Roman soldiers had gained their victories, and not the pretended influence of pagan [[priest]]s; that these idolatrous worshippers requested for themselves what they refused to Christians; that voluntary was more honourable than constrained [[virginity]]; that as the Christian ministers declined to receive temporal emoluments, they should also be denied to pagan priests; that it was absurd to suppose that [[God]] would inflict a famine upon the empire for neglecting to support a religious system contrary to His will as revealed in the [[Holy Scripture]]s; that the whole process of nature encouraged innovations, and that all nations had permitted them even in religion; that heathen sacrifices were offensive to Christians; and that it was the duty of a Christian prince to suppress pagan ceremonies. In the epistles of Symmachus and of Ambrose both the petition and the reply are preserved.
77526
77527 The turn of mind of Ambrose, and his rhetorical application of apparently logical processes are well displayed in his 40th and 41st ''Epistles''. A bishop was accused of instigating the burning of a synagogue by an [[anti-Semitism|anti-Semitic]] mob, and Emperor Theodosius was preparing to order the bishop to rebuild it. Ambrose discouraged the Emperor from taking this step, not that the bishop in question had never encouraged fanatic destruction, but on the grounds that it would appear to show favoritism to the [[Jew]]s. He adduces recent instances of inaction: when houses of various wealthy individuals were burned in Rome; when the house of the Bishop of [[Constantinople]] was burnt; when several Christian basilicas were burnt during the reign of [[Julian the Apostate|Julian]], some of which were still not rebuilt, an action Ambrose attributes to the Jews. Ambrose asks that Christian monies not be used to build a place of worship for unbelievers, [[heretic]]s or Jews, and he reminds Theodosius that some Christian laity had said of Emperor [[Maximus]], &quot;he has become a Jew&quot; because of the edict Maximus issued regarding the burning of a Roman synagogue. Ambrose did not oppose punishing those directly responsible for burning the synagogue.
77528
77529 To support the logic of his argument, Ambrose halted the celebration of the [[Eucharist]], essentially holding the Christian community hostage, until Theodosius agreed to abort the investigation without requiring reparations to be made by the bishop.
77530
77531 [[Theodosius I]], the emperor of the East, espoused the cause of Justina, and regained the kingdom. Theodosius was threateded with excommunication by Ambrose for the massacre of 7,000 persons at [[Thessalonika|Thessalonica]] in [[390]], and was bidden imitate [[David]] in his repentance as he had imitated him in guilt - Ambrose readmitted the emperor only after several months of penance to the Eucharist. This incident shows the strong position of a bishop in the Western part of the empire, even when facing a strong emperor - the controversy of [[John Chrysostom]] with a much weaker emperor a few years later in Constantinople lead to a crushing defeat of the bishop.
77532
77533 Ambrose's influence upon Theodosius is credited with eliciting the enactment of the &quot;Theodosian decrees&quot; of [[391]] (see entry [[Theodosius I]], which are more characteristic of the constant agenda of Ambrose than of Theodosius.
77534
77535 In [[392]], after the assassination of [[Valentinian II]] and the usurpation of [[Eugenius]], Ambrose fled from Milan; but when Theodosius was eventually victorious, he supplicated the emperor for the pardon of those who had supported Eugenius. Soon after acquiring the undisputed possession of the [[Roman empire]], Theodosius died at Milan in [[395]], and two years later ([[April 4]], [[397]]) Ambrose also passed away. He was succeeded as bishop of Milan by [[Simplician]]. Ambrose's body may still be viewed in the church of S. Ambrogio in Milan, where it has been continuously venerated &amp;#8212; along with the bodies identified in his time as being those of Sts. Gervase and Protase &amp;#8212; and is one of the oldest extant bodies of historical personages known outside [[Egypt]].
77536
77537 ===Character===
77538 Many circumstances in the history of Ambrose are characteristic of the general spirit of the times. The chief causes of his victory over his opponents were his great popularity and the reverence paid to the episcopal character at that period. But it must also be noted that he used several indirect means to obtain and support his authority with the people.
77539
77540 He was liberal to the [[poor]]; it was his custom to comment severely in his preaching on the public characters of his times; and he introduced popular reforms in the order and manner of public worship. It is alleged, too, that at a time when the influence of Ambrose required vigorous support, he was admonished in a dream to search for, and found under the pavement of the church, the remains of two [[martyr|martyrs]], [[Gervasius]] and [[Protasius]]. The applause of the people was mingled with the derision of the court party.
77541
77542 ==Theology==
77543 Though ranking with [[Augustine of Hippo|Augustine]], [[Jerome]], and [[Gregory the Great]], as one of the [[Latin]] [[Doctor of the Church|Doctors of the Church]], he is most naturally compared with [[Hilary]], whom he surpasses in administrative excellence as much as he falls below him in [[theology|theological]] ability. Even here, however, his achievements are of no mean order, especially when we remember his juridical training and his comparatively late handling of [[Biblical]] and [[doctrinal]] subjects.
77544
77545 His great spiritual successor, [[Augustine of Hippo|Augustine]], whose conversion was helped by Ambrose's [[sermon]]s, owes more to him than to any writer except [[Paul of Tarsus|Paul]].
77546
77547 Ambrose's intense episcopal consciousness furthered the growing [[doctrine]] of the Church and its [[sacerdotal]] ministry, while the prevalent [[asceticism]] of the day, continuing the [[Stoicism|Stoic]] and [[Cicero]]nian training of his youth, enabled him to promulgate a lofty standard of Christian [[ethics]]. Thus we have the ''De officiis ministrorum'', ''De viduis'', ''De virginitate'' and ''De paenitentia''.
77548
77549 ==Writings==
77550 In matters of [[exegesis]] he is, like Hilary, an [[Alexandrian]]. In [[dogma]] he follows [[Basil of Caesarea]] and other Greek authors, but nevertheless gives a distinctly Western cast to the speculations of which he treats. This is particularly manifest in the weightier emphasis which he lays upon human [[sin]] and [[divine grace]], and in the place which he assigns to [[faith]] in the individual Christian life.
77551
77552 * ''De fide ad Gratianum Augustum''
77553 * ''De Spiritu Sancto''
77554 * ''De incarnationis Dominicae sacramento''
77555 * ''De mysteriis''
77556 * homiletic commentaries on the early [[Old Testament]] narratives, e.g., the ''[[Hexaemeron]]'' (Creation) and [[Abraham]], some of the ''[[Psalms]]'', and the ''[[Gospel according to Luke]]''.
77557 * several funeral orations
77558 * 91 letters
77559 * ''[[Ambrosiaster]]'' or the &quot;pseudo-Ambrose&quot; is a brief commentary on Paul's ''Epistles'', which was long attributed to Ambrose. See [[Ambrosiaster]].
77560
77561 ==Church Music==
77562 Catching the impulse from [[Hilary of Arles|Hilary]] and confirmed in it by the success of Arian [[psalmody]], Ambrose composed several [[hymn]]s, marked by dignified simplicity, which were not only effective in themselves but served as a fruitful model for later times. Each of these hymns has eight four-line [[stanza]]s and is written in strict iambic tetrameter.
77563
77564 *''Deus Creator Omnium''
77565 *''Aeterne rerum conditor''
77566 *''Jam surgit hora tertia''
77567 *''Veni redemptor gentium'' (a [[Christmas]] hymn)
77568
77569 *[http://www.geocities.com/hashanayobel/christwrit/hymns.htm Text of some Ambrosian Hymns]
77570
77571 St. Ambrose is considered as the first who introduced the [[Antiphon|antiphonant]] method of chanting, or one side of the choir alternately responding to the other; from whence that particular mode obtained the name of the &quot;[[chant]],&quot; while the [[plainsong]], introduced by [[Pope Gregory I|St. Gregory]], still practised in the Romish service, is called the &quot;[[Gregorian chant|Gregorian]],&quot; or &quot;[[Romish chant]].&quot; The works of St. Ambrose continue to be held in much respect, particularly the hymn of ''[[Te Deum]]'', which he is said to have composed when he baptised [[Augustine of Hippo|Saint Augustine]], his celebrated convert.
77572
77573 ==Ambrose and reading==
77574 Ambrose is the subject of a curious anecdote in [[Augustine of Hippo|Augustine]]'s ''Confessions'' which bears on the history of [[reading (activity)|reading]]:
77575
77576 :''When [Ambrose] read, his eyes scanned the page and his heart sought out the meaning, but his voice was silent and his tongue was still. Anyone could approach him freely and guests were not commonly announced, so that often, when we came to visit him, we found him reading like this in silence, for he never read aloud.''
77577
77578 The extraordinary aspect of this passage, of course, is that Augustine felt it noteworthy that Ambrose could read silently, implying that hardly anyone else could at the time.
77579
77580 [[Alvin Toffler]] also quotes this story in [[Powershift]]
77581 :''&quot;...Saint Augustine, writing in the 5th century, refers to his mentor, Saint Ambrose, the Bishop of Milan, who was so learned that he could actually read without moving his lips. For this astonishing feat he was regarded as the brainiest person in the world.&quot;''
77582
77583
77584 For more on silent reading, see ''A History of Reading'' by Albert Manguel, Chapter 2, posted on line [http://www.stanford.edu/class/history34q/readings/Manguel/Silent_Readers.html here].
77585
77586 ==See also==
77587 *[[Ambrosians]]
77588
77589 Several religious brotherhoods which have sprung up in and around Milan at various times since the [[14th century]] have been called Ambrosians. Their connection to Ambrose is tenuous.
77590
77591 == External links ==
77592 *[http://www.earlychristianwritings.com/fathers/ambrose_letters_00_intro.htm Early Christian writings: Letters of St. Ambrose of Milan]
77593 *[http://www.ccel.org/fathers2/NPNF2-10/TOC.htm Christian Classics Ethereal Library, Works of Ambrose of Milan]
77594 *[http://www.fh-augsburg.de/~harsch/amb_hy00.html Hymni Ambrosii (latin)]
77595 *[http://www.earlychurch.org.uk/ambrose.php EarlyChurch.org.uk] Extensive bibliography.
77596
77597 ==References==
77598 *{{1911}}
77599
77600 [[category:Church Fathers]]
77601 [[Category:340s births]]
77602 [[Category:397 deaths]]
77603 [[Category:Saints]]
77604 [[Category:Ancient Roman Christianity]]
77605 [[Category:Late Antiquity]]
77606 [[Category:Doctors of the Church]]
77607
77608 [[de:Ambrosius von Mailand]]
77609 [[es:Ambrosio]]
77610 [[fr:Ambroise de Milan]]
77611 [[ko:ė•”ë¸ŒëĄœė‹œėš°ėŠ¤]]
77612 [[id:Santo Ambrosius]]
77613 [[it:Sant'Ambrogio]]
77614 [[he:אמברוזיוס]]
77615 [[la:Ambrosius]]
77616 [[hu:Szent Ambrus]]
77617 [[nl:Ambrosius]]
77618 [[ja:ã‚ĸãƒŗブロジã‚Ļã‚š]]
77619 [[pl:Święty AmbroÅŧy]]
77620 [[pt:AmbrÃŗsio de MilÃŖo]]
77621 [[ro:Ambrozie]]
77622 [[sk:Ambrosius]]
77623 [[fi:Ambrosius]]
77624 [[sv:Ambrosius av Milano]]</text>
77625 </revision>
77626 </page>
77627 <page>
77628 <title>Ambracia</title>
77629 <id>1371</id>
77630 <revision>
77631 <id>40205144</id>
77632 <timestamp>2006-02-18T23:16:20Z</timestamp>
77633 <contributor>
77634 <username>Deville</username>
77635 <id>364144</id>
77636 </contributor>
77637 <minor />
77638 <comment>Disambiguate [[Epirus]] to [[Epirus (region)]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
77639 <text xml:space="preserve">'''Ambracia''' (more correctly '''Ampracia''') was an ancient [[Corinth, Greece|Corinthian]] colony, situated about 7 miles from the [[Ambracian Gulf]] in [[Greece]], on a bend of the navigable river Aracthus (or Aratthus), in the midst of a fertile wooded plain.
77640
77641 It was founded between [[650 BC|650]] and [[625 BC]] by [[Gorgus]], son of the Corinthian tyrant [[Cypselus]]. After the expulsion of Gorgus's son [[Periander]] its government developed into a strong democracy. The early policy of Ambracia was determined by its loyalty to Corinth (for which it probably served as an entrepot in the [[Epirus (region)|Epirus]] trade), its consequent aversion to [[Corcyra]], and its frontier disputes with the Amphilochians and Acarnanians. Hence it took a prominent part in the [[Peloponnesian War]] until the crushing defeat at [[Idomene]] ([[426 BC|426]]) crippled its resources.
77642
77643 In the [[4th century BC|4th century]] it continued its traditional policy, but in [[338 BC|338]] surrendered to [[Philip II of Macedon]]. After forty-three years of autonomy under [[Macedon]]ian suzerainty it became the capital of [[Pyrrhus of Epirus|Pyrrhus]], king of Epirus, who adorned it with palace, temples and theatres. In the wars of [[Philip V of Macedon]] and the Epirotes against the [[Aetolia]]n league ([[220 BC|220]]-[[205 BC|205]]) Ambracia passed from one alliance to the other, but ultimately joined the latter confederacy. During the struggle of the Aetolians against [[Roman Republic|Rome]] it stood a stubborn [[siege]].
77644
77645 After its capture and plunder by [[M. Fulvius Nobilior]] in [[189 BC|189]], it fell into insignificance. The foundation by [[Augustus Caesar|Augustus]] of [[Nicopolis]], into which the remaining inhabitants were drafted, left the site desolate. In [[Byzantine Empire|Byzantine]] times a new settlement took its place under the name of Arta. Some fragmentary walls of large, well-dressed blocks near this latter town indicate the early prosperity of Ambracia.
77646
77647 {{1911}}
77648
77649 [[Category:Corinthian colonies]]
77650 [[fr:Ambracie]]</text>
77651 </revision>
77652 </page>
77653 <page>
77654 <title>Amber</title>
77655 <id>1372</id>
77656 <revision>
77657 <id>40267394</id>
77658 <timestamp>2006-02-19T10:21:31Z</timestamp>
77659 <contributor>
77660 <ip>71.112.165.14</ip>
77661 </contributor>
77662 <comment>/* History */</comment>
77663 <text xml:space="preserve">{{otheruses}}
77664
77665 [[image:amber.pendants.800pix.050203.jpg|thumb|250px|Amber pendants. The oval pendant is 52 by 32 mm (2 by 1.3 inches).]]
77666 '''Amber''' is a [[fossil]] [[resin]] much used for the manufacture of ornamental objects. Although not mineralized it is sometimes considered and used as a [[gemstone]]. Most of the world's amber is in the range of 30&amp;ndash;90 million years old. Semi-fossilized resin or sub-fossil amber is called [[copal]]
77667 ==History==
77668
77669 The name comes from the [[Arabic language|Arabic]] &amp;#1593;&amp;#1606;&amp;#1576;&amp;#1585;, ''&amp;#699;anbar'', probably through [[Spanish language|Spanish]], but this word referred originally to [[ambergris]], which is an animal substance quite distinct from yellow amber. True amber has sometimes been called ''kahroba'', a word of [[Persian Language|Persian]] derivation signifying &quot;that which attracts straw&quot;, in allusion to the power which amber possesses of acquiring an electric charge by friction. This property, first recorded by [[Thales|Thales of Miletus]], suggested the word &quot;[[electricity]]&quot;, from the [[Greek language|Greek]], ''[[electrum|elektron]]'', a name applied, however, not only to amber but also to an [[alloy]] of [[gold]] and [[silver]]. By [[Latin]] writers amber is variously called ''[[electrum]]'', ''sucinum'' (''succinum''), and ''glaesum'' or ''glesum''. The [[Hebrew language|Old Hebrew]] &amp;#1495;&amp;#1513;&amp;#1502;&amp;#1500; ''hashmal'' seems to have meant amber, although Modern Hebrew uses Arabic-inspired &amp;#1506;&amp;#1504;&amp;#1489;&amp;#1512; ''`inbar''. The [[German language|German]] word is ''Bernstein''.
77670
77671 Amber, which has no primitive uses, has been found at [[Neolithic]] sites far from its source on the shores of the [[Baltic sea]], mute witness, like [[obsidian]], to long-distance trade routes established before the [[Bronze Age]]. There is strong evidence for the theory that the Baltic coasts during the advanced civilization of the [[Nordic Bronze Age]] was the source of most amber in Europe, for example the amber jewelry found in graves from [[Mycenaean Greece]] has been found to originate from the Baltic Sea. Amber was mentioned by [[Homer]], [[Aristotle]], [[Plato]] and others. [[Pliny the Elder]] complains that a small statue of amber costs more than a healthy slave. [[Tacitus]] in his ''[[Germania (book)|Germania]]'' talks about the [[Aesti]] people as the only ones to gather amber from the [[Baltic Sea]].
77672
77673 During the 14th century, the [[Teutonic Knights]] controlled the production of amber in Europe, forbidding its unauthorised collection from beaches on the Baltic coastline under their jurisdiction, and punishing breakers of this ordinance with death.
77674
77675 ==Composition==
77676
77677 Amber is [[heterogeneous]] in composition, but consists of several [[resin]]ous bodies more or less soluble in [[ethanol|alcohol]], [[diethyl ether|ether]] and [[chloroform]], associated with an insoluble [[Bitumen|bituminous]] substance. Amber is a [[macromolecule]] by free [[radical polymerization]] of several precursors in the labdane family, communic acid, cummunol and biformene {{Ref|1}}. Labdanes are tetrameric [[terpene]]s (C&lt;sub&gt;20&lt;/sub&gt;H&lt;sub&gt;32&lt;/sub&gt;) and trienes which means that the organic skeleton has three [[alkene]] groups available for [[polymerization]]. As amber matures over the years, more polymerization will take place as well as [[isomerization]] reactions, [[Cross-link|crosslinking]] and cyclization. The average composition of amber leads to the general formula [[Carbon|C]]&lt;sub&gt;10&lt;/sub&gt;[[Hydrogen|H]]&lt;sub&gt;16&lt;/sub&gt;[[Oxygen|O]].
77678
77679 Heating amber will soften it and eventually it will burn, which is why the [[German language|German]] word for amber is ''bernstein''. Heated rather below 300°C, amber suffers decomposition, yielding an &quot;oil of amber&quot;, and leaving a black residue which is known as &quot;amber colophony&quot;, or &quot;amber pitch&quot;; when dissolved in oil of [[turpentine]] or in [[linseed oil]] this forms &quot;amber varnish&quot; or &quot;amber lac&quot;.
77680
77681 True amber yields on dry distillation [[succinic acid]], the proportion varying from about 3 to 8%, and being greatest in the pale opaque or ''bony'' varieties. The aromatic and irritating fumes emitted by burning amber are mainly due to this acid. True Baltic amber is distinguished by its
77682 yield of succinic acid, for many of the other fossil resins which are often termed amber contain either none of it, or only a very small proportion; hence the name ''succinite'' proposed by Professor [[James Dwight Dana]], and now commonly used in scientific writings as a specific term for the real Prussian amber. Succinite has a hardness between 2 and 3, which is rather greater than that of many other fossil resins. Its specific gravity varies from 1.05 to 1.10. An effective tool for Amber analysis is [[IR spectroscopy]]. It enables the distinction between baltic amber and non-Baltic varieties because of a specific [[carbonyl]] absorption and it can also detect the relative age of an amber sample.
77683
77684 == Amber in Geology ==
77685 The Baltic amber or succinite is found as irregular nodules in a marine glauconitic sand, known as ''blue earth,'' occurring in the Lower [[Oligocene]] strata of [[Sambia (Baltic)|Sambia]] in [[Kaliningrad Oblast]], where it is now systematically mined. It appears, however, to have been partly derived from yet earlier [[Tertiary]] deposits ([[Eocene]]); and it occurs also as a derivative [[mineral]] in later formations, such as the drift. Relics of an abundant flora occur as inclusions trapped within the amber while the resin was yet fresh, suggesting relations with the flora of Eastern [[Asia]] and the southern part of [[North America]]. [[H. R. Goppert]] named the common amber-yielding pine of the Baltic forests ''Pinites succiniter'', but as the wood, according to some authorities, does not seem to differ from that of the existing genus it has been also called ''Pinius succinifera''. It is improbable, however, that the production of amber was limited to a single species; and indeed a large number of conifers belonging to different genera are represented in the amber-flora.&lt;!--antique text--&gt;
77686
77687 ==Amber inclusions ==
77688 [[image:amber.insect.800pix.050203.jpg|thumb|250px|An insect trapped in amber. The amber piece is 10 mm (0.4 inches) long. In the enlarged picture, the insect's antennae are easily seen.]]
77689
77690 The resin contains, in addition to the beautifully preserved plant-structures, numerous remains of insects, spiders, annelids, crustaceans and other small organisms which became enveloped while the exudation was fluid. In most cases the organic structure has disappeared, leaving only a cavity, with perhaps a trace of [[chitin]]. Even hair and feathers have occasionally been represented among the enclosures. Fragments of wood frequently occur, with the tissues well-preserved by impregnation with the resin; while leaves, flowers and fruits are occasionally found in marvellous perfection. Sometimes the amber retains the form of drops and stalactites, just as it exuded from the ducts and receptacles of the injured trees. The abnormal development of resin has been called ''succinosis''. Impurities are quite often present, especially when the resin dropped on to the ground, so that the material may be useless except for varnish-making, whence the impure amber is called ''firniss''. Enclosures of [[pyrites]] may give a bluish colour to amber. The so-called ''black amber'' is only a kind of [[Jet (lignite)|jet]]. ''Bony amber'' owes its cloudy opacity to minute bubbles in the interior of the resin. In the [[Dominican Republic]] exists a type of amber known as the [[Blue Amber]].
77691
77692 ==Locations and utilization==
77693
77694 Although amber is found along the shores of a large part of the [[Baltic Sea]] and the [[North Sea]], the great amber-producing country is the promontory of [[Samland]], now part of [[Russia]]. Pieces of amber torn from the sea-floor are cast up by the waves, and collected at ebb-tide. Sometimes the searchers wade into the sea, furnished with nets at the end of long poles, by means of which they drag in the sea-weed containing entangled masses of amber; or they dredge from boats in shallow water and rake up amber from between the boulders. Divers have been employed to collect amber from the deeper waters. Systematic dredging on a large scale was at one time carried on in the Kurisches Haff by Messrs Stantien and Becker, the great amber merchants of [[Kaliningrad|KÃļnigsberg]]. At the present time extensive mining operations are conducted in quest of amber. The ''pit amber'' was formerly dug in open works, but is now also worked by underground galleries. The nodules from the ''blue earth'' have to be freed from matrix and divested of their opaque crust, which can be done in revolving barrels containing sand and water. The sea-worn amber has lost its crust, but has often acquired a dull rough surface by rolling in sand.
77695
77696 Amber is extensively used for beads and other ornaments, and for cigar-holders and the mouth-pieces of pipes. It is regarded by the [[Turkey|Turks]] as specially valuable, inasmuch as it is said to be incapable of transmitting infection as the pipe passes from mouth to mouth. The variety most valued in the East is the pale straw-coloured, slightly cloudy amber. Some of the best qualities are sent to [[Vienna]] for the manufacture of smoking appliances. In working amber, it is turned on the [[Lathe (tool)|lathe]] and polished with whitening and water or with rotten stone and oil, the final lustre being given by friction with flannel. During the working much electricity is developed.
77697
77698 When gradually heated in an oil-bath, amber becomes soft and flexible. Two pieces of amber may be united by smearing the surfaces with [[linseed oil]], heating them, and then pressing them together while hot. Cloudy amber may be clarified in an oil-bath, as the oil fills the numerous [[pore]]s to which the turbidity is due. Small fragments, formerly thrown away or used only for varnish, are now utilized on a large scale in the formation of &quot;ambroid&quot; or &quot;pressed amber&quot;. The pieces are carefully heated with exclusion of air and then compressed into a uniform mass by intense hydraulic pressure; the softened amber being forced through holes in a metal plate. The product is extensively used for the production of cheap jewellery and articles for smoking. This pressed amber yields brilliant interference colours in polarized light. Amber has often been imitated by other resins like [[copal]] and [[kauri]], as well as by [[celluloid]] and even [[glass]]. True amber is sometimes coloured artificially.
77699
77700 Amber was much valued as an ornamental material in very early times. It has been found in [[Mycenae]]an tombs; it is known from lake-dwellings in [[Switzerland]], and it occurs with [[neolithic]] remains in [[Denmark]], whilst in [[England]] it is found with interments of the [[bronze age]]. A remarkably fine cup turned in amber from a bronze-age [[tumulus|barrow]] at [[Hove]] is now in the [[Brighton Museum]]. Beads of amber occur with [[Anglo-Saxon]] relics in the south of England; and up to a comparatively recent period the material was valued as an [[amulet]]. It is still believed to possess a certain medicinal virtue.
77701
77702 Rolled pieces of amber, usually small but occasionally of very large size, may be picked up on the east coast of England, having probably been washed up from deposits under the North Sea. [[Cromer]] is the best-known locality, but it occurs also on other parts of the [[Norfolk, England|Norfolk]] coast, as well as at [[Great Yarmouth]], [[Southwold]], [[Aldeburgh]] and [[Felixstowe]] in [[Suffolk]], and as far south as [[Walton-on-the-Naze]] in [[Essex, England|Essex]], whilst northwards it is not unknown in [[Yorkshire]]. On the other side of the North Sea, amber is found at various localities on the coast of the [[Netherlands]] and Denmark. On the shores of the Baltic it occurs not only on the German and Polish coast but in the south of [[Sweden]], in [[Bornholm]] and other islands, and in southern [[Finland]]. Amber has indeed a very wide distribution, extending over a large part of northern Europe and occurring as far east as the [[Urals]]. Some of the amber districts of the Baltic and North Sea were known in prehistoric times, and led to early trade with the south of Europe. Amber was carried to [[Olbia]] on the [[Black Sea]], Massilia (today [[Marseille]]) on the [[Mediterranean]], and [[Hatria]] at the head of the [[Adriatic]]; and from these centres it was distributed over the [[Hellenic]] world.
77703
77704 The [[Amber Room]] was a collection of chamber wall panels commissioned in [[1701]] for the king of [[Prussia]], then given to Tsar [[Peter I of Russia|Peter the Great]]. The room was hidden in place from invading [[Nazi]] forces in 1941, who upon finding it in the Cathrine Palace, disassembled it and moved it to [[Kaliningrad|KÃļnigsberg]]. What happened to the room beyond this point is unclear. It is presumed lost. It was [http://news.bbc.co.uk/2/hi/europe/3025833.stm re-created in 2003].
77705
77706 [[Image:amberroomdetail.jpg|thumb|250px|The [[Amber Room]] was reconstructed from the [[Kaliningrad]] amber.]]
77707
77708 Amber and certain similar substances are found to a limited extent at several localities in the [[United States]], as in the green-sand of [[New Jersey]], but they have little or no economic value. A fluorescent amber occurs in the southern state of Chiapas in [[Mexico]], and is used extensively to create eye-catching jewellery. Blue amber is recorded in the [[Dominican Republic]]. These Central American ambers are formed from the resins of Legume trees (Hymenea) and not conifers.
77709
77710 ==Varieties==
77711
77712 Besides succinite, which is the common variety of European amber, the following varieties also occur:
77713
77714 * Gedanite, or ''brittle amber,'' closely resembling succinite, but much more brittle, not quite so hard, with a lower melting point and containing no succinic acid. It is often covered with a white powder easily removed by wiping. The name comes from Gedanum, the Latin name of [[Gda&amp;#324;sk]] at the [[Baltic Sea]].
77715 * Stantienite, a brittle, deep brownish-black resin, destitute of succinic acid.
77716
77717 * Beckerite, a rare amber in earthy-brown nodules, almost opaque, said to be related in properties to gutta-percha.
77718
77719 * Glessite, a nearly opaque brown resin, with numerous microscopic cavities and dusty enclosures, named from glesum, an old name for amber.
77720
77721 * Krantzite, a soft amber-like resin, found in the lignites of [[Saxony]].
77722
77723 * Allingite, a [[fossil]] resin allied to succinite, from Switzerland.
77724
77725 * Roumanite, or Romanian amber, a dark reddish resin, occurring with lignite in Tertiary deposits. The nodules are penetrated by cracks, but the material can be worked on the lathe. [[Sulfur|Sulphur]] is present to the extent of more than 1%, whence the smell of sulphuretted hydrogen when the resin is heated. According to [[Gheorghe Murgoci]] the Romanian amber is true succinite.
77726
77727 * Simetite, or Sicilian amber, takes its name from the river [[Simeto]] or [[Giaretta]]. It occurs in [[Miocene]] deposits and is also found washed up by the sea near [[Catania]]. This beautiful material presents a great diversity of tints, but a rich hyacinth red is common. It is remarkable for its fluorescence, which in the opinion of some authorities adds to its beauty. Amber is also found in many localities in [[Emilia]], especially near the sulphur-mines of [[Cesena]]. It has been conjectured that the ancient [[Etruscan civilization|Etruscan]] ornaments in amber were wrought in the Italian material, but it seems that amber from the Baltic reached the Etruscans at Hatria. It has even been supposed that amber passed from [[Sicily]] to northern Europe in early times - a supposition said to receive some support from the fact that much of the amber dug up in Denmark is red; but it must not be forgotten that reddish amber is found also on the Baltic, though not being fashionable it is used rather for varnish-making than for ornaments. Moreover, yellow amber after long burial is apt to acquire a reddish colour. The amber of Sicily seems not to have been recognized in ancient times, for it is not mentioned by local authorities like [[Diodorus Siculus]].
77728
77729 * Burmite is the name under which the Burmese amber is now described. Until the British occupation of [[Burma]] but little was known as to its occurrence, though it had been worked for centuries and was highly valued by the natives and by the Chinese. It is found in fiat rolled pieces, irregularly distributed through a blue clay probably of Miocene age. It occurs in the [[Hukawng]] valley, in the [[Nangotaimaw]] hills, where it is irregularly worked in shallow pits. The mines were visited some years ago by Dr [[Fritz Noetling]], and the mineral has been described by Dr [[Otto Helm]]. The Burmese amber is yellow or reddish, some being of ruby tint, and like the Sicilian amber it is fluorescent. Burmite and simetite agree also in being destitute of succinic acid. Most of the Burmese amber is worked at [[Mandalay]] into rosary-beads and ear-cylinders.
77730
77731 Many other fossil resins more or less allied to amber have been described. Schraufite is a reddish resin from the [[Carpathian]] [[sandstone]], and it occurs with [[Jet (lignite)||jet]] in the [[Cretaceous]] rocks of the [[Lebanon]]; ambrite is a resin found in many of the [[coal]]s of [[New Zealand]]; retinite occurs in the lignite of [[Bovey Tracey]] in Devonshire and elsewhere; whilst copaline has been found in the London clay of [[Highgate]] in North London. Chemawinite or cedarite is an amber-like resin from the [[Saskatchewan river]] in [[Canada]].
77732
77733 == See also ==
77734 * [[List of minerals]]
77735 * [[Ammolite]]
77736 * [[Dominican amber]]
77737 * [[Amber in British place names]]
77738 * [[Spirit of amber]]
77739 * [[Oil of amber]]
77740
77741 == References ==
77742 # {{Note|1}} ''Assignment of vibrational spectra of labdatriene derivatives and ambers: A combined experimental and density functional theoretical study'' Manuel Villanueva-García, Antonio Martínez-Richa, and Juvencio Robles [[Arkivoc]] (EJ-1567C) pp 449-458 [http://www.arkat-usa.org/ark/journal/2005/I06_Juaristi/1567/EJ-1567C.asp Online Article]
77743
77744 ==External links==
77745 *[http://www.emporia.edu/earthsci/amber/amber.htm The World of Amber] A comprehensive website maintained by the Earth Science Department of Emporia State University, Emporia, Kansas (Accessed [[29 May]] [[2005]])
77746 *[http://www.lariamber.com/mine.html Visit to an amber mine in the Dominican Republic]
77747 *[http://www.ambarazul.com/domamb.html Dominican Amber]
77748 *[http://www.amberemotion.com/faszination-bernstein.html Information about amber from Poland - Gdansk (German)]
77749 * [http://baltic-amber.amberizon.com/ Facts about Baltic Amber]
77750
77751 [[Category:Fossils]]
77752 [[Category:Arabic words]]
77753
77754 {{Link FA|de}}
77755
77756 [[cs:Jantar]]
77757 [[cy:Ambr]]
77758 [[da:Rav]]
77759 [[de:Bernstein]]
77760 [[et:Merevaik]]
77761 [[es:Ámbar]]
77762 [[eo:Sukceno]]
77763 [[fr:Ambre]]
77764 [[ko:호박 (화ė„)]]
77765 [[io:Sucino]]
77766 [[is:Raf]]
77767 [[it:Ambra (resina)]]
77768 [[he:×ĸנבר]]
77769 [[lt:Gintaras]]
77770 [[nl:Barnsteen]]
77771 [[ja:ã‚ŗハク]]
77772 [[no:Rav]]
77773 [[pl:Bursztyn]]
77774 [[pt:Âmbar]]
77775 [[ru:Đ¯ĐŊŅ‚Đ°Ņ€ŅŒ]]
77776 [[sl:Jantar]]
77777 [[fi:Meripihka]]
77778 [[sv:Bärnsten]]
77779 [[vi:Háģ• phÃĄch]]
77780 [[zh:įĨį€]]</text>
77781 </revision>
77782 </page>
77783 <page>
77784 <title>Amalaric</title>
77785 <id>1373</id>
77786 <revision>
77787 <id>39465994</id>
77788 <timestamp>2006-02-13T08:26:18Z</timestamp>
77789 <contributor>
77790 <ip>68.35.130.224</ip>
77791 </contributor>
77792 <comment>Castlevania references</comment>
77793 <text xml:space="preserve">'''Amalaric''' or ''Amalarico'' in [[Spanish language|Spanish]] (died [[531]]), king of the [[Visigoths]], son of [[Alaric II]], was a child when his father fell in battle against [[Clovis I]], king of the [[Franks]], in ([[507]]). [[Gesalec]] was chosen king and the child Amalaric was carried for safety into [[Hispania]], which country and [[Provence]] were thenceforth ruled by his maternal grandfather, [[Theodoric the Great|Theodoric]] the Ostrogoth, acting through his vice regent, [[Theudis]], an Ostrogothic nobleman. In [[522]] the young Amalaric was proclaimed king, and four years later, on Theodoric's death, he assumed full royal power in Hispania and that part of [[Languedoc]] called [[Septimania]], relinquishing [[Provence]] to his cousin [[Athalaric]]. He married [[Chrotilda]], daughter of Clovis; but his disputes with her, he being an [[Arianism|Arian]] and she a [[Catholicism|Catholic]], brought on him the penalty of a Frankish invasion by [[Childebert I]], king of [[Paris]], in which he lost his life in [[531]].
77794
77795 [[Konami]] has twice included flying, angelic [[Archery|archers]] enemies in its [[Castlevania]] series of games, tying them to the story of Amalaric's demise. In [[Castlevania: Symphony of the Night]], there is a blue-tinted angelic enemy known as &quot;Sniper of Goth,&quot; whose description reads &quot;Slew Amalaric of the Goths.&quot; In [[Castlevania: Dawn of Sorrow]], the enemy appears again and is functionally identical, although its name is now &quot;Amalaric Sniper&quot; and its description now reads &quot;A fearsome archer and a fallen angel.&quot;
77796
77797 ==References==
77798 *{{1911}}
77799 *Edward Gibbon, [http://etext.library.adelaide.edu.au/g/gibbon/edward/g43d/chapter39.html ''History of the Decline and Fall of the Roman Empire''] Chapter 39
77800
77801 {{start box}}
77802 |width=25% align=center|'''Preceded by:'''&lt;br&gt;'''[[Gesalec]]'''
77803 |width=25% align=center|'''[[Visigoths#Kings_of_the_Visigoths|King of the Visigoths]]'''&lt;br&gt;511&amp;ndash;531
77804 |width=25% align=center|'''Succeeded by:'''&lt;br&gt;'''[[Theudis]]'''
77805 |-
77806 {{end box}}
77807
77808 [[Category:531 deaths|Amalaric]]
77809 [[Category:Kings of the Visigoths]]
77810
77811 [[de:Amalrich]]
77812 [[es:Amalarico]]
77813 [[pl:Amalaryk]]</text>
77814 </revision>
77815 </page>
77816 <page>
77817 <title>Alphorn</title>
77818 <id>1374</id>
77819 <revision>
77820 <id>40326721</id>
77821 <timestamp>2006-02-19T21:06:47Z</timestamp>
77822 <contributor>
77823 <username>Missmarple</username>
77824 <id>207003</id>
77825 </contributor>
77826 <minor />
77827 <comment>fix some links</comment>
77828 <text xml:space="preserve">[[image:Alphorn.JPG|thumb|D' Dieß'ner alphorn players]]
77829 '''Alpenhorn''' or '''alphorn''', a [[wind instrument]], consisting of a natural wooden horn of conical bore, having a cup-shaped [[mouthpiece]], used by mountain dwellers in Switzerland and elsewhere.
77830
77831 The alphorn is carved from solid softwood, generally spruce but sometimes pine. In former times the alphorn maker would find a tree bent at the base in the shape of an alphorn, but modern makers piece the wood together at the base. A cup-shaped mouthpiece carved out of a block of hard wood is added and the instrument is complete.
77832
77833 The alpenhorn has no lateral openings and therefore gives the pure natural harmonic series of the open pipe. The harmonics are the more readily obtained by reason of the small diameter of the bore in relation to the length. An alpenhorn made at Rigi-Kulm, Schwyz, and now in the [[Victoria and Albert Museum]], measures 8 ft. in length and has a straight tube.
77834
77835 [[Image:Swiss playing an alphorn.jpg|thumb|A Swiss playing alphorn near a mountain lake]]
77836 The well-known Ranz des Vaches is the traditional melody of the alpenhorn from French Switzerland. The song describes the time of bringing the cows to the high country at cheese making time. [[Gioacchino Rossini|Rossini]] introduced the melody into his opera ''William Tell.'' [[Johannes Brahms|Brahms]] was clear that the inspiration for the great melody that opens the last movement of his First Symphony (played in the orchestra by the [[horn (instrument)|horn]]) was an alphorn melody he heard in the Rigi area of Switzerland.
77837
77838 The Swiss alpenhorn varies in shape according to the locality, being curved near the bell in the Bernese Oberland. [[Michael Praetorius]] mentions the alpenhorn under the name of holzerni trummet in ''Syntagma Musicum'' (Wittenberg, 1615-1619).
77839
77840 This is the horn featured in [[Ricola]] [[cough medicine|cough drop]] commercials.
77841
77842 ==References==
77843 *{{1911}}
77844 ==Music for Alphorn==
77845
77846 Among music composed for the alphorn:
77847
77848 *'' Sinfonia Pastorella for Alphorn and String Orchestra'' by [[Leopold Mozart]]
77849 *''Concerto for alphorn and orchestra'' by Jean Daetwyler
77850 *''Concertino rustico'' by Ference Farkas
77851
77852 == External links ==
77853 * [http://www.jacaranda.de Jacaranda Ensemble]
77854 * [http://www.SwissAlphorn.com Swiss Alphorn Players, in German]
77855 * [http://www.alphorn.ca Rocky Mountain Alphorns, in English]
77856
77857
77858 [[Category:Wind instruments proper]]
77859
77860 [[de:Alphorn]]
77861 [[fr:Cor des Alpes]]
77862 [[he:קרן האלפים]]
77863 [[nl:Alpenhoorn]]
77864 [[sv:Alphorn]]</text>
77865 </revision>
77866 </page>
77867 <page>
77868 <title>Alpaca</title>
77869 <id>1375</id>
77870 <revision>
77871 <id>41999917</id>
77872 <timestamp>2006-03-03T03:25:11Z</timestamp>
77873 <contributor>
77874 <username>Zafiroblue05</username>
77875 <id>284148</id>
77876 </contributor>
77877 <minor />
77878 <comment>/* History of the Scientific Name */ caps</comment>
77879 <text xml:space="preserve">{{Otherusesabout|a breed of domesticated ungulates}}
77880 {{Taxobox
77881 | color = pink
77882 | name = Alpaca
77883 | status = {{StatusDomesticated}}
77884 | image = Alpaca2.jpg
77885 | image_width = 200px
77886 | regnum = [[Animal]]ia
77887 | phylum = [[Chordate|Chordata]]
77888 | classis = [[Mammal]]ia
77889 | ordo = [[Artiodactyla]]
77890 | familia = [[Camelidae]]
77891 | genus = ''[[Vicugna (genus)|Vicugna]]''
77892 | species = '''''V. pacos'''''
77893 | binomial = ''Vicugna pacos''
77894 | binomial_authority = ([[Carolus Linnaeus|Linnaeus]], [[1758]])
77895 }}
77896 The '''Alpaca''' (Vicugna pacos) is one of two domesticated breeds of South American [[camel]]-like [[ungulate|ungulates]], derived from the wild [[guanaco]]. It resembles a sheep in appearance, but is larger in size, and has a long erect neck with a handsome head.
77897
77898 Alpacas are kept in large flocks that graze on the level heights of the [[Andes]] of southern [[Peru]], northern [[Bolivia]], and northern [[Chile]] at an altitude of between 3500 and 5000 meters above sea-level, throughout the year. They are not used as beasts of burden like [[llama|llamas]], but are valued only for their [[fiber]], of which Indian blankets and ponchos are
77899 made. The alpaca comes in 22 natural colours. In stature, the alpaca is considerably inferior to the llama, but has the same unpleasant habit of spitting.
77900
77901 In the textile industry, &quot;alpaca&quot; is a name given to two distinct things. It is primarily a term applied to the wool, or rather hair, obtained from the Peruvian alpaca. It is, however, more broadly applied to a style of fabric originally made from alpaca fiber but now frequently made from a similar type of fiber, such as [[mohair]], [[Icelandic (sheep)|Icelandic sheep]] wool, or even some high-quality English wool. In trade, distinctions are made between alpacas and the several styles of mohairs and lustres. However, as far as the general purchaser is concerned, little or no distinction is made.
77902
77903 ===Background===
77904 Alpacas have been domesticated for thousands of years, and originate from Peru, Chile and Bolivia. There are no wild alpacas; it is believed that they are descended from the [[vicuna]], which is also native to South America. They are closely related to llamas, which are descended from the guanaco. These four species of animals are collectively called camelids.
77905
77906 Of the four, the alpaca and the vicuÃąa are the most valuable wool-bearing animals: the alpaca because of the quality and quantity of its wool, and the vicuÃąa because of the softness, fineness and quality of its coat.
77907
77908 Alpacas and llamas can (and do) successfully cross breed, the resulting offspring are called huarizo.
77909
77910 There are two types of alpaca – huacaya (with crimpy sheep-like “wool”) and suri (with silky dreadlocks). Suris are much rarer than huacaya, estimated to make up between 6 and 10% of the alpaca population. The suri is probably rarer because it is less hardy in the harsh South American mountain climates, as the style of its fleece offers less insulation against the cold (the suri fleece parts along the spine, exposing the animal to the cold unlike the huacaya fleece which provides excellent cover over the backbone).
77911
77912 Alpaca fleece is a luxurious fibre, similar to sheep’s wool in some respects, although it is lighter in weight, silkier to the touch, warmer and not as prickly. A big trade of alpace fleece exists in the countries where alpacas live, from very simple and not so expensive garments made by the aboriginal communities, to sophisticated products industrially made, that can have significantly high prices.
77913
77914 White is the predominant colour of alpacas, both suri and huacaya. This is because selective breeding has favoured white – bulk white fleece is easier to market and can be dyed any colour. However, alpacas come in 22 natural colours, from a true blue black through browns and fawns to white, and there are silver greys and rose greys as well.
77915
77916 Traditionally, alpaca meat has been eaten fresh, fried or in stews, by Andean inhabitants. There is a resurgent interest in alpaca meat in countries like Peru, where it is relatively easy to find it at upscale restaurants.
77917
77918 ===Behaviour===
77919 Alpacas are social herd animals and should always be kept with others of their kind. They are gentle and elegant, inquisitive and observant. As they are a prey animal, rather than a predator, they are cautious and will understandably be nervous if they feel threatened. They like their own space and don’t appreciate another alpaca (or human) getting too close, especially from behind. They will warn the intruder away by threatening to spit, or by spitting, or by kicking. Some alpacas kick, some don’t – but yes, they all spit.
77920
77921 Spitting is reserved for other alpacas, not for humans, but sometimes the human can get in the line of fire, or the alpaca aims badly and misses the intended target. The spit is not pleasant: it is the contents of the stomach – green (regurgitated grass) – and smells foul.
77922
77923 Alpacas don’t like their heads being touched. Once they know their owners, and feel confident around them, they will probably allow their backs and necks to be touched, but they won’t appreciate being grabbed, especially by boisterous children. If an owner need to catch an alpaca, the neck offers a good handle – and holding the neck firmly between the arms is the best way to restrain the animal.
77924
77925 To help alpacas control their internal parasites they have a communal dung pile, which they do not graze. Generally, males have much tidier dung piles than females who tend to stand in a line and all go at once!
77926
77927 Sheep baa, cows moo and alpacas hum. Different animals have different voices, but basically it is a &quot;mmm&quot; sound. However, they make other sounds as well as humming. When danger is present they sound the alarm call, a high pitched shriek, for instance. Some breeds are known to make a sound similar to a &quot;Wark&quot; noise when excited, and they stand proud with their tails sticking out and their ears in a very alert position. Strange dogs – and even cats – can trigger this reaction. (They recognise domestic cats for what they are – a relation of the puma, a natural predator of the alpaca in South America.)
77928
77929 When males fight they also scream, a warbling bird-like cry, presumably intended to terrify the other combatant. Fighting is to determine dominance, and therefore the right to mate the females in the herd, and it is triggered by testosterone. This is why males are often kept in separate paddocks – when two dominant males get together war breaks out!
77930
77931 A male in the act of mating, or hoping for a chance to mate, will “orgle.” This orgling will help to put the female in the mood, and it is believed that it also helps her to ovulate after the act of mating – very necessary for a pregnancy to take place!
77932
77933 Pregnancies last eleven and a half months and the young are called crias. Soon after the cria is born the female will be ready to mate again, babies are therefore an annual event. A female is usually ready to mate for the first time at a year of age, but a male can often not work until he is two or even three years old.
77934
77935 Alpacas generally live for more than 20 years – we think! Conditions and nutrition are better in the USA, Australia, New Zealand and Europe than in South America, so animals live longer and are healthier. One of the oldest alpacas in New Zealand (fondly known as Vomiting Violet) died at the end of 2005 at the ripe old age of 29.
77936
77937 == History of the scientific name ==
77938 In [[1758]] the four South American camelid species were assigned scientific names. At that time, the alpaca was assumed to be descended from the [[Lama glama|llama]], ignoring similarities in size, fleece and dentition between the alpaca and the [[Vicugna vicugna|vicu&amp;ntilde;a]]. Classification was complicated by the fact that all four species of South American camelid can interbreed and produce fertile offspring. It was not until the advent of DNA technology that a more accurate classification was possible.
77939
77940 Miss Great Aunt Edds started the first out of continent farm. She established the first Canadian Alpaca farm outside of Kingston Ontario. Originally started with only 4 alpacas, the farm grew to no less than 24 alpacas by 2005. The alpacas, originally raised for their fleece, now also serve the local restaurant industry, providing them with delicious alpaca steaks.
77941
77942 In 2001 the alpaca genus classification changed from &lt;i&gt;Lama pacos&lt;/i&gt; to &lt;i&gt;Vicugna pacos&lt;/i&gt; following the presentation of a paper [http://www.journals.royalsoc.ac.uk/app/home/contribution.asp?wasp=bf588d8be995486f872cd4a9008b9f35&amp;referrer=parent&amp;backto=issue,12,18;journal,94,201;linkingpublicationresults,1:102024,1 Genetic analysis reveals the wild ancestors of the llama and the alpaca] on work by [[Dr Jane Wheeler]] et al on alpaca DNA to the [[Royal Society]] showing that the alpaca is descended from the vicuÃąa, not the guanaco.
77943
77944 The relationship between alpacas and vicuÃąas was disputed for many years, but Wheeler's DNA work proved it. However many academic sites have not caught up with this, so it is something well known to alpaca breeders who have read Dr Hoffman's book, and to Royal Society members who have access to the current classification data, but not more widely known.
77945
77946 == Fiber ==
77947 [[image:Alpaca_cuzco_peru.jpg|thumb|left|Alpaca]]
77948 Alpaca fiber is warmer than sheeps' wool and lighter in weight. It is soft and luxurious and lacks the &quot;prickle&quot; factor. However, as with all fleece producing animals, quality varies from animal to animal, and some alpaca produce fibre which is less than ideal.
77949
77950 Alpaca have been bred in South America for hundreds of years (mainly Peru, but also Chile and Bolivia), but in recent years have been exported to other countries. In countries such as the USA, Australia and New Zealand breeders shear their animals annually, weigh the fleeces and test them for fineness. With the resulting knowledge they are able to breed heavier fleeced animals with finer fibre. Fleece weights vary, with the top stud males reaching annual shear weights up to 6kg.
77951
77952 Two types of fleece are produced: huacaya and suri. It has been proposed that in fact these are two different breeds of animal, and that camelids come in five types - guanaco, vicuna, llama, huacaya (alpaca) and suri. This view is not commonly accepted however.
77953
77954 In physical structure, alpaca is somewhat akin to (human?) hair, being very glossy, but its softness and fineness enable the [[spinning|spinner]] to produce satisfactory [[yarn]] with comparative ease.
77955 [[image:alpaca.png|180px|thumb|right|Alpaca]]
77956
77957 ==Alpaca fiber industry==
77958
77959 === History ===
77960 The history of the manufacture of this fiber into cloth is one of the romances of commerce. The Indians of [[Peru]] used this fibre in the manufacture of many styles of fabrics for centuries before its introduction into Europe as a commercial product. The first European importations were into [[Spain]]. [[Spain]] transferred the fibre to [[Germany]] and [[France]]. Apparently alpaca yarn was spun in [[England]] for the first time about the year [[1808]]. It does not appear to have made any headway, however, and alpaca fiber was condemned as an unworkable material. In [[1830]] Benjamin Outram, of Greetland, near Halifax, appears to have reattempted the spinning of this fibre, and, for the second time, alpaca was condemned. These two attempts to use alpaca were failures owing to the style of fabric into which the yarn was woven &amp;mdash; a species of [[camlet]]. It was not until the introduction of cotton warps into the [[Bradford, England|Bradford]] trade about [[1836]] that the true qualities of alpaca could be developed in the fabric. Where the [[cotton warp]] and [[mohair]] or alpaca weft plain-cloth came from is not known, but it was this simple yet ingenious structure which enabled [[Titus Salt]], then a young Bradford manufacturer, to use alpaca successfully. Bradford is still the great spinning and manufacturing centre for alpaca, large quantities of yarns and cloths being exported annually to the continent and to the [[United States]], although the quantities naturally vary in accordance with the fashions in vogue, the typical &quot;alpaca-fabric&quot; being a very characteristic &quot;[[dress-fabric]].&quot;
77961
77962 [[Image:Alpaca_MidSomerset_210805.jpg|thumb|200px|right| Alpacas on show in the [[United Kingdom|UK]]]]
77963
77964 Owing to the success in the manufacture of the various styles of alpaca cloths attained by Sir Titus Salt and other Bradford manufacturers, a great demand for alpaca wool arose, and this demand could not be met by the native product, for there seems to never have been any appreciable increase in the number of alpacas available. Unsuccessful attempts were made to acclimatize the alpaca in England, on the European continent and in Australia, and even to cross certain English breeds of [[domestic sheep|sheep]] with the alpaca. There is, however, a cross between the alpaca and the llama &amp;mdash; a true [[hybrid]] in every sense &amp;mdash; producing a material placed upon the Liverpool market under the name &quot;Huarizo&quot;. Crosses between the alpaca and vicuÃąa have not proved satisfactory. Current attempts to cross these two breeds are underway at farms in the United States. According to the Alpaca Owners and Breeders Association, alpacas are now being bred in the United States, Canada, Australia, New Zealand, UK, and numerous other places.
77965
77966 The preparing, combing, spinning, weaving and finishing process of alpaca and mohair are similar to that of [[wool]].
77967
77968 Farmers commonly quote the alpaca with the phrase 'love is in the fleece', which describes their love for the animal.
77969
77970 === Prices ===
77971 The price for alpacas can range from $200 to $360,000, depending on breeding history, sex, and color. One can raise up to 10 alpacas on one [[acre]] (4,047 m&amp;sup2;) as they have a designated area for waste products and keep their eating area away from their waste area to avoid diseases. To get an idea of alpaca prices around the world see [http://www.alpacaseller.com AlpacaSeller]
77972
77973 ==Trivia==
77974 *Major league baseball player [[Billy Wagner]] owns 38 Alpacas. [http://www.nydailynews.com/sports/baseball/mets/story/370266p-314976c.html]
77975 *An Alpaca has three stomaches.
77976
77977 ==References==
77978 *{{1911}}
77979 *[http://www.journals.royalsoc.ac.uk/app/home/contribution.asp?wasp=bf588d8be995486f872cd4a9008b9f35&amp;referrer=parent&amp;backto=issue,12,18;journal,94,201;linkingpublicationresults,1:102024,1 Genetic analysis reveals the wild ancestors of the llama and the alpaca] paper by Dr Jane Wheeler presented to the [[Royal Society]] in 2001.
77980 *&lt;i&gt;The Complete Alpaca Book&lt;/i&gt;, Dr Eric Hoffman, Bonny Doon Press, California, 2003
77981
77982 ==External links==
77983 *[http://www.elevage-de-garenne.com/ Elevage de Garenne : breeding of Alpacas Huacaya and Suri in France]
77984 *[http://www.alpacainfo.com/ The Alpaca Owners and Breeders Association]
77985
77986 *http://www.surifarm.de
77987 {{Commons|Lama pacos|Alpaca}}
77988
77989 *[http://www.alpacas.com/AlpacaLibrary/ Alpaca Library]
77990
77991
77992 {{Camelids}}
77993
77994 [[Category:Fauna of Chile]]
77995 [[Category:Camelids]]
77996 &lt;!-- Interwikis found using http://vs.aka-online.de/globalwpsearch/ --&gt;
77997 &lt;!-- Search for Lama pacos --&gt;
77998
77999 [[ar:ØŖŲ„بŲƒØŠ]]
78000 [[ca:Alpaca]]
78001 [[cs:Alpaka]]
78002 [[de:Alpaka (Kamel)]]
78003 [[es:Lama pacos]]
78004 [[eo:Alpako]]
78005 [[fr:Alpaga]]
78006 [[io:Alpako]]
78007 [[ia:Alpaca]]
78008 [[it:Lama pacos]]
78009 [[he:אלפקה]]
78010 [[lt:Alpaka]]
78011 [[nl:Alpaca (zoogdier)]]
78012 [[ja:ã‚ĸãƒĢパã‚Ģ]]
78013 [[pl:Alpaka (zwierzę)]]
78014 [[pt:Alpaca]]
78015 [[sv:Alpacka (lama)]]
78016 [[uk:АĐģŅŒĐŋĐ°ĐēĐ°]]</text>
78017 </revision>
78018 </page>
78019 <page>
78020 <title>Army</title>
78021 <id>1376</id>
78022 <revision>
78023 <id>42071921</id>
78024 <timestamp>2006-03-03T17:01:00Z</timestamp>
78025 <contributor>
78026 <ip>66.4.80.129</ip>
78027 </contributor>
78028 <comment>/* See also */</comment>
78029 <text xml:space="preserve">'''Army''' (from [[French language|French]] ''armÊe'') can, in some countries, refer to any [[armed force]]. More commonly, however, it is only used specifically to refer to a land force of the [[military]].
78030
78031 Within a national army, an '''army''' can also refer to a large [[formation (military)|formation]], usually comprising one or more [[corps]].
78032
78033 '''Army''' is also often used in the description or title of military or [[paramilitary]] organisations which are not part of a country's official armed forces (and may well be illegal), such as the [[Irish Republican Army]], and also in some non-military organisations organised on a quasi-military basis, such as the [[Salvation Army]] and the [[Church Army]].
78034
78035 ==Field Army==
78036
78037 A Field Army is composed of a headquarters, army troops, a variable number of corps, and a variable number of divisions. A battle is influenced at the Field Army level by transferring divisions and reinforcements from one corps to another to increase the pressure on the enemy at a critical point.
78038
78039 == National land forces ==
78040
78041 A national army is usually the arm of the military service which conducts land-based warfare (for example, the [[United States Army]], or the [[France|French]] [[ArmÊe de Terre]]).
78042
78043 Most armed forces make considerable distinction between the army or land forces, the [[navy]], and the [[air force]], often maintaining three independent organizations. Many air forces were formerly part of an army; historically, the [[United States Air Force]] originated as part of the [[United States Army]], for example.
78044
78045 Modern armies comprise several branches (also called ''services'', or ''[[administrative corps]]''). These may include the [[combat]] branches: [[infantry]], [[armoured]], [[artillery]], and [[combat engineers]], as well as the [[support]] branches: [[Military communications |communications]], [[Military intelligence |intelligence]], [[Combat medic |medics]], [[Military logistics |supply]], and [[army aviation]] (as opposed to a national air force).
78046
78047 == Formations ==
78048
78049 An '''army''' can also be a large [[military organization]] ([[formation (military) |formation]]) comprising one or more [[corps]]. A particular army is named or numbered to distinguish it from military land forces in general&amp;mdash;for example, the [[U.S. First Army]] and the [[Army of Northern Virginia]]. In the [[British Army]] it is normal to spell out the ordinal number of an army (e.g. First Army), whereas lower formations use figures (e.g. 1st Division).
78050
78051 Armies (as well as [[army group]]s and [[Theater (military)|theater]]s) are large formations which vary significantly between armed forces in size, composition, and scope of responsibility.
78052
78053 In the [[Soviet Union |Soviet]] [[Red Army]], &quot;armies&quot; were actually [[corps]]-sized formations, subordinate to an army-sized &quot;[[Front (Soviet Army)|front]]&quot; in wartime. In peacetime, a [[Army (Soviet Army)|Soviet army]] was usually subordinate to a [[military district]].
78054
78055 For the hierarchy of land force organizations, see [[military organization]].
78056
78057 == See also ==
78058
78059 * [http://www.polictera.com.my Ex-Police &amp; Army Personnel Association of Malaysia]
78060 * [[List of armies]]
78061 * [[List of armies by name]]
78062 * [[List of armies by number]]
78063 * [[List of countries without an army]]
78064 * [[War]]
78065 * [[Military history]]
78066 * [[Military science]]
78067 * [[Marines]]
78068 * [[Citizen army]]
78069 * [[Murder]]
78070
78071 [[Category:Military unit types]]
78072 [[Category:Armies| ]]
78073 [[Category:Types of military]]
78074
78075 [[ca:Exèrcit]]
78076 [[cs:ArmÃĄda]]
78077 [[da:HÃĻr]]
78078 [[de:Heer]]
78079 [[es:EjÊrcito]]
78080 [[fa:&amp;#1575;&amp;#1585;&amp;#1578;&amp;#1588;]]
78081 [[fr:ArmÊe]]
78082 [[he:&amp;#1510;&amp;#1489;&amp;#1488;]]
78083 [[id:Militer]]
78084 [[io:Armeo]]
78085 [[nl:Leger]]
78086 [[ka:სახმელეთო ჯარები]]
78087 [[ja:&amp;#38520;&amp;#36557;]]
78088 [[no:ArmÊ]]
78089 [[pl:Armia]]
78090 [[pt:ExÊrcito]]
78091 [[ro:Armată]]
78092 [[ru:&amp;#1040;&amp;#1088;&amp;#1084;&amp;#1080;&amp;#1103;]]
78093 [[sq:Ushtria]]
78094 [[simple:Army]]
78095 [[sl:Vojska]]
78096 [[fi:Armeija]]
78097 [[sv:ArmÊ]]
78098 [[zh:&amp;#38470;&amp;#20891;]]</text>
78099 </revision>
78100 </page>
78101 <page>
78102 <title>Air Force</title>
78103 <id>1377</id>
78104 <revision>
78105 <id>15899865</id>
78106 <timestamp>2004-09-10T16:03:50Z</timestamp>
78107 <contributor>
78108 <username>Neutrality</username>
78109 <id>68411</id>
78110 </contributor>
78111 <minor />
78112 <comment>#REDIRECT [[Air force]]</comment>
78113 <text xml:space="preserve">#REDIRECT [[Air force]]</text>
78114 </revision>
78115 </page>
78116 <page>
78117 <title>Applied mathematics</title>
78118 <id>1379</id>
78119 <revision>
78120 <id>40515065</id>
78121 <timestamp>2006-02-21T03:29:45Z</timestamp>
78122 <contributor>
78123 <username>Heja helweda</username>
78124 <id>565030</id>
78125 </contributor>
78126 <minor />
78127 <text xml:space="preserve">'''Applied mathematics''' is a branch of [[mathematics]] that concerns itself with the application of mathematical knowledge to other domains. Such applications include [[numerical analysis]], [[mathematical physics]], mathematics of [[engineering]], [[linear programming]], [[Optimization (mathematics)|optimization]] and [[operations research]], [[continuous modelling]], [[control theory]], [[mathematical biology]] and [[bioinformatics]], [[information theory]], [[game theory]], [[probability]] and [[statistics]], [[mathematical economics]], [[financial mathematics]], [[actuarial science]], [[cryptography]] and hence [[combinatorics]] and even [[finite geometry]] to some extent, [[graph theory]] as applied to [[network theory|network analysis]], and a great deal of what is called [[computer science]].
78128
78129 The question of what is applied mathematics does not answer to logical classification so much as to the sociology of professionals who use mathematics. The mathematical methods are usually applied to the specific problem field by means of a [[mathematical model]] of the system.
78130
78131 Engineering mathematics describes physical processes, and so is often indistinguishable from [[theoretical physics]]. Important subdivisions include: [[fluid dynamics]], [[acoustic theory]], [[Maxwell's equations]] that govern [[electromagnetism]], [[mechanics]], [[numerical relativity]], etc.
78132
78133 Fundamental applied mathematics is taught at second-level in some countries, such as [[Ireland]], where it is a minority option at [[Leaving Certificate]].
78134
78135 == See also ==
78136 *[[pure mathematics]]
78137
78138 == External links ==
78139 {{Wikibookspar|School of Mathematics|Applied Mathematics}}
78140 * The [http://www.siam.org/ Society for Industrial and Applied Mathematics] is a professional society dedicated to promoting the interaction between mathematics and other scientific and technical communities.
78141
78142 [[Category:Applied mathematics]]
78143
78144 [[da:Anvendt matematik]]
78145 [[de:Angewandte Mathematik]]
78146 [[es:MatemÃĄtica aplicada]]
78147 [[eo:Aplika matematiko]]
78148 [[fa:ØąÛŒØ§ØļیاØĒ ÚŠØ§ØąØ¨ØąØ¯ÛŒ]]
78149 [[fr:MathÊmatiques appliquÊes]]
78150 [[he:מ×Ēמטיקה שימושי×Ē]]
78151 [[pt:MatemÃĄtica aplicada]]
78152 [[ro:Matematică aplicată]]
78153 [[ru:ПŅ€Đ¸ĐēĐģĐ°Đ´ĐŊĐ°Ņ ĐŧĐ°Ņ‚ĐĩĐŧĐ°Ņ‚иĐēĐ°]]
78154 [[su:Matematik terapan]]
78155 [[th:ā¸„ā¸“ā¸´ā¸•ā¸¨ā¸˛ā¸Ēā¸•ā¸ŖāšŒā¸›ā¸Ŗā¸°ā¸ĸā¸¸ā¸ā¸•āšŒ]]
78156 [[vi:ToÃĄn háģc áģŠng dáģĨng]]
78157 [[zh:åē”į”¨æ•°å­Ļ]]</text>
78158 </revision>
78159 </page>
78160 <page>
78161 <title>Alligatoridae</title>
78162 <id>1380</id>
78163 <revision>
78164 <id>38284009</id>
78165 <timestamp>2006-02-05T08:41:55Z</timestamp>
78166 <contributor>
78167 <username>Cuchullain</username>
78168 <id>196153</id>
78169 </contributor>
78170 <minor />
78171 <text xml:space="preserve">{{Taxobox
78172 | color = pink
78173 | name = Alligators and Caimans
78174 | image = alligator.jpg
78175 | image_width = 250px
78176 | image_caption = [[American Alligator]]
78177 | regnum = [[Animal]]ia
78178 | phylum = [[Chordate|Chordata]]
78179 | classis = [[Reptile|Reptilia]]
78180 | ordo = [[Crocodilia]]
78181 | familia = '''Alligatoridae'''
78182 | familia_authority = [[John Edward Gray|Gray]], 1844
78183 | subdivision_ranks = Genera
78184 | subdivision =
78185 ''Alligator'' &lt;br /&gt;
78186 ''Caiman'' &lt;br /&gt;
78187 ''Melanosuchus'' &lt;br /&gt;
78188 ''Paleosuchus''
78189 }}
78190 '''Alligators''' and '''caimans''' are [[reptile]]s closely related to the [[crocodile]]s and forming the [[family (biology)|family]] '''Alligatoridae''' (sometimes regarded instead as the [[subfamily]] '''Alligatorinae'''). Together with the [[Gharial]] (family Gavialidae) they make up the [[order (biology)|order]] [[Crocodilia]].
78191
78192 [[Alligator]]s differ from crocodiles principally in having wider and shorter heads, with more obtuse snouts; in having the fourth, enlarged tooth of the under jaw received, not into an external notch, but into a pit formed for it within the upper one; in lacking a jagged fringe which appears on the hind legs and feet of the crocodile; and in having the toes of the hind feet webbed not more than half way to the tips. In general, the more dangerous crocodilians to human beings tend to be [crocodiles rather than alligators.
78193
78194 [[Image:Florida Alligator.jpg|left|200px|Alligator]]
78195
78196 Alligators proper occur in the fluvial deposits of the age of the [[Cretaceous|Upper Chalk]] in Europe, where they did not die out until the [[Pliocene]] age.
78197
78198 The true alligators are now restricted to two species, ''[[American Alligator|A. mississippiensis]]'' in the [[Southern United States]], which grows up to 4 m (12 ft) in length, and the small ''[[Chinese Alligator|A. sinensis]]'' in the [[Yangtze River]], [[People's Republic of China]]. Their name derives from the [[Spanish language|Spanish]] ''el lagarto'', &quot;the lizard&quot;).
78199
78200 In [[Central America|Central]] and [[South America]] alligators are represented by five species of the [[genus]] ''[[Caiman]]'', which differs from the alligator by the absence of a bony septum between the nostrils, and the ventral armour is composed of overlapping bony scutes, each of which is formed of two parts united by a suture. Some authorities further divide this genus into three, splitting off the smooth-fronted caimans into a genus ''Paleosuchus'' and the Black Caiman into ''Melanosuchus''.
78201
78202 ''C. crocodilus'', the Spectacled Caiman, has the widest distribution, from southern Mexico to the northern half of Argentina, and grows to a modest size of about 7 feet. The largest, attaining an enormous bulk and a length of 20 ft., is the near-extinct ''Melanosuchus niger'', the Jacare-assu, Large, or Black Caiman of the Amazon. The [[Black Caiman]] is the only member of the alligator family posing the same danger to humans as the larger species of the [[crocodile]] family.
78203
78204 Although the Caiman has not been studied in-depth, it has been discovered that their mating cycles (previously thought to be spontaneous or year-round) are linked to the rainfall cycles and the river levels in order to increase their offspring's chances of survival.
78205
78206 Some crocodiles can be found in salty water, but most alligators stay in fresh water.
78207
78208 &lt;br clear=left&gt;
78209 ==Species==
78210
78211 * '''ORDER [[Crocodilia]]'''
78212 ** '''Family Alligatoridae'''
78213 *** Genus ''[[Leidyosuchus]]'' (extinct)
78214 *** Genus ''[[Deinosuchus]]'' (extinct)
78215 *** '''Subfamily Diplocynodontinae'''
78216 **** Genus ''[[Tadzhikosuchus]]'' (extinct)
78217 **** Genus ''[[Baryphracta]]'' (extinct)
78218 **** Genus ''[[Diplocynodon]]'' (extinct)
78219 *** '''Subfamily Alligatorinae'''
78220 **** Genus ''[[Akantosuchus]]'' (extinct)
78221 **** Genus ''[[Albertochampsa]]'' (extinct)
78222 **** Genus ''[[Chrysochampsa]]'' (extinct)
78223 **** Genus ''[[Hassiacosuchus]]'' (extinct)
78224 **** Genus ''[[Navahosuchus]]'' (extinct)
78225 **** Genus ''[[Ceratosuchus]]'' (extinct)
78226 **** Genus ''[[Allognathosuchus]]'' (extinct)
78227 **** Genus ''[[Hispanochampsa]]'' (extinct)
78228 **** Genus ''[[Arambourgia]]'' (extinct)
78229 **** Genus ''[[Procaimanoidea]]'' (extinct)
78230 **** Genus ''[[Wannaganosuchus]]'' (extinct)
78231 **** Genus ''[[Alligator]]''
78232 ***** ''[[Alligator prenasalis]]'' (extinct)
78233 ***** ''[[Alligator mcgrewi]]'' (extinct)
78234 ***** ''[[Alligator olseni]]'' (extinct)
78235 ***** [[Chinese Alligator]], ''Alligator sinensis ''
78236 ***** ''[[Alligator mefferdi]]'' (extinct)
78237 ***** [[American Alligator]], ''Alligator mississippiensis ''
78238 *** '''Subfamily Caimaninae'''
78239 **** Genus ''[[Necrosuchus]]'' (extinct)
78240 **** Genus ''[[Eocaiman]]'' (extinct)
78241 **** Genus ''[[Paleosuchus]]'' (extinct)
78242 ***** [[Cuvier's Dwarf Caiman]], ''Paleosuchus palpebrosus''
78243 ***** [[Smooth-fronted Caiman]], ''Paleosuchus trigonatus''
78244 **** Genus ''[[Parussaurus]]'' (extinct)
78245 **** Genus ''[[Mourasuchus]]'' (extinct)
78246 **** Genus ''[[Orthogenysuchus]]'' (extinct)
78247 **** Genus ''[[Caiman]]''
78248 ***** [[Yacare Caiman]], ''Caiman yacare''
78249 ***** [[Spectacled Caiman]], ''Caiman crocodilus crocodilus ''
78250 ****** Rio Apaporis Caiman, ''C. c. apaporiensis ''
78251 ****** Brown Caiman, ''C. c. fuscus''
78252 ***** ''[[Caiman lutescans]]'' (extinct)
78253 ***** [[Broad-snouted Caiman]], ''Caiman latirostris ''
78254 **** Genus ''[[Melanosuchus]]''
78255 ***** ''[[Melanosuchus fisheri]]'' (extinct)
78256 ***** [[Black Caiman]], ''Melanosuchus niger''
78257
78258 ==Cultural aspects==
78259
78260 In [[Indigenous peoples of the Americas|Native American]] and [[African American]] [[folklore]], the alligator is revered, especially the teeth, which can be worn as a charm against [[witchcraft]] and [[poison]].
78261
78262 Often, it is the butt of practical jokes by [[trickster]]s like [[Brer Rabbit]].
78263
78264 An [[urban legend]] states that people buy baby alligators after visiting [[Florida]] or other places where they are native and flush them down the toilet once they get big. The story goes that full grown alligators exist in the sewers of cities like [[New York City]]. This is impossible, however, because without UV rays from sunlight, alligators cannot properly metabolize calcium, resulting in metabolic bone disease and eventually death. Small released alligators and caimans, though, are occasionally found in northern lakes.
78265
78266 Alligator skin was once a highly prized [[leather]], and was farmed in some areas, as pictured in the panoramic image below. Alligator is sometimes eaten as an exotic meat.
78267
78268 [[image:Largealligatorfarm_panorama.jpg|thumb|400px|none|South Beach Alligator Farm ([http://memory.loc.gov/pnp/pan/6a03000/6a03500/6a03511u.tif 5MB uncompressed tif]).]]
78269
78270 ==Pop culture references==
78271 A top hit from [[1956 in music|1956]] was &quot;[[See You Later Alligator]]&quot;, as sung by [[Bill Haley &amp; His Comets]].
78272
78273 [[Category:Crocodiles]]
78274
78275 [[ca:Caiman]]
78276 [[de:Alligatoren]]
78277 [[es:Alligatoridae]]
78278 [[fr:Alligatoridae]]
78279 [[he:קיימן]]
78280 [[la:Alligatoridae]]
78281 [[nl:Alligators]]
78282 [[pl:Aligatorowate]]
78283 [[pt:JacarÊ]]
78284 [[sv:Alligatorer och kajmaner]]</text>
78285 </revision>
78286 </page>
78287 <page>
78288 <title>Aleutian Islands</title>
78289 <id>1381</id>
78290 <revision>
78291 <id>40070885</id>
78292 <timestamp>2006-02-17T22:46:13Z</timestamp>
78293 <contributor>
78294 <ip>205.188.116.5</ip>
78295 </contributor>
78296 <comment>/* History */</comment>
78297 <text xml:space="preserve">[[image:Aleutians_aerial.jpg|thumb|250px|Looking down the Aleutians from an airplane.]]
78298 The '''Aleutian Islands''' (possibly from [[Chukchi language|Chukchi]] ''aliat'', &quot;[[island]]&quot;) are a chain of more than 300 small volcanic islands forming an [[island arc]] situated in the Northern [[Pacific Ocean]], occupying an area of 6,821 sq mi (17,666 sq km) and extending about 1,200 mi (1,900 km) westward from the [[Alaska Peninsula]] toward the [[Kamchatka Peninsula]]. Crossing longitude 180°, they are the westernmost part of the [[United States]] (and technically also the easternmost; ''see [[Extreme points of the United States]]''). Nearly all of the [[archipelago]] is part of [[Alaska]] and usually considered as being in the &quot;[[Alaskan Bush]]&quot;, but the extreme western end is in [[Russia]]. The islands with their 57 volcanoes are located in the northern part of the [[Pacific Ring of Fire]].
78299
78300 ==Geography==
78301 [[Image:Aleutians-space.jpg|thumb|250px|Aleutians seen from space]]
78302 The islands, known before 1867 as the Catherine Archipelago, comprise four groups&amp;mdash; the [[Fox Islands|Fox]], [[Andreanof Islands|Andreanof]], [[Rat Islands|Rat]] and [[Near Islands]]. They are all located between 52 degrees and 55 degrees North latitude and 172 degrees East and 163 degrees West longitude.
78303
78304 The axis of the archipelago near the mainland of Alaska has a southwest trend, but near the 129th meridian its direction changes to the northwest. This change of direction corresponds to a curve in the line of [[volcanic]] fissures which have contributed their products to the building of the islands. Such curved chains are repeated about the Pacific Ocean in the [[Kuril Islands]], the [[Japan|Japanese]] chain and in the [[Philippines]]. All these island arcs are at the edge of the [[Pacific Plate]] and experience lots of [[seismic]] activity, but are still habitable; the Aleutians lie between the Pacific and North American [[plate tectonics|tectonic plates]]. The general elevation is greatest in the eastern islands and least in the western. The island chain is really a western continuation of the [[Aleutian Range]] on the mainland.
78305
78306 [[Image:North-Pacific-air-routes.png|thumb|250px|left|Active Aleutian volcanoes]]
78307 The great majority of the islands bear evident marks of volcanic origin, and there are numerous volcanic cones on the north side of the chain, some of them active; many of the islands, however, are not wholly volcanic, but contain crystalline or sedimentary rocks, and also amber and beds of [[lignite]]. The coasts are rocky and surf-worn, and the approaches are exceedingly dangerous, the land rising immediately from the coasts to steep, bold mountains.
78308
78309 The volcano [[Makushin]] (5691 ft/1,735 m) is visible from [[Unalaska, Alaska|Unalaska]], and the volcanic [[islet]]s [[Bogoslof]] and [[Grewingk]], which rose from the sea in 1796 and 1883 respectively, lie about 30 miles (48 km) west of the bay.
78310
78311 &lt;br clear=both&gt;
78312
78313 ==Climate==
78314 [[Image:AleutianIslands.jpg|thumb|310px|Aleutian Islands]]
78315 The climate of the islands is oceanic, with moderate and fairly uniform temperatures and heavy rainfall. Fogs are almost constant. The summers are much cooler than on the mainland at [[Sitka]], but the winter temperature of the islands and of the [[Alaska Panhandle]] is very nearly the same. The mean annual temperature for [[Unalaska]], the most populated island of the group, is about 38 degrees Fahrenheit (3.4 degrees Celsius), being about 30 °F (&amp;minus;1.1 °C) for January and about 52 °F (11.1 °C) for August. The highest and lowest temperatures recorded on the islands are 78 °F (26 °C) and 5 °F (&amp;minus;15 °C), respectively. The average annual amount of rainfall is about 80 in (2,030 mm), and Unalaska, with about 250 rainy days per year, is said to be the rainiest place within the territory of the [[United States]].
78316
78317 ==Economy==
78318 The growing season lasts about 135 days, from early in May till late in September, but agriculture is limited to the raising of a few vegetables. With the exception of some stunted [[willow]]s, the islands are practically destitute of trees, but are covered with a luxuriant growth of herbage, including [[Poaceae|grass]]es, [[sedge]]s and many flowering plants. On the less mountainous islands, the raising of [[domestic sheep|sheep]] and [[reindeer]] was believed to be practicable.
78319
78320 People living in the Aleutian Islands developed fine skills in hunting and basketry. Hunters made their weapons and watercraft. The baskets are noted for being finely woven with carefully shredded stalks of [[beach rye]].
78321
78322 ==Demographics==
78323 The people refer to themselves as Unangan, and have been called &quot;[[Aleut]]&quot;.
78324
78325 The [[Aleut language]] is one of the two main branches of the [[Eskimo-Aleut_languages|Eskimo-Aleut]] language family. This family is not known to be related to any others.
78326
78327 In the [[2000]] [[census]], there was a population of 8,162 on the islands, of which 4,283 were living in the main settlement of [[Unalaska, Alaska|Unalaska]].
78328
78329 ==History==
78330 Because of the location of the islands, stretching like a broken bridge from Asia to America, many anthropologists believe they were a route of the first human occupants of the Americas. The earliest known evidence of human occupation in the Americas is much further south, in [[New Mexico]] and [[Peru]]; the early human sites in Alaska have probably been submerged by rising waters during the current [[interglacial]] period.
78331
78332 Explorers, traders, colonists, and missionaries arrived from [[Russia]] beginning in [[1741]].
78333
78334 In 1741 the Russian government sent out [[Vitus Bering]], a [[Denmark|Dane]] in the service of Russia, and [[Alexei Ilyich Chirikov|Alexei Chirikov]], a Russian, in the ships ''[[Saint Peter (ship)|Saint Peter]]'' (''Swiatoj Pietr'') and ''[[Saint Paul (ship)|Saint Paul]]'' on a voyage of discovery in the Northern [[Pacific Ocean|Pacific]]. After the ships were separated by a storm, Chirikov discovered several eastern islands of the Aleutian group, and Bering discovered several of the western islands, finally being wrecked and losing his life on the island of the [[Komandorski Islands]] (Commander Islands) that now bears his name ([[Bering Island]]). The survivors of Bering's party reached the [[Kamchatka Peninsula]] in a boat constructed from the wreckage of their ship, and reported that the islands were rich in fur-bearing animals.
78335
78336 Siberian fur hunters flocked to the Commander Islands and gradually moved eastward across the Aleutian Islands to the mainland. In this manner [[Russia]] gained a foothold on the northwestern coast of North America. The Aleutian Islands consequently belonged to Russia, until that country [[Alaska Purchase|transferred]] all its possessions in North America to the United States in [[1867]].
78337
78338 The Russians were ruthless in their expansion, using technology and cruelty to demand tribute and labor from the Aleuts, especially for [[sea otter]] hunting. The Russians captured otter pelts from the Aleutian Islands, through the [[Gulf of Alaska]], along the Alaska Panhandle, and south, even to [[California]]. Some Aleuts were moved to the [[Pribilof Islands]] so that fur seals could be captured there as well.
78339
78340 By [[1760]], the Russian merchant [[Adriian Tolstykh]] had made a detailed census in the vicinity of [[Adak]] and extended Russian citizenship to the Aleuts.
78341
78342 Despite some attempts to eliminate slavery and reduce cruel treatment in the [[1790s]], the [[Shelikov company]] depended on the labor of Aleut hunters to collect sea otter pelts.
78343
78344 During his third and last voyage, in [[1778]], Captain [[James Cook]] surveyed the eastern portion of the Aleutian archipelago, accurately determined the position of some of the more important islands and corrected many errors of former navigators.
78345
78346 One of the first [[Christianity|Christian]] missionaries to arrive in the Aleutian Islands was a monk named Herman, who arrived in [[1793]] with nine other [[Russian Orthodox]] monks and priests. Within two years, he was the only survivor of that party. He settled on [[Spruce Island]], near [[Kodiak Island]], and often defended the rights of the Aleuts against the Russian trading companies. He is now known in the Orthodox Church as St. [[Herman of Alaska]].
78347
78348 Another early Christian missionary of the [[Russian Orthodox Church]] was Father Veniaminov who arrived in Unalaska in [[1824]]. He was named Bishop Innokentii in 1840 and moved to [[Sitka]]. He is now known in the Orthodox Church as [[Saint Innocent of Alaska]].
78349
78350 In [[1906]] a new volcanic cone rose between the islets of Bogoslof and Grewingk, near Unalaska, followed by another in [[1907]]. These cones were nearly demolished by an explosive eruption on [[1 September]] [[1907]].
78351
78352 The principal settlements were on Unalaska Island. The oldest was Iliuliuk (also called Unalaska), settled in 1760-1775, with a customs house, an [[Orthodox]] church, and a [[Methodist]] mission and orphanage, and the headquarters for a considerable fleet of United States [[revenue cutter]]s which patrol the [[sealing]] grounds of the [[Pribilof Islands]]. The first public school in Unalaska opened in 1883. Adjacent is [[Dutch Harbor]] (so named, it is said, because a Dutch vessel was the first to enter it), which is an important port for [[Bering Sea]] commerce.
78353
78354 The [[Congress of the United States|U.S. Congress]] extended American citizenship to all Indians (and this law has been held to include the indigenous peoples of Alaska) in [[1924]].
78355
78356 A hospital was built in Unalaska in [[1933]] by the US [[Bureau of Indian Affairs]].
78357
78358 During [[World War II]], small parts of the Aleutian islands were occupied by [[Japan]]ese forces when [[Attu Island|Attu]] and [[Kiska]] were invaded in order to divert American forces away from the main Japanese attack at [[Midway Atoll]]. The U.S. Navy, having broken the Japanese naval radio codes, knew that this was just a diversion, and it did not expend large amounts of effort in defending the islands. A few Americans were taken to Japan as prisoners of war. Most of the civilian population of the Aleutians were interned by the United States in camps in the [[Alaska Panhandle]]. American forces invaded Japanese-held Attu, defeated the Japanese there, and subsequently regained control of all the islands. See: [[Battle of the Aleutian Islands]].
78359
78360 Monday, [[June 3]], [[2002]] was celebrated as [[Dutch Harbor Remembrance Day]]. The governor of Alaska ordered state flags lowered to half-staff to honor the 78 soldiers who died during the two-day Japanese air attack in 1942. The [[Aleutians World War II Campaign National Historic Area]] Visitors Center opened in June 2002.
78361
78362 The Alaska Native Claims Settlement Act ([[ANCSA]]) became law in [[1971]]. In 1977, the [[Ounalashka Corporation]] (from Unalaska) declared a [[dividend]]. This was the first village corporation to declare and pay a dividend to its shareholders.
78363
78364 ==Miscellaneous==
78365
78366 The Aleutian Islands would likely be an important part of the [[National Missile Defense]] system proposed to defend the United States from small ballistic missile attacks.
78367
78368 ==See also==
78369 *[[List of Aleutian Islands]]
78370 *[[List of Aleutian Island Volcanoes]]
78371 *[[Aleutians West Census Area, Alaska]]
78372 *[[Aleutians East Borough, Alaska]]
78373 *[[Peter the Aleut]]
78374
78375 &lt;center&gt;[[Image:AleutianIslands.jpeg]]&lt;br /&gt;&lt;small&gt;Western Aleutian Islands, from a 1916 map of the Alaska Territory&lt;/small&gt;&lt;/center&gt;
78376
78377
78378 ==References==
78379 *{{1911}}
78380 ''Initial text from 1911 encyclopedia; has had some updating, revision, and Wikifying, but more is needed, especially on post-1945 history. Have added some civil history''
78381
78382 Total area of 6,821 sq mi from [http://www.britannica.com/ebi/article-9272796 EncyclopÃĻdia Britannica Online]
78383
78384 {{region}}
78385
78386 [[Category:Islands of Alaska]]
78387 [[Category:Archipelagoes]]
78388
78389 [[de:AlÃĢuten]]
78390 [[et:Aleuudid (saarestik)]]
78391 [[es:Islas Aleutianas]]
78392 [[eo:Aleutoj]]
78393 [[fr:Îles AlÊoutiennes]]
78394 [[gl:Aleutianas]]
78395 [[ko:ė•ŒëĨ˜ėƒ¨ ė—´ë„]]
78396 [[is:Aleuteyjar]]
78397 [[it:Isole Aleutine]]
78398 [[lt:AleutÅŗ salos]]
78399 [[hu:Aleut-szigetek]]
78400 [[nl:Aleoeten]]
78401 [[ja:ã‚ĸãƒĒãƒĨãƒŧã‚ˇãƒŖãƒŗ列åŗļ]]
78402 [[pl:Aleuty]]
78403 [[pt:Aleutas]]
78404 [[fi:Aleutit (saaristo)]]
78405 [[sv:Aleuterna]]</text>
78406 </revision>
78407 </page>
78408 <page>
78409 <title>Alderfly</title>
78410 <id>1382</id>
78411 <revision>
78412 <id>41017083</id>
78413 <timestamp>2006-02-24T14:39:03Z</timestamp>
78414 <contributor>
78415 <ip>132.236.75.81</ip>
78416 </contributor>
78417 <text xml:space="preserve">{{Taxobox
78418 | color = pink
78419 | name = Sialidae
78420 | regnum = [[Animal]]ia
78421 | phylum = [[Arthropod]]a
78422 | classis = [[Insect]]a
78423 | ordo = [[Megaloptera]]
78424 | familia = '''Sialidae'''
78425 | familia_authority = [[William Elford Leach|Leach]], 1815
78426 }}
78427
78428 '''Alderfly''' is the name given to [[Neuroptera|neuropterous]] [[insect]]s of the family [[Sialidae]], related to the ant-lions, with long filamentous antennae and four large wings, of which the [[anterior]] pair is rather longer than the posterior.
78429
78430 The females lay a vast number of eggs upon grass stems near water. The larvae are aquatic, active, armed with strong sharp mandibles, and breathe by means of seven pairs of abdominal branchial filaments. When full sized they leave the water and spend a quiescent [[pupa]]l stage on the land before [[metamorphosis (biology)|metamorphosis]] into the sexually mature insect.
78431
78432 ''Sialis lutaria'' is a well-known British example. In America they are called Fishflies and there are two genera, ''Sialis'' and ''Chauliodes.''
78433 [[Category:Megaloptera]]
78434 [[Category:Insects]]
78435
78436 [[nl:Sialidae]]</text>
78437 </revision>
78438 </page>
78439 <page>
78440 <title>Alder</title>
78441 <id>1383</id>
78442 <revision>
78443 <id>41816746</id>
78444 <timestamp>2006-03-01T23:03:33Z</timestamp>
78445 <contributor>
78446 <username>CambridgeBayWeather</username>
78447 <id>294180</id>
78448 </contributor>
78449 <minor />
78450 <comment>Reverted edits by [[Special:Contributions/205.155.32.10|205.155.32.10]] ([[User talk:205.155.32.10|talk]]) to last version by MPF</comment>
78451 <text xml:space="preserve">{{Otherusesabout|the common name of a plant genus}}
78452 {{Taxobox
78453 | color = lightgreen
78454 | name = Alder
78455 | image = Tagalder8139.jpg
78456 | image_width = 250px
78457 | image_caption = ''Alnus serrulata'' (Tag Alder)&lt;br /&gt;Male catkins on right,&lt;br /&gt;mature female catkins left&lt;br /&gt;[[Johnsonville, South Carolina]]
78458 | regnum = [[Plant]]ae
78459 | divisio = [[flowering plant|Magnoliophyta]]
78460 | classis = [[dicotyledon|Magnoliopsida]]
78461 | ordo = [[Fagales]]
78462 | familia = [[Betulaceae]]
78463 | genus = '''''Alnus'''''
78464 | genus_authority = [[Philip Miller|Mill.]]
78465 | subdivision_ranks = Species
78466 | subdivision =
78467 About 20-30 species, see text.
78468 }}
78469
78470 '''Alder''' is the common name of a [[genus]] of [[flowering plant]]s ('''''Alnus''''') belonging to the birch family (Family [[Betulaceae]]). The genus comprises about 30 [[species]] of [[Plant sexuality|monoecious]] [[tree]]s and [[shrub]]s, few reaching large size, distributed throughout the North Temperate zone, and in the [[New World]] also along the [[Andes]] southwards to [[Chile]]. The [[leaf|leaves]] are [[deciduous]] ([[evergreen]] or nearly so in a few species), alternate, simple, and serrated. The [[flower]]s are [[catkin]]s with elongate male catkins on the same plant as shorter female catkins, often before leaves appear; they are mainly wind-pollinated, but also visited by [[bee]]s to a small extent. They differ from the [[birch]]es (''Betula'', the other genus in the family) in that the female catkins are woody and do not disintegrate at maturity, opening to release the seeds in a similar manner to many [[Conifer cone|conifer cones]].
78471
78472 The best-known species is the Common or [[Black Alder]] (''A. glutinosa''), native to most of [[Europe]] and widely introduced elsewhere. The largest species is [[Red Alder]] (''A. rubra''), reaching 35 m (the tallest is 32 m) on the west coast of [[North America]], with Black Alder and [[Italian Alder]] (''A. cordata'') both reaching about 30 m. By contrast, the widespread [[Green Alder]] (''A. viridis'') is rarely more than a 5 m shrub.
78473
78474 The common name ''alder'' is derived from an old [[Germanic_language|Germanic]] root. The botanic name ''Alnus'' is the original [[Latin]] name.
78475
78476 ==Classification==
78477 The genus is divided into three subgenera:
78478
78479 '''Subgenus ''Alnus''.''' Trees. Shoot buds stalked. Male and female catkins produced in autumn (fall) but staying closed over winter, pollinating in late winter or early spring. About 15-25 species, including:
78480 *''A. acuminata'' - [[Andean Alder]]. Andes Mountains, South America.
78481 *''A. cordata'' - [[Italian Alder]]. Italy.
78482 *''Alnus formosana'' -[[Formosan Alder]]
78483 *''A. glutinosa'' - [[Black Alder]]. Europe.
78484 *''A. incana'' - [[Grey Alder]]. Europe &amp; Asia.
78485 **''A. oblongifolia'' (''A. incana'' subsp. ''oblongifolia'') - [[Grey Alder|Arizona Alder]]. Southwestern North America.
78486 **''A. rugosa'' (''A. incana'' subsp. ''rugosa'') - [[Grey Alder|Speckled Alder]]. Northeastern North America.
78487 **''A. tenuifolia'' (''A. incana'' subsp. ''tenuifolia'') - [[Grey Alder|Thinleaf Alder]] or Mountain Alder. Northwestern North America.
78488 *''A. japonica'' - [[Japanese Alder]]. Japan.
78489 *''A. jorullensis'' - [[Mexican Alder]]. Mexico, Guatemala.
78490 *''A. orientalis'' - [[Oriental Alder]]. Southern Turkey, northwest Syria, Cyprus.
78491 *''A. rhombifolia'' - [[White Alder]]. Interior western North America.
78492 *''A. rubra'' - [[Red Alder]]. West coastal North America.
78493 *''A. serrulata'' - Hazel alder, [[Tag Alder]] or Smooth alder. Eastern North America.
78494 *''A. subcordata'' - [[Caucasian Alder]]. Caucasus, Iran.
78495
78496 '''Subgenus ''Clethropsis''.''' Trees or shrubs. Shoot buds stalked. Male and female catkins produced in autumn (fall) and expanding and pollinating then. Three species:
78497 *''A. maritima'' - [[Seaside Alder]]. East coastal North America, plus disjunct population in Oklahoma.
78498 *''A. nepalensis'' - [[Nepalese Alder]]. Eastern Himalaya, southwest China.
78499 *''A. nitida'' - [[Himalayan Alder]]. Western Himalaya.
78500
78501 [[Image:Alnus serrulata leaves.jpg|right|thumb|Leaves of the [[Tag Alder]]]]
78502 '''Subgenus ''Alnobetula''.''' Shrubs. Shoot buds not stalked. Male and female catkins produced in late spring (after leaves appear) and expanding and pollinating then. One to four species:
78503 *''A. viridis'' - [[Green Alder]]. Widespread:
78504 **''A. viridis'' subsp. ''viridis''. Eurasia.
78505 **''A. viridis'' subsp. ''maximowiczii'' (''A. maximowiczii''). Japan.
78506 **''A. viridis'' subsp. ''crispa'' (''A. crispa''). Northern North America.
78507 **''A. viridis'' subsp. ''sinuata'' (''A. sinuata'', [[Sitka Alder]] or Slide Alder). Western North America, far northeastern Siberia.
78508
78509 ==Uses==
78510 [[Image:Alder female 8519.JPG|right|thumb|''Alnus serrulata'' (Tag Alder), female catkins, [[Johnsonville, South Carolina]]]]
78511 Alders establish [[symbiosis|symbioses]] with the [[nitrogen]]-fixing [[Actinobacteria]] ''Frankiella alni''. This bacteria converts atmospheric nitrogen into soil-soluble [[nitrate]]s which can be utilised by the alder, and favorably enhances the soil fertility generally. Alders benefit other plants growing near them by taking nitrogen out of the air and depositing it in the soil in usable form; fallen alder leaves make very rich [[compost]].
78512
78513 Alder catkins are one of the first sources of pollen for [[bee]] species, especially [[honeybee]]s, which use it for spring buildup. Alder is a preferred wood for [[charcoal]] making, formerly used in the manufacture of [[gunpowder]], or for [[smelting]] [[metal]] [[ore]]s, now used primarily for [[cooking]]. The wood is also traditionally used for [[smoking (food)|smoking]] [[fish]] and [[meat]], though this usage has often been replaced by other woods such as [[oak]] and [[hickory]]. It is popular as a material for [[electric guitar]] bodies.
78514
78515 Alders are sturdy and fast-growing, even in acidic and damaged sites such as burned areas and [[mining]] sites. Italian Alder is particularly useful on dry, infertile sites. Alders can be used as a producer of simple bio-mass, growing quickly in harsh environments. Alders are sometimes made into [[bonsai]].
78516
78517 Alder is used as a food plant by some [[Lepidoptera]] species, see [[list of Lepidoptera which feed on Alders]].
78518 [[Image:Alnus-viridis.JPG|thumb|left|Green Alder (''Alnus viridis'')]]
78519 [[Image:Alnus incana rugosa leaves.jpg|thumb|left|Speckled Alder (''Alnus incana'' subsp. ''rugosa'') - leaves]]
78520 &lt;br clear=left /&gt;
78521
78522 == External links ==
78523 {{Wiktionarypar|Alder}}
78524 * [http://www.inmygarden.org/archives/2005/02/alder_the_nitro_1.html Alder: The nitrogen fix] from The Monday Garden
78525 * ''Section'' Eclectic herbal information
78526 ** [http://www.henriettesherbal.com/eclectic/kings/alnus.html Alnus serrulata (Tag Alder)] King's American Dispensatory @ Henriette's Herbal
78527 ** [http://www.botanical.com/botanical/mgmh/a/alder019.html Alder Tree, Common (Alnus glutinosa) ] Mrs. Grieve's &quot;A Modern Herbal&quot; @ Botanical.com
78528 ** [http://www.botanical.com/botanical/mgmh/a/alder021.html Alder, Tag (Alnus serrulata)] Mrs. Grieve's &quot;A Modern Herbal&quot; @ Botanical.com
78529
78530 [[Category:Fagales]]
78531
78532 [[cs:OlÅĄe (strom)]]
78533 [[da:ElleslÃĻgten]]
78534 [[de:Erlen (Botanik)]]
78535 [[es:Alnus]]
78536 [[eo:Alno]]
78537 [[fr:Aulne]]
78538 [[it:Alnus]]
78539 [[lt:Alksnis]]
78540 [[li:Aels (sjtroek)]]
78541 [[nl:Els (boom)]]
78542 [[pl:Olsza]]
78543 [[sq:Alnus]]
78544 [[sr:ЈОва]]
78545 [[fi:Lepät]]
78546 [[sv:Alar]]
78547 [[tr:KÄązÄąlağaç]]
78548 [[uk:ВŅ–ĐģŅŒŅ…Đ°]]
78549 [[zh:čĩ¤æ¨]]</text>
78550 </revision>
78551 </page>
78552 <page>
78553 <title>Amos Bronson Alcott</title>
78554 <id>1384</id>
78555 <revision>
78556 <id>42078820</id>
78557 <timestamp>2006-03-03T17:59:40Z</timestamp>
78558 <contributor>
78559 <username>Rich Farmbrough</username>
78560 <id>82835</id>
78561 </contributor>
78562 <minor />
78563 <comment>Wikify dates</comment>
78564 <text xml:space="preserve">[[Image:Amos_Bronson_Alcott.jpg|thumb|right|200px|A. Bronson Alcott]]
78565 '''Amos Bronson Alcott''' ([[November 29]], [[1799]] - [[March 4]], [[1888]]) was an [[United States|American]] teacher and writer. He is remembered for founding a short-lived and unconventional school as well as a [[utopia]]n community known as &quot;[[Fruitlands]]&quot;, and for his association with [[Transcendentalism]].
78566
78567 Alcott was born on [[Spindle Hill]] in the town of [[Wolcott, Connecticut|Wolcott]], [[New Haven County, Connecticut|New Haven County]], [[Connecticut]]. His father, [[Joseph Chatfield Alcox]], was a [[farmer]] and [[mechanic]] whose ancestors, then bearing the name of Alcocke, had settled in eastern [[Massachusetts]] in colonial days. The son adopted the spelling &quot;Alcott&quot; in his early youth.
78568
78569 Self-educated and early thrown upon his own resources, he began in 1814 to earn his living by working in a clock factory in [[Plymouth, Connecticut]], and for many years after 1815 he peddled books and merchandise, chiefly in the southern states. He began teaching in [[Bristol, Connecticut]] in 1823, and subsequently conducted schools in [[Cheshire, Connecticut]], in 1825-[[1827]], again in Bristol in 1827-1828, in [[Boston, Massachusetts]] in 1828-[[1830]], in Germantown, now part of [[Philadelphia, Pennsylvania|Philadelphia]], in 1831-[[1833]], and in Philadelphia in 1833. As a young teacher he was most convinced by the [[educational philosophy]] of the [[Swiss]] [[pedagogue]] [[Johann Heinrich Pestalozzi]].
78570
78571 In 1830 he married [[Abby May]], the sister of [[Samuel J. May]] ([[1797]]-[[1871]]), the reformer and [[abolition]]ist. Alcott himself was a [[William Lloyd Garrison|Garrisonian]] [[abolitionist]], and pioneered the strategy of [[tax resistance]] to [[slavery]] which [[Thoreau]] made famous in ''[[Civil Disobedience]]''. Alcott publicly debated with Thoreau the use of force and passive resistance to slavery; along with Thoreau he was among the financial and moral supporters of [[John Brown (abolitionist)|John Brown]] and occasionally helped fugitive slaves escape on the [[Underground Railroad]].
78572
78573 In 1834 he opened the [[Temple School]] in Boston, which became famous because of his original methods. Alcott's plan was to develop self-instruction on the basis of self-analysis, with an emphasis on conversation rather than the lecture and drill which were prevalent in U.S. classrooms of the time. The subject matter was often the [[Gospel]]s, religious and moral principles; some of the school's conversations were published in Alcott's ''Conversations with Children on the Gospels''. Alcott refused [[corporal punishment]] as a means of disciplining his students; instead, he offered his own hand for an offending student to strike, saying that any failing was the teacher's responsibility. The shame and guilt this method induced, he believed, was far superior to the fear instilled by corporal punishment. As assistants in the school Alcott had two of [[nineteenth-century]] America's most talented women writers, [[Elizabeth Palmer Peabody]] (who published ''A Record of Mr. Alcott's School'' in 1835) and [[Margaret Fuller]]; as students he had the children of the Boston intellectual classes, including [[Josiah Quincy]], grandson of the president of [[Harvard]]. Alcott's methods were not well received; many in the church found his conversations on the Gospels close to blasphemous, and many in the public found his disciplinary measures ridiculous. The school was denounced in the press and rejected by most public opinion, and was not pecuniarily successful as the controversy caused many parents to remove their students. Finally Alcott alienated many of the remaining parents by admitting an [[African American]] child whom he then refused to expel from his classes. In 1839 the school was closed, although Alcott had won the affection of many of his pupils. His pedagogy was a forerunner of [[progressive education|progressive]] and [[democratic school]]ing.
78574
78575 [[Image:The Wayside, Concord, Massachusetts.JPG|thumb|right|300px|[[The Wayside]], home in turn to the Alcott family, [[Nathaniel Hawthorne]], and [[Margaret Sidney]].]]
78576
78577 In 1840 Alcott removed to [[Concord, Massachusetts]]. After a visit to [[England]], in 1842, he started with two English associates, [[Charles Lane]] and [[Henry C. Wright]], at &quot;Fruitlands&quot;, in the town of [[Harvard, Massachusetts]], a [[utopian]] [[socialist]] experiment in farm living and nature meditation as tending to develop the best powers of body and soul. The experiment quickly collapsed, and Alcott returned in 1844 to his Concord home &quot;Hillside&quot; (later renamed &quot;[[The Wayside]]&quot; by [[Nathaniel Hawthorne|Hawthorne]]) near that of [[Ralph Waldo Emerson]]. Alcott removed to Boston four years later, and again back to Concord after 1857.
78578
78579 He spoke, as opportunity offered, before the &quot;[[lyceum]]s&quot; then common in various parts of the United States, or addressed groups of hearers as they invited him. These &quot;conversations&quot; as he called them, were more or less informal talks on a great range of topics, spiritual, aesthetic and practical, in which he emphasized the ideas of the school of American [[Transcendentalist]]s led by Emerson, who was always his supporter and discreet admirer. He dwelt upon the illumination of the mind and soul by direct communion with the Creative Spirit; upon the spiritual and poetic monitions of external nature; and upon the benefit to man of a serene mood and a simple way of life.
78580
78581 Alcott's philosophical teaching was, and is still, often thought inconsistent, hazy or abrupt. But though he formulated no system of [[philosophy]], and seemed to show the influence now of [[Plato]], now of [[Immanuel Kant|Kant]], or of German thought as filtered through the brain of [[Coleridge]], he was, like Emerson, steadily optimistic, idealistic, and individualistic. The teachings of Dr. [[William Ellery Channing]] a little before had laid the groundwork for the work of most of the Concord Transcendentalists and contributors to ''The Dial'', of whom Alcott was one.
78582
78583 In his last years, his daughter, the writer [[Louisa May Alcott]], provided for him. Alcott was gratified at being able to become the nominal, and at times the actual, head of a Concord &quot;Summer School of Philosophy and Literature&quot;, which had its first session in 1879, and in which, in a building next to his house, listeners were addressed during a part of several successive summers on many themes in philosophy, religion and letters.
78584
78585 Alcott's published books, all from late in his life, included ''Tablets'' (1868), ''Concord Days'' (1872), and ''Sonnets and Canzonets'' (1882). Earlier he had written a series of ''[[Orpheus|Orphic]] Sayings'' which were published in ''The Dial'' as examples of Transcendentalist thought. The sayings, though called [[oracle|oracular]], were considered sloppy, or vague by contemporary commentators as well as [[twentieth-century]] ones. He left a large collection of personal jottings and memorabilia, most of which remain unpublished. He died in Boston on [[4 March]] [[1888]].
78586
78587 ==References==
78588 * Alcott, Amos Bronson. ''Conversations with Children on the Gospels''.
78589 * [[Geraldine Brooks]]. &quot;Orpheus at the Plough.&quot; ''[[The New Yorker]]'', [[January 10]], [[2005]], pp. 58-65. ([http://geraldinebrooks.com/march_alcott.shtml The New Yorker article ] is reproduced on author's website)
78590
78591 {{1911}}
78592
78593 [[Category:1799 births|Alcott, Amos Bronson]]
78594 [[Category:1888 deaths|Alcott, Amos Bronson]]
78595 [[Category:Alternative education|Alcott, Amos Bronson]]
78596 [[Category:Tax resisters|Alcott, Amos Bronson]]
78597 [[Category:Teachers|Alcott, Amos Bronson]]
78598 [[Category:Transcendentalism|Alcott, Amos Bronson]]
78599
78600 [[de:Amos Bronson Alcott]]
78601 [[es:Amos Bronson Alcott]]
78602 [[gl:Amos Bronson Alcott]]</text>
78603 </revision>
78604 </page>
78605 <page>
78606 <title>Albatross</title>
78607 <id>1385</id>
78608 <revision>
78609 <id>41890958</id>
78610 <timestamp>2006-03-02T11:50:42Z</timestamp>
78611 <contributor>
78612 <username>Sabine's Sunbird</username>
78613 <id>123079</id>
78614 </contributor>
78615 <minor />
78616 <comment>references</comment>
78617 <text xml:space="preserve">:''This article is about the bird family. For other uses, see [[Albatross (disambiguation)]].''
78618 {{Taxobox
78619 | color = pink
78620 | name = Albatross
78621 | image = Short tailed albatross.jpeg
78622 | image_width = 230px
78623 | image_caption = Short-tailed Albatross
78624 | regnum = [[Animal]]ia
78625 | phylum = [[Chordate|Chordata]]
78626 | classis = [[Bird|Aves]]
78627 | ordo = [[Procellariiformes]]
78628 | familia = '''Diomedeidae'''
78629 | familia_authority = [[George Robert Gray|G.R. Gray]], 1840
78630 | subdivision_ranks = Genera
78631 | subdivision =
78632 ''[[Diomedea]]''&lt;br /&gt;
78633 ''[[Thalassarche]]''&lt;br /&gt;
78634 ''[[Phoebastria]]''&lt;br /&gt;
78635 ''[[Phoebetria]]''
78636 }}
78637
78638 The '''albatrosses''' are [[seabird]]s in the [[family (biology)|family]] '''Diomedeidae''', which is closely allied to the [[procellariidae|procellarid]]s, [[storm-petrel]]s and [[diving-petrel]]s in the order [[Procellariiformes]] (the tubenoses). They range widely in the [[Southern Ocean]] and the North [[Pacific]]. They are absent from the North [[Atlantic]] although [[fossil]] remains show they once occurred there too. Albatrosses are amongst the largest of [[bird flight|flying]] birds, and the great albatrosses from the [[genus]] ''Diomedea'' have the largest wingspans of any extant birds.
78639
78640 Albatrosses are highly efficient in the air, using [[dynamic soaring]] and slope soaring to cover great distances with little exertion. They feed on [[squid]], [[fish]] and [[krill]] by either scavenging, surface seizing or diving. Albatrosses are [[seabird colony|colonial]], nesting for the most part on remote oceanic islands, often with several species nesting together. Breeding pairs form over several years and will remain together for life. A breeding season can take over a year from laying to [[fledge|fledging]], with a single [[egg (biology)|egg]] laid in each breeding season.
78641
78642 Nineteen of the 21 species of albatrosses are threatened with [[extinction]]. Numbers of albatrosses have declined in the past due to harvesting for [[feather]]s, but today the albatrosses are threatened by [[introduced species]] such as [[rat]]s and [[feral cat]]s that attack eggs, chicks and nesting adults; by [[pollution]]; and by [[long-line fishing]]. Long-line fisheries pose the greatest threat, as feeding birds are attracted to the [[bait]] and become hooked on the lines and drown. Governments, conservation organisations and fishermen are all working towards reducing this by-catch.
78643 ==Albatross biology==
78644 ===Taxonomy and evolution===
78645 The albatrosses comprise 21 [[species]] in 4 [[genus|genera]]. The four genera are the [[great albatross]]es (''Diomedea''), the [[mollymawk]]s (''Thalassarche''), the [[North Pacific albatross]]es (''Phoebastria''), and the [[sooty albatross]]es or sooties (''Phoebetria''). Of the four genera, the North Pacific albatrosses are considered to be a sister taxon to the great albatrosses, while the sooty albatrosses are considered closer to the mollymawks.
78646
78647 The [[taxonomy]] of the albatross group has been a source of a great deal of debate. The [[Sibley-Ahlquist taxonomy]] places seabirds, [[bird of prey|birds of prey]] and many others in a greatly enlarged order [[Ciconiiformes]], whereas the ornithological organisations in North America, Europe, South Africa, Australia and New Zealand retain the more traditional order [[Procellariiformes]].
78648
78649 Within the family, the assignment of genera has been debated for over a hundred years. Originally placed into a single genus, ''Diomedea'', they were split into four different genera in 1852, then lumped back together and split again several times, acquiring 12 different genus names in total (though never more than 8 at one time) by 1965 (''Diomedea'', ''Phoebastria'', ''Thalassarche'', ''Phoebetria'', ''Thalassageron'', ''Diomedella'', ''Nealbutrus'', ''Rhothonia'', ''Julietata'', ''Galapagornis'', ''Laysanornis'', and ''Penthirenia'').
78650
78651 By 1965, in an attempt to bring some order back to the classification of albatrosses they were lumped into two genera, ''Phoebetria'' (the 'primitive' sooty albatrosses which most closely seemed to resemble the procellarids) and ''Diomedea'' (the rest)&lt;ref&gt;Alexander, W. B., Fleming C. A., Falla R. A., Kuroda N. H., Jouanin C., Rowan M. K., Murphy R. C., Serventy D. L., Salomonsen F., Ticknell W. L. N., Voous K. H., Warham J., Watson G. E., Winterbottom J. M., and Bourne W. R. P. 1965. &quot;Correspondence: The families and genera of the petrels and their names.&quot; ''Ibis'' '''107''': 401-5.&lt;/ref&gt;. Though there was a case for the simplification of the family (particularly the nomenclature), the classification was pretty much the same as suggested by [[Elliott Coues]] in 1866, paid little attention to more recent studies and even ignored some of Coues's suggestions.
78652
78653 More recent research by Gary Nunn of the [[American Museum of Natural History]] ([[1996]]) and other researchers around the world studied the [[mitochondrial DNA]] of all the 14 accepted species, finding that there were four, not two, monophyletic groups within the albatrosses&lt;ref&gt;Nunn, G. B., Cooper, J., Jouventin, P., Robertson, C. J. R. and Robertson G. G. (1996) &quot;Evolutionary relationships among extant albatrosses (Procellariiformes: Diomedeidae) established from complete cytochrome-b gene sequences&quot;. ''Auk'' '''113''': 784-801. [http://elibrary.unm.edu/sora/Auk/v113n04/p0784-p0801.pdf]&lt;/ref&gt;. They proposed the resurrection of two of the old genus names, ''Phoebastria'' for the North Pacific albatrosses and ''Thalassarche'' for the mollymawks, with the great albatrosses retaining ''Diomedea'' and the sooty albatrosses staying in ''Phoebetria''. Both the [[British Ornithologists' Union]] and the South African authorities split the albatrosses into four genera as Nunn suggested, and the change has been accepted by the majority of researchers as well.
78654
78655 While there is some agreement on the number of genera, there is less agreement on the number of species. After his work on albatross genera, Nunn went on to propose 24 different species in 1998&lt;ref&gt;Robertson, C. J. R. and Nunn, G. B. (1998) &quot;Towards a new taxonomy for albatrosses&quot; in: ''Proceedings First International Conference on the Biology and Conservation of Albatrosses'', G.Robertson &amp; R.Gales (Eds), Chipping Norton:Surrey Beatty &amp; Sons, 13-19,&lt;/ref&gt;, compared to the 14 then accepted. These changes were not universally accepted; some of his splits have been accepted while others have been rejected&lt;ref&gt;Burg, T.M., &amp; Croxall, J.P., (2004) &quot;Global population structure and taxonomy of the wandering albatross species complex&quot;. ''Molecular Ecology'' '''13''': 2345-2355. [http://biology.queensu.ca/~burgt/pdf/Burg&amp;Croxall2004.pdf]&lt;/ref&gt; and for the most part 21 species is the number accepted by the [[IUCN]] and many others (though by no means not all—two authors have called for the number of species to be returned to 14&lt;ref&gt;Penhallurick, J. and Wink, M. (2004). &quot;Analysis of the taxonomy and nomenclature of the Procellariformes based on complete nucleotide sequences of the mitochondrial cytochrome b gene.&quot; ''Emu'' '''104''': 125-147.&lt;/ref&gt;}).
78656
78657 The molecular study of the [[evolution]] of the bird families by [[Sibley-Ahlquist taxonomy|Sibley and Ahlquist]] has put the [[Adaptive radiation|radiation]] of the [[Procellariiformes]] in the [[Oligocene]] period (35&amp;ndash;30 million years ago), though the group has an older history, with a [[fossil]] attributed to the order, a seabird known as ''Tytthostonyx'', being found in late [[Cretaceous]] rocks (70 mya). The molecular evidence suggests that the storm-petrels were the first to diverge from the ancestral stock, and the albatrosses next, with the procellarids and diving petrels. The earliest fossil albatross was found in [[South Carolina]] in rocks dating from the Upper Oligocene, though it is uncertain which [[genus]] it should be attributed to. The four genera are believed to have split more recently; a fossil albatross attributed to the North Pacific albatrosses, ''Phoebastria californica'' was found in mid [[Miocene]] rocks in [[California]], showing the split between the great albatrosses and the North Pacific albatrosses occurred by 15 mya. Similar fossil finds in the southern hemisphere put the split between the sooties and mollymawks at 10 mya&lt;ref name = &quot;Brooke&quot;&gt;Brooke, M. (2004). ''Albatrosses And Petrels Across The World'': Procellariidae. Oxford University Press, Oxford, UK ISBN 0-19-850125-0&lt;/ref&gt;.
78658 The fossil record of the albatrosses in the northern hemisphere is more complete than that of the southern, and many fossil forms of albatross have been found in the North [[Atlantic]], which today has no albatrosses. The remains of a colony of [[Short-tailed Albatross]]es have been uncovered on the island of [[Bermuda]], and the majority of fossil albatrosses from the North Atlantic have been of the genus ''Phoebastria'' (the North Pacific albatrosses), one, ''Phoebastria anglica'', has been found in deposits in both [[North Carolina]] and [[England]].
78659
78660 ===Morphology and flight===
78661 [[Image:Black footed albatross.jpg|thumb|250px|Unlike most Procellariiformes, albatrosses, like this Black-footed Albatross, can walk well on land.]]
78662 The albatrosses are a group of large to very large [[bird]]s, amongst the largest of the seabirds, with very long narrow wings, which are aerodynamically highly efficient. The [[beak|bill]] is large, strong and sharp-edged, the upper mandible terminating in a large hook. This bill is composed of several horny plates, and along the sides are the two 'tubes', long nostrils that give the [[order (biology)|order]] its name. The tubes of all albatrosses are along the sides of the bill, unlike the rest of the [[Procellariiformes]] were the tubes run along the top of the bill. These tubes allow the albatrosses to have an acute sense of smell, an unusual ability for birds. Like other Procellariiformes they use this olfactory ability while foraging in order to locate potential food sources&lt;ref&gt;Lequette, B., Verheyden, C., Jowentin, P. (1989) &quot;Olfaction in Subantarctic seabirds: Its phylogenetic and ecological significance&quot; ''The Condor'' '''91''': 732-135. [http://scholar.google.com/url?sa=U&amp;q=http://elibrary.unm.edu/sora/Condor/files/issues/v091n03/p0732-p0735.pdf]&lt;/ref&gt;. The feet have no hind toe, and the three anterior toes are completely webbed. The legs are strong for Procellariiformes, in fact uniquely amongst the order in that they and the [[giant petrel]]s are able to walk well on land.
78663
78664 The adult [[plumage]] of most of the albatrosses is usually some variation of dark upper-wing and back, white undersides, often compared to that of a [[gull]]. At one extreme the [[Wandering Albatross]] is almost completely white except for the ends of the wings, at the other the [[Amsterdam Albatross]] has an almost juvenile like breeding plumage with a great deal of brown, particularly a strong brown band around the chest. Several species of [[mollymawk]]s and [[North Pacific albatross]]es have face and head markings like eye patches or are grey or yellow instead of white. Three albatross species, the [[Black-footed Albatross]] and the two [[Sooty albatross]]es vary completely from the usual patterns and are almost entirely black (or dark grey in the case of the [[Sooty Albatross]]). Albatrosses take several years to get their full adult breeding plumage.
78665
78666 The wingspans of the largest great albatrosses (genus ''Diomedea'') are the largest of any bird, exceeding 340 cm, although the other species' wingspans are considerably smaller. The wings are cambered, with thickened streamlined leading edges. Albatrosses travel huge distances with two techniques used by many long-winged seabirds, [[dynamic soaring]] and slope soaring. Dynamic soaring enables them to minimise the effort needed by gliding across wave fronts gaining [[energy]] from the vertical [[wind gradient]]. Slope soaring is more straightforward, the albatross turns to the wind, gaining height, from where it can then glide back down to the sea. Albatross have high glide ratios, around 22:23, meaning that for every metre they drop they can travel forwards 22 metres. They are aided in soaring by a shoulder-lock, a sheet of [[tendon]] that locks the wing when fully extended, allowing the wing to be kept up and out without any muscle expenditure, a morphological adaptation they share with the giant petrels&lt;ref&gt;Pennycuick, C. J. (1982). &quot;The flight of petrels and albatrosses (Procellariiformes), observed in South Georgia and its vicinity&quot;. ''Philosophical Transactions of the Royal Society of London B'' '''300''': 75–106.&lt;/ref&gt;.
78667
78668 [[Image:Albatross_shape.png|thumb|left|200px|Slope soaring and dynamic soaring allow albatrosses to travel great distances with little exertion.]]
78669 Albatrosses combine these soaring techniques with the use of predictable [[weather]] systems; albatrosses in the southern hemisphere flying north from their colonies will take a clockwise route and those flying south will fly anticlockwise&lt;ref name =&quot;tick&quot;&gt;Tickell, W.L.N. (2000). ''Albatrosses''. Sussex:Pica Press, ISBN 1-873403-94-1&lt;/ref&gt;. Albatrosses are so well adapted to this lifestyle that their [[heart rate]]s while flying are close to their basal heart rate when resting. This efficiency is such that the most energetically demanding aspect of a foraging trip is not the distance covered, but the landings, takeoffs and hunting they undertake having found a food source&lt;ref&gt;Weimerskirch H, Guionnet T, Martin J, Shaffer SA, Costa DP. (2000) &quot;Fast and fuel efficient? Optimal use of wind by flying albatrosses.&quot; ''Proc Biol Sci'' '''267''': (1455) 1869-74. &lt;/ref&gt;. This efficient long distance travelling underlies the albatross's success as a long distance forager, covering great distances and expending little energy looking for patchily distributed food sources.
78670
78671 ===Distribution and range at sea===
78672 All albatrosses range in the southern hemisphere except for the four North Pacific albatrosses, of which three occur exclusively in the North Pacific, from Hawaii to Japan, California and Alaska; and one, the [[Waved Albatross]], breeds on the [[equator]] in the [[Galapagos Islands]] and feeds off the coast of [[South America]]. The need for wind in order to glide is the reason albatrosses are for the most part confined to higher latitudes, since they are unsuited to sustained flapping flight, and are usually incapable of crossing the [[doldrums]]. The exception to this rule is the Waved Albatross, which breeds and feeds in the equatorial waters around the Galapagos Islands, it is able to live there because of the cool waters of the [[Humboldt Current]].
78673
78674 It is not known for certain why the albatrosses became [[extinct]] in the North [[Atlantic]], although rising sea levels due to an [[interglacial]] warming period are thought to have submerged the Short-tailed Albatross colony found in Bermuda&lt;ref&gt;Olson, S.L., Hearty, P.J. (2003) &quot;Probable extirpation of a breeding colony of Short-tailed Albatross (''Phoebastria albatrus'') on Bermuda by Pleistocene sea-level rise.&quot; ''Proceedings of the National Academy of Science'' '''100''': (22) 12825-12829.&lt;/ref&gt;. Some southern species that have occasionally turned up as [[vagrancy (biology)|vagrants]] in the North Atlantic have essentially become exiled and can remain there for decades. One of these exiles, a [[Black-browed Albatross]], returned to [[gannet]] colonies in [[Scotland]] for many years in a lonely attempt to breed&lt;ref name = &quot;Brit&quot;&gt;Cocker, M., &amp; Mabey, R., (2005) ''Birds Britannica'' London:Chatto &amp; Windus, ISBN 0-701-16907-9&lt;/ref&gt;.
78675
78676 The use of [[satellite tracking]] is teaching scientists a great deal about the way albatrosses forgae across the ocean in order to find food. They undertake no annual [[bird migration|migration]], but disperse widely after breeding, in the case of southern hemisphere species often undertaking circumpolar trips&lt;ref&gt;Croxall, J. P., Silk, J.R.D., Phillips, R.A., Afanasyev, V., Briggs, D.R., (2005) &quot;Global Circumnaviagtions: Tracking year-round ranges of nonbreeding Albatrosses&quot; ''Science'' '''307''': 249-250.&lt;/ref&gt;. There is also evidence that there is separation the ranges of different species at sea. Comparing the foraging [[niche]]s of two related species that breed on [[Campbell Island]], the [[Campbell Albatross]] and the [[Grey-headed Albatross]], the Campbell Albatross primarily fed over the [[Campbell Plateau]] whereas the the Grey-Headed Albatross fed over oceanic waters. [[Wandering Albatross]]es also react strongly to [[bathymetry]], feeding only in waters deeper than 1000m; so rigidly did the satellite plots match this contour that one scientist remarked &quot;it almost appears as if the birds notice and obey a 'No Entry' sign where the water shallows to less than 1000m&quot;&lt;ref name = &quot;Brooke&quot;&gt;Brooke, M. (2004). ''Albatrosses And Petrels Across The World'': Procellariidae. Oxford University Press, Oxford, UK ISBN 0-19-850125-0&lt;/ref&gt;. There is also evidence of differing ranges for the sexes of the same species, one study showed that male [[Wandering Albatross]]es forage further south than females.
78677
78678 ===Diet===
78679 The albatross diet is dominated by [[cephalopod]]s, [[fish]] and [[crustacean]]s, although they will also scavenge [[carrion]] and feed on other [[zooplankton]]&lt;ref name =&quot;tick&quot;&gt;Tickell, W.L.N. (2000). ''Albatrosses''. Sussex:Pica Press, ISBN 1-873403-94-1&lt;/ref&gt;. It should be noted that for most species a comprehensive understanding of diet is only known for the breeding season, when the albatrosses are on land and study is possible. The importance of each of these varies from species to species, and even from population to population, some concentrate on [[squid]] alone, others take more krill, or fish. Of the two albatross species found in [[Hawaii]], one, the [[Black-footed Albatross]] takes mostly fish while the [[Laysan Albatross|Laysan]] feeds on squid.
78680
78681 The use of dataloggers at sea that record ingestion of water against time (providing a likely time of feeding) suggest that albatross predominantly feed during the day. Analysis of the squid beaks regurgitated by albatrosses has shown that many of the squid eaten are too large to have been caught alive&lt;ref&gt;Croxall, J.P. &amp; Prince, P.A. (1994). &quot;Dead or alive, night or day: how do albatrosses catch squid?&quot; ''Antarctic Science'' '''6''': 155–162.&lt;/ref&gt;, and include mid-water species likely to be beyond the reach of albatross, suggesting that, for some species (like the [[Wandering Albatross]]), scavenged squid may be an important part of the diet. The source of these dead squid is a matter of debate, some certainly comes from squid [[fisheries]], but in nature it probably came from the die-off that occurs after squid spawning and the vomit of squid-eating [[whale]]s ([[sperm whale]]s, [[pilot whale]]s and [[Southern Bottlenose Whale]]s), or possibly some other source. The diet of other species, like the [[Black-browed Albatross]] or the [[Grey-headed Albatross]], is rich with smaller species of squid that tend to sink after death, and scavenging is not assumed to play a large role in their diet.
78682
78683 Until recently it was thought that albatross were predominantly surface feeders, swimming at the surface and snapping up squid and fish pushed to the surface by currents, other predators or death. The deployment of capillary depth recorders, which record the maximum dive depth undertaken by a bird (between attaching it to a bird and recovering it when it returns to land), has shown that while some species, like the [[Wandering Albatross]], do not dive deeper than a metre, some species, like the [[Light-mantled Sooty Albatross]], have a mean diving depth of almost 5m and can dive as deep as 12.5 m&lt;ref&gt;Prince, P.A., Huin, N., Weimerskirch, H., (1994) &quot;Diving depths of albatrosses&quot; ''Antarctic Science'' '''6''': (''3'') 353-354.&lt;/ref&gt;. In addition to surface feeding and diving they have now also been observed plunge diving from the air to snatch prey&lt;ref&gt;Cobley, N.D., (1996) &quot;An observation of live prey capture by a Black-browed Albatross ''Diomedea melanophrys'' &quot; ''Marine Ornithology'' '''24''': 45-46.[http://www.marineornithology.org/PDF/24/24_10.pdf]&lt;/ref&gt;.
78684
78685 ===Breeding===
78686 [[Image:Diomedea epomorpha (Mattern).jpg|thumb|230px|right|Southern Royal Albatrosses nest on remote islands as well as on the Otago Peninsula in the city of Dunedin, New Zealand]]
78687 Albatrosses are [[seabird colony|colonial]], usually nesting on isolated islands; where colonies are on larger landmasses they are found on exposed headlands with good approaches from the sea in several directions, like the colony on the [[Otago Peninsula]] in [[Dunedin, New Zealand]]. Colonies vary from the very dense aggregations favoured by the mollymawks ([[Black-browed Albatross]] colonies on the [[Falkland Islands]] have densities of 70 nests per 100 m²) to the much looser groups and widely spaced individual nests favoured by the sooty and great albatrosses. All albatross colonies are on islands that historically were free of land [[mammal]]s. Albatrosses are highly [[philopatry|philopatric]], meaning they will usually return to their natal colony to breed. This tendency to return is so strong that a study of [[Laysan Albatross]] showed that that average distance between hatching site and the site a bird established its own territory was 22 m&lt;ref&gt;Fisher, H.I., (1976) &quot;Some dynamics of a breeding colony of Laysan Albatrosses. ''Wilson Bulletin'' '''88''': 121-142.&lt;/ref&gt;.
78688
78689 [[Image:Phoebastria irrorata NOAA mvey0649.jpg|thumb|left|250px|Bill clashing is one of the stereotyped actions of Waved Albatross breeding dances]]
78690 Like most seabirds, albatrosses are [[K-selected]] with regard to their life-history, meaning they live much longer than other birds, they delay breeding for longer, and invest more effort into fewer young. Albatrosses are very long lived. Most species survive upwards of 60 years, the oldest recorded being a [[Northern Royal Albatross]] that was [[Bird ringing|ringed]] as an adult and survived for another 51 years, giving it an estimated age of 61&lt;ref&gt;Robertson, C.J.R. (1993). &quot;Survival and longevity of the Northern Royal Albatross ''Diomedea epomophora sanfordi'' at Taiaroa Head&quot; 1937-93. ''Emu'' '''93''': 269-276.&lt;/ref&gt;. Given that most albatross ringing projects are considerably younger than that, is seems likely that other species will prove to live that long and even longer.
78691
78692 Albatrosses reach [[sexual maturity]] slowly, after about 5 years, but even once they have reached maturity they will not begin to breed for another couple of years (even up to 10 years for some species). Young non-breeders will still attend a colony prior to beginning to breed, spending many years practicing the elaborate breeding rituals and &quot;dances&quot; that the family is famous for&lt;ref&gt;Jouventin, P., Monicault, G. de &amp; Blosseville, J.M. (1981) &quot;La danse de l'albatros, ''Phoebetria fusca''&quot;. ''Behaviour'' '''78''': 43-80.&lt;/ref&gt;. Birds arriving back at the colony for the first time already have the stereotyped behaviours that compose albatross [[language]], but can neither &quot;read&quot; that behaviour as exhibited by other birds nor respond appropriately&lt;ref name =&quot;tick&quot;&gt;Tickell, W.L.N. (2000). ''Albatrosses''. Sussex:Pica Press, ISBN 1-873403-94-1&lt;/ref&gt;. After a period of trial and error [[learning]], the young birds learn the [[syntax]] and perfect the dances. This language is mastered more rapidly if the younger birds are around older birds.
78693
78694 The repertoire of behaviour involves synchronised performances of various actions such as [[preen]]ing, pointing, calling, bill clacking, staring, and combinations of such behaviours (like the sky-call)&lt;ref&gt;Pickering, S.P.C., &amp; Berrow, S.D., (2001) &quot;Courtship behaviour of the Wandering Albatross ''Diomedea exulans'' at Bird Island, South Georgia&quot; ''Marine Ornithology'' '''29''': 29-37 [http://www.marineornithology.org/PDF/29_1/29_1_6.pdf]&lt;/ref&gt;. As they progress the number of birds they interact with drops until they choose one partner. They then continue to perfect an individual language that will eventually be unique to that one pair. Having established a pair bond that will last for life, however, most of that dance will never be used ever again. The 'divorce' of a pair is a rare occurrence, usually only happening after several years of breeding failure.
78695
78696 [[Image:Albatros_ceja_negra_-_paso_drake_-_noviembre_2005.jpg|thumb|250px|Black-browed albatross flying over the Drake Passage]]
78697 The reason for the elaborate and painstaking rituals is to ensure that the correct partner has been chosen, and to perfect recognition of their partner, as egg laying and chick rearing is a huge investment, and even species that can complete an egg-laying cycle in under a year seldom lay eggs in consecutive years&lt;ref name = &quot;Brooke&quot;&gt;Brooke, M. (2004). ''Albatrosses And Petrels Across The World'': Procellariidae. Oxford University Press, Oxford, UK ISBN 0-19-850125-0&lt;/ref&gt;. The great albatrosses (like the [[Wandering Albatross]]) take over a year to raise a chick from laying to [[fledge|fledging]]. Albatrosses lay a single [[egg (biology)|egg]]; if the egg is lost to predators or accidentally broken then no further breeding attempts are made that year.
78698
78699 All the southern albatrosses create large [[nest]]s for their egg, whereas the three species in the north Pacific make more rudimentary nests. The [[Waved Albatross]], on the other hand, makes no nest and will even move its egg around the pair's territory, as much as 50 m, sometimes causing it to lose the egg&lt;ref&gt;Anderson, D.J. &amp; Cruz, F. (1998) &quot;Biology and management of the Waved Albatross at the Galapagos Islands. Pp.105-109 in ''Albatross Biology and Conservation'' (Roberston , G. &amp; Gales, R. eds) Chipping Norton:Surrey Beatty and &amp; Sons ISBN: 0949324825 &lt;/ref&gt;. In all albatrosses species both parents [[incubate]] the egg, in stints that last between one day to three weeks. Incubation lasts around 70&amp;ndash;80 days (longer for the larger albatrosses), the longest incubation period of any bird. It can be an energetically demanding process, with the adult losing as much as 83 g of body weight a day&lt;ref&gt;Warham, J. (1990) ''The Petrels - Their Ecology and Breeding Systems'' London:Academic Press. &lt;/ref&gt;.
78700
78701 After hatching the chick is brooded and guarded for three weeks until it is large enough to defend and [[thermoregulation|thermoregulate]] itself. During this period the chick is fed regularly with small meals by its parents when they relieve each other from duty. After the brooding period is over the chick is fed in regular intervals by both parents. The parents adopt alternative patterns of short and long foraging trips, providing meals that weigh around 12% of their body weight (around 600 g). The meals are composed of both fresh [[squid]], [[fish]] and [[krill]], as well as [[stomach oil]], an [[food energy|energy]]-rich food that is lighter to carry than undigested prey items&lt;ref&gt;Warham, J. (1976) &quot;The incidence, function and ecological significance of petrel stomach oils.&quot; ''Proceedings of the New Zealand Ecological Society'' '''24''': 84-93&lt;/ref&gt;. This oil is created in a stomach organ known as a proventriculus from digested prey items by all tubenoses, and gives them their distinctive musty smell.
78702
78703 Albatross chicks take a long time to fledge. In the case of the great albatrosses it can up to 280 days, even for the smaller albatrosses it takes anywhere between 170 and 140 days&lt;ref name =&quot;delhoyo&quot;&gt;Carboneras, C. (1992) &quot;Family Diomedeidae (Albatross)&quot; in ''Handbook of Birds of the World'' Vol 1. Barcelona:Lynx Edicions, ISBN 84-87334-10-5&lt;/ref&gt;. Like many seabirds, albatross chicks will actually gain enough weight to be heavier than their parents, and prior to fledging they use these reserves to build up body condition (particularly growing all their flight feathers), usually fledging at the same weight as their parents. Albatross chicks fledge on their own, and receive no further help from their parents, who will actually return to the nest after fledging, unaware their chick has left. Studies of juveniles dispersing at sea have suggested an innate migration behaviour, a genetically coded navigation route, that helps young birds first at sea&lt;ref&gt;Åkesson, S., &amp; Weimerskirch, H., (2005) &quot;Albatross Long-Distance Navigation: Comparing Adults And Juveniles&quot; ''Journal of Navigation'' '''58''': 365-373.&lt;/ref&gt;.
78704
78705 ==Albatrosses and humans==
78706 ===Etymology===
78707 The name albatross is derived from the [[Arabic language|Arabic]] ''al-cÃĸdous'', (a [[pelican]]), which travelled to English via the [[Portuguese language|Portuguese]] form ''Alcatraz''. The [[Oxford English Dictionary|OED]] notes that the word ''alcatraz'' was originally applied to the [[frigatebird]]; the modification to ''albatross'' was perhaps influenced by [[Latin]] ''alba'' meaning &quot;white&quot;, in contrast to frigatebirds which are black.
78708
78709 They were once commonly known as '''Goonie birds''' or '''Gooney birds''', particularly those of the North [[Pacific]]. In the southern hemisphere the name '''mollymawk''' is still well established in some areas, which is a corrupted form of ''malle-mugge'', an old [[Dutch language|Dutch]] name for the [[Northern Fulmar]]. The name ''Diomedea'', assigned to the albatrosses by [[Carolus Linnaeus|Linnaeus]] references the mythical metamorphosis of the companions of the Greek warrior [[Diomedes]] into birds.
78710
78711 ===Albatrosses and culture===
78712 Albatrosses have been described as &quot;the most legendary of all birds&quot;&lt;ref name =&quot;delhoyo&quot;&gt;Carboneras, C. (1992) &quot;Family Diomedeidae (Albatross)&quot; in ''Handbook of Birds of the World'' Vol 1. Barcelona:Lynx Edicions, ISBN 84-87334-10-5&lt;/ref&gt;. They feature prominently in [[poetry]] such as the [[Samuel Taylor Coleridge]] poem ''[[The Rime of the Ancient Mariner]]''. In part due to the poem, there is a widespread [[urban legend|myth]] that sailors believe it disastrous to shoot or harm an albatross; in truth, however, sailors regularly killed and ate them&lt;ref name = &quot;Brit&quot;&gt;Cocker, M., &amp; Mabey, R., (2005) ''Birds Britannica'' London:Chatto &amp; Windus, ISBN 0-701-16907-9&lt;/ref&gt;. But they were often regarded as the souls of lost sailors. More recently they have become part of [[popular culture]], for example, in a [[Monty Python]] [[Albatross (Monty Python sketch)|sketch]], or the song [[Echoes (1971 song)|Echoes]] by [[Pink Floyd]]. In the movie ''[[Serenity_(film)|Serenity]]'', the character River was refered to as an albatross by The Operative, in the context of Coleridge's poem.
78713
78714 ===Threats and conservation===
78715 In spite of often being accorded legendary status by people albatrosses have not escaped both indirect and direct pressure from humanity. Early encounters with albatrosses by [[Polynesia]]ns and [[Aleut]] Indians resulted in hunting and in some cases expiration from some islands (such as [[Easter Island]]). As [[European]]s began sailing the world they too began to hunt albatross, &quot;fishing&quot; for them from boats to serve at the table or blasting them for sport&lt;ref&gt;Safina, C. (2002) ''Eye of the Albatross: Visions of Hope and Survival'' New York:Henry Holt &amp; Company ISBN: 0805062297&lt;/ref&gt;. This sport reached its peak on emigration lines bound for [[Australia]], and only died down when ships became too fast to fish from, and regulations stopped the discharge of weapons for safety reasons. In the 19th century, albatross colonies, particularly those in the North Pacific, were harvested for the feather trade, leading to the near extinction of the [[Short-tailed Albatross]].
78716
78717 According to the [[IUCN Red List]], 19 of the 21 albatross species are considered to have a [[conservation status]] as vulnerable or worse&lt;ref&gt;IUCN, 2004. [http://www.iucnredlist.org/search/search.php?freetext=Albatross&amp;modifier=phrase&amp;criteria=wholedb&amp;taxa_species=1&amp;redlistCategory%5B%5D=allex&amp;redlistAssessyear%5B%5D=all&amp;country%5B%5D=all&amp;aquatic%5B%5D=all&amp;regions%5B%5D=all&amp;habitats%5B%5D=all&amp;threats%5B%5D=all&amp;Submit.x=104&amp;Submit.y=16 Red List: Albatross Species]. Retrieved [[September 13]], [[2005]].&lt;/ref&gt;, partially due to the impact of commercial [[long-line fishing]]&lt;ref&gt;Brothers NP. 1991. &quot;Albatross mortality and associated bait loss in the Japanese longline fishery in the southern ocean.&quot; ''Biological Conservation'' '''55''': 255-268.&lt;/ref&gt;, as the albatrosses and other [[seabird]]s are attracted to the set bait, become hooked on the lines and drown. The scale of the problem is made worse by [[pirate]] fisheries, and an estimated 100,000 albatross are killed a year in this fashion. Two species (as recognised by the IUCN) are considered critically [[endangered species|endangered]], the [[Amsterdam Albatross]] and the [[Chatham Albatross]].
78718
78719 Another threat to albatrosses is [[introduced species]], which can be predators, like rats or [[feral cat]]s, directly attacking the albatross or its chicks and eggs; or they can have indirect effects, cattle overgrazed essential cover on [[Amsterdam Island]]; on other islands introduced plants reduce potential nesting habitat.
78720
78721 [[Image:albab.jpg|thumb|200px|Black-browed Albatrosses are one of the many species threatened by long-line fisheries]]
78722 Ingestion of floating [[plastic]] [[flotsam]] is another problem, one faced by many seabirds. The amount of plastic in the seas has increased dramatically since the first record in the 1960s, coming from waste discarded by ships, offshore dumping, litter on beaches and waste washed to sea by rivers. It is impossible to digest and takes up space in the stomach or [[gizzard]] that should be used for food, or can cause an obstruction that starves the bird directly. Studies of birds in the North Pacific have shown that ingestion of plastics results in declining [[body weight]] and body condition&lt;ref&gt;Spear, L.B., Ainley, D.G. &amp; Ribic, C.A. (1995). &quot;Incidence of plastic in seabirds from the tropical Pacific, 1984–91: relation with distribution of species, sex, age, season, year and body weight.&quot; ''Marine Environmental Research'' '''40''': 123–146. &lt;/ref&gt;. This plastic is sometimes regurgitated and fed to chicks; a study of [[Laysan Albatross]] chicks on [[Midway Atoll]] showed large amounts of ingested plastic in naturally dead chicks compared to healthy chicks killed in accidents&lt;ref&gt;Auman, H.J., Ludwig, J.P., Giesy, J.P., Colborn, T., (1997) &quot;Plastic ingestion by Laysan Albatross chicks on Sand Island, Midway Atoll, in 1994 and 1995.&quot; in ''Albatross Biology and Conservation'', (ed by G. Robinson and R. Gales). Surrey Beatty &amp; Sons:Chipping Norton. Pp. 239-44 [http://www.mindfully.org/Plastic/Ocean/Albatross-Plastic-Ingestion1997.htm]&lt;/ref&gt;. While not the direct cause of death, this plastic caused physiological stress and caused the chick to feel full during feedings, reducing its food intake and reducing the chances of survival.
78723
78724 Scientists and conservationists (most importantly [[BirdLife International]] and their partners, who have run a Save the Albatross campaign) are working with governments and [[fishermen]] to find solutions to the threats albatrosses face. Techniques such as setting long-line bait at night, dying the bait blue, setting the bait underwater, increasing the amount of weight on lines and using bird scarers can all reduce the by-catch in seabirds by fishing fleets&lt;ref&gt;Food and Agriculture Organisation (1999) &quot;The incidental catch of seabirds by longline fisheries: worldwide review and technical guidelines for mitigation. FAO Fisheries Circular No.937. Food and Agriculture Organization of the United Nations, Rome. [http://www.fao.org/documents/show_cdr.asp?url_file=/DOCREP/005/W9817E/W9817E00.HTM]&lt;/ref&gt;. For example, a collaborative study between scientists and fishermen in [[New Zealand]] successfully tested a underwater setting device for long-liners which set the lines below the reach of vulnerable albatross species&lt;ref&gt;O'Toole, Decland &amp; Molloy, Janice (2000) &quot;Preliminary performance assessment of an underwater line setting device for pelagic longline fishing&quot; ''New Zealand Journal of Marine and Freshwater Research'' '''34''': 455-461. [http://www.rsnz.org/publish/nzjmfr/2000/36.pdf]&lt;/ref&gt;. The use of some of these techniques in the [[Patagonian Toothfish]] fishery in the [[Falkland Islands]] is thought to have reduced the number of [[Black-browed Albatross]] taken by the fleet in the last 10 years&lt;ref&gt;Reid, A.T., Sullivan, B.J., Pompert,J., Enticott, J.W., Black, A.D., (2004) &quot;Seabird mortality associated with Patagonian Toothfish (''Dissostichus eleginoides'') longliners in Falkland Islands waters.&quot; ''Emu'' '''104''': (4) 317-325.&lt;/ref&gt;. Conservationists have also worked on the field of [[island restoration]], removing introduced species that threaten native wildlife, which protects albatrosses from introduced predators.
78725
78726 One important step towards protecting albatrosses and other [[seabird]] is the 2001 [[treaty]] the [[Agreement on the Conservation of Albatrosses and Petrels]], which came into force in 2004 and has been ratified by eight countries, [[Australia]], [[Ecuador]], [[New Zealand]], [[Spain]], [[South Africa]], [[France]], [[Peru]] and the [[United Kingdom]]. This treaty requires specific actions to be taken by these countries to reduce by-catch, pollution and remove introduced species from nesting islands. The treaty has also been signed but not ratified by another three countries, [[Argentina]], [[Brazil]] and [[Chile]].
78727
78728 ==Species==
78729 Current thinking divides the albatrosses into four genera. The number of species is a matter of some debate, the [[IUCN]] and [[BirdLife International]] among others recognise 21 species, other authorities retain the more traditional 14 species:
78730
78731 *[[Great albatrosses]] (''Diomedea'')
78732 **[[Wandering Albatross]] '' D. exulans''
78733 **[[Antipodean Albatross]] ''D. (exulans) antipodensis''
78734 **[[Amsterdam Albatross]] ''D. amsterdamensis''
78735 **[[Tristan Albatross]] ''D. (exulans) dabbenena''
78736 **[[Northern Royal Albatross]] ''D. (epomorpha) sanfordi''
78737 **[[Southern Royal Albatross]] ''D. epomophora''
78738
78739 *[[North Pacific albatross]]es (''Phoebastria'')
78740 **[[Waved Albatross]] ''P. irrorata''
78741 **[[Short-tailed Albatross]] ''P. albatrus''
78742 **[[Black-footed Albatross]] ''P. nigripes''
78743 **[[Laysan Albatross]] ''P. immutabilis''
78744
78745 *[[Mollymawk]]s (''Thalassarche'')
78746 **[[Black-browed Albatross]] ''T. melanophris ''
78747 **[[Campbell Albatross]] ''T. (melanophris) impavida''
78748 **[[Shy Albatross]] ''T. cauta''
78749 **[[Chatham Albatross]] ''T. (cauta) eremita''
78750 **[[Salvin's Albatross]] ''T. (cauta) salvini''
78751 **[[Grey-headed Albatross]] ''T. chrysostoma''
78752 **[[Atlantic Yellow-nosed Albatross]] ''T. chlororhynchos''
78753 **[[Indian Yellow-nosed Albatross]] ''T. (chlororhynchos) carteri''
78754 **[[Buller's Albatross]] ''T. bulleri''
78755
78756 *[[Sooty albatross]]es (''Phoebetria'')
78757 **[[Dark-mantled Sooty Albatross]] ''P. fusca''
78758 **[[Light-mantled Sooty Albatross]] ''P. palpebrata''.
78759
78760 ==References==
78761 &lt;references/&gt;
78762
78763 ==External links==
78764 * [http://www.birdonline.org/birds/albatross.htm Albatross resources from Bird Online] (North America)
78765 * [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;search_value=174514 ITIS] (Follows the AOU classification.)
78766 * [http://web.uct.ac.za/depts/fitzpatrick/docs/listintro.html Roberts' VII Bird Species List] (South Africa.)
78767 * [http://www.birdsaustralia.com.au/hanzab/HANZAB_spp_list.pdf HANZAB complete species list] (Handbook of Australian, New Zealand and Antarctic Birds.)
78768 *[http://www.birdlife.net/action/campaigns/save_the_albatross/ Birdlife international Save the Albatross campaign]
78769 * [http://www.acap.aq/ The Agreement for the Conservation of Albatrosses and Petrels (ACAP)]
78770 * [http://www.montereybay.com/creagrus/albatrosses.html Albatross: Don Roberson's family page]
78771
78772 [[Category:Albatrosses|*]]
78773 [[Category:Heraldic birds]]
78774 [[Category:Seabirds]]
78775
78776 [[ar:Ų‚ØˇØąØŗ]]
78777 [[da:Albatrosser]]
78778 [[de:Albatrosse]]
78779 [[es:Albatros]]
78780 [[fr:Diomedeinae]]
78781 [[fy:Albatrossen]]
78782 [[io:Albatroso]]
78783 [[he:אלבטרוס לבן-כיפה]]
78784 [[lt:Albatrosiniai]]
78785 [[nl:Albatrossen]]
78786 [[ja:ã‚ĸホã‚ĻドãƒĒäēœį§‘ (Sibley)]]
78787 [[pl:Albatrosy]]
78788 [[pt:Diomedeidae]]
78789 [[fi:Albatrossit]]
78790 [[sv:Albatrosser]]
78791 [[tr:Albatros]]
78792 [[uk:АĐģŅŒĐąĐ°Ņ‚Ņ€ĐžŅĐžĐ˛Ņ–]]
78793 [[zh:äŋĄå¤Šįŋį§‘]]</text>
78794 </revision>
78795 </page>
78796 <page>
78797 <title>Arachnophobia</title>
78798 <id>1386</id>
78799 <revision>
78800 <id>41588408</id>
78801 <timestamp>2006-02-28T09:19:56Z</timestamp>
78802 <contributor>
78803 <ip>213.130.122.51</ip>
78804 </contributor>
78805 <text xml:space="preserve">{{otheruses}}
78806 '''Arachnophobia''' is a [[specific phobia]], an abnormal fear of [[spider (animal)|spiders]]. It is among the most common phobias. The reactions of arachnophobics often seem irrational to others (and sometimes to sufferers themselves, as well). People with arachnophobia may stay away from any area they believe to be inhabited by numerous spiders or covered in spider webs. If they see a spider they may not enter the general vicinity until they overcome the panic attack that is often associated with it. Like most phobias the fear can be overcome by psychological treatments and through gradual exposure to the object. Another technique is 'flooding', in which the phobic person is suddenly exposed to a high intensity stimulus.
78807
78808 Arachnophobia is, in many cases, the result of a traumatizing encounter with spiders in one's early childhood, though the experience may not be remembered. Then, considering the extreme diversity of phobias, always inexplicable and sometimes exceedingly strange, (fear of carrot – as such and not as food – fear of glitter powder, and others.) One hypothesis states that while some phobias are the result of a traumatic event, most are the result of a random brain wiring that causes inexplicable fear at the sight of a seemingly innocuous thing or animal. The main phobias, such as arachnophobia, fear of spiders, [[claustrophobia]], stand out by their prevalence because they would have given over thousands of years a survival edge to sufferers and their offspring. Spiders, for instance, being relatively small, don’t fit the usual criteria for a threat in the animal kingdom where size is a key factor, but most species are [[Venom (poison)|venomous]], and some are lethal. Arachnophobics will spare no effort to make sure that their wherabouts are spider-free, hence reducing sharply the risk of being bitten.
78809 ==Reference==
78810 *Stiemerling D. ''Analysis of a spider and monster phobia'', Z. Psychosom Med Psychoanal. 1973 Oct-Dec;19(4):327-45. (in German)
78811
78812 [[Category:Phobias]]
78813 [[Category:Spiders]]
78814
78815 [[da:Araknofobi]]
78816 [[de:Arachnophobie]]
78817 [[eo:Araneofobio]]
78818 [[fr:Arachnophobie]]
78819 [[he:&amp;#1488;&amp;#1512;&amp;#1499;&amp;#1504;&amp;#1493;&amp;#1508;&amp;#1493;&amp;#1489;&amp;#1497;&amp;#1492;]]
78820 [[nl:Arachnofobie]]
78821 [[pl:Arachnofobia]]
78822 [[pt:Aracnofobia]]
78823 [[sl:arahnofobija]]</text>
78824 </revision>
78825 </page>
78826 <page>
78827 <title>Alabaster</title>
78828 <id>1387</id>
78829 <revision>
78830 <id>40961906</id>
78831 <timestamp>2006-02-24T03:31:53Z</timestamp>
78832 <contributor>
78833 <username>Dogears</username>
78834 <id>733091</id>
78835 </contributor>
78836 <minor />
78837 <comment>/* See also */ + category</comment>
78838 <text xml:space="preserve">{| align=right
78839 |[[image:alabaster.whole.600pix.jpg|thumb|200px|A modern uplighter lamp made completely from Italian alabaster (white and brown types). The base is 5 inches (13 cm) in diameter]]
78840 |-
78841 |[[image:alabaster.base.600pix.jpg|thumb|200px|Detail of base of alabaster lamp]]
78842 |}
78843
78844 '''Alabaster''' (sometimes called '''satin spar''') is a name applied to varieties of two distinct [[mineral]]s: [[gypsum]] (a [[hydroxy|hydrous]] [[sulfur|sulfate]] of [[calcium]]) and the [[calcite]] (a [[carbonate]] of calcium). The former is the alabaster of the present day; the latter is generally the alabaster of the ancients.
78845
78846 The two kinds are readily distinguished from each other by their relative '''hardnesses'''. The gypsum kind is so soft as to be readily scratched by a finger-nail ([[Mohs scale of mineral hardness|hardness]] 1.5 to 2), while the calcite kind is too hard to be scratched in this way (hardness 3), though it does yield readily to a knife. Moreover, the calcite alabaster, being a [[carbonate]], effervesces on being touched with [[hydrochloric acid]], whereas the gypsum alabaster, when so treated, remains practically unaffected.
78847
78848 ==Types==
78849 === Calcite Alabaster ===
78850 This substance, the &quot;alabaster&quot; of the [[Bible]], is often termed ''Oriental alabaster'', since the early examples came from the [[Far East]]. The [[Greek language|Greek]] name ''alabastrites'' is said to be derived from the town of Alabastron, in [[Egypt]], where the stone was quarried, but the locality probably owed its name to the mineral; the origin of the mineral-name is obscure, and it has been suggested that it may have had an [[Arabic language|Arabic]] origin. This &quot;Oriental&quot; alabaster was highly esteemed for making small perfume-bottles or ointment vases called alabastra, and this has been conjectured to be a possible source of the name. Alabaster was also employed in Egypt for [[canopic jar]]s and various other sacred and sepulchral objects. A splendid [[sarcophagus]], sculptured in a single block of translucent calcite alabaster from Alabastron, is in the [[Soane Museum]], [[London]]. This was discovered by [[Giovanni Belzoni]] in [[1817]] in the tomb of [[Seti I]] near [[Thebes, Egypt|Thebes]]. It was purchased by Sir [[John Soane]], having previously been offered to the [[British Museum]].
78851
78852 When cut in thin sheets, alabaster is translucent enough to be used for small windows, and has been used so in [[medieval]] churches, especially in [[Italy]]. Large alabaster sheets are used extensively in the ''Cathedral of Our Lady of the Angels'' (dedicated 2002) of the [[Roman Catholic Archbishop of Los Angeles|Los Angeles (California) Archdiocese]]. The cathedral incorporates special cooling to prevent the panes from overheating and turning opaque.
78853
78854 Calcite alabaster is either a [[stalagmite|stalagmitic]] deposit, from the floor and walls of [[limestone]] [[cavern]]s, or a kind of [[travertine]], similarly deposited in springs of calcareous water. Its deposition in successive layers gives rise to the banded appearance that
78855 the marble often shows on cross-section, whence it is known as onyx-marble or alabaster-onyx, or sometimes simply as [[onyx]] &amp;ndash; a term which should, however, be restricted to siliceous
78856 minerals. Egyptian alabaster has been extensively worked near [[Suez]] and near [[Assiut]]; there are many ancient quarries in the hills overlooking the plain of [[Tell el Amarna]]. The
78857 [[Algeria]]n onyx-marble has been largely quarried in the province of [[Oran]]. In [[Mexico]], there are famous deposits of a delicate green variety at [[La Pedrara]], in the district of [[Tecali]], near [[Puebla, Puebla|Puebla]]. Onyx-marble occurs also in the district of [[TehuacÃĄn]] and at several localities in [[California]], [[Arizona]], [[Utah]], [[Colorado]] and [[Virginia]].
78858
78859 === Gypsum Alabaster ===
78860
78861 In the present day, when the term &quot;alabaster&quot; is used without any qualification, it invariably means a fine-grained variety of gypsum. This mineral, or alabaster proper, occurs in [[England]]. However, thousands of gypsum alabaster [[Artifact (archaeology)|artifact]]s dating to the late [[4th millennium BC]] have been found in [[Tell Brak]] (present day [[Nagar]]), in [[Syria]] [http://www.metmuseum.org/Works_of_Art/viewOne.asp?dep=3&amp;item=1988.323.8&amp;viewmode=0&amp;isHighlight=1]. And in [[Mesopotamia]], a gypsum alabaster [[sculpture]], believed to represent the god [[Abu]], dates to the first half of the [[3rd millennium BC]] [http://www.metmuseum.org/Works_of_Art/viewOne.asp?dep=3&amp;viewmode=0&amp;item=40%2E156].
78862
78863 Mineral alabaster occurs in [[England]] in the [[Keuper]] [[marl]]s of the [[Midlands]], especially at [[Chellaston]] in [[Derbyshire]], at [[Fauld]] in [[Staffordshire]] and near [[Newark, England|Newark]] in [[Nottinghamshire]]. At all these localities it has been extensively worked. Indeed, in the [[15th century]] its carving into [[icons]] and [[altarpiece]]s, was a valuable local industry in these areas, as well as a major English export. Besides examples of these still in Britain (especially at the [[Nottingham Castle Museum]], [[British Museum]] and [[Victoria and Albert Museum]]), that trade in itself (rather than just the antiques trade) has scattered examples as far afield as the [[MusÊe de Cluny]] and ...........
78864
78865 Alabaster is also found, though in subordinate quantity, at [[Watchet]] in [[Somerset]], near [[Penarth]] in [[Glamorganshire]], and elsewhere. In [[Cumbria]] it occurs largely in the New Red rocks, but at a lower geological horizon. The alabaster of Nottinghamshire and Derbyshire is found in
78866 thick nodular beds or &quot;floors&quot; in spheroidal masses known as &quot;balls&quot; or &quot;bowls,&quot; and in smaller lenticular masses termed &quot;cakes.&quot; At Chellaston, where the alabaster is known as &quot;Patrick,&quot; it has been worked into ornaments under the name of &quot;Derbyshire spar&quot; &amp;ndash; a term more properly applied to [[fluorspar]].
78867
78868 [[image:alabaster-satin spar.jpg|thumb|200px|left|Unlike the lamp, this fine alabaster sculpture is untreated: Its translucency and satiny lustre are preserved. Its base is of marble.]]
78869
78870 The finer kinds of alabaster are largely employed as an [[ornamental stone]], especially for [[ecclesiastical]] decoration and for the rails of staircases and halls. Its softness enables it to be readily carved into elaborate forms, but its solubility in water renders it inapplicable to outdoor work. The purest alabaster is a snow-white material of fine tiniforni grain, but it is often associated with an oxide of [[iron]], which produces brown clouding and veining in the stone. The coarser varieties of alabaster are converted by calcination into [[plaster of Paris]], whence they are sometimes known as &quot;plaster stone.&quot;
78871
78872 On the continent of [[Europe]], the centre of the alabaster trade is [[Florence, Italy]]. [[Tuscany|Tuscan]] alabaster occurs in nodular masses embedded in limestone, interstratified with [[marl]]s of [[Miocene]] and [[Pliocene]] age. The mineral is largely worked by means of underground galleries,in the district of [[Volterra]]. Several varieties are recognized &amp;ndash; veined, spotted, clouded, agatiform, and others. The finest kind, obtained principally from [[Castellina]], is sent to Florence for figure-sculpture, while the common kinds are carved at a very cheap rate locally into vases, clock-cases and various ornamental objects, in which a large trade is carried on, especially in Florence, [[Pisa]] and [[Livorno|Leghorn]].
78873
78874 In order to diminish the [[Translucent|translucenc]]y of the alabaster and to produce an opacity suggestive of true marble, the statues are immersed in a bath of water and gradually heated nearly to the boiling-point &amp;ndash; an operation requiring great care, for if the temperature is not carefully regulated, the stone acquires a dead-white, chalky appearance. The effect of heating appears to be a partial dehydration of the gypsum. If properly treated, it very closely resembles true marble and is known as [[marmo di Castellina]]. It should be noted that sulphate of lime (gypsum) was used also by the ancients, and was employed, for instance, in Assyrian sculpture, so that some of the ancient alabaster is identical with the modern stone.
78875
78876 Alabaster may be stained by digesting it, after being heated in various pigmentary solutions. In this way a good imitation of [[coral]] has been produced (alabaster coral).
78877
78878 ''Black Alabaster'' is a rare form of the gypsum-based mineral found in only three veins in the world, one each in [[Oklahoma]] (USA), Italy and [[China]].
78879
78880 [[Alabaster Caverns State Park]], near [[Freedom, Oklahoma]] is home to a natural [[gypsum cave]] in which much of the gypsum is in the form of alabaster. There are several types of alabaster found at the site, including pink, white, and the rare black alabaster.
78881
78882 == See also ==
78883 * [[list of minerals]]
78884
78885 *'''''Alabaster''' is also a city in [[Alabama]], [[United States|USA]]. See: [[Alabaster, Alabama]]''
78886 *'''''Alabaster''' is also a township in [[Michigan]], [[United States|USA]]. See: [[Alabaster Township, Michigan]]''
78887
78888 {{1911}}
78889 [[Category:Minerals]]
78890 [[Category:Stone]]
78891
78892 [[ca:Alabastre (mineral)]]
78893 [[de:Alabaster]]
78894 [[es:Alabastro]]
78895 [[fr:AlbÃĸtre]]
78896 [[it:Alabastro]]
78897 [[nl:Albast]]
78898 [[pl:Alabaster]]
78899 [[pt:Alabastro]]
78900 [[ru:АĐģĐĩйаŅŅ‚Ņ€]]
78901 [[sl:Alabaster]]
78902 [[sv:Alabaster]]
78903 [[uk:АĐģĐĩйаŅŅ‚Ņ€]]</text>
78904 </revision>
78905 </page>
78906 <page>
78907 <title>Apostle (disambiguation)</title>
78908 <id>1388</id>
78909 <revision>
78910 <id>41556308</id>
78911 <timestamp>2006-02-28T03:14:51Z</timestamp>
78912 <contributor>
78913 <username>Elmer Clark</username>
78914 <id>241098</id>
78915 </contributor>
78916 <minor />
78917 <comment>fixed link</comment>
78918 <text xml:space="preserve">'''Apostle''', or '''The Apostles''' can refer to:
78919 {{Wiktionarypar|apostle}}
78920 * The [[Twelve Apostles]], followers of [[Jesus]]
78921 * [[Apostle (Mormonism)]], a position within the [[Mormon church]]
78922 * ''[[The Apostle]]'', a 1997 film directed by and starring [[Robert Duvall]]
78923 * [[Cambridge Apostles]], a secret society at [[University of Cambridge|Cambridge University]]
78924 * [[The Apostles (band)|The Apostles]], a [[punk rock]] group from the 1980s
78925 * ''[[The Apostles (Elgar) | The Apostles]]'', a 1903 choral work by [[Edward Elgar]]
78926 * [[Apostle (production company) | Apostle]], a production company founded in 1994 by Jim Serpico and Denis Leary
78927
78928 {{dab}}</text>
78929 </revision>
78930 </page>
78931 <page>
78932 <title>Ahab</title>
78933 <id>1389</id>
78934 <revision>
78935 <id>38565954</id>
78936 <timestamp>2006-02-07T03:45:06Z</timestamp>
78937 <contributor>
78938 <username>PiCo</username>
78939 <id>437761</id>
78940 </contributor>
78941 <comment>see discussion</comment>
78942 <text xml:space="preserve">'''Ahab''' or '''Ach'av''' ('''&amp;#1488;&amp;#1463;&amp;#1495;&amp;#1456;&amp;#1488;&amp;#1464;&amp;#1489;''' &quot;Brother of the father&quot;, [[Standard Hebrew]] '''A&amp;#7717;&amp;#700;av''', [[Tiberian Hebrew]] '''&amp;#700;A&amp;#7717;&amp;#259;&amp;#700;&amp;#257;&amp;#7687;''', '''&amp;#700;A&amp;#7723;&amp;#700;&amp;#257;&amp;#7687;''') was King of the [[Kingdom of Israel]] and the province of [[Samaria]], and the son and successor of [[Omri]] (''[[Books of Kings|1 Kings]]'' 16:29-34). [[William F. Albright]] has dated his reign to [[869 BC]]-[[850 BC]], while [[E. R. Thiele]] offers the dates [[874 BC]]-[[853 BC]].
78943
78944 He married [[Jezebel (biblical)|Jezebel]], the daughter of king [[Ithobaal I]] of [[Tyre]], and the alliance was doubtless the means of procuring him great riches, which brought pomp and luxury in their train. We read of his building an ivory palace (''1 Kings'' 22:39; ''[[Book of Amos|Amos]]'' 3:15), and founding new cities, the effect perhaps of a share in the flourishing commerce of [[Phoenicia]], who supplied the ivory for his palace.
78945
78946 The material prosperity of his reign, which is comparable with that of [[Solomon]] a century before, was overshadowed by the religious changes which his marriage involved. Although he worshipped YHWH, as the names of his children prove (''1 Kings'' 22:5ff), his wife was firmly attached to the worship of the [[Melkart]] (the Tyrian [[Ba'al]]), and led by her he gave a great impulse to this cult by building a temple in honour of Baal in [[Samaria]]. This roused the indignation of the Jewish prophets and Priests whose aim it was to purify the worship of [[God]]. (See [[Elijah (prophet)|Elijah]])
78947
78948 During Ahab's reign [[Moab]], which had been conquered by his father, remained tributary; [[kingdom of Judah|Judah]], with whose king, [[Jehoshaphat]], he was allied by marriage, was probably his vassal; only with [[Damascus]] is he said to have had strained relations.
78949
78950 The one event mentioned by external sources is the [[Battle of Karkar]] (perhaps at [[Apamea]]), where [[Shalmaneser III]] of [[Assyria]] fought a great confederation of princes from [[Cilicia]], Northern [[Syria]], Israel, [[Ammon]] and the tribes of the Syrian desert ([[853 BC]]). Here Ahab (''A-ha-ab-bu &lt;sup&gt;mat&lt;/sup&gt;Sir-'i-la-a-a'' or &quot;Ahab the Israelite&quot;) joined [[Baasha]], son of [[Ruhub]] (Rehob) of Ammon and nine others are allied with [[Hadadezer]] (''Bir-'idri''), Ahab's contribution being reckoned at 2,000 chariots and 10,000 men. The numbers are comparatively large and possibly include forces from [[Tyre]], Judah, [[Edom]] and [[Moab]]. The Assyrian king claimed a victory, but his immediate return and subsequent expeditions in [[849 BC]] and [[846 BC]] against a similar but unspecified coalition seem to show that he met with no lasting success. According to the [[Old Testament]], however, Ahab with 7,000 troops had previously overthrown [[Ben-hadad]] and his thirty-two kings, who had come to lay siege to Samaria, and in the following year obtained a remarkable victory over him at [[Aphek]], probably in the [[plain of Sharon]] (''1 Kings'' 20). A treaty was made whereby Ben-hadad restored the cities which his father had taken from Ahab's father (that is, Omri, but see 15:20, ''[[Books of Kings|2 Kings]]'' 13:25), and trading facilities between Damascus and Samaria were granted.
78951
78952 A late popular story (20:35-42, akin in tone to 12:33-13:34) condemned Ahab for his leniency and foretold the destruction of the king and his land. Three years later, war broke out on the east of the [[Jordan River]], and Ahab with Jehoshaphat of Judah went to recover [[Battle of Ramoth-Gilead|Ramoth-Gilead]] and was mortally wounded (ch. 22). He was succeeded by his sons ([[Ahaziah]] and [[Jehoram]]).
78953
78954 It is very difficult to obtain any clear idea of the order of these events (the [[Septuagint]] places ''1 Kings'' 21 immediately after 19). How the hostile kings of Israel and Syria came to fight a common enemy, and how to correlate the Assyrian and Biblical records, are questions which have perplexed all recent writers. The reality of the difficulties will be apparent from the fact that it has been suggested that the Assyrian scribe wrote &quot;Ahab&quot; for his son &quot;Jehoram&quot;, and that the very identification of the name with Ahab of Israel has been questioned.
78955
78956 Whilst the above passages from ''1 Kings'' view Ahab not unfavourably, there are others which are less friendly. The murder of [[Naboth]] (see [[Jezebel (biblical)|Jezebel]]), an act of royal encroachment, stirred up popular resentment just as the new cult aroused the opposition of certain of the prophets. The latter found their champion in Elijah, whose history reflects the prophetic teaching of more than one age. His denunciation of the royal dynasty, and his emphatic insistence on the worship of Yahweh and Him alone, form the keynote to a period which culminated in the accession of [[Jehu]], an event in which Elijah's chosen disciple [[Elisha]] was the leading figure.
78957
78958 The allusions to the statutes and works of Omri and Ahab in ''[[Book of Micah|Micah]]'' 6:16 may point to legislative measures of these kings, and the reference to the incidents at the building of [[Jericho]] (''1 Kings'' 16:34) may be taken to show that foundation sacrifices, familiar in nearly all parts of the world, were not unknown in Israel at this period, which have in fact been confirmed by excavation in [[Palestine (region)|Palestine]].
78959
78960 {| align=&quot;center&quot; cellpadding=&quot;2&quot; border=&quot;2&quot;
78961 |-
78962 | width=&quot;30%&quot; align=&quot;center&quot; | Preceded by:&lt;br /&gt;'''[[Omri]]'''
78963 | width=&quot;40%&quot; align=&quot;center&quot; | '''[[Kingdom of Israel|King of Israel]]'''
78964 | width=&quot;30%&quot; align=&quot;center&quot; | Succeeded by:&lt;br /&gt;'''[[Ahaziah of Israel|Ahaziah]]'''
78965 |}
78966
78967 Another '''Ahab''' is known only as an impious [[prophet]] in the time of the [[Babylonian captivity of Judah|Babylonian exile]] (''[[Book of Jeremiah|Jeremiah]]'' 29:21).
78968
78969 Another '''[[Captain Ahab|Ahab]]''' is the monomanical captain of the [[whaling]] [[ship]] ''[[Pequod (Moby-Dick)|Pequod]]'' in the novel [[Moby-Dick]].
78970
78971 ==References==
78972 *{{1911}}
78973
78974 [[Category:853 BC deaths]]
78975 [[Category:850 BC deaths]]
78976 [[Category:Kings of ancient Israel]]
78977
78978
78979 [[ca:Acab]]
78980 [[de:Ahab (KÃļnig)]]
78981 [[eo:Ahabo]]
78982 [[he:אחאב]]
78983 [[no:Akab]]
78984 [[sv:Ahab]]</text>
78985 </revision>
78986 </page>
78987 <page>
78988 <title>ASIC</title>
78989 <id>1391</id>
78990 <revision>
78991 <id>35924252</id>
78992 <timestamp>2006-01-20T06:55:52Z</timestamp>
78993 <contributor>
78994 <username>Botryoidal</username>
78995 <id>814230</id>
78996 </contributor>
78997 <minor />
78998 <comment>Robot: Automated text replacement (-{{4LA}} +{{4LC}})</comment>
78999 <text xml:space="preserve">The acronym '''ASIC''', depending on context, may stand for:
79000 * [[Application-specific integrated circuit]]
79001 * [[ASIC programming language]]
79002 * [[Australian Securities and Investments Commission]]
79003
79004 {{4LC}}
79005 [[de:ASIC]]
79006 [[pt:ASIC (desambiguaçÃŖo)]]</text>
79007 </revision>
79008 </page>
79009 <page>
79010 <title>Dasyproctidae</title>
79011 <id>1392</id>
79012 <revision>
79013 <id>37289371</id>
79014 <timestamp>2006-01-30T01:09:14Z</timestamp>
79015 <contributor>
79016 <username>Gdrbot</username>
79017 <id>263608</id>
79018 </contributor>
79019 <minor />
79020 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
79021 <text xml:space="preserve">{{Taxobox
79022 | color = pink
79023 | name = Dasyproctidae
79024 | fossil_range = Late [[Oligocene]] - Recent
79025 | image = Paka (Coelogenys Paca).png
79026 | image_width = 200px
79027 | image_caption = ''[[Agouti paca]]''
79028 | regnum = [[Animal|Animalia]]
79029 | phylum = [[Chordate|Chordata]]
79030 | classis = [[Mammal]]ia
79031 | ordo = [[Rodent]]ia
79032 | familia = '''Dasyproctidae'''
79033 | familia_authority = [[John Edward Gray|Gray]], 1825
79034 | subdivision_ranks = Genera
79035 | subdivision =
79036 ''[[Dasyprocta]]&lt;br /&gt;[[Myoprocta]]&lt;br /&gt;[[Agouti]]''
79037 }}
79038 The '''Dasyproctidae''' are a family of [[South America]]n [[rodent]]s, comprising three [[genus|genera]].
79039
79040 ==Classification==
79041 *'''Family Dasyproctidae'''
79042 **Genus ''[[Dasyprocta]]''
79043 ***[[Azara's Agouti]], ''[[Dasyprocta azarae]]''
79044 ***[[Coiban Agouti]], ''[[Dasyprocta coibae]]''
79045 ***[[Crested Agouti]], ''[[Dasyprocta cristata]]''
79046 ***[[Black Agouti]], ''[[Dasyprocta fuliginosa]]''
79047 ***[[Orinoco Agouti]], ''[[Dasyprocta guamara]]''
79048 ***[[Kalinowski Agouti]], ''[[Dasyprocta kalinowskii]]''
79049 ***[[Brazilian Agouti]], ''[[Dasyprocta leporina]]''
79050 ***[[Mexican Agouti]], ''[[Dasyprocta mexicana]]''
79051 ***[[Black-rumped Agouti]], ''[[Dasyprocta prymnolopha]]''
79052 ***[[Central American Agouti]], ''[[Dasyprocta punctata]]''
79053 ***[[Ruatan Island Agouti]], ''[[Dasyprocta ruatanica]]''
79054 **Genus ''[[Myoprocta]]''
79055 ***[[Green Acouchi]], ''[[Myoprocta pratti]]''
79056 ***[[Red Acouchi]], ''[[Myoprocta acouchy]]''
79057 **Genus ''[[Agouti (genus)|Agouti]]''
79058 ***[[Paca]], ''[[Agouti paca]]''
79059 ***[[Mountain Paca]], ''[[Agouti taczanowskii]]''
79060
79061 The [[Pacas]] (''Agouti'' genus) are sometimes placed in a separate family ''Agoutidae'' or as the subfamily ''Agoutinae''.
79062
79063 Note that the animals commonly known as Agoutis are not the same as those with the scientific name ''Agouti''. Adding to the confusion, the name Agoutis is sometimes used to refer to the whole family Dasyproctidae, including or excluding the ''Agouti'' genus. To avoid misunderstandings, some authors refer to the Pacas as the genus ''Cuniculus''.
79064
79065 ==External links==
79066 *[http://www.press.jhu.edu/books/walkers_mammals_of_the_world/rodentia/rodentia.dasyproctidae.html Dasyproctidae at Johns Hopkins Univ.]
79067 *[http://www.junglephotos.com/amazon/amanimals/ammammals/agouti.shtml Black agouti photo and natural history]
79068
79069 {{Rodents}}
79070
79071 [[Category:Rodents]]
79072 [[Category:Hystricognath rodents]]
79073
79074 [[de:Pakas und Agutis]]
79075 [[fr:Dasyproctidae]]
79076 [[lt:Agutiniai]]
79077 [[nl:Agoeti's en acouchi's]]
79078 [[pl:Aguti]]</text>
79079 </revision>
79080 </page>
79081 <page>
79082 <title>Æesop</title>
79083 <id>1393</id>
79084 <revision>
79085 <id>15899881</id>
79086 <timestamp>2005-04-27T21:22:46Z</timestamp>
79087 <contributor>
79088 <username>Rich Farmbrough</username>
79089 <id>82835</id>
79090 </contributor>
79091 <minor />
79092 <text xml:space="preserve">#redirect [[Aesop]]</text>
79093 </revision>
79094 </page>
79095 <page>
79096 <title>Algol</title>
79097 <id>1394</id>
79098 <revision>
79099 <id>38653070</id>
79100 <timestamp>2006-02-07T19:40:45Z</timestamp>
79101 <contributor>
79102 <username>RJHall</username>
79103 <id>91076</id>
79104 </contributor>
79105 <minor />
79106 <comment>link</comment>
79107 <text xml:space="preserve">{{Otheruses}}
79108 {{Starbox begin |
79109 name=Beta Persei A/B/C }}
79110 {{Starbox image |
79111 image=[[Image:Position Beta Per.png|250px]] |
79112 caption=The position of Algol. }}
79113 {{Starbox observe |
79114 epoch=J2000 |
79115 ra=03&lt;sup&gt;h&lt;/sup&gt; 08&lt;sup&gt;m&lt;/sup&gt; 10.1&lt;sup&gt;s&lt;/sup&gt; |
79116 dec=+40&amp;deg; 57&amp;prime; 20.3&amp;Prime; |
79117 appmag_v=1.58 |
79118 constell=[[Perseus]] }}
79119 {{Starbox character |
79120 class=B5-8 V/K02 IV/A5 V |
79121 b-v=-0.05 |
79122 u-b=-0.37 |
79123 variable=[[Eclipsing binary]] }}
79124 {{Starbox astrometry |
79125 radial_v=3.7 |
79126 prop_mo_ra=2.39 |
79127 prop_mo_dec=-1.44 |
79128 parallax=35.14 |
79129 p_error=0.90 |
79130 dist_ly=92.8 |
79131 dist_pc=28.5 |
79132 absmag_v=-0.69 }}
79133 {{Starbox detail|
79134 mass=3.59/0.79/1.67 |
79135 radius=2.88/3.54/1.7 |
79136 luminosity=98/3.4/4.1 |
79137 temperature=12,500/4,500 |
79138 metal=? |
79139 rotation=65 km/sec. |
79140 age=? }}
79141 {{Starbox catalog |
79142 names=Algol, Gorgona, Gorgonea Prima, Demon Star, El Ghoul, 26 Per, [[Gliese-Jahreiss catalogue|GJ]] 9110, [[Harvard Revised catalogue|HR]] 936, [[Bonner Durchmusterung|BD]] +40&amp;deg;673, [[Henry Draper catalogue|HD]] 19356, [[General Catalogue of Trigonometric Parallaxes|GCTP]] 646.00, [[Smithsonian Astrophysical Observatory|SAO]] 38592, FK5 111, Wo 9110, ADS 2362, WDS 03082+4057A, [[Hipparcos catalogue|HIP]] 14576. }}
79143 {{Starbox end}}
79144 '''Algol''' (&amp;beta; Per / [[beta (letter)|Beta]] Persei) is a bright [[star]] in the [[constellation]] [[Perseus (constellation)|Perseus]]. It is one of the best known [[eclipsing binary|eclipsing binaries]], the first such star to be discovered, and also one of the first [[variable star]]s in general to be discovered. Algol's [[apparent magnitude|magnitude]] changes regularly between 2.3 and 3.5 over a period of 2 days, 20 hours and 49 minutes.
79145
79146 As an eclipsing binary, it is actually two stars in close orbit around one another. Because the [[Orbital plane (astronomy)|orbital plane]] coincidentally matches the [[Earth]]'s line of sight, the dimmer star (Algol B) passes in front of the brighter star (Algol A) once per orbit, and the amount of light reaching Earth is temporarily decreased. To be more precise, however, Algol happens to be a triple star system: the eclipsing binary pair is separated by only 0.062 [[astronomical unit|AU]], while the third star (Algol C) is at an average distance of 2.69 AU from the pair and the mutual [[orbital period]] is 681 days (1.86 years). The total mass of the system is about 5.8 solar masses, and the mass ratios of A, B and C are about 4.5&amp;nbsp;: 1&amp;nbsp;: 2.
79147
79148 The variability of Algol was first recorded in [[1670]] by [[Geminiano Montanari]], but it is probable that this property was noticed long before this time; the name Algol means &quot;demon star,&quot; (from [[Arabic language|Arabic]] '''&amp;#1575;&amp;#1604;&amp;#1594;&amp;#1608;&amp;#1604;''' ''al-gh&amp;#363;l'', &quot;the [[ghoul]]&quot;) which was probably given due to its peculiar behavior. In the [[constellation]] Perseus, it represents the eye of the [[Gorgon]] [[Medusa (mythology)|Medusa]].
79149
79150 Studies of Algol led to the '''Algol paradox''' in the theory of [[stellar evolution]]: although components of a binary star form at the same time, and massive stars evolve much faster than the less massive ones, it was observed that the more massive component Algol A is still in the [[main sequence]], while the less massive Algol B is a [[subgiant star]] at a later evolutionary stage. The paradox can be solved by [[mass transfer]]: when the more massive star became a subgiant, it filled its [[Roche lobe]], and most of the mass was transferred to the other star, which is still in the main sequence. In some binaries similar to Algol, a gas flow can actually be seen.
79151
79152 Algol is 92.8 [[light year]]s from Earth; however, about 7.3 million years ago it passed within 9.8 light years and its [[apparent magnitude]] was approximately &amp;minus;2.5, considerably brighter than [[Sirius]] is today. Because the total mass of the system is 5.8 solar masses, and despite the fairly large distance at closest approach, this may have been enough to slightly perturb the [[solar system]]'s [[Oort cloud]] and increase the number of [[comet]]s entering the inner solar system. However, the actual increase in net cratering rate is believed to have been quite small. [http://www.journals.uchicago.edu/AJ/journal/issues/v117n2/980216/980216.html]
79153
79154 [[Astrology|Astrologically]], Algol is considered the most [[luck|unfortunate]] star in the sky. In the [[Middle Ages]] it was one of the 15 [[Behenian fixed stars|Behenian stars]], associated with the [[diamond]] and [[hellebore]], and marked with the [[kabbalistic]] sign [[Image:Agrippa1531_caputAlgol.png]].
79155
79156 ==External links==
79157 * [http://skyscript.co.uk/algol.html Discusses the history of Algol]
79158 * [http://www.solstation.com/stars2/algol3.htm SolStation article]
79159 * [http://www.ari.uni-heidelberg.de/aricns/cnspages/4c02517.htm ARICNS entry]
79160 * [http://www.alcyone.de/SIT/mainstars/SIT000666.htm MainStars data]
79161 * [http://www.astro.uiuc.edu/~kaler/sow/algol.html Algol by Jim Kaler]
79162
79163 [[Category:Bayer objects|Persei, Beta]]
79164 [[Category:Eclipsing binaries]]
79165 [[Category:Blue-white dwarfs]]
79166 [[Category:Orange subgiants]]
79167 [[Category:Perseus constellation]]
79168 [[Category:Variable stars]]
79169 [[Category:Arabic words]]
79170
79171 [[de:Algol (Stern)]]
79172 [[es:Algol]]
79173 [[fr:Algol (Êtoile)]]
79174 [[gl:Algol, estrela]]
79175 [[ko:ė•Œęŗ¨]]
79176 [[it:Algol (astronomia)]]
79177 [[nl:Algol (ster)]]
79178 [[ja:ã‚ĸãƒĢゴãƒĢ]]
79179 [[pl:Algol (gwiazda w Perseuszu)]]
79180 [[pt:Beta Persei]]
79181 [[ru:АĐģĐŗĐžĐģŅŒ]]
79182 [[sv:Algol (stjärna)]]
79183 [[zh:大é™ĩäē”]]</text>
79184 </revision>
79185 </page>
79186 <page>
79187 <title>Amazing Grace</title>
79188 <id>1395</id>
79189 <revision>
79190 <id>41336614</id>
79191 <timestamp>2006-02-26T18:01:13Z</timestamp>
79192 <contributor>
79193 <username>Metahacker</username>
79194 <id>74726</id>
79195 </contributor>
79196 <comment>/* Recordings */ +arlo here too</comment>
79197 <text xml:space="preserve">{{otheruses}}
79198
79199 '''&quot;Amazing Grace&quot;''' is one of the most well-known [[Christian]] [[hymn]]s. The words were written by [[John Newton]]; they form a part of the [[Olney Hymns]] that he worked on, with [[William Cowper]] and other hymnodists.
79200
79201 ==History==
79202
79203 John Newton ([[1725]]&amp;ndash;[[1807]]) was the captain of a slave ship. On [[10 May]] [[1748]] returning home during a storm he experienced a &quot;great deliverance&quot;. In his journal he wrote that the ship was in grave danger of sinking. He exclaimed &quot;Lord have mercy upon us&quot;. He came to the light gradually and even continued to trade slaves after his conversion.
79204
79205 Newton wrote the song &quot;How Sweet the Name of Jesus Sounds&quot; while waiting in an African harbor for a shipment of slaves. Later he renounced his profession, became a minister, and joined William Wilberforce in the fight against slavery.
79206
79207 Newton may have borrowed an old tune sung by the slaves themselves, redeeming the song, just as he had been redeemed.
79208
79209 The now familiar and traditional melody of the hymn was not composed by Newton, and the words were sung to a number of tunes before the now inseparable melody was chanced upon.
79210
79211 There are two different tunes to the words. &quot;New Britain&quot; first appears in a [[shape note]] hymnal from [[1831]] called ''Virginia Harmony''. Any original words sung to the tune are now lost. The melody is believed to be [[Scotland|Scottish]] or [[Ireland|Irish]] in origin; it is [[pentatonic]] and suggests a [[bagpipe]] tune; the hymn is frequently performed on bagpipes and has become associated with that instrument. The other tune is the so-called &quot;Old Regular Baptist&quot; tune. It was sung by the Congregation of the Little [[Zion]] Church, Jeff, Kentucky on the album &quot;The [[Jean Ritchie|Ritchie]] Family of Kentucky&quot; on Folkways ([[1958]]).
79212
79213 Newton's lyrics have become a favourite for [[Christianity|Christians]] of all [[religious denomination|denominations]], largely because the hymn vividly and briefly sums up the Christian doctrine of [[Divine grace]]. The lyrics are loosely based around the text of [[Ephesians]] 2:4-8.
79214
79215 It has also become known as a favorite with supporters of freedom and human rights, both Christian and non-Christian, as it is believed by many to be a song against [[slavery]], as Newton was once a slave trader. He continued to be a slave trader for several years after his experience, but with more compassion. Later he became a clergyman. The song has been sung by many notable musical performers.
79216
79217 The hymn was quite popular among both sides in the [[American Civil War]]. While on the [[trail of tears]], the [[Cherokee]] were not always able to give their dead a full burial. Instead, the singing of Amazing Grace had to suffice. Since then, Amazing Grace is often considered the Cherokee National Anthem. For this reason, many contemporary [[List of Native American musicians|Native American musicians]] have recorded this song.
79218
79219 The name &quot;Amazing Grace&quot; was used as the title of a musical written by Mal Pope about the 1904 [[Wales|Welsh]] [[Revival]] and the life of [[Evan Roberts (minister)|Evan Roberts]].
79220
79221 ==Bagpipes==
79222
79223 The association with bagpipes is a relatively modern phenomenon; for over a century the tune was nearly forgotten in the British Isles until the folk revival of the [[1960s]] began carrying traditional musicians both ways between the British Isles and the United States (where Amazing Grace had remained a very popular hymn). It was little known outside of church congregations or folk festivals until Arthur Penn's film &quot;[[Alice's Restaurant]]&quot; ([[1969]]). Lee Hays of the Weavers leads the worshipers in &quot;Amazing Grace&quot;.
79224
79225 ==Lyrics==
79226 :Amazing grace! (how sweet the sound)
79227 :That sav'd a wretch like me!
79228 :I once was lost, but now am found,
79229 :Was blind, but now I see.
79230
79231 :'Twas grace that taught my heart to fear,
79232 :And grace my fears reliev'd;
79233 :How precious did that grace appear,
79234 :The hour I first believ'd!
79235
79236 :Thro' many dangers, toils and snares,
79237 :I have already come;
79238 :'Tis grace has brought me safe thus far,
79239 :And grace will lead me home.
79240
79241 :The Lord has promis'd good to me,
79242 :His word my hope secures;
79243 :He will my shield and portion be,
79244 :As long as life endures.
79245
79246 :Yes, when this flesh and heart shall fail,
79247 :And mortal life shall cease;
79248 :I shall possess, within the veil,
79249 :A life of joy and peace.
79250
79251 :The earth shall soon dissolve like snow,
79252 :The sun forbear to shine;
79253 :But God, who call'd me here below,
79254 :Will be forever mine.
79255
79256 Some versions of the hymn include an additional verse:
79257
79258 :When we've been there ten thousand years,
79259 :Bright shining as the sun,
79260 :We've no less days to sing God's praise
79261 :Than when we'd first begun.
79262
79263 This verse is not by Newton. It was originally from a hymn called ''[[Jerusalem, My Happy Home]]''. It was added to a version of &quot;Amazing Grace&quot; by [[Harriet Beecher Stowe]], as it appears in her [[novel]] ''[[Uncle Tom's Cabin]]''. Uncle Tom has pieced the lyrics of several hymns together; those who learned the lyrics from the novel have assumed that it belongs.
79264
79265 Some versions include still another verse:
79266
79267 :Shall I be wafted through the skies,
79268 :on flowery beds of ease,
79269 :where others strive to win the prize,
79270 :and sail through bloody seas.
79271
79272 This verse has been recorded by [[Pete Seeger]] and [[Arlo Guthrie]].
79273 The verse really belongs with the hymn, &quot;Am I a Soldier of the Cross?&quot; by [[Isaac Watts]].
79274
79275 ==Recordings==
79276
79277 The hymn has been recorded by countless artists over the last century. Two versions have made the [[UK Singles Chart]]; between 1970 and 1972, a version by [[Judy Collins]] spent 67 weeks in the charts, a record for a female artist, and peaked at number 5. In 1972, an instrumental version by the Pipes and Drums and Military Band of the [[Royal Scots Dragoon Guards]] spent five weeks at number one, also reaching the top spot in Australia. Likewise another artist, [[Hayley Westenra]], released this song on her album [[Pure (album)| Pure]] and this album did incredibly well, selling 19,068 copies in its first week of sales alone.
79278
79279 In addition to recording the hymn, [[Joan Baez]] also opened the US portion of [[Live Aid]], the legendary [[1985]] concert for [[African]] famine relief, with a performance of &quot;Amazing Grace&quot;.
79280
79281 Folk singer [[Arlo Guthrie]] closes many of his concerts with a version of &quot;Amazing Grace&quot; that includes a spoken retelling of its origin.
79282
79283 The composer [[Frank Ticheli]] has written a version of Amazing Grace that is frequently performed by various wind ensembles throughout the United States.
79284
79285 Celtic-influenced [[punk rock|punk]] band the [[Dropkick Murphys]] have made several recordings of Amazing Grace, all of which feature the use of bagpipes.
79286
79287 [[Christian metal]] band [[Stryper]] recorded a [[heavy metal music|heavy metal]] version of Amazing Grace, titled ''10,000 years'', which came out in their album 2005 album [[Reborn (album)|Reborn]]
79288
79289 [[Chris Squire]] of [[Yes (band)|Yes]] also has recorded a bass solo version of Amazing Grace on the Rhino's rerelease of '[[Going For The One]]' album.
79290
79291 Another version was used as the ending song for the Japanese drama series Shiroi Kyoto(2003-2004 version).
79292
79293 {{multi-listen start}}
79294 {{multi-listen item|filename=Amazing grace.ogg|title=Amazing grace|description=from the Library of Congress' ''John and Ruby Lomax 1939 Southern States Recording Trip''; performed by Mr. and Mrs. N.V. Braley on [[5 May]] [[1939]] at the home of Beal D. Taylor near [[Medina, Texas]]|format=[[Ogg]]}}
79295 {{multi-listen item|filename=Amazing grace2.ogg|title=Amazing grace|description=|format=[[Ogg]]}}
79296 {{multi-listen item|filename=Amazing Grace-organ.ogg|title=Amazing grace|description=Performed on an Organ|format=[[Ogg]]}}
79297 {{multi-listen end}}
79298
79299 ==External links==
79300 *[http://www.texasfasola.org/biographies/johnnewton.html Amazing Grace: The Story of John Newton]
79301 *[http://christianmusic.about.com/od/whosingsthat/qt/qtamazinggrace.htm Who Has Recorded Amazing Grace?]
79302 *[http://www.easybyte.org Easybyte] - free easy piano arrangement of Amazing Grace
79303 *[http://www.snopes.com/religion/amazing.htm Amazing Grace] myths at the [[Urban Legends Reference Pages]]
79304 *[http://artofthestates.org/cgi-bin/piece.pl?pid=288 Art of the States: Amazing Grace] variations on the hymn by composer John Harbison
79305
79306 [[chr:ᎤᏁáŽŗᏅáŽĸᎤáĒáĨ]]
79307 [[de:Amazing Grace]]
79308 [[fr:Amazing Grace]]
79309 [[ja:&amp;#12450;&amp;#12513;&amp;#12452;&amp;#12472;&amp;#12531;&amp;#12464;&amp;#12464;&amp;#12524;&amp;#12452;&amp;#12473;]]
79310 [[sv:Amazing Grace]]
79311
79312 [[Category:Christian hymns]]
79313
79314 [[Category:British poems]]</text>
79315 </revision>
79316 </page>
79317 <page>
79318 <title>America Online</title>
79319 <id>1397</id>
79320 <revision>
79321 <id>42160722</id>
79322 <timestamp>2006-03-04T05:35:03Z</timestamp>
79323 <contributor>
79324 <username>Ww2censor</username>
79325 <id>631250</id>
79326 </contributor>
79327 <comment>/* AOL users' reputation */ Claris Em@iler</comment>
79328 <text xml:space="preserve">{{Infobox_Company |
79329 company_name = America Online |
79330 company_logo = [[Image:AOL logo.png]] |
79331 company_type = Jointly owned by [[Time Warner]] (95%) and [[Google]] (5%) |
79332 company_slogan = |
79333 foundation = 1985|
79334 location = [[Dulles, Virginia]]|
79335 key_people = [[Jonathan Miller (America Online)|Jonathan Miller]], [[Ted Leonsis]]|
79336 num_employees = about 20,000|
79337 industry = [[Internet]] &amp; [[Telecommunication|Communications]]|
79338 products = [[Internet service provider|ISP]]|
79339 revenue = [[image:green up.png]]$8.7 billion [[United States dollar|USD]] ([[2004]])|
79340 homepage = [http://aol.com www.aol.com]
79341 }}
79342 '''America Online''', or '''AOL''' for short, is a U.S.-based [[online service provider]], [[Internet service provider]], and media company operated by [[Time Warner]]. Based in [[Dulles, Virginia|Dulles]], [[Virginia]], a community in [[Loudoun County, Virginia]], with regional branches around the world, it is by far the most successful proprietary online service, with more than 32 million subscribers at one point in the [[United States of America|US]], [[Canada]], [[Germany]], [[France]], the [[United Kingdom of Great Britain and Northern Ireland|United Kingdom]], [[Latin America]] (declared bankrupt in 2004), [[Japan]] and formerly [[Russia]]. In early 2005, AOL [[Hong Kong]] stopped its service. In the fall of 2004, AOL reported total subscribers had dropped to 24 million, a drop of over a quarter of its subscribers.[http://isp-planet.com/research/rankings/2003/usa_insight_q32003.html] In late 1996, AOL suspended all dialup service within [[Russia]] in the face of massive billing [[fraud]], forcing the company into a rare case of full market retreat.
79343
79344 For many Americans through the mid to late [[1990s]], AOL ''was'' the Internet, but the rise of high-speed Internet access from cable and telephone companies as well as the increasing sophistication of the public in handling browsers and other Internet utilities has cut into its user base. In 2000 AOL and [[Time Warner]] announced plans to merge, and the deal was approved by the [[Federal Trade Commission]] on [[January 11]] [[2001]]. This merger was primarily a product of the Internet mania of the late 1990's, known as the [[Internet bubble]]. The subsequent massive decline in value of stocks such as AOL resulted in much recrimination over the merger. Also, the merger with AOL allowed for Time Warner to vote off WCW ( World Championship Wrestling ).
79345
79346 News reports in the fall of 2005 indicated a renewed interest in buying out AOL. Suitors such as [[Microsoft]], [[Google]], [[Yahoo!|Yahoo]] and [[Comcast]] have had discussions with [[Time Warner]] about a possible purchase, and on [[December 16]], [[2005]], Time Warner and Google announced that they were starting exclusive talks for Google to purchase $1 billion in AOL stock, a 5% share.
79347
79348 Although its dialup market is shrinking as more members switch to high-speed services, the success of its AOL for Broadband program has helped it to maintain members that would otherwise totally drop the AOL service. This combined with its growing advertising revenue through its relationship with Google, AOL collected 8.7 billion US dollars in revenue for 2004.
79349
79350 ==History==
79351 [[Image:AOL.gif|thumbnail|The AOL logo used until late 2004|150 px|right]]
79352 AOL began as a short-lived venture called Control Video Corporation (or CVC), founded by [[William von Meister]]. Its sole product was an online service called [[Gameline]] for the [[Atari 2600]] [[video game console]] after von Meister's idea of buying music on demand was rejected by [[Warner Brothers]]. (Klein, 2003) Subscribers bought a [[modem]] from the company for $49.95 and paid a one-time $15 setup fee. Gameline permitted subscribers to temporarily download games and keep track of high scores, at a cost of approximately $1 an hour.
79353
79354 In 1983 the company nearly went [[bankruptcy|bankrupt]], and an investor in Control Video, [[Frank Caufield]], had a friend of his, [[Jim Kimsey]], brought in as a manufacturing consultant. That same year, [[Steve Case]] was hired as a part-time consultant; later on that year, he joined the company as a full-time marketing employee upon the joint recommendations of von Meister and Kimsey. Kimsey went on to become the [[Chief Executive Officer]] (CEO) of the newly-renamed Quantum Computer Services in 1985 after von Meister was quietly dropped from the company.
79355
79356 Case himself rose quickly through the ranks; Kimsey promoted him to vice-president of marketing not long after becoming CEO, and later promoted him further to executive vice-president in 1987. Kimsey soon began to groom Case to ascend to the rank of CEO when he himself retired, which Case did in 1991.
79357
79358 Kimsey changed the company's strategy, and in 1985 launched a sort of mega-[[Bulletin board system|BBS]] for [[Commodore 64]] and [[Commodore 128|128]] computers, originally called [[Quantum Link]] (&quot;Q-Link&quot; for short). In May [[1988]], Quantum and Apple launched [[AppleLink]] Personal Edition for [[Apple II family|Apple II]] and [[Apple Macintosh|Macintosh]] computers. After the two companies parted ways in October [[1989]], Quantum changed the service's name to America Online. [http://www.thocp.net/timeline/1989.htm], [http://apple2history.org/history/ah22.html] &lt;!--both links retrieved Sep 24 2005--&gt; In August [[1988]], Quantum launched [[PC Link]], a service for IBM-compatible [[personal computer|PC]]s developed in a joint venture with the [[Tandy Corporation]].
79359
79360 In February 1991 AOL for [[DOS]] was launched using a [[GeoWorks]] interface followed a year later by AOL for Windows. In October [[1991]], Quantum changed its name to America Online. These changes coincided with growth in pay-based BBS services, like [[Prodigy (ISP)|Prodigy]], [[CompuServe]], and [[GEnie]]. AOL discontinued Q-Link and PC Link in the fall of 1994.
79361 {| border=&quot;1&quot;
79362 | colspan=&quot;2&quot; | '''AOL release timeline'''
79363 |-
79364 | 1991
79365 | AOL for [[MS-DOS|DOS]] launched
79366 |-
79367 | 1993
79368 | AOL for [[Microsoft Windows|Windows]] launched
79369 |-
79370 | 1994
79371 | AOL 2.0 launched
79372 |-
79373 | 1995
79374 | AOL 3.0 launched
79375 |-
79376 | 1998
79377 | AOL 4.0 launched
79378 |-
79379 | 1999
79380 | AOL 5.0 launched
79381 |-
79382 | 2000
79383 | AOL 6.0 launched
79384 |-
79385 | 2001
79386 | AOL 7.0 launched
79387 |-
79388 | 2002
79389 | AOL 8.0 launched
79390 |-
79391 | 2003
79392 | AOL 9.0 Optimized launched
79393 |-
79394 | 2004
79395 | AOL 9.0 SE launched
79396 |}
79397
79398 == Massive growth ==
79399 Case drove AOL as the online service for people unfamiliar with [[computer|computers]], in particular contrast to [[CompuServe]], which had long served the technical community. AOL was the first online service to require use of [[proprietary]] software, rather than a standard terminal program; as a result it was able to offer a [[graphical user interface]] (GUI) instead of command lines, and was well ahead of the competition in emphasizing communication among members as a feature.
79400
79401 In particular was the Chat Room (borrowed from IRC), which allowed a large group of people with similar interests to convene and hold conversations in real time, including:
79402 *Private rooms &amp;mdash; created by any user. Hold up to 27 people.
79403 *Conference rooms &amp;mdash; created with permission of AOL. Hold up to 48 people and often moderated.
79404 *Auditoriums &amp;mdash; created with permission of AOL. Consisted of a stage and an unlimited number of rows. What happened on the stage was viewable by everybody in the auditorium but what happened within individual rows, of up to 27 people, was viewable only by the people within those rows.
79405 There were also text games played in the chat rooms, known as [[AOL chatroom game]].
79406
79407 Under Case's guidance, AOL committed to including [[online games]] in its mix of products even when it was only a Commodore 64 service. It hosted the first [[Play-by-mail game|Play by email]] game from any service ''[[Quantum Space]]'' (1989-1991); the first graphical online community (''[[Habitat (video game)|Club Caribe]]'' from [[LucasArts]]); and the first graphical [[MMORPG]], ''[[Neverwinter Nights#History|Neverwinter Nights]]'' from [[Stormfront Studios]] (1991-1997) and the first chatroom-based text role-playing game Black Bayou, a horror role-playing game from Hecklers Online and [[ANTAGONIST, Inc.]]
79408
79409 AOL quickly surpassed [[GEnie]], and by the mid-[[1990s]], it passed [[Prodigy (ISP)|Prodigy]] (which for several years allowed AOL advertising) and [[CompuServe]].
79410
79411 Originally, AOL charged its users an hourly fee, but in 1996 this changed and a flat rate of $19.99 a month was charged. Within three years, AOL's userbase would grow to 10 million people. During this time, AOL connections would be flooded with users trying to get on, and many canceled their accounts due to constant busy signals. Also, games which used to be paid for with the hourly fee migrated in droves to the internet.
79412
79413 AOL was relatively late in providing access to the open Internet. Originally, only some Internet features were accessible through a proprietary interface but eventually it became possible to run other Internet software while logged in through AOL. They were the first online service to seamlessly integrate a web browser into content.
79414
79415 AOL introduced the concept of [[Buddy List]]s, leveraging their one-on-one [[instant messaging]] technology.
79416
79417 Since its merger with Time Warner, the value of AOL has dropped from its $200 billion high and it has seen a similar losses among its subscription rate. It has since attempted to reposition itself as a content provider similar to companies such as Yahoo! as opposed to an Internet service provider which delivered content only to subscribers in what was termed a &quot;walled garden.&quot;. In 2005, AOL broadcast the [[Live 8]] concert live over the Internet, and thousands of users downloaded clips of the concert over the following months.
79418
79419 More recently, AOL has announced plans to offer subscribers classic television programs for free with commercials inserted. Programs available include [[Wonder Woman (television series)|Wonder Woman]] and [[Eight is Enough]].
79420
79421 One of AOL's recently added premium services is AOL Total Talk, a VoiP Internet service.
79422
79423 == CD-ROM distribution ==
79424 {{seealso|AOL disk collecting}}
79425 AOL has tirelessly pushed itself through regularly mailing sign-up [[diskette]]s and [[CD-ROM]]s to over 100 million households, helping forge dominant growth. This campaign has been made particuarly effective by the way of these CDs offer free trials. In the early years of AOL's practice of offering free trials with CDs, the trials were usually only a few hours. The trial time has gradually increased, and now the CDs tend to offer a month's free trial.
79426
79427 However this long campaign has produced a backlash, including a program called [[No More AOL CDs]] that seeks to gather one million unwanted AOL CDs and dump them at AOL headquarters. Other organizations have objected under both [[environmental]] and [[privacy]] grounds. Environmentalists say that AOL's CDs are largely unwanted and result in massive non-biodegradable plastic waste. However, AOL's mailings have never violated the law, and always interest some people. AOL has also always provided means for people to remove themselves from AOL mailing lists, though No More AOL CDs has documented claims that these removal attempts are sometimes ineffective. Others view [[AOL disk collecting|AOL disks]] as valuable [[collecting|collectible]] items due to the vast number of [[CD-ROM]] design variations.
79428
79429 == AOL users' reputation ==
79430 People using AOL (often referred to as &quot;AOLers&quot;) have a reputation online for being excessively [[Newbie|noobish]]&amp;mdash;ignorant of [[netiquette]]. This is in part due to the fact that AOL is aimed towards users who are new to the Internet. To a segment of the online population, an e-mail address ending in ''aol.com'' is a sign of ignorance, to be avoided at all costs. Some web, game, and chat servers even go as far as to ban the AOL hostmask, preventing AOL users from logging on. Additionally, the EFNET [[IRC]] chat network banned all AOL users for a time. However, this reputation doesn't stop ''aol.com'' addresses from being widely used, even in serious business contexts; it is still commonplace in advertisements in non-computer-related publications to see lines like &quot;See our website at '''www.whatever.com''', or e-mail us at '''whatever@aol.com,'''&quot; to the puzzlement of those who believe an address in the company's own domain would be more logical and professional.
79431
79432 AOL further provoked disdain from other Internet users in 1994, when AOL began to provide access to the [[Usenet]] bulletin board system for its users. This led to a flood of relatively net-illiterate, commercial, young and immature users into what had previously been the almost exclusive domain of scientists, academics and technical personnel associated with universities and computer companies. The new AOL contingent immediately gained a reputation as pests in Usenet's numerous forums, making near-constant requests for pornography, bootlegged software and hacking information. (See: &quot;[[Me too]].&quot;) In early [[2005]], AOL ceased providing newsgroup access, instead referring customers to the [[Google Groups]] site, stating &quot;Google does a very good job of hosting newsgroups and the typical AOL user probably doesn't use newsgroups that often.&quot;[http://www.theregister.co.uk/2005/01/25/aol_cutsoff_newsgroups/]
79433
79434 AOL e-mail accounts used to be only accessed using a nonstandard proprietary protocol not supported by other vendors' e-mail programs, compelling users, in the past, to use AOL's own mail program and be subject to its quirks and limitations. [[Claris Em@iler]] was the only third-party email software ever licenced to directly access AOL email until the recent opening of AOL to [[IMAP]] email access. One consequence of the past practice is that when people receive e-mails from AOL users, the address, not the name of the user, is displayed, since the user's real name is not added in the manner that most other mail programs do it. In instances where the AOL user has chosen an alphanumeric alias, eg: &quot;'''jwds75@aol.com'''&quot; rather than &quot;'''John Smith'''&quot;, the identity of the user is less clear to the recipient. Also in the past, users of the AOL client software were unable to click on hyperlinks in the text. Many experienced Internet users remain unaware that these inherent limitations of the AOL software are not due to any possible lack of computer skills by AOL users.
79435
79436 In a different vein, AOL users also have a reputation in some online communities for disruptive activities. AOL makes use of aggressive [[web cache|web caching]] [[proxy server]]s that effectively makes it impossible for a website, such as a [[wiki]], to block an abusive user without excluding large segments of the entire AOL community. Combined with the fact that their free service offers make it all too easy to join, many [[Internet troll]]s take advantage of this and choose AOL as a preferred means of hiding their true identity, in a manner that is almost as effective as using an [[anonymous proxy]]. This has only served to further harm the reputation of AOL users as a whole and is a large part of why some places implement a policy of banning all AOL users.
79437
79438 ==Controversies==
79439 ===Community Leaders===
79440 Prior to the middle of 2005, AOL used volunteers called [[America Online Community Leaders Program|Community Leaders]], or CLs, to monitor chatrooms, message boards, and libraries. Some community leaders were recruited for content design and maintenance using a proprietary language and interface called [[RAINMAN]], although most content maintenance was performed by partner and internal employees.
79441
79442 In 1999, Kelly Hallissey and Brian Williams, former Community Leaders and founders of an anti-AOL website filed a [[class action lawsuit]] against AOL citing violations of U.S. labor laws in its usage of CLs. The [[Department of Labor]] investigated but came to no conclusions, closing their investigation in 2001. In light of these events, AOL drastically began reducing the responsibilities and privileges of its volunteers in 2000. The program was eventually ended on [[June 8]] [[2005]]. Current Community Leaders at the time were offered 12 months of credit on their accounts. Also for a time AOL had a bot named CATWATCH which would pop into user created private rooms where TOS violations MAY be occuring, and everyone in the room would be disconnected from AOL and get a TOS strike against their account.
79443
79444 ===Billing disputes===
79445 AOL has faced a number of lawsuits over claims that it has been slow to stop billing people after their accounts have been cancelled, either by the company or the user. In addition, AOL changed its method of calculating used minutes in response to a class action lawsuit. Previously, AOL would add fifteen seconds to the time a user was connected to the service and round up to the next whole minute (thus, a person who used the service for 11 minutes and 46 seconds would be charged for 13 minutes). AOL claimed this was to account for sign on/sign off time, but because this practice was not made known to its customers, the lawsuit won (some also pointed out that signing on and off did not always take 15 seconds, especially when connecting via another ISP). AOL disclosed its connection time calculation methods to all of its customers and credited them with extra free hours. In addition, the AOL software would notify the user of exactly how long they were connected and how many minutes they were being charged for.
79446
79447 ===Account cancellation===
79448 In response to approximately 300 consumer complaints, New York Attorney General [[Eliot Spitzer]]’s office began an inquiry of AOL’s customer service policies. The investigation revealed that the company had an elaborate system for rewarding employees who purported to retain or &quot;save&quot; subscribers who had called to cancel their Internet service. In many instances, such retention was done against subscribers’ wishes, or without their consent.
79449
79450 Under the system, consumer service personnel received bonuses worth tens of thousands of dollars if they could successfully dissuade or &quot;save&quot; half of the people who called to cancel service. For several years, AOL had instituted minimum retention or &quot;save&quot; percentages, which consumer representatives were expected to meet. These bonuses, and the minimum &quot;save&quot; rates accompanying them, had the effect of employees not honoring cancellations, or otherwise making cancellation unduly difficult for consumers.
79451
79452 Many consumers complained that AOL personnel ignored their demands to cancel service and stop billing.
79453
79454 On August 24, 2005, America Online agreed to pay $1.25 million to the state of New York and reformed its
79455 customer service procedures. Under the agreement, AOL will no longer require its customer
79456 service representatives to meet a minimum quota for customer retention in order to receive a bonus.
79457
79458 ===Software===
79459 In 2000, AOL was served with an $8 billion lawsuit alleging that its (now dated) AOL 5.0 software caused significant difficulties for users attempting to use third-party Internet service providers. The lawsuit sought damages of up to $1000 for each user that had downloaded the software cited at the time of the lawsuit. AOL later agreed to a settlement of $15 million, without admission of wrongdoing.
79460
79461 === Usenet newsgroups ===
79462 When AOL gave clients access to [[Usenet]] in 1994, they hid at least one newsgroup in standard list view: ''alt.aol-sucks''. AOL did list the newsgroup in the alternative description view, but changed the description to &quot;Flames and complaints about America Online&quot;.
79463
79464 === Terms of Service (TOS) ===
79465 There have been many complaints over rules that govern AOL's members conduct, call the Terms Of Service, which apply/applied to everyone who used AOL, regardless of age, or where an AOL member is on the internet. Claims are that these rules are too strict to follow, do not allow swearing, or a very flexible rule called room disruption.
79466
79467 == Company purchases ==
79468 As it grew, AOL purchased many other software companies, including:
79469
79470 *[[BookLink]] bought in December 1994.
79471 *[[NaviSoft]]'s [[NaviServer]] (later to become [[AOLserver]]) in 1994.
79472 *[[ImagiNation Network|ImagiNation Network (I.N.N.)]] from [[AT&amp;T]] in 1996.
79473 *[[CompuServe]] in February 1998.
79474 *[[Mirabilis (company)|Mirabilis]] (maker of [[ICQ]]) in 1998.
79475 *PLS text-search software in 1998,
79476 *[[Nullsoft]] (maker of [[Winamp]]), in 1999 for $86 million
79477 *[[Netscape Communications Corporation|Netscape]], in 1999 for $4.2 billion.
79478 *[[Mapquest]] in 1999.
79479 *[[Tegic]] in December 1999.
79480 *[[Singingfish]] search engine, November 2003.
79481 *[http://advertising.com Advertising.com], an Internet advertising agency, in June 2004.
79482 *[http://mailblocks.com MailBlocks], a personal, Web-based email service, in August 2004.
79483 *[http://wildseed.com Wildseed], a privately held mobile software vendor, in August 2005.
79484 *[http://xdrive.com Xdrive], a leading provider of online storage and file sharing services, also in August 2005.
79485 *[[Weblogs, Inc.]], a blogging network that runs such sites as [[Engadget]], [[Autoblog]], [[Cinematical]] and [[TVSquad]], in October 2005, for $30 million.
79486 *[[Truveo, Inc.]], a leading video search company, in December 2005, for an undisclosed value.
79487
79488 ==Notable persons associated with AOL==
79489 *[[Jim Kimsey]] (former CEO and board chairman)
79490 *[[Steve Case]] (former CEO and board chairman)
79491 *[[Jan Brandt]] (former President of Marketing)
79492 *[[Justin Frankel]] (Nullsoft founder)
79493 *[[Ted Leonsis]] (Vice-Chairman, President AOL Audience Group)
79494 *[[Michael Powell]] (during merging with [[Time Warner]])
79495 *[[Marc Andreessen]] (Netscape co-founder)
79496 *[[Jason Smathers]] (former AOL employee convicted of stealing the Internet provider's entire subscriber list -- over 30 million consumers, and their 90 million screen names -- and selling it to a known spammer.)
79497 *[[Jason Calacanis]] (Co-founder of Weblogs, Inc.)
79498 ==AOL Computer Checkup==
79499 AOL Computer Checkup is a service offered by AOL to AOL members. It is a performance and hardware analyzer, not unlike the scans in [[Norton Utilities]].
79500 ==McAfee==
79501 AOL also included McAfee VirusScan and McAfee Firewall Express in some versions
79502
79503 ==See also==
79504 * [[AOHell]]
79505 * [[AOHack programs]]
79506 * [[Sessions@AOL]]
79507 * [[AOL Browser]]
79508 * [[GAMEY]]
79509 * [[Ursine:AOL|AOL]] from [[Ursine:Main Page|Ursine]]'s [[Ursine:Jargon|Jargon Wiki]].
79510 * [[Ursine:AOL!|AOL!]] from [[Ursine:Main Page|Ursine]]'s [[Ursine:Jargon|Jargon Wiki]].
79511
79512 ==References==
79513 *Klein, Alec (2003). ''Stealing Time: Steve Case, Jerry Levin, and the Collapse of AOL Time Warner''. Simon &amp; Schuster. ISBN 0-7432-5984-X.
79514 *Mehta, Stephanie N. &amp; Vogelstein, Fred (Nov. 14, 2005). &quot;AOL: The Relaunch&quot;. ''[[Fortune (magazine)|Fortune]]'', p. 84&amp;ndash;88.
79515
79516 ==External links==
79517 *[http://www.aol.com/ AOL US]
79518 *[http://www.aol.com.br AOL Brasil]
79519 *[http://aol.ca AOL Canada]
79520 *[http://aol.de AOL Germany]
79521 *[http://aol.fr AOL France]
79522 *[http://www.aol.com.mx/ AOL MÊxico]
79523 *[http://aol.co.uk AOL UK]
79524 *[http://www.jp.aol.com AOL Japan]
79525 *[http://iml.jou.ufl.edu/projects/Fall2000/McAtee/ AOL: A History]
79526 *[http://staff.jccc.net/lcline/index.htm AOL Disk Collection]
79527 *[http://www.jmusheneaux.com/8000c.htm Important Dates &amp; A Look at AOL's Evolving Interface]
79528 *[http://www.nomoreaolcds.com/ The &quot;No More AOL CDs&quot; campaign]
79529 *[http://groups.google.com/group/alt.aol-sucks alt.aol-sucks: Anti-AOL Usenet group (via Google)]
79530 *[http://archives.cnn.com/2000/TECH/computing/02/02/aol.lawsuit.02/ CNN.com] Disgruntled AOL 5.0 users seek up to $8 billion in damages
79531 *[http://www.latimes.com/business/la-fi-golden27feb27,0,4045957.column?coll=la-home-business/ AOL fraud]
79532 {{Time Warner}}
79533
79534 [[Category:America Online]]
79535 [[Category:Internet service providers]]
79536 [[Category:Online service providers]]
79537 [[Category:Time Warner subsidiaries]]
79538
79539 [[de:America Online]]
79540 [[fr:America online]]
79541 [[it:America Online]]
79542 [[hu:America Online]]
79543 [[nl:America Online]]
79544 [[ja:AOL]]
79545 [[no:America Online]]
79546 [[pl:AOL]]
79547 [[pt:AOL]]
79548 [[sv:America Online]]
79549 [[tr:AOL]]
79550 [[zh:įžŽå›Ŋ在įēŋ]]</text>
79551 </revision>
79552 </page>
79553 <page>
79554 <title>Algebra</title>
79555 <id>1398</id>
79556 <revision>
79557 <id>42045821</id>
79558 <timestamp>2006-03-03T12:35:31Z</timestamp>
79559 <contributor>
79560 <username>Nikai</username>
79561 <id>9759</id>
79562 </contributor>
79563 <minor />
79564 <comment>/* History */ sp</comment>
79565 <text xml:space="preserve">{{Current-Math-COTW}}
79566 :''This article is about the branch of mathematics. For other uses of the term see [[algebra (disambiguation)]].''
79567
79568 '''Algebra''' ([[Arabic language|Arabic]]: اŲ„ØŦØ¨Øą, ''al-jabr'') is a branch of [[mathematics]] which studies [[structure]] and [[quantity]]. [[Elementary algebra]] is often taught in high school and gives an introduction into the basic ideas of algebra: studying what happens when one adds and multiplies numbers and how one can make [[polynomial]]s and find their roots.
79569
79570 Algebra is much broader than [[arithmetic]] and can be generalized. Rather than working on numbers, one can work over [[symbols]] or [[element (mathematics)|elements]]. Addition and multiplication are viewed as general [[operator|operations]], and their precise definitions lead to structures called [[group (mathematics)|groups]], [[ring (mathematics)|rings]] and [[field (mathematics)|fields]].
79571
79572 Together with [[geometry]] and [[mathematical analysis|analysis]], algebra is one of the three main branches of mathematics.
79573
79574 ==Classification==
79575 Algebra may be roughly divided into the following categories:
79576 * '''[[elementary algebra]]''', in which the properties of operations on the [[real number|real number system]] are recorded using symbols as &quot;place holders&quot; to denote [[mathematical constant|constants]] and [[variable]]s, and the rules governing [[mathematical expression]]s and [[equation]]s involving these symbols are studied (note that this usually includes the subject matter of courses called ''intermediate algebra'' and ''college algebra'');
79577 * '''[[abstract algebra]]''', sometimes also called ''modern algebra'', in which [[algebraic structure]]s such as [[group (mathematics)|groups]], [[ring (mathematics)|rings]] and [[field (mathematics)|field]]s are [[axiomatization|axiomatically]] defined and investigated;
79578 * '''[[linear algebra]]''', in which the specific properties of [[vector space]]s are studied (including [[matrix (mathematics)|matrices]]);
79579 * '''[[universal algebra]]''', in which properties common to all algebraic structures are studied.
79580
79581 In advanced studies, axiomatic algebraic systems like groups, rings, fields, and algebras over a field are investigated in the presence of a natural [[geometry|geometric]] structure (a [[topology]]) which is compatible with the algebraic structure. The list includes:
79582
79583 * [[Normed linear space]]s
79584 * [[Banach space]]s
79585 * [[Hilbert space]]s
79586 * [[Banach algebra]]s
79587 * [[Normed algebra]]s
79588 * [[Topological algebra]]s
79589 * [[Topological group]]s
79590
79591 ==Elementary algebra==
79592
79593 '''Elementary algebra''' is the most basic form of [[algebra]] taught to students who are presumed to have no knowledge of [[mathematics]] beyond the basic principles of [[arithmetic]]. While in arithmetic only [[number]]s and their arithmetical operations (such as +, &amp;minus;, &amp;times;, Ãˇ) occur, in algebra one also uses symbols (such as ''a'', ''x'', ''y'') to denote numbers. This is useful because:
79594 * It allows the general formulation of arithmetical laws (such as &lt;math&gt;a + b = b + a&lt;/math&gt; for all ''a'' and ''b''), and thus is the first step to a systematic exploration of the properties of the [[real number|real number system]].
79595 * It allows the reference to &quot;unknown&quot; numbers, the formulation of [[equation]]s and the study of how to solve these (for instance &quot;find a number ''x'' such that &lt;math&gt;3x + 1 = 10&lt;/math&gt;).
79596 * It allows the formulation of [[function (mathematics)|function]]al relationships (such as &quot;if you sell ''x'' tickets, then your profit will be &lt;math&gt;3x - 10&lt;/math&gt; dollars&quot;).
79597
79598 ==Abstract algebra==
79599 :''Main article: [[Abstract algebra]]; see also [[algebraic structures]]''.
79600 '''Abstract algebra''' extends the familiar concepts found in elementary algebra and [[arithmetic]] of [[numbers]] to more general concepts.
79601
79602 '''[[Set]]s''': Rather than just considering the different types of [[number]]s, abstract algebra deals with the more general concept of ''sets'': a collection of objects called [[elements]]. All the familiar types of numbers are sets. Other examples of sets include the set of all two by two [[Matrix (mathematics)|matrices]], the set of all second degree [[polynomials]] (''ax''&lt;sup&gt;2&lt;/sup&gt;+''bx''+''c''), the set of all two dimensional [[vectors]] in the plane, and the various [[finite groups]] such as the [[cyclic group]]s which are the group of integers modulo ''n''. [[Set theory]] is a branch of [[logic]] and not technically a branch of algebra.
79603
79604 '''[[Binary operation]]s''': The notion of [[addition]] (+) is abstracted to give a ''binary operation'', * say. For two elements ''a'' and ''b'' in a set ''S'' ''a''*''b'' gives another element in the set, (technically this condition is called [[Closure (mathematics)|closure]]). [[Addition]] (+), [[subtraction]] (-), [[multiplication]] (&amp;times;), and [[division]] (&amp;divide;) are all binary operations as in addition and multiplication of matrices, vectors, and polynomials.
79605
79606 '''[[Identity element]]s''': Zero and one are abstracted to give the notion of an ''identity element''. Zero is the identity element for addition and one is the identity element for multiplication. For a general binary operator * the identity element ''e'' must satisfy ''a''*''e''=''a'' and ''e''*''a''=''a''. This holds for addition as ''a''+0=''a'', and 0+''a''=''a'' and multiplication ''a''&amp;times;''1''=''a'', 1&amp;times;''a''=''a''. However, if we take the positive natural numbers and addition, there is no identity element.
79607
79608 '''[[Inverse elements]]''': The negative numbers gives rise to the concept of an ''inverse elements''. For addition the inverse of ''a'' is ''-a'', and for multiplication the inverse is &lt;sup&gt;1&lt;/sup&gt;/&lt;sub&gt;''a''&lt;/sub&gt;. A general inverse element ''a''&lt;sup&gt;-1&lt;/sup&gt; must satisfy the property that ''a''*''a''&lt;sup&gt;-1&lt;/sup&gt;=''e'' and ''a''&lt;sup&gt;-1&lt;/sup&gt;*''a''=''e''.
79609
79610 '''[[Associativity]]''': The integers with addition have a property called associativity: (2+3)+4=2+(3+4). In general this becomes (''a''+''b'')+''c''=''a''+(''b''+''c''). This property is shared by most binary operations, but not subtraction or division.
79611
79612 '''[[Commutative operation|Commutativity]]''': The integers with addition also have a property called commutativity: 2+3=3+2. In general this becomes ''a''+''b''=''b''+''a''. Only some binary operations have this property, it holds for the integers with addition and multiplication, but it does not hold for [[matrix multiplication]].
79613
79614 ===Groups===
79615 :''Main article: [[group (mathematics)|group]]; see also [[group theory]], [[examples of groups]]''
79616 Combining the above concepts gives one of the most important structures in mathematics: a '''[[group (mathematics)|group]]'''. A group consists of:
79617 *a set ''S'' of elements,
79618 *a(closed) binary operation (*)
79619 *an identity element exists,
79620 *every element has an inverse,
79621 *the operation is associative.
79622
79623 If commutativity is included as well then we obtain an [[Abelian group]].
79624
79625 For example, the set of integers under the operation of addition is a group. In this group, the identity element is 0 and the inverse of any element ''a'' is its negation, -''a''. The associativity requirement is met since for any integers ''a'', ''b'' and ''c'', &lt;math&gt;(a+b)+c = a+(b+c)&lt;/math&gt;.
79626
79627 The non-zero [[rational number]]s form a group under multiplication. Here, the identity element is 1, since &lt;math&gt;1 \cdot a = a \cdot 1 = a&lt;/math&gt; for any any rational number ''a''. The inverse of ''a'' is &lt;math&gt;\frac{1}{a}&lt;/math&gt;, since &lt;math&gt;a \cdot {1 \over a}=1&lt;/math&gt;.
79628
79629 The integers under the multiplication operation, however, do not form a group. This is because, in general, the multiplicative inverse of an integer is not an integer. For example, 4 is an integer, but its multiplicative inverse is &lt;sup&gt;1&lt;/sup&gt;/&lt;sub&gt;4&lt;/sub&gt;, which is not an integer.
79630
79631 The theory of groups is studied in [[group theory]]. A major result in this theory is the [[Classification of finite simple groups]] a vast body of work which classified all the is a vast body of work, mostly published between around [[1955]] and [[1983]], which is thought to classify all of the [[finite set|finite]] [[simple group]]s.
79632
79633 {|class=&quot;wikitable&quot;
79634 |-
79635 |colspan=11|Examples of groups
79636 |-
79637 !Set:
79638 |colspan=2|[[Natural numbers]] &lt;math&gt;\mathbb{N}&lt;/math&gt;
79639 |colspan=2|[[Integers]] &lt;math&gt;\mathbb{Z}&lt;/math&gt;
79640 |colspan=4|[[Rational numbers]] &lt;math&gt;\mathbb{Q}&lt;/math&gt; (also [[Real numbers|real]] &lt;math&gt;\mathbb{R}&lt;/math&gt; and [[Complex numbers|complex]] &lt;math&gt;\mathbb{C}&lt;/math&gt; numbers)
79641 |Integers mod 3: {0,1,2}
79642 |-
79643 !operation
79644 | + (including zero)
79645 | &amp;times; (excluding zero)
79646 | +
79647 | &amp;times; (excluding zero)
79648 | +
79649 | &amp;minus;
79650 | &amp;times; (excluding zero)
79651 | &amp;divide; (excluding zero)
79652 | +
79653 |-
79654 !Closed
79655 |Yes
79656 |Yes
79657 |Yes
79658 |Yes
79659 |Yes
79660 |Yes
79661 |Yes
79662 |Yes
79663 |Yes
79664 |-
79665 |identity
79666 |0
79667 |1
79668 |0
79669 |1
79670 |0
79671 |NA
79672 |1
79673 |NA
79674 |0
79675 |-
79676 |inverse
79677 |NA
79678 |NA
79679 | -1
79680 |NA
79681 | -1
79682 |NA
79683 |&lt;sup&gt;1&lt;/sup&gt;/&lt;sub&gt;''a''&lt;/sub&gt;
79684 |NA
79685 |0,2,1 receptively
79686 |-
79687 |Associative
79688 |Yes
79689 |Yes
79690 |Yes
79691 |Yes
79692 |Yes
79693 |No
79694 |Yes
79695 |No
79696 |Yes
79697 |-
79698 |Commutative
79699 |Yes
79700 |Yes
79701 |Yes
79702 |Yes
79703 |Yes
79704 |No
79705 |Yes
79706 |No
79707 |Yes
79708 |-
79709 |Structure
79710 |[[Magma (algebra)|semigroup]]
79711 |[[quasigroup]]
79712 |Abelian group
79713 |[[Monoid]]
79714 |Abelian group
79715 |[[quasigroup]]
79716 |Abelian group
79717 |[[quasigroup]]
79718 |Abelian group
79719 |}
79720
79721
79722 Many other types of algebraic structures exist. Among the most common are [[Ring_(mathematics)|rings]], [[Field_(mathematics)|fields]], and [[Monoid|monoids]]. These different structures can be used to model different types of mathematical objects. Different algebraic structures are often related. For example, a group is a specific kind of monoid, and rings and fields are similar to groups, but with more operations.
79723
79724 == Algebras ==
79725 The word '''''algebra''''' is also used for various [[algebraic structures]]:
79726 * [[algebra over a field]]
79727 * [[algebra over a set]]
79728 * [[Boolean algebra]]
79729 * [[sigma-algebra]]
79730 * [[F-algebra]] and [[F-coalgebra]] in [[category theory]]
79731
79732 ==History==
79733 [[Image:Euklid2.jpg|thumb|175px|Hellenistic mathematician [[Euclid]] details [[geometric]]al algebra in ''[[Euclid's Elements|Elements]]''.]]
79734
79735 The origins of algebra can be traced to the ancient [[Egyptian mathematics|Egyptians]] and [[Babylonian mathematics|Babylonians]], who used an early type of algebra to solve [[linear equation|linear]], [[quadratic equation|quadratic]], and [[indeterminate (variable)|indeterminate]] equations more than 3,000 years ago. By contrast, most [[Indian mathematics|Indian]] and [[Greek mathematics|Greek]] mathematicians in the [[1st millennium BC]] usually solved such equations by [[geometry|geometric]] methods.
79736
79737 *Circa [[100 BC]]: [[Algebraic equations]] are treated in the [[Chinese mathematics]] book ''[[Jiuzhang suanshu]]'' (''[[The Nine Chapters on the Mathematical Art]]'').
79738 *Circa [[100 BC]]: The ''[[Indian mathematics#Bakhshali Manuscript .28200_BC - 400 CE.29|Bakhshali Manuscript]]'' in [[ancient India]] contains algebraic solutions of [[linear equations]] with upto five unknowns, the general algebraic formula for the quadratic equation, quadratic indeterminate equations, and [[simultaneous equations]].
79739 *Circa [[150|150 AD]]: [[Hellenized]] [[Egyptian]] mathematician [[Hero of Alexandria]], treats algebraic equations in three volumes of mathematics.
79740 *Circa [[200]]: Hellenized [[Babylonian]] mathematician [[Diophantus]], who lived in Egypt and is often considered as the &quot;father of algebra&quot;, writes his famous ''[[Arithmetica]]'', a work featuring solutions of algebraic equations and on the theory of numbers.
79741 *[[499]]: Indian mathematician [[Aryabhata]], obtains whole number solutions to linear equations by a method equivalent to the modern one.
79742 *[[628]]: Indian mathematician [[Brahmagupta]], invents the method of solving indeterminate equations of the second degree, gives rules for solving linear and quadratic equations, and discovers negative solutions for the [[quadratic equation]]. [[Indian mathematicians]] at the time recognized that [[quadratic equation]]s have two [[root]]s, and included [[Negative and non-negative numbers|negative]] as well as [[irrational number|irrational]] roots.
79743 *[[820]]: The word ''algebra'' is derived from operations described in the treatise first written by [[Persian people|Persian]] [[Islamic mathematics|mathematician]] [[Al-Khwarizmi]] titled: ''[[Al-Jabr wa-al-Muqabilah]]'' meaning ''The book of summary concerning calculating by transposition and reduction''. The word ''al-jabr'' means ''&quot;reunion&quot;''. Al-Khwarizmi is often considered as the &quot;father of modern algebra&quot;, much of whose works on reduction was included in the book and added to many methods we have in algebra now.
79744 *Circa [[1000]]: [[Abu Bakr al-Karaji]], in his treatise ''al-Fakhri'', extends Al-Khwarizmi's methodology to incorporate integral powers and integral roots of unknown quantities.
79745 *[[1114]]: Indian mathematician [[Bhaskara II]], who wrote the text ''Bijaganita'' (''Algebra''), recognizes that a positive number has two [[square root]]s, and also solves quadratic indeterminate equations and quadratic equations with more than one unknown.
79746 *[[1202]]: Algebra is introduced to [[Europe]] largely through the work of [[Leonardo Fibonacci]] of [[Pisa]] in his work ''[[Liber Abaci]]'' .
79747
79748 ==References==
79749 *Ziauddin Sardar, Jerry Ravetz, and Borin Van Loon, ''Introducing Mathematics'' (Totem Books, 1999).
79750 *Donald R. Hill, ''Islamic Science and Engineering'' (Edinburgh University Press, 1994).
79751 *George Gheverghese Joseph, ''The Crest of the Peacock : The Non-European Roots of Mathematics'' (Princeton University Press, 2000).
79752
79753 ==See also==
79754 {{book}}
79755 * [[Fundamental theorem of algebra]] (which is really a theorem of [[mathematical analysis]], not of algebra)
79756 * [[Diophantus]], &quot;father of algebra&quot;
79757 * Mohammed [[al-Khwarizmi]], also known as &quot;father of modern algebra&quot;. [http://www.math.umd.edu/~czorn/hist_algebra.pdf]
79758 * [[Computer algebra system]]
79759
79760 ==External links==
79761 *[http://www.mathleague.com/help/algebra/algebra.htm Explanation of Basic Topics]
79762 *[http://www.sparknotes.com/math/#algebra1 Sparknotes' Review of Algebra I and II]
79763 *[http://www.jamesbrennan.org/algebra/ ''Understanding Algebra.''] An online algebra text by James W. Brennan.
79764 *[http://www.phy6.org/stargaze/Salgeb1.htm Algebra--the basic ideas] &amp;nbsp; &amp;nbsp; First of 6 parts in a short course on basic algebra at the high school level.
79765 * [http://www.ucs.louisiana.edu/~sxw8045/history.htm Highlights in the history of algebra]
79766 * [http://www.exampleproblems.com ExampleProblems.com] Example problems and solutions from [http://www.exampleproblems.com/wiki/index.php/Algebra basic] and [http://www.exampleproblems.com/wiki/index.php/Abstract_Algebra abstract] algebra.
79767
79768 [[Category:Algebra]]
79769 [[Category:Arabic words]]
79770
79771 [[af:Algebra]]
79772 [[ar:ØŦØ¨Øą]]
79773 [[ast:Álxebra]]
79774 [[bg:АĐģĐŗĐĩĐąŅ€Đ°]]
79775 [[bn:āĻŦā§€āĻœāĻ—āĻŖāĻŋāĻ¤]]
79776 [[ca:Àlgebra]]
79777 [[co:Algebra]]
79778 [[cs:Algebra]]
79779 [[cy:Algebra]]
79780 [[da:Algebra]]
79781 [[de:Algebra]]
79782 [[et:Algebra]]
79783 [[es:Álgebra]]
79784 [[eo:Algebro]]
79785 [[fa:ØŦØ¨Øą]]
79786 [[fr:Algèbre]]
79787 [[ko:대ėˆ˜í•™]]
79788 [[io:Algebro]]
79789 [[id:Aljabar]]
79790 [[is:Algebra]]
79791 [[it:Algebra]]
79792 [[he:אלגברה]]
79793 [[la:Algebra]]
79794 [[lt:Algebra]]
79795 [[mk:АĐģĐŗĐĩĐąŅ€Đ°]]
79796 [[ms:Algebra]]
79797 [[nl:Algebra]]
79798 [[ja:äģŖ数å­Ļ]]
79799 [[no:Algebra]]
79800 [[pl:Algebra]]
79801 [[pt:Álgebra]]
79802 [[ru:АĐģĐŗĐĩĐąŅ€Đ°]]
79803 [[sco:Algebra]]
79804 [[simple:Algebra]]
79805 [[sk:Algebra]]
79806 [[sr:АĐģĐŗĐĩĐąŅ€Đ°]]
79807 [[fi:Algebra]]
79808 [[sv:Algebra]]
79809 [[tl:Aldyebra]]
79810 [[vi:ĐáēĄi sáģ‘]]
79811 [[tr:Cebir]]
79812 [[uk:АĐģĐŗĐĩĐąŅ€Đ°]]
79813 [[zh:äģŖ数]]</text>
79814 </revision>
79815 </page>
79816 <page>
79817 <title>ADHD</title>
79818 <id>1399</id>
79819 <revision>
79820 <id>35049757</id>
79821 <timestamp>2006-01-13T19:28:07Z</timestamp>
79822 <contributor>
79823 <username>Wknight94</username>
79824 <id>352579</id>
79825 </contributor>
79826 <comment>ADHD most often means the disorder. Will put a link to the band there</comment>
79827 <text xml:space="preserve">#REDIRECT [[Attention-deficit hyperactivity disorder]]</text>
79828 </revision>
79829 </page>
79830 <page>
79831 <title>Anno Domini</title>
79832 <id>1400</id>
79833 <revision>
79834 <id>41673027</id>
79835 <timestamp>2006-02-28T23:54:04Z</timestamp>
79836 <contributor>
79837 <username>Phil Boswell</username>
79838 <id>24373</id>
79839 </contributor>
79840 <comment>migrate {{web reference}} to {{[[template:cite web|cite web]]}} using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
79841 <text xml:space="preserve">{{redirect|AD}}
79842
79843 '''Anno Domini''' (&quot;In the Year of the Lord&quot;), abbreviated as '''AD''' or '''A.D.''' defines an [[epoch]] based on the traditionally-reckoned year of the birth (or actually [[Incarnation#Christianity|Incarnation]]) of [[Jesus|Jesus of Nazareth]].
79844
79845 This is the designation used to number years in the '''Christian Era''', conventionally used with the [[Julian calendar|Julian]] and [[Gregorian calendar]]s. &lt;br&gt; &quot;Before Christ&quot;, abbreviated as '''BC''' or '''B.C.''' is now usually used to denote years before Anno Domini years in [[English language]]. &lt;br&gt; More extensive, the years may be also designed by ''Anno Domini Nostri Iesu Christi,'' in English translation from [[Latin]]: &quot;In the Year of Our Lord Jesus Christ&quot;.
79846
79847 This Christian era is currently dominant all around the world in both commercial and scientific use. &lt;br&gt; Presently, it is the common, international standard, recognised by international institutions such as the [[United Nations]] and the [[Universal Postal Union]]. &lt;br&gt; This is due both to the [[tradition]] and to the fact that the solar [[Gregorian calendar]] has long time been considered to be astronomically correct.{{Ref|gregorian}}
79848
79849 The English usage adheres to the traditional practice of placing the abbreviation before the year, as in Latin (e.g., 64 BC, but AD 2001).
79850
79851 [[image:scriptorium.jpg|frame|[[Dionysius Exiguus]] invented ''Anno Domini'' years to [[computus|date Easter]].]]
79852
79853 == Synonyms ==
79854 === Common Era ===
79855 Anno Domini is sometimes referred to as the [[Common Era]] (''CE'') instead. This term is often preferred by those who want to avoid the association with the Christian era. For example, Cunningham and Starr (1998) write that &quot;B.C.E./C.E. ... do not presuppose faith in Christ and hence are more appropriate for interfaith dialog than the conventional B.C./A.D.&quot; When the [[People's Republic of China]] abolished the [[Republic of China]] era in [[1949]], it adopted Western years, calling that era ''gōngyuÃĄn'', å…Ŧ元, which literally means Common Era.
79856
79857 === Anno Salutis ===
79858 Anno Salutis (often translated from [[Latin]] as ''in the year of salvation'') is a dating style used up until the eighteenth century, which like Anno Domini dates years from the birth of [[Christ]]. It can be explained in the context of Christian belief, where the birth of Jesus saved mankind from [[eternal damnation]]. It is often used in a more elaborate form such as Anno Nostrae Salutis (''in the year of our salvation''), Anno Salutis Humanae (''in the year of human well-being''), Anno Reparatae Salutis (''in the year of accomplished salvation'').
79859
79860 == Numbering of years ==
79861 Historians do not use a [[year zero]] — AD 1 is the first year or epoch of the Anno Domini era, and 1 BC immediately precedes it as the first year before the epoch. This is a problem with some calculations; so in [[astronomical year numbering]] a zero is added, and the 'AD' and 'BC' are dropped. In keeping with 'standard decimal numbering', a negative sign '−' is added for earlier years, so counting down from year 2 would give 2, 1, 0, −1, −2, and so on. This results in a one-year shift between the two systems (eg −1 equals 2 BC). This article, however, is about the civil usage without a year zero.
79862
79863 == Earlier calendar epochs ==
79864 ''Anno Domini'' dating was not adopted in Western Europe until the eighth century. Like the other inhabitants of the [[Roman Empire]], early Christians used one of several methods to indicate a specific year — and it was not uncommon for more than one to be used in the same document. This redundancy allows historians to construct parallel regnal lists for many kingdoms and polities by comparing chronicles from different regions, which include the same rulers.
79865
79866 ===Consular dating===
79867 The earliest and most common practice was Roman '[[consul]]ar' dating. This involved naming both ''consulares ordinares'' who had been appointed to this office on [[January 1]] of the civil year. Sometimes one or both consuls might not be appointed until November or December of the previous year, and news of the appointment may not have reached parts of the Roman empire for several months into the current year; thus we find the occasional inscription where the year is defined as &quot;after the consulate&quot; of a pair of consuls.
79868
79869 ===Dating from the founding of Rome===
79870 Another method of dating, rarely used, was to indicate the year ''[[ab urbe condita]]'', or &quot;from the foundation of the City&quot; (abbreviated AUC), where &quot;the City&quot; meant [[Rome]]. Several epochs were in use by Roman historians. Modern historians usually adopt the epoch of [[Varro]], which we place in 753 BC.
79871
79872 About AD 400 the Iberian historian [[Orosius]] used the ''ab urbe condita'' era. Pope [[Boniface IV]] (about AD 600) may have been the first to use both the ''ab urbe condita'' era and the ''Anno Domini'' era (he put AD 607 = AUC 1360).
79873
79874 ===Regnal years of Roman emperors===
79875 Another system that is less commonly found than thought was to use the [[regnal year]] of the [[Roman emperor]]. At first, [[Caesar Augustus|Augustus]] would indicate the year of his rule by counting how many times he had held the office of consul, and how many times the [[Roman Senate]] had granted him [[Tribune|Tribunican]] powers, carefully observing the fiction that his powers came from these offices granted to him, rather than from his own person or the many [[legion]]s under his control. His successors followed his practice until the memory of the [[Roman Republic]] faded (late in the second century or early in the third century), when they openly began to use their regnal year.
79876
79877 ===Indiction cycles===
79878 Another common system was to use the [[indiction]] cycle (15 indictions made up an agricultural tax cycle, an indiction being a year in duration). Documents and events began to be dated by the year of the cycle (e.g., &quot;fifth indiction&quot;, &quot;tenth indiction&quot;) in the fourth century, and was used long after the tax was no longer collected. This system was used in [[Gaul]], in [[Egypt]] until the [[History of early Arab Egypt | Islamic conquest]], and in the [[Eastern Roman Empire]] until its conquest in [[1453]].
79879
79880 ===Other dating systems===
79881 A great many local systems or [[era]]s were also important, for example the year from the foundation of one particular city, the regnal year of the neighboring [[History of Persia | Persian emperor]], and eventually even the year of the reigning [[Caliph]]. The beginning of the numbered year also varied from place to place, and was not largely standardized in [[Europe]] (except [[England]]) as [[January 1]] until the sixteenth century. The most important of these include the [[Seleucid era]] (in use until the eighth century), and the [[Spanish era]] (in use in official documents in [[Aragon]], [[Valencia]], and in [[Castile]], into the fourteenth century. In 1422, [[Portugal]] became the last country of [[western Europe]] to adopt the ''Anno Domini'' era).
79882
79883 == History of ''Anno Domini'' ==
79884 Early Christians designated the year via a combination of consular dating, imperial regnal year dating, and Creation dating. Use of consular dating ended when the emperor [[Justinian I]] discontinued appointing consuls in the mid sixth century, shortly after he required that the use of imperial regnal dating. The last consul nominated was [[Anicius Faustus Albinus Basilius]] in 541. The [[papacy]] was in regular contact throughout the [[Middle Ages]] with envoys of the [[Byzantine Empire|Byzantine]] world, and had a clear idea — sudden deaths and deposals notwithstanding — of who was the [[Byzantine emperor]] at any one time.
79885
79886 The ''Anno Domini'' system was developed by a [[Scythia]]n monk named [[Dionysius Exiguus]] in Rome in 525, as an outcome of his work on calculating the [[computus|date of Easter]]. Byzantine chroniclers like [[Theophanes]] continued to date each year in their world chronicles on a different Judaeo-Christian basis — from the notional [[Creation (theology)|creation]] of the World as calculated by Christian scholars in the first five centuries of the Christian era. These eras, sometimes called ''[[Anno Mundi]]'', &quot;year of the world&quot; (abbreviated AM), by modern scholars, had their own disagreements. No single Anno Mundi epoch was dominant. One popular formulation was that established by [[Eusebius of Caesarea]], a historian at the time of [[Constantine I of the Roman Empire|Constantine I]]. The [[Latin]] translator [[Jerome]] helped popularize Eusebius's AM count in the West. Another formulation, dominant in the East during the early centuries of the Byzantine Empire, was developed by the [[Alexandria]]n monk [[Anninus of Alexandria|Anninus]].
79887
79888 === Accuracy===
79889 Almost all [[Biblical]] scholars believe that Dionysius was incorrect in his calculation, and that the date claimed for Jesus' birth was between 8 BC and 4 BC. The birth of Christ is known to have preceded the death of [[Herod the Great]] which occurred in 4 BC according to [[Johannes Kepler|Kepler]].
79890
79891 === Popularization ===
79892 The first historian or chronicler to use Anno Domini as his primary dating mechanism was [[Victor of Tonnenna]], an African chronicler of the seventh century. A few generations later, the [[Anglo-Saxon]] historian [[Bede]], who was familiar with the work of Dionysius, also used Anno Domini dating in his ''Ecclesiastical History of the English People,'' finished in 731. In this same history, he was the first to use the Latin equivalent of ''before Christ'' and established the standard for historians of no [[year zero]], even though he used zero in his [[computus]]. Both Dionysius and Bede regarded Anno Domini as beginning at the incarnation, or conception, of Jesus, not his birth approximately nine months later (''[[Annunciation]] style'').
79893
79894 On the continent of [[Europe]], Anno Domini was introduced as the era of choice of the [[Carolingian Renaissance]] by [[Alcuin]]. This endorsement by [[Charlemagne]] and [[List of Frankish Kings | his successors]] popularizing the usage of the epoch and spreading it throughout the [[Carolingian Empire]] ultimately lies at the core of the system's prevalence until present times.
79895
79896 Outside the Carolingian Empire, Spain continued to date by the [[Era of the Caesars]], or [[Spanish Era]], well into the Middle Ages, which counted beginning with 38 BC. The [[Era of Martyrs]], which numbered years from the accession of [[Diocletian]] in [[284]], who launched the last yet most severe persecution of Christians, prevailed in the East and is still used officially by the [[Coptic Christianity|Coptic]] and used to be used by the [[Tewahedo Church|Ethiopian]] church. Another system was to date from the [[crucifixion]] of Jesus Christ, which as early as [[Hippolytus (writer)|Hippolytus]] and [[Tertullian]] was believed to have occurred in the consulate of the Gemini (AD 29), which appears in the occasional medieval manuscript.
79897
79898 Even though Anno Domini was in widespread use by the ninth century, Before Christ (or its equivalent) did not become widespread until the late fifteenth century.
79899
79900 == Other eras in official use ==
79901 Some other eras were in official use in [[Modern Europe|modern times]] or are still in use in several countries alongside the current international Anno Domini era.
79902 === European attempts ===
79903 * The [[French Revolution]] seriously attempted to displace the Anno Domini system by instead dating from 22 September 1792 = 1 vendÊmiaire an I (''an'' means year in [[French language|French]]) of the [[First French Republic]]. (''see'' [[French Revolutionary Calendar]]). NapolÊon finally abolished the calendar effective [[1 January]] [[1806]], the day after 10 nivôse an XIV.
79904 * The [[Fascism|Italian Fascists]] used the standard system along with [[Roman numerals]] to denote the number of years since the establishment of the Fascist government in [[1922]]. Therefore, 1934, for example, was Year XII. This era was abolished with the fall of fascism in Italy on [[July 25]], [[1943]]. &lt;br&gt; ''Both attempts ultimately failed to replace the standard calendar.''
79905
79906 === Asian national eras ===
79907 * The official [[Japanese era name|Japanese system]] numbers years from the accession of the current [[Emperor of Japan|emperor]], regarding the calendar year during which the accession occurred as the first year.
79908 * It is still very common in [[Taiwan]] to date events via the [[Republic of China]] era, whose first year is [[1912]].
79909 * [[North Korea]] uses a system that starts in 1912 (= [[Juche]] 1), the year of the birth of their founder [[Kim Il-Sung]]. The year 2004 was &quot;Juche 93&quot;. ''Juche'' means ''&quot;[[autarchy]], self-reliance&quot;''.
79910 * In [[Thailand]] in 1888 King [[Chulalongkorn]] decreed a National Thai Era since founding of [[Bangkok]] on 1782, April 6. In 1912 the New Year's Day was shifted to April 1. In [[1941]], the Prime Ministre [[Phibunsongkhram]] decided to count the years since B.C. 543. This is the so-called [[Thai solar calendar]] or Thailand Buddhist Era clearly relied on the western solar calendar. This is one of the versions of the [[Buddhist calendar]].
79911
79912 === Religious eras ===
79913 * In [[Israel]], the traditional [[Hebrew calendar]], using an era [[Anno mundi|dating from Creation]], is in official use.
79914 * In the [[Islam]]ic world, traditional [[Islamic calendar|Islamic dating]] according to the ''Anno HegirÃĻ'' (in the year of the ''[[Hijra (Islam)|hijra]]'') era remains in use to a varying extent, especially for religious purposes.
79915
79916 ==See also==
79917 {{wiktionarypar2|AD|Anno Domini}}
79918
79919 * [[Calendar]]
79920 * [[Calendar era]]
79921 * [[Chronology]]
79922
79923 ==References==
79924 * {{cite book
79925 | last = Declercq | first = Georges
79926 | title = Anno Domini: The origins of the Christian era
79927 | location = Turnhout
79928 | publisher = Brepols
79929 | year = 2000
79930 | id = ISBN 2503510507
79931 }} (despite beginning with 2, it is English)
79932 * ———. &quot;Dionysius Exiguus and the Introduction of the Christian Era&quot;. ''Sacris Erudiri'' 41 (2002): 165–246. An annotated version of part of ''Anno Domini''.
79933 * {{cite book
79934 | last = Richards | first = E. G.
79935 | title = Mapping Time
79936 | location = Oxford
79937 | publisher = Oxford University Press
79938 | year = 2000
79939 | id = ISBN 0192862057
79940 }}
79941 * {{cite web
79942 | author = John Riggs
79943 | year = January-February 2003
79944 | url = http://www.ucc.org/ucnews/jan03/asiseeit.htm
79945 | title = Whatever happened to B.C. and A.D., and why?
79946 | publisher =United Church News
79947 | accessdate = December 19
79948 | accessyear = 2005
79949 }}
79950 * {{cite book
79951 | author = Philip A Cunningham
79952 | coauthors = Arthur F Starr
79953 | year = 1998
79954 | title = Sharing Shalom: A Process for Local Interfaith Dialogue Between Christians and Jews
79955 | publisher = Paulist Press
79956 | id = ISBN 0809138352
79957 }}
79958
79959 == Note ==
79960 * {{note|gregorian}} [1] The mean year of the Gregorian calendar is 365.2425 days. This approximated the mean tropical year more than five millennia ago. The real (mean) [[tropical year]] is now very close to 365.2421875 days i.e. 27s/year shorter. However, relative to the [[vernal equinox]] year, important for the determination of the date of Christian [[Easter]], the older [[Aloysius Lilius|Lilius]] definition of the year is and will be a very good value. The ''vernal equinox year'' and the ''mean tropical year'' have falsely been seen as identical even by many erudite persons of the 20th century.
79961 * The approximation of the year in the old [[Persian calendar]] attributed to [[Omar KhayyÃĄm]] is 365.24&lt;font style=&quot;text-decoration: overline&quot;&gt;24&lt;/font&gt; days, which is very close to the vernal equinox year, but requires a 33-year cycle.
79962 * The definition of [[Milutin Milanković]], used in the &quot;[[revised Julian calendar]]&quot;, is 365.24&lt;font style=&quot;text-decoration: overline&quot;&gt;22&lt;/font&gt; days, which is very close to the mean tropical year, but uses unequal long-period cycles.
79963
79964 ==External links==
79965 *[http://www.newadvent.org/cathen/03738a.htm ''The Catholic Encyclopedia,'' s.v. &quot;General Chronology&quot;]
79966
79967 {{featured article}}
79968
79969 [[Category:Calendars]]
79970 [[Category:Christian history]]
79971 [[Category:Chronology]]
79972 [[Category:Latin religious phrases]]
79973
79974 [[da:Anno Domini]]
79975 [[de:Anno Domini]]
79976 [[el:M.X.]]
79977 [[es:Era cristiana]]
79978 [[fi:Jälkeen Kristuksen]]
79979 [[fr:Anno Domini]]
79980 [[ga:Anno_Domini]]
79981 [[he:ספיר×Ē הנו×Ļרים]]
79982 [[ja:čĨŋæšĻ]]
79983 [[la:Anno Domini]]
79984 [[nl:Anno Domini]]
79985 [[pl:N.e.]]
79986 [[pt:A.C.]]
79987 [[sw:Baada ya Kristo]]
79988 [[th:ā¸„ā¸Ŗā¸´ā¸Ēā¸•āšŒā¸¨ā¸ąā¸ā¸Ŗā¸˛ā¸Š]]
79989 [[vi:Công NguyÃĒn]]
79990 [[zh:å…Ŧ元]]</text>
79991 </revision>
79992 </page>
79993 <page>
79994 <title>AV</title>
79995 <id>1404</id>
79996 <revision>
79997 <id>41960714</id>
79998 <timestamp>2006-03-02T22:16:40Z</timestamp>
79999 <contributor>
80000 <username>McCart42</username>
80001 <id>71251</id>
80002 </contributor>
80003 <minor />
80004 <comment>add approval voting</comment>
80005 <text xml:space="preserve">'''AV''' may mean:
80006 *Adult video, see [[Pornography]]
80007 *[[AltaVista]], a search engine
80008 *[[Alterac Valley]], a [[player versus player]] [[instance dungeon]] in the [[MMORPG]] ''[[World of Warcraft]]''
80009 *Alternative Vote, see [[Instant-runoff voting]]
80010 *[[Angela Via]], a singer
80011 *[[Anguilla]] ([[List of FIPS country codes|FIPS 10-4 code]] and obsolete [[NATO country code|NATO digram]])
80012 *[[Antelope Valley]], a desert region of northern [[Los Angeles County, California]], in the [[United States|US]]
80013 *Anti-virus, see [[Anti-virus software]]
80014 *[[Artificial vagina]], a sex-toy
80015 *[[Audio-visual]], see [[Video]]
80016 *Authorised Version or [[King James Version of the Bible]]
80017 *[[Avatar (virtual reality)]], a representation of a user in virtual reality
80018 *Avenue, see [[Road]] ('''Ave.''' is more frequent)
80019 *[[Average]]
80020 *[[Avianca]]; AV is the [[IATA]] code for this airline
80021 *[[Arcade Volleyball]], an [[MS-DOS]] [[Computer and video games|computer game]]
80022 *[[Approval Voting]]
80023
80024 '''Av''' may mean:
80025 * [[Av (month)|Av]], a month in the Hebrew calendar
80026
80027 '''aV''' may mean:
80028 *[[atto]][[volt]], an SI unit of electromotive force
80029
80030 '''av''' may mean:
80031 *[[Avar language]]; [[ISO 639-1]] code for this language
80032
80033 {{2LCdisambig}}
80034
80035 [[de:AV]]
80036 [[ko:AV]]
80037 [[it:Av]]
80038 [[ja:AV]]
80039 [[sl:AV]]
80040 [[zh:AV]]</text>
80041 </revision>
80042 </page>
80043 <page>
80044 <title>Amino group</title>
80045 <id>1406</id>
80046 <revision>
80047 <id>40631827</id>
80048 <timestamp>2006-02-21T23:19:16Z</timestamp>
80049 <contributor>
80050 <username>Hede2000</username>
80051 <id>284384</id>
80052 </contributor>
80053 <minor />
80054 <comment>+da:</comment>
80055 <text xml:space="preserve">In [[chemistry]], especially in [[organic chemistry]] and [[biochemistry]], an '''amino group''' is an [[ammonia]]-like [[functional group]] composed of a [[nitrogen]] and two [[hydrogen]] atoms covalently linked.
80056
80057 :-{{nitrogen}}{{hydrogen}}&lt;sub&gt;2&lt;/sub&gt;
80058
80059 It is a basic functional group that can give the [[free electron pair]] of the nitrogen atom to the proton of an [[acid]]. In this process, it becomes positively charged.
80060
80061 A compound containing an amino group is called an [[amine]].
80062
80063 ==See also==
80064 * [[Amino acid]]
80065 * [[Amino Communications]]
80066 * [[Amino Software]]
80067
80068 {{organic-compound-stub}}
80069
80070 [[Category:Functional groups]]
80071
80072
80073 [[ca:Grup amino]]
80074 [[da:Amin]]
80075 [[de:Aminogruppe]]
80076 [[es:Grupo amino]]
80077 [[eo:Aminogrupo]]
80078 [[ja:&amp;#12450;&amp;#12511;&amp;#12494;&amp;#22522;]]
80079 [[ko:ė•„ë¯¸ë…¸ę¸°]]
80080 [[pl:Grupa aminowa]]
80081 [[ru:АĐŧиĐŊĐžĐŗŅ€ŅƒĐŋĐŋĐ°]]</text>
80082 </revision>
80083 </page>
80084 <page>
80085 <title>Antony van Leeuwenhook</title>
80086 <id>1407</id>
80087 <revision>
80088 <id>15899892</id>
80089 <timestamp>2002-10-09T13:59:00Z</timestamp>
80090 <contributor>
80091 <username>Magnus Manske</username>
80092 <id>4</id>
80093 </contributor>
80094 <minor />
80095 <comment>#REDIRECT [[Anton van Leeuwenhoek]]</comment>
80096 <text xml:space="preserve">#REDIRECT [[Anton van Leeuwenhoek]]</text>
80097 </revision>
80098 </page>
80099 <page>
80100 <title>Alcuin</title>
80101 <id>1408</id>
80102 <revision>
80103 <id>40414027</id>
80104 <timestamp>2006-02-20T10:30:52Z</timestamp>
80105 <contributor>
80106 <username>Xareu bs</username>
80107 <id>380341</id>
80108 </contributor>
80109 <text xml:space="preserve">[[Image:Raban-Maur Alcuin Otgar.jpg|thumb|[[Rabanus Maurus]] (left), supported by Alcuin (middle), presents his work to Otgar of Mainz ]]
80110
80111 '''Flaccus Albinus Alcuinus''' or '''Ealhwine''' (c. [[735]]-[[May 19]], [[804]]) was a [[Monasticism|monk]] from [[York, England]]. He was related to [[Willibrord]], [[Anglo-Saxon]] [[missionary]] to the [[Frisian]]s and the first [[bishop of Utrecht]], whose biography he afterwards wrote.
80112
80113 Alcuin of York had a long career as a teacher and scholar first at the school at York (now known as St Peters School, York, founded AD [[627]]) and lastly as [[Charlemagne]]'s leading advisor on ecclesiastical and educational affairs. From [[796]] until his death he was [[abbot]] of the great [[monastery]] of [[Martin of Tours|St. Martin of Tours]].
80114
80115 He was educated at the cathedral school of York, under the celebrated master [[Ethelbert of York]], with whom he also went to [[Rome]] seeking [[manuscript]]s. When [[Ethelbert]] was appointed [[Archbishop of York]] in [[766]], Alcuin succeeded him in the headship of the episcopal school. He again went to [[Rome]] in [[780]], to fetch the ''[[pallium]]'' for Archbishop [[Eanbald I of York]], and at [[Parma]] met Charlemagne. Charlemagne persuaded him to come to his court and gave him the possession of the great abbeys of [[Ferrieres]] and [[Saint-Loup]] at [[Troyes]].
80116
80117 From [[782]] to [[790]], Alcuin had as pupils the king of the Franks, his kinsmen, the young men sent for their education to the court, and the young [[cleric]]s attached to the palace chapel; he was the life and soul of the Academy of the palace, and we have still, in the ''Dialogue of Pepin (son of Charlemagne) and Alcuin'', a sample of the intellectual exercises in which they indulged. One surviving tool of the drive to reform [[education]] is Charlemagne's circular letter ''De Litteris Colendis'', &quot;On the Study of Letters&quot;, which Alcuin wrote.
80118
80119 In [[790]] Alcuin went back to England, to which he had always been greatly attached, and dwelt there for some time; but Charlemagne invited him back to help in the fight against the [[Adoptionism|Adoptionist]] [[heresy]], which was at that time making great progress in Toledo [[Spain]], the old capital town of the [[Visigoths]] and still a major city for the Christians under Islamic rule in Spain. He is believed to have had contacts with [[Beato de LiÊbana]], from the [[Kingdom of Asturias]], who fighted against Adoptionism. At the [[Council of Frankfurt]] in [[794]], Alcuin upheld the [[orthodox]] doctrine, and obtained the condemnation of the ''heresiarch'' [[Felix of Urgel]]. After this victory he again went back to England, but on account of the disturbances which broke out there, and which led to the death of King [[Ethelred]] ([[796]]), he left it forever. Charlemagne had given him the great abbey of St. Martin at Tours, where he was to pass his last years.
80120
80121 He made the abbey school into a model of excellence, and many students flocked to it; he had many manuscripts copied, the [[calligraphy]] of which is of outstanding beauty. He wrote many letters to his friends in England, to [[Arno, bishop of Salzburg]], and above all to Charlemagne. These letters, of which 311 are extant, are filled mainly with pious meditations, but they further form a mine of information as to the literary and social conditions of the time, and are the most reliable authority for the history of [[humanism]] in the [[Carolingian]] age. He also trained the numerous monks of the abbey in piety, and it was in the midst of these pursuits that he died.
80122
80123 Alcuin is the most prominent figure of the [[Carolingian Renaissance]], in which three main periods have been distinguished: in the first of these, up to the arrival of Alcuin at the court, the [[Italy|Italian]]s occupy the central place; in the second, Alcuin and the Anglo-Saxons are dominant; in the third, which begins in [[804]], the influence of the [[Visigoth]] [[Theodulf]] is preponderant.
80124
80125 Alcuin transmitted to the [[Franks]] the knowledge of Latin culture which had existed in England. We still have a number of his works. His letters have already been mentioned; his [[poetry]] is equally interesting. Besides some graceful epistles in the style of [[Fortunatus]], he wrote some long poems, and notably a whole history in verse of the church at York: ''Versus de patribus, regibus et sanctis Eboracensis ecclesiae''.
80126
80127 We owe to him, too, some manuals used in his educational work; a [[grammar]] and works on [[rhetoric]] and [[dialectics]]. They are written in the form of [[dialogue]]s, and in the two last the interlocutors are Charlemagne and Alcuin. He also wrote several [[theological]] treatises: a ''De fide Trinitatis'', commentaries on the [[Bible]], etc.
80128
80129 [[Alcuin College]], part of the [[University of York]], is named after him.
80130
80131 == Further reading ==
80132 *''Alcuin and the Rise of the Christian Schools'' by Andrew Fleming West ISBN 083711635X
80133
80134 ==External links==
80135
80136 * {{MacTutor Biography|id=Alcuin}}
80137
80138 {{wikiquote}}
80139
80140 [[Category:804 deaths]]
80141 [[Category:Middle Ages]]
80142 [[Category:English theologians]]
80143 [[Category:Anglo-Saxon people]]
80144 [[Category:Roman Catholic monks]]
80145
80146 [[bg:АĐģĐēŅƒĐ¸ĐŊ]]
80147 [[da:Alcuin]]
80148 [[de:Alkuin]]
80149 [[es:Alcuino de York]]
80150 [[fr:Alcuin]]
80151 [[gl:Alcuino de York]]
80152 [[nl:Alcuinus]]
80153 [[ja:ã‚ĸãƒĢクã‚Ŗãƒŗ]]
80154 [[pl:Alkuin]]
80155 [[pt:Alcuíno de Iorque]]
80156 [[sk:Alcuin]]
80157 [[fi:Alkuin]]
80158 [[uk:АĐģĐēŅƒŅ–ĐŊ]]</text>
80159 </revision>
80160 </page>
80161 <page>
80162 <title>Angilbert</title>
80163 <id>1409</id>
80164 <revision>
80165 <id>41299126</id>
80166 <timestamp>2006-02-26T10:48:18Z</timestamp>
80167 <contributor>
80168 <username>Chris93</username>
80169 <id>399696</id>
80170 </contributor>
80171 <minor />
80172 <text xml:space="preserve">'''Angilbert,''' (died [[February 18]], [[814]]), was a [[Franks|Frank]] who served [[Charlemagne]] as a diplomat, abbot, and semi-son-in-law.
80173
80174 He was of noble Frankish parentage, and educated at the palace school under [[Alcuin]].
80175
80176 When Charlemagne sent his young son [[Pepin of Italy|Pepin]] to Italy as King of the [[Lombards]] Angilbert went along as ''primicerius palatii,'' a high administrator of the satellite court. As the friend and adviser of Pepin, he assisted for a while in the government of Italy. Angilbert delivered the document on [[Iconoclasm]] from the Frankish Synod of Frankfurt to [[Pope Adrian I]], and was later sent on three important embassies to the pope, in 792, 794 and 796.
80177
80178 In [[790]] he was named abbot of Saint-Riquier in northern France (often called by its Roman name, Centula), where his brilliant rule gained for him later the renown of a saint. It was not uncommon for the [[Merovingian]], [[Carolingian]], or later kings to make laymen abbots of monasteries; the layman would often use the income of the monastery as his own and leave the monks a bare minimum for the necessary expenses of the foundation. Angilbert, in contrast, spent a great deal rebuilding Saint-Riquier, and when he completed it Charlemagne spent Easter of the year 800 there.
80179
80180 Angilbert's non-sacramental relationship with Bertha was evidently recognized by the court - if she had not been the daughter of the King historians might refer to her as his ''concubine.'' They had at least two sons, one of whom, [[Nithard]], became a notable figure in the mid-9th century. Control of [[marriage]] and the meanings of legitimacy were hotly contested in the [[Middle Ages]]. Bertha and Angilbert are an example of how resistance to the idea of a sacramental marriage could coincide with holding church offices.
80181
80182 His poems reveal the culture and tastes of a man of the world, enjoying the closest intimacy with the imperial family. He accompanied Charlemagne to Rome in 800 and was one of the witnesses to his will in 814. Angilbert was the [[Homer]] of the emperor's literary circle, and was the probable author of an [[epic poetry|epic]], of which the fragment which has been preserved describes the life at the palace and the meeting between Charlemagne and Leo III. It is a mosaic from [[Virgil]], [[Ovid]], [[Lucan]] and [[Fortunatus]], composed in the manner of Einhard's use of Suetonius, and exhibits a true poetic gift. Of the shorter poems, besides the greeting to Pippin on his return from the campaign against the [[Avars]] (796), an epistle to David (Charlemagne) incidentally reveals a delightful picture of the poet living with his children in a house surrounded by pleasant gardens near the emperor's palace. The reference to Bertha, however, is distant and respectful, her name occurring merely on the list of princesses to whom he sends his salutation.
80183
80184 Angilbert's poems have been published by [[E. Dummler]] in the ''[[Monumenta Germaniae Historica]]''. For criticisms of this edition see [[Traube]] in ''Roederer's Schriften fÃŧr germanische Philologie'' (1888). See also [[A. Molinier]], ''Les Sources de l'histoire de France''.
80185
80186 {{1911}}
80187
80188 [[Category:Frankish people]]
80189 [[Category:814 deaths]]
80190
80191
80192 [[de:Angilbert]]
80193 [[fr:Saint Angilbert]]</text>
80194 </revision>
80195 </page>
80196 <page>
80197 <title>Antony van Leeuwenhoek</title>
80198 <id>1410</id>
80199 <revision>
80200 <id>15899895</id>
80201 <timestamp>2002-10-09T13:59:20Z</timestamp>
80202 <contributor>
80203 <username>Magnus Manske</username>
80204 <id>4</id>
80205 </contributor>
80206 <minor />
80207 <comment> #REDIRECT [[Anton van Leeuwenhoek]]</comment>
80208 <text xml:space="preserve">#REDIRECT [[Anton van Leeuwenhoek]]</text>
80209 </revision>
80210 </page>
80211 <page>
80212 <title>Amine</title>
80213 <id>1412</id>
80214 <revision>
80215 <id>42095651</id>
80216 <timestamp>2006-03-03T20:19:42Z</timestamp>
80217 <contributor>
80218 <username>V8rik</username>
80219 <id>195918</id>
80220 </contributor>
80221 <comment>By [[organic oxidation|oxidation]] to [[nitroso]] compounds, for instance [[Peroxymonosulfuric acid]].</comment>
80222 <text xml:space="preserve">[[image:ammonia.png|frame|Ammonia]]
80223 '''Amines''' are [[organic compound]]s and a type of [[functional group]] that contain [[nitrogen]] as the key atom. Structurally amines resemble [[ammonia]], wherein one or more [[hydrogen]] atoms are replaced by organic [[substituent]]s such as [[alkyl]] and [[aryl]] groups. An important exception to this rule is that compounds of the type RC(O)NR&lt;sub&gt;2&lt;/sub&gt;, where the C(O) refers to a [[carbonyl group]], are called [[amide]]s rather than amines. Amides and amines have different structures and properties, so the distinction is chemically important. Somewhat confusing is the fact that amines wherein an N-H group has been replaced by an N-M group (M = metal) are also called amides. Thus (CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;NLi is lithium dimethylamide.
80224
80225 See the [[:Category:Amines]] for a list of types of amine and some real examples of this class of chemical.
80226
80227 ==Introduction==
80228 ===Aliphatic Amines===
80229 As displayed in the images below, '''primary amines''' arise when one of three hydrogen atoms in ammonia is replaced by an organic substituent. '''Secondary amines''' have two organic substituents bound to N together with one H. In '''tertiary amines''' all three hydrogen atoms are replaced by organic substituents. Note: the subscripts on the '''R''' groups are simply used to differentiate the organic substituents &lt;!--superscripts are preferred--&gt;. However, the number subscripts on the H atoms show how many H atoms there are in that group.
80230 {| border=&quot;0&quot; spacing=&quot;5&quot; align=&quot;center&quot;
80231 |- valign=&quot;top&quot;
80232 | '''Primary Amine:'''&lt;br /&gt;[[image:amina1.png|75px|primary amine]]
80233 | '''Secondary Amine:'''&lt;br /&gt;[[image:amina2.png|75px|secondary amine]]
80234 | '''Tertiary Amine:'''&lt;br /&gt;[[image:amina3.png|75px|tertiary amine]]
80235 |}
80236
80237 Similarly, an organic compound with multiple amino groups is called a '''diamine''' , '''triamine''', '''tetraamine''' and so forth.
80238
80239 ===Aromatic amines===
80240 Aromatic amines have the nitrogen atom connected to an [[aromatic]] ring as in [[aniline]]s. The aromatic ring strongly decreases the [[base (chemistry)|basicity]] of the amine, depending on its substituents. Interestingly, the presence of an amine group strongly increases the reactivity of the aromatic ring, due to an electron-donating affect. One [[organic reaction]] involving aromatic amines is the [[Goldberg reaction]].
80241
80242 ==Naming conventions==
80243 * the prefix &quot;N-&quot; shows substitution on the nitrogen atom (in the case of secondary, tertiary and quaternary amines)
80244 * as prefix: &quot;amino-&quot;
80245 * as suffix: &quot;-amine&quot;
80246 * remember that chemical compounds are not proper nouns, so lower case is indicated throughout.
80247 Systematic names for some common amines:
80248 {| border=&quot;0&quot; align=&quot;center&quot; spacing=&quot;5&quot;
80249 |- valign=&quot;top&quot; align=&quot;center&quot;
80250 | Lower amines are named with the suffix ''-amine''.&lt;br /&gt;
80251 [[image:methylamine.png|100px]]&lt;br /&gt;
80252 '''methylamine'''
80253 | Higher amines have the prefix ''amino'' as a functional group.&lt;br /&gt;
80254 [[image:2-amino-pentane.png|150px]]&lt;br /&gt;
80255 '''2-aminopentane'''&lt;br/&gt;(or sometimes: ''pent-2-yl-amine'' or ''pentane-2-amine'')
80256 |}
80257
80258 *Primary amines: 2-aminoethanol or [[ethanolamine]]
80259 *Secondary amines: [[dimethylamine]]
80260 *Tertiary amines: [[trimethylamine]]
80261
80262 ==Physical properties==
80263 ===General properties===
80264 * 1. [[Hydrogen bonding]] significantly influences the properties of primary and secondary amines as well as the protonated derivatives of all amines. Thus the [[boiling point]] of amines is higher than those for the corresponding [[phosphine]]s, but generally lower than the corresponding [[alcohol]]s. Alcohols, or alkanols, resemble amines but feature an -OH group in place of NR&lt;sub&gt;2&lt;/sub&gt;. Since oxygen is more [[electronegative]] than nitrogen, RO-''H'' is typically more acidic than the related R&lt;sub&gt;2&lt;/sub&gt;N-''H'' compound.
80265 * 2. Methyl, dimethyl, trimethyl, and ethyl amines are gases under standard conditions. Most common alkyl amines are liquids; high [[molecular weight]] amines are, of course, solids.
80266 * 3. Gaseous amines possess a characteristic ammonia smell, liquid amines have a distinctive &quot;fishy&quot; smell.
80267 * 4. Most aliphatic amines display some solubility in water, reflecting their ability to form hydrogen bonds. Solubility decreases with the increase in the number of carbon atoms, especially when the carbon atom number is greater than 6.
80268 * 5. Aliphatic amines display significant solubility in organic [[solvent]]s, especially polar organic solvents. Primary amines react with [[ketone]]s such as [[acetone]], and most amines are incompatible with [[chloroform]] and [[carbon tetrachloride]].
80269 * 6. The aromatic amines have their lone pair electrons [[conjugated system|conjugated]] into the benzene ring, thus their tendency to engage in hydrogen bonding is diminished. Otherwise they display the following properties:
80270 ** Their boiling points are usually still high &lt;!--&quot;higher&quot;: than what?--&gt;due to their larger size.
80271 ** Diminished solubility in water, although they retain their solubitity in suitable organic solvents only.
80272 ** They are toxic &lt;!-- which one has: b.p.184 C?--&gt; and are easily absorbed through the skin: thus hazardous.
80273 [[Image:Inversion_of_Amine.PNG|200px|right|amine inversion]]
80274
80275 === Chirality===
80276 Tertiary amines of the type NHRR' and NRR'R&quot; are [[optical isomer|chiral]]: the nitrogen atom bears four distinct substituents counting the lone pair. The energy barrier for the [[Walden inversion|inversion]] of the stereocenter is relatively low, e.g. ~7 kcal/mol for a trialkylamine. The interconversion of the stereoisomers has been compared to the inversion of an open umbrella in to a strong wind. Because of this low barrier, amines such as NHRR' cannot be resolved optically and NRR'R&quot; can only be resolved when the R, R', and R&quot; groups are constrained in cyclic structures.
80277
80278 ===Properties as bases===
80279 Like ammonia, amines act as [[base (chemistry)|bases]] and are reasonably strong (see table for examples of [[conjugate acid]] K&lt;sub&gt;a&lt;/sub&gt; values). The basicity of amines depends on:
80280 #The availability of lone pair on N.
80281 #The electronic properties of the substituents (alkyl groups enhance the basicity, aryl groups diminish it).
80282 #The degree of solvation of the protonated amine.
80283
80284 The nitrogen atom features a [[lone electron pair]] that can bind H&lt;sup&gt;+&lt;/sup&gt; to form an [[ammonium ion]] R&lt;sub&gt;3&lt;/sub&gt;NH&lt;sup&gt;+&lt;/sup&gt;. The lone electron pair is represented in this article by a two dots above or next to the N. The water [[solubility]] of simple amines is largely due to [[hydrogen bonding]] between protons on the water molecules and these lone electron pairs.
80285
80286 * [[Inductive effect]] of alkyl groups
80287 {| class=&quot;toccolours&quot; style=&quot;float: center; border-collapse: collapse; margin: 0em 1em;&quot; border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
80288 ! Ions of compound
80289 ! K&lt;sub&gt;b&lt;/sub&gt;
80290 |-
80291 | [[Ammonia]] NH&lt;sub&gt;3&lt;/sub&gt;
80292 | 1.8&amp;middot;10&lt;sup&gt;-5&lt;/sup&gt; M
80293 |-
80294 | [[Methylamine]] CH&lt;sub&gt;3&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
80295 | 4.4&amp;middot;10&lt;sup&gt;-4&lt;/sup&gt; M
80296 |-
80297 | [[propylamine]] CH&lt;sub&gt;3&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
80298 | 4.7&amp;middot;10&lt;sup&gt;-4&lt;/sup&gt; M
80299 |-
80300 | [[2-propylamine]] (CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;CHNH&lt;sub&gt;2&lt;/sub&gt;
80301 | 5.3&amp;middot;10&lt;sup&gt;-4&lt;/sup&gt; M
80302 |-
80303 | [[diethylamine]] (CH&lt;sub&gt;3&lt;/sub&gt;)&lt;sub&gt;2&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
80304 | 9.6&amp;middot;10&lt;sup&gt;-4&lt;/sup&gt; M
80305 |}
80306
80307 : +I effect of alkyl groups raises the energy of the lone pair of electrons, thus elevating the basicity.
80308
80309 * [[Mesomeric effect]] of aromatic systems
80310
80311 {| class=&quot;toccolours&quot; style=&quot;float: center; border-collapse: collapse; margin: 0em 1em;&quot; border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
80312 ! Ions of compound
80313 ! K&lt;sub&gt;b&lt;/sub&gt;
80314 |-
80315 | [[Ammonia]] NH&lt;sub&gt;3&lt;/sub&gt;
80316 | 1.8&amp;middot;10&lt;sup&gt;-5&lt;/sup&gt; M
80317 |-
80318 | [[Aniline]] C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;5&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
80319 | 3.8&amp;middot;10&lt;sup&gt;-10&lt;/sup&gt; M
80320 |-
80321 | [[4-methylphenylamine]] 4-CH&lt;sub&gt;3&lt;/sub&gt;C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;4&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;
80322 | 1.2&amp;middot;10&lt;sup&gt;-9&lt;/sup&gt; M
80323 |}
80324 : +M effect of aromatic ring delocalise the lone pair electron into the ring, resulting in decreased bascitiy.
80325
80326 The degree of protonation of protonated amines:
80327
80328 {| class=&quot;toccolours&quot; style=&quot;float: center; border-collapse: collapse; margin: 0em 1em;&quot; border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;
80329 ! Ions of compound
80330 ! Maximum number of H-bond
80331 |-
80332 | NH&lt;sub&gt;4&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;
80333 | 4 Very Soluble in H&lt;sub&gt;2&lt;/sub&gt;O
80334 |-
80335 | RNH&lt;sub&gt;3&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;
80336 | 3
80337 |-
80338 | R&lt;sub&gt;2&lt;/sub&gt;NH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt;
80339 | 2
80340 |-
80341 | R&lt;sub&gt;3&lt;/sub&gt;NH&lt;sup&gt;+&lt;/sup&gt;
80342 | 1 Least Soluble in H&lt;sub&gt;2&lt;/sub&gt;O
80343 |}
80344 &lt;!-- the following statement is incorrect or excessively vague: &quot;Protonated ammonia is heavily solvated, making the cation most stable.&quot;--&gt;
80345
80346 == Synthesis ==
80347 The following laboratory methods exist for the preparation of amines:
80348 * via the [[Gabriel synthesis]]:
80349 [[Image:Gabriel Synthesis Scheme.png|500px|center|The Gabriel synthesis]]
80350 * via [[azide]]s by the [[Staudinger reduction]].
80351 * [[Allyl]]ic amines can be prepared from [[imine]]s in the [[Aza-Baylis-Hillman reaction]].
80352 * via [[Hofmann rearrangement|Hoffmann degradation]] of amides.This reaction is valid for preparation of primary amines only. Gives good yields of primary amines uncontaminated with other amines.
80353 :[[Image:Hofmann Rearrangement Scheme.png|center|400px|The Hofmann rearrangment]]
80354 * Hoffmann elimination of quaternary ammonium salts
80355 :::R&lt;sub&gt;3&lt;/sub&gt;N&lt;sup&gt;+&lt;/sup&gt;CH&lt;sub&gt;2&lt;sub&gt;CH&lt;sub&gt;2&lt;/sub&gt;R' + OH&lt;sup&gt;-&lt;/sup&gt; &amp;rarr; R&lt;sub&gt;3&lt;/sub&gt;N + H&lt;sub&gt;2&lt;sub&gt;C=CHR' + H&lt;sub&gt;2&lt;sub&gt;O
80356 * [[Quaternary ammonium salt]]s upon treatment with strong base undergo the so-called [[Hofmann Elimination]]
80357 * Reduction of nitriles and amides
80358 [[Image:Nitrile.gif|center|Nitriles]]
80359 * [[Nitrile]]s are reduced to amines using hydrogen in the presence a nickel catalyst, although acidic or alkaline conditions should be avoided to avoid hydrolysis of -CN group.
80360 * LiAlH&lt;sub&gt;4&lt;/sub&gt; is more commonly employed for the reduction of nitriles on the laboratory scale.
80361 &lt;center&gt;[[Image:Reduction-of-amide.gif]]&lt;/center&gt;
80362 * Similarly, LiAlH&lt;sub&gt;4&lt;/sub&gt; reduces amides to amines.
80363 * Nucleophilic substitution of haloalkanes. Primary amines can also be synthesized by alkylaton of ammonia.[[halogenoalkane|Haloalkane]]s react with amines to give a corresponding alkyl-substituted amine, with the release of a halogen acid. Such reactions, which are most useful for alkyl iodides and bromides, are rarely employed because the degree of alkylation is difficult to control. If the reacting amine is tertiary, a [[quaternary ammonium cation]] results. Many [[quaternary ammonium salt]]s can be prepared by this route with diverse R groups and many halide and pseudohalide anions.
80364
80365
80366 [[Image:Alkylation_of_Amine.PNG|center|Amine alkylation]]
80367
80368
80369 [[Image:Formation_of_Quat.PNG|center|Amine alkylation]]
80370
80371
80372 == Reactions ==
80373 Amines react in a variety of ways:
80374 * By [[nucleophilic acyl substitution]]. [[Acyl chloride]]s and [[acid anhydride]]s react with primary and secondary amines in cold to form [[amide]]s. Tertiary amines cannot be acylated due to the absence of a replaceable hydrogen atom. With the much less active [[benzoyl chloride]], [[acylation]] can still be performed by the use of excess aqeous alkali to facilitate the reaction.
80375
80376 [[Image:Amide_formation_from_amine.gif|center|Amide formation]]
80377
80378 :Because amines are basic, they neutralize [[carboxylic acid]]s to form the corresponding ammonium carboxylate salts. Upon heating to 200&amp;nbsp;&amp;deg;C, the primary and secondary amine salts dehydrate to form the corresponding [[amide]]s.
80379
80380 [[Image:Amine_plus_Carboxylic_Acid.PNG|center|Amine reaction with carboxylic acids]]
80381
80382 * By ammonium salt formation. Amines R&lt;sub&gt;3&lt;/sub&gt;N react with strong acids such as [[hydroiodic acid]], [[hydrobromic acid]] and [[hydrochloric acid]] in neutralization reactions forming [[ammonium salt]]s R&lt;sub&gt;3&lt;/sub&gt;NH&lt;sup&gt;+&lt;/sup&gt;.
80383
80384 * By diazonium salt formation. [[Nitrous acid]] with formula HNO&lt;sub&gt;2&lt;/sub&gt; is unstable, therefore usually a mixture of NaNO&lt;sub&gt;2&lt;/sub&gt; and dilute [[hydrochloric acid]] or [[sulfuric acid]] is used to produce nitrous acid indirectly. Primary aliphatic amines with nitrous acid give very unstable diazonium salts which spontaneously decompose by losing N&lt;sub&gt;2&lt;/sub&gt; to form carbonium ion. The carbonium ion goes on to produce a mixture of alkenes, alkanols or alkyl halides, with alkanols as the major product. This reaction is of lttle synthetic importance because the diazonium salt formed is too unstable, even at cold conditions.
80385 : NaNO&lt;sub&gt;2&lt;/sub&gt; + HCl &amp;rarr; HNO&lt;sub&gt;2&lt;/sub&gt; + NaCl
80386
80387 [[Image:Nitrous_acid_with_n-amine.gif|center|Nitrous acid reaction]]
80388
80389 :Primary aromatic amines, such as [[aniline]] (phenylamine) forms a more stable [[diazonium]] ion at 0&amp;ndash;5&amp;nbsp;&amp;deg;C. Above 5&amp;nbsp;&amp;deg;C, it will decompose to give [[phenol]] and N&lt;sub&gt;2&lt;/sub&gt;. Diazonium salt can be isolated in the crystalline form but are usually used in solution and immediately after preparation, due to rapid decomposition on standing even in cold. Solid salt explosive on shock or on mild warming.
80390
80391 [[Image:Aromatic_diazonium_salt.gif|center|Aromatic diazonium salts]]
80392
80393 * By [[Alkylimino-de-oxo-bisubstitution|imine formation]]. Primary amines react with [[ketone]]s and [[aldehyde]]s to form [[imine]]s. In the case of [[formaldehyde]] (R' = H), these products are typically cyclic [[trimer]]s.
80394
80395 : RNH&lt;sub&gt;2&lt;/sub&gt; + R'&lt;sub&gt;2&lt;/sub&gt;C=O &amp;rarr; R'&lt;sub&gt;2&lt;/sub&gt;C=NR + H&lt;sub&gt;2&lt;/sub&gt;O
80396
80397 :Secondary amines react with ketones and aldehydes to form [[enamine]]s
80398 : R&lt;sub&gt;2&lt;/sub&gt;NH + R'(R&quot;CH&lt;sub&gt;2&lt;sub&gt;)C=O &amp;rarr; R&quot;CH=C(NR&lt;sub&gt;2&lt;/sub&gt;)R' + H&lt;sub&gt;2&lt;/sub&gt;O
80399 * By [[organic oxidation|oxidation]] to [[nitroso]] compounds, for instance [[Peroxymonosulfuric acid]].
80400 == Use of amines==
80401 === dyes ===
80402 Primary aromatic amines are used as a starting material for the manufacture of [[azo dye]]s. It reacts with nitric(III) acid to form diazonium salt which can undergo coupling reaction to form azo compound.As azo-compounds are highly coloured, they are widely used in dyeing industries, such as:
80403 * [[Methyl orange]]
80404 * [[Direct brown 138]]
80405 * [[Sunset yellow]] FCF
80406 * [[Ponceau]]
80407
80408 ===drugs===
80409 * [[Chlorpheniramine]] is an antihistamine the helps to relief allergic disorders due to cold, hay fever, itchy skin, insect bites and stings.
80410 * [[Chlorpromazine]] is a tranquilliser that sedates without inducing sleep. It is used to relieve anxiety, excitement, restlessness or even mental disorder.
80411 * [[Acetaminophen]] is also known as paracetamol or p-acetaminophenol, an analgesic that relieves pains such as headaches. It is believed to be less corrosive to the stomach and is an alternative to aspirin.
80412
80413 == See also ==
80414 * [[IUPAC nomenclature]] for the official naming rules for amines.
80415
80416 [[Category:Amines]]
80417
80418
80419 [[ar:ØŖŲ…ŲŠŲ†]]
80420 [[cs:Amin]]
80421 [[de:Amine]]
80422 [[es:Amina]]
80423 [[fr:Amine (chimie)]]
80424 [[he:אמין (כימיה)]]
80425 [[nl:Amine]]
80426 [[ja:ã‚ĸミãƒŗ]]
80427 [[lv:AmÄĢni]]
80428 [[pl:Amina]]
80429 [[pt:Amina]]
80430 [[ru:АĐŧиĐŊŅ‹]]
80431 [[fi:Amiini]]
80432 [[sv:Amin]]
80433 [[vi:Amin]]
80434 [[zh:čƒēįąģ]]</text>
80435 </revision>
80436 </page>
80437 <page>
80438 <title>Adrian I</title>
80439 <id>1415</id>
80440 <revision>
80441 <id>15899899</id>
80442 <timestamp>2002-02-25T15:51:15Z</timestamp>
80443 <contributor>
80444 <ip>Conversion script</ip>
80445 </contributor>
80446 <minor />
80447 <comment>Automated conversion</comment>
80448 <text xml:space="preserve">#REDIRECT [[Pope Adrian I]]
80449 </text>
80450 </revision>
80451 </page>
80452 <page>
80453 <title>April 29</title>
80454 <id>1416</id>
80455 <revision>
80456 <id>42163647</id>
80457 <timestamp>2006-03-04T06:08:07Z</timestamp>
80458 <contributor>
80459 <username>Rklawton</username>
80460 <id>754622</id>
80461 </contributor>
80462 <comment>rv non-noteable - and please don't kick my a**</comment>
80463 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
80464 {| style=&quot;float:right;&quot;
80465 |-
80466 |{{AprilCalendar}}
80467 |-
80468 |{{ThisDateInRecentYears|Month=April|Day=29}}
80469 |}
80470 '''[[April 29]]''' is the 119th day of the year in the [[Gregorian calendar]] (120th in [[leap year]]s). There are 246 days remaining.
80471 ==Events==
80472 *[[1672]] - [[Franco-Dutch War]]: [[Louis XIV of France]] invades the [[Netherlands]].
80473 *[[1770]] - [[James Cook]] arrives at and names [[Botany Bay]], [[Australia]].
80474 *[[1854]] - The [[Ashmun Institute]] is officially chartered, becoming the first college for [[African American]] students.
80475 *[[1861]] - [[American Civil War]]: [[Maryland]]'s House of Delegates votes not to secede from the [[United States|Union]]
80476 *[[1862]] - American Civil War: [[New Orleans, Louisiana|New Orleans]] falls to [[United States|Union]] forces under Admiral [[David Farragut]].
80477 *[[1895]] - Sir [[Malcolm Sargent]] (29 April [[1895]] – [[3 October]] [[1967]]) was a British conductor, organist and composer, born in [[Ashford]], [[Kent]], [[United Kingdom]].
80478 *[[1903]] - A 30 million cubic-metre landslide kills 70 in [[Frank, Alberta]], [[Canada]].
80479 *[[1910]] - [[Andrew Fisher]] becomes [[Prime Minister of Australia]] for the second time.
80480 *[[1916]] - [[Easter Rebellion]]: [[Martial law]] in [[Ireland]] is lifted and the rebellion is officially over with the surrender of Irish nationalists to British authorities in [[Dublin]].
80481 *[[1944]] - &quot;[[Dancing Romeo]],&quot; the last [[Our Gang]] film, premiers.
80482 *[[1945]] - [[World War II]]: The [[Germany|German]] Army in [[Italy]] unconditionally surrenders to the [[Allies]].
80483 *1945 - World War II: Start of [[Operation Manna]].
80484 *1945 - [[Adolf Hitler]] marries his long-time partner [[Eva Braun]] in a [[Berlin]] bunker and designates Admiral [[Karl DÃļnitz]] as his successor.
80485 *1945 - [[Holocaust]]: The [[Dachau concentration camp]] is liberated by [[United States]] troops.
80486 *[[1946]] - Former [[Prime Minister of Japan]] [[Hideki Tojo]] and 28 former [[Japan]]ese leaders are indicted for [[war crime]]s.
80487 *[[1967]] - After refusing induction into the [[United States Army]] the day before (citing religious reasons), [[Muhammad Ali]] is stripped of his [[boxing]] title.
80488 *[[1969]] - [[Jazz]] musician [[Duke Ellington]] receives the [[Presidential Medal of Freedom]].
80489 *[[1970]] - [[Vietnam War]]: [[United States]] and [[South Vietnam]]ese forces invade [[Cambodia]] to hunt [[Viet Cong]].
80490 *[[1974]] - [[Watergate Scandal]]: President [[Richard Nixon]] announces the release of edited transcripts of [[White House]] tape recordings related to the scandal.
80491 *[[1975]] - [[Vietnam War]]: [[Operation Frequent Wind]] &amp;ndash; The last [[United States|U.S.]] citizens begin evacuation from [[Saigon]] prior to an expected [[North Vietnam]]ese takeover. United States involvement in the war comes to an end.
80492 *[[1992]] - [[1992 Los Angeles riots]]: [[Riot]]s in [[Los Angeles, California]], follow the acquittal of [[police officer]]s charged with excessive force in the beating of [[Rodney King]]. Over the next three days 54 people are killed and hundreds of buildings are destroyed.
80493 *[[1997]] - The [[Chemical Weapons Convention]] of [[1993]] enters into force, outlaws the production, stockpiling and use of [[chemical weapon]]s among its signatories.
80494 *[[2002]] - The [[United States]] is re-elected to the [[United Nations Commission on Human Rights]], one year after losing the seat it had held for 50 years.
80495 *[[2004]] - [[Richard Cheney]] and [[George W. Bush]] testify before the [[9/11 Commission]] in a closed, unrecorded hearing in the [[Oval Office]].
80496 *[[2004]] - Last [[Oldsmobile]] produced
80497 *[[2005]] - [[Apple Computer]] releases Mac OS X v10.4 Tiger to the public.
80498
80499 ==Births==
80500 *[[1665]] - [[James Butler, 2nd Duke of Ormonde]], Irish statesman and soldier (d. [[1745]])
80501 *[[1667]] - [[John Arbuthnot]], English physician and satirist (d. [[1735]])
80502 *[[1686]] - [[Peregrine Bertie, 2nd Duke of Ancaster and Kesteven]], English statesman (d. [[1742]])
80503 *[[1727]] - [[Jean-Georges Noverre]], French dancer and ballet master (d. [[1810]])
80504 *[[1762]] - [[Jean-Baptiste Jourdan]], French marshal (d. [[1833]])
80505 *[[1780]] - [[Charles Nodier]], French writer (d. [[1844]])
80506 *[[1837]] - [[Georges Boulanger]], French general and politician (d. [[1891]])
80507 *[[1854]] - [[Henri PoincarÊ]], French mathematician and physicist (d. [[1912]])
80508 *[[1863]] - [[William Randolph Hearst]], American publisher (d. [[1951]])
80509 *[[1876]] - Empress [[Zauditu of Ethiopia]] (d. [[1930]])
80510 *[[1879]] - Sir [[Thomas Beecham]], English conductor (d. [[1961]])
80511 *[[1882]] - [[H.N. Werkman]], Dutch artist and printer (d. [[1945]])
80512 *[[1885]] - [[Egon Erwin Kisch]], Czech journalist and author (d. [[1948]])
80513 *[[1893]] - [[Harold Urey]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1981]])
80514 *[[1895]] - [[Malcolm Sargent]], English conductor (d. [[1967]])
80515 *[[1899]] - [[Duke Ellington]], American jazz pianist and bandleader (d. [[1974]])
80516 *[[1901]] - [[Hirohito]], [[Emperor of Japan]] (d. [[1989]])
80517 *[[1907]] - [[Fred Zinnemann]], Austrian-born American film director (d. [[1997]])
80518 *[[1909]] - [[Tom Ewell]], American actor (d. [[1994]])
80519 *[[1917]] - [[Celeste Holm]], American actress
80520 *[[1918]] - [[George Allen (football)|George Allen]], American football player and coach (d. [[1990]])
80521 *[[1920]] - [[Harold Shapero]], American composer
80522 *[[1925]] - [[Ned Austin]], American character actor
80523 *[[1929]] - [[Walter Kempowski]], German author
80524 *1929 - [[Peter Sculthorpe]], Australian composer
80525 *[[1930]] - [[Jean Rochefort]], French actor
80526 *[[1931]] - [[Frank Auerbach]], German-born British painter
80527 *1931 - [[Lonnie Donegan]], Scottish musician (d. [[2002]])
80528 *[[1933]] - [[Mark Eyskens]], [[Prime Minister of Belgium]]
80529 *1933 - [[Rod McKuen]], American poet and composer
80530 *[[1934]] - [[Luis Aparicio]], Venezuelan [[Major League Baseball]] player
80531 *1934 - [[Otis Rush]], American musician
80532 *[[1936]] - [[Zubin Mehta]], Indian-born American conductor
80533 *[[1937]] - [[Jill Paton Walsh]], English writer
80534 *[[1938]] - [[Fred Dibnah]], English television personality (d.[[2004]])
80535 *[[1942]] - [[Klaus Voormann]], German illustrator and musician
80536 *1942 - [[Galina Kulakova]], Soviet cross country skier
80537 *[[1944]] - [[Richard Kline]], American actor and television director
80538 *[[1945]] - [[Tammi Terrell]], American singer (d. [[1970]])
80539 *[[1946]] - [[John Waters (filmmaker)|John Waters]], American film director and writer
80540 *[[1947]] - [[Olavo de Carvalho]], Brazilian philosopher
80541 *1947 - [[Tommy James]], American musician
80542 *1947 - [[Jim Ryun]], American athlete and politician
80543 *[[1951]] - [[Dale Earnhardt]], American race car driver (d. [[2001]])
80544 *[[1952]] - [[Nora Dunn]], American actress
80545 *1952 - [[David Icke]], British writer
80546 *[[1954]] - [[Jerry Seinfeld]], American comedian
80547 *[[1955]] - [[Kate Mulgrew]], American actress
80548 *[[1956]] - [[Ketil Stokkan]], Norwegian singer
80549 *[[1957]] - [[Daniel Day-Lewis]], Irish actor
80550 *[[1958]] - [[Michelle Pfeiffer]], American actress
80551 *1958 - [[Eve Plumb]], American actress
80552 *[[1960]] - [[Robert J. Sawyer]], Canadian writer
80553 *1960 - [[Phil King]], English bassist
80554 *[[1964]] - [[Federico Castelluccio]], Italian-American actor
80555 *[[1966]] - [[Phil Tufnell]], English cricketer
80556 *[[1967]] - [[Curtis Joseph]], Canadian hockey player
80557 *1967 - [[Master P]], American rapper, composer, actor, athlete, and sports agent
80558 *[[1968]] - [[Carnie Wilson]], American singer
80559 *[[1970]] - [[Andre Agassi]], American tennis player
80560 *1970 - [[Uma Thurman]], American actress
80561 *[[1974]] - [[Pascal Cygan]], French footballer
80562 *[[1975]] - [[Eric Koston]], Thai-born skateboarder
80563 *[[1977]] - [[Claus Jensen]], Danish footballer
80564 *[[1980]] - [[Kian Egan]], Irish musician ([[Westlife]])
80565 *[[1981]] - [[George McCartney]], Northern Irish footballer
80566
80567 ==Deaths==
80568 *[[1380]] - [[Catherine of Siena]], Italian saint (b. [[1347]])
80569 *[[1594]] - [[Thomas Cooper (bishop)|Thomas Cooper]], English bishop, lexicographer, and writer
80570 *[[1630]] - [[Agrippa d'AubignÊ]], French poet (b. [[1552]])
80571 *[[1658]] - [[John Cleveland]], English poet (b. [[1613]])
80572 *[[1676]] - [[Michiel de Ruyter]], Dutch admiral (b. [[1607]])
80573 *[[1688]] - [[Frederick William, Elector of Brandenburg]] (b. [[1620]])
80574 *[[1698]] - [[Charles Cornwallis, 3rd Baron Cornwallis]], First Lord of the British Admiralty (b. [[1655]])
80575 *[[1707]] - [[George Farquhar]], Irish dramatist (b. [[1678]])
80576 *[[1743]] - [[Charles-IrÊnÊe Castel de Saint-Pierre]], French writer (b. [[1658]])
80577 *[[1768]] - [[Georg Brandt]], Swedish chemist and minerologist (b. [[1694]])
80578 *[[1776]] - [[Edward Wortley Montagu]], English traveler and writer (b. [[1713]])
80579 *[[1793]] - [[Yechezkel Landau]], Polish rabbi and Talmudist (b. [[1713]])
80580 *1793 - [[John Michell]], English scientist (b. [[1724]])
80581 *[[1798]] - [[Nikolaus Poda von Neuhaus]], German entomologist (b. [[1723]])
80582 *[[1854]] - [[Henry Paget, 1st Marquess of Anglesey]], English general (b. [[1768]])
80583 *[[1933]] - [[Constantine P. Cavafy]], Greek poet (b. [[1863]])
80584 *[[1937]] - [[William Gillette]], American actor (b. [[1853]])
80585 *[[1944]] - [[Bernardino Machado]], [[President of Portugal]] (b. [[1851]])
80586 *[[1951]] - [[Ludwig Wittgenstein]], Austrian-born philosopher (b. [[1889]])
80587 *[[1966]] - [[William Eccles]], English physicist and radio pioneer (b. [[1875]])
80588 *[[1980]] - [[Alfred Hitchcock]], English film director (b. [[1899]])
80589 *[[1988]] - [[James McCracken]], American tenor (b. [[1926]])
80590 *[[1993]] - [[Mick Ronson]], British musician (b. [[1946]])
80591 *[[1997]] - [[Mike Royko]], American columnist (b. [[1932]])
80592 *[[2005]] - [[William J. Bell]], television writer and producer (b. [[1927]])
80593
80594 ==Holidays and observances==
80595 *[[Catholicism|Roman Catholic]] [[feast days]]:
80596 **[[Saint Catherine of Siena]]
80597 **[[Saint Robert]]
80598 **[[Wilfred the Younger]]
80599 **[[Peter of Verona]]
80600 **[[Hugh of Cluny]]
80601 *[[International Dance Day]]
80602 *[[Japan]] (public holiday since 1927, traditionally the start of the [[Golden Week]] holiday period.)
80603 **[[The Emperor's Birthday]] (1927-1988. Holiday of [[Emperor of Japan|Emperor]] [[Hirohito]]'s birthday until his death in [[1989]])
80604 **[[Greenery Day]] (1989-2006)
80605 **[[Shōwa Day]] (2007- . Day of [[Showa_period]], which is reigned by Empelor Hirohito)
80606 *[[Roman Empire]] - second day of the [[Floralia]] in honor of [[Chloris|Flora]]
80607 *[[BahÃĄ'í Faith]] - The ninth day of the Festival of [[RidvÃĄn]]
80608
80609 ==Other==
80610 &quot;April 29th 1992 (Miami)&quot; is the title of a song by [[Sublime (band)|Sublime]] on their [[Sublime (album)|self-titled album]].
80611
80612 ==External links==
80613 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/29 BBC: On This Day]
80614 * [http://www.tnl.net/when/4/29 Today in History: April 29]
80615
80616 ----
80617
80618 [[April 28]] - [[April 30]] - [[March 29]] - [[May 29]] &amp;ndash; [[historical anniversaries|listing of all days]]
80619
80620 {{months}}
80621
80622 [[ceb:Abril 29]]
80623 [[nap:29 'e abbrile]]
80624 [[war:Abril 29]]
80625 [[pam:Abril 29]]
80626
80627 [[af:29 April]]
80628 [[ar:29 ØŖØ¨ØąŲŠŲ„]]
80629 [[an:29 d'abril]]
80630 [[ast:29 d'abril]]
80631 [[bg:29 Đ°ĐŋŅ€Đ¸Đģ]]
80632 [[be:29 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
80633 [[bs:29. april]]
80634 [[ca:29 d'abril]]
80635 [[cv:АĐēĐ°, 29]]
80636 [[co:29 d'aprile]]
80637 [[cs:29. duben]]
80638 [[cy:29 Ebrill]]
80639 [[da:29. april]]
80640 [[de:29. April]]
80641 [[et:29. aprill]]
80642 [[el:29 ΑĪ€ĪÎšÎģίÎŋĪ…]]
80643 [[es:29 de abril]]
80644 [[eo:29-a de aprilo]]
80645 [[eu:Apirilaren 29]]
80646 [[fo:29. apríl]]
80647 [[fr:29 avril]]
80648 [[fy:29 april]]
80649 [[ga:29 AibreÃĄn]]
80650 [[gl:29 de abril]]
80651 [[ko:4ė›” 29ėŧ]]
80652 [[hr:29. travnja]]
80653 [[io:29 di aprilo]]
80654 [[id:29 April]]
80655 [[ia:29 de april]]
80656 [[ie:29 april]]
80657 [[is:29. apríl]]
80658 [[it:29 aprile]]
80659 [[he:29 באפריל]]
80660 [[jv:29 April]]
80661 [[ka:29 აპრილი]]
80662 [[csb:29 łÅŧÃĢkwiôta]]
80663 [[ku:29'ÃĒ avrÃĒlÃĒ]]
80664 [[lt:BalandÅžio 29]]
80665 [[lb:29. AbrÃĢll]]
80666 [[li:29 april]]
80667 [[hu:Április 29]]
80668 [[mk:29 Đ°ĐŋŅ€Đ¸Đģ]]
80669 [[ms:29 April]]
80670 [[nl:29 april]]
80671 [[ja:4月29æ—Ĩ]]
80672 [[no:29. april]]
80673 [[nn:29. april]]
80674 [[oc:29 d'abril]]
80675 [[pl:29 kwietnia]]
80676 [[pt:29 de Abril]]
80677 [[ro:29 aprilie]]
80678 [[ru:29 Đ°ĐŋŅ€ĐĩĐģŅ]]
80679 [[sco:29 Aprile]]
80680 [[sq:29 Prill]]
80681 [[scn:29 di aprili]]
80682 [[simple:April 29]]
80683 [[sk:29. apríl]]
80684 [[sl:29. april]]
80685 [[sr:29. Đ°ĐŋŅ€Đ¸Đģ]]
80686 [[fi:29. huhtikuuta]]
80687 [[sv:29 april]]
80688 [[tl:Abril 29]]
80689 [[tt:29. Äpril]]
80690 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 29]]
80691 [[th:29 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
80692 [[vi:29 thÃĄng 4]]
80693 [[tr:29 Nisan]]
80694 [[uk:29 ĐēвŅ–Ņ‚ĐŊŅ]]
80695 [[ur:29 اŲžØąÛŒŲ„]]
80696 [[wa:29 d' avri]]
80697 [[zh:4月29æ—Ĩ]]</text>
80698 </revision>
80699 </page>
80700 <page>
80701 <title>August 14</title>
80702 <id>1417</id>
80703 <revision>
80704 <id>41966608</id>
80705 <timestamp>2006-03-02T22:57:34Z</timestamp>
80706 <contributor>
80707 <ip>69.138.229.246</ip>
80708 </contributor>
80709 <text xml:space="preserve">{| style=&quot;float:right;&quot;
80710 |-
80711 |{{AugustCalendar}}
80712 |-
80713 |{{ThisDateInRecentYears|Month=August|Day=14}}
80714 |}
80715 '''[[August 14]]''' is the 226th day of the year in the [[Gregorian Calendar]] (227th in [[leap year]]s), with 139 days remaining.
80716
80717 ==Events==
80718 *[[1040]] - King [[Duncan I of Scotland]] is killed in battle against his cousin and successor [[Macbeth of Scotland|Macbeth]].
80719 *[[1183]] - [[Taira no Munemori]] and the [[Taira]] clan take the young [[Emperor Antoku]] and the [[Imperial Regalia of Japan|three sacred treasures]] and flee to western Japan to escape pursuit by the [[Minamoto]] clan. (Traditional [[Japanese calendar|Japanese date]]: Twenty-fifth Day of the Seventh Month of the Second Year of Juei).
80720 *[[1385]] - [[1383-1385 Crisis]]: [[Castilia]]ns are defeated by [[Portugal|Portuguese]] at the [[Battle of Aljubarrota]].
80721 *[[1598]] - [[Ireland|Irish]] under [[Hugh O'Neill]], Earl of [[Tyrone]], destroy [[England|English]] force at the [[Battle of the Yellow Ford]].
80722 *[[1842]] - [[Indian Wars]]: [[Seminole Wars|Second Seminole War]] ends, with the [[Seminole (tribe)|Seminoles]] forced from [[Florida]] to [[Oklahoma]].
80723 *[[1846]] - The Cape &amp;#65279;Girardeau meteorite, a 2.3 [[kilogram|kg]] chondrite-type [[meteorite]] strikes near the town of [[Cape Girardeau, Missouri|Cape Girardeau]] in [[Cape Girardeau County, Missouri]].
80724 *[[1848]] - [[Oregon Territory]] organized by Act of [[Congress of the United States|U.S. Congress]].
80725 *[[1880]] - [[Cologne Cathedral]], the most famous landmark in [[Cologne]], [[Germany]], completed.
80726 *[[1885]] - [[Japan|Japan's]] first [[patent]] is issued to the inventor of a rust-proof paint.
80727 *[[1893]] - France introduces motor vehicle registration.
80728 *[[1900]] - A joint [[Europe]]an-[[Japan|Japanese]]-[[United States]] force occupies [[Beijing]], in campaign to end the [[Boxer Rebellion]] in [[China]].
80729 *[[1901]] - The first claimed [[aviation|powered flight]], by [[Gustave Whitehead]] in his [[Number 21 (plane)|Number 21]].
80730 *[[1908]] - First [[beauty contest]] held in [[Folkestone]], England
80731 *[[1911]] - [[United States Senate]] leaders [[Presidents pro tempore of the United States Senate, 1911-1913|agree to rotate the office]] of [[President pro tempore of the United States Senate|Presdent pro tempore of the Senate]] among leading candidates to fill the vacancy left by [[William P. Frye]]'s death.
80732 *[[1912]] - [[United States]] [[U.S. Marines|Marines]] invade [[Nicaragua]] to support the U.S.-backed government installed there after [[JosÊ Santos Zelaya]] resigned three years earlier.
80733 *[[1921]] - [[Tannu Tuva]],later [[Tuvinian People's Republic]] is established as a completely independent country (which is supported by Russia).
80734 *[[1933]] - Loggers cause a [[forest fire]] in the [[Coast Range]] of [[Oregon]], later known as the first forest fire of the [[Tillamook Burn]]. It is extinguished on September 5, after destroying [[1 E8 m²|240,000 acres (970 km&amp;sup2;)]].
80735 *[[1936]] - [[Rainey Bethea]] is hanged in [[Owensboro, Kentucky]] in the last public [[capital punishment in the United States|execution in the United States]].
80736 *[[1935]] - [[United States]] [[Social Security (United States)|Social Security]] Act passes, creating a government pension system for the retired.
80737 *[[1941]] - [[World War II]] - [[Winston Churchill]] and [[Franklin D. Roosevelt]] sign the [[Atlantic Charter]] of war stating postwar aims.
80738 *[[1945]] - [[Japan]] accepts the Allied [[Japanese Instrument of Surrender|terms of surrender]] in [[World War II]] and the [[Emperor of Japan|Emperor]] records the [[Gyokuon-hoso|Imperial Rescript on Surrender]] ([[August 15]] in [[Japan standard time]]).
80739 *[[1947]] - [[Pakistan]] gains independence from the [[United Kingdom]].
80740 *[[1967]] - [[United Kingdom|UK]] [[Marine Broadcasting Offences Act]] declares participation in offshore [[pirate radio]] illegal.
80741 *[[1969]] - [[United Kingdom]] troops deploy in [[Northern Ireland]].
80742 *[[1971]] - [[Bahrain]] declares its independence from [[United Kingdom]].
80743 *[[1972]] - An [[East Germany|East German]] [[Ilyushin Il-62]] crashes during takeoff from [[East Berlin]], killing 156.
80744 *[[1976]] - The [[Senegal]]ese [[political party]] ''[[African Independence Party-Renewal|PAI-RÊnovation]]'' is legally recognized. PAI-RÊnovation thus becomes the third legal party in the country.
80745 *[[1980]] - [[Lech Wałęsa]] leads strikes at [[Gdańsk]], [[Poland]] shipyards.
80746 *[[1994]] - [[Ilich Ramírez SÃĄnchez]], the [[terrorism|terrorist]] known as &quot;Carlos the Jackal&quot;, is captured.
80747 *[[2003]] - [[2003 North America blackout|Widescale power blackout]] in the northeast [[United States]] and [[Canada]].
80748 *[[2004]] - [[Sales tax]] holiday in [[Massachusetts]]. All sales taxes are suspended on purchases of $2500 or less.
80749 *[[2005]] - [[Helios Airways Flight 522]] crashes north of Athens, killing the 121 on board.
80750
80751 ==Births==
80752 *[[1297]] - [[Emperor Hanazono]], [[Emperor of Japan]] (d. [[1348]])
80753 *[[1473]] - [[Margaret Pole, 8th Countess of Salisbury]], daughter of [[George, Duke of Clarence]] (d. [[1541]])
80754 *[[1575]] - [[Robert Hayman]], English-born poet (d. [[1629]])
80755 *[[1586]] - [[William Hutchinson]], Rhode Island colonist (d. [[1642]])
80756 *[[1599]] - [[MÊric Casaubon]], English classical scholar (d. [[1671]])
80757 *[[1625]] - [[François de Harlay de Champvallon]], Archbishop of Paris (d. [[1695]])
80758 *[[1642]] - [[Cosimo III de' Medici, Grand Duke of Tuscany]] (d. [[1723]])
80759 *[[1653]] - [[Christopher Monck, 2nd Duke of Albemarle]], English statesman (d. [[1688]])
80760 *[[1688]] - [[Frederick William I of Prussia]] (d. [[1740]])
80761 *[[1714]] - [[Claude Joseph Vernet]], French painter (d. [[1789]])
80762 *[[1740]] - [[Pope Pius VII]] (d. [[1823]])
80763 *[[1771]] - [[Sir Walter Scott]], Scottish historical novelist and poet (d. [[1832]])
80764 *[[1777]] - King [[Francis I of the Two Sicilies]] (d. [[1830]])
80765 *1777 - [[Hans Christian Ørsted]], Danish physicist (d. [[1851]])
80766 *[[1840]] - [[Richard von Krafft-Ebing]], German psychologist (d. [[1902]])
80767 *[[1851]] - [[Doc Holliday]], American gambler and gunfighter (d. [[1887]])
80768 *[[1861]] - [[Herbert Putnam]], [[Librarian of Congress]] (d. [[1955]])
80769 *[[1863]] - [[Ernest Thayer]], American poet (d. [[1940]])
80770 *[[1865]] - [[Guido Castelnuovo]], Italian mathematician (d. [[1952]])
80771 *[[1866]] - [[Charles Jean de la VallÊe-Poussin]], Belgian mathematician (d. [[1962]])
80772 *[[1867]] - [[John Galsworthy]], English writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1933]])
80773 *[[1876]] - [[Aleksandar Obrenović]], [[monarch|King]] of [[Serbia]]
80774 *[[1881]] - [[Francis Ford (actor)]], American actor
80775 *[[1882]] - [[Gisela Richter]], English art historian (d. [[1972]])
80776 *[[1910]] - [[Pierre Schaeffer]], French composer (d. [[1955]])
80777 *[[1911]] - [[Vethathiri|Shri Vethathiri Maharishi]], Indian yogi
80778 *[[1916]] - [[Wellington Mara]], Co-Owner of the New York Football Giants
80779 *[[1925]] - [[Russell Baker]], American columnist
80780 *[[1926]] - [[RenÊ Goscinny]], French comic-strip author (d. [[1977]])
80781 *1926 - [[Lina WertmÃŧller]], Italian film director
80782 *[[1930]] - [[Earl Weaver]], baseball manager
80783 *[[1933]] - [[Richard R. Ernst]], Swiss chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate
80784 *[[1935]] - [[John Brodie]], American football player
80785 *[[1940]] - [[Dash Crofts]], American musician ([[Seals and Crofts]])
80786 *[[1941]] - [[David Crosby]], American guitarist and songwriter
80787 *[[1943]] - [[Jimmy Johnson (football coach)|Jimmy Johnson]], American football player and broadcaster
80788 *[[1945]] - [[Steve Martin]], American comedian and actor
80789 *1945 - [[Wim Wenders]], German-born film director
80790 *[[1946]] - [[Antonio Fargas]], American actor
80791 *1946 - [[Susan Saint James]], American actress
80792 *[[1947]] - [[Danielle Steel]], American novelist
80793 *[[1950]] - [[Bob Backlund]], American professional wrestler
80794 *1950 - [[Gary Larson]], American cartoonist
80795 *[[1952]] - [[Carl Lumbly]], American actor
80796 *1952 - [[Debbie Meyer]], American swimmer
80797 *[[1953]] - [[James Horner]], American composer
80798 *1953 - [[Cliff Johnson]], computer game author
80799 *[[1954]] - [[Mark Fidrych]], baseball player
80800 *[[1956]] - [[Rusty Wallace]], American race car driver
80801 *[[1959]] - [[Marcia Gay Harden]], American actress
80802 *1959 - [[Magic Johnson|Earvin &quot;Magic&quot; Johnson]], American basketball player
80803 *[[1960]] - [[Sarah Brightman]], English soprano
80804 *[[1961]] - [[Susan Olsen]], American actress
80805 *[[1964]] - [[Brannon Braga]], American scriptwriter and director
80806 *[[1965]] - [[Emmanuelle BÊart]], French actress
80807 *[[1966]] - [[Halle Berry]], American actress
80808 *[[1968]] - [[Darren Clarke]], Northern Irish professional golfer
80809 *[[1973]] - [[Jared Borgetti]], Mexican footballer
80810 *1973 - [[Jay-Jay Okocha]], Nigerian footballer
80811 *1973 - [[Kieren Perkins]], Australian swimmer
80812 *[[1977]] - [[Juan Pierre]], baseball player
80813 *[[1983]] - [[Elena Baltacha]], Ukrainian-born tennis player
80814 *1983 - [[Mila Kunis]], Ukrainian-born actress
80815 *[[1986]] - [[Terin Humphrey]], American gymnast
80816
80817 ==Deaths==
80818 *[[1167]] - [[Rainald of Dassel]], Archbishop of Cologne
80819 *[[1204]] - [[Minamoto no Yoriie]], Japanese shogun (b. [[1182]])
80820 *[[1390]] - [[John FitzAlan, 2nd Baron Arundel]], English soldier (b. [[1364]])
80821 *[[1430]] - [[Philip I, Duke of Brabant]] (b. [[1404]])
80822 *[[1433]] - King [[John I of Portugal]] (b. [[1357]])
80823 *[[1464]] - [[Pope Pius II]] (b. [[1405]])
80824 *[[1573]] - [[Saito Tatsuoki]], Japanese warlord (b. [[1548]])
80825 *[[1691]] - [[Richard Talbot, 1st Earl of Tyrconnel]], Irish rebel (b. [[1630]])
80826 *[[1704]] - [[Roland Laporte]], French protestant leader (b. [[1675]])
80827 *[[1727]] - [[William Croft]], English composer (b. [[1678]])
80828 *[[1774]] - [[Johann Jakob Reiske]], German scholar and physician (b. [[1716]])
80829 *[[1784]] - [[Nathaniel Hone]], Irish-born painter (b. [[1718]])
80830 *[[1856]] - [[Constant PrÊvost]], French geologist (b. [[1787]])
80831 *[[1860]] - [[AndrÊ Marie Constant DumÊril]], French zoologist (b. [[1774]])
80832 *[[1905]] - [[Simeon Solomon]], British artist (b. [[1840]])
80833 *[[1938]] - [[Hugh Trumble]], Australian Test Cricketer (b. [[1876]])
80834 *[[1941]] - [[Paul Sabatier (chemist)|Paul Sabatier]], French chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1854]])
80835 *[[1943]] - [[Joe Kelley]], baseball player (b. [[1871]])
80836 *[[1951]] - [[William Randolph Hearst]], American newspaper magnate (b. [[1863]])
80837 *[[1955]] - [[Herbert Putnam]], [[Librarian of Congress]] (b. [[1861]])
80838 *[[1956]] - [[Bertolt Brecht]], German writer (b. [[1898]])
80839 *[[1958]] - [[FrÊdÊric Joliot]], French physicist, recipient of the [[Nobel Prize in Chemistry]] (b. [[1900]])
80840 *[[1972]] - [[Oscar Levant]], American actor, composer, and musician (b. [[1906]])
80841 *[[1980]] - [[Dorothy Stratten]], Canadian actress and model (b. [[1960]])
80842 *[[1981]] - [[Karl BÃļhm]], Austrian conductor (b. [[1894]])
80843 *[[1984]] - [[J. B. Priestley]], English novelist and playwright (b. [[1894]])
80844 *[[1985]] - [[Gale Sondergaard]], American actress (b. [[1899]])
80845 *[[1988]] - [[Enzo Ferrari]], Italian car maker (b. [[1898]])
80846 *[[2000]] - [[Alain Fournier]], French-born [[computer graphics]] researcher (b. [[1943]])
80847 *[[2002]] - [[Dave Williams]], American singer ([[Drowning Pool]]) (b. [[1972]])
80848 *[[2003]] - [[Helmut Rahn]], German footballer (b. [[1929]])
80849 *[[2004]] - [[Czeslaw Milosz|Czes&amp;#322;aw Mi&amp;#322;osz]], Polish-born writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1911]])
80850 *[[2005]] - [[Coo Coo Marlin]], American race car driver (b. [[1932]])
80851
80852 ==Holidays and observances==
80853 *[[Morocco]] - [[Allegiance]] of [[Oued Eddahab]] or [[Río de Oro]]
80854 *[[Calendar of saints|RC saints]] - [[Maximilian Kolbe]] (Polish Franciscan priest martyred by Nazis in [[1941]])
80855 *[[Pakistan]] - [[Independence Day]]
80856 *[[United States]] - National [[Code talker|Code Talkers]] Day
80857
80858 ==External links==
80859 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/14 BBC: On This Day]
80860
80861 ----
80862
80863 [[August 13]] - [[August 15]] - [[July 14]] - [[September 14]] -- [[historical anniversaries|listing of all days]]
80864
80865 {{months}}
80866
80867 [[af:14 Augustus]]
80868 [[ar:14 ØŖØēØŗØˇØŗ]]
80869 [[an:14 d'agosto]]
80870 [[ast:14 d'agostu]]
80871 [[bg:14 авĐŗŅƒŅŅ‚]]
80872 [[be:14 ĐļĐŊŅ–ŅžĐŊŅ]]
80873 [[bs:14. august]]
80874 [[ca:14 d'agost]]
80875 [[ceb:Agosto 14]]
80876 [[cv:ÇŅƒŅ€ĐģĐ°, 14]]
80877 [[co:14 d'aostu]]
80878 [[cs:14. srpen]]
80879 [[cy:14 Awst]]
80880 [[da:14. august]]
80881 [[de:14. August]]
80882 [[et:14. august]]
80883 [[el:14 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
80884 [[es:14 de agosto]]
80885 [[eo:14-a de aÅ­gusto]]
80886 [[eu:Abuztuaren 14]]
80887 [[fo:14. august]]
80888 [[fr:14 aoÃģt]]
80889 [[fy:14 augustus]]
80890 [[ga:14 LÃēnasa]]
80891 [[gl:14 de agosto]]
80892 [[ko:8ė›” 14ėŧ]]
80893 [[hr:14. kolovoza]]
80894 [[io:14 di agosto]]
80895 [[id:14 Agustus]]
80896 [[ia:14 de augusto]]
80897 [[ie:14 august]]
80898 [[is:14. ÃĄgÃēst]]
80899 [[it:14 agosto]]
80900 [[he:14 באוגוסט]]
80901 [[jv:14 Agustus]]
80902 [[ka:14 აგვისáƒĸო]]
80903 [[csb:14 zÊlnika]]
80904 [[ku:14'ÃĒ gelawÃĒjÃĒ]]
80905 [[lt:RugpjÅĢčio 14]]
80906 [[lb:14. August]]
80907 [[li:14 augustus]]
80908 [[hu:Augusztus 14]]
80909 [[mk:14 авĐŗŅƒŅŅ‚]]
80910 [[ms:14 Ogos]]
80911 [[nap:14 'e aÚsto]]
80912 [[nl:14 augustus]]
80913 [[ja:8月14æ—Ĩ]]
80914 [[no:14. august]]
80915 [[nn:14. august]]
80916 [[oc:14 d'agost]]
80917 [[pl:14 sierpnia]]
80918 [[pt:14 de Agosto]]
80919 [[ro:14 august]]
80920 [[ru:14 авĐŗŅƒŅŅ‚Đ°]]
80921 [[sco:14 August]]
80922 [[sq:14 Gusht]]
80923 [[scn:14 di austu]]
80924 [[simple:August 14]]
80925 [[sk:14. august]]
80926 [[sl:14. avgust]]
80927 [[sr:14. авĐŗŅƒŅŅ‚]]
80928 [[fi:14. elokuuta]]
80929 [[sv:14 augusti]]
80930 [[tl:Agosto 14]]
80931 [[tt:14. August]]
80932 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 14]]
80933 [[th:14 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
80934 [[vi:14 thÃĄng 8]]
80935 [[tr:14 Ağustos]]
80936 [[uk:14 ŅĐĩŅ€ĐŋĐŊŅ]]
80937 [[ur:14 اگØŗØĒ]]
80938 [[wa:14 d' awousse]]
80939 [[war:Agosto 14]]
80940 [[zh:8月14æ—Ĩ]]
80941 [[pam:Agostu 14]]</text>
80942 </revision>
80943 </page>
80944 <page>
80945 <title>Absolute zero</title>
80946 <id>1418</id>
80947 <revision>
80948 <id>41558959</id>
80949 <timestamp>2006-02-28T03:38:40Z</timestamp>
80950 <contributor>
80951 <username>Melchoir</username>
80952 <id>454640</id>
80953 </contributor>
80954 <comment>rv; that didn't make sense</comment>
80955 <text xml:space="preserve">'''Absolute zero''' is a fundamental lower bound on the [[temperature]] of any macroscopic [[system]]. It is a temperature of [[kelvin|0 K]], [[Celsius|&amp;minus;273.15&amp;deg;C]], &lt;!-- Exactly! Celsius is defined as kelvin minus 273.15 these days. --&gt; or [[Fahrenheit|&amp;minus;459.67&amp;deg;F]]. It is unachievable in practice but it exists as a limit for real [[physical phenomenon|physical phenomena]], and it was inferred by [[extrapolation]] from [[kinetic theory]], and from other considerations in [[theoretical physics]]. One would like to define it as the temperature at which all [[motion]] ceases, but even at absolute zero some motion remains due to the requirements of [[quantum mechanics]]. Alternate definitions are that absolute zero is the temperature at which no further [[energy]] can be extracted from a [[physical body]], or the temperature at which the [[entropy|entropies]] of perfect [[crystal]]s vanish, or the temperature at which the entropy change of an [[adiabatic]] [[process]] vanishes.
80956
80957 A state of '''absolute zero''' was first proposed by [[Guillaume Amontons]] in [[1702]] who was investigating the relationship between [[pressure]] and temperature in [[gas]]es. He lacked accurate and precise [[thermometers]] so his results were only semi-[[quantitative]], but he established that the pressure of a gas increases by roughly one-third between &quot;cold&quot; temperatures and the [[boiling point]] of [[water]]. His work led him to speculate that a sufficient reduction in temperature would lead to the disappearance of pressure. The problem is that all [[ideal gas|real gases]] [[liquid|liquefy]] during the approach to absolute zero.
80958
80959 In [[1848]], [[William Thomson, 1st Baron Kelvin]] proposed an [[thermodynamic temperature|absolute thermodynamic temperature]] scale in which equal reduction in measured temperature gave rise to equal reduction in the heat of a [[body]]. This freed the concept from the constraints of the [[gas laws]] and established absolute zero as the temperature at which no further heat could be removed from a body. Absolute zero has never been reached, and it appears it never will be. It may be [[asymptote|asymptotically]] approached like the [[speed of light]], but never attained.
80960
80961 ==Kinetic theory and motion==
80962 According to [[kinetic theory]], there should be no movement of individual [[molecule]]s at absolute zero, so any material at this temperature would be solid. In a [[monatomic]] gas, most of the energy is in the form of translational motion, and the temperature can be measured in terms of the [[Maxwell-Boltzmann distribution|distribution of this motion]], with slower speeds corresponding to lower temperatures, perhaps even down to absolute zero. But this is contrary to [[experiment]]al evidence, and it is predicted that [[helium]] will never [[solid|solidify]], no matter how much it is cooled or compressed.
80963
80964 Because of quantum-mechanical effects, the speed at absolute zero is larger than zero and depends, along with the energy, on the volume within which a particle is confined. At absolute zero, the [[molecule]]s and [[atom]]s in a system are all in their [[ground state]], the state of lowest possible energy, and a system has the least amount of kinetic energy allowed by the [[laws of physics]]. But the lowest possible [[zero-point energy]] for a ''confined'' [[particle in a box]] is not zero. Rather than being fixed and non-moving, the equation for the energy levels shows that no matter how low the temperature gets, even when the [[quantum number]] takes its minimum value of one, a particle still has some translational [[kinetic energy]] and motion. This is a reflection of [[Werner Heisenberg|Heisenberg's]] [[uncertainty principle]], which states that the [[dimension|position]] and the [[momentum]] of a particle cannot both be known precisely at any given time.
80965
80966 Similarly, using the [[harmonic oscillator|harmonic]] approximation for the vibrations of a diatomic molecule, the [[quantum harmonic oscillator]] yields a positive zero-point energy even when the vibrational [[quantum number]] takes its minimum value of zero. For polyatomic molecules, and for bodies such as [[crystal]]s, whose [[normal mode]] motions can not be assigned to individual atoms or [[chemical bond]]s, the lowest-energy state is that of the system as a whole.
80967
80968 [[Classical mechanics|Classically]], the absolute temperature ''T'' of a system of molecules at [[thermodynamic equilibrium]] assigns an average of 1/2&amp;nbsp;''kT'' to each [[quadratic function|quadratic]] [[kinetic energy|kinetic]] and/or [[potential energy]] term in each mechanical [[degrees of freedom (physics and chemistry)|degree of freedom]], where ''k'' is [[Boltzmann constant|Boltzmann's constant]]. (See [[Degrees of freedom (physics and chemistry)#Equipartition theorem|equipartition of energy]] and the role of the [[Boltzmann distribution]] in relating temperature to energy.) But quantum mechanics shows that this is obeyed only for temperatures such that ''kT''&amp;nbsp;&gt;&amp;nbsp;''hÎŊ'', where ''h'' is [[Planck's constant]] and ÎŊ is a characteristic [[frequency]]. As ''T'' decreases, the assumption that energy is continuously variable fails whenever ''hÎŊ'' exceeds ''kT''. For [[normal mode|vibrational modes]] in crystals, this happens at [[room temperature]], which explains the deviation of the calculated [[specific heat capacity|specific heats]] of atomic crystals from the [[experiment]]al [[Dulong-Petit law]] value of 3''R''&amp;nbsp;/mole, a fact which puzzled late [[19th century]] [[physics|physicists]] and [[physical chemistry|physical chemists]]. (Rushbrooke, p. 33)
80969
80970 ==Cryogenics==
80971 It can be shown from the laws of [[thermodynamics]] that absolute zero can never be achieved, though it is possible to reach temperatures arbitrarily close to it through the use of [[cryocoolers]]. This is the same principle that ensures no [[machine]] can be 100% efficient.
80972
80973 At very low temperatures in the vicinity of absolute zero, matter exhibits many unusual properties including [[superconductor|superconductivity]], [[superfluid|superfluidity]], and [[Bose-Einstein condensate|Bose-Einstein condensation]]. In order to study such [[phenomenon|phenomena]], [[scientist]]s have worked to obtain ever lower temperatures.
80974
80975 *As of September 2003, the lowest temperature Bose-Einstein condensate achieved was 450&amp;#160;[[1 E-12 K|pK]], or 4.5&amp;#160;&amp;#215;&amp;#160;10&lt;sup&gt;-10&lt;/sup&gt;&amp;#160;K. This was performed by [[Wolfgang Ketterle]] and colleagues at the [[Massachusetts Institute of Technology]].{{rf|1|Leanhardt}}
80976
80977 *As of February 2003, the [[Boomerang Nebula]], with a temperature of 1.15&amp;#160;K, is the coldest place known outside a laboratory. The [[nebula]] is [[1 E19 m|5000 light-years]] from [[Earth]] and is in the constellation [[Centaurus]].{{rf|2|Cauchi}}
80978
80979 *As of November 2002, the coldest temperature produced was 100 pK during an experiment on [[nuclear magnetic ordering]] in the [[Helsinki University of Technology]]'s Low Temperature Lab.{{rf|3|Knuuttila}}
80980
80981 ==Thermodynamics near absolute zero==
80982 At 0&amp;nbsp;K, (nearly) all molecular motion ceases and Δ''S''&amp;nbsp;=&amp;nbsp;0 for any [[adiabatic process]]. Pure substances can (ideally) form perfect [[crystal]]s as ''T''&amp;nbsp;→&amp;nbsp;0. [[Max Planck|Planck's]] strong form of the [[third law of thermodynamics]] states that the [[entropy]] of a perfect crystal vanishes at absolute zero. However, if the lowest energy state is [[degenerate energy level|degenerate]] (more than one [[microstate (statistical mechanics)|microstate]]), this cannot be true. The original [[Walther Nernst|Nernst]] ''heat theorem'' makes the weaker and less controversial claim that the entropy ''change'' for any isothermal process approaches zero as ''T''&amp;nbsp;→&amp;nbsp;0
80983
80984 :&lt;math&gt; \lim_{T \to 0} \Delta S = 0 &lt;/math&gt;
80985
80986 which implies that the entropy of a perfect crystal simply approaches a constant value.
80987
80988 &lt;font color=maroon&gt;''The Nernst postulate identifies the isotherm T&amp;nbsp;=&amp;nbsp;0 as coincident with the adiabat S&amp;nbsp;=&amp;nbsp;0, although other isotherms and adiabats are distinct. As no two adiabats intersect, no other adiabat can intersect the T&amp;nbsp;=&amp;nbsp;0 isotherm. Consequently no adiabatic process initiated at nonzero temperature can lead to zero temperature.''&lt;/font&gt; (≈&amp;nbsp;Callen, pp. 189-190)
80989
80990 An even stronger assertion is that &lt;font color=maroon&gt;''It is impossible by any procedure to reduce the temperature of a system to zero in a finite number of operations.''&lt;/font&gt; (≈&amp;nbsp;Guggenheim, p. 157)
80991
80992 A perfect crystal is one in which the internal [[lattice (group)|lattice]] structure extends uninterrupted in all directions. The perfect order can be represented by translational [[symmetry]] along three (not usually [[orthogonality|orthogonal]]) [[Cartesian coordinate system|axes]]. Every lattice element of the structure is in its proper place, whether it is a single atom or a molecular grouping. For [[chemical substance|substances]] which have two (or more) stable crystalline forms, such as [[diamond]] and [[graphite]] for [[carbon]], there is a kind of &quot;chemical degeneracy&quot;. The question remains whether both can have zero entropy at ''T''&amp;nbsp;=&amp;nbsp;0 even though each is perfectly ordered.
80993
80994 Perfect crystals never occur in practice; imperfections, and even entire amorphous materials, simply get &quot;frozen in&quot; at low temperatures, so transitions to more stable states do not occur.
80995
80996 Using the [[Peter Debye|Debye]] model, the [[specific heat capacity|specific heat]] and entropy of a pure crystal are proportional to ''T''&lt;sup&gt;&amp;nbsp;3&lt;/sup&gt;, while the [[enthalpy]] and [[chemical potential]] are proportional to ''T''&lt;sup&gt;&amp;nbsp;4&lt;/sup&gt;. (Guggenheim, p. 111) These quantities drop toward their ''T''&amp;nbsp;=&amp;nbsp;0 limiting values and approach with ''zero'' slopes. For the specific heats at least, the limiting value itself is definitely zero, as borne out by experiments to below 10&amp;nbsp;K. Even the less detailed [[Albert Einstein|Einstein]] model shows this curious drop in specific heats. In fact, all specific heats vanish as absolute zero, not just those of crystals. Likewise for the coefficient of [[thermal expansion]]. [[Maxwell relations|Maxwell's relations]] show that various other quantities also vanish. These [[phenomenon|phenomena]] were unanticipated.
80997
80998 Since the relation between changes in the [[Gibbs free energy]], the enthalpy and the entropy is
80999
81000 :&lt;math&gt; \Delta G = \Delta H - T \Delta S \,&lt;/math&gt;
81001
81002 it follows that as ''T'' decreases, Δ''G'' and Δ''H'' approach each other (so long as Δ''S'' is bounded). [[Experiment]]ally, it is found that most [[chemical reaction]]s are [[exothermic reaction|exothermic]] and release heat ''in the direction'' they are found to be going, toward [[thermodynamic equilibrium|equilbirum]]. That is, even at [[room temperature]] ''T'' is low enough so that the fact that (Δ''G'')&lt;sub&gt;''T,P''&lt;/sub&gt;&amp;nbsp;&lt;&amp;nbsp;0 (usually) implies that Δ''H''&amp;nbsp;&lt;&amp;nbsp;0. (In the opposite direction, each such reaction would of course absorb heat.)
81003
81004 More than that, the ''slopes'' of the temperature derivatives of Δ''G'' and Δ''H'' converge and ''are equal to zero'' at ''T''&amp;nbsp;=&amp;nbsp;0, which ensures that Δ''G'' and Δ''H'' are nearly the same over a considerable range of temperatures, justifying the approximate [[empiricism|empirical]] [[Principle of Thomsen and Berthelot]], which says that &lt;font color=maroon&gt;''the equilibrium state to which a system proceeds is the one which evolves the greatest amount of heat''&lt;/font&gt;, i.e., an actual process is the ''most exothermic one''. (Callen, pp. 186-187)
81005
81006 ==Absolute temperature scales==
81007 As mentioned, absolute or [[thermodynamic temperature]] is conventionally measured in [[Kelvin]]s (Celsius-size degrees), and increasingly rarely in the [[Rankine]] scale (Fahrenheit-size degrees). Absolute temperature is uniquely determined up to a multiplicative constant which specifies the size of the &quot;degree&quot;, so the ''ratios'' of two absolute temperatures, ''T''&lt;sub&gt;2&lt;/sub&gt;/''T''&lt;sub&gt;1&lt;/sub&gt;, are the same in all scales. The most transparent definition comes from the classical [[Maxwell-Boltzmann distribution]] over energies, or from the quantum analogs: [[Fermi-Dirac statistics]] (particles of half-integer [[spin (physics)|spin]]) and [[Bose-Einstein statistics]] (particles of integer spin), all of which give the relative numbers of particles as (decreasing) [[exponential function]]s of energy over ''kT''. On a [[macroscopic]] level, a definition can be given in terms of the efficiencies of &quot;reversible&quot; [[heat engine]]s operating between hotter and colder thermal reservoirs.
81008
81009 ==Negative temperatures==
81010 {{main|Negative temperature}}
81011
81012 Certain semi-isolated systems can achieve negative temperatures; however, they are not actually colder than absolute zero.
81013
81014 ==References==
81015 * {{cite book | author=Herbert B. Callen | title=Thermodynamics, Chapter 10 | publisher=John Wiley &amp; Sons, Inc. | year=1960}} Library of Congress Catalog Card No. 60-5597. The clearest presentation of the logical foundations of the subject.
81016 * {{cite book | author=E.A. Guggenheim | title=Thermodynamics: An Advanced Treatment for Chemists and Physicists, 5th ed. | publisher=North Holland; John Wiley &amp; Sons, Inc. | year=1967}} Library of Congress Catalog Card No. 60-20003. A remarkably astute and comprehensive treatise.
81017 * {{cite book | author=G. S. Rushbrooke | title=Introduction to Statistical Mechanics | publisher=Oxford Univ. Press | year=1949}} The classic, compact introduction to the subject.
81018
81019 ==Notes==
81020 {{ent|1|Leanhardt}} Leanhardt, A. ''et al.'' (2003) ''Science'' '''301''' 1513. [http://physicsweb.org/article/news/7/9/8 Physicsweb news report]
81021 {{ent|2|Cauchi}} [http://www.smh.com.au/articles/2003/02/20/1045638427695.html Press report February 21 2003]
81022 {{ent|3|Knuuttila}} The experimental methods and results are presented in detail in T.A. Knuuttila’s Ph.D. thesis which can be downloaded [http://www.hut.fi/Yksikot/Kirjasto/Diss/2000/isbn9512252147/ here]. [http://ltl.hut.fi/Low-Temp-Record.html Low temperature Press release]
81023
81024 [[Category:Temperature]]
81025 [[Category:Thermodynamics]]
81026
81027 [[ar:ØĩŲØą Ų…ØˇŲ„Ų‚]]
81028 [[bg:АйŅĐžĐģŅŽŅ‚ĐŊĐ° ĐŊŅƒĐģĐ°]]
81029 [[ca:Zero absolut]]
81030 [[cs:Absolutní nula]]
81031 [[da:Absolut nulpunkt]]
81032 [[de:Absoluter Nullpunkt]]
81033 [[et:Absoluutne nulltemperatuur]]
81034 [[es:Cero absoluto]]
81035 [[fr:ZÊro absolu]]
81036 [[gl:Cero absoluto]]
81037 [[ko:ė ˆëŒ€ ė˜ë„]]
81038 [[is:Alkul]]
81039 [[it:Zero assoluto]]
81040 [[he:האפס המוחלט]]
81041 [[lv:AbsolÅĢtā nulle]]
81042 [[nl:Absoluut nulpunt]]
81043 [[ja:įĩļ寞é›ļåēĻ]]
81044 [[no:Det absolutte nullpunkt]]
81045 [[pl:Zero bezwzględne]]
81046 [[pt:Zero absoluto]]
81047 [[ru:АйŅĐžĐģŅŽŅ‚ĐŊŅ‹Đš ĐŊŅƒĐģŅŒ Ņ‚ĐĩĐŧĐŋĐĩŅ€Đ°Ņ‚ŅƒŅ€Ņ‹]]
81048 [[simple:Absolute zero]]
81049 [[sk:AbsolÃētna nula]]
81050 [[sl:Absolutna ničla]]
81051 [[fi:Absoluuttinen nollapiste]]
81052 [[sv:Absoluta nollpunkten]]
81053 [[th:ā¸¨ā¸šā¸™ā¸ĸāšŒā¸­ā¸‡ā¸¨ā¸˛ā¸Ēā¸ąā¸Ąā¸šā¸šā¸Ŗā¸“āšŒ]]
81054 [[uk:АйŅĐžĐģŅŽŅ‚ĐŊиК ĐŊŅƒĐģŅŒ]]
81055 [[zh:įģå¯šé›ļåēĻ]]</text>
81056 </revision>
81057 </page>
81058 <page>
81059 <title>Adiabatic process</title>
81060 <id>1419</id>
81061 <revision>
81062 <id>41634537</id>
81063 <timestamp>2006-02-28T18:00:59Z</timestamp>
81064 <contributor>
81065 <username>Joe Frickin Friday</username>
81066 <id>843319</id>
81067 </contributor>
81068 <minor />
81069 <comment>removed statement about absence of chemical processes (paragraph 2).</comment>
81070 <text xml:space="preserve">:''This article covers adiabatic processes in [[thermodynamics]]. For adiabatic processes in [[quantum mechanics]], see [[adiabatic process (quantum mechanics)]]. For atmospheric adiabatic processes, see [[adiabatic lapse rate]].''
81071
81072 In [[thermodynamics]], an '''adiabatic process''' is a process in which no [[heat]] is transferred to or from working [[fluid]]. The term &quot;adiabatic&quot; literally means an absence of heat transfer; for example, an '''adiabatic boundary''' is a boundary that is impermeable to heat transfer and the system is said to be adiabatically (or thermally) insulated. An insulated wall approximates an adiabatic boundary.
81073 Another example is the [[adiabatic flame temperature]], which is the temperature that would be achieved by a [[fire|flame]] in the absence of heat loss to the surroundings.
81074 An adiabatic process which is also [[reversible process|reversible]] is called an [[isentropic process]].
81075
81076 The opposite extreme, in which the maximum heat transfer with its surroundings occurs, causing the temperature to remain constant, is known as an [[isothermal process]]. Since temperature is thermodynamically [[conjugate variables (thermodynamics)|conjugate]] to entropy, the isothermal process is conjugate to the adiabatic process for reversible transformations.
81077
81078 A transformation of a thermodynamic system can be considered adiabatic when it is quick enough so that no significant [[heat transfer]] happens between the system and the outside. At the opposite, a transformation of a thermodynamic system can be considered [[isothermal process|isothermal]] if it is slow enough so that the system's temperature can be maintained by [[heat]] exchange with the outside.
81079
81080 == Adiabatic heating and cooling ==
81081 Adiabatic heating and cooling are processes that commonly occur due to a change in the [[pressure]] of a [[gas]]. Adiabatic heating occurs when the pressure of a gas is increased. An example of this is what goes on in a [[bicycle pump]]. After using a bicycle pump to inflate a pneumatic tyre or [[soccer ball]] the barrel of the pump is found to have heated up as a result of adiabatic heating. A common motorized [[air compressor]], operating at pressures up to 150 [[Pound-force per square inch|psi]], can reach outlet temperatures of several hundred degrees Fahrenheit. Adiabatic cooling occurs when the pressure of a gas is decreased, such as when it expands into a larger volume. An example of this is when the air is released from a pneumatic tire; the outlet air will be noticably cooler than the tire, and after all the air has escaped the valve stem will be cold to the touch. [[Diesel engines]] rely on adiabatic heating during their compression stroke to reach the high temperatures needed to ignite the fuel. Such temperature changes can be quantified using the [[ideal gas law]].
81082
81083 Adiabatic cooling does not have to involve a fluid. One technique used to reach very low temperatures (thousandths and even millionths of a degree above absolute zero) is [[adiabatic demagnetization|adiabatic demagnetisation]], where the change in [[magnetic field]] on a magnetic material is used to provide adiabatic cooling.
81084
81085 ==Ideal gas==
81086 [[Image:Adiabatic.png|thumb|341px|For a simple substance, during an adiabatic process in which the volume increases, the [[internal energy]] of the working substance must necessarily decrease]]
81087 The mathematical equation for an [[ideal gas|ideal]] fluid undergoing an adiabatic process is
81088 : &lt;math&gt; P V^{\gamma} = \operatorname{constant} \qquad &lt;/math&gt;
81089 where ''P'' is pressure, ''V'' is volume, and
81090 : &lt;math&gt; \gamma = {C_{P} \over C_{V}} = \frac{\alpha + 1}{\alpha}, &lt;/math&gt;
81091 &lt;math&gt; C_{P} &lt;/math&gt; being the [[molar specific heat]] for constant pressure and
81092 &lt;math&gt; C_{V} &lt;/math&gt; being the molar specific heat for constant volume.
81093 &lt;math&gt; \alpha &lt;/math&gt; comes from the number of degrees of freedom (3/2 for monatomic gas, 5/2 for diatomic gas, 3 for complex molecules).
81094 For a monatomic ideal gas, &lt;math&gt; \gamma = 5/3 &lt;/math&gt;, and for a diatomic gas (such as [[nitrogen]] and [[oxygen]], the main components of [[Earth's atmosphere|air]]) &lt;math&gt; \gamma = 7/5 &lt;/math&gt;. Note that the above formula is only applicable to classical ideal gases and not Bose-Einstein or Fermi gases.
81095
81096 For adiabatic processes, it is also true that
81097
81098 : &lt;math&gt; VT^\alpha = \operatorname{constant} &lt;/math&gt;
81099
81100 ''T'' is temperature in kelvins.
81101
81102 ===Derivation of formula===
81103 The definition of an adiabatic process is that heat transfer to the system is zero, &lt;math&gt;\delta Q=0 &lt;/math&gt;. Then, according to the [[first law of thermodynamics]],
81104
81105 :&lt;math&gt; d U + \delta W = \delta Q = 0 \qquad \qquad \qquad (1) &lt;/math&gt;
81106
81107 where ''dU'' is the change in the internal energy of the system and ''&amp;delta;W'' is work done
81108 ''by'' the system. Any work (''&amp;delta;W'') done must be done at the expense of internal energy ''U'', since no heat ''&amp;delta;Q'' is being supplied from the surroundings. Pressure-volume work ''&amp;delta;W'' done ''by'' the system is defined as
81109
81110 :&lt;math&gt; \delta W = P dV. \qquad \qquad \qquad (2)&lt;/math&gt;
81111
81112 However, ''P'' does not remain constant during an adiabatic process but
81113 instead changes along with ''V''.
81114
81115 It is desired to know how the values of &lt;math&gt; d P &lt;/math&gt; and
81116 &lt;math&gt; d V &lt;/math&gt; relate to each other as the adiabatic process proceeds.
81117
81118 :&lt;math&gt; C_{V} = \alpha R\,&lt;/math&gt;
81119
81120 where ''R'' is the [[universal gas constant]].
81121
81122 Given &lt;math&gt; d P &lt;/math&gt; and &lt;math&gt; d V &lt;/math&gt; then
81123 &lt;math&gt; \delta W = P d V &lt;/math&gt; and
81124
81125 : &lt;math&gt; d E = \alpha n R d T
81126 = \alpha d (P V)
81127 = \alpha (P d V + V d P). \qquad (3)&lt;/math&gt;
81128
81129 Now substitute equations (2) and (3) into equation (1) to obtain
81130
81131 : &lt;math&gt; -P d V = \alpha P d V + \alpha V d P \,&lt;/math&gt;
81132
81133 simplify,
81134
81135 : &lt;math&gt; - (\alpha + 1) P d V = \alpha V d P \,&lt;/math&gt;
81136
81137 divide both sides by ''PV'',
81138
81139 : &lt;math&gt; -(\alpha + 1) {d V \over V} = \alpha {d P \over P}. &lt;/math&gt;
81140
81141 From the differential calculus it is then known that
81142
81143 : &lt;math&gt; -(\alpha + 1) d (\ln V) = \alpha d (\ln P) \,&lt;/math&gt;
81144
81145 which can be expressed as
81146
81147 : &lt;math&gt; {\ln P - \ln P_0 \over \ln V - \ln V_0 } = -{\alpha + 1 \over \alpha} &lt;/math&gt;
81148
81149 for certain constants &lt;math&gt; P_0 &lt;/math&gt; and &lt;math&gt; V_0 &lt;/math&gt; of the
81150 initial state. Then
81151
81152 : &lt;math&gt; {\ln (P/P_0) \over \ln (V/V_0)} = -{\alpha + 1 \over \alpha}, &lt;/math&gt;
81153
81154 : &lt;math&gt;
81155 \ln \left( {P \over P_0} \right)
81156 =\ln \left( {V \over V_0} \right)^{-{\alpha + 1 \over \alpha}}. &lt;/math&gt;
81157
81158 Exponentiate both sides,
81159
81160 : &lt;math&gt; \left( {P \over P_0} \right)
81161 =
81162 \left( {V \over V_0} \right)^{-{\alpha + 1 \over \alpha}}, &lt;/math&gt;
81163
81164 eliminate the negative sign,
81165
81166 : &lt;math&gt; \left( {P \over P_0} \right)
81167 =
81168 \left( {V_0 \over V} \right)^{\alpha + 1 \over \alpha}. &lt;/math&gt;
81169
81170 Therefore
81171
81172 : &lt;math&gt; \left( {P \over P_0} \right) \left( {V \over V_0} \right)^{\alpha+1 \over \alpha} = 1
81173 &lt;/math&gt;
81174
81175 and
81176
81177 : &lt;math&gt; P V^{\alpha+1 \over \alpha} = P_0 V_0^{\alpha+1 \over \alpha} = P V^\gamma = \operatorname{constant}. &lt;/math&gt;
81178
81179 ==Graphing adiabats==
81180 Properties of adiabats on a P-V diagram are:
81181 #Every adiabat asymptotically approaches both the V axis and the P axis (just like isotherms).
81182 #Each adiabat intersects each isotherm exactly once.
81183 #An adiabat looks similar to an isotherm, except that during an expansion, an adiabat loses more pressure than an isotherm, so it has a steeper inclination (more vertical).
81184 #If isotherms are concave towards the &quot;north-east&quot; direction (45 &amp;deg;), then adiabats are concave towards the &quot;east north-east&quot; (31 &amp;deg;).
81185 #If adiabats and isotherms are graphed severally at regular changes of entropy and temperature, respectively (like altitude on a contour map), then as the eye moves outwards away from the axes (towards the north-east), it sees the density of isotherms stay constant, but it sees the density of adiabats drop. The exception is very near absolute zero, where the density of adiabats drops sharply and they become rare (see [[Nernst's theorem]]).
81186
81187 The following diagram is a P-V diagram with a superposition of adiabats and isotherms:
81188
81189 [[Image:Entropyandtemp.PNG]]
81190
81191 The isotherms are the red curves and the adiabats are the black curves. The adiabats are isentropic. Volume is the [[abscissa]] (x-axis) and pressure is the [[ordinate]] (y-axis).
81192
81193 == See also ==
81194
81195 * [[Cyclic process]]
81196 * [[First law of thermodynamics]]
81197 * [[Isobaric process]]
81198 * [[Isochoric process]]
81199 * [[Isothermal process]]
81200 * [[Thermodynamic entropy]]
81201 * [[Quasistatic equilibrium]]
81202
81203 [[Category:Thermodynamics]]
81204
81205 [[cs:AdiabatickÃŊ děj]]
81206 [[da:Adiabatisk]]
81207 [[de:Adiabatische Zustandsänderung]]
81208 [[es:Proceso adiabÃĄtico]]
81209 [[nl:Adiabatisch]]
81210 [[ja:断į†ąéŽį¨‹]]
81211 [[pl:Przemiana adiabatyczna]]
81212 [[sk:AdiabatickÃŊ dej]]
81213 [[sl:Adiabatna sprememba]]
81214 [[fi:Adiabaattinen prosessi]]
81215 [[sv:Adiabatisk process]]
81216 [[uk:АдŅ–айаŅ‚иŅ‡ĐŊиК ĐŋŅ€ĐžŅ†ĐĩŅ]]</text>
81217 </revision>
81218 </page>
81219 <page>
81220 <title>Antoni van Leeuwenhoek</title>
81221 <id>1420</id>
81222 <revision>
81223 <id>15899904</id>
81224 <timestamp>2002-02-26T18:50:24Z</timestamp>
81225 <contributor>
81226 <username>Maveric149</username>
81227 <id>62</id>
81228 </contributor>
81229 <comment>#REDIRECT [[Anton van Leeuwenhoek]]</comment>
81230 <text xml:space="preserve">#REDIRECT [[Anton van Leeuwenhoek]]</text>
81231 </revision>
81232 </page>
81233 <page>
81234 <title>Amide</title>
81235 <id>1422</id>
81236 <revision>
81237 <id>37595258</id>
81238 <timestamp>2006-01-31T23:47:22Z</timestamp>
81239 <contributor>
81240 <username>V8rik</username>
81241 <id>195918</id>
81242 </contributor>
81243 <comment>moved text around, added some content, removed one or two lines that were unclear.</comment>
81244 <text xml:space="preserve">[[Image:Amide.png|right|Amide functional group]]In [[chemistry]], an '''''amide''''' is either the [[organic chemistry|organic]] [[functional group]] characterized by a [[carbonyl]] group linked to a [[nitrogen]] atom or a compound that contains this functional group, or a particular [[inorganic]] [[anion]]. In organic chemistry, an amide is essentially an [[amine]] where one of the nitrogen [[substituent|substituents]] is a carbonyl group, represented generally by the formula: R&lt;sub&gt;1&lt;/sub&gt;([[carbon|C]][[oxygen|O]])[[nitrogen|N]]R&lt;sub&gt;2&lt;/sub&gt;R&lt;sub&gt;3&lt;/sub&gt; where either or both of R&lt;sub&gt;2&lt;/sub&gt; and R&lt;sub&gt;3&lt;/sub&gt; may be [[hydrogen]]. Specifically, an amide can also be regarded as a derivative of a [[carboxylic acid]] in which the hydroxyl group has been replaced by an [[amine]] or [[ammonia]].
81245
81246 Compounds in which a [[hydrogen]] atom on nitrogen from [[ammonia]] or an [[amine]] is replaced by a [[metal]] [[cation]] are also known as amides or '''azanides'''.
81247
81248 The inorganic amide anion is an extremely strong base, due to the extreme weakness of ammonia as a [[Brønsted acid]].
81249
81250 ==Amide synthesis==
81251 [[Image:Amide react.png|right|Amide bond formation]]
81252 *Amides are commonly formed from the reaction of a [[carboxylic acid]]s with an [[amine]].This is the reaction that forms [[peptide bond]]s between [[amino acid]]s. These amides can participate in [[hydrogen bond|hydrogen bonding]] as hydrogen bond acceptors and donors, but do not [[ion|ionize]] in aqueous solution, whereas their parent acids and amines are almost completely ionized in solution at neutral pH. Amide formation plays a role in the synthesis of some [[condensation polymer]]s, such as [[nylon]] and [[Kevlar]].
81253 * Cyclic amides are synthesized in the [[Beckmann rearrangement]] from oximes.
81254 * Other amide forming reactions are the [[Passerini reaction]] and the [[Ugi reaction]]
81255 == Amide reactions ==
81256 * Amide breakdown is possible via [[amide hydrolysis]].
81257 * In the [[Vilsmeier-Haack reaction]] an amide is converted into an imine.
81258 == Amide Properties ==
81259 An amide linkage is kinetically stable to [[hydrolysis]]. However, it can be hydrolysed in boiling alkali, as well as in strong acidic conditions. Unlike the hydrolysis of esters, the kinetics of amide hydrolysis is third order: first order with respect to the amide and second order with respect to hydroxide. Amide linkages in a [[biochemistry| biochemical]] context are called [[peptide link|peptide linkages]]. Amide linkages constitute a defining molecular feature of [[protein|proteins]], the [[secondary structure]] of which is due in part to the hydrogen bonding abilities of amides.
81260
81261 ==Derivatives==
81262 [[Sulfonamide]]s are analogs of amides in which the atom double bonded to oxygen is [[sulfur]] rather than carbon.
81263
81264 ==Naming Convertions ==
81265 *Example: CH&lt;sub&gt;3&lt;/sub&gt;CONH&lt;sub&gt;2&lt;/sub&gt; is named [[acetamide]] or [[ethanamide]]
81266 *Other examples: propan-1-amide, N,N-dimethylpropanamide, [[acrylamide]]
81267 *For more detail see [[IUPAC_nomenclature#Amines_and_Amides]]
81268
81269 ==External links ==
81270 *[http://www.chemsoc.org/chembytes/goldbook/ IUPAC Compendium of Chemical Terminology]
81271
81272 [[Category:Amides]]
81273 [[Category:Functional groups]]
81274
81275 [[ar:اŲ…ŲŠØ¯]]
81276 [[da:Amid (funktionel gruppe)]]
81277 [[de:Amide]]
81278 [[es:Amida]]
81279 [[eo:Amido]]
81280 [[fr:Amide]]
81281 [[he:אמיד]]
81282 [[nl:Amide]]
81283 [[ja:ã‚ĸミド]]
81284 [[pl:Amid]]
81285 [[ru:АĐŧидŅ‹]]</text>
81286 </revision>
81287 </page>
81288 <page>
81289 <title>Animism</title>
81290 <id>1423</id>
81291 <revision>
81292 <id>41521068</id>
81293 <timestamp>2006-02-27T22:39:23Z</timestamp>
81294 <contributor>
81295 <username>CJLippert</username>
81296 <id>445263</id>
81297 </contributor>
81298 <minor />
81299 <comment>/* See also */</comment>
81300 <text xml:space="preserve">In [[religion]], the term '''&quot;Animism&quot;''' is used in a number of ways.
81301 *Animism (from ''animus'', or ''anima'', [[mind]] or soul), originally means the doctrine of [[spiritual beings]].
81302 *It is often extended to include the belief that personalized, [[supernatural]] beings (or souls) endowed with [[reason]], [[intelligence (trait)|intelligence]] and [[volition]] inhabit ordinary objects as well as animate beings, and govern their existence ([[pantheism]] or [[animatism]]). More simply, the belief is that &quot;[[everything]] is [[alive]]&quot;, &quot;everything is [[conscious]]&quot; or &quot;everything has a soul&quot;.
81303 *It has been further extended to mean a belief that the world is a community of living [[persons]], only some of whom are human. It also refers to the culture or philosophy which these types of Animists live by, that is, to attempt to relate respectfully with the persons (human, rock, plant, animal, bird, ancestral, etc.) who are also members of the wider community of life.
81304 '''&quot;Animism&quot;''' can refer to the [[religion]] or [[beliefs]] or [[philosophy]] of the above interpretations. It can also refer to the [[culture]] and [[practice]]s related to Animism.
81305
81306 &quot;Animism&quot; was the term used by [[anthropology | anthropologist]], Sir [[E. B. Tylor]], as a proposed theory of [[religion]], in his [[1871]] book, ''[[Primitive Culture]]''. He used it to mean a 'belief in spirits' (i.e. mystical, supernatural, non-empirical or imagined entities). Tylor's use of the term has since been widely criticized (see details below). Today the term is used with more respect.
81307
81308 Today Animists live in significant numbers in countries such as [[Zambia]], the [[Democratic Republic of the Congo]], [[Gabon]], the [[Republic of Guinea Bissau]], [[Indonesia]], [[Laos]], [[Myanmar]], [[Papua New Guinea]], the [[Philippines]], [[Russia]], [[Sweden]], [[Thailand]], and the [[United States of America]].
81309
81310 Modern [[Neopaganism|Neopagans]], especially Eco-Pagans, sometimes describe themselves as animists, meaning that they respect the diverse community of living beings with whom humans share the world/cosmos. Some, however, use the term to refer to the idea that the [[Mother goddess]] and [[Horned god]] consist of everything that exists. This [[Pantheism]] in which [[God]] is equated with [[existence]] is different from animism because it imputes value to individual living beings and/or objects because they might reveal a larger reality or divinity behind everything. Animists respect beings for their own sake - whether because they have or are souls (as in the original definition of the word) or because they are persons (the new definition).
81311
81312 ==Overview==
81313 In some animistic worldviews found in [[hunter-gatherer]] cultures, the human being is often regarded as on a roughly equal footing with animals, plants, and natural forces. Therefore, it is morally imperative to treat these agents with respect. In this worldview, humans are considered a denizen, or part, of nature, rather than superior to or separate from it. In such societies, ritual is considered essential for survival as it wins the favor of the spirits of one's source of food, shelter, and fertility and wards off malevolent spirits. In more elaborate animistic religions, such as [[Shinto]], there is a greater sense of a special character to humans that sets them apart from the general run of animals and objects, while retaining the necessity of ritual to ensure good luck, favorable harvests, and so on.
81314
81315 Most animistic belief systems hold that the spirit survives physical death. In some systems, the spirit is believed to pass to an easier world of abundant game or ever-ripe crops, while in other systems (''e.g.'', the [[Navajo Nation|Navajo]] religion), the spirit remains on earth as a [[ghost]], often malignant. Still other systems combine these two beliefs, holding that the soul must journey to the spirit world without becoming lost and thus wandering as a ghost. [[Funeral]], [[mourning]] rituals, and [[ancestor worship]] performed by those surviving the deceased are often considered necessary for the successful completion of this journey.
81316
81317 Rituals in animistic cultures are often performed by [[shaman|shamans]] or [[priest|priests]], who are usually seen as possessing spiritual powers greater than or external to the normal human experience.
81318
81319 The practice of [[shrunken head|head shrinking]] as found among [[headhunter]]s derives from an animistic belief that one's war enemies, if the spirit is not trapped within the head, can escape the body. After the spirit [[transmigrates]] to another body, they take the form of a [[predator]]y animal and exact revenge.
81320
81321 Animism is the belief that objects and ideas including animals, tools, and natural phenomena have or are expressions of living [[spirit]]s.
81322
81323 ==Origins==
81324 Early ideas on the subject of the soul, and at the same time the origin of them, can be illustrated by analysis of the terms applied to them. Readers of [[Dante Alighieri|Dante]] know the idea that the dead have no shadows. This was no invention of the poet's but a piece of traditional lore.
81325
81326 Among the [[Basutoland|Basutus]] it is held that a man walking by the brink of a river may lose his life if his shadow falls on the water, for a [[crocodile]] may seize it and draw him in.
81327
81328 In [[Tasmania]], [[North America|North]] and [[South America]] and classical Europe is found the conception that the soul &amp;#8212; &amp;#963;&amp;#954;&amp;#953;&amp;#8049;, ''umbra'' &amp;#8212; is identical with the shadow of a person. More familiar to Europeans is the connection between the soul and the breath. This identification is found both in [[Indo-European languages | Indo-European]] and [[Semitic languages]]. In Latin we have ''spiritus'', in Greek ''pneuma'', in Hebrew ''ruach''. The idea is found extending other planes of culture in Australia, America and Asia.
81329
81330 For some of the [[Native Americans (U.S.)|Native Americans]] and [[First Nations]] the [[Roman religion|Roman]] custom of receiving the breath of a dying man was no mere pious duty but a means of ensuring that his soul was transferred to a new body. Other familiar conceptions identify the [[soul]] with the [[liver]] (see [[omen]]) or the [[heart]], with the reflected figure seen in the [[pupil]] of the [[eye]], and with the [[blood]].
81331
81332 Although the soul is often distinguished from the vital principle, there are many cases in which a state of unconsciousness is explained as due to the absence of the soul. In [[South Australia]] ''wilyamarraba'' (without soul) is the word used for insensible. So too the [[autohypnosis|autohypnotic]] [[trance]] of the [[magician]] or ''[[shaman]]'' is regarded as due to their visit to distant regions or the [[netherworld]], of which they bring back an account. [[Telepathy]] or [[clairvoyance]], with or without [[trance]], may have operated to produce a conviction of the dual nature of man, for it seems possible that facts unknown to the [[automatism|automatist]] are sometimes discovered by means of [[crystal gazing]].
81333
81334 Sickness is often explained as due to the absence of the soul and means are sometimes taken to lure back the [[wandering soul]]. In [[China|Chinese]] tradition, when a person is at the point of death and their soul believed to have left their body, the patient's coat is held up on a long bamboo pole while a priest endeavours to bring the departed spirit back into the coat by means of [[incantation]]s. If the bamboo begins to turn round in the hands of the relative who is deputed to hold it, it is regarded as a sign that the soul of the [[moribund]] has returned (see [[automatism]]).
81335
81336 More important perhaps than all these phenomena, because more regular and normal, was the daily period of [[sleep]] with its frequent fitful and incoherent ideas and images. The mere immobility of the body was sufficient to show that its state was not identical with that of waking. When, in addition, the sleeper awoke to give an account of visits to distant lands, from which, as modern [[psychic]]al investigations suggest, they may even have brought back veridical details, the conclusion must have been irresistible that in sleep something journeyed forth, which was not the body (see [[astral travel]]). In a minor degree, revival of [[memory]] during sleep and similar phenomena of the sub-conscious life may have contributed to the same result. [[Dreams]] are sometimes explained in animist cultures as journeys performed by the sleeper, sometimes as visits paid by other persons, by animals or objects to the sleeper. [[Hallucinations]], possibly more frequent in the lower stages of culture, must have contributed to fortify this interpretation, and the animistic theory in general. Seeing the [[phantasm]]ic figures of friends at the moment when they were, whether at the point of death or in good health, many miles distant, must have led people irresistibly to the [[dualistic theory]]. But hallucinatory figures, both in dreams and waking life, are not necessarily those of the living. From the reappearance of dead friends or enemies, primitive man was inevitably led to the belief that there existed an incorporeal part of man, which survived the dissolution of the body. The soul was conceived to be a facsimile of the body, sometimes no less material, sometimes more subtle but yet material, sometimes altogether impalpable and intangible.
81337
81338 If the phenomena of dreams were, as suggested above, of great importance for the development of animism, the belief, which must originally have been a doctrine of human [[psychology]], cannot have failed to expand speedily into a general [[philosophy]] of [[nature]]. Not only human beings but animals and objects are seen in dreams and the conclusion would be that they too have souls. The same conclusion may have been reached by another line of argument.
81339
81340 [[Folk psychology]] posited a spirit in a person to account, amongst other things, for their actions. A natural explanation of the changes in the external world would be that they are due to the operations and volitions of spirits.
81341
81342 But apart from considerations of this sort, it is probable that animals must have been regarded as possessing souls, early in the history of animistic beliefs. We may assume that man attributed a soul to the beasts of the field almost as soon as he claimed one for himself.
81343
81344 The animist may attribute to animals the same sorts of ideas, the same soul, the same mental processes as himself, which may also be associated with greater power, cunning, or magical abilities. Dead animals are sometimes credited with a knowledge of how their remains are treated, potentially with the power to take vengeance on the hunter if he is disrespectful.
81345
81346 It is not surprising to find that many peoples respect and even worship animals (see ''[[totem]]'' or ''[[animal worship]]''), often regarding them as relatives. It is clear that widespread respect was paid to animals as the abode of dead ancestors, and much of the [[cult]]s to dangerous animals is traceable to this principle; though we need not attribute an animistic origin to it.
81347
81348 With the rise of [[species]], [[deities]] and the cult of individual animals, the path towards [[anthropomorphization]] and [[polytheism]] is opened and the respect paid to animals tended to be reduced or lost entirely, especially in its strict animistic character.
81349
81350 ==Plant souls==
81351 Just as human souls are assigned to animals, so too are [[tree]]s and [[plant]]s often credited with souls, both human and animal in form. All over the world [[agricultural]] peoples practise elaborate ceremonies explicable, as [[Wilhelm Mannhardt]] has shown, on animistic principles.
81352
81353 In Europe the [[John Barleycorn | corn spirit]] sometimes [[immanent]] in the crop, sometimes a presiding [[deity]] whose life does not depend on that of the growing corn, is conceived in some districts in the form of an [[ox]], [[hare]] or [[cock]], in others as an old man or woman. In the [[East Indies]] and Americas the [[rice]] or [[maize mother]] is a corresponding figure; in [[classical Europe]] and the [[Eastern world |East]] we have in [[Ceres]] and [[Demeter]], [[Adonis]] and [[Dionysus]], and other deities, vegetation gods whose origin we can readily trace back to the rustic corn spirit.
81354
81355 [[Forest]] [[tree]]s, no less than [[cereal]]s, may have their indwelling spirits. The [[faun]]s and [[satyr]]s of classical literature were [[goat]]-footed; in [[Russia]], the [[tree spirit]] of the Russian peasantry takes the form of a [[goat]]. In [[Bengal]] and the [[East Indies]] woodcutters endeavour to propitiate the spirit of the tree which they cut down. In many parts of the world trees are regarded as the abode of the spirits of the dead. Just as a process of [[syncretism]] has given rise to cults of animal gods, tree spirits tend to become detached from the trees, which are thenceforward only their abodes. Here again animism has begun to pass into [[polytheism]].
81356
81357 == Object souls ==
81358 Some cultures do not make a distinction between [[animate]] and inanimate objects. Natural phenomenon, [[geographic]] features, everyday objects, and manufactured articles may also be attributed with souls.
81359
81360 In the north of Europe, in [[ancient Greece]], in [[China]], the water or river spirit is [[horse]] or [[bull]]-shaped. The water monster in serpent shape is even more widely found, but it is less strictly the spirit of the water. The spirit of syncretism manifests itself in this department of animism too, turning the immanent spirit into the presiding [[djinn]] or [[local god]] of later times.
81361
81362 == Animism and death==
81363 In many parts of the world it is held that the human body is the seat of more than one soul. On the island of [[Nias]] four are distinguished: the shadow and the intelligence, which die with the body, a [[tutelary]] spirit, termed ''begoe'', and a second spirit, which is carried on the head. Similar ideas are found among the [[Euahlayi]] of southeast Australia, the [[Dakota]]s and many other tribes. Just as in Europe the [[ghost]] of a dead person is held to haunt the churchyard or the place of death, so do other cultures assign different abodes to the multiple souls with which they credit man. Of the four souls of a Dakota, one is held to stay with the corpse, another in the village, a third goes into the air, while the fourth goes to the land of souls, where its lot may depend on its rank in this life, its [[sex]], mode of death or sepulture, on the due observance of [[funeral]] ritual, or many other points.
81364
81365 From the belief in the survival of the dead arose the practice of offering food, lighting fires, etc., at the grave, at first, maybe, as an act of friendship or filial piety, later as an act of [[ancestor worship]]. The simple offering of food or shedding of blood at the grave develops into an elaborate system of [[sacrifice]]. Even where ancestor worship is not found, the desire to provide the dead with comforts in the future life may lead to the sacrifice of wives, slaves, animals, and so on, to the breaking or burning of objects at the grave or to the provision of the [[Charon (mythology)|ferryman]]'s toll: a coin put in the mouth of the corpse to pay the traveling expenses of the soul. But all is not finished with the passage of the soul to the land of the dead. The soul may return to avenge its death by helping to discover the murderer, or to wreak vengeance for itself. There is a widespread belief that those who die a violent death become malignant spirits and endanger the lives of those who come near the haunted spot. The woman who dies in childbirth becomes a [[pontianak]], and threatens the life of human beings. People resort to magical or religious means of repelling their spiritual dangers.
81366
81367 == Evil spirits ==
81368 Side by side with the doctrine of separable souls with which we have so far been concerned, exists the belief in a great host of unattached spirits. These are not immanent souls that have become detached from their abodes, but have instead every appearance of independent spirits.
81369
81370 These spirits are at first mainly malevolent. Side by side with them we find the spirits of the dead as hostile beings. At a higher stage the spirits of dead kinsmen are no longer unfriendly, nor yet all non-human spirits. As [[fetish]]es, [[nagual]]s (see [[totem]]), [[familiar spirit]]s, gods or [[demi-gods]] (see also [[demonology]]), they enter into relations with man. On the other hand there still subsists a belief in innumerable evil spirits, which manifest themselves in the phenomena of [[possession]], [[lycanthropy]], disease, and so on. The fear of evil spirits has given rise to ceremonies of expulsion of evils (see [[exorcism]]), designed to banish them from the community.
81371
81372 == Differences between animism and religion ==
81373 Animism is commonly described as the most primitive form of [[religion]], but properly speaking it is not a religion at all. Animism is in the first instance an explanation of phenomena rather than an attitude of mind toward the cause of them, a [[philosophy]] rather than a religion. The term may, however, be conveniently used to describe the early stage of religion in which people endeavour to set up relations between themselves and the unseen powers, conceived as spirits, but differing in many particulars from the gods of [[polytheism]]. As an example of this stage in one of its aspects may be taken the European belief in the corn spirit, which is, however, the object of magical rather than religious rites. Sir James G. Frazer, in ''The Golden Bough'', has thus defined the character of the animistic pantheon:
81374
81375 :''they are restricted in their operations to definite departments of nature; their names are general, not proper; their attributes are generic rather than individual; in other words, there is an indefinite number of spirits of each class, and the individuals of a class are much alike; they have no definitely marked individuality; no accepted traditions are current as to their origin, life and character.''
81376
81377 This stage of religion is well illustrated by the [[Native American (U.S.)|Native American]] custom of offering sacrifice to certain rocks, or whirlpools, or to the indwelling spirits connected with them. The rite is only performed in the neighbourhood of the object, it is an incident of a [[canoe]] or other voyage, and is not intended to secure any benefits beyond a safe passage past the object in question. The spirit to be propitiated has a purely local sphere of influence, and powers of a very limited nature. Animistic in many of their features too are the temporary gods of [[fetishism]], naguals or familiars, [[Genie | genii]] and even the dead who receive a cult. With the rise of a belief in departmental gods comes the age of polytheism. The belief in [[elemental spirits]] may still persist, but they fall into the background and receive no cult.
81378
81379 == Animism and the origin of religion ==
81380 Two animistic theories of the origin of [[religion]] have been put forward. The one, often termed the &quot;ghost theory,&quot; mainly associated with the name of [[Herbert Spencer]], but also maintained by [[Grant Allen]], refers the beginning of religion to the cult of dead human beings.
81381
81382 The other, put forward by Dr. E. B. [[Tylor]], makes the foundation of all religion animistic, but recognizes the non-human character of polytheistic gods. Although ancestor-worship, or, more broadly, the [[cult]] of the dead, has in many cases overshadowed other cults or even extinguished them, we have no warrant, even in these cases, for asserting its priority, but rather the reverse. In the majority of cases the pantheon is made up by a multitude of spirits in human, sometimes in animal form, which bear no signs of ever having been incarnate. [[Sun god]]s and [[moon goddess]]es, gods of fire, wind and water, gods of the sea, and above all gods of the sky, show no signs of having been ghost gods at any period in their history. They may, it is true, be associated with ghost gods. In Australia it cannot even be asserted that the gods are spirits at all, much less that they are the spirits of dead men. They are simply magnified magicians, super-men who have never died. We have no ground, therefore, for regarding the cult of the dead as the origin of religion in this area. This conclusion is the more probable, as ancestor-worship and the cult of the dead generally cannot be said to exist in Australia.
81383
81384 The more general view that polytheistic and other [[gods]] are the elemental and other spirits of the later stages of animistic creeds, is equally inapplicable to Australia, where the belief seems to be neither animistic nor even animatistic in character. But we are hardly justified in arguing from the case of Australia to a general conclusion as to the origin of religious ideas in all other parts of the world. It is perhaps safest to say that the science of religions has no data on which to go, in formulating conclusions as to the original form of the objects of religious emotion. It must be remembered that not only is it very difficult to get precise information of the subject of the religious ideas of people of some other cultures, perhaps for the simple reason that the ideas themselves are far from precise, but also that, as has been pointed out above, the conception of spiritual often approximates very closely to that of material. Where the soul is regarded as no more than a finer sort of matter, it will obviously be far from easy to decide whether the gods are spiritual or material. Even, therefore, if we can say that at the present day the gods are entirely spiritual, it is clearly possible to maintain that they have been spiritualized ''pari passu'' with the increasing importance of the animistic view of nature and of the greater prominence of [[Eschatology | eschatological]] beliefs. The animistic origin of religion is therefore not proven.
81385
81386 == Animism and mythology ==
81387 Little need be said on the relation of animism and [[mythology]]. While a large part of mythology has an animistic basis, it is possible to believe, e.g. in a sky world, peopled by corporeal beings, as well as by spirits of the dead. The latter may even be entirely absent. The mythology of the Australians relates largely to corporeal, non-spiritual beings. Stories of transformation, [[deluge (mythology)]] and doom myths, or myths of the origin of death, have not necessarily any animistic basis. At the same time, with the rise of ideas as to a future life and spiritual beings, this field of mythology is immensely widened, though it cannot be said that a rich mythology is necessarily genetically associated with or combined with belief in many spiritual beings.
81388
81389 == Animism in philosophy ==
81390 The term &quot;animism&quot; has been applied to many different philosophical systems. It is used to describe [[Aristotle]]'s view of the relation of soul and body held also by the [[Stoics]] and [[Scholastics]]. On the other hand [[monadology]] ([[Leibniz]]) has also been termed animistic. The name is most commonly applied to [[vitalism]], a view mainly associated with [[Georg Ernst Stahl]] and revived by [[F. Bouillier]] ([[1813]]-[[1899]]), which makes life, or life and mind, the directive principle in evolution and growth, holding that all cannot be traced back to chemical and mechanical processes, but that there is a directive force which guides energy without altering its amount. An entirely different class of ideas, also termed animistic, is the belief in the world soul, held by [[Plato]], [[Schelling]] and others.
81391
81392 == Tylor ==
81393 Tylor argued that non-Western societies relied on animism to explain why things happen. He further argued that animism is the earliest form of religion, and reveals that humans developed religions in order to explain things. At the time that Tylor wrote, this theory was politically radical because it made the claim that non-Western peoples and in particular, non-Christian &quot;heathens&quot;, in fact do have religion. However, since the publication of ''Primitive Culture'', Tylor's theories have come under criticism from three quarters. First, some have questioned whether the beliefs of diverse peoples living in different parts of the world and not communicating with one another can be lumped together as one kind of religion. Second, some have questioned whether the basic function of religion really is to &quot;explain&quot; the universe (critics like Marrett and [[Emil Durkheim]] argued that religious beliefs have emotional and social, rather than intellectual, functions). Finally, many now see Tylor's theories as [[ethnocentric]]. Not only was he imposing a contemporary and Western view of religion (that it explains the inexplicable) on non-Western cultures, he was also telling the story of a progression from religion (which provides poor explanations) to [[science]] (which provides good explanations) (see [[cultural evolution]]).
81394
81395 ==List of phenomena believed to lead to animism==
81396 Lists of phenomena from the contemplation of which &quot;the savage&quot; was led to believe in animism have been given by Sir [[E. B. Tylor]], [[Herbert Spencer]], [[Andrew Lang]] and others; an animated controversy arose between the former as to the priority of their respective lists. Among these phenomena are:
81397
81398 * [[Trance]]
81399 * [[Unconsciousness]]
81400 * [[Sickness]]
81401 * [[Death]]
81402 * [[Clairvoyance]]
81403 * [[Dream]]s
81404 * [[Apparition]]s of the [[dead]]
81405 * [[Wraith (entity)|Wraith]]s
81406 * [[Hallucination]]s
81407 * [[Echo]]es
81408 * [[Shadow]]s
81409 * [[Reflection]]s
81410
81411 == The new animism ==
81412 In an article entitled &quot;Revisiting Animism&quot;, Nurit Bird-David builds on the work of Irving Hallowell by discussing the animist worldview and lifeway of the Nayaka of India. Hallowell had learnt from the Ojibwa of southern central Canada that the humans are only one kind of 'person' among many. There are also 'rock persons', 'eagle persons' and so on. Hallowell and Bird-David discuss the ways in which particular indigenous cultures know how to relate to particular persons (individuals or groups). There is no need to talk of metaphysics or impute non-empirical 'beliefs' in discussing animism. What is required is an openness to consider that humans are neither separate from the world nor distinct from other kinds of being in most significant ways. The new animism also makes considerably more sense of attempts to understand 'totemism' as an understanding that humans are not only closely related to other humans but also to particular animals, plants, etc. It also helps by providing a term for the communities among whom shamans work: they are animists not 'shamanists'. Shamans are employed among animist communities to engage or mediate with other-than-human persons in situations that would be fraught or dangerous for un-initiated, untrained or non-skillful people. The -ism of 'animism' should not suggest an overly systematic approach (but this is true of the lived reality of most religious people), but it is preferable to the term ''[[shamanism]]'' which has led many commentators to construct an elaborate system out of the everyday practices of animists and those they employ to engage with other-than-human persons.
81413 The new animism is most fully discussed in a recent book by Graham Harvey, ''Animism: Respecting the Living World''. But it is also significant in the 'animist realist' novels now being written among many indigenous communities worldwide. The term 'animist realism' was coined by Harry Garuba, a Nigerian scholar of literature, in comparison with 'magical realism' that describes works such as Marquez's ''[[One Hundred Years of Solitude]]''.
81414
81415 == See also ==
81416 * [[hylozoism|Hylozoism]]
81417 * [[Midewiwin]]
81418 * [[Monism]]
81419 * [[Panentheism]]
81420 * [[panpsychism|Panpsychism]]
81421 * [[Pantheism]]
81422
81423 ==Suggested Reading==
81424 [[The Story of B]] By [[Daniel Quinn]]
81425
81426 == References ==
81427 * Bird-David, Nurit. 1991. &quot;Animism Revisited: Personhood, environment, and relational epistemology&quot;, ''Current Anthropology'' 40, pp. 67-91. Reprinted in Graham Harvey (ed.) 2002. ''Readings in Indigenous Religions'' (London and New York: Continuum) pp.72-105.
81428 * Hallowell, A. Irving. &quot;Ojibwa ontology, behavior, and world view&quot; in Stanley Diamond (ed.) 1960. ''Culture in History'' (New York: Columbia University Press). Reprinted in Graham Harvey (ed.) 2002. ''Readings in Indigenous Religions'' (London and New York: Continuum) pp.17-49.
81429 * Harvey, Graham. 2005. ''Animism: Respecting the Living World'' (London: Hurst and co.; New York: Columbia University Press; Adelaide: Wakefield Press).
81430 * Thomas, Northcote Whitbridge. Animism. ''[[1911 EncyclopÃĻdia Britannica]]''
81431
81432 ==External links==
81433 * [http://www.starstuffs.com/animal_totems/ Animism and Totem Spirit Animals: Discovering Animal Totems, Dictionaries, Feathers]
81434 *[http://www.ishmael.org/interaction/qanda/qanda.cfm Ishmael.org FAQ] A database which includes many questions and answers regarding animism (and which conflicts greatly with the definition of the 'old' animism above while illustrating one version of the 'new' animism quite well) on the website of [[Daniel Quinn]], author of My Ishmael. Choose ''Animism'' from ''Topic''.
81435 *[http://www.animism.org.uk] is a new website devoted to the discussion of the new animism. It arises from the work of Graham Harvey whose book ''Animism: Respecting the Living World'' discusses the whole topic, its benefits and problems, in considerable detail.
81436 *[http://people.freenet.de/ishmael/animism.html] A personal view of animism
81437 *[http://www.actionintl.org/action/content/view/223/212/] Animism in Zambia
81438
81439 [[Category:1911 Britannica]]
81440 [[Category:Animism]]
81441 [[Category:Religious faiths, traditions, and movements]]
81442
81443 [[ca:Animisme]]
81444 [[da:Animisme]]
81445 [[de:Animismus]]
81446 [[es:Animismo]]
81447 [[et:Animism]]
81448 [[fi:Animismi]]
81449 [[fr:Animisme]]
81450 [[fy:Animisme]]
81451 [[he:אנימיזם]]
81452 [[ia:Animismo]]
81453 [[id:Animisme]]
81454 [[is:AndatrÃē]]
81455 [[it:Animismo]]
81456 [[ja:ã‚ĸニミã‚ēム]]
81457 [[li:Animisme]]
81458 [[ms:Animisme]]
81459 [[nl:Animistische religie]]
81460 [[oc:Animisme]]
81461 [[pl:Animizm]]
81462 [[sl:Animizem]]
81463 [[sv:Animism]]
81464 [[uk:АĐŊŅ–ĐŧŅ–СĐŧ]]</text>
81465 </revision>
81466 </page>
81467 <page>
81468 <title>Antonio Vivaldi</title>
81469 <id>1425</id>
81470 <revision>
81471 <id>41668136</id>
81472 <timestamp>2006-02-28T23:17:40Z</timestamp>
81473 <contributor>
81474 <username>Blue-014</username>
81475 <id>742110</id>
81476 </contributor>
81477 <minor />
81478 <text xml:space="preserve">:''For the two explorers who sailed into the Atlantic in 1291, see [[Vandino and Ugolino Vivaldi]].''
81479
81480 [[Image:Vivaldi.jpg|right|thumb|210px|Unconfirmed portrait of Antonio Vivaldi]]
81481
81482 '''Antonio Lucio Vivaldi''' ([[March 4]], [[1678]] &amp;ndash; [[July 28]], [[1741]]), nicknamed '''Il Prete Rosso''', meaning &quot;The Red Priest,&quot; was an [[Italy|Italian]] priest and [[baroque music]] composer.
81483
81484 ==Biography==
81485 Antonio Lucio Vivaldi was born on [[March 4]], [[1678]] in [[Venice]], [[Italy]]. He was baptized immediately at his home by the midwife due to ''danger of death''. It is not determined what that means but it probably refered to an earthquake that shook the city that day or the infant's poor health. Vivaldi's official church baptism didn't take place until 2 months later. His father, Giovanni Battista, a [[barber]] before becoming a professional [[violinist]], taught him to play violin at first, then toured Venice playing violin with his father. Vivaldi had a medical problem which he called the ''tightening of the chest'' ([[asthma]]). His medical problem, however did not prevent him from learning to play the violin, compose and take part in any musical activities. At the age of 15 ([[1693]]) he began studying to become a priest. In [[1703]], 10 years later, at the age of 25, Vivaldi was ordained as a priest, soon nicknamed ''Il Prete Rosso'', &quot;The Red Priest,&quot; probably because of his red hair.
81486
81487 Not long after, in [[1704]], he was given a dispensation from celebrating the [[Holy Mass]] because of his ill-health (he apparently suffered from [[asthma]], a breathing disorder) and in late [[1706]] he withdrew from the priesthood and became ''maestro di violino'' at an orphanage for girls called the [[Pio Ospedale della Pietà]] in [[Venice]]. Shortly after his appointment, the orphans began to gain appreciation and esteem abroad too; Vivaldi wrote for them most of his concertos, cantatas, and sacred music. In [[1705]] the first collection (''[[raccolta]]'') of his works was published. Many others would follow. At the orphanage he covered several different duties, with the only interruption for his many travels. In [[1709]], he was let go for economic reasons, but in [[1711]], he was offered the job again and in [[1713]] became responsible for the musical activity of the institute.
81488
81489 Vivaldi was promoted to ''maestro de' concerti'' in [[1716]]. It was during these years that Vivaldi wrote much of his music, including many operas and concertos. In [[1718]], Vivaldi began to travel. Despite his frequent travels, the Pietà paid him to write two concertos a month for the orchestra and to rehearse with them at least four times when in [[Venice]]. The Pietà's records show that he was paid for 140 concertos between [[1723]] and [[1729]]. Not so well known is the fact that most of his repertoire was re-discovered only in the first half of the [[20th century]] in [[Turin]] and [[Genoa]], but was published in the second half. Vivaldi's music is innovative, breaking a consolidated tradition in schemes; he gave brightness to the formal and the rhythmic structure of the concerto, repeatedly looking for [[harmonic]] contrasts, and invented innovative melodies and themes. Moreover, Vivaldi was able to compose non-academic music, particularly meant to be appreciated by the wide public, and not only by an intellectual minority. The joyful appearance of his music reveals in this regard a transmissible joy of composing. These are among the causes of the vast popularity of his music. This popularity soon made him famous also in countries like [[France]], at the time very independent in its musical taste.
81490
81491 Vivaldi is considered one of the composers who brought [[Baroque Music|Baroque music]] (with its typical contrast among heavy sonorities) to evolve into a classical style. [[Johann Sebastian Bach]] was deeply influenced by Vivaldi's concertos and arias (recalled in his [[Passion]]s and [[cantata]]s). Bach transcribed a number of Vivaldi's concertos for solo keyboard, along with a number for orchestra, including the famous Concerto for Four Violins and Violoncello, Strings and Continuo ([[Ryom Verzeichnis|RV]] 580). However, not all musicians have shown the same enthusiasm: [[Igor Stravinsky]] provocatively said that Vivaldi had not written hundreds of concertos, but one concerto, hundreds of times. Despite his priestly status, he is supposed to have had possible love affairs, one of which was with the [[singer]] [[Anna Giraud]], with whom he was suspected of reusing materials from old Venetian operas, which he only slightly adapted to the vocal capabilities of his protegÊe. This business caused him some troubles with other musicians, like [[Benedetto Marcello]], who wrote a [[pamphlet]] against him. There is no concrete evidence, however, that links Vivaldi romantically to anyone.
81492
81493 Vivaldi's life, like those of many composers of the time, ended in poverty. His compositions no longer held the high esteem they once did in Venice; changing musical tastes quickly made them outmoded, and Vivaldi, in response, chose to sell off sizeable numbers of his manuscripts at paltry prices to finance a migration to [[Vienna]]. Reasons for Vivaldi's departure from Venice are unclear, but it seems likely that he wished to meet [[Charles VI, Holy Roman Emperor|Charles VI]], who adored his compositions (Vivaldi dedicated ''La Cetra'' to Charles in [[1727]]), and take up the position of royal composer in his Imperial Court. But shortly after Vivaldi's arrival at Vienna, Charles died. This tragic stroke of bad luck left the composer without royal protection and a source of income. Vivaldi had to sell off more manuscripts to make ends meet, and eventually died not long after, in [[1741]]. He was given an unmarked pauper's grave (the assumption that the young [[Joseph Haydn]] sang in the choir at Vivaldi's burial was based on the mistranscription of a primary source and has been proven wrong). Equally unfortunate, his music was to fall into obscurity until the [[20th century]]. His burial spot is next to the Karlskirche in Vienna, at the site of the Technical Institute. The house he lived in while in Vienna was torn down. In its place now stands the Hotel Sacher. Memorial plaques have been placed at both locations, as well as a Vivaldi &quot;star&quot; in the Viennese Musikmeile and a monument at the Rooseveltsplatz.
81494
81495 ==Posthumous reputation==
81496 Vivaldi remained known for his published concerti, and largely ignored, even after the resurgence of interest in Bach, pioneered by [[Felix Mendelssohn|Mendelssohn]]. The resurrection of Vivaldi's unpublished works in the 20th century is mostly thanks to the efforts of [[Alfredo Casella]], who in [[1939]], organised the now historic ''Vivaldi Week'', in which the rediscovered ''Gloria in excelsis'' ([[Ryom Verzeichnis|RV]] 589) was first heard again. Discoveries continue to be made: a setting of ''Nisi Dominus'' (RV 803) was discovered as recently as 2003, in a German library among manuscripts of [[Galuppi]]; it was recorded in 2005. Following World war II Vivaldi's compositions have enjoyed almost universal success, and the advent of [[historically informed performance]]s has all but catapulted him to stardom once again. In [[1947]], the Venetian businessman [[Antonio Fanna]] founded the [[Istituto Italiano Antonio Vivaldi]], with the composer [[Gian Francesco Malipiero]] as its artistic director, with the purpose of promoting Vivaldi's music and putting out new editions of his works.
81497
81498 Three films about Antonio Vivaldi are in production as of [[2005]]. One of them, with the working title ''Vivaldi'', will be directed by [[Catherine Hardwicke]] for Emagine Entertainment, while the second could have [[Ashley MacIsaac]] in the title role. A third, made by French/Italian producers with Stefano Dionisi as Vivaldi and Michel Serrault in the main roles, is scheduled to be completed in [[2005]].
81499
81500 Vivaldi's music, together with [[Wolfgang Amadeus Mozart|Mozart]]'s, [[Pyotr Ilyich Tchaikovsky|Tchaikovsky]]'s and [[Arcangelo Corelli|Corelli]]'s, has been included in the theories of [[Alfred Tomatis]] on the effects of music on human behaviour, and used in [[music therapy]].
81501
81502 The 11-movement &quot;Dixit Dominus&quot; for choir and soloists, uncovered in the German city of Dresden in early [[2005]], will be played there in full in [[2006]].
81503
81504 He was a prolific [[composer]] and is most well-known for composing:
81505
81506 *over 500 [[Concerto|concertos]] (210 of which were for violin or violoncello ''solo''),
81507 *46 [[opera]]s,
81508 *sinfonias,
81509 *73 sonatas,
81510 *[[chamber music]] (even if some sonatas for [[flute]], as ''Il Pastor Fido'', have been erroneously attributed to him, but were composed by [[ChÊdeville]]) and
81511 *[[sacred music]] (&quot;oratorio&quot; ''Juditha Triumphans'', written for Pietà, two ''Glorias'', the ''Stabat Mater'', the ''Nisi Dominus'', the ''Beatus Vir'', the ''Magnificat'', the ''Dixit Dominus'' and others);
81512 *his most famous work is perhaps [[1723]]'s ''[[The Four Seasons (Vivaldi)|Le Quattro Stagioni]]'' (The Four Seasons). In essence, it resembled an early example of a [[tone poem]], where he attempted to capture all the moods of the four seasons without the use of [[percussion instrument|percussion]] to dramatize the effects he sought to portray.
81513
81514 ==Major works==
81515 ===Published works in his lifetime===
81516 * Opus 1, 12 Sonatas for 2 violins and basso continuo ([[1705]])
81517 * Opus 2, 12 Sonatas for violin and basso continuo ([[1709]])
81518 * Opus 3, L'estro armonico (Harmonic inspiration), 12 concertos for various combinations. Best known concerti are No. 6 in A minor for violin, No. 8 in A minor for two violins, and No. 10 in B minor for 4 violins ([[1711]])
81519 * Opus 4, La stravaganza (The extraordinary), 12 violin concertos (c. [[1714]])
81520 * Opus 5, (2nd part of Opus 2), 4 sonatas for violin and 2 sonatas for 2 violins and basso continuo ([[1716]])
81521 * Opus 6, 6 violin concertos (1716-[[1721|21]])
81522 * Opus 7, 2 oboe concertos and 10 violin concertos (1716-[[1721|21]])
81523 * Opus 8, Il cimento dell'armonia e dell'inventione (The Contest between Harmony and Invention), 12 violin concertos, the first 4, in E, G minor, F, and F minor being known as The Four Seasons ([[The Four Seasons (Vivaldi)|Le quattro stagioni]]) ([[1725]])
81524 * Opus 9, La cetra (The lyre), 12 violin concertos and 1 for 2 violins ([[1727]])
81525 * Opus 10, 6 flute concertos (c. [[1728]])
81526 * Opus 11, 5 violin concertos, 1 oboe concerto, the second in E minor, RV 277, being known as &quot;Il favorito&quot; ([[1729]])
81527 * Opus 12, 5 violin concertos and 1 without solo ([[1729]])
81528 * Opus 13, Il pastor fido (The Faithful Sheperd), 6 sonatas for musette, viela, recorder, flute, oboe or violin, and basso continuo ([[1737]], spurious works by Nicolas ChÊdeville).
81529
81530 ===Operas===
81531 * [[Ottone in villa]] ([[1713]])
81532 * [[Orlando finto pazzo]] ([[1714]])
81533 * L'incoronazione di Dario ([[1716]])
81534 * Il Teuzzone ([[1719]])
81535 * [[Tito Manlio]] ([[1719]])
81536 * La verità in cimento ([[1720]])
81537 * Ercole sul Termodonte ([[1723]])
81538 * Il Giustino ([[1724]])
81539 * [[Dorilla in Tempe]] ([[1726]])
81540 * [[Farnace]] ([[1727]])
81541 * Orlando furioso ([[1727]])
81542 * Rosilena ed Oronta ([[1728]])
81543 * La fida ninfa ([[1732]])
81544 * [[L'Olimpiade]] ([[1734]])
81545 * Bajazet (Tamerlano) ([[1735]])
81546 * [[Griselda (Vivaldi)|Griselda]] ([[1735]])
81547 * Catone in Utica ([[1737]])
81548 * Rosmira ([[1738]])
81549
81550 === Concertos ===
81551 Vivaldi wrote hundreds of concerti for various instruments. Concertos not published in his lifetime include:
81552
81553 Mandolin:
81554 * Concerto in D major, RV 93
81555 * [[Concerto for Mandoline]] in C major, RV 425
81556 * Concerto for two Mandolins in G major, RV 532
81557
81558 Recorder:
81559 * Concerto in D major, RV 95, &quot;La pastorella&quot;
81560 * Concerto in C minor for Treble Recorder, RV 441
81561 * Concerto in F major for Treble Recorder, RV 442
81562 * Concerto in C major for Sopranino Recorder, RV 443
81563 * Concerto in C major for Sopranino Recorder, RV 444
81564 * Concerto in A minor for Sopranino Recorder, RV 445
81565
81566 Trumpet:
81567 * Concerto for Two Trumpets in C Major
81568
81569 ===Sacred Works===
81570 * Kyrie a 8, RV 587
81571 * Gloria, RV 588
81572 * [http://cftp.ist.utl.pt/~gonzalez/Music/Vivaldi.htm#Anchor-Glori-7342 Gloria], RV 588, RV 589
81573 * Credo, RV 591
81574 * Credo, RV 592
81575 * Domine ad adiuvandum me, RV 593
81576 * Beatus vir, RV 597
81577 * Credidi propter quod, RV 605
81578 * Laetatus sum, RV 607
81579 * Magnificat, RV 610
81580 * Stabat Mater, RV 621
81581 * Introduzione al Gloria, RV 639
81582 * Oratorio ''Juditha triumphans'', RV 644
81583 * Nisi Dominus, RV 803
81584
81585 ==Media==
81586 {{multi-listen start}}
81587 {{multi-listen item|filename=01 - Vivaldi Spring mvt 1 Allegro - John Harrison violin.ogg|title=Vivaldi Spring mvt 1: Allegro|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81588 {{multi-listen item|filename=02 - Vivaldi Spring mvt 2 Largo - John Harrison violin.ogg|title=Vivaldi Spring mvt 2: Largo|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81589 {{multi-listen item|filename=03 - Vivaldi Spring mvt 3 Allegro - John Harrison violin.ogg|title=Vivaldi Spring mvt 3: Allegro|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81590 {{multi-listen item|filename=04 - Vivaldi Summer mvt 1 Allegro non molto - John Harrison violin.ogg|title=Vivaldi Summer mvt 1: Allegro non molto|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81591 {{multi-listen item|filename=05 - Vivaldi Summer mvt 2 Adagio - John Harrison violin.ogg|title=Vivaldi Summer mvt 2: Adagio|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81592 {{multi-listen item|filename=06 - Vivaldi Summer mvt 3 Presto - John Harrison violin.ogg|title=Vivaldi Summer mvt 3: Presto|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81593 {{multi-listen item|filename=07 - Vivaldi Autumn mvt 1 Allegro - John Harrison violin.ogg|title=Vivaldi Autumn mvt 1: Allegro|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81594 {{multi-listen item|filename=08 - Vivaldi Autumn mvt 2 Adagio molto - John Harrison violin.ogg|title=Vivaldi Autumn mvt 2: Adagio molto|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81595 {{multi-listen item|filename=09 - Vivaldi Autumn mvt 3 Allegro - John Harrison violin.ogg|title=Vivaldi Autumn mvt 3: Allegro|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81596 {{multi-listen item|filename=10 - Vivaldi Winter mvt 1 Allegro non molto - John Harrison violin.ogg|title=Vivaldi Winter mvt 1: Allegro non molto|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81597 {{multi-listen item|filename=11 - Vivaldi Winter mvt 2 Largo - John Harrison violin.ogg|title=Vivaldi Winter mvt 2: Largo|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81598 {{multi-listen item|filename=12 - Vivaldi Winter mvt 3 Allegro - John Harrison violin.ogg|title=Vivaldi Winter mvt 3: Allegro|description=From Vivaldi's Four Seasons. John Harrison, Violin|format=[[Ogg]]}}
81599 {{multi-listen end}}
81600
81601 ==Selected historically informed performance ensembles specialising in Vivaldi==
81602 * ''[[Europa Galante]]''
81603 * ''[[Concerto Italiano]]''
81604 * ''[[Il Giardino Armonico]]''
81605
81606 ==References and further reading==
81607 * Eleanor Selfridge-Field ([[1994]]). ''Venetian Instrumental Music, from Gabrieli to Vivaldi.'' New York, Dover Publications. ISBN 0486281515
81608 * [[Manfred Bukofzer]] ([[1947]]). ''Music in the Baroque Era''. New York, W.W. Norton &amp; Co. ISBN 0393097455
81609
81610 ==External links==
81611 {{Commons|Antonio Vivaldi}}
81612 * [http://www.playbillarts.com/news/article/2341.html Two Vivaldi biopics may duel at the box office]
81613 * [http://news.yahoo.com/s/nm/20050809/en_nm/arts_vivaldi_australia_dc New Vivaldi work heard for first time in 250 years]
81614 * [http://www.pianoparadise.com/vivaldi.html Vivaldi biography and sheet music]
81615 * {{IckingArchive|idx=Vivaldi|name=Antonio Vivaldi}}
81616 * [http://www.kantoreiarchiv.de/archiv/choir_orchestra/gloria/vivaldi/ Gloria (Free sheet music)]
81617 * [http://www.kantoreiarchiv.de/archiv/choir_orchestra/magnificat/vivaldi/ Magnificat (Free sheet music)]
81618
81619 [[Category:1678 births|Vivaldi]]
81620 [[Category:1741 deaths|Vivaldi]]
81621 [[Category:Baroque composers|Vivaldi]]
81622 [[Category:Classical violinists|Vivaldi]]
81623 [[Category:Italian composers|Vivaldi]]
81624 [[Category:Natives of Venice|Vivaldi]]
81625 [[Category:Opera composers|Vivaldi]]
81626 [[Category:Roman Catholic priests|Vivaldi]]
81627
81628 [[ar:ØŖŲ†ØˇŲˆŲ†ŲŠŲˆ ŲŲŠŲØ§Ų„دŲŠ]]
81629 [[bg:АĐŊŅ‚ĐžĐŊиО ВиваĐģди]]
81630 [[ca:Antonio Vivaldi]]
81631 [[cs:Antonio Vivaldi]]
81632 [[cy:Antonio Vivaldi]]
81633 [[da:Antonio Vivaldi]]
81634 [[de:Antonio Vivaldi]]
81635 [[es:Antonio Vivaldi]]
81636 [[eo:Antonio VIVALDI]]
81637 [[eu:Antonio Vivaldi]]
81638 [[fr:Antonio Vivaldi]]
81639 [[gl:Antonio Vivaldi]]
81640 [[ko:ė•ˆí† ë‹ˆė˜¤ 비발디]]
81641 [[hr:Antonio Vivaldi]]
81642 [[id:Antonio Vivaldi]]
81643 [[is:Antonio Vivaldi]]
81644 [[it:Antonio Vivaldi]]
81645 [[he:אנטוניו ויוואלדי]]
81646 [[kn:ā˛†ā˛‚ā˛Ÿāŗ‹ā˛¨ā˛ŋā˛¯āŗŠ ā˛ĩā˛ŋā˛ĩā˛žā˛˛āŗā˛Ąā˛ŋ]]
81647 [[la:Antonius Vivaldi]]
81648 [[lt:Antonijus Vivaldis]]
81649 [[hu:Antonio Vivaldi]]
81650 [[nl:Antonio Vivaldi (componist)]]
81651 [[ja:ã‚ĸãƒŗトニã‚Ēãƒģヴã‚Ŗãƒ´ã‚ĄãƒĢデã‚Ŗ]]
81652 [[no:Antonio Vivaldi]]
81653 [[nn:Antonio Vivaldi]]
81654 [[pl:Antonio Vivaldi]]
81655 [[pt:Antonio Vivaldi]]
81656 [[ro:Antonio Vivaldi]]
81657 [[ru:ВиваĐģŅŒĐ´Đ¸, АĐŊŅ‚ĐžĐŊиО]]
81658 [[sl:Antonio Vivaldi]]
81659 [[sr:АĐŊŅ‚ĐžĐŊиО ВиваĐģди]]
81660 [[fi:Antonio Vivaldi]]
81661 [[sv:Antonio Vivaldi]]
81662 [[th:ā¸­ā¸˛ā¸™āš‚ā¸•ā¸™ā¸´āš‚ā¸­ ā¸§ā¸´ā¸§ā¸ąā¸Ĩā¸”ā¸´]]
81663 [[tr:Antonio Vivaldi]]
81664 [[uk:ВŅ–ваĐģŅŒĐ´Ņ– АĐŊŅ‚ĐžĐŊŅ–Đž]]</text>
81665 </revision>
81666 </page>
81667 <page>
81668 <title>Adrian II</title>
81669 <id>1426</id>
81670 <revision>
81671 <id>15899910</id>
81672 <timestamp>2002-02-25T15:51:15Z</timestamp>
81673 <contributor>
81674 <ip>Conversion script</ip>
81675 </contributor>
81676 <minor />
81677 <comment>Automated conversion</comment>
81678 <text xml:space="preserve">#REDIRECT [[Pope Adrian II]]
81679 </text>
81680 </revision>
81681 </page>
81682 <page>
81683 <title>Adrian III</title>
81684 <id>1427</id>
81685 <revision>
81686 <id>15899911</id>
81687 <timestamp>2002-02-25T15:51:15Z</timestamp>
81688 <contributor>
81689 <ip>Conversion script</ip>
81690 </contributor>
81691 <minor />
81692 <comment>Automated conversion</comment>
81693 <text xml:space="preserve">#REDIRECT [[Pope Adrian III]]
81694 </text>
81695 </revision>
81696 </page>
81697 <page>
81698 <title>Adrian</title>
81699 <id>1428</id>
81700 <revision>
81701 <id>38963719</id>
81702 <timestamp>2006-02-09T20:40:17Z</timestamp>
81703 <contributor>
81704 <username>Tedernst</username>
81705 <id>3700</id>
81706 </contributor>
81707 <comment>remove wikilink per [[MoS:DP]]</comment>
81708 <text xml:space="preserve">'''Adrian''' can refer to:
81709 *[[Adrian, Ontario]], Canada
81710 *[[Hurricane Adrian]], a 2005 tropical cyclone
81711 *[[Adrian helmet]], French Army steel helmet
81712 Popes:
81713 *[[Adrian I]], Pope from 772 to 795
81714 *[[Adrian II]], Pope from 867 to 872
81715 *[[Adrian III]], Pope from 884 to 885
81716 *[[Adrian IV]], Pope from 1154 to 1159
81717 *[[Adrian V]], Pope in 1276
81718 *[[Adrian VI]], Pope from 1522 to 1523
81719
81720 Other notable people:
81721 *[[Adrian of Nicomedia]], a saint martyred in the early 300s &lt;!-- 303 or 304, it says --&gt;
81722 *[[Adrian Dantley]] (born 1956), retired basketball player
81723 *[[Adrian Greenburg]] (1903-1959), costume designer best known for ''The Wizard of Oz''
81724 *[[Adrian Griffin]] (born 1974), professional basketball player
81725 *[[Adrian Lamo]] (born 1981) journalist and convicted computer hacker.
81726
81727 Places in the United States:
81728 *[[Adrian, Georgia]]
81729 *[[Adrian, Illinois]]
81730 *[[Adrian, Michigan]]
81731 *[[Adrian, Minnesota]]
81732 *[[Adrian, Missouri]]
81733 *[[Adrian, North Dakota]]
81734 *[[Adrian, New York]]
81735 *[[Adrian, Ohio]]
81736 *[[Adrian, Oregon]]
81737 *[[Adrian, Pennsylvania]]
81738 *[[Adrian, South Carolina]]
81739 *[[Adrian, Texas]]
81740 *[[Adrian, Virgin Islands]]
81741 *[[Adrian, Washington]]
81742 *[[Adrian, West Virginia]]
81743 *[[Adrian, Wisconsin]]
81744 *[[Adrian Township, Kansas]]
81745 *[[Adrian Township, Michigan]]
81746 *[[Adrian Township, Minnesota]]
81747 *[[Adrian Township, North Dakota]]
81748 *[[Adrian Township, South Dakota]]
81749
81750 {{disambig}}
81751
81752 [[de:Adrian]]
81753 [[el:ΑδĪÎšÎąÎŊĪŒĪ‚]]
81754 [[fr:Adrien]]
81755 [[hu:AdriÃĄn]]
81756 [[io:Adrian]]
81757 [[la:Adrianus]]
81758 [[pl:Adrian]]
81759 [[ru:АдŅ€Đ¸Đ°ĐŊ]]
81760 [[sk:AdriÃĄn]]
81761 [[sv:Adrian]]</text>
81762 </revision>
81763 </page>
81764 <page>
81765 <title>Adrian IV</title>
81766 <id>1429</id>
81767 <revision>
81768 <id>15899913</id>
81769 <timestamp>2002-02-25T15:51:15Z</timestamp>
81770 <contributor>
81771 <ip>Conversion script</ip>
81772 </contributor>
81773 <minor />
81774 <comment>Automated conversion</comment>
81775 <text xml:space="preserve">#REDIRECT [[Pope Adrian IV]]
81776 </text>
81777 </revision>
81778 </page>
81779 <page>
81780 <title>Adrian V</title>
81781 <id>1430</id>
81782 <revision>
81783 <id>15899914</id>
81784 <timestamp>2002-02-25T15:51:15Z</timestamp>
81785 <contributor>
81786 <ip>Conversion script</ip>
81787 </contributor>
81788 <minor />
81789 <comment>Automated conversion</comment>
81790 <text xml:space="preserve">#REDIRECT [[Pope Adrian V]]
81791 </text>
81792 </revision>
81793 </page>
81794 <page>
81795 <title>Adrian VI</title>
81796 <id>1431</id>
81797 <revision>
81798 <id>15899915</id>
81799 <timestamp>2002-02-25T15:51:15Z</timestamp>
81800 <contributor>
81801 <ip>Conversion script</ip>
81802 </contributor>
81803 <minor />
81804 <comment>Automated conversion</comment>
81805 <text xml:space="preserve">#REDIRECT [[Pope Adrian VI]]
81806 </text>
81807 </revision>
81808 </page>
81809 <page>
81810 <title>Adriatic sea</title>
81811 <id>1432</id>
81812 <revision>
81813 <id>15899916</id>
81814 <timestamp>2002-09-28T14:55:20Z</timestamp>
81815 <contributor>
81816 <username>Vicki Rosenzweig</username>
81817 <id>59</id>
81818 </contributor>
81819 <comment>reversing redirect</comment>
81820 <text xml:space="preserve">#REDIRECT [[Adriatic Sea]]</text>
81821 </revision>
81822 </page>
81823 <page>
81824 <title>Aar</title>
81825 <id>1433</id>
81826 <revision>
81827 <id>41034426</id>
81828 <timestamp>2006-02-24T17:03:44Z</timestamp>
81829 <contributor>
81830 <username>Mmounties</username>
81831 <id>779931</id>
81832 </contributor>
81833 <comment>Add Navigation Template</comment>
81834 <text xml:space="preserve">{{Otherusesabout|a river in Switzerland}}
81835 The '''Aar''' ([[German language|German]]: ''Aare'') is the longest [[river]] that both rises and ends entirely within [[Switzerland]].
81836
81837 Its total length from its source to its junction with the [[Rhine]] comprises about 291 km (181 miles), during which distance it descends 1,565m (5,135 feet), draining an area of [[1 E10 m²|17,620 km²]] (6,804 square miles).
81838
81839 The Aar rises in the great [[Aar glaciers]] in the [[Canton of Bern|canton of Bern]] and west of the [[Grimsel Pass]]. It runs east to the Grimsel [[Hospice]], and then northwestery through the [[Hasli]] valley, forming on the way the magnificent Handegg Waterfall, 46 m (151 feet), past [[Guttannen]], and piercing the limestone barrier of the Kirchet by a major [[Canyons of Switzerland|canyon]], before reaching [[Meiringen]], situated in a plain. A little past Mieringen, near [[Brienz]], the river expands into [[Lake Brienz]] where it becomes navigable. Near the west end of the lake it receives its first important affluent, the [[LÃŧtschine]]. It then runs across the swampy plain of the BÃļdeli between [[Interlaken]] and [[Unterseen]] before expanding once again into [[Lake Thun]].
81840
81841 [[Image:Aare_river_in_Bern.jpg|thumb|right|Aare in Bern]]
81842 Near the west end of Lake Thun, the river receives the waters of the [[Kander]], which has just been joined by the [[Simme]]. On flowing out of the lake it passes [[Thun]], and then circles a lofty bluff on which stands the town of [[Bern]]. The river soon changes its northwesterly flow for a due westerly direction, but after receiving the [[Sanne|Saane or Sarine]] it turns north until it nears Aarberg. There, in one of the major Swiss engineering feats of the [[19th century]] the river, which had previously rendered the countryside north of Bern a swampland through frequent floodings, was diverted by the [[Hagneck Canal]] into [[Lake Biel]]. From the upper end of the lake the river issues through the Nidau Canal and then runs east to [[BÃŧren]]. The lake absorbs huge amounts of eroded gravels and snowmelt thet the river brings from the Alps and the former swamps have become fruitful plains: they are known as the &quot;vegetable garden of Switzerland&quot;.
81843
81844 [[Image:Forest_route_near_Aare.jpg|thumb|left|Forest route near Aare]]
81845 From here the Aar flows northeast for a long distance, past the ambassador town [[Solothurn]] (below which the Grosse [[Emme]] flows in on the right), Aarburg (where it is joined by the Wigger), [[Olten]], [[Aarau]], near which is the junction with the Suhr, and Wildegg, where the Hallwiler Aa falls in on the right. A short distance further, below [[Brugg]] it receives first the [[Reuss River|Reuss]], and shortly afterwards the [[Limmat]]. It now turns due north, and soon becomes itself an affluent of the [[Rhine]], which it surpasses in volume when the two rivers unite at [[Koblenz, Switzerland|Coblenz (Switzerland)]], opposite [[Waldshut]], Germany.
81846
81847 ==List of [[Tributary|Tributaries]]==
81848 *[[Limmat]]
81849 **[[Linth]] (main tributary of [[Lake ZÃŧrich]])
81850 **[[Sihl]]
81851 *[[Reuss River]]
81852 **[[Kleine Emme]]
81853 **[[Sarner Aa]]
81854 **[[Engelberger Aa]]
81855 **[[Schächen]]
81856 **[[Furkareuss]]
81857 *[[Suhr]]
81858 *[[Wigger (river)|Wigger]]
81859 *[[Emme]]
81860 *[[Zihlkanal]]
81861 **[[Suze]]
81862 **[[Broye]]
81863 **[[Orbe]]
81864 *[[Saane]] (Sarine)
81865 **[[Sense]]
81866 *[[Kander]]
81867 **[[Simme]]
81868 **[[Allenbach]]
81869 *[[LÃŧtschine]]
81870
81871 ==External links==
81872 {{Wikisource1911Enc|Aar}}
81873 *[http://www.aareschlucht.ch/english/einfuehrung_e.htm Gorge of the Aar]
81874
81875 {{Template:Rhine Tributaries}}
81876
81877 [[Category:Rivers of Switzerland]]
81878 [[Category:Canyons of Switzerland]]
81879
81880 [[ca:Aar]]
81881 [[da:Aare]]
81882 [[de:Aare]]
81883 [[et:Aare jÃĩgi]]
81884 [[als:Aare]]
81885 [[es:Aar]]
81886 [[fr:Aar]]
81887 [[gl:Aar]]
81888 [[it:Aar (fiume)]]
81889 [[ja:ã‚ĸãƒŧãƒŦåˇ]]
81890 [[nl:Aare]]
81891 [[pl:Aare]]
81892 [[pt:Rio Aar]]
81893 [[ru:АаŅ€Đĩ (Ņ€ĐĩĐēĐ°)]]
81894 [[fi:Aar]]
81895 [[sv:Aare]]
81896 [[zh:é˜ŋ勒æ˛ŗ]]</text>
81897 </revision>
81898 </page>
81899 <page>
81900 <title>Abgar</title>
81901 <id>1434</id>
81902 <revision>
81903 <id>39929202</id>
81904 <timestamp>2006-02-16T22:10:23Z</timestamp>
81905 <contributor>
81906 <username>Sebb-fr</username>
81907 <id>896644</id>
81908 </contributor>
81909 <comment>fr</comment>
81910 <text xml:space="preserve">{{mergeto|Abgarus of Edessa}}
81911 '''Abgar''' or '''Agbar''' was the favored name among a dynasty of local rulers at [[Edessa, Mesopotamia|Edessa]] in northern Mesopotamia, the most famous of whom figured in the forged correspondence with Jesus, accepted as genuine in [[Eusebius of Caesarea]]'s ''Ecclesiastical History'' and extensively quoted. The story of the conversion of Abgar to Christianity is traditionally linked to [[Abgarus of Edessa|Abgar V]], but Walter Bauer made a case for the Abgarus who converted being Abgar IX.
81912
81913 ==References==
81914
81915 *[[Walter Bauer]], ''Orthodoxy and Heresy in Earliest Christianity'', 1934, (in English 1971) ([http://ccat.sas.upenn.edu/~humm/Resources/Bauer/bauer01.htm#FN1 On-line text]
81916 *Robert Eisenman, ''James the Brother of Jesus : The key to Unlocking the Secrets of Early Christianity and the Dead Sea Scrolls,'' 1997 (Viking Penguin). Especially thje section &quot;Thaddeus, Judas Thomas and the conversion of the [[Edessa, Mesopotamia|Osrhoeans]]&quot;, pp 189ff.
81917
81918 [[Category:Christian legend and folklore]]
81919
81920 [[ru:АйĐŗĐ°Ņ€]]
81921 [[fr:Abgar]]</text>
81922 </revision>
81923 </page>
81924 <page>
81925 <title>Abbotsford House</title>
81926 <id>1435</id>
81927 <revision>
81928 <id>42056735</id>
81929 <timestamp>2006-03-03T14:31:55Z</timestamp>
81930 <contributor>
81931 <ip>217.150.108.178</ip>
81932 </contributor>
81933 <text xml:space="preserve">[[Image:Abbotsford Morris edited.jpg|thumb|300px|right|Abbotsford in 1880.]]
81934 '''Abbotsford''' is a [[historic house]] in the region of [[Scottish Borders]] in the south of [[Scotland]], near [[Melrose, Scotland|Melrose]], on south bank of the [[River Tweed]]. It was formerly the residence of novelist [[Walter Scott]].
81935
81936 The nucleus of the estate was a small farm of 100 acres (0.4&amp;nbsp;km&amp;sup2;), called Cartleyhole, nicknamed Clarty (i.e., muddy) Hole, and bought by Scott on the lapse of his lease ([[1811]]) of the neighbouring house of Ashestiel. He at first built a small villa (now the western end of the house) and named it Abbotsford, creating the name from a ford near by where previously abbots of [[Melrose Abbey]] used to cross the river. Scott then built additions to the house and made it into a mansion, building into the walls many sculptured stones from ruined castles and abbeys of Scotland. In it he gathered a large library, and a collection of ancient [[furniture]], arms and armour, and other relics and curiosities, especially connected with [[Scottish history]].
81937
81938 The last and principal acquisition being that of Toftfield (afterwards named Huntlyburn), purchased in [[1817]]. The new house was then begun and completed in [[1824]].
81939
81940 The general ground-plan is a parallelogram, with irregular outlines, one side overlooking the Tweed; and the style is mainly the [[Scottish Baronial]]. Into various parts of the fabric were built relics and curiosities from historical structures, such as the doorway of the old Tolbooth in [[Edinburgh]].
81941
81942 Scott had only enjoyed his residence one year when ([[1825]]) he met with that reverse of fortune which involved the estate in debt. In [[1830]] the library and museum were presented to him as a free gift by the creditors. The property was wholly disencumbered in [[1847]] by Robert Cadell, the publisher, who cancelled the bond upon it in exchange for the family's share in the copyright of Sir Walter's works.
81943
81944 [[Image:Wfm abbotsford.jpg|thumb|right|300px|Abbotsford House (north elevation)]]
81945
81946 Scott's only son Walter did not live to enjoy the property, having died on his way from [[India]] in [[1847]]. Among subsequent possessors were Scott's son-in-law, J. G. Lockhart, J. R. Hope Scott, [[Q.C.]], and his daughter (Scott's great-granddaughter), the Hon. Mrs Maxwell Scott.
81947
81948 Abbotsford gave its name to the &quot;Abbotsford Club,&quot; a successor of the [[Bannatyne Club|Bannatyne]] and Maitland clubs, founded by W. B. D. D. Turnbull in [[1834]] in Scott's honour, for printing and publishing historical works connected with his writings. Its publications extended from [[1835]] to [[1864]].
81949
81950 The house continued to be occupied by Scott's descendents for several generations, and was opened to the public in recent times. However in 2005 it was announced that following the death of Dame Jean Maxwell Scott, the great, great, great grand-daughter of the writer the previous year, it was not possible for any family member to live at Abbotsford. [[Historic Scotland]] and the [[National Trust for Scotland]] are attempting to secure the house's future. However, Scottish Borders Council are considering an
81951 application by a property developer to build a housing estate on the opposite bank of the River Tweed from Abbotsford. If the council give this development the go ahead it will forever ruin the views Sir Walter enjoyed from his study. [http://www.timesonline.co.uk/newspaper/0,,173-1617987,00.html]
81952 [http://news.scotsman.com/scotland.cfm?id=2357362005]
81953 {{commonscat}}
81954 {{Wikisource1911Enc|Abbotsford}}
81955
81956 [[Category:Buildings and structures in the Scottish Borders]]
81957 [[Category:Scottish Borders history]]
81958 [[Category:Historic houses in Scotland]]
81959
81960 [[fr:Abbotsford (Écosse)]]
81961 [[pl:Abbotsford]]</text>
81962 </revision>
81963 </page>
81964 <page>
81965 <title>Abraham</title>
81966 <id>1436</id>
81967 <revision>
81968 <id>42096872</id>
81969 <timestamp>2006-03-03T20:30:04Z</timestamp>
81970 <contributor>
81971 <ip>60.50.201.218</ip>
81972 </contributor>
81973 <text xml:space="preserve">{{citation style}}
81974 {{Redirect|Abram}}
81975
81976 '''Abraham''' ('''אַבְרָהָם''' &quot;Father/Leader of many&quot;, (circa 1900 BCE) [[Standard Hebrew]] '''Avraham''', [[Tiberian Hebrew]] '''{{IPA|ĘžAḇrāhām}}'''; [[Arabic language|Arabic]] '''Ø§Ø¨ØąØ§Ų‡ŲŠŲ…''' '''{{IPA|IbrāhÄĢm}}'''; [[Geez]] አá‰Ĩርሃም '''{{IPA|ĘžAbrəham}}''') is regarded as a [[patriarch]] of Israelite religion, recognized by [[Judaism]] and later [[Christianity]], and a very important [[prophet]] in [[Islam]] as well as in the [[Baha'i Faith]]. Traditions regarding his life are given in the [[Book of Genesis]] and also in the [[Qur'an]].
81977
81978 Judaism, Christianity, and Islam are sometimes referred to as the &quot;[[Abrahamic religion]]s&quot;, because of the role Abraham plays in their holy books and beliefs. In the [[Hebrew Bible]] and the [[Qur'an]], Abraham is described as a patriarch blessed by God (the Jewish people called him &quot;Father Abraham&quot;), and [[promise]]d great things, father of the People of Israel through his son [[Isaac]]; the Muslims regard [[Ishmael]] as the father of the [[Arab]]s. In Islam, Abraham is considered to be one of the most important of the many prophets sent by God. In Christian belief, Abraham is a model of faith, and his intention to obey God by offering up Isaac is seen as a foreshadowing of God's offering of his son, [[Jesus]]. In Islamic belief, Abraham obeyed God by offering up Ishmael.
81979
81980 His original name was '''Abram''' ('''אַבְרָם''' &quot;High/Exalted father/leader&quot;, [[Standard Hebrew]] '''Avram''', [[Tiberian Hebrew]] '''ʾAḇrām'''); he was the foremost of the [[Bible|Biblical]] [[Patriarchs (Bible)|patriarchs]]. Later in life he went by the name Abraham. There is no contemporary mention of his life, and no source earlier than ''Genesis'' mentions him.
81981
81982 According to calculations derived from the [[Masoretic]] Hebrew [[Torah]], Abraham was born 1,948 years after creation and lived for 175 years, which would correspond to a life spanning from 1812 [[Common Era|BCE]] to 1637 [[Common Era|BCE]] by Jewish dating; or from 2166 [[Common Era|BCE]] to 1991 [[Common Era|BCE]] by other calculations. The figures in the [[book of Jubilees]] have Abraham born 1,876 years after creation, and 534 years before the Exodus; the ages provided in the [[Samaritan Pentateuch|Samaritan version of Genesis]] agree closely with those of Jubilees before the Deluge, but after the Deluge, they add roughly 100 years to each of the ages of the Patriarchs in the Masoretic Text, resulting in the figure of 2,247 years after creation for Abraham's birth. The Greek [[Septuagint]] version adds around 100 years to nearly ''all'' of the patriarchs' births, producing the even higher figure of 3,312 years after creation for Abraham's birth.
81983
81984 [[Image:Abraham.jpg|thumb|300px|right|&quot;Abraham Sacrificing Isaac&quot; by Laurent de LaHire, 1650]]
81985
81986 ==Abraham in Judaism==
81987 The account of his life is found in the Book of [[Genesis]], beginning in Chapter 11, at the close of a [[genealogy]] of the sons of [[Shem]] (which includes among its members [[Eber]], the [[eponym]] of the [[Hebrews]]).
81988
81989 His father [[Terah]] came from [[Ur]] of the [[Chaldea|Chaldees]], popularly identified only since 1927 (thanks to Sir [[Charles Woolley]]) with the ancient city in southern [[Mesopotamia]] which was under the rule of the Chaldeans &amp;mdash; although [[Josephus]], Islamic tradition and Jewish authorities like Maimonides all concur that [[Ur-Of-The-Khaldis]] was in Northern Mesopotamia (where is now [[Kurdistan]]) (Identified with [[Urartu]], [[Urfa]], and [[Kutha]] respectively). This is in keeping with the local tradition that Abraham was born in Urfa; or with the nearby [[Urkesh]], which others identify with &quot;Ur of the Chaldees&quot;. They also say &quot;Chaldees&quot; refers to a group of gods called [[Khaldis]]. Abram migrated to [[Harran]], apparently the classical [[Carrhae]], on a branch of the [[Habor]]. Thence, after a short stay, he, his wife [[Sarah|Sarai]], [[Lot (biblical)|Lot]] (the son of Abram's brother [[Haran]]), and all their followers, departed for [[Canaan]]. There are two cities possibly identifiable with the biblical Ur, neither far from Haran: Ura and Urfa, a northern Ur also being mentioned in tablets at [[Ugarit]], [[Nuzi]], and [[Ebla]]. These possibly refer to Ur, Ura, and Urau (See ''BAR'' January 2000, page 16). Moreover, the names of Abram's forefathers [[Peleg]], [[Serug]], [[Nahor]], and Terah, all appear as names of cities in the region of Haran (''Harper's Bible Dictionary'', page 373). [[Yahweh]] called Abram to go to &quot;the land I will show you&quot;, and promised to bless him and make him (though hitherto childless) a great nation. Trusting this promise, Abram journeyed down to [[Shechem]], and at the sacred tree (compare Gen. 25:4, [[Book of Joshua|Joshua]] 24:26, [[Book of Judges|Judges]] 9:6) received a new promise that the land would be given unto his seed (descendant or descendants). Having built an [[altar]] to commemorate the [[theophany]], he removed to a spot between [[Bethel]] and [[Ai (biblical)|Ai]], where he built another altar and called upon (i.e. invoked) the name of Yahweh (Gen. 12:1-9).
81990
81991 Here he dwelt for some time, until strife arose between his herdsmen and those of Lot. Abram thereupon proposed to Lot that they should separate, and allowed his nephew the first choice. Lot preferred the fertile land lying east of the [[Jordan River]], while Abram, after receiving another promise from Yahweh, moved down to the oaks of [[Mamre]] in [[Hebron]] and built an altar.
81992
81993 In the subsequent history of Lot and the destruction of [[Sodom and Gomorrah]], Abram appears prominently in a passage where he intercedes with Yahweh on behalf of Sodom, and is promised that if ten righteous men can be found therein, the city shall be preserved (18:16-33).
81994
81995 Driven by a [[famine]] to take refuge in [[Egypt]] (26:11, 41:57, 42:1), Abram feared lest his wife's beauty should arouse the evil designs of the [[Ancient Egypt|Egyptians]] and thus endanger his own safety, and alleged that Sarai was his sister. This did not save her from the [[Pharaoh]], who took her into the royal [[harem]] and enriched Abram with herds and servants. But when Yahweh &quot;plagued Pharaoh and his house with great [[Plagues of Egypt|plagues]]&quot; Abram and Sarai left Egypt.
81996
81997 There are two other parallel tales in Genesis of [[a wife confused for a sister]] (Genesis 20-21 and 26) describing a similar event at Gerar with the [[Philistine]] king Abimelech, though the latter attributing it to Isaac not Abraham.
81998
81999 As Sarai was infertile, God's promise that Abram's seed would inherit the land seemed incapable of fulfillment. His sole heir was his servant, who was over his household, a certain [[Eliezer of Damascus]] (15:2). Abraham is now promised as heir one of his own flesh. The passage recording the ratification of the promise is remarkably solemn (see [[Genesis]] 15).
82000
82001 Sarai, in accordance with custom, gave to Abram her Egyptian handmaid [[Hagar]], who, when she found she was with child, presumed upon her position to the extent that Sarai, unable to endure the reproach of barrenness (cf. the story of [[Hannah]], [[Books of Samuel|1 Samuel]] 1:6), dealt harshly with her and forced her to flee (16:1-14). Hagar is promised that her descendants will be too numerous to count, and she returns. Her son [[Ishmael]] thus was Abram's [[firstborn]] (and [[Islam]]ic doctrine holds that he was the rightful [[heir]]). Hagar and Ishmael were eventually driven permanently away from Abram by Sarah (chapter 21).
82002
82003 The name ''Abraham'' was given to Abram (and the name [[Sarah]] to Sarai) at the same time as the covenant of [[circumcision]] (chapter 17), which is practiced in [[Judaism]] and [[Islam]] to this day. At this time Abraham was promised not only many descendants, but descendants through Sarah specifically, as well as the land where he was living, which was to belong to his descendants. The covenant was to be fulfilled through [[Isaac]], though God promised that Ishmael would become a great nation as well. The covenant of circumcision (unlike the earlier promise) was two-sided and conditional: if Abraham and his descendants fulfilled their part of the covenant, Yahweh would be their God and give them the land.
82004
82005 The promise of a son to Abraham made Sarah &quot;laugh,&quot; which became the name of the son of promise, Isaac. Sarah herself &quot;laughs&quot; at the idea, when Yahweh appears to Abraham at Mamre (18:1-15) and, when the child is born, cries &quot;God hath made me laugh; every one that heareth will laugh at me&quot; (21:6).
82006
82007 In Genesis 18, Abraham pleads with God not to destroy [[Sodom]], and God agrees that he would not destroy the city if there were 50 righteous people in it, or 45, or 30, 20, even 10 righteous people. (Abraham's nephew [[Lot (biblical)|Lot]] had been living in Sodom.)
82008
82009 Some time after the birth of Isaac, Abraham was commanded by God to offer his son up as a sacrifice in the land of [[Moriah]]. Proceeding to obey, he was prevented by an [[angel]] as he was about to sacrifice his son, and slew a [[Domestic sheep|ram]] which he found on the spot. As a reward for his obedience he received another promise of a numerous seed and abundant prosperity (22). Then he returned to [[Beersheba]]. The [[Binding of Isaac|near sacrifice of Isaac]] is one of the most challenging, and perhaps [[ethics|ethic]]ally troublesome, parts of the Bible.
82010
82011 According to Josephus, Isaac is 25 years old at the time of the sacrifice or ''Akedah'', while the [[Talmud]]ic sages teach that Isaac is 37. In either case, Isaac is a fully grown man, old enough to prevent the elderly Abraham (who is 125 or 137 years old) from tying him up had he wanted to resist.
82012
82013 The primary interest of the narrative now turns to Isaac. To his &quot;only son&quot; (22:2, 12) Abraham gave all he had, and dismissed the sons of his concubines to the lands outside [[Canaan]]; they were thus regarded as less intimately related to [[Isaac]] and his descendants (25:1-6). See also: [[Midianites]], [[Sheba]].
82014
82015 Sarah died at an old age, and was buried in the [[Cave of Machpelah]] near [[Hebron]], which Abraham had purchased, along with the adjoining field, from [[Ephron the Hittite]] (Genesis 23). Here Abraham himself was buried. Centuries later the tomb became a place of [[pilgrimage]] and [[Muslim]]s later built an [[Islam]]ic [[mosque]] inside the site.
82016
82017 Abraham is considered the father of the Jewish nation, as their first Patriarch, and having a son (Isaac), who in turn begat [[Jacob]], and from there the [[Israelite|Twelve Tribes]]. To father the nation, God &quot;tested&quot; Abraham with ten tests, the greatest being his willingness to sacrifice his son Isaac. God promised the land of Israel to his children, and that is the first claim of the Jews to Israel.
82018
82019 Judaism ascribes a special trait to each Patriarch. Abraham's had kindness. Because of this, Judaism considers kindness to be an inherent Jewish trait.
82020
82021 Jewish tradition teaches the origins of Abraham's [[monotheism]]. His father Terah owned a store that sold idols. Abraham, at the age of three, started to question their authenticity. This culminated in Abraham destroying some idols.
82022
82023 Abraham was then brought to the king, and sentenced to death, along with his brother Haran, unless they recanted their position. Abraham did not, and was thrown into a fire. When Abraham exited unscathed, Haran also would not recant, and was thrown into the fire. Haran, who did not truly believe, died in the fire. This is hinted at in Genesis 11:28.
82024
82025 Abraham then went to the city of Haran with his father and brother. His father died there. God spoke to Abraham for the first time, and told him of great things He would give him if he would leave Haran. Abraham did. He was seventy-five during this time.
82026
82027 Abraham started a school for teaching his beliefs in God, and some say he wrote the [[Sefer Yetzirah]].
82028
82029 == Abraham in Christianity ==
82030 Abraham stands out prominently as the recipient of the promises (Gen. 12:2-7, 13:14-17, 15, 17, 18:17-19, 22:17-18, 24:7). In the [[New Testament]] Abraham is mentioned prominently as a man of [[faith]] (see e.g., [[Epistle to the Hebrews|Hebrews]] 11), and the apostle [[Paul of Tarsus|Paul]] uses him as an example of [[salvation]] by faith (in e.g. [[Epistle to Galatians|Galatians]] 3). Abraham also plays significantly in the theology of [[Paul]] as the progenator of the [[Christ]] (or [[Messiah]]) (see [[Galatians]] 3:16).
82031
82032 Authors of the New Testament report that Jesus cited Abraham to support belief in the [[resurrection]] of the dead. &quot;But concerning the dead, that they rise, have you not read in the book of [[Moses]], in the [[burning bush]] passage, how God spoke to him, saying, &quot;I am the God of Abraham, the God of Isaac, and the God of Jacob?&quot; He is not the God of the dead, but the God of the living. You are therefore greatly mistaken.&quot; ([[Gospel of Mark|Mark]] 12:26-27) &quot;By faith Abraham, when he was tested, offered up Isaac, and he who had received the promises offered up his only begotten son, of whom it was said, &quot;In Isaac your seed shall be called,&quot; concluding that God was able to raise him up, even from the dead, from which he also received him in a figurative sense.&quot; (''Hebrews'' 11:17-19)
82033
82034 The [[Eastern Orthodoxy|Orthodox]], [[Baptist]] and traditional [[Protestant]] view in Christianity is that the chief promise made to Abraham in ''Genesis'' 12 is that through Abraham's seed, all the people of earth would be blessed. This promise was fulfilled through Abraham's seed, Jesus. It is also a consequence of this promise that Christianity is open to people of all races and not limited to the Jews.
82035
82036 The [[Roman Catholic Church]] calls Abraham &quot;our father in Faith,&quot; in the [[Eucharistic prayer]] called the ''Roman Canon'', recited during the [[Mass]]. (See [[Abraham in Liturgy]]).
82037
82038 Christian tradition sees Abraham as a figure of God, and Abraham's attempt to offer up [[Isaac]] is a foreshadowing of [[God]]'s offering of his Son, [[Jesus]] (Gen. 22:1-14; Heb. 11:17-19). Just as Isaac carried wood for the sacrifice up the mountain and willingly submitted to being offered, so Jesus carried his [[Cross]] up the hill and allowed himself to be [[crucified]].
82039
82040 ==Abraham in Islam==
82041 Abraham (called '''Ibrahim''') is very important in [[Islam]], both in his own right as prophet and as the father of the prophet [[Ishmael|Ismail]] (Ishmael), his firstborn son, who is considered the ''Father of the Arabs''. Abraham is considered one of the first and most important prophets of Islam, and is commonly termed ''Khalil Ullah'', Friend of God. (Islam regards most of the [[Old Testament]] &quot;patriarchs&quot; as [[prophets of Islam|prophets]] of God, and hence as Muslims.)
82042
82043 The faith of Abraham is called [[Millat-e-Ibrahim]] in the [[Qur'an]]. Muslims believe that Abraham was a prophet of God, in accordance with the narrative of his life in the [[Qur'an]]. In the Qur'an, Muslims are instructed to pray facing in the direction of the [[Ka'bah]] in [[Mecca]], which is described as having been built by Abraham and his son Ismail ([[al-Baqara|Qur'an 2]]:125). Abraham also takes an important role in one of the [[Pillars of Islam]], the [[Hajj]], which is a pilgrimage to the Holy Mosque. A part of the Hajj is a commemoration of the sacrifice of the wife of Abraham, Hagar, for her son Ismail, when Abraham had settled his wife and son in the valley of Mecca by God's order to pioneer a civilization. (It was from this civilization that the final prophet of Islam, [[Muhammad]], was later born)
82044
82045 Muslims have a specific ''[[dua]]'' that (in some traditions) they recite daily which asks God to bless both Abraham and [[Muhammad]]. Islamic prayer, [[Salat]], that occurs five times a day, also includes many parts that ask God for his blessings upon Abraham; the most in the prayer. According to Islamic tradition, he is buried in [[Hebron]]. In the [[Masjid al Haram]] in [[Mecca]], there is an area known as the &quot;station of Ibrahim&quot; (''Maqam Ibrahim'' Ų…Ų‚اŲ…), which bears an impression of his footprints.
82046
82047 There are numerous references to Abraham in the Qur'an. According to the Qur'an, Abraham is the spritual father of all the believers. He is mentioned as an upright person who was neither a polytheist nor a Christian or a Jew ([[Al Imran|Qur'an 3]]:67). An example is like the one below:
82048
82049 &lt;blockquote&gt;
82050 ''O ye who believe! Bow down and prostrate yourselves, and worship your Lord, and do good, that haply ye may prosper And strive for Allah with the endeavor which is His right. He hath chosen you and hath not laid upon you in religion any hardship; the faith of your father Abraham (is yours). He hath named you Muslims of old time and in this (Scripture), that the messenger may be a witness against you, and that ye may be witnesses against mankind. So establish worship, pay the poor due, and hold fast to Allah. He is your Protecting Friend. A blessed Patron and a blessed Helper.'' ([[Al-Hajj|Qur'an 22]]:78)
82051 &lt;/blockquote&gt;
82052
82053 According to the Qur'an, Abraham reached the conclusion that anything subject to disappearance could not be worthy of worship, and thus became a [[monotheist]] ([[Al-An'am|Qura'n 6]]:76-83). While some Muslims &amp;mdash; like Jews &amp;mdash; believe that Azar who was an idol-maker was the father of Abraham, majority of the Muslims believe that Tarakh was his father and Azar was Abraham's uncle [http://al-islam.org/encyclopedia/chapter5a/8.html (Father of Ibrahim).] Abraham broke his uncle's idols, calling on his community to worship God instead. They then cast him into a fire, which miraculously failed to burn him ([[as-Saaffat|Qur'an 37]]:83-98). The well-known but wholly non-canonical ''Qisas al-Anbiya'' ([[Ibn Kathir]]) records considerably more detail about his life, which are commonly referred to in Islamic accounts of his life.
82054
82055 Traditionally, Muslims believe that it was [[Ishmael]] rather than [[Isaac]] whom Abraham was told to sacrifice. In support of this, Muslims note that the text of [[Genesis (Hebrew Bible)|Genesis]], despite specifying Isaac, appears to state that Abraham was told to sacrifice his only son (&quot;Take now thy son, thine only son, whom thou lovest, even Isaac,&quot; [http://www.breslov.com/bible/ Jewish Publication Society] translation, Genesis/Bereshit 22:2) to God. Since Isaac was Abraham's second son, it is arguable there was no time at which he would have been Abraham's &quot;only son&quot;, and that this supports the Muslim belief that there was an original text that must have named Ishmael rather than Isaac as the intended sacrifice. The [[Qur'an]] itself does not specify by name which son Abraham nearly sacrificed saying only that it was his only son ([[As-Saaffat|Qur'an 37]]:99-111). Isaac ([[Ishaq]] in Islam) is also considered a prophet in Islam.
82056
82057 Also, unlike Jewish belief, Muslims note that nowhere in the Qur'an does God say that it was He who told Abraham to sacrifice his son nor does God say He gave Abraham the dream of the sacrifice. The Qur'an teaches that God never advocates evil. Thus, it is said that for a father to slaughter his son, is an evil that cannot be coming from God; it can only come from [[Satan]]. Furthermore, Muslims state that God would not contradict Himself and, therefore, would not order Abraham to commit what he prohibited, even as a test. Since Abraham thought the dream was from God and he proceeded to sacrifice his son Ismail, God sent him the lamb to be sacrificed instead, and to save Ismail and the father-son sacred relationship. Furthermore, Muslims believe that God promised to protect His righteous believers from Satan's tricks, and he saved Abraham and his son, Ismail, from this exact test.
82058
82059 It is believed that Ibrahim's dream was a test from God. And when Ibrahim told his dream to Ismail, it was Ismail who convinced Ibrahim to fulfill God's order. So this was test for both Ibrahim, whom had longed for a son for such a long time, and for Ismail. When the devil teased them before the sacrifice, Ibrahim and Ismail threw stones at the devil. This reincarnated as jumrah, one of the rites undertaken by Muslims making the Hajj (pilgrimage). The entire episode of the sacrifice is regarded as a trial that Abraham had to face from God. It is celebrated by Muslims on the day of [[Eid ul-Adha]].
82060
82061 ==Abraham in the BahÃĄ'í Faith==
82062 BahÃĄ'ís believe that Abraham was a &quot;[[Manifestation of God]],&quot; or one in a line of prophets who have revealed the Word of God progressively for a gradually maturing humanity. In this way, Abraham shares an exalted station with [[Moses]], [[Buddha]], [[Jesus]], [[Muhammad]], [[the BÃĄb]], and the founder of the [[BahÃĄ'í Faith]], [[BahÃĄ'u'llÃĄh]]. In addition, BahÃĄ'u'llÃĄh, a Persian, is claimed to be descended from Abraham through Abraham's wife [[Keturah]], asserting the BahÃĄ'í Faith the same organic connection to Abraham that is claimed by Judaism and Christianity (through Sarah) and Islam (through Hagar).
82063
82064 ==Abraham in the Hindu belief==
82065 Theories speculate that Abraham may also be connected with Hinduism, remembered as the god Brahma, or Ram (who could have been called &quot;Ab Ram&quot; or &quot;Father Ram.&quot; Striking coincidences fuel this theory: Abraham, who was known earlier in life as &quot;Abram&quot; was married to Sarah, who had changed her name from Sarai. In Hindu belief, &quot;Brahma&quot; was married to &quot;Saraisvati.&quot; Additionally, Abraham and Sarah were both relatives and spouses; the same was true of Brahma and Saraisvati. Abraham is also claimed to be the founder of the ancient Sabean religion.
82066
82067 ==Abraham in philosophy==
82068 Abraham, as a man communicating with God or the divine, has inspired some fairly extensive discussion in some [[philosopher]]s, such as [[Søren Kierkegaard]] and [[Jean-Paul Sartre]]. Kierkegaard goes into Abraham's plight in considerable detail in his work ''[[Fear and Trembling]]''. Sartre understands the story not in terms of Christian obedience or a &quot;teleological suspension of the ethical&quot;, but in terms of mankind's utter behavioral and moral freedom. God asks Abraham to sacrifice his only son. Sartre doubts that Abraham can know that the voice he hears is really the voice of his God and not of someone else, or the product of a mental condition. Thus, Sartre concludes, even if there are signs in the world, humans are totally free to decide how to interpret them.
82069
82070 ==Abraham and his descendants (Biblical Perspective) ==
82071 ''For a full account of the '''historicity''' of Abrahamic stories in the book of'' [[Genesis]], ''see'' [[The Bible and history#The Patriarchs|Historicity of the Patriarchs]].
82072
82073 Biblical narratives represent Abraham as a wealthy, powerful and supremely virtuous man, but humanly flawed, and when afraid for himself, miscalculating, and a sometimes deceiver and an inconsiderate husband. But his central importance in the book of Genesis, and his portrait as a man favored by God, is unequivocal. Abraham's generations (Hebrew: ''[[toledoth]]'', translated to Greek: &quot;Genesis&quot;) are presented as part of the crowning explanation of how the world has been fashioned by the hand of God, and how the boundaries and relationships of peoples were established by him.
82074
82075 As the father of Isaac and Ishmael, Abraham is ultimately the common ancestor of the [[Israelites]] and their neighbours. As the father of [[Ishmael]], whose twelve sons became desert princes (most prominently, [[Nebaioth]] and [[Kedar]]), along with [[Midian]], [[Sheba]] and other [[Arab]]ian tribes (25:1-4), the book of Genesis gives a portrait of Isaac's descendants as being surrounded by kindred peoples, who are also oft-times enemies. It seems that some degree of kinship was felt by the [[Hebrews]] with the dwellers of the more distant south, and it is characteristic of the genealogies that the mothers (Sarah, the Egyptian Hagar, and [[Keturah]]) are in the descending scale, perhaps of purity of blood, or as of purity of relationship, or of connectedness to Sarah: Sarah, her servant, her husband's other wife (or concubine). The Bible says of the Hebrew people: &quot;Your father was a wandering Syrian&quot;.
82076
82077 As stated above, Abraham came from Ur in [[Babylonia]] to Haran and thence to [[Canaan]]. Late tradition supposed that the [[Migration (human)|migration]] was to escape Babylonian idolatry ([[Judith]] 5, [[Jubilees]] 12; cf. [[Book of Joshua|Joshua]] 24:2), and knew of Abraham's miraculous escape from death (an obscure reference to some act of deliverance in [[Isaiah]] 29:22). The route along the banks of the [[Euphrates]] from south to north was so frequently taken by migrating tribes that the tradition has nothing improbable in itself. It was thence that [[Jacob]], the father of the tribes of Israel, came, and the route to [[Shechem]] and [[Bethel]] is precisely the same in both. A twofold migration is doubted by some, but from what is known of the situation in [[Canaan]] in the [[15th century BC]], not at all impossible.
82078
82079 Further, there is yet another parallel in the story of the conquest by Joshua, partly implied and partly actually detailed (cf. also Joshua 8:9 with Gen. 12:8, 13:3), whence it would appear that too much importance must not be laid upon any [[ethnological]] interpretation which fails to account for the three versions. That similar traditional elements have influenced them is not unlikely; but to recover the true historical foundation is difficult. The invasion or immigration of certain tribes from the east of the [[Jordan]]; the presence of [[Aramean]] blood among the Israelites; the origin of the sanctity of venerable sites &amp;mdash; these and other considerations may readily be found to account for the traditions.
82080
82081 Noteworthy coincidences in the lives of Abraham and Isaac, such as the strong parallels between two tales of [[a wife confused for a sister]], point to the fluctuating state of traditions in the oral stage, or suggest that Abraham's life has been built up by borrowing from the common stock of popular lore. More original is the parting of Lot and Abraham at Bethel. The district was the scene of contests between [[Moab]] and the Hebrews (cf. perhaps [[Judges]] 3), and if this explains part of the story, the physical configuration of the [[Dead Sea]] may have led to the legend of the destruction of inhospitable and vicious cities.
82082
82083 ===Arab connection===
82084 Although historians have no non-religious evidence for Abraham's connection to the Arabs, and the historicity of Biblical accounts is questioned by academics (see [[The Bible and history]]), some believe that the area outlined as the final destination of Ishmael and his descendants (from Havilah to Assyria) refers to Northern [[Arabia]]. The earliest known record of the connection of Abrahams son, Ishmael, to the Arabs is by the [[Jewish]] historian [[Josephus]], who approximately 2000 years after such events, asserted that Ishmael was the father of the &quot;Arab nation&quot; [http://www.blessedquietness.com/alhaj/append-1.htm]. Little other information exists to understand the basis for Josephus' statement or his understanding of what he meant by &quot;Arab nation&quot;, although one line in the [[Book of Jubilees]] (20:13) also mentions the tradition.
82085
82086 This has led to the notion of identifying Abraham as the father of the Arabs through Ishmael. In addition, Abraham's next wife, [[Keturah]], is said to have borne him a son named [[Midian]] who became father of the [[Midianites]][http://www.keyway.ca/htm2002/midian.htm]. The Midianites are also identified with the Arabs as they are said to have settled east of the [[Jordan River]][http://www.brow.on.ca/Books/Ishmael/Ishpost.htm]. In recent times some Christian polemical writers have insisted these claims are spurious and entirely made up by Muslims, although, they existed long before Islam arrived. Some have claimed that all of Ishmael's descendants in fact died out; and that most Arabs are descended from Joktan. The subject continues to be a source of controversy.
82087
82088 ==Modern historical criticism==
82089 Writers have regarded the life of Abraham in various ways. He has been viewed as a [[chieftain]] of the [[Amorites]], as the head of a great [[Semitic]] migration from [[Mesopotamia]]; or, since Ur and Haran were seats of [[Moon]]-worship, he has been identified with a moon-god. From the character of the literary evidence and the locale of the stories it has been held that Abraham was originally associated with Hebron. The double name Abram/Abraham has even suggested that two personages have been combined in the Biblical narrative; although this does not explain the change from Sarai to Sarah.
82090
82091 The narratives are not contemporary, and the interesting discovery of the name ''Abi-ramu'' (Abram) on Babylonian contracts of about [[2000 BC]] does not prove the Abram of the Old Testament to be an historical person, even as the fact that there were [[Amorites]] in Babylonia at the same period does not make it certain that the patriarch was one of their number. One remarkable chapter associates Abraham with kings of [[Elam]] and the east (''Genesis'' 14). No longer a peaceful sheikh but a warrior with a small army of 318 followers, he overthrows a combination of powerful monarchs who have ravaged the land. The genuineness of the narrative has been strenuously maintained, although upon insufficient grounds.
82092
82093 On the assumption that a recollection of some invasion in remote days may have been current, considerable interest is attached to the names. Of these, [[Amraphel]], king of [[Shinar]] (i.e., Babylonia, ''Genesis'' 10:10), has been in the past identified with [[Hammurabi]], one of the greatest of the Babylonian kings (ca. 2000 BC), and since he claims to have ruled as far west as the [[Mediterranean Sea]], the equation has found considerable favour. Apart from chronological difficulties, the identification of the king and his country is far from certain, and at the most can only be regarded as possible. [[Arioch]], king of [[Ellasar]], has been connected with [[Eriaku of Larsa]] &amp;mdash; the reading has been questioned &amp;mdash; a contemporary with Hammurabi. [[Chedorlaomer]], king of Elam, bears what is doubtless a genuine [[Elamite]] name, Kudur-Lagamer. Finally, the name of [[Tid'al]], king of [[Goiim]], may be identical with a certain [[Tudhulu]], the son of Gazza, a warrior, but apparently not a king, who is mentioned in a Babylonian inscription, and has been connected by others with [[Tudhaliya]], a predynastic Hittite king. Goiim (the Hebrew for &quot;gentiles&quot; or &quot;nations&quot;) may also stand for Gutim, the [[Guti]] being a people who lived to the east of [[Kurdistan]]. Nevertheless, there is as yet no monumental evidence for the genuineness of the story, and the most that can be said with certainty is that the author (of whatever date) has derived his names from a trustworthy source, and in representing an invasion of Canaan by Babylonian overlords, has given expression to a possible situation. It may be that only the bare outlines are historical. If it is a historical romance (cf., e.g., the book of Judith), it is possible that a writer who lived in the [[post-exilic]] age, and was acquainted with Babylonian history, decided to enhance the greatness of Abraham by exhibiting his military success against the monarchs of the [[Tigris]] and [[Euphrates]], the high esteem he enjoyed in Canaan, and the practical character displayed in his brief exchange with [[Melchizedek]]. The historical section of the article [[Tithe]] provides more evidence on the historicity of the meeting with Melchizedek.
82094
82095 Several minimalist professors of archaeology claim that many stories in the Old Testament, including important chronicles about Abraham, [[Moses]], and others, were actually made up by scribes hired by King [[Josiah]] ([[7th century BC]]) in order to rationalize monotheistic belief in Yahweh. Mimimalists claim that the neighboring countries that kept many written records, such as Egypt, Assyria, etc., have no writings about the stories of the Bible or its main characters before [[650 BC]], and vehemently dispute the validity of any evidence to the contrary. Such claims are detailed in &quot;Who Were the Early Israelites?&quot; by William G. Dever, (William B. Eerdmans Publishing Co., Grand Rapids, MI, 2003). Another such book by Neil A. Silberman and colleagues is &quot;The Bible Unearthed,&quot; (Simon and Schuster, New York, 2001). Of course, the historical annals and tributes to &quot;great kings&quot; are not well-served by preserving great defeats by their enemies (in this case, the Hebrews), and therefore, such records are understandably scanty. Also, many great kings did not long survive great defeats, as it was a sign to their followers that these &quot;great leaders&quot; had lost the favor of their God, gods and goddesses, and the kings were quickly assassinated and replaced.
82096
82097 ==References==
82098 * [[1911 Encyclopedia Britannica]].
82099 * [[Genesis]]
82100 * [http://www.amazon.com/exec/obidos/tg/detail/-/0814736548 Hoffman, Joel M. ''In the Beginning: A Short History of the Hebrew Language'']
82101
82102 ==See also==
82103 *[[Abrahamic religions]]
82104 *[[Abraham's bosom]]
82105 *[[List of founders of major religions]]
82106
82107 ==External links==
82108 *[http://www.soundvision.com/info/hajj/abraham.asp Abraham in all three Abrahamic faiths]
82109 *[http://www.hajj.ca/Ismail.html Abraham's sacrifice: an Islamic perspective]
82110 *[http://www.GospelTruth.info/ GospelTruth] -- God's promises to Abraham according to Christian belief
82111 *[http://www.BiblicalArcheology.Net/ Biblical Archeology] -- Bible-related article about Abraham
82112 *[http://www.time.com/time/covers/1101020930/ The Legacy of Abraham] -- Time magazine cover story
82113 *[http://www.islamfrominside.com/Pages/Tafsir/Tafsir%286-74_to_79%29.html Abraham's vision in the Qur'an]
82114 *[http://www.clearvision.com.pk/perspectives.php?func=show&amp;id=8#_edn2 Millat-e-Ibrahim Abraham's Way] by [http://clearvision.com.pk ClearVisionPk]
82115 *[http://speakingoffaith.publicradio.org/programs/2004/09/09_abraham/ Children of Abraham] -- episode of the weekly [[Minnesota Public Radio]] show ''[[Speaking of Faith]]''
82116 * [http://www.biblicalstudies.org.uk/article_abraham.html ''Abraham'' by Rob Bradshaw] An extensive dictionary-style article.
82117 * [http://www.biblicalstudies.org.uk/epn.html A.R. Millard &amp; D.J. Wiseman, eds., ''Essays on the Patriarchal Narratives''. Leicester: IVP, 1980. Hbk. ISBN: 0851117430.]
82118
82119 {{1911}}
82120
82121 [[Category:Abrahamic religions]]
82122 [[Category:Christian prophets]]
82123 [[Category:Islamic prophets]]
82124 [[Category:Torah people]]
82125
82126 [[ar:Ø§Ø¨ØąØ§Ų‡ŲŠŲ…]]
82127 [[ca:Abraham]]
82128 [[cs:AbrahÃĄm]]
82129 [[de:Abraham]]
82130 [[el:ΑβĪÎąÎŦÎŧ]]
82131 [[eo:Abraham]]
82132 [[es:Abraham]]
82133 [[et:Aabraham]]
82134 [[fa:Ø§Ø¨ØąØ§Ų‡ÛŒŲ…]]
82135 [[fi:Abraham]]
82136 [[fr:Abraham]]
82137 [[gl:Abraham]]
82138 [[he:אברהם אבינו]]
82139 [[hr:Abraham]]
82140 [[hu:ÁbrahÃĄm]]
82141 [[ia:Abraham]]
82142 [[id:Nabi Ibrahim]]
82143 [[it:Abramo (Bibbia)]]
82144 [[ja:ã‚ĸブナハム]]
82145 [[ko:ė•„브ëŧ함]]
82146 [[ku:ÎbrahÃŽm]]
82147 [[la:Abraham]]
82148 [[ms:Nabi Ibrahim a.s.]]
82149 [[nl:Abraham]]
82150 [[nn:Abraham]]
82151 [[no:Abraham]]
82152 [[pl:Abraham (Biblia)]]
82153 [[pt:AbraÃŖo]]
82154 [[ru:АвŅ€Đ°Đ°Đŧ]]
82155 [[sk:AbrahÃĄm]]
82156 [[sr:АйŅ€Đ°Ņ…Đ°Đŧ]]
82157 [[sv:Abraham (patriark)]]
82158 [[tl:Abraham]]
82159 [[zh:äēžäŧ¯æ‹‰įŊ•]]</text>
82160 </revision>
82161 </page>
82162 <page>
82163 <title>Abraxas</title>
82164 <id>1437</id>
82165 <revision>
82166 <id>39605574</id>
82167 <timestamp>2006-02-14T16:43:30Z</timestamp>
82168 <contributor>
82169 <username>Msablic</username>
82170 <id>8725</id>
82171 </contributor>
82172 <minor />
82173 <comment>ref. to solar cycle (calendar), I don't really understand the text but it certainly does not refer to sunspots</comment>
82174 <text xml:space="preserve">{{otheruses}}
82175 {{cleanup-date|August 2005}}
82176 [[image:Abraxas.png|frame|right|Engraving from an Abraxas stone.]]
82177 The word '''Abraxas''' (or '''Abrasax''' or '''Abracax''') was engraved on certain antique stones, called on that account '''Abraxas stones''', which were used as amulets or charms by [[Gnosticism|Gnostic]] sects. It was believed that Abraxas was the name of a god who incorporated both Good and Evil (God and [[Demiurge]]) in one entity, and therefore representing the [[monotheistic]] [[God]], singular, but (unlike e.g. the Christian God) not [[eutheism|omni-benevolent]]. Abraxas has been claimed to be both an [[Egypt]]ian god and a [[demon]], sometimes even being associated with the dual nature of [[Satan]]/[[Lucifer]]. This is possibly the origin of the word [[abracadabra]], although other explanations exist.
82178
82179 ==Meaning==
82180
82181 :''&quot;The bird fights its way out of the egg. The egg is the world. Who would be born first must destroy a world. The bird flies to God. That God's name is Abraxas&quot;'' - [[Hermann Hesse]], ''[[Demian]]''
82182 [[Image:Abraxas Artistic representationi.jpg|frame|left| Medieval Seal representing Abraxas]]
82183 Abraxas was an [[Archon]] with a [[Chimera (mythology)|Chimera]]-like appearance (somewhat resembling a [[basilisk]]): he had the head of a [[rooster]] (or sometimes a king), the body of a man, and legs fashioned like [[snake]]s and sometimes depicted with a whip in his hand - a form referred to as the [[Anguipede]]. Abraxas was redeemed and rose above the seven spheres and now reigns beyond the worlds. There are references to Abraxas in several gnostic writings.
82184
82185 The letters of abraxas, in the [[Greek language|Greek]] notation, make up the number 365, and the [[Basilideans]] gave the name to the 365 orders of spirits which, as they conceived, emanated in succession from the Supreme Being. These orders were supposed to occupy 365 heavens, each fashioned like, but inferior to that above it; and the lowest of the heavens was thought to be the abode of the spirits who formed Earth and its inhabitants, and to whom was committed the administration of its affairs.
82186
82187 In addition to the word Abraxas and other mystical characters, they have often cabalistic figures engraved on them. The commonest of these have the head of a fowl, and the arms and bust of a man, and terminate in the body and tail of a serpent.
82188
82189 ===Text from the Catholic Encyclopedia===
82190 The study of Abraxas is, at first sight, as discouraging as it is possible to imagine. The name has been given to a class of ancient stone articles, of small dimensions, inscribed with outlandish figures and formulas, sometimes wholly indecipherable, specimens of which are to be found in almost every museum and private collection. These, for the most part, have hitherto resisted all attempts at interpretation, though it would be rash to conclude that a fuller knowledge may not solve enigmas which remain closed to us.
82191
82192 The true name, moreover, is Abrasax, and not, as incorrectly written, Abraxas, a reading due to the confusion made by the Latins between Sigma and Xi. Among the early Gnostics, Abrasax appears to have had various meanings. Basilides gave this title to Almighty God, and claimed that the [[isopsephy|numerical value of its letters]] gave the sum of 365, because the Abrasax is enclosed in the [[solar cycle (calendar)|solar cycle]]. Sometimes the number 365 signifies the series of the heavens. In view of such imaginings, it is easy to guess at the course taken by an untrammelled Gnostic fancy, whereby its adherents strove to discover the meaning of the mysterious word.
82193
82194 It is, however, an error to give the name Abrasax to all stones of Gnostic origin, as has been done up to the present day. It is not the name which applies to talismans, any more than the names of Jupiter and Venus apply to all ancient statues indiscriminately. Abrasax is the name given by the Gnostics to the Supreme Deity, and it is quite possible that we shall find a clue to its etymological meaning in the influences of numbers. The subject is one which has exercised the ingenuity of many savants, but it may be said that all the engraved stones to which the name is commonly given fall into three classes:
82195 #Abrasax, or stones of Basilidian origin.
82196 #Abrasaxtes, or stones originating in ancient forms of worship, and adapted by the Gnostics to their peculiar opinions.
82197 #Abraxoïdes, or stones absolutely unconnected with the doctrine of Basilides.
82198
82199 Bellermann, following Montfaucon, made a tentative classification of Gnostic stones, which, however, is nowadays looked upon as wholly inadequate. His mistake consisted in wishing, as it were, to make a frontal attack on Gnosticism. Kopp, endowed with greater skill and patience, seems to have realized in some measure how wide the problem actually is. Ad. Franck and, quite lately, Moses Schwab have made diligent researches in the direction of the [[Cabbala]] (or Kabbala). &quot;The demonology devised by the Cabbalists&quot;; according to the former writer, &quot;was nothing more than a carefully thought out personification of the different degrees of life and intelligence which they perceived in external nature. All natural growths, forces, and phenomena are thus typified.&quot; The outline here furnished needs only to be extended indefinitely in order to take in quite easily the countless generations of Gnosticism. The whole moral and physical world, analyzed and classified with an inconceivable minuteness, will find place in it. Thence, also, will issue the bewildering catalogues of Gnostic personalities.
82200
82201 The chief difficulty, however, arises from the nomenclature of Gnosticism, and here the &quot;Sepher Raziel&quot; supplies a first and valuable hint. &quot;To succeed in the operations of divination&quot;, it says, &quot;it is necessary to pronounce the mystic names of the planets or of the earth.&quot; In fact, stones of Gnostic origin often show designs made up out of the initial letters of the planets. Another parallel is still more suggestive. The [[Jew]]s, as is well known, would never pronounce the Ineffable Name, [[Jehovah]], but substituted either another name or a paraphrase; a rule which applied, not only to the Ineffable Name and its derivatives, but to others as well, ending, in order to evade the difficulty which arose, in a series of fantastic sounds which at first seem simply the outcome of a hopeless confusion. It became necessary to resort to permutations, to the use of other letters, to numerical and formal equivalents. The result was an outlandish vocabulary, only partially accounted for, yet one which nevertheless reveals in Gnosticism the existence of something more than mere incoherences. Very many secrets of Gnosticism remain unexplained, but it may be hoped that they will not always be shrouded in mystery.
82202
82203 {{1911}}
82204
82205 {{Catholic}}
82206
82207 ===Quotes===
82208
82209 ====Tertullian :====
82210
82211 'Afterwards broke out the heretic Basilides. He affirms that there is a supreme Deity, by name Abraxas, by whom was created Mind, which in Greek he calls Nous; that thence sprang the Word; that of Him issued Providence, Virtue, and Wisdom; that out of these subsequently were made Principalities, powers, and Angels; that there ensued infinite issues and processions of angels; that by these angels 365 heavens were formed, and the world, in honour of Abraxas, whose name, if computed, has in itself this number. Now, among the last of the angels, those who made this world, he places the God of the Jews latest, that is, the God of the Law and of the Prophets, whom he denies to be a God, but affirms to be an angel. To him, he says, was allotted the seed of Abraham, and accordingly he it was who transferred the sons of Israel from the land of Egypt into the land of Canaan; affirming him to be turbulent above the other angels, and accordingly given to the frequent arousing of seditions and wars, yes, and the shedding of human blood. Christ, moreover, he affirms to have been sent, not by this maker of the world, but by the above-named Abraxas; and to have come in a phantasm, and been destitute of the substance of flesh: that it was not He who suffered among the Jews, but that Simon was crucified in His stead: whence, again, there must be no believing on him who was crucified, lest one confess to having believed on Simon. Martyrdoms, he says, are not to be endured. The resurrection of the flesh he strenuously impugns, affirming that salvation has not been promised to bodies.'
82212
82213
82214
82215 ====Carl Jung : The Seven Sermons to the Dead====
82216
82217 &quot;Abraxas speaketh that hallowed and accursed word which is life and death at the same time. Abraxas begetteth truth and lying, good and evil, light and darkness in the same word and in the same act. Wherefore is Abraxas terrible.&quot;
82218
82219
82220
82221 ====E. A. Wallis Budge : ====
82222
82223 &quot;Abrasax represented the 365 Aeons or emanations from the First Cause, and as a Pantheus, i.e. All-God, he appears on the amulets with the head of a cock (Phoebus) or of a lion (Ra or Mithras), the body of a man, and his legs are serpents which terminate in scorpions, types of the Agathodaimon. In his right hand he grasps a club, or a flail, and in his left is a round or oval shield”
82224
82225 ==External links==
82226 *[http://www.occultopedia.com/a/abraxas.htm Occultopedia entry]
82227 *[http://www.jewishencyclopedia.com/view.jsp?artid=633&amp;letter=A Jewish encyclopedia entry]
82228 *[http://altreligion.about.com/library/graphics/bl_abraxas.htm Images of Abraxas]
82229 *[http://www.gnosis.org/library/7Sermons.htm The Seven Sermons to the Dead]
82230 *[http://www.freewebs.com/navanath/seven_sermons.html SEPTEM SERMONES AD MORTUOS]
82231
82232 == References ==
82233 *[[Abraxas Foundation]]
82234
82235 [[Category:Gnostic deities]]
82236 [[Category:Singular God]]
82237
82238 [[de:Abraxas]]
82239 [[es:Abraxas]]
82240 [[fr:Abrasax]]
82241 [[it:Abraxas]]
82242 [[pl:Abraxas (mitologia)]]
82243 [[pt:Abraxas]]
82244 [[sv:Abraxas]]</text>
82245 </revision>
82246 </page>
82247 <page>
82248 <title>Absalom</title>
82249 <id>1438</id>
82250 <revision>
82251 <id>39859432</id>
82252 <timestamp>2006-02-16T10:00:21Z</timestamp>
82253 <contributor>
82254 <username>Gaurav1146</username>
82255 <id>132290</id>
82256 </contributor>
82257 <minor />
82258 <comment>fixed image size</comment>
82259 <text xml:space="preserve">:''[[Absalom, Absalom!]] is also a novel by [[William Faulkner]].''
82260 :''Absalom is also a name given by [[Dryden]] to the [[Duke of Monmouth]], son of [[Charles II of England|Charles II]]. See [[Absalom and Achitophel]]''
82261 :&quot;Absalom&quot; is the name of a science fiction story by [[Henry Kuttner]] anthologized in the collection ''[[Tomorrow, the Stars]]''.
82262
82263 [[Image:Absalom.jpg|right|thumb|200px|The Hanging of Absalom - Weft-silk watercolor by Faith Robinson Trumbull (1718-1780)]]
82264
82265 '''Absalom''' or '''Avshalom''' ('''&amp;#1488;&amp;#1463;&amp;#1489;&amp;#1456;&amp;#1513;&amp;#1473;&amp;#1464;&amp;#1500;&amp;#1493;&amp;#1465;&amp;#1501;''' &quot;Father/Leader of/is peace&quot;, [[Standard Hebrew]] '''Av&amp;#X161;alom''', [[Tiberian Hebrew]] '''&amp;#702;A&amp;#7687;&amp;#X161;&amp;#257;lôm'''), in the
82266 [[Bible]], is the third son of [[David]], king of [[kingdom of Israel|Israel]]. He was deemed
82267 the handsomest man in the kingdom.
82268
82269 His sister [[Tamar (biblical figure)|Tamar]] had
82270 been raped by David's eldest son, [[Amnon]], who was in love with her. Absalom, after waiting two years, revenged by sending his servants to murder Amnon at a feast to which he had invited all the king's sons (2 [[Books of Samuel|Samuel]] 13):
82271
82272 &quot;18. ''And she had a garment of divers colours upon her: for with such robes were the king's daughters that were virgins apparelled. Then his servant brought her out, and bolted the door after her.''
82273
82274 19. ''And Tamar put ashes on her head, and rent her garment of divers colours that was on her, and laid her hand on her head, and went on crying''.
82275
82276 20. ''And Absalom her brother said unto her, Hath Amnon thy brother been with thee? but hold now thy peace, my sister: he is thy brother; regard not this thing. So Tamar remained desolate in her brother Absalom's house''....
82277
82278 22. ''And Absalom spake unto his brother Amnon neither good nor bad: for Absalom hated Amnon, because he had forced his sister Tamar.''
82279
82280 23. ''And it came to pass after two full years, that Absalom had sheepshearers in Baalhazor, which is beside Ephraim: and Absalom invited all the king's sons.''
82281
82282 28. ''Now Absalom had commanded his servants, saying, Mark ye now when Amnon's heart is merry with wine, and when I say unto you, Smite Amnon; then kill him, fear not: have not I commanded you? be courageous, and be valiant.''&quot;
82283
82284
82285 After this deed he fled to Talmai, &quot;king&quot; of [[Geshur]] (see Joshua 12:5 or 13:2), his maternal grandfather, and it was not until three years later that he was fully reinstated in his father's favour (see [[Joab]].)
82286
82287 Four years after this he raised a revolt at [[Hebron]], the former capital. Absalom was now the eldest surviving son of David, and the present position of the narratives (15-20)--after the birth of [[Solomon]] and before the struggle between Solomon and Adonijah---may represent the view that the suspicion that he was not the destined heir of his father's throne excited the impulsive youth to
82288 rebellion.
82289
82290 All Israel and Judah flocked to his side, and David, attended only by the [[Cherethites]] and [[Pelethites]] and some recent recruits from Gath, found it expedient to flee.
82291 The priests remained behind in Jerusalem, and their sons Jonathan and Ahimaaz served as his spies. Absalom reached the capital and took counsel with the renowned [[Ahithophel]].
82292 The pursuit was continued and David took refuge beyond the [[Jordan River]].
82293
82294 A battle was fought in the &quot;wood of Ephraim&quot; (the name suggests a locality west of the Jordan) and Absalom's army was completely routed. He himself, having long hair, was caught by his hair in the boughs of an oak-tree, and as David had strictly charged his men to deal gently with the young man, Joab was informed.
82295 What a common soldier refused to do even for a thousand shekels of silver, the king's general at once undertook.
82296 Joab thrust three spears through the heart of Absalom as he struggled in the branches and his ten armour-bearers came around and slew him.
82297 Despite the revolt, David was overwhelmed with [[grief]] and ordered a great heap of stones to be erected where he fell, whilst another monument near [[Jerusalem]] (not the modern &quot;Absalom Tomb&quot; - &quot;[[Yad Avshalom]]&quot; which is of later origin was erected by Avshalom in his lifetime to perpetuate his name 2 Samuel 18:
82298
82299 &quot;18. ''Now Absalom in his lifetime had taken and reared up for himself a monument, which is in the king's dale: for he said, I have no son to keep my name in remembrance: and he called the pillar after his own name: and it is called unto this day, Absalom's monument''.&quot;
82300
82301 [[Category:History of Jerusalem]]
82302 [[Category:Tanakh people]]
82303
82304 [[da:Absalom]]
82305 [[de:Absalom]]
82306 [[eo:Abŝalom]]
82307 [[fr:Absalom]]
82308 [[gl:Abxalom]]
82309 [[ia:Absalom]]
82310 [[he:אבשלום בן דוד]]
82311 [[nl:Absalom]]
82312 [[ja:ã‚ĸブã‚ĩロム]]
82313 [[pl:Absalon (imię)]]
82314 [[pt:AbsalÃŖo]]
82315 [[fi:Absalom]]
82316 [[sv:Absalom]]</text>
82317 </revision>
82318 </page>
82319 <page>
82320 <title>Abydos</title>
82321 <id>1439</id>
82322 <revision>
82323 <id>33866377</id>
82324 <timestamp>2006-01-04T18:00:05Z</timestamp>
82325 <contributor>
82326 <username>BoboDS</username>
82327 <id>753167</id>
82328 </contributor>
82329 <text xml:space="preserve">'''Abydos''' may mean:
82330
82331 Egyptian Mythology - The holy city of [[Osiris]], who was buried there himself, as were many other [[pharaohs]].
82332 * [[Abydos, Egypt]], one of the most ancient cities of Upper Egypt
82333 * [[Abydos, Hellespont]] (also &quot;Ábydos&quot;), an ancient city of Mysia, in Asia Minor
82334 * [[Abydos (music)]], a 2004 solo musical project of Andy Kuntz, member of [[Vanden Plas (band)|Vanden Plas]]
82335 * [[Abydos (Stargate)]], name of a fictional planet in the Stargate science fiction universe
82336 * [[Abydos (thema)]], a historical province of the [[Byzantine Empire]]
82337
82338 '''Abidos''' may mean:
82339 * [[Abidos, PyrÊnÊes-Atlantiques]], a commune of the [[PyrÊnÊes-Atlantiques]] ''dÊpartement'', in southwestern France
82340
82341 {{disambig}}
82342
82343 [[de:Abydos]]
82344 [[fr:Abydos]]
82345 [[it:Abydos]]</text>
82346 </revision>
82347 </page>
82348 <page>
82349 <title>Abydos, Egypt</title>
82350 <id>1440</id>
82351 <revision>
82352 <id>40288578</id>
82353 <timestamp>2006-02-19T15:23:24Z</timestamp>
82354 <contributor>
82355 <username>DabMachine</username>
82356 <id>922466</id>
82357 </contributor>
82358 <minor />
82359 <comment>disambiguation from [[Coptic]] to [[Coptic Christianity]] - ([[WP:DPL|You can help!]])</comment>
82360 <text xml:space="preserve">{{Hiero|1=Abydos|2=&lt;hiero&gt;Ab-b-Dw:O49&lt;/hiero&gt;|align=right|era=egypt}}
82361 '''Abydos''' ([[Arabic language|Arabic]]: ØŖبŲŠØ¯ŲˆØŗ), one of the most ancient cities of [[Upper and Lower Egypt|Upper Egypt]], stood about 11 km (6 miles) west of the [[Nile]] at latitude 26° 10' N. The [[Egyptian language|Egyptian]] name was Abdju (technically, ''3b&lt;u&gt;d&lt;/u&gt;w'', hieroglyphs shown to the right), &quot;the hill of the symbol or reliquary,&quot; in which the sacred head of [[Osiris]] was preserved. Thence the Greeks named it Abydos, like the city on the [[Hellespont]]; the modern [[Arabic language|Arabic]] name is [[el-'Araba el Madfuna]] ({{lang-ar|اŲ„ØšØąØ¨ØŠ اŲ„Ų…دŲŲ†ØŠ}} ''al-Ęŋarabä al-madfanä'').
82362
82363 ==History ==
82364 The history of the city begins in the late prehistoric age, it having been founded by the rulers of the [[Predynastic Period of Egypt|Predynastic period]] ([[William Flinders Petrie]], ''Abydos'', ii. 64), whose town, temple and tombs have been found there. The kings of the [[First dynasty of Egypt|first dynasty]], and some of the second dynasty, were also buried here, and the temple was renewed and enlarged by them. Great forts were built on the desert behind the town by three kings of the [[Second dynasty of Egypt|Second dynasty]]. The temple and town continued to be rebuilt at intervals down to the times of the [[Thirtieth dynasty of Egypt|30th dynasty]], and the cemetery was used continuously. In the [[twelfth dynasty of Egypt|12th dynasty]] a gigantic tomb was cut in the rock by [[Senusret III]]. [[Seti I]], in the [[Nineteenth dynasty of Egypt|19th dynasty]], founded a great new temple to the south of the town in honour of the ancestral kings of the early dynasties; this was finished by [[Ramesses II]], who also built a lesser temple of his own. [[Merneptah]] added a great [[Hypogeum]] of Osiris to the temple of Seti. The latest building was a new temple of [[Nectanebo I]] in the 30th dynasty. From [[Ptolemaic Period|Ptolemaic]] times the place continued to decay and no later works are known (Petrie, ''Abydos'', i. and ii.).
82365
82366 ==Worship ==
82367 The worship here was of the jackal god [[Upuaut]] (Ophols, Wepwoi), who &quot;opened the way&quot; to the realm of the dead, increasing from the first dynasty to the time of the 12th dynasty and then disappearing after the 18th. [[Anhur]] appears in the eleventh dynasty; and [[Anubis]], the god of the western Hades, rises to importance in the [[Middle Kingdom of Egypt|Middle Kingdom]] and then vanishes in the 18th. The worship here of [[Osiris]] in his various forms begins in the 12th dynasty and becomes more important in later times, so that at last the whole place was considered as sacred to him (''Abydos'', ii. 47).
82368
82369 ==Temples built==
82370 The temples successively built here on one site were nine or ten in number, from the 1st dynasty to the [[twenty-sixth dynasty of Egypt|26th dynasty]]. The first was an enclosure, about 30 x 50 ft., surrounded by a thin wall of unbaked bricks. Covering one wall of this came the second temple of about 40 ft. square in a wall about 10 ft. thick. An outer ''temenos'' (enclosure) wall surrounded the ground. This outer wall was thickened about the 2nd or [[Third dynasty of Egypt|3rd dynasty]]. The old temple entirely vanished in the 4th dynasty, and a smaller building was erected behind it, enclosing a wide hearth of black ashes.
82371 Pottery models of offerings are found in the ashes, and these were probably the substitutes for sacrifices decreed by [[Khufu (pharaoh)|Khufu]] (or Cheops) in his temple reforms.
82372
82373 A great clearance of temple offerings was made now, or earlier, and a chamber full of them has yielded the fine ivory carvings and the glazed figures and tiles which show the splendid work of the 1st dynasty. A vase of [[Menes]] with purple inlaid [[hieroglyphs]] in green glaze and the tiles with relief figures are the most important pieces. The noble statuette of Cheops in ivory, found in the stone chamber of the temple, gives the only portrait of this greatest ruler.
82374
82375 The temple was rebuilt entirely on a larger scale by [[Pepi I Meryre|Pepi I]] in the [[Sixth dynasty of Egypt|6th dynasty]]. He placed a great stone gateway to the temenos, an outer temenos wall and gateway, with a colonnade between the gates. His temple was about 40 x 50 ft. inside, with stone gateways front and back, showing that it was of the processional type. In the [[Eleventh dynasty of Egypt|11th dynasty]] [[Mentuhotep I]] added a colonnade and altars. Soon after, [[Mentuhotep II]] entirely rebuilt the temple, laying a stone pavement over the area, about 45 feet square, besides subsidiary chambers. Soon after [[Senusret I]] in the 12th dynasty laid massive foundations of stone over the pavement of his predecessor. A great temenos was laid out enclosing a much larger area, and the temple itself was about three times the earlier size.
82376
82377 ==18th dynasty==
82378 The [[Eighteenth dynasty of Egypt|18th dynasty]] began with a large chapel of [[Ahmose]], and then [[Thutmose III]] built a far larger temple, about 130 x 200 ft. He made also a processional way past the side of the temple to the cemetery beyond, with a great gateway of granite. [[Rameses III]] added a large building; and [[Ahmose II]] in the 26th dynasty rebuilt the temple again, and placed in it a large monolith shrine of red granite, finely wrought. The foundations of the successive temples were comprised within about 18 ft. depth of ruins; these needed the closest examination to discriminate the various buildings, and were recorded by over 4000 measurements and 1000 levellings (Petrie, ''Abydos'', ii.).
82379
82380 ==Other temples==
82381 The temple of Seti I was built on entirely new ground half a mile to the south of the long series of temples just described. This is the building best known as the Great Temple of Abydos, being nearly complete and an impressive sight. A principal object of it was the adoration of the early kings, whose cemetery, to which it forms a great funerary chapel, lies behind it. The long list of the kings of the principal dynasties carved on a wall is known as the &quot;[[Table of Abydos]]&quot;. There were also seven chapels for the worship of the king and principal gods. At the back were large chambers connected with the Osiris worship (Caulfield, ''Temple of the Kings''); and probably from these led out the great Hypogeum for the celebration of the Osiris mysteries, built by Mineptah (Murray, ''Osireion''). The temple was originally 550 ft. long, but the forecourts are scarcely recognizable, and the part in good state is about 250 ft. long and 350 ft. wide, including the wing at the side.
82382
82383 Excepting the list of kings and a [[panegyric]] on Ramesses II, the subjects are not historical but mythological. The work is celebrated for its delicacy and refinement, but lacks the life and character of that in earlier ages. The sculptures have been mostly published in hand copy, not facsimile, by [[Auguste Mariette]] in his ''Abydos'', i. The adjacent temple of Rameses II was much smaller and simpler in plan; but it had a fine historical series of scenes around the outside, of which the lower parts remain. A list of kings, similar to that of Seti I, formerly stood here; but the fragments were removed by the French consul and sold to the [[British Museum]].
82384
82385 == Tombs==
82386 The Royal Tombs of the earliest dynasties were placed about a mile back on the great desert plain, in a place now known as [[Umm el-Qa'ab]]. The earliest is about 10 x 20ft. inside, a pit lined with brick walls, and originally roofed with timber and matting. Others also before Menes are 15 x 25 ft. The tomb probably of Menes is of the latter size. After this the tombs increase in size and complexity. The [[tomb-pit]] is surrounded by chambers to hold the offerings, the actual [[sepulchre]] being a great wooden chamber in the midst of the brick-lined pit. Rows of small tomb-pits for the servants of the king surround the royal chamber, many dozens of such burials being usual.
82387
82388 By the end of the 2nd dynasty the type changed to a long passage bordered with chambers on either hand, the royal burial being in the middle of the length. The greatest of these tombs with its dependencies covered a space of over 3000 square yards (2,500 m&amp;sup2;). The contents of the tombs have been nearly destroyed by successive plunderers; enough remained to show that rich jewellery was placed on the mummies, a profusion of vases of hard and valuable stones from the royal table service stood about the body, the store-rooms were filled with great jars of wine, perfumed ointment and other supplies, and tablets of ivory and of ebony were engraved with a record of the yearly annals of the reigns. The sealings of the various officials, of which over 200 varieties have been found, give an insight into the public arrangements (Petrie, ''Royal Tombs'', i. and ii.).
82389
82390 The cemetery of private persons begins in the 1st dynasty with some pit-tombs in the town. It was extensive in the 12th and 13th dynasties and contained many rich tombs. A large number of fine tombs were made in the 18th to 20th dynasties, and later ages continued to bury here till Roman times. Many hundred funeral steles were removed by Mariette's workmen, without any record of the burials (Mariette, ''Abydos'', ii. and iii.). Later excavations have been recorded by [[Ayrton]], Abydos, iii.; [[Maclver]], ''El Amrah and Abydos''; and [[Garstang]], ''El Arabah''.
82391
82392 ==&quot;Forts&quot;==
82393 The structures referred to as &quot;forts&quot; lay behind the town. Known as [[Shunet ez Zebib]] is about 450 x 250 ft. over all, and still stands 30 ft. high. It was built by [[Khasekhemwy]], the last king of the 2nd dynasty. Another nearly as large adjoined it, and is probably rather older. A third fort of a squarer form is now occupied by the [[Coptic Christianity|Coptic]] convent; its age cannot be ascertained (Ayrton, Abydos, iii.).
82394
82395 ==Other==
82396 * In the TV series Stargate SG-1 Abydos is the name of a planet that is very similar to Ancient Egypt which also features a large pyramid/spaceship landing pad and a temple to the alien who posed as the sun god Ra.
82397
82398 *Some of the heiroglyphics onsite depict objects which are debated to be a helicopter, submarine, and U.F.O. [http://www.enigmas.org/aef/lib/archeo/abydosm.shtml]
82399
82400 ==See also==
82401 * [[Abydos offering formula]]
82402
82403 ==References==
82404 *{{1911}}
82405
82406 {{Ancient Egypt}}
82407
82408 [[Category:Ancient Egypt]]
82409
82410 [[ar:ØŖبŲŠØ¯ŲˆØŗ]]
82411 [[ca:Abidos]]
82412 [[da:Abydos]]
82413 [[de:Abydos (Ägypten)]]
82414 [[es:Abidos]]
82415 [[fr:Abydos]]
82416 [[gl:Abidos]]
82417 [[he:אבידוס (מ×Ļרים)]]
82418 [[lt:Abydosas]]
82419 [[nl:Abydos]]
82420 [[pl:Abydos]]
82421 [[ru:АйидОŅ]]
82422 [[sv:Abydos]]</text>
82423 </revision>
82424 </page>
82425 <page>
82426 <title>Abydos, Hellespont</title>
82427 <id>1441</id>
82428 <revision>
82429 <id>30101947</id>
82430 <timestamp>2005-12-04T10:34:31Z</timestamp>
82431 <contributor>
82432 <ip>213.16.181.166</ip>
82433 </contributor>
82434 <text xml:space="preserve">'''Abydos''', an ancient city of [[Mysia]], in [[Asia Minor]], situated at [[Nagara Point]] on the [[Hellespont]], which is here scarcely a mile broad.
82435
82436 It probably was originally a [[Thrace|Thracian]] town, but was afterwards colonized by [[Miletus|Milesians]]. Here [[Xerxes I|Xerxes]] crossed the strait on his bridge of boats in 480 B.C. when he invaded [[Greece]].
82437
82438 Abydos is celebrated for the vigorous resistance it made against [[Philip V of Macedon]] ([[200 BC]]), and is famed in story for the loves of [[Hero and Leander]].
82439
82440 The town remained till late Byzantine times the toll station of the Hellespont, its importance being transferred to the [[Dardanelles]], after the building of the &quot;Old Castles&quot; by Sultan [[Mahommed II]] (c. 1456).
82441
82442 ==References==
82443 *{{1911}}
82444 [[Category:Thrace]]
82445
82446 [[de:Abydos (Kleinasien)]]
82447 [[he:אבידוס (יוון)]]
82448 [[sv:Abydos, Mindre Asien]]
82449 [[el:ΆβĪ…δÎŋĪ‚]]</text>
82450 </revision>
82451 </page>
82452 <page>
82453 <title>August 15</title>
82454 <id>1442</id>
82455 <revision>
82456 <id>41893238</id>
82457 <timestamp>2006-03-02T12:27:17Z</timestamp>
82458 <contributor>
82459 <username>Shanes</username>
82460 <id>94147</id>
82461 </contributor>
82462 <minor />
82463 <comment>rv to Rklawton</comment>
82464 <text xml:space="preserve">{| style=&quot;float:right;&quot;
82465 |-
82466 |{{AugustCalendar}}
82467 |-
82468 |{{ThisDateInRecentYears|Month=August|Day=15}}
82469 |}
82470 '''[[August 15]]''' is the 227th day of the year in the [[Gregorian Calendar]] (228th in [[leap year]]s), with 138 days remaining.
82471 ==Events==
82472 * [[778]] - The [[Battle of Roncevaux Pass]], in which [[Roland]] is killed
82473 * [[927]] - The [[Saracen]]s conquered and destroyed [[Taranto]]
82474 * [[1057]] - [[Macbeth of Scotland|King MacBeth]] of Scotland is killed during the [[Battle of Lumphanan]] by the forces of [[Malcolm III of Scotland|King Malcolm III]].
82475 * [[1185]] - The cave city of [[Vardzia]] was consecrated by Queen [[Tamar of Georgia]]
82476 * [[1309]] - [[The city of Rhodes]] surrenders to the forces of the [[Knights of St. John]], completing their conquest of [[Rhodes]]. The knights establish their headquartes on the island, and rename themselves as the [[Knights of Rhodes]].
82477 * [[1517]] - Seven [[Portugal|Portuguese]] armed vessels led by [[Fernao Pires de Andrade]] meet [[China|Chinese]] officials at the [[Pearl River estuary]].
82478 * [[1519]] - [[Panama City, Panama]] is founded
82479 * [[1534]] - The [[Society of Jesus]] is founded by [[Ignatius of Loyola]] with [[Francis Xavier]] and other students
82480 * [[1535]] - [[Asuncion, Paraguay]] is founded
82481 * [[1540]] - [[Arequipa, Peru]] is founded
82482 * [[1549]] - [[Society of Jesus|Jesuit]] priest [[Francis Xavier]] comes ashore at [[Kagoshima]] (Traditional [[Japanese calendar|Japanese date]]: July 22, 1549).
82483 * [[1620]] - The ''[[Mayflower]]'' departs [[Southampton, England]].
82484 * [[1824]] - Freed American slaves form [[Liberia]].
82485 * [[1843]] - The [[Cathedral of Our Lady of Peace]] in [[Honolulu, Hawaii]] is dedicated. Now the cathedral of the [[Roman Catholic Diocese of Honolulu]], it is the oldest [[Roman Catholic]] [[cathedral]] in continuous use in the [[United States]].
82486 * 1843 - [[Tivoli Gardens]], one of the oldest still intact [[amusement park]]s in the world, opens in [[Copenhagen]], [[Denmark]].
82487 * [[1863]] - The [[Satsuma Province|Satsuma]] war begins between the Satsuma clan and the [[United Kingdom]] (Traditional [[Japanese calendar|Japanese date]]: July 2, 1863).
82488 * [[1877]] - [[Thomas Edison]] makes the first-ever recording - &quot;Mary Had a Little Lamb&quot;
82489 * [[1894]] - [[Sante Jeronimo Caserio]] executed for the [[Marie Francois Sadi Carnot]] assesination
82490 * [[1914]] - The [[Panama Canal]] opens to traffic
82491 * [[1920]] - [[Polish-Soviet War]]: [[Battle of Warsaw (1920)|Battle of Warsaw]] - [[Poland|Poles]] defeat the [[Red Army]].
82492 * [[1942]] - [[World War II]]: [[Operation Pedestal]] - The [[SS Ohio|SS ''Ohio'']] reaches the island of [[Malta]] barely afloat carrying vital fuel supplies for the island defenses.
82493 * [[1944]] - [[World War II]]: [[Operation Anvil]] - Allied forces land in southern [[France]].
82494 * [[1945]] - [[World War II]]: [[Victory over Japan Day]] - [[Japan]] surrenders.
82495 * 1945 - [[World War II]]: [[Korea]]n Liberation Day
82496 * [[1947]] - [[India]] gains independence from the United Kingdom. [[Jawaharlal Nehru]] takes office as the first [[Prime Minister of India]]
82497 * [[1948]] - The [[South Korea|Republic of Korea]] is established south of 38th Parallel
82498 * [[1960]] - [[Republic of the Congo]] ([[Brazzaville]]) declares its independence from [[France]]
82499 * [[1961]] - Construction begins on the [[Berlin Wall]], [[Conrad Schumann]] flees from [[East Germany]].
82500 * [[1965]] - [[John Coltrane]] plays in [[Chicago, Illinois]] for the [[Downbeat]] [[Jazz Festival]] with [[Elvin Jones]] and [[McCoy Tyner]].
82501 * [[1969]] - The [[Woodstock Music and Art Festival]] opens.
82502 * [[1971]] - President [[Richard Nixon]] ends convertibility of U.S. [[Dollar|dollar]] into gold
82503 * [[1973]] - [[Vietnam War]]: The [[United States]] bombing of [[Cambodia]] ends
82504 * [[1974]] - [[Yook Young-soo]], [[First Lady]] of [[South Korea]] is killed amid an apparent assassination attempt upon [[President]] of the [[South Korea]], [[Park Chung-hee]], during the anniversarial ceremony of the Liberation day.
82505 * [[1975]] - Military coup in [[Bangladesh]]
82506 * 1975 - [[Miki Takeo]] makes the first official pilgrimage to [[Yasukuni Shrine]] by a sitting [[Prime Minister of Japan|prime minister]] on the anniversary of the end of [[World War II]].
82507 * [[1977]] - [[The Big Ear]], a [[radio telescope]] operated by The [[Ohio State University]] as part of the [[SETI]] project, receives a radio signal from deep space; the event is named the &quot;[[Wow! signal]]&quot; for notation made by a volunteer on the project.
82508 * [[1978]] - Foundation of [[Mirapuri]] - The City of Peace and Future Man
82509 * [[1995]] - In [[South Carolina]], [[Shannon Faulkner]] becomes the first female cadet matriculated at [[The Citadel (Military College)|The Citadel]], but drops out in less than a week.
82510 * [[1998]] - [[Omagh]] bomb in [[Northern Ireland]], becoming the worst [[terrorism|terrorist]] incident of [[The Troubles]]
82511 * [[1999]] - [[Beni Ounif massacre]] in [[Algeria]]; some 29 people killed at a false roadblock near the Moroccan border, leading to temporary tensions with [[Morocco]].
82512 * [[2004]] - World famous Jam band [[Phish]] plays their last show in [[Coventry, Vermont]] after more than 20 active years.
82513
82514 ==Births==
82515 *[[1001]] - King [[Duncan I of Scotland]] (d. [[1040]])
82516 *[[1171]] - King [[Alfonso IX of Leon]] (d. [[1230]])
82517 *[[1195]] - [[Anthony of Padua]], Portuguese saint (d. [[1231]])
82518 *[[1432]] - [[Luigi Pulci]], Italian poet (d. [[1484]])
82519 *[[1613]] - [[Gilles MÊnage]], French scholar (d. [[1692]])
82520 *[[1717]] - [[Blind Jack]], English roadbuilder (d. [[1810]])
82521 *[[1769]] - [[Napoleon I of France|Napoleon Bonaparte]], Emperor of France (d. [[1821]])
82522 *[[1785]] - [[Thomas De Quincey]], English author (d. [[1859]])
82523 *[[1813]] - [[Jules GrÊvy]], President of France (d. [[1891]])
82524 *[[1856]] - [[Ivan Franko]], Ukrainian writer (d. [[1916]])
82525 *[[1858]] - [[E. Nesbit]], English author (d. [[1924]])
82526 *[[1872]] - [[Sri Aurobindo]], Indian writer, nationalist, philosopher, and guru (d. [[1950]])
82527 *[[1875]] - [[Samuel Coleridge-Taylor]], English composer (d. [[1912]])
82528 *[[1879]] - [[Ethel Barrymore]], American actress (d. [[1959]])
82529 *[[1887]] - [[Edna Ferber]], American novelist (d. [[1968]])
82530 *[[1883]] - [[Ivan Mestrovic|Ivan Me&amp;#353;trovi&amp;#263;]], Croatian sculptor (d. [[1962]])
82531 *[[1890]] - [[Jacques Ibert]], French composer (d. [[1962]])
82532 *[[1892]] - [[Louis, 7th duc de Broglie]], French physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1987]])
82533 *[[1893]] - [[Leslie Comrie]], New Zealand astronomer and computing pioneer (d. [[1950]])
82534 *[[1896]] - [[Gerty Cori]], Austrian-born biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1957]])
82535 *1896 - [[LÊon Theremin|Leon Theremin]], Russian inventor (d. [[1993]])
82536 *[[1900]] - [[Jan Brzechwa]], Polish poet (d. [[1966]])
82537 *[[1912]] - [[Julia Child]], American cook (d. [[2004]])
82538 *1912 - Dame [[Wendy Hiller]], English actress (d. [[2003]])
82539 *[[1916]] - [[Aleks Çaçi]], Albanian writer
82540 *[[1917]] - [[Jack Lynch]], fourth [[President of Ireland]] (d. [[1999]])
82541 *[[1919]] - [[Huntz Hall]], American actor (d. [[1999]])
82542 *[[1922]] - [[Lukas Foss]], German-born composer
82543 *[[1923]] - [[Rose Marie]], American actress
82544 *[[1924]] - [[Robert Bolt]], English screenwriter (d. [[1995]])
82545 *[[1925]] - [[Mike Connors]], American actor
82546 *1925 - [[Willie Jones (baseball)|Willie Jones]], baseball player (d. [[1983]])
82547 *1925 - [[Oscar Peterson]], Canadian jazz pianist
82548 *[[1928]] - [[Nicolas Roeg]], English film director
82549 *[[1933]] - [[Jim Lange]], American game show host
82550 *[[1935]] - [[Vernon Jordan Jr.]], U.S. Presidential advisor
82551 *1935 - [[Lionel Taylor]], American football player
82552 *[[1938]] - [[Janusz A. Zajdel]], Polish writer
82553 *[[1944]] - [[Linda Ellerbee]], American journalist
82554 *1944 - [[Sylvie Vartan]], French pop singer
82555 *[[1945]] - [[Mahamandaleshwar Paramhans Swami Maheshwarananda]], Indian guru
82556 *1945 - [[Begum Khaleda Zia]], [[Prime Minister of Bangladesh]]
82557 *[[1946]] - [[Jimmy Webb]], American musician and composer
82558 *[[1947]] - [[Raakhee Gulzar]], Indian actress
82559 *[[1948]] - [[Uschi Digard]], American actress and model
82560 *[[1949]] - [[Richard Deacon]], Welsh sculptor
82561 *[[1950]] - [[Anne, Princess Royal|Princess Anne of the United Kingdom]]
82562 *[[1951]] - [[Daba Diawara]], Malian politician
82563 *[[1957]] - [[ÅŊeljko Ivanek]], American actor
82564 *[[1958]] - [[Victor Shenderovich]], Russian satirist
82565 *[[1965]] - [[Rob Thomas (writer)|Rob Thomas]], author and screenwriter
82566 *[[1968]] - [[Debra Messing]], American actress
82567 *[[1972]] - [[Ben Affleck]], American actor
82568 *[[1974]] - [[Natasha Henstridge]], Canadian actress
82569 *[[1975]] - [[Kara Wolters]], American basketball player
82570 *[[1976]] - [[Boudewijn Zenden]], Dutch football player
82571 *[[1977]] - [[Igor Cassina]], Italian gymnast
82572 *[[1978]] - [[Tim Foreman]], American bassist ([[Switchfoot]])
82573 *1978 - [[Lilia Podkopayeva]], Ukrainian gymnast
82574
82575 ==Deaths==
82576 *[[778]] - [[Roland]], Frankish commander (killed in battle)
82577 *[[1038]] - King [[ Stephen I of Hungary]]
82578 *[[1040]] - King [[Duncan I of Scotland]] (b. [[1001]])
82579 *[[1057]] - King [[Macbeth I of Scotland]]
82580 *[[1118]] - [[Alexius I Comnenus]], [[Byzantine Emperor]] (b. [[1048]])
82581 *[[1196]] - [[Conrad II, Duke of Swabia]] (b. [[1173]])
82582 *[[1274]] - [[Robert de Sorbon]], French theologian and founder of the Sorbonne (b. [[1201]])
82583 *[[1369]] - [[Philippa of Hainault]], queen of [[Edward III of England]]
82584 *[[1528]] - [[Odet de Foix, Vicomte de Lautrec]], French military leader (b. [[1485]])
82585 *[[1552]] - [[Hermann of Wied]], German Catholic archbishop (b. [[1477]])
82586 *[[1621]] - [[John Barclay (1582-1621)|John Barclay]], Scottish writer (b. [[1582]])
82587 *[[1666]] - [[Johann Adam Schall von Bell]], German Jesuit missionary (b. [[1591]])
82588 *[[1714]] - [[Constantin BrÃĸncoveanu]], Prince of Wallachia (b. [[1654]])
82589 *[[1728]] - [[Marin Marais]], French composer and viol player (b. [[1656]])
82590 *[[1799]] - [[Giuseppe Parini]], Italian poet (b. [[1729]])
82591 *[[1852]] - [[Johan Gadolin]], Finnish scientist (b. [[1760]])
82592 *[[1907]] - [[Joseph Joachim]], Austrian violinist (b. [[1831]])
82593 *[[1909]] - [[Euclides da Cunha]], Brazilian writer and sociologist (b. [[1866]])
82594 *[[1935]] - [[Wiley Post]], American pilot (b. [[1898]])
82595 *1935 - [[Will Rogers]], American humorist and actor (b. [[1879]])
82596 *[[1936]] - [[Grazia Deledda]], Italian writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1871]])
82597 *[[1951]] - [[Artur Schnabel]], Polish pianist (b. [[1882]])
82598 *[[1953]] - [[Ludwig Prandtl]], German physicist (b. [[1875]])
82599 *[[1959]] - [[Blind Willie McTell]], American singer (b. [[1901]]
82600 *[[1962]] - [[Lei Feng]], Chinese revolutionary (b. [[1940]])
82601 *[[1967]] - [[RenÊ Magritte]], Belgian painter (b. [[1898]])
82602 *[[1971]] - [[Paul Lukas]], Hungarian-born actor (b. [[1887]])
82603 *[[1975]] - [[Sheikh Mujibur Rahman]], [[President of Bangladesh]] (b. [[1920]])
82604 *1975 - [[Clay Shaw]], [[John F. Kennedy]] assassination investigator (b. [[1913]])
82605 *[[1982]] - [[Hugo Theorell]], Swedish scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1903]])
82606 *[[1990]] - [[Viktor Tsoi]], Russian musician (b. [[1962]])
82607 *[[1995]] - [[John Cameron Swayze]], American journalist (b. [[1906]])
82608 *[[1999]] - Sir [[Hugh Casson]], British architect and artist (b. [[1910]])
82609 *[[2001]] - [[Richard Chelimo]], Kenyan athlete (brain tumour) (b. [[1972]])
82610 *[[2003]] - [[GÃļsta Sundqvist]], Finnish songwriter and singer (heart attack) (b. [[1957]])
82611 *[[2004]] - [[Sune BergstrÃļm]], Swedish biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1916]])
82612 *2004 - [[Amarsinh Chaudhary]], Indian politician (b. [[1941]])
82613 *[[2005]] - [[James Dougherty]], first husband of [[Marilyn Monroe]] ([[leukemia]])
82614
82615 ==Holidays and observances==
82616 * [[August 15 (Eastern Orthodox liturgics)|Eastern Orthodoxy]] &amp;ndash; Feast of the [[Dormition of the Theotokos|Dormition]] of the [[Theotokos]], the commemoration of the death of [[Mary, the mother of Jesus]].
82617 * [[Calendar of Saints|RC Saints]] &amp;ndash; Feast day of the [[Assumption of Mary]], the mother of Jesus, [[Holy Day of Obligation]]. Public Holiday in: [[Austria]], [[Belgium]], [[Cameroon]], [[Chile]], [[Côte d'Ivoire]], [[Croatia]], [[Cyprus]], [[East Timor]], [[France]], [[Greece]], [[India]], [[Italy]], [[Lebanon]], [[Lithuania]], [[Malta]], [[Mauritius]], [[Poland]], [[Portugal]], [[Seychelles]], [[Slovenia]] and [[Spain]].
82618 *[[Acadie]] &amp;ndash; National Day
82619 * [[Egypt]] &amp;ndash; Flooding of the [[Nile]] Day
82620 * [[Hawaii]] &amp;ndash; ''[[Toro Nagashi]]'' (Floating Lantern Ceremony) to commemorate the end of the [[World War II|second world war]]
82621 * [[Holidays in India|India]] &amp;ndash; [[Independence Day]] (from the United Kingdom, [[1947]])
82622 * [[Italy]] &amp;ndash; &quot;Ferragosto&quot;, remembrance of an ancient Roman holiday in honor of Augustus (Feriae Augusti)
82623 * [[Korea]] &amp;ndash; Liberation Day
82624 * Ancient [[Latvia]] &amp;ndash; [[Māras]]
82625 * [[Liechtenstein]] &amp;ndash; Liechtenstein Day
82626 * [[Poland]] &amp;ndash; Polish Armed Forces Day
82627 * [[Jamaica]]&amp;ndash; Jamaican national dance Day(Bianca Day)
82628 * [[Tuva]] &amp;ndash; Tuva Republic Day, [[Naadym]]
82629
82630 ==External links==
82631 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/15 BBC: On This Day]
82632
82633 [[August 14]] - [[August 16]] - [[July 15]] - [[September 15]] -- [[historical anniversaries|listing of all days]]
82634
82635 {{months}}
82636
82637 [[af:15 Augustus]]
82638 [[ar:15 ØŖØēØŗØˇØŗ]]
82639 [[an:15 d'agosto]]
82640 [[ast:15 d'agostu]]
82641 [[bg:15 авĐŗŅƒŅŅ‚]]
82642 [[be:15 ĐļĐŊŅ–ŅžĐŊŅ]]
82643 [[bs:15. august]]
82644 [[ca:15 d'agost]]
82645 [[ceb:Agosto 15]]
82646 [[cv:ÇŅƒŅ€ĐģĐ°, 15]]
82647 [[co:15 d'aostu]]
82648 [[cs:15. srpen]]
82649 [[cy:15 Awst]]
82650 [[da:15. august]]
82651 [[de:15. August]]
82652 [[et:15. august]]
82653 [[el:15 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
82654 [[es:15 de agosto]]
82655 [[eo:15-a de aÅ­gusto]]
82656 [[eu:Abuztuaren 15]]
82657 [[fo:15. august]]
82658 [[fr:15 aoÃģt]]
82659 [[fy:15 augustus]]
82660 [[ga:15 LÃēnasa]]
82661 [[gl:15 de agosto]]
82662 [[ko:8ė›” 15ėŧ]]
82663 [[hr:15. kolovoza]]
82664 [[io:15 di agosto]]
82665 [[id:15 Agustus]]
82666 [[ia:15 de augusto]]
82667 [[ie:15 august]]
82668 [[is:15. ÃĄgÃēst]]
82669 [[it:15 agosto]]
82670 [[he:15 באוגוסט]]
82671 [[jv:15 Agustus]]
82672 [[kn:ā˛†ā˛—ā˛¸āŗā˛¤ āŗ§āŗĢ]]
82673 [[ka:15 აგვისáƒĸო]]
82674 [[csb:15 zÊlnika]]
82675 [[ku:15'ÃĒ gelawÃĒjÃĒ]]
82676 [[lt:RugpjÅĢčio 15]]
82677 [[lb:15. August]]
82678 [[li:15 augustus]]
82679 [[hu:Augusztus 15]]
82680 [[mk:15 авĐŗŅƒŅŅ‚]]
82681 [[ml:ā´†ā´—ā´¸āĩā´ąāĩā´ąāĩâ€Œ 15]]
82682 [[ms:15 Ogos]]
82683 [[nap:15 'e aÚsto]]
82684 [[nl:15 augustus]]
82685 [[ja:8月15æ—Ĩ]]
82686 [[no:15. august]]
82687 [[nn:15. august]]
82688 [[oc:15 d'agost]]
82689 [[pl:15 sierpnia]]
82690 [[pt:15 de Agosto]]
82691 [[ro:15 august]]
82692 [[ru:15 авĐŗŅƒŅŅ‚Đ°]]
82693 [[se:BorgemÃĄnu 15.]]
82694 [[sco:15 August]]
82695 [[sq:15 Gusht]]
82696 [[scn:15 di austu]]
82697 [[simple:August 15]]
82698 [[sk:15. august]]
82699 [[sl:15. avgust]]
82700 [[sr:15. авĐŗŅƒŅŅ‚]]
82701 [[fi:15. elokuuta]]
82702 [[sv:15 augusti]]
82703 [[tl:Agosto 15]]
82704 [[tt:15. August]]
82705 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 15]]
82706 [[th:15 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
82707 [[vi:15 thÃĄng 8]]
82708 [[tr:15 Ağustos]]
82709 [[uk:15 ŅĐĩŅ€ĐŋĐŊŅ]]
82710 [[wa:15 d' awousse]]
82711 [[war:Agosto 15]]
82712 [[zh:8月15æ—Ĩ]]
82713 [[pam:Agostu 15]]</text>
82714 </revision>
82715 </page>
82716 <page>
82717 <title>Abu al-Fida</title>
82718 <id>1444</id>
82719 <revision>
82720 <id>42060905</id>
82721 <timestamp>2006-03-03T15:11:01Z</timestamp>
82722 <contributor>
82723 <username>Shaolin128</username>
82724 <id>653138</id>
82725 </contributor>
82726 <comment>+fr</comment>
82727 <text xml:space="preserve">'''Abu al-Fida''' (fully '''Abu Al-fida' Isma'il Ibn 'ali Al-malik Al-mu'ayyad 'imad Ad-din''', also [[transliterated]] '''Abulfeda''', '''Abu Alfida''', and other ways) (November [[1273]] &amp;ndash; [[October 27]], [[1331]]) was an [[Arab]] [[historian]], [[geographer]], and local [[sultan]].
82728
82729 ==Life==
82730
82731 Abulfeda was born at [[Damascus]], where his father [[Malik ul-Afdal]], brother of the prince of [[Hamah]], had fled from the [[Mongols]]. He was a descendant of [[Ayyub]], the father of [[Saladin]].
82732
82733 In his boyhood he devoted himself to the study of the ''[[Qur'an]]'' and the sciences, but from his twelfth year was almost constantly engaged in military expeditions, chiefly against the [[Crusades|crusaders]].
82734
82735 In [[1285]] he was present at the assault of a stronghold of the [[Knights of St. John]], and took part in the sieges of [[Tripoli, Lebanon|Tripoli]], [[Akko|Acre]] and [[Qal'at ar-Rum]]. In [[1298]] he entered the service of the [[Mameluke]] [[Sultan]] [[Malik al-Nasir]] and after twelve years was invested by him with the governorship of [[Hamah]]. In [[1312]] he became prince with the title '''Malik us-Salhn''', and in [[1320]]
82736 received the hereditary rank of ''sultan'' with the title '''Malik ul-Mu'ayyad'''.
82737
82738 For more than twenty years all together he reigned in tranquillity and splendour, devoting himself to the duties of government and to the composition of the works to which he is chiefly indebted for his fame. He was a munificent patron of men of letters, who came in large numbers to his court. He died in [[1331]].
82739
82740 ==Works==
82741
82742 His chief historical work is ''An Abridgment of the History at the Human Race,'' in the form of [[annals]] extending from the creation of the world to the year [[1329]] ([[Constantinople]], 2 vols. [[1869]]).
82743
82744 His geography is, like much of the history, founded on the works of his predecessors, and so ultimately on the work of [[Ptolemy]]. A long introduction on various geographical matters is followed by twenty-eight sections dealing in tabular form with the chief towns of the world. After each name are given the longitude, latitude, climate, spelling, and then observations generally taken from earlier authors.
82745
82746 Parts of the work were published and translated as early as [[1650]] in [[Europe]].
82747
82748 ==References==
82749 *{{1911}}
82750
82751 [[Category:1273 births]]
82752 [[Category:1331 deaths]]
82753 [[Category:Arab historians]]
82754 [[Category:Arab geographers]]
82755 [[Category:Muslim scientists]]
82756
82757 [[fr:Aboul FÊda]]
82758 [[sl:Abulfeda]]</text>
82759 </revision>
82760 </page>
82761 <page>
82762 <title>Acacia</title>
82763 <id>1445</id>
82764 <revision>
82765 <id>42150188</id>
82766 <timestamp>2006-03-04T03:44:02Z</timestamp>
82767 <contributor>
82768 <username>Vuong Ngan Ha</username>
82769 <id>225920</id>
82770 </contributor>
82771 <text xml:space="preserve">{{Taxobox
82772 | color = lightgreen
82773 | name = ''Acacia''
82774 | image = Acacia melanoxylon2.jpg
82775 | image_width = 240px
82776 | image_caption = ''[[Acacia melanoxylon]]'' foliage and flowers
82777 | regnum = [[Plant]]ae
82778 | divisio = [[Flowering plant|Magnoliophyta]]
82779 | classis = [[Magnoliopsida]]
82780 | ordo = [[Fabales]]
82781 | familia = [[Fabaceae]]
82782 | subfamilia = [[Mimosoideae]]
82783 | tribus = Acacieae
82784 | genus = '''''Acacia'''''
82785 | genus_authority = [[Gerrit Smith Miller|Miller]]
82786 | subdivision_ranks = Species
82787 | subdivision =
82788 About 1,300; see [[List of Acacia species]]
82789 }}
82790 :''For Acacia Research Corporation, see [[Acacia Technologies]]. For Acacia Fraternity, see [[Acacia Fraternity]].''
82791
82792 '''''Acacia''''' is a genus of [[shrub]]s and [[tree]]s of [[Gondwana|Gondwanian]] origin belonging to the Subfamily [[Mimosoideae]] of the Pea Family (Family [[Fabaceae]]), first described from Africa by [[Carolus Linnaeus|Linnaeus]] in [[1773]]. There are roughly 1300 species of ''Acacia'' worldwide, about 950 of them native to [[Australia]], with the remainder spread around the dry tropical to warm-temperate regions of both hemispheres, including Africa, southern Asia, and the Americas. The Genus ''Acacia'' however is apparently not [[monophyletic]]. This discovery has led to the breaking up of ''Acacia'' into five new genera as discussed in [[List of Acacia species]].
82793
82794 The northernmost species in the genus is ''Acacia greggii'' ([[Catclaw Acacia]]), reaching 37°10' N in southern [[Utah]] in the [[United States]]; the southernmost are ''Acacia dealbata'' ([[Silver Wattle]]), ''Acacia longifolia'' ([[Coast Wattle]] or Sydney Golden Wattle), ''Acacia mearnsii'' ([[Black Wattle]]), and ''Acacia melanoxylon'' ([[Acacia melanoxylon|Blackwood]]), reaching 43°30' S in [[Tasmania]], Australia, while ''Acacia caven'' ([[Espinillo Negro]]) reaches nearly as far south in northeastern [[Chubut Province]] of [[Argentina]]. Australian species are usually called '''[[wattle]]s''', while African and American species tend to be known as '''acacias'''.
82795
82796 The leaves of acacias are compound pinnate in general. In some species, however, more especially in the Australian and Pacific islands species, the leaflets are suppressed, and the leaf-stalks ('''[[petiole]]s''') become vertically flattened, and serve the purpose of leaves; these are known as '''[[phyllode]]s'''. The vertical orientation of the phyllodes protects them from intense sunlight, as with their edges towards the sky and earth they do not intercept light so fully as horizontally placed leaves. A few species (such as ''[[Acacia glaucoptera]]'') lack leaves or phyllodes altogether, but possess instead '''[[cladode]]s''', modified leaf-like photosynthetic stems functioning as leaves.
82797
82798 The small [[flower]]s have five, very small petals, almost hidden by the long stamens, and are arranged in dense globular or cylindrical clusters; they are yellow or cream-colored in most species, whitish in some, even purple (as in ''[[Acacia purpureapetala]]'') or red (in the recently grown cultivar ''[[Acacia leprosa]] 'Scarlet Blaze''').
82799
82800 The plants often bear spines, especially those species growing in arid regions. These sometimes represent branches which have become short, hard and pungent, or sometimes leaf-stipules. ''Acacia armata'' is the [[Kangaroo-thorn]] of Australia, ''Acacia giraffae'', the [[Camelthorn]] of Africa. In the Central American ''Acacia sphaerocephala'' ([[Bullthorn Acacia]]) and ''[[Acacia spadicigera]]'', the large thorn-like stipules are hollow and afford shelter for [[ant]]s, which feed on a secretion of honey on the leaf-stalk and curious food-bodies at the tips of the leaflets; in return they protect the plant against leaf-eating insects.
82801
82802 In common parlance the term &quot;acacia&quot; is occasionally misapplied to species of the Genus ''Robinia'', which also belongs in the pea family. ''Robinia pseudoacacia'', an American species locally known as [[Black locust]], is sometimes called &quot;false acacia&quot; in cultivation in Britain.
82803
82804 In Australia, ''Acacia'' species are sometimes used as food plants by the [[larva]]e of [[Hepialidae|hepialid]] [[moth]]s of the genus ''[[Aenetus]]'' including ''A. ligniveren''. These burrow horizontally into the trunk then vertically down. Other [[Lepidoptera]] larvae which have been recorded feeding on ''Acacia'' include [[Brown-tail]], ''[[Endoclita|Endoclita malabaricus]]'' and [[Turnip Moth]]. The leaf-mining larvae of some [[Bucculatricidae|bucculatricid]] moths also feed on ''Acacia'': ''Bucculatrix agilis'' feeds exclusively on ''Acacia horrida'', ''Bucculatrix flexuosa'' feeds exclusively on ''Acacia nilotica''.
82805
82806 == Uses ==
82807 [[Image:Acaciaauriculiformis1web.jpg|thumb|right|250px|Earpod Wattle (''Acacia auriculiformis'')]]
82808
82809 ===Industrial and medicinal uses===
82810 Various species of acacia yield gum. True [[gum arabic]] is the product of ''[[Acacia senegal]]'', abundant in dry tropical west Africa from [[Senegal]] to northern [[Nigeria]].
82811
82812 ''[[Acacia arabica]]'' is the gum-arabic tree of India, but yields a gum inferior to the true gum-arabic. The bark of ''Acacia arabica'', under the name of '''babul''' or '''babool''', is used in Scinde for tanning. In [[Ayurvedic medicine]], babul is considered a remedy that is helpful for treating premature ejaculation.
82813
82814 The bark of various Australian species, known as wattles, is very rich in tannin and forms an important article of export; important species include ''Acacia pycnantha'' (Golden Wattle), ''Acacia decurrens'' (Tan Wattle), ''Acacia dealbata'' (Silver Wattle) and ''Acacia mearnsii'' (Black Wattle). Black Wattle is grown in plantations in South Africa. The pods of ''[[Acacia nilotica]]'' (under the name of neb-neb), and of other African species are also rich in tannin and used by tanners.
82815
82816 Some species afford valuable timber; such are ''Acacia melanoxylon'' (Blackwood) from [[Australia]], which attains a great size; its wood is used for furniture, and takes a high polish; and ''Acacia homalophylla'' ([[Myall Wood]], also Australian), which yields a fragrant timber, used for ornamental purposes. ''[[Acacia formosa]]'' supplies the valuable [[Cuba]]n timber called sabicu. ''[[Acacia seyal]]'' is thought to be the shittah tree of the [[Bible]], which supplied shittim-wood. This was used in the construction of the [[Ark of the Covenant]]. As a spiritual icon it is also one of the most powerful symbols in [[freemasonry]], representing the eternal soul and purity of the soul. ''[[Acacia heterophylla]]'' from [[RÊunion]] island, and ''[[Koa|Acacia koa]]'' from the [[Hawaiian Islands]] are excellent timber trees.
82817
82818 ''Acacia farnesiana'' is used in the perfume industry due to its strong fragrance.
82819
82820 An astringent medicine, called [[catechu]] or cutch, is procured from several species, but more especially from ''[[Acacia catechu]]'', by boiling down the wood and evaporating the solution so as to get an extract.
82821
82822 ===Ornamental uses===
82823 A few species are widely grown as ornamentals in [[garden]]s; the most popular perhaps is ''Acacia dealbata'' (Silver Wattle), with its attractive glaucous to silvery leaves and bright yellow flowers; it is erroneously known as &quot;mimosa&quot; in some areas where it is cultivated, through confusion with the related genus ''[[Mimosa]]''.
82824
82825 ===Culinary uses===
82826 [[Acacia seed]]s are often used for food and a variety of other products. The seeds of ''[[Acacia niopo]]'', for instance, are roasted and used as [[snuff]] in [[South America]].
82827
82828 In [[Laos]] and [[Thailand]], the feathery shoots of ''[[Acacia pennata]]'' (common name ''cha-om'') are used in soups, curries, omelettes, and stir-fries.
82829
82830 ===Pharmacological uses===
82831 Many Acacia species contain some psychoactive alkaloids of which [[Dimethyltryptamine|DMT]] and [[N-methyltryptamine|NMT]] are the most prominent and useful. The leaves, stems and/or roots can be made into a brew together with some [[Monoamine oxidase inhibitor|MAOI]]-containing plant to obtain an effect when taken orally. This could be seen as a kind of ''[[Ayahuasca]]''. Maybe in relation to this effect, [[Egyptian mythology]] has associated the acacia tree with characteristics of the [[tree of life]] (cf. article on the [[Legend of Osiris and Isis]]).
82832
82833 Alkaloids in different species, from ''[[TiHKAL]]'' (by [[Alexander Shulgin]]):
82834 &lt;table&gt;
82835 &lt;tr&gt;
82836 &lt;td&gt;''A. baileyana''&lt;/td&gt;&lt;td&gt;0.02% tryptamine and &amp;beta;-carbolines, in the leaf&lt;/td&gt;
82837 &lt;/tr&gt;&lt;tr&gt;
82838 &lt;td&gt;''A. maidenii''&lt;/td&gt;&lt;td&gt;DMT and NMT, in the stem bark&lt;/td&gt;
82839 &lt;/tr&gt;&lt;tr&gt;
82840 &lt;td&gt;''A. albida''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82841 &lt;/tr&gt;&lt;tr&gt;
82842 &lt;td&gt;''A. confusa''&lt;/td&gt;&lt;td&gt;DMT and NMT, in the leaf, stem and bark&lt;/td&gt;
82843 &lt;/tr&gt;&lt;tr&gt;
82844 &lt;td&gt;''A. cultriformis''&lt;/td&gt;&lt;td&gt;tryptamine, in the leaf and stem&lt;/td&gt;
82845 &lt;/tr&gt;&lt;tr&gt;
82846 &lt;td&gt;''A. laeta''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82847 &lt;/tr&gt;&lt;tr&gt;
82848 &lt;td&gt;''A. mellifera''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82849 &lt;/tr&gt;&lt;tr&gt;
82850 &lt;td&gt;''A. nilotica''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82851 &lt;/tr&gt;&lt;tr&gt;
82852 &lt;td&gt;''A. phlebophylla''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82853 &lt;/tr&gt;&lt;tr&gt;
82854 &lt;td&gt;''A. podalyriaefolia''&lt;/td&gt;&lt;td&gt;tryptamine, in the leaf&lt;/td&gt;
82855 &lt;/tr&gt;&lt;tr&gt;
82856 &lt;td&gt;''A. senegal''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82857 &lt;/tr&gt;&lt;tr&gt;
82858 &lt;td&gt;''A. seyal''&lt;/td&gt;&lt;td&gt;DMT, in the leaf&lt;/td&gt;
82859 &lt;/tr&gt;&lt;tr&gt;
82860 &lt;td&gt;''A. sieberiana''&lt;/td&gt;&lt;td&gt;DMT, in the leaf)
82861 &lt;/tr&gt;&lt;tr&gt;
82862 &lt;td&gt;''A. simplicifolia''&lt;/td&gt;&lt;td&gt;DMT and NMT, in the leaf, stem and trunk bark&lt;/td&gt;
82863 &lt;/tr&gt;&lt;tr&gt;
82864 &lt;td&gt;''A. vestita''&lt;/td&gt;&lt;td&gt;tryptamine, in the leaf and stem&lt;/td&gt;
82865 &lt;/tr&gt;
82866 &lt;/table&gt;
82867
82868 == Species ==
82869 There are over 1,300 species of Acacia. See [[List of Acacia species]] for a complete listing.
82870
82871 == External links ==
82872 {{wikispecies|Acacia}}
82873 {{Commons|Acacia}}
82874 * [http://www.worldwidewattle.com/ World Wide Wattle]
82875 * [http://waynesword.palomar.edu/plaug99.htm Wayne's Word] on &quot;The Unforgettable Acacias&quot;
82876
82877 [[Category:Acacia| ]]
82878 [[Category:Pantropical Flora]]
82879 [[Category:Australian plants]]
82880 [[Category:Argentine flora]]
82881 [[Category:Trees of Africa]]
82882
82883 [[ar:ØˇŲ„Ø­]]
82884 [[bg:АĐēĐ°Ņ†Đ¸Ņ]]
82885 [[da:Akacie]]
82886 [[de:Akazien]]
82887 [[et:Akaatsia]]
82888 [[es:Acacia]]
82889 [[eo:Akacio]]
82890 [[fr:Acacia]]
82891 [[gl:Acacia]]
82892 [[ko:ė•„ėš´ė‹œė•„ė†]]
82893 [[it:Acacia]]
82894 [[nl:Acacia]]
82895 [[ja:ã‚ĸã‚Ģã‚ˇã‚ĸ]]
82896 [[pl:Akacja]]
82897 [[pt:AcÃĄcia]]
82898 [[sr:АĐēĐ°Ņ†Đ¸Ņ˜Đ°]]
82899 [[uk:АĐēĐ°Ņ†Ņ–Ņ]]
82900 [[vi:Chi Keo]]
82901 [[zh:金合æŦĸ]]</text>
82902 </revision>
82903 </page>
82904 <page>
82905 <title>Acapulco</title>
82906 <id>1446</id>
82907 <revision>
82908 <id>41701158</id>
82909 <timestamp>2006-03-01T03:49:01Z</timestamp>
82910 <contributor>
82911 <username>Tyler Oderkirk</username>
82912 <id>430856</id>
82913 </contributor>
82914 <minor />
82915 <comment>Typo fix: &quot;non&quot; -&gt; &quot;none&quot;</comment>
82916 <text xml:space="preserve">: ''This article is about the city in Mexico; there is also a town called [[Acapulco, Peru|Acapulco]] in Peru.''
82917 '''Acapulco''' (Officially: '''Acapulco de JuÃĄrez''') is a city and major [[sea port]] in the state of [[Guerrero]] on the Pacific coast of [[Mexico]], 300 km (190 miles) southwest from [[Mexico City]], at {{coor d|16.85|N|99.92|W|}}. Acapulco is located on a deep, semi-circular bay. Many consider it to be one of the best harbours on the [[Pacific Ocean|Pacific]] coast of Mexico, and it is a port of call for shipping lines running between [[Panama]] and [[San Francisco, California]], [[United States|USA]]. In [[2003]] the estimated population was 638,000 people. [[Image:spring break.jpg||thumb|280px|right|Acapulco Beach]]
82918 [[Image:JLNYCAcapulcoBay.jpg|thumb|right|Acapulco]]
82919
82920 ==Geography==
82921 The town is built on a narrow strip of low land, scarcely half a mile wide, between the shore line and the lofty mountains that encircle the bay. There is great natural beauty in the surroundings, mountains render the access to the town, though not difficult to access particularly since the construction of a 2-km-long tunnel to the waterfront from the hinterland in the [[1990s]]. An earlier effort to admit the cooling sea breezes by cutting through the mountains a passage called the Abra de San Nicolas had some beneficial effect.
82922
82923 ==History==
82924 Acapulco has been well known as a traveler's crossroads for at least a millennium. Its name is a [[Nahuatl]] word, meaning &quot;plain of dense reeds.&quot;
82925
82926 The earliest local remains, stone metates and pottery utensils, were left in the [[3rd millennium BC]]. Much later, sophisticated artisans fashioned curvaceous female figurines. Some hypothesize that there was early Polynesian or Asian influences in Pacific Mexico as early as 1500 years before the arrival [[Christopher Columbus]].
82927
82928 Other artifacts resemble those found in highland Mexico. Although influenced by [[Tarascan]], [[Mixtec]], [[Zapotec]], and [[Aztec]] civilizations, sometimes paying tribute to them and frequented by their traders, Acapulco never came under their direct control, but instead remained subject to local caciques until the [[Spain|Spanish]] conquest.
82929 [[Image:Puerto_de_Acapulco_Boot_1628.png|right|thumb|A 1628 Spanish relief map of Acapulco Bay]]
82930 After conquering the Aztecs, [[HernÃĄn CortÊs]] sent expeditions south to build ships and find a route to [[China]]. The first explorers sailed from [[Zacatula]], near present-day [[LÃĄzaro CÃĄrdenas, MichoacÃĄn]], on the coast 400 km (250 miles) north-west of Acapulco. By a royal decree dated [[April 25]], [[1528]], &quot;Acapulco and her land ... where the ships of the south will be built....&quot; passed directly into the hands of the Spanish Crown. Voyages of discovery set sail from Acapulco for [[Peru]], the [[Sea of Cortez]], and to [[Asia]]. None returned across the Pacific, however, until Augustinian priest [[AndrÊs de Urdaneta]] discovered the northern Pacific tradewinds, which propelled him and his ship, loaded with Chinese treasure, to Acapulco in [[1565]].
82931
82932 For more than 200 years after that, a special yearly trading ship, known to the English as the [[Manila Galleon]], set sail from Acapulco for the [[Manila]] and the Orient. Its return started an annual merchant fair in Acapulco where traders bargained for the Galleon's cargo of silks, porcelain, ivory, and lacquerware. This trade connection, which persisted up to Mexican independence, was instrumental in placing the [[Philippines]] on the east side of the [[International Date Line]] until the end of [[1844]].
82933
82934 Acapulco's yearly treasure soon attracted marauders, too. In [[1579]], [[Francis Drake]] attacked but failed to capture the Galleon, but in [[1587]], off [[Cabo San Lucas]], [[Thomas Cavendish]] seized the ''Santa Anna''. The cash alone, 1.2 million [[gold]] pesos, severely depressed the [[London bullion market]].
82935
82936 After a [[Netherlands|Dutch]] fleet invaded Acapulco in [[1615]], the Spanish rebuilt their fort, which they christened ''Fort San Diego'' in [[1617]]. Destroyed by an [[earthquake]] in [[1776]], the fort was rebuilt by 1783. The [[Mexican War of Independence|War of Independence]] ([[1820]]-[[1821|21]]) stopped the Manila Galleon forever, sending Acapulco into a century-long slumber.
82937
82938 The town suffered considerably from [[earthquake]]s in July and August [[1909]].
82939
82940 [[Miguel Aleman Valdes]] was the [[President of Mexico]] who put so much in the modernization and development of Acapulco. He did so much not only as President but also as the Head of Mexico's National Tourist Commission after he left office.
82941
82942 Acapulco was devastated by [[Hurricane Pauline]] in [[October]] [[1997]].
82943
82944 ==Economy==
82945 There are exports of hides, [[wood]], and fruit, and the adjacent district of [[Tabares]] produces [[cotton]], [[tobacco]], [[cacao]], [[sugarcane]], Indian corn, beans, and [[coffee]].
82946
82947 ==Acapulco as a holiday resort==
82948 [[Image:Acapulco.jpg|thumb|right|View of the Pacific Ocean from an Acapulco hotel]]
82949
82950 For many years Acapulco has been a popular resort for holiday makers. The city has had its star-spangled times, prompting none other than Old Blue Eyes [[Frank Sinatra]] to give the place a mention in his all time classic [[Come Fly With Me]]. Modern Acapulco still has a great appeal. The vast majority of the tourists now tend to come from the rest of Mexico but several other foreign nationals make appearances in the numerous bars and clubs dotted around the bay come sun down.
82951
82952 In recent years, Acapulco has made some ground on [[CancÃēn]] for Spring Break's most popular resort destinations. Acapulco offers a relatively unknown experience and a larger international student crowd than CancÃēn. Due to a recent gun fight between drugdealers and police that left 4 drug dealers dead, the town has feared it might affect tourism this spring break.[http://www.npr.org/templates/story/story.php?storyId=5228258][http://www.univision.com/content/content.jhtml?cid=784788][http://www.el-universal.com.mx/notas/327982.html][http://www.jornada.unam.mx/2006/01/28/003n1pol.php][http://www.cronica.com.mx/nota.php?idc=223266]
82953
82954 ==Transportation==
82955 By the early [[20th century]], the town was chosen as the terminus for two railway lines seeking a Pacific port &amp;ndash; the Interoceanic and the Mexican Central. The port city grew greatly in the 20th century.
82956
82957 Acapulco is served by [[General Juan N. Álvarez International Airport]].
82958
82959 ==External links==
82960 * {{wikitravel}}
82961 * [http://maps.google.com/maps?ll=16.870193,-99.875679&amp;spn=0.166014,0.234180&amp;t=k&amp;hl=en Satellite picture from Google Local]
82962
82963 ==References==
82964 *{{1911}}
82965
82966 ==Sources==
82967 *[http://www.el-universal.com.mx/notas/327982.html EjÊrcito y agentes federales sitian Acapulco tras balacera, January 29, 2006]
82968 *[http://www.univision.com/content/content.jhtml?cid=784788 Tiroteo en MÊxico dejÃŗ cuatro muertos, January 28, 2006]
82969 *[http://www.jornada.unam.mx/2006/01/28/003n1pol.php Balacera entre narcos y policías en Acapulco; versiones contradictorias, January 28, 2006]
82970 *[http://www.cronica.com.mx/nota.php?idc=223266 Narcos y policías se baten a balazos en Acapulco, January 28, 2006]
82971
82972 ==See also==
82973 * [[Spring Break]]
82974 * [[Acafest]]
82975
82976 [[Category:Cities in Guerrero]]
82977 [[Category:Coastal cities]]
82978 [[Category:Beaches of Mexico]]
82979 [[Category:Mexican Ports]]
82980
82981 [[da:Acapulco]]
82982 [[de:Acapulco]]
82983 [[et:Acapulco]]
82984 [[es:Acapulco]]
82985 [[fr:Acapulco de JuÃĄrez]]
82986 [[gl:Acapulco]]
82987 [[ko:ė•„ėš´í’€ėŊ”]]
82988 [[nl:Acapulco de JuÃĄrez]]
82989 [[ja:ã‚ĸã‚ĢプãƒĢã‚ŗ]]
82990 [[pl:Acapulco]]
82991 [[pt:Acapulco]]
82992 [[ru:АĐēĐ°ĐŋŅƒĐģŅŒĐēĐž]]
82993 [[fi:Acapulco]]
82994 [[sv:Acapulco]]
82995 [[uk:АĐēĐ°ĐŋŅƒĐģŅŒĐēĐž]]</text>
82996 </revision>
82997 </page>
82998 <page>
82999 <title>Adriatic Sea</title>
83000 <id>1447</id>
83001 <revision>
83002 <id>41942083</id>
83003 <timestamp>2006-03-02T19:59:18Z</timestamp>
83004 <contributor>
83005 <username>NormanEinstein</username>
83006 <id>176266</id>
83007 </contributor>
83008 <minor />
83009 <comment>/* Name and etymology */ Mons Garganus -&gt; Monte Gargano</comment>
83010 <text xml:space="preserve">[[Image:Adriatic Sea.jpg|thumb|400px|right|The Adriatic Sea&lt;br&gt;''Source:'' [[NASA]]]]
83011
83012 The '''Adriatic Sea''' is an arm of the [[Mediterranean Sea]] separating the [[Italian peninsula]] from the [[Balkan peninsula]], and the system of the [[Apennine Mountains]] from that of the [[Dinaric Alps]] and adjacent ranges.
83013
83014 The western coast is [[Italy|Italian]], while the eastern coast runs along the countries of [[Slovenia]], [[Croatia]], [[Bosnia and Herzegovina]], [[Serbia and Montenegro]], and [[Albania]].
83015
83016 ==Name and etymology==
83017 [[Image:Adriatic Sea map.png|thumb|right|Map of the Adriatic Sea]]
83018
83019 The name has existed since the antiquity; in [[Latin]] it was ''Mare Hadriaticum''. The name, derived from the town of [[Adria]] (or ''Hadria''), belonged originally only to the upper portion of the sea (Herodotus vi. 127, vii. 20, ix. 92; Euripides, ''Hippolytus,'' 736), but was gradually extended as the [[Syracuse, Italy|Syracusan]] colonies gained in importance.
83020
83021 But even then the Adriatic in the narrower sense only extended as far as the [[Monte Gargano]], the outer portion being called the [[Ionian Sea]]:
83022 the name was sometimes, however, inaccurately used to include the Gulf of Tarentum (the modern-day [[Gulf of Taranto]]), the [[Sea of Sicily]], the [[Gulf of Corinth]] and even the sea between [[Crete]] and [[Malta]] (Acts xxvii. 27).
83023
83024 The Adriatic Sea is east of Italy, a major tourist attraction. It was used by the ancient Romans to transport objects (including animals and [[slaves]]) to Ostia (the Roman port). These objects were used in various places in Rome.
83025
83026 ==Extent==
83027 The Adriatic extends northwest from 40° to 45° 45' N., with an extreme length of about 770 km (415 [[nautical mile|nm]], 480 [[mile|mi]]). It has a [[arithmetic mean|mean]] breadth of about 160 km (85 [[nautical mile|nm]], 100 [[mile|mi]]), although the [[Strait of Otranto]], through which it connects at the south with the Ionian Sea, is only 45-55 [[nautical mile]]s wide (85-100 km).
83028
83029 Moreover, the chain of islands which fringes the northern part of the eastern shore reduces the extreme breadth of open sea in this part to 145 km (78 nm, 90 mi). Its total surface area is about 60,000 square miles ([[1 E11 m²|160,000]] [[square kilometre|km²]]).
83030
83031 The northern part of the sea is very shallow, and between the southern promontories of [[Istria]] and [[Rimini]] the depth rarely exceeds 46 m (25 [[fathom]]s). Between [[Sibenik|Å ibenik]] and [[Ortona]] a well-marked depression occurs, a considerable area of which exceeds 180 m (100 fathoms) in depth.
83032
83033 From a point between [[Korcula|Korčula]] and the north shore of the spur of [[Monte Gargano]] there is a ridge giving shallower water, and a broken chain of a few islets extends across the sea.
83034
83035 The deepest part of the sea lies east of Monte Gargano, south of Dubrovnik, and west of [[DurrÃĢs]] where a large basin gives depths of 900 m (500 fathoms) and upwards, and a small area in the south of this basin falls below 1,460 m (800 fathoms).
83036 The mean depth of the sea is estimated at 240 m (133 fathoms).
83037
83038 ==Coasts and islands==
83039 The west shore is generally low, merging, in the northwest, into the marshes and lagoons on either hand of the protruding delta of the river [[Po river|Po]], the [[sediment]] of which has pushed forward the coastline for several miles within historic times — Adria is now some distance from the shore.
83040
83041 On islands within one of the lagoons opening from the [[Gulf of Venice]], [[Venice]] has its unique situation. Other notable cities on the Italian coast are [[Trieste]], [[Ravenna]], [[Rimini]], [[Ancona]], [[Pescara]], [[Bari]] and [[Brindisi]].
83042
83043 The east coast is generally bold and rocky, with many islands. South of the [[Istria|Istrian Peninsula]], which separates the Gulfs of Venice and [[Gulf of Trieste]] from the [[Bay of Kvarner]], the island-fringe of the east coast extends as far south as [[Dubrovnik]].
83044
83045 The islands, which are long and narrow (the long axis lying parallel with the coast of the mainland), rise rather abruptly to elevations of a few hundred feet, with the exception of a few larger islands like [[Brač]] (Vidova gora, 778 m) or the peninsula [[PeljeÅĄac]] (St. Ilija, 961 m). There are over a thousand islands in the Adriatic, 66 of which are inhabited.
83046
83047 On the mainland, notably in the magnificent inlet of the [[Gulf of Kotor]] (Boka Kotorska, Bocche di Cattaro; named after the town of [[Kotor]]), lofty mountains often fall directly to the sea.
83048
83049 The prevalent colour of the rocks is a light, dead grey, contrasting harshly with the dark vegetation, which on some of the islands is luxuriant. In fact, [[Montenegro]] (Black Mountain) was named after the [[European black pine|black pines]] that cover the coast there, and similarly the Greek name for the island of [[Korčula]] is ''Korkyra Melaina'' meaning &quot;Black Corfu&quot;.
83050
83051 Major cities on the northeastern coast include [[Trieste]] in Italy; [[Izola]], [[Koper]], [[Piran]] and [[PortoroÅž]] in Slovenia; [[Pula]], [[Rovinj]], [[Poreč]], [[Rijeka]], [[Zadar]], [[Å ibenik]], [[Trogir]], [[Split]], [[Dubrovnik]] in Croatia; [[Herceg Novi]], [[Bar, Serbia and Montenegro|Bar]], [[Ulcinj]] in Montenegro; and [[DurrÃĢs]] in Albania.
83052
83053 ==Miscellaneous==
83054 The [[bora|''bora'' or ''bura'']] (northeast wind), and the prevalence of sudden squalls from this quarter or the southeast, are dangers to navigation in winter. Also notable are [[sirocco|''sirocco'' or ''jugo'']] (southern wind) which brings rain in the winter and ''[[maestral]]'' (western wind) which brings nice weather in the summer.
83055
83056 Tidal movement is slight. The [[amphidromic point]] is just off the northwestern shore, near Ancona.
83057
83058 Both coasts are popular [[tourism|tourist]] destinations.
83059
83060 ==See also==
83061 * [[List of rivers of Europe#Mediterranean Sea|List of rivers of Europe]]
83062 * [[List of islands in the Adriatic]]
83063
83064 == External links ==
83065 * [http://www.geabios.com/html/services/maps/PublicMap.htm?lat=42.465&amp;lon=15.876875&amp;fov=8.66&amp;title=Adriatic%20Sea Satellite images and maps of Adriatic Sea] from [[GeaBios]] GIS Public Service
83066 * [http://www.geabios.com/services/meteo/wv2.11/wv.htm Weather forecast for eastern coast] from [[GeaBios]] GIS Public Service
83067
83068 [[Category:Seas of the Atlantic Ocean]]
83069 [[Category:Geography of Croatia]]
83070
83071 [[ar:Ø¨Ø­Øą ØŖØ¯ØąŲŠØ§ØĒŲŠŲƒŲŠ]]
83072 [[bg:АдŅ€Đ¸Đ°Ņ‚иŅ‡ĐĩŅĐēĐž ĐŧĐžŅ€Đĩ]]
83073 [[bs:Jadransko more]]
83074 [[ca:Mar Adriàtica]]
83075 [[cs:JaderskÊ moře]]
83076 [[da:Adriaterhavet]]
83077 [[de:Adriatisches Meer]]
83078 [[et:Aadria meri]]
83079 [[el:ΑδĪÎšÎąĪ„ΚÎēÎŽ θÎŦÎģÎąĪƒĪƒÎą]]
83080 [[es:Mar AdriÃĄtico]]
83081 [[eo:Adriatiko]]
83082 [[eu:itsaso Adriatiko]]
83083 [[fr:Mer Adriatique]]
83084 [[gl:Mar AdriÃĄtico]]
83085 [[ko:ė•„ë“œëĻŦė•„ 해]]
83086 [[hr:Jadransko more]]
83087 [[id:Laut Adriatik]]
83088 [[is:Adríahaf]]
83089 [[it:Mare Adriatico]]
83090 [[he:הים האדריאטי]]
83091 [[la:Hadriaticum]]
83092 [[lt:Adrijos jÅĢra]]
83093 [[hu:Adriai-tenger]]
83094 [[nl:Adriatische Zee]]
83095 [[ja:ã‚ĸドãƒĒã‚ĸæĩˇ]]
83096 [[no:Adriaterhavet]]
83097 [[pl:Morze Adriatyckie]]
83098 [[pt:Mar AdriÃĄtico]]
83099 [[ro:Marea Adriatică]]
83100 [[ru:АдŅ€Đ¸Đ°Ņ‚иŅ‡ĐĩŅĐēĐžĐĩ ĐŧĐžŅ€Đĩ]]
83101 [[sk:JadranskÊ more]]
83102 [[sl:Jadransko morje]]
83103 [[sr:ЈадŅ€Đ°ĐŊŅĐēĐž ĐŧĐžŅ€Đĩ]]
83104 [[sv:Adriatiska havet]]
83105 [[tl:Dagat Adriatiko]]
83106 [[uk:АдŅ€Ņ–Đ°Ņ‚иŅ‡ĐŊĐĩ ĐŧĐžŅ€Đĩ]]
83107 [[zh:äēšåž—里äēšæĩˇ]]</text>
83108 </revision>
83109 </page>
83110 <page>
83111 <title>August 16</title>
83112 <id>1448</id>
83113 <revision>
83114 <id>40525836</id>
83115 <timestamp>2006-02-21T05:21:51Z</timestamp>
83116 <contributor>
83117 <ip>64.53.209.169</ip>
83118 </contributor>
83119 <comment>/* Births */</comment>
83120 <text xml:space="preserve">{| style=&quot;float:right;&quot;
83121 |-
83122 |{{AugustCalendar}}
83123 |-
83124 |{{ThisDateInRecentYears|Month=August|Day=16}}
83125 |}
83126 '''[[August 16]]''' is the 228th day of the year (229th in [[leap year]]s) in the [[Gregorian Calendar]]. There are 137 days remaining.
83127
83128 ==Events==
83129 * [[1777]] - [[American Revolutionary War]]: [[Battle of Bennington]] - [[Kingdom of Great Britain|British]] forces are defeated by [[United States|American]] troops.
83130 * [[1780]] - American Revolutionary War: [[Battle of Camden]] - The British defeat the Americans near [[Camden, South Carolina]].
83131 * [[1812]] - [[War of 1812]]: American General [[William Hull]] surrenders [[Fort Detroit]] without a fight to the [[British Army]].
83132 * [[1819]] - Eleven people die and 400 are injured by [[cavalry]] charges at the [[Peterloo Massacre]] at a public meeting at St. Peter's Field, Manchester, England.
83133 * [[1841]] - [[U.S. President]] [[John Tyler]] vetoes a bill which called for the re-establishment of the [[Second Bank of the United States]]. Enraged [[United States Whig Party|Whig Party]] members riot outside the [[White House]] in the most violent demonstration on White House grounds in U.S. history.
83134 * [[1858]] - U.S. President [[James Buchanan]] inaugurates the new [[transatlantic telegraph cable]] cable by exchanging greetings with Queen [[Victoria of the United Kingdom]]. However, a weak signal will force a shutdown of the service in a few weeks.
83135 * [[1868]] - Arica, Peru (now Chile) is devastated by a tsunami which followed a magnitude 8.5 earthquake in the Peru-Chile Trench off the coast. The earthquake and tsunami killed an estimated 25,000 people in Arica and perhaps 70,000 people in all.
83136 * [[1896]] - [[Skookum Jim Mason]], George Carmack and [[Dawson Charlie]] discover gold in the [[Klondike, Yukon|Klondike]] in [[Canada]].
83137 * [[1913]] - Tōhoku Imperial University (modern day [[Tohoku University|Tōhoku University]]) admits its first female students.
83138 * [[1915]] - [[World War I]]: Should victory be achieved over the [[Central Powers]], the [[Triple Entente]] promises the Kingdom of [[Serbia]]: the Austro-Hungarian territories of [[Baranja]], [[Srem (region)|Srem]], [[Slavonia]], and [[Bosnia and Herzegovina]]; and the eastern 2/3 of [[Dalmatia]] (from the river of [[Krka]] to the city of [[Bar, Serbia and Montenegro|Bar]]).
83139 * [[1920]] - [[Ray Chapman]] of the [[Cleveland Indians]] is hit in the head by a [[fastball]] thrown by [[Carl Mays]] of the [[New York Yankees]], and dies early the next day. To date, Chapman is the only player to die from injuries sustained in a [[Major League Baseball]] game.
83140 * [[1928]] - Murderer [[Carl Panzram]] is arrested in [[Washington, DC]] after killing 20 people.
83141 * [[1930]] - The first color sound [[cartoon]], called ''Fiddlesticks'', is made by [[Ub Iwerks]]
83142 * [[1942]] - [[World War II]]: - The two-person crew of the U.S. naval blimp L-8 disappear without a trace on a routine anti-submarine patrol over the [[Pacific Ocean]]. The blimp drifts without her crew and crashlands in [[Daly City]], [[California]].
83143 * [[1946]] - The Japan Business Federation, or [[Nihon Keidanren|Keidanren]], is established, and Ichirō Ishikawa is appointed its representative.
83144 * [[1954]] - ''[[Sports Illustrated]]'' magazine is first published.
83145 * [[1960]] - [[Cyprus]] gains its independence from the [[United Kingdom]].
83146 * 1960 - [[Joseph Kittinger]] parachutes from a balloon over [[New Mexico]] at 102,800 feet (31,330 m), setting three records that still stand today: high-altitude jump, [[free-fall]], and fastest speed by a [[human]] without an aircraft.
83147 * [[1962]] - [[The Beatles]] fire drummer [[Pete Best]] and replace him with [[Ringo Starr]].
83148 * [[1964]] - [[Vietnam War]]: A ''[[coup d'Êtat]]'' replaces [[Duong Van Minh]] with General [[Nguyen Khanh]] as President of [[South Vietnam]]. A new [[constitution]] is established with aid from the [[U.S. Embassy]].
83149 * [[1966]] - Vietnam War: The [[House Un-American Activities Committee]] begins investigations of Americans who have aided the [[Viet Cong]]. The committee intends to introduce legislation making these activities illegal. Anti-war demonstrators disrupt the meeting and 50 people are arrested.
83150 * [[1972]] - The [[Royal Moroccan Air Force]] mistakenly fires upon, but fails to bring down, [[Hassan II of Morocco]]'s plane while he is traveling back to [[Rabat]].
83151 * [[1974]] - [[The Ramones]] play their first ever show at the [[CBGB's]].
83152 * [[1984]] - Carmaker [[John De Lorean]] is acquitted of all eight counts of possessing and distributing [[cocaine]].
83153 * [[1987]] - A [[McDonnell Douglas MD-82]] carrying [[Northwest Airlines flight 255]] crashes on takeoff from [[Detroit Metropolitan Airport]] killing 155 people onboard, with the sole survivor four-year old [[Cecelia Cichan]]).
83154 * [[1993]] - The [[Debian]] [[GNU/Linux distribution]] is founded by [[Ian Murdock]].
83155 * [[1996]] - [[Sigma Beta Rho]] is founded at the University of Pennsylvania.
83156 * [[2003]] - [[U.S. Representative]] from [[South Dakota]] [[Bill Janklow]] hits and kills a motorcyclist with his car at a rural intersection near [[Trent, South Dakota]]; he will eventually be convicted of [[manslaughter]] and will resign from [[U.S. Congress|Congress]].
83157 * [[2005]] - [[West Caribbean Airways Flight 708]] crashes near [[Machiques]], [[Venezuela]], killing the 160 aboard.
83158
83159 ==Births==
83160 *[[1355]] - [[Philippa Plantagenet]], Countess of Ulster
83161 *[[1378]] - [[Hongxi Emperor]] of China (d. [[1425]])
83162 *[[1557]] - [[Agostino Carracci]], Italian artist (d. [[1602]])
83163 *[[1596]] - [[Frederick V, Elector Palatine]] (d. [[1632]])
83164 *[[1645]] - [[Jean de La Bruyère]], French writer (d. [[1696]])
83165 *[[1650]] - [[Vincenzo Coronelli]], Italian cartographer and encylopedist (d. [[1718]])
83166 *[[1682]] - [[Louis, Duke of Burgundy]], heir to the throne of France (d. [[1712]])
83167 *[[1832]] - [[Wilhelm Wundt]], German psychologist (d. [[1920]])
83168 *[[1845]] - [[Gabriel Lippmann]], French physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1921]])
83169 *[[1860]] - [[Jules Laforgue]], French poet (d. [[1887]])
83170 *[[1862]] - [[Amos Alonzo Stagg]], American coach (d. [[1965]])
83171 *[[1868]] - [[Bernarr McFadden]], American publisher (d. [[1955]])
83172 *[[1884]] - [[Hugo Gernsback]], Luxembourg-born editor and publisher (d. [[1967]])
83173 *[[1888]] - [[T. E. Lawrence]], English writer and soldier (d. [[1935]])
83174 *1888 - [[Armand J. Piron]], American musician (d. [[1943]])
83175 *[[1892]] - [[Otto Messmer]], American cartoonist (d. [[1983]])
83176 *[[1894]] - [[George Meany]], American labor union leader (d. [[1980]])
83177 *[[1895]] - [[Albert Cohen]], Swiss novelist (d. [[1981]])
83178 *1895 - [[Liane Haid]], Austrian actress (d. [[2000]])
83179 *[[1902]] - [[Georgette Heyer]], English novelist (d. [[1974]])
83180 *[[1904]] - [[Wendell Meredith Stanley]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1971]])
83181 *[[1911]] - [[E. F. Schumacher]], German economist and statistician (d. [[1977]])
83182 *[[1912]] - [[Ted Drake]] English footballer (d. [[1995]])
83183 *[[1913]] - [[Menachem Begin]], [[Prime Minister of Israel]], recipient of the [[Nobel Peace Prize]] (d. [[1992]])
83184 *[[1920]] - [[Charles Bukowski]], American poet (d. [[1994]])
83185 *[[1923]] - [[Millôr Fernandes]], Brazilian cartoonist and playwright
83186 *[[1924]] - [[Fess Parker]], American actor
83187 *[[1928]] - [[Ann Blyth]], American actress
83188 *[[1929]] - [[Helmut Rahn]], German footballer (d. [[2003]])
83189 *[[1930]] - [[Robert Culp]], American actor
83190 *1930 - [[Frank Gifford]], American football player and announcer
83191 *[[1931]] - [[Eydie Gorme]], American singer
83192 *[[1933]] - [[Julie Newmar]], American actress
83193 *[[1939]] - [[Trevor Mcdonald]] [[Order of the British Empire|OBE]], Television Newsreader
83194 *[[1940]] - [[Bruce Beresford]], Australian film director
83195 *[[1946]] - [[Massoud Barzani]], Iraqi Kurdish politician
83196 *1946 - [[Lesley Ann Warren]], American actress
83197 *[[1950]] - [[Hasely Crawford]], Trinidad and Tobago athlete
83198 *[[1952]] - [[Reginald VelJohnson]], American actor
83199 *[[1953]] - [[Kathie Lee Gifford]], French-born singer and actress
83200 *[[1954]] - [[James Cameron]], Canadian film director
83201 *[[1957]] - [[Tim Farriss]], Australian lead guitarist (INXS)
83202 *[[1958]] - [[Angela Bassett]], American actress
83203 *1958 - [[Madonna (entertainer)|Madonna]], American singer and actress
83204 *[[1960]] - [[Timothy Hutton]], American actor
83205 *[[1964]] - [[Jimmy Arias]], American tennis player
83206 *[[1967]] - [[Ulrika Jonsson]], Swedish-born television personality
83207 *[[1968]] - [[Mateja Svet]], Slovenian alpine skier
83208 *[[1972]] - [[Stan Lazaridis]], Australian footballer
83209 *[[1974]] - [[Robin Hull]], Finnish snooker player
83210 *1974 - [[Krisztina Egerszegi]], Hungarian swimmer
83211 *[[1976]] - [[Jonatan Johansson]], Finnish footballer
83212 *[[1980]] - [[Vanessa Carlton]], American singer, songwriter, and pianist
83213 *1980 - [[Robert Hardy (bassist)|Robert Hardy]], English bassist ([[Franz Ferdinand (band)|Franz Ferdinand]])
83214 *[[1981]] - [[Taylor Rain]], American actress
83215 *[[1987]] - [[Kyal Marsh]], Australian actor
83216
83217 ==Deaths==
83218 *[[1027]] - [[Giorgi I]], King of Georgia (b. [[998]])
83219 *[[1327]] - [[Roch]], French saint
83220 *[[1358]] - Duke [[Albert II of Austria]] (b. [[1298]])
83221 *[[1419]] - [[Wenceslaus, King of the Romans]], King of Bohemia (b. [[1361]])
83222 *[[1443]] - [[Ashikaga Yoshikatsu]], Japanese shogun (b. [[1434]])
83223 *[[1518]] - [[Loyset Compère]], French composer
83224 *[[1532]] - [[John, Elector of Saxony]] (b. [[1468]])
83225 *[[1661]] - [[Thomas Fuller]], English churchman and historian (b. [[1608]])
83226 *[[1678]] - [[Andrew Marvell]], English poet (b. [[1621]])
83227 *[[1705]] - [[Jakob Bernoulli]], Swiss mathematician and scientist (b. [[1654]])
83228 *[[1733]] - [[Matthew Tindal]], English deist (b. [[1657]])
83229 *[[1791]] - [[Charles-François de Broglie, marquis de Ruffec]], French soldier and diplomat (b. [[1719]])
83230 *[[1886]] - [[Ramakrishna | Sri Ramakrishna Paramahansa]], Indian guru (b. [[1836]])
83231 *[[1893]] - [[Jean-Martin Charcot]], French neurologist (b. [[1825]])
83232 *[[1899]] - [[Robert Wilhelm Bunsen]], German chemist (b. [[1811]])
83233 *[[1907]] - [[James Hector]], Scottish geologist (b. [[1834]])
83234 *[[1921]] - King [[Peter I of Serbia]] (b. [[1844]])
83235 *[[1938]] - [[Robert Johnson]], American singer and guitarist (b. [[1911]])
83236 *1938 - [[Andrej Hlinka]], Slovak politician and priest (b. [[1864]])
83237 *[[1948]] - [[Babe Ruth]], baseball player (b. [[1895]])
83238 *[[1949]] - [[Margaret Mitchell]], American novelist (b. [[1900]])
83239 *[[1956]] - [[Bela Lugosi]], Hungarian actor (b. [[1882]])
83240 *[[1957]] - [[Irving Langmuir]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1881]])
83241 *[[1959]] - [[Wanda Landowska]], Polish harpsichordist (b. [[1879]])
83242 *[[1973]] - [[Selman Waksman]], Ukrainain-born biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1888]])
83243 *[[1975]] - [[Vladimir Kuts]], Ukrainian-born runner (b. [[1927]])
83244 *[[1977]] - [[Elvis Presley]], American singer and actor (b. [[1935]])
83245 *[[1979]] - [[John Diefenbaker]], thirteenth [[Prime Minister of Canada]] (b. [[1895]])
83246 *[[1983]] - [[Earl Averill]], baseball player (b. [[1902]])
83247 *[[1989]] - [[Amanda Blake]], American actress (b. [[1929]])
83248 *[[2002]] - [[Abu Nidal]], Palestinian political leader (b. [[1937]])
83249 *2002 - [[Jeff Corey]], American actor (b. [[1914]])
83250 *[[2003]] - [[Idi Amin]], Ugandan dictator (b. [[1928]])
83251 *[[2004]] - [[Ivan Hlinka]], Czech hockey coach (b. [[1950]])
83252 *2004 - [[Robert Quiroga]], American boxer (b. [[1969]])
83253 *[[2005]] - [[Frère Roger]] of TaizÊ, Swiss monk and mystic (b. [[1915]])
83254
83255 ==Holidays and observances==
83256 *[[Calendar of saints|RC saints]]: feast day of Saint [[Stephen I of Hungary]]; Saint [[Roch]] (helps against plague and skin diseases)
83257 *[[August 16 (Eastern Orthodox liturgics)|Eastern Orthodox]]: commemoration of the translation of the [[Image of Edessa|Acheiropoietos icon]] (a.k.a. the ''Mandelion''; now lost) from Edessa to Constantinople on 16 August [[944]]
83258 *[[Palio di Siena|Palio dell'Assunta]] in [[Siena]]
83259 * USA: legal [[Holidays of the United States#State holidays |holiday]] in Vermont for the [[Battle of Bennington]] in [[1777]] (which actually took place in the state of New York)
83260
83261 ==External links==
83262 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/16 BBC: On This Day]
83263
83264 ----
83265
83266 [[August 15]] - [[August 17]] - [[July 16]] - [[September 16]] -- [[historical anniversaries|listing of all days]]
83267
83268 {{months}}
83269
83270 [[af:16 Augustus]]
83271 [[ar:16 ØŖØēØŗØˇØŗ]]
83272 [[an:16 d'agosto]]
83273 [[ast:16 d'agostu]]
83274 [[bg:16 авĐŗŅƒŅŅ‚]]
83275 [[be:16 ĐļĐŊŅ–ŅžĐŊŅ]]
83276 [[bs:16. august]]
83277 [[ca:16 d'agost]]
83278 [[ceb:Agosto 16]]
83279 [[cv:ÇŅƒŅ€ĐģĐ°, 16]]
83280 [[co:16 d'aostu]]
83281 [[cs:16. srpen]]
83282 [[cy:16 Awst]]
83283 [[da:16. august]]
83284 [[de:16. August]]
83285 [[et:16. august]]
83286 [[el:16 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
83287 [[es:16 de agosto]]
83288 [[eo:16-a de aÅ­gusto]]
83289 [[eu:Abuztuaren 16]]
83290 [[fo:16. august]]
83291 [[fr:16 aoÃģt]]
83292 [[fy:16 augustus]]
83293 [[ga:16 LÃēnasa]]
83294 [[gl:16 de agosto]]
83295 [[ko:8ė›” 16ėŧ]]
83296 [[hr:16. kolovoza]]
83297 [[io:16 di agosto]]
83298 [[id:16 Agustus]]
83299 [[ia:16 de augusto]]
83300 [[ie:16 august]]
83301 [[is:16. ÃĄgÃēst]]
83302 [[it:16 agosto]]
83303 [[he:16 באוגוסט]]
83304 [[jv:16 Agustus]]
83305 [[ka:16 აგვისáƒĸო]]
83306 [[csb:16 zÊlnika]]
83307 [[ku:16'ÃĒ gelawÃĒjÃĒ]]
83308 [[lt:RugpjÅĢčio 16]]
83309 [[lb:16. August]]
83310 [[li:16 augustus]]
83311 [[hu:Augusztus 16]]
83312 [[mk:16 авĐŗŅƒŅŅ‚]]
83313 [[ms:16 Ogos]]
83314 [[nap:16 'e aÚsto]]
83315 [[nl:16 augustus]]
83316 [[ja:8月16æ—Ĩ]]
83317 [[no:16. august]]
83318 [[nn:16. august]]
83319 [[oc:16 d'agost]]
83320 [[pl:16 sierpnia]]
83321 [[pt:16 de Agosto]]
83322 [[ro:16 august]]
83323 [[ru:16 авĐŗŅƒŅŅ‚Đ°]]
83324 [[sco:16 August]]
83325 [[sq:16 Gusht]]
83326 [[scn:16 di austu]]
83327 [[simple:August 16]]
83328 [[sk:16. august]]
83329 [[sl:16. avgust]]
83330 [[sr:16. авĐŗŅƒŅŅ‚]]
83331 [[fi:16. elokuuta]]
83332 [[sv:16 augusti]]
83333 [[tl:Agosto 16]]
83334 [[tt:16. August]]
83335 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 16]]
83336 [[th:16 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
83337 [[vi:16 thÃĄng 8]]
83338 [[tr:16 Ağustos]]
83339 [[uk:16 ŅĐĩŅ€ĐŋĐŊŅ]]
83340 [[wa:16 d' awousse]]
83341 [[war:Agosto 16]]
83342 [[zh:8月16æ—Ĩ]]
83343 [[pam:Agostu 16]]</text>
83344 </revision>
83345 </page>
83346 <page>
83347 <title>Alan Kay</title>
83348 <id>1449</id>
83349 <revision>
83350 <id>42107734</id>
83351 <timestamp>2006-03-03T21:51:20Z</timestamp>
83352 <contributor>
83353 <username>Gazpacho</username>
83354 <id>74520</id>
83355 </contributor>
83356 <comment>cat</comment>
83357 <text xml:space="preserve">[[Image:Alan-Kay.jpg|thumb|right|Alan Kay during an interview.]]
83358 '''Alan Kay''', born [[May 17]], [[1940]], is an [[United States|American]] [[computer scientist]], known for his early work on [[object-oriented programming]] and user interface design.
83359 Until [http://blogs.siliconvalley.com/gmsv/2005/07/hewlettpackards.html recently] he was a Senior Fellow at [[HP Labs]], an Adjunct Professor of Computer Science at the [[University of California, Los Angeles]], a Visiting Professor at [[Kyoto University]], and an Adjunct Professor at [[MIT]]. He is also the president of the [[Viewpoints Research Institute]].
83360
83361 == Early life and work ==
83362 Originally from [[Springfield, Massachusetts]], Kay earned a [[Bachelor's degree]] in Mathematics and Molecular Biology from the [[University of Colorado]], and another [[Master's degree]] and Ph.D. from the [[University of Utah]]. At the University of Utah in the 1960s, Kay worked with [[Ivan Sutherland]] on pioneering graphics applications including [[Sketchpad]]. Around this time, he also worked as a professional [[jazz]] guitarist.
83363
83364 Kay joined [[Xerox]] Corporation's [[Palo Alto, California|Palo Alto]] Research Center ([[Xerox PARC|PARC]]) in 1970. In the seventies he was one of the key members there to develop prototypes of networked workstations using the programming language [[Smalltalk]]. These inventions were later commercialized by [[Apple Computer|Apple]] in the [[Apple Macintosh]].
83365
83366 Kay is one of the fathers of the idea of object-oriented programming, along with some colleagues at PARC and predecessors at the [[Norwegian Computing Centre]]. He is the conceiver of the [[Dynabook]] concept which defined the basics of the laptop computer and the tablet computer and he is also considered by some as the architect of the modern windowing [[graphical user interface]] (GUI).
83367
83368 After 10 years at Xerox PARC, Kay became [[Atari]]'s chief scientist for three years.
83369
83370 == Recent work and recognition ==
83371 Starting in 1984, Kay was a Fellow at [[Apple Computer]] until [[Steve Jobs]] eliminated the company's R&amp;D group. He then joined [[Walt Disney Imagineering]] as a [[Disney Fellow]] and remained there until Disney ended its Disney Fellow program. After Disney, Kay worked with a team at [[Applied Minds]], then became a Senior Fellow at [[Hewlett-Packard]] until HP disbanded the Advanced Software Research Team on July 20 2005. He is currently head of Viewpoints Research Institute.
83372
83373 === Squeak and Croquet development ===
83374 Kay collaborated with many others to start the open source [[Squeak]] dynamic media software in December 1995 when he was still at Apple, and he continues to work on it. More recently he started, along with [[David A. Smith]], [[David P. Reed]], Andreas Raab, [[Julian Lombardi]], and [[Mark McCahill]], the [[Croquet project]], which seeks to offer an open source networked 3D environment for collaborative work.
83375
83376 ===$100 laptop===
83377 At the [[World Summit on the Information Society]] in November 2005, the MIT research laboratories unveiled a new [[$100 laptop]] co-developed by Kay for students around the world.
83378
83379 === Awards and honors ===
83380 In 2001 Alan Kay received the [http://www.udk-berlin.de/doku/award.html UdK 01-Award] in [[Berlin]], [[Germany]] for pioneering the [[GUI]].
83381
83382 In 2003 he received the ACM [[Turing Award]] for his work on [[object oriented programming]].
83383
83384 In 2004 he received the [[Kyoto Prize]] and the [[Charles Stark Draper]] Prize along with [[Butler W. Lampson]], [[Robert W. Taylor]] and [[Charles P. Thacker]]
83385
83386 In 2005 he received an honorary doctoral degree from the [[Georgia Institute of Technology]].
83387
83388 &lt;!-- in 2004??, he became an honorary professor at the [[Berlin University of the Arts]]. --&gt;
83389
83390 == Personal Background==
83391 Kay is an avid and gifted musician who plays keyboards and guitar. He has a special interest in the baroque pipe organ, early keyboard instruments and guitar. He was a former professional jazz and rock and roll guitarist. He is married to [[Bonnie MacBird]], a writer/producer/actor/artist.
83392
83393 == External links ==
83394 {{wikiquote}}
83395 * [http://www.mprove.de/diplom/referencesKay.html Detailed Alan Kay bibliography]
83396 * [http://www.mrl.nyu.edu/~noah/nmr/book_samples/nmr-26-kay.pdf Personal Dynamic Media] &amp;ndash; By Alan Kay and [[Adele Goldberg (computer scientist)|Adele Goldberg]]
83397 *[http://www.hp.com/hpinfo/newsroom/feature_stories/2002/alankaybio.html Alan Kay's HP bio]
83398 *[http://www.fortune.com/fortune/fastforward/0,15704,661671,00.html ''A PC Pioneer Decries the State of Computing''] &amp;ndash; By David Kirkpatrick, ''[[Fortune magazine]]'', [[8 July]] [[2004]] (Available for fee)
83399 *[http://www.archive.org/search.php?query=alan%20kay Doing with Images Makes Symbols: Communicating with Computers] Video lecture by Alan Kay with lots of examples of early graphic user interfaces
83400 *[http://www.educause.edu/LibraryDetailPage/666?ID=COM9802 The Computer &quot;Revolution&quot; Hasn't Happened Yet!] talk at EDUCOM 1998 (computers in education)
83401 *[http://www.ecotopia.com/webpress/futures.htm Predicting the Future] remarks from 1989 Stanford Computer Forum
83402 *[http://www.csupomona.edu/%7eitac/mediavision/streaming/tae/alan_kay.html Education in the Digital Age] talk
83403 *[http://acmqueue.com/modules.php?name=Content&amp;pa=showpage&amp;pid=273 A Conversation with Alan Kay] Big talk with the creator of Smalltalk—and much more.
83404 *[http://thinkubator.ccsp.sfu.ca/Dynabook From Dynabook to Squeak - A Study in Survivals] listof links tracing the evolution of Kay's vision
83405 *[http://gagne.homedns.org/~tgagne/contrib/EarlyHistoryST.html The Early History of Smalltalk]
83406 *[http://www.windley.com/archives/2006/02/alan_kay_is_com.shtml The Best Way to Predict the Future is to Prevent It]
83407 *[http://www.windley.com/archives/2006/02/alan_kay_the_10.shtml The $100 Laptop, Learners, and Powerful Ideas]
83408
83409 [[Category:1940 births|Kay, Alan]]
83410 [[Category:Living people|Kay, Alan]]
83411 [[Category:American computer programmers|Kay, Alan]]
83412 [[Category:American computer scientists|Kay, Alan]]
83413 [[Category:Apple employees|Kay, Alan]]
83414 [[Category:Computer pioneers|Kay, Alan]]
83415 [[Category:Disney Imagineers|Kay, Alan]]
83416 [[Category:Hewlett-Packard people|Kay, Alan]]
83417 [[Category:Human-computer interaction notables|Kay, Alan]]
83418 [[Category:People from Massachusetts|Kay, Alan]]
83419 [[Category:Turing Award laureates|Kay, Alan]]
83420
83421 [[de:Alan Kay]]
83422 [[eo:Alan KAY]]
83423 [[fr:Alan Kay]]
83424 [[it:Alan Kay]]
83425 [[ja:ã‚ĸナãƒŗãƒģã‚ąã‚¤]]
83426 [[nl:Alan Kay]]
83427 [[pt:Alan Kay]]</text>
83428 </revision>
83429 </page>
83430 <page>
83431 <title>APL programming language</title>
83432 <id>1451</id>
83433 <revision>
83434 <id>42006462</id>
83435 <timestamp>2006-03-03T04:26:22Z</timestamp>
83436 <contributor>
83437 <username>KymFarnik</username>
83438 <id>170535</id>
83439 </contributor>
83440 <minor />
83441 <comment>/* Calculation */ Drop Appears - wrong</comment>
83442 <text xml:space="preserve">'''APL''' (for '''A Programming Language''') is an [[array programming]] language based on a notation invented in [[1957]] by [[Kenneth E. Iverson]] while at [[Harvard University]]. It originated in an attempt to provide consistent notation for the teaching and analysis of topics related to the application of computers. The notation was later used to describe the [[IBM]] [[System/360]] machine architecture, a description much more concise and exact than the existing documentation and revealing several previously unnoticed problems. Then, a [[IBM Selectric typewriter|Selectric]] typeball was made to write a linear representation of this notation. In [[1964]] a subset of the notation was implemented as a programming language.
83443
83444 Dr. Iverson published his notation in [[1962]] in a book titled ''A Programming Language'' and APL got its name from the title of this book. Iverson received the [[Turing Award]] in [[1979]] for his work. As with all programming languages that have had several decades of continual use, APL has changed significantly from the notation described by Iverson in his book. One thing that has remained constant is that APL is [[interpreted programming language|interpretive]] and [[interactive]], features much appreciated by its users. Conversely, its initial lack of support for both [[structured programming|structured]] and [[modular programming|modular]] programming has been solved by all the modern APL incarnations. One much criticized aspect still remains, though: the use of a special character set (see [[APL programming language#Character set|Character set]] below.) These characters have all been incorporated into Unicode, which is now the base character set of several APL products. There is also a pure ASCII reworking of APL called [[J programming language|J]], with greatly increased expressive power.
83445
83446 {{SpecialCharsNote}}
83447
83448 ==Overview==
83449 Over a very wide set of problem domains (math, science, engineering, computer design, robotics, data visualization, actuarial science, traditional DP, etc.) APL is an extremely powerful, expressive and concise programming language, typically set in an interactive environment. It was originally created as a way to describe computers, by expressing [[mathematical notation]] in a rigorous way that could be interpreted by a computer. It is easy to learn but APL programs can take some time to understand. Unlike traditional structured programming languages, code in APL is typically structured as chains of [[monadic]] or [[dyadic]] [[function (programming)|function]]s and [[operator]]s acting on [[array]]s. Because APL has so many nonstandard ''primitives'' (functions, operators, or features built into the language and indicated by a single symbol or a combination of a few symbols), APL does not have function or [[operator precedence]]. The original APL did not have [[control flow|control structure]]s (loops, if-then-else), but the array operations it included could simulate [[structured programming]] constructs. For example, the iota function (which yields an array from 1 to N) can simulate for-loop [[iteration]]. More recent implementations of APL generally include explicit control structures, so that data structure and control-flow structure can be more clearly separated.
83450
83451 The APL environment is called a ''workspace''. In a workspace the user can define programs and data, i.e. the data values exist also outside the programs, and the user can manipulate the data without the necessity to define a program, for example:
83452
83453 :&lt;math&gt;N \leftarrow 4\ 5\ 6\ 7&lt;/math&gt;
83454
83455 Assign the [[coordinate vector|vector]] values 4 5 6 7 to N.
83456
83457 :&lt;math&gt;N+4\,\!&lt;/math&gt;
83458
83459 Add 4 to all values (giving 8 9 10 11) and Print them (absence of the assignment arrow means &quot;show&quot;).
83460
83461 :&lt;math&gt;+/N\,\!&lt;/math&gt;
83462
83463 Print the sum of N, i.e. 22.
83464
83465
83466 The user can save the workspace with all values, programs and execution status. In any case, the programs are usually not [[compiled language|compiled]] but [[interpreted language|interpreted]]. A commercial compiler was brought to market by STSC (now Manugistics).
83467
83468 APL is well-known for its use of a set of non-[[ASCII]] symbols that are an extension of traditional arithmetic and algebraic notation. These cryptic symbols, some have joked, make it possible to construct an entire [[air traffic control]] system in two lines of code. Indeed, in some versions of APL, it is theoretically possible to express any computable function in one expression, that is in one line of code. You can use the other line for I/O, or constructing a GUI. Because of its condensed nature and non-standard characters, APL has sometimes been termed a &quot;[[write-only language]]&quot;, and reading an APL program can at first feel like decoding an alien tongue. Because of the unusual [[character set]], many programmers used special APL [[computer keyboard|keyboard]]s in the production of APL code. Nowadays there are various ways to write APL code using only ASCII characters. Indeed most if not all modern implementations use the standard keyboard, displaying APL symbols by use of a particular font.
83469
83470 Advocates of APL claim that the examples of &quot;write-only&quot; code are almost invariably examples of poor programming practice or novice mistakes, which can occur in any language. However, when implementing an APL module to be run using an interpreter (as was usual), a common tactic was to initially implement the module as separate, mostly understandable lines. Once the logic was verified, the lines would then be merged into one line for optimal processing in the interpreter. These APL one-liners, as they were called, were incomprehensible when viewed even a short time later. The accomplished APL programmer would document the function of the module in comments- if it had to be changed, the code would be discarded and re-implemented.
83471
83472 APL has perhaps had an unusually high percentage of users who are subject-matter experts who know some APL, rather than professional programmers who know something about a subject.
83473
83474 Iverson designed a successor to APL called [[J programming language|J]] which
83475 uses ASCII &quot;natively&quot;. So far there is only a single source of J implementations: http://www.jsoftware.com/ Other programming languages offer functionality similar to APL. [http://www.aplusdev.org/ A+] is an [[open source]] programming language with many commands identical to APL.
83476
83477 ==Examples==
83478 Here's how you would write a program that would [[sorting|sort]] a word list stored in matrix X according to word length:
83479
83480 X[⍋X+.≠' ';]
83481
83482 Here's a program that finds all [[prime number]]s from 1 to R:
83483
83484 :&lt;math&gt;\left(\sim R \in R \circ . \times R\right)/R \leftarrow 1 \downarrow \iota R&lt;/math&gt;
83485
83486 Here's how to read it, from right to left:
83487
83488 #&lt;math&gt;\iota\,\!&lt;/math&gt; creates a vector containing [[integer]]s from 1 to R (if R = 6 at the beginning of the program, &lt;math&gt;\iota R\,\!&lt;/math&gt; is 1 2 3 4 5 6)
83489 #Drop first element of this vector (&lt;math&gt;\downarrow&lt;/math&gt; function), i.e. 1. So &lt;math&gt;1 \downarrow \iota R&lt;/math&gt; is 2 3 4 5 6
83490 #Set R to the vector (&lt;math&gt;\leftarrow&lt;/math&gt;, assignment primitive)
83491 #Generate outer product of R multiplied by R, i.e. a matrix which is the ''[[multiplication table]]'' of R by R (&lt;math&gt;\circ . \times&lt;/math&gt;function)
83492 #Build a vector the same length as R with 1 in each place where the corresponding number in R is in the outer product matrix (&lt;math&gt;\in&lt;/math&gt;, set inclusion function), i.e. 0 0 1 0 1
83493 #Logically negate the values in the vector (change zeros to ones and ones to zeros) (&lt;math&gt;\sim&lt;/math&gt;, negation function), i.e. 1 1 0 1 0
83494 #Select the items in R for which the corresponding element is 1 (&lt;math&gt;/\,\!&lt;/math&gt; function), i.e. 2 3 5
83495
83496 ==Calculation==
83497 APL was unique in the speed with which it could perform complex matrix operations. For example, a very large matrix multiplication would take only a few seconds on a machine which was much less powerful than those today. There were some technical and other economic reasons for this advantage:
83498 * Commercial interpreters delivered highly-tuned linear algebra library routines.
83499 * Very low interpretive overhead was incurred per-array&amp;mdash;not per-element.
83500 * APL response time compared favorably to the runtimes of early optimizing compilers.
83501
83502 A widely cited paper &quot;The APL Machine&quot; perpetuated the myth that APL made pervasive use of [[lazy evaluation]] where calculations would not actually be performed until the results were needed and then only those calculations strictly required. Although this technique was used by just a few implementations, it embodies the language's best survival mechanism: not specifying the order of scalar operations. Even as eventually standardized by X3J10, APL is so highly data-parallel, it gives language implementers immense freedom to schedule operations as efficiently as possible. As computer innovations such as [[cache memory]], and [[SIMD]] execution became commercially available, APL programs ported with little extra effort spent re-optimizing low-level details.
83503
83504 ==Terminology==
83505 APL makes a clear distinction between ''functions'' and ''operators''. Functions take values (variables or constants or expressions) as arguments, and return values as results. Operators take functions as arguments, and return related, derived, functions as results. For example the &quot;sum&quot; function is derived by applying the &quot;reduction&quot; operator to the &quot;addition&quot; function. Applying the same reduction operator to the &quot;ceiling&quot; function (which returns the larger of two values) creates a derived &quot;maximum&quot; function, which returns the largest of a group (vector) of values. In the J language, Iverson substituted the terms 'verb' and 'adverb' for 'function' and 'operator'.
83506
83507 APL also identifies those features built into the language, and represented by a symbol, or a fixed combination of symbols, as ''primitives''. Most primitives are either functions or operators. Coding APL is largely a process of writing non-primitive functions and (in some dialects of APL) operators. However a few primitives are considered to be neither functions nor operators, most noticeably assignment.
83508
83509 ==Character set==
83510 APL has always been criticized for its choice of a unique, non-standard character set. The fact that those who learn it usually become ardent adherents shows that there is some weight behind Iverson's idea that the notation used does make a difference. In the beginning, there were few terminal devices which could reproduce the APL character set &amp;mdash; the most popular ones employing the [[IBM]] [[Selectric]] print mechanism along with a custom type element. With the popularization of the [[Unicode]] standard, which contains an APL character set, the eternal problem of obtaining the required particular fonts seems poised to go away.
83511
83512 == APL symbols and keyboard layout==
83513
83514 [[image:APL_keyboard.gif|center|frame|APL keyboard with special characters]]
83515
83516 Note the mnemonics associating an APL character with a letter: ''question mark'' on ''Q'', ''power'' on ''P'', ''rho'' on ''R'', ''base value'' on ''B'', ''eNcode'' on ''N'', ''modulus'' on ''M'' and so on. This makes it easier for an English-language speaker to type APL on a non-APL keyboard providing one has visual feedback on one's screen.
83517
83518 All APL symbols are present in [[Unicode]]:&lt;br /&gt;
83519 &lt;small&gt;It may be required to significantly reconfigure your browser in order to display Unicode fonts.&lt;/small&gt;
83520
83521 {|
83522 |- align=center
83523 |&amp;#x27; || ( || ) || + ||, || - || . || / || : || ; || &amp;lt; || = || &amp;gt; || ? || [ || ]
83524 |- align=center
83525 | \ || _ ||&amp;#xA8; || &amp;#xAF; || &amp;#xD7; || &amp;#xF7; || &amp;#x2190; || &amp;#x2191; || &amp;#x2192; || &amp;#x2193; ||&amp;#x2206; || &amp;#x2207; || &amp;#x2218; || &amp;#x2223; || &amp;#x2227; || &amp;#x2228;
83526 |- align=center
83527 | &amp;#x2229; || &amp;#x222A; || &amp;#x223C; || &amp;#x2260; || &amp;#x2264; || &amp;#x2265; || &amp;#x226C; || &amp;#x2282; || &amp;#x2283; || &amp;#x2308; ||&amp;#x230A; || &amp;#x22A4; || &amp;#x22A5; || &amp;#x22C6; || &amp;#9014; || &amp;#9015;
83528 |- align=center
83529 | &amp;#9016; || &amp;#9017; || &amp;#9018; || &amp;#9019; || &amp;#9020; || &amp;#9021; || &amp;#9022; || &amp;#9023; || &amp;#9024; || &amp;#9025; || &amp;#9026;||&amp;#9027; || &amp;#9028; || &amp;#9029; || &amp;#9030; || &amp;#9031;
83530 |- align=center
83531 | &amp;#9032; || &amp;#9033; || &amp;#9034; || &amp;#9035; || &amp;#9036; || &amp;#9037; || &amp;#9038; || &amp;#9039; || &amp;#9040; || &amp;#9041; || &amp;#9042; ||&amp;#9043; || &amp;#9044; || &amp;#9045; || &amp;#9046; || &amp;#9047;
83532 |- align=center
83533 | &amp;#9048; || &amp;#9049; || &amp;#9050; || &amp;#9051; || &amp;#9052; || &amp;#9053; || &amp;#9054; || &amp;#9055; || &amp;#9056; || &amp;#9057; || &amp;#9058; ||&amp;#9059; || &amp;#9060; || &amp;#9061; || &amp;#9062; || &amp;#9063;
83534 |- align=center
83535 | &amp;#9064; || &amp;#9065; || &amp;#9066; || &amp;#9067; || &amp;#9068; || &amp;#9069; || &amp;#9070; || &amp;#9071; || &amp;#9072; || &amp;#9073; || &amp;#9074; ||&amp;#9075; || &amp;#9076; || &amp;#9077; || &amp;#9078; || &amp;#9079;
83536 |-align=center
83537 | &amp;#9080; || &amp;#9081; || &amp;#9082; || &amp;#x2395; || &amp;#x25CB;
83538 |}
83539
83540 ===See also:===
83541 *[[APL function symbols]] for a list of built-in monadic and dyadic functions and their Unicode representation.
83542 *[[IBM]] [[3270]] [[Computer keyboard|Keyboard]] layout for '''APL'''[http://publib.boulder.ibm.com/infocenter/pcomhelp/topic/com.ibm.pcomm.doc/kbd_reference05.htm#FIGTYPE1]
83543
83544 ==Usage==
83545 APL has long had a small but fervent user base. It has been particularly popular in financial and insurance applications, in simulations, and in some mathematical applications. But APL has been used in a wide variety of contexts and for many and varied purposes.
83546
83547 ==Standardization==
83548 APL has been standardized by the [[American National Standards Institute|ANSI]] [[working group]] X3J10 and [[International Organization for Standardization|ISO]]/[[International Electrotechnical Commission|IEC]] Joint Technical Committee 1 Subcommittee 22 Working Group 3. The Core APL language is specified in ISO 8485:1989, and the Extended APL language is specified in ISO/IEC 13751:2001.
83549
83550 ==Quotes==
83551 * &quot;APL, in which you can write a program to simulate shuffling a deck of cards and then dealing them out to several players in four characters, none of which appear on a standard keyboard.&quot;
83552 ** [[David Given]]
83553 * &quot;APL is a mistake, carried through to perfection. It is the language of the future for the programming techniques of the past: it creates a new generation of coding bums.&quot;
83554 ** [[Edsger Dijkstra]], [[1968]]
83555 * &quot;By the time the practical people found out what had happened; APL was so important a part of how IBM ran its business that it could not possibly be uprooted.&quot;
83556 ** [[Micheal S. Montalbano]] [[1982]] (see [http://ed-thelen.org/comp-hist/APL-hist.html A Personal History of APL])
83557
83558 ==Awards==
83559 There is an annual award for contributions to APL, the [[Iverson Award]] named after the language's creator.
83560
83561 == See also==
83562 * [[IBM 1130]]: APL \ 1130 was an early implementation (circa 1970) of APL on the IBM 1130
83563 * [[J programming language|J]]: APL's successor, by [[Kenneth E. Iverson]] and [[Roger Hui]]
83564 * [[K programming language|K]]: an alternative APL successor, by Arthur Whitney
83565 * [[Nial]]
83566
83567 == References ==
83568 * ''A Programming Language'' (1962), by [[Kenneth E. Iverson]]
83569 * ''A formal description of SYSTEM/360'', IBM Systems Journal 3:3, New York: 1964
83570 * ''[[History of Programming Languages]]'', chapter 14
83571
83572 == External links to articles ==
83573 *[http://www.research.ibm.com/journal/sj/032/falkoff.pdf ''A Formal Description of SYSTEM/360''] (1964 article by Adin D. Falkoff, Kenneth E. Iverson, Edward H. Sussenguth)
83574 *[http://www.slac.stanford.edu/pubs/slacreports/slac-r-114.html ''An APL Machine''] (1970 Stanford doctoral dissertation by Philip Abrams)
83575 *[http://www.research.ibm.com/journal/rd/174/ibmrd1704F.pdf ''The Design of APL''] (1973 article by Adin D. Falkoff and [[Kenneth E. Iverson]])
83576 *[http://www.research.ibm.com/journal/sj/304/ibmsj3004C.pdf ''The IBM Family of APL Systems''] (1991 article by Adin D. Falkoff)
83577 *[http://elliscave.com/APL_J/IversonAPL.htm ''A Personal view of APL''] by [[Kenneth E. Iverson]]
83578
83579 == External links ==
83580 *[http://www-306.ibm.com/software/awdtools/apl/ APL2 available from IBM]
83581 *[http://www.users.cloud9.net/~bradmcc/APL.html APL - A Programming Language]
83582 *[http://www.rexswain.com/aplinfo.html Rex Swain's APL info]
83583 *[http://www.acm.org/sigs/sigapl/ SIGAPL Home Page]
83584 *[http://www.apl2c.de/home/ APL2C Compiler]
83585 *Sam Sirlin's [http://home.earthlink.net/~swsirlin/apl.faq.html APL FAQ] ([[FAQ|Frequently Asked Questions]] list)
83586 *[http://www.classiccmp.org/bitsavers/pdf/ibm/apl/ Scanned manuals for early APL implementations] (APL \ 360 and APL \ 1130)
83587 *[http://ed-thelen.org/comp-hist/APL-hist.html A Personal History Of APL] by Micheal S. Montalbano
83588 *[http://42mag.com/michael/apl/index.html Conway's Game of Life in one line of APL]
83589 *[http://www.jsoftware.com/ J] is Iverson's reworking of APL to use the standard ASCII font
83590 *[http://www.aplusdev.org/ A+] is an open source programming language with many commands identical to APL
83591
83592 {{Major programming languages small}}
83593
83594 ==Special characters==
83595 {{SpecialChars}}
83596
83597 [[Category:Programming languages]]
83598 [[Category:Array programming languages]]
83599 [[Category:Functional languages]]
83600 [[Category:Dynamic programming languages]]
83601 [[Category:APL programming language family]]
83602
83603 [[da:APL]]
83604 [[de:APL (Programmiersprache)]]
83605 [[es:APL]]
83606 [[eo:APL]]
83607 [[fr:APL (langage)]]
83608 [[it:APL]]
83609 [[nl:APL]]
83610 [[ja:APL]]
83611 [[pl:APL (język programowania)]]
83612 [[ru:АПЛ (ŅĐˇŅ‹Đē ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧĐŧиŅ€ĐžĐ˛Đ°ĐŊиŅ)]]
83613 [[fi:APL (ohjelmointikieli)]]
83614 [[sv:APL]]
83615 [[zh:APL]]</text>
83616 </revision>
83617 </page>
83618 <page>
83619 <title>ALGOL</title>
83620 <id>1453</id>
83621 <revision>
83622 <id>42020475</id>
83623 <timestamp>2006-03-03T06:57:11Z</timestamp>
83624 <contributor>
83625 <username>DNewhall</username>
83626 <id>60806</id>
83627 </contributor>
83628 <minor />
83629 <comment>Bolded keyword in code example.</comment>
83630 <text xml:space="preserve">{{Otheruses2|Algol}}
83631 '''ALGOL''' (short for '''ALGO'''rithmic '''L'''anguage) is a family of [[imperative programming|imperative]] [[computer programming|computer]] [[programming language]]s originally developed in the mid [[1950s]] which became the ''de facto'' standard way to report algorithms in print for almost the next 30 years. It was designed to avoid some of the perceived problems with [[FORTRAN]] &lt;!--using uppercase name because of the sentential context--&gt; and eventually gave rise to many other programming languages (including [[Pascal programming language|Pascal]]). ALGOL uses bracketed statement blocks and was the first language to use '''begin''' '''end''' pairs for delimiting them. Fragments of ALGOL-like syntax are sometimes still used as a notation for [[algorithm]]s, so-called [[Pidgin Algol]].
83632
83633 There are three official main branches of ALGOL family: [[ALGOL 58]], '''ALGOL 60''', and [[ALGOL 68]]. Of these, ALGOL 60 was the most widely known in the [[United States]]. [[Niklaus Wirth]] based his own [[Algol-W]] on ALGOL 60, before moving to develop [[Pascal programming language|Pascal]]. [[Algol-W]] was intended to be the next generation ALGOL, but the [[ALGOL 68]] committee decided on a design that was more complex and advanced rather than a cleaned, simplified ALGOL 60. The official ALGOL versions are named after the year they were first published. ALGOL 58 was originally known as the '''IAL''' (for '''I'''nternational '''A'''lgorithmic '''L'''anguage.)
83634
83635 ''Note: '' throughout its effective life, the name of the programming language ALGOL was always presented in all-uppercase letters, and this is the practice adopted here.
83636
83637 ==History==
83638
83639 ALGOL was developed jointly by a committee of European and American computer scientists. It specified three different syntaxes: a reference syntax, a publication syntax, and an implementation syntax. The different syntaxes permitted it to use different keyword names and conventions for decimal points (commas vs. periods) for different languages.
83640
83641 [[John Backus]] developed the [[Backus normal form]] method of describing programming languages specifically for ALGOL 58. It was revised and expanded by [[Peter Naur]] to the [[Backus-Naur form]] for ALGOL 60. Both [[John Backus]] and [[Peter Naur]] served on the committee which created ALGOL 60, as did [[Wally Feurzeig]] who later created [[Logo programming language|Logo]]. ALGOL 60 inspired many languages that followed it; the canonical quote in this regard is [[C.A.R. Hoare]]'s &quot;ALGOL 60 was a great improvement on its successors.&quot; The full quote is &quot;Here is a language so far ahead of its time, that it was not only an improvement on its predecessors, but also on nearly all its successors&quot;, but the [[Aphorism|aphoristic]] version is far better known. It is sometimes erroneously attributed to [[Edsger Dijkstra]], also known for his pointed comments, who helped to implement an early ALGOL 60 [[compiler]]. (This statement was in part a criticism of the bloatedness of ALGOL 68.)
83642
83643 The [[Burroughs Corporation]]'s [[B5000]] and its successors were [[stack machine]]s designed to be programmed in an extended variant of ALGOL 60, known as [[Elliott ALGOL]]; indeed their [[operating system]] the [[Master Control Program|MCP]], was written in Elliott ALGOL as far back as 1961. The [[Unisys Corporation]] still markets machines descended from the B5000 today, running the MCP and supporting a diverse set of Elliott ALGOL compilers. Another early implementation was [[Dartmouth ALGOL 30]] on the [[LGP-30]] computer.
83644
83645 ==Properties==
83646 ALGOL 60 as officially defined had no I/O facilities; implementations defined their own in ways that were rarely compatible with each other. In contrast, ALGOL 68 offered an extensive library of ''transput'' (ALGOL 68 parlance for Input/Output) facilities.
83647
83648 ALGOL 60 allowed for two [[evaluation strategy|evaluation strategies]] for [[Parameter (computer science)|parameter]] passing: the common call-by-value, and call-by-name. Call-by-name had certain limitations in contrast to call-by-reference, making it an undesirable feature in language design. For example, it is impossible in ALGOL 60 to develop a procedure that will swap the values of two parameters if the actual parameters that are passed in are an integer variable and an array that is indexed by that same integer variable. However, call-by-name is still beloved of ALGOL implementors for the interesting &quot;[[thunk|thunks]]&quot; that are used to implement it.
83649
83650 ALGOL 68 was defined using a two-level grammar formalism invented by [[Adriaan van Wijngaarden]] and which bears his name. ''Van Wijngaarden grammars'' use a [[context-free grammar]] to generate an infinite set of productions that will recognize a particular ALGOL 68 program; notably, they are able to express the kind of requirements that in many other programming language standards are labelled &quot;semantics&quot; and have to be expressed in ambiguity-prone natural language prose, and then implemented in compilers as ''ad hoc'' code attached to the formal language parser.
83651
83652 == Code sample (ALGOL 60) ==
83653
83654 (The way the bolded text has to be written depends on the implementation, e.g. 'INTEGER' (including the quotation marks) for '''integer'''.)
83655
83656 '''procedure''' Absmax(a) Size:(n, m) Result:(y) Subscripts:(i, k);
83657 '''value''' n, m; '''array''' a; '''integer''' n, m, i, k; '''real''' y;
83658 '''comment''' The absolute greatest element of the matrix a, of size n by m
83659 is transferred to y, and the subscripts of this element to i and k;
83660 '''begin''' '''integer''' p, q;
83661 y := 0; i := k := 1;
83662 '''for''' p:=1 '''step''' 1 '''until''' n '''do'''
83663 '''for''' q:=1 '''step''' 1 '''until''' m '''do'''
83664 '''if''' abs(a[p, q]) &gt; y '''then'''
83665 '''begin''' y := abs(a[p, q]);
83666 i := p; k := q
83667 '''end'''
83668 '''end''' Absmax
83669
83670 Here's an example of how to produce a table using Elliott 803 ALGOL.
83671
83672 FLOATING POINT ALGOL TEST'
83673 BEGIN REAL A,B,C,D'
83674
83675 READ D'
83676
83677 FOR A:= 0.0 STEP D UNTIL 6.3 DO
83678 BEGIN
83679 PRINT PUNCH(3),ÂŖÂŖL??'
83680 B := SIN(A)'
83681 C := COS(A)'
83682 PRINT PUNCH(3),SAMELINE,ALIGNED(1,6),A,B,C'
83683 END'
83684 END'
83685
83686 PUNCH(3) sends output to the teleprinter rather than the tape punch.&lt;br&gt;
83687 SAMELINE suppresses the carriage return + line feed normally printed between arguments.&lt;br&gt;
83688 ALIGNED(1,6) controls the format of the output with 1 digit before and 6 after the decimal point.&lt;br&gt;
83689
83690 ==Hello World==
83691 Since ALGOL 60 had no I/O facilities, there is no portable &quot;Hello World&quot; program in ALGOL. The following code could run on an ALGOL implementation for a Burroughs A-Series mainframe, and is taken from [http://www.engin.umd.umich.edu/CIS/course.des/cis400/algol/hworld.html this site].
83692
83693 BEGIN
83694 FILE F (KIND=REMOTE);
83695 EBCDIC ARRAY E [0:11];
83696 REPLACE E BY &quot;HELLO WORLD!&quot;;
83697 WHILE TRUE DO
83698 BEGIN
83699 WRITE (F, *, E);
83700 END;
83701 END.
83702
83703 An alternative example, using Elliott Algol I/O is as follows. In fact, Elliott Algol used different characters for 'open-string-quote' and 'close-string-quote', but [[ASCII]] does not allow these to be shown here.
83704
83705 '''program''' HiFolks;
83706 '''begin'''
83707 '''print''' &quot;Hello world&quot;;
83708 '''end''';
83709
83710 Here's a version for the Elliott 803 Algol (A104) The standard Elliott 803 used 5 hole paper tape and thus only had upper case. The code lacked any quote characters so ÂŖ (UK Pound Sign) was used for open quote and ? (Question Mark) for close quote. Special sequencies were placed in double quotes e.g. ÂŖÂŖL?? produced a new line on the teleprinter.
83711
83712 HIFOLKS’
83713 BEGIN
83714 PRINT ÂŖHELLO WORLDÂŖL??’
83715 END’
83716
83717 ==See also==
83718 * [[ALGOL 68]]
83719 * [[JOVIAL]]
83720 * [[VALGOL programming language]], a spoof of ALGOL mixed with [[Valley girl]] slang.
83721
83722 == External links ==
83723 * [http://www.masswerk.at/algol60/report.htm Revised Report on the Algorithmic Language Algol 60] by Peter Naur, et al. ALGOL definition
83724 * A BNF [http://www.lrz.de/~bernhard/Algol-BNF.html syntax summary] of ALGOL 60
83725 * [http://www.braithwaite-lee.com/opinions/p75-hoare.pdf &quot;The Emperor's Old Clothes&quot;] -- Hoare's 1980 ACM Turing Award speech, which discusses ALGOL history and his involvement
83726 * [http://www.billp.org/ccs/A104/ &quot;803 ALGOL&quot;] The manual for Elliott 803 ALGOL.
83727 * [http://rogerdmoore.ca/JOUR/ AN IMPLEMENTATION OF ALGOL 60 FOR THE FP6000] Discussion of some implementation issues.
83728
83729 {{Major programming languages small}}
83730
83731 [[Category:Imperative programming languages]]
83732 [[Category:Procedural programming languages]]
83733 [[Category:Programming languages]]
83734 [[Category:Structured programming languages]]
83735
83736 [[bg:ALGOL]]
83737 [[da:ALGOL]]
83738 [[de:ALGOL]]
83739 [[es:Algol]]
83740 [[fr:Algol (langage)]]
83741 [[ko:ė•Œęŗ¨ 프로그래밍 ė–¸ė–´]]
83742 [[it:ALGOL]]
83743 [[nl:Algol (programmeertaal)]]
83744 [[ja:ALGOL]]
83745 [[pl:Algol (język programowania)]]
83746 [[pt:ALGOL]]
83747 [[ru:АĐģĐŗĐžĐģ]]
83748 [[sk:ALGOL]]
83749 [[sv:Algol (programsprÃĨk)]]
83750 [[tr:ALGOL]]</text>
83751 </revision>
83752 </page>
83753 <page>
83754 <title>AWK programming language</title>
83755 <id>1456</id>
83756 <revision>
83757 <id>41968591</id>
83758 <timestamp>2006-03-02T23:12:16Z</timestamp>
83759 <contributor>
83760 <username>DavidDouthitt</username>
83761 <id>465615</id>
83762 </contributor>
83763 <comment>/* Sample applications */ gave titles to examples; removed example which would be meaningless to majority of general populace and useless to most of the rest</comment>
83764 <text xml:space="preserve">'''AWK''' is a general purpose [[computer language]] that is designed for processing text-based data, either in files or data streams. The name AWK is derived from the [[surname]]s of its authors — [[Alfred V. Aho|Alfred V. '''A'''ho]], [[Peter J. Weinberger|Peter J. '''W'''einberger]], and [[Brian Kernighan|Brian W. '''K'''ernighan]]; however, it is commonly pronounced &quot;awk&quot; and not as a string of separate letters. &lt;tt&gt;awk&lt;/tt&gt;, when written in all lowercase letters, refers to the [[Unix]] program that runs other programs written in the AWK programming language.
83765
83766 AWK is an example of a [[programming language]] that extensively uses the [[String (computer science)|string]] [[datatype]], [[associative array]]s (that is, arrays indexed by key strings), and [[regular expression]]s. The power, terseness, and limitations of AWK programs and [[sed]] scripts inspired [[Larry Wall]] to write [[Perl]]. Because of their dense notation, all these languages are often used for writing [[one-liner program]]s.
83767
83768 AWK is one of the early tools to appear in [[Version 7 Unix]] and gained popularity as a way to add computational features to a Unix [[Pipeline (Unix)|pipeline]].
83769 A version of the AWK language is a standard feature of nearly every modern [[Unix-like]] [[operating system]] available today. AWK is mentioned in the [[Single UNIX Specification]] as one of the mandatory utilities of a [[Unix]] [[operating system]]. Besides the [[Bourne shell]], AWK is the only other scripting language available in a [http://www.unix.org/version3/apis/cu.html standard Unix environment]. Implementations of AWK exist as installed software for almost all other operating systems.
83770
83771 ==Structure of AWK programs==
83772 Generally speaking, two pieces of data are given to AWK: a command file and a primary input file. A command file (which can be an actual file, or can be included in the [[command line]] invocation of &lt;tt&gt;awk&lt;/tt&gt;) contains a series of commands which tell AWK how to process the input file. The primary input file is typically text that is formatted in some way; it can be an actual file, or it can be read by &lt;tt&gt;awk&lt;/tt&gt; from the standard input. A typical AWK program consists of a series of lines, each of the form
83773
83774 /''pattern''/ { ''action'' }
83775
83776 where ''pattern'' is a [[regular expression]] and ''action'' is a command. AWK looks through the input file; when it finds a line that matches ''pattern'', it executes the command(s) specified in ''action''. Alternate line forms include:
83777
83778 ; &lt;tt&gt;BEGIN { ''action'' }&lt;/tt&gt;
83779 : Executes ''action'' commands at the beginning of the script execution, i.e. before any of the lines are processed.
83780 ; &lt;tt&gt;END { ''action'' }&lt;/tt&gt;
83781 : Similar to the previous form, but executes ''action'' ''after'' the end of input.
83782 ; &lt;tt&gt;/''pattern''/&lt;/tt&gt;
83783 : Prints any lines matching ''pattern''.
83784 ; &lt;tt&gt;{ ''action'' }&lt;/tt&gt;
83785 : Executes ''action'' for each line in the input.
83786
83787 Each of these forms can be included multiple times in the command file. Lines in the command file are executed in order, so if there are two &quot;BEGIN&quot; statements, the first is executed, then the second, and then the rest of the lines. BEGIN and END statements do ''not'' have to be located before and after (respectively) the other lines in the command file.
83788
83789 AWK was created as a broadbased replacement to [[C programming language|C]] algorithmic approaches developed to integrate text parsing methods.
83790
83791 ==AWK commands==
83792 AWK commands are the statement that is substituted for ''action'' in the examples above. AWK commands can include function calls, variable assignments, calculations, or any combination thereof. AWK contains built-in support for many functions; many more are provided by the various flavors of AWK. Also, some flavors support the inclusion of [[dynamically linked library|dynamically linked libraries]], which can also provide more functions.
83793
83794 For brevity, the enclosing curly braces ( ''{ }'' ) will be omitted from these examples.
83795
83796 ===The ''print'' command===
83797 The ''print'' command is used to output text. The simplest form of this command is
83798
83799 print
83800
83801 This displays the contents of the current line. In AWK, lines are broken down into ''fields'', and these can be displayed separately:
83802
83803 ; &lt;tt&gt;print $1&lt;/tt&gt;
83804 : Displays the first field of the current line
83805 ; &lt;tt&gt;print $1, $3&lt;/tt&gt;
83806 : Displays the first and third fields of the current line, separated by a predefined string called the output field separator (OFS) whose default value is a single space character
83807
83808 Although these fields (''$X'') may bear resemblance to variables (the $ symbol indicates variables in perl), they actually refer to the fields of the current line. A special case, ''$0'', refers to the entire line. In fact, the commands &quot;&lt;tt&gt;print&lt;/tt&gt;&quot; and &quot;&lt;tt&gt;print $0&lt;/tt&gt;&quot; are identical in functionality.
83809
83810 The ''print'' command can also display the results of calculations and/or function calls:
83811
83812 print 3+2
83813 print foobar(3)
83814 print foobar(variable)
83815 print sin(3-2)
83816
83817 Output may be sent to a file:
83818
83819 print &quot;expression&quot; &gt; &quot;file name&quot;
83820
83821 ===Variables, et cetera===
83822 Variable names can use any of the characters [A-Za-z0-9_], with the exception of language keywords. The operators ''+ - * /'' are addition, subtraction, multiplication, and division, respectively. For string concatenation, simply place two variables (or string constants) next to each other, optionally with a space in between. String constants are [[delimited]] by double quotes. Statements need not end with semicolons. Finally, comments can be added to programs by using ''#'' as the first character on a line.
83823
83824 ===User-defined functions===
83825 In a format similar to [[C programming language|C]], function definitions consist of the keyword &lt;tt&gt;function&lt;/tt&gt;, the function name, argument names and the function body. Here is an example function:
83826
83827 function add_three(number, temp) {
83828 temp = number + 3
83829 return temp
83830 }
83831
83832 This statement can be invoked as follows:
83833
83834 print add_three(36) # prints '''39'''
83835
83836 Functions can have variables that are in the local scope. The names of these are added to the end of the argument list, though values for these should be omitted when calling the function. It is convention to add some [[whitespace]] in the argument list before the local variables, in order to indicate where the parameters end and the local variables begin.
83837
83838 ==Sample applications==
83839 ===Hello World===
83840 Here is the ubiquitous &quot;[[Hello world program]]&quot; program written in AWK:
83841
83842 BEGIN { print &quot;Hello, world!&quot;; exit }
83843
83844 ===Print lines longer than 80 characters===
83845 Print all lines longer than 80 characters. Note that the default action is to print the current line.
83846
83847 length &gt; 80
83848
83849 ===Print a count of words===
83850 Count words in the input, and print lines, words, and characters (like ''wc'')
83851
83852 { w += NF; c += length}
83853 END { print NR, w, c }
83854
83855 ===Sum first column===
83856 Sum first column of input
83857
83858 { s += $1 }
83859 END { print s }
83860
83861 ===Calculate word frequencies===
83862 Word frequency, (uses [[associative array]]s)
83863
83864 BEGIN { FS=&quot;[^a-zA-Z]+&quot;}
83865
83866 { for (i=1; i&lt;=NF; i++)
83867 words[tolower($i)]++
83868 }
83869
83870 END { for (i in words)
83871 print i, words[i]
83872 }
83873
83874 ==Self-contained AWK scripts==
83875 As with many other programming languages, self-contained AWK script can be constructed using the so-called &quot;[[shebang (Unix)|shebang]]&quot; syntax.
83876
83877 For example, a UNIX command called &lt;tt&gt;hello.awk&lt;/tt&gt; that prints the string &quot;Hello, world!&quot; may be built by going first creating a file named &lt;tt&gt;hello.awk&lt;/tt&gt; containing the following lines:
83878
83879 #!/usr/bin/awk -f
83880 BEGIN { print &quot;Hello, world!&quot;; exit }
83881
83882 ==AWK versions and implementations==
83883 AWK was originally written in [[1977]], and distributed with [[Version 7 Unix]].
83884
83885 In [[1985]] its authors started expanding the language, most significantly by adding user-defined functions. The language is described in the book ''The AWK Programming Language'',published [[1988]], and its implementation was made available in releases of [[UNIX System V]]. To avoid confusion with the incompatible older version, this version was sometimes known as &quot;new awk&quot; or ''nawk''. This implementation was released under a [[free software license]] in [[1996]], and is still maintained by Brian Kernighan.
83886
83887 [[GNU]] awk, or ''gawk'', is another free software implementation. It was written before the original implementation became freely available, and is still widely used. Almost every [[Linux distribution]] comes with a recent version of ''gawk'' and ''gawk'' is widely recognized as the de-facto standard implementation in the [[Linux]] world.
83888
83889 xgawk is a SourceForge project based on ''gawk''. It extends ''gawk'' with dynamically loadable libraries.
83890
83891 mawk is a very fast AWK implementation by Mike Brennan based on a [[byte code]] interpreter.
83892
83893 Downloads and further information about these versions are available from the sites listed below.
83894
83895 ==Digression==
83896 * The bird emblematic of AWK (a.o. on ''The AWK Programming Language'' book cover) is the [[Auk]].
83897
83898 ==Books==
83899 * {{cite book
83900 | author=[[Alfred V. Aho]], [[Brian W. Kernighan]], and [[Peter J. Weinberger]]
83901 | publisher=Addison-Wesley
83902 | year= 1988
83903 | id=ISBN 0-201-07981-X
83904 | url=http://cm.bell-labs.com/cm/cs/awkbook/
83905 | title=The AWK Programming Language
83906 }}. ''The book's webpage includes downloads of the original implementation of Awk and links to others.''
83907 * {{cite book
83908 | author=[[Arnold Robbins]]
83909 | url=http://www.oreilly.com/catalog/awkprog3/index.html
83910 | edition=Edition 3
83911 | title=Effective awk Programming
83912 }}. ''Arnold Robbins maintains the GNU Awk implementation of AWK for more than 10 years. The free GNU Awk manual was also published by O'Reilly in May 2001. Free download of this manual is possible through the following book references.''
83913 * {{cite book
83914 | author=[[Arnold Robbins]]
83915 | url=http://www.gnu.org/software/gawk/manual/html_node/index.html
83916 | edition=Edition 3
83917 | title=GAWK: Effective AWK Programming: A User's Guide for GNU Awk
83918 }}
83919 * {{cite book
83920 | title=sed &amp; awk, Second Edition
83921 | author=[[Dale Dougherty]], [[Arnold Robbins]]
83922 |edition= Second Edition
83923 | year = March 1997
83924 | id=ISBN 1-56592-225-5
83925 | url=http://www.oreilly.com/catalog/sed2/
83926 | publisher=[[O'Reilly Media]]
83927 }}
83928
83929 ==External links==
83930 *[news:comp.lang.awk comp.lang.awk] is a [[USENET]] [[newsgroup]] dedicated to AWK.
83931 *[http://www.gnu.org/software/gawk/gawk.html GAWK (GNU awk) webpage]
83932 *[http://freshmeat.net/projects/mawk/ ''mawk download site'']
83933 *[http://clio.rice.edu/djgpp/win2k/gwk311b.zip DJGPP port of Gawk 3.11b as a downloadable 768KB zipfile]
83934 *[https://sourceforge.net/projects/xmlgawk/ ''xgawk download site'']
83935
83936 {{Major programming languages small}}
83937
83938 [[Category:Curly bracket programming languages|AWK]]
83939 [[Category:Domain-specific programming languages]]
83940 [[Category:Text-oriented programming languages]]
83941 [[Category:Scripting languages]]
83942 [[Category:Unix shells]]
83943 [[Category:Unix software]]
83944
83945 [[ca:Awk]]
83946 [[cs:AWK]]
83947 [[de:Awk]]
83948 [[es:AWK]]
83949 [[fr:Awk]]
83950 [[ko:AWK 프로그래밍 ė–¸ė–´]]
83951 [[hr:Awk]]
83952 [[it:Awk]]
83953 [[hu:Awk programozÃĄsi nyelv]]
83954 [[nl:AWK]]
83955 [[ja:AWK]]
83956 [[no:Awk]]
83957 [[pl:Awk]]
83958 [[pt:AWK]]
83959 [[ru:AWK]]
83960 [[sk:AWK (programovací jazyk)]]
83961 [[tr:AWK]]
83962 [[uk:Мова ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧŅƒĐ˛Đ°ĐŊĐŊŅ AWK]]
83963 [[zh:AWK]]</text>
83964 </revision>
83965 </page>
83966 <page>
83967 <title>Alzheimers disease</title>
83968 <id>1457</id>
83969 <revision>
83970 <id>15899938</id>
83971 <timestamp>2002-04-27T16:47:03Z</timestamp>
83972 <contributor>
83973 <username>Maveric149</username>
83974 <id>62</id>
83975 </contributor>
83976 <comment>*link fix</comment>
83977 <text xml:space="preserve">#REDIRECT [[Alzheimer's disease]]</text>
83978 </revision>
83979 </page>
83980 <page>
83981 <title>Augustus De Morgan</title>
83982 <id>1458</id>
83983 <revision>
83984 <id>41716948</id>
83985 <timestamp>2006-03-01T06:47:28Z</timestamp>
83986 <contributor>
83987 <username>Gandalfxviv</username>
83988 <id>851818</id>
83989 </contributor>
83990 <minor />
83991 <comment>/* University education */ bypassed disambiguation</comment>
83992 <text xml:space="preserve">'''Augustus De Morgan''' ([[June 27]], [[1806]] – [[March 18]], [[1871]]) was an [[India|Indian-born]] [[United Kingdom|British]] [[mathematician]] and [[logician]]. He formulated [[De Morgan's laws]] and was the first to introduce the term, and make rigorous the idea of [[mathematical induction]].{{rf|1|De_Morgan}} [[De Morgan (crater)|De Morgan crater]] on the [[Moon]] is named after him.
83993
83994 [[Image:AugustusDeMorgan.png|right|float|Augustus De Morgan]]
83995
83996 ==Biography==
83997 ===Childhood===
83998 Augustus De Morgan was born June 27, 1806{{rf|2|birthyear}} in Madura, [[Madras Presidency]], [[India]] (now [[Madurai]], [[Tamil Nadu]], India); His father was Col. De Morgan, who held various appointments in the service of the [[British East India Company|East India Company]]. His mother descended from [[James Dodson]], who computed a table of anti-logarithms, that is, the numbers corresponding to exact [[logarithm]]s. Col. De Morgan moved his family to [[England]] when Augustus was seven months old. As his father and grandfather had both been born in India, De Morgan used to say that he was neither English, nor Scottish, nor Irish, but a Briton &quot;unattached,&quot; using the technical term applied to an undergraduate of [[Oxford]] or [[Cambridge]] who is not a member of any one of the Colleges.
83999
84000 When De Morgan was ten years old, his father died. Mrs. De Morgan resided at various places in the southwest of England, and her son received his elementary education at various schools of no great account. His mathematical talents were unnoticed till he had reached the age of fourteen. A friend of the family accidentally discovered him making an elaborate drawing of a figure in [[Euclid]] with ruler and compasses, and explained to him the aim of Euclid, and gave him an initiation into demonstration.
84001
84002 De Morgan suffered from a physical defect&amp;mdash;one of his eyes was rudimentary and useless. As a consequence, he did not join in the sports of the other boys, and he was even made the victim of cruel practical jokes by some schoolfellows. Some [[psychologist]]s have held that the perception of distance and of solidity depends on the action of two eyes, but De Morgan testified that so far as he could make out he perceived with his one eye distance and solidity just like other people.
84003
84004 He received his secondary education from Mr. Parsons, a Fellow of Oriel College, Oxford, who could appreciate classics much better than mathematics. His mother was an active and ardent member of the [[Church of England]], and desired that her son should become a clergyman; but by this time De Morgan had begun to show his non-grooving disposition, due no doubt to some extent to his physical infirmity.
84005
84006 ===University education===
84007 In [[1823]], at the age of sixteen he entered [[Trinity College, Cambridge]], where he immediately came under the tutorial influence of [[George Peacock]] and [[William Whewell]]. They became his life-long friends; from the former he derived an interest in the renovation of algebra, and from the latter an interest in the renovation of logic&amp;mdash;the two subjects of his future life work.
84008
84009 At college the [[flute]], on which he played exquisitely, was his recreation. He took no part in athletics but was prominent in the musical clubs. His love of knowledge for its own sake interfered with training for the great mathematical race; as a consequence he came out fourth [[wrangler]]. This entitled him to the degree of [[Bachelor of Arts]]; but to take the higher degree of [[Master of Arts (postgraduate)|Master of Arts]] and thereby become eligible for a fellowship it was then necessary to pass a theological test. To the signing of any such test De Morgan felt a strong objection, although he had been brought up in the [[Church of England]]. In about [[1875]] theological tests for academic degrees were abolished in the Universities of Oxford and Cambridge.
84010
84011 ===London University===
84012 As no career was open to him at his own university, he decided to go to the Bar, and took up residence in [[London]]; but he much preferred teaching mathematics to reading law. About this time the movement for founding the London University took shape. The two ancient universities of Oxford and Cambridge were so guarded by theological tests that no Jew or Dissenter outside the Church of England could enter as a student, still less be appointed to any office. A body of liberal-minded men resolved to meet the difficulty by establishing in London a University on the principle of religious neutrality. De Morgan, then 22 years of age, was appointed Professor of Mathematics. His introductory lecture &quot;On the study of mathematics&quot; is a discourse upon mental education of permanent value which has been recently reprinted in the United States.
84013
84014 The London University was a new institution, and the relations of the Council of management, the Senate of professors and the body of students were not well defined. A dispute arose between the professor of anatomy and his students, and in consequence of the action taken by the Council, several of the professors resigned, headed by De Morgan. Another professor of mathematics was appointed, who was accidentally drowned a few years later. De Morgan had shown himself a prince of teachers: he was invited to return to his chair, which thereafter became the continuous centre of his labours for thirty years.
84015
84016 The same body of reformers&amp;mdash;headed by [[Henry Peter Brougham, 1st Baron Brougham and Vaux|Lord Brougham]], a Scotsman eminent both in science and politics who had instituted the London University&amp;mdash;founded about the same time a [[Society for the Diffusion of Useful Knowledge]]. Its object was to spread scientific and other knowledge by means of cheap and clearly written treatises by the best writers of the time. One of its most voluminous and effective writers was De Morgan. He wrote a great work on ''The Differential and Integral Calculus'' which was published by the Society; and he wrote one-sixth of the articles in the ''Penny Cyclopedia'', published by the Society, and issued in penny numbers. When De Morgan came to reside in London he found a congenial friend in William Frend, notwithstanding his mathematical heresy about negative quantities. Both were arithmeticians and actuaries, and their religious views were somewhat similar. Frend lived in what was then a suburb of London, in a country-house formerly occupied by [[Daniel Defoe]] and [[Isaac Watts]]. De Morgan with his flute was a welcome visitor; and in [[1837]] he married Sophia Elizabeth, one of Frend's daughters.
84017
84018 The London University of which De Morgan was a professor was a different institution from the [[University of London]]. The University of London was founded about ten years later by the Government for the purpose of granting degrees after examination, without any qualification as to residence. The London University was affiliated as a teaching college with the University of London, and its name was changed to [[University College, London|University College]]. The University of London was not a success as an examining body; a teaching University was demanded. De Morgan was a highly successful teacher of mathematics. It was his plan to lecture for an hour, and at the close of each lecture to give out a number of problems and examples illustrative of the subject lectured on; his students were required to sit down to them and bring him the results, which he looked over and returned revised before the next lecture. In De Morgan's opinion, a thorough comprehension and mental assimilation of great principles far outweighed in importance any merely analytical dexterity in the application of half-understood principles to particular cases.
84019
84020 De Morgan had a son George, who acquired great distinction in mathematics both at University College and the University of London. He and another like-minded alumnus conceived the idea of founding a Mathematical Society in London, where mathematical papers would be not only received (as by the Royal Society) but actually read and discussed. The first meeting was held in University College; De Morgan was the first president, his son the first secretary. It was the beginning of the [[London Mathematical Society]].
84021
84022 ===Retirement and death===
84023 In the year [[1866]] the chair of mental philosophy in University College fell vacant. Dr. Martineau, a [[Unitarian]] clergyman and professor of mental philosophy, was recommended formally by the Senate to the Council; but in the Council there were some who objected to a Unitarian clergyman, and others who objected to theistic philosophy. A layman of the school of Bain and Spencer was appointed. De Morgan considered that the old standard of religious neutrality had been hauled down, and forthwith resigned. He was now 60 years of age. His pupils secured a pension of $ 500 for him, but misfortunes followed. Two years later his son George -- the younger Bernoulli, as he loved to hear him called, in allusion to the two eminent mathematicians of that name, related as father and son -- died. This blow was followed by the death of a daughter. Five years after his resignation from University College De Morgan died of nervous prostration on [[March 18]] [[1871]], in the 65th year of his age.
84024
84025 ==Mathematical work==
84026 De Morgan was a brilliant and witty writer, whether as a controversialist or as a correspondent. In his time there flourished two Sir [[William Hamilton]]s who have often been confounded. The one was [[Sir William Hamilton, 9th Baronet]] (that is, his title was inherited), a Scotsman, professor of logic and metaphysics at the University of Edinburgh; the other was a knight (that is, won the title), an Irishman, professor at astronomy in the University of Dublin. The baronet contributed to logic, especially the doctrine of the quantification of the predicate; the knight, whose full name was [[William Rowan Hamilton]], contributed to mathematics, especially [[geometric algebra]], and first described the [[Quaternion]]s. De Morgan was interested in the work of both, and corresponded with both; but the correspondence with the Scotsman ended in a public controversy, whereas that with the Irishman was marked by friendship and terminated only by death. In one of his letters to Rowan, De Morgan says, &quot;Be it known unto you that I have discovered that you and the other Sir W. H. are reciprocal polars with respect to me (intellectually and morally, for the Scottish baronet is a polar bear, and you, I was going to say, are a polar gentleman). When I send a bit of investigation to [[Edinburgh]], the W. H. of that ilk says I took it from him. When I send you one, you take it from me, generalize it at a glance, bestow it thus generalized upon society at large, and make me the second discoverer of a known theorem.&quot;
84027
84028 The correspondence of De Morgan with Hamilton the mathematician extended over twenty-four years; it contains discussions not only of mathematical matters, but also of subjects of general interest. It is marked by geniality on the part of Hamilton and by wit on the part of De Morgan. The following is a specimen: Hamilton wrote, &quot;My copy of Berkeley's work is not mine; like Berkeley, you know, I am an Irishman.&quot; De Morgan replied, &quot;Your phrase 'my copy is not mine' is not a bull. It is perfectly good English to use the same word in two different senses in one sentence, particularly when there is usage. Incongruity of language is no bull, for it expresses meaning. But incongruity of ideas (as in the case of the Irishman who was pulling up the rope, and finding it did not finish, cried out that somebody had cut off the other end of it) is the genuine bull.&quot;
84029
84030 De Morgan was full of personal peculiarities. We have noticed his almost morbid attitude towards religion, and the readiness with which he would resign an office. On the occasion of the installation of his friend, Lord Brougham, as Rector of the University of Edinburgh, the Senate offered to confer on him the honorary degree of LL. D.; he declined the honour as a misnomer. He once printed his name: Augustus De Morgan, ''H - O - M - O - P - A - U - C - A - R - U - M - L - I - T - E - R - A - R - U - M''.
84031
84032 He disliked the country, and while his family enjoyed the seaside, and men of science were having a good time at a meeting of the British Association in the country he remained in the hot and dusty libraries of the metropolis. He said that he felt like [[Socrates]], who declared that the farther he got from [[Athens]] the farther was he from happiness. He never sought to become a [[Fellow of the Royal Society]], and he never attended a meeting of the Society; he said that he had no ideas or sympathies in common with the physical philosopher. His attitude was doubtless due to his physical infirmity, which prevented him from being either an observer or an experimenter. He never voted at an election, and he never visited the [[House of Commons]], or the [[Tower of London]], or [[Westminster Abbey]].
84033
84034 Were the writings of De Morgan published in the form of collected works, they would form a small library. We have noticed his writings for the Useful Knowledge Society. Mainly through the efforts of Peacock and Whewell, a Philosophical Society had been inaugurated at Cambridge; and to its Transactions De Morgan contributed four memoirs on the foundations of algebra, and an equal number on formal logic. The best presentation of his view of algebra is found in a volume, entitled ''Trigonometry and Double Algebra'', published in [[1849]]; and his earlier view of formal logic is found in a volume published in [[1847]]. His most unique work is styled a ''Budget of Paradoxes''; it originally appeared as letters in the columns of the ''AthenÃĻum'' journal; it was revised and extended by De Morgan in the last years of his life, and was published posthumously by his widow. If you wish to read something entertaining, get De Morgan's ''Budget of Paradoxes'' out of the library. We shall consider more at length his theory of algebra, his contribution to exact logic, and his Budget of Paradoxes.
84035
84036 [[George Peacock]]'s theory of algebra was much improved by D. F. Gregory, a younger member of the Cambridge School, who laid stress not on the permanence of equivalent forms, but on the permanence of certain formal laws. This new theory of algebra as the science of symbols and of their laws of combination was carried to its logical issue by De Morgan; and his doctrine on the subject is still followed by English algebraists in general. Thus Chrystal founds his ''Textbook of Algebra'' on De Morgan's theory; although an attentive reader may remark that he practically abandons it when he takes up the subject of infinite series. De Morgan's theory is stated in his volume on ''Trigonometry and Double Algebra''. In the chapter (of the book) headed &quot;On symbolic algebra&quot; he writes: &quot;In abandoning the meaning of symbols, we also abandon those of the words which describe them. Thus addition is to be, for the present, a sound void of sense. It is a mode of combination represented by &lt;math&gt;+&lt;/math&gt;; when &lt;math&gt;+&lt;/math&gt; receives its meaning, so also will the word addition. It is most important that the student should bear in mind that, with one exception, no word nor sign of arithmetic or algebra has one atom of meaning throughout this chapter, the object of which is symbols, and their laws of combination, giving a symbolic algebra which may hereafter become the grammar of a hundred distinct significant algebras. If any one were to assert that &lt;math&gt;+&lt;/math&gt; and &lt;math&gt;-&lt;/math&gt; might mean reward and punishment, and &lt;math&gt;A&lt;/math&gt;, &lt;math&gt;B&lt;/math&gt;, &lt;math&gt;C&lt;/math&gt;, etc., might stand for virtues and vices, the reader might believe him, or contradict him, as he pleases, but not out of this chapter. The one exception above noted, which has some share of meaning, is the sign &lt;math&gt;=&lt;/math&gt; placed between two symbols as in &lt;math&gt;A = B&lt;/math&gt;. It indicates that the two symbols have the same resulting meaning, by whatever steps attained. That &lt;math&gt;A&lt;/math&gt; and &lt;math&gt;B&lt;/math&gt;, if quantities, are the same amount of quantity; that if operations, they are of the same effect, etc.&quot;
84037
84038 Here, it may be asked, why does the symbol &lt;math&gt;=&lt;/math&gt; prove refractory to the symbolic theory? De Morgan admits that there is one exception; but an exception proves the rule, not in the usual but illogical sense of establishing it, but in the old and logical sense of testing its validity. If an exception can be established, the rule must fall, or at least must be modified. Here I am talking not of grammatical rules, but of the rules of science or nature.
84039
84040 De Morgan proceeds to give an inventory of the fundamental symbols of algebra, and also an inventory of the laws of algebra. The symbols are 0, 1, +, &amp;minus;, &amp;times;, Ãˇ, ()&lt;sup&gt;()&lt;/sup&gt;, and letters; these only, all others are derived. His inventory of the fundamental laws is expressed under fourteen heads, but some of them are merely definitions. The laws proper may be reduced to the following, which, as he admits, are not all independent of one
84041 another:
84042
84043 #Law of signs. +&amp;nbsp;+&amp;nbsp;=&amp;nbsp;+, +&amp;nbsp;&amp;minus;&amp;nbsp;=&amp;nbsp;&amp;minus;, &amp;minus;&amp;nbsp;+&amp;nbsp;=&amp;nbsp;&amp;minus;, &amp;minus;&amp;nbsp;&amp;minus;&amp;nbsp;=&amp;nbsp;+, &amp;times;&amp;nbsp;&amp;times;&amp;nbsp;=&amp;nbsp;&amp;times;, &amp;times;&amp;nbsp;Ãˇ&amp;nbsp;=&amp;nbsp;Ãˇ, Ãˇ&amp;nbsp;&amp;times;&amp;nbsp;=&amp;nbsp;Ãˇ, Ãˇ&amp;nbsp;Ãˇ&amp;nbsp;=&amp;nbsp;&amp;times;.
84044 #Commutative law. ''a''+''b'' = ''b''+''a'', ''ab''=''ba''.
84045 #Distributive law. ''a''(''b''+''c'') = ''ab''+''ac''.
84046 #Index laws. ''a''&lt;sup&gt;''b''&lt;/sup&gt;&amp;times;''a''&lt;sup&gt;''c''&lt;/sup&gt;=''a''&lt;sup&gt;''b''+''c''&lt;/sup&gt;, (''a''&lt;sup&gt;''b''&lt;/sup&gt;)&lt;sup&gt;''c''&lt;/sup&gt;=''a''&lt;sup&gt;''bc''&lt;/sup&gt;, ''(ab)''&lt;sup&gt;''c''&lt;/sup&gt;= ''a''&lt;sup&gt;''c''&lt;/sup&gt;&amp;times;''b''&lt;sup&gt;''c''&lt;/sup&gt;.
84047 #''a''&amp;minus;''a''=0, ''a''Ãˇ''a''=1.
84048
84049 The last two may be called the rules of reduction. De Morgan professes to give a complete inventory of the laws which the symbols of algebra must obey, for he says, &quot;Any system of symbols which obeys these laws and no others, except they be formed by combination of these laws, and which uses the preceding symbols and no others, except they be new symbols invented in abbreviation of combinations of these symbols, is symbolic algebra.&quot; From his point of view, none of the above principles are rules; they are formal laws, that is, arbitrarily chosen relations to which the algebraic symbols must be subject. He does not mention the law, which had already been pointed out by Gregory, namely, &lt;math&gt;(a+b)+c = a+(b+c), (ab)c = a(bc)&lt;/math&gt; and to which was afterwards given the name of the ''law of association''. If the commutative law fails, the associative may hold good; but not ''vice versa''. It is an unfortunate thing for the symbolist or formalist that in universal arithmetic &lt;math&gt;m^n&lt;/math&gt; is not equal to &lt;math&gt;n^m&lt;/math&gt;; for then the commutative law would have full scope. Why does he not give it full scope? Because the foundations of algebra are, after all, real not formal, material not symbolic. To the formalists the index operations are exceedingly refractory, in consequence of which some take no account of them, but relegate them to applied mathematics. To give an inventory of the laws which the symbols of algebra must obey is an impossible task, and reminds one not a little of the task of those philosophers who attempt to give an inventory of the ''a priori'' knowledge of the mind.
84050
84051 De Morgan's work entitled ''Trigonometry and Double Algebra'' consists of two parts; the former of which is a treatise on [[Trigonometry]], and the latter a treatise on generalized algebra which he calls Double Algebra. But what is meant by Double as applied to algebra? and why should Trigonometry be also treated in the same textbook? The first stage in the development of algebra is ''arithmetic'', where numbers only appear and symbols of operations such as &lt;math&gt;+&lt;/math&gt;, &lt;math&gt;\times&lt;/math&gt;, etc. The next stage is ''universal arithmetic'', where letters appear instead of numbers, so as to denote numbers universally, and the processes are conducted without knowing the values of the symbols. Let &lt;math&gt;a&lt;/math&gt; and &lt;math&gt;b&lt;/math&gt; denote any numbers; then such an expression as &lt;math&gt;a-b&lt;/math&gt; may be impossible; so that in universal arithmetic there is always a proviso, ''provided the operation is possible''. The third stage is ''single algebra'', where the symbol may denote a quantity forwards or a quantity backwards, and is adequately represented by segments on a straight line passing through an origin. Negative quantities are then no longer impossible; they are represented by the backward segment. But an impossibility still remains in the latter part of such an expression as &lt;math&gt;a+b\sqrt{-1}&lt;/math&gt; which arises in the solution of the quadratic equation. The fourth stage is ''double algebra''; the algebraic symbol denotes in general a segment of a line in a given plane; it is a double symbol because it involves two specifications, namely, length and direction; and &lt;math&gt;\sqrt{-1}&lt;/math&gt; is interpreted as denoting a quadrant. The expression &lt;math&gt;a+b\sqrt{-1}&lt;/math&gt; then represents a line in the plane having an abscissa &lt;math&gt;a&lt;/math&gt; and an ordinate &lt;math&gt;b&lt;/math&gt;. Argand and Warren carried double algebra so far; but they were unable to interpret on this theory such an expression as &lt;math&gt;e^{a\sqrt{-1}}&lt;/math&gt;. De Morgan attempted it by ''reducing'' such an expression to the form &lt;math&gt;b+q\sqrt{-1}&lt;/math&gt;, and he considered that he had shown that it could be always so reduced. The remarkable fact is that this double algebra satisfies all the fundamental laws above enumerated, and as every apparently impossible combination of symbols has been interpreted it looks like the complete form of algebra.
84052
84053 If the above theory is true, the next stage of development ought to be ''triple'' algebra and if &lt;math&gt;a+b\sqrt{-1}&lt;/math&gt; truly represents a line in a given plane, it ought to be possible to find a third term which added to the above would represent a line in space. Argand and some others guessed that it was &lt;math&gt;a + b\sqrt{-1} + c\sqrt{-1}\,^{\sqrt{-1}}&lt;/math&gt; although this contradicts the truth established by Euler that &lt;math&gt;\sqrt{-1}\,^{\sqrt{-1}}=e^{-\frac{1}{2} \pi}&lt;/math&gt;. De Morgan and many others worked hard at the problem, but nothing came of it until the problem was taken up by Hamilton. We now see the reason clearly: the symbol of double algebra denotes not a length and a direction; but a multiplier and ''an angle''. In it the angles are confined to one plane; hence the next stage will be a ''quadruple algebra'', when the axis of the plane is made variable. And this gives the answer to the first question; double algebra is nothing but analytical plane trigonometry, and this is why it has been found to be the natural analysis for alternating currents. But De Morgan never got this far; he died with the belief &quot;that double algebra must remain as the full development of the conceptions of arithmetic, so far as those symbols are concerned which arithmetic immediately suggests.&quot;
84054
84055 When the study of mathematics revived at the University of Cambridge, so did the study of logic. The moving spirit was Whewell, the Master of Trinity College, whose principal writings were a ''History of the Inductive Sciences'', and ''Philosophy of the Inductive Sciences''. Doubtless De Morgan was influenced in his logical investigations by Whewell; but other influential contemporaries were Sir W. Hamilton of Edinburgh, and Professor Boole of Cork. De~Morgan's work on ''Formal Logic'', published in [[1847]], is principally remarkable for his development of the numerically definite syllogism. The followers of [[Aristotle]] say that from two particular propositions such as '' Some M's are A's '', and '' Some M's are B's '' nothing follows of necessity about the relation of the A's and B's. But they go further and say in order that any relation about the A's and B's may follow of necessity, the middle term must be taken universally in one of the premises. De~Morgan pointed out that from ''Most M's are A's and Most M's are B's'' it follows of necessity that ''some A's are B's'' and he formulated the numerically definite syllogism which puts this principle in exact quantitative form. Suppose that the number of the M's is &lt;math&gt;m&lt;/math&gt;, of the M's that are A's is &lt;math&gt;a&lt;/math&gt;, and of the M's that are B's is &lt;math&gt;b&lt;/math&gt;; then there are at least &lt;math&gt;(a+b-m)&lt;/math&gt; A's that are B's. Suppose that the number of souls on board a steamer was 1000, that 500 were in the saloon, and 700 were lost; it follows of necessity, that at least 700+500-1000, that is, 200, saloon passengers were lost. This single principle suffices to prove the validity of all the Aristotelian moods; it is therefore a fundamental principle in necessary reasoning.
84056
84057 Here then De Morgan had made a great advance by introducing ''quantification of the terms''. At that time Sir W. Hamilton was teaching at Edinburgh a doctrine of the quantification of the predicate, and a correspondence sprang up. However, De Morgan soon perceived that Hamilton's quantification was of a different character; that it meant for example, substituting the two forms ''The whole of A is the whole of B'', and ''The whole of A is a part of B'' for the Aristotelian form ''All A's are B's''. Philosophers generally have a large share of intolerance; they are too apt to think that they have got hold of the whole truth, and that everything outside of their system is error. Hamilton thought that he had placed the keystone in the Aristotelian arch, as he phrased it; although it must have been a curious arch which could stand 2000 years without a keystone. As a consequence he had no room for De Morgan's innovations. He accused De Morgan of plagiarism, and the controversy raged for years in the columns of the ''AthenÃĻum'', and in the publications of the two writers.
84058
84059 The memoirs on logic which De Morgan contributed to the Transactions of the Cambridge Philosophical Society subsequent to the publication of his book on ''Formal Logic'' are by far the most important contributions which he made to the science, especially his fourth memoir, in which he begins work in the broad field of the ''logic of relatives''. This is the true field for the logician of the twentieth century, in which work of the greatest importance is to be done towards improving language and facilitating thinking processes which occur all the time in practical life. Identity and difference are the two relations which have been considered by the logician; but there are many others equally deserving of study, such as equality, equivalence, consanguinity, affinity, etc.
84060
84061 In the introduction to the ''Budget of Paradoxes'' De Morgan explains what he means by the word. &quot;A great many individuals, ever since the rise of the mathematical method, have, each for himself, attacked its direct and indirect consequences. I shall call each of these persons a ''paradoxer'', and his system a ''paradox''. I use the word in the old sense: a paradox is something which is apart from general opinion, either in subject matter, method, or conclusion. Many of the things brought forward would now be called ''crackpots'', which is the nearest word we have to old ''paradox''. But there is this difference, that by calling a thing a crackpot we mean to speak lightly of it; which was not the necessary sense of paradox. Thus in the 16th century many spoke of the earth's motion as the ''paradox of Copernicus'' and held the ingenuity of that theory in very high esteem, and some I think who even inclined towards it. In the seventeenth century the depravation of meaning took place, in England at least.&quot;
84062
84063 How can the sound paradoxer be distinguished from the false paradoxer? De Morgan supplies the following test: &quot;The manner in which a paradoxer will show himself, as to sense or nonsense, will not depend upon what he maintains, but upon whether he has or has not made a sufficient knowledge of what has been done by others, especially as to the mode of doing it, a preliminary to inventing knowledge for himself... New knowledge, when to any purpose, must come by contemplation of old knowledge, in every matter which concerns thought; mechanical contrivance sometimes, not very often, escapes this rule. All the men who are now called discoverers, in every matter ruled by thought, have been men versed in the minds of their predecessors and learned in what had been before them. There is not one exception.&quot;
84064
84065 &quot;I remember that just before the American Association met at Indianapolis in [[1890]], the local newspapers heralded a great discovery which was to be laid before the assembled savants -- a young man living somewhere in the country had squared the circle. While the meeting was in progress I observed a young man going about with a roll of paper in his hand. He spoke to me and complained that the paper containing his discovery had not been received. I asked him whether his object in presenting the paper was not to get it read, printed and published so that everyone might inform himself of the result; to all of which he assented readily. But, said I, many men have worked at this question, and their results have been tested fully, and they are printed for the benefit of anyone who can read; have you informed yourself of their results? To this there was no assent, but the sickly smile of the false paradoxer&quot; [Note: De Morgan did not say this (how could he? He died far before 1890...). Rather, as pointed out on the discussion page, this paragraph (and the rest of the article) is copied verbatim from a lecture given in 1916]
84066
84067 The ''Budget'' consists of a review of a large collection of paradoxical books which De Morgan had accumulated in his own library, partly by purchase at bookstands, partly from books sent to him for review, partly from books sent to him by the authors. He gives the following classification: squarers of the circle, trisectors of the angle, duplicators of the cube, constructors of perpetual motion, subverters of gravitation, stagnators of the earth, builders of the universe. You will still find specimens of all these classes in the New World and in the new century.
84068
84069 De Morgan gives his personal knowledge of paradoxers. &quot;I suspect that I know more of the English class than any man in Britain. I never kept any reckoning: but I know that one year with another? -- and less of late years than in earlier time? -- I have talked to more than five in each year, giving more than a hundred and fifty specimens. Of this I am sure, that it is my own fault if they have not been a thousand. Nobody knows how they swarm, except those to whom they naturally resort. They are in all ranks and occupations, of all ages and characters. They are very earnest people, and their purpose is ''[[bona fide]]'', the dissemination of their paradoxes. A great many -- the mass, indeed -- are illiterate, and a great many waste their means, and are in or approaching penury. These discoverers despise one another.&quot;
84070
84071 A paradoxer to whom De Morgan paid the compliment which Achilles paid Hector -- to drag him round the walls again and again -- was James Smith, a successful merchant of Liverpool. He found &lt;math&gt;\pi = 3 \frac{1}{8}&lt;/math&gt;. His mode of reasoning was a curious caricature of the ''reductio ad absurdum'' of Euclid. He said let &lt;math&gt;\pi = 3 \frac{1}{8}&lt;/math&gt;, and then showed that on that supposition, every other value of &lt;math&gt;\pi&lt;/math&gt; must be absurd; consequently &lt;math&gt;\pi = 3\frac{1}{8}&lt;/math&gt; is the true value. The following is a specimen of De Morgan's dragging round the walls of Troy: &quot;Mr. Smith continues to write me long letters, to which he hints that I am to answer. In his last of 31 closely written sides of note paper, he informs me, with reference to my obstinate silence, that though I think myself and am thought by others to be a mathematical Goliath, I have resolved to play the mathematical snail, and keep within my shell. A mathematical ''snail''! This cannot be the thing so called which regulates the striking of a clock; for it would mean that I am to make Mr. Smith sound the true time of day, which I would by no means undertake upon a clock that gains 19 seconds odd in every hour by false quadrative value of &lt;math&gt;\pi&lt;/math&gt;. But he ventures to tell me that pebbles from the sling of simple truth and common sense will ultimately crack my shell, and put me ''hors de combat''. The confusion of images is amusing: Goliath turning himself into a snail to avoid &lt;math&gt;\pi = 3\frac{1}{8}&lt;/math&gt; and James Smith, Esq., of the Mersey Dock Board: and put ''hors de combat'' by pebbles from a sling. If Goliath had crept into a snail shell, David would have cracked the Philistine with his foot. There is something like modesty in the implication that the crack-shell pebble has not yet taken effect; it might have been thought that the slinger would by this time have been singing -- And thrice [and one-eighth] I routed all my foes, And thrice [and one-eighth] I slew the slain.&quot;
84072
84073 In the region of pure mathematics De Morgan could detect easily the false from the true paradox; but he was not so proficient in the field of physics. His father-in-law was a paradoxer, and his wife a paradoxer; and in the opinion of the physical philosophers De Morgan himself scarcely escaped. His wife wrote a book describing the phenomena of spiritualism, table-rapping, [[table-turning]], etc.; and De Morgan wrote a preface in which he said that he knew some of the asserted facts, believed others on testimony, but did not pretend to know ''whether'' they were caused by spirits, or had some unknown and unimagined origin. From this alternative he left out ordinary material causes. Faraday delivered a lecture on ''Spiritualism'', in which he laid it down that in the investigation we ought to set out with the idea of what is physically possible, or impossible; De Morgan could not understand this.
84074
84075 === Relations ===
84076 De Morgan discovered [[relational algebra]] in his (1966: 208-46), first published in 1860. This algebra was extended by [[Charles Peirce]] (who admired De Morgan and met him shortly before his death), and re-exposited and further extended in vol. 3 of [[Ernst SchrÃļder]]'s ''Vorlesungen Ãŧber die Algebra der Logik''. [[Relational algebra]] proved critical to the ''[[Principia Mathematica]]'' of [[Bertrand Russell]] and [[Alfred North Whitehead]]. In turn, this algebra became the subject of much further work, starting in 1940, by [[Alfred Tarski]] and his colleagues and students at the [[University of California]].
84077
84078 ==Notes==
84079 {{ent|1|De_Morgan}} De Morgan, (1838) ''Induction (mathematics)'', ''The Penny Cyclopedia''.
84080 {{ent|2|birthyear}} The year of his birth may be found by solving a conundrum proposed by himself, &quot;I was &lt;math&gt;x&lt;/math&gt; years of age in the year &lt;math&gt;x^2&lt;/math&gt; &quot; (He was 43 in 1849). The problem is indeterminate, but it is made strictly determinate by the century of its utterance and the limit to a man's life.
84081
84082 ==References==
84083 * De Morgan, A., 1966. ''Logic: On the Syllogism and Other Logical Writings''. Heath, P., ed. Routledge.
84084 *[[Ivor Grattan-Guinness]], 2000. ''The Search for Mathematical Roots 1870-1940''. Princeton Uni. Press.
84085 * [http://www.gutenberg.net/etext06/tbmms10p.pdf Ten British Mathematicians of the 19th Century (PDF)], by Alexander Macfarlane, available through [[Project Gutenberg]]
84086
84087 ==External links==
84088 * {{MacTutor Biography|id=De_Morgan}}
84089
84090 ==See also==
84091 * [[De Morgan's laws]]
84092 * [[relational algebra]]
84093
84094 [[Category:1806 births|De Morgan, Augustus]]
84095 [[Category:1871 deaths|De Morgan, Augustus]]
84096 [[Category:19th century philosophers|De Morgan, Augustus]]
84097 [[Category:British logicians|De Morgan, Augustus]]
84098 [[Category:British mathematicians|De Morgan, Augustus]]
84099 [[Category:British philosophers|De Morgan, Augustus]]
84100 [[Category:Music theorists|De Morgan, Augustus]]
84101
84102 [[de:Augustus De Morgan]]
84103 [[es:Augustus De Morgan]]
84104 [[fi:Augustus De Morgan]]
84105 [[fr:Auguste De Morgan]]
84106 [[he:אוגוסטוס דה מורגן]]
84107 [[ja:ã‚Ēãƒŧã‚Ŧã‚šã‚ŋã‚šãƒģドãƒģãƒĸãƒĢã‚Ŧãƒŗ]]
84108 [[nl:Augustus De Morgan]]
84109 [[pl:August De Morgan]]
84110 [[sk:Augustus De Morgan]]
84111 [[sl:Augustus De Morgan]]
84112 [[sv:Augustus de Morgan]]
84113 [[zh:åĨ§å¤æ–¯éƒŊÂˇåžˇÂˇæ‘Šæ š]]</text>
84114 </revision>
84115 </page>
84116 <page>
84117 <title>Ascorbic Acid</title>
84118 <id>1459</id>
84119 <revision>
84120 <id>15899940</id>
84121 <timestamp>2004-08-12T22:38:32Z</timestamp>
84122 <contributor>
84123 <username>Ropers</username>
84124 <id>69801</id>
84125 </contributor>
84126 <text xml:space="preserve">#REDIRECT [[Ascorbic acid]]</text>
84127 </revision>
84128 </page>
84129 <page>
84130 <title>Asgard</title>
84131 <id>1460</id>
84132 <revision>
84133 <id>39686190</id>
84134 <timestamp>2006-02-15T03:58:50Z</timestamp>
84135 <contributor>
84136 <username>SashatoBot</username>
84137 <id>743015</id>
84138 </contributor>
84139 <minor />
84140 <comment>robot Modifying: ja</comment>
84141 <text xml:space="preserve">:''This article is about the realm of Norse Mythology. For other uses, see [[Asgard (disambiguation)]].''
84142
84143 In [[Norse mythology]], '''Asgard''' ([[Old Norse language|Old Norse]]: '''Ásgarðr''') is the realm of the gods, the [[Æsir]], thought to be separate from the realm of the mortals, [[Midgard]].
84144
84145 The walls surrounding Asgard were built by a [[giant (mythology)|giant]]. As payment for his work, the giant was to receive the hand of [[Freyja]] in marriage, as well as the [[sun]] and the [[moon]]. This was agreed, provided that the work was completed within six months. In order to avoid honouring the agreement, [[Loki]] transformed himself into a mare to lure away the giant's magic horse, [[Svadilfari]]. The job was therefore not completed on time, and the gods evaded the payment.
84146
84147 The plain of [[Idavoll]] is the centre of Asgard. The Æsir meet there for discussions on important issues: the male gods meet in a hall called [[Gladsheim]], and the female gods in a hall called [[VingÃŗlf]]. They also meet daily at the [[Well of Urd]], beneath [[Yggdrasill]].
84148
84149 ==Other spellings==
84150 *Alternatives Anglicizations: Ásgard, Ásgardr, Asgardr, Ásgarthr, Ásgarth, Asgarth, Ásgardhr
84151 * Common [[Swedish language|Swedish]] and [[Danish language|Danish]] form: AsgÃĨrd
84152 * [[Norwegian language|Norwegian]]: Åsgard (also ÅsgÃĨrd, Asgaard)
84153 * [[Icelandic language|Icelandic]]: Ásgarður
84154
84155 {{NorseMythology}}
84156
84157 [[Category:Locations in Norse mythology]]
84158
84159 [[ca:Asgard]]
84160 [[da:AsgÃĨrd]]
84161 [[de:Asgard (Mythologie)]]
84162 [[el:ΆĪƒÎŗÎēÎąĪÎŊĪ„]]
84163 [[es:Asgard]]
84164 [[eo:Ásgarðr]]
84165 [[fr:Asgard]]
84166 [[hr:Asgard]]
84167 [[is:Ásgarður]]
84168 [[it:Ásgarðr]]
84169 [[he:אסגארד]]
84170 [[lt:Asgardas]]
84171 [[nl:Asgaard]]
84172 [[ja:ã‚ĸãƒŧã‚šã‚ŦãƒĢド]]
84173 [[no:Åsgard]]
84174 [[nn:Åsgard]]
84175 [[pl:Asgard]]
84176 [[pt:Asgard]]
84177 [[ru:АŅĐŗĐ°Ņ€Đ´]]
84178 [[fi:AsgÃĨrd]]
84179 [[sv:AsgÃĨrd]]</text>
84180 </revision>
84181 </page>
84182 <page>
84183 <title>Project Apollo</title>
84184 <id>1461</id>
84185 <revision>
84186 <id>40696016</id>
84187 <timestamp>2006-02-22T10:34:57Z</timestamp>
84188 <contributor>
84189 <username>Rich Farmbrough</username>
84190 <id>82835</id>
84191 </contributor>
84192 <minor />
84193 <comment>/* Background */</comment>
84194 <text xml:space="preserve">:''For other meanings, see [[Apollo (disambiguation)]].''
84195 {| border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;right&quot; width=&quot;300&quot; style=&quot;margin-left:0.5em;&quot;
84196 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|'''North American Apollo CSM'''
84197 |-
84198 |colspan=&quot;3&quot; align=&quot;center&quot;| [[Image:Apollo_CSM_lunar_orbit.jpg|300px|Apollo CSM in lunar orbit.]] &lt;br/&gt;Apollo CSM in lunar orbit.
84199 |-
84200 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Description
84201 |-
84202 |width=&quot;75&quot; colspan=&quot;1&quot; |'''Role:'''||width=&quot;200&quot; colspan=&quot;2&quot;| Earth and lunar orbit
84203 |-
84204 |width=&quot;75&quot; colspan=&quot;1&quot; |'''Crew: '''||width=&quot;250&quot; colspan=&quot;2&quot;| 3; CDR, CM pilot, LM pilot
84205 |-
84206 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Dimensions
84207 |-
84208 |'''Height:'''|| width=&quot;125&quot;|36.2 ft || width=&quot;125&quot;|11.03 m
84209 |-
84210 |'''Diameter:'''|| 12.8 ft || 3.9 m
84211 |-
84212 |'''Volume:'''|| 218 ft&lt;sup&gt;3&lt;/sup&gt; || 6.17 m&lt;sup&gt;3&lt;/sup&gt;
84213 |-
84214 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Weights
84215 |-
84216 |'''Command module:'''|| 12,807 lb || 5,809 kg
84217 |-
84218 |'''Service module:''' || 54,064 lb || 24,523 kg
84219 |-
84220 |'''Total:''' || 66,871 lb || 30,332 kg
84221 |-
84222 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Rocket engines
84223 |-
84224 |'''CM RCS''' (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/UDMH) x 12:|| 92 [[Pound-force|lbf]] ea || 412 N
84225 |-
84226 |'''SM RCS''' (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/UDMH) x 16:|| 100 lbf ea || 441 N
84227 |-
84228 |'''Service Propulsion System'''&lt;br /&gt; (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/UDMH) x 1:|| 22,000 lbf ea || 97.86 kN
84229 |-
84230 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Performance
84231 |-
84232 |''' Endurance:'''|| 14 days || 200 orbits
84233 |-
84234 |''' Apogee:'''|| 240,000 miles || 386,242 km
84235 |-
84236 |''' Perigee:'''|| 100 miles || 160 km
84237 |-
84238 |''' Spacecraft delta v:'''|| 9,200 ft/s &lt;br&gt; (6,272 mi/hr)|| 2,804 m/s &lt;br&gt; (10,094 km/h)
84239 |-
84240 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|''' Apollo CSM diagram'''
84241 |-
84242 |colspan=&quot;3&quot; align=&quot;center&quot;| [[image:Apollo-linedrawing.png|300px|Apollo CSM diagram (NASA)]] &lt;br/&gt;Apollo CSM diagram (NASA)
84243 |-
84244 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|North American Apollo CSM
84245 |-
84246 |}
84247
84248 &lt;!-- When using a spelling checker use &quot;Skip All&quot; with this words, or add them all to a User Word List you use when checking this article, I'm sure all the English words are spelled correctly in this list, but I didn't worry about American, British, etc. spelling, I'm not sure if all the names are spelled correctly:
84249 align:center td de:Apollo Projekt fr:Programme ja nl:Apollo zh Image:Apollo insignia.png EOR linedrawing.png Houbolt LOR CSM LEM dockings undockings Image:LEM crewless Apollos cancelled CNC litres IB IVB Soyuz Kranz website align
84250 --&gt;
84251 [[Image:Apollo program insignia.jpg|thumb|left|150px|Apollo Program insignia]]
84252 '''Project Apollo''' was a series of [[human spaceflight]] missions undertaken by the [[United States|United States of America]] using the [[Apollo spacecraft]] and [[Saturn (rocket family)|Saturn launch vehicle]], conducted during the years 1961–1972. It was devoted to the goal of landing a man on the [[Moon]] and returning him safely to Earth within the decade of the 1960s. This goal was achieved with the ''[[Apollo 11]]'' mission in July 1969. The program continued into the early 1970s to carry out the initial hands-on scientific exploration of the Moon, with a total of six successful landings. As of 2006, there has not been any further human spaceflight beyond [[low earth orbit]]. The later [[Skylab|Skylab program]] and the joint American-Soviet [[Apollo-Soyuz Test Project]] used equipment originally produced for Apollo, and are often considered to be part of the overall program. The name [[Apollo]], like earlier manned space-flight programs, was named after a god from [[classical civilization]]s, and comes from one of the Greek gods.
84253
84254 ==Background==
84255
84256 The Apollo Program was originally conceived late in the [[Dwight Eisenhower|Eisenhower]] administration as a follow-on to the [[Mercury program]], doing advanced manned earth-orbital missions. In fact, it became the third program, following [[Gemini program|Gemini]]. The Apollo Program was dramatically reoriented to an aggressive lunar landing goal by President [[John F. Kennedy|Kennedy]] with his announcement at a special joint session of Congress on [[May 25]], [[1961]]:
84257
84258 :&quot;...I believe that this nation should commit itself to achieving the goal, before this decade is out, of landing a man on the Moon and returning him safely to the Earth. No single space project in this period will be more impressive to mankind, or more important in the long-range exploration of space; and none will be so difficult or expensive to accomplish...&quot; (Excerpt from &quot;Special Message to the Congress on Urgent National Needs&quot;.[http://www.jfklibrary.org/j052561.htm])
84259
84260 ==Choosing a mission mode==
84261 Having settled upon the Moon as a target, the Apollo mission planners were faced with the challenge of designing a set of flights that would meet Kennedy's stated goal while minimizing risk to human life, cost and demands on technology and astronaut skill.
84262
84263 Three possible plans were considered.
84264
84265 [[Image:Apollo Direct Ascent.png|thumb|left|225px|Apollo configuration for &lt;br /&gt;Direct Ascent and&lt;br /&gt; Earth Orbit Rendezvous - 1961 (NASA)]]
84266
84267 * '''Direct ascent:''' This plan was to boost a spaceship directly to the moon. The entire spacecraft would land on and return from the moon. This would have required a [[Nova rocket]] far more powerful than any in existence at the time.
84268
84269 * '''Earth orbit rendezvous:''' This plan, known as Earth orbit rendezvous (EOR), would have required the launch of two [[Saturn V]] rockets, one containing the space ship and one containing fuel. The spaceship would have docked in earth orbit and be fueled with enough fuel to make it to the moon and back. Again, the entire spacecraft would have landed on the moon.
84270
84271 * '''Lunar Surface Rendezvous:''' This would have required two spacecraft to be launched - the first one being an automated vehicle carrying propellants would land on the Moon, to be followed some time later by the 'manned' vehicle. Propellant would be transferred from the automated vehicle to the 'manned' vehicle before the 'manned' vehicle could return to Earth.
84272
84273 * '''Lunar orbit rendezvous:''' This plan, which was adopted, is credited to [[John Houbolt]] and used the technique of 'Lunar Orbit Rendezvous' (LOR). The spacecraft was modular, composed of a '[[Apollo Command/Service Module|Command/Service Module]]' (CSM) and a '[[Apollo Lunar Module|Lunar Module]]' (LM; originally Lunar Excursion Module {LEM}). The CSM contained the life support systems for the three man crew's five day round trip to the moon and the [[heat shield]] for their reentry to Earth's [[earth's atmosphere|atmosphere]]. The LM would separate from the CSM in lunar orbit and carry two astronauts for the descent to the lunar surface, then back up to the CSM.
84274
84275 In contrast with the other plans, the LOR plan required only a small part of the spacecraft to land on the moon, thereby minimizing the mass to be launched from the moon's surface for the return trip. The mass to be launched was further minimized by leaving part of the LM (that with the descent engine) behind, on the moon.
84276
84277 {| border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;right&quot; width=&quot;300&quot; style=&quot;margin-left:0.5em;&quot;
84278 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|'''Grumman Apollo LM'''
84279 |-
84280 |colspan=&quot;3&quot; align=&quot;center&quot;| [[Image:Apollo 16 LM.jpg|300px|Apollo LM on lunar surface.]] &lt;br/&gt;Apollo LM on lunar surface.
84281 |-
84282 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Description
84283 |-
84284 |width=&quot;75&quot; colspan=&quot;1&quot; |'''Role:'''||width=&quot;200&quot; colspan=&quot;2&quot;| Lunar landing
84285 |-
84286 |width=&quot;75&quot; colspan=&quot;1&quot; |'''Crew: '''||width=&quot;250&quot; colspan=&quot;2&quot;| 2; CDR, LM pilot
84287 |-
84288 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Dimensions
84289 |-
84290 |'''Height:'''|| width=&quot;125&quot;|20.9 ft || width=&quot;125&quot;|6.37 m
84291 |-
84292 |'''Diameter:'''|| 14 ft || 4.27 m
84293 |-
84294 |'''Landing gear span:'''|| 29.75 ft || 9.07 m
84295 |-
84296 |'''Volume:'''|| 235 ft&lt;sup&gt;3&lt;/sup&gt; || 6.65 m&lt;sup&gt;3&lt;/sup&gt;
84297 |-
84298 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Weights
84299 |-
84300 |'''Ascent module:'''|| 10,024 lb || 4,547 kg
84301 |-
84302 |'''Descent module:''' || 22,375 lb || 10,149 kg
84303 |-
84304 |'''Total:''' || 32,399 lb || 14,696 kg
84305 |-
84306 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Rocket engines
84307 |-
84308 |'''LM RCS''' (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/UDMH) x 16:|| 100 lbf ea || 441 N
84309 |-
84310 |'''Ascent propulsion system'''&lt;br /&gt;(N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/[[Aerozine 50]]) x 1:|| 3,500 lbf ea || 15.57 kN
84311 |-
84312 |'''Descent propulsion system'''&lt;br /&gt; (N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;/[[Aerozine 50]]) x 1:|| 9,982 lbf ea || 44.4 kN
84313 |-
84314 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Performance
84315 |-
84316 |''' Endurance:'''|| 3 days || 72 hours
84317 |-
84318 |''' Apogee:'''|| 100 miles || 160 km
84319 |-
84320 |''' Perigee:'''|| surface || surface
84321 |-
84322 |''' Spacecraft delta v:'''|| 15,387 ft/s &lt;br&gt; (10,491 mi/h) || 4,690 m/s &lt;br&gt; (16,884 km/h)
84323 |-
84324 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|''' Apollo LM diagram'''
84325 |-
84326 |colspan=&quot;3&quot; align=&quot;center&quot;| [[image:LEM-linedrawing.png|300px|Apollo LM diagram (NASA)]] &lt;br/&gt;Apollo LM diagram (NASA)
84327 |-
84328 !colspan=&quot;3&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;skyblue&quot;|Grumman Apollo LM
84329 |-
84330 |}
84331
84332 The [[Lunar Module]] itself was composed of a descent stage and an ascent stage, the former serving as a launch platform for the latter when the lunar exploration party blasted off for lunar orbit where they would dock with the CSM prior to returning to Earth. The plan had the advantage that since the LM was to be eventually discarded, it could be made very light, so the moon mission could be launched with a single Saturn V rocket. However, at the time that LOR was decided, some mission planners were uneasy at the large numbers of dockings and undockings called for by the plan.
84333
84334 To learn lunar landing techniques, astronauts practiced in the Lunar Landing Research Vehicle ([[LLRV]]), a flying vehicle that simulated (by means of a special, additional jet engine) the reduced gravity that the Lunar Module would actually fly in.
84335
84336 ==Flights==
84337
84338 The Apollo program included eleven manned flights, designated ''[[Apollo 7]]'' through ''[[Apollo 17]]'', all launched from the [[Kennedy Space Center]], [[Florida]]. ''[[Apollo 4]]'' through ''[[Apollo 6]]'' were unmanned test flights (officially there was no ''Apollo 2'' or ''Apollo 3''). The ''[[Apollo 1]]'' designation was retroactively applied to the originally planned first manned flight which ended in a disastrous fire during a launch pad test that killed three astronauts, [[Virgil Grissom|Virgil &quot;Gus&quot; Grissom]], [[Edward Higgins White|Edward White]], and [[Roger Bruce Chaffee|Roger B. Chaffee]], in January 1967. The first of the manned flights employed the [[Saturn IB]] launch vehicle; the remaining flights all used the more powerful [[Saturn V]]. Two of the flights (''[[Apollo 7]]'' and ''[[Apollo 9]]'') were Earth orbital missions, two of the flights (''[[Apollo 8]]'' and ''[[Apollo 10]]'') were lunar orbital missions, and the remaining 7 flights were lunar landing missions (although one, ''[[Apollo 13]]'', failed to land).
84339
84340 ''[[Apollo 7]]'' tested the Apollo command and service modules (CSM) in Earth orbit. ''[[Apollo 8]]'' tested the CSM in lunar orbit. ''[[Apollo 9]]'' tested the [[lunar module]] (LM) in earth orbit. ''[[Apollo 10]]'' tested the LM in lunar orbit. ''[[Apollo 11]]'' achieved the first human lunar landing. ''[[Apollo 12]]'' achieved the first lunar landing at a precise location. ''[[Apollo 13]]'' failed to achieve a lunar landing, but succeeded in returning the crew safely to earth following a potentially disastrous in-flight explosion. ''[[Apollo 14]]'' resumed the lunar exploration program. ''[[Apollo 15]]'' introduced a new level of lunar exploration capability, with a long-stay-time LM and a lunar roving vehicle. ''[[Apollo 16]]'' was the first manned landing in the lunar highlands. ''[[Apollo 17]]'', the final mission, was the first to include a scientist-astronaut, and the program's first manned night launch.
84341
84342 ==Apollo Applications Program==
84343
84344 In the speech which initiated Apollo, Kennedy declared that no other program would have as great a long-range effect on America's ambitions in [[outer space]]. Following the success of Project Apollo, both NASA and its major contractors investigated several post-lunar applications for the Apollo hardware. The &quot;Apollo Extension Series&quot;, later called the &quot;[[Apollo Applications Program]]&quot;, proposed at least ten flights. Many of these would use the space that the [[lunar module]] took up in the Saturn rocket to carry scientific equipment.
84345
84346 One plan involved using the [[Saturn IB]] to take the [[Apollo Command/Service Module|Command/Service Module]] (CSM) to a variety of low-earth orbits for missions lasting up to 45 days. Some missions would involve the docking of two CSMs, and transfer of supplies. The [[Saturn V]] would be necessary to take it to [[polar orbit]], or [[sun-synchronous orbit]] (neither of which has yet been achieved by any manned spacecraft), and even to the [[geosynchronous]] orbit of [[Syncom 3]], a communications satellite not quite in [[geostationary]] orbit. This was the first functioning [[communications satellite]] at that now-common great distance from the Earth, and it was small enough to be carried through the hatch and taken back to Earth for study as to the effects of radiation on its electronic components in that environment over a period of years. A return to the moon was also planned, this time to orbit for a longer time to map the surface with high-precision equipment. This mission would not include a landing.
84347
84348 Of all the plans only two were implemented; the [[Skylab]] space station (May 1973 – February 1974), and the [[Apollo-Soyuz Test Project]] (July 1975). [[Skylab]]'s fuselage was constructed from the second stage of a [[Saturn IB]], and the station was equipped with the [[Apollo Telescope Mount]], itself based on a [[lunar module]]. The station's three crews were ferried into orbit atop [[Saturn IB]]s, riding in CSMs; the station itself had been launched with a modified [[Saturn V]]. Skylab's last crew departed the station on [[February 8]], [[1974]], whilst the station itself returned prematurely to Earth in 1979, by which time it had become the oldest operational Apollo component.
84349
84350 The Apollo-Soyuz Test Project involved a docking in Earth orbit between an un-named CSM and a Soviet [[Soyuz spacecraft]]. The mission lasted from [[July 15]] to [[July 24]], [[1975]]. Although the Soviet Union continued to operate the Soyuz and [[Salyut]] space vehicles, NASA's next manned mission would not be until [[STS-1]] on [[April 12]], [[1981]].
84351
84352 ==End of the program==
84353
84354 [[Image:ApolloCmd.JPG|thumbnail|left|Unflown command module CM-007 in a museum]]
84355
84356 Originally three additional lunar landing missions had been planned, as ''Apollo 18'' through ''Apollo 20''. In light of the drastically shrinking [[NASA]] budget and the decision not to produce a second batch of Saturn Vs, these missions were cancelled to make funds available for the development of the [[Space Shuttle]], and to make their Apollo spacecraft and Saturn V launch vehicles available to the [[Skylab]] program. Only one of the Saturn Vs was actually used; the others became museum exhibits.
84357
84358 Another excerpt from Kennedy's Special Message to Congress:
84359
84360 :&quot;I believe we should go to the moon. But I think every citizen of this country as well as the Members of the Congress should consider the matter carefully in making their judgment, to which we have given attention over many weeks and months, because it is a heavy burden, and there is no sense in agreeing or desiring that the United States take an affirmative position in outer space, unless we are prepared to do the work and bear the burdens to make it successful. If we are not, we should decide today and this year.
84361
84362 [[Image:LunarLander.JPG|thumbnail|left|Lunar lander LM2 at the [[National_Air_And_Space_Museum|National Air and Space Museum]] ]]
84363
84364 :&quot;This decision demands a major national commitment of scientific and technical manpower, material and facilities, and the possibility of their diversion from other important activities where they are already thinly spread. It means a degree of dedication, organization and discipline which have not always characterized our research and development efforts. It means we cannot afford undue work stoppages, inflated costs of material or talent, wasteful interagency rivalries, or a high turnover of key personnel.
84365
84366 :&quot;New objectives and new money cannot solve these problems. They could in fact, aggravate them further--unless every scientist, every engineer, every serviceman, every technician, contractor, and civil servant gives his personal pledge that this nation will move forward, with the full speed of freedom, in the exciting adventure of space.&quot; (Excerpt from &quot;Special Message to the Congress on Urgent National Needs&quot;)
84367
84368 ==Reasons for Apollo==
84369
84370 The Apollo program was at least partly motivated by psycho-political considerations, in response to persistent perceptions of American inferiority in space technology vis-a-vis the [[Soviet Union|Soviets]], in the context of the [[Cold War]] and the [[Space Race]]. In this respect it succeeded brilliantly. In fact, American superiority in manned spaceflight was achieved in the precursory [[Gemini program]], even before the first Apollo flight.
84371
84372 The Apollo program stimulated many areas of technology. The [[Apollo Guidance Computer|flight computer]] design used in both the lunar and command modules was, along with the [[LGM-30 Minuteman|Minuteman Missile System]], the driving force behind early research into [[integrated circuit]]s. The [[fuel cell]] developed for this program was the first practical fuel cell. Computer controlled machining ([[CNC]]) was pioneered in fabricating Apollo structural components.
84373
84374 Many [[astronaut]]s and [[astronaut|cosmonaut]]s have commented on the profound effects that seeing earth from space has had on them. One of the most important legacies of the Apollo program was the now-common, but not universal view of Earth as a fragile, small planet, captured in the photographs taken by the astronauts during the lunar missions. The most famous of these photographs, taken by the [[Apollo 17]] astronauts, is &quot;[[The Blue Marble]].&quot; These photographs have also motivated many people toward [[environmentalism]] and [[space colonization]].
84375
84376 == Miscellaneous information ==
84377
84378 *The cost of the entire Apollo program: [[United States dollar|USD]] $25.4 billion -1969 Dollars ($135-billion in 2005 Dollars). See [[NASA Budget]]. (Includes Mercury, Gemini, Ranger, Surveyor, Lunar Orbitar, Apollo programs.) Apollo spacecraft and Saturn rocket cost alone, was about $ 83-billion 2005 Dollars (Apollo spacecraft cost $ 28-billion (CS/M $ 17-billion; LM $ 11-billion), Saturn I, IB, V costs about $ 46-billion 2005 dollars).
84379 *Amount of [[Moon rocks|moon material]] brought back by the Apollo program: 381.7 [[kilogram|kg]] (841.5 lb). Most of the material is stored at the [[Lunar Receiving Laboratory]] in Houston.
84380
84381 ==Missions==
84382 [[Image:Moon map showing Apollo missions.PNG|thumb|Location of Apollo missions on the moon]]
84383 The Apollo program used four types of launch vehicles:
84384 *[[Little Joe II]] - unmanned suborbital [[launch escape system]] development.
84385 *[[Saturn I]] - unmanned suborbital and orbital hardware development.
84386 *[[Saturn IB]] - unmanned and manned earth orbit development and operational missions.
84387 *[[Saturn V]] - unmanned and manned earth orbit and lunar missions.
84388
84389 Something to note with Apollo flights is that Marshall Space Flight Center, which designed the Saturn rockets, referred to the flights as Saturn-Apollo (SA), while Kennedy Space Center referred to the flights as Apollo-Saturn (AS). This is why the unmanned Saturn 1 flights are referred to as SA and the unmanned Saturn 1B are referred to as AS.
84390
84391 Dates given below are dates of launch.
84392
84393 ===Unmanned [[Saturn I]]===
84394 *[[SA-1 (Apollo)|SA-1]] - [[October 27]], [[1961]]. Test of the S-1 Rocket
84395 *[[SA-2 (Apollo)|SA-2]] - [[April 25]], [[1962]]. Test of the S-1 Rocket and carried 109 mÂŗ of water into the upper atmosphere to investigate effects on radio transmission and changes in local weather conditions.
84396 *[[SA-3 (Apollo)|SA-3]] - [[November 16]], [[1962]]. Same as SA-2
84397 *[[SA-4 (Apollo)|SA-4]] - [[March 28]], [[1963]]. Test effects of premature engine shutdown
84398 *[[SA-5 (Apollo)|SA-5]] - [[January 29]], [[1964]]. First flight of live second stage
84399 *[[A-101]] - [[May 28]], [[1964]]. Tested the structural integrity of a boilerplate Apollo Command and Service Module
84400 *[[A-102]] - [[September 18]], [[1964]]. Carried the first programmable computer on the Saturn I vehicle; last test flight
84401 *[[A-103]] - [[February 16]], [[1965]]. Carried Pegasus A micrometeorite satellite
84402 *[[A-104]] - [[May 25]], [[1965]]. Carried Pegasus B micrometeorite satellite
84403 *[[A-105]] - [[July 30]], [[1965]]. Carried Pegasus C micrometeorite satellite
84404
84405 ===Unmanned pad abort tests===
84406 [[Image:Pad Abort Launch.jpg|right|thumb|100px|Pad Abort Test (NASA)]]
84407
84408 *[[Pad Abort Test-1 (Apollo)|Pad Abort Test-1]] - [[November 7]], [[1963]]. Launch Escape System (LES) abort test from launch pad.
84409 *[[Pad Abort Test-2 (Apollo)|Pad Abort Test-2]] - [[June 29]], [[1965]]. LES pad abort test of near Block-I CM.
84410
84411 ===Unmanned [[Little Joe II]]===
84412 *[[QTV]] - [[August 28]], [[1963]]. Little Joe II qualification test.
84413 *[[A-001]] - [[May 13]], [[1964]]. LES transonic abort test.
84414 *[[A-002]] - [[December 8]], [[1964]]. LES maximum altitude, Max-Q abort test.
84415 *[[A-003]] - [[May 19]], [[1965]]. LES canard maximum altitude abort test.
84416 *[[A-004]] - [[January 20]], [[1966]]. LES test of maximum weight, tumbling Block-I CM.
84417
84418 ===Unmanned [[Apollo spacecraft| Apollo]]-[[Saturn IB]] and [[Saturn V]]===
84419 *[[AS-201]] - [[February 26]], [[1966]]. First test flight of [[Saturn IB]] rocket
84420 *[[AS-203]] - [[July 5]], [[1966]]. Investigated effects of weightlessness on fuel tanks of [[S-IVB]]
84421 *[[AS-202]] - [[August 25]], [[1966]]. Sub-orbital test flight of [[Apollo spacecraft| Command and Service Module]]
84422 *''[[Apollo 4]]'' - [[November 9]], [[1967]]. First test of the Saturn V booster
84423 *''[[Apollo 5]]'' - [[January 22]], [[1968]]. Test of the Saturn IB booster and [[Lunar Module]]
84424 *''[[Apollo 6]]'' - [[April 4]], [[1968]]. Test of the Saturn V booster
84425
84426 ===Manned===
84427 *''[[Apollo 1]]'' - Crew died in spacecraft fire atop launch vehicle during pre-launch tests on [[January 27]], [[1967]].
84428 *''[[Apollo 7]]'' - [[October 11]], [[1968]]. First manned Apollo flight, first manned flight of the Saturn IB.
84429 *''[[Apollo 8]]'' - [[December 21]], [[1968]]. First manned flight around the Moon, first manned flight of the Saturn V.
84430 *''[[Apollo 9]]'' - [[March 3]], [[1969]]. First manned flight of the Lunar Module.
84431 *''[[Apollo 10]]'' - [[May 18]], [[1969]]. First manned flight of the Lunar Module around the Moon.
84432 *''[[Apollo 11]]'' - [[July 16]], [[1969]]. First manned landing on the Moon, [[July 20]].
84433 *''[[Apollo 12]]'' - [[November 14]], [[1969]]. First precise manned landing on the Moon.
84434 *''[[Apollo 13]]'' - [[April 11]], [[1970]]. Oxygen tank explodes en route, landing is cancelled, first (and, as of [[2006]], only) manned non-orbital lunar flight.
84435 *''[[Apollo 14]]'' - [[January 31]], [[1971]]. [[Alan Shepard]], the sole astronaut of the [[Freedom 7|Mercury MR-3 mission]], walks on the Moon.
84436 *''[[Apollo 15]]'' - [[July 26]], [[1971]]. First mission with the [[Lunar Rover]] vehicle.
84437 *''[[Apollo 16]]'' - [[April 16]], [[1972]]. First landing in the lunar highlands.
84438 *''[[Apollo 17]]'' - [[December 7]], [[1972]]. Final Apollo lunar mission, first night launch, only mission with a professional geologist.
84439
84440 The original pre-lunar landing program was more conservative but, as the 'all-up' test flights for the Saturn V proved successful, some missions were deleted. The revised schedule published in October 1967 had the first manned Apollo CSM earth orbit mission (''Apollo 7'') followed by an Earth Orbit Rendezvous of the CSM and LM launched on two Saturn 1Bs (''Apollo 8'') followed by a Saturn V launched CSM on a Large Earth Orbit Mission (''Apollo 9'') followed by the Saturn V launched dress rehearsal in Lunar Orbit with ''Apollo 10''. By the summer of 1968 it became clear to program managers that a fully functional LM would not be available for the ''Apollo 8'' mission. Rather than perform a simple earth orbiting mission, they chose to send ''Apollo 8'' around the moon during Christmas. The original idea for this switch was the brainchild of George Low. Although it has often been claimed that this change was made as a direct response to Soviet attempts to fly a piloted [[Zond program|Zond]] spacecraft around the moon, there is no evidence that this was actually the case. NASA officials were aware of the Soviet Zond flights, but the timing of the Zond missions does not correspond well with the extensive written record from NASA about the ''Apollo 8'' decision. It is relatively certain that the ''Apollo 8'' decision was primarily based upon the LM schedule, rather than fear of the Soviets beating the Americans to the moon.
84441
84442 ===Cancelled missions===
84443 {{main|Cancelled Apollo missions}}
84444
84445 *''Apollo 18''
84446 *''Apollo 19''
84447 *''Apollo 20''
84448
84449 == Current locations of Apollo Command Modules ==
84450
84451 '''Apollo 6''' Command Module - [[Fernbank Science Center]], [[Atlanta, Georgia]]
84452
84453 '''Apollo 7''' Command Module - [[Frontiers of Flight Museum]], [[Dallas, Texas]]
84454
84455 '''Apollo 8''' Command Module - [[Museum of Science and Industry (Chicago)]], [[Chicago, Illinois]]
84456
84457 '''Apollo 9''' Command Module &quot;Gumdrop&quot; - [[San Diego Aerospace Museum]], [[San Diego, California]]
84458
84459 '''Apollo 9''' Lunar Module &quot;Spider&quot; - Burned up in Earth's atmosphere
84460
84461 '''Apollo 10''' Command Module &quot;Charlie Brown&quot; - [[Science Museum]], [[London, England]]
84462
84463 '''Apollo 10''' Lunar Module &quot;Snoopy&quot; - In [[heliocentric orbit]]
84464
84465 '''Apollo 11''' Command Module &quot;Columbia&quot; - [[National Air and Space Museum]], [[Washington, D.C.]]
84466
84467 '''Apollo 11''' Lunar Module &quot;Eagle&quot; - Jettisoned from Columbia on 7/21/69 at 23:41 UT Impact site unknown
84468
84469 '''Apollo 12''' Command Module &quot;Yankee Clipper&quot; - [[Virginia Air and Space Center]], [[Hampton, Virginia]]
84470
84471 '''Apollo 12''' Lunar Module &quot;Intrepid&quot; - Impacted Moon 11/20/69 at 22:17:17.7 UT 3.94 S, 21.20 W
84472
84473 '''Apollo 13''' Command Module &quot;Odyssey&quot; - [[Kansas Cosmosphere and Space Center]], [[Hutchinson, Kansas]]
84474
84475 '''Apollo 13''' Lunar Module &quot;Aquarius&quot; - Burned up in Earth's atmosphere 4/17/70
84476
84477 '''Apollo 14''' Command Module &quot;Kitty Hawk&quot; - [[Astronaut Hall of Fame]], [[Titusville, Florida]]
84478
84479 '''Apollo 14''' Lunar Module &quot;Antares&quot; - Impacted Moon 2/7/71 at 00:45:25.7 UT 3.42 S, 19.67 W
84480
84481 '''Apollo 15''' Command Module &quot;Endeavor&quot; - [[USAF Museum]], [[Wright-Patterson Air Force Base]], [[Dayton, Ohio]]
84482
84483 '''Apollo 15''' Lunar Module &quot;Falcon&quot; - Impacted Moon 8/3/71 at 03:03:37.0 UT 26.36 N, 0.25 E
84484
84485 '''Apollo 16''' Command Module &quot;Casper&quot; - [[U.S. Space &amp; Rocket Center]], [[Huntsville, Alabama]]
84486
84487 '''Apollo 16''' Lunar Module &quot;Orion&quot; - Released 4/24/72, loss of attitude control made targeted impact impossible, impact site unknown
84488
84489 '''Apollo 17''' Command Module &quot;America&quot; - [[NASA Johnson Space Center]], [[Houston, Texas]]
84490
84491 '''Apollo 17''' Lunar Module &quot;Challenger&quot; - Impacted Moon 12/15/72 at 06:50:20.8 UT 19.96 N, 30.50 E
84492
84493 '''Apollo-Soyuz''' Command Module - [[John F. Kennedy Space Center]], [[Cape Canaveral, Florida]]
84494
84495 '''Apollo-Soyuz''' Test Command Module - [[Museum of Flight]], [[Seattle, Washington]]
84496
84497 '''Skylab 2''' / Crew 1 Command Module - [[National Museum of Naval Aviation]], [[Pensacola, Florida]]
84498
84499 '''Skylab 3''' / Crew 2 Command Module - [[Glenn Research Center|NASA John H. Glenn Research Center at Lewis Field]], [[Cleveland, Ohio]]
84500
84501 '''Skylab 4''' / Crew 3 Command Module - [[National Air and Space Museum]], [[Washington, D.C.]]
84502
84503 ===Later missions using left over Apollo hardware===
84504 *[[Skylab]] - [[May 14]], [[1973]].
84505 **''[[Skylab 2]]'' - [[May 25]], [[1973]].
84506 **''[[Skylab 3]]'' - [[July 28]], [[1973]].
84507 **''[[Skylab 4]]'' - [[November 16]], [[1973]].
84508 *[[Apollo-Soyuz]] - [[July 15]], [[1975]].
84509
84510 ===Apollo Launch Complex utilization===
84511
84512 *'''Launch Complex 34''' - [[SA-1 (Apollo)|SA-1]], [[SA-2 (Apollo)|SA-2]], [[SA-3 (Apollo)|SA-3]], [[SA-4 (Apollo)|SA-4]], [[AS-201]], [[AS-202]], ''[[Apollo 1|AS-204 (Apollo 1)]]'', [[Apollo 7|AS-205 (Apollo 7)]]
84513 *'''Launch Complex 37A''' - no launches
84514 *'''Launch Complex 37B''' - [[SA-5 (Apollo)|SA-5]], [[A-101]], [[A-102]], [[A-103]], [[A-104]], [[A-105]], [[AS-203]], [[Apollo 5|AS-204 (''Apollo 5'')]]
84515 *'''Launch Complex 39A''' - [[Apollo 4|AS-501 (''Apollo 4'')]], [[Apollo 6|AS-502 (''Apollo 6'')]], [[Apollo 8|AS-503 (''Apollo 8'')]], [[Apollo 9|AS-504 (''Apollo 9'')]], [[Apollo 11|AS-506 (''Apollo 11'')]], [[Apollo 12|AS-507 (''Apollo 12'')]], [[Apollo 13|AS-508 (''Apollo 13'')]], [[Apollo 14|AS-509 (''Apollo 14'')]], [[Apollo 15|AS-510 (''Apollo 15'')]], [[Apollo 16|AS-511 (''Apollo 16'')]], [[Apollo 17|AS-512 (''Apollo 17'')]], [[Skylab|AS-513 (Skylab 1)]]
84516 *'''Launch Complex 39B''' - [[Apollo 10|AS-505 (''Apollo 10'')]], [[Skylab 2|AS-206 (Skylab 2)]], [[Skylab 3|AS-207 (Skylab 3)]], [[Skylab 4|AS-208 (Skylab 4)]], [[Apollo-Soyuz|AS-210 (ASTP)]].
84517
84518 ==See also==
84519 *[[List of lunar astronauts]]
84520 *[[List of artificial objects on the Moon]]
84521 *[[Extra-vehicular activity]] - List and duration of moonwalks
84522 *[[Apollo moon landing hoax accusations]]
84523 *[[Splashdown]]
84524 *[[Ranger program]]
84525 *[[Soviet moonshot]]
84526 *[[Surveyor program]]
84527 *[[Lunar Orbiter program]]
84528 *[[Crew Exploration Vehicle]]
84529 *[[Space race]]
84530 *[[Launch complex 39]]
84531
84532 ==References==
84533 * [[Gene Kranz|Kranz, Gene]], ''Failure is Not an Option''. Factual, from the standpoint of a chief flight controller during the [[Project Mercury|Mercury]], [[Project Gemini|Gemini]], and Apollo space programs. ISBN 0743200799
84534 * Chaikin, Andrew. ''A Man on the Moon''. ISBN 0140272011. Chaikin has interviewed all the surviving [[astronaut]]s, plus many others who worked with the program.
84535 * [[Charles Shaar Murray|Murray, Charles]]; Cox, Catherine B. ''Apollo: The Race to the Moon''. ISBN 0671611011. This is an excellent account of what it took to build and fly Apollo.
84536 * Cooper, Henry S. F. Jr. ''Thirteen: The Flight That Failed''. ISBN 0801850975. Although this book focuses on Apollo 13, it is extremely well-researched and provides a wealth of background information on Apollo technology and procedures.
84537 * Wilhelms, Don E. ''To a Rocky Moon''. ISBN 0816510652. Tells the history of Lunar exploration from a geologist's point of view.
84538 * Pellegrino, Charles R.; Stoff, Joshua. ''Chariots for Apollo: The Untold Story Behind the Race to the Moon''. ISBN 0380802619. Tells [[Grumman Aerospace Corporation|Grumman]]'s story of building the Lunar Modules.
84539 * [[Jim Lovell|Lovell, Jim]]; Kluger, Jeffrey. ''Lost Moon: The perilous voyage of Apollo 13'' aka ''Apollo 13: Lost Moon''. ISBN 0618056653. Details the flight of Apollo 13.
84540 * [[Michael Collins (astronaut)|Collins, Michael ]]. ''Carrying the Fire; an Astronaut's journeys''. Astronaut Mike Collins autobiography of his experiences as an astronaut, including his flight aboard Apollo 11, the first landing on the Moon
84541 * [[Deke Slayton|Slayton, Donald K.]]; Cassutt, Michael. ''Deke! An Autobiograpy''. ISBN 031285918X. This is an excellent account of Deke Slayton's life as an astronaut and of his work as chief of the astronaut office, including selection of the crews which flew Apollo to the Moon.
84542 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19790020032_1979020032.pdf Chariots for Apollo: A history of Manned Lunar Spacecraft - NASA report (PDF format)]
84543 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19690022643_1969022643.pdf The Apollo spacecraft. Volume 1 - A chronology: From origin to [[7 November]]. 1962 - (PDF format)]
84544 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19740004394_1974004394.pdf The Apollo spacecraft: Volume 2 - A chronology: [[8 November]] [[1962]] - [[30 September]] [[1964]] - (PDF format)]
84545 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19760014180_1976014180.pdf The Apollo spacecraft: Volume 3 - A chronology: [[1 October]] [[1964]] - [[20 January]] [[1966]] - (PDF format)]
84546 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19800011953_1980011953.pdf The Apollo spacecraft: Volume 4 - A chronology: [[21 January]] [[1966]] - [[13 July]] [[1974]] - (PDF format)]
84547 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19750013242_1975013242.pdf Apollo program summary report: Synopsis of the Apollo program - NASA report (PDF format)]
84548
84549 ==External links==
84550
84551 * [http://moonpans.com/missions.htm A Collection of Apollo Lunar Surface Panoramas]
84552 * [http://spaceflight.nasa.gov/history/apollo/index.html Official Apollo program website]
84553 * [http://www.hq.nasa.gov/office/pao/History/SP-4205/contents.html Chariots for Apollo: A History of Manned Lunar Spacecraft By Courtney G Brooks, James M. Grimwood, Loyd S. Swenson]
84554 * [http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm NASA SP-4009 The Apollo Spacecraft: A Chronology]
84555 * [http://history.nasa.gov/SP-4029/SP-4029.htm SP-4029 Apollo by the Numbers: A Statistical Reference by Richard W. Orloff]
84556 * [http://history.nasa.gov/apollo.html The Apollo Program Page at the NASA History Division Website]
84557 * [http://www.hq.nasa.gov/alsj/frame.html The Apollo Lunar Surface Journal]
84558 * [http://science.ksc.nasa.gov/history/apollo/apollo.html Project Apollo (Kennedy Space Center)]
84559 * [http://history.nasa.gov/diagrams/apollo.html Project Apollo Drawings and Technical Diagrams]
84560 * [http://www.lunarrock.com/Inventory.asp Lunar Rock Inventory]
84561 * [http://www.Apolloarchive.com/ The Project Apollo Archive]
84562 * [http://www.globalcuts.com/NASA/stock_footage_trailer_movie.htm Spirit of Apollo] Apollo 11 Memorial Video
84563 * [http://www.nasm.si.edu/collections/imagery/Apollo/Apollo.htm The Apollo Program (National Air and Space Museum)]
84564 * [http://sourceforge.net/projects/nassp/ Project Apollo for Orbiter spaceflight simulator]
84565 * [http://moon.google.com/ Google Moon: interactive map of the Moon and Apollo landing sites]
84566
84567 {{US manned space programs | before=[[Project Gemini|Gemini]] | after=[[Skylab]]}}
84568
84569 [[Category:Human spaceflight programmes]]
84570 [[Category:Apollo program| ]]
84571 {{Link FA|pt}}
84572
84573 {{Link FA|pt}}
84574
84575 [[ca:Programa Apollo]]
84576 [[cs:Program Apollo]]
84577 [[da:Apollo-programmet]]
84578 [[de:Apollo-Projekt]]
84579 [[es:Programa Apollo]]
84580 [[eo:Projekto Apollo]]
84581 [[fr:Programme Apollo]]
84582 [[gl:MisiÃŗn Apolo]]
84583 [[ko:ė•„í´ëĄœ ęŗ„획]]
84584 [[it:Progetto Apollo]]
84585 [[he:×Ēוכני×Ē אפולו]]
84586 [[hu:Apollo-program]]
84587 [[nl:Apolloprogramma]]
84588 [[nds:Apollo-Programm]]
84589 [[ja:ã‚ĸãƒãƒ­č¨ˆį”ģ]]
84590 [[no:Apolloprogrammet]]
84591 [[pl:Program Apollo]]
84592 [[pt:Projeto Apollo]]
84593 [[sk:Program Apollo]]
84594 [[fi:Apollo (avaruusohjelma)]]
84595 [[sv:Apolloprogrammet]]
84596 [[ta:āŽ…āŽĒā¯āŽĒāŽ˛ā¯āŽ˛ā¯‹ āŽ¤āŽŋāŽŸā¯āŽŸāŽŽā¯]]
84597 [[zh:é˜ŋæŗĸįŊ—čŽĄåˆ’]]</text>
84598 </revision>
84599 </page>
84600 <page>
84601 <title>Alices Adventures in Wonderland</title>
84602 <id>1462</id>
84603 <revision>
84604 <id>15899943</id>
84605 <timestamp>2002-05-21T21:53:42Z</timestamp>
84606 <contributor>
84607 <username>Maveric149</username>
84608 <id>62</id>
84609 </contributor>
84610 <comment>#redirect [[Alice's Adventures in Wonderland]]</comment>
84611 <text xml:space="preserve">#redirect [[Alice's Adventures in Wonderland]]</text>
84612 </revision>
84613 </page>
84614 <page>
84615 <title>AutoLisp</title>
84616 <id>1465</id>
84617 <revision>
84618 <id>15899945</id>
84619 <timestamp>2004-08-26T08:11:59Z</timestamp>
84620 <contributor>
84621 <username>Stan Shebs</username>
84622 <id>7777</id>
84623 </contributor>
84624 <comment>#REDIRECT [[AutoLISP]]</comment>
84625 <text xml:space="preserve">#REDIRECT [[AutoLISP]]</text>
84626 </revision>
84627 </page>
84628 <page>
84629 <title>Assault</title>
84630 <id>1466</id>
84631 <revision>
84632 <id>39685782</id>
84633 <timestamp>2006-02-15T03:54:42Z</timestamp>
84634 <contributor>
84635 <username>BDAbramson</username>
84636 <id>196446</id>
84637 </contributor>
84638 <minor />
84639 <comment>[[WP:AWB|AWB assisted]] clean up</comment>
84640 <text xml:space="preserve">{{CrimLaw}}
84641 {{otheruses}}
84642 '''Assault''' is a [[crime]] of [[violence]] against another [[human|person]]. In some [[jurisdiction]]s, assault is used to refer to the actual violence, while in other jurisdictions (e.g. some in the [[United States]], [[England and Wales]]), assault refers only to the threat of violence, while the actual violence is [[battery (crime)|battery]]. '''Simple assaults''' do not involve deadly [[weapon]]s; '''[[aggravated assault]]s''' often do.
84643
84644 Assault is often defined to include not only violence, but any physical contact with another person without their consent. When assault is defined like this, exceptions are provided to cover such things as normal social behavior (for example, patting someone on the back).
84645
84646 [[English law]] makes distinctions based on the degree of injury, between:
84647 * [[common assault]] (which can be even the most minor assault)
84648 * assault with [[actual bodily harm]] (ABH)
84649 * assault with [[grievous bodily harm]] (GBH)
84650
84651 ==American Jurisprudence==
84652 American '''[[common law]]''' has traditionally defined assault as an attempt to commit a [[battery (crime)|battery]].
84653
84654 Assault is typically treated as a [[misdemeanor]] and not as a [[felony]]. The more serious crime of [[aggravated assault]] is treated as a felony.
84655
84656 Four elements were required at common law: 1) The apparent, present ability to carry out; 2) an unlawful attempt; 3) to commit a violent injury; 4) upon another. As the criminal law evolved, element 1 was weakened in most jurisdictions so that a reasonable fear of bodily injury would suffice. These four elements were eventually codified in most States.
84657
84658 Modern American statutes define assault as:
84659 1) an attempt to cause or purposely, knowingly, or recklessly causing bodily injury to another; or,
84660 2) negligently causing bodily injury to another with a deadly weapon.
84661
84662 The requirement is that a person be the subject of the attack or threatened attack. The principle underlying the [[Unborn Victims of Violence Act]] 2004 applies only to offenses over which the [[United States]] government has jurisdiction, namely crimes committed on [[Federal Government of the United States|Federal]] properties, against certain [[Federal Government of the United States|Federal]] officials and employees, and by members of the military, and treats the [[fetus]] as a separate person for the purposes of all levels of assault including [[murder]] and [[attempted murder]]:
84663
84664 &quot;Sec. 1841. Protection of unborn children
84665 :(a)(1) Whoever engages in conduct that violates any of the provisions of law listed in subsection (b) and thereby causes the death of, or bodily injury (as defined in section 1365) to, a child, who is in utero at the time the conduct takes place, is guilty of a separate offense under this section.
84666 :(2)(A) Except as otherwise provided in this paragraph, the punishment for that separate offense is the same as the punishment provided under Federal law for that conduct had that injury or death occurred to the unborn child's mother.
84667 :2(B) An offense under this section does not require proof that--
84668 ::(i) the person engaging in the conduct had knowledge or should have had knowledge that the victim of the underlying offense was pregnant; or
84669 ::(ii) the defendant intended to cause the death of, or bodily injury to, the unborn child.
84670 :2(C) If the person engaging in the conduct thereby intentionally kills or attempts to kill the unborn child, that person shall instead of being punished under subparagraph (A), be punished as provided under sections 1111, 1112, and 1113 of this title for intentionally killing or attempting to kill a human being.&quot;
84671
84672 Some States also define assault as an attempt to menace (or actual menacing) by placing another person in fear of imminent serious bodily injury.
84673
84674 States vary as to whether it is possible to commit an &quot;attempted assault&quot; since it can be considered a double [[inchoate]] offense.
84675
84676 In some States, [[consent (criminal)|consent]] is a complete defense to assault. In other jurisdictions, mutual consent is an incomplete defense, with the result that the [[misdemeanor]] is treated as a '''[[petty misdemeanor]]'''.
84677
84678 ===Example===
84679 Two men wave metal pipes threateningly at each other in an alley. They are ten feet away from each other. When one man advances, the other retreats, maintaining the distance between them. The police come and break up the disturbance. They charge each man with assault.
84680
84681 The men would probably not be found guilty in an American common law jurisdiction. Being ten feet away does not make it likely or apparent that he would have the present ability to carry out an unlawful act.
84682
84683 However, they would probably be found guilty in a modern American jurisdiction. Each actor is trying to cause bodily injury to another and the fear of bodily injury is reasonable.
84684
84685 Some possible examples of defenses, mitigating circumstances, or failures of proof are:
84686 *A defendant could argue that since he was drunk, he could not form the [[intention (criminal)|specific intent]] to commit assault. This defense would most likely fail since only involuntary [[intoxication defense|intoxication]] is accepted as a defense in most American jurisdictions.
84687 *The defendants could also argue that they were engaged in mutually consensual behavior.
84688
84689 ==General defenses to assaults==
84690 Although the range and precise application of defenses varies between jurisdictions, the folloiwng represents a list of the defenses that may apply to all levels of assault:
84691 ===Consent===
84692 [[consent (criminal)|Consent]] may a complete or partial defense to assault. In some jurisdictions, most notably [[England]], it is not a defense where the degree of injury is severe: see [http://www.lawteacher.net/Criminal/Non%20Fatal%20Assaults/Consent%20R%20v%20Brown.htm R v Brown (1993) 2 All ER 75]). This can have important consequences when dealing with issues such as consensual [[sadomasochism|sadomasochistic]] [[sexual activity]], the most notable case being the [[Operation Spanner]] case.
84693 ===Arrest and other official acts===
84694 [[Police officers]] and court officials have a general power to use force for the purpose of effecting an [[arrest]] or generally carrying out their official duties. Thus, a court officer taking possession of goods under a court order may use force if reasonably necessary, etc.
84695 ===Punishment===
84696 In some jurisdictions, [[caning]] and other forms of [[corporal punishment]] are a part of the [[culture]]. Self-evidently, if it is a state-administered [[punishment]], e.g. as in [[Singapore]], the officers who physically adminster the punishment have [[immunity]]. Some states also permit the use of less severe punishment for [[child]]ren in [[school]] and at home by [[parent]]s. In [[English law]], s58 Children Act 2004, limits the availability of the lawful correction defense to common assault under s39 Criminal Justice Act 1988.
84697 ===Self-defense===
84698 [[Self-defense (theory)|Self defense and defense of others]] may be defenses to liability. They usually require that the degree of force used was both reasonable and proportionate to the degree of force threatened.
84699 ===Prevention of crime===
84700 This may or may not involve self defense in that, using a reasonable degree of force to prevent another from committing a crime could involve preventing an assault, but it could be preventing a crime not involving the use of personal violence.
84701 ===[[Defense of property]]===
84702 Some states allow force to be used to prevent damage to valuable property either in its own right, or under one or both of the preceding classes of defense in that a threat or attempt to damage property might be considered a crime (in English law, under s5 [[Criminal Damage Act 1971]] it may be argued that the defendant has a ''lawful excuse'' to damaging property during the defense and a defense under s3 Criminal Law Act 1967) subject to the need to deter [[vigilante]]s and excessive self-help.
84703
84704 ==See also==
84705 * [[Affray]]
84706 * [[Assault (tort)]]
84707 * [[Gay-bashing]]
84708 * [[Hate crime]]
84709 * [[Domestic violence]]
84710 * [[Offences Against The Person Act 1861]]
84711 * [[Battery (crime)|Battery]]
84712 * [[Misdemeanor]]
84713 * [[Terrorism|Terroristic Threats]]
84714 * [[Mayhem (crime)|Mayhem]]
84715
84716 [[Category:Assault|*]]
84717 [[Category:Crimes]]
84718 [[Category:Violence]]
84719
84720 [[es:Asalto]]
84721 [[sv:Misshandel]]</text>
84722 </revision>
84723 </page>
84724 <page>
84725 <title>Australian Prime Ministers</title>
84726 <id>1476</id>
84727 <revision>
84728 <id>15899947</id>
84729 <timestamp>2002-02-25T15:51:15Z</timestamp>
84730 <contributor>
84731 <ip>Conversion script</ip>
84732 </contributor>
84733 <minor />
84734 <comment>Automated conversion</comment>
84735 <text xml:space="preserve">#REDIRECT [[Prime Minister of Australia]]
84736 </text>
84737 </revision>
84738 </page>
84739 <page>
84740 <title>Álfheim</title>
84741 <id>1478</id>
84742 <revision>
84743 <id>40099442</id>
84744 <timestamp>2006-02-18T03:09:17Z</timestamp>
84745 <contributor>
84746 <username>Mceder</username>
84747 <id>126127</id>
84748 </contributor>
84749 <minor />
84750 <comment>Bahusia -&gt; Bohuslän</comment>
84751 <text xml:space="preserve">:''Alfheim redirects here. For other uses, see [[Alfheim (disambiguation)]]''
84752 '''Álfheim''' (''[[Old Norse language|Old Norse]]'' '''Álfheimr''' 'Elf-home') is the abode of the ''Álfar'' '[[Elves]]' in [[Norse Mythology|Norse mythology]] and appears also in northern [[English ballads]] under the forms '''Elfhame''' and '''Elphame''', sometimes modernized as '''Elfland''' or '''Elfenland'''. It is also an ancient name for the modern Swedish province of [[Bohuslän]].
84753
84754 ==The Elven abode==
84755 ===In Old Norse texts===
84756 Álfheim as an abode of the Elves is mentioned only twice in [[Old Norse]] texts.
84757
84758 The [[eddic poem]] ''[[Grimnismal|GrímnismÃĄl]]'' describes twelve divine dwellings beginning in stanza&amp;nbsp;5 with:
84759 &lt;blockquote&gt;&lt;blockquote&gt;Ydalir call they &amp;nbsp; &amp;nbsp; the place where [[Ullr|Ull]]&lt;br/&gt;
84760 A hall for himself hath set;&lt;br/&gt;
84761 And Álfheim the gods &amp;nbsp; &amp;nbsp; to [[Freyr|Frey]] once gave&lt;br/&gt;
84762 As a tooth-gift in ancient times.&lt;/blockquote&gt;&lt;/blockquote&gt;
84763
84764 A [[tooth-gift]] was a gift given to an [[infant]] on the cutting of the first tooth.
84765
84766 [[Snorri Sturluson]] in the ''[[Gylfaginning]]'' relates as the first of a series of abodes in heaven:
84767 &lt;blockquote&gt;That which is called Álfheim is one, where dwell the peoples called [[Light Elves|Light-elves]] [''LjÃŗsÃĄlfar'']; but the [[Dark elf|Dark-elves]] [''dÃļkkÃĄlfar''] dwell down in the earth, and they are unlike in appearance, but by far more unlike in nature. The Light-elves are fairer to look upon than the sun, but the Dark-elves are blacker than pitch.
84768 &lt;/blockquote&gt;
84769 The account later, in speaking of a hall called [[Gimli|GimlÊ]] and the southernmost end of heaven that shall survive when heaven and earth have passed away, explains:
84770 &lt;blockquote&gt;It is said that another heaven is to the southward and upward of this one, and it is called [[Andlang]] [''Andlangr'' 'Endlong'] but the third heaven is yet above that, and it is called [[VídblÃĄin]] [''VídblÃĄinn'' 'Wide-blue'] and in that heaven we think this abode is. But we believe that none but Light-Elves inhabit these mansions now.&lt;/blockquote&gt;
84771 It is not indicated whether these heavens are identical to Álfheim or distinct. Some texts read VindblÃĄin (''VindblÃĄinn'' 'Wind-blue') instead of VídblÃĄin.
84772
84773 Modern commentators speculate (or sometimes state as fact) that Álfheim was one of the nine worlds (''heima'') mentioned in stanza&amp;nbsp;2 of the eddic poem ''[[VÃļluspÃĄ]]''.
84774
84775 ===In English text===
84776 In several [[Scots language|Scots]] and [[English language|English]] [[ballad]]s about the [[fairy|fairies]] and their lore, the realm of the those folk is called ''Elphame'' or ''Elfhame'', though at other times ''Elfland'' or '''Elfenland''. The fairy queen is often called the &quot;Queen of Elphame&quot; in ballads such as that of [[Thomas the Rhymer]]:
84777 &lt;blockquote&gt;&lt;blockquote&gt;'I'm not the Queen of Heaven, Thomas,&lt;br/&gt;
84778 That name does not belong to me;&lt;br/&gt;
84779 I am but the Queen of fair Elphame&lt;br/&gt;
84780 Come out to hunt in my follie.'&lt;/blockquote&gt;&lt;/blockquote&gt;
84781
84782 Elfhame, or Elfland, is portrayed in a variety of ways in these ballads and stories, most commonly as mystical and benevolent, but also at times as sinister and wicked. The mysteriousness of the land, and its otherworldly powers are a source of scepticism and distrust in many tales. Examples of journeys to the realm include &quot;Thomas the Rhymer&quot; and the fairy tale &quot;[[Childe Rowland]]&quot;, the latter being a particularly negative view of the land.
84783
84784 ===Used by J. R. R. Tolkien===
84785 The twentieth century fantasy writer [[J. R. R. Tolkien]] Anglicized the Old Norse name ''Álfheim'' as ''[[Elvenhome]]'' which is imagined in his tales as lying in a coastal region of the [[Undying Lands]] in the far west. The High King of the Elves in the west was [[IngwÃĢ]], an echo of the name [[Yngvi]] often found as a name for Frey, whose abode was in ''Álfheim'' according to the ''GrímnismÃĄl''.
84786
84787 ==The region in Scandinavia==
84788 ===About the region and its folk===
84789 The [[Ynglinga saga]], when relating the events of the reign of King [[GudrÃļd the Hunter|GudrÃļd]] (''GuðrÃļðr'') the Hunter relates:
84790 &lt;blockquote&gt;Álfheim, at that time, was the name of the land between the ''Raumelfr'' ['Raum Elf river', the modern Glomma river] and the ''Gautelfr'' ['Gaut Elf river', the modern GÃļta älv].&lt;/blockquote&gt;
84791 The words &quot;at that time&quot; indicates the name for the region was archaic or obsolete by the [[13th century]]. The element ''elfr'' is a common word for 'river' and appears in other river names. It is cognate with [[Middle Low German]] ''elve'' 'river' and the name of the river [[Elbe]]. The Raum Elf marked the border of the region of Raumaríki and the Gaut Elf marked the border of Gautland (modern [[GÃļtaland]]). It corresponds closely to the historical Swedish province of [[Bohuslän]].
84792
84793 The name Álfheim here may have nothing to do with ''Álfar'' 'Elves', but may derive from a word meaning 'gravel layer'.
84794
84795 However the ''[[Thorsteins saga Víkingssonar]] '' claims that the two rivers and the country was named from King Álf the Old (''Álfr hinn gamli'') who once ruled there, and that his descendants were all related to the Elves and were more handsome than any other people except for the giants, a unique and possibly corrupt reference to giants being especially good looking. The ''[[SÃļgubrot af Nokkrum]]'' also mentions the special good looks of the kindred of King Álf the Old.
84796
84797 ===Traditions of Álf the Old===
84798 According to ''Thorsteins saga Víkingssonar'', King Álf the Old was married to Bryngerd (''Bryngerðr'') the daughter of King '''[[Raum the Old|Raum]]''' of Raumaríki.
84799
84800 But according to the ''[[Hversu Noregr byggdist]]'', Álf, also called FinnÃĄlf, was a son of King Raum who inherited from his father the land from the Gaut Elf river (the modern [[GÃļta älv]] river) north to the Raum Elf river (the modern [[Glomma]] river), and that the land was then called Álfheim.
84801
84802 FinnÃĄlf married Svanhild (''Svanhildr'') who was called Gold-feather (''Gullfj&amp;#491;ðr'') and was the daughter of Day (''[[Dagr]]'') son of Dayspring (''[[Delling]]r'') by Sun (''[[Sol (goddess)|SÃŗl]]'') daughter of ''[[Mundilfari]]''. Dag as a personification of day and the sun-goddess SÃŗl are mentioned elsewhere, but only the ''Hversu'' mentions their daughter. Svandhild bore FinnÃĄlf a son named Svan the Red (''Svanr inn Rauðr'') who was father of SÃĻfari, father of Úlf (''Úlfr''), father of Álf, father of Ingimund (''Ingimundr'') and Eystein (''Eysteinn'').
84803
84804 According to the eddic poem ''[[HyndluljÃŗd]]'' (stanza&amp;nbsp;12), Óttar, whose genealogy is the subject of this poem, was son of Innstein (''Innsteinn''), son of Álf the Old, son of Úlf, son of SÃĻfari, son of Svan the Red. So the Innstein of the ''HyndluljÃŗd'' and ''Eystein'' of the ''Hversu'' are presumably identical.
84805
84806 ===Later kings of Álfheim===
84807 ====Stuff of Legend====
84808 Later kings are mentioned in some sagas.
84809
84810 According to [[Saxo Grammaticus]]' ''[[Gesta Danorum]]'' (Book 8), the sons of King [[GandÃĄlf the Old]] joined King [[Harald Hildetand|Harald]] for the [[battle of BrÃĨvalla]]. The ''[[SÃļgubrot af Nokkrum|SÃļgubrot]]'' names the sons of GandÃĄlf as Álfar (''Álfarr'') and Álfarin (''Álfarinn'') and makes them members of King Harald's bodyguard. Presumably they died in the battle. But the kingdom of this GandÃĄlf is not identified in these texts.
84811
84812 The ''SÃļgubrot'' also relates that [[Sigurd Ring|Sigurd Hring]] (''Sigurðr Hringr''), who was Harald's viceroy on the Swedish throne, married Álfhild, the daughter of King Álf the Old of Álfheim. But in a later passage she appears as a descendant of King Álf. The ''Hversu Novegr byggdist'' provides instead a lineage of King Álf the Old of Álfheim who was father of Álfgeir the father of GandÃĄlf the father of Álfhild the mother of the famous [[Ragnar Lodbrok]] (by Sigurd Hring). That Álfhild's father was the same GandÃĄlf whose sons were at the Battle of Bravalla makes good sense in legendary chronology. But this genealogy may have resulted from misidentification of GandÃĄlf the Old of the battle of BrÃĨvalla with GandÃĄlf son of Álfgeir of the ''[[Ynglinga saga]]'' who is discussed below. Or if the two GandÃĄlfs may be rightly identified then the chronology is badly garbled.
84813
84814 In all these accounts, the son of Hring and Álfhild was supposedly the famous Ragnar Lodbrok, husband of [[Áslaug]] (''Áslaugr'') the mother of Sigurd Hart (''Sigurðr Hj&amp;#491;rt'') whose daughter Ragnhild (''Ragnhildr'') married [[Halfdan the Black]] and bore to him [[Harald I of Norway|Harald Fairhair]], the first historic king of all Norway.
84815
84816 ''[[Illuga saga GríðarfÃŗstra]]'' relates of a king Áli of Alfheim and his queen Alfrun. When the queen died, the king married a beautiful but evil woman named Grimhild. She murdered him and tyrannized Alfheim until it was laid waste. His daughter Signy would marry king Hringr of Denmark.
84817
84818 ====On the borders of history====
84819 The ''Ynglinga saga'', ''Saga of Halfdan the Black'', and ''Saga of Harald Fairhair'', all included in the ''[[Heimskringla]]'', tell of kings of Álfheim at the end of the legendary period:
84820
84821 * '''Álf:''' His daughter Álfhild (''Álfhildr'') married King [[GudrÃļd the Hunter]] of [[Raumaríki]] and [[Vestfold|Westfold]] who brought with her half of the territory of [[Vingulmork]] as her dowry. She bore to GudrÃļd a son named ÓlÃĄf (''ÓlÃĄfr'') who was afterwards named Geirstada-Álf (''Geirstaða-Álfr'') and was the elder half-brother of [[Halfdan the Black]].
84822
84823 * '''Álfgeir:''' He as son of Álf. He regained Vingulmork and placed his son GandÃĄlf (''GandÃĄlfr'') over it as king.
84824
84825 * '''GandÃĄlf:''' He was son of Álfgeir. Since this GandÃĄlf was an older contemporary of Harald Fairhair and since the historical Viking leaders identified as sons of Ragnar Lodbrok in some traditions were also contemparies of Harald Fairhair, it is not impossible that Álfhild, the supposed mother of Ragnar Lodbrok, was the daughter of this GandÃĄlf as the ''Hversu Noregr byggdist'' states. What is told in the ''[[Heimskringla]]'' is that after many indecisive battles between GandÃĄlf and Halfdan the Black, Vingulmork was divided between them, Halfdan regaining the portion which had been the dowry of his grandfather's first wife Álfhild. Two sons of GandÃĄlf named HÃŊsing (''HÃŊsingr'') and Helsing (''Helsingr'') later led a force against Halfdan but fell in battle and a third son named Haki fled into Álfheim. When Halfdan's son Harald Fairhair succeeded his father, GandÃĄlf and his son Haki were both part of an alliance of kings who attacked Harald. Haki was slain but GandÃĄlf escaped. There was further war between GandÃĄlf and Harald. At last GandÃĄlf fell in battle and Harald seized all of GandÃĄlf's land up to the Raum Elf river, at that time not taking Álfheim itself.
84826
84827 But later parts of his saga show Harald in full control of the land west of the Gaut Elf river showing that Álfheim did soon become part of his kingdom. From that point it ceased to be an independent region. The Saga of Harald Fairhair relates that it was first conquered by the Swedish king Eirik Eymundsson ([[Erik Anundsson]]) who lost it to Harald Fairhair.
84828
84829 ==Variant spellings==
84830 Variant Anglicizations are: '''Álf''': ''Alf''&amp;nbsp;; '''Álfar''': ''Alfar''&amp;nbsp;; '''Álfarin''': ''Alfarin''&amp;nbsp;; '''Álfgeir''': ''Alfgeir''&amp;nbsp;; '''Álfheim''': ''Alfheim''&amp;nbsp;; '''Álfhild''': ''Alfhild''&amp;nbsp;; '''Áslaug''': ''Aslaug''&amp;nbsp;; '''FinnÃĄlf''': ''Finnalf''&amp;nbsp;; '''Frey''': ''Freyr''&amp;nbsp;; '''GandÃĄlf''': ''Gandalf''&amp;nbsp;; '''GimlÊ''': ''Gimle''&amp;nbsp;; '''GrímnismÃĄl''': ''Grimnismal''&amp;nbsp;; '''GudrÃļd''': ''Gudrod'', ''GuthrÃļth''&amp;nbsp;; '''Haki''': ''Hake''&amp;nbsp;; '''Halfdan the Black''': ''HÃĄlfdan the Black''&amp;nbsp;; '''Raumaríki''': ''Raumarike'', ''Raumarik'', ''Raum's-ric''&amp;nbsp;; '''SÃĻfari''': ''Saefari''&amp;nbsp;; '''Sigurd Hart''': ''Sigurd Hjort'', ''Sigurth Hart''&amp;nbsp;; '''Sigurd Hring''': ''Sigurd Ring'', ''Sigurth Hring''&amp;nbsp;; '''SÃŗl''': ''Sol''&amp;nbsp;; '''Úlf''': ''Ulf''&amp;nbsp;; '''Ull''': ''Ullr''&amp;nbsp;; '''VÃļluspÃĄ''': ''VoluspÃĄ''.
84831
84832 {{NorseMythology}}
84833
84834 [[Category:Locations in Norse mythology|Alfheim]]
84835
84836 [[da:Alfheim]]
84837 [[de:Lichtelfenheim]]
84838 [[es:Alfheim]]
84839 [[fr:Alfheim]]
84840 [[lt:Alfheimas]]
84841 [[nl:Alfheim]]
84842 [[no:Alvheim]]
84843 [[pt:Alfheim]]
84844 [[ru:ЛŅŒĐĩŅĐ°ĐģŅŒŅ„Đ°Ņ…ĐĩĐšĐŧ]]
84845 [[fi:Alfheim]]
84846 [[sv:Alfheim]]</text>
84847 </revision>
84848 </page>
84849 <page>
84850 <title>Ask and Embla</title>
84851 <id>1482</id>
84852 <revision>
84853 <id>38695622</id>
84854 <timestamp>2006-02-08T00:53:27Z</timestamp>
84855 <contributor>
84856 <username>MTSbot</username>
84857 <id>899034</id>
84858 </contributor>
84859 <minor />
84860 <comment>robot Adding: lt</comment>
84861 <text xml:space="preserve">[[Image:Faroe stamp 430 The First Human Beings.jpg|thumb|Ask and Embla on a postage stamp of the Faroe Islands, 2003 by [[Anker Eli Petersen]].]]
84862 In [[Norse Mythology]] '''Ask and Embla''' were the first two humans created by the gods, analogous with [[Adam and Eve]].
84863
84864 [[Odin]] and his brothers, [[Ve]] and [[Vili]], created all nine worlds of Norse cosmology. They then found two logs on a beach and gave them a human shape. Odin gave them the breath of life; Vili gave them wit and emotions; Ve gave them senses and speech. These two people, Ask (&quot;[[ash (tree)|ash]]&quot;), the male, and Embla (&quot;[[elm]]&quot;), became the progenitors of humanity; they lived in [[Midgard]].
84865
84866 ==Symbolism==
84867 The idea that the first humans were shaped from tree-trunks is apparently a part of the cyclic notions, where light and darkness relieve each other, separated by the semidarkness of the dawn and dusk.
84868
84869 We all know the optical illusions of the twilight, where the outline of an object looks like a human being, an animal or some kind of living creature. But when we take a closer look we become aware that the object is a tree-trunk, a tuft or a boulder.
84870
84871 The function of the gods as creators of the visible World is their capacity as the bringers of light and darkness. If you can imagine that a living creature can turn into a rock or a tree-trunk when the light arrives, then why not go the other way around and claim that the first humans originally were washed up [[driftwood]]?
84872
84873 ==Micro cosmos==
84874 Another, just as legitimate explanation, could be conceptions concerning the Micro cosmos. According to this kind of notion, the Cosmos repeats itself in all things, great and small.
84875
84876 Our ancestors knew of course, that the skeleton was the basic structure of the human body. The ribs of the chest, the arms and the fingers can associate to the branches of the treetop, while the feet and toes could pass for the roots of the tree.
84877
84878 There are by the way, vague reminiscences of an ancient tree-cult in the [[VÃļluspÃĄ]]. The poem often touches on mythical notions regarding trees and woods.
84879
84880 The ash and the elm-tree have always been regarded as suitable timber for everyday use. The wood was especially used as shafts on tools, bows, spears and arrows.
84881
84882 ==External links==
84883 *[http://www.tjatsi.fo/show.php?sprog=5144b84d6c79ae59d7c8fccde1946e9e&amp;side=8571e23dd92101768bc4ea08a59f0d82 Tjatsi.fo - Retelling and Interpretation of VÃļluspÃĄ] (Public Domain, by Anker Eli Petersen)
84884
84885 {{NorseMythology}}
84886
84887 {{interwikiconflict}}
84888
84889 [[Category:Norse mythology]]
84890
84891 [[ca:Ask]]
84892 [[da:Ask og Embla]]
84893 [[de:Ask und Embla]]
84894 [[es:Ask y Embla]]
84895 [[eo:Ask]]
84896 [[fr:Ask]]
84897 [[is:Askur og Embla]]
84898 [[lt:Askas ir Embla]]
84899 [[nl:Ask en Embla]]
84900 [[no:Ask og Embla]]
84901 [[nn:Ask og Embla]]
84902 [[pl:Ask i Embla]]
84903 [[pt:Ask]]
84904 [[sv:Ask och Embla]]</text>
84905 </revision>
84906 </page>
84907 <page>
84908 <title>Alabama River</title>
84909 <id>1484</id>
84910 <revision>
84911 <id>39694073</id>
84912 <timestamp>2006-02-15T05:03:00Z</timestamp>
84913 <contributor>
84914 <username>Snottygobble</username>
84915 <id>111359</id>
84916 </contributor>
84917 <minor />
84918 <comment>Reverted edits by [[Special:Contributions/201.245.183.18|201.245.183.18]] ([[User talk:201.245.183.18|talk]]) to last version by 87.122.33.171</comment>
84919 <text xml:space="preserve">[[Image:Alabama_River.jpg|300px|thumb|The Alabama River at [[Montgomery, Alabama|Montgomery]] in 2004]]
84920 The '''Alabama River''', in the [[United States|U.S.]] state of [[Alabama]], is formed by the [[Tallapoosa River|Tallapoosa]] and [[Coosa River|Coosa]] rivers, which unite about six miles above [[Montgomery, Alabama|Montgomery]].
84921
84922 It flows west as far as [[Selma, Alabama|Selma]], then southwest until,
84923 about 45 miles (72 km) from [[Mobile, Alabama|Mobile]], it unites with the [[Tombigbee River|Tombigbee]] to form the [[Mobile River|Mobile]] and [[Tensas River|Tensas]] rivers, which discharge into [[Mobile Bay]].
84924
84925 The course of the Alabama is tortuous. Its width varies from 200 to 300 yards (200 to 300 m), and its depth from 3 to 7 feet (1 to 2 m). Its length as measured by the [[United States Geological Survey]] is 312 miles (502 km), and by steamboat measurement, 420 miles (676 km).
84926
84927 The river crosses the richest agricultural and timber districts of the state, and [[railway]]s connect it with the [[mineral]] regions of north central Alabama.
84928
84929 The principal tributary of the Alabama is the [[Cahaba River]] about 200 miles (300 km long, which enters it about 10 miles (16 km) below Selma. Of the rivers which form the Alabama, the Coosa crosses the mineral region of Alabama, and is navigable for light-draft boats from [[Rome, Georgia]] (where it is formed by the junction of the [[Oostanaula River|Oostanaula]] and [[Etowah River|Etowah]] rivers) to about 117 miles (188 km) above [[Wetumpka River|Wetumpka]] (about 102 miles below Rome and 26 miles (42 km) below Greensport), and from Wetumpka to its junction with the Tallapoosa; the channel of the river has been considerably improved by the federal government.
84930
84931 The navigation of the Tallapoosa river which has its source in [[Paulding County, Georgia]], and is about 250 miles (400 km) long, is prevented by [[shoal]]s and a 60 foot (18 m) fall at Tallassee, a few miles north of its junction with the Coosa. The Alabama is navigable throughout the year.
84932
84933 [[Category:Rivers of Alabama]]
84934
84935 [[de:Alabama River]]
84936 [[ko:ė•¨ëŧ배마 강]]
84937 [[pl:Alabama (rzeka)]]
84938 [[de:Alabama River]]</text>
84939 </revision>
84940 </page>
84941 <page>
84942 <title>Alain de Lille</title>
84943 <id>1485</id>
84944 <revision>
84945 <id>41500986</id>
84946 <timestamp>2006-02-27T20:11:52Z</timestamp>
84947 <contributor>
84948 <username>William percy</username>
84949 <id>630628</id>
84950 </contributor>
84951 <text xml:space="preserve">'''Alain de Lille''' (Alanus ab Insulis) (c. [[1128]] - [[1202]]), [[France|French]] [[theology|theologian]] and poet, was born, probably at [[Lille]], some years before 1128.
84952
84953 Little is known of his life. He seems to have taught in the schools of [[Paris]], and he attended the [[Third Council of the Lateran|Lateran Council]] in [[1179]]. He afterwards inhabited [[Montpellier]] (he is sometimes called Alanus de Montepessulano), lived for a time outside the walls of any cloister, and finally retired to [[Citeaux]], where he died in 1202.
84954
84955 He had a very widespread reputation during his lifetime and his knowledge, more varied than profound, caused him to be called ''Doctor universalis''. Among his very numerous works two poems entitle him to a distinguished place in the [[Latin literature]] of the middle ages; one of these, the ''De planctu naturae'', is an ingenious satire on the vices of humanity. He likened [[homosexual]] behavior to [[grammatical]] barbarism, thus creating the allegory of grammatical &quot;conjugation&quot; which was to have its successors throughout the Middle Ages. The ''Anticlaudianus'', a treatise on morals as [[Medieval allegory|allegory]], the form of which recalls the pamphlet of Claudian against Rufinus, is agreeably versified and relatively pure in its latinity.
84956
84957 As a theologian Alain de Lille shared in the mystic reaction of the second half of the 12th century against the [[Scholasticism|scholastic philosophy]]. His [[mysticism]], however, is far from being as absolute as that of the Victorines. In the ''Anticlaudianus'' he sums up as follows: Reason, guided by prudence, can unaided discover most of the truths of the physical order; for the apprehension of religious truths it must trust to faith. This rule is completed in his treatise, ''Ars catholicae fidei'', as follows: Theology itself may be demonstrated by reason. Alain even ventures an immediate application of this principle, and tries to prove geometrically the dogmas defined in the [[Creed]]. This bold attempt is entirely factitious and verbal, and it is only his employment of various terms not generally used in such a connection ([[axiom]], [[theorem]], [[corollary]], etc.) that gives his treatise its apparent originality.
84958
84959 Alain de Lille has often been confounded with other persons named Alain, in particular with Alain, archbishop of Auxerre, Alan, abbot of Tewkesbury, Alain de Podio, etc. Certain facts of their lives have been attributed to him, as well as some of their works: thus the ''Life of St Bernard'' should be ascribed to Alain of Auxerre and the ''Commentary upon Merlin'' to [[Alan, abbot of Tewkesbury|Alan of Tewkesbury]]. Neither is the philosopher of Lille the author of a ''Memoriale rerum difficilium'', published under his name; and it is exceedingly doubtful whether the ''Dicta Alani de lapide philocophico'' really issued from his pen. On the other hand, it now seems practically demonstrated that Alain de Lille was the author of the ''Ars catholicae fidei'' and the ''treatise Contra haereticos''.
84960
84961 -----
84962 {{1911}}
84963 ==External links==
84964 *http://la.wikisource.org/wiki/Alanus_ab_Insulis
84965
84966 ==Resources==
84967 Dynes, Wayne R. ''Alan of Lille.'' [http://williamapercy.com/pub-EncyHom.htm '''Encyclopedia of Homosexuality.'''] Dynes, Wayne R. (ed.), Garland Publishing, 1990. p. 32.
84968
84969 [[Category:1128 births]]
84970 [[Category:1202 deaths]]
84971 [[Category:French theologians]]
84972 [[Category:Scholastic philosophers]]
84973
84974 [[de:Alanus ab Insulis]]
84975 [[fr:Alain de Lille]]
84976 [[gl:Alain de Lille]]
84977 [[it:Alano di Lilla]]
84978 [[la:Alanus ab Insulis]]
84979 [[sk:Alanus ab Insulis]]
84980 [[pl:Alan z Lille]]</text>
84981 </revision>
84982 </page>
84983 <page>
84984 <title>Alamanni</title>
84985 <id>1486</id>
84986 <revision>
84987 <id>40775010</id>
84988 <timestamp>2006-02-22T23:02:01Z</timestamp>
84989 <contributor>
84990 <username>KocjoBot</username>
84991 <id>467651</id>
84992 </contributor>
84993 <minor />
84994 <comment>robot Adding: ca, nl</comment>
84995 <text xml:space="preserve">The '''Alamanni''', '''Allemanni''', or '''Alemanni''' were an alliance of warbands formed from [[Germanic tribe]]s, first mentioned by [[Dio Cassius]] when they fought [[Caracalla]] in [[213]]. They apparently dwelt in the basin of the [[Main River|Main]], to the south of the [[Chatti]].
84996
84997 ==Tribal connections==
84998 The Alamanni emerged from the [[Irminones]]. According to [[Asinius Quadratus]] their name &amp;mdash;&quot;all men&quot;&amp;mdash;indicates that they were a conglomeration of various tribes formed into warbands, similar to the contemporary [[Huns]]. Another source {{fact}} claims the root of Alamann is ''al-'' from which are also derived Greek ''allos'' &quot;other, alien&quot; and Old High German ''ElisÃĸzzo'' &quot;, Elsaz or Alsace): &quot;the land on the other side of the [[Rhine]]&quot;. There can be little doubt, however, that the ancient [[Hermunduri]] formed the bulk of the composite nation. Other groups included the [[Brisgavi]], [[Juthungi]], [[Bucinobantes]], [[Lentienses]], and perhaps the [[Armalausi]]. Close allies of the Alamanni were the East Germanic [[Suebi]], or Suabi (hence [[Swabia]]). The Hermunduri had apparently belonged to the Suebi, but it is likely enough that reinforcements from new Suebic tribes had now moved westward. In later times the names ''Alamanni'' and ''Suebi'' seem to become synonymous, although some of the Suebi later migrated to [[Hispania]] and established an independent kingdom there that endured well into the 6th century.
84999
85000 ==Conflicts with the Roman Empire==
85001 The Alamanni were continually engaged in conflicts with the [[Roman Empire]]. They launched a major invasion of Gaul and northern [[Italy]] in [[268]], when the Romans were forced to denude much of their German frontier of troops in response to a massive invasion of the [[Goths]]. Their depredations in the three parts of Gaul remained traumatic: [[Gregory of Tours]] (died ca 594) mentions their destructive force at the time of [[Gallienus|Valerian and Gallienus]] (253&amp;ndash;260), when the Alemanni assembled under their &quot;king&quot;, whom he calls [[Chrocus]], &quot;by the advice, it is said, of his wicked mother, and overran the whole of the Gauls, and destroyed from their foundations all the temples which had been built in ancient times. And coming to [[Clermont-Ferrand|Clermont]] he set on fire, overthrew and destroyed that shrine which they call ''Vasso Galatae'' in the Gallic tongue,&quot; martyring many Christians ([http://www.fordham.edu/halsall/basis/gregory-hist.html#book3 ''Historia Francorum'' Book I.32&amp;ndash;34]). Thus [[6th century]] Gallo-Romans of Gregory's class, surrounded by the ruins of [[Roman temple]]s and public buildings, attributed the destruction they saw to the plundering raids of the Alemanni.
85002
85003 In the early summer of 268, the [[Roman Emperors|Emperor]] [[Gallienus]] halted their advance in Italy, but then had to deal with the Goths. When the Gothic campaign ended in Roman victory at the [[Battle of Naissus]] in September, Gallienus' successor [[Claudius II|Claudius II Gothicus]] turned north to deal with the Alamanni, who were swarming over all Italy north of the [[Po River]].
85004
85005 After efforts to secure a peaceful withdrawal failed, Claudius forced the Alamanni to battle at the [[Battle of Lake Benacus]] in November. The Alamanni were routed, forced back into Germany, and did not threaten Roman territory for many years afterwards.
85006
85007 Their most famous battle against Rome took place in Argentoratum ([[Strasbourg]]), in [[357]], where they were defeated by [[Julian the Apostate|Julian]], later Emperor of Rome, and their king Chnodomar (&quot;[[Chonodomarius]]&quot;) was taken prisoner.
85008
85009 On [[January 2]], [[366]] the Alamanni crossed the frozen [[Rhine]] in large numbers, to invade the Gallic provinces.
85010
85011 In the great mixed invasion of [[406]], the Alamanni appear to have crossed the [[Rhine|Rhine river]], conquered and then settled what is today [[Alsace]] and a large part of [[Switzerland]]. [[Fredegar]]'s Chronicle gives an account. At ''Alba Augusta'' ([[Aps]]) the devastation was so complete, that the Christian bishopric was removed to [[Viviers]], but Gregory's account that at Mende in [[Lozère]], also deep in the heart of Gaul, bishop Privatus was forced to sacrifice to idols in the very cave where he was later venerated may be a generic literary trope epitomizing the horrors of barbarian violence.
85012
85013 ===List of battles between Romans and Alamanni===
85014 * [[268]], [[Battle of Lake Benacus]] &amp;mdash; Romans under Emperor [[Claudius II]] defeat the Alamanni.
85015 * [[271]]
85016 ** [[Battle of Placentia]] &amp;mdash; Emperor [[Aurelian]] is defeated by the Alamanni forces invading Italy
85017 ** [[Battle of Fano]] &amp;mdash; Aurelian defeats the Alamanni, who begin to retreat from Italy
85018 ** [[Battle of Pavia (271)]] &amp;mdash; Aurelian destroys the retreating Alamanni army.
85019 * [[298]]
85020 ** [[Battle of Lingones]] &amp;mdash; [[Caesar (title)|Caesar]] [[Constantius Chlorus]] defeats the Alamanni
85021 ** [[Battle of Vindonissa]] &amp;mdash; Constantius again defeats the Alamanni
85022 * [[356]], [[Battle of Reims (356)|Battle of Reims]] &amp;mdash; [[Caesar (title)|Caesar]] [[Julian the Apostate|Julian]] is defeated by the Alamanni
85023 * [[357]], [[Battle of Strasbourg (357)|Battle of Strasbourg]] &amp;mdash; Julian expels the Alamanni from the [[Rhineland]]
85024 * [[367]], [[Battle of Solicinium]] &amp;mdash; Romans under Emperor [[Valentinian I]] defeat yet another Alamanni incursion.
85025 * [[378]], [[Battle of Argentovaria]] &amp;mdash; Western Emperor [[Gratianus]] is victorious over the Alamanni, yet again.
85026
85027 ==Alamanni and Franks==
85028 {{main|Alamannia}}
85029 The kingdom (or duchy) of [[Alamannia]] between Strasbourg and Augsburg lasted until [[496]], when the Alamanni were conquered by [[Clovis I]] at the [[Battle of Tolbiac]]. The war of Clovis with the Alamanni forms the setting for the conversion of Clovis, briefly treated by [[Gregory of Tours]] ([http://www.fordham.edu/halsall/source/gregory-clovisconv.html#n30 Book II.31]) Subsequently the Alamanni formed part of the [[Franks|Frankish]] dominions and were governed by a Frankish duke.
85030
85031 In 746, [[Carloman%2C_son_of_Charles_Martel|Carloman]] ended an uprising by summarily executing all Alemannic nobility at the [[blood court at Cannstatt]], and for the following century, Alamannia was ruled by Frankish dukes. Following the [[treaty of Verdun]] of [[843]], Alamannia became a province of the eastern kingdom of [[Louis the German]], the precursor of the [[Holy Roman Empire]]. The duchy persisted until [[1268]].
85032
85033 ==List of Alamannic rulers==
85034 '''Kings'''
85035 * [[Chrocus]] 306
85036 * [[Mederich]] (father of Agenarich, brother to Chnodomar)
85037 * [[Chnodomar]] 350, 357
85038 * [[Vestralp]] 357, 359
85039 * [[Ur (Alamannic ruler)|Ur]] 357, 359
85040 * [[Agenarich]] (Serapio) 357
85041 * [[Suomar]] 357, 358
85042 * [[Hortar]] 357, 359
85043 * [[Gundomad]] 354 (co-regent of Vadomar)
85044 * [[Ursicin]] 357, 359
85045 * [[Makrian]] 368&amp;ndash;371
85046 * [[Rando]] 368
85047 * [[Hariobaud]] 4th c.
85048 * [[Vadomar]] vor 354&amp;ndash;360
85049 * [[Vithicab]] 360&amp;ndash;368
85050 * [[Priarius]] ?&amp;ndash;378
85051 * [[Gibuld]] (Gebavult) c. 470
85052
85053 '''Dukes under [[List of Frankish Kings|Frankish rule]]'''
85054 * [[Butilin]] 539&amp;ndash;554
85055 * [[Leuthari I]] before 552&amp;ndash;554
85056 * [[Haming]] 539&amp;ndash;554
85057 * [[Lantachar]] until 548 (Avenches diocese)
85058 * [[Magnachar]] 565 (Avenches diocese)
85059 * [[Vaefar]] 573 (Avenches diocese)
85060 * [[Theodefrid]]
85061 * [[Leutfred I]] until 588
85062 * [[Uncilin]] 588&amp;ndash;607
85063 * [[Gunzo]] 613
85064 * [[Chrodobert]] 630
85065 * [[Leuthari II]] 642
85066 * [[Gotfrid]] until 709
85067 * [[Willehari]] 709&amp;ndash;712 (in [[Ortenau]])
85068 * [[Lantfrid]] 709&amp;ndash;730
85069 * [[Theudebald (Alamannic ruler)|Theudebald]] 709&amp;ndash;744
85070
85071 ==Christianization==
85072 [[Christianization]] of the Alamanni took place during [[Merovingian]] times (6th to 8th centuries). Sources are sparse, but in the mid-6th century, the Byzantine chronicler [[Agathias of Myrina]] records, in the context of the wars of the Goths and Franks against Byzantium, that the Alamanni fighting among the troops of Frankish king [[Theudebald]] were like the Franks in all respects except religion, since they
85073 :&quot;worship trees, rivers, hills and gorges as gods, and decapitate horses and cows, and innumerable other animals, as if it were a holy rite,&quot;
85074 also adding the particular ruthlessness of the Alamani in destroying Christian sanctuaries and plundering churches while the genuine Franks were respectful towards those sanctuaries. Agathias expresses his hope that the Alamanni would assume better manners through prolongued contact with the Franks, which is by all appearances what eventually happened.
85075
85076 Apostles of the Alamanni were [[Saint Columbanus]] and his disciple [[Saint Gall]]. [[Jonas of Bobbio]] records that Columbanus was active in [[Bregenz]], where he disrupted a beer sacrifice to [[Wodan]]. For some time, the Alamanni seem to have continued their pagan cult activities, with only superficial or [[Syncretism|syncretistic]] Christian elements. In particular, there is no change in burial practice, and tumulus warrior graves continued to be erected throughout Merovingian times. Syncretism of traditional Germanic [[theriomorph|animal-style]] with Christian symbolism is also present in artwork, but Christian symbolism becomes more and more prevalent during the 7th century. Unlike the later Christianization of the Saxon and of the Slavs, the Alamanni seem to have adopted Christianity gradually, and voluntarily, spread by emulation of the Merovingian elite.
85077
85078 From ca. the 520s to the 620s, there was a surge of Alamannic [[Elder Futhark]] inscriptions. About 80 specimens have survived, roughly half of them on [[fibula]]e, others on belt buckles (see [[Pforzen buckle]]) and other jewellry and weapon parts. Use of runes subsides with the advance of Christianity.
85079
85080 The establishment of the bishopric of [[Constance]] cannot be dated exactly and was possibly undertaken by Columbanus himself (before 612). In any case, it existed by [[635]], when [[Gunzo]] appointed [[John of Grab]] bishop. Constance was a missionary bishopric in newly converted lands, and did not look back on late Roman church history (unlike [[Basel]], episcopal seat from [[740]], which continued the line of Bishops of [[Augusta Raurica]], see [[Bishop of Basel]], and the Raetian bishopric of [[Chur]], established [[451]]). The establishment of the church as an institution recognized by worldly rulers is also visible in legal history. The early 7th century ''[[Pactus Alamannorum]]'' marginally mentions special privileges of the church, while [[Lantfrid]]'s ''[[Lex Alamannorum]]'' of [[720]] has an entire chapter reserved for ecclesial matters.
85081
85082 See also: [[Germanic Christianity]].
85083
85084 ==Modern Alemanni==
85085 ''Allemania'' lost its distinct jurisdictional identity when [[Charles Martel]] absorbed it into the Frankish empire, early in the 8th century. Today, ''Alemannic'' is a linguistic term, referring to [[Alemannic German]], encompassing the dialects of the southern two thirds of [[Baden-WÃŧrttemberg]] (German State), in western [[Bavaria]] (German State), in [[Vorarlberg]] (Austrian State), [[Swiss German]] in Switzerland and the [[Alsatian language]] of the [[Alsace]] (France).
85086
85087 The word &quot;Frankish&quot; eventually gave its name to [[France]] and [[Franconia]], while the Alamanni gave their name for &quot;German&quot; in French (''Allemand''), Spanish (''AlemÃĄn'') and Portuguese (''AlemÃŖo'').
85088
85089
85090 ==References==
85091 *''Franks and Alamanni in the Merovingian Period: An Ethnographic Perspective (Studies in Historical Archaeoethnology)''; Ian Wood (Foreword) ISBN 1843830353
85092 {{1911}}
85093
85094 [[Category:Alamanni|*]]
85095
85096 [[als:Alamannen]]
85097 [[br:Alemanned]]
85098 [[ca:Alaman]]
85099 [[de:Alamannen]]
85100 [[es:Alamanes]]
85101 [[fr:Alamans]]
85102 [[la:Alamanni]]
85103 [[nl:Alemannen]]
85104 [[pl:Alamanowie]]
85105 [[pt:Alamanos]]
85106 [[ru:АĐģĐĩĐŧĐ°ĐŊĐŊŅ‹]]
85107 [[sl:Alemani]]
85108 [[fi:Alemannit]]
85109 [[sv:Alemanner]]
85110 [[uk:АĐģĐĩĐŧĐ°ĐŊи]]</text>
85111 </revision>
85112 </page>
85113 <page>
85114 <title>Aland Islands</title>
85115 <id>1487</id>
85116 <revision>
85117 <id>15899957</id>
85118 <timestamp>2003-03-06T17:20:24Z</timestamp>
85119 <contributor>
85120 <username>Mic</username>
85121 <id>6273</id>
85122 </contributor>
85123 <minor />
85124 <comment>Moved to Åland</comment>
85125 <text xml:space="preserve">#redirect [[Åland]]</text>
85126 </revision>
85127 </page>
85128 <page>
85129 <title>American Stock Exchange</title>
85130 <id>1488</id>
85131 <revision>
85132 <id>41734446</id>
85133 <timestamp>2006-03-01T10:43:29Z</timestamp>
85134 <contributor>
85135 <ip>128.84.178.102</ip>
85136 </contributor>
85137 <text xml:space="preserve">The '''American Stock Exchange''' ('''AMEX''') is a [[stock exchange]] operated by American Stock Exchange LLC, a subsidiary of the [[NASD]], in the [[United States|United States of America]].
85138
85139 [[Image:AMEX.jpg|250px|thumb|right|American Stock Exchange]]
85140
85141 The Exchange traces its roots back to [[colonial]] times when [[stock broker]]s created outdoor markets to trade new government [[security (finance)|securities]]. The AMEX started out as such a market at the curbstone on Broad Street near Exchange Place. The curb brokers gathered around the lamp posts and mail boxes, resisting wind and weather, putting up lists of [[stock]]s for sale. As trading activity increased, the shouting reached such a high level that special hand signals had to be introduced so that the brokers could continue trading. In [[1921]] the market was moved indoors into the building where it still resides, and the hand signals remained in place for decades even after the move.
85142
85143 In 1998, the American Stock Exchange merged with the National Association of Securities Dealers (operators of [[NASDAQ]]) to create &quot;The Nasdaq-Amex Market Group&quot; where AMEX is an independent entity of the NASD parent company.
85144
85145 Out of the three major American stock exchanges, the AMEX is known to have the most liberal policies concerning company listing, as most of its companies are generally smaller compared to the NYSE and NASDAQ. The Amex also specialises in the trading of ETFs, and hybrid/structured securities. Located next to the [[World Trade Center]], it was tragically affected by the [[September 11, 2001 attacks]], but has recovered well since then.
85146
85147 ==See also==
85148 *[[Exchange-traded fund]] ([http://www.amex.com/?href=/etf/EtMain.jsp American Stock Exchange - ETFs])
85149 * [[List of stock exchanges]]
85150 * [[NASDAQ]]
85151 * [[New York Stock Exchange]] (NYSE)
85152 * [[Stock exchange]]
85153 * [[Economy of New York City]]
85154
85155 ==External links==
85156 * [http://www.amex.com/ American Stock Exchange website]
85157
85158 [[Category:Stock exchanges]]
85159 [[Category:Stock exchanges in North America]]
85160
85161 [[de:American Stock Exchange]]
85162 [[es:American Stock Exchange]]
85163 [[fr:American Stock Exchange]]
85164 [[sv:American Stock Exchange]]</text>
85165 </revision>
85166 </page>
85167 <page>
85168 <title>August 17</title>
85169 <id>1490</id>
85170 <revision>
85171 <id>41777133</id>
85172 <timestamp>2006-03-01T17:55:19Z</timestamp>
85173 <contributor>
85174 <username>Rklawton</username>
85175 <id>754622</id>
85176 </contributor>
85177 <comment>/* Deaths */ added birth years</comment>
85178 <text xml:space="preserve">{| style=&quot;float:right;&quot;
85179 |-
85180 |{{AugustCalendar}}
85181 |-
85182 |{{ThisDateInRecentYears|Month=August|Day=17}}
85183 |}
85184 '''[[August 17]]''' is the 229th day of the year (230th in [[leap year]]s) in the [[Gregorian Calendar]]. There are 136 days remaining.
85185
85186 ==Events==
85187 *[[1427]] - First band of gypsies visits Paris, according to an account of the [[citizen of Paris]]
85188 *[[1807]] - [[Robert Fulton]]'s first American [[steamboat]] leaves [[New York City]] for [[Albany, New York]] on the [[Hudson River]], inaugurating the first commercial steamboat service in the world.
85189 *[[1850]] - Argentine's War of Independence hero, General [[JosÊ de San Martín]], dies in Boulogne-sur-Mer (France), at the age of 77.
85190 *[[1862]] - [[Indian Wars]]: [[Lakota]] (Sioux) uprising begins in [[Minnesota]] as desperate Lakota attack white settlements along the [[Minnesota River]]. They will be overwhelmed by the U.S. military six weeks later.
85191 *[[1863]] - [[American Civil War]]: In [[Charleston, South Carolina]], [[United States|Union]] batteries and ships bombard [[Confederate States of America|Confederate]]-held [[Fort Sumter]]. Bombardment will not end until [[December 31]], 1863.
85192 *[[1864]] - American Civil War: Confederate forces defeated [[United States|Union]] troops at the [[Battle of Gainesville]].
85193 *[[1877]] - [[Arizona]] blacksmith F.P. Cahill is fatally wounded by [[Billy the Kid]]. Cahill will die the next day, becoming the first person killed by the Kid.
85194 *[[1883]] - [[Dominican Republic]] the first public performance of the Dominican National Anthem, [[Quisqueyanos valientes]]
85195 *[[1896]] - [[London]] - [[Bridget Driscoll]] becomes the first person in the world to die in an [[automobile]] accident after being struck by a car travelling about 4 MPH.
85196 *[[1914]] - [[World War I]]: The [[Germany|German]] army of General [[Hermann von Francois]] defeats the [[Russia]]n force commanded by [[Pavel Rennenkampf]] at the [[Battle of Stalluponen]].
85197 *[[1915]] - [[Jew]]ish American [[Leo Frank]] is [[lynching|lynched]] for the alleged murder of a 13-year-old girl in [[Atlanta, Georgia]].
85198 *[[1918]] - [[Bolshevik]] revolutionary leader [[Moisei Uritsky]] is [[assassination|assassinated]].
85199 *[[1943]] - [[World War II]]: The US 7th Army under General [[George S. Patton]] arrive in [[Messina, Italy]], followed several hours later by the British 8th Army under Field Marshal [[Bernard L. Montgomery]], thus completing the [[Allies|Allied]] conquest of [[Sicily]].
85200 *[[1945]] - [[Indonesia]] proclaims itself independent from the [[Netherlands]].
85201 *[[1953]] - [[Addiction]]: First meeting of [[Narcotics Anonymous]] in Southern [[California]].
85202 *[[1960]] - [[Gabon]] gains independence from [[France]].
85203 *[[1962]] - [[East Germany|East German]] border guards kill 18-year-old [[Peter Fechter]] as he attempts to cross the [[Berlin Wall]] into West [[Berlin]]. He thus became the first victim of the wall.
85204 *[[1963]] - A ferry linking remote islands off the coast of [[Okinawa Prefecture|Okinawa]] sinks, killing 112.
85205 *[[1969]] - Category 5 [[Hurricane Camille]] hits the [[Mississippi]] coast, killing 248 people and causing $1.5 billion in damage.
85206 *[[1970]] - [[Venera program]]: [[Venera 7]] is launched. It will later becomes the first spacecraft to successfully transmit data from the surface of another [[planet]], [[Venus (planet)|Venus]].
85207 *[[1978]] - ''[[Double Eagle II]]'' becomes first [[balloon]] to cross the [[Atlantic Ocean]] when it lands in [[Miserey]] near [[Paris]], 137 hours after leaving [[Presque Isle, Maine]].
85208 *[[1979]] - Two [[Soviet Union|Soviet]] [[Aeroflot]] jetliners collide in mid-air over [[Ukraine]], killing 156
85209 *[[1980]] - [[Azaria_Chamberlain_disappearance|Azaria Chamberlain disappears]], likely taken by a [[dingo]], leading to what was then the most [[trial by media|publicised trial]] in [[Australian history]].
85210 *[[1988]] - [[Pakistan]]i President [[Muhammad Zia-ul-Haq]] and US Ambassador [[Arnold Raphel]] are killed in a plane crash.
85211 *[[1989]] - Paul Murphy is born in Belfast
85212 *[[1991]] - Wade Frankum starts his killing spree in Strathfield, Australia, an event that was later dubbed the [[Strathfield Massacre]].
85213 *[[1998]] - [[Monica Lewinsky scandal]]: [[US President]] [[Bill Clinton]] admits in taped testimony that he had an &quot;improper physical relationship&quot; with [[White House]] intern [[Monica Lewinsky]]. On the same day he admits before the nation that he &quot;misled people&quot; about his relationship.
85214 *[[1999]] - A 7.4-magnitude [[earthquake]] strikes [[1999 Izmit, Turkey Earthquake|Izmit, Turkey]], killing more than 17,000 and injuring 44,000.
85215 *[[2002]] - In [[Santa Rosa, California]], the [[Charles M. Schulz]] Museum opens to the public.
85216 *[[2004]] - [[MD5]] collision found by [[China|Chinese]] researchers.
85217 *2004 - The [[National Assembly of Serbia]] unanimously adopts new state symbols for [[Serbia]]: [[Boze Pravde]] becomes the new anthem and the [[Serbian coat of arms|coat of arms]] is adopted for the whole country.
85218 *[[2005]] - The first forced [[evacuation]] of [[settlers]], as part of the [[Israel unilateral disengagement plan]], starts.
85219
85220 ==Births==
85221 *[[1473]] - [[Richard, Duke of York (Prince in the Tower)|Richard, Duke of York]], one of the [[Princes in the Tower]] (d. [[1483]]?)
85222 *[[1562]] - [[Hans Leo Hassler]] (baptised), German composer (d. [[1612]])
85223 *[[1578]] - [[Francesco Albani]], Italian painter (d. [[1660]])
85224 *[[1601]] - [[Pierre de Fermat]], French mathematician (d. [[1665]])
85225 *[[1629]] - King [[John III of Poland]] (d. [[1696]])
85226 *[[1786]] - [[Davy Crockett]], frontiersman, soldier (d. [[1836]])
85227 *[[1828]] - [[Jules Bernard Luys]], French neurologist (d. [[1897]])
85228 *[[1844]] - Emperor [[Menelek II of Ethiopia]] (d. [[1913]])
85229 *[[1866]] - [[Julia Marlowe]], nee Sarah Frost, Shakespearean actress (d. [[1950]])
85230 *[[1882]] - [[Samuel Goldwyn]], Hollywood producer (d. [[1974]])
85231 *[[1887]] - [[Marcus Garvey]], Jamaican leader, [[Rastafari movement|Rastafari]] prophet (d. [[1940]])
85232 *1887 - Emperor [[Charles I of Austria]] (d. [[1922]])
85233 *[[1893]] - [[Mae West]], American actress and playwright (d. [[1980]])
85234 *[[1904]] - [[Leopold Nowak]], Austrian musicologist
85235 *[[1911]] - [[Mikhail Botvinnik]], chess player (d. [[1995]])
85236 *[[1913]] - [[W. Mark Felt]], [[FBI]] associate director and [[Deep Throat (Watergate)|Deep Throat]] [[Watergate]] informant
85237 *1913 - [[Rudy York]], baseball player (d. [[1970]])
85238 *[[1920]] - [[Maureen O'Hara]], actress
85239 *[[1926]] - [[Jiang Zemin]], former [[President of the People's Republic of China]]
85240 *[[1929]] - [[Francis Gary Powers]], U-2 pilot (d. [[1977]])
85241 *[[1930]] - [[Glenn Corbett]], actor (d. [[1993]])
85242 *1930 - [[Ted Hughes]], English poet (d. [[1998]])
85243 *[[1932]] - [[V. S. Naipaul]], West Indian-born writer, [[Nobel Prize in Literature|Nobel Prize]] laureate
85244 *[[1935]] - [[Oleg Tabakov]], Russian actor
85245 *[[1939]] - [[Luther Allison]], blues musician, guitarist
85246 *[[1943]] - [[Robert De Niro]], actor
85247 *[[1948]] - [[Rod MacDonald]], musician
85248 *[[1951]] - [[Alan Minter]], boxer
85249 *[[1952]] - [[Nelson Piquet]], Brazilian formula one driver
85250 *1952 - [[Guillermo Vilas]], Argentinian tennis player
85251 *[[1954]] - [[Eric Johnson]], guitarist
85252 *[[1958]] - [[Belinda Carlisle]], singer and guitarist
85253 *1958 - [[Kirk Stevens]], Canadian snooker player
85254 *[[1959]] - [[David Koresh]], American cult leader (d. [[1993]])
85255 *[[1960]] - [[Sean Penn]], actor, director
85256 *[[1962]] - [[Gilby Clarke]], American musician [[Guns N' Roses]]
85257 *[[1964]] - [[Colin James]], blues musician
85258 *[[1966]] - [[Rodney Mullen]], American skateboarder
85259 *1966 - [[William E. Dudley]], American poet
85260 *[[1968]] - [[Ed McCaffrey]], American football player
85261 *[[1969]] - [[Donnie Wahlberg]], American actor and singer
85262 *[[1970]] - [[Jim Courier]], American tennis player
85263 *[[1971]] - [[Jorge Posada]], Puerto Rican [[Major League Baseball]] player
85264 *[[1977]] - [[Thierry Henry]], French footballer
85265 *1977 - [[Tarja Turunen]], Finnish singer ([[Nightwish]])
85266 *1977 - [[William Gallas]], French footballer
85267 *[[1980]] - [[Lene Marlin]], Norwegian singer
85268
85269 ==Deaths==
85270 *[[1153]] - [[Eustace IV of Boulogne]], son of [[Stephen of England]]
85271 *[[1304]] - [[Emperor Go-Fukakusa]] of Japan (b. [[1243]])
85272 *[[1510]] - [[Edmund Dudley]], English statesman
85273 *[[1657]] - [[Robert Blake (admiral)|Robert Blake]], British admiral (b. [[1599]])
85274 *[[1676]] - [[Hans Jakob Christoph von Grimmelshausen]], German novelist
85275 *[[1673]] - [[Regnier de Graaf]], Dutch physician and anatomist (b. [[1641]])
85276 *[[1720]] - [[Anne Lefèvre]], French scholar (b. [[1654]])
85277 *[[1723]] - [[Joseph Bingham]], English scholar (b. [[1668]])
85278 *[[1768]] (N. S.) - [[Vasily Kirillovich Trediakovsky]], Russian poet (b. [[1703]])
85279 *[[1785]] - [[Jonathan Trumbull]], Governor of the Colony and the state of Connecticut (b. [[1710]])
85280 *[[1786]] - King [[Frederick II of Prussia]] (b. [[1712]])
85281 *[[1834]] - [[Husein GradaÅĄÄević]], Bosniak rebel leader (b. [[1802]])
85282 *[[1850]] - [[Don JosÊ de San Martín]], Argentine general (b. [[1778]])
85283 *[[1875]] - [[Wilhelm Bleek]], linguist (b. [[1827]])
85284 *[[1880]] - [[Ole Bull]], Norwegian violinist (b. [[1810]])
85285 *[[1896]] - [[Bridget Driscoll]], world's first automobile fatality
85286 *[[1901]] - [[Edmond Audran]], French composer (b. [[1842]])
85287 *[[1925]] - [[Ioan Slavici]], Transylvanian writer of Romanian origin (b. [[1848]])
85288 *[[1954]] - [[Billy Murray (singer)|Billy Murray]], recording artist (b. [[1877]])
85289 *[[1969]] - [[Otto Stern]], German physicist, [[Nobel Prize]] laureate (b. [[1888]])
85290 *[[1973]] - [[Jean BarraquÊ]], French composer (b. [[1928]])
85291 *1973 - [[Paul Williams (The Temptations)|Paul Williams]], American singer ([[The Temptations]]) (b. [[1939]])
85292 *1973 - [[Conrad Aiken]], American author (b. [[1889]])
85293 *[[1979]] - [[Vivian Vance]], actress (b. [[1909]])
85294 *[[1983]] - [[Ira Gershwin]], American lyricist (b. [[1896]])
85295 *[[1987]] - [[Rudolf Hess]], Nazi deputy (b. [[1894]])
85296 *[[1988]] - [[Muhammad Zia-ul-Haq]], [[President of Pakistan]] (b. [[1924]])
85297 *[[1990]] - [[Pearl Bailey]], American singer and actress (b. [[1918]])
85298 *[[1992]] - [[Al Parker]], actor (b. [[1952]])
85299 *[[2004]] - [[GÊrard Souzay]], French baritone (b. [[1918]])
85300 *[[2005]] - [[John Bahcall]], astrophysicist (b. [[1934]])
85301
85302 == External links ==
85303 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/17 BBC: On This Day]
85304
85305 ----
85306
85307 [[August 16]] - [[August 18]] - [[July 17]] - [[September 17]] -- [[historical anniversaries|listing of all days]]
85308
85309 {{months}}
85310
85311 [[af:17 Augustus]]
85312 [[ar:17 ØŖØēØŗØˇØŗ]]
85313 [[an:12 d'agosto]]
85314 [[ast:17 d'agostu]]
85315 [[bg:17 авĐŗŅƒŅŅ‚]]
85316 [[be:17 ĐļĐŊŅ–ŅžĐŊŅ]]
85317 [[bs:17. avgust]]
85318 [[ca:17 d'agost]]
85319 [[cs:17. srpen]]
85320 [[cy:17 Awst]]
85321 [[da:17. august]]
85322 [[de:17. August]]
85323 [[et:17. august]]
85324 [[el:17 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
85325 [[es:17 de agosto]]
85326 [[eo:17-a de aÅ­gusto]]
85327 [[eu:Abuztuaren 17]]
85328 [[fo:17. august]]
85329 [[fr:17 aoÃģt]]
85330 [[fy:17 augustus]]
85331 [[ga:17 LÃēnasa]]
85332 [[gl:17 de agosto]]
85333 [[ko:8ė›” 17ėŧ]]
85334 [[hr:17. kolovoza]]
85335 [[io:17 di agosto]]
85336 [[id:17 Agustus]]
85337 [[ia:17 de augusto]]
85338 [[ie:17 august]]
85339 [[is:17. ÃĄgÃēst]]
85340 [[it:17 agosto]]
85341 [[he:17 באוגוסט]]
85342 [[jv:17 Agustus]]
85343 [[ka:17 აგვისáƒĸო]]
85344 [[csb:17 zÊlnika]]
85345 [[ku:17'ÃĒ gelawÃĒjÃĒ]]
85346 [[lt:RugpjÅĢčio 17]]
85347 [[lb:17. August]]
85348 [[hu:Augusztus 17]]
85349 [[mk:17 авĐŗŅƒŅŅ‚]]
85350 [[nl:17 augustus]]
85351 [[ja:8月17æ—Ĩ]]
85352 [[no:17. august]]
85353 [[nn:17. august]]
85354 [[oc:17 d'agost]]
85355 [[pl:17 sierpnia]]
85356 [[pt:17 de Agosto]]
85357 [[ro:17 august]]
85358 [[ru:17 авĐŗŅƒŅŅ‚Đ°]]
85359 [[scn:17 di austu]]
85360 [[simple:August 17]]
85361 [[sk:17. august]]
85362 [[sl:17. avgust]]
85363 [[sr:17. авĐŗŅƒŅŅ‚]]
85364 [[fi:17. elokuuta]]
85365 [[sv:17 augusti]]
85366 [[tl:Agosto 17]]
85367 [[tt:17. August]]
85368 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 17]]
85369 [[th:17 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
85370 [[tr:17 Ağustos]]
85371 [[uk:17 ŅĐĩŅ€ĐŋĐŊŅ]]
85372 [[wa:17 d' awousse]]
85373 [[zh:8月17æ—Ĩ]]</text>
85374 </revision>
85375 </page>
85376 <page>
85377 <title>August 12</title>
85378 <id>1491</id>
85379 <revision>
85380 <id>41775777</id>
85381 <timestamp>2006-03-01T17:43:41Z</timestamp>
85382 <contributor>
85383 <username>Rklawton</username>
85384 <id>754622</id>
85385 </contributor>
85386 <comment>/* Deaths */ added birth year</comment>
85387 <text xml:space="preserve">{| style=&quot;float:right;&quot;
85388 |-
85389 |{{AugustCalendar}}
85390 |-
85391 |{{ThisDateInRecentYears|Month=August|Day=12}}
85392 |}
85393 '''[[August 12]]''' is the 224th day of the year (225th in [[leap year]]s) in the [[Gregorian Calendar]]. There are 141 days remaining. It is the peak of the [[Perseids|Perseid meteor shower]]. It is also known as the &quot;[[Glorious Twelfth]]&quot; in the [[United Kingdom|UK]], as it marks the traditional start of the [[grouse]] shooting season.
85394
85395
85396 ==Events==
85397 *[[490 BC]] - the [[Battle of Marathon]], in which [[Athens]] defeated an invasion army of [[Iran|Persians]], may have been fought on this date in the [[proleptic Julian calendar]] - but see [[12 September]].
85398 * [[1099]] - The [[First Crusade]] concluded with a decisive victory in the [[Battle of Ascalon]] over [[Fatimid]] forces under [[Al-Afdal Shahanshah]].
85399 * [[1121]] - The [[Georgia (country)|Georgian]] army under King [[David the Builder]] won a decisive victory over the famous [[Seljuk]] commander [[Ilghazi]] at the [[Battle of Didgori]].
85400 *[[1323]] - [[Treaty of NÃļteborg]] - [[Sweden]] and [[Novgorod]] ([[Russia]]) regulates the border for the first time
85401 *[[1332]] - [[Battle of Dupplin Moor]] - Scots under the [[Donald Mormaer, 8th Earl of Mar|Earl of Mar]] routed by [[Edward Balliol]]
85402 *[[1676]] - [[Praying Indian]] [[John Alderman]] shot and killed [[Metacomet]] the [[Wampanoag]] war chief, ending [[King Philip's War]].
85403 *[[1851]] - [[Isaac Singer]] granted a patent for his [[sewing machine]]
85404 *[[1854]] - Count [[Gaston de Raousset Boulbon]] is executed by shooting, in regard to the [[Battle of Guaymas]].
85405 *[[1877]] - [[Asaph Hall]] discovers [[Deimos (moon)|Deimos]]
85406 *[[1883]] - The last [[quagga]] dies at the [[Artis Magistra zoo]] in [[Amsterdam]]
85407 *[[1898]] - Armistice ends the [[Spanish-American War]]
85408 *1898 - The [[flag of Hawaii|Hawaiian flag]] is lowered from [[Iolani Palace]] in an elaborate annexation ceremony and replaced with the American flag to signify the transfer of sovereignty from the [[Republic of Hawaii]] to the [[United States]].
85409 *[[1908]] - First [[Ford Model T|Model T]] [[Ford Motor Company|Ford]] built
85410 *[[1914]] - [[World War I]] - Britain declares war on [[Austria-Hungary]]; British Empire countries automatically included.
85411 *1914 - World War I: Beginning of the [[Battle of Cer]] between Austria-Hungary and [[Serbia]]
85412 *[[1952]] - The [[Night of the Murdered Poets]] - Prominent Jewish intellectuals were murdered in Moscow.
85413 *[[1953]] - [[Nuclear testing]]: The [[Soviet atomic bomb project]] proceeded with the detonation of ''[[Joe 4]]'', the first [[Soviet Union|Soviet]] [[thermonuclear weapon]].
85414 *[[1960]] - ''[[Echo satellite|Echo I]]'', the first [[communications satellite]], launched
85415 *[[1966]] - [[Massacre of Braybrook Street]] as three policemen are shot dead in East Acton, London.
85416 *[[1978]] - [[Japan]] and [[China]] sign the [[Treaty of Peace and Friendship between Japan and the People's Republic of China]].
85417 *[[1985]] - [[Japan Airlines Flight 123]], a [[Boeing 747]] jumbo jet, crashes into Mount Ogura in [[Gunma Prefecture]] [[Japan]] killing 520 in the world's worst single-plane air disaster. Four people miraculously survive.
85418 *[[1990]] - ''[[Sue]]'', the most complete [[skeleton]] of a ''[[Tyrannosaurus rex]]'', was discovered near [[Faith, South Dakota|Faith]], [[South Dakota]].
85419 *[[1992]] - Canada, Mexico and the United States announce completion of negotiations for the [[North American Free Trade Agreement]].
85420 *[[1994]] - The [[Woodstock '94]] rock concert takes place.
85421 *1994 - [[Major League Baseball]] players go on strike. The work stoppage will force the cancellation of the [[World Series]].
85422 *[[2000]] - The [[Oscar class submarine]] [[Russian submarine Kursk|K-141 ''Kursk'']] of the [[Russian Navy]] [[Russian submarine Kursk explosion|exploded and sank]] in the [[Barents Sea]] during a [[War exercise|military exercise]].
85423 *[[2004]] - [[Sweden]]'s nine millionth inhabitant is born.
85424 *2004 - [[Lee Hsien Loong]] is sworn in as [[Singapore]]'s 3rd [[Prime Minister]].
85425 *[[2005]] - [[Sri Lanka]]'s foreign minister, [[Lakshman Kadirgamar]], is fatally shot by a sniper in his home.
85426 *2005 - An F2 rated tornado strikes the coal mining town of [[Wright, Wyoming]], destroying nearly 100 homes and killing two people.
85427 *2005 - [[2005 Maldives civil unrest|Civil unrest]] provoked in the [[Maldives]]
85428 *2005 - An F-1 [[tornado]] strikes [[Glen Cove, New York]], a rare event on [[Long Island]]
85429
85430 ==Births==
85431 *[[1503]] - [[Christian III of Denmark and Norway]] (d. [[1559]])
85432 *[[1566]] - [[Infanta Isabella Clara Eugenia of Spain]] (d. [[1633]])
85433 *[[1604]] - [[Tokugawa Iemitsu]], Japanese shogun (d. [[1651]])
85434 *[[1626]] - [[Giovanni Legrenzi]], Italian composer (d. [[1690]])
85435 *[[1629]] - Tsar [[Alexei I of Russia]] (d. [[1676]])
85436 *[[1643]] - King [[Afonso VI of Portugal]] (d. [[1683]])
85437 *[[1644]] - [[Heinrich Ignaz Biber]], Bohemian composer (d. [[1704]])
85438 *[[1647]] - [[Johann Heinrich Acker]], German writer (d. [[1719]])
85439 *[[1686]] - [[John Balguy]], English philosopher (d. [[1748]])
85440 *[[1696]] - [[Maurice Greene (composer)|Maurice Greene]], English composer (d. [[1755]])
85441 *[[1720]] - [[Konrad Ekhof]], German actor (d. [[1778]])
85442 *[[1762]] - King [[George IV of the United Kingdom]] (d. [[1830]])
85443 *[[1774]] - [[Robert Southey]], English poet and biographer (d. [[1843]])
85444 *[[1831]] - [[Helena Blavatsky]], Ukrainian-born author (d. [[1891]])
85445 *[[1856]] - [[&quot;Diamond Jim&quot; Brady]], American financier (d. [[1917]])
85446 *[[1859]] - [[Katharine Lee Bates]], American poet (d. [[1929]])
85447 *[[1866]] - [[Jacinto Benavente]], Spanish writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1954]])
85448 *[[1867]] - [[Edith Hamilton]], German classicist (d. [[1963]])
85449 *[[1876]] - [[Mary Roberts Rinehart]], American author (d. [[1958]])
85450 *[[1880]] - [[Radclyffe Hall]], British author (d. [[1943]])
85451 *1880 - [[Christy Mathewson]], baseball player (d. [[1925]])
85452 *[[1881]] - [[Cecil B. DeMille]], American director (d. [[1959]])
85453 *[[1883]] - [[Pauline Frederick]], American actress (d. [[1938]])
85454 *[[1885]] - [[Jean Cabannes]], French physicist (d. [[1959]])
85455 *[[1886]] - Sir [[Keith Murdoch]], Australian journalist and newspaper owner (d. [[1952]])
85456 *[[1887]] - [[Erwin SchrÃļdinger]], Austrian physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1961]])
85457 *[[1892]] - [[Alfred Lunt]], American actor (d. [[1977]])
85458 *[[1902]] - [[Mohammad Hatta]], Vice President of Indonesia 1945-1956 (d. [[1980]])
85459 *[[1904]] - [[Alexei Nikolaevich Romanov]], Tsarevich (d. [[1918]])
85460 *[[1906]] - [[Harry Hopman]], Australian-born tennis player and coach (d. [[1985]])
85461 *1906 - [[Tedd Pierce]], American animator (d. [[1972]])
85462 *[[1907]] - [[Joe Besser]], American actor and comedian (d. [[1988]])
85463 *[[1911]] - [[Cantinflas]], Mexican actor (d. [[1993]])
85464 *1911 - [[Jane Wyatt]], American actress
85465 *[[1919]] - [[Vikram Sarabhai]], Indian physicist (d. [[1971]])
85466 *[[1924]] - [[Derek Shackleton]], English cricketer
85467 *1924 - [[Muhammad Zia-ul-Haq]], leader of Pakistan (d. [[1988]])
85468 *[[1925]] - [[Norris McWhirter]], Scottish co-founder of the ''Guinness Book of Records'' (d. [[2004]])
85469 *1925 - [[Ross McWhirter]], Scottish co-founder of the ''Guinness Book of Records'' (d. [[1975]])
85470 *[[1926]] - [[John Derek]], American actor (d. [[1998]])
85471 *1926 - [[Joe Jones (R&amp;B singer)|Joe &quot;Boogaloo&quot; Jones]], American R&amp;B singer (d. [[2005]])
85472 *[[1927]] - [[Mstislav Rostropovich]], Russian cellist and conductor
85473 *1927 - [[Porter Wagoner]], American singer
85474 *[[1928]] - [[Bob Buhl]], baseball player (d. [[2001]])
85475 *1928 - [[Dan Curtis]], film and television producer and director
85476 *1928 - [[Charles Blackman]], Australian artist
85477 *[[1929]] - [[Buck Owens]], American singer
85478 *[[1930]] - [[George Soros]] American businessman
85479 *[[1931]] - [[William Goldman]], American screenwriter
85480 *[[1932]] - [[Sirikit Rajini|Somdej Phra Nangchao Sirikit Phra Boromarajininat]] HM Queen Sirikit of Thailand
85481 *[[1933]] - [[Parnelli Jones]], American race car driver
85482 *[[1939]] - [[George Hamilton (actor)|George Hamilton]], American actor
85483 *[[1943]] - [[Deborah Walley]], American actress (d. [[2001]])
85484 *[[1945]] - [[Ann M. Martin]], American author
85485 *[[1949]] - [[Mark Knopfler]], British guitarist
85486 *[[1951]] - [[Willie Horton]], American murderer and rapist
85487 *[[1954]] - [[Pat Metheny]], American guitarist
85488 *1954 - [[Sam J. Jones]], American actor
85489 *[[1956]] - [[Bruce Greenwood]], Canadian actor
85490 *[[1962]] - [[Miss Cleo]], American psychic
85491 *[[1965]] - [[Peter Krause]], American actor
85492 *[[1967]] - [[Regilio Tuur]], Dutch boxer
85493 *[[1971]] - [[Michael Ian Black]], American comedian
85494 *1971 - [[Pete Sampras]], American tennis player
85495 *[[1972]] - [[Rebecca Gayheart]], American actress
85496 *[[1973]] - [[Richard Reid (terrorist)|Richard Reid]], English terrorist
85497 *[[1974]] - [[Matt Clement]], baseball pitcher
85498 *[[1976]] - [[Antoine Walker]], American basketball player
85499 *[[1977]] - [[Plaxico Burress]], American football player
85500 *1977 - [[Jesper GrønkjÃĻr]], Danish soccer player
85501 *[[1980]] - [[Dominique Swain]], American actress
85502 *1980 - [[Matt Thiessen]], Canadian-born singer ([[Reliant K]])
85503 *[[1981]] - [[Djibril Cisse]], French footballer
85504
85505 ==Deaths==
85506 *[[30 BC]] - [[Cleopatra]] (b. [[69 BC]])
85507 *[[875]] - [[Louis II Holy Roman Emperor]] (b. [[825]])
85508 *[[1424]] - [[Yongle]], [[Emperor of China]] (b. [[1460]])
85509 *[[1484]] - [[George of Trebizond]], Greek philosopher (b. [[1395]])
85510 *1484 - [[Pope Sixtus IV]] (b. [[1414]])
85511 *[[1512]] - [[Alessandro Achillini]], Italian philosopher (b. [[1463]])
85512 *[[1577]] - [[Thomas Smith (diplomat)|Thomas Smith]], English diplomat and scholar (b. [[1513]])
85513 *[[1588]] - [[Alfonso Ferrabosco (I)]], Italian composer (b. [[1543]])
85514 *[[1612]] - [[Giovanni Gabrieli]], Italian composer
85515 *[[1633]] - [[Jacopo Peri]], Italian composer (b. [[1561]])
85516 *[[1648]] - [[Ibrahim I]], [[Ottoman Sultan]] (b. [[1615]])
85517 *[[1674]] - [[Philippe de Champaigne]], French painter (b. [[1602]])
85518 *[[1689]] - [[Pope Innocent XI]] (b. [[1611]])
85519 *[[1778]] - [[Peregrine Bertie, 3rd Duke of Ancaster and Kesteven]], British general and politician (b. [[1714]])
85520 *[[1810]] - [[Etienne Louis Geoffroy]], French pharmacist and entomologist (b. [[1725]])
85521 *[[1848]] - [[George Stephenson]], British locomotive designer (b. [[1781]])
85522 *[[1864]] - [[Sakuma Shozan|Sakuma Sh&amp;#333;zan]], Japanese reformer (b. [[1811]])
85523 *[[1865]] - [[William Jackson Hooker]], English botanist (b. [[1785]])
85524 *[[1891]] - [[James Russell Lowell]], American poet and essayist (b. [[1819]])
85525 *[[1900]] - [[Wilhelm Steinitz]], Austrian chess player (b. [[1836]])
85526 *[[1901]] - [[Adolf Erik NordenskiÃļld]], Finnish-Swedish explorer (b. [[1832]])
85527 *[[1914]] - [[John Philip Holland]], Irish submarine designer (b. [[1840]])
85528 *[[1918]] - [[Anna Held]], Polish-born actress and singer (b. [[1872]])
85529 *[[1922]] - [[Arthur Griffith]], [[President of Ireland]] (b. [[1871]])
85530 *[[1928]] - [[Leos Janacek]], Czech composer (b. [[1854]])
85531 *[[1934]] - [[Hendrik Petrus Berlage]], Dutch architect (b. [[1856]])
85532 *[[1943]] - [[Bobby Peel]], English cricketer (b. [[1857]])
85533 *[[1948]] - [[Harry Brearley]], English inventor (b. [[1871]])
85534 *[[1955]] - [[Thomas Mann]], German writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1875]])
85535 *1955 - [[James B. Sumner]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1887]])
85536 *[[1964]] - [[Ian Fleming]], English novelist (b. [[1908]])
85537 *[[1973]] - [[Walter Rudolf Hess]], Swiss physiologist, [[Nobel Prize in Physiology or Medicine|Nobel Prize]] laureate (b. [[1881]])
85538 *[[1979]] - [[Ernst Boris Chain]], German-born biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1906]])
85539 *[[1982]] - [[Henry Fonda]], American actor (b. [[1905]])
85540 *1982 - [[Salvador Sanchez]], Mexican boxer (b. [[1959]])
85541 *1982 - [[Varlam Shalamov]], Russian writer (b. [[1907]])
85542 *1982 - [[Joe Tex]], American singer (b. [[1933]])
85543 *[[1985]] - [[Kyu Sakamoto]], Japanese singer (plane crash) (b. [[1941]])
85544 *1985 - [[Manfred Winkelhock]], German race car driver (b. [[1951]])
85545 *[[1988]] - [[Bhakti Raksaka Sridhara Deva Gosvami Maharaja]], religious Guru from India (b. [[1895]])
85546 *[[1989]] - [[William Shockley]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1910]])
85547 *[[1992]] - [[John Cage]], American composer (b. [[1912]])
85548 *[[1997]] - [[Luther Allison]], American musician (b. [[1939]])
85549 *[[2000]] - [[Loretta Young]], American actress (b. [[1913]])
85550 *[[2002]] - [[Enos Slaughter]], baseball player (b. [[1916]])
85551 *[[2004]] - Sir [[Godfrey Hounsfield]], English electrical engineer and inventor, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1919]])
85552 *2004 - [[Peter Woodthorpe]], British actor (b. [[1931]])
85553 *[[2005]] - [[John Loder]], co founder of the anarcho punk band [[CRASS]] (b. [[1946]])
85554
85555 ==Holidays and observations==
85556 *[[International observance|United Nations]] - International Youth Day (since [[1999]])
85557 *[[Glorious Twelfth]] at the [[Yorkshire Dales]]
85558 *[[Thailand]] - The [[Sirikit Kitiyakara|Queen]]'s Birthday, [[Mother's Day]]
85559 *Zaraday ([[Discordianism]])
85560 *[[Zimbabwe]] - Defence Force Day
85561 *International [[Ponce de Leon]] day
85562
85563 ==External links==
85564 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/12 BBC: On This Day]
85565
85566 ----
85567
85568 [[August 11]] - [[August 13]] - [[July 12]] - [[September 12]] -- [[historical anniversaries|listing of all days]]
85569
85570 {{months}}
85571
85572 [[af:12 Augustus]]
85573 [[an:12 d'agosto]]
85574 [[ar:12 ØŖØēØŗØˇØŗ]]
85575 [[ast:12 d'agostu]]
85576 [[be:12 ĐļĐŊŅ–ŅžĐŊŅ]]
85577 [[bg:12 авĐŗŅƒŅŅ‚]]
85578 [[bs:12. avgust]]
85579 [[ca:12 d'agost]]
85580 [[co:12 d'aostu]]
85581 [[cs:12. srpen]]
85582 [[csb:12 zÊlnika]]
85583 [[cy:12 Awst]]
85584 [[da:12. august]]
85585 [[de:12. August]]
85586 [[el:12 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
85587 [[eo:12-a de aÅ­gusto]]
85588 [[es:12 de agosto]]
85589 [[et:12. august]]
85590 [[eu:Abuztuaren 12]]
85591 [[fi:12. elokuuta]]
85592 [[fo:12. august]]
85593 [[fr:12 aoÃģt]]
85594 [[fy:12 augustus]]
85595 [[ga:12 LÃēnasa]]
85596 [[gl:12 de agosto]]
85597 [[he:12 באוגוסט]]
85598 [[hr:12. kolovoza]]
85599 [[hu:Augusztus 12]]
85600 [[ia:12 de augusto]]
85601 [[id:12 Agustus]]
85602 [[ie:12 august]]
85603 [[io:12 di agosto]]
85604 [[is:12. ÃĄgÃēst]]
85605 [[it:12 agosto]]
85606 [[ja:8月12æ—Ĩ]]
85607 [[jv:12 Agustus]]
85608 [[ka:12 აგვისáƒĸო]]
85609 [[ko:8ė›” 12ėŧ]]
85610 [[ku:12'ÃĒ gelawÃĒjÃĒ]]
85611 [[lb:12. August]]
85612 [[lt:RugpjÅĢčio 12]]
85613 [[mk:12 авĐŗŅƒŅŅ‚]]
85614 [[nl:12 augustus]]
85615 [[nn:12. august]]
85616 [[no:12. august]]
85617 [[oc:12 d'agost]]
85618 [[pl:12 sierpnia]]
85619 [[pt:12 de Agosto]]
85620 [[ro:12 august]]
85621 [[ru:12 авĐŗŅƒŅŅ‚Đ°]]
85622 [[scn:8 di austu]]
85623 [[simple:August 12]]
85624 [[sk:12. august]]
85625 [[sl:12. avgust]]
85626 [[sr:12. авĐŗŅƒŅŅ‚]]
85627 [[sv:12 augusti]]
85628 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 12]]
85629 [[th:12 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
85630 [[tl:Agosto 12]]
85631 [[tr:12 Ağustos]]
85632 [[tt:12. August]]
85633 [[uk:12 ŅĐĩŅ€ĐŋĐŊŅ]]
85634 [[wa:12 d' awousse]]
85635 [[zh:8月12æ—Ĩ]]</text>
85636 </revision>
85637 </page>
85638 <page>
85639 <title>Constitutional history of Australia</title>
85640 <id>1493</id>
85641 <revision>
85642 <id>36684083</id>
85643 <timestamp>2006-01-25T20:11:18Z</timestamp>
85644 <contributor>
85645 <username>GraemeL</username>
85646 <id>383311</id>
85647 </contributor>
85648 <minor />
85649 <comment>Reverted edits by [[Special:Contributions/204.196.155.1|204.196.155.1]] ([[User talk:204.196.155.1|talk]]) to last version by GraemeL</comment>
85650 <text xml:space="preserve">{{History_of_Australia/Chronological}}
85651 ==Emergence of the Commonwealth of Australia==
85652 ''Main article:'' [[Federation of Australia|Australian federation]]
85653
85654 After European settlement in 1788, [[Australia]] was politically organized as a number of separate British [[colonies]], eventually six in all. By the middle of the nineteenth century, these had achieved virtually complete internal self-government under their own colonial Parliaments, with the &quot;mother country&quot; looking after their defence and such foreign relations as they had, and making only the occasional more direct intervention in their affairs. (These arrangements were confirmed by the Colonial Laws Validity Act of 1865.) One result of this was that they each had their own laws, and applied customs duties at the borders between them, which was a significant impediment to Australia's overall economic development.
85655
85656 Following the formation of the [[Australasian Federal Council|Federal Council of Australasia]] in 1885 (a weak non-executive, non-legislative federation of Western Australia, Fiji, Queensland, Tasmania and Victoria) the movement for full Federation developed in the late nineteenth century, proposing that the six colonies join together as one federation of several States and territories (it was envisaged that New Zealand might join). In the 1890s, two [[Constitutional Convention (Australia)|constitutional conventions]] were called, which ultimately adopted a constitution based on a combination of British, American and other models (monarchy and parliamentary government from Britain, federalism from the United States, the use of the referendum from Switzerland). This constitution was then approved by the voters in each of the six colonies. (At the time women had the vote in only one of them: South Australia, and Aboriginal Australians in South Australia and Queensland only). It was then passed (with an amendment allowing for some appeals to the [[Judicial Committee of the Privy Council|Privy Council]] in London) as an Act of the British Parliament: the [[Constitution of Australia|Commonwealth of Australia Constitution Act]] 1900. The Act entered into force on [[January 1]] [[1901]], at which point the Commonwealth of Australia came into being.
85657
85658 ==The Commonwealth is born==
85659
85660 The establishment of the Commonwealth of Australia is commonly taken as the date of Australia's independence from the [[United Kingdom]], but matters are more complicated than that. The Constitution provided the Commonwealth with all the powers associated with a sovereign state, including the power to engage in foreign affairs and to raise its own army. But the United Kingdom still retained the power to engage in foreign affairs on behalf of Australia, and to make laws for it. In the early years Australia continued to be represented by the United Kingdom as part of the British Empire at international conferences.
85661
85662 Also, the Constitution provided that the British monarch be represented in Australia by a Governor-General, who was originally appointed on the advice of the British, not the Australian, government, and was generally a British aristocrat. Finally, the Constitution provided that any law of the Australian Parliament could be disallowed within a year by the British monarch (acting on the advice of British ministers), though this power was never in fact exercised. In summary, the constitutional position of the Commonwealth as a whole in relation to the United Kingdom was, originally, the same as that of the individual colonies before Federation.
85663
85664 ==From a united empire crown to a shared monarch==
85665
85666 A fundamental change in the constitutional structures of the British Commonwealth (formerly the British Empire, and not to be confused with the Commonwealth of Australia) did occur, however, in the late [[1920s]]. Under the British [[Royal and Parliamentary Titles Act 1927]], which implemented a decision of an earlier Commonwealth conference, the unified Crown that had heretofore been the centre point of the Empire was replaced by multiple crowns worn by a ''shared monarch''. Before 1927, King [[George V of the United Kingdom|George V]] reigned as king ''in'' Australia, [[New Zealand]], [[Canada]], the [[Irish Free State]], [[South Africa]], etc., each of these states, in effect, as dominions, amounting to a subset of the United Kingdom. After 1927, he reigned as King ''of'' Australia, New Zealand, Ireland, South Africa, etc. The form of use in the royal title as issued by King [[George V of the United Kingdom|George V]] [http://www.heraldica.org/topics/britain/britstyles.htm#1927] did not mention the dominions by name, except 'Ireland', which changed from being referred to as ''Great Britain and Ireland'' to ''Great Britain, Ireland'', indicating that it was no longer part of the United Kingdom, but a separate state of which the monarch was now directly the head, rather than through linkage with Great Britain. Though unnamed, except through reference to the 'British Dominions beyond the Seas', the ground-breaking move shattered the previous concept of the shared monarch to one of multiple monarchies, all held by the one monarch.
85667
85668 Though this principle was implicit in the Act and in the King's new titles, and came out of a Commonwealth Conference, neither the British government nor the dominion governments seemed initially to grasp its significance. So while the Irish ''immediately'' put the principle into effect by assuming the right to select their own governor-general and to demand a direct right of audience with the King (excluding British ministers), other dominions were much slower to go down this path, and when they did so, they were faced with determined, though ultimately futile, attempts to block such evolution in London.
85669
85670 Whereas before 1927, it was correct in law to talk about the ''British monarch'' reigning in the dominions, after 1927, there was technically a 'King of Australia', etc., even if that title was never used formally, with the only link being that that monarch ''was'' British and resident outside the Commonwealth of Australia. Curiously, while the Irish asserted the title '[[King of Ireland]]' by having King George V sign an international treaty on behalf of his Irish realm as early as 1931 (where he was formally advised by the Irish Minister for External Affairs who formally 'attended' His Majesty, with no British minister present), the formal title 'Queen of Australia' was only adopted through the ''Royal Style and Titles Act'' [http://www.statusquo.org/royalstyle.html] enacted by the Parliament of Australia in 1973.
85671
85672 ==The Statute of Westminster==
85673
85674 The next major constitutional change came about with the Act of the British Parliament known as the [[Statute of Westminster 1931|Statute of Westminster]] of [[1931]]. This was associated with the transformation of the British Empire into the British Commonwealth. The UK government recognized Australia (and its other dominions, such as Canada and New Zealand) as independent, and agreed that the British Government and Parliament would only make laws for them if they specifically requested it, with the various dominions having the legal right to adopt and amend past legislation enacted in Westminster. (This allowed the Irish Free State, for example, to remove the requirement that the then Irish constitution be limited by the contents of the [[Anglo-Irish Treaty]]. Once that was removed, the [[Oath of Allegiance (Ireland)|Oath of Allegiance]], appeals to the Privy Council, Senate, [[Governor-General of the Irish Free State|governor-generalship]] and [[The Crown|Crown]] were all abolished.)
85675
85676 However, for various reasons, the Statute of Westminster did ''not'' apply to the Australian States (at their own request), so that they remained, in relation to the United Kingdom, in the position of substantially self-governing colonies, subject, in theory at least, to any legislation specifically directed at them by the British Parliament. Also, their Governors, representing the monarch, were formally appointed on the advice of British ministers, though these increasingly merely relayed advice given to them by the Australian State Premiers.
85677
85678 On the other hand, at the Commonwealth level, the practice was established that the Governor-General was to be appointed by the monarch on the advice of Australian, not British ministers, when the Australian government successfully insisted, against considerable British opposition (including from the King himself), on the appointment of the native-born Sir Isaac Isaacs as Governor-General in 1931.
85679
85680 In April [[1933]], a [[referendum]] in [[Western Australia]] produced a 68% yes vote to leave the Commonwealth of Australia with the aim of returning to the [[British Empire]] as an autonomous territory. No action was taken in the British Parliament because no request was received from the Australian Government in line with the Statute of Westminster.
85681
85682 ==The Australia Act==
85683
85684 The power under the Statute of Westminster to request the British Parliament to make laws for Australia was used on several occasions, primarily in order to enable Australia to acquire new territories. But its most significant use was also its last. This was when the procedure was used to pass the [[Australia Act 1986|Australia Act]] 1986. The Australia Act effectively terminated the ability of the British Parliament or Government to make laws for Australia or its States, even at their request; and provided that any law which was previously required to be passed by the British Parliament on behalf of Australia could now be passed by Australia and its States by themselves. It also removed the right of the monarch personally (that is, not through the local Governor) to exercise his or her powers in the states, except when personally present in them. And it severed the last judicial link with the United Kingdom, by abolishing the right of appeal to the [[Judicial Committee of the Privy Council]].
85685
85686 ==An evolving independence==
85687
85688 Thus the independence of Australia from the United Kingdom, rather than occurring as a single event, has, in legal terms, been a continuing process. Some of the significant milestones discussed above have been the following:
85689
85690 * mid-1800s: acquisition of substantial internal self-government by the colonies
85691 * 1901: establishment of the Commonwealth of Australia
85692 * 1927: development of the &quot;shared&quot; monarchy
85693 * 1931: passing of the Statute of Westminster
85694 * 1986: passing of the Australia Act
85695
85696 Since the Australia Act, the only remaining constitutional link with the United Kingdom (if it is one) is in the person of the monarch (see [[Queen of Australia]]). But even that connection may not be automatic. In an important constitutional case (''Sue v Hill'' (1999) 163 ALR 648), three justices of the [[High Court of Australia]] (the ultimate court of appeal) expressed the view that if the British Parliament were to alter the law of succession to the throne, such a change could ''not'' have any effect on the monarchy in Australia, because of the Australia Act: succession to the throne would continue in Australia according to the existing rule, unless and until that was altered ''in Australia''. None of the other four justices in that case disagreed with this reasoning. (Because it was not strictly necessary to decide the case at hand, this is not strictly a binding judicial determination; but it is almost certainly correct given the [[precedent]] of the [[Abdication Crisis of Edward VIII|Abdication Crisis of 1936]].)
85697
85698 The same case decided (and on this point the decision ''is'' binding) that the United Kingdom is a &quot;foreign power&quot; within the meaning of the Constitution, and therefore that holders of British citizenship are ineligible for election to the Federal Parliament (though a special &quot;grandfathering&quot; arrangement merely phases out the right of British citizens to vote).
85699
85700 ==Crisis in 1975==
85701 The elections of the [[Australian Labor Party]] in [[1972]] and [[1974]] under its leader [[Gough Whitlam]] led to several constitutional issues being tested. For two weeks in 1972, the Government had only two ministers, Whitlam and [[Lance Barnard]]. Although it had a majority in the lower House, the ALP faced a hostile Senate, and the defeat of Government bills led to a double dissolution and a consequent [[Joint Sitting, Australian parliament, 1974|joint sitting]] and the passing of the bills into law as allowed under section 57. The political situation however was not improved much by the 1974 election, and the Senate later failed to provide &quot;supply&quot; (i.e. to pass tax and expenditure acts). The resulting [[Australian constitutional crisis of 1975]] raised a series of issues:
85702 * Must a State Governor appoint a party's nomination as a replacement in the Senate?
85703 * Can the Senate refuse supply or refuse to discuss supply?
85704 * Should the Prime Minister resign in such a situation?
85705 * If he does not, should the Governor-General dismiss him?
85706 * How can the Governor-General and Prime Minister have a sensible discussion when each is able to have the other dismissed immediately provided that the other has not already acted?
85707
85708 Of these, only the first has been partly resolved; an amendment in 1977 changed the procedure for casual appointment. while the State Parliaments can still require a state Governor to appoint somebody who is not the party's nominee, by stripping that nominee of their party membership the party can deny them appointment to the Senate. The State parliament can still refuse to appoint the party's nominee; in this case, a standoff can develop where the vacancy goes unfilled. This occurred in 1987, when the Tasmanian state parliament refused to appoint the Labor Party's nominee for a casual vacancy ([http://www.aph.gov.au/library/pubs/rp/2001-02/02rp18.pdf], reference 99).
85709
85710 ==Towards an Australian republic?==
85711 As already seen, the only remaining constitutional connection with the United Kingdom is through the monarch, who is the monarch not only of the UK, but also of Australia and of each of its States. The main function of the monarch is to appoint and dismiss the Governor-General and the State Governors, and this function is exercised on the advice of the Prime Minister or the relevant State Premier. (The monarch is also sometimes asked to perform some function, such as giving the Royal Assent to an Act of Parliament, for ceremonial purposes during a Royal visit.)
85712
85713 On recent moves to replace the current constitution with a republic, and the defeat of the referendum for this purpose in 1999, see [[Australian republicanism]].
85714
85715 ==See also==
85716 *[[Australian constitutional law]]
85717 *[[Constitutional law]]
85718 *[[Constitutional convention (political meeting)|Constitutional convention]]
85719
85720 ==External links==
85721 *[http://www.aph.gov.au/library/pubs/chron/1999-2000/2000chr01.htm Australian Parliamentary Library -- Australia's Constitutional Milestones]
85722 *[http://www.foundingdocs.gov.au/places/cth/cth1.htm Documentation on Australian Constitutional History]
85723
85724
85725 [[Category:Australian constitutional law]]
85726 [[Category:Constitutional law]]
85727 [[Category:Politics of Australia]]
85728 [[Category:History of Australia]]</text>
85729 </revision>
85730 </page>
85731 <page>
85732 <title>Alfred Russel Wallace</title>
85733 <id>1494</id>
85734 <revision>
85735 <id>40547681</id>
85736 <timestamp>2006-02-21T09:45:03Z</timestamp>
85737 <contributor>
85738 <username>Kcordina</username>
85739 <id>643099</id>
85740 </contributor>
85741 <minor />
85742 <comment>Reverted edits by [[Special:Contributions/212.135.1.57|212.135.1.57]] to last version by 137.99.183.222</comment>
85743 <text xml:space="preserve">[[image:Alfred Russel Wallace.jpg|thumb|200px|Alfred Russel Wallace]]
85744 :''for the [[Cornwall|Cornish]] painter see [[Alfred Wallis]]''
85745 '''Alfred Russel Wallace,''' [[Order of Merit|OM]] , [[Fellow of the Royal Society|FRS]] ([[January 8]] [[1823]] &amp;ndash; [[November 7]] [[1913]]) was a [[United Kingdom|British]] [[Natural history|naturalist]], [[geographer]], [[anthropologist]] and [[biologist]]. Wallace's independent proposal of a theory of [[evolution]] by [[natural selection]] prompted [[Charles Darwin]] to reveal his own more developed and researched, but unpublished, theory sooner than he had intended. He is sometimes called the &quot;[[List of people known as father or mother of something#W|father of biogeography]]&quot;.
85746
85747 ==Early life==
85748
85749 Wallace was born at [[Usk]], [[Monmouthshire]]. He was the eighth of nine children of Thomas Vere Wallace and Mary Anne Greenell. He attended grammar school in [[Hertford]], but left when his family lost their remaining property. He worked for his older brother William in his surveying business, and between [[1840]] and [[1843]] spent his time surveying in the west of [[England]] and [[Wales]]. In [[1844]] he was hired as a master at the Collegiate School in [[Leicester]]. In [[1845]] his brother William died and Wallace returned to run the [[surveying]] business.
85750
85751 [[Image:Alfred Russel Wallace 1862 - Project Gutenberg eText 15997.png|thumbnail|right|200px|A. R. Wallace in [[Singapore]] in [[1862]]]]
85752 ==Exploration and study of the natural world==
85753
85754 In [[1848]], Wallace, together with another naturalist, [[Henry Walter Bates]] (whom he had met in [[Leicester]]), left for [[Brazil]] to collect specimens in the [[Amazon Rainforest]], with the express intention of gathering facts in order to solve the riddle of the origin of species. Unfortunately, a large part of his collection was destroyed when his ship caught fire and sank while returning to Britain in [[1852]].
85755
85756 From [[1854]] to [[1862]], he travelled through the [[Malay Archipelago]] or [[East Indies]] (now [[Malaysia]] and [[Indonesia]]), to collect specimens and study nature. His observations of the marked zoological differences across a narrow zone in the archipelago led to his hypothesis of the zoogeographical boundary now known as the [[Wallace line]]. One of his better known species descriptions during this trip is the gliding tree [[frog]] ''Rhacophorus nigropalmatus'', Wallace's flying frogs. His studies there were eventually published in [[1869]] as ''The Malay Archipelago''.
85757
85758 ==Theory of evolution==
85759
85760 : See also [[Publication of Darwin's theory]].
85761
85762 In [[1855]], Wallace published a paper, [http://www.wku.edu/%7Esmithch/wallace/S020.htm &quot;On the Law Which has Regulated the Introduction of Species&quot; (1855)], in which he gathers and enumerates general observations regarding the geographic and geologic distribution of species ([[biogeography]]), and concludes that &quot;Every species has come into existence coincident both in space and time with a closely allied species.&quot; The paper was a foreshadowing of the momentous paper he would write three years hence.
85763
85764 Wallace had once briefly met Darwin, and was one of Darwin's numerous correspondents from around the world, whose observations Darwin used to support his theories. Wallace knew that Darwin was interested in the question of how species originate, and trusted his opinion on the matter. Thus, he sent him his essay, [http://www.wku.edu/%7Esmithch/wallace/S043.htm &quot;On the Tendency of Varieties to Depart Indefinitely From the Original Type&quot; (1858)], and asked him to review it. On [[18 June]] [[1858]] Darwin received the manuscript from Wallace. In it, Wallace described a novel theory of what is now known as &quot;natural selection,&quot; and he proposed that it explains the diversity of life. It was essentially the same as the theory that Darwin had worked on for twenty years, but had yet to publish. Darwin wrote in a letter to [[Charles Lyell]]: &quot;he could not have made a better short abstract! Even his terms now stand as heads of my chapters!&quot; Although Wallace had not requested that his essay be published, Charles Lyell and [[Joseph Dalton Hooker|Joseph Hooker]] decided to present the essay, together with excerpts from a paper that Darwin had written in [[1844]], and kept confidential, to the [[Linnean Society of London]] on [[1 July]] [[1858]], highlighting Darwin's priority.
85765
85766 Wallace accepted the arrangement after the fact, grateful that he had been included at all. Darwin's social and scientific status was at that time far greater than Wallace's, and it was unlikely that Wallace's views on evolution would have been taken as seriously. Though relegated to the position of co-discoverer, and never the social equal of Darwin or the other elite British natural scientists, Wallace was granted far greater access to tightly-regulated British scientific circles after the advocacy on his part by Darwin. When he returned to England, Wallace met Darwin and the two remained friendly afterwards.
85767
85768 ==Religious views, and application of the theory to mankind==
85769
85770 In a letter to a relative in [[1861]], Wallace wrote: &quot;I think I have fairly heard and fairly weighed the evidence on both sides, and I remain an utter disbeliever in almost all that you consider the most sacred truths... I can see much to admire in all religions... But whether there be a God and whatever be His nature; whether we have an immortal soul or not, or whatever may be our state after death, I can have no fear of having to suffer for the study of nature and the search for truth....&quot;
85771
85772 In [[1864]], before Darwin had publicly addressed the subject&amp;mdash;though others had&amp;mdash;Wallace published a paper, ''The Origin of Human Races and the Antiquity of Man Deduced from the Theory of 'Natural Selection''', applying the theory to mankind. Wallace subsequently became a [[spiritualism|spiritualist]], and later maintained that natural selection cannot account for mathematical, artistic, or musical genius, as well as metaphysical musings, and wit and humor; and that something in &quot;the unseen universe of Spirit&quot; had interceded at least three times in history: 1. The creation of life from inorganic matter. 2. The introduction of consciousness in the higher animals. 3. The generation of the above-mentioned faculties in mankind. He also believed that the raison d'ÃĒtre of the universe was the development of the human spirit. (See Wallace (1889)). These views greatly disturbed Darwin in his lifetime, who argued that spiritual appeals were not necessary and that [[sexual selection]] could easily explain such apparently non-adaptive phenomena.
85773
85774 In many accounts of the history of evolution, Wallace is relegated to a role of simply being the &quot;stimulus&quot; to Darwin's own theory. In reality, Wallace developed his own distinct evolutionary views which diverged from Darwin's, and was considered by many (especially Darwin) to be a chief thinker on evolution in his day whose ideas could not be ignored. He is among the most cited naturalists in Darwin's ''[[Descent of Man]]'', often in strong disagreement.
85775
85776 [[Image:Alfred Russel Wallace - Project Gutenberg eText 14558.jpg|thumbnail|right|250px|Alfred Russel Wallace, and signature, from the frontispiece of ''Darwinism'' (1889)]]
85777
85778 ==Precursor of ecology, and awards==
85779 Wallace was the first to propose a [[biogeography|&quot;geography&quot;]] of animal species, and as such is considered one of the [[ecology#The_notion_of_biocenose:_Darwin_and_Wallace|precursors of ecology]] and [[biogeography|biogeography]].
85780
85781 ==Awards==
85782 Among the many awards presented to Wallace were the [[Order of Merit]] ([[1908]]), the [[Royal Society]]'s [[Copley Medal]] ([[1908]]), the [[Royal Geographical Society]]'s Founder's Medal ([[1892]]) and the Linnean Society's Gold Medal ([[1892]]).
85783
85784 He is also honored by having [[Impact crater|crater]]s on [[Mars (planet)|Mars]] and the [[Moon]] named after him. Having sometimes been referred to as &quot;Darwin's Moon&quot; it is amusing that Wallace has a crater on the Moon named after himself.
85785
85786 ==References==
85787 *Wallace, Alfred Russel (1889). [http://www.wku.edu/~smithch/wallace/S724CH15.htm ''Darwinism'', Chapter 15.]
85788 ==Publications==
85789 *Alfred Russel Wallace: ''Vaccination A Delusion'', '''1898''', ''Swan Sonnenschein &amp; Co, LTD'' [http://www.vaccination.org.uk/vaccine/wallace/book.html]
85790
85791 ==External links==
85792 *[http://www.wku.edu/~smithch/index1.htm The Alfred Russel Wallace Page]
85793 *[http://www.worldwideschool.org/library/books/geo/travel/TheMalayArchipelagoVolume1/toc.html Alfred Russel Wallace, ''The Malay Archipelago'']
85794 * {{gutenberg author| id=Alfred+Russel+Wallace | name=Alfred Russel Wallace}}
85795
85796 ==Books about Wallace==
85797 *''Just Before the Origin: Alfred Russel Wallace's Theory of Evolution'' by John Langdon Brooks ISBN 1583481117
85798 *''The Spice Islands Voyage: The Quest for Alfred Wallace, the Man Who Shared Darwin's Discovery of Evolution'' by Tim Severin ISBN 0786707216
85799 *''My Life'' an autobiography : (1905) Alfred Russel Wallace By Chapman &amp; Hall, Ltd., London
85800
85801 ==See also==
85802 *[[Australia-New Guinea]]
85803 *[[Wallace line]]
85804
85805 [[Category:1823 births|Wallace, Alfred Russel]]
85806 [[Category:1913 deaths|Wallace, Alfred Russel]]
85807 [[Category:British scientists|Wallace, Alfred Russel]]
85808 [[Category:Evolutionary biologists|Wallace, Alfred Russel]]
85809 [[Category:Fellows of the Royal Society|Wallace, Alfred Russel]]
85810 [[Category:Natives of Monmouthshire|Wallace, Alfred Russel]]
85811 [[Category:Welsh scientists|Wallace, Alfred Russel]]
85812 [[Category:Members of the Order of Merit|Wallace, Alfred Russel]]
85813 [[cy:Alfred Russel Wallace]]
85814 [[de:Alfred Russel Wallace]]
85815 [[es:Alfred Russel Wallace]]
85816 [[fr:Alfred Russel Wallace]]
85817 [[he:אלפרד ראסל ואלאס]]
85818 [[nl:Alfred Russel Wallace]]
85819 [[ja:ã‚ĸãƒĢフãƒŦッドãƒģナッã‚ģãƒĢãƒģã‚Ļã‚ŠãƒŦã‚š]]
85820 [[no:Alfred Russel Wallace]]
85821 [[pl:Alfred Russel Wallace]]
85822 [[pt:Alfred Russel Wallace]]
85823 [[sv:Alfred Russel Wallace]]
85824 [[tr:Alfred Russel Wallace]]</text>
85825 </revision>
85826 </page>
85827 <page>
85828 <title>Australian Labor Party</title>
85829 <id>1495</id>
85830 <revision>
85831 <id>42046235</id>
85832 <timestamp>2006-03-03T12:40:41Z</timestamp>
85833 <contributor>
85834 <username>BrownHairedGirl</username>
85835 <id>754619</id>
85836 </contributor>
85837 <comment>/* History */ dab. catholic</comment>
85838 <text xml:space="preserve">{{redirect|ALP}}
85839 {{Infobox_Australian_Political_Party |
85840 party_name = Australian Labor Party |
85841 party_logo = [[Image:Alp.png|100px|Australian Labor Party Logo]] |
85842 party_wikicolourid = Labor |
85843 leader = [[Kim Beazley]] |
85844 deputy leader = [[Jenny Macklin]] |
85845 foundation = [[1890s]] |
85846 ideology = [[social democracy]]|
85847 headquarters = [[Centenary House]]&lt;br/&gt;19 National Circuit&lt;br/&gt;
85848 [[Canberra|BARTON]] [[Australian Capital Territory|ACT]] 2600 |
85849 holds_government = [[New South Wales|NSW]], [[Victoria (Australia)|VIC]], [[Queensland|QLD]], [[South Australia|SA]]&lt;br /&gt;[[Western Australia|WA]], [[Tasmania|TAS]], [[Australian Capital Territory|ACT]] &amp; [[Northern Territory| NT]]|
85850 website = [http://www.alp.org.au Australian Labor Party]|
85851 international = [[Socialist International]]
85852 }}
85853 The '''Australian Labor Party''' or '''ALP''' is [[Australia]]'s oldest [[political party]]. It is so-named because of its origins in and close links to the [[labor union|trade union]] movement. While it is standard practice in [[Australian English]] to spell the word ''[[Wiktionary:labour|labour]]'' with an &quot;-our&quot; ending, the name of the party ends with &quot;-or&quot;.
85854
85855 ==Policy==
85856 Like other [[social democratic]] parties, Labor tends to believe that government is generally a positive force in the community and that it is the responsibility of governments to intervene in the operation of the economy (and society in general) to improve outcomes. Labor believes that the government should ensure that all members of society receive a basic income in order to have a &quot;decent quality of life&quot;. Labor also believes that the government should ensure that all members of society are able to access quality and affordable housing as well as education and health services [http://www.alp.org.au/about/values.php].
85857
85858 Taking these objectives into account, like most social democratic parties around the world, Labor has embraced more free market principles since the beginning of the [[1980s]]. For example, Labor supports and implemented the dismantling of trade barriers and deregulation of industry. However, the party argues that it made these changes more moderately and with greater concern for those made worse off from these changes than the [[Coalition (Australia)|Coalition]] would have. Labor's policy shift has had critics from both the [[Left-wing politics|left]] and the [[Right-wing politics|right]] of the political spectrum. The left says that Labor has abandoned its traditional base and values and that its policies are indistinguishable from those of the Coalition. The right argues that Labor doesn't embrace enough neo-liberal economics and that it is sticking to a tired, union-dominated ideology.
85859
85860 Since the 1970s and 1980s Labor has supported [[multiculturalism]] and generally is more likely to approve of higher immigration levels than the Coalition. Labor is the primary supporter of issues that affect [[indigenous Australians]] such as land rights and supports a formal apology on the issue of the [[stolen generation]]. Labor is also more likely to support additional rights for gay and lesbian people and it is a stronger supporter of equal opportunity legislation than the Coalition. Labor MPs are more likely to support [[pro-choice]] positions on [[abortion]] and [[euthanasia]], but the party almost always provides MPs with a [[conscience vote]] on these matters. Many MPs use this option to take a [[pro-life]] position, and the ALP has traditionally had a &quot;Catholic Right&quot; element (since Roman Catholics in Australia were traditionally working-class and thus inclined to support Labor) which continues to defend socially conservative positions on the family, abortion, euthanasia and homosexuality; however, its influence has declined somewhat. Many of the more socially liberal positions which often characterise the party today reflect the transformation of the ALP begun in the late 1960s and early 1970s under [[Gough Whitlam]] from a party dominated by the socially conservative working class to a party drawing a large slab of support from the new socially liberal middle class.
85861
85862 Internationally, Labor generally believes in [[multilateralism]], but is often more critical of Australia's relationship with large international powers like the [[United States]] and historically the [[United Kingdom]] than the Liberal Party. However, many members of the Labor Party, especially those affiliated with right-wing factions, are strong supporters of the alliance with the United States. This support is also official party policy. However, Labor opposed the [[2003 invasion of Iraq]] (though it did support the [[2001 invasion of Afghanistan]]). In his welcome speech to [[President of the United States|US President]] [[George W. Bush]], former leader [[Simon Crean]] said:
85863
85864 :''The Australian perspective is bound to differ, from time to time, with the perspective of the United States. Of course, on occasions, friends disagree, as we on this side did with you on the war in Iraq. But, such is the strength of our shared values, interests and principles, those differences can enrich rather than diminish, strengthen rather than weaken, our partnership. Our commitment to the Alliance remains unshakeable, as does our commitment to the [[War on Terror]], but friends must be honest with each other.''[http://www.australianpolitics.com/news/2003/10/03-10-23b.shtml]
85865
85866 Labor also supports a greater level of Australian integration with Asia than the Liberal Party, but this distinction is starting to narrow with increasing Liberal Party support for stronger Asian relationships, especially with [[Indonesia]].
85867
85868 ==Structure==
85869 The Australian Labor Party is a democratic and federal party, which consists of both individual members and affiliated trade unions, who between them decide the party's policies, elect its governing bodies and choose its candidates for public office. The great majority of trade unions in Australia are affiliated to the party, and their affiliation fees, based on the size of their memberships, makes up a large part of the party's income. The party consists of six state and two territory branches, each of which consists of local branches which any Australian citizen or permanent resident can join, plus affiliated trade unions. Individual members pay a membership fee, which is graduated according to income. Members are expected to attend at least one meeting of their local branch each year. In practice only a dedicated minority regularly attend meetings. Many members only become active during election campaigns. The party has about 50,000 individual members, although this figure tends to fluctuate along with the party's electoral fortunes.
85870
85871 [[Image:ac.kimbeazleynew.jpg|thumb|300px|Hon Kim Beazley, Leader of the Australian Labor Party 1996-2001 and since 2005]]
85872
85873 The members and unions elect delegates to state and territory conferences (usually held annually, although more frequent conferences are often held). These conferences decide policy, and elect state or territory executives, a state or territory president (an honorary position usually held for a one-year term), and a state or territory secretary (a full-time professional position). The larger branches also have full-time assistant secretaries and organisers. In the past the ratio of conference delegates coming from the branches and affiliated unions has varied from state to state, however under recent national reforms at least 50% of delegates at all state and territory conferences must be elected by branches.
85874
85875 The party holds a National Conference every three years, which consists of delegates representing the state and territory branches (many coming from affiliated trade unions, although there is no formal requirement for unions to be represented at the National Conference). The National Conference approves the party's Platform and policies, elects the [[Australian Labor Party National Executive|National Executive]], and appoints office-bearers such as the National Secretary, who also serves as national campaign director during elections. The current National Secretary is [[Tim Gartrell]]. The next National Conference will be held in January [[2007]].
85876
85877 The national Leader of the Labor Party is elected by the Labor members of the national Parliament (the [[Caucus]]), not by the conference. Until recently the national conference elected the party's National President, a largely honorary position, but since [[2003]] the position has rotated among people directly elected by the party's individual members. The current National President is [[Warren Mundine]], who assumed the past in January 2006. The two Vice-Presidents are [[Barry Jones (Australian politician)|Barry Jones]], a veteran party figure who was a minister in the [[Bob Hawke|Hawke]] government, and Dr [[Carmen Lawrence]], a former Premier of Western Australia and minister in the [[Paul Keating|Keating]] government.
85878
85879 The Labor Party contests national, state and territory elections. In some states it also contests local government elections: in others it does not, preferring to allow its members to run as non-endorsed candidates. The process of choosing Labor candidates is called '''pre-selection'''. Candidates are pre-selected by different methods in the various states and territories. In some they are chosen by ballots of all party members, in others by panels or committees elected by the state conference, in still others by a combination of these two. Labor candidates are required to sign a pledge that if elected they will always vote in Parliament in accordance with decisions made by a vote of the Caucus. They are also sometimes required to donate a portion of their salary to the party, although this practice has declined with the introduction of public funding for political parties.
85880
85881 The Labor Party has always had a left wing and a right wing, but since the 1970s it has been organised into formal factions, to which many party members belong and often pay an additional membership fee. The two largest factions are [[Labor Unity]] (on the right) and the [[Socialist Left|National Left]]. Labor Unity generally supports free-market policies and the U.S. Alliance. The National Left, although it seldom openly espouses [[socialism]], favours more state intervention in the economy and is generally opposed to the U.S. Alliance. The factions are themselves divided into sub-factions, and there is a constantly changing pattern of factional and sub-factional alliances around particular policy issues or around particular pre-selection disputes. Frequently these alliances and disputes reflect power struggles between or within trade unions.
85882
85883 The trade unions are also factionally aligned. The largest unions supporting the right are the [[Australian Workers Union]] (AWU), the [[National Union of Workers]] (NUW), the [[Shop, Distributive and Allied Employees' Association]] (SDA). Important unions supporting the left include the [[Australian Manufacturing Workers Union]] (AMWU), the [[Liquor, Hospitality and Miscellaneous Union]] (LHMU), the [[Construction, Forestry, Mining and Energy Union]] (CFMEU), the [[Australian Services Union]] (ASU) and the [[Maritime Union of Australia]] (MUA). But these affiliations are seldom unconditional or permanent. The AWU and the NUW, for example, are bitter rivals and the NUW sometimes aligns itself with the left to further its conflict with the AWU. On some issues, such as opposition to the Howard government's industrial relations policy, all the unions are in agreement and work as a block within the party.
85884
85885 Pre-selections are usually conducted along factional lines, although sometimes a non-factional candidate will be given preferential treatment (this happened with [[Cheryl Kernot]] in [[1998]] and again with [[Peter Garrett]] in [[2004]]). Deals between the factions to divide up the safe seats between them are also common. Pre-selections, particularly for safe Labor seats, are often bitterly contested, and have frequently involved practices such as '''[[branch stacking]]''' (signing up large numbers of nominal party members to vote in pre-selection ballots), [[personation]], multiple voting and even fraudulent electoral enrolment. Trade unions were in the past accused of giving inflated membership figures to increase their influence over pre-selections, but party rules changes have stamped out this practice. Pre-selection results are frequently challenged, and the National Executive is sometimes called on to arbitrate these disputes.
85886
85887 ==History==
85888
85889 No exact date can be given for the founding of the Australian Labor Party, originating as it did from the various colonial labour movements. Labour Leagues and similar electoral organisations existed in [[New South Wales]] and [[Queensland]] from about [[1890]]. Party mythology says the first Labour branch was founded at a meeting of striking pastoral workers under a tree (the &quot;Tree of Knowledge&quot;) in [[Barcaldine, Queensland]] in [[1891]]. The [[Balmain, New South Wales]] branch of the party also claims to be the oldest in Australia. The party as a serious electoral force dates from [[1893]] in Queensland, [[1894]] in New South Wales, and later in the other colonies. In [[1899]], [[Anderson Dawson]] formed a minority Labour government in [[Queensland]], the first in the world, which lasted one week.
85890
85891 After [[Australian Federation|Federation]], the Federal Parliamentary Labor Party (informally known as the [[caucus|Caucus]]) first met on the [[8 May]] [[1901]] at [[Parliament House, Melbourne]], the meeting place of the first Federal Parliament. This is now taken as the founding date of the federal Labor Party, but it was some years before there was any significant structure or organisation at a national level. (The formal name '''Australian Labor Party''' was adopted in [[1908]].)
85892
85893 The ALP during its early years was distinguished by its rapid growth and success at a national level, first forming a minority national government under [[Chris Watson]] in April [[1904]], and forming its first majority government under [[Andrew Fisher]] in [[1910]]. The state branches were also successful, except in [[Victoria (Australia)|Victoria]], where the strength of [[Alfred Deakin|Deakinite]] [[liberalism]] inhibited the party's growth. The first majority Labor state governments were formed in [[New South Wales]] and [[South Australia]] in [[1910]], in [[Western Australia]] in [[1911]] and in [[Queensland]] in [[1915]]. Such success eluded equivalent social democratic and labour parties in other countries for many years.
85894
85895 One of the party's early innovations was the establishment of a federal [[arbitration]] system for the resolution of industrial disputes, which formed the basis of the industrial relations system for many decades.
85896
85897 The party was historically committed to [[socialist]] economic policies, but this term was never clearly defined, and no Labor government ever attempted to implement &quot;socialism&quot; in any serious sense. Labor supported national wage fixing and a strong welfare system, it did not [[nationalisation|nationalise]] private enterprise. The single exception to this was [[Ben Chifley]]'s attempt to nationalise the private banks in the [[1940s]], but this was ruled unconstitutional by the [[High Court of Australia]]. The commitment to nationalisation was dropped by [[Gough Whitlam]].
85898
85899 In the [[1970s]] and beyond, the party, through the efforts of [[Gough Whitlam]] and his supporters within the party, gave up its theoretical commitment to socialism and became a [[social democrat]]ic party. (Some references to [[democratic socialism]] still remain in the party's constitution, but they are generally regarded as a relic). Indeed, during the [[1980s]] the party was responsible for the introduction of many economic policies such as [[privatization|privatisation]] of government enterprises (such as the [[Commonwealth Bank]], which was itself established by an earlier Labor government), and [[deregulation]] of many previously tightly-controlled industries, which are normally the province of [[conservative]] governments.
85900
85901 From its formation until the 1950s Labor and its affiliated unions were the strongest defenders of the [[White Australia Policy]], which banned all non-European migration to Australia. This policy was partly motivated by 19th-century theories about &quot;racial purity&quot; (shared by most Australians at this time), and partly by fears of economic competition from low-wage labour. In practice the party opposed all migration, on the grounds that immigrants competed with Australian workers and drove down wages, until after [[World War II]], when the [[Ben Chifley|Chifley]] government launched a major immigration program. The party's opposition to non-European immigration did not change until after the retirement of [[Arthur Calwell]] as leader in [[1967]]. Subsequently Labor has become an advocate of [[multiculturalism]], although some of its trade union base continue to oppose high immigration levels.
85902
85903 The Labor Party has suffered three major splits:
85904
85905 *In [[1915]] over the issue of conscription, when Prime Minister [[Billy Hughes]] supported the introduction of [[conscription]], while the majority of the party opposed it. After failing to persuade the Australian voters to support a [[referendum]] approving of conscription which bitterly divided the country in the process, Hughes and his followers were expelled from the Labor Party. He formed the [[Nationalist Party of Australia]] in alliance with the conservatives and remained Prime Minister until [[1923]].
85906
85907 *In [[1931]] over economic issues revolving around how to handle the [[Great_Depression|depression]]. The ALP was split between those who believed in radical policies such as NSW Premier [[Jack Lang (Australia)|Jack Lang]], who wanted to repudiate Australia's debt to British bondholders, proto-[[Keynesian economics|Keynesians]] such as federal Treasurer [[Ted Theodore]], and believers in orthodox finance such as Prime Minister [[James Scullin]] and a senior minister in his government, [[Joseph Lyons]]. In [[1931]] Lyons left the party and joined the conservatives, becoming Prime Minister in [[1932]].
85908
85909 *The [[1954]] split on [[communism]]. During the [[1950s]] the issue of communism and support for communist causes or governments caused great internal conflict in the Labor party and the trade union movement in general. During the 1950's, staunchly [[anti-Communist]] [[Roman Catholic Church|Roman Catholic]] members (Catholics being an important traditional support base) became suspicious of Communist infiltration of unions and formed Industrial Groups to gain control of them, fostering intense internal conflict. After Labor's loss of the [[1954]] election, federal leader [[H.V. Evatt|Dr H.V. Evatt]] blamed the subversive activities of the &quot;Groupers&quot; for the defeat. They were expelled from the ALP and formed the [[Democratic Labor Party]] (DLP) whose intellectual leader was [[B.A. Santamaria]]. The DLP was heavily influenced by [[Roman Catholic Church|Catholic]] social teachings and had the support of the Catholic Archbishop of [[Melbourne]], [[Daniel Mannix]]. The DLP helped the [[Liberal Party of Australia]] remain in power for almost two decades but was successfully undermined by the [[Gough Whitlam|Whitlam]] Labor Government during the [[1970s]] and ceased to exist as a parliamentary party after the [[1974]] election.
85910
85911 The Labor Party thus served as a development ground for several conservative leaders. Conservative Prime Ministers [[Joseph Cook]], [[Billy Hughes]] and [[Joseph Lyons]] were all ex-members of the Labor Party, with both Hughes and Lyons holding very senior positions in the party (Prime Minister and Premier respectively). Non-Labor premiers such as [[William Holman]] also began their careers in the Labor Party.
85912
85913 Labor, like parties of the broad centre in most countries, draws criticism from both left and right. Critics from the left say Labor has abandoned its traditional base and values and that its policies are indistinguishable from those of the conservative parties. Right-wing critics accuse Labor of sticking to a tired, union-dominated ideology. Many members of the party are critical of the role of the factions and of union leaders, who they accuse of colluding to stifle party democracy. The party has also been criticised for accepting political donations from real estate interests, particularly in NSW, and for its links to gambling industries.
85914
85915 Through its membership of the [[Socialist International]], the ALP is affiliated with other democratic socialist, social democratic and labour parties in many countries.
85916
85917 ==ALP federal leaders==
85918 * [[Chris Watson]] 1901-08 (Prime Minister 1904)
85919 * [[Andrew Fisher]] 1908-15 (Prime Minister 1908-09, 1910-13, 1914-15)
85920 * [[Billy Hughes]] 1915-16 (Prime Minister 1915-23, expelled from Labor Party 1916)
85921 * [[Frank Tudor]] 1916-22
85922 * [[Mathew Charlton]] 1922-28
85923 * [[James Scullin]] 1928-35 (Prime Minister 1929-32)
85924 * [[John Curtin]] 1935-45 (Prime Minister 1941-45)
85925 * [[Ben Chifley]] 1945-51 (Prime Minister 1945-49)
85926 * [[H.V. Evatt|Dr H.V. Evatt]] 1951-60
85927 * [[Arthur Calwell]] 1960-67
85928 * [[Gough Whitlam]] 1967-77 (Prime Minister 1972-75)
85929 * [[Bill Hayden]] 1977-83
85930 * [[Bob Hawke]] 1983-91 (Prime Minister 1983-91)
85931 * [[Paul Keating]] 1991-96 (Prime Minister 1991-96)
85932 * [[Kim Beazley]] 1996-2001
85933 * [[Simon Crean]] 2001-03
85934 * [[Mark Latham]] 2003-05
85935 * [[Kim Beazley]] 2005-
85936
85937 [[List of ALP federal leaders by time served]]
85938
85939 ==Current ALP State Premiers / Territory Chief Ministers==
85940 * [[Peter Beattie]] (Premier of [[Queensland]])
85941 * [[Steve Bracks]] (Premier of [[Victoria (Australia)|Victoria]])
85942 * [[Mike Rann]] (Premier of [[South Australia]])
85943 * [[Clare Martin]] (Chief Minister of the [[Northern Territory]])
85944 * [[Jon Stanhope]] (Chief Minister of the [[Australian Capital Territory]])
85945 * [[Paul Lennon]] (Premier of [[Tasmania]])
85946 * [[Morris Iemma]] (Premier of [[New South Wales]])
85947 * [[Alan Carpenter]] (Premier of [[Western Australia]])
85948
85949 ==Past ALP State Premiers and Territory Chief Ministers==
85950 &lt;!--Please note these are PAST PREMIERS: do NOT put present day Premiers in here--&gt;.
85951 '''New South Wales'''
85952 * [[Bob Carr]] ([[1995]]&amp;ndash;[[2005]])
85953 * [[Barrie Unsworth]] ([[1986]]&amp;ndash;[[1988|88]])
85954 * [[Neville Wran]] ([[1976]]&amp;ndash;[[1986|86]])
85955 * [[Jack Renshaw]] ([[1964]]&amp;ndash;[[1965|65]])
85956 * [[Robert Heffron]] ([[1959]]&amp;ndash;[[1964|64]])
85957 * [[Joseph Cahill]] ([[1952]]&amp;ndash;[[1959|59]])
85958 * [[James McGirr]] ([[1947]]&amp;ndash;[[1952|52]])
85959 * [[William McKell]] ([[1941]]&amp;ndash;[[1947|47]])
85960 * [[Jack Lang (Australia)|Jack Lang]] ([[1925]]&amp;ndash;[[1927|27]], [[1930]]&amp;ndash;[[1932|32]])
85961 * [[James Dooley (Australian politician)|James Dooley]] ([[1921]]&amp;ndash;[[1921|21]], [[1921]]&amp;ndash;[[1922|22]])
85962 * [[John Storey]] ([[1920]]&amp;ndash;[[1921|21]])
85963 * [[William Holman]] ([[1913]]&amp;ndash;[[1916|16]])
85964 * [[James McGowen]] ([[1910]]&amp;ndash;[[1913|13]], first Labor premier of New South Wales)
85965 '''Victoria'''
85966 * [[Joan Kirner]] ([[1990]]&amp;ndash;[[1992|92]], first female Premier of Victoria)
85967 * [[John Cain]] ([[1982]]&amp;ndash;[[1990|90]])
85968 * [[John Cain (senior)]] ([[1943]], [[1945]]&amp;ndash;[[1947|47]], [[1952]]&amp;ndash;[[1955|55]])
85969 * [[Edmond Hogan]] ([[1927]]&amp;ndash;[[1928|28]], [[1929]]&amp;ndash;[[1932|32]])
85970 * [[George Prendergast]] ([[1924]])
85971 * [[George Elmslie (Australian politician)|George Elmslie]] ([[1913]])
85972 '''Queensland'''
85973 * [[Wayne Goss]] ([[1989]]&amp;ndash;[[1996|96]])
85974 *[[Vince Gair]] ([[1952]]-[[1957|57]])
85975 *[[Ned Hanlon]] ([[1946]]-[[1952|52]])
85976 *[[Frank Cooper]] ([[1942]]-[[1946|46]])
85977 *[[William Forgan Smith]] ([[1932]]-[[1942|42]])
85978 *[[William McCormack]] ([[1925]]-[[1929|29]])
85979 *[[William Gillies]] ([[1925]])
85980 * [[Ted Theodore]] ([[1919]]&amp;ndash;[[1925|25]])
85981 * [[Thomas Joseph Ryan|Tom Ryan]] ([[1915]]&amp;ndash;[[1919|19]])
85982 * [[Anderson Dawson]] ([[1899]], world's first leader of a parliamentary socialist government)
85983 '''Western Australia'''
85984 * [[Geoff Gallop|Dr Geoff Gallop]] ([[2001]]-[[2005]])
85985 * [[Carmen Lawrence|Dr Carmen Lawrence]] ([[1990]]&amp;ndash;[[1993|93]], first female Premier of an Australian state)
85986 * [[Peter Dowding]] ([[1988]]&amp;ndash;[[1990|90]])
85987 * [[Brian Burke]] ([[1983]]&amp;ndash;[[1988|88]])
85988 * [[John Tonkin]] ([[1971]]&amp;ndash;[[1974|74]])
85989 * [[Albert Hawke]] ([[1953]]&amp;ndash;[[1959|59]])
85990 * [[Frank Wise]] ([[1945]]&amp;ndash;[[1947|47]])
85991 * [[John Willcock]] ([[1936]]&amp;ndash;[[1945|45]])
85992 * [[Phillip Collier]] ([[1924]]&amp;ndash;[[1930|30]], [[1933]]&amp;ndash;[[1936|36]])
85993 * [[John Scaddan]] ([[1911]]&amp;ndash;[[1916|16]])
85994 * [[Henry Daglish]] ([[1904]]&amp;ndash;[[1905|05]], first Labor premier of Western Australia)
85995 '''South Australia'''
85996 * [[Lynn Arnold]] ([[1992]]&amp;ndash;[[1993|93]])
85997 * [[John Bannon]] ([[1982]]&amp;ndash;[[1992|92]])
85998 * [[Des Corcoran]] ([[1979]])
85999 * [[Don Dunstan]] ([[1967]]&amp;ndash;[[1968|68]], [[1970]]&amp;ndash;[[1979|79]])
86000 * [[Frank Walsh]] ([[1965]]&amp;ndash;[[1967|67]])
86001 * [[Robert Richards]] ([[1933]])
86002 * [[Lionel Hill]] ([[1926]]&amp;ndash;[[1927|27]], [[1930]]&amp;ndash;[[1933|33]])
86003 * [[John Gunn (Australian politician)|John Gunn]] ([[1924]]&amp;ndash;[[1926|26]])
86004 * [[Crawford Vaughan]] ([[1915]]&amp;ndash;[[1917|17]])
86005 * [[John Verran]] ([[1910]]&amp;ndash;[[1912|12]])
86006 * [[Thomas Price]] ([[1905]]&amp;ndash;[[1909|09]], first Labor premier of South Australia)
86007 '''Tasmania'''
86008 * [[Jim Bacon]] ([[1998]]&amp;ndash;[[2004]])
86009 * [[Michael Field (Australian politician)|Michael Field]] ([[1989]]&amp;ndash;[[1992|92]])
86010 * [[Harry Holgate]] ([[1981]]&amp;ndash;[[1982|82]])
86011 * [[Bill Neilson]] ([[1975]]&amp;ndash;[[1977|77]])
86012 * [[Eric Reece]] ([[1958]]&amp;ndash;[[1969|69]], [[1972]]&amp;ndash;[[1975|75]])
86013 * [[Edward Brooker]] ([[1947]]&amp;ndash;[[1948|48]])
86014 * [[Robert Cosgrove]] ([[1939]]&amp;ndash;[[1947|47]], [[1948]]&amp;ndash;[[1958|58]])
86015 * [[Edmund Dwyer-Gray]] ([[1939]])
86016 * [[Albert Ogilvie]] ([[1934]]&amp;ndash;[[1939|39]])
86017 * [[Joseph Lyons]] ([[1923]]&amp;ndash;[[1928|28]])
86018 * [[John Earle (Australian politician)|John Earle]] ([[1909]], [[1914]]&amp;ndash;[[1916|16]])
86019 '''Australian Capital Territory'''
86020 * [[Rosemary Follett]] ([[1989]], [[1991]]&amp;ndash;[[1995|95]], first female head of an Australian state or territory)
86021
86022 ==Other past Labor politicians==
86023 * [[Lance Barnard]]
86024 * [[John Beasley]]
86025 * [[Kim Beazley, senior]]
86026 * [[Lionel Bowen]]
86027 * [[Clyde Cameron]]
86028 * [[Jim Cairns]]
86029 * [[Rex Connor]]
86030 * [[Frank Crean]]
86031 * [[Fred Daly]]
86032 * [[Al Grassby]]
86033 * [[Ted Holloway]]
86034 * [[Brian Howe]]
86035 * [[Lionel Murphy]]
86036 * [[Graham Richardson]]
86037 * [[Ted Theodore]]
86038 * [[Eddie Ward]]
86039 * [[Ralph Willis]]
86040 * [[John Button]]
86041
86042 For current ALP federal politicians, see:
86043 * [[List of members of the Australian House of Representatives]]
86044 * [[List of members of the Australian Senate]]
86045
86046 == See also ==
86047 * [[Politics of Australia]]
86048 * [[Premiers of the Australian states]]
86049 * [[List of political parties in Australia]]
86050 * [[Emma Miller]]
86051
86052 == External links ==
86053 * [http://www.alp.org.au/ Australian Labor Party]
86054 * [http://www.smh.com.au/articles/2004/03/21/1079823242925.html Labor coast to coast? Bloody hell!] (critical commentary)
86055 * [http://nla.gov.au/nla.aus-vn2599036 Australian Labor Party (ALP) ephemera] digitised and held by the National Library of Australia
86056 * [http://www.democracy4sale.org/ Critics of political donations]
86057
86058 {{Australian political parties}}
86059
86060
86061 [[Category:Australian labour movement]]
86062 [[Category:Labour parties]]
86063 [[Category:Political parties in Australia]]
86064 [[Category:Social democratic parties]]
86065 [[Category:Socialist International]]
86066
86067 [[de:Australian Labor Party]]
86068 [[eo:AÅ­stralia Labora Partio]]
86069 [[es:Partido Laborista (Australia)]]
86070 [[fr:Parti travailliste australien]]
86071 [[lt:Australijos darbininkÅŗ partija]]
86072 [[pl:Australian Labor Party]]
86073 [[ru:АвŅŅ‚Ņ€Đ°ĐģиКŅĐēĐ°Ņ ĐģĐĩКйОŅ€Đ¸ŅŅ‚ŅĐēĐ°Ņ ĐŋĐ°Ņ€Ņ‚иŅ]]</text>
86074 </revision>
86075 </page>
86076 <page>
86077 <title>August 18</title>
86078 <id>1496</id>
86079 <revision>
86080 <id>41777493</id>
86081 <timestamp>2006-03-01T17:58:15Z</timestamp>
86082 <contributor>
86083 <username>Rklawton</username>
86084 <id>754622</id>
86085 </contributor>
86086 <comment>/* Births */ added reason</comment>
86087 <text xml:space="preserve">{| style=&quot;float:right;&quot;
86088 |-
86089 |{{AugustCalendar}}
86090 |-
86091 |{{ThisDateInRecentYears|Month=August|Day=18}}
86092 |}
86093 '''[[August 18]]''' is the 230th day of the year (231st in [[leap year]]s) in the [[Gregorian calendar]]. There are 135 days remaining.
86094
86095 ==Events==
86096 *[[1201]] - The [[city]] of [[Riga]] is founded.
86097 *[[1541]] - A [[Portugal|Portuguese]] ship drifts ashore in the ancient [[Japan|Japanese]] province of [[Higo Province|Higo]] (modern day [[Kumamoto Prefecture]]). (Traditional [[Japanese calendar|Japanese date]]: [[July 27]], 1541)
86098 *[[1572]] - [[Wedding]] in [[Paris]] of the [[Huguenot]] King [[Henry IV of France|Henry III]] of [[Navarre]] with [[Marguerite de Valois]], in a supposed attempt to reconcile [[Protestantism|Protestants]] and [[Roman Catholic Church|Catholics]].
86099 *[[1587]] - [[Virginia Dare]], granddaughter of Gov. [[John White (surveyor)|John White]] of the [[Colony of Roanoke]], becomes the first [[England|English]] child born in the [[Americas]].
86100 *[[1590]] - [[John White]], the governor of the [[Colony of Roanoke]], returns from a supply-trip to [[England]] and finds his settlement deserted.
86101 *[[1864]] - [[American Civil War]]: [[Battle of Weldon Railroad]] - [[United States|Union]] forces try to cut a vital [[Confederate States of America | Confederate]] supply-line into [[Petersburg, Virginia]], by attacking the [[Weldon Railroad]].
86102 *[[1868]] - [[France|French]] [[astronomy|astronomer]] [[Pierre Jules CÊsar Janssen]] [[Discoveries of the chemical elements|discovers]] [[helium]].
86103 *[[1877]] - [[Asaph Hall]] discovers [[Mars (planet)|Martian]] moon [[Phobos (moon)|Phobos]].
86104 *[[1903]] - [[Germany|German]] [[engineer]] [[Karl Jatho]] allegedly flies his self-made, motored gliding [[airplane]] four months before the first flight of the [[Wright Brothers]].
86105 *[[1904]] - [[Chris Watson]] resigns as [[Prime Minister of Australia]] and is succeded by [[George Reid (Australian politician)|George Reid]].
86106 *[[1909]] - [[Tokyo]] mayor [[Yukio Ozaki]] presents [[Washington, D.C.]] with 2,000 cherry trees, which [[William Howard Taft|President Taft]] decides to plant near the [[Potomac River]].
86107 *[[1920]] - [[Nineteenth Amendment to the United States Constitution|19th Amendment to US constitution]] passes, guaranteeing women's [[suffrage]].
86108 *[[1938]] - The [[Thousand Islands Bridge]], connecting [[New York State]], [[United States]] with [[Ontario]], [[Canada]] over the [[St. Lawrence River]], is dedicated by [[U.S. President]] [[Franklin D. Roosevelt]].
86109 *[[1941]] - [[Adolf Hitler]] orders a temporary halt to [[Nazi Germany|Nazi Germany's]] systematic [[euthanasia]] of [[mental illness|mentally ill]] and [[handicapped]] due to protests.
86110 *[[1950]] - [[Julien Lahaut]], the chairman of the [[Communist Party of Belgium]] is assassinated by far-right elements.
86111 *[[1958]] - [[Vladimir Nabokov]]'s controversial novel ''[[Lolita]]'' is published in the United States.
86112 *[[1963]] - [[American civil rights movement]]: [[James Meredith]] becomes the first black person to graduate from the [[University of Mississippi]].
86113 *[[1965]] - [[Vietnam War]]: [[Operation Starlite]] begins - [[United States Marines]] destroy a [[Viet Cong]] stronghold on the [[Van Tuong]] peninsula in the first major American ground battle of the war.
86114 *[[1966]] - [[Vietnam War]]: The [[Battle of Long Tan]] occurs, when a patrol of [[Royal Australian Regiment]] encounter the [[Viet Cong]].
86115 *[[1969]] - [[Jimi Hendrix]] plays the unofficial last day of [[Woodstock]].
86116 *[[1971]] - [[Vietnam War]]: [[Australia]] and [[New Zealand]] decide to withdraw their troops from [[Vietnam]].
86117 *[[1976]] - In [[North Korea]] at Panmunjom, two [[United States|US]] soldiers are killed while trying to chop down part of a tree in the DMZ which had obscured their view.
86118 *[[1982]] - [[Japan|Japanese]] election law is amended to allow for [[proportional representation]].
86119 *[[1983]] - [[Hurricane Alicia]] hits the [[Texas]] coast, killing 22 people and causing over [[USD]] $1 billion in damage (1983 dollars).
86120 *[[1989]] - Leading presidential hopeful [[Luis Carlos GalÃĄn]] is assassinated near [[BogotÃĄ]] in [[Colombia]].
86121 *[[1991]] - [[Collapse of the Soviet Union]]: [[President of the Soviet Union | Soviet President]] [[Mikhail Gorbachev]] is put under [[house arrest]] while on holiday in the [[Crimea]].
86122 *[[1992]] - [[Wang Laboratories]] files for bankruptcy.
86123 *1992 - NBA [[basketball]] player [[Larry Bird]] announces his retirement after winning an [[Olympics|Olympic]] gold medal as a member of the U.S. ''[[Dream Team (basketball)|Dream Team]]''.
86124 *[[2004]] - In [[Dublin]], [[Republic of Ireland|Ireland]] the [[Dublin Port Tunnel]] excavation works are completed.
86125 *[[2005]] - Dennis Rader is sentenced to 175 years in prison for the [[BTK killer|BTK serial killings]].
86126 *2005 - [[2005 Java Blackout|Massive power blackout]] hits the [[Indonesia]]n island of [[Java (island)|Java]], affecting almost 100 million people.
86127 *2005 - [[Starbucks]] opens its first outlet in [[Ireland]], in [[Dundrum Town Centre]], south County [[Dublin]].
86128
86129 ==Births==
86130 *[[1414]] - [[Jami]], Persian poet (d. [[1492]])
86131 *[[1450]] - [[Marko Marulić]], Croatian poet (d. [[1524]])
86132 *[[1587]] - [[Virginia Dare]], first English child born in North America (d. [[1588]])
86133 *[[1596]] - [[Jean Bolland]], Flemish Jesuit writer (d. [[1665]])
86134 *[[1605]] - [[Henry Hammond]], English churchman (d. [[1660]])
86135 *[[1685]] - [[Brook Taylor]], English mathematician (d. [[1731]])
86136 *[[1692]] - [[Louis Henri, Duc de Bourbon]], [[Prime Minister of France]] (d. [[1740]])
86137 *[[1720]] - [[Laurence Shirley, 4th Earl Ferrers]], English murderer (d. [[1760]])
86138 *[[1750]] - [[Antonio Salieri]], Italian composer (d. [[1825]])
86139 *[[1774]] - [[Meriwether Lewis]], American explorer (d. [[1809]])
86140 *[[1822]] - [[Isaac P. Rodman]], American Union General (d. [[1862]])
86141 *[[1830]] - Emperor [[Franz Josef I of Austria]] (d. [[1916]])
86142 *[[1841]] - [[William Halford]], American naval officer and [[Medal of Honor]] recipient
86143 *[[1857]] - [[Libert H. Boeynaems]], Belgian Catholic prelate (d. [[1926]])
86144 *[[1890]] - [[Walther Funk]], German Nazi politician (d. [[1960]])
86145 *[[1896]] - [[Jack Pickford]], Canadian-born actor (d. [[1933]])
86146 *[[1902]] - [[Adamson-Eric]] (Eric Adamson), Estonian painter (d. [[1968]])
86147 *[[1904]] - [[Max Factor]], Polish-born cosmetics entrepreneur (d. [[1996]])
86148 *[[1917]] - [[Caspar Weinberger]], [[United States Secretary of Defense]]
86149 *[[1918]] - [[Walter Joseph Hickel]], Governor of Alaska and [[US Secretary of the Interior]]
86150 *[[1920]] - [[Bob Kennedy]], baseball player and manager (d. [[2005]])
86151 *[[1922]] - [[Shelley Winters]], American actress
86152 *1922 - [[Alain Robbe-Grillet]], French writer
86153 *[[1925]] - [[Brian Aldiss]], English writer
86154 *[[1927]] - [[Rosalynn Carter]], [[First Lady of the United States]]
86155 *[[1928]] - [[Marge Schott]], baseball team owner (d. [[2004]])
86156 *[[1929]] - [[Hugues Aufray]], French singer
86157 *[[1932]] - [[William R. Bennett]], Premier of British Columbia
86158 *[[1933]] - [[Roman Polanski]], Franco-Polish director and actor
86159 *1933 - [[Just Fontaine]], French footballer
86160 *[[1934]] - [[Vincent Bugliosi]], American attorney
86161 *1934 - [[Roberto Clemente]], Puerto Rican [[Major League Baseball]] player (d. [[1972]])
86162 *1934 - [[Ronnie Carroll]], British singer
86163 *[[1935]] - [[Rafer Johnson]], American athlete
86164 *1935 - Sir [[Howard Morrison]], New Zealand entertainer
86165 *[[1937]] - [[Robert Redford]], American actor and director
86166 *[[1939]] - [[Robert Horton| Sir Robert Horton]], UK businessman
86167 *[[1943]] - [[Martin Mull]], American comedian and actor
86168 *1943 - [[Carl Wayne]], English singer (d. [[2004]])
86169 *[[1945]] - [[Barbara Harris (singer)|Barbara Harris]], American singer ([[The Toys|Toys]])
86170 *[[1952]] - [[Patrick Swayze]], American actor
86171 *[[1953]] - [[Louie Gohmert]], American politician
86172 *[[1955]] - Dr. [[Taher ElGamal]], Egyptian scientist
86173 *[[1957]] - [[Carole Bouquet]], French actress
86174 *1957 - [[Denis Leary]], American comedian and actor
86175 *[[1958]] - [[Madeleine Stowe]], American actress
86176 *[[1960]] - [[Fat Lever]], American basketball player
86177 *[[1965]] - [[Koji Kikkawa]], Japanese singer
86178 *[[1969]] - [[Masta Killa]], American rapper
86179 *1969 - [[Everlast]], American musician
86180 *1969 - [[Edward Norton]], American actor
86181 *1969 - [[Christian Slater]], American actor
86182 *[[1970]] - [[Malcolm-Jamal Warner]], American actor
86183 *[[1971]] - [[Richard D James]], Irish-born musician
86184 *[[1972]] - [[Leo Ku]], Hong Kong singer
86185 *[[1974]] - [[Shivnarine Chanderpaul]], West Indian cricketer
86186 *[[1979]] - [[Selena Silver]], pornographic film actress
86187 *[[1980]] - [[Esteban Cambiasso]], Argentine footballer
86188 *[[1984]] - [[Robert Huth]], German footballer
86189 *[[1985]] - [[Spencer Bailey]], symbol of survival, [[United Airlines Flight 232]] crash
86190
86191 ==Deaths==
86192 *[[472]] - [[Ricimer]], Roman general
86193 *[[849]] - [[Walafrid Strabo]], German monk and theologian
86194 *[[1227]] - [[Genghis Khan]], Mongol leader
86195 *[[1276]] - [[Pope Adrian V]]
86196 *[[1430]] - [[Thomas de Ros, 9th Baron de Ros]], English soldier and politician (drowned) (b. [[1406]])
86197 *[[1503]] - [[Pope Alexander VI]] (b. [[1431]])
86198 *[[1559]] - [[Pope Paul IV]] (b. [[1476]])
86199 *[[1563]] - [[Étienne de La BoÊtie]], French judge and writer (b. [[1530]])
86200 *[[1613]] - [[Giovanni Artusi]], Italian composer
86201 *[[1620]] - [[Wanli]], [[Emperor of China]] (b. [[1563]])
86202 *[[1642]] - [[Guido Reni]], Italian painter (b. [[1575]])
86203 *[[1645]] - [[Eudoxia Streshneva]], Tsarina of [[Mikhail I of Russia]] (b. [[1608]])
86204 *[[1683]] - [[Charles Hart (17th-century actor)|Charles Hart]], English actor (b. [[1625]])
86205 *[[1707]] - [[William Cavendish, 1st Duke of Devonshire]], English soldier and statesman (b. [[1640]])
86206 *[[1712]] - [[Richard Savage, 4th Earl Rivers]], English soldier
86207 *[[1765]] - [[Francis I, Holy Roman Emperor]] (b. [[1708]])
86208 *[[1809]] - [[Matthew Boulton]], English manufacturer and engineer (b. [[1728]])
86209 *[[1815]] - [[Chauncey Goodrich]], U.S. Senator from Connecticut (b. [[1759]])
86210 *[[1842]] - [[Louis de Freycinet]], French explorer (b. [[1779]])
86211 *[[1850]] - [[HonorÊ de Balzac]], French writer (b. [[1799]])
86212 *[[1940]] - [[Walter P. Chrysler]], American automobile executive (b. [[1875]])
86213 *[[1949]] - [[Paul Mares]], American musician (b. [[1900]])
86214 *[[1963]] - [[Clifford Odets]], American playwright (b. [[1906]])
86215 *[[1981]] - [[Anita Loos]], American screenwriter, playwright, and author (b. [[1889]])
86216 *[[1983]] - [[Nikolaus Pevsner]], German-born art historian (b. [[1902]])
86217 *[[1990]] - [[Grethe Ingmann]], Danish singer (b. [[1938]])
86218 *[[1994]] - [[Richard Laurence Millington Synge]], English chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1914]])
86219 *[[1998]] - [[Persis Khambatta]], Indian actress (b. [[1950]])
86220 *[[2004]] - [[Elmer Bernstein]], American composer (b. [[1922]])
86221
86222 ==Holidays and observances==
86223 *[[List of saints|RC saints]] - Saint [[Helena of Constantinople]]
86224 * [[Buhe]] in the [[Ethiopian Orthodox Church]]
86225
86226 ==External links==
86227 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/18 BBC: On This Day]
86228 ----
86229
86230 [[August 17]] - [[August 19]] - [[July 18]] - [[September 18]] -- [[historical anniversaries|listing of all days]]
86231
86232 {{months}}
86233
86234 [[af:18 Augustus]]
86235 [[ar:18 ØŖØēØŗØˇØŗ]]
86236 [[an:18 d'agosto]]
86237 [[ast:18 d'agostu]]
86238 [[bg:18 авĐŗŅƒŅŅ‚]]
86239 [[be:18 ĐļĐŊŅ–ŅžĐŊŅ]]
86240 [[bs:18. august]]
86241 [[ca:18 d'agost]]
86242 [[ceb:Agosto 18]]
86243 [[cv:ÇŅƒŅ€ĐģĐ°, 18]]
86244 [[co:18 d'aostu]]
86245 [[cs:18. srpen]]
86246 [[cy:18 Awst]]
86247 [[da:18. august]]
86248 [[de:18. August]]
86249 [[et:18. august]]
86250 [[el:18 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
86251 [[es:18 de agosto]]
86252 [[eo:18-a de aÅ­gusto]]
86253 [[eu:Abuztuaren 18]]
86254 [[fo:18. august]]
86255 [[fr:18 aoÃģt]]
86256 [[fy:18 augustus]]
86257 [[ga:18 LÃēnasa]]
86258 [[gl:18 de agosto]]
86259 [[ko:8ė›” 18ėŧ]]
86260 [[hr:18. kolovoza]]
86261 [[io:18 di agosto]]
86262 [[id:18 Agustus]]
86263 [[ia:18 de augusto]]
86264 [[ie:18 august]]
86265 [[is:18. ÃĄgÃēst]]
86266 [[it:18 agosto]]
86267 [[he:18 באוגוסט]]
86268 [[jv:18 Agustus]]
86269 [[ka:18 აგვისáƒĸო]]
86270 [[csb:18 zÊlnika]]
86271 [[ku:18'ÃĒ gelawÃĒjÃĒ]]
86272 [[la:18 Augusti]]
86273 [[lt:RugpjÅĢčio 18]]
86274 [[lb:18. August]]
86275 [[li:18 augustus]]
86276 [[hu:Augusztus 18]]
86277 [[mk:18 авĐŗŅƒŅŅ‚]]
86278 [[ms:18 Ogos]]
86279 [[nap:18 'e aÚsto]]
86280 [[nl:18 augustus]]
86281 [[ja:8月18æ—Ĩ]]
86282 [[no:18. august]]
86283 [[nn:18. august]]
86284 [[oc:18 d'agost]]
86285 [[pl:18 sierpnia]]
86286 [[pt:18 de Agosto]]
86287 [[ro:18 august]]
86288 [[ru:18 авĐŗŅƒŅŅ‚Đ°]]
86289 [[se:BorgemÃĄnu 18.]]
86290 [[sco:18 August]]
86291 [[sq:18 Gusht]]
86292 [[scn:18 di austu]]
86293 [[simple:August 18]]
86294 [[sk:18. august]]
86295 [[sl:18. avgust]]
86296 [[sr:18. авĐŗŅƒŅŅ‚]]
86297 [[fi:18. elokuuta]]
86298 [[sv:18 augusti]]
86299 [[tl:Agosto 18]]
86300 [[tt:18. August]]
86301 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 18]]
86302 [[th:18 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
86303 [[vi:18 thÃĄng 8]]
86304 [[tr:18 Ağustos]]
86305 [[uk:18 ŅĐĩŅ€ĐŋĐŊŅ]]
86306 [[wa:18 d' awousse]]
86307 [[war:Agosto 18]]
86308 [[zh:8月18æ—Ĩ]]
86309 [[pam:Agostu 18]]</text>
86310 </revision>
86311 </page>
86312 <page>
86313 <title>August 19</title>
86314 <id>1497</id>
86315 <revision>
86316 <id>41777696</id>
86317 <timestamp>2006-03-01T17:59:59Z</timestamp>
86318 <contributor>
86319 <username>Rklawton</username>
86320 <id>754622</id>
86321 </contributor>
86322 <comment>/* Deaths */ added birth year</comment>
86323 <text xml:space="preserve">{| style=&quot;float:right;&quot;
86324 |-
86325 |{{AugustCalendar}}
86326 |-
86327 |{{ThisDateInRecentYears|Month=August|Day=19}}
86328 |}
86329 '''[[August 19]]''' is the 231st day of the year (232nd in [[leap year]]s) in the [[Gregorian Calendar]]. There are 134 days remaining.
86330
86331
86332 ==Events==
86333 *[[293 BC]] - Oldest known [[Roman temple]] to [[Venus (mythology)|Venus]] ''Libitina'' founded on the [[Esquiline Hill]]; institution of [[Vinalia Rustica]] begins.
86334 *[[1388]] - [[Battle of Otterburn]][http://www.thenortheast.fsnet.co.uk/Redesdale.htm#BATTLE%20OF%20OTTERBURN], border skirmish between the [[Scottish people|Scottish]] and the [[English people|English]] in Northern [[England]].
86335 *[[1561]] - Queen [[Mary I of Scotland|Mary Stuart]] returns to [[Scotland]].
86336 *[[1692]] - [[Salem Witch Trials]]: In [[Salem, Massachusetts]] five women and a clergyman are executed after being convicted of [[witchcraft]].
86337 *[[1745]] - [[Jacobite Rising]], [[Prince Charles Edward Stuart]] lands from a French warship in [[Glenfinnan]], raises his standard and marches on [[London]] - the start of the Second Jacobite Rebellion known as &quot;the 45&quot;
86338 *[[1768]] - [[Saint Isaac's Cathedral]] is founded in [[Saint Petersburg, Russia|Saint Petersburg]], [[Russia]]
86339 *[[1782]] - [[Battle of Blue Licks]]: the last major battle of the [[American Revolutionary War]], almost ten months after the surrender of the British commander [[Charles Cornwallis, 1st Marquess Cornwallis|Lord Cornwallis]] following the [[Battle of Yorktown (1781)|Battle of Yorktown]].
86340 *[[1812]] - [[War of 1812]]: American frigate ''[[USS Constitution]]'' defeats the [[Royal Navy|British]] frigate ''[[HMS Guerriere (1806)|HMS Guerrière]]'' off the coast of [[Nova Scotia]].
86341 *[[1813]] - [[Gervasio Antonio de Posadas]] joins [[Argentina]]'s second triumvirate.
86342 *[[1839]] - Presentation of [[Louis Daguerre|Jacque Daguerre]]'s new [[photography|photographic]] process to the [[French Academy of Sciences]].
86343 *[[1848]] - [[California Gold Rush]]: The ''[[New York Herald]]'' breaks the news to the East Coast of the [[United States]] of the [[gold rush]] in [[California]] (although the rush started in January).
86344 *[[1862]] - [[Indian Wars]]: During an uprising in [[Minnesota]], [[Lakota]] warriors decide not to attack heavily-defended [[Fort Ridgely]] and instead turn to the settlement of [[New Ulm]], killing white settlers along the way.
86345 *[[1895]] - [[American frontier]] murderer and outlaw, [[John Wesley Hardin]], is killed by an off-duty policeman in a [[bar (establishment)|saloon]] in [[El Paso, Texas]].
86346 *[[1919]] - [[Afghanistan]] gains independence from the [[United Kingdom]].
86347 *[[1929]] - The [[radio]] [[comedy]] show ''[[Amos and Andy]]'' makes its [[NBC]] debut starring [[Freeman Gosden]] and [[Charles Correll]].
86348 *[[1934]] - The first All-American [[Soap Box Derby]] is held in [[Dayton, Ohio]].
86349 *1934 - The creation of the position [[FÃŧhrer]] approved by the German electorate with 89.9% of the popular vote.
86350 *[[1942]] - [[World War II]]: [[Operation Jubilee]] - The [[2nd Canadian Infantry Division]] leads an [[Allies of World War II|allied forces]] [[amphibious assault]] on [[Dieppe, France]].
86351 *[[1944]] - [[World War II]]: [[Liberation of Paris]] - [[Paris]] rises against [[Nazi Germany|German]] occupation with the help of [[Allies of World War II|Allied]] troops.
86352 *[[1945]] - [[Vietnam War]]: [[Viet Minh]] led by [[Ho Chi Minh]] take power in [[Hanoi]], [[Vietnam]].
86353 *[[1953]] - [[Cold War]]: The [[CIA]] helps to overthrow the government of [[Mohammed Mossadegh]] in [[Iran]] and reinstate the [[Shah]] [[Mohammad Reza Pahlavi]].
86354 *[[1955]] - In the Northeast [[United States]], severe [[flooding]] caused by [[Hurricane Diane]], claims 200 lives.
86355 *[[1960]] - [[Cold War]]: In [[Moscow]], downed American [[Lockheed U-2|U-2]] pilot [[Francis Gary Powers]] is sentenced to ten years imprisonment by the [[Soviet Union]] for [[espionage]].
86356 *1960 - [[Sputnik program]]: The [[Soviet Union]] launches [[Sputnik 5]] with the [[dog]]s [[Belka and Strelka]], 40 [[mice]], 2 [[rat]]s and a variety of [[plant]]s.
86357 *[[1961]] - The Australian public-affairs show ''Four Corners'' starts on the [[Australian Broadcasting Corporation|ABC]].
86358 *[[1965]] - [[Prime Minister of Japan|Japanese prime minister]] [[Eisaku Sato]] becomes the first post-[[World War II]] sitting prime minister to visit [[Okinawa Prefecture|Okinawa]].
86359 *[[1975]] - The cricket test match between [[England]] and [[Australia]] is called off after the pitch is vandalised by supporters of [[George Davis (armed robber)|George Davis]].
86360 *[[1980]] - [[Saudia Flight 163]], a [[Lockheed]] [[Lockheed L-1011|L-1011 TriStar]] burns after making an emergency landing at [[King Khalid International Airport]] in [[Riyadh]], [[Saudi Arabia]], killing 301 people.
86361 *[[1981]] - [[Gulf of Sidra incident (1981)|Gulf of Sidra Incident]]: Two [[Libya]]n [[Sukhoi Su-22]] fighter jets intercept [[United States]] fighters over the [[Gulf of Sidra]] and are destroyed by them.
86362 *[[1987]] - [[Hungerford Massacre]]: In the [[United Kingdom]], [[Michael Ryan (mass murderer)|Michael Ryan]] kills sixteen people with an [[assault rifle]] and then commits [[suicide]].
86363 *[[1989]] - [[President of Poland|Polish president]] [[Wojciech Jaruzelski]] nominates [[Solidarity]] activist [[Tadeusz Mazowiecki]] to be the first non-communist [[Prime Minister]] in 42 years.
86364 *[[1990]] - [[Leonard Bernstein]] conducts his final concert, ending with [[Ludwig van Beethoven]]'s [[Symphony No. 7 (Beethoven)|Symphony No. 7]].
86365 *[[1991]] - Soviet Union President [[Mikhail Gorbachev]] is overthrown by a coup. This leads to the fall of the [[Soviet Union]]
86366 *[[1999]] - In [[Belgrade]], tens of thousands of [[Serbia]]ns rally to demand the resignation of [[President of Yugoslavia|Federal Republic of Yugoslavia President]] [[Slobodan MiloÅĄević]].
86367 *[[2002]] - A [[Russia|Russian]] [[Mi-26]] [[helicopter]] carrying troops is hit by a [[Chechen]] [[missile]] outside of [[Grozny]], killing 118 soldiers.
86368 *[[2003]] - A car-bomb attack on [[UN]] headquarters in [[Iraq]] kills the agency's top envoy [[Sergio Vieira de Mello]] and 21 other employers.
86369 *[[2005]] - The first-ever joint military exercise between [[Russia]] and [[People's Republic of China|China]], called [[Peace Mission 2005]] begins.
86370
86371 ==Births==
86372 *[[1398]] - [[IÃąigo LÃŗpez de Mendoza|MarquÊs de Santillana]], Spanish poet (d. [[1458]])
86373 *[[1557]] - [[Frederick I, Duke of WÃŧrttemberg]] (d. [[1608]])
86374 *[[1590]] - [[Henry Rich, 1st Earl of Holland]], English soldier (d. [[1649]])
86375 *[[1596]] - [[Elizabeth of Bohemia]] (d. [[1662]])
86376 *[[1621]] - [[Gerbrand van den Eeckhout]], Dutch painter (d. [[1674]])
86377 *[[1631]] - [[John Dryden]], English poet (d. [[1700]])
86378 *[[1646]] - [[John Flamsteed]], English astronomer (d. [[1719]])
86379 *[[1686]] - [[Eustace Budgell]], English writer (d. [[1737]])
86380 *1686 - [[Nicola Porpora]], Italian composer (d. [[1768]])
86381 *[[1689]] - [[Samuel Richardson]], English writer (d. [[1761]])
86382 *[[1711]] - [[Edward Boscawen]], British admiral (d. [[1761]])
86383 *[[1743]] - [[Madame du Barry]], French courtesan (d. [[1793]])
86384 *[[1870]] - [[Bernard Baruch]], American financier (d. [[1965]])
86385 *[[1871]] - [[Orville Wright]], American aviation pioneer (d. [[1948]])
86386 *[[1875]] - [[Stjepan Seljan]], Croatian explorer (d. [[1936]])
86387 *[[1878]] - [[Manuel Quezon]], President of the Philippines (d. [[1944]])
86388 *[[1881]] - [[Georges Enescu]], Romanian composer (d. [[1955]])
86389 *[[1883]] - [[Coco Chanel]], French clothing designer (d. [[1971]])
86390 *1883 - [[Elsie Ferguson]], American film actress (d. [[1961]])
86391 *[[1892]] - [[Alfred Lunt]], American actor (d. [[1977]])
86392 *[[1896]] - [[Olga Baclanova]], Russian-born actress (d. [[1974]])
86393 *[[1902]] - [[Ogden Nash]], American poet (d. [[1971]])
86394 *[[1906]] - [[Philo T. Farnsworth]], American inventor and television pioneer (d. [[1971]])
86395 *[[1907]] - [[Thurston Ballard Morton|Thurston B. Morton]], American politician (d. [[1982]])
86396 *[[1913]] - [[Richard Simmons (actor)|Richard Simmons]], American actor (d. [[2003]])
86397 *[[1914]] - [[Lajos BarÃŗti]], Hungarian footballer and coach (d. [[2005]])
86398 *[[1915]] - [[Ring Lardner, Jr.]], American actor and screenwriter (d. [[2000]])
86399 *[[1919]] - [[Malcolm Forbes]], American publisher (d. [[1990]])
86400 *[[1921]] - [[Gene Roddenberry]], American television producer (d. [[1991]])
86401 *[[1925]] - [[Claude Gauvreau]], Canadian playwright, poet, and polemicist (d. [[1971]])
86402 *[[1926]] - [[Arthur Rock]], American venture capitalist
86403 *[[1930]] - [[Frank McCourt (author)|Frank McCourt]], Irish-born author
86404 *[[1931]] - [[Willie Shoemaker]], American jockey (d. [[2003]])
86405 *[[1935]] - [[Bobby Richardson]], baseball player
86406 *[[1938]] - [[Diana Muldaur]], American actress, dog breeder, and dog judge
86407 *[[1939]] - [[Ginger Baker]], English musician
86408 *[[1940]] - [[Johnny Nash]], American singer
86409 *1940 - [[Jill St. John]], American actress
86410 *[[1942]] - [[Fred Dalton Thompson]], U.S. Senator from Tennessee and actor
86411 *[[1944]] - [[Charles B. Wang]], Chinese-born philanthropist
86412 *[[1945]] - [[Ian Gillan]], English singer
86413 *[[1946]] - [[Bill Clinton]], 42nd [[President of the United States]]
86414 *1946 - [[Beat Raaflaub]], Swiss conductor
86415 *[[1947]] - [[Gerard Schwarz]], American conductor
86416 *[[1948]] - [[Tipper Gore]], [[Second Lady of the United States]]
86417 *[[1950]] - [[Jennie Bond]], British journalist
86418 *[[1951]] - [[John Deacon]], English musician ([[Queen (band)|Queen]])
86419 *[[1952]] - [[Jonathan Frakes]], American actor and director
86420 *[[1955]] - [[Peter Gallagher]], American actor
86421 *[[1956]] - [[Adam Arkin]], American actor
86422 *[[1958]] - [[Anthony MuÃąoz]], American football player
86423 *[[1960]] - [[Morten Andersen]], American football player
86424 *[[1963]] - [[John Stamos]], American actor
86425 *1963 - [[Joey Tempest]], Swedish singer ([[Europe (band)|Europe]])
86426 *[[1964]] - [[Whitney Prescott]], American fetish model
86427 *[[1965]] - [[Kyra Sedgwick]], American actress
86428 *[[1966]] - [[Lee Ann Womack]], American musician
86429 *[[1969]] - [[Matthew Perry (actor)|Matthew Perry]], American actor
86430 *[[1973]] - Crown Princess [[Mette Marit]] of Norway
86431 *1973 - [[Callum Blue]], British actor
86432 *[[1979]] - [[David Douglas (musician)|David Douglas]] American drummer ([[Relient K]])
86433 *[[1980]] - [[Darius Danesh]], Scottish singer
86434 *[[1982]] - [[Erika Christensen]], American actress
86435 *[[1983]] - [[Tammin Sursok]], Australian actress
86436
86437 ==Deaths==
86438 *[[14]] - [[Caesar Augustus|Augustus]], [[Roman Emperor]] (b. [[63 BC]])
86439 *[[1186]] - [[Geoffrey II, Duke of Brittany]] (b. [[1158]])
86440 *[[1245]] - [[Ramon Berenguer IV, Count of Provence]] (b. [[1195]])
86441 *[[1284]] - [[Alphonso, Earl of Chester]], son of [[Edward I of England]] (b. [[1273]])
86442 *[[1297]] - [[Saint Louis of Toulouse]], French Catholic bishop (b. [[1274]])
86443 *[[1493]] - [[Frederick III, Holy Roman Emperor]] (b. [[1415]])
86444 *[[1580]] - [[Andrea Palladio]], Italian architect (b. [[1508]])
86445 *[[1646]] - [[Alexander Henderson (theologian)|Alexander Henderson]], Scottish theologian
86446 *[[1662]] - [[Blaise Pascal]], French mathematician, physicist, and philosopher (b. [[1623]])
86447 *[[1753]] - [[Balthasar Neumann]], German architect (b. [[1687]])
86448 *[[1819]] - [[James Watt]], Scottish inventor (b. [[1736]])
86449 *[[1822]] - [[Jean Baptiste Joseph Delambre]], French mathematician (b. [[1749]])
86450 *[[1872]] - King [[Charles XV of Sweden|Charles XV]] / [[Charles XV of Sweden|Carl IV]] of Sweden and Norway (b. [[1826]])
86451 *[[1889]] - [[Auguste Villiers de l'Isle-Adam]], French writer (b. [[1838]])
86452 *[[1895]] - [[John Wesley Hardin]], American gunfighter (b. [[1853]])
86453 *[[1923]] - [[Vilfredo Pareto]], Italian sociologist and economist (b. [[1845]])
86454 *[[1929]] - [[Sergei Diaghilev]], Russian ballet impresario (b. [[1872]])
86455 *[[1936]] - [[Federico García Lorca]], Spanish author (b. [[1898]])
86456 *[[1950]] - [[Giovanni Giorgi]], Italian physicist (b. [[1871]])
86457 *[[1954]] - [[Alcide De Gasperi]], [[Prime Minister of Italy]] (b. [[1881]])
86458 *[[1957]] - [[David Bomberg]], English painter (b. [[1890]])
86459 *1957 - [[Carl-Gustaf Rossby]], Swedish meteorologist (b. [[1898]])
86460 *[[1959]] - [[Jacob Epstein]], American-born sculptor (b. [[1880]])
86461 *[[1967]] - [[Hugo Gernsback]], Luxembourg-born editor and publisher (b. [[1884]])
86462 *[[1968]] - [[George Gamow]], Ukrainian-born physicist (b. [[1904]])
86463 *[[1969]] - [[Ludwig Mies van der Rohe]], German architect (b. [[1886]])
86464 *[[1970]] - [[Pawel Jasienica|Paweł Jasienica]], Polish historian (b. [[1909]])
86465 *[[1976]] - [[Alastair Sim]], Scottish actor and former rector of Edinburgh University (b. [[1900]])
86466 *[[1977]] - [[Groucho Marx]], American comedian and actor (b. [[1890]])
86467 *[[1980]] - [[Otto Frank]], father of Anne Frank (b. [[1889]])
86468 *[[1982]] - [[August Neo]], Estonian wrestler, Olympic medalist (b.[[1908]])
86469 *[[1994]] - [[Linus Pauling]], American chemist, recipient of the [[Nobel Prize in Chemistry]] and [[Nobel Peace Prize|Peace]] (b. [[1901]])
86470 *[[1995]] - [[Pierre Schaeffer]], French composer (b. [[1910]])
86471 *[[2003]] - [[Carlos Roberto Reina]], [[President of Honduras]] (b. [[1926]])
86472 *2003 - [[SÊrgio Vieira de Mello]], Brazilian diplomat (b. [[1948]])
86473 *[[2005]] - [[Bueno de Mesquita]], Dutch comedian and actor (b. [[1918]])
86474 *2005 - [[Mo Mowlam]], British politician (b. [[1949]])
86475
86476 ==Holidays and observances==
86477 *[[Roman festivals]] - [[Vinalia Rustica]] celebrated in honor of [[Venus (mythology)|Venus]] ''Libitina'' commemorating the founding of the oldest known temple to her, on the [[Esquiline Hill]], in [[293 BC]] on this date.
86478 *[[List of saints|RC saints]] - [[Saint Sebald]], [[Saint Louis of Toulouse]], [[Jean-Eudes de MÊzeray]]
86479 *[[Afghanistan]] - [[Afghan Independence Day]] ''see above: 1919''
86480 *National Day of the Filipino Language, [[Philippines]] - Holiday for [[Quezon City]], [[Quezon Province]] and other municipalities named after [[Manuel Quezon]]
86481 *[[National Aviation Day]], [[United States|USA]]
86482
86483
86484 ==External links==
86485 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/19 BBC: On This Day]
86486 * [http://www.tnl.net/when/8/19 Today in History: August 19]
86487
86488 ----
86489
86490 [[August 18]] - [[August 20]] - [[July 19]] - [[September 19]] -- [[historical anniversaries|listing of all days]]
86491
86492 {{months}}
86493
86494 [[af:19 Augustus]]
86495 [[ar:19 ØŖØēØŗØˇØŗ]]
86496 [[an:19 d'agosto]]
86497 [[ast:19 d'agostu]]
86498 [[bg:19 авĐŗŅƒŅŅ‚]]
86499 [[be:19 ĐļĐŊŅ–ŅžĐŊŅ]]
86500 [[bs:19. august]]
86501 [[ca:19 d'agost]]
86502 [[ceb:Agosto 19]]
86503 [[cv:ÇŅƒŅ€ĐģĐ°, 19]]
86504 [[co:19 d'aostu]]
86505 [[cs:19. srpen]]
86506 [[cy:19 Awst]]
86507 [[da:19. august]]
86508 [[de:19. August]]
86509 [[et:19. august]]
86510 [[el:19 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
86511 [[es:19 de agosto]]
86512 [[eo:19-a de aÅ­gusto]]
86513 [[eu:Abuztuaren 19]]
86514 [[fo:19. august]]
86515 [[fr:19 aoÃģt]]
86516 [[fy:19 augustus]]
86517 [[ga:19 LÃēnasa]]
86518 [[gl:19 de agosto]]
86519 [[ko:8ė›” 19ėŧ]]
86520 [[hr:19. kolovoza]]
86521 [[io:19 di agosto]]
86522 [[id:19 Agustus]]
86523 [[ia:19 de augusto]]
86524 [[ie:19 august]]
86525 [[is:19. ÃĄgÃēst]]
86526 [[it:19 agosto]]
86527 [[he:19 באוגוסט]]
86528 [[jv:19 Agustus]]
86529 [[ka:19 აგვისáƒĸო]]
86530 [[csb:19 zÊlnika]]
86531 [[ku:19'ÃĒ gelawÃĒjÃĒ]]
86532 [[lt:RugpjÅĢčio 19]]
86533 [[lb:19. August]]
86534 [[li:19 augustus]]
86535 [[hu:Augusztus 19]]
86536 [[mk:19 авĐŗŅƒŅŅ‚]]
86537 [[ms:19 Ogos]]
86538 [[nap:19 'e aÚsto]]
86539 [[nl:19 augustus]]
86540 [[ja:8月19æ—Ĩ]]
86541 [[no:19. august]]
86542 [[nn:19. august]]
86543 [[oc:19 d'agost]]
86544 [[pl:19 sierpnia]]
86545 [[pt:19 de Agosto]]
86546 [[ro:19 august]]
86547 [[ru:19 авĐŗŅƒŅŅ‚Đ°]]
86548 [[sco:19 August]]
86549 [[sq:19 Gusht]]
86550 [[scn:19 di austu]]
86551 [[simple:August 19]]
86552 [[sk:19. august]]
86553 [[sl:19. avgust]]
86554 [[sr:19. авĐŗŅƒŅŅ‚]]
86555 [[fi:19. elokuuta]]
86556 [[sv:19 augusti]]
86557 [[tl:Agosto 19]]
86558 [[tt:19. August]]
86559 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 19]]
86560 [[th:19 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
86561 [[vi:19 thÃĄng 8]]
86562 [[tr:19 Ağustos]]
86563 [[uk:19 ŅĐĩŅ€ĐŋĐŊŅ]]
86564 [[wa:19 d' awousse]]
86565 [[war:Agosto 19]]
86566 [[zh:8月19æ—Ĩ]]
86567 [[pam:Agostu 19]]</text>
86568 </revision>
86569 </page>
86570 <page>
86571 <title>August 20</title>
86572 <id>1498</id>
86573 <revision>
86574 <id>42069073</id>
86575 <timestamp>2006-03-03T16:32:04Z</timestamp>
86576 <contributor>
86577 <ip>85.20.186.33</ip>
86578 </contributor>
86579 <comment>/* Births */</comment>
86580 <text xml:space="preserve">{| style=&quot;float:right;&quot;
86581 |-
86582 |{{AugustCalendar}}
86583 |-
86584 |{{ThisDateInRecentYears|Month=August|Day=20}}
86585 |}
86586 '''[[August 20]]''' is the 232nd day of the year (233rd in [[leap year]]s) in the [[Gregorian Calendar]]. There are 133 days remaining. If you take the numbers 232 and 133, you got one 1, two 2´s and three 3´s.
86587
86588
86589 ==Events==
86590 *[[636]] - [[Battle of Yarmuk]]: [[Arab]] forces led by [[Khalid bin Walid]] take control of [[Syria]] and [[Palestine (region)|Palestine]] away from the [[Byzantine Empire]], marking the first great wave of [[Muslim]] conquests and the rapid advance of [[Islam]] outside [[Arabia]].
86591 *[[917]] - [[Battle of Anchialus]]: Tsar [[Simeon I of Bulgaria]] invades [[Thrace]] and drives the [[Byzantine Empire|Byzantines]] out.
86592 *[[1391]] - [[Konrad IV von Wallenrode]] becomes the 24th [[Grand master (order)|Grand Master]] of the [[Teutonic Order]].
86593 *[[1794]] - [[Battle of Fallen Timbers]] - [[United States|American]] troops force a confederacy of [[Shawnee (tribe)|Shawnee]], [[Mingo (tribe)|Mingo]], [[Delaware (tribe)|Delaware]], [[Wyandot]], [[Miami (tribe)|Miami]], [[Ottawa (tribe)|Ottawa]], [[Chippewa]], and [[Potawatomi]] warriors into a disorganized retreat.
86594 *[[1804]] - [[Lewis and Clark Expedition]]: The &quot;Corps of Discovery&quot;, exploring the [[Louisiana Purchase]], suffers its only death when Sergeant [[Charles Floyd (explorer)|Charles Floyd]] dies, apparently from acute [[appendicitis]].
86595 *[[1833]] - [[Nat Turner]] leads his [[revolt]] against the Southern plantation owners of Southampton County, [[Virginia]]
86596 *[[1882]] - [[Piotr Ilyitch Tchaikovsky]]'s [[1812 Overture]] debuts in [[Moscow]].
86597 *[[1900]] - [[Japan|Japan's]] primary school law is amended to provide for four years of mandatory schooling.
86598 *[[1914]] - [[World War I]]: [[Germany|German]] forces occupy [[Brussels]].
86599 *[[1920]] - The first commercial [[radio]] station, 8MK (WWJ), begins operations in [[Detroit, Michigan]].
86600 *[[1926]] - [[Japan|Japan's]] [[Public broadcasting|public broadcasting]] company, [[NHK|Nippon Hōsō Kyōkai (NHK)]] is established.
86601 *[[1940]] - Exiled [[Russia]]n revolutionary [[Leon Trotsky]] is fatally wounded in [[Mexico City]] by an assassin's ice axe. He will die the next day.
86602 *[[1955]] - In [[Morocco]], a force of [[Berber]]s from the [[Atlas Mountains]] region of [[Algeria]], raid two rural settlements and kill 77 [[France|French]] nationals.
86603 *[[1960]] - [[Senegal]] breaks from the [[Mali]] federation, declaring independence.
86604 *[[1968]] - 200,000 [[Warsaw Pact]] troops and 5,000 [[tank]]s invade [[Czechoslovakia]] to end the &quot;[[Prague Spring]]&quot; of political liberalization.
86605 *[[1975]] - [[Viking program]]: [[NASA]] launches the [[Viking 1]] planetary probe toward [[Mars (planet)|Mars]].
86606 *[[1977]] - [[Voyager program]]: The [[United States]] launches the [[Voyager 2]] spacecraft.
86607 *[[1982]] - [[Lebanese Civil War]]: A multinational force lands in [[Beirut]] to oversee the [[PLO]] withdrawal from [[Lebanon]].
86608 *[[1986]] - In [[Edmond, Oklahoma]], [[United States Postal Service|US Postal]] employee [[Patrick Sherrill|Patrick Henry Sherrill]] guns down 14 of his co-workers and then commits [[suicide]].
86609 *[[1988]] - [[Peru]] becomes a member of the [[Berne Convention for the Protection of Literary and Artistic Works|Berne Convention]] [[copyright]] [[treaty]].
86610 *[[1989]] - In [[Beverly Hills, California]], [[Lyle and Erik Menendez]] shoot and kill their wealthy parents.
86611 *[[1991]] - [[Collapse of the Soviet Union]]: More than 100,000 people rally outside the [[Soviet Union]]'s parliament building protesting the [[coup]] aiming to depose President [[Mikhail Gorbachev]]. [[Estonia]] reclaimed its independence and seceded from the [[Soviet Union]]. Estonia had been occupied by the Soviets for more than 50 years.
86612 *[[1993]] - After rounds of secret negotiations in [[Norway]], the [[Oslo Peace Accords]] were signed, followed by a public ceremony in [[Washington, D.C.]] the next month.
86613 *[[1994]] - Circus elephant trainer [[Allen Campbell]] is crushed to death in Honolulu, Hawaii, by the performing elephant &quot;[[Tyke]]&quot;.
86614 *[[1997]] - [[Souhane massacre]] in [[Algeria]]; over 60 people killed, 15 kidnapped.
86615 *[[1998]] - The [[Supreme Court of Canada]] states [[Quebec]] cannot legally secede from [[Canada]] without the federal government's approval.
86616 *1998 - [[1998 U.S. embassy bombings|U.S. embassy bombings]]: The [[United States military]] launches [[cruise missile]] attacks against alleged [[al-Qaida]] camps in [[Afghanistan]] and a suspected chemical plant in [[Sudan]] in retaliation for the [[August 7]] bombings of American embassies in [[Kenya]] and [[Tanzania]]. The [[al-Shifa pharmaceutical factory]] in [[Khartoum]] is destroyed in the attack.
86617
86618 ==Births==
86619 *[[1517]] - [[Antoine Perrenot de Granvelle]], French church leader (d. [[1586]])
86620 *[[1561]] - [[Jacopo Peri]], Italian composer (d. [[1633]])
86621 *[[1601]] - [[Pierre de Fermat]], French mathematician (d. [[1665]])
86622 *[[1625]] - [[Thomas Corneille]], French dramatist (d. [[1709]])
86623 *[[1632]] - [[Louis Bourdaloue]], French Jesuit preacher (d. [[1704]])
86624 *[[1710]] - [[Thomas Simpson]], British mathematician (d. [[1761]])
86625 *[[1719]] - [[Christian Mayer]], Czech astronomer (d. [[1783]])
86626 *1719 - [[Charles-François de Broglie, marquis de Ruffec]], French soldier and diplomat (d. [[1791]])
86627 *[[1779]] - [[JÃļns Jakob Berzelius]], Swedish chemist (d. [[1848]])
86628 *[[1833]] - [[Benjamin Harrison]], 23rd [[President of the United States]] (d. [[1901]])
86629 *[[1847]] - [[Boleslaw Prus]], Polish writer (d. [[1912]])
86630 *[[1860]] - [[Raymond PoincarÊ]], French statesman (d. [[1934]])
86631 *[[1881]] - [[Edgar Guest]], English poet (d. [[1959]])
86632 *[[1897]] - [[Tarjei Vesaas]], Norwegian writer (d. [[1970]])
86633 *[[1890]] - [[H. P. Lovecraft]], American writer (d. [[1937]])
86634 *[[1901]] - [[Salvatore Quasimodo]], Italian writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1968]])
86635 *[[1905]] - [[Jean Gebser]], German-born author, linguist, and poet (d. [[1973]])
86636 *1905 - [[Jack Teagarden]], American musician (d. [[1964]])
86637 *[[1908]] - [[Al Lopez]], baseball player and manager (d. [[2005]])
86638 *[[1910]] - [[Eero Saarinen]], Finnish architect (d. [[1961]])
86639 *[[1913]] - [[Roger Wolcott Sperry]], American neurobiologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1994]])
86640 *[[1918]] - [[Jacqueline Susann]], American novelist (d. [[1974]])
86641 *[[1923]] - [[Jim Reeves]], American singer (d. [[1964]])
86642 *[[1931]] - [[Don King]], American boxing promoter
86643 *[[1932]] - [[Anthony Ainley]], British actor (d. [[2004]])
86644 *1932 - [[Vasily Aksyonov]], Russian novelist
86645 *[[1935]] - [[Ron Paul]], American politician
86646 *[[1936]] - [[Hideki Shirakawa]], Japanese chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate
86647 *[[1937]] - [[Andrei Konchalovsky]], Russian film director
86648 *[[1939]] - [[Fernando Poe Jr.]], Filipino actor and [[2004 Philippine general election|presidential candidate]]
86649 *[[1940]] - [[RubÊn Hinojosa]], American politician
86650 *[[1941]] - [[Slobodan MiloÅĄević]], [[President of Serbia]]
86651 *1941 - [[Robin Oakley]], British journalist
86652 *[[1942]] - [[Isaac Hayes]], American singer, songwriter, and actor
86653 *[[1943]] - [[Sylvester McCoy]], Scottish actor
86654 *[[1944]] - [[Rajiv Gandhi]], [[Prime Minister of India]] (d. [[1991]])
86655 *[[1946]] - [[Connie Chung]], American journalist
86656 *1946 - [[N.R. Narayana Murthy]], Indian businessman
86657 *[[1948]] - [[Robert Plant]] English singer ([[Led Zeppelin]])
86658 *[[1949]] - [[Phil Lynott]], Irish musician (d. [[1986]])
86659 *[[1951]] - [[Greg Bear]], American author
86660 *[[1952]] - [[John Hiatt]], American musician
86661 *[[1954]] - [[Al Roker]], American television broadcaster
86662 *[[1955]] - [[Agnes Chan]], Hong Kong singer and writer
86663 *[[1956]] - [[Joan Allen]], American actress
86664 *[[1961]] - [[Greg Egan]], Australian author
86665 *[[1962]] - [[Sophie Aldred]], English actress
86666 *1962 - [[James Marsters]], American actor
86667 *[[1965]] - [[KRS-One]], American rapper
86668 *[[1966]] - [[Dimebag Darrell]], American guitarist ([[Pantera]] and [[Damageplan]]) (d. 2004)
86669 *[[1967]] - [[Fabio Verdoglia]], italian playboy
86670 *[[1968]] - [[Yuri Shiratori]], Japanese voice actress and singer
86671 *[[1970]] - [[John Carmack]], American computer game programmer
86672 *[[1970]] - [[Fred Durst]], American singer ([[Limp Bizkit]])
86673 *[[1973]] - [[Todd Helton]], baseball player
86674 *[[1974]] - [[Maxim Vengerov]], Russian violinist
86675 *[[1984]] - [[Mirai Moriyama]], Japanese actor
86676 *[[1986]] - [[Robert Clark (actor)|Robert Clark]], Canadian actor
86677
86678 ==Deaths==
86679 *[[984]] - [[Pope John XIV]]
86680 *[[1384]] - [[Geert Groote]], Dutch founder of the Brethren of the Common Life (b. [[1340]])
86681 *[[1572]] - [[Miguel LÃŗpez de Legazpi]], Spanish conquistador (b.[[1502]])
86682 *[[1580]] - [[Jeronymo Osorio]], Portuguese historian (b. [[1506]])
86683 *[[1611]] - [[TomÃĄs Luis de Victoria]], Spanish composer
86684 *[[1639]] - [[Martin Opitz von Boberfeld]], German poet (b. [[1597]])
86685 *[[1643]] - [[Anne Hutchinson]], English Puritan preacher (b. [[1591]])
86686 *[[1648]] - [[Edward Herbert, 1st Baron Herbert of Cherbury]], English diplomat, poet, and philosopher (b. [[1583]])
86687 *[[1672]] - [[Johan de Witt]], Dutch politican (b. [[1625]])
86688 *[[1672]] - [[Cornelis de Witt]], Dutch politician (b. [[1623]])
86689 *[[1680]] - [[William Bedloe]], English informer (b. [[1650]])
86690 *[[1701]] - [[Charles Sedley]], English playwright
86691 *[[1707]] - [[Nicolas Gigault]], French organist and composer (b. [[1627]])
86692 *[[1773]] - [[Enrique Florez]], Spanish historian (b. [[1701]])
86693 *[[1811]] - [[Louis Antoine de Bougainville]], French explorer (b. [[1729]])
86694 *[[1823]] - [[Pope Pius VII]] (b. [[1740]])
86695 *[[1825]] - [[William Waldegrave, 1st Baron Radstock]], Governor of Newfoundland (b. [[1753]])
86696 *[[1887]] - [[Jules Laforgue]], French poet (b. [[1860]])
86697 *[[1904]] - [[RenÊ Waldeck-Rousseau]], French statesman (b. [[1846]])
86698 *[[1912]] - [[William Booth]], English founder of the Salvation Army (b. [[1829]])
86699 *[[1914]] - [[Pope Pius X]] (b. [[1835]])
86700 *[[1915]] - [[Paul Ehrlich]], German scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1854]])
86701 *[[1917]] - [[Adolf von Baeyer]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1835]])
86702 *[[1961]] - [[Percy Williams Bridgman]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1882]])
86703 *[[1971]] - [[Rashid Minhas]], Pakistani Air Force pilot (b. [[1951]])
86704 *[[1986]] - [[Milton Acorn]], Canadian poet (b. [[1923]])
86705 *[[1998]] - [[Raquel Rastenni]], Danish singer (b. [[1915]])
86706 *[[2001]] - Sir [[Fred Hoyle]], English astronomer and science fiction writer (b. [[1915]])
86707 *[[2005]] - [[Thomas Herrion]], American football player (b. [[1981]])
86708 *2005 - [[Krzysztof Raczkowski]], Polish heavy metal drummer (b. [[1970]])
86709
86710 ==Holidays and observances==
86711 *[[List of saints|RC saints]] - Saint [[Bernard of Clairvaux]]
86712 *[[BahÃĄ'í Faith]] - Feast of AsmÃĄ (Names) - First day of the ninth month of the BahÃĄ'í Calendar
86713 *[[Estonia]] - Restoration Day
86714 *[[Hungary]] - [[Stephen I of Hungary|St. Stephen]]'s day, the main national holiday in Hungary
86715 *[[Morocco]] - Revolution of the King and the People Day
86716
86717 ==External links==
86718 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/20 BBC: On This Day]
86719
86720 ----
86721
86722 [[August 19]] - [[August 21]] - [[July 20]] - [[September 20]] -- [[historical anniversaries|listing of all days]]
86723
86724 {{months}}
86725
86726 [[af:20 Augustus]]
86727 [[ar:20 ØŖØēØŗØˇØŗ]]
86728 [[an:20 d'agosto]]
86729 [[ast:20 d'agostu]]
86730 [[bg:20 авĐŗŅƒŅŅ‚]]
86731 [[be:20 ĐļĐŊŅ–ŅžĐŊŅ]]
86732 [[bs:20. august]]
86733 [[ca:20 d'agost]]
86734 [[ceb:Agosto 20]]
86735 [[cv:ÇŅƒŅ€ĐģĐ°, 20]]
86736 [[co:20 d'aostu]]
86737 [[cs:20. srpen]]
86738 [[cy:20 Awst]]
86739 [[da:20. august]]
86740 [[de:20. August]]
86741 [[et:20. august]]
86742 [[el:20 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
86743 [[es:20 de agosto]]
86744 [[eo:20-a de aÅ­gusto]]
86745 [[eu:Abuztuaren 20]]
86746 [[fo:20. august]]
86747 [[fr:20 aoÃģt]]
86748 [[fy:20 augustus]]
86749 [[ga:20 LÃēnasa]]
86750 [[gl:20 de agosto]]
86751 [[ko:8ė›” 20ėŧ]]
86752 [[hr:20. kolovoza]]
86753 [[io:20 di agosto]]
86754 [[id:20 Agustus]]
86755 [[ia:20 de augusto]]
86756 [[ie:20 august]]
86757 [[is:20. ÃĄgÃēst]]
86758 [[it:20 agosto]]
86759 [[he:20 באוגוסט]]
86760 [[jv:20 Agustus]]
86761 [[ka:20 აგვისáƒĸო]]
86762 [[csb:20 zÊlnika]]
86763 [[ku:20'ÃĒ gelawÃĒjÃĒ]]
86764 [[lt:RugpjÅĢčio 20]]
86765 [[lb:20. August]]
86766 [[li:20 augustus]]
86767 [[hu:Augusztus 20]]
86768 [[mk:20 авĐŗŅƒŅŅ‚]]
86769 [[ms:20 Ogos]]
86770 [[nap:20 'e aÚsto]]
86771 [[nl:20 augustus]]
86772 [[ja:8月20æ—Ĩ]]
86773 [[no:20. august]]
86774 [[nn:20. august]]
86775 [[oc:20 d'agost]]
86776 [[pl:20 sierpnia]]
86777 [[pt:20 de Agosto]]
86778 [[ro:20 august]]
86779 [[ru:20 авĐŗŅƒŅŅ‚Đ°]]
86780 [[sco:20 August]]
86781 [[sq:20 Gusht]]
86782 [[scn:20 di austu]]
86783 [[simple:August 20]]
86784 [[sk:20. august]]
86785 [[sl:20. avgust]]
86786 [[sr:20. авĐŗŅƒŅŅ‚]]
86787 [[fi:20. elokuuta]]
86788 [[sv:20 augusti]]
86789 [[tl:Agosto 20]]
86790 [[tt:20. August]]
86791 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 20]]
86792 [[th:20 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
86793 [[vi:20 thÃĄng 8]]
86794 [[tr:20 Ağustos]]
86795 [[uk:20 ŅĐĩŅ€ĐŋĐŊŅ]]
86796 [[wa:20 d' awousse]]
86797 [[war:Agosto 20]]
86798 [[zh:8月20æ—Ĩ]]
86799 [[pam:Agostu 20]]</text>
86800 </revision>
86801 </page>
86802 <page>
86803 <title>August 21</title>
86804 <id>1499</id>
86805 <revision>
86806 <id>41688273</id>
86807 <timestamp>2006-03-01T01:50:50Z</timestamp>
86808 <contributor>
86809 <username>Dcandeto</username>
86810 <id>70441</id>
86811 </contributor>
86812 <comment>Revert to revision 40432990 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
86813 <text xml:space="preserve">{| style=&quot;float:right;&quot;
86814 |-
86815 |{{AugustCalendar}}
86816 |-
86817 |{{ThisDateInRecentYears|Month=August|Day=21}}
86818 |}
86819 '''[[August 21]]''' is the 233rd day of the year (234th in [[leap year]]s) in the [[Gregorian Calendar]]. There are 132 days remaining.
86820
86821 ==Events==
86822 *[[1192]] - [[Minamoto Yoritomo]] becomes [[Shogun|Seii Tai Shōgun]] and the ''de facto'' ruler of [[Japan]]. (Traditional [[Japanese calendar|Japanese date]]: July 12, 1192)
86823 *[[1680]] - [[Pueblo people|Pueblo Indians]] capture [[Santa Fe, New Mexico|Santa Fe]] from Spanish during the [[Pueblo Revolt]]
86824 *[[1770]] - [[James Cook]] formally claims eastern [[Australia]] for [[Kingdom of Great Britain|Great Britain]], naming it [[New South Wales]].
86825 *[[1772]] - King [[Gustav III of Sweden|Gustav III]] completes his coup d'etat by adopting a new [[Instrument of Government (1772)|Constitution]], ending [[Age of Liberty in Sweden|half a century of parliamentary rule]] in [[Sweden]] and installing him as an [[Enlightened absolutism|enlightened despot]].
86826 *[[1831]] - [[Nat Turner]] leads slave revolt in [[Southampton County, Virginia]]
86827 *[[1841]] - The [[venetian blind]] is first patented in the [[United States]] by [[John Hampson]].
86828 *[[1842]] - The city of [[Hobart]], [[Tasmania]], is founded.
86829 *[[1852]] - [[Tlingit]] Indians destroy [[Fort Selkirk]], [[Yukon]] Territory
86830 *[[1856]] - [[United States|America's]] first [[consul]] to [[Japan]], [[Townsend Harris]], arrives in [[Shimoda, Shizuoka|Shimoda]]. (Traditional [[Japanese calendar|Japanese date]]: July 21, 1856)
86831 *[[1858]] - The [[Abraham Lincoln|Lincoln]]-[[Stephen A. Douglas|Douglas]] debates begin
86832 *[[1862]] - The [[Vienna]] [[Wiener Stadtpark|Stadtpark]] opens its gates.
86833 *[[1863]] - [[Lawrence, Kansas]] is destroyed by [[Confederate]] guerillas [[Quantrill's Raiders]] in the [[Lawrence Massacre]].
86834 *[[1878]] - The [[American Bar Association]] is founded
86835 *[[1879]] - The [[Mary, the mother of Jesus|Virgin Mary]], along with [[St. Joseph]] and [[St. John the Evangelist]] reportedly appear to the people of [[Knock]], [[County Mayo]], [[Ireland]].
86836 *[[1888]] - The first successful [[adding machine]] in the [[United States]] was patented by [[William Seward Burroughs]].
86837 * [[1911]] - The ''[[Mona Lisa]]'' was [[art theft|stolen]] by a [[Louvre]] employee.
86838 *[[1944]] - [[Dumbarton Oaks Conference]], prelude to the [[United Nations]], begins.
86839 *[[1959]] - President [[Eisenhower]] signs an executive order proclaiming [[Hawaii]] the 50th state of the union.
86840 *[[1968]] - [[Soviet Union]]-dominated [[Warsaw Pact]] troops invade [[Czechoslovakia]], crushing the [[Prague Spring]]; on the same day, [[Nicolae Ceauşescu]], leader of [[Communist Romania]], publicly condemns the Soviet maneuver, encouraging the Romanian population to arm itself against possible Soviet reprisals.
86841 *[[1971]] - [[Black Panther Party|Black Panther]] [[George Jackson (Black Panther)|George Jackson]] is shot and killed in the prison yard at [[California]]'s San Quentin prison.
86842 *1971 - A bomb exploded in the [[Liberal Party (Philippines)|Liberal Party]] campaign rally in Plaza Miranda, [[Manila]], [[Philippines]] with several anti-[[Ferdinand Marcos|Marcos]] political candidates injured.
86843 *[[1976]] - [[Operation Paul Bunyan]] at [[Panmunjeom]], [[Korea]]
86844 *[[1983]] - Philippine opposition leader [[Benigno Aquino, Jr.]] was assassinated at the [[Manila International Airport]].
86845 *[[1986]] - Toxic gas erupts from [[volcano|volcanic]] [[Lake Nyos]] in [[Cameroon]], killing over 1700 people.
86846 *[[1987]] - [[Hard rock]] band [[Guns N' Roses]] release their classic debut ''[[Appetite for Destruction]].''
86847 *[[1991]] - [[Latvia]] declares its full independence from the [[Soviet Union]].
86848 *1991 - [[coup d'Êtat|Coup]] attempt against [[Mikhail Gorbachev]] collapses.
86849 *[[1993]] - [[NASA]] loses contact with the [[Mars Observer]] spacecraft.
86850 *[[1997]] - The British Rock Group [[Oasis (band)|Oasis]] release album, ''[[Be Here Now]]''.
86851 *[[1998]] - The [[United States]] destroys a pharmaceutical plant (erroneously believed to be a chemical weapons plant) in [[Sudan]].
86852 *[[2001]] - [[NATO]] decides to send a peace-keeping force to the former [[Yugoslavia|Yugoslav]] [[Republic of Macedonia]].
86853 *2001 - A sixth-century temple is discovered in central [[Mexico]].
86854 *2001 - The [[Red Cross]] announces that a [[famine]] is striking [[Tajikistan]], and calls for international financial aid for Tajikistan and [[Uzbekistan]].
86855 *[[2002]] - [[Jean ChrÊtien]], [[Prime Minister of Canada]], announces that he will not seek re-election and would resign within eighteen months.
86856 *[[2004]] - A grenade attack on Bangladesh Awamee League, the bigest political party in [[Bangladesh]] kills 22 and injures more than a thousand, including party president [[Sheikh Hasina]].
86857 *[[2005]] - [[Pope Benedict XVI]] concludes [[World Youth Day 2005|World Youth Day]] with a mass. Over 1,100,000+ people attended the closing liturgy.
86858
86859 ==Births==
86860 *[[1165]] - King [[Philip II of France]] (d. [[1223]])
86861 *[[1535]] - [[Shimazu Yoshihiro]], Japanese samurai and warlord (d. [[1619]])
86862 *[[1567]] - [[Francis de Sales]], Bishop of Geneva and saint (d. [[1622]])
86863 *[[1597]] - [[Roger Twysden]], English antiquarian and royalist (d. [[1672]])
86864 *[[1643]] - King [[Afonso VI of Portugal]] (b. [[1683]])
86865 *[[1660]] - [[Hubert Gautier]], French scientist and civil engineer (d. [[1737]])
86866 *[[1665]] - [[Giacomo F. Maraldi]], French-Italian astronomer (d. [[1729]])
86867 *[[1670]] - [[James FitzJames, 1st Duke of Berwick]], French military leader (d. [[1734]])
86868 *[[1725]] - [[Jean-Baptiste Greuze]], French painter (d. [[1805]])
86869 *[[1754]] - [[William Murdoch]], Scottish inventor (d. [[1839]])
86870 *[[1765]] - [[William IV of the United Kingdom]] (d. [[1837]])
86871 *[[1789]] - [[Augustin Louis Cauchy]], French mathematician (d. [[1857]])
86872 *[[1801]] - [[Guillaume Groen van Prinsterer]], Dutch politician (d. [[1876]])
86873 *[[1811]] - [[William Kelly (inventor)|William Kelly]], American inventor (d. [[1888]])
86874 *[[1813]] - [[Jean Stas]], Belgian chemist (d. [[1891]])
86875 *[[1816]] - [[Charles FrÊdÊric Gerhardt]], French chemist (d. [[1856]])
86876 *[[1826]] - [[Karl Gegenbaur]], German anatomist (d. [[1903]])
86877 *[[1872]] - [[Aubrey Beardsley]], English illustrator (d. [[1898]])
86878 *[[1904]] - [[Count Basie|William &quot;Count&quot; Basie]], American bandleader (d. [[1984]])
86879 *[[1906]] - [[Friz Freleng]], American movie animator (d. [[1995]])
86880 *[[1908]] - [[M. M. Kaye]], British writer (d. [[2004]])
86881 *[[1915]] - [[Raquel Rastenni]], Danish singer (d. [[1998]])
86882 *[[1923]] - [[Shimon Peres]], [[Prime Minister of Israel]], recipient of the [[Nobel Peace Prize]]
86883 *[[1924]] - [[Jack Buck]], American sports announcer (d. [[2002]])
86884 *1924 - [[Chris Schenkel]], American sports journalist (d. [[2005]])
86885 *1924 - [[Jack Weston]], American actor (d. [[1996]])
86886 *[[1925]] - [[Maurice Pialat]], French actor and director (d. [[2003]])
86887 *[[1928]] - [[Art Farmer]], American trumpet player (d. [[1999]])
86888 *[[1930]] - [[Princess Margaret, Countess of Snowdon]] (d. [[2002]])
86889 *[[1932]] - [[Melvin Van Peebles]], American actor and screenwriter
86890 *[[1933]] - [[Janet Baker]], English opera singer ([[mezzo-soprano]])
86891 *[[1936]] - [[Wilt Chamberlain]], American basketball player (d. [[1999]])
86892 *[[1938]] - [[Kenny Rogers]], American singer and actor
86893 *[[1939]] - [[James Burton]], American guitarist
86894 *1939 - [[Clarence Williams III]], American actor
86895 *[[1944]] - [[Jackie DeShannon]], American singer
86896 *1944 - [[Peter Weir]], Australian film director
86897 *[[1950]] - [[Patrick Juvet]], Swiss singer
86898 *[[1951]] - [[Eric Goles]], Chilean mathematician and computer scientist
86899 *[[1952]] - [[Joe Strummer]], British musician and singer ([[The Clash]]) (d. [[2002]])
86900 *[[1954]] - [[Ivan Stang]], American writer
86901 *[[1956]] - [[Kim Cattrall]], English-born actress
86902 *[[1959]] - [[Jim McMahon]], American football player
86903 *[[1962]] - [[Jeff Stryker]], American adult film actor
86904 *[[1963]] - [[Mohammed VI of Morocco]]
86905 *[[1964]] - [[Trinity Loren]], American actress and model (d. [[1998]])
86906 *[[1967]] - [[Carrie-Anne Moss]], Canadian actress
86907 *1967 - [[Serj Tankian]], Lebanese-born singer ([[System of a Down]])
86908 *[[1969]] - [[JosÊe Chouinard]], Canadian figure skater
86909 *[[1970]] - [[Erik Dekker]], Dutch professional cyclist
86910 *[[1971]] - [[Liam Howlett]], British musician (([[The Prodigy]])
86911 *[[1978]] - [[Reuben Droughns]], American football player
86912 *1978 - [[Jason Marquis]], American baseball player
86913 *[[1980]] - [[Burney Lamar]], American race car driver
86914 *[[1984]] - [[AlizÊe]], French singer
86915 *[[1991]] - [[Tess GaerthÊ]], Dutch singer and actress
86916
86917 ==Deaths==
86918 *[[1157]] - King [[Alfonso VII of Castile]] (b. 1104/1105)
86919 *[[1153]] - [[Bernard of Clairvaux]], French theologian (b. [[1090]])
86920 *[[1271]] - [[Alphonse of Toulouse]], son of [[Louis VIII of France]] (b. [[1220]])
86921 *[[1581]] - [[Sakuma Nobumori]], Japanese retainer and samurai (b. [[1527]])
86922 *[[1614]] - [[Elizabeth BÃĄthory]], Hungarian serial killer (b. [[1560]])
86923 *[[1627]] - [[Jacques Mauduit]], French composer (b. [[1557]])
86924 *[[1673]] - [[Henry Grey, 1st Earl of Stamford]], English soldier
86925 *[[1689]] - [[William Cleland]], Scottish poet and soldier
86926 *[[1762]] - [[Lady Mary Wortley Montagu]], English writer (b. [[1689]])
86927 *[[1763]] - [[Charles Wyndham, 2nd Earl of Egremont]], British statesman (b. [[1710]])
86928 *[[1796]] - [[John McKinly]], American physician and President of Delaware (b. [[1721]])
86929 *[[1814]] - [[Benjamin Thompson]], American physicist and inventor (b. [[1753]])
86930 *[[1836]] - [[Claude-Louis Navier]], French physicist (b. [[1785]])
86931 *[[1838]] - [[Adelbert von Chamisso]], German writer (b. [[1781]])
86932 *[[1940]] - [[Leon Trotsky]], Russian revolutionary (b. [[1879]])
86933 *1940 - [[Ernest Lawrence Thayer]], American poet (b. [[1863]])
86934 *[[1943]] - [[Henrik Pontoppidan]], Danish writer, [[Nobel Prize in Literature|Nobel Prize]] (b. [[1857]])
86935 *[[1947]] - [[Ettore Bugatti]], Italian automobile manufacturer (b. [[1881]])
86936 *[[1951]] - [[Constant Lambert]], British composer and conductor (b. [[1905]])
86937 *[[1957]] - [[Harald Ulrik Sverdrup]], Norwegian meteorologist and oceanographer (b. [[1888]])
86938 *[[1960]] - [[David Barnard Steinman]], American civil engineer and bridge designer (b. [[1886]])
86939 *[[1978]] - [[Charles Eames]], American designer and architect (b. [[1907]])
86940 *[[1982]] - [[Sobhuza II]], [[King of Swaziland]] (b. [[1899]])
86941 *[[1983]] - [[Benigno S. Aquino Jr.]], Philippine opposition leader (b. [[1932]])
86942 *[[1995]] - [[Subrahmanyan Chandrasekhar]], Indian-born astrophysicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1910]])
86943 *[[1997]] - [[Norris Bradbury]], American physicist (b. [[1909]])
86944 *[[2000]] - [[Daniel Lisulo]], Zambian prime minister (b. [[1930]])
86945 *[[2003]] - [[Kathy Wilkes]], English philosopher and aid worker (b. [[1946]])
86946 *2003 - [[Wesley Willis]], American musician (b. [[1963]])
86947 *[[2005]] - [[Marcus Schmuck]], Austrian mountaineer (b. [[1925]])
86948 *2005 - [[Robert Moog]], American pioneer of electronic music (b. [[1934]])
86949 *2005 - [[Dalia Rabikovich]], Israeli poet (b. [[1936]])
86950
86951 ==Holidays and observances==
86952 *[[Ninoy Aquino|Ninoy Aquino Day]] - special holiday in the [[Philippines]].
86953 *[[Roman festivals]] - [[Consualia]], in honor of [[Consus]], is held
86954 *[[List of saints|RC saints]] - Pope [[Pius X]]
86955 *[[Orthodox]] - [[Thaddaeus]]
86956
86957 ==External links==
86958 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/21 BBC: On This Day]
86959
86960 ----
86961
86962 [[August 20]] - [[August 22]] - [[July 21]] - [[September 21]] -- [[historical anniversaries|listing of all days]]
86963
86964 {{months}}
86965
86966 [[af:21 Augustus]]
86967 [[ar:21 ØŖØēØŗØˇØŗ]]
86968 [[an:21 d'agosto]]
86969 [[ast:21 d'agostu]]
86970 [[bg:21 авĐŗŅƒŅŅ‚]]
86971 [[be:21 ĐļĐŊŅ–ŅžĐŊŅ]]
86972 [[bs:21. august]]
86973 [[ca:21 d'agost]]
86974 [[ceb:Agosto 21]]
86975 [[cv:ÇŅƒŅ€ĐģĐ°, 21]]
86976 [[co:21 d'aostu]]
86977 [[cs:21. srpen]]
86978 [[cy:21 Awst]]
86979 [[da:21. august]]
86980 [[de:21. August]]
86981 [[et:21. august]]
86982 [[el:21 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
86983 [[es:21 de agosto]]
86984 [[eo:21-a de aÅ­gusto]]
86985 [[eu:Abuztuaren 21]]
86986 [[fo:21. august]]
86987 [[fr:21 aoÃģt]]
86988 [[fy:21 augustus]]
86989 [[ga:21 LÃēnasa]]
86990 [[gl:21 de agosto]]
86991 [[ko:8ė›” 21ėŧ]]
86992 [[hr:21. kolovoza]]
86993 [[io:21 di agosto]]
86994 [[id:21 Agustus]]
86995 [[ia:21 de augusto]]
86996 [[ie:21 august]]
86997 [[is:21. ÃĄgÃēst]]
86998 [[it:21 agosto]]
86999 [[he:21 באוגוסט]]
87000 [[jv:21 Agustus]]
87001 [[ka:21 აგვისáƒĸო]]
87002 [[csb:21 zÊlnika]]
87003 [[ku:21'ÃĒ gelawÃĒjÃĒ]]
87004 [[la:21 Augusti]]
87005 [[lt:RugpjÅĢčio 21]]
87006 [[lb:21. August]]
87007 [[li:21 augustus]]
87008 [[hu:Augusztus 21]]
87009 [[mk:21 авĐŗŅƒŅŅ‚]]
87010 [[ms:21 Ogos]]
87011 [[nap:21 'e aÚsto]]
87012 [[nl:21 augustus]]
87013 [[ja:8月21æ—Ĩ]]
87014 [[no:21. august]]
87015 [[nn:21. august]]
87016 [[oc:21 d'agost]]
87017 [[pl:21 sierpnia]]
87018 [[pt:21 de Agosto]]
87019 [[ro:21 august]]
87020 [[ru:21 авĐŗŅƒŅŅ‚Đ°]]
87021 [[sco:21 August]]
87022 [[sq:21 Gusht]]
87023 [[scn:21 di austu]]
87024 [[simple:August 21]]
87025 [[sk:21. august]]
87026 [[sl:21. avgust]]
87027 [[sr:21. авĐŗŅƒŅŅ‚]]
87028 [[fi:21. elokuuta]]
87029 [[sv:21 augusti]]
87030 [[tl:Agosto 21]]
87031 [[tt:21. August]]
87032 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 21]]
87033 [[th:21 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
87034 [[vi:21 thÃĄng 8]]
87035 [[tr:21 Ağustos]]
87036 [[uk:21 ŅĐĩŅ€ĐŋĐŊŅ]]
87037 [[wa:21 d' awousse]]
87038 [[war:Agosto 21]]
87039 [[zh:8月21æ—Ĩ]]
87040 [[pam:Agostu 21]]</text>
87041 </revision>
87042 </page>
87043 <page>
87044 <title>Dodo (Alice's Adventures in Wonderland)</title>
87045 <id>1500</id>
87046 <revision>
87047 <id>33591757</id>
87048 <timestamp>2006-01-02T12:39:06Z</timestamp>
87049 <contributor>
87050 <username>Hu</username>
87051 <id>133716</id>
87052 </contributor>
87053 <minor />
87054 <comment>Category fictional birds.</comment>
87055 <text xml:space="preserve">[[Image:Alice and Dodo.gif|right]]
87056
87057 The '''Dodo''' is a fictional character appearing in Chapters 2 and 3 of the book ''[[Alice's Adventures in Wonderland]]'' by [[Lewis Carroll]] (Charles Lutwidge Dodgson). It is a reference to Dodgson himself who had a stutter and very frequently pronounced his name &quot;Do-do-dodgson&quot;.
87058
87059 In this passage Lewis Carroll incorporated references to everyone present on the original boating expedition of [[July 4]], [[1862]] during which Alice's Adventures were first told, with [[Alice (Alice's Adventures in Wonderland)|Alice]] as herself, and the others represented by birds: the [[Lory]] was Lorina Liddell, the [[The Eaglet|Eaglet]] was Edith Liddell, the Dodo was Carroll, and the [[Duck]] was Rev. [[Robinson Duckworth]].
87060
87061 [[Category:Alice characters]]
87062 [[Category:Fictional birds]]</text>
87063 </revision>
87064 </page>
87065 <page>
87066 <title>Lory</title>
87067 <id>1501</id>
87068 <revision>
87069 <id>32990968</id>
87070 <timestamp>2005-12-28T12:36:55Z</timestamp>
87071 <contributor>
87072 <username>Anthony Appleyard</username>
87073 <id>119438</id>
87074 </contributor>
87075 <text xml:space="preserve">A [[lory]] is any of about 30 [[species]] of small, fast-moving [[parrot]] from southern Asia and New Guinea. See [[lorikeet]].
87076 ----
87077 The '''Lory''' is a character appearing in Chapters 2 and 3 of ''[[Alice's Adventures in Wonderland]]'' by [[Lewis Carroll]], a reference to Lorina Liddell, [[Alice (Alice's Adventures in Wonderland)|Alice]]'s sister.
87078
87079 In this passage Lewis Carroll incorporated references to everyone present on the original boating expedition of [[July 4]], [[1862]] during which Alice's Adventures were first told, with Alice as [[Alice Liddell|herself]], and the others represented by birds: the Lory was Lorina Liddell, [[the Eaglet]] was Edith Liddell, the [[Dodo (Alice's Adventures in Wonderland)|Dodo]] was [[Lewis Carroll|Carroll]] himself, and the Duck was Rev. [[Robinson Duckworth]].
87080
87081 [[Category:Alice characters]]
87082 [[Category:Fictional parrots]]</text>
87083 </revision>
87084 </page>
87085 <page>
87086 <title>Eaglet (Alice's Adventures in Wonderland)</title>
87087 <id>1502</id>
87088 <revision>
87089 <id>31596412</id>
87090 <timestamp>2005-12-16T10:39:13Z</timestamp>
87091 <contributor>
87092 <ip>202.152.162.216</ip>
87093 </contributor>
87094 <text xml:space="preserve">The '''Eaglet''' is a character appearing in Chapter 2 and 3 of ''[[Alice's Adventures in Wonderland]]'' by [[Lewis Carroll]], a reference to Edith Liddell, [[Alice (Alice's Adventures in Wonderland)|Alice]]'s sister.
87095
87096 In this passage Lewis Carroll incorporated references to everyone present on the original boating expedition of [[July 4]], [[1862]] during which Alice's Adventures were first told, with Alice as [[Alice Liddell|herself]], and the others represented by birds: the [[Lory]] was Lorina Liddell, the Eaglet was Edith Liddell, the [[Dodo (Alice's Adventures in Wonderland)|Dodo]] was [[Charles Lutwidge Dodgson]], and the Duck was Rev. [[Robinson Duckworth]].
87097 [[Category:Alice characters|Eaglet, The]]
87098 [[Category:Fictional birds of prey |Eaglet, The]]</text>
87099 </revision>
87100 </page>
87101 <page>
87102 <title>Albuquerque (disambiguation)</title>
87103 <id>1503</id>
87104 <revision>
87105 <id>24311853</id>
87106 <timestamp>2005-09-29T11:22:09Z</timestamp>
87107 <contributor>
87108 <username>PatGallacher</username>
87109 <id>164032</id>
87110 </contributor>
87111 <comment>better disambiguation</comment>
87112 <text xml:space="preserve">#redirect [[Alburquerque]]</text>
87113 </revision>
87114 </page>
87115 <page>
87116 <title>Albert</title>
87117 <id>1504</id>
87118 <revision>
87119 <id>42096886</id>
87120 <timestamp>2006-03-03T20:30:09Z</timestamp>
87121 <contributor>
87122 <ip>62.162.242.140</ip>
87123 </contributor>
87124 <text xml:space="preserve">'''Albert''' is a common first and last name. It is also the name of several historical people. (Note: only persons with &quot;Albert&quot; as their only common name are listed here; persons with &quot;Albert&quot; as a first or last name, such as [[Albert Einstein]], are not listed.)The name was from a germanic name Adalbrecht that meant &quot;bright nobility&quot;
87125 * [[Archduke Albert (1817-1895)]], Son of [[Archduke Charles]], [[Austria]]n General.
87126 *[[Albert (wojt)]] (after 1317), [[wojt]] of [[KrakÃŗw]]
87127 *[[Albert I of Belgium]] reigning [[1909]]-[[1934]]
87128 *[[Albert I of Brandenburg]] (c. 1100-1170) Margrave of Brandenburg
87129 *[[Albert I of Habsburg]] (c. 1250-1308) German king
87130 *[[Albert II of Austria]] (1298-1358), Duke of Austria
87131 *[[Albert II of Belgium]] reigning [[Belgian monarch]]
87132 *[[Albert II of Habsburg]] (=Albert V of Austria) (1397-1439) German king
87133 *[[Albert I, Prince of Monaco|Albert I of Monaco]]
87134 *[[Albert II, Prince of Monaco|Albert II of Monaco]] reigning [[Monegasque monarch]]
87135 *[[Albert III of Austria]], Duke of Austria 1365-1395
87136 *[[Albert IV of Austria]], Duke of Austria 1395-1404
87137 *[[Albert Of Aix]] (c. A.D. 1100)
87138 *[[Albert of Mainz]] (1490-1545) Archbishop of Mainz
87139 *[[Albert of Prussia]] (1490-1568) First duke of Prussia
87140 *[[Albert of Sweden|Albert Mecklenburg, King of Sweden]] reigning [[1363]]-[[1389]]
87141 *[[Albert The Degenerate]] (c. 1240-1314)
87142 *[[Albert The Warlike]] (1522-1557) Prince of Bayreuth
87143 *[[Albert VI of Austria]], Duke of Austria (ruler of Inner Austria) 1446-1463
87144 *[[Albert, duc de Broglie]] (1821-1901), French politician
87145 *[[Albert, Duke of Saxony]] (1443-1500) Duke of Saxony
87146 *[[Albert, King of Saxony]] (1828-1873)
87147 *[[Albert's Real Jamaican Foods]] (Restaurant)
87148 *[[Archduke Albert (1559-1621)]], Son of [[Maximilian II, Holy Roman Emperor]], Governor of the [[Low Countries]];
87149 *[[Prince_Albert_of_Saxe-Coburg-Gotha|Albert of Saxe-Coburg-Gotha]] (1819-1861) Prince-consort of Queen Victoria of England
87150 *[[Prince Albert Victor, Duke of Clarence and Avondale]]
87151
87152 The following places are named '''Albert'''.
87153 *[[Albert County, New Brunswick]]
87154 *[[Albert (electoral district)]] in New Brunswick, Canada
87155 *[[Albert Township, Michigan]]
87156 *[[Albert Township, North Dakota]]
87157 *[[Albert, Kansas]]
87158 *[[Albert, Somme]] is the name of a [[commune in France|commune]] of the [[Somme]] ''[[dÊpartement in France|dÊpartement]]'' in [[France]].
87159
87160 In addition, the word ''&quot;Albert&quot;'' can refer to the following:
87161 * '''Albert''' is also the name of one of the supporting characters in the early [[1960s]] version of the ''[[Josie and the Pussycats (comic) | Josie]]'' (later ''[[Josie and the Pussycats (comic) | Josie and the Pussycats]]'') comic book produced by [[Archie Comics]].
87162 *'''[[719_Albert|Albert]]''' is also a near-earth [[asteroid]].
87163 *'''[[Albert clarinet maker|Albert]]''' was a [[Belgian]] [[clarinet]] maker.
87164 *'''Albert E. Gator''', the mascot of the [[University of Florida]]
87165
87166 The female form of Albert is '''[[Alberta]]''' or '''[[Albertina]]'''
87167
87168 {{disambig}}
87169
87170 [[de:Albert]]
87171 [[fr:Albert]]
87172 [[hu:Albert (keresztnÊv)]]
87173 [[ja:ã‚ĸãƒĢバãƒŧト]]
87174 [[nl:Albert]]
87175 [[pl:Albert]]
87176 [[pt:Alberto]]
87177 [[sk:Albert]]
87178 [[fi:Albert]]
87179 [[sv:Albert]]
87180 Albert LLLESHI
87181 DIBER R.Macedonia</text>
87182 </revision>
87183 </page>
87184 <page>
87185 <title>Albert I</title>
87186 <id>1505</id>
87187 <revision>
87188 <id>38138004</id>
87189 <timestamp>2006-02-04T12:33:58Z</timestamp>
87190 <contributor>
87191 <username>Ft1</username>
87192 <id>875504</id>
87193 </contributor>
87194 <minor />
87195 <comment>+it</comment>
87196 <text xml:space="preserve">'''Albert I''' is the name of several historical people:
87197
87198 *[[Albert I of Belgium]] (1875 - 1934) third king of Belgium
87199 *[[Albert I of Brandenburg]] (c. 1100-1170) Margrave of Brandenburg
87200 *[[Albert I of Germany|Albert I of Habsburg]] (c. 1250-1308) German king
87201 *[[Albert I, Prince of Monaco|Albert I of Monaco]] (1848-1922), Prince of [[Monaco]]
87202 *[[Albert I, Count of Namur|Albert I of Namur]] (c. 950-1011), a Belgian count
87203 *[[Albert I, Count Vermandois|Albert I of Vermandois]] (917 -- [[8 September]] 987), Count of Vermandois in Normandy
87204
87205 {{hndis}}
87206
87207 [[fr:Albert_Ier]]
87208 [[it:Alberto I]]</text>
87209 </revision>
87210 </page>
87211 <page>
87212 <title>Albert II</title>
87213 <id>1506</id>
87214 <revision>
87215 <id>38295331</id>
87216 <timestamp>2006-02-05T10:52:48Z</timestamp>
87217 <contributor>
87218 <username>Ft1</username>
87219 <id>875504</id>
87220 </contributor>
87221 <minor />
87222 <comment>+it</comment>
87223 <text xml:space="preserve">'''Albert II''' is the name of several monarchs:
87224
87225 ===Current===
87226 * [[Albert II of Belgium]] (1934&amp;ndash;)
87227 * [[Albert II, Prince of Monaco|Albert II of Monaco]] (1958&amp;ndash;)
87228 ===Historical===
87229 * [[Albert II of Austria]] (1298&amp;ndash;1358)
87230 * [[Albert II of Gorizia]]
87231 * [[Albert II of Germany|Albert II of Habsburg]] (1397&amp;ndash;1439)
87232
87233
87234 {{hndis}}
87235
87236 [[fr:Albert II]]
87237 [[it:Alberto II]]
87238 [[ko:ė•Œë˛ ëĨ´ 2ė„¸]]
87239 [[nl:Albert II]]
87240 [[ja:ã‚ĸãƒĢベãƒŧãƒĢ2世]]
87241 [[no:Albert II]]
87242 [[pl:Albert II]]
87243 [[fi:Albert II]]</text>
87244 </revision>
87245 </page>
87246 <page>
87247 <title>Albert III</title>
87248 <id>1507</id>
87249 <revision>
87250 <id>35530412</id>
87251 <timestamp>2006-01-17T11:57:58Z</timestamp>
87252 <contributor>
87253 <username>Korg</username>
87254 <id>263660</id>
87255 </contributor>
87256 <minor />
87257 <comment>{{hndis}}</comment>
87258 <text xml:space="preserve">'''Albert III''' may mean:
87259
87260
87261 *[[Albert III of Austria]] (1349-1395)
87262 *[[Albert III, Duke of Bavaria|Albert III of Bavaria]] (1438-1460)
87263 *[[Albert III, Margrave of Brandenburg]] (1414-1486)
87264 *[[Albert III, Count of Namur]] (1048-1102)
87265 *[[Albert III, Duke of Saxe-Wittenberg]] (1260-1298)
87266 *[[Albert, Duke of Saxony]] (1443-1500), sometimes called &quot;Albert III&quot;
87267
87268 {{hndis}}</text>
87269 </revision>
87270 </page>
87271 <page>
87272 <title>Albert the Warlike</title>
87273 <id>1508</id>
87274 <revision>
87275 <id>40852331</id>
87276 <timestamp>2006-02-23T12:32:28Z</timestamp>
87277 <contributor>
87278 <username>Saga City</username>
87279 <id>138511</id>
87280 </contributor>
87281 <minor />
87282 <comment>/* References */</comment>
87283 <text xml:space="preserve">'''Albert''' or '''Albrecht''' ([[March 28]] [[1522]]-[[1557]]), prince of [[Bayreuth]], ([[Germany]]), surnamed '''the Warlike''', and also '''Alcibiades''', was a son of [[Kasimir, Margrave of Bayreuth]], and a member of the [[Franconia|Franconian]] branch of the [[Hohenzollern]] family.
87284
87285 He was born at [[Ansbach]] and having lost his father in 1527 he came under the guardianship of his uncle George, prince of Ansbach, a strong adherent of [[Protestantism]].
87286 In 1541 he received Bayreuth as his share of the family lands, and as the chief town of his principality was [[Kulmbach]] he is sometimes referred to as the margrave of
87287 Brandenburg-Kulmbach.
87288
87289 His restless and turbulent nature marked him out for a military career; and having collected
87290 a small band of soldiers, he assisted the emperor [[Charles V, Holy Roman Emperor|Charles V]] in his war with France in 1543.
87291 The [[Peace of Crepy]] in September 1544 deprived him of this employment, but he had won
87292 a considerable reputation, and when Charles was preparing to attack the [[Schmalkaldic League]], he took pains to win Albert's assistance.
87293 Sharing in the attack on the Saxon electorate, Albert was taken prisoner at [[Rochlitz]] in March 1547 by [[John Frederick, Elector of Saxony]], but was released as a result of the emperor's victory at the [[Battle of MÃŧhlberg]] in the succeeding April.
87294
87295 He then followed the fortunes of his friend [[Maurice of Saxony]], deserted Charles, and joined the league which proposed to overthrow the emperor by an alliance with [[Henry II of France]]. He took part in the subsequent campaign, but when the [[Peace of Passau]] was signed in August 1552 he separated himself from his allies and began a crusade of plunder in [[Franconia]]. Having extorted a large sum of money from the citizens of [[Nuremberg]], he quarrelled with his supporter, the French king, and offered his services to the emperor. Charles, anxious to secure such a famous fighter, gladly assented to Albert's demands and gave the imperial sanction to his possession of the lands taken from the bishops of [[WÃŧrzburg]] and [[Bamberg]]; and his conspicuous bravery was of great value to the emperor on the retreat from [[Metz]] in January 1553.
87296
87297 When Charles left Germany a few weeks later, Albert renewed his depredations in Franconia. These soon became so serious that a league was formed to crush him, and Maurice of Saxony led an army against his former comrade. The rival forces met at Sievershausen on [[July 9]] [[1553]], and after a combat of unusual ferocity Albert was put to flight.
87298 Henry II, duke of Brunswick, then took command of the troops of the league, and after Albert had been placed under the imperial ban in December 1553 he was defeated by Duke Henry, and compelled to flee to France.
87299 He there entered the service of Henry II of France and had undertaken a campaign to regain
87300 his lands when he died at [[Pforzheim]] on [[January 8]] [[1557]].
87301
87302 He is defined by [[Carlyle]] &quot;a failure of a Fritz,&quot; with &quot;features&quot; of a Frederick the Great in him, &quot;but who burnt away his splendid qualities as a mere temporary shine for the able editors, and never came to anything, full of fire, too much of it wildfire, not in the least like an Alcibiades except in the change of fortune he underwent&quot;.
87303
87304 ==References==
87305 *{{1911}}
87306
87307 [[Category:1522 births|Warlike, Albert the]]
87308 [[Category:1557 deaths|Warlike, Albert the]]
87309 [[Category:House of Hohenzollern]]
87310
87311 [[de:Albrecht Alcibiades von Brandenburg-Kulmbach]]</text>
87312 </revision>
87313 </page>
87314 <page>
87315 <title>Albert I of Brandenburg</title>
87316 <id>1509</id>
87317 <revision>
87318 <id>36476681</id>
87319 <timestamp>2006-01-24T08:16:25Z</timestamp>
87320 <contributor>
87321 <username>Kmorozov</username>
87322 <id>238736</id>
87323 </contributor>
87324 <comment>add cat</comment>
87325 <text xml:space="preserve">[[Image:Adalbertus Siegel.JPG|thumb|175px|left|The seal of Albert I]]'''Albert I''' (c. 1100-1170), [[Margrave]] of [[Brandenburg]], also called, '''The Bear''' (Ger: '''Albrecht der Bär'''), was the only son of Otto the Rich, count of [[Ballenstedt]], and [[Eilika of Saxony|Eilika]], daughter of [[Magnus, Duke of Saxony|Magnus Billung]], [[Rulers of Saxony|Duke of Saxony]]. He inherited the valuable estates in northern Saxony of his father in [[1123]], and on his mother's death, in [[1142]], succeeded to one-half of the lands of the house of [[Billung]].
87326 [[Image:Albrecht gesamt.JPG|thumb|Monument commemorating Albrecht, [[Spandau|Spandau Citadel]], Berlin]]
87327 Albrecht was a loyal [[vassal]] of his relation, [[Lothair II, Holy Roman Emperor|Lothar I, duke of Saxony]], from whom, about [[1123]], he received the margravate of [[Lusatia]], to the east; after Lothar became king of the Germans, he accompanied him on a disastrous expedition to [[Bohemia]] in [[1126]], when he suffered a short imprisonment.
87328
87329 Albert's entanglements in Saxony stemmed from his desire to expand his inherited estates there. In [[1128]] his brother-in-law, Henry II, who was margrave of a small area on the Elbe called the Saxon [[Northern March]], died, and Albert, disappointed at not receiving this fief himself, attacked Udo, the heir, and was consequently deprived of Lusatia by Lothar. In spite of this, he went to [[Italy]] in [[1132]] in the train of the king, and his services there were rewarded in [[1134]] by the investiture of the North Mark, which was again without a ruler.
87330
87331 Once he was firmly established in the[[ Nordmark]], Albert's covetous eye lay also on the thinly populated lands to the north and east. Three years he was occupied in campaigns against the Slavic [[Wends]], who as pagans were considered fair game, and whose subjugation to Christianity was the aim of the &quot;Wendish crusade&quot; of 1147 in which Albert took part; diplomatic measures were more successful, and by an arrangement made with [[Pribislav]], the last of the Wendish dukes of Brandenburg, Albert secured this district when the duke died in [[1150]]. Taking the title &quot;Margrave of Brandenburg&quot;, he pressed the &quot;crusade&quot; against the Wends, extended the area of his mark, encouraged German migration, established bishoprics under his protection, and so became the founder of the [[Margraviate]] of Brandenburg in [[1157]], which his heirs&amp;mdash;the [[Ascanian]]s&amp;mdash;held until the line died out in 1320.
87332
87333 In [[1137]] his cousin and nemesis, [[Henry II, Duke of Saxony|Henry the Proud]] was deprived by the Hohenstaufen [[Conrad III of Germany|Conrad III, King of the Germans]] of his Saxon duchy, which was awarded to Albert, if he could take it. After some initial success in his efforts to take possession, he was driven from Saxony, and also from his Nordmark by Henry, and compelled to take refuge in South Germany. When peace was made with Henry in [[1142]] Albert renounced the Saxon dukedom and received the counties of [[Weimar]] and [[Orlamunde|OrlamÃŧnde]]. It was possibly at this time that Albert was made Arch-Chamberlain of the Empire, an office which afterwards gave the Margraves of Brandenburg the rights of a [[prince-elector]].
87334
87335 A feud with Henry's son, [[Henry the Lion]], Duke of Saxony, was interrupted, in [[1158]], by a pilgrimage to the Holy Land, and in [[1162]] Albert accompanied the Emperor [[Frederick Barbarossa]] to [[Italy]], where he distinguished himself at the storming of [[Milan]].
87336
87337 In [[1164]] he joined a league of princes formed against Henry the Lion, and peace being made in [[1169]], Albert divided his territories among his six sons, and died on [[November 13]] [[1170]], and was buried at Ballenstedt.
87338
87339 His personal qualities won for him the surname of ''the Bear,'' &quot;not from his looks or qualities, for he was a tall handsome man, but from the cognisance on his shield, an able man, had a quick eye as well as a strong hand, and could pick what way was straightest among crooked things, was the shining figure and the great man of the North in his day, got much in the North and kept it, got Brandenburg for one there, a conspicuous country ever since,&quot; says [[Thomas Carlyle|Carlyle]], who called Albert &quot;a restless, much-managing, wide- warring man.&quot; He is also called by later writers &quot;the Handsome.&quot;
87340
87341 ==Family and children==
87342 He was married in [[1124]] to [[Sofie of Winzenburg]] (d. [[25 March]] [[1160]]) and they had the following children:
87343 # [[Otto I, Margrave of Brandenburg]] (1126/28 &amp;ndash; [[7 March]] [[1184]]).
87344 # Count [[Hermann I of OrlamÃŧnde]] (d. 1176).
87345 # Siegfried (d. [[24 October]] [[1184]]), [[Bishop of Brandenburg]] in 1173-80, [[Archbishop of Bremen]] in 1180-84.
87346 # Heinrich (d. 1185), a canon in [[Magdeburg]].
87347 # Count [[Albrech of Ballenstedt]] (d. after [[6 December]] [[1172]]).
87348 # Count [[Dietrich of Werben]] (d. after [[5 September]] [[1183]]).
87349 # Count [[Bernhard of Anhalt]] (1140 &amp;ndash; [[9 February]] [[1212]]), [[Duke of Saxony]] in 1180-1212 as Bernard III.
87350 # Hedwig (d. 1203), married to [[Otto, Margrave of Meißen]].
87351 # Daughter, married ca. 1152 to [[Vladislav of Bohemia]].
87352 # Adelheid (d. 1162), a nun in [[Lamspringe]].
87353 # Gertrude, married 1155 to Duke [[Diepold of Moravia]].
87354 # Sybille (d. ca. 1170), Abbess of [[Quedlinburg]].
87355 # Eilika
87356
87357 ==External links==
87358 *[http://www.underthesun.cc/Classics/Carlyle/Friedrich/Friedrich14.html Thomas Carlyle, ''History of Friedrich ii''] Chapter iv: Albert the Bear
87359 *[http://www.kessler-web.co.uk/History/KingListsEurope/GermanyBrandenburg.htm Brandenburg:] table of rulers
87360
87361 {{start box}}
87362 {{succession box|
87363 before=[[Henry II, Duke of Saxony|Henry II]]|
87364 title=[[Rulers of Saxony|Duke of Saxony]]|
87365 years=1138&amp;ndash;1142|
87366 after=[[Henry the Lion|Henry III]]}}
87367 {{succession box|
87368 before=New creation|
87369 title=[[Elector of Brandenburg|Margrave of Brandenburg]]|
87370 years=1157&amp;ndash;1170|
87371 after=[[Otto I, Margrave of Brandenburg|Otto I]]}}
87372 {{end box}}
87373
87374 [[Category:Dukes of Saxony]]
87375 [[Category:1100 births|Brandenburg, Albert I of]]
87376 [[Category:1170 deaths|Brandenburg, Albert I of]]
87377 [[Category:Ascanian House|Brandenburg, Albert I of ]]
87378
87379 {{Link FA|de}}
87380
87381 [[de:Albrecht I. (Brandenburg)]]
87382 [[fr:Albert Ier de Brandebourg]]
87383 [[it:Alberto I di Brandeburgo]]
87384 [[pl:Albrecht NiedÅēwiedÅē]]</text>
87385 </revision>
87386 </page>
87387 <page>
87388 <title>Albert III of Brandenburg</title>
87389 <id>1510</id>
87390 <revision>
87391 <id>15899980</id>
87392 <timestamp>2002-02-25T15:51:15Z</timestamp>
87393 <contributor>
87394 <username>Zundark</username>
87395 <id>70</id>
87396 </contributor>
87397 <comment>fix redirect</comment>
87398 <text xml:space="preserve">#REDIRECT [[Albert III, Margrave of Brandenburg]]</text>
87399 </revision>
87400 </page>
87401 <page>
87402 <title>Albert I of Hapsburg</title>
87403 <id>1511</id>
87404 <revision>
87405 <id>15899981</id>
87406 <timestamp>2004-10-22T15:19:29Z</timestamp>
87407 <contributor>
87408 <username>John Kenney</username>
87409 <id>10512</id>
87410 </contributor>
87411 <text xml:space="preserve">#REDIRECT [[Albert I of Germany]]</text>
87412 </revision>
87413 </page>
87414 <page>
87415 <title>Albert II of Hapsburg</title>
87416 <id>1512</id>
87417 <revision>
87418 <id>15899982</id>
87419 <timestamp>2004-10-18T06:00:28Z</timestamp>
87420 <contributor>
87421 <username>John Kenney</username>
87422 <id>10512</id>
87423 </contributor>
87424 <text xml:space="preserve">#REDIRECT [[Albert II of Germany]]</text>
87425 </revision>
87426 </page>
87427 <page>
87428 <title>Albert of Mainz</title>
87429 <id>1513</id>
87430 <revision>
87431 <id>40429516</id>
87432 <timestamp>2006-02-20T14:05:55Z</timestamp>
87433 <contributor>
87434 <username>DabMachine</username>
87435 <id>922466</id>
87436 </contributor>
87437 <minor />
87438 <comment>disambiguation from [[Florin]] to [[German florin]] - ([[WP:DPL|You can help!]])</comment>
87439 <text xml:space="preserve">[[Image:ADurerCardinalAlbrecht.jpg|thumb|right|260px|Cardinal Albert of Hohenzollern, Archbishop of Mainz and Magdeburg: engraved portrait by [[Albrecht DÃŧrer]], 1519]]
87440 Cardinal '''Albert of Hohenzollern''' (German: ''Albrecht''; [[June 28]], [[1490]] in [[CÃļlln]] &amp;ndash; [[September 24]], [[1545]] in [[Aschaffenburg]]), [[Prince-elector|Elector]] and [[Archbishop of Mainz]] and [[Archbishop of Magdeburg]], was the younger son of [[John Cicero, Elector of Brandenburg]].
87441
87442 After their father's death, Albert and his older brother [[Joachim I Nestor]] became [[Margrave of Brandenburg|margraves of Brandenburg]] in [[1499]], but only his older brother held the title of an [[elector of Brandenburg]].
87443 Having studied at the university of [[Frankfurt an der Oder]],
87444 Albert entered the ecclesiastical profession, and in [[1513]] became
87445 [[archbishop]] of [[Archbishopric of Magdeburg|Magdeburg]] and administrator of the [[Diocese of Halberstadt]].
87446
87447 In [[1514]] he obtained the [[Electorate of Mainz]],
87448 and in [[1518]] was made a [[Cardinal_(Catholicism)|cardinal]]. Meanwhile to pay for the [[pallium]] of the see of Mainz and to discharge the other
87449 expenses of his elevation, Albert had borrowed 21,000 [[ducat]]s from [[Jacob Fugger]], and had obtained permission from [[Pope Leo X]] to conduct the sale of [[indulgences]] in his diocese to
87450 obtain funds to repay this loan, as long as half the collection was forwarded to the Papacy. An agent of the Fuggers subsequently traveled in the Cardinal's retinue in charge of the cashbox. For this work he procured
87451 the services of [[John Tetzel]], and so indirectly exercised a
87452 potent influence on the course of the [[Reformation]].
87453
87454 When the imperial election of [[1519]] drew near, the elector's vote was
87455 eagerly solicited by the partisans of Charles (afterwards
87456 the emperor [[Charles V, Holy Roman Emperor|Charles V]]) and by those of [[Francis I of France|Francis I]], King of France, and he appears to have received a large amount of
87457 money for the vote, which he cast eventually for Charles.
87458
87459 Albert's large and liberal ideas, his friendship with [[Ulrich von Hutten]], and his political ambitions, appear to have raised
87460 hopes that he would be won over to [[Protestantism]]; but
87461 after the [[Peasants' War]] of [[1525]] he ranged himself definitely
87462 among the supporters of [[Catholicism]], and was among the princes
87463 who met to concert measures for its defence at [[Dessau]] in July
87464 [[1525]].
87465
87466 His hostility towards the reformers, however, was
87467 not so extreme as that of his brother Joachim I, Elector of
87468 Brandenburg; and he appears to have exerted himself in the
87469 interests of peace, although he was a member of the [[League of Nuremberg]], which was formed in [[1538]] as a counterpoise to the [[League of Schmalkalden]].
87470
87471 The new doctrines nevertheless
87472 made considerable progress in his dominions, and he was
87473 compelled to grant religious liberty to the inhabitants
87474 of Magdeburg in return for 500,000 [[German florin|florin]]s. During his
87475 latter years indeed he showed more intolerance towards the
87476 Protestants, and favoured the teaching of the [[Society of Jesus|Jesuits]] in his
87477 dominions.
87478
87479 Albert adorned the [[collegiate church]] (''Stiftskirche'') at [[Halle (Saale)]] and
87480 the [[Mainz Cathedral|cathedral at Mainz]] in sumptuous fashion, and took as his
87481 motto the words ''Domine, dilexi decorem domus tuae'' (Latin for: &quot;Lord, I admired the adornment of your house.&quot;). A generous
87482 patron of art and learning, he counted [[Erasmus]] among his
87483 friends.
87484
87485 He died at [[Aschaffenburg]] on September 24, 1545.
87486
87487 ==References==
87488 *{{1911}}
87489
87490 [[Category:Roman Catholic archbishops]]
87491 [[Category:German cardinals]]
87492 [[Category:1490 births]]
87493 [[Category:1545 deaths]]
87494
87495 [[de:Albrecht (Brandenburg)]]
87496 [[no:Albrecht von Brandenburg]]
87497 [[zh:é˜ŋå°”å¸ƒé›ˇå¸Œį‰š (勃兰į™ģå Ą)]]</text>
87498 </revision>
87499 </page>
87500 <page>
87501 <title>Albert of Prussia</title>
87502 <id>1514</id>
87503 <revision>
87504 <id>40543700</id>
87505 <timestamp>2006-02-21T08:55:36Z</timestamp>
87506 <contributor>
87507 <username>Kmorozov</username>
87508 <id>238736</id>
87509 </contributor>
87510 <comment>self rv</comment>
87511 <text xml:space="preserve">[[Image:Albrecht von Hohenzollern-Ansbach.jpg|thumb|250px|left|Albrecht von Hohenzollern Grand Master of the Teutonic Order]]
87512 [[Image:Albert_of_Prussia.jpg|right|]]
87513 '''Albert''' ([[May 16]], [[1490]] - [[March 20]], [[1568]]), ('''Albertus''' in [[Latin]], '''Albrecht''' in [[German language|German]]) Grand Master of the [[Teutonic Order]] and first duke of [[Ducal Prussia]], was the third son of [[Frederick I Margrave of Brandenburg-Ansbach|Frederick of Hohenzollern]], prince of [[Ansbach]] and [[Bayreuth]], and Sophia, daughter of [[Casimir IV Jagiello]] Grand Duke of [[Lithuania]] and King of [[Poland]] and his wife Elisabeth of [[Habsburg]].
87514
87515 Born at [[Ansbach]] on May 16, 1490, he was intended for the church, and spent some time at the court of Hermann, elector of [[Cologne]], who appointed him canon in his cathedral.
87516
87517 Duke Albrecht's Titles (on his proclamation of 1561, Koenigsberg): ''Albrecht the Elder, Margrave of Brandenburg, in Prussia, Stettin in Pomerania Duke of the Cassuben (Kashubs) and Wends, Burggrave of Nuremberg and Count of Ruegen etc''.
87518
87519 Turning to a more active life, Albrecht accompanied the emperor [[Maximilian I]] to [[Italy]] in 1508, and after his return spent some time in [[Hungary]].
87520
87521 In December, [[Friedrich of Saxony (1473-1510)|Frederick]], Grand Master of the [[Teutonic Order]], died, and Albert was chosen as his successor early in [[1511]] in the hope that his relationship to his maternal uncle [[Sigismund I of Poland|Sigismund I the Old]] Grand Duke of [[Lithuania]] and King of Poland, would facilitate a settlement of the disputes over east Prussia, which had been held by the Order under Polish suzerainty since the [[Second Treaty of Thorn]] in 1466, but this was not acknowledged by pope or emperor and had been circumvented by the Grand Masters.
87522
87523 The new Grand Master, aware of his duties to the empire and to the papacy, refused to submit to the crown of Poland and as war to retain independence appeared inevitable, he made strenuous efforts to secure allies, and carried on protracted negotiations with Emperor Maximilian I.
87524
87525 The ill-feeling, influenced by the ravages of members of the Order in Poland, culminated in a struggle which began in [[December]] [[1519]]. During the ensuing year Prussia was devastated, and Albert was granted a four-year truce early in [[1521]].
87526
87527 The dispute was referred to the Emperor [[Charles V, Holy Roman Emperor|Charles V]] and other princes, but as no settlement was reached he continued his efforts to obtain help in view of a renewal of the war. For this purpose he visited the [[Diet of Nuremberg]] in [[1522]], where he made the acquaintance of the [[Protestant reformation|reformer]], [[Andreas Osiander]], by whose influence he was won over to the new faith.
87528
87529 He then journeyed to [[Wittenberg]], where he was advised by [[Martin Luther (religious leader)|Martin Luther]] to abandon the rules of his Order, to marry, and to convert Prussia into a hereditary duchy for himself. This proposal, which was understandably appealing to Albert, had already been discussed by some of his relatives, but it was necessary to proceed cautiously, and he assured [[Pope Adrian VI]] that he was anxious to reform the Order and punish the knights who had adopted [[Lutheranism|Lutheran]] doctrines. Luther for his part did not stop at the suggestion, but in order to facilitate the change made special efforts to spread his teaching among the Prussians, while Albert's brother, [[Georg Margrave of Brandenburg-Ansbach|Georg]], Prince of Ansbach, laid the scheme before their uncle [[Sigismund I of Poland|Sigismund of Poland]]. After some delay the king assented to it, with the proviso that [[Ducal Prussia|Prussia]] should be treated as a Polish fiefdom, and after this arrangement had been confirmed by a treaty concluded at [[KrakÃŗw]], Albert pledged a personal oath to Sigismund I and was invested with the duchy for himself and his heirs on February 10, 1525.
87530 [[Image:Prussian Homage.JPG|400px|left|thumb|&quot;[[Prussian Tribute|The Prussian Tribute]]&quot;, oil on canvas by [[Jan Matejko]], 1882, 388 x 875 cm, National Museum in [[KrakÃŗw]]. [[Albrecht Hohenzollern]] and his brothers receive the [[Duchy of Prussia]] as a [[fiefdom]] from the Polish King, [[Sigismundus I the Elder]] in [[1525]].]]
87531
87532 The [[Estates of the realm | Estates]] of the land then met at [[Kaliningrad|KÃļnigsberg]] and took the oath of allegiance to the new duke, who used his full powers to promote the doctrines of Luther. This transition did not, however, take place without protest. Summoned before the imperial court of justice, Albert refused to appear and was proscribed, while the Order, having deposed the Grand Master, made a feeble effort to recover Prussia. But as the German princes were experiencing the tumult of the Reformation, the peasants' revolt, and the wars against the conquering Turks, they did not attack the duke, and agitation against him soon died away.
87533
87534 In imperial politics Albert was fairly active. Joining the [[League of Torgau]] in [[1526]], he acted in unison with the Protestants, and was among the princes who banded together to overthrow Charles V after the issue of the [[Augsburg Interim]] in May [[1548]]. For various reasons, however, poverty and personal inclination among others, he did not take a prominent part in the military operations of this period.
87535
87536 The early years of Albert's rule in Prussia were fairly prosperous. Although he had some trouble with the peasantry, the lands and treasures of the church enabled him to propitiate the nobles and for a time to provide for the expenses of the court.
87537
87538 He did something for the furtherance of learning by establishing schools in every town and by freeing serfs who adopted a scholastic life. In 1544, in spite of some opposition, he founded the [[KÃļnigsberg University|university at KÃļnigsberg]], where he appointed his friend [[Osiander]] to a professorship in [[1549]]. Albert also paid for the printing of the Astronomical Tables (&quot;Prutenische Tafeln&quot;) compiled by [[Erasmus Reinhold]].
87539
87540 This step was the beginning of the troubles which clouded the closing years of Albert's reign. Osiander's divergence from Luther's doctrine of justification by faith involved him in a violent quarrel with [[Melanchthon]], who had adherents in KÃļnigsberg, and these theological disputes soon created an uproar in the town. The duke strenuously supported Osiander, and the area of the quarrel soon broadened. There were no longer church lands available with which to conciliate the nobles, the burden of taxation was heavy, and Albert's rule became unpopular.
87541
87542 After Osiander's death in [[1552]] he favoured a preacher named [[Johann Funck]], who, with an adventurer named [[Paul Skalic | Paul Scalich]], exercised great influence over him and obtained considerable wealth at public expense. The state of turmoil caused by these religious and political disputes was increased by the possibility of Albert's early death and the need, should that happen, to appoint a [[regent]], as his only son, [[Albert Frederick]] was still a mere youth. The duke was consequently obliged to consent to a condemnation of the teaching of Osiander, and the climax came in 1566 when the [[Estates of the realm | Estates]] appealed to [[Sigismund II]], Albert's cousin, son of Sigismund I and Elisabeth Habsburg, Grand Duke of Lithuania and King of Poland, who sent a commission to KÃļnigsberg. Scalich saved his life by flight, but Funck was executed. The question of the regency was settled, and a form of Lutheranism was adopted, and declared binding on all teachers and preachers.
87543
87544 Virtually deprived of power, the Duke lived for two more years, and died at [[Tapiau]] on [[March 20]], [[1568]]. He had married Dorothea, daughter of [[Frederick I of Denmark|Frederick]], King of [[Denmark]] in [[1526]], and following her death in [[1547]], married Anna Maria, daughter of [[Eric I of Brunswick|Eric I]], Duke of [[Brunswick-LÃŧneburg]].
87545
87546 Albert was a voluminous letterwriter, and corresponded with many of the leading personages of the time.
87547
87548 For switching to Protestantism Albrecht had been excommunicated by the Pope. The [[Habsburg]] rulers of the [[Holy Roman Empire]] continued to claim the office of Grand Master of the [[Teutonic Knights]] as administrators of Prussia.
87549
87550 In [[1891]] a statue was erected to his memory at [[Kaliningrad|KÃļnigsberg]].
87551
87552
87553 ==References==
87554 *{{1911}}
87555
87556 == External links ==
87557 *[[William Urban]] on the situation in Prussia [http://66.102.7.104/search?q=cache:lqag5cL8YAAJ:department.monm.edu/history/urban/articles/State_of_the_grandmasters.htm+Casimir+IV+deutscher+orden&amp;hl=en]
87558
87559 {{start box}}
87560 {{succession box|
87561 before=[[Friedrich of Saxony (1473-1510)|Friedrich of Saxony]]|
87562 years=[[1510]]-[[1525]]|
87563 after=[[Walter von Cronberg]]|
87564 title=[[Teutonic Knights#Grand Masters (Hochmeister) of the Teutonic Order, 1198-present|Grand Master]] of the [[Teutonic Knights|Teutonic Order]]|
87565 }}
87566 {{end box}}
87567
87568 [[Category:German nobility]]
87569 [[Category:1490 births]]
87570 [[Category:1568 deaths]]
87571 [[Category:House of Hohenzollern]]
87572
87573 [[cs:Albrecht BraniborskÃŊ]]
87574 [[de:Albrecht von Brandenburg-Preußen]]
87575 [[fr:Albert de Brandebourg]]
87576 [[no:Albrecht av Preussen]]
87577 [[pl:Albrecht Hohenzollern]]
87578 [[ru:ГоĐŗĐĩĐŊŅ†ĐžĐģĐģĐĩŅ€ĐŊ, АĐģŅŒĐąŅ€ĐĩŅ…Ņ‚]]
87579 [[sv:Albrekt av Preussen]]</text>
87580 </revision>
87581 </page>
87582 <page>
87583 <title>Albert III, Elector of Saxony</title>
87584 <id>1515</id>
87585 <revision>
87586 <id>15899985</id>
87587 <timestamp>2004-05-26T18:35:51Z</timestamp>
87588 <contributor>
87589 <username>Rossami</username>
87590 <id>9709</id>
87591 </contributor>
87592 <comment>redirecting to [[Albert, Duke of Saxony]]</comment>
87593 <text xml:space="preserve">#redirect [[Albert, Duke of Saxony]]</text>
87594 </revision>
87595 </page>
87596 <page>
87597 <title>Albert the Degenerate</title>
87598 <id>1516</id>
87599 <revision>
87600 <id>31464240</id>
87601 <timestamp>2005-12-15T13:26:20Z</timestamp>
87602 <contributor>
87603 <username>Petaholmes</username>
87604 <id>59986</id>
87605 </contributor>
87606 <text xml:space="preserve">#REDIRECT [[Albrecht II, Markgraf of Meißen]]</text>
87607 </revision>
87608 </page>
87609 <page>
87610 <title>Albert Of Aix</title>
87611 <id>1517</id>
87612 <revision>
87613 <id>15899987</id>
87614 <timestamp>2002-12-14T11:31:41Z</timestamp>
87615 <contributor>
87616 <ip>62.30.112.2</ip>
87617 </contributor>
87618 <comment>Merge these pages.</comment>
87619 <text xml:space="preserve">#REDIRECT [[Albert of Aix]]</text>
87620 </revision>
87621 </page>
87622 <page>
87623 <title>August 25</title>
87624 <id>1519</id>
87625 <revision>
87626 <id>41923390</id>
87627 <timestamp>2006-03-02T17:23:48Z</timestamp>
87628 <contributor>
87629 <username>Rklawton</username>
87630 <id>754622</id>
87631 </contributor>
87632 <comment>removed non noteable entry</comment>
87633 <text xml:space="preserve">{| style=&quot;float:right;&quot;
87634 |-
87635 |{{AugustCalendar}}
87636 |-
87637 |{{ThisDateInRecentYears|Month=August|Day=25}}
87638 |}
87639 '''August 25''' is the 237th day of the year in the [[Gregorian Calendar]] (238th in leap years), with 128 days remaining.
87640
87641 ==Events==
87642 *[[1537]] - The [[Honourable Artillery Company]], the oldest surviving [[regiment]] in the [[British Army]], and the second most senior, is formed.
87643 *[[1580]] - [[Battle of Alcantara]]. [[Spain]] defeats [[Portugal]].
87644 *[[1609]] - [[Galileo Galilei]] demonstrates his first telescope to Venetian lawmakers.
87645 *[[1718]] - [[New Orleans, Louisiana]] is founded.
87646 *[[1758]] - [[Seven Years War]]: [[Frederick II of Prussia]] defeats the [[Russia]]n army at the [[Battle of Zorndorf]].
87647 *[[1768]] - [[James Cook]] begins his first voyage.
87648 *[[1814]] - [[Washington D.C]] and [[White House]] is destroyed by [[British]] forces during the [[War of 1812]]
87649 *[[1825]] - [[Uruguay]] declares its independence from [[Spain]].
87650 *[[1830]] - [[Belgium]] revolts from the [[Netherlands]]
87651 *[[1835]] - The ''[[New York Sun (historical)|New York Sun]]'' perpetrates the [[Great Moon Hoax]].
87652 *[[1875]] - [[Matthew Webb]] becomes the first person to swim the [[English Channel]].
87653 *[[1894]] - [[Shibasaburo Kitasato]] discovers the infectious agent of the [[Bubonic plague|bubonic plague]] and publishes his findings in ''[[The Lancet]]''.
87654 *[[1910]] - [[Yellow Cab]] is founded.
87655 *[[1912]] - The [[Kuomintang]], the Chinese nationalist party, is founded.
87656 *[[1916]] - The [[United States National Park Service]] is created.
87657 *[[1920]] - [[Polish-Soviet War]]: [[Battle of Warsaw (1920)|Battle of Warsaw]], started on [[August 13]], now ends. The [[Red Army]] is defeated.
87658 *[[1942]] - [[World War II]]: [[Battle of Milne Bay]], [[Papua New Guinea]]
87659 *[[1944]] - World War II: [[Liberation of Paris|Paris is liberated]] by the [[Allies of World War II|Allies]].
87660 *[[1946]] - [[Ben Hogan]] wins the [[PGA Championship]].
87661 *[[1950]] - President [[Harry Truman]] orders the US Army to seize control of the nation's railroads to avert a strike.
87662 *[[1960]] - [[1960 Summer Olympics|Games of the XVII Olympiad]] open in [[Rome]].
87663 *[[1967]] - [[American Nazi Party]] leader [[George Lincoln Rockwell]] is [[assassinated]] in [[Arlington, Virginia]].
87664 *[[1975]] - [[Bruce Springsteen]] releases ''[[Born to Run]]'', the album that would launch him to superstardom.
87665 *[[1980]] - [[Microsoft]] announces their version of [[Unix|UNIX]], [[Xenix]].
87666 *1980 - The Broadway musical [[42nd Street (musical)|''42nd Street'']] opens; the show's director, [[Gower Champion]], had died earlier that day.
87667 *[[1988]] - The historical center of [[Lisbon]] is destroyed by a fire.
87668 *[[1989]] - [[Tadeusz Mazowiecki]] chosen as the first non-communist Prime Minister in [[Central Europe|Central]] and [[Eastern Europe]].
87669 *1989 - [[Voyager 2]] spacecraft flies by [[Neptune (planet)|Neptune]], the last major planet it could visit before leaving the [[Solar System]].
87670 *1989 - Mayumi Moriyama becomes [[Japan|Japan's]] first female cabinet secretary.
87671 *[[1991]] - [[Linus Torvalds]] first says in a post to the comp.os.minix [[newsgroup]] that he is working on a new free [[computer]] [[operating system]].
87672 *1991 - [[Belarus]] declares independence from the [[Soviet Union]]
87673 * [[1997]] - [[Sluggy Freelance]], one of the oldest and well known [[webcomics]] is made.
87674 *[[2003]] - The [[Tli Cho]] land claims agreement is signed between the [[Dogrib]] [[First Nations]] and the [[Canada|Canadian]] federal government in [[Rae-Edzo, Northwest Territories]].
87675 *2003 - Fifty-two are killed in two [[Islamic]] terrorist bomb blasts in [[Mumbai]], [[India]].
87676 *[[2005]] - Tom Boonen wins the World Championship cycling in Madrid, Spain.
87677 *2005 - [[Hurricane]] [[Hurricane Katrina|Katrina]] makes landfall on the Miami-Dade/Broward county line, hours after reaching hurricane strength.
87678
87679 ==Births==
87680 *[[1530]] - Tsar [[Ivan IV of Russia]] (d. [[1584]])
87681 *[[1561]] - [[Philippe van Lansberge]], Dutch astronomer (d. [[1632]])
87682 *[[1624]] - [[François de la Chaise]], French confessor of [[Louis XIV of France]] (d. [[1709]])
87683 *[[1635]] - Sir [[Henry Morgan]], Welsh privateer (d. [[1688]])
87684 *[[1662]] - [[John Leverett the Younger]], American President of Harvard (d. [[1724]])
87685 *[[1719]] - [[Charles-AmÊdÊe-Philippe van Loo]], French painter (d. [[1795]])
87686 *[[1724]] - [[George Stubbs]], British painter (d. [[1806]])
87687 *[[1744]] - [[Johann Gottfried Herder]], German writer (d. [[1803]])
87688 *[[1767]] - [[Antoine Louis LÊon de Richebourg de Saint-Just]], French revolutionary and writer (d. [[1794]])
87689 *[[1772]] - King [[William I of the Netherlands]] (d. [[1843]])
87690 *[[1786]] - King [[Ludwig I of Bavaria]] (d. [[1868]])
87691 *[[1796]] - [[James Lick]], California land baron (d. [[1876]])
87692 *[[1802]] - [[Nikolaus Lenau]], Austrian poet (d. [[1850]])
87693 *[[1819]] - [[Allan Pinkerton]], American private detective (d. [[1884]])
87694 *[[1836]] - [[Bret Harte]], American writer (d. [[1902]])
87695 *[[1841]] - [[Emil Theodor Kocher|Emil Kocher]], Swiss medical researcher, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1917]])
87696 *[[1845]] - King [[Ludwig II of Bavaria]] (d. [[1886]])
87697 *[[1850]] - [[Charles Richet]], French scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1935]])
87698 *[[1882]] - [[Sean T. O'Kelly|Sean O'Kelly]], [[President of Ireland]] (d. [[1966]])
87699 *[[1898]] - [[Helmut Hasse]], German mathematican (d. [[1975]])
87700 *[[1900]] - Sir [[Hans Adolf Krebs]], German physician and biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1981]])
87701 *[[1902]] - [[Stefan Wolpe]], German-born composer (d. [[1972]])
87702 *[[1903]] - [[ÁrpÃĄd Élő]], Hungarian physicist (d. [[1992]])
87703 *[[1909]] - [[Ruby Keeler]], Canadian singer and actress (d. [[1993]])
87704 * 1909 - [[Michael Rennie]], English actor (d. [[1971]])
87705 *[[1912]] - [[Erich Honecker]], head of state of East Germany (d. [[1994]])
87706 *[[1913]] - [[Walt Kelly]], American cartoonist (d. [[1973]])
87707 *[[1916]] - [[Van Johnson]], American actor
87708 *1916 - [[Frederick Chapman Robbins]], American pediatrician and virologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[2003]])
87709 *[[1917]] - [[Mel Ferrer]], American actor
87710 *[[1918]] - [[Leonard Bernstein]], American conductor and composer (d. [[1990]])
87711 * 1918 - [[Richard Greene]], English actor (d. [[1985]])
87712 *[[1919]] - [[George Wallace]], Governor of Alabama (d. [[1998]])
87713 *[[1921]] - [[Monty Hall]], Canadian-born game show host
87714 *1921 - [[Brian Moore (novelist)|Brian Moore]], Northern Irish-born writer (d. [[1999]])
87715 *[[1927]] - [[Althea Gibson]], American tennis player (d. [[2003]])
87716 *[[1928]] - [[Herbert Kroemer]], German-born physicist, [[Nobel Prize]] laureate
87717 *[[1930]] - Sir [[Sean Connery]], Scottish actor
87718 *[[1931]] - [[Regis Philbin]], American television host
87719 * 1933 - [[Wayne Shorter]], American musician
87720 * 1933 - [[Tom Skerritt]], American actor
87721 *[[1935]] - [[Charles Wright (poet)|Charles Wright]], American poet
87722 *[[1938]] - [[David Canary]], American actor
87723 * 1938 - [[Frederick Forsyth]], English author
87724 *[[1939]] - [[John Badham]], American film director
87725 *[[1940]] - [[JosÊ Van Dam]], Belgian baritone
87726 *[[1944]] - [[Anthony Heald]], American actor
87727 *[[1946]] - [[Rollie Fingers]], baseball player
87728 *[[1947]] - [[Anne Archer]], American actress
87729 *[[1949]] - [[Martin Amis]], English novelist
87730 * 1949 - [[John Savage (actor)|John Savage]], American actor
87731 * 1949 - [[Gene Simmons]], Israeli-born bassist
87732 *[[1951]] - [[Rob Halford]], English singer ([[Judas Priest]])
87733 *[[1952]] - [[Peter Wolf]], American singer and composer
87734 *[[1954]] - [[Elvis Costello]], English musician
87735 *[[1958]] - [[Tim Burton]], American film director, producer, and screenwriter
87736 *[[1961]] - [[Billy Ray Cyrus]], American singer
87737 *[[1962]] - [[David Packer]], American actor
87738 *[[1964]] - [[Maxim Kontsevich]], Russian mathematician
87739 * 1964 - [[Blair Underwood]], American actor
87740 *[[1968]] - [[Rafet El Roman]], Turkish singer and composer
87741 * 1968 - [[Stuart Murdoch (musician)|Stuart Murdoch]], Scottish musician ([[Belle &amp; Sebastian]])
87742 * 1968 - [[Rachael Ray]], American cook and television host
87743 *[[1969]] - [[Cameron Mathison]], Canadian actor
87744 *[[1970]] - [[Claudia Schiffer]], German model
87745 *[[1972]] - [[Marvin Harrison]], American football player
87746 *[[1976]] - [[Alexander SkarsgÃĨrd]], Swedish actor
87747 *[[1978]] - [[Franck Queudrue]], French footballer
87748 *[[1981]] - [[Rachel Bilson]], American actress
87749 *[[1987]] - [[Stacey Farber]], Canadian actress
87750
87751 ==Deaths==
87752 *[[383]] - [[Gratian]], [[Roman Emperor]] (b. [[359]])
87753 *[[1192]] - [[Hugh III, Duke of Burgundy]] (b. [[1142]])
87754 *[[1270]] - King [[Louis IX of France]]
87755 *[[1282]] - [[Thomas Cantilupe]], English saint
87756 *[[1330]] - [[James Douglas (the Black)|James Douglas]], Scottish soldier (b. [[1286]])
87757 *[[1482]] - [[Margaret of Anjou]], queen of [[Henry VI of England]] (b. [[1429]])
87758 *[[1554]] - [[Thomas Howard, 3rd Duke of Norfolk]], English politician (b. [[1473]])
87759 *[[1632]] - [[Thomas Dekker]], English dramatist
87760 *[[1650]] - [[Richard Crashaw]], English poet
87761 *[[1688]] - [[Henry Morgan]], Welsh privateer
87762 *[[1699]] - King [[Christian V of Denmark]] (b. [[1646]])
87763 *[[1711]] - [[Edward Villiers, 1st Earl of Jersey]], English politician
87764 *[[1742]] - [[Carlos Seixas]], Portuguese composer (b. [[1704]])
87765 *[[1774]] - [[NiccolÃ˛ Jommelli]], Italian composer (b. [[1714]])
87766 *[[1776]] - [[David Hume]], Scottish philosopher and historian (b. [[1711]])
87767 *[[1792]] - [[Jacques Cazotte]], French writer (b. [[1719]])
87768 *[[1822]] - [[William Herschel]], German-born astronomer (b. [[1738]])
87769 *[[1867]] - [[Michael Faraday]], English scientist (b. [[1791]])
87770 *[[1900]] - [[Friedrich Nietzsche]], German philosopher (b. [[1844]])
87771 *[[1900]] - [[Kuroda Kiyotaka]], [[Prime Minister of Japan]] (b. [[1840]])
87772 *[[1904]] - [[Henri Fantin-Latour]], French painter (b. [[1836]])
87773 *[[1908]] - [[Henri Becquerel]], French physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1852]])
87774 *[[1925]] - [[Franz Conrad von HÃļtzendorf]], Austro-Hungarian field marshal (b. [[1852]])
87775 *[[1938]] - [[Aleksandr Kuprin]], Russian writer (b. [[1870]])
87776 *[[1942]] - [[George Edward Alexander Windsor]], Duke of Kent (b. [[1902]])
87777 *[[1945]] - [[John Birch (missionary)|John Birch]], American intelligence officer and missionary (b. [[1918]])
87778 *[[1967]] - [[Stanley Bruce]], eighth [[Prime Minister of Australia]] (b. [[1883]])
87779 *[[1967]] - [[Paul Muni]], Polish actor (b. [[1895]])
87780 *[[1967]] - [[George Lincoln Rockwell]], American Nazi Party leader (b. [[1918]])
87781 *[[1971]] - [[Ted Lewis (musician)|Ted Lewis]], American musician and entertainer (b. [[1890]])
87782 *[[1976]] - [[Eyvind Johnson]], Swedish writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1900]])
87783 *[[1979]] - [[Stan Kenton]], American musician and bandleader (b. [[1911]])
87784 *[[1980]] - [[Gower Champion]], American dancer, actor, and choreographer (b. [[1919]])
87785 *[[1984]] - [[Truman Capote]], American author (b. [[1924]])
87786 *[[1984]] - [[Waite Hoyt]], baseball player (b. [[1899]])
87787 *[[1985]] - [[Samantha Smith]], American social activist and actress (plane crash) (b. [[1972]])
87788 *[[1990]] - [[Morley Callaghan]], Canadian writer (b. [[1903]])
87789 *[[2000]] - [[Carl Barks]], American cartoonist (b. [[1901]])
87790 *[[2001]] - [[Aaliyah]], American singer (plane crash) (b. [[1979]])
87791 *[[2002]] - [[Dorothy Hewett]], Australian writer (b. [[1923]])
87792 *[[2005]] - [[Peter Glotz]], German social democrat (b. [[1939]])
87793
87794 ==Holidays and observances==
87795 *[[Roman festivals]] - [[Opiconsivia]] held in honor of [[Ops]].
87796 *[[Calendar of Saints|RC Saints]] - [[Genesius of Arles]], Saint [[Louis IX of France]], [[Saint Joseph Calasanz]]
87797 *[[Uruguay]] - National Day (independence from Brazil in [[1825]]).
87798 *[[Philippines]] - National Heroes' Day.
87799
87800 ==External links==
87801 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/25 BBC: On This Day]
87802 * [http://www.britannica.com/eb/dailycontent?month=8&amp;day=25 EncyclopÃĻdia Britannica: This Day in History]
87803
87804 ----
87805
87806 [[August 24]] - [[August 26]] - [[July 25]] - [[September 25]] -- [[historical anniversaries|listing of all days]]
87807
87808 {{months}}
87809
87810 [[af:25 Augustus]]
87811 [[ar:25 ØŖØēØŗØˇØŗ]]
87812 [[an:25 d'agosto]]
87813 [[ast:25 d'agostu]]
87814 [[bg:25 авĐŗŅƒŅŅ‚]]
87815 [[be:25 ĐļĐŊŅ–ŅžĐŊŅ]]
87816 [[bs:25. august]]
87817 [[ca:25 d'agost]]
87818 [[ceb:Agosto 25]]
87819 [[cv:ÇŅƒŅ€ĐģĐ°, 25]]
87820 [[co:25 d'aostu]]
87821 [[cs:25. srpen]]
87822 [[cy:25 Awst]]
87823 [[da:25. august]]
87824 [[de:25. August]]
87825 [[et:25. august]]
87826 [[el:25 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
87827 [[es:25 de agosto]]
87828 [[eo:25-a de aÅ­gusto]]
87829 [[eu:Abuztuaren 25]]
87830 [[fo:25. august]]
87831 [[fr:25 aoÃģt]]
87832 [[fy:25 augustus]]
87833 [[ga:25 LÃēnasa]]
87834 [[gl:25 de agosto]]
87835 [[ko:8ė›” 25ėŧ]]
87836 [[hr:25. kolovoza]]
87837 [[io:25 di agosto]]
87838 [[id:25 Agustus]]
87839 [[ia:25 de augusto]]
87840 [[ie:25 august]]
87841 [[is:25. ÃĄgÃēst]]
87842 [[it:25 agosto]]
87843 [[he:25 באוגוסט]]
87844 [[jv:25 Agustus]]
87845 [[ka:25 აგვისáƒĸო]]
87846 [[csb:25 zÊlnika]]
87847 [[ku:25'ÃĒ gelawÃĒjÃĒ]]
87848 [[lt:RugpjÅĢčio 25]]
87849 [[lb:25. August]]
87850 [[hu:Augusztus 25]]
87851 [[mk:25 авĐŗŅƒŅŅ‚]]
87852 [[ms:25 Ogos]]
87853 [[nap:25 'e aÚsto]]
87854 [[nl:25 augustus]]
87855 [[ja:8月25æ—Ĩ]]
87856 [[no:25. august]]
87857 [[nn:25. august]]
87858 [[oc:25 d'agost]]
87859 [[pl:25 sierpnia]]
87860 [[pt:25 de Agosto]]
87861 [[ro:25 august]]
87862 [[ru:25 авĐŗŅƒŅŅ‚Đ°]]
87863 [[sco:25 August]]
87864 [[sq:25 Gusht]]
87865 [[scn:25 di austu]]
87866 [[simple:August 25]]
87867 [[sk:25. august]]
87868 [[sl:25. avgust]]
87869 [[sr:25. авĐŗŅƒŅŅ‚]]
87870 [[fi:25. elokuuta]]
87871 [[sv:25 augusti]]
87872 [[tl:Agosto 25]]
87873 [[tt:25. August]]
87874 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 25]]
87875 [[th:25 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
87876 [[vi:25 thÃĄng 8]]
87877 [[tr:25 Ağustos]]
87878 [[uk:25 ŅĐĩŅ€ĐŋĐŊŅ]]
87879 [[wa:25 d' awousse]]
87880 [[war:Agosto 25]]
87881 [[zh:8月25æ—Ĩ]]
87882 [[pam:Agostu 25]]</text>
87883 </revision>
87884 </page>
87885 <page>
87886 <title>Aachen</title>
87887 <id>1520</id>
87888 <revision>
87889 <id>41662841</id>
87890 <timestamp>2006-02-28T22:35:33Z</timestamp>
87891 <contributor>
87892 <ip>195.93.21.134</ip>
87893 </contributor>
87894 <comment>/* External links */</comment>
87895 <text xml:space="preserve">{{Infobox Town DE|
87896 name = Aachen|
87897 name_local = |
87898 image_coa = Stadtwappen_der_kreisfreien_Stadt_Aachen.png|
87899 image_map = Aachen in Germany.png|
87900 state = [[North Rhine-Westphalia]] |
87901 regbzk = [[Cologne (region)|Cologne]]|
87902 district = [[List of German urban districts|urban district]]|
87903 population = 257,089 |
87904 population_as_of = 2005|
87905 population_ref = [http://www.lds.nrw.de/statistik/datenangebot/amtlichebevoelkerungszahlen/rp3_juni05.html source]|
87906 pop_dens = 1,599|
87907 area = 160.83|
87908 elevation = 125-410|
87909 lat_deg = 50|
87910 lat_min = 46|
87911 lat_hem = N|
87912 lon_deg = 6|
87913 lon_min = 6|
87914 lon_hem = E|
87915 postal_code = 52062-52080 |
87916 area_code = 0241|
87917 licence = AC|
87918 mayor = JÃŧrgen Linden ([[SPD]]) |
87919 website = [http://www.aachen.de/ aachen.de]|
87920 }}
87921 '''Aachen''' ([[French language|French]] ''Aix-la-Chapelle'', [[Dutch language|Dutch]] ''Aken'', [[Latin]] ''Aquisgranum'', [[Ripuarian]] ''Oche'') is a spa city in [[North Rhine-Westphalia]], [[Germany]], on the border with [[Belgium]] and the [[Netherlands]], 65 km to the west of [[Cologne]], and the westernmost city in Germany.
87922
87923 [[RWTH Aachen]], established in 1870, is one of the major Institutes of Technology, especially for electrical and mechanical engineering, computer sciences and physics. As a part of it, the [[Klinikum Aachen]] is the biggest single-building hospital in Europe. Over time, a host of software and computer industries have developed around the university.
87924 [[Image:Aachen Cathedral from north.jpg|thumb|left|Aachen Cathedral]]
87925 [[Image:Aachen-ElegantStreet.JPG|thumb|200px|Typical Aachen street with early [[20th century]] [[GrÃŧnderzeit]] houses]]
87926
87927 ==History==
87928 A quarry on the Lousberg, where flint was obtained in Neolithic times attests to the long occupation of the site of Aachen.
87929
87930 The [[Roman empire|Romans]] named the [[hot spring|hot sulphur springs]] of Aachen ''Aquis-Granum''. For the origin of the ''Granus'' several theories were developed, but it is now widely accepted that it derives from a local Celtic god of healing water, not elsewhere attested. Many other Celtic [[toponym]]s are identifiable in the immediate locale. Since [[Roman empire|Roman]] times, the hot springs have been channeled into baths (which are still in use). ''Ãĸh-'' is an [[German language|Old German]] cognate with [[Latin]] ''aqua'', both meaning &quot;water&quot;. In French-speaking areas of the former [[Roman Empire|Empire]] the word ''aquas'' was turned into ''aix'', hence Aix-la-Chapelle or [[Aix-en-Provence]], an old Roman spa in [[Provence]], [[France]].
87931 [[Image:Construction d Aix-la-Chapelle.jpg|thumb|left|Construction of Aix-la-Chapelle, by [[Jean Fouquet]]]]
87932 After Roman times the place passed without comment but could not have been totally abandoned, for [[Einhard]] mentioned that in 765-66 [[Pippin the Younger|Pippin]] spent both Christmas and Easter at ''Aquis villa'' (''Et celebravit natalem Domini in Aquis villa et pascha similiter'') [http://www.noctes-gallicanae.org/Charlemagne/Annales/Pepin_le_Bref.htm], which must have been sufficiently equipped to support the royal household for several months. In the year of his coronation [[768]] [[Charlemagne]] came to spend Christmas at Aachen for the first time. He liked the place and twenty years later he began to build a palace. The sole surviving remnant of the palace, its magnificent chapel constructed in 796, later became [[Aachen Cathedral]]. Charlemagne spent most winters between [[800]] and his death in [[814]] in Aachen in order to enjoy the hot springs. Afterwards the king was buried in the chapel, where his tomb can still be found.
87933
87934 In [[936]] [[Otto I, Holy Roman Emperor|Otto I]] was crowned emperor in the cathedral. From then on the emperors of the [[Holy Roman Empire]] were crowned &quot;[[King of the Germans]]&quot; in Aachen, for the next 600 years. The last king to be crowned here was [[Ferdinand I, Holy Roman Emperor|Ferdinand I]] in 1531.
87935
87936 During the [[Middle Ages]] Aachen was one of the largest cities of the Empire. Aachen remained a free city within the [[Holy Roman Empire]]. In the [[Imperial Circle Estates]] of the [[Imperial Reform|Reichsreform]] (Imperial Reform) concluded at [[Worms, Germany|Worms]] in 1495, Aachen was represented in the Lower Rhenish-Westphalian circle.
87937
87938 After the [[Thirty Years War]] Aachen only had regional importance. However, the city became the site of several important congresses and peace treaties: the [[Congress of Aix-la-Chapelle (1668)|first congress of Aachen]] (often referred to as ''congress of Aix-la-Chapelle'' in English) in 1668, leading to the [[Treaty of Aix-la-Chapelle (1668)|First Treaty of Aachen]] in the same year which ended the [[War of Devolution]]. The [[Congress of Aix-la-Chapelle (1748)|second congress]] ended with the [[Treaty of Aix-la-Chapelle (1748)|second treaty]] in 1748, finishing the [[War of the Austrian Succession]]. The [[Congress of Aix-la-Chapelle (1818)|third congress]] took place in 1818 to decide the fate of occupied France.
87939
87940 By 1880, the population was 80,000. Several important [[railway]]s met in Aachen. The city became a site for the manufacturing of railroad [[iron]], [[pin]]s, [[needle]]s, [[button]]s, [[tobacco]], [[wool]]en goods and [[silk]] goods.
87941
87942 Badly damaged in [[World War II]], on [[October 21]] [[1944]] Aachen was the first German city to be overrun by [[Allies#World War II|Allied]] troops, the [[U.S. 1st Infantry Division]](aka the [[Big Red One]]).
87943
87944 While Charlemagne's palace does not exist anymore, the cathedral is still the main attraction of the city. After its construction it was the largest church north of the [[Alps]] for 400 years. The tombs of Charlemagne and [[Otto III, Holy Roman Emperor|Otto III]] can be found in the church. The cathedral of Aachen is listed in the [[UNESCO]] [[World Heritage Sites|World Heritage]].
87945 [[Image:Aachen-SomeBoulevard.JPG|thumb|200px|Tree-lined boulevard in Aachen]]
87946
87947 ==Miscellaneous==
87948 Aachen is an industrial centre and a major railway junction, including the [[Thalys]] high-speed train network. A major industry of the past was needle production, which led to the distinctive mark of the people from Aachen, the ''Klenkes''. The small finger of the right hand is spread from the hand, which was originally the way women sorted the needles.
87949
87950 [[Robert Browning]]'s poem &quot;How they brought the good news from Ghent to Aix&quot; refers to Aachen, but not to any historical fact.
87951
87952 The annual CHIO (short for the French ''Concours Hippique International Officiel'') is the biggest [[equestrianism|equestrian]] meeting of Germany and among horsemen considered to be as prestigious for equitation as the tournament of [[The Championships, Wimbledon|Wimbledon]] for tennis. Aachen will also be host of the 2006 [[World Equestrian Games]].
87953
87954 [[Image:GermanyNetherlansBelgiumBORDER.jpg|thumb|200px|German-Netherland-Belgian border is easily seen from the west edge of town]]
87955
87956 The local football team [[Alemannia Aachen]] plays in Germany's second division. Their stadium is called [[Tivoli, Aachen|Tivoli]].
87957
87958 Since 1950 the city annually awards the [[Karlspreis]] (German for ''Charlemagne Award'') to persons who did extraordinary service for the unification of Europe. In 2003 the medal was awarded to [[ValÊry Giscard d'Estaing]]. In 2004, [[Pope]] [[Pope John Paul II|John Paul II]]'s efforts to unite Europe were honored with an ''Extraordinary Charlemagne Medal'', which was awarded for the first time ever.
87959
87960 The local speciality of Aachen are cookies called ''Printen'', a local version of [[gingerbread]]. Unlike [[gingerbread]] (German:''[[Lebkuchen]]''), which is sweetened with honey, ''Printen'' are sweetened with sugar.
87961
87962 In 1372, Aachen became the first coin issuing city in the world to regularly place an [[Anno Domini]] date on a general circulation [[coin]], a [[groschen]]. It is written MCCCLXXII. None with this date are known to be in existence any longer. The earliest date for which an Aachen coin is still extant is dated 1373.
87963
87964 ''See also'': [[Treaty of Aix-la-Chapelle]], [[Aachen (district)]], [[List of mayors of Aachen]], [[Aachener]]
87965
87966 ==[[Town twinning]]==
87967 Aachen has several partner cities:
87968 * {{flagicon|France}} - [[Reims]] ([[France]]) since [[January 28]] [[1967]]
87969 * {{flagicon|United Kingdom}} - [[Halifax, West Yorkshire|Halifax]]/[[Calderdale]] ([[United Kingdom]]) since [[November 14]] [[1979]]
87970 * {{flagicon|Spain}} - [[Toledo, Spain|Toledo]] ([[Spain]]) since [[January 26]] [[1985]]
87971 * {{flagicon|People's Republic of China}} - [[Ningbo|Ningbo (厁æŗĸ)]] ([[China]]) since [[October 25]] [[1986]]
87972 * {{flagicon|Germany}} - [[Naumburg]] ([[Saxony-Anhalt]], Germany) since [[May 30]] [[1988]]
87973 * {{flagicon|USA}} - [[Arlington County]] ([[Virginia]]), [[United States|USA]]) since [[September 17]] [[1993]]
87974 * {{flagicon|Russia}} - [[Kostroma]] ([[Russia]]) since [[June 9]] [[2005]]
87975 The municipality Walheim had a partnership with the French [[Montebourg]] since 1960, which was continued by Aachen in 1972 when Walheim was incorporated into the town and became the borough Aachen-[[KornelimÃŧnster]]/Walheim.
87976
87977 ==Buildings and Constructions==
87978 * [[Water Tower Belvedere]]
87979 * [[Aachen Cathedral]]
87980
87981 ==Name in different languages==
87982 Aachen is known in different languages by different names (see also [[Names of European cities in different languages]]). The names derive from either German, French or Latin.
87983
87984 {| class=&quot;wikitable&quot;
87985 ! Language !! Name !! Pronunciation in [[International Phonetic Alphabet|IPA]]
87986 |-
87987 | [[German language|German]]
87988 | Aachen
87989 |{{IPA|[ˈaːxən]}}
87990 |-
87991 | [[Ripuarian]]||''Oche''|| {{IPA|[ˈoːxə]}}
87992 |-
87993 | [[Anglicisation|Anglicized]] version of the German|| Aachen || {{IPA|[ˈɑːkən]}}
87994 |-
87995 | [[French language|French]]|| Aix-la-Chapelle
87996 |{{IPA|[ɛkslaʃapɛl]}}
87997 |-
87998 | [[Catalan language|Catalan]]
87999 | Aquisgrà
88000 |{{IPA|[ɐkizˈÉŖÉža]}}
88001 |-
88002 | [[Chinese language|Chinese (Simplified)]]
88003 | äēšį›
88004 |{{IPA|[ya shen]}}
88005 |-
88006 | [[Czech language|Czech]]
88007 | CÃĄchy
88008 |{{IPA|[ˈtsaːxÉĒ]}}
88009 |-
88010 | [[Polish language|Polish]]
88011 | Akwizgran
88012 | &amp;nbsp;
88013 |-
88014 | [[Dutch language|Dutch]]
88015 | Aken
88016 |{{IPA|[ˈaːkən]}}
88017 |-
88018 | [[Spanish language|Spanish]]
88019 | AquisgrÃĄn
88020 |{{IPA|[akisˈÉŖÉžan]}}
88021 |-
88022 | [[Italian language|Italian]]
88023 | Aquisgrana
88024 |{{IPA|[ˌakwisˈgɾaːna]}}
88025 |-
88026 | [[Latin]]
88027 | AquÄĢsgrānum
88028 |{{IPA|[ˌakwiːsˈgɾaːnum]}}
88029 |-
88030 | [[Serbian]]
88031 | Ahen/АŅ…ĐĩĐŊ
88032 |{{IPA|[,ahen]}}
88033 |}
88034
88035 ==External links==
88036 {{commons|Aachen}}
88037 *[http://www.aachen.de/ City of Aachen] (partly available in English)
88038 *[http://www.aseag.de/ ASEAG (public bus transport)] (in German)
88039 *[http://www-zhv.rwth-aachen.de/zentral/english_index.htm RWTH Aachen] (University of Technology Aachen)
88040 *[http://www.fh-aachen.de/ Fachhochschule Aachen] (Aachen University of Applied Sciences)
88041 *[http://wikoelsch.dergruenepunk.de/index.php/Aachen Aachen in the Ripuarian Wiki Project]
88042 *[http://www.googleearthhacks.com/dlfile11927/Aachen,-Germany,-Image-overlays.htm Google Earth placemark with official image overlays]
88043 *[http://www.noctes-gallicanae.org/Charlemagne/Annales/Pepin_le_Bref.htm Einhard's Annals:] first mention of ''Aquis villa'', 765
88044 *[http://www.citymayors.com/cityhalls/aachen_cityhall.html Article on Aachen's historic buildings]
88045
88046 ----
88047 {{Germany districts north rhine-westphalia}}
88048 ----
88049
88050 [[Category:Aachen|*]]
88051 [[Category:Cities in North Rhine-Westphalia]]
88052 [[Category:Matter of France]]
88053 [[Category:Spa towns]]
88054
88055 [[ar:ØĸØŽŲ†]]
88056 [[bg:АŅ…ĐĩĐŊ]]
88057 [[ca:Aquisgrà]]
88058 [[cs:CÃĄchy]]
88059 [[da:Aachen]]
88060 [[de:Aachen]]
88061 [[eo:Aachen]]
88062 [[es:AquisgrÃĄn]]
88063 [[et:Aachen]]
88064 [[fa:ØĸØŽŲ†]]
88065 [[fi:Aachen]]
88066 [[fr:Aix-la-Chapelle]]
88067 [[he:אאכן]]
88068 [[ia:Aachen]]
88069 [[it:Aquisgrana]]
88070 [[ja:ã‚ĸãƒŧヘãƒŗ]]
88071 [[ko:ė•„í—¨]]
88072 [[la:Aquisgranum]]
88073 [[li:Aoke]]
88074 [[nl:Aken (stad)]]
88075 [[no:Aachen]]
88076 [[pl:Akwizgran]]
88077 [[pt:Aachen]]
88078 [[ro:Aachen]]
88079 [[ru:АаŅ…ĐĩĐŊ]]
88080 [[simple:Aachen]]
88081 [[sr:АŅ…ĐĩĐŊ]]
88082 [[sk:Aachen]]
88083 [[sl:Aachen]]
88084 [[sv:Aachen]]
88085 [[th:ā¸­ā¸˛āš€ā¸„āšˆā¸™]]
88086 [[wa:Åxhe]]
88087 [[zh:é˜ŋäē¨]]</text>
88088 </revision>
88089 </page>
88090 <page>
88091 <title>Agapetus II</title>
88092 <id>1522</id>
88093 <revision>
88094 <id>15899990</id>
88095 <timestamp>2002-02-25T15:51:15Z</timestamp>
88096 <contributor>
88097 <ip>Conversion script</ip>
88098 </contributor>
88099 <minor />
88100 <comment>Automated conversion</comment>
88101 <text xml:space="preserve">#REDIRECT [[Pope Agapetus II]]
88102 </text>
88103 </revision>
88104 </page>
88105 <page>
88106 <title>Agate</title>
88107 <id>1523</id>
88108 <revision>
88109 <id>38274250</id>
88110 <timestamp>2006-02-05T06:35:33Z</timestamp>
88111 <contributor>
88112 <username>Pschemp</username>
88113 <id>110252</id>
88114 </contributor>
88115 <minor />
88116 <comment>Disambiguate [[Contagion]] to [[Disease]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
88117 <text xml:space="preserve">:''For the French rocket, see [[Agate (rocket)]]''; for the [[font]] also known as &quot;ruby&quot;, see [[Ruby character]].
88118 {| border=1 cellspacing=0 align=right cellpadding=0 width=250 valign=top style=&quot;margin-left:1em&quot;
88119 |----- align=center bgcolor=&quot;#9966FF&quot;
88120 !colspan=2 align=center|Agate
88121 |----- align=center
88122 !colspan=2|[[image:mossagate.pebble.750pix.jpg|thumb|center|250px|Moss agate pebble, one inch long (2.5 cm).]]
88123 |----- align=center bgcolor=&quot;#9966FF&quot;
88124 !colspan=2|General
88125 |-----
88126 |Category||[[Mineral]]
88127 |-----
88128 |[[Chemical formula]]|| Silica, SiO&lt;sub&gt;2&lt;/sub&gt;
88129 |----- align=&quot;center&quot; bgcolor=&quot;#9966FF&quot;
88130 !colspan=2|Identification
88131 |-----
88132 | Colour || White to grey, light blue, orange to red, black.
88133 |-----
88134 | [[Crystal habit]] || [[Cryptocrystal]]line silica
88135 |-----
88136 | [[Crystal structure|Crystal system]] || [[Hexagonal]]
88137 |-----
88138 | [[Cleavage (crystal)|Cleavage]]||None
88139 |-----
88140 | [[Fracture]]|| [[Conchoidal]] with very sharp edges.
88141 |-----
88142 | [[Mohs Scale]] hardness || 7
88143 |-----
88144 | Luster|| Waxy
88145 |-----
88146 | [[Refractive index]]|| Translucent to transparent
88147 |-----
88148 | [[Pleochroism]]|| None
88149 |-----
88150 | [[Streak]]|| None
88151 |-----
88152 | [[Specific gravity]]|| 2.6
88153 |-----
88154 | [[Fusibility]]|| ?
88155 |-----
88156 | [[Solubility]]|| ?
88157 |----- align=&quot;center&quot; bgcolor=&quot;#9966FF&quot;
88158 !colspan=2|Major varieties
88159 |-----
88160 !colspan=2|None
88161 |}
88162
88163 '''Agate''' is a term applied not to a distinct [[mineral]] species, but to an aggregate of various forms of [[silicon dioxide|silica]], chiefly [[chalcedony]].
88164
88165 According to [[Theophrastus]], the agate (achates) was named from the river Achates, now the [[Drillo]], in [[Sicily]], where the stone was first found.
88166
88167 == Formation and characteristics ==
88168 Most agates occur as nodules in eruptive rocks or ancient [[lava]]s where they represent cavities originally produced by the disengagement of vapour in the molten mass which were then filled, wholly or partially, by siliceous matter deposited in regular layers upon the walls. Such agates, when cut transversely, exhibit a succession of parallel lines, often of extreme tenuity, giving a banded appearance to the section. Such stones are known as banded agate, riband agate and striped agate.
88169
88170 In the formation of an ordinary agate, it is probable that waters containing silica in solution -- derived, perhaps, from the decomposition of some of the silicates in the lava itself -- percolated through the rock and deposited a siliceous coating on the interior of the vapour-vesicles. Variations in the character of the solution or in the conditions of deposit may cause corresponding variation in the successive layers, so that bands of chalcedony often alternate with layers of crystalline [[quartz]]. Several vapour-vesicles may unite while the rock is [[Viscosity|viscous]], and thus form a large cavity which may become the home of an agate of exceptional size; thus a [[Brazil|Brazilian]] [[geode]] lined with [[amethyst]] and weighing 35 tons was exhibited at the [[Dusseldorf Exhibition]] of [[1902]].
88171
88172 The first deposit on the wall of a cavity, forming the &quot;skin&quot; of the agate, is generally a dark greenish mineral substance, like [[celadonite]], [[delessite]] or &quot;[[green earth]],&quot; which are rich in [[iron]] probably derived from the decomposition of the [[augite]] in the mother-rock. This green silicate may give rise by alteration to a brown [[oxide]] of iron ([[limonite]]), producing a rusty appearance on the outside of the agate-nodule. The outer surface of an agate, freed from its matrix, is often pitted and rough, apparently in consequence of the removal of the original coating. The first layer spread over the wall of the cavity has been called the &quot;priming,&quot; and upon this base zeolitic minerals may be deposited.
88173
88174 [[Image:Agate banded 750pix.jpg|thumb|left|250px|Banded agate. The specimen is one inch (2.5 cm) wide.]]
88175
88176 Many agates are hollow, since deposition has not proceeded far enough to fill the cavity, and in such cases the last deposit commonly consists of quartz, often amethyst, having the apices of the [[crystal]]s directed towards the free space so as to form a crystal-lined cavity, or geode.
88177
88178 On the disintegration of the matrix in which the agates are embedded, they are set free. Being a siliceous material, which is extremely resistant to the action of air and water, they remain as nodules in the [[soil]] and [[gravel]], or become rolled as pebbles in streams.
88179
88180 == Types of agate ==
88181
88182 A [[Mexico|Mexican]] agate, showing only a single [[eye]], has received the name of &quot;[[cyclops (rock)|cyclops]] agate.&quot; Included matter of a green, golden, red, black or other colour or combinations embedded in the chalcedony and disposed in filaments and other forms suggestive of vegetable growth, gives rise to dendritic or [[moss agate]] (named varieties include Maury Mountain, Richardson Ranch, Sheep Creek and others).
88183 '''Dendritic''' agates have beautiful fern like patterns on them formed due to the presence of manganese and iron ions. Other types of included matter deposited during agate-building include sagenitic growths (radial mineral crystals) and chunks of entrapped detritus (such as sand, ash, or mud). Occasionally agate fills a void left by decomposed vegatative material such as a tree limb or root and is called limb cast agate due to its appearance.
88184
88185 Turritella agate is formed from [[fossil]] Turritella shells silicified in a chalcedony base. Turritella are spiral marine [[gastropod]]s having elongated, spiral shells composed of many whorls. Similarly, [[coral]], [[petrified wood]] and other organic remains or porous rocks can also become agatized. Agatized coral is often referred to as [[Petoskey stone|Petoskey]] agate or stone.
88186
88187 Certain stones, when examined in thin sections by transmitted light, show a diffraction spectrum due to the extreme delicacy of the successive bands, whence they are termed [[rainbow agates]]. Often agate coexists with layers or masses of opal, jasper or crystaline quartz due to ambient variations during the formation process.
88188
88189 Other forms of agate include carnelian agate (usually exhibiting redish hues), Botswana agate, blue lace agate, plume agate (such as Carey, Graveyard Point, Sage, St. Johns, Teeter Ranch and others), tube agate (with visible flow channels), fortification agate (which exhibit little or no layered structure), fire agate (which seems glow internally like an opal) and Mexican crazy-lace agate (which exhibits an often brightly colored, complex banded pattern).
88190
88191 == Agate beliefs ==
88192 [[Image:Agatebots.jpg|thumb|right|Faceted Botswana agate]]
88193 In [[Islam]], agates are deemed to be very precious stones. According to tradition, the wearer of an agate ring, for example, is believed to be protected from various mishaps and will enjoy longevity, among other benefits. In other traditions agate is believed to cure the stings of [[scorpion]]s and the bites of [[snake]]s, soothe the mind, prevent [[Disease|contagion]], still [[thunder]] and [[lightning]], promote [[eloquence]], secure the favour of the powerful, and bring victory over enemies. Persian [[magi]] are also known to have prized agate rings in their work and beliefs.
88194
88195 The [[Shia]] Book of collected prayers, ''Mafatih Al-janan'', quotes the fifth Shia saint Imam [[Muhammad al-Baqir]] on agates, as such:
88196
88197 ''&quot;Whosoever endures the night 'til sunrise wearing an agate ring on his/her right hand, before seeing or being seen by any human that morning, turns the agate ring toward the palm side of his/her hand, and while looking at the gem recites the 97th chapter of the Qur'an followed by this prayer [specified], then the God of the Universe shall grant him/her immunity on that day from any danger that falls from the sky, or rises up to it, or which disappears into the earth, or rises out of it, and he/she shall remain protected by the power of God and the agents of God until dusk.&quot;'' (p1212 of version by Haj Sheikh Abbas Qomi)
88198
88199 ==See also==
88200 *[[list of minerals]]
88201
88202 ==Reference==
88203 * [http://www.minsocam.org/MSA/collectors_corner/arc/silicanom.htm ''The Nomenclature of Silica'' by Gilbert Hart, American Mineralogist, Volume 12, pages 383-395, 1927]
88204
88205 [[Category:Minerals]]
88206 [[Category:Quartz varieties]]
88207
88208 [[ar:ØšŲ‚ŲŠŲ‚]]
88209 [[da:Agat]]
88210 [[de:Achat]]
88211 [[es:Ágata]]
88212 [[eo:Agato]]
88213 [[fr:Agate]]
88214 [[nl:Agaat]]
88215 [[ja:ãƒĄãƒŽã‚Ļ]]
88216 [[pl:Agat]]
88217 [[pt:Ágata]]
88218 [[ru:АĐŗĐ°Ņ‚]]
88219 [[sk:AchÃĄt]]
88220 [[sl:Ahat]]
88221 [[fi:Akaatti]]
88222 [[sv:Agat]]
88223 [[uk:АĐŗĐ°Ņ‚]]</text>
88224 </revision>
88225 </page>
88226 <page>
88227 <title>Aspirin</title>
88228 <id>1525</id>
88229 <revision>
88230 <id>42150395</id>
88231 <timestamp>2006-03-04T03:46:00Z</timestamp>
88232 <contributor>
88233 <ip>69.199.235.201</ip>
88234 </contributor>
88235 <text xml:space="preserve">&lt;!-- Here is a table of data; skip past it to edit the text. --&gt;
88236 {| class=&quot;toccolours&quot; border=&quot;1&quot; style=&quot;float: right; clear: right; margin: 0 0 1em 1em; border-collapse: collapse;&quot;
88237 ! {{chembox header}}| '''{{PAGENAME}}'''
88238 |-
88239 | align=&quot;center&quot; colspan=&quot;2&quot; bgcolor=&quot;#ffffff&quot; |
88240 [[Image:Acetyl salicylic acid chemical structure.png|120px|{{PAGENAME}}]]
88241 |-
88242 | [[IUPAC nomenclature|Chemical name]]
88243 | 2-(acetyloxy)benzoic acid
88244 |-
88245 | [[Chemical formula]]
88246 | C&lt;sub&gt;9&lt;/sub&gt;H&lt;sub&gt;8&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;
88247 [[benzene ring|C&lt;sub&gt;6&lt;/sub&gt;H&lt;sub&gt;4&lt;/sub&gt;]]([[oxygen|O]][[acetyl|COCH&lt;sub&gt;3&lt;/sub&gt;]])[[carboxylic acid|COOH]]
88248 |-
88249 | Synonyms
88250 | 2-acetyloxybenzoic acid&lt;br/&gt;2-acetoxybenzoic acid&lt;br/&gt;acetylsalicylate&lt;br/&gt;acetylsalicylic acid&lt;br/&gt;O-acetylsalicylic acid
88251 |-
88252 | [[Molecular mass]]
88253 | 180.16 g/mol
88254 |-
88255 | [[CAS registry number|CAS number]]
88256 | 50-78-2
88257 |-
88258 {{PubChem Row|2244}}
88259 |-
88260 | [[ATC code]]
88261 | B01AC06
88262 |-
88263 | [[Density]]
88264 | 1.40 g/cm&lt;sup&gt;3&lt;/sup&gt;
88265 |-
88266 | [[Melting point]]
88267 | 136°C (277°F)
88268 |-
88269 | [[Boiling point]]
88270 | decomposes at 140°C (284°F)
88271 |-
88272 | [[Simplified molecular input line entry specification|SMILES]]
88273 | CC(=O)OC1=CC=CC=C1C(=O)O
88274 |-
88275 | {{chembox header}} | &lt;small&gt;[[wikipedia:Chemical infobox|Disclaimer and references]]&lt;/small&gt;
88276 |-
88277 |}
88278
88279 '''Aspirin''' or '''acetylsalicylic acid''' is a [[Medication|drug]] in the family of [[salicylate]]s, often used as an [[analgesic]] (against minor pains and aches), [[antipyretic]] (against [[fever]]), and anti-[[inflammation|inflammatory]]. It has also an [[anticoagulant]] (blood-thinning) effect and is used in long-term low-doses to prevent [[heart attack]]s.
88280
88281 Low-dose long-term aspirin irreversibly blocks formation of [[thromboxane]] A2 in [[platelet]]s, producing an inhibitory effect on [[platelet aggregation]], and this blood-thinning property makes it useful for reducing the incidence of heart attacks. Aspirin produced for this purpose often comes in 75 or 81 [[Milligram|mg]] dispersible [[tablet]]s and is sometimes called &quot;Junior aspirin.&quot; High doses of aspirin are also given immediately after an acute heart attack. These doses may also inhibit the synthesis of [[prothrombin]] and may therefore produce a second and different anticoagulant effect.
88282
88283 Several hundred fatal overdoses of aspirin occur annually, but the vast majority of its uses are beneficial. Its primary undesirable side effects, especially in stronger doses, are [[gastrointestinal]] distress (including [[gastric ulcer|ulcers]] and stomach bleeding) and [[tinnitus]]. Another side effect, due to its anticoagulant properties, is increased bleeding in [[menstruating]] women. Because there appears to be a connection between aspirin and [[Reye's syndrome]], aspirin is no longer used to control flu-like symptoms in minors.
88284
88285 Aspirin was the first discovered member of the class of drugs known as non-steroidal anti-inflammatory drugs ([[NSAID]]s), not all of which are salicylates, though they all have similar effects and a similar action mechanism.
88286
88287 == ASPIRIN ==
88288
88289 The brand name ''Aspirin'' was coined by the [[Bayer]] company of [[Germany]]. In some countries the name is used as a [[genericized trademark|generic term]] for the drug rather than the manufacturer's [[trademark]]. In countries in which Aspirin remains a trademark, the [[initialism]] '''ASA''' is used as a generic term ('''ASS''' in German-language countries, for ''Acetylsalicylsäure''; '''AAS''' in Spanish- and Portuguese-language countries, for ''ÃĄcido acetilsalicílico'').
88290 [[Image:Aspirin.jpg|thumb|Aspirin]]
88291 The name &quot;aspirin&quot; is composed of ''a-'' (from the [[acetyl group]]) ''-spir-'' (from the ''[[spiraea]]'' flower) and ''-in'' (a common ending for drugs at the time). On [[March 6]], [[1899]][[Bayer]] registered it as a [[trademark]].
88292
88293 However, the German company lost the right to use the trademark in many countries as the [[Allies]] seized and resold its foreign assets after [[World War I]]. The right to use &quot;Aspirin&quot; in the United States (along with all other Bayer trademarks) was purchased from the U.S. government by Sterling Drug, Inc. in [[1918]]. Even before the [[patent]] for the drug expired in [[1917]], Bayer had been unable to stop competitors from copying the formula and using the name elsewhere, and so, with a flooded market, the public was unable to recognize &quot;Aspirin&quot; as coming from only one manufacturer. Sterling was subsequently unable to prevent &quot;Aspirin&quot; from being ruled a [[genericized trademark]] in a U.S. federal court in [[1921]]. Sterling was ultimately acquired by Bayer in 1994, but this did not restore the U.S. trademark. Other countries (such as [[Canada]]) still consider &quot;Aspirin&quot; a protected trademark.
88294
88295 == Discovery ==
88296
88297 [[Image:Acetylsalicylicacid.jpg|thumb|180px|Acetylsalicylic acid crystals]]
88298 [[Hippocrates]], a [[Hellenic civilization|Greek]] physician, wrote in the [[5th century BC]] about a bitter powder extracted from [[willow]] bark that could ease aches and pains and reduce fevers. This remedy is also mentioned in texts from ancient [[Sumeria]], [[Egypt]] and [[Assyria]]. Native Americans claim to have used it for headaches, fever, sore muscles, rheumatism, and chills. The Reverend [[Edward Stone]], a vicar from Chipping Norton in [[Oxfordshire]] [[England]], noted in [[1763]] that the bark of the willow was effective in reducing a fever.
88299
88300 The active extract of the bark, called ''salicin'', after the [[Latin]] name for the White willow (''[[Salix alba]]''), was isolated to its crystalline form in [[1828]] by [[Henri Leroux]], a [[France|French]] pharmacist, and [[Raffaele Piria]], an [[Italy|Italian]] chemist, who then succeeded in separating out the acid in its pure state. Salicin is highly acidic when in a saturated solution with water ([[pH]] = 2.4), and is called [[salicylic acid]] for that reason.
88301
88302 This chemical was also isolated from [[meadowsweet]] flowers (genus ''[[Filipendula]]'', formerly classified in ''[[Spiraea]]'') by German researchers in 1839. While their extract was somewhat effective, it also caused digestive problems such as irritated stomach and diarrhea, and even death when consumed in high doses. In 1853, a French chemist named Charles Frederic Gerhardt neutralized salicylic acid by buffering it with sodium (sodium salicylate) and acetyl chloride, creating acetosalicylic anhydride. Gerhardt's product worked, but he had no desire to market it and abandoned his discovery. In 1897, [[Felix Hoffmann]], a researcher at [[Bayer|Friedrich Bayer &amp; Co.]] in [[Germany]], derivatized one of the [[hydroxy|hydroxyl]] [[functional group]]s in salicylic acid with an [[acetyl]] group (forming the acetyl [[ester]]), which greatly reduced the negative effects. This was the first synthetic drug, not a copy of something that existed in nature, and the start of the pharmaceuticals industry. Hoffmann
88303 made some of the formula and gave it to his father, who was suffering from the pain of arthritis and could not stand the side effects of salicylic acid. With good results, he then convinced [[Bayer]] to market the new wonder drug. Aspirin was patented on March 6, 1899. It was marketed alongside another of Hoffmann's products, an acetylated synthetic of [[morphine]] called [[Heroin]]. Heroin was initially the more successful of the two painkillers, but, as Heroin's shortcoming of addictiveness became more obvious, Aspirin stepped to the forefront. Aspirin was originally sold as a powder and was an instant success; in 1915, Bayer introduced Aspirin tablets.
88304
88305 [[Image:BayerHeroin.png|thumb|right|150px|Advertisement for Aspirin, Heroin, Lycetol, Salophen]]
88306
88307 Several claims to invention of aspirin have arisen. Acetylsalicylic acid was already being manufactured by the Chemische Fabrik von Heyden Company in [[1897]], although without a brand name. [[Arthur EichengrÃŧn]] claimed in [[1949]] that he planned and directed the synthesis of aspirin while Hoffmann's role was restricted to the initial lab synthesis using EichengrÃŧn's process. In [[1999]], Walter Sneader of the Department of Pharmaceutical Sciences at the University of [[Strathclyde]] in [[Glasgow]] reexamined the case and agreed with EichengrÃŧn's account. Bayer continues to recognize Felix Hoffmann as aspirin's official inventor. Despite its argued origin, Bayer's marketing was responsible for bringing it to the world.
88308
88309 It was not until the [[1970]]s that the mechanism of action of aspirin and similar drugs called [[NSAID]]s was elucidated (see below).
88310
88311 ==Synthesis of aspirin==
88312
88313 [[Image:Aspirin-synthesis.gif]]
88314
88315 Aspirin is commercially synthesized using a two-step process. First, [[phenol]] (generally extracted from coal tar) is treated with a sodium base generating sodium phenoxide, which is then reacted with [[carbon dioxide]] under high temperature and pressure to yield salicylate, which is acidifed, yielding [[salicylic acid]].
88316
88317 Salicylic acid is then acylated using [[acetic anhydride]], yielding aspirin. It is a common experiment performed in organic chemistry labs, and generally tends to produce low yields due to the relative difficulty of its extraction from an aqueous state.
88318
88319 Formulations containing high concentrations of aspirin often smell of vinegar, this is because aspirin can undergo autocatalytic degradation to salicylic acid in moist conditions, yielding salicylic acid and [[acetic acid]].
88320
88321 == How it works ==
88322
88323 In a piece of research for which he was awarded both a [[Nobel prize]] in [[Nobel Prize in Physiology or Medicine| Physiology or Medicine]] in 1982 and a knighthood, [[John Robert Vane]], who was then employed by the Royal College of Surgeons in London, showed in 1971 that aspirin suppresses the production of [[prostaglandins]] and [[thromboxanes]]. This happens because [[cyclooxygenase]], an [[enzyme]] that participates in the production of prostaglandins and thromboxanes, is irreversibly inhibited when aspirin acetylates it. This makes aspirin different from other NSAIDS (such as [[diclofenac]] and [[ibuprofen]]), which are reversible inhibitors.
88324
88325 Prostaglandins are local [[hormone]]s (paracrine) produced in the body and have diverse effects in the body, including but not limited to transmission of pain information to the brain, modulation of the [[hypothalamus|hypothalamic]] thermostat, and inflammation.
88326 Thromboxanes are responsible for the aggregation of [[platelet]]s that form [[clot|blood clots]]. Heart attacks are primarily caused by blood clots, and their reduction with the introduction of small amounts of aspirin has been seen to be an effective medical intervention. The side-effect of this is that the ability of the blood in general to clot is reduced, and excessive bleeding may result from the use of aspirin.
88327 [[Image:Aspirin-rod-povray.png|thumb|right|3D model of chemical structure of aspirin]]
88328 More recent work has shown that there are at least two different types of cyclooxygenase: COX-1 and COX-2. Aspirin inhibits both of them. Newer [[NSAID]] drugs called [[COX-2 selective inhibitor]]s have been developed that inhibit only COX-2, with the hope for reduction of gastrointestinal side-effects.
88329
88330 However, several of the new [[COX-2 selective inhibitor]]s have been recently withdrawn, after evidence emerged that COX-2 inhibitors increase the risk of heart attack. It is proposed that endothelial cells lining the arteries in the body express COX-2, and, by selectively inhibiting COX-2, prostaglandins (specifically PGF2) are downregulated with respect to thromboxane levels, as COX-1 in platelets is unaffected. Thus, the protective anti-coagulative effect of PGF2 is decreased, increasing the risk of thrombus and associated heart attacks and other circulatory problems. Since platelets have no DNA, they are unable to synthesize new COX once aspirin has irreversibly inhibited the enzyme, rendering them &quot;useless&quot;: an important difference with reversible inhibitors.
88331
88332 Furthermore, aspirin has 2 additional modes of actions, contributing to its strong analgesic, antipyretic and antiinflammatory properties:
88333
88334 * It uncouples oxidative phosphorylation in cartilaginous (and hepatic) mitochondria.
88335 * It induces the formation of NO-radicals in the body that enable the white blood cells (leukocytes) to fight infections more effectively. This has been found recently by Dr. Derek W. Gilroy, winning Bayer's International Aspirin Award 2005.
88336
88337 Also, recently aspirin has been proven to prevent carcinoma of the colon, if given in low doses over years.
88338
88339 == Indications ==
88340
88341 Aspirin, as with many older drugs, has proven to be useful in many conditions, and, despite its well-known toxicity, it is widely used, since physicians are familiar with its properties. Indications for its use include:
88342
88343 * [[Fever]]
88344 * [[Pain]] (especially useful for conditions involving osteoid [[osteoma]], [[arthritis]] and chronic pain)
88345 * [[Migraine]]
88346 * [[Myocardial infarction]] prophylaxis (low dose)
88347 * [[Rheumatic fever]] (drug of choice)
88348 * [[Kawasaki's Disease]] (along with IVIG)
88349
88350 == Contraindications and warnings ==
88351
88352 * Do ''not'' take this medicine if you are allergic to aspirin, [[ibuprofen]] or [[naproxen]].
88353 * Talk to your doctor if your symptoms do ''not'' improve after a few days of therapy.
88354 * If you have [[kidney disease]], [[ulcer]]s, mild [[diabetes]], [[gout]] or [[gastritis]], talk to your doctor before using this medicine.
88355 * Taking aspirin with [[alcoholic beverage|alcohol]] increases the chance of stomach bleeding. Avoid alcohol with this medicine.
88356 * Giving aspirin to children, including teenagers having a cold or flu can cause a serious condition known as [[Reye's syndrome]].
88357 * Patients with [[hemophilia]], other bleeding tendencies, or a bleeding ulcer should not take salicylates.
88358 * Some sources recommend that patients with [[hyperthyroidism]] avoid aspirin because it elevates T4 levels. [http://www.patient.co.uk/showdoc/40001339/]
88359
88360 == Common side-effects ==
88361
88362 * Gastrointestinal complaints (stomach upset, [[dyspepsia]], heartburn, small blood loss). To help avoid these problems, it is recommended that aspirin be taken at or after meals. Undetected blood loss may lead to [[hypochromic anemia]].
88363 * Severe gastrointestinal complaints (gross bleeding and/or ulceration), requiring discontinuation and immediate treatment. Patients receiving high doses and/or long-term treatment should receive gastric protection with high-dosed antacids, [[ranitidine]] or [[omeprazole]].
88364 * Frequently, central effects (dizziness, [[tinnitus]], hearing loss, [[Vertigo (medical)|vertigo]], centrally mediated vision disturbances, and headaches). The higher the daily dose is, the more likely it is that central nervous system side effects will occur.
88365 * Sweating, seen with high doses, independent from antipyretic action
88366 * Long-term treatment with high doses (arthritis and rheumatic fever): often increased liver enzymes without symptoms, rarely reversible liver damage. The potentially fatal [[Reye's syndrome]] may occur, if given to pediatric patients with fever and other signs of infections. The syndrome is due to fatty degeneration of liver cells. Up to 30 percent of those afflicted will eventually die. Prompt hospital treatment may be life-saving.
88367 * Chronic [[nephritis]] with long-term use, usually if used in combination with certain other painkillers. This condition may lead to chronic renal failure.
88368 * Prolonged and more severe bleeding after operations and post-traumatic for up to 10 days after the last aspirin dose. If one wishes to counteract the bleeding tendency, fresh [[thrombocyte]] concentrate will usually work.
88369 * Skin reactions, [[angioedema]], and [[bronchospasm]] have all been seen infrequently.
88370
88371 == Overdose ==
88372 Aspirin overdose has serious consequences and is potentially lethal. Possible effects of overdose include [[tinnitus]], abdominal pain, [[hypokalemia]], [[hypoglycemia]], [[pyrexia]], [[hyperventilation]], [[cardiac arrhythmia|dysrhythmia]], [[hypotension]], [[hallucination]], [[renal failure]], [[Mental confusion|confusion]], [[seizure]], [[coma]] and [[death]].
88373
88374 Overdose can be acute or chronic; that is, a person can overdose by taking one very large dose or smaller doses over a period of time. Acute overdose has a [[mortality rate]] of 2%. Chronic overdose is more commonly lethal with a mortality rate of 25%. The most common cause of death during an aspirin overdose is [[pulmonary edema|noncardiogenic pulmonary edema]].
88375
88376 An acute-overdose patient must be taken to a hospital immediately. Contrary to the [[urban legend]], you can die from eating a bottle of pills, even if you subsequently throw up. Treatment of an acute overdose requires ingestion of [[activated charcoal]] to neutralize the acetylsalicylic acid in the [[gastrointestinal tract]], followed by a [[stomach pump]] with subsequent re-ingestion of [[activated charcoal]]. Patients are then monitored for at least 12 hours and typically given [[intravenous]] [[potassium chloride]] to counteract [[hypokalemia]], [[sodium bicarbonate]] to neutralize [[salicylate]] in the blood and restore the blood's sensitive pH balance, and [[glucose]] to restore [[blood sugar]] levels. Frequent blood work is performed to check [[metabolic]], [[salicylate]], and [[blood sugar]] levels; [[arterial blood gas]] assessments are performed to test for [[alkalosis|respiratory alkalosis]] and [[metabolic acidosis]]. If the overdose was intentional, the patient will undergo psychiatric
88377 evaluation, as with any [[suicide]] attempt.
88378
88379 Fifty-two deaths involving single-ingredient aspirin were reported in the United States in the year 2000.{{ref|litovitz-2001}}
88380
88381 == External links ==
88382 * http://bmj.bmjjournals.com/cgi/content/full/321/7276/1591
88383 * http://almaz.com/nobel/medicine/aspirin.html
88384 * http://chemed.chem.purdue.edu/genchem/topicreview/bp/1biochem/research7.html
88385 * http://www.med.mcgill.ca/mjm/issues/v02n02/aspirin.html
88386 * http://www.jhu.edu/~jhumag/0297web/health.html
88387 * http://www.howstuffworks.com/aspirin
88388 *[http://www.bluerhinos.co.uk/molview/indv.php?id=5 Molview from bluerhinos.co.uk] See Aspirin in 3D
88389
88390 == References ==
88391 # {{note|litovitz-2001}} Litovitz TL. 2000 annual report of the American Association of Poison Control Centers Toxic Exposure Surveillance System. Am J Emerg Med 2001;19(5):337-395
88392
88393 {{analgesics}}
88394
88395 [[Category:Non-steroidal anti-inflammatory drugs]]
88396 [[Category:Antiplatelet drugs]]
88397 [[Category:Over-the-counter substances]]
88398 [[Category:Aromatic compounds]]
88399 [[Category:Acetates]]
88400 [[Category:Carboxylic acids]]
88401
88402 {{Link FA|he}}
88403 {{Link FA|fr}}
88404 {{Link FA|nl}}
88405
88406 [[ar:ØŖØŗØ¨ØąŲŠŲ†]]
88407 [[bg:АŅĐŋиŅ€Đ¸ĐŊ]]
88408 [[ca:Aspirina]]
88409 [[da:Aspirin]]
88410 [[de:Acetylsalicylsäure]]
88411 [[es:Ácido acetilsalicílico]]
88412 [[fa:ØĸØŗŲžÛŒØąÛŒŲ†]]
88413 [[fr:Acide acÊtylsalicylique]]
88414 [[gl:Aspirina]]
88415 [[ko:ė•„ėŠ¤í”ŧëĻ°]]
88416 [[it:Aspirina]]
88417 [[he:אספירין]]
88418 [[lt:Aspirinas]]
88419 [[hu:Acetilszalicilsav]]
88420 [[ms:Aspirin]]
88421 [[nl:Aspirine]]
88422 [[ja:ã‚ĸ゚ピãƒĒãƒŗ]]
88423 [[nn:Acetylsalisylsyre]]
88424 [[pl:Aspiryna]]
88425 [[pt:Aspirina]]
88426 [[ro:Aspirină]]
88427 [[ru:АŅ†ĐĩŅ‚иĐģŅĐ°ĐģиŅ†Đ¸ĐģОваŅ ĐēиŅĐģĐžŅ‚Đ°]]
88428 [[sr:АŅĐŋиŅ€Đ¸ĐŊ]]
88429 [[fi:Aspiriini]]
88430 [[sv:Acetylsalicylsyra]]
88431 [[th:āšā¸­ā¸Ēāš„ā¸žā¸Ŗā¸´ā¸™]]
88432 [[tr:Aspirin]]
88433 [[uk:АŅ†ĐĩŅ‚иĐģŅĐ°ĐģŅ–Ņ†Đ¸ĐģОва ĐēиŅĐģĐžŅ‚Đ°]]
88434 [[zh:é˜ŋ司匚林]]</text>
88435 </revision>
88436 </page>
88437 <page>
88438 <title>Abner</title>
88439 <id>1526</id>
88440 <revision>
88441 <id>36054067</id>
88442 <timestamp>2006-01-21T05:23:33Z</timestamp>
88443 <contributor>
88444 <username>Kfranco</username>
88445 <id>536239</id>
88446 </contributor>
88447 <minor />
88448 <comment>Minor cleanup of verse citations</comment>
88449 <text xml:space="preserve">In the [[Book of Samuel]], '''Abner''' ([[Biblical Hebrew]] for &quot;father of [or is a] light&quot;), is first cousin to [[Saul the King|Saul]] and commander-in-chief of his army (1 Samuel 14:50, 20:25). He is only referred to incidentally in Saul's history (1 Samuel 17:55, 26:5), and is not mentioned in the account of the disastrous [[battle of Gilboa]] when Saul's power was crushed. Seizing the youngest but only surviving of Saul's sons, [[Ishbaal]], Abner set him up as king over [[Kingdom of Israel|Israel]] at [[Mahanaim]], east of the [[Jordan River|Jordan]]. [[David]], who was accepted as king by [[Kingdom of Judah|Judah]] alone, was meanwhile reigning at [[Hebron]], and for some time war was carried on between the two parties.
88450
88451 The only engagement between the rival factions which is told at length is noteworthy, inasmuch as it was preceded by an encounter at [[Gibeon]] between twelve chosen men from each side, in which the whole twenty-four seem to have perished (2 Samuel 2:12). In the general engagement which followed, Abner was defeated and put to flight. He was closely pursued by [[Asahel]], brother of [[Joab]], who is said to have been &quot;light of foot as a wild roe&quot; (2 Samuel 2:18). As Asahel would not desist from the pursuit, though warned, Abner was compelled to slay him in
88452 self-defence. This originated a deadly [[feud]] between the leaders of the opposite parties, for Joab, as next of kin to Asahel, was by the law and custom of the country the avenger of his blood.
88453
88454 For some time afterwards the war was carried on, the advantage being invariably on the side of David. At length, Ishbaal lost the main prop of his tottering cause by remonstrating with Abner for marrying [[Rizpah]], one of Saul's [[concubine]]s, an alliance which, according to contemporary notions, implied pretensions to the [[throne]] (cf. 2 Samuel 16:21ff.).
88455
88456 Abner was indignant at the deserved rebuke, and immediately opened negotiatons with David, who welcomed him on the condition that his wife [[Michal]] should be restored to him. This was done, and the proceedings were ratified by a feast. Almost immediately after, however, Joab, who had been sent away, perhaps intentionally returned and slew Abner at the gate of Hebron. The ostensible motive for the [[assassination]] was a desire to avenge Asahel, and this would be a sufficient justification for the deed according to the moral standard of the time. The conduct of David after the event was such as to show that he had no complicity in the act, though he could not venture to punish its perpetrators (2 Samuel 3:31-39; cf. 1 Kings 2:31ff.).
88457
88458 Soon however, Ishbaal/Ishbosheth was assassinated as he slept, and David became king of the reunited kingdoms.
88459
88460 {{1911}}
88461
88462 [[Category:Tanakh people]]
88463
88464 [[fr:Abner]]
88465 [[gl:Abner]]
88466 [[he:אבנר בן נר]]
88467 [[nl:Abner]]</text>
88468 </revision>
88469 </page>
88470 <page>
88471 <title>Ahmed I</title>
88472 <id>1527</id>
88473 <revision>
88474 <id>40056446</id>
88475 <timestamp>2006-02-17T20:40:22Z</timestamp>
88476 <contributor>
88477 <username>FlaBot</username>
88478 <id>228773</id>
88479 </contributor>
88480 <minor />
88481 <comment>robot Adding: fi</comment>
88482 <text xml:space="preserve">[[Image:Sultan ahmed I.jpg|frame|Sultan Ahmed I]]
88483
88484 '''Ahmed I''' (in [[Arabic language|Arabic]] ØŖØ­Ų…د اŲ„ØŖŲˆŲ„) ([[April 18]], [[1590]] &amp;ndash; [[November 22]], [[1617]]) was the [[sultan]] of the [[Ottoman Empire]] from [[1603]] until his death.
88485
88486 He succeeded his father [[Mehmed III]] in [[1603]] and became the first Ottoman sultan who reached the throne before attaining his majority. He was of kindly and humane disposition, as he showed by refusing to put to death his brother Mustafa (later [[Mustafa I]]), who eventually succeeded him. He was known for his skills in fencing, horseback riding, and fluency in numerous languages.
88487
88488 In the earlier part of his reign he showed decision and vigour, which were belied by his subsequent conduct. The wars which attended his accession both in [[Hungary]] and in [[Iran|Persia]] terminated unfavourably for the Empire, and her prestige received its first check in the [[Treaty of Sitvatorok]], signed in [[1606]], whereby the annual tribute paid by [[Austria]] was abolished. [[Georgia (country)|Georgia]] and [[Azerbaijan]] was ceded to Persia.
88489
88490 Ahmed gave himself up to pleasure during the remainder of his reign, which ended in [[1617]], and demoralization and corruption became as general throughout the public service as indisciplin in the ranks of the army. The use of [[tobacco]] is said to have been introduced in the Empire during his reign. Ahmed I died of [[typhus]] in [[1617]].
88491
88492 Today Ahmed I is remembered mainly for the construction of the [[Sultan Ahmed Mosque]] (also known as the [[Blue Mosque]]), one of the masterpieces of [[Islamic architecture]]. The area in [[Istanbul]] around the Mosque is today called Sultanahmet. He is buried in a masoleum right outside the walls of the famous mosque.
88493
88494 {{royal-stub}}
88495 {{Ottoman-stub}}
88496
88497 {{start box}}
88498 {{succession box|title=[[Ottoman Sultan]]|before=[[Mehmed III]]|after=[[Mustafa I]]|years=1603&amp;ndash;1617}}
88499 {{end box}}
88500
88501 [[Category:1590 births|Ahmed I]]
88502 [[Category:1617 deaths|Ahmed I]]
88503 [[Category:Sultans of the Ottoman Empire]]
88504
88505 [[ar:ØŖØ­Ų…د اŲ„ØŖŲˆŲ„]]
88506 [[de:Ahmed I.]]
88507 [[es:Ahmed I]]
88508 [[hr:Ahmed I.]]
88509 [[hu:I. Ahmed]]
88510 [[nl:Ahmet I]]
88511 [[ja:ã‚ĸãƒ•ãƒĄãƒˆ1世]]
88512 [[pl:Ahmed I]]
88513 [[sr:АŅ…ĐŧĐĩĐ´ I]]
88514 [[fi:Ahmed I]]
88515 [[sv:Ahmed I]]
88516 [[tr:I. Ahmet]]
88517 [[uk:АŅ…ĐŧĐĩĐ´ I]]
88518 [[zh:č‰žå“ˆčŋˆåžˇä¸€ä¸–]]</text>
88519 </revision>
88520 </page>
88521 <page>
88522 <title>Ahmed II</title>
88523 <id>1528</id>
88524 <revision>
88525 <id>38843064</id>
88526 <timestamp>2006-02-09T00:14:21Z</timestamp>
88527 <contributor>
88528 <username>Darwinek</username>
88529 <id>107928</id>
88530 </contributor>
88531 <minor />
88532 <comment>stub</comment>
88533 <text xml:space="preserve">'''Ahmed II''' (in [[Arabic language|Arabic]] ØŖØ­Ų…د اŲ„ØĢاŲ†Ų‰) ([[February 25]], [[1643]] &amp;ndash; [[1695]]) was the [[sultan]] of the [[Ottoman Empire]]. Ahmed was the son of Sultan [[Ibrahim I]] and succeeded his brother [[Suleiman II]] in [[1691]].
88534
88535 His best known act was to confirm [[Mustafa KÃļprÃŧlÃŧ]] as [[grand vizier]]. Only a few weeks after his accession the Ottoman Empire sustained a crushing defeat at the [[Battle of Slankamen]] from the [[Austrian]]s under Margrave [[Louis William, Margrave of Baden-Baden|Louis William]] of [[Grand Duchy of Baden|Baden]] and was driven from [[Hungary]]. During the four years of his reign disaster followed on disaster, and in 1695 Ahmed died, worn out by disease and sorrow.
88536
88537 {{royal-stub}}
88538
88539 {{start box}}
88540 {{succession box|title=[[Ottoman Sultan]]|before=[[Suleiman II]]|after=[[Mustafa II]]|years=1691&amp;ndash;1695}}
88541 {{end box}}
88542
88543 [[Category:1643 births|Ahmed II]]
88544 [[Category:1695 deaths|Ahmed II]]
88545 [[Category:Sultans of the Ottoman Empire]]
88546
88547 [[ar:ØŖØ­Ų…د اŲ„ØĢاŲ†ŲŠ]]
88548 [[bg:АŅ…ĐŧĐĩĐ´ II]]
88549 [[de:Ahmed II.]]
88550 [[es:Ahmed II]]
88551 [[hr:Ahmed II.]]
88552 [[hu:II. Ahmed]]
88553 [[nl:Ahmet II]]
88554 [[sr:АŅ…ĐŧĐĩĐ´ II]]
88555 [[tr:II. Ahmet]]</text>
88556 </revision>
88557 </page>
88558 <page>
88559 <title>Ahmed III</title>
88560 <id>1529</id>
88561 <revision>
88562 <id>41612001</id>
88563 <timestamp>2006-02-28T14:34:41Z</timestamp>
88564 <contributor>
88565 <username>Ugur Basak Bot</username>
88566 <id>735354</id>
88567 </contributor>
88568 <minor />
88569 <comment>robot Modifying: ar</comment>
88570 <text xml:space="preserve">[[Image:Ahmed III.jpg|thumb|Sultan Ahmed III]]
88571 [[Image:Koceks - Surname-i Vehbi.jpg|thumb|right|180px|[[Kocek|KÃļçeks]] at a fair. KÃļçek troupe dancing at Sultan [[Ahmed III]]'s 14-day celebration of his sons' circumcision in 1720. Miniature from the ''Surname-i Vehbi'', [[Topkapi Palace]], [[Istanbul]].]]
88572
88573 '''Ahmed III''' (Arabic {{ar|ØŖØ­Ų…د اŲ„ØĢاŲ„ØĢ}}) (born [[December 30]], [[1673]], died [[1736]]) was a [[sultan]] of the [[Ottoman Empire]] and a son of sultan [[Mehmed IV]]. He succeeded to the throne in 1703 on the abdication of his brother [[Mustafa II]].
88574
88575 Ahmed cultivated good relations with [[England]], in view doubtless of [[Russia]]'s menacing attitude. He afforded a refuge in Turkey to [[Charles XII of Sweden]] after the Swedish defeat at the hands of [[Peter I of Russia|Peter the Great]] in the [[Battle of Poltava]] in 1709. Forced against his will into war with Russia, he came nearer than any Turkish sovereign before or since to breaking the power of his northern rival, whom his [[grand vizier]] [[Baltaji Mahommed Pasha]] succeeded in completely surrounding near the [[Prut River]] in 1711.
88576
88577 In the treaty which Russia was compelled to sign, the Ottoman Empire obtained the restitution of [[Azov]], the destruction of the forts built by Russia and the undertaking that the [[tsar]] should abstain from future interference in the affairs of the [[Poland|Poles]] or the [[Cossacks]]. Discontent at the leniency of these terms was so strong at [[Constantinople]] that it nearly brought on a renewal of the war.
88578
88579 In 1715 the [[Morea]] was taken from the [[Republic of Venice|Venetians]]. This led to hostilities with [[Austria]], in which the Ottoman Empire was unsuccessful, and [[Belgrade]] fell into the hands of Austria in 1717. Through the mediation of England and the [[Netherlands]] the [[peace of Passarowitz]] was concluded in 1718, by which Turkey retained her conquests from the Venetians, but lost [[Hungary]].
88580
88581 A war with [[Persian Empire|Persia]] terminated in disaster, leading to a revolt of the [[Janissary|janissaries]], who deposed Ahmed in September 1730. He died in captivity six years later.
88582
88583 Nevsehirli Damad Ibrahim Pasha directed the government from 1718 to 1730.
88584 {{Details|Nevsehirli Damad Ibrahim Pasha}}
88585
88586 The course of the Persian war, in which the Turks had at made successive conquests with little check from the armies, though often impeded by the nature of the country the fierce spirit of the native tribes, became after a few years less favourable to Ottoman ambition. The celebrated Nadir Konli Khan (who afterwards reconquered and conquered states for himself), gained his first renown by exploits against the enemies of Shah Tahmasp. A report reached Constantinople that the lately despised Persians were victorious, and were invading the Ottoman Empire. This speedily caused excitement and tumult. Sultan Ahmet had become unpopular by reason of the excessive pomp and costly luxury in which he and his principal officers indulged; and on [[20 September]], [[1730]], a mutinous riot of seventeen janissaries, led by the Albanian Patrona Khalil, was encouraged by the citizens as well as the soldiery, till it swelled into an insurrection, before which the Sultan quailed, and gave up the throne. Ahmet voluntarily led his nephew Mahmut to the seat of sovereignty, and made obeisance to him as Padischah of the empire. He then retired to the apartments in the palace from whence his successor had been conducted, and died after a few years of confinement.
88587
88588 The reign of Ahmet III, which had lasted for twenty-seven years, though marked by the deep disasters of the Austrian war, was, on the whole, neither inglorious nor unprosperous. The recovery of Azov and the Morea, and the conquest of part of Persia, more than counterbalanced the territory which had been given up to the Austrian Emperor at the peace of Passarowitz. Ahmet left the finances of the Ottoman Empire in a flourishing condition, which had been obtained without excessive taxation or extortionate rapacity. He was a liberal and discerning patron of literature and art; and it was in his time that the first printing press was set up in Constantinople. It was in this reign that an important change in the government of the Danubian Principaiitics was introduced. Hitherto, the [[Porte]] had employed Voivode.s, or native [[Moldavia]]n and [[Wallachia]]n nobles, to administer those provinces. But after the war with [[Peter I of Russia|Peter the Great]] in 1711, in which Prince Cantcinir betrayed the Turkish and aided the Russian interests, the Porte established the custom of deputing Greeks from Constantinople as [[Hospodar]]s, or viceroys, of Moldavia and Wallachia. These were generally selected from among the wealthy Greek families that inhabited the quarter of Constantinople called the [[Fanar]], and constituted a kind of Raya Noblesse, which supplied the Porte with functionaries in many important departments of the state. The Moldo-Wallachians called the period of their history, during which they were under Greek viceroys (and which lasted till 1821), the Fanariote period.
88589
88590 ==References==
88591 * {{1911}}
88592 * This article inncorporates text from ''History of Ottoman Turks'' (1878)
88593
88594 {{start box}}
88595 {{succession box|title=[[Ottoman Sultan]]|before=[[Mustafa II]]|after=[[Mahmud I]]|years=1703&amp;ndash;1730}}
88596 {{end box}}
88597
88598 [[Category:1673 births|Ahmed III]]
88599 [[Category:1736 deaths|Ahmed III]]
88600 [[Category:Sultans of the Ottoman Empire]]
88601
88602 [[ar:ØŖØ­Ų…د اŲ„ØĢاŲ„ØĢ]]
88603 [[de:Ahmed III.]]
88604 [[es:Ahmed III]]
88605 [[hr:Ahmed III.]]
88606 [[hu:III. Ahmed]]
88607 [[nl:Ahmet III]]
88608 [[ja:ã‚ĸãƒ•ãƒĄãƒˆ3世]]
88609 [[sr:АŅ…ĐŧĐĩĐ´ III]]
88610 [[sv:Ahmed III]]
88611 [[tr:III. Ahmet]]
88612 [[uk:АŅ…ĐŧĐĩĐ´ III]]
88613 [[zh:č‰žå“ˆčŋˆåžˇä¸‰ä¸–]]</text>
88614 </revision>
88615 </page>
88616 <page>
88617 <title>Ainu people</title>
88618 <id>1530</id>
88619 <revision>
88620 <id>41977655</id>
88621 <timestamp>2006-03-03T00:24:30Z</timestamp>
88622 <contributor>
88623 <username>Khoikhoi</username>
88624 <id>657950</id>
88625 </contributor>
88626 <comment>format</comment>
88627 <text xml:space="preserve">{{Ethnic group|
88628 |group=Ainu
88629 |image=[[Image:AinuGroup.JPG|320px]] Group of Ainu people, 1904 photograph.
88630 |poptime=
88631 '''50,000''' people with half or more Ainu ancestry&lt;br&gt;
88632 '''150,000''' Japanese people with some Ainu ancestry&lt;br&gt;
88633 *(''some estimates on the number of Japanese with some Ainu blood range as high as '''1,000,000'''; the exact number is unknown'')&lt;br&gt;
88634 Pre-Japanese era: ~'''50,000''', almost all pure Ainu
88635 |popplace=[[Japan]]&lt;br&gt;
88636 [[Russia]]
88637 |langs='''[[Ainu language|Ainu]]''' is the traditional language, but today somewhere between 1% and 5% of Ainu can speak it fluently, between 5% and 10% are [[passive speakers]] or [[partial speakers]], and about 50% of Ainu have a very basic command of the language
88638 |rels=[[Animism]], some are members of the [[Russian Orthodox Church]]
88639 |related= Modern genetics has proven they are East Asians. They are usually grouped with the non-[[Tungus]]ic peoples of [[Sakhalin]], the [[Amur]] river valley, and the [[Kamchatka peninsula]]:
88640 *[[Nivkhs]]
88641 *[[Itelmens]]
88642 *[[Chukchis]]
88643 *[[Koryaks]]
88644 *[[Aleuts]]
88645 }}
88646
88647 The '''Ainu''' ([[International Phonetic Alphabet|pronounced]] {{IPA|/ˈainu/}}, &quot;eye-noo&quot;, ã‚ĸイヌ / aynu) are an ethnic group [[indigenous peoples|indigenous]] to [[Hokkaido]], the northern part of [[Honshu]] in Northern [[Japan]], the [[Kuril Islands]], much of [[Sakhalin]], and the southernmost third of the [[Kamchatka peninsula]]. The word &quot;ainu&quot; means &quot;human&quot; in the [[Ainu language]]; '''[[Emishi]]''', '''[[Ezo]]''' or '''[[Yezo]]''' (&amp;#34662;&amp;#22839;) are [[Japanese language|Japanese]] terms; and '''[[Utari]]''', &amp;#12454;&amp;#12479;&amp;#12522;, (meaning &quot;comrade&quot; in Ainu) is now preferred by some members. There are most likely over 150,000 Ainu today, however the exact figure is not known as many Ainu hide their origins or in many cases are not even aware of them, their parents having kept it from them so as to protect their children from racism.
88648
88649 ==Origins==
88650 The origins of the Ainu are uncertain. Some commentators believe that they derive from an ancient proto-Asian stock that may have occupied most of Asia before the [[Han Chinese|Han]] expansion (see [[Jomon|Jomon people]]). Various other Asian [[indigenous peoples]], from the [[Ryukyu]]s to the [[Taiwanese]] are also thought to be related to them.
88651
88652 In the early 20th century [[anthropology|anthropologists]] debated what [[Typology#Anthropology|typological classification]] (such as [[Mongoloid]] or [[Caucasoid]]) the Ainu belonged to. The typological models of [[Race (historical definitions)|racial classification]] in use at that time have since undergone significant revision, in the light of developments in fields such as [[genetics]]. Many physical characteristics which had been employed to distinguish &quot;Mongoloid&quot;, &quot;Caucasoid&quot; or other racial-types are viewed by many contemporary authorities to arise more typically from climatic or environmental selection, rather than necessary indicators of relatedness/distinctiveness. While a minority still hold to the view that race typology usefully reflects underlying biological differences, the classification of &quot;Mongoloid&quot; versus other groups is mostly seen as being problematic. ''See also [[Tocharians]] and [[Sami]]''
88653
88654 The prevailing mythology in Japan has been of the Ainu as a race of &quot;noble savages,&quot; a proud but reclusive culture of hunter-gatherers. This mythology became a useful defense for the Japanese expropriation of Ainu lands. In fact, the Ainu were farmers from the earliest centuries of the [[Common Era]].[http://www.pbs.org/wgbh/nova/hokkaido/ainu.html]
88655
88656 ==North American Connection==
88657 In the late 20th Century, much speculation arose that the Ainu may have been one of the first groups to settle [[North America]]. This theory is based largely on skeletal and cultural evidence among tribes living in the western part of North America and certain parts of [[Latin America]]. It is quite possible that North America had several peoples among its early settlers--the Ainu being one of them, perhaps even the first. The most well known instance supporting this theory is probably [[Kennewick Man]].
88658
88659 Genetic mapping studies by [[Cavalli-Sforza]] have shown a pattern of genetic expansion from the area of the [[Sea of Japan]] towards the rest of eastern Asia and the American continent. This appears as the third most important genetic movement in Eastern Asia (after the &quot;Great expansion&quot; from the African continent, and a second expansion from the area of Northern Siberia), which would make it consistent with the early [[Jomon]] period &lt;ref&gt;&quot;The synthetic maps suggest a previously unsuspected center of expansion from the Sea of Japan but cannot indicate dates. This development could be tied to the Jomon period, but one cannot entirely exclude the pre-Jomon period and that it might be responsible for a migration to the Americas. A major source of food in those pre-agricultural times came from fishing, then as now, and this would have limited for ecological reasons the area of expansion to the coastline, perhaps that of the Sea of Japan, but also father along the Pacific Coast&quot; &quot;The History and Geography of Human Genes&quot; p253, Cavalli-Sforza ISBN 0691087504&lt;/ref&gt;.
88660
88661 ==History==
88662 At first, contact with the [[Japanese people]] was friendly and both were equals in a trade relationship. However, eventually the Japanese started to dominate the relationship, and soon established large settlements on the outskirts of Ainu territory. As the Japanese moved north and took control over their traditional lands, the Ainu often gave up without resistance, but there was occasional resistance as exemplified in wars in [[1457]], [[1669]], and [[1789]], all of which were lost by the Ainu. Japanese policies became increasingly aimed at assimilating the Ainu in the [[Meiji period]], outlawing their language and restricting them to farming on government-provided plots. Ainu were also used in near-slavery conditions in the Japanese fishing industry. The island of Hokkaido was called ''Ezo'' or ''Ezo-chi'' during the [[Edo period]]. Its name was changed to Hokkaido during the [[Meiji Restoration]] as part of the programme to &quot;unify&quot; the Japanese national character under the aegis of the Emperor, thus reducing the local identity and autonomy of the different regions of Japan.
88663
88664 As Japanese citizens, the Ainu are now governed by Japanese laws (though one Ainu man was acquitted of murder because he asserted that he was not a Japanese citizen and the judge agreed{{fact}}) and judged by Japanese tribunals, but in the past, their affairs were administered by hereditary chiefs, three in each village, and for administrative purposes the country was divided into three districts, [[Saru]], [[Usu (district)|Usu]] and [[Ishikari]], which were under the ultimate control of Saru, though the relations between their respective inhabitants were not close and intermarriages were avoided. The functions of judge were not entrusted to these chiefs; an indefinite number of a community's members sat in judgement upon its criminals. Capital punishment did not exist, nor was imprisonment resorted to, beating being considered a sufficient and final penalty, except in the case of murder, when the nose and ears of the culprit were cut off or the tendons of his feet severed. Intermarriages between Japanese and Ainu are not infrequent, and at [[Sambutsu]] especially, on the eastern coast, many children of such marriages may be seen.
88665
88666 Today, many Ainu dislike the term Ainu and prefer to identify themselves as ''Utari'' (''comrade'' in the Ainu language). In official documents both names are used.
88667
88668 ==Geography==
88669 For historical reasons (primarily the [[Russo-Japanese War]]), nearly all Ainu live in Japan.
88670
88671 There is, however, a small number of Ainu living on [[Sakhalin]], most of them descendants of Sakhalin Ainu who were evicted and later returned. There is also an Ainu minority living at the southernmost area of the Kamchatka Peninsula and on the Kurile Islands. However, the only Ainu speakers remaining (besides perhaps a few partial speakers) live solely in Japan. There, they are concentrated primarily on the southern and eastern coasts of the island of [[Hokkaido]].
88672
88673 Due to intermarriage with the Japanese and ongoing absorption into the predominant culture, few living Ainu settlements exist. Many &quot;authentic Ainu villages&quot; advertised in Hokkaido are simply tourist attractions.
88674
88675 ==Language==
88676 The [[Ainu language]] is significantly different from [[Japanese language|Japanese]] in its [[syntax]], [[phonology]], [[morphology (linguistics)|morphology]], and vocabulary. Although there have been attempts to show that they are related, the vast majority of modern scholars reject that the relationship goes beyond contact, i.e., mutual borrowing of words between Japanese and Ainu. In fact, no attempt to show a relationship with Ainu to any other language has gained wide acceptance, and Ainu is currently considered to be a [[language isolate]].
88677 &lt;!--ethnologue data is incorrect; see [[ainu language]]--&gt;
88678 ==Culture==
88679 Traditional Ainu culture is quite different from Japanese culture. Never shaving after a certain age, the men had full [[beard]]s and [[moustache]]s. Men and women alike cut their [[hair]] level with the shoulders at the sides of the head, but trimmed it semicircularly behind. The [[women]] [[tattoo]]ed their [[mouth]]s, [[arm]]s, [[Clitoris|clitorides]], and sometimes their [[forehead]]s, starting at the onset of [[puberty]]. The soot deposited on a pot hung over a fire of birch bark was used for [[colour]]. Their traditional [[dress]] is a robe spun from the bark of the elm tree. It has long sleeves, reaches nearly to the feet, is folded round the body, and is tied with a girdle of the same material. Women also wear an undergarment of Japanese cloth. In winter the skins of animals were worn, with leggings of deerskin and boots made from the skin of dogs or [[salmon]]. Both sexes are fond of earrings, which are said to have been made of [[grape]]vine in former times, as also are bead necklaces called [[tamasay]], which the women prized highly. Their traditional cuisine consists of the flesh of [[bear]], [[fox]], [[wolf]], [[badger]], [[ox]] or [[horse]], as well as [[fish]], [[fowl]], [[millet]], [[vegetable]]s, [[herb]]s, and [[root]]s. They never ate raw [[fish]] or flesh, but always either boiled or roasted it. Their traditional habitations were reed-thatched huts, the largest 20 ft. square, without partitions and having a fireplace in the centre. There was no chimney, but only a hole at the angle of the roof; there was one window on the eastern side and there were two doors. The house of the village head was used as a public meeting place when one was needed. Instead of using furniture, they sat on the floor, which was covered with two layers of mats, one of rush, the other of flag; and for beds they spread planks, hanging mats around them on poles, and employing skins for coverlets. The men used [[chopstick]]s when eating; the women had wooden [[spoon]]s. [[Ainu cuisine]] is uncommonly eaten outside Ainu communities; there are only a few Ainu restaurants in Japan, all located in [[Tokyo]] and [[Hokkaido]].
88680
88681 ===Religion===
88682 The Ainu believe in [[Animism]], or that everything in nature has a ''[[kami|kamuy]]'' (spirit or god) on the inside. There is a hierarchy of the ''kamuy''. The most important is grandmother hearth ([[fire]]), then ''kamuy'' of the [[mountain]] (animals), then ''kamuy'' of the [[sea]] ([[Marine biology|sea animals]]), lastly everything else. They have no [[priests]] by profession. The village chief performs whatever religious ceremonies are necessary; ceremonies are confined to making libations of [[sake|rice beer]], uttering [[prayers]], and offering [[willow]] sticks with wooden shavings attached to them. These sticks are called [[Inau]] (singular) and [[Inau|nusa]] (plural). They are placed on an altar used to sacrifice the heads of killed animals. The Ainu people give thanks to the gods before eating and pray to the deity of fire in time of [[sickness]]. They believe their spirits are [[immortal]], and that their spirits will be rewarded hereafter by ascending to ''kamuy mosir'' (Land of the Gods).
88683
88684 Some Ainu in the north are members of the [[Russian Orthodox Church]].
88685
88686 ===Sport===
88687 The Ainu excel at many competitive physical activities. Due to their taller physical build, the Ainu have outshone the ethnic Japanese in typically Western sports like [[baseball]], [[football (soccer)|football]] (soccer), and [[track and field]] events. This has engendered much resentment from the ethnic Japanese but the athletic feats of the Ainu people are still celebrated throughout Asia nonetheless (Fitzhugh, 364-366)
88688
88689 ==Institutions==
88690 There are many different organizations of Ainu trying to further their cause in many different ways. There is an umbrella group of which most Hokkaido Ainu and some other Ainu are members, called the [[Hokkaido Utari Association]], originally controlled by the government with the intention of speeding Ainu assimilation and integration into the Japanese nation-state but which now operates mostly independently of the government and is run exclusively by Ainu.
88691
88692 [[Image:FlagofAinuNation.png|thumb|300px|Flag of the Ainu people. The Ainu flag was designed by the late Mr. Bikki Sunazawa in 1973. [[Cerulean blue]] stands for sky and sea, white for snow and red for arrow which is running in the snow beneath Hokkaido's sky. --''Nozomi Kariyasu'', March 21, 1999]]
88693
88694 ==Subgroups==
88695 *[[Tohoku Ainu]] (from [[Honshu]], no known living population)
88696 *[[Hokkaido Ainu]]
88697 *[[Sakhalin Ainu]]
88698 *[[Kuril Ainu]] (no known living population)
88699 *[[Kamchatka Ainu]]
88700 *[[Amur Valley Ainu]] (probably none remain)
88701
88702 ==See also==
88703 *[[Ethnic issues in Japan]]
88704 *[[Yukar]]
88705 *[[Ainu music]]
88706 *[[Honshu]]
88707 *[[Hokkaido]]
88708 *[[Sakhalin]]
88709 *[[Kuril Islands]]
88710 *[[Kamchatka peninsula]]
88711 *[[Shogun]]
88712 *[[Kennewick Man]]
88713
88714 ==Notes==
88715 &lt;references/&gt;
88716
88717 ==References==
88718 {{1911}}
88719 *Article on the Ainu in ''Japan's Minorities: The Illusion of Homogeneity''.
88720 *Kayano, Shigeru. ''Our Land Was a Forest: An Ainu Memoir'' (1994). Translated by Kyoko Selden and Lili Selden. Foreword by Mikiso Hane. Transitions--Asia and Asian America series. Boulder, Colorado: Westview Press.
88721 *{{cite book|author=Fitzhugh, W.|year=2004|title=Ainu:Spirit of a Northern People|publisher=Seattle: University of Washington Press|id=ISBN 0295979127}}
88722
88723 ==External links==
88724 *[http://www.ainu-museum.or.jp/english/english.html The Ainu Museum]
88725 *[http://www.mnh.si.edu/arctic/features/ainu/ Smithsonian Institute]
88726 *[http://www.ainu-assn.or.jp/ Nippon Utari Kyokai]
88727 *[http://www.molli.org.uk/explorers/the_regions/north_america.asp Ainu-North American cultural similarities]
88728 *[http://www.rgj.com/news/specials/story9.html Spirit Cave Man May Rewrite Continent's History]
88729 *[http://www.frpac.or.jp/eng/e_prf/index.html Foundation for Research and Promotion of Ainu Culture]
88730 *[http://www.cwo.com/~lucumi/shogun.html Ainu Lineage]
88731
88732 [[Category:Indigenous peoples of Asia]]
88733 [[Category:Indigenous peoples of East Asia]]
88734 [[Category:Ethnic groups in Japan]]
88735 [[Category:Ainu| ]]
88736
88737 [[da:Ainu]]
88738 [[de:Ainu]]
88739 [[es:Ainu]]
88740 [[eo:Ajnuoj]]
88741 [[fr:Aïnus]]
88742 [[ko:ė•„ė´ëˆ„ėĄą]]
88743 [[id:Suku Ainu]]
88744 [[nl:Ainu (volk)]]
88745 [[nds:Ainu]]
88746 [[ja:ã‚ĸイヌ]]
88747 [[no:Ainu]]
88748 [[pl:Ajnowie]]
88749 [[ru:АКĐŊŅ‹]]
88750 [[simple:Ainu]]
88751 [[fi:Ainut]]
88752 [[sv:Ainu]]
88753 [[th:ā¸Šā¸˛ā¸§āš„ā¸­ā¸™ā¸¸]]
88754 [[zh:愛åŠĒ族]]</text>
88755 </revision>
88756 </page>
88757 <page>
88758 <title>Aix</title>
88759 <id>1531</id>
88760 <revision>
88761 <id>15899999</id>
88762 <timestamp>2002-09-06T09:12:42Z</timestamp>
88763 <contributor>
88764 <username>Aldie</username>
88765 <id>901</id>
88766 </contributor>
88767 <comment>redir</comment>
88768 <text xml:space="preserve">#REDIRECT [[AIX]]</text>
88769 </revision>
88770 </page>
88771 <page>
88772 <title>Agrippina the Elder</title>
88773 <id>1532</id>
88774 <revision>
88775 <id>15900000</id>
88776 <timestamp>2002-02-25T15:51:15Z</timestamp>
88777 <contributor>
88778 <ip>Conversion script</ip>
88779 </contributor>
88780 <minor />
88781 <comment>Automated conversion</comment>
88782 <text xml:space="preserve">#REDIRECT [[Agrippina_the_elder]]
88783 </text>
88784 </revision>
88785 </page>
88786 <page>
88787 <title>Aix-la-Chapelle</title>
88788 <id>1533</id>
88789 <revision>
88790 <id>15900001</id>
88791 <timestamp>2002-02-25T15:43:11Z</timestamp>
88792 <contributor>
88793 <ip>Conversion script</ip>
88794 </contributor>
88795 <minor />
88796 <comment>Automated conversion</comment>
88797 <text xml:space="preserve">#REDIRECT [[Aachen]]
88798 </text>
88799 </revision>
88800 </page>
88801 <page>
88802 <title>Acorn (fruit of the oak tree)</title>
88803 <id>1535</id>
88804 <revision>
88805 <id>15900003</id>
88806 <timestamp>2004-10-06T12:54:23Z</timestamp>
88807 <contributor>
88808 <username>Andre Engels</username>
88809 <id>300</id>
88810 </contributor>
88811 <comment>changed to redirect</comment>
88812 <text xml:space="preserve">#REDIRECT [[Acorn]]</text>
88813 </revision>
88814 </page>
88815 <page>
88816 <title>Acropolis</title>
88817 <id>1536</id>
88818 <revision>
88819 <id>39714649</id>
88820 <timestamp>2006-02-15T09:18:38Z</timestamp>
88821 <contributor>
88822 <username>Aggelophoros</username>
88823 <id>34669</id>
88824 </contributor>
88825 <minor />
88826 <comment>revert vandalism</comment>
88827 <text xml:space="preserve">:''This article is about '''acropolis''' in general. For the best-known example of the kind, see [[Acropolis, Athens]].''
88828
88829 [[image:Athens_Acropolis.jpg|thumb|250px|Acropolis in [[Athens]].]]
88830 '''Acropolis''' (Gr. ''akros,'' top, ''polis,'' city), literally the upper part of a town. For purposes of defence early settlers naturally chose elevated ground, frequently a hill with precipitous sides, and these early citadels became in many parts of the world the nuclei of large cities which grew up on the surrounding lower ground.
88831
88832 The word &quot;Acropolis&quot;, though Greek in origin and associated primarily with Greek cities ([[Athens]], [[Argos]], [[Thebes, Greece|Thebes]], and [[Corinth]] with its [[Acrocorinth]]), may be applied generically to all such citadels ([[Rome]], [[Jerusalem]], Celtic [[Bratislava]], many in [[Asia Minor]], or even Castle Hill at [[Edinburgh]]).
88833
88834 The most famous example of the kind is the [[Acropolis, Athens|Acropolis of Athens]], which, by reason of its historical associations and the famous buildings erected upon it, is generally known without qualification as simply &quot;The Acropolis&quot;.
88835
88836 Because of its classical Greco-Roman style, the ruins of [[Mission San Juan Capistrano|Mission San Juan Capistrano's]] &quot;Great Stone Church&quot; (in [[California|California, United States]]) have been dubbed the &quot;American Acropolis&quot;.
88837
88838 Other parts of the world developed other names for the high [[citadel]] or [[alcÃĄzar]], which often reinforced a naturally strong site. In Central [[Italy]], many small rural [[comune|commune]]s still cluster at the base of a fortified habitation known as &quot;La Rocca&quot; of the commune.
88839
88840 The term ''Acropolis'' is also used to described the central complex of overlapping structures, such as plazas and pyramids, in many [[Maya]]n cities, including [[Tikal]] and [[CopÃĄn]].
88841
88842 {{commons|Acropolis}}
88843
88844 [[Category:Classical studies]]
88845
88846 [[ca:AcrÃ˛poli]]
88847 [[de:Akropolis]]
88848 [[es:AcrÃŗpolis]]
88849 [[eu:Akropoli]]
88850 [[fr:Acropole]]
88851 [[gl:AcrÃŗpole]]
88852 [[it:Acropoli]]
88853 [[he:אקרופוליס]]
88854 [[nl:Akropolis]]
88855 [[ja:ã‚ĸクロポãƒĒã‚š]]
88856 [[no:Akropolis]]
88857 [[pl:Akropol]]
88858 [[pt:AcrÃŗpole]]
88859 [[ru:АĐēŅ€ĐžĐŋĐžĐģŅŒ]]
88860 [[sk:Akropola]]
88861 [[sl:Akropola]]
88862 [[fi:Akropolis]]
88863 [[sv:Akropolis]]
88864 [[uk:АĐēŅ€ĐžĐŋĐžĐģŅŒ]]</text>
88865 </revision>
88866 </page>
88867 <page>
88868 <title>Acupuncture</title>
88869 <id>1537</id>
88870 <revision>
88871 <id>42109157</id>
88872 <timestamp>2006-03-03T22:01:07Z</timestamp>
88873 <contributor>
88874 <username>Pagingmrherman</username>
88875 <id>7390</id>
88876 </contributor>
88877 <minor />
88878 <comment>/* Theory */</comment>
88879 <text xml:space="preserve">[[Image:Acupuncture chart 300px.jpg|thumb|right|175px|Acupuncture chart from the [[Ming dynasty]].]]
88880 '''Acupuncture''' (from Lat. ''acus,'' &quot;needle&quot; (noun), and ''pungere,'' &quot;prick&quot; (verb) or in [[Standard Mandarin]], zhēn jiĮ” (針į¸) is one of the main branches of [[Traditional Chinese Medicine]], or TCM (others being [[herbal medicine]] and [[tui na]]). It is a [[therapy|therapeutic]] technique from that framework intended to restore health and well-being. The technique involves the insertion of needles into &quot;[[acupuncture point]]s&quot; on the body by trained practitioners. The needles most commonly used in present-day practice are made of [[stainless steel]] and are of approximately the same diameter as a medium thickness guitar string (approximately .01&quot; to .02&quot;). Acupuncture and related practices predate modern concepts of [[science]], and most but not all of its claims are not yet verified in modern studies and clinical practice to the standards of the [[Cochrane Collaboration]].
88881
88882 ==History==
88883 In [[China]], the practice of acupuncture can perhaps be traced as far back as the [[1st millennium BC|1&lt;sup&gt;st&lt;/sup&gt; millennium BC]], and archeological evidence has been identified with the period of the [[Han dynasty]] (from 202 [[Anno Domini|BC]] to 220 [[Anno Domini|AD]]). The practice spread centuries ago into many parts of Asia; in modern times it is a component of [[traditional Chinese medicine]] (TCM), and forms of it are also described in the literature of [[traditional Korean medicine]] where it is called ''chimsul''. It is also important in [[Kampo]], the traditional medicine system of [[Japan]].
88884
88885 The earliest Chinese medical texts (Ma-wang-tui graves 68 BC) do not mention acupuncture. Later in Chinese history, 365 points along the meridians were spoken of, not because they were anatomically identified, but because there are 365 days in a year. Different acupuncture charts give different numbers and locations of points.
88886
88887 The Chinese medical text that first describes acupuncture is The Yellow Emperor’s ''Classic of Internal Medicine (History of Acupuncture)''. Some hieroglyphics have been found dating back to 1000 BC that may indicate an early use of acupuncture. Bian stones, sharp pointed stones used to treat diseases in ancient times, have also been discovered in ruins (History of Acupuncture in China) but are not directly related to acupuncture.
88888
88889 RC Crozier in the book ''Traditional medicine in modern China'' (Harvard University Press, Cambridge, 1968) says the early Chinese Communist Party expressed considerable antipathy towards TCM, ridiculing it as superstitious, irrational and backward, and claiming that it conflicted with the Party’s dedication to science as the way of progress. Acupuncture was included in this criticism. Reversing this position, Communist Party Chairman [[Mao]] later said that &quot;Chinese medicine and pharmacology are a great treasure house and efforts should be made to explore them and raise them to a higher level&quot;[http://www.healthy.net/scr/article.asp?ID=1708]. [[Barefoot doctors]] were trained to provide inexpensive health care in rural Chinese communities. After the [[Cultural Revolution]], TCM instruction was incorporated into university medical curricula under the &quot;Three Roads&quot; policy, wherein TCM, biomedicine and a synthesis of the two would all be encouraged and permitted to develop.
88890
88891 ==Acupuncture in modern medicine==
88892 Medical law in the [[United States]] regarding acupuncture varies widely from state to state. Notably, states furthest to the west ([[Hawaii]] most particularly, [[California]], etc.) have the most comprehensive laws and regulations regarding acupuncture. In many U.S. states -- those furthest to the east -- medical doctors (M.D.s) are permitted to practice acupuncture with no specific training in acupuncture. In some states, acupuncturists are required to work with an M.D. in a subservient relationship, even if the M.D. has no training in acupuncture. Contrastingly, Hawaii forbids M.D.s to practice acupuncture unless they have received specific training in it and have demonstrated related competency.
88893
88894 Acupuncture is becoming accepted today. Over fifteen million Americans in 1994 tried acupuncture. In 1996, the [[FDA]] changed the status of acupuncture needles from Class III to Class II medical devices, meaning that needles are regarded as safe and effective when used appropriately by licensed practitioners [http://www.fda.gov/fdac/departs/596_upd.html] [http://www.fda.gov/cdrh/pmapage.html]. Acupuncture is also in the curriculum of many colleges today.
88895
88896 In Australia, the legalities of practicing acupuncture also vary by state. In 2000, an independent government agency was established to oversee the practice of Chinese Herbal Medicine and Acupuncture in the state of Victoria. The Chinese Medicine Registration Board of Victoria [http://www.cmrb.vic.gov.au/] aims to protect the public, ensuring that only apropriately experienced or qualified practitioners are registered to practice Chinese Medicine. The legislation put in place stipulates that only practitioners who are state registered may use the following titles: Acupuncture, Chinese Medicine, Chinese Herbal Medicine, Registered Acupuncturist, Registered Chinese Medicine Practitioner, Registered Chinese Herbal Medicine Practitioner.
88897
88898 Warming an acupuncture point, typically by [[moxibustion]] (the burning of [[mugwort]]), is a different treatment than acupuncture itself and is often, but not exclusively, used as a supplementing treatment. The Chinese term zhēn jĮu (針į¸), commonly used to refer to acupuncture, comes from ''zhen'' meaning &quot;needle&quot;, and ''jiu'' meaning &quot;moxibustion&quot;. Moxibustion is still used in the [[21st century|21&lt;sup&gt;st&lt;/sup&gt; century]] to varying degrees among the schools of traditional Chinese medicine. For example, one well known technique is to insert the needle at the desired acupuncture point, attach dried mugwort to the external end of an acupuncture needle, and then ignite the mugwort. The mugwort will then smolder for several minutes (depending on the amount adhered to the needle) and conduct heat through the needle to the tissue surrounding the needle in the patient's body.
88899
88900 Most modern acupuncturists use disposable [[stainless steel]] needles of very fine [[diameter]] (approximately .015&quot;), sterilized with [[ethylene oxide]] or by [[autoclave]]. The upper third of these needles is wound with a thicker wire (typically bronze) to stiffen the needle, provide a handle for the acupuncturist to grasp while inserting the needle, and also provide a surface to which dried mugwort will more easily adhere.
88901
88902 ==Theory==
88903 Acupuncture treats the human body as a whole that involves several &quot;systems of function&quot; that are in many cases associated with (but not identified on a one-to-one basis with) physical organs. Some systems of function, such as the &quot;triple heater&quot; ([[San Jiao]], also called the &quot;triple burner&quot;) have no corresponding physical organ. Disease is understood as a loss of homeostasis among the several systems of function, and treatment of disease is attempted by modifying the activity of one or more systems of function through the activity of needles, pressure, heat, etc. on sensitive parts of the body of small volume traditionally called &quot;acupuncture points&quot; in English, or &quot;xue&quot; (įŠ´, cavities) in Chinese.
88904
88905 Treatment of acupuncture points may be performed along the twelve main or eight extra [[meridian (Chinese medicine)|meridians]], located throughout the body. Of the eight extra meridians, only two have acupuncture points of their own. The other six meridians are &quot;activated&quot; by using a master and couple point technique which involves needling the acupuncture points located on the twelve main meridians that correspond to the particular extra meridian. Ten of the main meridians are named after organs of the body (Heart, Liver, etc.), and the other two are named after so called body functions (Heart Protector or [[Pericardium]], and ''San Jiao''). The two most important of the eight &quot;extra&quot; meridians are situated on the midline of the anterior and posterior aspects of the trunk and head.
88906 The twelve primary meridians run vertically, bilaterally, and symmetrically and every channel corresponds to and connects internally with one of the twelve [[Zang Fu]] (&quot;organs&quot;). This means that there are six [[yin]] and six [[yang]] channels. There are three [[yin]] and three [[yang]] channels on each arm, and three [[yin]] and three [[yang]] on each leg.
88907
88908 The three [[yin]] channels of the hand ([[Lung]], [[Pericardium]], and [[Heart]]) begin on the chest and travel along the inner surface (mostly the anterior portion) of the arm to the hand.
88909
88910 The three [[yang]] channels of the hand ([[Large intestine]], [[San Jiao]], and [[Small intestine]]) begin on the hand and travel along the outer surface (mostly the posterior portion) of the arm to the head.
88911
88912 The three [[yang]] channels of the foot ([[Stomach]], [[Gallbladder]], and [[Urinary bladder|Bladder]]) begin on the face, in the region of the eye, and travels down the body and along the outer surface (mostly the anterior and lateral portion) of the leg to the foot.
88913
88914 The three [[yin]] channels of the foot ([[Spleen]], [[Liver]], and [[Kidney]]) begin on the foot and travel along the inner surface (mostly posterior and medial portion) of the leg to the chest or flank.
88915
88916 The movement of [[qi]] through each of the twelve channels is comprised of an internal and an external pathway. The external pathway is what is normally shown on an acupuncture chart and it is relatively superficial. All the acupuncture points of a channel lie on its external pathway. The internal pathways are the deep course of the channel where it enters the body cavities and related Zang-Fu organs. The superficial pathways of the twelve channels describe three complete circuits of the body.
88917
88918 The distribution of [[psuedoscience|energy]] through the meridians is said to be as follows:
88919 Lung channel of hand [[taiyin]] to Large Intestine channel of hand [[yangming]] to Stomach channel of foot [[yangming]] to Spleen channel of foot [[taiyin]] to Heart channel of hand [[shaoyin]] to Small Intestine channel of hand [[taiyang]] to Bladder channel of foot [[taiyang]] to Kidney channel of foot [[shaoyin]] to Pericardium channel of hand [[jueyin]] to [[San Jiao]] channel of hand [[shaoyang]] to Gallbladder channel of foot [[shaoyang]] to Liver channel of foot [[jueyin]] then back to the Lung channel of hand [[taiyin]]
88920
88921 Traditional Chinese medical theory holds that acupuncture works by normalizing the balance of ''[[qi]]'' &quot;vital energy&quot; throughout the body. Pain or illnesses are treated by attempting to remedy local or systemic accumulations or deficiencies of qi. Pain is considered to indicate blockage or stagnation of the flow of qi, and an axiom of the medical literature of acupuncture is &quot;no pain, no blockage; no blockage, no pain&quot;.
88922
88923 Many patients claim to experience the sensations of stimulus known in Chinese as &quot;deqi&quot; (åž—æ°Ŗ &quot;obtaining the qi&quot;). This kind of sensation was historically considered to be evidence of effectively locating the desired point. There are some electronic devices now available which will make a noise when what they have been programmed to describe as the &quot;correct&quot; acupuncture point is pressed.
88924
88925 The [[acupuncturist]] will decide which points to treat by thoroughly questioning the patient, and utilizing the diagnostic skills of [[traditional Chinese medicine]] which include observation of the left and right radial pulses at three levels of imposed pressure and analysis of the tongue coating, color and the absence or presence of teeth marks around the edge.
88926
88927 There are also theories being developed to explain effects observed for acupuncture within the orthodox Western medical paradigm.
88928
88929 According to the NIH consensus statement on acupuncture[http://consensus.nih.gov/1997/1997Acupuncture107html.htm]:
88930 : Despite considerable efforts to understand the anatomy and physiology of the &quot;acupuncture points&quot;, the definition and characterization of these points remains controversial. Even more elusive is the basis of some of the key traditional Eastern medical concepts such as the circulation of [[Qi]], the meridian system, and the five phases theory, which are difficult to reconcile with contemporary biomedical information but continue to play an important role in the evaluation of patients and the formulation of treatment in acupuncture.
88931
88932 ==An example of acupuncture practice==
88933
88934 [[Image:Acupuncture.jpg|thumb|250px|right|Acupuncture]]
88935 In western medicine, vascular headaches (the kind that are accompanied by throbbing veins in the temples) are typically treated with analgesics such as aspirin and/or by the use of agents such as niacin that dilate the affected blood vessels in the scalp, but in acupuncture a common treatment for such headaches is to stimulate the sensitive points that are located roughly in the center of the webs between the thumbs and the palms of the patient, the ''hÊ gĮ”'' points. These points are described by acupuncture theory as &quot;targeting the face and head&quot; and are considered to be the most important point when treating disorders affecting the face and head. The patient reclines, and the points on each hand are first sterilized with alcohol, and then thin, disposable needles are inserted to a depth of approximately 3-5 mm until a characteristic &quot;twinge&quot; is felt by the patient, often accompanied by a slight twitching of the muscle between the thmb and hand. Most patients report a pleasurable &quot;tingling&quot; sensation and feeling of relaxation while the needles are in place. The needles are retained for 15-20 minutes while the patient rests, and then are removed.
88936
88937 In the clinical practice of acupuncturists, patients frequently report one or more of certain kinds of sensation that are associated with this treatment, sensations that are stronger than those that would be felt by a patient not suffering from a vascular headache: (1) Extreme sensitivity to pain at the points in the webs of the thumbs. (2) In bad headaches, a feeling of nausea that persists for roughly the same period as the stimulation being administered to the webs of the thumbs. (3) Simultaneous relief of the headache. (See ''Zhen Jiu Xue'', p. 177f et passim.)
88938
88939 The [[Cochrane Collaboration]], an international organization dedicated to [[evidence-based medicine]], concluded from [[peer-reviewed]] research that &quot;(o)verall, the existing evidence supports the value of acupuncture for the treatment of idiopathic headaches. However, the quality and amount of evidence are not fully convincing. There is an urgent need for well-planned, large-scale studies to assess the effectiveness and cost-effectiveness of acupuncture under real-life conditions.&quot; [http://www.cochrane.org/reviews/en/ab001218.html].
88940
88941 ==Indications and research==
88942
88943 In 1979, an interregional seminar in [[Beijing]] sponsored by [[World Health Organization]] drew up the following provisional list of diseases that lend themselves to acupuncture treatment. The list is based on clinical experience, and not necessarily on controlled clinical research: furthermore, the inclusion of specific diseases are not meant to indicate the extent of acupuncture's efficacy in treating them [http://www.aaom.org/default.asp?pagenumber=47494].
88944
88945
88946 :Upper Respiratory Tract
88947 ::* Acute sinusitis
88948 ::* Acute rhinitis
88949 ::* Common Cold
88950 ::* Acute tonsillitis
88951
88952 :Respiratory System
88953 ::* Acute bronchitis
88954 ::* Bronchial asthma (most effective in children and in patients without complicating diseases)
88955
88956 :Disorders of the Eye
88957
88958 ::* Acute conjunctivitis
88959 ::* Central retinitis
88960 ::* Myopia (in children)
88961 ::* Cataract (without complications)
88962
88963 :Disorders of the Mouth
88964 ::* Toothache, post-extraction pain
88965 ::* Gingivitis
88966 ::* Acute and chronic pharyogitis
88967
88968 :Gastro-intestinal Disorders
88969 ::* Spasms of esophagus and cardia
88970 ::* Hiccough
88971 ::* Gastroptosis
88972 ::* Acute and chronic gastritis
88973 ::* Gastric hyperacidity
88974 ::* Chronic duodenal ulcer (pain relief)
88975 ::* Acute duodenal ulcer (without complications)
88976 ::* Acute and chronic colitis
88977 ::* Acute bacillary dysentery
88978 ::* Constipation
88979 ::* Diarrhea
88980 ::* Paralytic ileus
88981
88982 :Neurological and Musculo-skeletal Disorders
88983 ::* Headache and migraine
88984 ::* Trigeminal neuralgia
88985 ::* Facial palsy (early stage, i.e., within three to six months)
88986 ::* Pareses following a stroke
88987 ::* Peripheral neuropathies
88988 ::* Sequelae of poliomyelitis (early stage, i.e., within six months)
88989 ::* Meniere's disease
88990 ::* Neurogenic bladder dysfunction
88991 ::* Nocturnal enuresis
88992 ::* Intercosral neuralgia
88993 ::* Cervicobrachial syndrome
88994 ::* &quot;Frozen shoulder,&quot;&quot;tennis elbow&quot;
88995 ::* Sciatica
88996 ::* Low back pain
88997 ::* Osteoarthritis
88998
88999 In [[1997]], the [[National Institutes of Health|NIH]] issued a [[Consensus (medical)|consensus statement]] on acupuncture that concluded that
89000 :there is sufficient evidence of acupuncture's value to expand its use into conventional medicine and to encourage further studies of its physiology and clinical value[http://consensus.nih.gov/1997/1997Acupuncture107html.htm].
89001
89002 The NIH consensus statement noted that
89003 : the data in support of acupuncture are as strong as those for many accepted Western medical therapies
89004 and added that
89005 :the incidence of adverse effects is substantially lower than that of many [[medication|drug]]s or other accepted medical procedures used for the same condition. For example, [[musculoskeletal]] conditions, such as [[fibromyalgia]], [[myofascial]] pain, and [[tennis elbow]]... are conditions for which acupuncture may be beneficial. These painful conditions are often treated with, among other things, [[Non-Steroidal Anti-Inflammatory drug|anti-inflammatory medication]]s (aspirin, ibuprofen, etc.) or with [[steroid]] injections. Both medical interventions have a potential for deleterious side effects but are still widely used and are considered acceptable treatments.
89006 Further,
89007 : there is clear evidence that needle acupuncture is efficacious for adult postoperative and [[chemotherapy]] nausea and vomiting and probably for the nausea of pregnancy... There is reasonable evidence of efficacy for postoperative dental pain... reasonable studies (although sometimes only single studies) showing relief of pain with acupuncture on diverse pain conditions such as menstrual cramps, tennis elbow, and fibromyalgia...
89008 However,
89009 : acupuncture does not demonstrate efficacy for cessation of smoking and may not be efficacious for some other conditions.
89010
89011 In [[1999]], clinical researchers reported that inserting the fine needles into specific body points triggers the production of [[endorphin]]s [http://www.abc.net.au/science/news/stories/s27924.htm].
89012
89013 In 2005, researchers at [[Hull York Medical School]] reported the effect of acupuncture on perception of pain, noting that acupuncture led to a decrease in activity of part of the [[brain]]'s [[limbic system]] that is responsible for the body's awareness of pain. [http://news.independent.co.uk/world/science_technology/article340079.ece]
89014
89015 The NIH consensus statement summarizes:
89016 :Acupuncture as a therapeutic intervention is widely practiced in the United States. While there have been many studies of its potential usefulness, many of these studies provide equivocal results because of design, sample size, and other factors. The issue is further complicated by inherent difficulties in the use of appropriate controls, such as placebos and sham acupuncture groups. However, promising results have emerged, for example, showing efficacy of acupuncture in adult postoperative and chemotherapy nausea and vomiting and in postoperative dental pain. There are other situations such as addiction, stroke rehabilitation, headache, menstrual cramps, tennis elbow, fibromyalgia, myofascial pain, osteoarthritis, low back pain, carpal tunnel syndrome, and asthma, in which acupuncture may be useful as an adjunct treatment or an acceptable alternative or be included in a comprehensive management program. Further research is likely to uncover additional areas where acupuncture interventions will be useful.
89017 * [http://nccam.nih.gov/health/acupuncture/ NCCAM research summaries on acupuncture]
89018
89019 ==Criticisms==
89020 One of the major criticisms of studies which purport to find acupuncture is anything more than a placebo is that most such studies are not properly conducted. They are not double blinded and are not randomised. However, since acupuncture is a procedure and not a pill, it is difficult if not impossible to design studies in which the person providing treatment is blinded as to the treatment being given. The same problem arises in double-blinding procedures used in biomedicine, including virtually all surgical procedures, dentistry, physical therapy, etc.
89021
89022 The [[Cochrane Collaboration]] reports [http://www.cochrane.org/cochrane/revabstr/ab003527.htm] &quot;(t)here is insufficient evidence to either support or refute the use of acupuncture (either needle or laser) in the treatment of lateral elbow pain.&quot; Oxford University reported [http://www.jr2.ox.ac.uk/bandolier/booth/alternat/AT008.html] &quot;There were no high quality trials of acupuncture for stroke that showed that it was beneficial.&quot; Using stricter criteria (e.g., double-blinding) than those used in formulating the NIH consensus statement, the [[Cochrane Collaboration]] evaluated studies on acupuncture's efficacy in treating a number of conditions, usually but not always finding evidence to be lacking or inconclusive [http://sun21.imbi.uni-freiburg.de/cc_bin/mno?q=acupuncture&amp;ul=http%3A%2F%2Fwww.cochrane.org%2F&amp;m=all].
89023
89024 For the following conditions, the [[Cochrane Collaboration]] reports there is insufficient evidence that acupuncture is beneficial:
89025
89026 [http://www.cochrane.org/Cochrane/revabstr/AB000009.htm giving up smoking]
89027
89028 [http://www.cochrane.org/reviews/en/ab000008.html chronic asthma]
89029
89030 [http://www.cochrane.org/cochrane/revabstr/AB002914.htm bell's palsy]
89031
89032 [http://www.cochrane.org/reviews/en/ab005319.html shoulder pain]
89033
89034 [http://www.cochrane.org/reviews/en/ab003317.html acute stroke]
89035
89036 [http://www.cochrane.org/reviews/en/ab003788.html rheumatoid arthritis]
89037
89038 [http://www.cochrane.org/reviews/en/ab004046.html depression]
89039
89040 [http://www.cochrane.org/reviews/en/ab001351.html low back pain]
89041
89042 [http://www.cochrane.org/reviews/en/ab001218.html ideopathic headache](although the review recommended more research be done)
89043
89044 [http://www.cochrane.org/reviews/en/ab002962.html induction of labour]
89045
89046 However the Cochrane Collaboration reported some cases where acupuncture might be better than a placebo. For example: [http://www.cochrane.org/reviews/en/ab003281.html &quot;P6 acupoint stimulation seems to reduce the risk of nausea but not vomiting after surgery.&quot;]
89047
89048 ==Potential risks==
89049 Some forms of acupuncture can be [[Invasive (medical)|invasive]], and therefore not without risk, although injuries are rare among patients treated by trained practitioners.
89050
89051 [[Hematoma]] may result from accidental puncture of any [[circulatory]] structure. [[Nerve]] injury can result from the accidental puncture of any nerve. [[Brain damage]] or [[stroke]] is possible with very deep needling at the base of the skull. Also rare but possible is [[pneumothorax]] from deep needling into the [[lung]], and [[kidney]] damage from deep needling in the low back. Needling over an occult sternal foramen (an undetectable hole in the breastbone which can occur in up to 10% of people) may result in a potentially fatal haemopericardium.
89052
89053 Certain acupuncture points have been shown to stimulate the production of adrenocorticotropic hormone (ACTH) and oxytocin; these points are contraindicated for use on pregnant women to avoid inducing abortion or harming the fetus.
89054
89055 Needles that are not properly sterilized can transfer diseases such as [[HIV]] and [[hepatitis]].
89056
89057 Sometimes, when treating pain or using acupuncture as an anesthetic, a mild electrical current is applied to the needles. This stimulates the nerve cells in the area of the needles so that they become depleted of the chemicals needed to transmit signals. Prolonged stimulation of nerve cells in this way can cause irreversible damage.
89058
89059 Severe injury from acupuncture is extremely rare, but not unheard-of.
89060
89061 The NIH consensus panel made the following statement about the risks associated with acupuncture: “Adverse side effects of acupuncture are extremely low and often lower than conventional treatments. In a UK study of almost 2000 practitioners covering over 34,000 treatments, there were no serious adverse events and only 43 minor adverse events [http://www.medical-acupuncture.co.uk/journal/2001(2)/093.shtml].
89062
89063 Most acupuncturists in the USA use sterile one-time-use needles. Some still use reusable needles and an autoclave but this practice is declining due to its cost, time and the possibility of failure in sterilizing the needles.
89064
89065 ==Acupuncture accreditation and controls==
89066 In many countries anyone can call himself an acupuncturist, there are no legal requirements with regard to training and education, nor are licensing boards regulated in any way, making it very hard to assess the actual value of licenses and training of acupuncturists.
89067
89068 In the USA the [http://www.nccaom.org/aboutus.htm National Certification Commission for Acupuncture and Oriental Medicine] tests practitioners to ensure they are knowledgeable about Chinese medicine. Many states require this test for licensing, but each state has its own laws and requirements.
89069
89070 The U.S. [[Food and Drug Administration]] (FDA) approved acupuncture needles for use by licensed practitioners in 1996. The FDA requires that sterile, nontoxic needles be used and that they be labeled for single use by qualified practitioners only.[http://nccam.nih.gov/health/acupuncture/#safe]
89071
89072 In the United Kingdom, British Acupuncture Council (BAcC) members observe the Code of Safe Practice which lays down stringent standards of hygiene and sterilisation for other equipment - members use single-use pre-sterilised disposable needles, which are permanently withdrawn from service after being used in treatment. Similar standards apply in most jurisdictions in the United States and Australia.
89073
89074 ==See also==
89075 * [[Acupressure]]
89076 * [[Acupoint therapy]]
89077 * [[Chin na]]
89078 * [[Chinese martial arts]]
89079 * [[Electroacupuncture]]
89080 * [[Intramuscular Stimulation]]
89081 * [[Qi]]
89082 * [[Qigong]]
89083 * [[T'ai Chi Ch'uan]]
89084 * [[Taoism]]
89085
89086 ==External links==
89087 * [http://www.acupuncture.com.au Acupuncture news, information, education, research and discussion] - A regularly updated Acupuncture website based in Australia.
89088 * [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed&amp;term=acupuncture&amp;submit=y&amp;cmd=search Search for “acupuncture” on PubMed] - US National Library of Medicine search engine with thousands of scientific articles on acupuncture
89089 * [http://forums.acupuncture.net.au/index.php Lively discussions about the issues facing Acupuncturists today] - Acupuncture Network Australasia (ANA) is a dynamic non profit organisation set up to promote and support Acupuncture and Traditional Chinese Medicine (TCM) in Australia, New Zealand and the South East Asia.
89090 * [http://www.healthdiaries.com/news/alternative/archives/acupuncture/index.html Acupuncture News]
89091 * [http://www.info-shanghai.com/en/Article/ShowArticle.asp?ArticleID=536]Topish Acupuncture and History on Traditional Chinese Medicine
89092 * [http://odp.od.nih.gov/consensus/cons/107/107_statement.htm NIH 1997 Consensus Statement on Acupuncture]
89093 * [http://www.who.int/medicines/library/trm/acupuncture/acupuncture_trials.pdf Acupuncture: Review And Analysis Of Reports On Controlled Clinical Trials, World Health Organization, 2002]
89094 * [http://5element.com.au/ Five Element Acupuncture Information Site] A site devoted to the 5 Element Style of Acupuncture
89095 * [http://chinese-school.netfirms.com/acupuncture-whatis.html Acupuncture, The Facts.] - An article.
89096 * [http://www.rotten.com/library/medicine/acupuncture/ Rotten Library] Article on Acupuncture
89097 * [http://www.itmonline.org/arts/acuintro.htm How acupuncture works explained]
89098 * [http://dmoz.org/Health/Alternative/Acupuncture_and_Chinese_Medicine Open Directory: Acupuncture and Chinese Medicine.] - A collection of links, mostly to pro-acupuncture sites.
89099 * [http://www.spine-health.com/topics/conserv/acu/acupuncture01.html Acupuncture: an ancient treatment for a current problem] - An article discussing acupuncture as a treatment for back and neck pain
89100 * [http://www.acumedico.com Acumedico forum, articles and discussion] - An Israeli acupuncture site.
89101 * [http://www.skepdic.com/acupunc.html The Skeptics dictionary on acupuncture]
89102 * [http://www.straightdope.com/columns/000324.html The Straight Dope on Acupuncture] - A critical site
89103 * [http://www.acuwatch.org/hx/fdac1973.shtml Acupuncture past and present (1973)]
89104 * [http://www.acuwatch.org/hx/taylor.shtml The uncharted wilderness of acupuncture (1973)]
89105 * [http://www.vet-task-force.com/Acuref1.htm A report from a physician who visited China after Nixon]
89106 *[http://www.acupuncture.com//education/theory/mechanismacu.htm The Mechanism of Acupuncture]
89107 * [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15510787 Effects of acupuncture on gastroparesis study]
89108 * [http://www.medical-acupuncture.co.uk/ British Medical Acupuncture Society]
89109 * [http://acupuncture-treatment-specialists.com Acupuncture Clinics &amp; Specialists] - Informational resource and nationwide directory of acupuncturists and clinics.
89110 * [http://www.famouschinese.com/jsp/medline/chinese_medicine_medline.html Chinese medicine, Chinese Herbal Medicine and Acupuncture Medline] Most recent research articles on Chinese medicine, Chinese Herbal Medicine and Acupuncture from Medline/Entrez PubMed
89111 *[http://www.acupuncture.com/testimonials/restonexp.htm New York Times article by James Reston, 1971]
89112
89113 ==Bibliography==
89114 * Acupuncture. NIH Consensus Statement Online [[3 November]] - [[5 November]] [1997]] 15(5):1-34.
89115 * Richardson PH, Vincent CA. The evaluation of therapeutic acupuncture: concepts and methods. ''Pain'' 24:1-13, 1986.
89116 * Richardson PH, Vincent CA. Acupuncture for the treatment of pain. ''Pain'' 24:1540, 1986.
89117 * Ter Riet G et al. The effectiveness of acupuncture. ''Huisarts Wet'' 32:170-175, 176-181, 308-312, 1989.
89118 * ''Zhen Jiu Xue''/ Tai-zhong Association of Chinese Medical Doctors, the Publishing Committee on Acupuncture, 1976. (Chinese characters for all of this to follow.)
89119 * B. Brinkhaus, E. Hahn, C.H. Hempen, J. Hummelsberger, S. Joos, R. Kohnen, R. Nogel, D. Schuppan. (2004). Acupuncture and Chinese Herbal Medicine in the Treatment of Patients with Seasonal Allergic Rhinitis: a randomized-controlled clinical trial. Allergy 2004:59 953-960.
89120 * B. Brinkhaus, J. Hummelsberger, S. Jena, K. Linde, D. Melchart, A. Streng, S. Wagenpfeil, H.U. Walther, S.N. Willich, C. Witt. Acupuncture in Patients with Osteoarthritis of the Knee: A Randomised Trial. The Lancet, Vol 366, [[July 9]] [[2005]].
89121 * Edwards, J. Acupuncture and Heart Health. Access, February 2002.
89122 * trans by Wolfe, H.L. Chronic Fatigue Syndrome, Acupuncture and its related modalities. Townsend Letter for Doctors and Patients, August/September 2005. (translation of article from issue 8, 2001 Zhong Guo Zhen Jiu (Chinese Acupuncture and Moxibustion).
89123 * Abusaisha, B.B., Constanzi, J.B., Boulton, A.J.M. Acupuncture for the treatment of chronic painful diabetic neuropathy: a long term study. Diabetes Res Clin Pract 39:115-121, 1998.
89124 * Bosia, I., Deluze, C., Zirbs, A. Electroacupuncture in fibromyalgia: results of a controlled trial. BMJ 1992 [[21 November]]: 305 (6864): 1249-52
89125 * Chen, J.D.Z., Ouyang, H. Review article: therapeutic roles of acupuncture in functional gastrointestinal disorders. Aliment Pharmacol Therapy 2004; 20:831-841.
89126 * Helms, J.M. Acupuncture for the Treatment of Primary Dysmenorrhea. Obstet Gynecology 1987; 69:51-56
89127 * Altshul, Sara. “Incontinence: Finally, Relief That Works.” Prevention December 2005: 33. Academic Search Premier. EBSCO. [[30 January]] [[2006]] &lt;http://search.epnet.com/&gt;.
89128 * Cademartori, Lorraine. “Facing the Point.” Forbes October 2005: 85. Academic Search Premier. EBSCO. [[30 January]] [[2006]] &lt;http://search.epnet.com/&gt;.
89129 * “A Few Commonly Used Acupunture Points.” Net Firms. [[2 February]] [[2006]] &lt;http://chinese-school.netfirms.com/acupunture-points.html&gt;.
89130 * “History of Acupuncture.” Net Firms. [[2 February]] [[2006]] &lt;http://chinese-school.netfirms.com/history-of-acupuncture.html&gt;.
89131 * “History of Acupuncture in China.” Acupuncture Care. [[2 February]] [[2006]] &lt;http://www.acupuncturecare.com/acupunct.htm&gt;.
89132 * Howard, Cori. “An Ancient Helper for Making a Baby.” Maclean’s [[23 January]] [[2006]]: 40. Academic Search Premier. EBSCO. [[30 January]] [[2006]] &lt;http://search.epnet.com/&gt;.
89133 * “Is Acupuncture Safe?” Net Firms. [[2 February]] [[2006]] &lt;http://chinese-school.netfirms.com/acupuncture-safety.html&gt;.
89134 * “What Is Acupuncture?” Net Firms. [[2 February]] [[2006]] &lt;http://chinese-school.netfirms.com/acupuncture-whatis.html&gt;.
89135
89136 {{commons|Acupuncture}}
89137
89138 [[Category:Acupuncture]]
89139 [[Category:Alternative medicine]]
89140 [[Category:Manipulative therapy]]
89141 [[Category:Traditional Chinese medicine]]
89142
89143 [[da:Akupunktur]]
89144 [[de:Akupunktur]]
89145 [[eo:Akupunkturo]]
89146 [[es:Acupuntura]]
89147 [[fa:ØˇØ¨ ØŗŲˆØ˛Ų†ÛŒ]]
89148 [[fr:Acupuncture]]
89149 [[he:דיקור סיני]]
89150 [[it:Agopuntura]]
89151 [[ja:éŧ]]
89152 [[lt:AkupunktÅĢra]]
89153 [[nl:Acupunctuur]]
89154 [[pl:Akupunktura]]
89155 [[ru:АĐēŅƒĐŋŅƒĐŊĐēŅ‚ŅƒŅ€Đ°]]
89156 [[pt:Acupuntura]]
89157 [[sv:Akupunktur]]
89158 [[vi:ChÃĸm cáģŠu]]
89159 [[zh:针į¸]]
89160 [[zh:针į¸]]</text>
89161 </revision>
89162 </page>
89163 <page>
89164 <title>Adder</title>
89165 <id>1538</id>
89166 <revision>
89167 <id>38255880</id>
89168 <timestamp>2006-02-05T04:07:58Z</timestamp>
89169 <contributor>
89170 <username>Joshbaumgartner</username>
89171 <id>124878</id>
89172 </contributor>
89173 <text xml:space="preserve">:''This page refers to the type of snake. For an electronic adder, see [[Adder (electronics)]]; for the Russian air-to-air missile that goes by the [[NATO reporting name]] &quot;AA-12 Adder,&quot; see [[Vympel R-77]].''
89174
89175 '''Adder''' is another name for the [[viper]]. Most snakes called '''adders''' belong to the family Viperidae, more precisely to subfamily viperinae (by contrast to [[pit vipers]]). An exception is the Australian [[Death adder]], which despite its name is not a viperid at all, but rather a member of the cobra family, Elapidae.
89176 {|
89177 |-
89178 ! align=left | Common Name&amp;nbsp;&amp;nbsp;
89179 &lt;th align=left&gt;Technical Name
89180 ! align=left | Geographic Range
89181 |-
89182 | [[Crossed Viper|European Adder]] or Crossed Viper||''Vipera berus''
89183 |Europe and Asia
89184 |-
89185 | [[Death Adder]] || ''Acanthophis antarcticus''
89186 | Australia, New Guinea
89187 |-
89188 | [[Dwarf Sand Adder]] || ''Bitis peringueyi''
89189 | Namibia, Angola
89190 |-
89191 | [[Horned Adder]] || ''Bitis caudalis''
89192 | South Africa, Zimbabwe, Angola, Namibia
89193 |-
89194 | [[Many-Horned Adder]] || ''Bitis cornuta cornuta''
89195 | Namibia, South Africa
89196 |-
89197 | [[Namaqua Dwarf Adder]]&amp;nbsp; || ''Bitis schneideri''
89198 | SW South Africa
89199 |-
89200 | [[Mountain Adder]] || ''Bitis atropos atropos''
89201 | Zimbabwe, South Africa
89202 |-
89203 | [[Puff Adder]] || ''Bitis arietans arietans''
89204 | Africa, Yemen
89205 |-
89206 | [[Rhombic Night Adder]] || ''Causus rhombeatus''
89207 | Africa
89208 |}
89209
89210 ''[[Etymology]]'': The word was ''nÃĻdre'' in [[Old English]], which developed into ''nadder'' or ''naddre''; in the 14th century ''a nadder'' was, like ''a napron'', reinterpreted as ''an adder''. It appears with the generic meaning of [[snake|serpent]] in the older forms of many Germanic languages, including [[Old High German]] ''natra'' and [[Gothic language|Gothic]] ''nadrs''. It is thus used in the Old English version of the [[Christianity|Christian]] [[Scriptures]] for the devil, the ''serpent'' of [[Genesis]]. The Old English word ''nÃĻdre'' is assumed to derive in turn from the [[Old Norse]] word [[eitr]], synonymous with [[snake poison]].
89211
89212 ==References==
89213 *{{1911}}
89214
89215 [[Category:Vipers]]</text>
89216 </revision>
89217 </page>
89218 <page>
89219 <title>Adirondacks</title>
89220 <id>1539</id>
89221 <revision>
89222 <id>15900007</id>
89223 <timestamp>2002-09-13T02:29:50Z</timestamp>
89224 <contributor>
89225 <username>Dachshund</username>
89226 <id>482</id>
89227 </contributor>
89228 <comment>-&gt;Adirondack Mountains</comment>
89229 <text xml:space="preserve">#REDIRECT [[Adirondack Mountains]]</text>
89230 </revision>
89231 </page>
89232 <page>
89233 <title>Aeneas</title>
89234 <id>1540</id>
89235 <revision>
89236 <id>41834762</id>
89237 <timestamp>2006-03-02T01:22:02Z</timestamp>
89238 <contributor>
89239 <ip>216.100.89.65</ip>
89240 </contributor>
89241 <comment>/* Legend */</comment>
89242 <text xml:space="preserve">: ''This article is about the Trojan warrior. For the sportsman, see [[Aeneas Williams]].''
89243
89244 [[Image:BarocciAeneas.jpg|thumb|right|350px|''Aeneas flees burning Troy'', [[Federico Barocci]], [[1598]].]]
89245
89246 '''Aeneas''' ([[Greek language|Greek]]: ΑιÎŊÎĩÎ¯ÎąĪ‚, ''Aineías'') was a [[Troy|Trojan]] hero, the son of prince [[Anchises]] and the goddess [[Aphrodite]] ([[Venus (mythology)|Venus]] in Roman sources). He was also the cousin of King [[Priam]] of Troy. The journey of Aeneas from Troy, which led to the founding of the city that would one day become [[Rome]], is recounted in [[Virgil]]'s ''[[Aeneid]]''. He is considered an important figure in [[Greece|Greek]] and [[Rome|Roman]] legend and history. Aeneas is a character in [[Homer]]'s ''[[Iliad]]'' and [[Shakespeare]]'s ''[[Troilus and Cressida]]''.
89247
89248 == Legend ==
89249 In the ''Iliad'', Aeneas is the leader of the [[Dardan]]s (allies of the Trojans), and a principal lieutenant of [[Hector]], son of the Trojan king [[Priam]]. In the poem, Aeneas's mother [[Aphrodite]] frequently comes to his aid on the battlefield: he is also a favorite of [[Apollo]]. Even [[Poseidon]], who normally favors the Greeks, comes to Aeneas's rescue when the latter falls under the assault of [[Achilles]], noting that Aeneas, though from a junior branch of the royal family, is destined to become king of the Trojan people.
89250
89251 When Troy was [[looting|sacked]] by the Greeks, Aeneas gathered a group, collectively known as the [[Aeneads]], traveled to [[Italy]] and became a progenitor of the [[Roman Kingdom|Romans]]. The Aeneads included his trumpeter [[Misenus]], his father [[Anchises]], his friends [[Achates]], [[Sergestus]] and [[Acmon]], the healer [[Iapyx]], his son [[Ascanius]], and their guide [[Mimas]]. He carried with him the [[Lares]] and [[Penates]], the statues of the household gods of Troy, and transplanted them to [[Italy]].
89252
89253 [[Image:Pierre-Narcisse GuÊrin 001.jpg|thumb|left|200px|Aeneas tells Dido about the fall of Troy, by Pierre-Narcisse GuÊrin.]]
89254
89255 During his journey, Aeneas and his fleet made landfall at [[Carthage]]. It is at this point that the poem of the ''Aeneid'' begins. Aeneas had a brief affair with the [[Carthaginian]] queen Elissa, also known as [[Dido]], who proposed that the Trojans settle in her land and that she and Aeneas reign jointly over their peoples. However, the messenger god [[Mercury (mythology)|Mercury]] was sent by [[Jupiter]] and Venus to remind Aeneas of his journey and his purpose, thus compelling him to leave secretly and continue on his way. When Dido learned of this, she ordered a funeral pyre to be constructed for herself; and standing on it, she uttered a famous curse that forever would pit Carthage against the Trojans. She then committed suicide by stabbing herself in the chest. When Aeneas later traveled to [[Hades]], he called to her ghost but she neither spoke or acknowledged him.
89256
89257 The company stopped on the island of [[Sicily]] during the course of their journey. There Aeneas was welcomed by [[Acestes]], king of the region and son of the river [[Crinisus]] by a [[Dardania]]n woman. When the ship left, [[Achaemenides]], one of [[Odysseus]]' crew who had been left behind, traveled with them.
89258
89259 Soon after arriving in Italy, Aeneas made war against the city of [[Falerii]]. [[Latinus]], king of the [[Latin]]s, welcomed Aeneas's army of exiled [[Trojan War|Trojans]] and let them reorganize their life in [[Latium]]. His daughter [[Lavinia]] had been promised to [[Turnus]], king of the [[Rutuli]], but Latinus received a prophecy that Lavinia would be betrothed to one from another land &amp;mdash; namely, Aeneas. Latinus heeded the prophecy, and Turnus consequently declared war on Aeneas at the urging of [[Juno_(mythology)|Juno]], who was aligned with King [[Tarchon]] of [[Etruscan civilization|the Etruscans]] and Queen [[Amata]] of the [[Latins]]. Aeneas' forces prevailed, and Turnus was killed. Aeneas founded the of city [[Lavinium]], named after his wife. He later welcomed Dido's sister, [[Anna Perenna]], who then committed suicide after learning of Lavinia's jealousy.
89260
89261 After his death, his mother, [[Aphrodite]] asked [[Zeus]] to make her son immortal. [[Zeus]] agreed and the river god [[Numicius]] cleansed Aeneas of all his mortal parts and [[Aphrodite]] anointed him with Ambrosia and Necar, making him a god. Aeneas was recognized as the god [[Indiges]]. Inspired by the work of [[James Frazer]], some have posited that Aeneas was originally a [[life-death-rebirth]] deity.
89262
89263 == Family and legendary descendants ==
89264 Aeneas had an extensive [[Aeneas's family tree|family tree]]. Aeneas' [[wet-nurse]] was named [[Caieta]]. He was the father of [[Ascanius]] with [[Creusa]], and of [[Silvius]] with Lavinia. [[Ascanius]], the son of Aeneas, also known as [[Iulus]] (or Julius), founded [[Alba Longa]] and was the first in a long series of kings.
89265
89266 According to the mythology outlined by Virgil in the ''Aeneid,'' [[Romulus and Remus]] were both descendants of Aeneas through their mother, and thus Aeneas was responsible for founding the Roman people. Some early sources call him their father or grandfather [http://www.4literature.net/Plutarch/Romulus/], but, considering the commonly accepted dates of the fall of Troy ([[1184 BC]]) and the founding of [[Rome]] ([[753 BC]]), this seems unlikely.
89267
89268 The Julian family ([[Gens Julia]]) of Rome, whose most famous member was [[Julius Caesar]], traced their lineage to Aeneas's son Ascanius and, in turn, to the goddess Venus.
89269
89270 The legendary [[King of the Britons|kings of Britain]] also trace their family through a grandson of Aeneas, [[Brutus of Britain|Brutus]].
89271
89272 See:[[list of the descendants of Aeneas|list of direct descendants]].
89273
89274 ==Classical sources==
89275 {{Commonscat|Aeneas}}
89276 * [[Homer]], ''[[Iliad]]'' II, 819-21; V, 217-575; XIII, 455-544; XX, 75-352;
89277 * [[Apollodorus]], ''[[Bibliotheke]]'' III, xii, 2;
89278 * [[Apollodorus]], ''[[Epitome]]'' III, 32-IV, 2; V, 21;
89279 * [[Virgil]], ''[[Aeneid]];''
89280 * [[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'' XIV, 581-608;
89281 * [[Ovid]], ''[[Heroides]],'' VII.
89282
89283 {{Roman myth (mortal)}}
89284
89285 [[Category: Trojans]]
89286 [[Category:People who fought in the Trojan War]]
89287 [[Category:Roman mythology]]
89288
89289 [[de:Aeneas]]
89290 [[et:Aineias]]
89291 [[es:Eneas]]
89292 [[eo:Eneo]]
89293 [[fr:ÉnÊe]]
89294 [[ko:ė•„ė´ë„¤ė•„ėŠ¤]]
89295 [[it:Enea]]
89296 [[he:איניאס]]
89297 [[la:Aeneas]]
89298 [[lt:Enėjas]]
89299 [[li:Aeneas]]
89300 [[nl:Aeneas]]
89301 [[ja:ã‚ĸイネイã‚ĸã‚š]]
89302 [[pl:Eneasz (mitologia)]]
89303 [[pt:EnÊas]]
89304 [[ru:Đ­ĐŊĐĩĐš]]
89305 [[fi:Aineias]]
89306 [[sv:Aeneas]]
89307 [[tl:Aineías]]
89308 [[zh:äēžå°ŧ斯]]</text>
89309 </revision>
89310 </page>
89311 <page>
89312 <title>April 13</title>
89313 <id>1541</id>
89314 <revision>
89315 <id>41867404</id>
89316 <timestamp>2006-03-02T06:14:44Z</timestamp>
89317 <contributor>
89318 <username>Rklawton</username>
89319 <id>754622</id>
89320 </contributor>
89321 <comment>formatting</comment>
89322 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
89323 {| style=&quot;float:right;&quot;
89324 |-
89325 |{{AprilCalendar}}
89326 |-
89327 |{{ThisDateInRecentYears|Month=April|Day=13}}
89328 |}
89329
89330 '''13&amp;nbsp;April''' is the 103rd [[day]] of the year in the [[Gregorian calendar]] (104th in [[leap year]]s). There are 262 days remaining. It is also the [[Ides]] of [[April]].
89331 ==Events==
89332 *[[1055]] - [[Pope Victor II|Victor II]] is consecrated [[pope]]
89333 *[[1111]] - [[Henry V, Holy Roman Emperor|Henry V]] is crowned [[Holy Roman Emperor]]
89334 *[[1180]] - [[Frederick I, Holy Roman Emperor|Frederick Barbarossa]] issues the [[Gelnhausen Charter]]
89335 *[[1204]] - The [[Fourth Crusade]] sacks [[Constantinople]]
89336 *[[1598]] - [[Henry IV of France]] issues the [[Edict of Nantes]], allowing [[freedom of religion]] to the [[Huguenot]]s
89337 *[[1742]] - The world premiere of George Frideric Handel's oratorio Messiah in Dublin, Ireland.
89338 *[[1829]] - The [[British Parliament]] grants [[freedom of religion]] to [[Roman Catholicism|Roman Catholics]]
89339 *[[1849]] - [[Hungary]] becomes a republic
89340 *[[1861]] - [[American Civil War]]: [[Fort Sumter]] surrenders
89341 *[[1873]] - [[Colfax Massacre]]
89342 *[[1883]] - [[Alferd Packer]] is convicted of [[murder]]
89343 *[[1902]] - [[James C. Penney]] opens his first store in [[Kemmerer, Wyoming]]
89344 *[[1919]] - The Establishment of the [[Provisional Government of the Republic of Korea]]
89345 *[[1919]] - [[Amritsar massacre]]: [[United Kingdom|British]] and [[Gurkha]] troops [[massacre]] at least 379 unarmed demonstrators in [[Amritsar]], [[India]]
89346 *[[1921]] - Foundation of the [[Spanish Communist Workers' Party (1921)|Spanish Communist Workers' Party]].
89347 *[[1939]] - In [[India]], the [[Hindustani Lal Sena]] (Indian Red Army) is formed and vows to engage in armed struggle against the [[UK|British]].
89348 *[[1941]] - Pact of [[neutrality]] between the [[Soviet Union|USSR]] and [[Japan]] is signed
89349 *[[1943]] - [[World War II]]: The discovery of a [[mass grave]] of [[Poland|Polish]] [[prisoner of war|prisoners-of-war]] [[execution (legal)| executed]] by [[Soviet Union|Soviet]] forces in the [[Katyn Massacre|Katy&amp;#324; Forest Massacre]] was announced in [[Germany]], driving a wedge between the Western [[Allies]], the [[Polish government in exile|Polish government-in-exile]] in [[London]], and the Soviet Union.
89350 *[[1943]] - The [[Jefferson Memorial]] is dedicated in [[Washington, DC]], on the 200th anniversary of [[Thomas Jefferson]]'s birth.
89351 *[[1945]] - German troops massacre more than 1000 political and military prisoners in [[Gardelegen (war crime)|Gardelegen]] Germany. The atrocity is discovered two days later by American forces.
89352 *[[1970]] - The [[oxygen]] tank aboard ''[[Apollo 13]]'' explodes, putting the crew into deadly peril. The explosion occurred on April 14th in several time zones.
89353 *[[1972]] - The [[Universal Postal Union]] decides to recognize the [[People's Republic of China]] as the only legitimate Chinese representative, effectively expelling the [[Republic of China]] administering [[Taiwan]].
89354 *[[1974]] - [[Western Union]] (in cooperation with [[NASA]] and [[Hughes Aircraft]]) launches the [[United States of America|USA]]'s first commercial [[Geosynchronous satellite|geosynchronous]] [[communications satellite]], [[Westar 1]].
89355 *[[1975]] - An attack by [[Phalangist]]s on a [[Palestinian]] bus in Ain El Remmeneh, [[Lebanon]] marks the beginning of a 15 year civil war.
89356 *[[1983]] - [[Harold Washington]] is elected as the first African-American mayor in [[Chicago, Illinois|Chicago]]'s history
89357 *[[1984]] - [[Pete Rose]] becomes the first player in [[National League]] history to collect 4,000 hits
89358 *[[1985]] - [[Enver Hoxha]] is succeeded by [[Ramiz Alia]] as the leader of [[Albania]]
89359 *[[1986]] - [[Jack Nicklaus]] wins his sixth [[The Masters Tournament|Masters Tournament]]
89360 *[[1987]] - [[Portugal]] and [[People's Republic of China|China]] sign an agreement in which [[Macau]] would be returned to China in [[1999]]
89361 *[[1990]] - The [[Soviet Union]] admits to committing the [[Katyn Massacre]]
89362 *[[1993]] - [[Baseball]]: [[Lee Smith (baseball player)|Lee Smith]] passes [[Jeff Reardon]] for first on the all-time [[save (sport)|save]]s list with his 358th save in a 9-7 win over the [[Los Angeles Dodgers]]
89363 *[[1997]] - [[Tiger Woods]] becomes the youngest [[golf]]er to win golf's [[The Masters Tournament|Masters Tournament]]
89364 *[[1998]] - [[WWE]] [[Monday Night Raw]] overtakes [[WCW Monday Nitro]] in the ratings for the first time in nearly two years, thanks to a [[Steve Austin]] vs [[Vince McMahon]] main event. This started a boost for WWE and decline for WCW, culminating in the WWE takeover of WCW in 2001.
89365 *[[2000]] - [[Tazz]] wins ECW world title, first ever match between a [[WCW]] contracted wrestler and a [[WWE]] contracted wrestler.
89366 *[[2003]] - The body of [[Laci Peterson]] is found in [[California]].
89367 *[[2003]] - [[Mike Weir]] becomes first Canadian and first [[leftie]] to win the golf [[The Masters Tournament|Masters Tournament]]
89368
89369 ==Births==
89370 *[[1506]] - [[Peter Faber]], French Jesuit theologian (d. [[1546]])
89371 *[[1519]] - [[Catherine de Medici]], queen of [[Henry II of France]] (d. [[1589]])
89372 *[[1570]] - [[Guy Fawkes]], English conspirator (d. [[1606]])
89373 *[[1584]] - [[Albert VI of Bavaria]] (d. [[1666]])
89374 *[[1593]] - [[Thomas Wentworth, 1st Earl of Strafford]], English statesman (d. [[1641]])
89375 *[[1618]] - [[Roger de Rabutin, Comte de Bussy]], French writer (d. [[1693]])
89376 *[[1648]] - [[Jeanne Marie Bouvier de la Motte Guyon]], French (d. [[1717]])
89377 *[[1713]] - [[Frederick North, 2nd Earl of Guilford|Frederick (Lord) North]], [[Prime Minister of the United Kingdom]] (d. [[1792]])
89378 *[[1715]] - [[John Hanson]], President of the United States in Congress Assembled (d. [[1783]])
89379 *[[1729]] - [[Thomas Percy (bishop)|Thomas Percy]], Bishop of Dromore and magazine editor (d. [[1811]])
89380 *[[1735]] - [[Isaac Low]], New York delegate to the Continental Congress (d. [[1791]])
89381 *[[1743]] - [[Thomas Jefferson]], 3rd [[President of the United States]] (d. [[1826]])
89382 *[[1747]] - [[Louis Philip II, Duke of OrlÊans]] (d. [[1793]])
89383 *[[1764]] - [[Laurent, Marquis de Gouvion Saint-Cyr]], French marshal (d. [[1830]])
89384 *[[1769]] - [[Thomas Lawrence]], English painter (d. [[1830]])
89385 *[[1771]] - [[Richard Trevithick]], English engineer and inventor (d. [[1833]])
89386 *[[1780]] - [[Alexander Mitchell]], Irish engineer (d. [[1868]])
89387 *[[1784]] - [[Friedrich Graf von Wrangel]], Prussian field marshal (d. [[1877]])
89388 *[[1787]] - [[John Robertson (U.S. congressman)|John Robertson]], U.S. congressman (d. [[1873]])
89389 *[[1802]] - [[Leopold Fitzinger]], Austrian zoologist (d. [[1884]])
89390 *[[1808]] - [[Antonio Meucci]], Italian inventor (d. [[1896]])
89391 *[[1825]] - [[Thomas D'Arcy McGee]], Canadian journalist and politician (d. [[1868]])
89392 *[[1828]] - [[Joseph Barber Lightfoot]], English theologian and Bishop of Durham (d. [[1889]])
89393 *[[1832]] - [[Juan Montalvo]], Ecuadoran author (d. [[1889]])
89394 *[[1841]] - [[Louis-Ernest Barrias]], French sculptor (d. [[1905]])
89395 *[[1850]] - [[Arthur Matthew Weld Downing]], British astronomer (d. [[1917]])
89396 *[[1852]] - [[F.W. Woolworth]], American businessman (d. [[1919]])
89397 *[[1860]] - [[James Ensor]], Belgian painter (d. [[1949]])
89398 *[[1866]] - [[Butch Cassidy]], American outlaw (d. [[1908]])
89399 *[[1872]] - [[Alexander Roda Roda]], Austrian writer (d. [[1945]])
89400 *[[1873]] - [[John W. Davis]], American politician (d. [[1955]])
89401 *[[1875]] - [[Ray Lyman Wilbur]], U.S. Secretary of the Interior (d. [[1949]])
89402 *[[1880]] - [[Charles Christie]], Canadian film studio owner (d. [[1955]])
89403 *[[1881]] - [[Ludwig Binswanger]], Swiss psychiatrist (d. [[1966]])
89404 *[[1885]] - [[Georg LukÃĄcs]], Hungarian-born philosopher and literary critic (d. [[1971]])
89405 *[[1887]] - [[Gordon S. Fahrni]], Canadian physician and President of the Canadian Medical Association (d. [[1995]])
89406 *[[1889]] - [[Herbert Osborne Yardley]], American cryptographer (d. [[1958]])
89407 *[[1890]] - [[Frank Murphy]], American public servant (d. [[1949]])
89408 *[[1891]] - [[Nella Larsen]], African-American novelist (d. [[1964]])
89409 *[[1892]] - [[Arthur Travers Harris|Arthur Travers 'Bomber' Harris]], British Air Force commander in World War II (d. [[1984]])
89410 *1892 - Sir [[Robert Watson-Watt|Robert Alexander Watson-Watt]], Scottish inventor (d. [[1973]])
89411 *[[1894]] - [[Arthur Fadden]], thirteenth [[Prime Minister of Australia]] (d. [[1973]])
89412 *[[1897]] - [[Werner Voss]], German World War I pilot (d. [[1917]])
89413 *[[1900]] - [[Pierre Molinier]], French painter and photographer (d. [[1976]])
89414 *[[1901]] - [[Jacques Lacan]], French psychoanalyst and semanticist (d. [[1981]])
89415 *[[1902]] - [[Philippe de Rothschild]], French race car driver and wine grower (d. [[1988]])
89416 *[[1904]] - Sir [[Sir David Robinson|David Robinson]], British philanthropist and entrepreneur (d. [[1987]])
89417 *[[1906]] - [[Samuel Beckett]], Irish writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1989]])
89418 *[[1907]] - [[Harold Stassen]], American Presidential candidate (d. [[2001]])
89419 *[[1909]] - [[Stanislaw Marcin Ulam]], Polish mathematician (d. [[1984]])
89420 *1909 - [[Eudora Welty]], American writer (d. [[2001]])
89421 *[[1911]] - [[Ico Hitrec]], Croatian footballer (d.[[1946]])
89422 *[[1919]] - [[Roland Gaucher]], French journalist
89423 *1919 - [[Howard Keel]], American actor, singer, and president of the Screen Actors Guild (d. [[2004]])
89424 *1919 - [[Madalyn Murray O'Hair]], American atheist (disappeared [[1995]])
89425 *[[1920]] - [[Roberto Calvi]], Italian banker (d. [[1982]])
89426 *1920 - [[Claude Cheysson]], French politician
89427 *1920 - [[Liam Cosgrave]], fifth [[Taoiseach]] of the [[Republic of Ireland]]
89428 *1920 - [[John LaPorta]], American musician (d. [[2004]])
89429 *[[1922]] - [[John Braine]], British novelist (d. [[1986]])
89430 *1922 - [[Julius Nyerere]], Tanzanian politician (d. [[1999]])
89431 *[[1923]] - [[Don Adams]], American actor and comedian (d. [[2005]])
89432 *[[1924]] - [[Jack Chick]], American evangelist
89433 *1924 - [[Stanley Donen]], American film director
89434 *[[1926]] - [[John Spencer-Churchill, 11th Duke of Marlborough]]
89435 *[[1928]] - [[Alan Clark]], English politician (d. [[1999]])
89436 *[[1931]] - [[Dan Gurney]], American race car driver
89437 *[[1932]] - [[Orlando Letelier]], Chilean politician (d. [[1976]])
89438 *[[1933]] - [[Ben Nighthorse Campbell]], U.S. Senator
89439 *[[1935]] - [[Lyle Waggoner]], American actor
89440 *[[1937]] - [[Edward Fox (actor)|Edward Fox]], English actor
89441 *1937 - [[Lanford Wilson]], American playwright
89442 *[[1939]] - [[Seamus Heaney]], Irish writer, [[Nobel Prize in Literature|Nobel Prize]] laureate
89443 *1939 - [[Paul Sorvino]], American actor
89444 *[[1941]] - [[Michael Stuart Brown]], American geneticist, recipient of the [[Nobel Prize in Physiology or Medicine]]
89445 *[[1943]] - [[Bill Conti]], American musician
89446 *[[1944]] - [[Jack Casady]], American musician ([[Jefferson Airplane]])
89447 *1944 - [[Susan Davis]], American politician
89448 *[[1945]] - [[Tony Dow]], American actor
89449 *1945 - [[Bob Kalsu]], American football player (d. [[1970]])
89450 *[[1946]] - [[Al Green (musician)|Al Green]], American singer and pastor
89451 *[[1948]] - [[Sue Doughty]], British politician
89452 *[[1949]] - [[Frank Doran]], Scottish politician
89453 *1949 - [[Christopher Hitchens]], English-born journalist, critic, and author
89454 *[[1950]] - [[Terry Lester]], American actor (d. [[2003]])
89455 *1950 - [[Ron Perlman]], American actor
89456 *1950 - [[William Sadler]], American actor
89457 *[[1951]] - [[Peabo Bryson]], American singer
89458 *1951 - [[Peter Davison]], English actor
89459 *[[1951]] - [[Max Weinberg]], American drummer
89460 *[[1952]] - [[Ron Dittemore]], American space administrator
89461 *1952 - [[David Drew]], British politician
89462 *[[1953]] - [[Stephen Byers]], British politician
89463 *[[1954]] - [[Olsen Brothers|Niels Olsen]], Danish singer and [[Eurovision Song Contest]] winner
89464 *[[1955]] - [[Ole von Beust]], Mayor of Hamburg
89465 *1955 - [[Lupe Pintor]], Mexican boxer
89466 *[[1956]] - [[Peter 'Possum' Bourne]], Australian race car driver (d. [[2003]])
89467 *1956 - [[Alison Wheeler]], British activist
89468 *[[1957]] - [[Saundra Santiago]], American actress
89469 *[[1960]] - [[Rudi VÃļller]], German football coach
89470 *[[1962]] - [[Hillel Slovak]], Israeli-born guitarist ([[Red Hot Chili Peppers]]) (d. [[1988]])
89471 *1962 - [[Jennifer Rubin]], American actress
89472 *[[1963]] - [[Garry Kasparov]], Russian chess player
89473 *[[1964]] - [[Caroline Rhea]], Canadian actress
89474 *[[1970]] - [[Rebecca Cummings]], American porn star
89475 *1970 - [[Rick Schroder]], American actor
89476 *1970 - [[Gerry Creaney]], Scottish footballer
89477 *[[1971]] - [[Bo Outlaw]], American basketball player
89478 *[[1972]] - [[Mariusz Czerkawski]], Polish hockey player
89479 *1972 - [[Aaron Lewis]], American singer
89480 *[[1974]] - [[Sergei Gonchar]], Russian hockey player
89481 *[[1975]] - [[Lou Bega]], German-born musician and artist
89482 *[[1976]] - [[Jonathan Brandis]], American actor (d. [[2003]])
89483 *1976 - [[Patrick Elias]], Czech hockey player
89484 *[[1978]] - [[Arron Asham]], Canadian hockey player
89485 *[[1979]] - [[Baron Davis]], American basketball player
89486 *[[1980]] - [[Jana Cova]], Czech [[pornographic actress]]
89487 *1980 - [[Quentin Richardson]], American basketball player
89488 *[[1983]] - [[Schalk Burger]], South African rugby player
89489
89490 ==Deaths==
89491 *[[799]] - [[Paul the Deacon]], Italian monk and chronicler
89492 *[[814]] - [[Krum]], khan of Bulgaria
89493 *[[1093]] - Prince [[Vsevolod I of Kiev]] (b. [[1093]])
89494 *[[1279]] - [[Boleslaus the Pious]], Polish duke
89495 *[[1605]] - [[Boris Godunov]], Tsar of Russia
89496 *[[1635]] - [[Fahkr-al-Din II]], Druze prince of Lebanon (executed)
89497 *[[1638]] - [[Henri, duc de Rohan]], French Huguenot leader (b. [[1579]])
89498 *[[1641]] - [[Richard Montagu]], English clergyman (b. [[1577]])
89499 *[[1695]] - [[Jean de la Fontaine]], French author (b. [[1621]])
89500 *[[1722]] - [[Charles Leslie]], Irish Anglican theologian (b. [[1650]])
89501 *[[1793]] - [[Pierre Gaspard Chaumette]], French revolutionary (b. [[1763]])
89502 *[[1794]] - [[Nicolas Chamfort]], French writer (b. [[1741]])
89503 *[[1826]] - [[Franz Danzi]], German composer (b. [[1763]])
89504 *[[1853]] - [[Leopold Gmelin]], German chemist (b. [[1788]])
89505 *[[1853]] - [[James Iredell, Jr.]], Governor of North Carolina 1b. [[1788]])
89506 *[[1855]] - [[Henry De la Beche]], English geologist (b. [[1796]])
89507 *[[1868]] - [[Tewodros II]], [[Emperor of Ethiopia]] (b. [[1818]])
89508 *[[1880]] - [[Robert Fortune]], Scottish botanist (b. [[1813]])
89509 *[[1882]] - [[Bruno Bauer]], German theologian (b. [[1809]])
89510 *[[1909]] - [[Whitley Stokes]], British lawyer (b. [[1830]])
89511 *[[1910]] - [[William Quiller Orchardson]], British painter (b. [[1835]])
89512 *[[1911]] - [[George Washington Glick]], Governor of Kansas (b. [[1827]])
89513 *[[1911]] - [[John McLane]], Governor of New Hampshire (b. [[1852]])
89514 *[[1912]] - [[Ishikawa Takuboku]], Japanese author (b. [[1886]])
89515 *[[1925]] - [[Elwood Haynes]], American automobile pioneer
89516 *[[1938]] - [[Grey Owl]], proponent of nature conservation (b. [[1888]])
89517 *[[1941]] - [[Annie Jump Cannon]], American astronomer (b. [[1863]])
89518 *[[1944]] - [[CÊcile Chaminade]], French composer and pianist (b. [[1857]])
89519 *[[1945]] - [[Ernst Cassirer]], German philosopher (b. [[1874]])
89520 *[[1962]] - [[Culbert Olson]], Governor of California (b. [[1876]])
89521 *[[1966]] - [[Abdul Salam Arif]], [[President of Iraq]] (b. [[1921]])
89522 *[[1975]] - [[Larry Parks]], American actor (b. [[1914]])
89523 *[[1975]] - [[François (Ngarta) Tombalbaye]], first [[President of Chad]] (b. [[1918]])
89524 *[[1978]] - [[Jack Chambers (artist)|Jack Chambers]], Canadian artist and film maker (b. [[1931]])
89525 *[[1981]] - Prince [[Asaka Yasuhiko]] of Japan (b. [[1887]])
89526 *[[1984]] - [[Richard Hurndall]]. British actor (b. [[1910]])
89527 *[[1984]] - [[Ralph Kirkpatrick]], American musician (b. [[1911]])
89528 *[[1993]] - [[Wallace Stegner]], American writer (car accident) (b. [[1909]])
89529 *[[1997]] - [[Dorothy Frooks]], American author, publisher, military figure, and actress (b. [[1896]])
89530 *[[1999]] - [[Ortvin Sarapu]], New Zealand chess player &quot;Mr NZ Chess&quot; (b. [[1924]])
89531 *[[1999]] - [[Willi Stoph]], German politician (b. [[1914]])
89532 *[[2000]] - [[Giorgio Bassani]], Italian writer (b. [[1916]])
89533 *[[2001]] - [[Robert Moon]], Postal Inspector and &quot;Father&quot; of the [[ZIP Code]] (b. [[1917]])
89534 *[[2002]] - [[Desmond Titterington]], Northern Irish racecar driver (b. [[1928]])
89535 *[[2004]] - [[Lou Berberet]], baseball player (b. [[1929]])
89536 *2004 - [[Caron Keating]], British television presenter (b. [[1962]])
89537 *[[2005]] - [[Johnnie Johnson (musician)|Johnnie Johnson]], American musician (b. [[1924]])
89538
89539 ==Holidays and Observances==
89540 * First day of [[Thai New Year]]
89541
89542 * [[Easter]] - [[2036]]
89543
89544 * First day of [[Cambodian New Year]]
89545
89546 ==External links==
89547 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/13 BBC: On This Day]
89548 * [http://www.tnl.net/when/4/13 Today in History: April 13]
89549
89550 ----
89551
89552 [[April 12]] - [[April 14]] - [[March 13]] - [[May 13]] -- [[historical anniversaries|listing of all days]]
89553
89554 {{months}}
89555
89556 [[af:13 April]]
89557 [[ar:13 Ø§Ø¨ØąŲŠŲ„]]
89558 [[an:13 d'abril]]
89559 [[ast:13 d'abril]]
89560 [[bg:13 Đ°ĐŋŅ€Đ¸Đģ]]
89561 [[be:13 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
89562 [[bs:13. april]]
89563 [[ca:13 d'abril]]
89564 [[ceb:Abril 13]]
89565 [[cv:АĐēĐ°, 13]]
89566 [[co:13 d'aprile]]
89567 [[cs:13. duben]]
89568 [[cy:13 Ebrill]]
89569 [[da:13. april]]
89570 [[de:13. April]]
89571 [[et:13. aprill]]
89572 [[el:13 ΑĪ€ĪÎšÎģίÎŋĪ…]]
89573 [[es:13 de abril]]
89574 [[eo:13-a de aprilo]]
89575 [[eu:Apirilaren 13]]
89576 [[fo:13. apríl]]
89577 [[fr:13 avril]]
89578 [[fy:13 april]]
89579 [[ga:13 AibreÃĄn]]
89580 [[gl:13 de abril]]
89581 [[ko:4ė›” 13ėŧ]]
89582 [[hr:13. travnja]]
89583 [[io:13 di aprilo]]
89584 [[id:13 April]]
89585 [[ia:13 de april]]
89586 [[ie:13 april]]
89587 [[is:13. apríl]]
89588 [[it:13 aprile]]
89589 [[he:13 באפריל]]
89590 [[jv:13 April]]
89591 [[ka:13 აპრილი]]
89592 [[csb:13 łÅŧÃĢkwiôta]]
89593 [[ku:13'ÃĒ avrÃĒlÃĒ]]
89594 [[lt:BalandÅžio 13]]
89595 [[lb:13. AbrÃĢll]]
89596 [[li:13 april]]
89597 [[hu:Április 13]]
89598 [[mk:13 Đ°ĐŋŅ€Đ¸Đģ]]
89599 [[ms:13 April]]
89600 [[nap:13 'e abbrile]]
89601 [[nl:13 april]]
89602 [[ja:4月13æ—Ĩ]]
89603 [[no:13. april]]
89604 [[nn:13. april]]
89605 [[oc:13 d'abril]]
89606 [[pl:13 kwietnia]]
89607 [[pt:13 de Abril]]
89608 [[ro:13 aprilie]]
89609 [[ru:13 Đ°ĐŋŅ€ĐĩĐģŅ]]
89610 [[se:CuoŋomÃĄnu 13.]]
89611 [[sq:13 Prill]]
89612 [[scn:13 di aprili]]
89613 [[simple:April 13]]
89614 [[sk:13. apríl]]
89615 [[sl:13. april]]
89616 [[sr:13. Đ°ĐŋŅ€Đ¸Đģ]]
89617 [[fi:13. huhtikuuta]]
89618 [[sv:13 april]]
89619 [[tl:Abril 13]]
89620 [[tt:13. Äpril]]
89621 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 13]]
89622 [[th:13 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
89623 [[vi:13 thÃĄng 4]]
89624 [[tr:13 Nisan]]
89625 [[uk:13 ĐēвŅ–Ņ‚ĐŊŅ]]
89626 [[ur:13 اŲžØąÛŒŲ„]]
89627 [[wa:13 d' avri]]
89628 [[war:Abril 13]]
89629 [[zh:4月13æ—Ĩ]]
89630 [[pam:Abril 13]]</text>
89631 </revision>
89632 </page>
89633 <page>
89634 <title>Amaranth</title>
89635 <id>1542</id>
89636 <revision>
89637 <id>42105074</id>
89638 <timestamp>2006-03-03T21:33:24Z</timestamp>
89639 <contributor>
89640 <ip>196.207.40.213</ip>
89641 </contributor>
89642 <text xml:space="preserve">{{otheruses}}
89643 ''Amarant redirects here, for the [[Final Fantasy IX]] character, see: [[Amarant Coral]]''
89644
89645 {{Taxobox
89646 | color = lightgreen
89647 | name = ''Amaranthus''
89648 | image = Amaranthus tricolor0.jpg
89649 | image_width = 250px
89650 | image_caption = ''Amaranthus caudatus'' (Love-lies-bleeding)
89651 | regnum = [[Plant]]ae
89652 | divisio = [[Flowering plant|Magnoliophyta]]
89653 | classis = [[Magnoliopsida]]
89654 | ordo = [[Caryophyllales]]
89655 | familia = [[Amaranthaceae]]
89656 | subfamilia = [[Amaranthoideae]]
89657 | genus = '''''Amaranthus'''''
89658 | genus_authority = [[Carolus Linnaeus|L.]]
89659 | subdivision_ranks = Species
89660 | subdivision =
89661 See text.
89662 }}
89663
89664 The '''amaranths''' (also called '''pigweeds''') comprise the [[genus]] '''''Amaranthus''''', a widely distributed genus of short-lived [[herb]]s, occurring mostly in temperate and tropical regions. Although there remains some confusion over the detailed taxonomy, there are about 60 ''Amaranthus'' species. Several of them are cultivated as [[leaf vegetable]]s, [[cereal]]s, or [[ornamental plant]]s.
89665
89666 Members of this genus share many characteristics and uses with members of the closely related genus ''[[Celosia]]''.
89667
89668 ==Cultivation and uses==
89669 Several species are raised for '''amaranth grain''' in [[Asia]] and the [[Americas]]. Amaranth grain is a crop of moderate importance in the [[Himalaya]]. It was one of the staple foodstuffs of the [[Inca]]s, and it is known as '''kiwicha''' in the [[Andes]] today. It was also used by the ancient [[Aztec]]s, who called it '''huautli''', and other Amerindian peoples in [[Mexico]] to prepare ritual drinks and foods. To this day, amaranth grains are toasted much like [[popcorn]] and mixed with [[honey]] or [[molasses]] to make a treat called ''alegría'' (literally &quot;joy&quot;) in [[Mexican Spanish]].
89670
89671 Amaranth was used in several Aztec ceremonies, where images of their gods (notably [[Huitzilopochtli]]) were made with amaranth mixed with honey. The images were cut to be eaten by the people. This looked like the [[Christian]] [[eucharist|communion]] to the [[Catholic]] priests, so the cultivation of the grain was forbidden for centuries.
89672
89673 Because of its importance as a symbol of indigenous culture, and because it is very palatable, easy to cook, and its protein particularly well suited to human [[nutrition]]al needs, interest in [[Amaranth grain|grain amaranth]] (especially ''A. cruentis'' and ''A. hypochondriaca'') was revived in the [[1970s]]. It was recovered in Mexico from wild varieties and is now commercially cultivated. It is a popular snack sold on almost every block of [[Mexico City]], sometimes mixed with [[chocolate]] or [[puffed grain|puffed rice]], and its use has spread to [[Europe]] and [[North America]]. Besides [[protein]], [[Amaranth grain|amaranth grain]] provides a good source of [[dietary fiber]] and [[dietary mineral]]s such as [[iron]], [[magnesium]], [[phosphorus]], [[copper]], and especially [[manganese]].
89674
89675 '''Amaranth greens''', also called '''Chinese spinach''', '''hinn choy''' or '''yin tsoi''' ({{zh-sp|s=苋菜|p=xiàncài}}), '''callaloo''', '''tampala''', or '''quelite''', are a common leaf vegetable throughout the tropics and in many warm temperate regions. They are a very good source of [[vitamin]]s including [[vitamin A]], [[vitamin B6]], [[vitamin C]], [[riboflavin]], and [[folate]], and dietary minerals including [[calcium]], [[iron]], [[magnesium]], [[phosphorus]], [[potassium]], [[zinc]], [[copper]], and [[manganese]]. However their moderately high content of [[oxalic acid]] inhibits the absorption of calcium, and also means that they should be avoided or eaten in moderation by people with [[kidney]] disorders, [[gout]], or [[rheumatoid arthritis]].
89676
89677 The flowers of the Hopi Red Dye amaranth were used by the Hopi Indians as the source of a deep red dye. This dye has been supplanted by a coal tar dye known as [[Red No. 2]] in North America and E123 in the [[European Economic Community|E.E.C.]], also known as amarynth.
89678
89679 The genus also contains several well-known ornamental plants, such as ''A. caudatus'' (love-lies-bleeding), a native of [[India]] and a vigorous, hardy annual with dark purplish [[flower]]s crowded in handsome drooping spikes. Another Indian annual, ''A. hypochondriacus'' (prince's feather), has deeply-veined lance-shaped leaves, purple on the under face, and deep crimson flowers densely packed on erect spikes.
89680
89681 Amaranths are recorded as food plants for some [[Lepidoptera]] species including [[Nutmeg (moth)|The Nutmeg]] and various case-bearers of the genus ''[[Coleophora]]'': ''C. amaranthella'', ''C. enchorda'' (feeds exclusively on ''Amaranthus''), ''C. immortalis'' (feeds exclusively on ''Amaranthus''), ''C. lineapulvella'' and ''C. versurella'' (recorded on ''A. spinosus'').
89682
89683 == Myth, legend and poetry ==
89684 '''Amaranth''', or Amarant (from the [[Greek language|Greek]] ''amarantos'', unwithering), a name chiefly used in poetry, and applied to Amaranth and other plants which, from not soon fading, typified immortality. Thus, in [[John Milton|Milton's]] [[Paradise Lost]], iii. 353:
89685
89686 &lt;blockquote&gt;
89687 :&quot;Immortal amarant, a flower which once
89688 :In paradise, fast by the tree of life,
89689 :Began to bloom; but soon for man's offence
89690 :To heaven removed, where first it grew, there grows,
89691 :And flowers aloft, shading the fount of life,
89692 :And where the river of bliss through midst of heaven
89693 :Rolls o'er elysian flowers her amber stream:
89694 :With these that never fade the spirits elect
89695 :Bind their resplendent locks.&quot;
89696 &lt;/blockquote&gt;
89697
89698 The progessive metal band, Opeth, refers to Amaranth in the extent of immortallity in the song Blackrose Immortal:
89699
89700 &lt;blockquote&gt;
89701 :&quot;Lullaby of the crescent moon took you
89702 :Mesmerized, its kaleidoscopic face
89703 :Granted you a hollow stare
89704 :Another soul within the divine herd
89705 :I have kept it
89706 :The amaranth symbol
89707 :Hiddin inside the golden shrine
89708 :Until we rejoice in the meadow
89709 :Of the end
89710 :When we both walk the shadows
89711 :It will set ablaze and vanish
89712 :Black rose immortal&quot;
89713 &lt;/blockquote&gt;
89714
89715 The original spelling is ''amarant''; the more common spelling ''amaranth'' seems to have come from a [[folk etymology]] assuming that the final syllable derives from the Greek word ''anthos'' (&quot;flower&quot;), common in botanical names.
89716
89717 In ancient [[Greece]] the amaranth (also called chrusanthemon and elichrusos) was sacred to Ephesian [[Artemis]]. It was supposed to have special healing properties, and as a symbol of
89718 immortality was used to decorate images of the gods and tombs. In legend, [[Amarynthus]] (a form of Amarantus) was a hunter of Artemis and king of [[Euboea]]; in a village of Amarynthus, of which he was the eponymous hero, there was a famous temple of Artemis Amarynthia or Amarysia (Strabo x. 448; Pausan. i. 31, p. 5).
89719
89720 ''Amaranth'' is also the name of the otherworldly pantheon that amuses itself by toying with individuals' luck in [[Tim Lebbon]]'s novella &quot;The Unfortunate&quot;.
89721
89722 &quot;Amaranth&quot; is also the name of a long [[Sapphic]] poem by the great [[imagiste]] [[H.D.]], and is based on [[Sappho]]'s fragment 131.
89723
89724 In [[White Wolf, Inc.|White Wolf Game Studio]]'s [[Vampire: The Dark Ages]] [[book]]s and [[role-playing game]]s, ''Amaranth'' is the medieval name of what then was widely known as ''[[Diablerie]]'' (consuming the blood and soul of another vampire).
89725
89726 ''Amarantine'' is the name of a 2005 album and single by Irish vocal artist [[Enya]].
89727
89728 &quot;Love-Lies-Bleeding&quot; is the title of a 2005 play by [[Don DeLillo]].
89729
89730 == Selected species ==
89731 * ''Amaranthus acanthochiton'' (Greenstripe)
89732 * ''Amaranthus acutilobius'' (Sharplobe Amaranth)
89733 * ''Amaranthus albus'' (White Pigweed, Prostrate Pigweed, Pigweed Amaranth)
89734 * ''Amaranthus arenicola'' (Sandhill Amaranth)
89735 * ''Amaranthus australis'' (Southern Amaranth)
89736 * ''Amaranthus bigelovii'' (Bigelow's Amaranth)
89737 * ''Amaranthus blitoides'' (Mat Amaranth, Prostrate Amaranth, Prostrate Pigweed)
89738 * ''Amaranthus blitum'' (Purple Amaranth)
89739 * ''Amaranthus brownii'' (Brown's Amaranth)
89740 * ''Amaranthus californicus'' (California Amaranth, California Pigweed)
89741 * ''Amaranthus cannabinus'' (Tidal-marsh Amaranth)
89742 * ''Amaranthus caudatus'' (Loves-lies-bleeding, Pendant Amaranth, Tassel Flower, Quilete)
89743 * ''Amaranthus chihuahuensis'' (Chihuahuan Amaranth)
89744 * ''Amaranthus chlorostachys''
89745 * ''Amaranthus crassipes'' (Spreading Amaranth)
89746 * ''Amaranthus crispus'' (Crispleaf Amaranth)
89747 * ''Amaranthus cruentus'' (Purple Amaranth, Red Amaranth, Mexican Grain Amaranth)
89748 * ''Amaranthus deflexus'' (Large-fruit Amaranth)
89749 * ''Amaranthus dubius'' (Spleen Amaranth, Khada Sag)
89750 * ''Amaranthus fimbriatus'' (Fringed Amaranth, Fringed Pigweed)
89751 * ''Amaranthus floridanus'' (Florida Amaranth)
89752 * ''Amaranthus greggii'' (Gregg's Amaranth)
89753 * ''Amaranthus hybridus'' (Smooth Amaranth, Smooth Pigweed, Red Amaranth)
89754 * ''Amaranthus hypochondriacus'' (Prince-of-Wales-feather, Princess Feather)
89755 * ''Amaranthus leucocarpus''
89756 * ''Amaranthus lineatus'' (Australian Amaranth)
89757 * ''Amaranthus lividus''
89758 * ''Amaranthus mantegazzianus'' (Quinoa de Castilla)
89759 * ''Amaranthus minimus''
89760 * ''Amaranthus muricatus'' (African Amaranth)
89761 * ''Amaranthus obcordatus'' (Trans-Pecos Amaranth)
89762 * ''Amaranthus palmeri'' (Palmer's Amaranth, Carelessweed)
89763 * ''Amaranthus paniculus'' (Reuzen Amaranth)
89764 * ''Amaranthus polygonoides'' (Tropical Amaranth)
89765 * ''Amaranthus powelii'' (Green Amaranth, Powell Amaranth, Powell Pigweed)
89766 * ''Amaranthus pringlei'' (Pringle's Amaranth)
89767 * ''Amaranthus pumilus'' (Seaside Amaranth)
89768 * ''Amaranthus quitensis'' (Ataco, Sangorache)
89769 * ''Amaranthus retroflexus'' (Red-root Amaranth, Redroot Pigweed, Common Amaranth)
89770 * ''Amaranthus rudis'' (Tall Amaranth, Common Waterhemp)
89771 * ''Amaranthus scleropoides'' (Bone-bract Amaranth)
89772 * ''Amaranthus spinosus'' (Spiny Amaranth, Prickly Amaranth, Thorny Amaranth)
89773 * ''Amaranthus standleyanus''
89774 * ''Amaranthus thunbergii'' (Thunberg's Amaranth)
89775 * ''Amaranthus torreyi'' (Torrey's Amaranth)
89776 * ''Amaranthus tricolor'' (Joseph's-coat)
89777 * ''Amaranthus tuberculatus'' (Rough-fruit Amaranth, Tall Waterhemp)
89778 * ''Amaranthus viridis'' (Slender Amaranth, Green Amaranth)
89779 * ''Amaranthus watsonii'' (Watson's Amaranth)
89780 * ''Amaranthus wrightii'' (Wright's Amaranth)
89781
89782 == References and external links ==
89783 {{Commonscat|Amaranthus}}
89784 * Lenz, ''Botanik der alt. Greich. und Rom.'' Botany of old. (1859)
89785 * J. Murr, ''Die Pflanzenwelt in der griech. Mythol.'' Plants in Greek Mythology. (1890)
89786 * [http://www.hear.org/starr/hiplants/images/thumbnails/html/amaranthus_hybridus_thumbnails.htm Amaranthus hybridus]
89787 * [http://www.hear.org/starr/hiplants/images/thumbnails/html/amaranthus_spinosus_thumbnails.htm Amaranthus spinosus]
89788 * [http://www.hear.org/starr/hiplants/images/600max/html/starr_010520_0109_amaranthus_viridis.htm Amaranthus viridis]
89789 * [http://flora.huh.harvard.edu:8080/flora/browse.do?flora_id=1&amp;taxon_id=101257 Flora online : Flora of North America]
89790 * [http://amaranth.twoday.net/topics/Amaranthus+Info/ Amaranthus Info]
89791 * [http://www.hort.purdue.edu/newcrop/afcm/amaranth.html Alternate Field Crops Manual]
89792
89793 &lt;gallery&gt;
89794 Image:Amaranthus caudatus1.jpg|Loves-lies-bleeding (Amaranthus caudatus)
89795 Image:Amaranthus.hybridus1web.jpg|Green Amaranth (''A. hybridus'')
89796 Image:Seabeach Amaranth.jpg|Seabeach amaranth (''A. pumilus''), an [[endangered species]] of amaranth
89797 Image:Illustration Amaranthus retroflexus0.jpg|Red-root Amaranth (''A. retroflexus'') - from ThomÊ, ''Flora von Deutschland, Österreich und der Schweiz'' 1885
89798 Image:Amaranthus.spinosus1web.jpg|Spiny Amaranth (''Amaranthus spinosus'')
89799 Image:Amaranthus spinosus c.jpg|Callaloo (''Amaranthus spinosus &quot;calaloo&quot;'')
89800 Image:Amaranthus.viridis1web.jpg|Green Amaranth (''Amaranthus viridis'')
89801 &lt;/gallery&gt;
89802
89803 [[Category:Caryophyllales]]
89804 [[Category:Cereals]]
89805 [[Category:Grains]]
89806 [[Category:Leaf vegetables]]
89807 [[Category:Tropical agriculture]]
89808 [[Category:Underutilized crops]]
89809
89810 [[cs:Laskavec]]
89811 [[de:Amarant (Lebensmittel)]]
89812 [[eo:Amaranto nutraÄĩa]]
89813 [[es:Amaranto]]
89814 [[fr:Amarante]]
89815 [[it:Amaranto (alimento)]]
89816 [[nl:Amarant (geslacht)]]</text>
89817 </revision>
89818 </page>
89819 <page>
89820 <title>African lily</title>
89821 <id>1543</id>
89822 <revision>
89823 <id>37287116</id>
89824 <timestamp>2006-01-30T00:52:11Z</timestamp>
89825 <contributor>
89826 <username>Gdrbot</username>
89827 <id>263608</id>
89828 </contributor>
89829 <minor />
89830 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
89831 <text xml:space="preserve">{{Taxobox
89832 | color = lightgreen
89833 | name = African Lily
89834 | image = Agapanthus africanus.jpg
89835 | image_width = 200px
89836 | image_caption = Flowers
89837 | regnum = [[Plant]]ae
89838 | divisio = [[Flowering plant|Magnoliophyta]]
89839 | classis = [[Liliopsida]]
89840 | ordo = [[Asparagales]]
89841 | familia = [[Alliaceae]]
89842 | genus = '''''[[Agapanthus]]'''''
89843 | species = '''''A. umbellatus'''''
89844 | binomial = ''Agapanthus umbellatus''
89845 | binomial_authority = [[Charles Louis L'HÊritier de Brutelle|L'HÊr.]]
89846 }}
89847 The '''African lily''' (''Agapanthus umbellatus'') is a member of the [[family (biology)|family]] [[Alliaceae]] and a native of the [[Cape of Good Hope]], from where it was introduced to [[Europe]] at the close of the [[17th century]].
89848
89849 == Description ==
89850
89851 The African lily has a short stem bearing a tuft of long, narrow, arching leaves 1/2 to 2 ft. long and a central flower stalk 2 to 3 ft. high, ending in an umbel of bright blue, funnel-shaped flowers.
89852
89853 Several cultivars are known, such as albidus (white flowers), aureus (leaves striped with yellow), and variegatus (leaves almost entirely white with a few green bands). There are also double-flowered and larger- and smaller-flowered forms.
89854
89855 == Cultivation ==
89856
89857 The African lily is a handsome greenhouse plant and is hardy in the south of [[England]] and [[Ireland]] if protected from severe frosts. The plants are easy to cultivate and (in areas that have winter) are generally grown in large pots or tubs that can be protected from frost.
89858
89859 During the summer they require plenty of water and are very effective on the margins of lakes or by running streams, where they thrive.
89860
89861 == Propagation ==
89862
89863 They may be propagated from offsets or by dividing the rootstock in early spring or autumn.
89864
89865
89866 ==References==
89867 *{{1911}}
89868
89869 [[Category:Flowers]]
89870 [[Category:Asparagales]]</text>
89871 </revision>
89872 </page>
89873 <page>
89874 <title>Agamemnon</title>
89875 <id>1544</id>
89876 <revision>
89877 <id>42055639</id>
89878 <timestamp>2006-03-03T14:21:46Z</timestamp>
89879 <contributor>
89880 <username>Haiduc</username>
89881 <id>80885</id>
89882 </contributor>
89883 <comment>rev. blanking to last version by Haiduc</comment>
89884 <text xml:space="preserve">{{OtherUses|a character in Greek mythology}}
89885
89886 [[Image:MaskeAgamemnon.JPG|thumb|250px|right|The so-called '[[Mask of Agamemnon]]'. Discovered by [[Heinrich Schliemann]] in [[1876]] at [[Mycenae]].]]
89887
89888 '''AgamÊmnon''' ([[Greek language|Greek]]: '''{{polytonic|áŧˆÎŗÎąÎŧέÎŧÎŊĪ‰ÎŊ}}''') (&quot;very resolute&quot;), one of the most distinguished heroes of [[Greek mythology]], was the son of King [[Atreus]] of [[Mycenae]] (or [[Argos]]) and Queen [[Aerope]], and brother of [[Menelaus]].
89889 ==Early life==
89890 Agamemnon's father Atreus was murdered by [[Aegisthus]], who took possession of the throne of Mycenae and ruled jointly with his father [[Thyestes]]. During this period Agamemnon and Menelaus took refuge with [[Tyndareus]], king of [[Sparta]]. There they respectively married Tyndareus' daughters [[Clytemnestra]] and [[Helen]]. Agamemnon and Clytemnestra had four children: three daughters, [[Iphigeneia]], [[Electra]], and [[Chrysothemis]], and one son, [[Orestes (mythology)|Orestes]].
89891
89892 Menelaus succeeded Tyndareus in Sparta, while Agamemnon, with his brother's assistance, drove out Aegisthus and Thyestes to recover his father's kingdom. He extended his dominion by conquest and became the most powerful prince in Greece.
89893
89894 However, Agamemnon's family history, dating back to legendary king [[Pelops]], had been marred by [[rape|pederastic rape]], [[murder]], [[incest]], and [[treachery]]. The Greeks believed this violent past brought misfortune upon the entire [[House of Atreus]].
89895
89896 ==The Trojan War==
89897 [[Image:300px-Iphigenia.jpg|thumb|right|150px|The sacrifice of [[Iphigenia]].]]
89898
89899 Agamemnon gathered together the Greek forces to sail for Troy. Preparing to depart from [[Aulis]], a port in [[Boeotia]], Agamemnon's army incurred the wrath of the goddess [[Artemis]] by slaying an animal sacred to her, and by Agamemnon boasting that he was Artemis' equal in hunting. Misfortunes including a plague and a lack of wind prevented the army from sailing; finally, the prophet [[Calchas]] announced that the wrath of the goddess could only be propitiated by the sacrifice of [[Iphigeneia]] (daughter of Agamemnon). Classical dramatizations differ on how willing either father or daughter were to this fate, but Agamemnon did eventually sacrifice Iphigenia. Her death appeased Artemis and the Greek army set out for Troy. Several alternatives to the human sacrifice have been presented in Greek mythology. Other sources claim Agamemnon was prepared to kill his daughter, but Artemis accepted a deer in place of Iphigenia, and whisked her to Taurus in the [[Crimea]]. [[Hesiod]] said she became the goddess [[Hecate]].
89900
89901 Agamemnon was the commander-in-chief of the Greeks during the [[Trojan War]]. During the fighting, Agamemnon killed [[Antiphus]]. Agamemnon's teamster, [[Halaesus]], later fought with [[Aeneas]] in [[Italy]]. The ''[[Iliad]]'' tells the story of the quarrel between Agamemnon and [[Achilles]] in the final year of the war. Agamemnon took an attractive slave and spoil of war [[Briseis]] from Achilles. [[Achilles]], the greatest warrior of the age, withdrew from battle in revenge and nearly cost the Greek armies the war.
89902
89903 Although not the equal of [[Achilles]] in bravery, Agamemnon was a dignified representative of kingly authority. As commander-in-chief, he summoned the princes to the council and led the army in battle. He took the field himself, and performed many heroic deeds until he was wounded and forced to withdraw to his tent. His chief fault was his overweening [[haughtiness]]. An over-exalted opinion of his position led him to insult [[Chryses]] and [[Achilles]], thereby bringing great disaster upon the Greeks.
89904
89905 After the capture of Troy, [[Cassandra]], doomed prophetess and daughter of [[Priam]], fell to his lot in the distribution of the prizes of war.
89906
89907 ==Return to Greece==
89908 [[Image:The Return Of Agamemnon - Project Gutenberg eText 14994.png|thumbnail|right|300px|The return of Agamemnon, from an [[1879]] illustration from ''Stories from the Greek Tragedians'' by [[Alfred Church]].]]
89909
89910 [[Image:The Murder Of Agamemnon - Project Gutenberg eText 14994.png|thumbnail|right|300px|The murder of Agamemnon, from an 1879 illustration from ''Stories from the Greek Tragedians'' by Alfred Church]]
89911
89912 After a stormy voyage, Agamemnon and Cassandra landed in [[Argolis]] or were blown off course and landed in Aegisthus' country. Aegisthus, who in the interval had seduced Clytemnestra, invited him to a banquet at which he was treacherously slain. According to the account given by [[Pindar]] and the tragedians, Agamemnon was slain by his wife alone in a bath, a piece of cloth or a net having first been thrown over him to prevent resistance. Clytemnestra also killed Cassandra. Her wrath at the sacrifice of Iphigenia, and her jealousy of Cassandra, are said to have been the motives of her crime. Aegisthus and Clytemnestra then ruled Agamemnon's kingdom for a time, but the murder of Agamemnon was eventually avenged by his son [[Orestes (mythology)|Orestes]] (possibly with the help of Electra).
89913 69
89914
89915 ==Other stories==
89916 [[Athenaeus]] tells a story of [[Argynnus]], an [[eromenos]] of Agamemnon: &quot;Agamemnon loved Argynnus, so the story goes, having seen him swimming in the [[Cephisus]] river; in which, in fact, he lost his life (for he constantly bathed in this river), and Agamemnon buried him and founded there a temple of [[Aphrodite]] Argynnis.&quot; (The Deipnosophists of Athenaeus of Naucratis; Book XIII Concerning Women, p.3) This episode is also found in [[Clement of Alexandria]] (Protrepticus II.38.2) and in [[Stephen of Byzantium]] ''(Kopai'' and ''Argunnos),'' with minor variations.
89917
89918 The fortunes of Agamemnon have formed the subject of numerous [[tragedy|tragedies]], ancient and modern, the most famous being the [[Oresteia]] of [[Aeschylus]]. In the legends of the [[Peloponnesus]], Agamemnon was regarded as the highest type of a powerful monarch, and in [[Sparta]] he was worshipped under the title of ''Zeus Agamemnon''. His tomb was pointed out among the ruins of [[Mycenae]] and at [[Amyclae]].
89919
89920 Another account makes him the son of [[Pleisthenes]] (the son or father of [[Atreus]]), who is said to have been Aerope's first husband.
89921
89922 In works of art there is considerable resemblance between the representations of [[Zeus]], king of the gods, and Agamemnon, king of men. He is generally characterized by the [[sceptre]] and [[diadem]], the usual attributes of kings.
89923
89924 ==Agamemnon in modern fiction and film==
89925 Modern writers of time travel and historical novels often attempt to show the Trojan War &quot;as it really happened&quot;, based on the archeological evidence of [[Mycenaean]] civilization. Such authors frequently use Agamemnon as the archetypical Mycenaean king, bringing life to old artifacts by dressing a familiar face in them. Of particular interest is [[S. M. Stirling]]'s time-travel trilogy ''[[Island in the Sea of Time]]'', ''[[Against the Tide of Years]]'' and ''[[On the Oceans of Eternity]]'', where the fate that befalls the House of Atreus is every bit as horrific as that portrayed in traditional myth. The horror is arranged by a time-travelling villain who is very well aware of the mythology.
89926
89927 Agamemnon is also said to have been the ancient [[ancestor]] or relative of the [[nobility|noble]] [[family]] the [[Atreides]] of the [[classic]] [[science fiction]] series ''[[Dune (novel)|Dune]]'' by [[Frank Herbert]] (Note that the surname, [[Atreides]] is derived from Agamemnon's father's name, ''[[Atreus]]''). There are many [[parallels]] with the story of Agamemnon and in Dune, such as with the [[protagonist]] [[Paul Atreides]] in that both are [[Tragic hero|tragic heroes]].
89928
89929 Agamemnon makes an appearance in the film ''[[Time Bandits]]'', played by [[Sean Connery]], although his depiction in the film seems more reminiscent of [[Odysseus]].
89930
89931 He also appeared in the 2004 film ''[[Troy (movie)|Troy]]'', played by [[Scotland|Scottish]] actor [[Brian Cox]].
89932
89933 Agamemnon was the name of the Earth fleet Destroyer that John Sheridan commanded near the end of season 4 of Babylon 5.
89934
89935 {{1911}}
89936
89937 == References ==
89938 * [[Homer]], ''[[Iliad]]'';
89939 * [[Homer]], ''[[Odyssey]]'' I, 28-31; XI, 385-464;
89940 * [[Aeschylus]], ''[[Agamemnon (play)]][http://www.mala.bc.ca/~johnstoi/aeschylus/aeschylus_agamemnon.htm]'';
89941 * [[Aeschylus]], ''[[The Libation Bearers]]'';
89942 * [[Sophocles]], ''[[Electra]]'';
89943 * [[Euripides]], ''[[Electra]]'';
89944 *[[Apollodorus]], ''[[Epitome]]'', II, 15-III, 22; VI, 23.
89945 Troy movie 2004 Directed by [[Wolfgang Petersen]]
89946 [[Category:People who fought in the Trojan War]]
89947 [[Category:Mythological kings]]
89948 [[Category:Pederastic heroes and deities]]
89949
89950 [[da:Agamemnon]]
89951 [[de:Agamemnon]]
89952 [[es:AgamenÃŗn]]
89953 [[fr:Agamemnon]]
89954 [[gl:AgamenÃŗn]]
89955 [[ko:ė•„가늤ë…ŧ]]
89956 [[it:Agamennone]]
89957 [[he:אגממנון]]
89958 [[la:Agamemnon]]
89959 [[lt:Agamemnonas]]
89960 [[lb:Agamemnon]]
89961 [[hu:AgamemnÃŗn]]
89962 [[nl:Agamemnon]]
89963 [[ja:ã‚ĸã‚ŦãƒĄãƒ ãƒŽãƒŗ]]
89964 [[pl:Agamemnon]]
89965 [[pt:Agamemnon]]
89966 [[ro:Agamemnon]]
89967 [[ru:АĐŗĐ°ĐŧĐĩĐŧĐŊĐžĐŊ]]
89968 [[sr:АĐŗĐ°ĐŧĐĩĐŧĐŊĐžĐŊ]]
89969 [[fi:Agamemnon]]
89970 [[sv:Agamemnon]]
89971 [[zh:é˜ŋäŧŊ门农]]</text>
89972 </revision>
89973 </page>
89974 <page>
89975 <title>Aga Khan I</title>
89976 <id>1545</id>
89977 <revision>
89978 <id>37477615</id>
89979 <timestamp>2006-01-31T05:50:59Z</timestamp>
89980 <contributor>
89981 <username>Wilis.azm</username>
89982 <id>843798</id>
89983 </contributor>
89984 <minor />
89985 <text xml:space="preserve">'''Aga Khan I''' ({{lang-ar|ØŖØēا ؎اŲ†}})
89986
89987 ([[1800]]-[[1881]]), was the title accorded by general consent to '''Hasan Ali Shah''' (born in [[Iran|Persia]], [[1800]]), when, in early life, he first settled in [[Bombay]] under the protection of the [[United Kingdom|British]] government. He was believed to have descended in direct line from [[Ali Ben Abu Talib|Ali]] by his wife [[Fatima Zahra]], the daughter of the Prophet [[Muhammad]]. Ali's son, Husain, having married a daughter of one of the rulers of Persia before the time of Muhammad, the Aga Khan traced his descent from the royal house of [[Iran|Persia]] from the most remote, almost prehistoric, times. His ancestors had also ruled in [[Egypt]] as ''[[caliphs]]'' of the [[Fatimids|Fatimid]] dynasty for a number of years, at the same time as the [[Crusade|Crusades]].
89988
89989 Before the Aga Khan emigrated from Persia, he was appointed by the emperor [[Fateh Ali Shah]] to be [[governor-general]] of the extensive and important province of [[Kerman]]. His rule was noted for firmness, moderation and high political sagacity, and he succeeded for a long time in retaining the friendship and confidence of his master the Shah, although his career was beset with political intrigues and jealousy on the part of rival and court favourites, and with internal turbulence. At last, however, the fate usual to statesmen in oriental countries overtook him, and he incurred the mortal displeasure of Fateh. He fled from Persia and sought protection in British territory, preferring to settle down eventually in [[India]], making Bombay his headquarters. At that period the [[First Anglo-Afghan War]] was at its height, and in crossing over from Persia through [[Afghanistan]] the Aga Khan found opportunities of rendering valuable services to the British army, and thus cast in his lot forever with the British. A few years later he rendered similar conspicuous services in the course of the [[Sindh]] campaign, when his help was utilized by [[Charles James Napier]] in the process of subduing the frontier tribes, a large number of whom acknowledged the Aga's authority as their spiritual head. Napier held his Muslim ally in great esteem, and entertained a very high opinion of his political acumen and chivalry as a leader and soldier. The Aga Khan reciprocated the British commander's confidence and friendship by giving repeated proofs of his devotion and attachment to the British government, and when he finally settled down in India, his position as the leader of the large [[Ismailis|Ismaili]] section of Muslim British subjects was recognized by the government, and the title of His Highness was conferred on him, with a large pension.
89990
89991 From that time until his death in 1881 the Aga Khan, while leading the life of a peaceful and peacemaking citizen, under the protection of British rule, continued to discharge his sacerdotal functions, not only among his followers in India, but towards the more numerous communities which acknowledged his religious sway in distant countries, such as Afghanistan, [[Khorasan]], Persia, [[Arabia]], [[Central Asia]], and even distant [[Syria]] and [[Morocco]]. He remained throughout unflinchingly loyal to the [[British Raj]], and by his vast and unquestioned influence among the frontier tribes on the northern borders of India he exercised a control over their unruly passions in times of trouble, which proved of invaluable service in the several expeditions led by British arms on the northwest frontier of India. He was also the means of checking the fanaticism of the more turbulent Muslims in British India, which in times of internal troubles and misunderstandings finds vent in the shape of religious or political riots.
89992
89993 He was succeeded by his eldest son, '''[[Aga Khan II]]'''. This prince continued the traditions and work of his father in a manner that won the approbation of the local government, and earned for him the distinction of a knighthood of the [[Order of the Indian Empire]] and a seat in the legislative council of Bombay.
89994
89995 == See also ==
89996 *[[Aga Khan III]]
89997 *[[Aga Khan IV]]
89998 *[[Shi'a Islam]]
89999
90000 ==References==
90001 *{{1911}}
90002
90003 [[Category:Shia Imams]]
90004 [[Category:1800 births|Aga Khan I]]
90005 [[Category:1881 deaths|Aga Khan I]]
90006 [[zh:é˜ŋčŋĻæą—ä¸€ä¸–]]</text>
90007 </revision>
90008 </page>
90009 <page>
90010 <title>Aga Khan III</title>
90011 <id>1546</id>
90012 <revision>
90013 <id>38039226</id>
90014 <timestamp>2006-02-03T19:46:54Z</timestamp>
90015 <contributor>
90016 <username>Pizzadeliveryboy</username>
90017 <id>760611</id>
90018 </contributor>
90019 <minor />
90020 <comment>typo</comment>
90021 <text xml:space="preserve">[[image:Aga Khan III.jpg|thumb|200px|right|[[Aga Khan]] III, founder of the Muslim League]]
90022
90023 '''Aga Khan III''' ([[Arabic language|Arabic]]: ØĸØēا ؎اŲ† اŲ„ØĢاŲ„ØĢ), [[Imperial Privy Council|PC]] ([[November 2]], [[1877]] &amp;ndash; [[July 11]], [[1957]]), also known as '''Sultan Mahommed Shah''' ([[Arabic language|Arabic]]: ØŗŲ„ØˇØ§Ų† Ų…Ø­Ų…د شاŲ‡), was born in [[Karachi]] (then [[India]], now [[Pakistan]]) and was the only son of [[Aga Khan II]], and succeeded him on his death in [[1885]], becoming the head of the family. Under the care of his mother, a daughter of the ruling house of [[Iran|Persia]], he was given not only that religious and oriental education which his position as the religious leader of the [[Ismailis]] made indispensable, but a sound [[Europe]]an training, a boon denied to his father and grandfather. This blending of the two systems of education produced the happy result of fitting this [[Muslim]] chief in an eminent degree both for the sacerdotal functions which appertain to his spiritual position, and for those social duties required of a great and enlightened leader which he was called upon to discharge by virtue of his position.
90024
90025 The Aga Khan travelled in distant parts of the world to receive the homage of his followers, and with the object either of settling differences or of advancing their welfare by pecuniary help and personal advice and guidance. The distinction of a [[Order of the Indian Empire|Knight Commander of the Indian Empire]] was conferred upon him by [[Victoria of the United Kingdom|Queen Victoria]] in 1897 (and later Knight Grand Commander in [[1902]] by [[Edward VII of the United Kingdom|Edward VII]]) and he received like recognition for his public services from the German emperor, the sultan of Turkey, the shah of [[Iran|Persia]] and other potentates. In [[1934]] he was made a member of the [[Privy Council of the United Kingdom|Privy Council]].
90026 The Aga Khan was also a founding member and President of the &quot;All India Muslim League,&quot; which advocated the division of United India in to Pakistan and India.
90027
90028 He was also an owner of thoroughbred racing horses, including five winners of the [[Epsom Derby]].
90029
90030 Bypassing his son [[Aly Khan]], he was succeeded by his grandson [[Aga Khan IV]]
90031
90032 *He married, in 1893, Shahazda Begum.
90033 *He married, in 1903, Teresa Magliano.
90034 *He married, in 1929, AndrÊe JosÊphine Carron.
90035 *He married, in 1944, Yvette Blanche Labrousse, elected &quot;Miss Lyon 1929&quot;, then &quot;Miss France 1930&quot;, named Om Habibah September 10, 1944, and later called HH Begum Mata Salamat (Mother of the Peace)
90036
90037 ==See also==
90038 * [[Aga Khan I]] &amp;mdash; [[Fatimids]]
90039 * [[Aga Khan Palace]]
90040
90041 ==Additional reading==
90042 *Naoroji M. Dumasia, ''A Brief History of the Aga Khan'' (1903).
90043
90044 [[Category:Shia Imams]]
90045 [[Category:1877 births]]
90046 [[Category:1957 deaths]]
90047 [[Category:British racehorse owners &amp; breeders]]
90048 [[Category:Knights Grand Commander of the Indian Empire]]
90049 [[Category:Knights Grand Commander of the Star of India]]
90050 [[Category:Ismailism]]
90051
90052 [[fr:Aga Khan III]]
90053 [[ja:ã‚ĸãƒŧã‚Ŧãƒŧãƒģハãƒŧãƒŗ3世]]
90054 [[zh:é˜ŋčŋĻæą—ä¸‰ä¸–]]</text>
90055 </revision>
90056 </page>
90057 <page>
90058 <title>Agasias</title>
90059 <id>1547</id>
90060 <revision>
90061 <id>39189942</id>
90062 <timestamp>2006-02-11T09:36:10Z</timestamp>
90063 <contributor>
90064 <username>MaxSem</username>
90065 <id>590476</id>
90066 </contributor>
90067 <minor />
90068 <comment>+ru:</comment>
90069 <text xml:space="preserve">'''Agasias''' was the name of two different [[Hellenic civilization|Greek]] [[Sculpture|sculptor]]s.
90070
90071 '''Agasias, son of Dositheus''', signed the remarkable statue called the [[Borghese Warrior]], in the [[Louvre]].
90072
90073 '''Agasias, son of Menophilus''', is the author of another striking figure of a warrior in the museum of [[Athens]].
90074
90075 Both belonged to the school of [[Ephesus]] and flourished approximately [[100 BC]].
90076
90077 ==References==
90078 *{{1911}}
90079
90080 [[Category:Ancient Greek sculptors]]
90081
90082 [[es:Agasio de Éfeso]]
90083 [[it:Agasias]]
90084 [[fi:Agasias]]
90085 [[ru:АĐŗĐ°ŅĐ¸Đš]]</text>
90086 </revision>
90087 </page>
90088 <page>
90089 <title>Alexander Emanuel Agassiz</title>
90090 <id>1548</id>
90091 <revision>
90092 <id>36366879</id>
90093 <timestamp>2006-01-23T15:40:16Z</timestamp>
90094 <contributor>
90095 <username>Mrfish33</username>
90096 <id>691583</id>
90097 </contributor>
90098 <minor />
90099 <text xml:space="preserve">[[Image:Alexander Agassiz pers0118.jpg|thumb|right|Alexander Agassiz]]
90100
90101 '''Alexander Emanuel Agassiz''' ([[December 17]], [[1835]] &amp;ndash; [[March 27]], [[1910]]), son of [[Louis Agassiz]], was an [[United States|American]] scientist and engineer.
90102
90103 He was born in [[NeuchÃĸtel]], [[Switzerland]] and emigrated to the [[United States]] with his father in [[1849]]. He graduated at [[Harvard]] in [[1855]], subsequently studying [[engineering]] and [[chemistry]], and taking the degree of [[bachelor of science]] at the [[Lawrence scientific school]] of the same institution in [[1857]]; and in [[1859]] became an assistant in the [[United States Coast Survey]].
90104
90105 Thenceforward he became a specialist in marine [[ichthyology]], but devoted much time to the investigation, superintendence and exploitation of [[mining|mine]]s.
90106 [[E. J. Hulbert]], a friend of Agassiz's brother-in-law, [[Quincy Adams Shaw]], had discovered a rich copper lode known as the [[Calumet conglomerate]] on the [[Keweenaw Peninsula]] [[Lake Superior]] in [[Michigan]]. He persuaded them, along with a group of friends, to purchase a controlling interest in the mines, which later became known as the [[Calumet &amp; Hecla Mining Company]] based in [[Calumet, Michigan]]. Up until the summer of [[1866]], Agassiz worked as an assistant in the museum of natural history that his father founded at Harvard. That summer, he took a trip to see the mines for himself and he afterwards became treasurer of the enterprise.
90107
90108 Over the winter of 1866 and early [[1867]], mining operations began to falter due to the difficulty of extracting copper from the conglomerate. Hulbert had sold his interests in the mines and had moved on to other ventures. But Agassiz refused to give up hope for the mines, and he returned to the mines in March of 1867 with his wife and young son. At that time, Keweenaw Peninsula was a remote settlement, virtually inaccessible during the winter and very far removed from civilization even during the summer. With insufficient supplies at the mines, Agassiz struggled to maintain order, while back in Boston, Shaw was saddled with debt and the collapse of their interests. Shaw obtained financial assistance from John Simpkins, the selling agent for the enterprise to continue operations.
90109
90110 Agassiz continued to live at Calumet, making gradual progess in stablizing the mining operations, such that he was able to leave the mines under the control of a general manager and return to Boston in [[1868]] before winter closed navigation.
90111
90112 The mines continued to prosper and in May, [[1871]], several mines were consolidated to form the Calumet &amp; Hecla Mining Company with Shaw as its first president. In August, 1871, Shaw &quot;retired&quot; to the board of directors and Agassiz became president, a position he held until his death.
90113
90114 Agassiz was a major factor in the mine's continued success and visited the mines twice a year. He innovated by installing a giant engine, known as the Superior, which was able to lift 24 tons of rock from a depth of 4,000 feet. He also built a railroad and dredged a channel to navigable waters. However, after a time the mines did not require his full-time year-round attention and he returned to his interests in natural history at Harvard.
90115
90116 Out of his copper fortune, he gave some $500,000 to Harvard for the museum of comparative [[zoology]] and other purposes.
90117
90118 In [[1875]] he surveyed [[Lake Titicaca]], [[Peru]], examined the [[copper]] mines of Peru and [[Chile]], and made a collection of Peruvian antiquities for the [[Museum of Comparative Zoology]], of which he was [[curator]] from [[1874]] to [[1885]]. He assisted [[Charles Wyville Thomson]] in the examination and classification of the collections of the ''[[Space Shuttle Challenger|Challenger]]'' exploring expedition, and wrote the ''Review of the Echini'' (2 vols., 1872&amp;ndash;1874) in the reports.
90119
90120 Between [[1877]] and [[1880]] he took part in the three [[dredging]] expeditions of the steamer ''Blake'' of the Coast Survey, and presented a full account of them in two volumes ([[1888]]).
90121
90122 Of his other writings on marine zoology, most are contained in the bulletins and memoirs of the museum of comparative zoology; but he published in [[1865]] (with [[Elizabeth Cary Agassiz]], his step-mother) ''Seaside Studies in Natural History'', a work at once exact and stimulating, and in [[1871]] ''Marine Animals of [[Massachusetts]] Bay''.
90123
90124 He served as a president of the [[National Academy of Sciences]].
90125
90126 He died in [[1910]] onboard the [[SS Adriatic|SS ''Adriatic'']].
90127
90128 == Works ==
90129
90130 * (with [[Elizabeth Cary Agassiz]]) ''Seaside Studies in Natural History'' ([[1865]])
90131 * ''North American Acalephs'', (1865)
90132 * ''[[Marine Animals of Massachusetts|Marine Animals of Massachusetts Bay]]'' ([[1871]])
90133 * ''Revision of the Echini'' (2 vols., [[1872]]&amp;ndash;[[1874]])
90134 * ''North American Starfishes'', ([[1877]])
90135 * ''Report on the Echini of the Challenger Expedition'', ([[1881]])
90136 * ''Explorations of Lake Titicaca''
90137 * ''List of the Echinoderms''
90138 * ''Three Cruises of the ''Blake ([[1888]])
90139 * ''Pacific Coral Reefs''
90140 * ''Coral Reefs of the Maldives''
90141 * ''Panamic Deep Sea Echini''
90142
90143 [[Category:1835 births|Agassiz, Alexander Emanuel]]
90144 [[Category:1910 deaths|Agassiz, Alexander Emanuel]]
90145 [[Category:American zoologists|Agassiz, Alexander Emanuel]]
90146 [[Category:History of Michigan|Agassiz, Alexander Emanuel]]
90147 [[Category:Ichthyologists|Agassiz, Alexander Emanuel]]</text>
90148 </revision>
90149 </page>
90150 <page>
90151 <title>Agathon</title>
90152 <id>1549</id>
90153 <revision>
90154 <id>33292451</id>
90155 <timestamp>2005-12-30T20:52:09Z</timestamp>
90156 <contributor>
90157 <username>Ravenous</username>
90158 <id>296838</id>
90159 </contributor>
90160 <minor />
90161 <comment>linked to Thesmophoriazusae</comment>
90162 <text xml:space="preserve">'''Agathon''' (c. [[448 BCE|448]]-[[400 BCE|400 BCE]]) was an Athenian tragic poet and friend of [[Euripides]] and [[Plato]]. He is best known from his mention by [[Aristophanes]] in his ''[[Thesmophoriazusae]]'' and in Plato's ''[[Symposium (Plato)|Symposium]],'' which describes the banquet given to celebrate his obtaining a prize for his first tragedy ([[416 BCE|416]]). He was the long time (10-15 years) beloved of Pausanias, also mentioned in the ''[[Symposium (Plato)|Symposium]]'' and ''[[Protagoras (Plato)|Protagoras]]''. Pausanias followed Agathon to the court of [[Archelaus I of Macedon|Archelaus]], king of [[Macedon]], who was recruiting playwrights. This is where Agathon probably died. He introduced certain innovations, and [[Aristotle]] (''Poetica,'' 9) tells us that the plot of his ''Antho'' was
90163 original, not, as usually, borrowed from mythological subjects.
90164
90165 He is introduced, by Plato, as a handsome young man, well dressed, of polished manners, courted by the fashion, wealth and wisdom of [[Athens]], and dispensing hospitality with ease and refinement. The [[Epideixis]], in praise of love, which he recites in the Symposium, is full of the artificial and rhetorical expressions which might be expected from a former pupil of [[Gorgias]]. Aristotle tells us that he was the first to introduce into the drama arbitrary choral songs, which had nothing to do with the subject, and that he wrote pieces with fictitious names, which appear to have been half way between the idyl and comedy. His intimacy with Aristophanes doubtless saved him from many well-deserved strictures, though in one of his comedies, the latter burlesques his flowery style, representing him as a delicate and effeminate youth, and it may be only for the sake of punning on his name that he makes Dionysus call him a noble poet.
90166
90167 Agathon was a friend of [[Euripides]], accompanying him to the court of Archelaus of Macedon, where he died about 402 BCE. He had all the faults, without the genius, of his famous contemporary, and these he carried to excess, attempting to surprise the spectators with unexpected developments and strange, improbable dÊnouments. Add to this his fondness for [[epigram]], antitheses and other rhetorical embellishments, after the fashion of Gorgias, and no wonder that whatever he possessed of ability was smothered beneath his mannerisms. Yet, of the latter, he appears to have been proud, considering them essential to his verse; for when asked to purge himself of such blemishes, he replied: &quot;You do not see that that would be to purge Agathon's play of Agathon.&quot; His poetry was full of trope, inflection and metaphor; glittering with sparkling ideas and flowing softly along, with harmonious words and nice construction, but lacking in the element of truly virile expression and deficient in manly thought and vigor. With him begins the decline of tragic art in its higher sense.
90168
90169 See: Aristophanes, ''Thesmoph.'' 59, 106, ''Eccles.'' 100
90170
90171 ==References==
90172
90173 *''The Drama: Its History, Literature and Influence on Civilization'', volume 1, by [[Alfred Bates]]. ([[London]]: [[Historical Publishing Company]], [[1906]])
90174
90175 [[Category:Ancient Athenians]]
90176 [[Category:Ancient Greek dramatists and playwrights]]
90177
90178 [[de:Agathon von Athen]]
90179 [[fr:Agathon (poète)]]
90180 [[hu:AgathÃŗn]]
90181 [[pl:Agaton (tragediopisarz)]]</text>
90182 </revision>
90183 </page>
90184 <page>
90185 <title>Agesilaus II</title>
90186 <id>1550</id>
90187 <revision>
90188 <id>39538651</id>
90189 <timestamp>2006-02-14T04:04:06Z</timestamp>
90190 <contributor>
90191 <username>Akendall</username>
90192 <id>764469</id>
90193 </contributor>
90194 <comment>{{Plutarch's lives}}</comment>
90195 <text xml:space="preserve">'''Agesilaus II''', or '''Agesilaos II''' ([[Greek language|Greek]] '''áŧˆÎŗΡĪƒÎšÎģÎŦÎŋĪ‚'''), king of [[Sparta]], of the [[Eurypontid]] family, was the son of [[Archidamus II]] and Eupolia, and younger step-brother of [[Agis II]], whom he succeeded about [[401 BC]]. Agis had, indeed, a son [[Leotychides]], but he was set aside as illegitimate, current rumour representing him as the son of [[Alcibiades]]. Agesilaus' success was largely due to [[Lysander]], who hoped to find in him a willing tool for the furtherance of his political designs; in this hope, however, Lysander was disappointed, and the increasing power of Agesilaus soon led to his downfall.
90196
90197 In [[396 BC]] Agesilaus was sent to Asia with a force of 2000 Neodamodes (enfranchized Helots) and 6000 allies to secure the [[Ancient Greece|Greek]] cities against a [[Persian Empire|Persian]] attack. On the eve of sailing from [[Aulis]] he attempted to offer a sacrifice, as [[Agamemnon]] had done before the [[Troy|Trojan]] expedition, but the [[Thebes, Greece|Thebans]] intervened to prevent it, an insult for which he never forgave them. On his arrival at [[Ephesus]] a three months' truce was concluded with [[Tissaphernes]], the [[satrap]] of [[Lydia]] and [[Caria]], but negotiations conducted during that time proved fruitless, and on its termination Agesilaus raided [[Phrygia]], where he easily won immense booty since [[Tissaphernes]] had concentrated his troops in Caria. After spending the winter in organizing a [[cavalry]] force, he made a successful incursion into [[Lydia]] in the spring of [[395 BC]]. [[Tithraustes]] was thereupon sent to replace Tissaphernes, who paid with his life for his continued failure. An armistice was concluded between Tithraustes and Agesilaus, who left the southern satrapy and again invaded [[Phrygia]], which he ravaged until the following spring. He then came to an agreement with the satrap [[Pharnabazus]] and once more turned southward.
90198
90199 It was said that he was planning a campaign in the interior, or even an attack on [[Artaxerxes II of Persia|Artaxerxes II]] himself, when he was recalled to [[Greece]] owing to the war between Sparta and the combined forces of [[Athens]], [[Thebes, Greece|Thebes]], [[Corinth, Greece|Corinth]], [[Argos]] and several minor states. A rapid march through [[Thrace]] and [[Macedon]]ia brought him to [[Thessaly]], where he repulsed the Thessalian cavalry who tried to impede him. Reinforced by [[Phocis|Phocian]] and [[Orchomenus|Orchomenian]] troops and a Spartan army, he met the confederate forces at [[Chaeronea]] in [[Boeotia]], and in a hotly contested battle was
90200 technically victorious, but the success was a barren one and he had to retire by way of [[Delphi]] to the [[Peloponnese]]. Shortly before this battle the Spartan [[navy]], of which he had received the supreme command, was totally defeated off [[Knidos|Cnidus]] by a powerful Persian fleet under [[Conon]] and [[Pharnabazus]].
90201
90202 Subsequently Agesilaus took a prominent part in the [[Corinthian War]], making several successful expeditions into Corinthian territory and capturing [[Lechaeum]] and [[Piraeus]]. The loss, however, of a mora, destroyed by [[Iphicrates]], neutralized these successes, and Agesilaus returned to Sparta. In [[389 BC]] he conducted a campaign in [[Acarnania]], but
90203 two years later the [[Peace of Antalcidas]], warmly supported by Agesilaus, put an end to hostilities. When war broke out afresh with Thebes the king twice invaded [[Boeotia]]
90204 ([[378 BC]], [[377 BC]]), and it was on his advice that [[Cleombrotus]] was ordered to march against Thebes in [[371 BC]]. Cleombrotus was defeated at Leuctra and the Spartan supremacy overthrown.
90205
90206 In [[370 BC]] Agesilaus tried to restore Spartan prestige by an invasion of [[Mantinea]]n territory, and his prudence and heroism saved Sparta when her enemies, led by [[Epaminondas]], penetrated [[Laconia]] that same year, and again in [[362 BC]] when they all but succeeded in seizing the city by a rapid and unexpected march. The [[battle of Mantinea (362 BC)]], in which Agesilaus took no part, was followed by a general peace: Sparta, however, stood aloof, hoping even yet to recover her supremacy. In order to gain money for prosecuting the war Agesilaus had supported the revolted [[satrap]]s, and in [[361 BC]] he went to [[Egypt]] at the head of a [[mercenary]] force to aid [[Tachos]] against Persia. He soon transferred his services to Tachos's cousin and rival [[Nectanebo II]], who, in return for his help, gave him a sum of over 200 talents. On his way home Agesilaus died at the age of 83, after a reign of some 41 years.
90207
90208 Agesilaus was of small stature and unimpressive appearance, and was somewhat lame from birth. These facts were used as an argument against his succession, an [[oracle]] having warned Sparta against a &quot;lame reign.&quot; He was a successful leader in [[guerrilla warfare]], alert and quick, yet cautious--a man, moreover, whose personal bravery was unquestioned. As a statesman he won himself both enthusiastic adherents and bitter enemies, but of his patriotism there can be no doubt. He lived in the most frugal style alike at home and in the field, and though his campaigns were undertaken largely to secure booty, he was content to enrich the state and his friends and to return as poor as he had set forth. The worst trait in his character is his implacable hatred of Thebes, which led directly to the [[battle of Leuctra]] and Sparta's fall from her position of supremacy.
90209
90210 According to [[Plutarch]], he was once asked whether he wanted a memorial erected in his honour. He replied, “If I have done any noble action, that is a sufficient memorial; if I have done nothing noble, all the statues in the world will not preserve my memory.” (In [[Ancient Greek|Greek]]: Εáŧ° ÎŗáŊ°Ī Ī„Κ ÎēÎąÎģáŊ¸ÎŊ áŧ”ĪÎŗÎŋÎŊ Ī€ÎĩĪ€ÎŋÎ¯ÎˇÎēÎą, Ī„ÎŋáŋĻĪ„Îŋ ÎŧÎŊΡÎŧÎĩáŋ–ÎŋÎŊ áŧĪƒĪ„ίÎŊ; Îĩáŧ° δáŊ˛ ÎŧΡδáŊ˛ÎŊ, ÎŋáŊÎ´' Îŋáŧą Ī€ÎŦÎŊĪ„ÎĩĪ‚ áŧ€ÎŊδĪÎšÎŦÎŊĪ„ÎĩĪ‚.)
90211
90212 His daughter [[Cynisca]] became the only woman in ancient history to win at the [[ancient Olympic Games|Olympic Games]].
90213
90214 Quote
90215 - Do not go after any man with nothing left to lose, for he will come back at you with the strength of 10 men.
90216
90217 == External links ==
90218 * Biography: [http://www.gottwein.de/Lat/nepos/ages01.php Cornelis Nepos (latin - german)]
90219 * [http://www.livius.org/ag-ai/agesilaus/agesilaus.htm Agesilaus] from [http://www.livius.org Livius.Org]
90220
90221 {{Plutarch's lives}}
90222 [[Category:360 BC deaths]]
90223 [[Category:Pederastic lovers]]
90224 [[Category:Rulers of Sparta]]
90225 [[Category:Ancient Greek generals]]
90226
90227 [[de:Agesilaos II.]]
90228 [[fr:AgÊsilas II]]
90229 [[he:אגסילאוס]]
90230 [[nl:AgesilaÃŧs II]]
90231 [[no:Agesilaus II]]
90232 [[pl:Agesilaos II]]
90233 [[fi:Agesilaos]]
90234 [[zh:é˜ŋæ ŧčĨŋ莱äēŒä¸–]]</text>
90235 </revision>
90236 </page>
90237 <page>
90238 <title>Agis</title>
90239 <id>1551</id>
90240 <revision>
90241 <id>18706747</id>
90242 <timestamp>2005-07-12T23:26:47Z</timestamp>
90243 <contributor>
90244 <username>BDAbramson</username>
90245 <id>196446</id>
90246 </contributor>
90247 <minor />
90248 <comment>disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
90249 <text xml:space="preserve">'''Agis''' may refer to:
90250 * [[Agis I]]---a [[Sparta|Spartan]] King.
90251 * [[Agis II]]---a [[Sparta|Spartan]] King.
90252 * [[Agis III]]---a [[Sparta|Spartan]] King.
90253 * [[Agis IV]]---a [[Sparta|Spartan]] King. [[Plutarch]] included a chapter on him in his [[Parallel Lives]].
90254 *'''Agis'''---a [[Paionian]] king of the pre-Hellenistic era.
90255 *'''Agis'''---an ancient [[Ancient Greece|Greek]] author.
90256 {{disambig}}
90257 [[nl:Agis]]
90258 [[pl:Agis]]</text>
90259 </revision>
90260 </page>
90261 <page>
90262 <title>Antonio Agliardi</title>
90263 <id>1552</id>
90264 <revision>
90265 <id>34400910</id>
90266 <timestamp>2006-01-08T20:27:22Z</timestamp>
90267 <contributor>
90268 <username>Drini</username>
90269 <id>195374</id>
90270 </contributor>
90271 <comment>[[WP:AWB|AWB Assisted]] fixing redir</comment>
90272 <text xml:space="preserve">'''Antonio Cardinal Agliardi''' ([[September 4]], [[1832]] &amp;ndash; [[May 1]], [[1915]]) was a [[Roman Catholic]] [[Cardinal (Catholicism)|Cardinal]], [[archbishop]], and papal diplomat. He was born at Cologno ([[province of Bergamo|Bergamo]]), [[Italy]].
90273
90274 He studied [[theology]] and [[canon law]], and after acting as parish priest in his native diocese for twelve years was sent by the [[pope]] to [[Canada]] as a [[bishop]]'s [[chaplain]]. On his return he was appointed secretary to the [[Congregation of the Propaganda]].
90275
90276 In [[1884]], he was created by [[Pope Leo XIII|Leo XIII]] [[archbishop of Caesarea]] ''in partibus'' and sent to [[India]] as an [[Apostolic Delegate]] to report on the establishment of the [[hierarchy]] there.
90277
90278 In [[1887]] he again visited India, to carry out the terms of the [[concordat]] arranged with [[Portugal]]. The same year he was appointed secretary to the Congregation ''super negotiis ecclesiae extraordinariis'', in [[1889]] became papal [[nuncio]] at [[Munich]] and in [[1892]] at [[Vienna]]. Allowing himself to be involved in the ecclesiastical disputes by which [[Hungary]] was divided
90279 in [[1895]], he was made the subject of formal complaint by the Hungarian government and in [[1896]] was recalled.
90280
90281 In the [[consistery]] of 1896 he was elevated to [[Cardinal Priest]] of ''[[Ss. Nereo ed Acheillo]]'''. In [[1899]] he was made [[Cardinal Bishop]] of [[Albano]]. In [[1903]], he was named vice-chancellor of the Catholic Church, and became the Chancellor of the [[Apostolic Chancery]] in the [[Secretariat of State (Vatican)|Secretariat of State]] in [[1908]].
90282
90283 He died in [[Rome]].
90284
90285 ==References==
90286 *{{1911}}
90287 *[http://catholic-hierarchy.org/bishop/bagliardi.html Catholic-Hierarchy.org]
90288
90289
90290 [[Category:1832 births|Agliardi]]
90291 [[Category:1915 deaths|Agliardi]]
90292 [[Category:Diplomats of the Holy See|Agliardi]]
90293 [[Category:Italian cardinals|Agliardi]]
90294 [[Category:Natives of Lombardy|Agliardi]]
90295 [[Category:Roman Catholic archbishops|Agliardi]]
90296
90297 [[de:Antonio Agliardi]]
90298 [[no:Antonio Agliardi]]</text>
90299 </revision>
90300 </page>
90301 <page>
90302 <title>Agnes of Meran</title>
90303 <id>1553</id>
90304 <revision>
90305 <id>40359124</id>
90306 <timestamp>2006-02-20T01:16:24Z</timestamp>
90307 <contributor>
90308 <username>Rich Farmbrough</username>
90309 <id>82835</id>
90310 </contributor>
90311 <minor />
90312 <comment>External links per MoS.</comment>
90313 <text xml:space="preserve">'''Agnes Maria of Andechs-Meran''' (d. [[1201]]), queen of [[France]], was the daughter of [[Bertold IV]] (d. [[1251]]), who was independent Count of [[Andechs]], a castle and territory near [[Ammersee]], [[Bavaria]] and from [[1183]] duke of [[Meran]] in [[Tirol]], which has derived its name from his castle Tyrol, above the valley of Meran. The count held his fiefs directly from the Emperor, so he was independent of the great territorial dukes of [[Germany]]. Bertold IV was made Archbishop of [[Kalocsa]] (in [[Hungary]]) and in [[1218]] he was made [[Aquileia|Patriarch of Aquileia]].
90314
90315 She is called Marie by some of the French chroniclers. In June [[1196]] she married [[Philip II of France|Philip Augustus]] (Philip II), king of France, who had repudiated his second wife [[Ingeborg of Denmark]] in [[1193]]. [[Pope Innocent III]] espoused the cause of Ingeborg; but Philip did not submit until [[1200]], when, nine months after [[interdict]] had been added to [[excommunication]], he consented to a separation from Agnes. She died broken-hearted in July of the next year, at the castle of [[Poissy]], and was buried in the church of [[St. Corentin]], near [[Nantes]]. Her two children by Philip II, [[Philip, count of Clermont]] (d. [[1234]]), and Mary, who married Philip, [[Marquis of Namur|count of Namur]], were legitimized by the pope in [[1201]] at the request of the king. Little is known of the personality of Agnes, beyond the remarkable influence which she seems to have exercised over Philip II. She has been made the heroine of a [[tragedy]] by [[François Ponsard]], ''Agnès de MÊranie''.
90316
90317 Her sister [[Hedwig of Andechs]] married [[Henry I, duke of Silesia]] and was canonized as Saint Hedwig in [[1267]]. Another sister, [[Gertrude of Meran|Gertrude]] was Queen of Hungary.
90318
90319 ==External links==
90320 *[http://www.niagara.com/~jezovnik/korenine_part_iii.htm Jo&amp;#382;ko &amp;Scaron;avli, &quot;Andechs (A Bavarian Family with Carantanian Roots)&quot;]
90321
90322 ==References==
90323 *{{1911}}
90324
90325 [[Category:1201 deaths|Agnes of Meran]]
90326 [[Category:French royalty]]
90327
90328 [[fr:Agnès de MÊranie]]
90329 [[de:Agnes von Meran]]</text>
90330 </revision>
90331 </page>
90332 <page>
90333 <title>Agni</title>
90334 <id>1554</id>
90335 <revision>
90336 <id>41824132</id>
90337 <timestamp>2006-03-01T23:57:27Z</timestamp>
90338 <contributor>
90339 <ip>80.6.158.55</ip>
90340 </contributor>
90341 <text xml:space="preserve">{{cleanup-date|December 2005}}
90342
90343 :''This article is about the Hindu fire god. For other uses, see [[Agni (disambiguation)]].''
90344 ----
90345
90346
90347 '''Agni''' is a [[Hindu]] deity. The word ''agni'' is [[Sanskrit]] for &quot;fire&quot; (noun), cognate with [[Latin]] ''ignis'' ''Ignite''
90348
90349 In [[Hinduism]], he is a [[deva]], second only to [[Indra]] in the power and importance attributed to him in [[Vedic mythology]]. He is [[Indra]]'s twin, and therefore a son of [[Dyaus Pita]] and [[Prthivi]]. While in other version, he is a son of [[Kasyapa]] and [[Aditi]] or a Queen who kept her pregnancy secret from her husband. He has ten mothers, or ten sisters, or ten maidservants, who represent the ten fingers of the man who lights the fire. He has two parents: these represent the two sticks which, when rubbed together swiftly, create fire (called a fire drill). Some say that he destroyed his parents when he was born because they could not care for him. He is married to [[Svaha]] and father of [[Karttikeya]] by either Svaha or [[Ganga]]. He is one of the [[Ashta-Dikpalas]], representing the southeast.
90350
90351 His name is the first word of the first hymn of the [[Rigveda]]:-
90352 &lt;br&gt;&amp;#2309;&amp;#2367;&amp;#2386;&amp;#2327;&amp;#2381;&amp;#2344;&amp;#2350;&amp;#2381; &amp;#2312;&amp;#2385;&amp;#2355;&amp;#2375; &amp;#2346;&amp;#2369;&amp;#2352;&amp;#2379;&amp;#2386;&amp;#2367;&amp;#2361;&amp;#2385;&amp;#2340;&amp;#2306; &amp;#2351;&amp;#2332;&amp;#2381;&amp;#2334;&amp;#2386;&amp;#2360;&amp;#2381;&amp;#2351;&amp;#2385; &amp;#2342;&amp;#2375;&amp;#2357;&amp;#2386;&amp;#2350;&amp;#2381; &amp;#2315;&amp;#2367;&amp;#2386;&amp;#2340;&amp;#2381;&amp;#2357;&amp;#2332;&amp;#2385;&amp;#2350;&amp;#2381; &amp;#2404;
90353 &lt;br&gt;&amp;#2361;&amp;#2379;&amp;#2340;&amp;#2366;&amp;#2385;&amp;#2352;&amp;#2306; &amp;#2352;&amp;#2340;&amp;#2381;&amp;#2344;&amp;#2343;&amp;#2366;&amp;#2386;&amp;#2340;&amp;#2385;&amp;#2350;&amp;#2350;&amp;#2381; &amp;#2405;
90354 &lt;br&gt;''agn&lt;u&gt;i&lt;/u&gt;m &amp;#299;&amp;#316;e pur&lt;u&gt;o&lt;/u&gt;hitam''
90355 / ''yajÃą&lt;u&gt;a&lt;/u&gt;sya dev&lt;u&gt;a&lt;/u&gt;m &amp;#343;tv&lt;u&gt;i&lt;/u&gt;jam''
90356 / ''hot&amp;#257;raM ratnadh&lt;u&gt;&amp;#257;&lt;/u&gt;tamam.''
90357 &lt;br&gt;(The vowels which are underlined here, carry the Vedic ''ud&amp;#257;tta'' [[pitch accent]].)
90358 &lt;br&gt;&quot;I praise Agni, the priest of the house, the divine ministrant of sacrifice, the invoker, the best bestower of treasure.&quot;
90359
90360 The sacrifices made to Agni go to the [[deity|deities]] because Agni is a messenger from and to the other gods. He is ever-young, because the fire is re-lit every day; but also he is immortal.
90361
90362 In some stories about the Hindu gods, Agni is the one who is sent to the front in dangerous situations.
90363
90364 Another hymn runs: &quot;No god indeed, no mortal is beyond the might of thee, the mighty One.&quot;. He lives among men and is miraculously reborn each day by the fire-drill, the friction of the two sticks which are regarded as his parents. He is the supreme director of [[religion|religious]] ceremonies and duties, and even has the power of influencing the fate of each man in the future world. Agni is also representative of the power which [[digestion|digests]] the food in every person's [[stomach]]. He created the [[star]]s with the sparks resulting from his flames.
90365
90366 He is worshipped under a threefold form: fire on [[earth]] and [[lightning]] and the [[sun]]. His cult survived the change of the ancient Vedic nature-worship into modern [[Hinduism]], and there are fire-priests (agnihotr) whose duty is to watch over his worshippers. The sacred fire-drill for procuring the temple-fire by friction -- symbolic of Agni's daily miraculous birth -- is still used.
90367
90368 In Hindu [[art]], Agni is represented as [[red]] and two-faced (sometimes covered with [[butter]]), suggesting both his destructive and beneficent qualities, and with [[black]] [[eye]]s and [[hair]], three [[Human leg|legs]] and seven [[arm]]s. He rides a [[ram (sheep)|ram]], or a [[chariot]] pulled by [[goat]]s or, more rarely, [[parrot]]s. Seven rays of light emanate from his body.
90369
90370 The [[Rigveda]] often says that Agni arises from water or dwells in the waters. He may have originally been the same as [[Apam Napat]], which see.
90371
90372 Although the Vedic fire-sacrifice ([[yagya]]) has largely disappeared from modern Hinduism, Agni with the fire-sacrifice is still the mode of ritual in any modern Hindu marriage, where Agni is said to be the chief '''sakshi''' or witness of the marriage and guardian of the santity of marriage. Indeed, without seven encirclements around the holy fire, the modern Hindu Marriage Act of law regards a Hindu marriage as void.
90373
90374 ==Agni in other faiths and religions==
90375 In [[Zoroastrianism]], he is [[Atar]], literally, [[fire]], which symbolically represents the life-animating force radiating from [[Ahura Mazda]]. In Indo-Tibetan [[Buddhism]], he is a [[lokapala]] guarding the South-East. (see e.g. ''jigten lugs kyi bstan bcos:'' = &quot;Make your hearth in the South-East corner of the house, which is the quarter of Agni&quot;). He also plays a central role in most Buddhist [[homa (ritual)|homa]] (fire-[[puja]]) rites.
90376 ==See also==
90377 *[[Hindu deities]]
90378
90379 == External links ==
90380 *[http://www.crystalrivers.com/poetry/agni.html A Contemplation on the god Agni - The Purifying Fire of the Gods]
90381
90382 {{Hindu Deities and Texts}}
90383
90384 [[Category:Fire gods]]
90385 [[Category:Hindu gods]]
90386 [[Category:Solar gods]]
90387 [[Category:Persian mythology]]
90388
90389 [[ar:ØĸØŦŲ†ŲŠ]]
90390 [[ca:Agni]]
90391 [[de:Agni]]
90392 [[es:Agni]]
90393 [[fr:Agni]]
90394 [[it:Agni]]
90395 [[lt:Agnis]]
90396 [[ja:ã‚ĸグニ]]
90397 [[nl:Agni]]
90398 [[pl:Agni]]
90399 [[pt:Agni]]
90400 [[ru:АĐŗĐŊи]]
90401 [[sl:Agni]]
90402 [[fi:Agni]]
90403 [[sv:Agni]]</text>
90404 </revision>
90405 </page>
90406 <page>
90407 <title>Agrippina the elder</title>
90408 <id>1556</id>
90409 <revision>
90410 <id>41660812</id>
90411 <timestamp>2006-02-28T22:13:04Z</timestamp>
90412 <contributor>
90413 <username>Rich Farmbrough</username>
90414 <id>82835</id>
90415 </contributor>
90416 <minor />
90417 <comment>Wikify dates</comment>
90418 <text xml:space="preserve">[[Image:Agrippina the elder.jpg|right|thumb|Agrippina the Elder]]
90419
90420 '''Julia Vipsania Agrippina''' ([[14 October]]-[[18 October]] [[14 BC]]&amp;#8211; AD [[33]]), known as '''Agrippina Major''' ('''Agrippina &quot;the Elder&quot;'''), was one of the most powerful women in the [[Roman Empire]] in the early [[1st century]] AD. She was the daughter of [[Marcus Vipsanius Agrippa]] by his third wife [[Julia Caesaris]], was grand-daughter of [[Augustus Caesar|Augustus]], wife of [[Germanicus]], and the mother of [[Agrippina the younger|Agrippina Minor]] and [[Caligula]].
90421
90422 Agrippina was born in [[Athens]], [[Greece]]. In AD 5 she had married Germanicus, her second cousin and step-grandson of the Emperor Augustus. The well-regarded Germanicus was a candidate for the succession and had won fame campaigning in [[Germania]] and [[Gaul]], where he was accompanied by Agrippina. This was most unusual for Roman wives, as convention required them to stay at home, and earned her a reputation as a model for heroic womanhood. She bore him two children in Gaul, a boy and [[Agrippina the younger|Agrippina Minor]] in the Rhine frontier.
90423
90424 Agrippina and Germanicus travelled to the [[Near East]] in AD 19, incurring the displeasure of the emperor [[Tiberius]]. He quarrelled with [[Gnaeus Calpurnius Piso]], the governor of [[Syria (Roman province)|Syria]], and died in [[Antioch]] in mysterious circumstances. It was widely suspected that Germanicus had been poisoned &amp;ndash; perhaps on the orders of Tiberius himself &amp;ndash; and Agrippina returned to Rome to avenge his death. She boldly accused Piso of the murder of Germanicus. To avoid public infamy, Piso committed suicide.
90425
90426 From AD 19 to 29, Agrippina remained in Rome, becoming increasingly involved with a group of senators who opposed the growing power of Tiberius' favourite [[Sejanus]]. Her relations with the emperor became increasingly fraught as she made it clear that she believed that he was responsible for the death of Germanicus. Tiberius also evidently feared that she might seek to secure the throne for her own children. In 26, the emperor rejected her request that she be allowed to marry again.
90427
90428 Agrippina and her sons Drusus and [[Nero Caesar]] were arrested in 29 on the orders of Tiberius. They were tried by the Senate and Agrippina was banished to the island of Pandataria (now called [[Ventotene]]) in the [[Tyrrhenian Sea]] off the coast of [[Campania]], where she died on [[October 18]], [[33]] in suspicious circumstances. The official story was that she had starved herself to death, but it seems equally likely that she was starved on the orders of the emperor. After her death, Tiberius convinced the senate to revoke all her former privileges and declared her birthday to be a day of ill-omen.
90429
90430 Agrippina had nine children by Germanicus, several of whom died young. Drusus died of starvation after being imprisoned in Rome and Nero Caesar either committed suicide or was murdered after his trial in 29. Only two of her children are of historical importance: [[Agrippina the younger|Agrippina Minor]], also known as Agrippina the Younger, and Gaius Caesar, who succeeded Tiberius under the name of [[Caligula]]. Despite Tiberius' enmity towards Caligula's elder brothers, he nonetheless made Caligula and his cousin [[Tiberius Gemellus]] joint heirs to his property.
90431
90432 Agrippina was regarded by contemporaries as being a woman of the highest character and exemplary Roman morals. There is a portrait of her in the [[Capitoline Museums]] at [[Rome]] and a bronze medal in the [[British Museum]] showing her ashes being brought back to [[Rome]] by order of Caligula.
90433
90434 See also
90435 :[[Tacitus]], ''[[Annals (Tacitus)|Annals]]'' i.-vi.
90436 :[[Suetonius]], ''The Twelve Caesars''
90437 :[[Julio-Claudian Family Tree]]
90438
90439 ==External links==
90440 {{Commons|Agrippina Major}}
90441
90442 [[Category:14 BC births]]
90443 [[Category:33 deaths]]
90444 [[Category:Julio-Claudian Dynasty]]
90445 [[Category:Ancient Roman women]]
90446 [[Category:Women in war]]
90447
90448 [[de:Agrippina die Ältere]]
90449 [[es:Agripina la mayor]]
90450 [[fr:Agrippine l'AÎnÊe]]
90451 [[hu:Agrippina Maior]]
90452 [[nl:Vipsania Agrippina maior]]
90453 [[ja:大ã‚ĸグãƒĒッピナ]]
90454 [[pl:Agrypina Starsza]]
90455 [[pt:Agripina]]
90456 [[sv:Agrippina d.ä.]]
90457 [[zh:大é˜ŋæ ŧ里įšŽå¨œ]]</text>
90458 </revision>
90459 </page>
90460 <page>
90461 <title>Agrippina the Younger</title>
90462 <id>1557</id>
90463 <revision>
90464 <id>41555964</id>
90465 <timestamp>2006-02-28T03:11:46Z</timestamp>
90466 <contributor>
90467 <ip>69.250.137.163</ip>
90468 </contributor>
90469 <text xml:space="preserve">[[Image:agripila.JPG|84px|right|Agrippina the younger]]
90470 '''Julia Vipsania Agrippina Minor''' or ''' Agrippina Minor''' (Latin for &quot;the younger&quot;) ([[November 7]], [[15|AD 15]] &amp;ndash; March [[59]]), often called &quot;'''Agrippinilla'''&quot; to distinguish her from her mother, was the daughter of [[Germanicus]] and [[Agrippina the elder|Agrippina Major]]. She was sister of [[Caligula]], great granddaughter of [[Augustus]], granddaughter and great-niece of [[Tiberius]], niece and wife of [[Claudius]], and the mother of [[Nero]]. She was born at Oppidum Ubiorum on the [[Rhine]], afterwards named in her honour Colonia Agrippinae (modern [[Cologne]], Germany).
90471
90472 Agrippina's first marriage was to consul (1st century AD) [[Gnaeus Domitius Ahenobarbus]]. From this marriage she gave birth to Lucius Domitius Ahenobarbus, who would become [[Roman Emperor]] [[Nero]]. Her husband died in January, [[40]]. While still married, Agrippina participated openly in her brother Caligula's decadent court, where, according to some sources, at his instigation she prostituted herself in a palace. While it was generally agreed that Agrippinilla, as well as her sisters, had ongoing sexual relationships with their brother Caligula, incest was an oft-used criminal accusation against the aristocracy, because it was impossible to refute successfully. As Agrippina and her sister became more problematic for their brother, Caligula sent them into exile for a time, where it is said she was forced to dive for sponges to make a living. In January, [[41]], Agrippina had a second marriage to the affluent [[Gaius Sallustius Crispus Passienus]]. He died between [[44]] and [[47]], leaving his estate to Agrippina.
90473
90474 As a widow, Agrippina was courted by the freedman Pallas as a possible marriage match to her own uncle, Emperor [[Claudius]], and became his favourite councillor, even granted the honor of being called Augusta (a title which no other queen had ever received). They were married on New Year's Day of [[49]], after the death of Claudius's previous wife [[Messalina]] due her part in a failed coup attempt. As his wife, she commanded Roman legions and Celtic captives assumed that she, not Claudius, was the martial leader and bowed before her throne instead of his.
90475
90476 Agrippina then proceeded to persuade Claudius to adopt her son, thereby placing Nero in the line of succession to the Imperial throne over Claudius's own son, [[Britannicus]]. A true Imperial politician, Agrippina did not reject murder as a way to win her battles. Many ancient sources credited her with poisoning Claudius in [[54]] with a plate of poison mushrooms, hence enabling Nero to quickly take the throne as emperor.
90477
90478 For some time, Agrippina influenced Nero as he was relatively ill-equipped to rule on his own. But Nero eventually felt that she was taking on too much power relative to her position as a woman of Rome. He deprived her of her honours and exiled her from the palace, but that was not enough. Three times Nero tried to poison Agrippina, but she had been raised in the Imperial family and was accustomed to taking antidotes. Nero had a machine built and attached to the roof of her bedroom. The machine was designed to make the ceiling collapse &amp;mdash; the plot failed with the machine. According to the historians [[Gaius Cornelius Tacitus|Tacitus]] and [[Suetonius]], Nero then plotted her death by sending for her in a boat constructed to collapse, intending to [[drowning | drown]] Agrippina. However, only some of the crew were in on the plot; their efforts were hampered by the rest of the crew trying to save the ship. As the ship sank, one of her handmaidens thought to save herself by crying that she was Agrippina, thinking they would take special care of her. Instead the maid was instantly beaten to death with oars and chains. The real Agrippina realised what was happening and in the confusion managed to swim away where a passing fisherman picked her up. Terrified that his cover had been blown, Nero instantly sent men to charge her with treason and summarily execute her. Legend states that when the Emperor's soldiers came to kill her, Agrippina pulled back her clothes and ordered them to stab her in the belly that had housed such a monstrous son.
90479
90480 ''See also:'' [[Julio-Claudian Family Tree]]
90481
90482 ==Notable sources==
90483 ===Ancient===
90484 '''Tactitus''' [Critical view, considered her vici
90485
90486 ous and had a strong disposition against her due to her femininity and influential role in politics. Perhaps the most comprehensive of Ancient sources.]'''Suetonius'''and evil
90487
90488 '''Dio Cassius'''
90489
90490 ===Modern===
90491 '''Scullard''' [An overly critical view of Agrippina, suggesting she was ambitious and unscrupulous and a depraved sexual physcopath. &quot;Agrippina struck down a series of victims; no man or woman was safe if she suspected rivalry or desired their wealth.&quot;]
90492
90493 '''Ferrero''' [Sympathetic and understanding, suggesting Agrippina has been judged harshly by history. Suggesting her marriage to Claudius was to a weak emperor who was, because of his hesitations and terrors, a threat to the imperial authority and government. She saw it her duty to compensate for the innumerable deficiencies of her strange husband through her own intelligence and strength of will.]
90494
90495 '''Barret''' [A reasonable view, comparing Scullard's criticisms to Ferrero's apologies.]
90496
90497 ==Modern==
90498 *Salmonson, Jessica Amanda.(1991) The Encyclopedia of Amazons. Paragon House. Pages 4-5.
90499
90500
90501 ==External links==
90502 {{Commons|Agrippina Minor}}
90503
90504 [[Category:15 births]]
90505 [[Category:59 deaths]]
90506 [[Category:Ancient Roman women]]
90507 [[Category:Julio-Claudian Dynasty]]
90508 [[Category:Roman empresses]]
90509 [[Category:Women in war]]
90510
90511 [[de:Agrippina die JÃŧngere]]
90512 [[es:Agripinila]]
90513 [[fr:Agrippine la Jeune]]
90514 [[it:Agrippina minore]]
90515 [[nl:Julia Agrippina minor]]
90516 [[ja:小ã‚ĸグãƒĒッピナ]]
90517 [[pl:Agrypina Młodsza]]
90518 [[pt:Agripina Minor]]
90519 [[sv:Agrippina d.y.]]
90520 [[zh:小é˜ŋæ ŧ里įšŽå¨œ]]</text>
90521 </revision>
90522 </page>
90523 <page>
90524 <title>American Chinese cuisine</title>
90525 <id>1558</id>
90526 <revision>
90527 <id>42017279</id>
90528 <timestamp>2006-03-03T06:15:31Z</timestamp>
90529 <contributor>
90530 <username>Ichelhof</username>
90531 <id>2775</id>
90532 </contributor>
90533 <comment>/* American vs. Traditional menus */ authentic vegetables just as common in china as european vegetables in american chinese cuisine</comment>
90534 <text xml:space="preserve">{{Cuisine_of_China}}
90535
90536 '''American Chinese cuisine''' is a unique style of cooking served by Chinese [[restaurants]] in the [[United States]]. This new type of cooking was created for [[Western World|Western]] tastes, but Westerners exposed only to this variety may not realize that it differs from the [[Chinese cuisine|cuisine of China]]. Some restaurants advertise their status by writing &quot;Western food&quot; on their signs in [[hanzi|Chinese]]. It deters those who seek more traditional dishes, while still attracting those who are either unable to read Chinese or are looking for westernized fare. [[Canadian Chinese cuisine]] is quite similar to American Chinese cuisine.
90537
90538 == History ==
90539
90540 In the 19th century, Chinese restaurateurs invented American Chinese cuisine when they modified their food for American tastes. First catering to [[railroad]] workers, they opened restaurants in towns where Chinese food was completely unknown.
90541
90542 The influx of immigrants in the late 20th century disdained the Americanized dishes, preferring more traditional Chinese food. Classical Chinese cuisine now dominates major cities like [[San Francisco, California|San Francisco]] and [[New York, New York|New York]].
90543
90544 But American Chinese cuisine remains, especially in places with few [[Chinese American]]s. One finds Americanized cuisine in &quot;[[mom and pop]]&quot; [[restaurant|restaurants]], &quot;tourist trap&quot; [[diner|diners]], and small town restaurants. [[Panda Express]] and Manchu WOK are popular franchise restaurants that offer Westernized dishes in shopping malls.
90545
90546 ==American vs. Traditional menus==
90547
90548 American Chinese food treats vegetables as garnish while authentic styles emphasize vegetables. Authentic Chinese cuisine makes frequent use of Asian leafy vegetables like [[bok choy]] and [[gai-lan]], and puts a greater emphasis on [[seafood]]. American Chinese food is usually less pungent than authentic cuisine.
90549
90550 [[Image:Chinese buffet2.jpg|left|thumb|250px|A Chinese buffet restaurant in the U.S.]]
90551 American Chinese food tends to be cooked very quickly with lots of oil and salt. Many dishes are quickly and easily prepared, and require inexpensive ingredients. [[Stir-frying]], [[Pan frying|pan-frying]], and [[deep-frying]] tend to be the most common cooking techniques which are all easily done using a [[wok]]. The food also has a reputation for high levels of [[Monosodium glutamate|MSG]] to enhance the flavor; the symptoms of MSG sensitivity have been dubbed &quot;[[Chinese restaurant syndrome]]&quot; or &quot;Chinese food syndrome&quot;. While there is heated scientific debate over whether or not MSG is harmful, market forces and customer demand have enouraged many restaurants to offer &quot;MSG Free&quot; or &quot;No MSG&quot; menus.
90552
90553 Most American Chinese establishments cater to non-Chinese customers, and their menus are written in English. Those that do have Chinese menus, have ones that are different from the English version. Americanized menus might exclude some foods which the Chinese consider delicacies, like liver, and chicken feet. Americanized menus often include:
90554
90555 * [[Batter-fried meat]] &amp;mdash; Meat that has been deep fried in bread or flour, such as ''sesame chicken'', ''lemon chicken'', ''orange chicken'', ''[[sweet and sour pork]]'', and ''[[General Tso's chicken]]'' is often overemphasized in American-style Chinese dishes. Battered meat occasionally appears in [[Hunan_cuisine|Hunanese]] dishes, but it generally uses lighter sauces with less sugar and corn syrup.
90556 **The [[chicken ball]] uses a large amount of leavening and flour in its preparation and battering process which causes them to be more similar to doughy &quot;[[Hushpuppy|hush puppies]]&quot; than actual batter-fried meat.
90557 * [[Chinese chicken salad]] &amp;mdash; Salad is not a Chinese dish. This is a 100% western dish. It is served in Chinese restaurants, because it contains crispy noodle (fried wonton skin) and sesame dressing. Some restaurants serve the salad with Mandarin Orange.
90558 * [[Chop suey]] &amp;mdash; Connotes &quot;leftovers&quot; in Chinese. It is usually a mix of vegetables and meat in a brown sauce.
90559 * [[Chow mein]] &amp;mdash; literally means 'stir-fried noodles'. Chow mein consists of fried noodles with bits of meat and vegetables.
90560 * [[Crab rangoon]] &amp;mdash; Fried [[wonton]] skins stuffed with artificial crab meat and cream cheese, originally served at [[Trader Vic]]'s restaurant in the 1950s.
90561 * [[Egg foo young]] also egg foo yung
90562 * [[Egg roll]] &amp;mdash; While Chinese [[spring roll|spring rolls]] have a thin crispy skin with mushrooms, bamboo, and other vegetables inside, the New York version uses a thick, fried skin stuffed with cabbage. In other areas, [[bean sprout]]s form the basis of most of the filling. Other American versions remain closer in similarity to their spring roll style authentic counterparts.
90563 *[[Fortune cookie]] &amp;mdash; Invented at the Japanese Tea Garden restaurant in [[San Francisco]], fortune cookies became sweetened and found their way to American Chinese restaurants. Fortune cookies have become so popular in the U.S., that even some authentic Chinese restaurants serve them at the end of the meal. Some are even produced with Chinese-language translations of the English-language fortunes.
90564 * [[Fried rice]] &amp;mdash; Fried rice dishes are popular offerings in American Chinese food due to the speed and ease of preparation and their appeal to western tastes. Fried rice is generally prepared with rice cooled overnight, so this allows restaurants to put unserved leftover rice to good use.
90565 * [[Lo mein]] &amp;mdash; This is a New York-style Chinese food oddity. &quot;Lo mein&quot; in New York is closer to &quot;[[chow mein]]&quot; in the rest of the country. Strictly the term means &quot;mixed noodles&quot;, that is one made with eggs, as opposed to most noodles which are made without egg.
90566 * [[Moo shu pork]] &amp;mdash; The Chinese version uses more authentic ingredients (including [[wood ear]] fungi and [[daylily]] buds) and thin flour pancakes while the American version uses more Western vegetables and thicker pancakes.
90567 * [[Shrimp toast]] &amp;mdash; Triangles of bread, coated with egg, [[shrimp]], and [[water chestnut]]s, and then deep-fried or baked.
90568 * [[Wonton soup]] &amp;mdash; The soup noodle does not exist in American Chinese cuisine, while it is ubiquitous in many authentic styles. The closest popular example would be [[ramen]]. The true Cantonese Wonton Soup is a full meal in itself consisting of thin egg noodles and a few wontons in a pork soup broth.
90569
90570 ==Regional Variations on American Chinese cuisine==
90571 ===San Francisco===
90572 Since the early 1990s, many American Chinese restaurants influenced by the [[Cuisine of California]] have opened in [[San Francisco]] and the [[San Francisco Bay Area|Bay Area]]. The trademark dishes of American Chinese cuisine remain on the menu, but there is more emphasis on fresh vegetables, and the selection is vegetarian-friendly.
90573
90574 The new cuisine has exotic ingredients like [[mango]]es and [[portobello mushroom]]s. Other cuisines influence the menu: some restaurants substitute grilled flour tortillas for the rice pancakes in mu shu dishes; [[brown rice]] is often offered as an optional alternative to [[white rice]].
90575
90576 [[Chop suey]] is not widely available in [[San Francisco]], and the city's chow mein is different from Midwestern chow mein.
90577
90578 Authentic restaurants with Chinese-language menus may offer éģƒæ¯›éļ (Yale Cantonese: wÃ˛hng mouh gāai [Pinyin huang mao ji], literally yellow-hair chicken), essentially a [[free range|free-range]] chicken, as opposed to typical American mass-farmed chicken. Yellow-hair chicken is valued for its flavor, but needs to be cooked properly to be tender due to its lower fat and higher muscle content. This dish usually does not appear on the English-language menu.
90579
90580 Dauh Miu (Pinyin: Dou Meo), literally Bean Grass but actually snow pea vines, is a Chinese vegetable that has become popular since the early 1990s, and now not only appears on English-language menus, usually as &quot;pea shoots&quot;, but is often served by upscale non-Asian restaurants as well. Originally it was only available during a few months of the year, but it is now grown in greenhouses and is available year-round.
90581
90582 ===Hawaii===
90583 Owing to the different history of the [[Chinese in Hawaii]], Hawaiian Chinese food developed a bit differently from the continental United States. Owing to the diversity of ethnicities in Hawaii, Chinese cuisine forms a component of the [[cuisine of Hawaii]], which is a [[fusion cuisine|fusion]] of different culinary traditions. Some Chinese dishes are typically served as part of [[plate lunch]]es in Hawaii. Some names of foods are different like ''[[Manapua|manapua]]'' from Hawaiian meaning ''chewed up pork'' for the dim sum ''bao'', not just the pork variety. As is typical in Hawaii, Chinese food in Hawaii is also noted for its use of [[SPAM]], much to the puzzlement of outsiders.
90584 ===Springfield, Missouri===
90585 [[Springfield, Missouri]] has numerous Chinese restaurants with a specialized dish: [[cashew chicken]]. It was invented at Leong's Tea House in Springfield and is responsible for the large numbers of Chinese restaurants in the city. The dish has spread to several other cities, where it is sometimes known as &quot;Springfield-style cashew chicken&quot;.
90586
90587 == American Chinese fast food chains ==
90588 * [http://www.foodsystemsunlimited.com/restaurants/asianchao.php Asian Chao]
90589 * [http://www.leeannchin.com Leeann Chin] &amp;mdash; Locations in Minnesota.
90590 * [http://www.markpi.com Mark Pi's Express] &amp;mdash; Located in Arizona, Indiana, Kentucky, Missouri, Nevada, and Ohio.
90591 * [http://www.mrchausfastfood.com Mr. Chau's Chinese Fast Food] &amp;mdash; Locations in the [[San Francisco Bay Area]] and [[Silicon Valley]].
90592 * [[Panda Express]] &amp;mdash; Nationwide in the USA.
90593 * [http://www.peiwei.com Pei Wei] &amp;mdash; Southwest USA &amp;mdash; From the creators of P.F. Chang's.
90594 * [http://www.pfchangs.com P.F. Chang's China Bistro] Nationwide, highly Westernized food
90595 * [http://www.pickupstix.com Pick Up Stix] &amp;mdash; Located throughout California, Arizona, and Nevada.
90596 * [http://www.tastygoody.com Tasty Goody] &amp;mdash; Locations in Southern California.
90597
90598 == Museum exhibits ==
90599 * [http://www.moca-nyc.org Museum of Chinese in the Americas] &amp;mdash; &quot;Have You Eaten Yet?: The Chinese Restaurant in America&quot; running from Sept 2004 to June 2005
90600
90601 ==See also==
90602
90603 * [[Chinese cuisine]]
90604 * [[American cuisine]]
90605 * [[Canadian Chinese cuisine]]
90606 * [[List of Chinese dishes]]
90607 * [[Oyster pail]]
90608
90609 ==External links==
90610 * [http://www.well.com/~indigo/crpintro.html Chinese Restaurant Project] &amp;mdash; Indigo Som's project to document Chinese-American restaurants
90611 * [http://print.google.com/print?id=mO56R0JGP9QC&amp; The Eater's Guide to Chinese Characters] - Jim McCawley, a linguistics professor at the University of Chicago, wrote a field guide for Westerners who want authentic Chinese cuisine.
90612 *[http://www.chopstix.com/ Chopstix] &amp;mdash; From the UK but covers the USA
90613 *[http://chinesefood.about.com/ About.com] &amp;mdash; From the USA
90614 *[http://www.chineserestaurantsonline.com Chinese Restaurants] Chinese Restaurants in the U.S.
90615
90616 [[Category:Asian American-related topics]]
90617 [[Category:Chinese cuisine]]
90618 [[Category:American Chinese cuisine]]
90619 [[Category:Hawaiian cuisine]]</text>
90620 </revision>
90621 </page>
90622 <page>
90623 <title>Ahenobarbus</title>
90624 <id>1559</id>
90625 <revision>
90626 <id>37475186</id>
90627 <timestamp>2006-01-31T05:27:12Z</timestamp>
90628 <contributor>
90629 <ip>220.239.42.10</ip>
90630 </contributor>
90631 <text xml:space="preserve">'''''Ahenobarbus''''' (&quot;brazen-bearded&quot; or &quot;red-haired&quot;) is the name of a plebeian [[Roman Republic|Roman]] family of the ''[[gens]]'' Domitia. The name was derived from the red beard and hair by which many of the family were distinguished. Amongst its members the following may be mentioned:
90632
90633 * '''Gnaeus Domitius Ahenobarbus''', consul [[192 BC]]
90634
90635 * '''Gnaeus Domitius Ahenobarbus''', consul [[122 BC]]. As [[proconsul]] in 121 BC, successfully fought against the [[Allobroges]], a [[Gallic]] tribe, in retaliation for their attacks on [[Rome]]'s Allies, the [[Aedui]]. Was subsequently elected [[Censor]] with Lucius Caeilius Metellus, and removed 32 members from the Senate. Father of the following.
90636
90637 * '''Gnaeus Domitius Ahenobarbus''', son of the same named consul of 122 BC, tribune of the people [[104 BC]], brought forward a law (''lex Domitia de Sacerdotiis'') by which the priests of the superior colleges were to be elected by the people in the ''comitia tributa'' (seventeen of the tribes voting) instead of by co-optation; the law was repealed by [[Lucius Cornelius Sulla|Sulla]], revived by [[Julius Caesar]] and (perhaps) again repealed by [[Mark Antony]], the triumvir ([[Cicero]], ''De Lege Agraria,'' ii. 7; [[Suetonius]], ''Nero,'' 2). Ahenobarbus was elected pontifex maximus in [[103 BC]], consul in [[96 BC]] and censor in [[92 BC]] with Lucius Licinius Crassus the [[orator]], with whom he was frequently at variance. They took joint action, however, in suppressing the recently established Latin rhetorical schools, which they regarded as injurious to public morality ([[Aulus Gellius]] xv. 11).
90638
90639 * '''Lucius Domitius Ahenobarbus''', consul [[94 BC]]
90640
90641 * '''Lucius Domitius Ahenobarbus''', son of Gn. Domitius Ahenobarbus cos 96 BC, husband of Porcia Catones the sister of [[Cato the younger]], friend of [[Cicero]] and enemy of [[Julius Caesar]], and a strong supporter of the aristocratical party. At first strongly opposed to [[Pompey]], he afterwards sided with him against Caesar. He was consul in [[54 BC]], and in 49 he was appointed by the senate to succeed Caesar as governor of Gaul. After the outbreak of the civil war he commanded the Pompeian troops at Corfinium, but was obliged to surrender. Although treated with great generosity by Caesar, he stirred up Massilia (today's [[Marseille]]) to an unsuccessful resistance against him. After its surrender, he joined Pompey in [[Greece]] and was slain in the flight after the [[battle of Pharsalus]], in which he commanded the right wing against Antony (Caesar, ''Bellum Civile,'' i., ii., iii.; Dio Cassius xxxix., xli.; Appian, ''B.C.'' ii. 82).
90642
90643 * '''[[Gnaeus Domitius Ahenobarbus (1st century BC)|Gnaeus Domitius Ahenobarbus]]''', son of the above, ally of Mark Antony and later of [[Augustus]].
90644
90645 * '''Lucius Domitius Ahenobarbus''', the only child of the above Gn. Domitius and Aemilia Lepida. His mother was a paternal cousin to triumvir [[Marcus Aemilius Lepidus (triumvir)|Marcus Aemilius Lepidus]]. His paternal grandmother was [[Porcia Catones]]. He won an honorary [[Roman triumph|triumph]], by penetrating deeper into Germany, than anyone else before him. As a youngman he was a famous charioteer. [[Suetonius]] describes as 'arrogant, cruel, notorius and extravagant'. Lucius held the office of aedile. As praetor and consul made married knights and married women star in pantomimes. He enjoyed presenting gladiatorial contests and wild animal hunts. In Augustus' will he was nominated to purchase his household possessions. Lucius married [[Antonia Major]], Augustus' niece. They had [[Domitia Lepida Major]], Gnaeus Domitius Ahenobarbus and [[Domitia Lepida]]. Lucius died in
90646 AD [[25]].
90647
90648 * '''[[Gnaeus Domitius Ahenobarbus (1st century AD)|Gnaeus Domitius Ahenobarbus]]''', son of the above, father of [[Nero]].
90649
90650 * '''Lucius Domitius Ahenobarbus''' ('''[[Nero]]'''), fifth [[Roman Emperor]] and son of the above.
90651
90652 ==References==
90653 *{{1911}}
90654
90655 [[Category:Families of Rome]]
90656 [[de:Ahenobarbus]]
90657 [[nl:Ahenobarbus]]
90658 [[pl:Ahenobarbus]]
90659 [[Category:Julio-Claudian Dynasty]]</text>
90660 </revision>
90661 </page>
90662 <page>
90663 <title>Ahmad Shah</title>
90664 <id>1560</id>
90665 <revision>
90666 <id>40909368</id>
90667 <timestamp>2006-02-23T20:54:34Z</timestamp>
90668 <contributor>
90669 <username>Siddiqui</username>
90670 <id>308269</id>
90671 </contributor>
90672 <text xml:space="preserve">{{mergefrom|Ahmad Shah Durani}}
90673
90674 :''See [[Ahmad Shah Qajar]] for the [[Iran|Persia]]n ruler ([[1909]]-[[1925]]).''
90675
90676 [[Image:Ahmad Shah Durrani.jpg|200px|thumb|right|Ahmad Shah Durrani]]
90677
90678 '''Ahmad Shah''' ('''احŲ…د شاہ''') (1773–1724), also known as '''Ahmad Shah Abdali''' ([[Persian language|Persian]]: احŲ…د شاہ ابداŲ„ÛŒ), founder of the [[Durrani]] dynasty in [[Afghanistan]], was the son of Zaman-Khan, hereditary chief of the Abdali tribe. The name 'Durrani' or 'Durr-i-Durran' means the 'pearl of pearls' in Persian and was given to the Abdali tribe in [[1747]] when Ahmad Shah Abdali united the Pashtun tribes following a [[loya jirga]] and changed his own name to Ahmad Shah Durrani when he became the king of Afghanistan and founded the Durrani Empire. Ahmad Shah and his sons were the first [[Pashtun]] rulers of Afghanistan, from the [[Sadozai]] line of the Abdali or [[Durrani]] group of clans. It was under the leadership of Ahmad Shah that the nation of Afghanistan began to take shape following centuries of fragmentation and exploitation.
90679
90680 [[Nadir Shah]], then ruler of [[Persian Empire | Persia]], gave Ahmad Shah the command of a body of cavalry composed chiefly of Abdalis. On the assassination of [[Nadir Shah]] in 1747, Ahmad retreated to Afghanistan and persuaded local tribes to join him for a [[jihad]] against [[Hindu]]s. He took with him the [[Koh-i-noor]] diamond, given to him by [[Shah Rukh of Persia | Shah Rukh]], Nadir's grandson.
90681
90682 He first crossed the [[Indus river|Indus River]] in 1748, when he took [[Lahore]], and in 1751, he inflicted a heavy defeat on the Sikhs of Lahore. In 1750 he took [[Nishapur]], and in 1752 subdued [[Kashmir]]. In 1756 he stripped and looted every corner of [[Delhi]] and took the treasures of the [[Mughul Empire]]. In 1757, he attacked the Golden Temple in Amritsar once again and filled its sarovar (pond) with the blood of slaughtered cows. Perhaps this was the last straw that prompted the [[Maratha]] chiefs to declare holy war on Ahmad Shah. In 1758 the Marathas obtained possession of the [[Punjab region|Punjab]], but in January 1761 they were routed by Ahmad in the great [[Third Battle of Panipat|Battle of Panipat]]. In a later expedition he inflicted a severe defeat upon the Sikhs, but had to hasten westward immediately afterwards in order to quell an insurrection in Afghanistan. Meanwhile the Sikhs again rose, and Ahmad was now forced to abandon all hope of retaining the command of the Punjab. He died in 1773, leaving to his son [[Timur Shah | Timur]] the great kingdom he had founded. Unfortunately, within 50 years after Ahmad's death, Afghanistan would be embroiled in civil war.
90683
90684 Even today there are thousands of people each year named their sons Ahmad Shah in tribute to the first Emir of Afghanistan.
90685
90686 ==See also==
90687 * [[Durrani Empire]]
90688
90689 ==External links==
90690 * [http://www.afghan-network.net/Culture/ahmadshah.html Invasions Of Ahmad Shah Abdali]
90691 * [http://famousdiamonds.tripod.com/koh-i-noordiamond.html Famous Diamonds: The Koh-I-Noor]
90692
90693 {{Afghanistan-bio-stub}}
90694 {{royal-stub}}
90695
90696 [[Category:1724 births]]
90697 [[Category:1773 deaths]]
90698 [[Category:Emirs of Afghanistan]]
90699
90700 [[fr:Ahmad ShÃĸh]]
90701 [[ja:ã‚ĸフマドãƒģã‚ˇãƒŖãƒŧãƒģã‚ĸブダãƒŧãƒĒãƒŧ]]
90702 [[no:Ahmed Shah Durrani]]
90703 [[sv:Ahmed Shah Durrani]]
90704 [[zh:č‰žå“ˆčŋˆåžˇÂˇæ˛™Âˇæœå…°å°ŧ]]</text>
90705 </revision>
90706 </page>
90707 <page>
90708 <title>Aidan of Dalriada</title>
90709 <id>1561</id>
90710 <revision>
90711 <id>15900029</id>
90712 <timestamp>2003-11-21T22:12:52Z</timestamp>
90713 <contributor>
90714 <username>Stan Shebs</username>
90715 <id>7777</id>
90716 </contributor>
90717 <comment>#REDIRECT [[Aedan of Dalriada]]</comment>
90718 <text xml:space="preserve">#REDIRECT [[Aedan of Dalriada]]</text>
90719 </revision>
90720 </page>
90721 <page>
90722 <title>Aidan of Lindisfarne</title>
90723 <id>1562</id>
90724 <revision>
90725 <id>41687763</id>
90726 <timestamp>2006-03-01T01:46:31Z</timestamp>
90727 <contributor>
90728 <username>Android79</username>
90729 <id>88250</id>
90730 </contributor>
90731 <minor />
90732 <comment>Reverted edits by [[Special:Contributions/Meowedfr|Meowedfr]] ([[User talk:Meowedfr|talk]]) to last version by Binabik80</comment>
90733 <text xml:space="preserve">'''Saint Aidan of Lindisfarne''' or Lindesfarne , the '''Apostle of Northumbria''' (died [[651]]), was the founder and first [[bishop]] of the [[monastery]] on the island of [[Lindisfarne]] in [[England]]. A [[Christianity|Christian]] [[missionary]], he is credited with restoring Christianity to [[Northumbria]].
90734
90735 An [[Irish ethnicity|Irish]]man, possibly born in [[Connacht]], Aidan was a [[monk]] at the monastery on the island of [[Iona]] in [[Scotland]].
90736
90737 The [[Roman Empire]] had spread Christianity into England, but due to its decline, [[paganism]] was seeing a resurgence in Northern England. [[Oswald of Northumbria]] had been living at the Iona monastery as a king in exile since [[616]] AD. There he converted to Christianity and was [[baptize|baptised]]. In [[634]] he gained the crown of Northumbria, and was determined to bring Christianity to the mostly pagan people there.
90738
90739 Due to his past at Iona, he requested missionaries from that monastery instead of the Roman-backed monasteries in England. At first the monastery sent a new bishop named Corman, but he returned to Iona and reported that the Northumbrians were too stubborn to be converted. Aidan criticised Corman's methods and was soon sent as a replacement in [[635]].
90740
90741 Aidan chose the island of [[Lindisfarne]], close to the royal castle at [[Bamburgh]], as his [[diocese]]. King Oswald, who spoke Irish, often had to translate for Aidan and his monks, who did not speak English at first. When Oswald died in [[642]], Aidan received continued support from King [[Oswine of Deira]] and the two became close friends.
90742
90743 An inspired missionary, Aidan would walk from one village to another, politely conversing with the people he saw and slowly interesting them in Christianity. According to legend, the king gave Aidan a horse so that he wouldn't have to walk, but Aidan gave the horse to a beggar. By patiently talking to the people on their own level Aidan and his monks slowly restored Christianity to the Northumbrian communities. Aidan also took in twelve English boys to train at the monastery, to ensure that the area's future religious leadership would be English.
90744
90745 In [[651]] a pagan army attacked Bamburgh and attempted to set its walls ablaze. According to legend, Aidan prayed for the city, after which the winds turned and blew the smoke and fire toward the enemy, repulsing them.
90746
90747 Aidan was a member of the Irish branch of Christianity instead of the Roman branch, but his character and energy in missionary work won him the respect of [[Pope Honorius I]] and [[Felix of Dunwich]].
90748
90749 Aidan's friend Oswine of Deira was murdered in [[651]]. Twelve days later Aidan died, on [[August 31]], in the 17th year of his [[bishop|episcopate]]. He had become ill while at the Bamburgh castle and died leaning against the wall of the local church.
90750
90751 The monastery he founded grew and helped found churches and other monasteries throughout the area. It also became a center of learning and a storehouse of scholarly knowledge. [[Saint Bede the Venerable]] would later write Aidan's biography and describe the miracles attributed to him. Saint Aidan's feast day is on [[August 31]]st.
90752
90753 {{start box}}
90754 {{succession box |
90755 before=--|
90756 title=[[Bishop of Lindisfarne]]|
90757 after=[[Finan of Lindisfarne|Saint Finan]]|
90758 years=[[635]] - [[651]]|
90759 }}
90760 {{end box}}
90761
90762
90763 ==External links==
90764 *[http://www.irelandseye.com/irish/people/saints/aidan.shtm Irelandseye.com biography of Saint Aidan]
90765 *[http://www.lindisfarne.org.uk/general/aidan.htm Saint Aidan of Lindisfarne] by Reverend Canon Kate Tristram
90766 *[http://www.britannia.com/bios/saints/aidan.html Britannia biography of Saint Aidan]
90767 *[http://www.netacc.net/~mafg/book/v2c3s3.htm A History Of The Church] (around the time of Aidan) by Philip Hughes
90768
90769 [[Category:651 deaths]]
90770 [[Category:Saints]]
90771 [[Category:Roman Catholic bishops]]
90772 [[Category:Roman Catholic monks]]
90773 [[Category:Bishops of Lindisfarne]]
90774 [[Category:Irish saints]]
90775
90776 [[de:Aidan von Lindisfarne]]
90777 [[uk:ХвŅŅ‚иК АКдĐĩĐŊ]]</text>
90778 </revision>
90779 </page>
90780 <page>
90781 <title>Arthur Aikin</title>
90782 <id>1563</id>
90783 <revision>
90784 <id>34277923</id>
90785 <timestamp>2006-01-07T20:42:52Z</timestamp>
90786 <contributor>
90787 <username>YurikBot</username>
90788 <id>271058</id>
90789 </contributor>
90790 <minor />
90791 <comment>robot Adding: sk</comment>
90792 <text xml:space="preserve">'''Arthur Aikin''' ([[May 19]], [[1773]] - [[April 15]], [[1854]]), [[United Kingdom|English]] [[chemistry|chemist]], [[mineralogy|mineralogist]] and scientific writer, was born at [[Warrington, England|Warrington]] in [[Lancashire]].
90793
90794 He was the son of Dr. [[John Aikin]].
90795
90796 He studied chemistry under [[Joseph Priestley]] and gave attention to
90797 the practical applications of the science.
90798
90799 From [[1803]] to [[1808]] he was editor of ''[[Annual Review]]''.
90800
90801 He was one of the founders of the [[Geological Society of London]] in [[1807]] and was its honorary secretary in [[1812]]-[[1817]]. He contributed papers on the [[Telford_and_Wrekin|Wrekin]] and the [[Shropshire]] coalfield, among others, to the transactions of that society.
90802
90803 Later he became secretary of the [[Royal Society of Arts]], and in [[1841]] treasurer of the [[Chemical Society]]. In early life he had been a [[Unitarianism|Unitarian]] minister for a short time. He was highly esteemed as a man of sound judgment and wide knowledge. He died in [[London]].
90804
90805 Publications:
90806 :''Journal of a Tour through North Wales and Part of Shropshire with Observations in Mineralogy and Other Branches of Natural History'' (London, 1797)
90807 :''A Manual of Mineralogy'' (1814; ed. 2, 1815)
90808 :''A Dictionary of Chemistry and Mineralogy'' (with his brother C. R. Aikin), 2 vols. (London, 1807, 1814).
90809
90810 {{chemist-stub}}
90811 {{geologist-stub}}
90812 [[Category:1773 births|Aikin, Arthur]]
90813 [[Category:1854 deaths|Aikin, Arthur]]
90814 [[Category:English mineralogists|Aikin, Albert]]
90815 [[Category:English chemists|Aikin, Albert]]
90816
90817 [[it:Arthur Aikin]]
90818 [[sk:Arthur Aikin]]</text>
90819 </revision>
90820 </page>
90821 <page>
90822 <title>Ailanthus</title>
90823 <id>1564</id>
90824 <revision>
90825 <id>37287199</id>
90826 <timestamp>2006-01-30T00:52:51Z</timestamp>
90827 <contributor>
90828 <username>Gdrbot</username>
90829 <id>263608</id>
90830 </contributor>
90831 <minor />
90832 <comment>nomialbot — converted multi-template taxobox to {{Taxobox}}</comment>
90833 <text xml:space="preserve">{{Taxobox
90834 | color = lightgreen
90835 | name = ''Ailanthus''
90836 | image = Ailanthus altissima1.jpg
90837 | image_width = 200px
90838 | image_caption = ''Ailanthus altissima'' leaf and seeds
90839 | regnum = [[Plant]]ae
90840 | divisio = [[flowering plant|Magnoliophyta]]
90841 | classis = [[dicotyledon|Magnoliopsida]]
90842 | ordo = [[Sapindales]]
90843 | familia = [[Simaroubaceae]]
90844 | genus = '''''Ailanthus'''''
90845 | genus_authority = [[RenÊ Louiche Desfontaines|Desf.]]
90846 | subdivision_ranks = Species
90847 | subdivision =
90848 ''[[Ailanthus altissima]]''&lt;br/&gt;
90849 ''Ailanthus excelsa''&lt;br/&gt;
90850 ''Ailanthus giraldii''&lt;br/&gt;
90851 ''Ailanthus malabarica''&lt;br/&gt;
90852 ''Ailanthus triphysa''&lt;br/&gt;
90853 ''Ailanthus vilmoriniana''
90854 }}
90855
90856 '''''Ailanthus''''' (derived from ailanto, an [[Amboine]] word probably meaning &quot;tree of the gods&quot; or &quot;tree of heaven&quot;) is a genus of 6-10 species of [[tree]]s belonging to the family [[Simaroubaceae]], in the order [[Sapindales]] (formerly [[Rutales]] or [[Geraniales]]). The genus is native from east [[Asia]] south to northern [[Australasia]].
90857
90858 The best known species, ''[[A. altissima|Ailanthus altissima]]'', English name '''[[Tree of heaven]]''', is a native of northern [[China]]. It is a quick-growing [[deciduous]] tree to 25-35 m tall, with spreading branches and large (40-80 cm) pinnate leaves with 15-35 long pointed leaflets, the terminal leaflet normally present, and the basal pairs of leaflets often lobed at their bases. The small greenish flowers are borne on branched panicles; and the male ones are characterized by having a disgusting odour. The fruits are free in clusters, and each is drawn out into a long wing with the seed in the middle. The wood is fine grained and satiny.
90859
90860 [[Image:Ailanthus altissima4.jpg|thumb|left|''Ailanthus altissima'' flowers]]
90861 The tree was introduced into [[England]] in 1751 and is a favourite in parks and gardens. It has also been introduced into [[North America]]. This tree has the reputation as being among the most urban-tolerant of any temperate-zone trees in the world, growing in places where most [[weed]]s even refuse to grow. Where the climate is sufficiently similar to that of its homeland, as in much of the east and south of both the [[United States]] and [[Europe]], it has proved to be a serious problem [[invasive species]], causing major problems both in urban areas (where the roots of saplings that germinate close to buildings cause damage to foundations), and in rural areas (where it displaces native species from the environment). A consequent popular [[nickname]] for the species is '''Tree from hell'''.
90862
90863 ''A. altissima'' is sometimes also known as ''A. glandulosa'' or ''A. glanduosa''. Under this name, an extract of the bark is sometimes touted as an herbal homeopathic remedy for various ailments. However, taken in large doses, the bark extract is highly toxic.
90864
90865 Other species of ''Ailanthus'' include ''A. triphysa'', an [[Australia]]n tree; ''A. vilmoriniana'' and ''A. giraldii'' in south and west China, ''A. malabarica'' in southeast [[Asia]], and ''A. excelsa'', common in [[India]].
90866
90867 A silk spinning moth, the Ailanthus moth (''Samia cynthia''), lives on its leaves, and yields a silk more durable and cheaper than mulberry silk, but inferior to it in fineness and gloss. This moth has been introduced to the eastern United States and is common near many towns; it is about 12 cm across, with angulated wings, and in colour olive brown, with white markings. Other [[Lepidoptera]] whose [[larva]]e feed on ''Ailanthus'' include ''[[Endoclita|Endoclita malabaricus]]''.
90868
90869 == External links ==
90870 * [http://www.inmygarden.org/archives/2005/01/ailanthus_and_s_1.html Ailanthus and Staghorn Sumac], from The Monday Garden.
90871
90872 [[Category:Sapindales]]
90873
90874 [[de:GÃļtterbaum]]
90875 [[eo:Ailanto]]
90876 [[gl:Árbore do ceo]]
90877 [[it:Ailanthus]]
90878 [[nl:Hemelboom]]
90879 [[ja:ニワã‚ĻãƒĢã‚ˇ]]
90880 [[pt:Árvore-do-cÊu]]</text>
90881 </revision>
90882 </page>
90883 <page>
90884 <title>Aimoin</title>
90885 <id>1565</id>
90886 <revision>
90887 <id>32484173</id>
90888 <timestamp>2005-12-23T14:16:11Z</timestamp>
90889 <contributor>
90890 <username>Julianonions</username>
90891 <id>69216</id>
90892 </contributor>
90893 <comment>Added birth/death category</comment>
90894 <text xml:space="preserve">'''Aimoin''' (c. [[960]]-c. [[1010]]), French chronicler, was born at Villefranche de Longchat about 960, and in early life entered the [[monastery]] of [[Fleury]], where he became a monk and
90895 passed the greater part of his life.
90896
90897 His chief work is a ''Historia Francorum'', or ''Libri v. de Gestis Francorum'', which deals with the history of the [[Franks]] from the earliest times to 653, and was continued by other writers until the
90898 middle of the [[12th century]]. It was much in vogue during the middle ages, but its historical value is now regarded as slight. It has been edited by G. Waitz and published in the ''[[Monumenta Germaniae Historica]]: Scriptores'', Band xxvi. (Hanover and Berlin, 1826-1892).
90899
90900 He also wrote a ''Vita Abbonis'', ''abbatis Floriacensis'', the last of a series of lives of the [[abbot]]s of Fleury, all of which, except the life of [[Abbo of Fleury|Abbo]], have been lost. This has been published by [[Jean Mabillon|J. Mabillon]] in the ''Acta sanctorum ordinis sancti Benedicti'' (Paris, 1668-1701).
90901
90902 Aimoin's third work was the composition of books ii. and iii. of the ''Miracula sancti Benedicti'', the first book of which was written by another monk of Fleury named Adrevald. This also appears in the Acta sanctorum ordinis sancti Benedicti.
90903
90904 Aimoin, who died about 1010, must be distinguished from Aimoin, a monk of Saint-Germain-des-Pres, who wrote ''De miraculis sancti Germani'', and a fragment ''De Normanorum gestis circa Parisiacam urbem et de divine in eos ultione tempore Caroli calvi''. Both of these are published in the ''Historiae Francorum Scriptores'', Tome ii. (Paris, 1639-1649).
90905
90906 ==References==
90907 *{{1911}}
90908 [[Category:960 births]]
90909 [[Category:1010 deaths]]</text>
90910 </revision>
90911 </page>
90912 <page>
90913 <title>Akkad</title>
90914 <id>1566</id>
90915 <revision>
90916 <id>41762573</id>
90917 <timestamp>2006-03-01T15:46:44Z</timestamp>
90918 <contributor>
90919 <username>Daanschr</username>
90920 <id>316840</id>
90921 </contributor>
90922 <comment>/* History */</comment>
90923 <text xml:space="preserve">{{Template:Ancient Mesopotamia}}
90924 '''Akkad''' (or '''Agade''') was a city and its region of northern [[Mesopotamia]],
90925 situated on the left bank of the [[Euphrates]], between [[Sippar]] and [[Kish]] (located in present-day [[Iraq]], ca. 50 km south-west of the center of [[Baghdad]], {{coor d|33.1|N|44.1|E}}). It reached the height of its power between the [[22nd century BC|22nd]] and [[18th century BC|18th]] centuries BC, before the rise of [[Babylonia]].
90926
90927 Akkad gave its name to the [[Akkadian language]], reflecting use of ''akkadÃģ'' (&quot;in the language of Akkad&quot;) in the Old Babylonian period to denote the [[Semitic]] version of a [[Sumerian language|Sumerian]] text. It was built in the 23rd century BC.
90928
90929
90930 ==History==
90931 The earliest records in Akkadian date to the time of [[Sargon of Akkad]] ([[23rd century BC]]). While Sargon is traditionally cited as the first ruler of a combined empire of Akkad and Sumer, more recent work suggests that a Sumerian expansion began under a previous king, [[Lugal-Zage-Si]] of [[Uruk]]. However, Sargon took this process further, conquering many of the surrounding regions to create an empire that reached as far as the [[Mediterranean Sea]] and [[Anatolia]].
90932
90933 It is believed that Akkad was the largest city in the world from 2250 to 2075 BC.[http://geography.about.com/library/weekly/aa011201a.htm]
90934
90935 In the later [[Babylonia|Babylonian]] literature the name ''Akkad'', together with ''Sumer'', appears as part of the royal title, as in the [[Sumerian language|Sumerian]] ''lugal Kengi (ki) Uru (ki)'' or [[Akkadian language|Akkadian]] ''&amp;#154;ar m&amp;#257;t &amp;#138;umeri u Akkadi'', translating to &quot;king of [[Sumer]] and Akkad&quot;, which appears to have meant simply &quot;king of Babylonia&quot;.
90936
90937 The site of Akkad has not been identified, though texts from as late as the [[6th century BC]] mention it, and its ruined buildings.
90938
90939 ==Origin of the Name==
90940
90941 The city of Akkad is mentioned once in the [[Old Testament]] ([[Genesis]] 10:10).
90942 :''And the beginning of his ([[Nimrod (king)|Nimrod]]'s) kingdom was [[Babylon|Babel]], and [[Erech]], and Accad, and [[Calneh]], in the land of [[Shinar]].'' ([[KJV]])
90943
90944 The [[Greek language|Greek]] ([[LXX]]) spelling is ''Archad''.
90945
90946 The name Agade is probably from the [[Sumerian language]], appearing e.g. in the [[Sumerian king list]], the later Assyro-Babylonian Semitic form ''AkkadÃģ'' (&quot;of or belonging to Akkad&quot;) probably being derived from Agade.
90947
90948 It is possible that the name AGA.DE means &quot;Crown of Fire&quot;{{ref|crown}} in allusion to [[Ishtar]], &quot;the brilliant goddess&quot;, whose cult was observed in very early times in Agade. This is suggested by the writings of [[Nabonidus]], whose record{{ref|nabonidus}} mentions that Ishtar worship of Agade was later superseded by that of the goddess [[Anunit]], whose shrine was at [[Sippar]]. It is significant in this connection that there were two cities named Sippar, one under the protection of [[Shamash]], the sun-god, and one under Anunit,suggesting proximity of Sippar and Agade. One
90949 theory held (as of [[1911]]) was that Agade was situated opposite Sippar on the left bank of the Euphrates, and was probably the oldest part of the city of Sippar.
90950
90951 ===Notes===
90952 # {{note|crown}} Prince, &quot;Materials for a Sumerian Lexicon&quot;, pp. 23, 73, Journal of Biblical Literature, 1906.
90953 # {{note|nabonidus}} I. Rawl. 69, col. ii. 48 and iii. 28.
90954
90955 ===References===
90956 *{{1911}}
90957 *[[A. Leo Oppenheim]], ''Ancient Mesopotamia: Portrait of a Dead Civilization''
90958
90959 ===See also===
90960 *[[Akkadian Empire]]
90961 *[[Sargon of Akkad]]
90962 *[[Babylonia]]
90963
90964 == External links==
90965 * [http://ancientneareast.tripod.com/Akkad.html Akkad History]: from The History of the Ancient Near East
90966
90967
90968 [[Category:Babylonia]]
90969 [[Category:Assyria]]
90970
90971 [[Category:Babylonia]]
90972 [[Category:Assyria]]
90973 [[Category:Destroyed cities]]
90974 [[Category:Archaeological sites in Iraq]]
90975
90976 [[bs:Akad]]
90977 [[ca:Akkad]]
90978 [[cs:Akkad]]
90979 [[de:Akkad]]
90980 [[et:Akad]]
90981 [[es:Acad]]
90982 [[eo:Akado]]
90983 [[fr:Akkad (ville)]]
90984 [[gl:Acadia (Mesopotamia)]]
90985 [[he:אכד]]
90986 [[nl:Akkad]]
90987 [[ja:ã‚ĸッã‚Ģド]]
90988 [[no:Akkad]]
90989 [[pl:Akad]]
90990 [[pt:AcÃĄdia (MesopotÃĸmia)]]
90991 [[ru:АĐēĐēĐ°Đ´]]
90992 [[fi:Akkad]]
90993 [[sv:Akkad]]
90994 [[zh:é˜ŋåĄåžˇ]]</text>
90995 </revision>
90996 </page>
90997 <page>
90998 <title>Ajax the Lesser</title>
90999 <id>1567</id>
91000 <revision>
91001 <id>36899382</id>
91002 <timestamp>2006-01-27T04:33:49Z</timestamp>
91003 <contributor>
91004 <ip>68.42.126.146</ip>
91005 </contributor>
91006 <text xml:space="preserve">'''Ajax''' ([[Greek language|Greek]]: '''&amp;#913;&amp;#7988;&amp;#945;&amp;#962;'''), a [[Greek mythology|Greek]] hero, son of [[Oileus|Oïleus]] the king of [[Locris]], called the &quot;lesser&quot; or Locrian Ajax, to distinguish him from [[Ajax the great|Ajax]], son of [[Telamon]]. He was the leader of the Locrian contingent during the [[Trojan War]]. He is a significant figure in the ''[[Iliad]]'' and is mentioned in the ''[[Odyssey]]''.
91007
91008 [[Homer]] gives a favorable description of him as a warrior. In spite of his small stature, he held his own amongst the other heroes before Troy; he was brave, next to [[Achilles]] in swiftness of foot and famous for throwing the spear. But he was boastful, arrogant and quarrelsome; like the Telamonian Ajax, he was the enemy of [[Odysseus]], and in the end the victim of the vengeance of [[Poseidon]], who wrecked his ship on his homeward voyage ''([[Odyssey]]'', iv. 499).
91009
91010 A later story gives a more definite account of the offense of which he was guilty. It is said that, after the fall of Troy, he dragged [[Cassandra]] away by force from the statue of the goddess at which she had taken refuge as a suppliant, and raped her ([[Lycophron]], 360, [[Quintus Smyrnaeus]] xiii. 422). For this, his ship was wrecked in a storm on the coast of [[Euboea]], and he himself was struck by lightning and impaled upon a rock. ([[Virgil]], ''[[Aeneid]]'' I. 40-45).
91011
91012 He was said to have lived after his death in the island of [[Leuke]]. He was worshipped as a national hero by the Opuntian Locrians (on whose coins he appears), who always left a vacant place for him in the ranks of their army when drawn up in battle array. He was the subject of a lost tragedy by [[Sophocles]]. The rape of Cassandra by Ajax was frequently represented in [[ancient Greece|Greek]] works of art, for instance on the chest of [[Cypselus]] described by [[Pausanias (geographer)|Pausanias]] (v. 17) and in extant works.
91013
91014 ==References==
91015 *{{1911}}
91016
91017 {{Commonscat|Ajax the Lesser}}
91018
91019 [[Category:People who fought in the Trojan War]]
91020
91021 [[de:Ajax der Kleine]]
91022 [[es:Ayax el Menor]]
91023 [[fr:Ajax fils d'OïlÊe]]
91024 [[it:Aiace di Locride]]
91025 [[lt:Ajaksas MaÅžasis]]
91026 [[ja:小ã‚ĸイã‚ĸã‚š]]
91027 [[ru:АŅĐēŅ МаĐģŅ‹Đš]]
91028 [[uk:АŅĐēŅ ОŅ—ĐģŅ–Đ´]]</text>
91029 </revision>
91030 </page>
91031 <page>
91032 <title>Ajax the Great</title>
91033 <id>1568</id>
91034 <revision>
91035 <id>41887514</id>
91036 <timestamp>2006-03-02T10:51:38Z</timestamp>
91037 <contributor>
91038 <username>Jess Cully</username>
91039 <id>147333</id>
91040 </contributor>
91041 <comment>/* Ajax the Great */ Now mentioned in Family section</comment>
91042 <text xml:space="preserve">'''Ajax''', or Aias (Greek: {{polytonic|'''Αáŧ´ážąĪ‚'''}}), was a king of [[Salamis Island|Salamis]], and a legendary [[hero]] of ancient [[Greece]].
91043
91044 == Ajax the Great ==
91045
91046 To distinguish him from [[Ajax the lesser|Ajax, son of Oileus]] (&quot;Ajax the Lesser&quot;), he was called '''Ajax the Great''' or '''Telamonian Ajax '''. In [[Homer]]'s ''[[Iliad]]'' he is described as of great stature and colossal frame, the tallest among all the Achaeans, second only to his cousin [[Achilles]] in strength and bravery, and the 'bulwark of the Achaeans'. He was trained by the centaur [[Chiron]] (who had also trained his father, [[Telamon]], and Achilles' father [[Peleus]]), at the same time as Achilles was. Outshone only by his cousin, Ajax was the most valuable king in the battlefield, though not as smart as [[Nestor]], [[Idomeneus]], or, of course, [[Odysseus]]. He commanded his army wielding a great axe and a huge shield made of seven ox-hides with a layer of bronze. He was indeed a great asset to king [[Agamemnon]]'s army. He is not wounded in any of the battles described in the ''Iliad'', and he is the only principal character on either side who does not receive personal assistance from any of the gods who take part in the battles. As such, he embodies the virtues of hard work and perseverance.
91047
91048 == Trojan War ==
91049 During the ''[[Iliad]]'', Ajax is notable for his strength and courage, which he displays in abundance, particularly in two fights with [[Hector]]. In Book VII, Ajax is chosen by lot to meet Hector in a duel which lasts most of a whole day. Ajax at first gets the better of the encounter, wounding Hector with his spear and knocking him down with a large stone, but Hector fights on until the [[herald]]s, acting at the direction of [[Zeus]], call a draw: the action ends without a winner and with the two combatants exchanging gifts.
91050
91051 In Book IX, [[Agamemnon]] and the other Greek chiefs send Ajax, accompanied by Odysseus and [[Phoenix (Iliad)|Phoenix]], to the tent of Achilles, in an attempt to reconcile with the great warrior and induce him to return to the fight. Although Ajax speaks earnestly and is well received, he does not succeed in convincing Achilles.
91052
91053 The second fight between Ajax and Hector occurs when the latter breaks into the [[Achaean]] camp, and fights with the Greeks among the ships. In Book XIV, Ajax throws a giant rock at Hector which almost kills him. In Book XV, Hector is restored to his strength by [[Apollo]] and returns to attack the ships. Ajax, wielding a spear as a weapon and leaping from ship to ship, holds off the [[Trojan]] armies virtually single-handedly. In Book XVI, Hector is able to disarm Ajax (although Ajax is not hurt) and Ajax is forced to retreat under heavy fire. Hector and the Trojans succeed in burning one Greek ship, the culmination of an assault that almost finishes the war.
91054
91055 All of the foregoing encounters happened when Achilles was not on the battlefield, because he was angry with Agamemnon. Ajax did manage to kill many of the other Trojan lords, including [[Phorkys]].
91056
91057 When [[Patroclus]] dies, the Trojans try to steal his body and feed him to the dogs, accusing him of being a liar. Ajax is the man who fights to protect the body, and take it back safely to the camp, back to Achilles, the best friend, Patroclus. Ajax, assisted by [[Menelaus]], succeeds in fighting off the Trojans and taking the body back with his chariot; of course, the Trojans had already stolen the armor and left the body naked. Ajax's prayer to Zeus, to remove the fog which has descended on the battle - even if the [[Greeks]] are destined to lose - to allow them to die in the light of day, has become proverbial.
91058
91059 Like most of the other Greek leaders, Ajax is alive and well as the ''Iliad'' comes to a close.
91060
91061 Later, when Achilles dies, killed by [[Paris_(mythology)|Paris]] (with help from Apollo), Ajax and Odysseus are the heroes that fight against the Trojans to get the body and bury it next to his dear friend, Patroclus. Ajax, with his great axe, manages to get the Trojans away, while Odysseus pulls the body towards his chariot, and rides away. After the burial, both claim the armor for themselves, as recognition for their efforts. But in the end, after some discussion, Odysseus is given the armor. Ajax is furious about it, and falls to the ground, exhausted. When he wakes up, he becomes mad and goes to a group of sheep, and slaughters them, imagining they are the Trojan leaders, as well as Odysseus and Agamemnon. When he comes to his senses, covered in blood, and realises what he did, he decides that he prefers to kill himself rather than to live in shame. He did it with the same sword Hector had given him when they exchanged presents. (''[[Odyssey]],'' XI. 541). From his blood sprang a red flower, as at the death of [[Hyacinth (mythology)|Hyacinthus]], which bore on its leaves the initial letters of his name ''Ai,'' also expressive of lament ([[Pausanias (geographer)|Pausanias]] I. 35.4). His ashes were deposited in a golden urn on the [[Rhoetean]] promontory at the entrance of the [[Hellespont]].
91062
91063 The foregoing account of his death is from the ''Ajax'' of [[Sophocles]]; in [[Pindar]]'s &quot;[[Nemea]]&quot;, 7; and in [[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'', xiii. 1. Homer is somewhat vague about the precise manner of Ajax's death but does ascribe it to his loss in the dispute over Achilles's armour: when Odysseus visits [[Hades]], he begs the soul of Ajax to speak to him, but Ajax, still resentful over the old quarrel, refuses and descends silently back into [[Erebus]].
91064
91065 Like Achilles, he is represented (although not by Homer) as living after his death in the [[Snake Island (Black Sea)|island of Leuke]] at the mouth of the [[Danube]] ([[Pausanias (geographer)|Pausanias]] iii. 19. 11). Ajax, who in the post-Homeric legend is described as the grandson of [[Aeacus]] and the great-grandson of [[Zeus]], was the [[tutelary]] hero of the island of [[Salamis]], where he had a temple and an image, and where a festival called ''Aianteia'' was celebrated in his honour (Pausanias i. 35). At this festival a couch was set up, on which the panoply of the hero was placed, a practice which recalls the Roman [[Lectisternium]]. The identification of Ajax with the family of Aeacus was chiefly a matter which concerned the [[Athenian]]s, after Salamis had come into their possession, on which occasion [[Solon]] is said to have inserted a line in the ''[[Iliad]]'' (II. 557 or 558), for the purpose of supporting the Athenian claim to the island. Ajax then became an Attic hero; he was worshipped at [[Athens]], where he had a statue in the market-place, and the tribe ''Aiantis'' was named after him.
91066
91067 == Family ==
91068 Ajax is the son of [[Telamon]], who was the son of [[Aeacus]] and grandson of [[Zeus]], and his first wife [[Periboea]]. He is the cousin of Achilles, the most remembered Greek warrior, and elder half-brother of [[Teucer]]. Many illustrious Athenians — including [[Cimon]], [[Miltiades]], [[Alcibiades]] and the historian [[Thucydides]] — traced their descent from Ajax.
91069
91070 == References ==
91071 {{Commonscat|Ajax the Great}}
91072 *[[Homer]]. [[Iliad]] VII, 181-312; [[Homer]]. [[Odyssey]] XI, 543-67; [[Apollodorus]]. [[Epitome III]], 11-V, 7; [[Ovid]]. [[Metamorphoses (poem)|Metamorphoses]] XII, 620-XIII, 398.
91073 *The laundry [[detergent]] brand Ajax's slogan is &quot;Stronger than dirt&quot;, presumably in the mythological reference.
91074 *[[HMS Ajax]] (part of the [[UK]] [[Royal Navy]]) was named after him, but is no longer in use
91075 *The [[USS Ajax]] was named for his valor
91076 *Ajax is the name given to one of the most ferocious villians, known as a Titan, in [[Brian Herbert]] and [[Kevin J. Anderson]]'s prequel book trilogy, [[Dune: The Butlerian Jihad]], to [[Frank Herbert]]'s classic sci-fi epic [[Dune (novel)|Dune]].
91077 *Ajax appears as one of the main characters in the [[computer game]] ''[[Age of Mythology]]''
91078 *In the 2004 film ''[[Troy (film)|Troy]]'', Ajax was played by [[professional wrestling|wrestler]] [[Tyler Mane]].
91079 *Amsterdam's football (soccer) club, [[Ajax Amsterdam]], is possibly named after Ajax
91080 *Ajax is a character in the 1979 film ''[[The Warriors]]''; played by James Remar, the character exhibits simliar traits to the mythological Ajax
91081
91082 {{1911}}
91083 [[Category:People who fought in the Trojan War]]
91084
91085 [[ca:Àiax el Gran]]
91086 [[da:Ajax]]
91087 [[de:Ajax der Große]]
91088 [[es:Ayax el Grande]]
91089 [[fr:Ajax fils de TÊlamon]]
91090 [[it:Aiace Telamonio]]
91091 [[he:איאקס]]
91092 [[lt:Ajaksas]]
91093 [[nl:Ajax (mythologie)]]
91094 [[ja:大ã‚ĸイã‚ĸã‚š]]
91095 [[pl:Ajaks]]
91096 [[pt:Ájax]]
91097 [[ru:АŅĐēŅ ВĐĩĐģиĐēиК]]
91098 [[fi:Aias]]
91099 [[uk:АŅĐēŅ ĐĸĐĩĐģĐ°ĐŧĐžĐŊŅ–Đ´]]</text>
91100 </revision>
91101 </page>
91102 <page>
91103 <title>Ajax</title>
91104 <id>1569</id>
91105 <revision>
91106 <id>40577797</id>
91107 <timestamp>2006-02-21T15:54:30Z</timestamp>
91108 <contributor>
91109 <ip>147.83.148.106</ip>
91110 </contributor>
91111 <text xml:space="preserve">The name '''Ajax''' can refer to:
91112
91113 * Two figures in Homer's ''Iliad'', from which all other references named '''Ajax''' are derived:
91114 ** [[Telamonian Aias]], or Ajax the Great, King of Salamis
91115 ** [[Ajax the Lesser]], King of Locris
91116 * [[Ajax (Sophocles)|''Ajax'' (Sophocles)]], a tragedy whose protagonist is Ajax the Great
91117 * [[Ajax Amsterdam]], the major football (soccer) team of Amsterdam, The Netherlands
91118 * Automobiles:
91119 ** [[Ajax (1906 automobile)]], Aigner, Switzerland
91120 ** [[Ajax (1913 automobile)]], Briscoe, France
91121 ** [[Ajax (1921 automobile)]], prototype, U.S.
91122 ** [[Ajax (automobile)]], Nash Motors, 1925-26, U.S.
91123 * [[Ajax (band)]], from New York City
91124 * [[Ajax (arcade game)]], by [[Konami]]
91125 * [[Ajax (horse)]], a champion Australian racehorse which raced in the 1930s
91126 * [[Ajax (programming)]], Asynchronous JavaScript and XML for web development
91127 * [[HMS Ajax|HMS ''Ajax'']], several ships of the Royal Navy
91128 * [[Ajax cleanser]] household cleaner
91129 * [[Ajax Duckman]], a character in the animated television series ''Duckman''
91130 * [[Ajax, Ontario]], Canada
91131 * [[Ajax Records]]
91132 * [[Operation Ajax]], a 1953 Anglo-American covert operation to overthrow the government of Iran
91133 * [[War Rocket Ajax]], from the 1980 movie [[Flash Gordon]]
91134 * Ajax, a character from the 1979 U.S. film ''[[The Warriors]]''
91135 * Ajax, a fictional company in Mickey Mouse cartoons; see [[Acme Corporation]]
91136 * Ajax Mountain is an alternative name for [[Aspen Mountain (Colorado)]]
91137 * Nike Ajax missile, of the U.S. [[Project Nike]]
91138 * a russian hypersonic aircraft project based on plasma stealth technology, see [[Ajax (aircraft)]]
91139
91140 {{disambig}}
91141
91142 [[bg:АŅĐēŅ]]
91143 [[ca:Ajax]]
91144 [[de:Ajax]]
91145 [[fr:Ajax]]
91146 [[ko:ė•„ė´ė•„ėŠ¤]]
91147 [[it:Ajax]]
91148 [[la:Aiax]]
91149 [[nl:Ajax]]
91150 [[ja:ã‚ĸイã‚ĸã‚š]]
91151 [[pt:Ajax]]
91152 [[ru:АŅĐēŅ]]
91153 [[sv:Ajax]]</text>
91154 </revision>
91155 </page>
91156 <page>
91157 <title>Alaric I</title>
91158 <id>1570</id>
91159 <revision>
91160 <id>40067980</id>
91161 <timestamp>2006-02-17T22:19:24Z</timestamp>
91162 <contributor>
91163 <username>FlaBot</username>
91164 <id>228773</id>
91165 </contributor>
91166 <minor />
91167 <comment>robot Modifying: sl</comment>
91168 <text xml:space="preserve">[[Image:AlaricTheGoth.jpg|thumb|right|270px|An [[1894]] [[photogravure]] of Alaric I taken from a painting by Ludwig Thiersch.]]
91169
91170 '''Alaric I''' (Alaric or Alarich, in Latin ''Alaricus'') was likely born about [[370]] on an island named Peuce (the Fir) at the mouth of the [[Danube]], became king of the [[Visigoths]] from [[395]]&amp;ndash;[[410]], and was the first Germanic leader to take the city of [[Rome]].
91171
91172 He was well born, his father kindred to the [[Balti dynasty|Balti]], considered next in worth among Gothic fighters to the [[Amali]]. He was a [[Goths|Goth]] and belonged to the western branch, called the [[Visigoth|Visigoths]], who at the time of his birth dwelt in what is today [[Bulgaria]], having fled beyond the wide estuary marshes of the [[Danube]] to its southern shore so as not to be followed by their foe from the [[steppe]], the [[Huns]].
91173
91174 ==In Roman service==
91175
91176 During the [[4th century]] it had become common practice with the emperors to employ ''[[foederati]]''; Germanic [[irregular military|irregular troops]] under Roman command, but organized by tribal structures. The provincial population, crushed under a load of taxation, could no longer furnish soldiers in the numbers needed for the defence of the empire. Moreover, the emperors—ever fearful that a brilliantly successful general of Roman extraction might be proclaimed [[Augustus]] by his followers—preferred that high military command should be in the hands of one to whom such an accession of dignity was as yet impossible. The largest of these contigents were the Goths which had in [[382]] been allowed to settle within the imperial frontier with a large degree of autonomy.
91177
91178 In [[394]] Alaric served as a leader of foederati under [[Theodosius I]] in the campaign in which he crushed the usurper [[Eugenius]]. As the [[Battle of the Frigidus]], which terminated this campaign, was fought at the passes of the [[Julian Alps]], Alaric probably learned the weakness of [[Italy|Italy's]] natural defences on its northeastern frontier at the head of the [[Adriatic Sea|Adriatic]].
91179
91180 Theodosius died in 395, leaving the empire to be divided between his two sons [[Arcadius]] and [[Flavius Augustus Honorius|Honorius]], the former taking the eastern and the latter the western portion of the empire. Arcadius showed little interest in ruling, leaving most of the actual power to his [[Praetorian Prefect]] [[Rufinus (Byzantine official)|Rufinus]]. Honorius was still a minor; as his guardian, Theodosius had appointed the ''[[magister militum]]'' [[Stilicho]]. Stilicho also claimed to be the guardian of Arcadius, causing much rivalry between the western and eastern courts.
91181
91182 In the shifting of offices which took place at the beginning of the new reigns, Alaric apparently hoped he would be promoted from a mere commander of federates to generalship of one of the regular armies. This was denied him, however. Among the Visigoths, settled in Lower [[Moesia]], the situation was ripe for rebellion. At Frigidus they had suffered disproportional high losses, according to rumour a convenient way of weakening the Gothic tribes. Their rewards after the campaign had also been lacking. So they raised Alaric on a shield and proclaimed him king; leader and followers both resolving (says [[Jordanes]] the Gothic historian) &quot;rather to seek new kingdoms by their own work, than to slumber in peaceful subjection to the rule of others.&quot;
91183
91184 ==In Greece==
91185
91186 Alaric struck first at the eastern empire. He marched to the neighbourhood of [[Constantinople]] but, finding himself unable to undertake the siege of that superbly strong city, retraced his steps westward and then marched southward through [[Thessaly]] and the unguarded pass of [[Thermopylae]] into [[Greece]].
91187
91188 The armies of the eastern empire were occupied with [[Huns|Hunnic]] incursions in [[Asia Minor]] and [[Syria]]. Instead Rufinus attempted to negotiate with Alaric in person. The only results was suspicions in Constantinople that Rufinius was in league with the Goths. Stilicho now marched east against Alaric. According to [[Claudian]], Stilicho was in a position to destroy the Goths, when he was ordered by Arcadius to leave [[Illyricum]]. Soon after Rufinus was hacked to death by his own soldiers. Power in Constantinople now passed to the eunuch chamberlain [[Eutropius (Byzantine official)|Eutropius]].
91189
91190 The death of Rufinus and departure of Stilicho gave Alaric free reins. He ravaged Attica but spared Athens, which at once capitulated to the conqueror. Then he penetrated into the [[Peloponnesus]] and captured its most famous cities—[[Corinth, Greece|Corinth]], [[Argos]], and [[Sparta]]—selling many of their inhabitants into slavery.
91191
91192 Here, however, his victorious career ended. In [[397]] Stilicho crossed by sea to Greece and succeeded in shutting up the Goths in the mountains of [[Pholoe]] on the borders of [[Elis]] and [[Arcadia]] in the peninsula. From thence Alaric escaped with difficulty, and not without some suspicion of connivance on the part of Stilicho, who supposedly again had received orders to depart. Alaric then crossed the [[Gulf of Corinth]] and marched with the plunder of [[Greece]] northwards to [[Despotate of Epirus|Epirus]]. Here his rampage continued until the eastern government appointed him ''magister militum per Illyricum'', giving him the Roman command he had desired and authority to resupply his men from the imperial arsenals.
91193
91194 ==First invasion of Italy==
91195
91196 It was probably in the year [[400]] that Alaric made his first invasion of Italy, cooperating with another Gothic chieftain named [[Radagaisus]]. Supernatural influences weren't lacking to urge him to this great enterprise. Some lines of the Roman poet inform us that he heard a voice proceeding from a [[Oracle|holy grove]], &quot;Break off all delays, Alaric. This very year thou shalt force the Alpine barrier of Italy; thou shalt penetrate to the city.&quot; But the prophecy wasn't to be fulfilled at this time. After spreading desolation through North [[Italy]] and striking terror into the citizens of Rome, Alaric was met by [[Stilicho]] at [[Pollentia]], today in [[Piedmont (Italy)|Piedmont]]. The battle which followed on [[April 6]], [[402]] (coinciding with Easter), was a victory for Rome, though a costly one. But it effectually barred the further progress of the Goths.
91197
91198 Stilicho's enemies later reproached him for having gained his victory by taking impious advantage of the great Christian festival. Alaric, too, was a Christian, though an [[Arianism|Arian]] rather than a [[Catholic]]. He had trusted to the sanctity of Easter for immunity from attack.
91199
91200 The wife of Alaric is said to have been taken prisoner after this battle; and there is some reason to suppose that he was hampered in his movements by the presence with his forces of large numbers of women and children, having given to his invasion of [[Italy]] the character of a national migration.
91201
91202 After another defeat before [[Verona, Italy|Verona]], Alaric left Italy, probably in [[403]]. He hadn't indeed &quot;penetrated to the city&quot; but his invasion of Italy had produced important results. It had caused the imperial residence to be transferred from [[Milan]] to [[Ravenna]], it had necessitated the withdrawal of [[Legio XX Valeria Victrix|Legio XX ''Valeria Victrix'']] from Britain, and it had probably facilitated the great invasion of [[Vandals]], [[Suevi|Sueves]], and [[Alans]] into Gaul, which lost Gaul and the provinces of [[Hispania]] to the Empire.
91203
91204 ==Second invasion of Italy==
91205
91206 We next hear of Alaric as the friend and ally of his late opponent Stilicho. The estrangement between the eastern and western courts had in [[407]] become so bitter as to threaten civil war, and Stilicho was actually proposing to use the forces of Alaric in order to enforce the claims of Honorius to the [[prefecture]] of Illyricum. The death of Arcadius in May [[408]] caused milder counsels to prevail in the western cabinet, but Alaric, who had actually entered Epirus, demanded in a somewhat threatening manner that if he were thus suddenly bidden to desist from war, he should be paid handsomely for what in modern language would be called the expenses of mobilization. The sum which he named was a large one, 4,000 pounds of gold. Under strong pressure from Stilicho the Roman senate consented to promise its payment.
91207
91208 But three months later Stilicho himself and the chief ministers of his party were treacherously slain in pursuance of an order extracted from the timid and jealous Honorius. In the disturbances that followed, throughout Italy the wives and children of the foederati were slain. The natural consequence of all this was that these men, to the number of 30,000, flocked to the camp of Alaric, clamouring to be led against their cowardly enemies. He accordingly led them across the Julian Alps and, in September [[408]], stood before the walls of [[Rome]] (now with no capable general like Stilicho as a defender) and began a strict blockade.
91209
91210 No blood was shed this time; hunger was the weapon on which Alaric relied. When the ambassadors of the [[Roman Senate|Senate]], in treating for peace, tried to terrify him with their hints of what the despairing citizens might accomplish, he gave with a laugh his celebrated answer: &quot;The thicker the hay, the easier mowed!&quot; After much bargaining, the famine-stricken citizens agreed to pay a ransom of more than two thousand pounds in weight of gold, besides precious garments of [[silk]] and leather and three thousand pounds of [[black pepper|pepper]]. Thus ended Alaric's first siege of Rome.
91211
91212 At this time, and indeed throughout his career, Alaric's primary goal wasn't to pull down the fabric of the empire but to secure for himself, by negotiation with its rulers, a regular and recognized position within its borders. His demands were certainly large&amp;mdash; the concession of a block of territory 200 miles long by 150 wide between the Danube and the Gulf of Venice (to be held probably on some terms of nominal dependence on the empire) and the title of commander-in-chief of the imperial army&amp;mdash;but, great as these terms were, the emperor would probably have been well advised to grant them. Honorius, however, was one of those timid and feeble folk who are equally unable to make either war or peace, and refused to look beyond the question of his own personal safety, guaranteed as it was by the dikes and marshes of Ravenna. As all attempts to conduct a satisfactory negotiation with this emperor failed before his impenetrable stupidity, Alaric, after instituting a second siege and blockade of Rome in [[409]], came to terms with the senate. With their consent he set up a rival emperor and invested the prefect of the city, a Greek named [[Priscus Attalus]], with the diadem and the purple robe.
91213
91214 Attalus, however, proved quite unfit for his high position; he rejected the advice of Alaric and lost in consequence the [[Africa (province)|province of Africa]], the granary of Rome, which was defended by the partisans of Honorius. The weapon of famine, formerly in the hand of Alaric, was thus turned against him, and loud in consequence were the murmurs of the Roman populace. Honorius was also greatly strengthened by the arrival of six legions sent to his assistance from Constantinople by his nephew [[Theodosius II]].
91215
91216 Alaric therefore cashiered his puppet emperor, after the latter's eleven months of ineffectual rule, and once more tried to reopen negotiations with Honorius. These negotiations would probably have succeeded but for the malign influence of another Goth, [[Sarus]], the hereditary enemy of Alaric and his house. When Alaric found himself once more outwitted by the machinations of such a foe, he marched southward and began in deadly earnest his third, his ever-memorable siege of Rome. No defence apparently was possible; there are hints, not well substantiated, of treachery; there is greater probability of surprise. However this may be&amp;mdash;for our information at this point of the story is meagre&amp;mdash;on [[August 24]], [[410]], Alaric and his Visigoths burst in by the Salarian gate on the northeast of the city. She who had been mistress of the world now lay at the feet of foreign enemies.
91217
91218 But in their plundering of the city, the Visigoths weren't absolutely ruthless. The contemporary ecclesiastics recorded with wonder many instances of their clemency: Christian churches saved from ravage; protection granted to vast multitudes both of pagans and Christians who took refuge therein; vessels of gold and silver which were found in a private dwelling, spared because they &quot;belonged to St. Peter&quot;; at least one case in which a beautiful Roman matron appealed, not in vain, to the better feelings of the Gothic soldier who attempted her dishonor. But even these exceptional instances show that Rome wasn't entirely spared those scenes of horror which usually accompany the storming of a besieged city. Nonetheless, the written sources do not tell of any damage wrought by fire, save in the case of [[Sallust]]'s palace, which was situated close to the gate by which the Goths had made their entrance; nor is there any reason to attribute any extensive destruction of the buildings of the city to Alaric and his followers. The [[Basilica Aemilia]] in the [[Roman Forum]] did burn down, which perhaps can be attributed to Alaric, based on evidence from archaeologists: coins dating from 410 found melted in the floor.
91219
91220 [[Image:Death of Alaric.jpg|thumb|right|300px|The burial of Alaric in the bed of the [[Busento River]]. 1895 lithograph]]
91221
91222 His work being done, his fated task, and Alaric having penetrated to the city, nothing remained for him but to die. He marched southwards into [[Calabria]]. He desired to invade Africa, which on account of its corn crops was now the key of the position, but his ships were dashed to pieces by a storm in which many of his soldiers perished. He died in [[Cosenza]] soon after, probably of fever, at the early age of thirty-four, and his body was buried under the riverbed of the [[Busento]]. The stream was temporarily turned aside from its course while the grave was dug wherein the Gothic chief and some of his most precious spoils were interred; when the work was finished the river was turned back into its usual channel and the captives by whose hands the labor had been accomplished were put to death that none might learn their secret.
91223
91224 Alaric was succeeded in the command of the Gothic army by his brother-in-law, [[Ataulf]].
91225
91226 Our chief authorities for the career of Alaric are the historian [[Orosius]] and the poet [[Claudian]], both strictly contemporary; [[Zosimus]], a somewhat prejudiced pagan historian, who lived probably about half a century after the death of Alaric; and [[Jordanes]], a Goth who wrote the history of his nation in the year [[551]], basing his work on the earlier history of [[Cassiodorus]] (now lost), which was written about [[520]].
91227
91228
91229 {{1911}}
91230
91231 See also: [[Alaric II]]
91232
91233 ==External links==
91234
91235 *Edward Gibbon, ''History of the Decline and Fall of the Roman Empire'', [http://etext.library.adelaide.edu.au/g/g43d/chapter30.html Chapter 30] and [http://etext.library.adelaide.edu.au/g/g43d/chapter31.html Chapter 31].
91236
91237
91238 {{start box}}
91239 |width=25% align=center|'''Preceded by:'''&lt;br&gt;'''[[Visigoth#Kings_of_the_Visigoths|Early kings]]'''
91240 |width=25% align=center|'''[[Visigoth#Kings_of_the_Visigoths|King of the Visigoths]]'''&lt;br&gt;395&amp;ndash;410
91241 |width=25% align=center|'''Succeeded by:'''&lt;br&gt;'''[[Ataulf]]'''
91242 |-
91243 {{end box}}
91244
91245 [[Category:370 births]]
91246 [[Category:412 deaths]]
91247 [[Category:Goths]]
91248 [[Category:Ancient Roman enemies and allies]]
91249 [[Category:Late Antiquity]]
91250 [[Category:Kings of the Visigoths]]
91251
91252 [[cs:Alarich I.]]
91253 [[de:Alarich I.]]
91254 [[es:Alarico I]]
91255 [[eo:Alariko]]
91256 [[fr:Alaric Ier]]
91257 [[it:Alarico I]]
91258 [[he:אלאריק הראשון]]
91259 [[nl:Alarik]]
91260 [[pl:Alaryk]]
91261 [[pt:Alarico I]]
91262 [[sl:Alarik I.]]
91263 [[fi:Alarik]]
91264 [[sv:Alarik I]]
91265 [[zh:äēšæ‹‰é‡Œå…‹ä¸€ä¸–]]</text>
91266 </revision>
91267 </page>
91268 <page>
91269 <title>Alaric II</title>
91270 <id>1571</id>
91271 <revision>
91272 <id>36213855</id>
91273 <timestamp>2006-01-22T12:55:40Z</timestamp>
91274 <contributor>
91275 <username>Mvuijlst</username>
91276 <id>72854</id>
91277 </contributor>
91278 <text xml:space="preserve">'''Alaric II''', also known as Alarik, Alarich, and ''Alarico'' in [[Spanish language|Spanish]] or ''Alaricus'' in [[Latin]] (d. [[507]]) succeeded his father [[Euric]] in [[485]] as king of the [[Visigoths]]. His dominions included not only the whole of [[Hispania]] except its north-western corner but also [[Aquitaine]] and the greater part of an as-yet undivided [[Gallia Narbonensis]].
91279
91280 In religion Alaric was an [[Arianism|Arian]], like all the early Visigothic nobles, but he greatly mitigated the persecuting policy of his father Euric toward the [[Catholicism|Catholics]] and authorized them to hold in [[506]] the council of [[Agde]]. He was on uneasy terms with the Catholic bishops of Arles as epitomized in the career of the Frankish [[Caesarius of Arles|Caesarius, bishop of Arles]], born at [[ChÃĸlons]] and appointed bishop in 503. Caesarius was suspected of conspiring with the [[Burgundians]] to turn over the Arelate to Burgundy, whose king had married the sister of [[Clovis I|Clovis]], so Alaric exiled him for a year safely at Bordeaux in Aquitaine before allowing him to return unharmed when the crisis had passed ([http://www.ccel.org/w/wace/biodict/htm/iii.iii.iv.htm Wace, ''Dictionary'']).
91281
91282 He displayed similar wisdom and liberality in political affairs by appointing a commission to prepare an abstract of the Roman laws and imperial decrees, which should form the authoritative code for his Roman subjects. This is generally known as the ''Breviarium Alaricianum'' or [[Breviary of Alaric]].
91283
91284 Alaric was of a peaceful disposition and endeavoured strictly to maintain the treaty which his father had concluded with the [[Franks]], whose king [[Clovis I]], however, desiring to obtain the Gothic province in Gaul, found a pretext for war in the Arianism of Alaric. The intervention of [[Theodoric the Great|Theodoric]], king of the [[Ostrogoths]] and father-in-law of Alaric, proved unavailing. The two armies met in [[507]] at the [[Battle of VouillÊ]], near Poitiers, where the Goths were defeated and their king, who took to flight, was overtaken and slain, it is said, by Clovis himself.
91285
91286 His legitimate son [[Amalaric]] was still a child, so he was succeeded by his
91287 illegitimate son, [[Gesalec]].
91288
91289 ==External links==
91290
91291 ==References==
91292 *{{1911}}
91293 *Edward Gibbon, [http://etext.library.adelaide.edu.au/g/g43d/chapter38.html ''History of the Decline and Fall of the Roman Empire''] Chapter 38
91294
91295 {{start box}}
91296 |width=25% align=center|'''Preceded by:'''&lt;br&gt;'''[[Euric]]'''
91297 |width=25% align=center|'''[[Visigoth#Kings_of_the_Visigoths|King of the Visigoths]]'''&lt;br&gt;485&amp;ndash;507
91298 |width=25% align=center|'''Succeeded by:'''&lt;br&gt;'''[[Gesalec]]'''
91299 |-
91300 {{end box}}
91301
91302 [[Category:507 deaths|Alaric]]
91303 [[Category:Goths|Alaric]]
91304 [[Category:History of Spain]]
91305 [[Category:History of Portugal]]
91306 [[Category:Spanish people]]
91307 [[Category:Portuguese people]]
91308 [[Category:Kings of the Visigoths]]
91309
91310 [[de:Alarich II.]]
91311 [[es:Alarico II]]
91312 [[fr:Alaric II]]
91313 [[sv:Alarik II]]
91314 [[zh:äēšæ‹‰é‡Œå…‹äēŒä¸–]]</text>
91315 </revision>
91316 </page>
91317 <page>
91318 <title>Albategnius</title>
91319 <id>1572</id>
91320 <revision>
91321 <id>39741255</id>
91322 <timestamp>2006-02-15T15:15:11Z</timestamp>
91323 <contributor>
91324 <username>N.MacInnes</username>
91325 <id>611233</id>
91326 </contributor>
91327 <text xml:space="preserve">#REDIRECT [[Al-Battani]]</text>
91328 </revision>
91329 </page>
91330 <page>
91331 <title>Albertus Magnus</title>
91332 <id>1573</id>
91333 <revision>
91334 <id>42105775</id>
91335 <timestamp>2006-03-03T21:38:10Z</timestamp>
91336 <contributor>
91337 <username>Kripkenstein</username>
91338 <id>911653</id>
91339 </contributor>
91340 <minor />
91341 <comment>Minor change</comment>
91342 <text xml:space="preserve">[[Image:AlbertusMagnus.jpg|right|thumb|Albertus Magnus (fresco, 1352, Treviso, Italy)]]
91343 {{Redirect3|Albertus|is also the name of a [[Albertus (typeface)|typeface]]}}
91344
91345 '''Albertus Magnus''' ([[1193]]? &amp;ndash; [[November 15]], [[1280]]), also known as '''Saint Albert the Great''' and '''Albert of Cologne''', was a [[Dominican Order|Dominican]] friar who became famous for his universal knowledge and advocacy for the peaceful coexistence of science and religion. He is considered to be the greatest German philosopher and theologian of the [[Middle Age]]s. He was the first medieval scholar to apply [[Aristotle]]'s philosophy to Christian thought at the time. [[Catholicism]] honors him as a [[Doctor of the Church]], one of only 33 men and women with that honor.
91346
91347 ==Biography==
91348 He was born of the noble family of Bollstadt in [[Lauingen]], [[Bavaria]], [[Germany]] on the [[Danube]], sometime between 1193 and [[1206]]. The term &quot;magnus&quot; is not descriptive; it is the [[Latin]] equivalent of his family name, de Groot.
91349
91350 Albertus was educated principally at [[Padua]], where he received instruction in [[Aristotle]]'s writings. After an alleged encounter with the [[Blessed Virgin Mary]], he entered holy orders. In [[1223]] (or [[1221]]) he became a member of the [[Dominican Order]], and studied [[theology]] under its rules at [[Bologna]] and elsewhere. Selected to fill the position of lecturer at [[Cologne]], where the order had a house, he taught for several years there, at [[Regensburg]], [[Freiburg]], [[Strasbourg]] and [[Hildesheim]]. In [[1245]] he went to [[Paris]], received his doctorate and taught for some time, in accordance with the regulations, with great success.
91351
91352 In [[1254]] he was made provincial of the Dominican Order, and fulfilled the arduous duties of the office with great care and efficiency. During the time he held this office he publicly defended the Dominicans against the attacks by the secular and regular faculty of the [[University of Paris]], commented on [[John the Evangelist|St John]], and answered the errors of the [[Arab philosophy|Arabian philosopher]], [[Averroes]].
91353
91354 In [[1260]] [[Pope Alexander IV]] made him [[bishop]] of [[Regensburg]], which office he resigned after three years. The remainder of his life he spent partly in preaching throughout Bavaria and the adjoining districts, partly in retirement in the various houses of his order. In [[1270]] he preached the [[eighth Crusade]] in [[Austria]]. Among the last of his labours was the defence of the orthodoxy of his former pupil, [[Thomas Aquinas]], whose death in [[1274]] grieved Albertus. After suffering collapse of health in [[1278]], he died on [[November 15]], [[1280]], in [[Cologne]], [[Germany]]. His tomb is in the [[crypt]] of the Dominican church of [[St. Andreas]] in Cologne.
91355
91356 Albertus is frequently mentioned by [[Dante Alighieri|Dante]], who made his doctrine of [[free will]] the basis of his ethical system. In his [[Divine Comedy]], Dante places Albertus with his pupil Thomas Aquinas among the great lovers of wisdom (''Spiriti Sapienti'') in the Heaven of the Sun.
91357
91358 Albertus was beatified in [[1622]]. He was canonized and also officially named a Doctor of the Church in [[1931]] by [[Pope Pius XI]]. His feast day is celebrated on November 15th.
91359
91360 ==Writings==
91361 Albertus's writings collected in [[1899]] went to 38 volumes, displaying his prolific habits and literally encyclopedic knowledge of topics including, but not limited to, logic, theology, botany, geography, astronomy, mineralogy, chemistry, zoÃļlogy, physiology, and [[phrenology]], all of it the result of logic and observation. He was the most widely read author of his time. The whole of [[Aristotle]]'s works, presented in the Latin translations and notes of the Arabian commentators, were by him digested, interpreted and systematized in accordance with church doctrine. He came to be so associated with Aristotle that he was referred to as &quot;Aristotle's ape&quot;.
91362
91363 Albert's activity, however, was more philosophical than theological (see [[Scholasticism]]). The philosophical works, occupying the first six and the last of the twenty-one volumes, are generally divided according to the Aristotelian scheme of the sciences, and consist of interpretations and condensations of Aristotle's relative works, with supplementary discussions depending on the questions then agitated, and occasionally divergences from the opinions of the master.
91364
91365 His principal theological works are a commentary in three volumes on the Books of the Sentences of [[Peter Lombard]] (''Magister Sententiarum''), and the ''Summa Theologiae'' in two volumes. This last is in substance a repetition of the first in a more didactic form.
91366
91367 ==Albertus as scientist==
91368 Albertus's knowledge of physical science was considerable and for the age accurate. His industry in every department was great, and though we find in his system many of those gaps which are characteristic of scholastic philosophy, yet the protracted study of Aristotle gave him a great power of systematic thought and exposition, and the results of that study, as left to us, by no means warrant the contemptuous title sometimes given him of the &quot;Ape of Aristotle.&quot; They rather lead us to appreciate the motives which caused his contemporaries to bestow on him the honourable surnames &quot;The Great&quot; and ''Doctor Universalis.'' It must, however, be admitted that much of his knowledge was ill digested; it even appears that he regarded [[Plato]] and [[Speusippus]] as [[Stoics]].
91369
91370 Albertus was both a student and a teacher of [[alchemy]] and [[chemistry]]. He isolated [[arsenic]] in [[1250]]. He was alleged to be a magician, since he was repeatedly charged by some of his unfriendly contemporaries with communing with the devil, practicing the craft of magic, and with the making of a demonic automata able to speak. He was also one of the alchemists reputed to have succeeded in discovering the [[Philosopher's Stone]].
91371
91372 [[Image:Albertus Magnus-Denkmal.jpg|thumb|Albertus Magnus monument in Cologne]]
91373
91374 ==Music==
91375 In music history, Albertus is known for his enlightening commentary on musical practice of the time. Most of his musical observations are given in his commentary on Aristotle's ''Poetics''. Among other things, he rejects the idea of &quot;[[music of the spheres]]&quot; as ridiculous: movement of astronomical bodies, he supposes, is incapable of generating sound. He also wrote extensively on proportions in music, and on the three different subjective levels on which [[plainchant]] could work on the human soul: purging of the impure; illumination leading to contemplation; and nourishing perfection through contemplation. Of particular interest to [[20th century]] music theorists is the attention he paid to silence as an integral part of music.
91376
91377 ==Trivia==
91378 *Magnus is recorded as having made an [[android]], a mechanical [[automaton]] in the figure of a man. {{ref label|1728|1|^}}
91379
91380 ==Quotes==
91381 ''Natural science does not consist in ratifying what others have said, but in seeking the causes of phenomena.''
91382
91383 ==See also==
91384 *[[History of science in the Middle Ages]]
91385
91386 ==References==
91387 #{{note label|1728|1|^}}{{1728}} [http://digicoll.library.wisc.edu/cgi-bin/HistSciTech/HistSciTech-idx?type=turn&amp;entity=HistSciTech000900240135&amp;isize=L Androides].
91388
91389 ==External links==
91390 *[http://www.newadvent.org/cathen/01264a.htm Catholic Encyclopedia article]
91391
91392 {{Medieval_Philosophy}}
91393
91394 [[Category:1193 births]]
91395 [[Category:1280 deaths]]
91396 [[Category:Catholic philosophers|Albertus Magnus]]
91397 [[Category:Christians in science]]
91398 [[Category:Discoverers of chemical elements]]
91399 [[Category:Doctors of the Church]]
91400 [[Category:Dominicans]]
91401 [[Category:German chemists]]
91402 [[Category:German philosophers]]
91403 [[Category:German theologians]]
91404 [[Category:Music theorists]]
91405 [[Category:Natives of Bavaria]]
91406 [[Category:Roman Catholic bishops]]
91407 [[Category:German saints]]
91408 [[Category:Scholastic philosophers]]
91409
91410 [[de:Albertus Magnus]]
91411 [[et:Albert Suur]]
91412 [[es:Alberto Magno]]
91413 [[eo:Alberto la Granda]]
91414 [[fa:ØĸŲ„Ø¨ØąØĒ ÚŠØ¨ÛŒØą]]
91415 [[fr:Albert le Grand]]
91416 [[gl:Alberte o Magno]]
91417 [[hr:Sveti Albert Veliki]]
91418 [[id:Albertus Magnus]]
91419 [[it:Alberto Magno]]
91420 [[la:Albertus Magnus]]
91421 [[hu:Albertus Magnus]]
91422 [[nl:Albertus Magnus]]
91423 [[ja:ã‚ĸãƒĢベãƒĢトã‚Ĩã‚šãƒģマグヌ゚]]
91424 [[no:Albertus Magnus]]
91425 [[pl:Albert Wielki]]
91426 [[pt:Alberto Magno]]
91427 [[ru:АĐģŅŒĐąĐĩŅ€Ņ‚ ВĐĩĐģиĐēиК]]
91428 [[sk:Albert VeÄžkÃŊ]]
91429 [[sl:Albert Veliki]]
91430 [[fi:Albert Suuri]]
91431 [[sv:Albertus Magnus]]
91432 [[tr:Albertus Magnus]]
91433 [[uk:АĐģŅŒĐąĐĩŅ€Ņ‚ ВĐĩĐģиĐēиК]]</text>
91434 </revision>
91435 </page>
91436 <page>
91437 <title>Albion</title>
91438 <id>1574</id>
91439 <revision>
91440 <id>39730222</id>
91441 <timestamp>2006-02-15T13:06:10Z</timestamp>
91442 <contributor>
91443 <username>Rich Farmbrough</username>
91444 <id>82835</id>
91445 </contributor>
91446 <minor />
91447 <comment>Wikify dates</comment>
91448 <text xml:space="preserve">:''This article is about the archaic name for Great Britain. For other meanings, see [[Albion (disambiguation)]]''
91449 [[Image:white_cliffs_of_dover_09_2004.jpg|320px|thumb|The white cliffs of Dover]]'''Albion''' (in [[Ptolemy]] ''Alouion''), is the most ancient name of [[Great Britain]], though often used to refer specifically to [[England]]. Occasionally it instead refers to only [[Scotland]], whose name in [[Scottish Gaelic language|Gaelic]] is ''[[Alba]]'' (and similarly, in [[Irish language|Irish]], and ''Yr Alban'' in Welsh{{ref|welsh}}). [[Pliny the Elder]], in his ''Natural History'' (iv.xvi.102) applies it unequivocally to Great Britain, &quot;It was itself named Albion, while all the islands about which we shall soon briefly speak were called the Britanniae.&quot; The name ''Albion'' was taken by medieval writers from Pliny and [[Ptolemy]].
91450
91451 The name is perhaps of [[Celtic languages|Celtic]] origin or older, from the [[Proto-Indo-European language|Proto-Indo-European]] root that denotes both &quot;white&quot; and &quot;mountain&quot;, but the [[Roman Empire|Romans]] took it as connected with ''albus'' (white), in reference to the chalk &quot;[[White Cliffs of Dover]]&quot;, and Alfred Holder's ''Alt-Keltischer Sprachschatz,'' (1896) unhesitatingly translates it ''Weissland'' (&quot;whiteland&quot;). The early writer ([[6th century BC]]) whose [[periplus]] was translated by [[Avienus]] at the end of the 4th century AD (see ''[[Massaliote Periplus]]'') does not use the name ''Britannia''; he speaks of ''nesos 'Iernon kai 'Albionon'' (island of the Ierni and the Albiones). So [[Pytheas of Massilia]] ([[4th century BC]]) speaks of ''Albion and 'Ierne''. From the fact that there was a tribe called the ''Albiones'' on the north coast of [[Spain]] in [[Asturias]], some scholars have placed Albion in that neighbourhood (see G. F. Unger, ''Rhein. Mus.'' xxxviii., 1883, pp. 156-196).
91452
91453 The pejorative [[sobriquet]] ''[[perfidious Albion]]'' takes its meaning from this old name for Britain.
91454
91455 ==References==
91456 #{{note|welsh}}[http://www.cs.cf.ac.uk/fun/welsh/LexiconForms.html Welsh Lexicon Forms]. [[Cardiff University]], [[Cardiff School of Computer Science]]. Retrieved [[19 January]] [[2006]].
91457
91458 [[Category:Ancient Roman provinces]]
91459 [[Category:British Isles]]
91460 {{UK-stub}}
91461
91462
91463 [[da:Albion]]
91464 [[de:Albion]]
91465 [[es:AlbiÃŗn]]
91466 [[nl:Albion]]
91467 [[ja:ã‚ĸãƒĢビã‚Ēãƒŗ]]
91468 [[no:Albion]]
91469 [[pl:Albion (Anglia)]]
91470 [[sv:Albion]]
91471 [[uk:АĐģŅŒĐąŅ–ĐžĐŊ]]</text>
91472 </revision>
91473 </page>
91474 <page>
91475 <title>Alboin</title>
91476 <id>1575</id>
91477 <revision>
91478 <id>40359123</id>
91479 <timestamp>2006-02-20T01:16:24Z</timestamp>
91480 <contributor>
91481 <username>Rich Farmbrough</username>
91482 <id>82835</id>
91483 </contributor>
91484 <minor />
91485 <comment>External links per MoS.</comment>
91486 <text xml:space="preserve">'''Alboin''' or '''Alboïn''' (d. [[572]] or [[573]]), king of the [[Lombards]], and conqueror of [[Italy]], succeeded his father [[Audoin]] about [[565]]. The Lombards were at that time dwelling in [[Noricum]] and [[Pannonia]] (the plain of eastern Austria south and east of the Danube, modern-day Slovenia and Istria). In alliance with the [[Eurasian Avars|Avars]], an Asiatic people who had invaded central Europe, Alboin defeated the Lombards' hereditary enemies, the [[Gepids]], a powerful nation on his eastern frontier, slew their new king
91487 [[Cunimund]], whose skull he fashioned into a drinking-cup, and whose daughter [[Rosamund]] he carried off and made his wife.
91488
91489 Three years later, in April, [[568]], on the alleged invitation of [[Narses]], who was irritated by the treatment he had received from the emperor [[Justin II]], Alboin invaded [[Italy]], with the women and children of the tribe and all their possessions, with 20,000 Saxon allies and the subject tribe of the Gepids and a mixed host of other barbarians, probably marching over the pass of the [[Predil]] and crossing the great plain at the head of the Adriatic into Italy. The [[Gothic War]], which had ended in the downfall of the Goths, had exhausted Italy, which was wracked with famine and plague, and the Eastern Emperor's government at Constantinople was powerless to retain the Italian province which [[Belisarius]] and [[Narses]] had recently recovered for it. Alboin's horde overran [[Venice|Venetia]] and the wide district which we now call [[Lombardy]], took Milan in 569, meeting with but feeble resistance till he came to the city of [[Ticinum]] ([[Pavia]]), which for three years ([[569]]-[[572]]) kept the Lombards at bay and then became the new capital. Where the Lombards did meet with resistance, retribution was savage beyond anything Italy had experienced before. The bishops, who were virtually the leaders of the late antique Roman cities, fled, like the [[Roman Catholic Archdiocese of Milan|bishop of Milan]], or compounded with the barbarians for gentler treatment of their people.
91490
91491 While the siege of Pavia was in progress Alboin was also engaged in other parts of Italy, and at Pavia's capitulation he was probably master of [[Lombardy]], [[Piedmont (Italy)|Piedmont]] and [[Tuscany]], as well as of the regions which afterwards went by the name of the duchies of [[Spoleto]] and [[Benevento]].
91492
91493 In [[572]], according to [[Paul the Deacon]] (Paulus Diaconus), the [[8th century]] Lombard chronicler, Alboin fell a victim to the revenge of his wife Rosamund, the daughter of the king of the Gepids, whose skull Alboin had turned into a drinking cup (worn at his belt) and out of which he forced Rosamund to drink. Rosamund immediately went to [[Helemechis]] (or ''Helmgis''), the king's [[squire]] (''scilpor'') or armour-bearer and foster brother, who advised her to seek out [[Peredeo]], a very strong man. Peredeo refused to involve himself in such a crime. So the queen went to the bed of the dressing-maid with whom Peredeo was having an affiar and, unbeknownst to Peredeo, slept with him. When the deed was done, the queen revealed her identity to Peredeo and said
91494
91495 :''&quot;...surely now you have perpetrated such a deed, Peredeo, that either you must kill Alboin or he will slay you with his sword.&quot;''
91496
91497 Letting Paul the Deacon continue:
91498
91499 :''Then he learned the evil thing he had done, and he who had been unwilling of his own accord, assented, when forced in such a way, to the murder of the king. Then Rosemund, while Alboin had given himself up to a noon-day sleep, ordered that there should be a great silence in the palace, and taking away all other arms, she bound his sword tightly to the head of the bed so it could not be taken away or unsheathed, and according to the advice of Peredeo, she, more cruel than any beast, let in Helmechis the murderer. Alboin suddenly aroused from sleep perceived the evil which threatened and reached his hand quickly for his sword, which, being tightly tied, he could not draw, yet he seized a foot-stool and defended himself with it for some time. But unfortunately alas! this most warlike and very brave man being helpless against his enemy, was slain as if he were one of no account, and he who was most famous in war through the overthrow of so many enemies, perished by the scheme of one little woman.''[http://www.northvegr.org/lore/langobard/index.php]
91500
91501 So Peredeo and the queen fled to the protection of the Byzantine representative at Ravenna.
91502
91503 In these few years the Lombards had established themselves in the north of Italy (henceforth [[Lombardy]]). But they had little practice in governing large provinces. Lombard warlords (which Latin chroniclers called 'dukes') were established in all the strongholds and passes, and this arrangement became increasingly characteristic of the Lombard settlement. Their power extended tenuously across the Apennines into Liguria and Tuscany, and southwards to the outlying Lombard dukedoms of [[Spoleto]] and [[Benevento]]. The invaders failed to secure any maritime ports or any territory that was conveniently commanded from the sea, such as Byzantine [[Ravenna]]. Local inhabitants fled into the marshes and lagoons, where [[Venice]] had its beginnings.
91504
91505 After his death and the short reign of his successor [[Cleph]] the Lombards remained for more than ten years without a king, ruled by the various dukes.
91506
91507 The authorities for the history of Alboin are first of all [[Paul the Deacon]], the Byzantine [[Procopius]], and [[Agnellus]] (in his history of the church of [[Ravenna]]).
91508
91509 ===Sources===
91510
91511 *[[Charles Oman]], ''The [[Dark Ages]] [[476]]-[[918]]''. [[1914]]. Rivingtons, [[London, England|London]].
91512
91513 *{{1911}}
91514
91515 ===External links===
91516
91517 *[http://www.northvegr.org/lore/langobard/index.php A translation of Historia Langobardorum]
91518
91519
91520 {| border=&quot;2&quot; align=&quot;center&quot;
91521 |width=&quot;30%&quot; align=&quot;center&quot;|Preceded by:&lt;br&gt;'''[[Audoin]]'''
91522 |width=&quot;40%&quot; align=&quot;center&quot;|'''[[Lombard|King of the Lombards]]'''
91523 |width=&quot;30%&quot; align=&quot;center&quot; rowspan=&quot;2&quot;|Followed by:&lt;br&gt;'''[[Cleph]]'''
91524 |}
91525
91526 [[Category:Lombard kings]]
91527
91528 [[de:Alboin]]
91529 [[fr:Alboïn]]
91530 [[it:Alboino]]
91531 [[nl:Alboin van de Langobarden]]
91532 [[zh:é˜ŋ尔博因]]</text>
91533 </revision>
91534 </page>
91535 <page>
91536 <title>Afonso de Albuquerque</title>
91537 <id>1576</id>
91538 <revision>
91539 <id>40877178</id>
91540 <timestamp>2006-02-23T16:37:13Z</timestamp>
91541 <contributor>
91542 <username>Rich Farmbrough</username>
91543 <id>82835</id>
91544 </contributor>
91545 <minor />
91546 <comment>Caps in section headings</comment>
91547 <text xml:space="preserve">[[Image:afonso_albuquerque3.jpg|thumb|right|Afonso de Albuquerque|125px]]'''Afonso de Albuquerque''', '''Afonso d'Albuquerque''' or '''Alfonso de Albuquerque''' ([[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] {{IPA|ɐ.'fÃĩ.su dɨ aÉĢ.βu.'kɛɾ.kɨ}}) ([[1453]] - [[December 16]], [[1515]]) was a noted [[Portugal|Portuguese]] naval general whose activities helped establish the Portuguese colonial empire in India.
91548
91549 ==Early life==
91550 Born in Alhandra in the year of 1453, near [[Lisbon]], [[Portugal]], he was for some time known as ''The Great'', and as ''The Portuguese Mars''. Through his father, Gonçalo, who held an important position at court, he was connected by illegitimate descent with the royal family of Portugal. He was educated at the court of [[Afonso V of Portugal]], and after the death of that monarch seems to have served for some time in [[Africa]]. On his return he was appointed ''estribeiro-mor'' (chief [[equerry]]) to [[John II of Portugal|John II]].
91551
91552 ==Expeditions to the East==
91553
91554 ===First Expedition, 1503-1504===
91555 In [[1503]] he set out on his first expedition to the East, which was to be the scene of his future triumphs. In company with his kinsman Francisco he sailed round the [[Cape of Good Hope]] to [[India]], and succeeded in establishing the king of Cochin securely on his throne, obtaining in return for this service permission to build a Portuguese fort at Cochin, and thus laying the foundation of his country's empire in the East.
91556
91557 ===Operations in the Persian Gulf and Malabar, 1504-1508===
91558 Albuquerque returned home in [[July]] [[1504]], and was well received by King [[Manuel I of Portugal]], who entrusted him with the command of a squadron of five vessels in the fleet of sixteen which sailed for [[India]] in [[1506]] under [[TristÃŖo da Cunha]]. After a series of successful attacks on the [[Arab]] cities on the east coast of Africa, Albuquerque separated from Da Cunha, and sailed with his squadron against the island of [[Ormuz]], in the [[Persian Gulf]], which was then one of the chief centres of commerce in the East. He arrived on [[September 25]], [[1507]], and soon obtained possession of the island, though he was unable long to maintain his position.
91559
91560 With his squadron increased by three vessels, he reached the [[Malabarian Coast|Malabar coast]] at the close of the year [[1508]], and immediately made known the commission he had received from the king empowering him to supersede the governor [[Francisco de Almeida]]. The latter, however, refused to recognize Albuquerque's credentials and cast him into prison, from which he was only released, after three months' confinement, on the arrival of the grand-marshal of Portugal with a large fleet, in November 1509. Almeida having returned home, Albuquerque speedily showed the energy and determination of his character.
91561
91562 ===Operations in Goa and Malacca, 1510-1511===
91563 An unsuccessful attack upon Calicut (modern [[Kozhikode]]) in January [[1510]], in which the commander-in-chief received a severe wound, was immediately followed by the investment and capture of [[Old Goa|Goa]]. Albuquerque, finding himself unable to hold the town on his first occupation, abandoned it in [[August]], to return with the reinforcements in [[November]], when he obtained undisputed possession. He next directed his forces against the [[Sultanate of Malacca]], which he subdued [[August 24]]th [[1511]] after a severe struggle. He remained in the town nearly a year in order to strengthen the position of the portuguese crown.
91564
91565 ===Various operations, 1512-1515===
91566 In [[1512]] he sailed for the coast of Malabar. On the voyage a violent storm arose, Albuquerque's vessel, the ''Flor do Mar'', which carried the treasure he had amassed in his conquests, was wrecked, and he himself barely escaped with his life. In [[September]] of the same year he arrived at Goa, where he quickly suppressed a serious revolt headed by Idalcan, and took such measures for the security and peace of the town that it became the most flourishing of the Portuguese settlements in India. Albuquerque had been for some time under orders from the home government to undertake an expedition to the [[Red Sea]], in order to secure that channel of communication exclusively to Portugal. He accordingly laid siege to [[Aden]] in [[1513]], but was repulsed; and a voyage into the Red Sea, the first ever made by a European fleet, led to no substantial results. In order to destroy the power of [[Egypt]], he is said to have entertained the idea of diverting the course of the [[Nile River]] and so rendering the whole country barren. His last warlike undertaking was a second attack upon Ormuz in [[1515]]. The island yielded to him without resistance, and it remained in the possession of the Portuguese until [[1622]].
91567
91568 ==Political downfall and last years==
91569 Albuquerque's career had a painful and ignominious close. He had several enemies at the Portuguese court who lost no opportunity of stirring up the jealousy of King Manuel against him, and his own injudicious and arbitrary conduct on several occasions served their end only too well. On his return from Ormuz, at the entrance of the harbour of Goa, he met a vessel from Europe bearing dispatches announcing that he was superseded by his personal enemy [[Lopo Soares de Albergaria]]. The blow was too much for him and he died at sea on December 16, 1515.
91570
91571 Before his death he wrote a letter to the king in dignified and affecting terms, vindicating his conduct and claiming for his son the honours and rewards that were justly due to himself. His body was buried at Goa in the Church of our Lady. The king of Portugal was convinced too late of his fidelity, and endeavoured to atone for the ingratitude with which he had treated him by heaping honours upon his natural son BrÃĄs. The latter published a selection from his father's papers under the title ''Commentarios do Grande Affonso d'Alboquerque''.
91572
91573 The Indians long remembered his benign rule, and used to visit his tomb to pray him to deliver them from the oppression of his successors.
91574
91575 ==References==
91576 *{{1911}}
91577 *[http://www.newadvent.org/cathen/01270c.htm Catholic Encyclopedia article]
91578
91579 [[Category:1453 births|Albuquerque, Alfonso d']]
91580 [[Category:1515 deaths|Albuquerque, Alfonso d']]
91581 [[Category:Portuguese explorers|Alfonso d'Albuquerque]]
91582 [[Category:Explorers of Asia|Alfonso d'Albuquerque]]
91583 [[Category:Portuguese admirals|Alfonso d'Albuquerque]]
91584 [[Category:Portuguese generals|Alfonso d'Albuquerque]]
91585
91586 [[bg:АŅ„ĐžĐŊŅŅƒ Đ´Đĩ АĐģĐąŅƒĐēĐĩŅ€ĐēĐĩ]]
91587 [[cs:Afonso de Albuquerque]]
91588 [[de:Afonso de Albuquerque]]
91589 [[fr:Alfonso de Albuquerque]]
91590 [[id:Alfonso de Albuquerque]]
91591 [[nl:Afonso d'Albuquerque]]
91592 [[pl:Alfonso de Albuquerque]]
91593 [[pt:Afonso de Albuquerque]]
91594 [[sv:Afonso de Albuquerque]]
91595
91596 Reduce linking to solitary years and solitary months in accordance with the manual of style</text>
91597 </revision>
91598 </page>
91599 <page>
91600 <title>Alcaeus (poet)</title>
91601 <id>1577</id>
91602 <revision>
91603 <id>40965892</id>
91604 <timestamp>2006-02-24T04:03:23Z</timestamp>
91605 <contributor>
91606 <username>RussBot</username>
91607 <id>279219</id>
91608 </contributor>
91609 <minor />
91610 <comment>Robot-assisted disambiguation ([[WP:DPL|you can help!]]): Lesbos</comment>
91611 <text xml:space="preserve">'''Alcaeus '''('''Alkaios''')''' of Mitylene''' (ca. [[620s BC|620 BC]]-[[6th century BC]]), [[ancient Greece|Greek]] [[lyric]] poet, was an older contemporary and an alleged lover of [[Sappho]], with whom he exchanged poems. He was of the aristocratic governing class of [[Mytilene]], the main city of [[Lesbos Island|Lesbos]], where his life was entangled with its political disputes and internal feuds. He sided with his class against the upstart &quot;[[tyrant]]s&quot; who set themselves up in Mytilene as the voice of the people. He was in consequence obliged to spend a considerable time in exile. He is said to have become reconciled to [[Pittacus]], the ruler set up by the populist party, and to have returned eventually to Lesbos. The date of his death is unknown.
91612
91613 When his poems were edited in [[Hellenistic]] [[Alexandria]], they were reported to have filled ten scrolls. However, the poetry of Alcaeus has survived only in quotations: &quot;Fighting men are the city's fortress&quot; and the like, so judging him, rather than his high reputation in [[classical antiquity|antiquity]], is like judging [[Ben Jonson]] through ''[[Bartlett's Familiar Quotations]]''. The subjects of his poems, which were composed in the [[Aeolic Greek]] dialect, were of various kinds: hymns to the gods; martial or political comment, sometimes quite personal; and lastly love-songs and drinking-songs, the kind of poetry that would be read aloud at a [[symposium]]. Alexandrian scholars agreed that Alcaeus was the second greatest lyric poet among the [[Nine lyric poets|canonic nine]]. The considerable number of fragments extant (''see link''), and the imitations of Alcaeus in Latin by [[Horace]], who regarded Alcaeus as his great model, help us to form a fair idea of the character of his poems.
91614
91615 ==External links==
91616 *[http://mkatz.web.wesleyan.edu/Images2/cciv243.Alcaeus.html A. M. Miller, ''Greek Lyric'':] Alcaeus, many fragments.
91617
91618 [[Category:Ancient Greek poets]]
91619
91620 [[de:Alkaios von Lesbos]]
91621 [[es:Alceo de Mitilene]]
91622 [[fr:AlcÊe de Mytilène]]
91623 [[gl:Alceo de Mitilene]]
91624 [[is:Alkajos]]
91625 [[it:Alceo]]
91626 [[he:אלקאיוס]]
91627 [[hu:Alkaiosz]]
91628 [[nl:Alkaios]]
91629 [[fi:Alkaios]]
91630 [[uk:АĐģĐēĐĩĐš (ĐŋĐžĐĩŅ‚)]]</text>
91631 </revision>
91632 </page>
91633 <page>
91634 <title>Alcamenes</title>
91635 <id>1578</id>
91636 <revision>
91637 <id>28960214</id>
91638 <timestamp>2005-11-22T04:39:32Z</timestamp>
91639 <contributor>
91640 <username>Jwestbrook</username>
91641 <id>496036</id>
91642 </contributor>
91643 <minor />
91644 <comment>disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
91645 <text xml:space="preserve">'''Alcamenes''' was a Greek [[Sculpture|sculptor]] of [[Lemnos]] and [[Athens]].
91646
91647 He was a younger contemporary of [[Pheidias]] and noted for the delicacy and finish of his works, among which a [[Hephaestus]] and an [[Aphrodite]] &quot;of the Gardens&quot; were conspicuous.
91648
91649 [[Pausanias (geographer)|Pausanias]] says (v. 10. 8) that he was the author of one of the pediments of the temple of [[Zeus]] at [[Olympia, Greece|Olympia]], but this seems a chronological and stylistic impossibility. At [[Pergamum]] there was discovered in 1903 a copy of the head of the Hermes &quot;Propylaeus&quot; of Alcamenes (''Athenische Mittheilungen'', 1904, p. 180). As, however, the deity is represented in an archaistic and conventional character, this copy cannot be relied on as giving us much information as to the usual style of Alcamenes, who was almost certainly a progressive and original artist.
91650
91651 It is safer to judge him by the sculptural decoration of the [[Parthenon]], in which he must almost certainly have taken a share under the direction of Pheidias.
91652
91653 ==References==
91654 *{{1911}}
91655
91656 [[Category:Ancient Athenians]]
91657 [[de:Alkamenes]]
91658 [[gl:Alcamenes]]
91659 [[pt:AlcÃĸmenes]]</text>
91660 </revision>
91661 </page>
91662 <page>
91663 <title>Alcmene</title>
91664 <id>1579</id>
91665 <revision>
91666 <id>38316140</id>
91667 <timestamp>2006-02-05T15:04:36Z</timestamp>
91668 <contributor>
91669 <username>Vervin</username>
91670 <id>98350</id>
91671 </contributor>
91672 <minor />
91673 <comment>/* References */</comment>
91674 <text xml:space="preserve">:'''''[[82 Alkmene]]''' is an [[asteroid]].''
91675
91676 In [[Greek mythology]] '''Alcmene''', or '''AlkmÃĒnÃĒ''' (&quot;might of the moon&quot;) , the daughter of [[Electryon]], king of [[Mycenae]] and a son of [[Perseus]], was the wife of [[Amphitryon]] in his exile, though he had accidentally killed her father. Some mythographers identified her mother as [[Eurydice]] (Graves, 110.c).
91677
91678 With Amphitryon she fled to [[Thebes, Greece|Thebes]], where [[Creon]] purified her husband of his blood-guilt. However, Alcmene's eight brothers had been killed in a cattle raid, and she would not lie with Amphitryon until they had been avenged.
91679
91680 Thus at Thebes she was the mother of [[Heracles]] by [[Zeus]], who assumed the likeness of her husband during his absence to lie with her and stayed [[Helios]], to make one night into three; and she was the mother of [[Iphicles]] by Amphitryon, when he returned, giving birth to Heracles' twin, younger by a day. In this way Alcmene is one among several mothers of mythic twins of whom the sire of one is mortal, of the other a god, the most famous of them being the [[Dioscuri]], two from the double set of such twins of [[Leda]]. Theseus combined in his person a double fatherhood, a human father and a divine: see [[Theseus]]. In this case Alcmene's son Iphicles was mortal, while Heracles became immortal.
91681
91682 While Alcmene was pregnant with [[Heracles]] (&quot;glory of Hera&quot;), [[Hera]] herself tried to prevent her from giving birth to the [[hero]] who would help establish the new Olympian order. She was foiled by [[Galanthis]], Alcmene's servant, who told Hera that she had already delivered the baby. Hera turned her into a [[weasel]].
91683
91684 Through Heracles, Alcmene was regarded as the ancestress of the [[Heracleidae]], and venerated at [[Thebes, Greece|Thebes]] and [[Athens]].
91685
91686 After the death of Amphitryon, Alcmene married the Cretan [[Rhadamanthus]], who was exiled in [[Boeotia]]. Their &quot;tombs&quot; were shown to travellers in classical times at Haliartus (Graves, 88.i); such &quot;tombs&quot; were generally sites for propitiatory ancestor [[Cult (religion)|cults]] (compare Burkert 1985).
91687
91688 ==External links==
91689 *[http://85.1911encyclopedia.org/A/AL/ALCMENE.htm ''Encyclopaedia Britannica'' 1911:] &quot;Alcmene&quot;
91690
91691 ==References==
91692 *[[Walter Burkert|Burkert, Walter]], ''Greek Religion: &quot;Clan and Family Mysteries'' pp 278ff.
91693 *[[Robert Graves|Graves, Robert]], 1960. ''The Greek Myths'' (revised edition)
91694
91695
91696 [[Category:Greek mythological people]]
91697
91698 [[ca:Alcmena]]
91699 [[da:Alkmene]]
91700 [[de:Alkmene]]
91701 [[et:Alkmene]]
91702 [[es:Alcmena]]
91703 [[fr:Alcmène]]
91704 [[gl:Alcmena]]
91705 [[it:Alcmena]]
91706 [[lt:Alkmenė]]
91707 [[nl:Alkmene]]
91708 [[pl:Alkmena]]
91709 [[pt:Alcmena]]
91710 [[ru:АĐģĐēĐŧĐĩĐŊĐ°]]
91711 [[sv:Alkmena]]
91712 [[uk:АĐģĐēĐŧĐĩĐŊĐ°]]</text>
91713 </revision>
91714 </page>
91715 <page>
91716 <title>Alcidamas</title>
91717 <id>1580</id>
91718 <revision>
91719 <id>28049542</id>
91720 <timestamp>2005-11-11T19:34:24Z</timestamp>
91721 <contributor>
91722 <username>Bluebot</username>
91723 <id>527862</id>
91724 </contributor>
91725 <minor />
91726 <comment>Standardising 1911 references.</comment>
91727 <text xml:space="preserve">'''Alcidamas''', of Elaea, in [[Aeolis]], [[ancient Greece|Greek]] [[sophist]] and [[rhetoric]]ian, flourished in the [[4th century BC]].
91728
91729 He was the pupil and successor of [[Gorgias]] and taught at [[Athens]] at the same time as [[Isocrates]], whose rival and opponent he was. We possess two declamations under his name: ''Peri Sofiston'', directed against Isocrates and setting forth the superiority of extempore over written speeches (a more recently discovered fragment of another speech against Isocrates is probably of later date); ''Odusseus'', in which [[Odysseus]] accuses [[Palamedes]] of treachery during the siege of [[Troy]] (this is generally considered spurious).
91730
91731 According to Alcidamas, the highest aim of the orator was the power of speaking ''extempore'' on every conceivable subject. [[Aristotle]] (''Rhet.'' iii. 3) criticizes his writings as characterized by pomposity of style and an extravagant use of poetical epithets and compounds and far-fetched metaphors.
91732
91733 Of other works only fragments and the titles have survived: ''Messeniakos'', advocating the freedom of the Messenians and containing the sentiment that &quot;all are by nature free&quot;; a ''Eulogy of Death'', in consideration of the wide extent of human sufferings; a ''Techne'' or instruction-book in the art
91734 of rhetoric; and a ''Fusikos lolos''. Lastly, his ''Mouseion'' (a word of doubtful meaning) contained the narrative of the contest between [[Homer]] and [[Hesiod]], two fragments of which are found in the ''Agon Omerou kai Esiodou'', the work of a grammarian in the time of [[Hadrian]]. A [[3rd century]] [[papyrus]] ([[William Matthew Flinders Petrie|Flinders Petrie]], ''Papyri'', ed. [[John Pentland Mahaffy|Mahaffy]], 1891, pl. xxv.) probably contains the actual remains of a description by Alcidamas.
91735
91736 Lit.: Aristoteles, Rhetorik III 3; - Vahlen, J., Der Rhetor Alkidamas, in Sitzungsberichte der Wiener Akad., XLIII, 507 ff,1864; - F. Blaß, Die attische Beredsamkeit, 1887-1893; - F. Blaß, Antiphontis orationes ... adiunctis ... Alcidamatis declamationibus (1881) 18922; - Auer, Hubertus, De Alcidamantis declamatione que inscribitur, MÃŧnster, Diss., 1913; - Milne, M.J.A., A study in Alcidamas and his Relation to Contemporary Sophistic. Bryn Mawr, Diss, 1924; - Walberer, G., Isokrates und Alkidamas, Hamburg, Diss., 1938; - DuprÊel, E., Les sophists, 1948; - Webster, T.B.L., Greek theories of art and literature down to 400 B.C., CQ 33 (1939) 166 -79; - Kurz, D., AKPIBEIA, Das Ideal der Exaktheit bei den Griechen bis Aristoteles, 1970; - Finley, Moses I., Die Sklaverei in der Antike: Geschichte und Probleme, 1981; - Dreher, M., Sophistik und Polisentwicklung, 1983; - Heinz, Schulz-Falkenthal, Sklaverei in der griechisch-roemischen Antike: eine Bibliographie wissenschaftlicher Literatur vom ausgehenden 15. Jh., 1985; - Du&amp;scaron;anic, Slobodan, Alcidamas of Elaea in Plato's Phaedrus, CQ 42, (1992) 347-357: 1997; - O'Sullivan, Neil, Alcidamas, Aristophanes and the beginnings of Greek stylistic Theory, 1992; - Taureck, Bernhard H. F., Die Sophisten zur EinfÃŧhrung, 1995; - Rossner, Christian, Recht und Moral bei den griechischen Sophisten (Rechtswissenschaftliche Forschung und Entwicklung; 595), 1998, zgl.: MÃŧnchen, Univ., Diss., 1998; -Schumacher, Leonhard, Sklaverei in der Antike: Schicksal und Alltag der Unfreien (Beck's archaeologische Bibliothek), 2001; - Mariss, Ruth, Alkidamas: Über diejenigen, die schriftliche Reden schreiben, oder Ãŧber die Sophisten: eine Sophistenrede aus dem 4. Jh. v. Chr., eingeleitet und kommentiert (orbis antiquus; 36), 2002, zugl.: MÃŧnster (Westfalen, Univ., Diss, 1998).
91737
91738 ==References==
91739 *{{1911}}
91740 [[category:Ancient Greeks]]
91741
91742 [[gl:Alcidamas]]
91743 [[hu:Alkidamasz]]</text>
91744 </revision>
91745 </page>
91746 <page>
91747 <title>Aldine Press</title>
91748 <id>1581</id>
91749 <revision>
91750 <id>39713758</id>
91751 <timestamp>2006-02-15T09:05:53Z</timestamp>
91752 <contributor>
91753 <username>Dbachmann</username>
91754 <id>86857</id>
91755 </contributor>
91756 <comment>/* Aldine editions */</comment>
91757 <text xml:space="preserve">'''Aldine Press''' was the [[printing]] office started by [[Aldus Manutius]] in [[1494]] in [[Venice]], from which were issued the celebrated Aldine editions of the classics of that time. The Aldine Press is famous in the history of [[typography]], among other things, for the introduction of italics. The press was continued after Aldus death in [[1515]] by his wife and her father until his son Paolo ([[1512]]-[[1574]]) took over. His grandson Aldo then ran the firm until his death in [[1597]].
91758
91759 ==Initial Innovations==
91760 The press was started by Aldus based on his love of classics, and at first printed new copies of Plato, Aristotle, and other Greek and Latin classics. He also printed dictionaries and grammars to help people interpret the books. Since most bibliophiles and book collectors come from academic and classical backgrounds, his first editions are collectors items. His contributions are also respected in the development of a smaller type than others in use. His contemporaries called it ''Aldine Type''; today we call it ''italics''.
91761
91762 The goal of the press was to create plentiful, affordable books so that everyone could have access to literature. When the press expanded to current titles, they wrote some books themselves and employed other writers, including [[Erasmus]]. As this expansion into current languages (mainly Italian and French) and current topics continued, the press took on another role and made perhaps even more important contributions. Their logo of the anchor and dolphin is represented today in the symbols and names used by some modern publishers.
91763
91764 ==The Literacy Revolution==
91765 [[Johann Gutenberg|Gutenberg]] gets credit for inventing the printing press with some justification, but [[Aldus Manutius|Aldus]] and his sons created the revolution. Gutenberg produced some beautiful volumes. They were priced so that a man of moderate wealth could buy a book. They were still large, heavy voumes and expensive. A church that had a Bible would typically chain it to a reading stand. Aldus created smaller books (called ''octavo'') that could fit in a saddlebag and that the average merchant or craftsman could afford.
91766
91767 With books readily available, it was now worthwhile to learn to read. In dealing with current topics, the second or third edition is the better book. When Paolo or Aldo hired a great shipbuilder to write a book on shipbuilding, he described all the best techniques he was aware of. Other builders bought the book and then wrote to protest that their technique for a particular technology was better. Many of these improvements were then incorporated in the later editions. Before the Aldine Press, a new innovation might take a hundred years to get from Italy to the Netherlands. Afterward, information started to move in all directions, and communication times were reduced to five or six years. This is an important step in the modernization of Europe, and can even be viewed as a precursor of the [[Internet]].
91768
91769 ==Aldine editions==
91770 *1495-1498 [[Aristotle]]
91771 *1501 [[Francesco Petrarca]], ''Le cose volgari''
91772 *1502 [[Dante]]
91773 *1502 [[Sophocles]]
91774 *1503 ''Florilegium diversorum epigrammatum in septem libros''
91775 *1504 and 1517 [[Homer]]
91776 *1513 [[Plato]]
91777 *1514 ''Institutionum grammaticarum libri quatuor''
91778 *1514 [[Virgil]]
91779
91780 ==External links==
91781 *http://www.library.ucla.edu/special/scweb/aldexhibit.htm
91782 *http://www.nd.edu/~italnet/Dante/text/1502.venice.html
91783
91784 [[Category:Book publishing companies of Italy]]
91785 [[Category:Renaissance]]</text>
91786 </revision>
91787 </page>
91788 <page>
91789 <title>Aldred</title>
91790 <id>1583</id>
91791 <revision>
91792 <id>36423862</id>
91793 <timestamp>2006-01-23T23:25:18Z</timestamp>
91794 <contributor>
91795 <username>Johnteslade</username>
91796 <id>102856</id>
91797 </contributor>
91798 <minor />
91799 <comment>dab template</comment>
91800 <text xml:space="preserve">{{otheruses4|Aldred the English ecclesiastic|the Anglo-Saxon leader|Hwicce}}
91801
91802 '''Aldred''', or '''Ealdred''' (d. [[11 September]],[[1069]]), [[England|English]] ecclesiastic, became [[abbot]] of [[Tavistock]] about [[1027]], in [[1044]] was made [[bishop of Worcester]], and in [[1060]], [[archbishop of York]].
91803
91804 He had considerable influence over King [[Edward the Confessor]], and as his interests were secular rather than religious he took a prominent part in affairs of state, and in [[1046]] led
91805 an unsuccessful expedition against the [[Wales|Welsh]]. In [[1050]] he was largely instrumental in restoring [[Sweyn]], the son of [[Earl Godwin]], to his earldom, and about the same time went to [[Rome]]
91806 &quot;on the king's errand.&quot;
91807
91808 In [[1054]] he was sent to the emperor [[Henry II, Holy Roman Emperor|Henry II]] to obtain that monarch's influence in securing the return to England of Edward, son of Edmund Ironside, who was in [[Hungary]] with King [[Andrew I of Hungary|Andrew I]]. In this mission he was successful and obtained some insight into the working of the German church during a stay of a year with Hermann II, archbishop of [[Cologne]].
91809
91810 After his return to [[England]] he took charge of the sees of [[Hereford]] and [[Ramsbury]], although not appointed to these bishoprics; and in [[1058]] made a pilgrimage to [[Jerusalem]], being the first English bishop to take this journey.
91811
91812 Having previously given up Hereford and Ramsbury, Aldred was elected archbishop of [[York]] in [[1060]], and in [[1061]] he proceeded to [[Rome]] to receive the [[pallium]]. On his arrival there, however, various charges were brought against him by a [[synod]], and [[Pope Nicholas II]] not only refused his request but degraded him from the episcopate. The sentence was, however, subsequently reversed, and Aldred received the pallium and was restored to his former station.
91813
91814 It is stated by [[Florence of Worcester]] that Aldred crowned King [[Harold Godwinson|Harold II]] in [[1066]], although the [[Normans|Norman]] authorities mention [[Stigand]] as the officiating prelate. After the [[battle of Hastings]], Aldred joined the party who sought to bestow the throne upon [[Edgar Atheling|Edgar the Ætheling]], but when these efforts appeared hopeless he was among those who submitted to [[William I of England|William the Conqueror]] at [[Berkhamstead]].
91815
91816 Selected to crown the new king he performed the ceremony on Christmas Day [[1066]], and in [[1068]] performed the same office at the coronation of Matilda, the Conqueror's wife. But though often at court, he seems to have been no sympathiser with Norman oppression, and is even said to have
91817 bearded the king himself. He died at York on the [[September 11]] [[1069]] and was buried in his own cathedral.
91818
91819 Aldred did much for the restoration of discipline in the monasteries and churches under his authority, and was liberal in his gifts for ecclesiastical purposes. He built the monastic
91820 church of St Peter at [[Gloucester]], and rebuilt a large part of that of St John at Beverley. At his instigation, Folcard, a monk of Canterbury, wrote the Life of St John of Beverley.
91821
91822 ==References==
91823 *{{1911}}
91824 *''The Anglo-Saxon Chronicle'', edited by C. Plummer ([[Oxford]], [[1892]]-[[1899]]).
91825 *Florence of Worcester, ''Chronicon ex Chronicis'', edited by B. Thorpe ([[London]], [[1848]]-[[1849]]).
91826 *William of Malmesbury, ''De Gestis Pontificum Anglorum'', edited by N. E. S. A. Hamilton ([[London]], [[1870]]).
91827 *W. H. Dixon, ''Fasti Eboracenses'', vol. i., edited by J. Raine ([[London]], [[1863]]).
91828 *T. Stubbs, ''Chronica Pontificum Ecclesiae Eboracensis'', edited by J. Raine ([[London]], [[1879]]-[[1894]]).
91829 *E. A. Freeman, ''History of the Norman Conquest'', vols. ii., iii., iv. ([[Oxford]], [[1867]]-[[1879]]).
91830
91831 {{start box}}
91832 {{succession box | before=[[Cynesige]] | title=[[Archbishop of York]] | after=[[Thomas I of York]] | years=1061&amp;ndash;1069}}
91833 {{end box}}
91834
91835 [[Category:Roman Catholic archbishops]]
91836 [[Category:English prelates]]
91837 [[Category:1069 deaths]]
91838 [[Category:Archbishops of York]]</text>
91839 </revision>
91840 </page>
91841 <page>
91842 <title>Alexander of Battenberg</title>
91843 <id>1584</id>
91844 <revision>
91845 <id>15900051</id>
91846 <timestamp>2002-08-09T13:09:02Z</timestamp>
91847 <contributor>
91848 <username>Ktsquare</username>
91849 <id>2240</id>
91850 </contributor>
91851 <text xml:space="preserve">#Redirect [[Alexander of Bulgaria]]</text>
91852 </revision>
91853 </page>
91854 <page>
91855 <title>Alexander I of Epirus</title>
91856 <id>1585</id>
91857 <revision>
91858 <id>40205467</id>
91859 <timestamp>2006-02-18T23:19:08Z</timestamp>
91860 <contributor>
91861 <username>Deville</username>
91862 <id>364144</id>
91863 </contributor>
91864 <minor />
91865 <comment>Disambiguate [[Epirus]] to [[Epirus (region)]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
91866 <text xml:space="preserve">'''Alexander I of Epirus''' (c. [[370 BC]] - c. [[331 BC]]), also known as '''Alexander Molossus''' was a king of [[Epirus (region)|Epirus]] ([[350 BC]]-[[331 BC]]) of the [[Aeacid dynasty]].
91867
91868 He was the son of [[Neoptolemus]] and brother of [[Olympias]], the mother of [[Alexander the Great]]. He came at an early age to the court of [[Philip II of Macedonia]], and after the Grecian fashion became the object of his attachment. Philip in requital made him king of Epirus, after dethroning his cousin [[Arymbas]]. When Olympias was repudiated by her husband, [[337 BC]], she went to her brother, and endeavoured to induce him to make war on Philip.
91869
91870 Philip, however, declined the contest, and formed a second alliance with him by giving him his daughter [[Cleopatra of Macedonia|Cleopatra]] in marriage ([[336 BC]]). At the wedding Philip was assassinated by [[Pausanias (assassin)|Pausanias]]. In [[334 BC]], Alexander, at the request of colony of [[Taranto|Taras]] ([[Magna Graecia]]) and the people the [[Tarentines]], crossed over into [[Italy]], to aid them against the [[Ancient Italic peoples|Italic populations]], [[Lucanians]] and [[Bruttii]]. After a victory over the Samnites and Lucanians near [[Paestum]], [[332 BC]], he made a treaty with the [[Roman Republic|Romans]]. Success still followed his arms. He took [[Heraclea]] from the Lucanians, and [[Terina]] and [[Sipontum]] from the Bruttii. Through the treachery of some Lucanian exiles, he was compelled to engage under unfavourable circumstances near [[Pandosia]], on the banks of the Acheron, and was killed by the hand of one of the exiles, as he was crossing the river. He left a son, Neoptolemus, and a daughter, Cadmea.
91871
91872 ==References==
91873 *[[Junianus Justinus|Justin]], ''Epitome of Pompeius Trogus'', viii. 6, ix. 6, xii. 2
91874 *[[Livy]], ''[[Ab urbe condita (book)|Ab urbe condita]]'', viii. 3, 17, 24
91875 *[[Aulus Gellius]], ''Noctes Atticae'', xvii. 21
91876
91877 ==External links==
91878 *[http://www.livius.org Livius], [http://www.livius.org/aj-al/alexander01/alexander_molossis.htm Alexander of Molossis] by Jona Lendering
91879 *[http://www.ancientlibrary.com/smith-bio/0125.html Alexander of Epirus] on [[A Dictionary of Greek and Roman Antiquities]] (1870) - text in public domain
91880
91881 [[Category:370 BC births]]
91882 [[Category:331 BC deaths]]
91883 [[Category:Ancient Greek rulers]]
91884 [[Category:Ancient Greek generals]]
91885 [[Category:Alexander the Great]]
91886
91887 [[de:Alexander I. (Epirus)]]
91888 [[fr:Alexandre Ier d'Épire]]
91889 [[no:Aleksander I av Epirus]]
91890 [[fi:Aleksanteri I (Epeiros)]]</text>
91891 </revision>
91892 </page>
91893 <page>
91894 <title>Alexander Balas</title>
91895 <id>1586</id>
91896 <revision>
91897 <id>40642982</id>
91898 <timestamp>2006-02-22T00:42:31Z</timestamp>
91899 <contributor>
91900 <username>That Guy, From That Show!</username>
91901 <id>419920</id>
91902 </contributor>
91903 <minor />
91904 <comment>[[WP:AWB|AWB assisted]] cleanup</comment>
91905 <text xml:space="preserve">[[Image: AlexanderI.jpg|thumb|350px|right|Silver coin of Alexander I &quot;Balas&quot;. The Greek inscription reads ΒΑÎŖΙΛΕΩÎŖ&amp;#32;ΑΛΕΧΑΝΔΡΟÎĨ (king Alexander). The date ΓΞΡ is year 163 of the [[Seleucid dynasty|Seleucid era]], corresponding to [[150 BC|150]]&amp;ndash;[[149 BC]].]]
91906
91907 '''Alexander Balas''' (i.e. &quot;lord&quot;), ruler of the [[Greece|Greek]] [[Seleucid Empire|Seleucid kingdom]] [[150 BC|150]]-[[146 BC]], was a native of [[Izmir|Smyrna]] of humble origin, but gave himself out to be the son of [[Antiochus IV Epiphanes]] and heir to the Seleucid throne. Along with his sister Laodice, the youngster Alexander was &quot;discovered&quot; by Heracleides, a former minister of Antiochus IV and brother of [[Timarchus]], a usurper in [[Media]] who had been executed by the reigning king [[Demetrius I of Syria|Demetrius I Soter]].
91908
91909 Alexander's claims were recognized by the Roman senate, [[Ptolemy VI of Egypt|Ptolemy Philometor of Egypt]] and others. He married [[Cleopatra Thea]], a daughter of the [[Ptolemaic dynasty]]. At first unsuccessful, Alexander finally defeated Demetrius Soter in [[150 BC]]. Being now master of the empire, he is said to have abandoned himself to a life of debauchery. Whatever the truth behind this, the young king was forced to depend heavily on his Ptolemaic support and even struck portraits with the characteristic features of king [[Ptolemy I]].
91910
91911 Demetrius Soter's son [[Demetrius II of Syria|Demetrius II]] profited by the opportunity to regain the throne. Ptolemy Philometor, who was Alexander's father-in-law, went over to his side, and Alexander was defeated in a pitched [[battle of Antioch (145 BC)|battle near Antioch]] in Syria.
91912
91913 He fled for refuge to a [[Nabataea]]n prince, who murdered him and sent his head to Ptolemy Philometor, who had been mortally wounded in the engagement.
91914
91915 See [[1 Maccabees]] 10 ff.; [[Junianus Justinus|Justin]] xxxv. 1 and 2; [[Josephus]],
91916 ''Antiq.'' xiii. 2; [[Appian]], ''Sir.'' 67; [[Polybius]] xxxiii. 14.
91917
91918 ==References==
91919 *{{1911}}
91920
91921 {{start box}}
91922 {{succession box|title=[[Seleucid Empire|Seleucid King]]|before=[[Demetrius I Soter]]|after=[[Demetrius II Nicator]]'''&lt;br&gt;or&lt;br&gt;'''[[Antiochus VI Dionysus]]|years=150&amp;ndash;146 BC}}
91923 {{end box}}
91924
91925 [[Category:146 BC deaths]]
91926 [[Category:Seleucid rulers|Alexander 1]]
91927 [[Category:Ptolemaic dynasty|Alexander 1]]
91928
91929 [[ca:Alexandre I Balas]]
91930 [[de:Alexander I. Balas]]
91931 [[fr:Alexandre Ier Balas]]
91932 [[he:אלכסנדר באלאס]]
91933 [[nl:Alexander Balas]]
91934 [[no:Aleksander I Balas]]</text>
91935 </revision>
91936 </page>
91937 <page>
91938 <title>Alexander of Pherae</title>
91939 <id>1587</id>
91940 <revision>
91941 <id>28049794</id>
91942 <timestamp>2005-11-11T19:38:00Z</timestamp>
91943 <contributor>
91944 <username>Bluebot</username>
91945 <id>527862</id>
91946 </contributor>
91947 <minor />
91948 <comment>Standardising 1911 references.</comment>
91949 <text xml:space="preserve">'''Alexander''', tagus or [[despotism|despot]] of [[Pherae]] in [[Thessaly]], ruled from [[369 BC]] to [[358 BC]]. He was the son and successor of the tyrant [[Jason of Pherae]], who was assassinated in [[370 BC]].
91950
91951 Alexander's [[tyranny]] caused the Aleuadae of [[Larissa]] to invoke the aid of [[Alexander II of Macedon]], whose intervention was successful, but after the Macedonian withdrawal Alexander treated his subjects as cruelly as before. The Thessalians next applied to [[Thebes (Greece)|Thebes]]; [[Pelopidas]], who was sent to their assistance, was treacherously seized and thrown into prison ([[368 BC|368]]), and it was necessary to send [[Epaminondas]] with a large army to secure his release. Alexander's conduct caused renewed intervention; in 364 he was defeated at [[Battle of Cynoscephalae (364 BC)|Cynoscephalae]] by the Thebans, although the victory was dearly bought by the loss of Pelopidas, who fell in the battle.
91952
91953 Alexander was at last crushed by the Thebans, compelled to acknowledge the freedom of the Thessalian cities and to limit his rule to Pherae, and forced to join the [[Boeotia]]n league. He was murdered by his wife's brother at her instigation. Ancient accounts, such as [[Plutarch]]'s ''Life of Pelopidas,'' agree in describing Alexander as a cruel and suspicious tyrant:
91954
91955 :''Alexander, the tyrant of Pherae (this last should be his only appellation; he should not be permitted to disgrace the name of Alexander), as he watched a tragic actor, felt himself much moved to pity through enjoyment of the acting. He jumped up, therefore, and left the theatre at a rapid pace, exclaiming that it would be a dreadful thing, if, when he was slaughtering so many citizens, he should be seen to weep over the sufferings of Hecuba and Polyxena. And he came near visiting punishment upon the actor because the man had softened his heart, as iron in the fire.''
91956 :::&amp;mdash;Plutarch, ''Moralia:'' &quot;On the Fortune of Alexander.&quot;
91957
91958 ==References==
91959 *{{1911}}
91960
91961 [[Category:358 BC deaths]]
91962 [[Category:Ancient Greek rulers]]
91963 [[fr:Alexandre de Phères]]</text>
91964 </revision>
91965 </page>
91966 <page>
91967 <title>Alexander II of Epirus</title>
91968 <id>1588</id>
91969 <revision>
91970 <id>41688955</id>
91971 <timestamp>2006-03-01T01:56:30Z</timestamp>
91972 <contributor>
91973 <username>Jrp</username>
91974 <id>80959</id>
91975 </contributor>
91976 <minor />
91977 <text xml:space="preserve">'''Alexander II''', king of [[Epirus (region)|Epirus]], succeeded his father [[Pyrrhus of Epirus|Pyrrhus]] in [[272 BC]]. He attacked [[Antigonus II of Macedon|Antigonus Gonatas]] and conquered the greater part of [[Macedon]]ia, but was in turn driven out of both Epirus and Macedonia by [[Demetrius II of Macedon|Demetrius]], the son of Antigonus. He subsequently recovered his kingdom by the aid of the Acarnanians and Aetolians. He died about [[260 BC]].
91978
91979 See Thirlwall, ''History of Greece,'' vol. viii.;
91980 [[Johann Gustav Droysen|Droysen]], ''Hellenismus'';
91981 B. Niese, ''Geschichte der griechischen und makedonischen Staaten'';
91982 J. Beloch, ''Griech. Gesch.'' vol. iii.
91983
91984 ==References==
91985 *{{1911}}
91986
91987 [[Category:Greek monarchs]]
91988 [[Category:260 BC deaths]]
91989 [[Category:Year of birth missing]]
91990
91991 [[de:Alexander II. von Epirus]]</text>
91992 </revision>
91993 </page>
91994 <page>
91995 <title>Aleksander Jagiellon</title>
91996 <id>1589</id>
91997 <revision>
91998 <id>40359142</id>
91999 <timestamp>2006-02-20T01:16:30Z</timestamp>
92000 <contributor>
92001 <username>Rich Farmbrough</username>
92002 <id>82835</id>
92003 </contributor>
92004 <minor />
92005 <comment>External links per MoS.</comment>
92006 <text xml:space="preserve">{| border=1 align=right cellpadding=4 cellspacing=0 width=250 style=&quot;margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;&quot;
92007 | align=&quot;center&quot; style=&quot;background:#efefef;&quot; colspan=&quot;2&quot; style=&quot;border-bottom:1px #aaa solid;&quot; | &lt;font size=&quot;+1&quot;&gt;'''''Aleksander Jagiellończyk''''' (drawing by [[Jan Matejko]])
92008 |-
92009 | align=center colspan=2 |
92010 {| border=0 cellpadding=2 cellspacing=0 width=250 style=&quot;background:#f9f9f9;&quot;
92011 [[Image:Aleksander_Jagiellonczyk.jpg|250px|Aleksander Jagiellończyk]]
92012 |}
92013 |-
92014 |'''Reign''' || [[December 12]], [[1501]] -&lt;br&gt; [[August 19]], [[1506]].
92015 |-
92016 |'''Coronation''' || [[December 12]], [[1501]],&lt;br&gt;[[Wawel Cathedral]],&lt;br&gt;[[KrakÃŗw]], [[Poland]].
92017 |-
92018 |'''[[Royal House]]''' || [[Jagiellon]].
92019 |-
92020 |'''Parents''' || [[Kazimierz IV Jagiellon]],&lt;br&gt;[[Elzbieta Rakuszanka|ElÅŧbieta Rakuszanka]].
92021 |-
92022 |'''Consorts'''|| Helena.
92023 |-
92024 |'''Children''' || None.
92025 |-
92026 |'''Date of Birth''' || [[August 5]], [[1461]].
92027 |-
92028 |'''Place of Birth''' || [[KrakÃŗw]], [[Poland]].
92029 |-
92030 |'''Date of Death''' || [[August 19]], [[1506]].
92031 |-
92032 |'''Place of Death''' || [[Vilnius]], [[Lithuania]].
92033 |-
92034 |'''Place of Burial''' || Holy Mary Cathedral,&lt;br&gt;[[Wilno]], [[Lithuania]]&lt;br&gt;([[1506]]).
92035 |-
92036 |}
92037 '''Aleksander Jagiellon''' ([[Polish language|Polish]]: '''''Aleksander Jagiellończyk'''''; [[Lithuanian language|Lithuanian]]: '''''Aleksandras Jogailaitis'''''; [[1461]] – [[1506]]), King of [[Poland]] and Grand Duke of [[Lithuania]], was the fourth son of [[Kazimierz IV Jagiellon]]. He was elected Grand Duke of Lithuania on the death of his father
92038 ([[1492]]), and King of Poland on the death of his brother [[Jan I Olbracht]] ([[1501]]).
92039
92040 His shortage of funds immediately made him subservient to the Polish Senate and nobility (''szlachta''), who deprived him of control of the mint (then one of the most lucrative sources of revenue for the Polish kings), curtailed his prerogatives, and generally endeavored to reduce him to a subordinate position. This ill-timed parsimony exerted a deleterious effect on Polish politics. For want of funds, Aleksander was unable to resist the Grand Master of the [[Teutonic Knights]] or prevent Grand Duke of Muscovy [[Ivan III of Russia|Ivan III]] from ravaging Lithuania with the [[Tatars]]. The most the King could do was to garrison [[Smolensk]] and other strongholds and employ his wife Helena, the Tsar's daughter, to mediate a truce between his father-in-law and himself after the disastrous [[Battle of Vedrosha]] (1500). In the terms of the truce, Lithuania had to surrennder about a third of its territory to the nascent Russian state.
92041
92042 During his reign, Poland suffered much humiliation from the attempts of her subject principality, [[Moldavia]], to throw off her yoke. Only the death of [[Stephen of Moldavia|Stephen]], the great ''[[hospodar]]'' of Moldavia, enabled Poland still to hold her own on the [[Danube River]]; while the liberality of [[Pope Julius II]], who issued no fewer than 29 bulls in favor of Poland and granted Aleksander [[Peter's Pence]] and other financial help, enabled the Polish King to restrain somewhat the arrogance of the Teutonic Order.
92043
92044 In Aleksander, the characteristic virtues of the [[Jagiellon]]s, patience and generosity, degenerated into slothfulness and extravagance. Frequently he was too poor to pay the expenses of his own table. He never felt at home in Poland, and bestowed his favor principally upon his fellow-countrymen, the most notable of whom was the wealthy Lithuanian magnate [[Michał Gliński]], who justified his master's confidence by his great victory over the Tatars at Kleck ([[August 5]], [[1506]]), news of which was brought to Aleksander on his deathbed.
92045 [[Image:Senatusconsultum.JPG|366px|thumb|left|King Aleksander in Polish Senate]]
92046 ==See also==
92047 * [[History of Poland (1385-1569)]]
92048
92049 ==External links==
92050 * [http://www.istorija.net/ Pages and Forums on the Lithuanian History]
92051 *[http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;GRid=3990 Aleksander Jagiellon on Find-A-Grave]
92052
92053 {{start box}}
92054 {{succession box two to one|before1=[[Kazimierz IV Jagiellon]]|before2=[[Jan I Olbracht]]|title1=[[Grand Duke of Lithuania]]|title2=[[King of Poland]]|years1=1492–1506|years2=1501–1506|after=[[Zygmunt I the Old]]}}
92055 {{end box}}
92056
92057 {{Monarchs of Poland}}
92058
92059 [[Category:1461 births]]
92060 [[Category:1506 deaths]]
92061 [[Category:Polish monarchs]]
92062 [[Category:Lithuanian rulers]]
92063
92064 [[de:Alexander (Polen)]]
92065 [[pl:Aleksander Jagiellończyk]]
92066 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ Đ¯ĐŗĐĩĐģĐģĐžĐŊ]]
92067 [[sv:Alexander av Polen]]
92068 [[uk:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ Đ¯Ō‘ĐĩĐģĐģĐžĐŊŅ‡Đ¸Đē]]
92069 [[zh:äēšåŽ†åąąå¤§ (æŗĸ兰)]]</text>
92070 </revision>
92071 </page>
92072 <page>
92073 <title>Alexander I of Russia</title>
92074 <id>1590</id>
92075 <revision>
92076 <id>42098392</id>
92077 <timestamp>2006-03-03T20:42:36Z</timestamp>
92078 <contributor>
92079 <username>Ksenon</username>
92080 <id>541820</id>
92081 </contributor>
92082 <minor />
92083 <comment>finland</comment>
92084 <text xml:space="preserve">'''Aleksander Pavlovich Romanov''' or '''Tsar Alexander I (The Blessed)''', ([[Russian language|Russian]]: АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ I ПавĐģОвиŅ‡) ([[December 23]], [[1777]]&amp;ndash;[[December 1]], [[1825]]), was [[Tsar|Emperor]] of [[Russia]] from [[March 23]], [[1801]]&amp;ndash;[[December 1]], [[1825]] and [[King of Poland]] from [[1815]]&amp;ndash;[[1825]], as well as the first Russian [[Grand Duke of Finland]].
92085
92086 He was born in [[Saint Petersburg]] to Grand Duke Paul Petrovich, afterwards [[Paul I of Russia|Paul I]], and [[Sophie Marie Dorothea of WÃŧrttemberg|Maria Fedorovna]], daughter of the [[Friedrich II Eugen, Duke of WÃŧrttemberg|Duke of WÃŧrttemberg]]. Alexander succeeded to the throne after his father was murdered, and ruled Russia during the chaotic period of the [[Napoleonic Wars]]. The strange contradictions of his character make Alexander one of the most interesting Tsars, and he is one of the most important figures in the history of 19th century Europe.
92087
92088 [[Image:Aldawe.jpg|thumb|250px|Portrait of Alexander I in the [[Military Gallery]] of the [[Winter Palace]].]]
92089
92090 ==Early life==
92091 His complex nature resulted, in truth, from the outcome of the complex character of his early environment and education. Reared in the free-thinking atmosphere of the court of [[Catherine II of Russia|Catherine the Great]], he had imbibed from his [[Swiss]] tutor, Frederic Caesar de Laharpe, the principles of [[Jean-Jacques Rousseau|Rousseau]]'s gospel of humanity; from his military governor, [[Nikolay Saltykov]], the traditions of Russian autocracy; while his father had inspired him with his own passion of military parade, and taught him to combine a theoretical love of [[mankind]] with a practical contempt for [[men]]. These contradictory tendencies remained with him through life, revealed in the fluctuations of his policy and influencing through him the [[fate]] of the [[world]].
92092
92093 ==Succeeds to the throne==
92094 Another element in his character emerged when on [[March 23]], [[1801]] he mounted the throne over the body of his murdered father: a mystic melancholy liable at any moment to issue in extravagant action. At first, indeed, this exercised but little influence on the [[Emperor of Russia | Emperor]]'s life. Young, emotional, impressionable, well-meaning and egotistic, Alexander displayed from the first an intention of playing a great part on the world's stage, and plunged with all the ardour of youth into the task of realizing his political ideals. While retaining for a time the old [[Political minister | ministers]] who had served and overthrown the Emperor Paul, one of the first acts of his reign was to appoint the [[Private Committee]], also called ironically the &quot;[[Committee of Public Safety |Comite du salut public]]&quot;, consisting of young and enthusiastic friends of his own - [[Victor Palvovich Kochubey|Victor Kochubey]], [[Nikolay Nikolayevich Novosiltsev|Nikolay Novosiltsev]], [[Pavel Alexandrovich Stroganov|Pavel Stroganov]] and [[Adam Jerzy Czartoryski]] - to draw up a scheme of internal reform. Most importantly the liberal [[Mikhail Speransky]] became one of the Tsar's closest advisors, and drew up many plans for elaborate reforms. Their aims, inspired by their admiration for [[Kingdom of Great Britain | English]] institutions, far outstripped the possibilities of the time, and even after they had been raised to regular ministerial positions but little of their programme could come to pass. For [[Imperial Russia | Russia]] was not ripe for [[liberty]]; and Alexander, the disciple of the [[revolution]]ist Laharpe, was&amp;mdash;as he himself said&amp;mdash;but &quot;a happy accident&quot; on the throne of the tsars. He spoke, indeed, bitterly of &quot;the state of [[barbarism]] in which the country had been left by the traffic in men.&quot;
92095
92096 ==Early reign==
92097 &quot;Under Paul,&quot; he said, &quot;three thousand [[peasant]]s had been given away like a bag of [[diamond]]s. If [[civilization]] were more advanced, I would abolish this [[slavery]], if it cost me my [[head (anatomy)|head]]&quot;. But the universal [[Political corruption|corruption]], he complained, had left him no men; and the filling up of the government offices with [[German people|Germans]] and other foreigners merely accentuated the sullen resistance of the &quot;old [[Russians]]&quot; to his reforms. That Alexander's reign, which began with so large a promise of amelioration, ended by riveting still tighter the chains of the Russian people was, however, due less to the corruption and backwardness of Russian life than to the defects of the tsar himself. His love of liberty, though sincere, was in fact unreal. It flattered his [[vanity]] to pose before the world as the dispenser of benefits; but his theoretical [[liberalism]] linked with an [[autocratic]] will which brooked no contradiction. &quot;You always want to instruct me!&quot; he exclaimed to [[Gavril Romanovich Derzhavin|Derzhavin]], the [[List of Justice Ministers of Imperial Russia|Minister of Justice]], &quot;but I am the autocratic emperor, and I will this, and nothing else!&quot; &quot;He would gladly have agreed,&quot; wrote Prince Czartoryski, &quot;that every one should be free, if every one had freely done only what he wished.&quot; Moreover, this masterful temper joined an infirmity of purpose which ever let &quot;I dare not wait upon I would,&quot; and which seized upon any excuse for postponing measures the principles of which he had publicly approved.
92098
92099 ===Legal reform===
92100 [[Image:Althorv.jpg|thumb|225px|Bust of Alexander I, by [[Thorvaldsen]].]] The codification of the laws initiated in 1801 was never carried out during his reign; nothing was done to improve the intolerable status of the Russian peasantry; the constitution drawn up by [[Mikhail Speransky]], and passed by the emperor, remained unsigned. Alexander, in fact, who, without being consciously tyrannical, possessed in full measure the [[tyrant]]'s characteristic distrust of men of ability and independent judgment, lacked also the first requisite for a reforming sovereign: confidence in his people; and it was this want that vitiated such reforms as were actually realized. He experimented in the outlying provinces of his [[Empire]]; and the Russians noted with open [[murmur]]s that, not content with governing through foreign instruments, he was conferring on [[Poland]], [[Finland]] and the [[Baltic States | Baltic provinces]] benefits denied to themselves.
92101
92102 ===Social reforms===
92103 ::''Main articles: [[Government reform of Alexander I]] and [[Mikhail Speransky]]''
92104
92105 In Russia, too, certain reforms were carried out; but they could not survive the suspicious interference of the autocrat and his officials. The newly created [[Russian Council of Ministers| Council of Ministers]] and [[State Council]] under [[Governing Senate]], endowed for the first time with certain theoretical powers, became in the end but the slavish instruments of the Tsar and his favorites of the moment. The elaborate system of [[Education]], culminating in the reconstituted, or new-founded, [[university|universities]] of [[Dorpat]], [[Vilna]], [[Kazan]] and [[Kharkov]], was strangled in the supposed interests of &quot;order&quot; and of [[Russian Orthodox Church | Orthodox]] [[piety]]; while the [[military settlements]] which Alexander proclaimed as a blessing to both [[soldier]]s and [[state]] were forced on the unwilling peasantry and army with pitiless cruelty. Even the [[Bible]] [[Society]], through which the Emperor in his later mood of [[evangelism|evangelical]] zeal proposed to bless his people, was conducted on the same ruthless lines. The [[Roman Catholic Church | Roman]] [[Archbishop]] and the Orthodox [[Metropolitan bishop | Metropolitans]] were forced to serve on its committee side by side with [[Protestant]] [[pastor]]s; and [[village]] [[priest]]s, trained to regard any tampering with the letter of the traditional documents of the [[Christian Church | Church]] as [[mortal sin]], became the unwilling instruments for the propagation of what they regarded as works of the [[Devil]].
92106
92107 ==Influence on European politics==
92108 ===Views held by his contemporaries===
92109 Autocrat and &quot;[[Jacobin]]&quot;, man of the world and mystic, he appeared to his contemporaries as a riddle which each read according to his own temperament. [[Napoleon I of France|Napoleon I]] thought him a &quot;shifty [[Derogatory use of Byzantine|Byzantine]]&quot;, and called him the [[François Joseph Talma|Talma]] of the North, as ready to play any conspicuous part. To [[Klemens Wenzel von Metternich|Metternich]] he was a madman to be humoured. [[Robert Stewart, Viscount Castlereagh|Castlereagh]], writing of him to Lord Liverpool, gives him credit for &quot;grand qualities,&quot; but adds that he is &quot;suspicious and undecided&quot;.
92110 Alexander's grandiose imagination was, however, more strongly attracted by the great questions of [[Europe]]an politics than by attempts at domestic reform which, on the whole, wounded his pride by proving to him the narrow limits of absolute power.
92111
92112 ===Alliances with other powers===
92113 On the morrow of his accession he had reversed the policy of Paul, denounced the League of Neutrals, and made peace with [[United Kingdom of Great Britain and Ireland]] (April, [[1801]]), at the same time opening negotiations with [[Francis II, Holy Roman Emperor|Francis II]]. Soon afterwards at [[Memel]] he entered into a close alliance with [[Kingdom of Prussia|Prussia]], not as he boasted from motives of policy, but in the spirit of true [[chivalry]], out of [[friendship]] for the young [[List of Kings of Prussia|King]] [[Frederick William III of Prussia|Frederick William III]] and his beautiful wife [[Louise of Mecklenburg-Strelitz]]. The development of this alliance was interrupted by the short-lived peace of October, [[1801]]; and for a while it seemed as though [[French Consulate|France]] and [[Imperial Russia|Russia]] might come to an understanding. Carried away by the enthusiasm of Laharpe, who had returned to [[Russia]] from [[Paris]], Alexander began openly to proclaim his admiration for French institutions and for the person of [[Napoleon I of France|NapolÊon Bonaparte]] . Soon, however, came a change. Laharpe, after a new visit to Paris, presented to the Tsar his Reflexions on the True Nature of the Consulship for Life, which, as Alexander said, tore the veil from his eyes, and revealed Bonaparte &quot;as not a true [[Patriotism|patriot]]&quot;, but only as &quot;the most famous tyrant the world has produced.&quot; His disillusionment was completed by the murder of the [[Louis-Antoine-Henri de Bourbon-CondÊ, duc d'Enghien|duc d'Enghien]]. The Russian court went into mourning for the last of the [[Prince of CondÊ|CondÊs]], and diplomatic relations with Paris were broken off.
92114
92115 ===Opposition to Napoleon===
92116 The events of the [[Napoleonic Wars]] that followed belong to the general history of [[Europe]]; but the Tsar's attitude throughout is personal to himself, though pregnant with issues momentous for the world. In opposing Napoleon I, &quot;the oppressor of Europe and the disturber of the world's peace,&quot; Alexander in fact already believed himself to be fulfilling a divine mission. In his instructions to Novosiltsov, his special envoy in [[London]], the Tsar elaborated the motives of his policy in language which appealed as little to the common sense of the prime minister, [[William Pitt the Younger|Pitt]], as did later the treaty of the [[Holy Alliance]] to that of the foreign minister, Castlereagh. Yet the document is of great interest, as in it we find formulated for the first time in an official despatch those exalted ideals of international policy which were to play so conspicuous a part in the affairs of the world at the close of the revolutionary epoch, and issued at the end of the 19th century in the Rescript of [[Nicholas II of Russia|Nicholas II]] and the conference of the [[Hague]]. The outcome of the [[war]], Alexander argued, was not to be only the liberation of France, but the universal triumph of &quot;the [[sacred]] [[Human rights |rights of humanity]]&quot;. To attain this it would be necessary &quot;after having attached the [[nation]]s to their [[government]] by making these incapable of acting save in the greatest interests of their subjects, to fix the relations of the states amongst each other on more precise rules, and such as it is to their interest to respect.&quot;
92117
92118 A general treaty was to become the basis of the relations of the states forming &quot;the European Confederation&quot;; and this, though &quot;it was no question of realizing the dream of universal peace, would attain some of its results if, at the conclusion of the general war, it were possible to establish on clear principles the prescriptions of the rights of nations.&quot; &quot;Why could not one submit to it,&quot; the Tsar continued, &quot;the positive rights of nations, assure the privilege of neutrality, insert the obligation of never beginning war until all the resources which the mediation of a third party could offer have been exhausted, having by this means brought to light the respective grievances, and tried to remove them? It is on such principles as these that one could proceed to a general pacification, and give birth to a league of which the stipulations would form, so to speak, a new code of the law of nations, which, sanctioned by the greater part of the nations of Europe, would without difficulty become the immutable rule of the cabinets, while those who should try to infringe it would risk bringing upon themselves the forces of the new union.&quot;
92119
92120 ===1807 loss to French forces===
92121 [[Image:Alkruger.jpg|thumb|300px|Equestrian portrait of Alexander I (1812)]]
92122
92123 Meanwhile Napoleon, a little deterred by the Russian autocrat's youthful ideology, never gave up hope of detaching him from the coalition. He had no sooner entered [[Vienna]] in triumph than he opened negotiations with him; he resumed them after the [[Battle of Austerlitz]] ([[December 2]], [[1805]]). [[Imperial Russia]] and France, he urged, were &quot;geographical allies&quot;; there was, and could be, between them no true conflict of interests; together they might rule the world. But Alexander was still determined &quot;to persist in the system of disinterestedness in respect of all the states of Europe which he had thus far followed,&quot; and he again allied himself with the [[Kingdom of Prussia]]. The campaign of [[Jena]] and the [[battle of Eylau]] followed; and Napoleon, though still intent on the Russian alliance, stirred up [[Poles]], [[Turkic peoples|Turks]] and [[Persians]] to break the obstinacy of the Tsar. A party too in Russia itself, headed by the Tsar's brother [[Grand Duke Constantine Pavlovich of Russia|Constantine Pavlovich]], was clamorous for peace; but Alexander, after a vain attempt to form a new coalition, summoned the Russian nation to a holy war against Napoleon as the enemy of the Orthodox faith. The outcome was the rout of [[Friedland]] ([[June 13]]/ [[June 14 |14]], [[1807]]). Napoleon saw his chance and seized it. Instead of making heavy terms, he offered to the chastened autocrat his alliance, and a partnership in his glory.
92124
92125 The two Emperors met at Tilsit on the [[25 June]], [[1807]]. Alexander, dazzled by Napoleon's [[genius]] and overwhelmed by his apparent generosity, was completely won. Napoleon knew well how to appeal to the exuberant imagination of his new-found friend. He would divide with Alexander the Empire of the world; as a first step he would leave him in possession of the [[Danube River | Danubian]] principalities and give him a free hand to deal with [[Finland]]; and, afterwards, the Emperors of the [[Eastern Roman Empire | East]] and [[Western Roman Empire | West]], when the time should be ripe, would drive the [[Ottoman Empire | Turks]] from Europe and march across [[Asia]] to the conquest of [[Indian subcontinent | India]]. A programme so stupendous awoke in Alexander's impressionable mind an ambition to which he had hitherto been a stranger. The interests of Europe were forgotten. &quot;What is Europe?&quot; he exclaimed to the French ambassador. &quot;Where is it, if it is not you and we?&quot;
92126
92127 ===Prussia===
92128 The brilliance of these new visions did not, however, blind Alexander to the obligations of friendship; and he refused to retain the Danubian principalities as the price for suffering a further dismemberment of Prussia. &quot;We have made loyal war,&quot; he said, &quot;we must make a loyal peace.&quot; It was not long before the first enthusiasm of [[Tilsit]] began to wane. Napoleon I was prodigal of promises, but niggard of their fulfilment. The French remained in Prussia, the Russians on the Danube; and each accused the other of breach of faith. Meanwhile, however, the personal relations of Alexander and Napoleon were of the most cordial character; and it was hoped that a fresh meeting might adjust all differences between
92129 them. The meeting took place at [[Erfurt]] in October, [[1808]], and resulted in a treaty which defined the common policy of the two Emperors. But Alexander's relations with Napoleon none the less suffered a change. He realized that in Napoleon sentiment never got the better of reason, that as a matter of fact he had never intended his proposed &quot;grand enterprise&quot;
92130 seriously, and had only used it to preoccupy the mind of the Tsar while he consolidated his own power in [[Central Europe]]. From this moment the French alliance was for Alexander also not a fraternal agreement to rule the world, but an affair of pure policy. He used it, in the first instance, to remove &quot;the geographical enemy&quot; from the gates of [[Saint Petersburg]] by wresting [[Finland]] from the [[Sweden|Swedes]] ([[1809]]); and he hoped by means of it to make the Danube the southern frontier of Russia.
92131
92132 ===Franco-Russian Alliance===
92133 Events were in fact rapidly tending to the rupture of the Franco-Russian alliance. Alexander, indeed, assisted Napoleon in the war of [[1809]], but he declared plainly that he would not allow the [[Austrian Empire]] to be crushed out of existence; and Napoleon complained bitterly of the inactivity of the Russian troops during the campaign. The Tsar in his turn protested against Napoleon's encouragement of the [[Poles]]. In the matter of the French alliance he knew himself to be practically isolated in Russia, and he declared that he could not sacrifice the interest of his people and empire to his affection for Napoleon. &quot;I don't want anything for myself,&quot; he said to the French ambassador, &quot;therefore the world is not large enough to come to an understanding on the affairs of [[Poland]], if it is a question of its restoration.&quot;
92134
92135 The treaty of Vienna, which added largely to the [[Duchy of Warsaw]], he complained had &quot;ill requited him for his loyalty,&quot; and he was only mollified for the time by Napoleon's public declaration that he had no intention of restoring Poland, and by a convention, signed on the [[4 January]], [[1810]] but not ratified, abolishing the Polish name and orders of [[chivalry]].
92136
92137 But if Alexander suspected Napoleon, Napoleon was no less suspicious of Alexander; and, partly to test his sincerity, he sent an almost peremptory request for the hand of the [[Grand Duchess]] Anne, the younger sister of the Tsar. After some little delay Alexander returned a polite refusal, on the plea of the tender age of the [[Princess]] and the objection of the [[Empress dowager]] [[Sophie Marie Dorothea of WÃŧrttemberg|Maria Fyodorovna]] to the marriage. Napoleon's answer was to refuse to ratify the convention of the [[4 January]], [[1810]] and to announce his engagement to the [[Archduke |Archduchess]] [[Marie Louise of Austria|Marie Louise]] in such a way as to lead Alexander to suppose that the two marriage treaties had been negotiated simultaneously. From this time the relation between the two emperors gradually became more and more strained.
92138
92139 The annexation of [[Oldenburg (state) | Oldenburg]], of which the [[Peter Friedrich Wilhelm, Duke of Oldenburg|Duke of Oldenburg]] ([[January 3]], [[1754]]&amp;ndash;[[July 2]], [[1823]]) was the Tsar's uncle, to [[France]] in December, [[1810]], added another to the personal grievances of Alexander against Napoleon; while the ruinous reaction of &quot;the continental system&quot; on Russian trade made it impossible for the Tsar to maintain a policy which was Napoleon's chief motive for the alliance. An acid correspondence followed, and ill-concealed armaments, which culminated in the [[Summer]] of [[1812]] in Napoleon's invasion of Russia. Yet, even after the French had passed the frontier, Alexander still protested that his personal sentiments towards the Emperor were unaltered; &quot;but,&quot; he added, &quot;[[God]] Himself cannot undo the past.&quot; It was the occupation of [[Moscow]] and the desecration of the [[Kremlin]], the sacred centre of Holy Russia, that changed his sentiment for Napoleon into passionate hatred. In vain the French Emperor, within eight days of his entry into Moscow, wrote to the Tsar a letter, which was one long cry of distress, revealing the desperate straits of the [[Grand Army]], and appealed to &quot;any remnant of his former sentiments.&quot; Alexander returned no answer to these
92140 &quot;fanfaronnades.&quot; &quot;No more peace with Napoleon!&quot; he cried, &quot;He or I, I or He: we cannot longer reign together!&quot;
92141
92142 ===The campaign of 1812===
92143 [[Image:Russparis.jpg|thumb|350px|''Russian army enters [[Paris]] in [[1814]]''.]]
92144 The campaign of [[1812]] was the turning-point of Alexander's life; and its horrors, for which his sensitive nature felt much of the responsibility, overset still more a mind never too well balanced. When Napoleon crossed the Russian border with his [[Grand Army]], Alexander I was quite unprepared for the war, trusting the Francophile chancellor [[Rumyantsev|Nikolay Rumyantsev]] more than his French ambassador [[Alexander Kurakin]], who had warned him about Napoleon's bellicose plans. Russia proclaimed a [[Napoleon's invasion of Russia|Patriotic War]] in defence of the Motherland. At the burning of [[Moscow]], he declared afterwards, his own [[soul]] had found illumination, and he had realized once for all the divine revelation to him of his mission as the peacemaker of Europe. He tried to calm the unrest of his conscience by correspondence with the leaders of the [[evangelicalism|evangelical]] revival on the [[continent]], and sought for [[omen]]s and [[supernatural]] guidance in texts and passages of [[scripture]]. It was not, however, according to his own account, till he met the [[Barbara Juliana, Baroness von Krudener|Baroness de KrÃŧdener]] &amp;mdash; a religious adventuress who made the conversion of princes her special mission&amp;mdash;at [[Basel]], in the [[Autumn]] of [[1813]], that his soul found peace. From this time a [[mystic]] [[pietism]] became the avowed force of his political, as of his private actions. Madame de KrÃŧdener, and her colleague, the evangelist Empaytaz, became the confidants of the Emperor's most secret thoughts; and during the campaign that ended in the occupation of [[Paris]] the imperial [[prayer]]-meetings were the [[oracle]] on whose revelations hung the fate of the world.
92145
92146 ==Liberal political views==
92147 From the end of the year [[1818]] Alexander's views began to change. A [[revolution]]ary [[conspiracy]] among the officers of the guard, and a foolish plot to kidnap him on his way to the [[Congress of Aix-la-Chapelle (1818)|Congress of Aix-la-Chapelle]], are said to have shaken the foundations of his [[Liberalism]]. At Aix he came for the first time into intimate contact with Metternich, and the astute Austrian was swift to take advantage of the psychological moment. From this time dates the ascendancy of Metternich over the mind of the Russian Emperor and in the councils of Europe. It was, however, no case of sudden conversion. Though alarmed by the revolutionary agitation in Germany, which culminated in the murder of his agent, the dramatist [[August von Kotzebue]] ([[March 23]], [[1819]]), Alexander approved of Castlereagh's protest against Metternich's policy of &quot;the governments contracting an alliance against the peoples,&quot; as formulated in the [[Carlsbad Decrees]] of July, [[1819]], and deprecated any intervention of Europe to support &quot;a league of which the sole object is the absurd pretensions of absolute power.&quot;
92148
92149 He still declared his belief in &quot;free institutions, though not in such as age forced from feebleness, nor contracts ordered by popular leaders from their sovereigns, nor constitutions granted in difficult circumstances to tide over a crisis. &quot;Liberty,&quot; he maintained, &quot;should be confined within just limits. And the limits of liberty are the principles of order&quot;.
92150
92151 It was the apparent triumph of the principles of disorder in the revolutions of [[Naples]] and [[Piedmont (Italy)|Piedmont]], combined with increasingly disquieting symptoms of discontent in France, Germany, and among his own people, that completed Alexander's conversion. In the seclusion of the little town of [[Troppau]], where in October of [[1820]] the powers met in conference, Metternich found an opportunity for cementing his influence over Alexander, which had been wanting amid the turmoil and feminine intrigues of Vienna and Aix. Here, in confidence begotten of friendly chats over afternoon tea, the disillusioned autocrat confessed his mistake. &quot;You have nothing to regret,&quot; he said sadly to the exultant chancellor, &quot;but I have!&quot;
92152
92153 The issue was momentous. In January Alexander had still upheld the ideal of a free confederation of the European states, symbolized by the Holy Alliance, against the policy of a dictatorship of the great powers, symbolized by the Quadruple Treaty; he had still protested against the claims of collective Europe to interfere in the internal concerns of the sovereign states. On [[19 November]] he signed the [[Troppau Protocol]], which consecrated the principle of intervention and wrecked the harmony of the concert.
92154
92155 ==The revolt of the Greeks==
92156 At [[Congress of Laibach]], whither in the [[Spring (season)|Spring]] of [[1821]] the congress had been adjourned, Alexander first heard of the [[Greek War of Independence | Revolt of the Greeks]]. From this time until his death his mind was torn between his anxiety to realize his dream of a confederation of Europe and his traditional mission as leader of the Orthodox crusade against the [[Ottoman Empire]]. At first, under the careful nursing of Metternich, the former motive prevailed.
92157
92158 He struck the name of [[Alexander Ypsilanti (1792-1828)|Alexander Ypsilanti]] from the Russian army list, and directed his foreign minister, [[John Capodistria | Giovanni, Count Capo d'Istria]], himself a Greek, to disavow all sympathy of [[Russia]] with his enterprise; and, next year, a deputation of the [[Morea]] Greeks on its way to the [[Congress of Verona]] was turned back by his orders on the road.
92159
92160 He made, indeed, some effort to reconcile the principles at conflict in his mind. He offered to surrender the claim, successfully asserted when the [[Ottoman Sultan]] [[Mahmud II]] had been excluded from the Holy Alliance and the affairs of the [[Ottoman empire]] from the deliberations of Vienna, that the affairs of the East were the &quot;domestic concerns of Russia,&quot; and to march into the [[Ottoman Empire]], as Austria had marched into [[Naples]], &quot;as the mandatory of Europe.&quot;
92161
92162 Metternich's opposition to this, illogical, but natural from the Austrian point of view, first opened his eyes to the true character of Austria's attitude towards his ideals. Once more in Russia, far from the fascination of Metternich's personality, the immemorial spirit of his people drew him back into itself; and when, in the Autumn of [[1825]], he took his dying Empress [[Louise of Baden]] ([[January 24]], [[1779]]&amp;ndash;[[May 26]], [[1826]]) for change of air to the south of Russia, in order&amp;mdash;as all Europe supposed&amp;mdash;to place himself at the head of the great army concentrated near the Ottoman frontiers, his language was no longer that of &quot;the peace-maker of Europe,&quot; but of the Orthodox Tsar determined to take the interests of his people and of his religion &quot;into his own hands&quot;. Before the momentous issue could be decided, however, Alexander died in [[Taganrog]] on [[1 December]] ([[November 18]], [[Julian calendar | O.S.]]) [[1825]], &quot;crushed&quot;, to use his own words, &quot;beneath the terrible burden of a crown&quot; which he had more than once declared his intention of resigning. A report, current at the time and often revived, affirmed that he did not in fact die. By some it is supposed that a mysterious hermit named Fomich, who lived at Tomsk until [[1870]] and was treated with peculiar deference by successive Tsars [[Nicholas I of Russia|Nicholas I]] and [[Alexander II of Russia|Alexander II]], was none other than Alexander.
92163
92164 ==A tragic figure==
92165 Modern history knows no more tragic figure than that of Alexander. The brilliant promise of his early years; the haunting memory of the [[crime]] by which he had obtained the power to realize his ideals; and, in the end, the terrible legacy he left to Russia: a principle of government which, under lofty pretensions, veiled a tyranny supported by [[spies]] and [[secret police]]; an uncertain succession; an army permeated by organized disaffection; an armed Poland, whose hunger for liberty the tsar had whetted but not satisfied; the quarrel with the [[Ottoman Empire]], with its alternative of war or humiliation for Russia; an educational system rotten with official hypocrisy; a Church in which conduct counted for nothing, [[Orthodoxy]] and ceremonial observance for everything; economical and financial conditions scarce recovering from the verge of ruin; and lastly, that curse of Russia&amp;mdash;[[serfdom]].
92166
92167 ==Private life==
92168 In private life Alexander displayed many lovable qualities. All authorities combine in praising his handsome presence and the affability and charm of his address, together with a certain simplicity of personal tastes, which led him in his intercourse with his friends or with the representatives of friendly powers to dispense with ceremony and etiquette. His personal friendship, too, once bestowed, was never lightly withdrawn. By nature he was sociable and pleasure-loving, he proved himself a notable patron of the arts and he took a conspicuous part in all the gaieties of the [[congress of Vienna]]. In his later years, however, he fell into a mood of settled melancholy; and, though still accessible to all who chose to approach him with complaints or petitions, he withdrew from all but the most essential social functions, and lived a life of strenuous work and of Spartan simplicity. His gloom had been increased by domestic misfortune. He had been married, on [[October 9]], [[1793]], without his wishes being consulted, to the beautiful and amiable princess [[Louise of Baden]] (Elisabeth Alexeyevna), a political match which, as he regretfully confessed to his friend [[Frederick William III of Prussia|Frederick William III]], had proved the misfortune of both; and he consoled himself in the traditional manner. The two children of the marriage, a little grand-duchess Elizaveta, died on [[12 May]] [[1808]] and the other little grand-duchess Maria, that died six years earlier on [[26 June]] (or [[8 July]]) [[1800]]; and their common sorrow drew husband and wife closer together. Towards the close of his life their reconciliation was completed by the wise charity of the Empress in sympathizing deeply with him over the death of his beloved daughter by [[Princess Maria Naryshkina]].
92169
92170 ==Death==
92171 Tsar Alexander I, the man of mystery, became increasingly involved in [[mysticism]] and increasingly more suspicious of those around him. On the way to the conference in [[Aachen]], [[Germany]], an attempt had been made to kidnap him. Now he would trust no one. At home, his young daughter, an only child, died, and his wife became ill.
92172
92173 In [[1825]], the &quot;Tsar of All the Russians&quot; died in the city of [[Taganrog]]. After an official announcement of the Tsar's death, a British ambassador at the Russian court said he had seen Alexander boarding a ship. It was later rumored that a [[monk]] in [[Siberia]], Feodor Kuzmich, was really the former ruler. Whatever the truth, when the [[Soviet]] Government opened Alexander's grave many, many years later, it was empty.
92174
92175 Within weeks of Alexander's death, there was an unsuccessful attempt by liberal-minded military officers to seize power from the crown, now known as the [[Decembrist Revolt]]. The Decembrists were caught off guard by confusion regarding the order of succession. Historians believe that the secret societies to wrest power from the crown appeared after the Russian officers' return from their [[Napoleonic wars|Napoleonic campaigns]] in [[Europe]] in 1815.
92176
92177 ==Offspring==
92178 He had other illegitimate children, nine all together. His other mistresses were [[Sophia Vsevolojsky]], [[Maria Ivanovna Katatcharova]], [[Veronica Dzierzanowska]], [[Marguerite-Josephine Weimer]], and Princess [[Barbara Tourkestanova]].
92179
92180 {{start box}}
92181 {{succession box three to one|before1=[[Paul I of Russia|Paul I]]|before2=[[Gustav IV Adolf of Sweden|Gustav IV Adolf]]|before3=&amp;mdash;|title1=[[Emperor of Russia]]|title2=[[Grand Duke of Finland]]|title3=[[King of Poland]]|years1=[[March 23]], [[1801]]&amp;ndash;[[December 1]], [[1825]]|after=[[Nicholas I of Russia]]|years2=1809&amp;ndash;1825|years3=1815&amp;ndash;1825}}
92182 {{end box}}
92183
92184 -----
92185 {{1911}}
92186
92187 [[Category:1777 births]]
92188 [[Category:1825 deaths]]
92189 [[Category:Natives of Saint Petersburg]]
92190 [[Category:Holstein-Gottorp-Romanov]]
92191 [[Category:Russian emperors]]
92192 [[Category:Rulers of Finland|Alexander I of Russia]]
92193
92194 [[bg:АĐģĐĩĐēŅĐ°ĐŊĐ´ŅŠŅ€ I (Đ ŅƒŅĐ¸Ņ)]]
92195 [[cs:Alexandr I. Pavlovič]]
92196 [[da:Alexander 1. af Rusland]]
92197 [[de:Alexander I. (Russland)]]
92198 [[es:Alejandro I de Rusia]]
92199 [[eo:Aleksandro la 1-a (Rusio)]]
92200 [[fr:Alexandre Ier de Russie]]
92201 [[ko:ëŸŦė‹œė•„ė˜ ė•Œë ‰ė‚°ë“œëĨ´ 1ė„¸]]
92202 [[id:Alexander I dari Rusia]]
92203 [[it:Alessandro I di Russia]]
92204 [[he:אלכסנדר הראשון קיסר רוסיה]]
92205 [[lt:Aleksandras I, Rusija]]
92206 [[nl:Alexander I van Rusland]]
92207 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗドãƒĢ1世]]
92208 [[no:Alexander I av Russland]]
92209 [[pl:Aleksander I Pawłowicz]]
92210 [[pt:Alexandre I da RÃēssia]]
92211 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ I]]
92212 [[sq:Aleksandri I]]
92213 [[sr:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ I Đ ĐžĐŧĐ°ĐŊОв]]
92214 [[fi:Aleksanteri I (Venäjä)]]
92215 [[sv:Alexander I av Ryssland]]
92216 [[uk:ОĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ І (Ņ€ĐžŅŅ–ĐšŅŅŒĐēиК Ņ–ĐŧĐŋĐĩŅ€Đ°Ņ‚ĐžŅ€)]]
92217 [[zh:äēšåŽ†åąąå¤§ä¸€ä¸– (äŋ„å›Ŋ)]]</text>
92218 </revision>
92219 </page>
92220 <page>
92221 <title>Alexander II of Russia</title>
92222 <id>1591</id>
92223 <revision>
92224 <id>41917826</id>
92225 <timestamp>2006-03-02T16:38:24Z</timestamp>
92226 <contributor>
92227 <username>Jareth</username>
92228 <id>293836</id>
92229 </contributor>
92230 <minor />
92231 <comment>Reverted edits by [[Special:Contributions/86.10.40.202|86.10.40.202]] ([[User talk:86.10.40.202|talk]]) to last version by 156.35.192.3</comment>
92232 <text xml:space="preserve">[[Image:AlexanderIIRussia.jpeg|frame|right|Alexander II (1818-1881)]]
92233
92234 '''Alexander (Aleksandr) II Nikolaevitch ([[Russian language|Russian]]: АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ II НиĐēĐžĐģĐ°ĐĩвиŅ‡)''' ([[April 17]] [[1818]], [[Moscow]]&amp;ndash;[[March 13]] [[1881]]) was the Emperor ([[Czar]]) of [[Russia]] from [[March 2]] [[1855]] until his [[assassination]]. He was also the [[Grand Duke of Finland]].
92235
92236 Born in 1818 and assassinated in 1881, he was the eldest son of Czar [[Nicholas I of Russia]] and [[Charlotte of Prussia]], daughter of [[Frederick William III of Prussia]] and [[Louise of Mecklenburg-Strelitz]]. His early life gave little indication of his ultimate potential, and up to the time of his accession in [[1855]], few imagined that he would be known to posterity as a great reformer.
92237
92238 ==Early life==
92239 Insofar as he may have had political convictions in his youth, Alexander seemed to possess the reactionary spirit predominant in Europe at the time of his birth, a trend which continued in [[Russia]] through to the end of his father's reign. In the period of thirty years during which he was [[heir apparent]], the atmosphere of [[Saint Petersburg, Russia|St. Petersburg]] was unfavourable to the development of any intellectual or political innovation. Government was based on principles under which all freedom of thought and all private initiative were, as far as possible, suppressed vigorously. Personal and official [[censorship]] was rife; criticism of the authorities was regarded as a serious offence.
92240
92241 Under supervision of the liberal poet [[Vasily Zhukovsky]], Alexander received the education commonly given to young Russians of good family at that time: a smattering of a great many subjects, and a good practical acquaintance with the chief modern [[Europe|European]] [[European languages|languages]]. He took little personal interest in military affairs. To the disappointment of his father, who was passionate about the [[military]], he showed no love of soldiering. Alexander gave evidence of a kind disposition and a tender-heartedness which were considered out of place in one destined to become a military [[autocrat]].
92242
92243 ==Marriages and Children==
92244 [[Image:Cartetsar.JPG|thumb|right|Tsar Alexander II, his wife Marie and son, the future Alexander III]]
92245 On [[April 16]] [[1841]] he married [[Marie of Hesse and by Rhine|Princess Marie of Hesse]] in St. Petersburg, the daughter of [[Ludwig II, Grand Duke of Hesse and by Rhine]], thereafter known as [[Empress Maria Alexandrovna of Russia|Maria Alexandrovna]]. The marriage produced six sons and two daughters:
92246 * [[Alexandra Alexandrovna]] (1842-1849).
92247 * [[Nicholas Alexandrovich]] (1843-1865). He was engaged to princess Dagmar of Denmark, who later married his brother Alexander III under the name [[Maria Fyodorovna (Dagmar of Denmark)|Maria Fyodorovna]].
92248 * [[Alexander III of Russia|Alexander Alexandrovich]], the future emperor
92249 * [[Grand Duchess Maria Alexandrovna of Russia|Maria Alexandrovna]] (1853-1920). Married [[Alfred, Duke of Saxe-Coburg and Gotha]].
92250 * [[Vladimir Alexandrovich of Russia]] (1847-1909). Married Princess Marie of [[Mecklenburg-Schwerin]] and had issue: three sons (Grand Dukes Kirill, Boris and Andrey Vladimirovich) and a daughter (Grand Duchess Elena, who married Prince Nicholas of Greece).
92251 * [[Grand Duke Alexei Alexandrovich of Russia|Alexei Alexandrovich]] (1850-1908). Married Alexandra Zhukovsky and had a son (executed by the Communist regime in 1932).
92252 * [[Grand Duke Sergei Alexandrovich of Russia|Sergei Alexandrovich of Russia]] (1857-1905). Assassinated. Married [[Grand Duchess Elizabeth Fyodorovna|Elisabeth]] of [[Hesse-Darmstadt]], who was murdered by the Bolsheviks in Alapaevsk in 1918. They had no children.
92253 * [[Grand Duke Paul Alexandrovich of Russia|Paul Alexandrovich of Russia]] (1860-1919). Married first [[Alexandra Yurievna of Greece|Alexandra of Greece]] (daughter of [[George I of Greece]]) and second Olga Karnovich von Pistolkors, [[Princess Paley]], and had issue by both. Both Grand Duke Paul and his son Prince [[Vladimir Paley]] (1897-1918), a remarkable poet, were killed by the Bolsheviks.
92254
92255 On [[July 6]] [[1880]], less than a month after Tsarina Maria's death on [[June 8]], Alexander formed a [[morganatic marriage]] with his mistress Princess [[Catherine Dolgoruki]], with whom he already had three children. A fourth child would be born to them before his death.
92256
92257 * George Alexandrovich Romanov Yurievsky (1872-1913). Married Countess Alexandra Zarnekau and had issue. They later divorced.
92258 * Olga Alexandrovna Romanov Yurievsky (1873-1925). Married Count George von [[Merenberg]].
92259 * Boris Alexandrovich Yurievsky (1876-1876).
92260 * Catherine Alexandrovna Romanov Yurievsky (1878-1959). Married first Prince Alexander V. Bariatinsky and second Prince Serge Obolensky, whom she later divorced.
92261
92262 ==Emperor==
92263 [[Image:AlexanderII_of_Russia(monument).jpg|thumb|200px|New monument to Alexander II in front of the [[Cathedral of Christ the Saviour]] in Moscow.]]
92264 Alexander succeeded to the throne upon the death of his father in 1855. The first year of his reign was devoted to the prosecution of the [[Crimean War]], and after the fall of [[Sevastopol]] to negotiations for peace, led by his trusted counselor, [[Alexander Gorchakov|Prince Gorchakov]]. Then he began a period of radical reforms, encouraged by public opinion but carried out with autocratic power. All who had any pretensions to enlightenment declared loudly that the country had been exhausted and humiliated by the war, and that the only way of restoring it to its proper position in Europe was to develop its natural resources and thoroughly to reform all branches of the administration. The government therefore found in the educated classes a new-born public spirit, anxious to assist it in any work of reform that it might think fit to undertake.
92265
92266 Fortunately for Russia the autocratic power was now in the hands of a man who was impressionable enough to be deeply influenced by the spirit of the time, and who had sufficient prudence and practicality to prevent his being carried away by the prevailing excitement into the dangerous region of [[Utopia|utopian]] dreaming. Unlike some of his predecessors, he had no grand, original schemes of his own to impose by force on unwilling subjects, and no pet projects to lead his judgment astray. He looked instinctively with a suspicious, critical eye upon the panaceas which more imaginative and less cautious people recommended. These character traits, together with the peculiar circumstances in which he was placed, determined the part which he was to, in great measure, brought to fruition the reform aspirations of the educated classes.
92267
92268 However, the growth of a revolutionary movement to the &quot;left&quot; of the educated classes led to an abrupt end to Alexander's changes when he was assassinated by a bomb in 1881. It is interesting to note that after Alexander became czar in 1855, he maintained a generally liberal course at the helm while providing a target for numerous assassination attempts (1866,1873,1880).
92269
92270 ==Emancipation of the serfs==
92271 :''Main article: [[Emancipation reform of 1861 in Russia]].''
92272
92273 Though he carefully guarded his autocratic rights and privileges, and obstinately resisted all efforts to push him farther than he felt inclined to go, Alexander for several years acted somewhat like a constitutional sovereign of the continental type. Soon after the conclusion of peace, important changes were made in legislation concerning industry and commerce, and the new freedom thus afforded produced a large number of [[limited liability company|limited liability companies]]. At the same time, plans were formed for building a great network of [[railroad|railways]] &amp;mdash; partly for the purpose of developing the natural resources of the country, and partly for the purpose of increasing its power for defense and attack. [[Image:Chenstokhov.jpg|thumb|275px|A monument to Alexander II in [[Jasna GÃŗra Monastery|Chestochowa]].]]
92274
92275 Then it was found that further progress was blocked by a formidable obstacle: the existence of [[serfdom]]. Alexander showed that, unlike his father, he meant to grapple boldly with this difficult and dangerous problem. Taking advantage of a petition presented by the [[Poland|Polish]] [[landed proprietor]]s of the [[Lithuania|Lithuanian]] provinces, and hoping that their relations with the serfs might be regulated in a more satisfactory way (meaning in a way more satisfactory for the proprietors), he authorized the formation of committees &quot;for ameliorating the condition of the peasants,&quot; and laid down the principles on which the amelioration was to be effected.
92276
92277 This step was followed by one still more significant. Without consulting his ordinary advisers, Alexander ordered the Minister of the Interior to send a circular to the provincial governors of European Russia, containing a copy of the instructions forwarded to the governor-general of Lithuania, praising the supposed generous, patriotic intentions of the Lithuanian landed proprietors, and suggesting that perhaps the landed proprietors of other provinces might express a similar desire. The hint was taken: in all provinces where serfdom existed, emancipation committees were formed.
92278
92279 The deliberations at once raised a host of important, thorny questions. The emancipation was not merely a humanitarian question capable of being solved instantaneously by imperial ''[[ukase]]''. It contained very complicated problems, deeply affecting the economic, social and political future of the nation.
92280
92281 Alexander had little of the special knowledge required for dealing successfully with such problems, and he had to restrict himself to choosing between the different measures recommended to him. The main point at issue was whether the serfs should become agricultural labourers dependent economically and administratively on the landlords, or whether they should be transformed into a class of independent communal proprietors. The emperor gave his support to the latter project, and the Russian peasantry became one of the last groups of peasants in Europe to shake off serfdom.
92282
92283 The architects of the emancipation manifesto were Alexander's brother [[Grand Duke Konstantin Nikolayevich of Russia|Konstantin]], [[Yakov Rostovtsev]], and [[Nikolay Milyutin]]. On [[March 3]] [[1861]], the sixth anniversary of his accession, the emancipation law was signed and published.
92284
92285 ==Other reforms==
92286 [[Image:AlexII.JPG|thumb|left|200px|A portrait of Alexander II in St. Petersburg]]
92287 Other reforms followed: [[army]] and [[navy]] re-organization (1874); a new judicial administration based on the [[France|French]] model (1864); a new [[penal code]] and a greatly simplified system of civil and criminal procedure; an elaborate scheme of local self-government for the rural districts (1864) and the large towns (1870), with elective assemblies possessing a restricted right of [[taxation]], and a new rural and municipal [[police]] under the direction of the [[MVD|Minister of the Interior]].
92288
92289 However, the workers wanted better worker conditions; national minorities wanted freedom. When radicals began to resort to the formation of secret societies and to revolutionary agitation, Alexander II felt constrained to adopt severe repressive measures.
92290
92291 Alexander II resolved to try the effect of some moderate liberal reforms in an attempt to quell the revolutionary agitation, and for this purpose he instituted a [[ukase]] for creating special commissions, composed of high officials and private personages who should prepare reforms in various branches of the administration.
92292
92293 ==Suppression of national movements==
92294 At the beginning of his reign, Alexander expressed the famous statement &quot;No dreams&quot; addressed for Poles, populating [[Congress Poland]], Western [[Ukraine]], [[Lithuania]], [[Livonia]] and [[Belarus]]. The result was the [[January Uprising]] of 1863-4 that was suppressed after eighteen months of fighting. Thousands of Poles were executed, tens of thousands were deported to [[Siberia]]. The price for suppression was Russian support for Prussian-united Germany. Twenty years later, Germany became the major enemy of Russia on continent.
92295
92296 All territories of the former [[Poland-Lithuania]] were excluded from liberal polices introduced by Alexander. The martial law in Lithuania, introduced in 1863, lasted for the next 50 years. Native languages, [[Lithuanian language|Lithuanian]], [[Ukrainian language|Ukrainian]] and [[Belarusian language|Belarusian]] were completely banned from printed texts, see, e.g., [[Ems Ukase]]. The [[Polish language]] was banned in both oral and written form from all provinces except [[Congress Kingdom]], where it was allowed in private conversations only .
92297
92298 ==Assassination attempts==
92299 In [[1866]] there was an attempt on his life in [[Petersburg]] by [[Dmitry Karakozov]]. To commemorate his narrow escape from death (that he referred to only as &quot;the event of April 4, 1866&quot;) he held a competition to design a great gate for the city. Architect, painter and costume designer [[Viktor Hartmann]] won the competition. The design was well-received and Hartmann thought it was his finest work, but it would never be built. The painting of the design later became [[Modest Mussorgsky|Mussorgsky's]] inspiration for ''The Great Gate of Kiev'' from ''[[Pictures at an Exhibition]]''.
92300
92301 On the morning of [[April 20]] [[1879]], Alexander II was walking towards the Square of the Guards Staff and faced Alexander Soloviev, a 33 year-old former student. Having seen a revolver in his hands, the Tsar ran away; Soloviev fired five times but missed. He was sentenced to death and hanged on [[May 28]]. [[Image:Sankt Petersburg Auferstehungskirche 2005 d.jpg|thumb|150px|left|The [[Church of the Savior on Blood]] commemorates the spot where Alexander was assassinated.]]
92302
92303 The student acted on his own, but other revolutionaries were keen to kill Alexander. In December [[1879]], the [[Narodnaya Volya]] (People's Will), a radical revolutionary group which hoped to ignite a social revolution, organised an explosion on the railway from [[Livadia]] to [[Moscow]], but they missed the Tsar's train. Subsequently, on the evening of [[February 5]], [[1880]] the same revolutionaries set off a charge under the dining room of the [[Winter Palace]], right in the resting room of the Guards a story below. The Tsar was not harmed as he was late to the supper, and the explosion did not destroy the dining room either, although the floor was heavily damaged.
92304
92305 ==Assassination==
92306 After the last assassination attempt, [[Michael Tarielovich, Count Loris-Melikov|Count Loris-Melikov]] was appointed the head of the Supreme Executive Commission and given extraordinary powers to fight the revolutionaries. Loris-Melikov's proposals called for some form of parliamentary body, and the Emperor seemed to agree; these plans were never realized as on [[March 13]] ([[March 1]] [[Old Style and New Style dates|Old Style]]), [[1881]] Alexander fell victim to a [[Nihilist]] plot. While driving on one of the central streets of [[St. Petersburg]], near the [[Winter Palace]], he was mortally wounded by the explosion of hand-made grenades and died a few hours afterwards. [[Nikolai Kibalchich]], [[Sophia Perovskaya]], [[Nikolai Rysakov]], [[Timofei Mikhailov]], and [[Andrei Zhelyabov]] were all arrested and sentenced to death. [[Gesya Gelfman]] was sent to [[Siberia]]. The Tsar was killed by the Pole [[Ignacy Hryniewiecki]] (1856-1881), who died during the attack. Hryniewiecki was a Pole from (Bobrujsk, now [[Babruysk]], [[Belarus]]). The Russians had instigated a complete ban on the [[Polish language]] in public places, schools, and offices in a process now known as [[Russification]]. This Russification scheme, it is theorized, led to Hryniewiecki's resolve to assassinate Alexander II.
92307
92308 &lt;br style=&quot;clear:both;&quot;&gt;
92309
92310 {{start box}}
92311 {{succession box|title=[[List of Russian monarchs|Emperor of Russia]]|before=[[Nicholas I of Russia|Nicholas I]]|after=[[Alexander III of Russia|Alexander III]]|years=[[March 2]], [[1855]]&amp;ndash;[[March 13]], [[1881]]}}
92312 {{end box}}
92313
92314 -------
92315 {{1911}}
92316
92317 == External links ==
92318 *[http://www.bbc.co.uk/radio4/history/inourtime/inourtime_20050106.shtml The Assassination of Tsar Alexander II] from [[In Our Time (BBC Radio 4)]]
92319
92320 [http://www.emich.edu/public/history/moss/ Alexander II and His Times]
92321
92322 {{Commons|Alexander II of Russia}}
92323
92324 [[Category:1818 births|Alexander II of Russia]]
92325 [[Category:1881 deaths|Alexander II of Russia]]
92326 [[Category:Assassinated people|Alexander II of Russia]]
92327 [[Category:Crimean War people|Alexander II of Russia]]
92328 [[Category:Holstein-Gottorp-Romanov]]
92329 [[Category:Knights of the Garter]]
92330 [[Category:Murder victims|Alexander II of Russia]]
92331 [[Category:Murdered Russian monarchs]]
92332 [[Category:Muscovites]]
92333 [[Category:Russian emperors]]
92334 [[Category:Rulers of Finland|Alexander II of Russia]]
92335
92336 [[ca:Alexandre II de RÃēssia]]
92337 [[da:Alexander 2. af Rusland]]
92338 [[de:Alexander II. (Russland)]]
92339 [[eo:Aleksandro la 2-a (Rusio)]]
92340 [[es:Alejandro II de Rusia]]
92341 [[et:Aleksander II (Venemaa)]]
92342 [[fi:Aleksanteri II (Venäjä)]]
92343 [[fr:Alexandre II de Russie]]
92344 [[gl:Alexandre II de Rusia]]
92345 [[he:אלכסנדר השני קיסר רוסיה]]
92346 [[io:Aleksandr 2ma]]
92347 [[it:Alessandro II di Russia]]
92348 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗドãƒĢ2世 (ãƒ­ã‚ˇã‚ĸįš‡å¸)]]
92349 [[nl:Alexander II van Rusland]]
92350 [[pl:Aleksander II (car rosyjski)]]
92351 [[pt:Alexandre II da RÃēssia]]
92352 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ II]]
92353 [[sv:Alexander II av Ryssland]]
92354 [[uk:ОĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ ІІ (Ņ€ĐžŅŅ–ĐšŅŅŒĐēиК Ņ–ĐŧĐŋĐĩŅ€Đ°Ņ‚ĐžŅ€)]]
92355 [[zh:äēšåŽ†åąąå¤§äēŒä¸– (äŋ„å›Ŋ)]]</text>
92356 </revision>
92357 </page>
92358 <page>
92359 <title>Alexander III of Russia</title>
92360 <id>1592</id>
92361 <revision>
92362 <id>41903215</id>
92363 <timestamp>2006-03-02T14:22:50Z</timestamp>
92364 <contributor>
92365 <ip>72.146.174.75</ip>
92366 </contributor>
92367 <comment>/* Principles */</comment>
92368 <text xml:space="preserve">'''Alexander (Aleksandr) III ([[Russian language|Russian]]: АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ III АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ĐžĐ˛Đ¸Ņ‡)''' (b.[[March 10]], [[1845]] &amp;ndash; d.[[November 1]], [[1894]]) reigned as [[Tsar|Emperor]] of [[Russia]] from [[March 14]], [[1881]] until his death.
92369
92370 &lt;!--Ivan Kramskoi (1837-1887) Portrait of Alexander III (1845-1894), the Russian Tsar. 1886 --&gt;
92371 [[Image:Kramskoy Alexander III.jpg|thumb|Painting of Tsar Alexander III (1886), by [[Ivan Kramskoi]] (1837-1887), original, 41 x 36 in.]]
92372 ==Principles==
92373 Alexander was born in [[Saint Petersburg]], the second son of [[Alexander II of Russia|Alexander II]] and [[Marie of Hesse and by Rhine]]. In natural disposition he bore little resemblance to his soft-hearted, liberal minded father, and still less to his refined, philosophic, sentimental, chivalrous, yet cunning grand-uncle [[Alexander I of Russia|Alexander I]], who coveted the title of &quot;the first gentleman of [[Europe]].&quot; While an enthusiastic amateur musician and patron of the ballet, he was seen as lacking exquisite refinement and studied elegance. Indeed, he rather gloried in the idea of being of the same rough texture as the great majority of his subjects. His straightforward, abrupt manner savoured sometimes of gruffness, while his direct, unadorned method of expressing himself harmonized well with his rough-hewn, immobile features and somewhat sluggish movements. His education was not fitted to soften these peculiarities. He is also noted for his immense physical strength.
92374
92375 ==Rise to Power==
92376 During the first twenty years of his life he had no prospect of succeeding to the throne, because he had an elder brother, Nicholas, who seemed of a fairly robust constitution. Even when this elder brother showed symptoms of delicate health it was believed that his life might be indefinitely prolonged by proper care and attention, and precautions had been taken for the succession by his betrothal with the beautiful princess [[Dagmar of Denmark]]. Under these circumstances the greatest solicitude was devoted to the education of Nicholas as csarevich, whereas Alexander received only the perfunctory and inadequate training of an ordinary grand-duke of that period, which did not go much beyond and secondary instruction, practical acquaintance with French, English and German, and a certain amount of military drill.
92377
92378 ==Education==
92379 When he became heir-apparent by the death of his elder brother in 1865, he began to study the principles of law and administration under [[Konstantin Pobedonostsev]], who was then a professor of civil law at [[Moscow State University]] and who later (in 1880) became [[chief procurator]] of the [[Holy Synod]]. Pobedonostsev awakened in his pupil very little love for abstract studies or prolonged intellectual exertion, but he influenced the character of Alexander's reign by instilling into the young man's mind the belief that zeal for [[Russian Orthodoxy|Russian Orthodox]] thought was an essential factor of Russian patriotism and was to be specially cultivated by every right-minded tsar.
92380
92381 On his deathbed, his elder brother had expressed a wish that his affianced bride, Princess Dagmar of Denmark, should marry his successor, and this wish was realized on [[November 9]] [[1866]]. The union proved a most happy one and remained unclouded to the end. During those years when he was heir-apparent&amp;mdash;[[1865]] to [[1881]]&amp;mdash;he did not play a prominent part in public affairs, but he allowed it to become known that he had certain ideas of his own which did not coincide with the principles of the existing government.
92382 ==Foreign Relations== [[Image:Paris(Seine).JPG|thumb|275px|Pont Alexandre III in [[Paris]] commemorates the conclusion of the [[Franco-Russian Alliance]].]]
92383 He deprecated what he considered undue foreign influence in general, and German influence in particular, and he longed to see the adoption of genuine national principles in all spheres of official activity, with a view to realizing his ideal of a homogeneous Russia&amp;mdash;homogeneous in language, administration and religion. With such ideas and aspirations he could hardly remain permanently in cordial agreement with his father, who, though a good patriot according to his lights, had strong German sympathies, often used the German language in his private relations, occasionally ridiculed the exaggerations and eccentricities of the Slavophiles and based his foreign policy on the Prussian alliance.
92384
92385 The antagonism first appeared publicly during the [[Franco-Prussian War]], when the tsar supported the cabinet of [[Berlin]] and the tsarevich did not conceal his sympathies with the French. It reappeared in an intermittent fashion during the years 1875&amp;ndash;1879, when the Eastern question produced so much excitement in all ranks of Russian society. At first the tsarevich was more Slavophile than the government, but his [[phlegmatic]] nature preserved him from many of the exaggerations indulged in by others, and any of the prevalent popular illusions he may have imbibed were soon dispelled by personal observation in [[Bulgaria]], where he commanded the left wing of the invading army.
92386
92387 The [[Bulgaria|Bulgarians]] had been represented in [[Saint Petersburg|St. Petersburg]] and [[Moscow]] not only as martyrs but also as saints, and a very little personal experience sufficed to correct the error. Like most of his brother officers he could not feel any very great affection for the &quot;little brothers&quot;, as the Bulgarians were then commonly called, and he was constrained to admit that the Turks were by no means so black as they had been painted. He did not, however, scandalize the believers by any public expression of his opinions, and did not indeed make himself conspicuous in any way during the campaign. Never consulted on political questions, he confined himself to his military duties and fulfilled them in a conscientious and unobtrusive manner. After many mistakes and disappointments, the army reached [[Constantinople]] and the treaty of San Stefano was signed, but much that had been obtained by that important document had to be sacrificed at the congress of [[Berlin]]. Prince [[Otto von Bismarck|Bismarck]] failed to do what was confidently expected of him.
92388
92389 In return for the Russian support, which had enabled him to create the German empire, it was thought that he would help Russia to solve the Eastern question in accordance with her own interests, but to the surprise and indignation of the cabinet of St. Petersburg he confined himself to acting the part of &quot;honest broker&quot; at the congress, and shortly afterwards he ostentatiously contracted an alliance with [[Austria]] for the express purpose of counteracting Russian designs in Eastern Europe. The tsarevich could point to these results as confirming the views he had expressed during the Franco-Prussian War, and he drew from them the practical conclusion that for Russia the best thing to do was to recover as quickly as possible from her temporary exhaustion and to prepare for future contingencies by a radical scheme of military and naval reorganization. In accordance with this conviction, he suggested that certain reforms should be introduced.
92390
92391 ==Anti-reforms== [[Image:Aleximpressio.jpg|thumb|left|300px|[[Paolo Troubetzkoy]]'s equestrian monument to Alexander III (1900-06) brilliantly conveys the impression of brutal power that the tsar was said to emanate.]]
92392
92393 During the campaign in Bulgaria he had found by painful experience that grave disorders and gross corruption existed in the military administration, and after his return to St. Petersburg he had discovered that similar abuses existed in the naval department. For these abuses, several high-placed personages&amp;mdash;among others two of the grand-dukes&amp;mdash;were believed to be responsible, and he called his father's attention to the subject. His representations were not favourably received. Alexander II had lost much of the reforming zeal which distinguished the first decade of his reign, and had no longer the energy required to undertake the task suggested to him. The consequence was that the relations between father and son became more strained. The latter must have felt that there would be no important reforms until he himself succeeded to the direction of affairs. That change was much nearer at hand than was commonly supposed. On the [[13 March]] [[1881]] Alexander II was assassinated by a band of [[Nihilist]]s, [[Narodnaya Volya]] (People's Will), and the autocratic power passed to the hands of his son.
92394
92395 In the last years of his reign, Alexander II had been much exercised by the spread of Nihilist doctrines and the increasing number of anarchist conspiracies, and for some time he had hesitated between strengthening the hands of the executive and making concessions to the widespread political aspirations of the educated classes. Finally he decided in favour of the latter course, and on the very day of his death he signed an ukaz, creating a number of consultative commissions which might have been easily transformed into an assembly of notables.
92396
92397 Following advice of his political mentor [[Konstantin Pobedonostsev]], Alexander III determined to adopt the opposite policy. He at once cancelled the ukaz before it was published, and in the manifesto announcing his accession to the throne he let it be very clearly understood that he had no intention of limiting or weakening the autocratic power which he had inherited from his ancestors. Nor did he afterwards show any inclination to change his mind.
92398
92399 All the internal reforms which he initiated were intended to correct what he considered as the too liberal tendencies of the previous reign, so that he left behind him the reputation of a sovereign of the retrograde type. In his opinion Russia was to be saved from anarchical disorders and revolutionary agitation, not by the parliamentary institutions and so-called liberalism of western Europe, but by the three principles which the elder generation of the Slavophils systematically recommended&amp;mdash;nationality, Eastern Orthodoxy and autocracy. His political ideal was a nation containing only one nationality, one language, one religion and one form of administration; and he did his utmost to prepare for the realization of this ideal by imposing the Russian language and Russian schools on his German, Polish and Finnish subjects, by fostering Eastern Orthodoxy at the expense of other confessions, by persecuting the [[Jew]]s and by destroying the remnants of German, Polish and Swedish institutions in the outlying provinces. [[Image:Siberianbarber.jpg|thumb|[[Nikita Mikhalkov]] as Tsar Alexander III in his movie ''The Barber of Siberia'' (1998).]]
92400
92401 In the other provinces he sought to counteract what he considered the excessive liberalism of his father's reign. For this purpose he removed what little power had by zemstvo, an elective local administration resembling the county and parish councils in [[England]], had and placed the autonomous administration of the peasant communes under the supervision of landed proprietors appointed by the government. At the same time he sought to strengthen and centralize the imperial administration, and to bring it more under his personal control.
92402
92403 In foreign affairs he was emphatically a man of peace, but not at all a partisan of the doctrine of peace at any price, and he followed the principle that the best means of averting war is to be well prepared for it. Though indignant at the conduct of Prince Bismarck towards Russia, he avoided an open rupture with Germany, and even revived for a time the Three Emperors' Alliance.
92404
92405 It was only in the last years of his reign, when [[Mikhail Katkov]] had acquired a certain influence over him, that he adopted towards the cabinet of [[Berlin]] a more hostile attitude, and even then he confined himself to keeping a large quantity of troops near the German frontier, and establishing cordial relations with France. With regard to Bulgaria he exercised similar self-control. The efforts of Prince Alexander and afterwards of Stamboloff to destroy Russian influence in the principality excited his indignation, but he persistently vetoed all proposals to intervene by force of arms.
92406
92407 In [[1887]], once again the Peoples Will planned the murder of Tsar Alexander III. Among the conspirators captured were one [[Aleksandr Ulyanov]]. Ulyanov was sentenced to death and hanged on [[May 5]] [[1887]]. Alexander Ulyanov was the brother of Vladimir Ilyich Ulyanov, who would later take the pseudonym [[Vladimir Lenin|V.I. Lenin]].
92408
92409 In [[Central Asia]]n affairs he followed the traditional policy of gradually extending Russian domination without provoking a conflict with the [[United Kingdom]], and he never allowed the bellicose partisans of a forward policy to get out of hand. As a whole his reign cannot be regarded as one of the eventful periods of Russian history; but it must be admitted that under his hard unsympathetic rule the country made considerable progress. He died at [[Livadiya]] on the [[November 1|1st of November]] [[1894]] and was buried at the [[Peter and Paul Fortress]] in [[Saint Petersburg|St. Petersburg]]. Alexander III was succeeded by his eldest son [[Nicholas II of Russia]].
92410
92411 ==Children==
92412 Alexander III had six children of his marriage with [[Dagmar of Denmark|Princess Dagmar of Denmark]], later known as Marie Feodorovna:
92413 *[[Nicholas II of Russia|Tsar Nikolai II]] ([[May 6]], [[1868]] - [[July 17]], [[1918]]).
92414 *[[Grand Duke Alexander Alexandrovich of Russia]] ([[June 7]], [[1869]] - [[May 2]], [[1870]]).
92415 *[[Grand Duke George Alexandrovich of Russia]] ([[May 6]], [[1871]] - [[August 9]], [[1899]]).
92416 *[[Grand Duchess Xenia Alexandrovna of Russia]] ([[April 6]], [[1875]] - [[April 20]], [[1960]]).
92417 *[[Michael II of Russia|Grand Duke Mikhail Alexandrovich of Russia]] ([[November 22]], [[1878]] - c. [[June 12]], [[1918]]).
92418 *[[Grand Duchess Olga Alexandrovna of Russia]] ([[June 13]], [[1882]] - [[November 24]], [[1960]]).
92419
92420 {{start box}}
92421 {{succession box|title=[[List of Russian rulers|Emperor of Russia]]|after=[[Nicholas II of Russia|Nicholas II]]|before=[[Alexander II of Russia|Alexander II]]|years='''[[March 14]][[1881]] &amp;ndash; [[November 1]][[1894]]'''}}
92422 {{end box}} {{Commons|Alexander III of Russia}}
92423
92424 ==References==
92425 *{{1911}}
92426
92427 == External links ==
92428 *[http://www2.sptimes.com/treasures/TC.2.3.18.html A short biography]
92429 *[http://www.alexanderpalace.org/palace/alexbio.html Another biography]
92430 *[http://www.macgregorishistory.com/ibsvenska/alexanderiiishortpaper.htmpobedon Policies of Alexander III]
92431 *[http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;GRid=7033272&amp;pt=Alexander%20III%20Romanov FindAGrave] 'Alexander III Alexandrovich Romanov'
92432
92433 [[Category:1845 births|Alexander III of Russia]]
92434 [[Category:1894 deaths|Alexander III of Russia]]
92435 [[Category:Natives of Saint Petersburg]]
92436 [[Category:Holstein-Gottorp-Romanov]]
92437 [[Category:House of GlÃŧcksburg]]
92438 [[Category:Russian emperors]]
92439 [[Category:Rulers of Finland|Alexander III of Russia]]
92440 [[Category:Knights of the Garter]]
92441
92442 [[ca:Alexandre III de RÃēssia]]
92443 [[de:Alexander III. (Russland)]]
92444 [[et:Aleksander III]]
92445 [[es:Alejandro III de Rusia]]
92446 [[eo:Aleksandro la 3-a (Rusio)]]
92447 [[fr:Alexandre III de Russie]]
92448 [[gl:Alexandre III de Rusia]]
92449 [[io:Aleksandr 3ma]]
92450 [[it:Alessandro III di Russia]]
92451 [[he:אלכסנדר השלישי קיסר רוסיה]]
92452 [[nl:Alexander III van Rusland]]
92453 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗドãƒĢ3世]]
92454 [[pl:Aleksander III Aleksandrowicz]]
92455 [[pt:Alexandre III da RÃēssia]]
92456 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ III]]
92457 [[sr:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ III АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ĐžĐ˛Đ¸Ņ‡]]
92458 [[sv:Alexander III av Ryssland]]
92459 [[uk:ОĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ ІІІ (Ņ€ĐžŅŅ–ĐšŅŅŒĐēиК Ņ–ĐŧĐŋĐĩŅ€Đ°Ņ‚ĐžŅ€)]]
92460 [[zh:äēšåŽ†åąąå¤§ä¸‰ä¸– (äŋ„å›Ŋ)]]</text>
92461 </revision>
92462 </page>
92463 <page>
92464 <title>Alexander I of Scotland</title>
92465 <id>1593</id>
92466 <revision>
92467 <id>39039788</id>
92468 <timestamp>2006-02-10T07:55:32Z</timestamp>
92469 <contributor>
92470 <username>Mais oui!</username>
92471 <id>394460</id>
92472 </contributor>
92473 <comment>stub</comment>
92474 <text xml:space="preserve">'''Alexander I (Alasdair mac Maíl Choluim)''' (c. [[1078]] &amp;ndash; [[April 23]] [[1124]]), called &quot;The Fierce&quot;, king of [[Scotland]], was the fourth son of [[Malcolm III of Scotland|Malcolm Canmore]] by his wife (St) [[Saint Margaret of Scotland | Margaret]], grand-niece of [[Edward the Confessor]]. He was named in honor of [[Pope Alexander II]].
92475
92476 On the death of his brother [[Edgar I of Scotland|Edgar]] in [[1107]] he succeeded to the Scottish crown; but, in accordance with Edgar's instructions, he inherited only a part of its possessions. By a partition, the motive of which is not quite certain, the districts south of the Forth and Clyde were erected into an [[earldom]] for Alexander's younger brother, David.
92477
92478 Alexander, dissatisfied, sought to obtain the whole, but without success. A curious combination of the fierce warrior and the pious churchman, he manifested the one aspect of his character in his ruthless suppression of an insurrection on behalf of the descendants of [[Lulach I of Scotland|Lulach]] in his northern dominion (thus gaining for himself the title of &quot;the Fierce&quot;), the other in his munificent foundation of bishoprics and abbeys. Among the latter were those of [[Scone, Perthshire|Scone]] and [[Inchcolm]].
92479
92480 In 1107, he married Sybilla, an illegitimate daughter of [[Henry I of England]]. The exact date and the location of the marriage are not recorded. Sybilla died in unrecorded circumstances on the Island of the Woman (''Eilean nam Ban'') on Loch Tay in July, [[1122]]. The marriage produced no children.
92481
92482 Alexander's strong championing of the independence of the Scottish church involved him in struggles with both of the English metropolitan sees. He died on April 23, 25 or 27, 1124 at his court at Stirling; his brother, [[David I of Scotland | David I]] succeeded him. The historian John of Fordun said of him: ''&quot;[Alexander] was humble and courteous to the clergy, but, to the rest of his subjects, terrible beyond measure.&quot;''
92483
92484 {{start box}}
92485 {{succession box |
92486 title=[[King of Scots]] |
92487 before=[[Edgar of Scotland|Edgar]] |
92488 after=[[David I of Scotland|David I]] |
92489 years=1107&amp;ndash;1124
92490 }}
92491 {{end box}}
92492
92493 [[Category:1078 births]]
92494 [[Category:1124 deaths]]
92495 [[Category:Scottish monarchs]]
92496 [[Category:House of Dunkeld]]
92497 [[Category:Medieval_Gaels]]
92498
92499 {{Scotland-bio-stub}}
92500 {{UK-royal-stub}}
92501
92502 [[de:Alexander I. (Schottland)]]
92503 [[fr:Alexandre Ier d'Écosse]]
92504 [[ja:ã‚ĸãƒŦグã‚ļãƒŗダãƒŧ1世 (ã‚šã‚ŗットナãƒŗドįŽ‹)]]
92505 [[simple:Alexander I of Scotland]]
92506 [[sv:Alexander I av Skottland]]
92507 [[uk:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ І (ĐēĐžŅ€ĐžĐģŅŒ ШОŅ‚ĐģĐ°ĐŊĐ´Ņ–Ņ—)]]
92508 [[zh:äēšåŽ†åąąå¤§ä¸€ä¸– (苏æ ŧ兰)]]</text>
92509 </revision>
92510 </page>
92511 <page>
92512 <title>Alexander II of Scotland</title>
92513 <id>1594</id>
92514 <revision>
92515 <id>40996053</id>
92516 <timestamp>2006-02-24T10:24:09Z</timestamp>
92517 <contributor>
92518 <username>Chochopk</username>
92519 <id>170745</id>
92520 </contributor>
92521 <minor />
92522 <comment>adding years to the succession box</comment>
92523 <text xml:space="preserve">'''Alexander II''' ([[August 24]], [[1198]] &amp;ndash; [[July 6]], [[1249]]), king of [[Scotland]], son of [[William I of Scotland|William I]], the Lion, and of [[Ermengarde of Beaumont]], was born at [[Haddington, East Lothian|Haddington]], [[East Lothian]], in [[1198]], and succeeded to the kingdom on the death of his father on [[4 December ]][[1214]].
92524
92525 The year after his accession the clans MacWilliam and MacHeth, inveterate enemies of the Scottish crown, broke into revolt; but loyalist forces speedily quelled the insurrection. In the same year Alexander joined the English barons in their struggle against [[John I of England]], and led an army into the [[Kingdom of England]] in support of their cause; but after John's death, on the conclusion of peace between his youthful son [[Henry III of England]] and the French prince [[Louis VIII of France]], the Scottish king joined in the pacification. Diplomacy further strengthened the reconciliation by the marriage of Alexander to Henry's sister [[Joan of England]] on [[June 18]] or [[June 25]], [[1221]].
92526
92527 The next year marked the subjection of the hitherto semi-independent district of [[Argyll]]. Royal forces crushed a revolt in [[Galloway]] in [[1235]] without difficulty; nor did an invasion attempted soon afterwards by its exiled leaders meet with success. Soon afterwards a claim for homage from Henry of [[England]] drew forth from Alexander a counter-claim to the northern English counties. The two kingdoms, however, settled this dispute by a compromise in [[1237]].
92528
92529 Joanna died in March, [[1238]] in Essex, and in the following year, [[1239]], Alexander remarried. His second wife was Mary of Coucy (Marie de Coucy). The marriage took place on [[May 15]] [[1239]], and produced one son, the future [[Alexander III of Scotland | Alexander III]], born in [[1241]].
92530
92531 A threat of invasion by Henry in [[1243]] for a time interrupted the friendly relations between the two countries; but the prompt action of Alexander in anticipating his attack, and the disinclination of the English barons for war, compelled him to make peace next year at [[Newcastle upon Tyne|Newcastle]]. Alexander now turned his attention to securing the [[Western Isles]], which still owed a nominal allegiance to [[Norway]]. He successively attempted negotiations and purchase, but without success. Alexander next attempted to dissuade Ewen, the son of Duncan, Lord of Argyll, to sever his allegiance to [[Haakon IV of Norway]]. Ewen rejected these attempts, and Alexander sailed forth to compel him.
92532
92533 But on the way he suffered a fever at the Isle of [[Kerrera]] in the [[Inner Hebrides]], and died there in [[1249]]. He was buried at [[Melrose Abbey]], [[Roxburghshire]].
92534 His son [[Alexander III of Scotland|Alexander III]] succeeded him as King of Scots.
92535
92536 {{start box}}
92537 {{succession box |
92538 before=[[William I of Scotland|William I]] |
92539 title=[[King of Scots]] |
92540 years=1214&amp;ndash;1249|
92541 after=[[Alexander III of Scotland|Alexander III]]
92542 }}
92543 {{end box}}
92544
92545 [[Category:1198 births]]
92546 [[Category:1249 deaths]]
92547 [[Category:Natives of East Lothian]]
92548 [[Category:Scottish monarchs]]
92549 [[Category:House of Dunkeld]]
92550 [[Category:House of Anjou]]
92551 [[Category:Medieval_Gaels]]
92552
92553 [[de:Alexander II. (Schottland)]]
92554 [[fr:Alexandre II d'Écosse]]
92555 [[ja:ã‚ĸãƒŦグã‚ļãƒŗダãƒŧ2世 (ã‚šã‚ŗットナãƒŗドįŽ‹)]]
92556 [[pl:Aleksander II (krÃŗl Szkocji)]]
92557 [[sv:Alexander II av Skottland]]
92558 [[uk:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ ІІ (ĐēĐžŅ€ĐžĐģŅŒ ШОŅ‚ĐģĐ°ĐŊĐ´Ņ–Ņ—)]]
92559 [[zh:äēšåŽ†åąąå¤§äēŒä¸– (苏æ ŧ兰)]]</text>
92560 </revision>
92561 </page>
92562 <page>
92563 <title>Aleksandar Obrenović</title>
92564 <id>1595</id>
92565 <revision>
92566 <id>37449312</id>
92567 <timestamp>2006-01-31T02:04:45Z</timestamp>
92568 <contributor>
92569 <username>Carlossuarez46</username>
92570 <id>23407</id>
92571 </contributor>
92572 <comment>+cat: assassinated kings</comment>
92573 <text xml:space="preserve">[[Image:KraljAlexObrenovic.jpg|thumb|right|King Aleksandar Obrenović]]
92574
92575 '''Aleksandar Obrenović''' or АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ ОбŅ€ĐĩĐŊОвиŅ› ([[August 14]], [[1876]] - [[June 11]], [[1903]]), was king of [[Serbia]] from [[1889]] to [[1903]].
92576
92577 In [[1889]] his father, [[Milan Obrenovic IV|King Milan]], abdicated and proclaimed Aleksandar king of Serbia under a regency until he should attain his majority at eighteen years of age.
92578
92579 In [[1893]], King Aleksandar, being then in his seventeenth year, made his notable first ''[[coup d'Êtat]]'', proclaimed himself of full age, dismissed the [[regency|regents]] and their government, and took the royal authority into his own hands. His action was popular, and was rendered still more so by his appointment of a radical ministry.
92580
92581 In May [[1894]] King Aleksandar, by another ''[[coup d'Êtat]]'', abolished the liberal constitution of [[1889]] and restored the conservative one of [[1869]]. His attitude during the Turco-Greek war of [[1897]] was one of strict neutrality. In [[1898]] he appointed his father commander-in-chief of the Serbian army, and from that time, or rather from his return to Serbia in 1894 until [[1900]], [[Milan Obrenovic IV|ex-king Milan]] was regarded as the ''de facto'' ruler of the country.
92582
92583 During the summer of [[1900]], [[Milan Obrenovic IV|Milan]] was away from [[Serbia]] on holiday in [[Karlovy Vary|Carlsbad]] and making arrangements to secure the hand of a [[Germany|German]] princess for his son, and while the premier, Dr. Vladan Dyorević, was visiting the [[Paris]] [[World Exhibition|Universal Exhibition]], King Aleksandar suddenly announced to the people of Serbia his engagement to the widow Madame [[Draga MaÅĄin]], formerly a lady-in-waiting to [[Natalija Obrenovic|Queen Natalie]]. The projected union initially aroused great opposition. [[Milan Obrenovic IV|Ex-King Milan]] resigned his post, as did the government; and King Aleksandar had great difficulty in forming a new cabinet. Opposition to the union subsided somewhat on the publication of [[Tsar Nicholas]]'s congratulations to the king on his engagement and of his acceptance to act as the principal witness at the wedding. The marriage was duly celebrated in August [[1900]]. Even so, the unpopularity of the union weakened the King's position in the eyes of the army and the country at large.
92584
92585 King Aleksandar tried to reconcile political parties by unveiling a [[classical liberalism|liberal]] [[constitution]] of his own initiative, introducing for the first time in the constitutional history of Serbia the system of two chambers (''[[Assembly|skupshtina]]'' and ''[[senate]]''). This reconciled the political parties but did not reconcile the army which, already dissatisfied with the king's marriage, became still more so at the rumors that one of the two unpopular brothers of [[Queen Draga]], Lieutenant Nicodiye, was to be proclaimed heir-apparent to the throne.
92586
92587 Meanwhile, the independence of the [[senate]] and of the council of state caused increasing irritation to King Aleksandar. In yet another ''[[coup d'Êtat]]'', he suspended (March [[1903]]) the [[constitution]] for half an hour, time enough to publish the decrees by which the old senators and councillors of state were dismissed and replaced by new ones. This arbitrary act naturally increased the dissatisfaction in the country. The general impression was that as much as the [[senate]] was packed with men devoted to the royal couple and the government obtained a large majority at the general elections, King Aleksandar would not hesitate any longer to proclaim Queen Draga's brother as the [[heir]] to the throne.
92588
92589 Apparently to prevent this, but in reality to replace Aleksandar Obrenović with [[Peter I of Serbia|Petar Karađorđević I]], a military conspiracy by [[Black Hand]] was organized. Their palace was invaded and the Royal couple hid in a cupboard in the Queen's bedroom. The conspirators searched the palace and eventually discovered the royal couple and savagely murdered them in the early morning of [[June 11]], [[1903]]. King Aleksandar and Queen Draga were shot and their bodies mutilated and thrown from a window in the palace.
92590
92591 ==References==
92592 * {{1911}}
92593
92594 {{s-start}}
92595 {{s-bef|before=[[Milan Obrenović IV]]}}
92596 {{s-ttl|title=[[List of Serbian monarchs|King of Serbia]]|years=[[1889]]—[[1903]]}}
92597 {{s-aft|after=[[Peter I of Serbia|Peter I]]}}
92598
92599 [[Category:1876 births|Obrenović, Aleksandar]]
92600 [[Category:1903 deaths|Obrenović, Aleksandar]]
92601 [[Category:Assassinated kings|Obrenović, Aleksandar]]
92602 [[Category:Serbian nobility|Obrenović, Aleksandar]]
92603 [[Category:House of Obrenovic|Obrenović, Aleksandar]]
92604
92605 [[de:Aleksandar Obrenović]]
92606 [[fr:Alexandre Ier de Serbie]]
92607 [[nl:Alexander Obrenović]]
92608 [[pl:Aleksander Obrenowić]]
92609 [[sr:КŅ€Đ°Ņ™ АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ ОбŅ€ĐĩĐŊОвиŅ›]]</text>
92610 </revision>
92611 </page>
92612 <page>
92613 <title>Alexander III of Scotland</title>
92614 <id>1596</id>
92615 <revision>
92616 <id>38308909</id>
92617 <timestamp>2006-02-05T13:37:31Z</timestamp>
92618 <contributor>
92619 <username>Mais oui!</username>
92620 <id>394460</id>
92621 </contributor>
92622 <comment>rv supercats</comment>
92623 <text xml:space="preserve">[[Image:Alexander III.jpg|right]]'''Alexander III''' ([[September 4]], [[1241]] &amp;ndash; [[March 19]], [[1286]]), [[King of Scots]], also known as '''Alexander the Glorious''', ranks as one of [[Scotland|Scotland's]] greatest kings.
92624
92625 Born at [[Roxburgh]], [[Scottish Borders|Borders]], as the son of [[Alexander II of Scotland]] by his second wife Marie de Coucy, he became king at the age of eight when his father died ([[6 July]] [[1249]]). His coronation took place on [[July 13]], [[1249]] at [[Scone Abbey]], [[Perthshire]].
92626
92627 The years of his minority featured an embittered struggle for the control of affairs between two rival parties, the one led by [[Walter Comyn]], [[Earl of Menteith]], the other by Alan Durward, the [[justiciar]]. The former dominated the early years of Alexander's reign. At the marriage of Alexander to Margaret of [[England]] in [[1251]], [[Henry III of England|Henry III]] seized the opportunity to demand from his son-in-law homage for the Scottish kingdom, but Alexander did not comply. In [[1255]] an interview between the English and Scottish kings at [[Kelso]] led to Menteith and his party losing to Durward's party. But though disgraced, they still retained great influence, and two years later, seizing the person of the king, they compelled their rivals to consent to the erection of a regency representative of both parties.
92628
92629 On attaining his majority at the age of 21 in [[1262]], Alexander declared his intention of resuming the projects on the [[Western Isles]] which the death of his father thirteen years before had cut short. He laid a formal claim before the [[Norway|Norwegian]] king [[Haakon IV of Norway | Haakon]]. Haakon rejected the claim, and in the following year responded with a formidable invasion. Sailing round the west coast of Scotland he halted off the [[Isle of Arran]], and negotiations commenced. Alexander artfully prolonged the talks until the autumn storms should begin. At length Haakon, weary of delay, attacked, only to encounter a terrific [[extreme weather|storm]] which greatly damaged his ships. The [[battle of Largs]] (October 1263) proved indecisive, but even so, Haakon's position was hopeless. Baffled, he turned homewards, but died on the way on the Orkneys (15 December 1263). The Isles now lay at Alexander's feet, and in [[1266]] Haakon's successor concluded the [[1266 Treaty of Perth|Treaty of Perth]] by which he ceded the [[Isle of Man]] and the Western Isles to Scotland in return for a money payment. Norway retained only [[Orkney]] and [[Shetland]] in the area.
92630
92631 Alexander had married Princess Margaret of England, a daughter of King [[Henry III of England]] and [[Eleanor of Provence]], on [[December 26]], [[1251]]. She died in [[1274]], having given him three children:
92632 # Margaret ([[February 28]], [[1260]]-[[April 9]], [[1283]]), married King [[Eirik II of Norway]]
92633 # Alexander ([[January 21]], [[1263]]-[[January 28]], [[1283]])
92634 # David ([[March 20]], [[1272]]-June [[1281]])
92635
92636 According to the chronicle of [[Lanercost]], Alexander did not spend his decade as a widower alone: &quot;''he used never to forbear on account of season nor storm, nor for perils of flood or rocky cliffs, but would visit none too creditably nuns or matrons, virgins or widows as the fancy seized him, sometimes in disguise''.&quot;
92637
92638 Towards the end of Alexander's reign, the death of all three of his children within a few years made the question of the succession one of pressing importance. In [[1284]] he induced the [[Scottish Parliament | Estates]] to recognize as his heir-presumptive his granddaughter [[Margaret I of Scotland | Margaret, the &quot;Maid of Norway&quot;]]. The need for a male heir led him to contract a second marriage to Yolande de [[Dreux]] on [[November 1]], [[1285]].
92639
92640 But the sudden death of the king dashed all such hopes. Alexander died in a fall from his horse in the dark while riding to visit the queen at [[Kinghorn]] in [[Fife]] on [[March 16|16th]] or [[March 19|19th]] of March [[1286]]. His death ushered in a time of political upheaval for Scotland.
92641
92642 See [[History of Scotland]]
92643
92644 ==Source==
92645 *Scott, Robert McNair. ''Robert the Bruce: King of Scots'', 1996
92646
92647 {{start}}
92648 {{s-bef|before=[[Alexander II of Scotland|Alexander II]]}}
92649 {{s-ttl|title=[[King of Scots]]|years=1249&amp;ndash;1286}}
92650 {{s-aft|after=[[Margaret of Scotland|Margaret]]}}
92651 {{end}}
92652
92653 [[Category:1241 births]]
92654 [[Category:1286 deaths]]
92655 [[Category:Natives of the Scottish Borders]]
92656 [[Category:Scottish monarchs]]
92657 [[Category:House of Dunkeld]]
92658 [[Category:Medieval_Gaels]]
92659
92660 [[de:Alexander III. (Schottland)]]
92661 [[no:Alexander III av Skottland]]
92662 [[ja:ã‚ĸãƒŦグã‚ļãƒŗダãƒŧ3世 (ã‚šã‚ŗットナãƒŗドįŽ‹)]]
92663 [[pl:Aleksander III (krÃŗl Szkocji)]]
92664 [[pt:Alexandre III da EscÃŗcia]]
92665 [[sv:Alexander III av Skottland]]
92666 [[uk:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ ІІІ (ĐēĐžŅ€ĐžĐģŅŒ ШОŅ‚ĐģĐ°ĐŊĐ´Ņ–Ņ—)]]
92667 [[zh:äēšåŽ†åąąå¤§ä¸‰ä¸– (苏æ ŧ兰)]]</text>
92668 </revision>
92669 </page>
92670 <page>
92671 <title>Alexander of Greece</title>
92672 <id>1597</id>
92673 <revision>
92674 <id>40764867</id>
92675 <timestamp>2006-02-22T21:48:04Z</timestamp>
92676 <contributor>
92677 <username>KocjoBot</username>
92678 <id>467651</id>
92679 </contributor>
92680 <minor />
92681 <comment>robot Adding: sl</comment>
92682 <text xml:space="preserve">Please see:
92683 * [[Alexander of Greece (king)]] for the [[20th century]] [[monarch|king]] of [[Greece]]
92684 * [[Alexander of Greece (rhetorician)]] for the ancient Greek [[rhetoric]]ian
92685
92686 Neither of the above should be confused with the Greek king and conqueror [[Alexander the Great]] king of [[Macedon]].
92687
92688 {{hndis}}
92689
92690 [[sl:Aleksander GrÅĄki]]</text>
92691 </revision>
92692 </page>
92693 <page>
92694 <title>Alexander Cornelius</title>
92695 <id>1598</id>
92696 <revision>
92697 <id>15900065</id>
92698 <timestamp>2004-08-20T13:50:13Z</timestamp>
92699 <contributor>
92700 <username>Stan Shebs</username>
92701 <id>7777</id>
92702 </contributor>
92703 <comment>#REDIRECT [[Alexander Polyhistor]]</comment>
92704 <text xml:space="preserve">#REDIRECT [[Alexander Polyhistor]]</text>
92705 </revision>
92706 </page>
92707 <page>
92708 <title>Alexander of Aphrodisias</title>
92709 <id>1599</id>
92710 <revision>
92711 <id>40002252</id>
92712 <timestamp>2006-02-17T12:14:46Z</timestamp>
92713 <contributor>
92714 <username>Charles Matthews</username>
92715 <id>12978</id>
92716 </contributor>
92717 <minor />
92718 <comment>correct lk</comment>
92719 <text xml:space="preserve">'''Alexander of Aphrodisias''', pupil of [[Aristocles of Messene]], the most celebrated of the Greek commentators on the writings of [[Aristotle]], and styled, by way of pre-eminence, ''o exegetes'' (&quot;the expositor&quot;), was a native of [[Aphrodisias]] in [[Caria]].
92720
92721 He came to [[Athens]] towards the end of the [[2nd century]] AD, became head of the [[Lyceum]] and lectured on [[peripatetic]] [[philosophy]].
92722 The object of his work was to free the doctrine from the [[syncretism]] of [[Ammonius Saccas|Ammonius]] and to reproduce the pure doctrine of Aristotle.
92723
92724 Commentaries by Alexander on the following works of Aristotle are still extant:
92725 *the ''Analytica Priora'', i
92726 *the ''Topica''
92727 *the ''Meteorologica''
92728 *the ''De Sensu''
92729 *the ''Metaphysica'', i-v, together with an abridgment of what he wrote on the remaining books of the ''Metaphysica''.
92730
92731 His commentaries were greatly esteemed among the [[Arab]]ians, who translated many of them.
92732
92733 [[Alexander's band]], an [[optical phenomenon]], is named after him.
92734
92735 There are also several original writings by Alexander still extant.
92736 The most important of these are a work ''On Fate'', in which he argues against the [[Stoic]] doctrine of necessity; and one ''On the Soul'', in which he contends that the undeveloped reason in man is material (''nous ulikos'') and inseparable from the body.
92737 He argued strongly against the doctrine of [[immortality]].
92738 He identified the active intellect (''nous poietikos''), through whose agency the potential intellect in man becomes actual, with God.
92739
92740 Several of Alexander's works were published in the Aldine edition of Aristotle, Venice, 1495-1498; his ''De Fato'' and ''De Anima'' were printed along with the works of [[Themistius]] at Venice (1534); the former work, which has been translated into [[Latin]] by [[Grotius]] and also
92741 by [[Schulthess]], was edited by [[J. C. Orelli]], [[Zurich]], [[1824]]; and his commentaries on the Metaphysica by [[H. Bonitz]], [[Berlin]], [[1847]]. [[J. Nourisson]] has treated of his doctrine of fate (''De la liberte et du hazard'', [[Paris]], 1870).
92742 In the early [[Renaissance]] his doctrine of the soul's mortality was adopted by [[Pietro Pomponazzi]] against the [[Thomists]] and the [[Averroists]].
92743
92744 See also [[Alexandrists]], [[Pietro Pomonazzi]]. Also [[A. Apelt]], ''Die Schrift d. Alex. v. Aphr.'', [[Philolegus]], xlv., 1886: [[C. Ruelle]], ''Alex. d'Aphr. et le pretendu Alex. d'Alexandrie,'' ''Rev. des etudes grecques'', v., 1892; [[Eduard Zeller|E. Zeller]]'s ''Outlines of Gk. Phil.'' (Eng. trans., ed. 1905, p. 296).
92745
92746 ==External links==
92747
92748 * [http://plato.stanford.edu/entries/alexander-aphrodisias/ Stanford Encyclopedia of Philosophy entry]
92749
92750 ==References==
92751 *{{1911}}
92752
92753 [[Category:Latin authors]]
92754
92755 [[de:Alexander von Aphrodisias]]
92756 [[sk:Alexander z Afrodízie]]
92757 [[fi:Aleksanteri Afrodisiaslainen]]</text>
92758 </revision>
92759 </page>
92760 <page>
92761 <title>Alexander Severus</title>
92762 <id>1600</id>
92763 <revision>
92764 <id>40811659</id>
92765 <timestamp>2006-02-23T04:13:22Z</timestamp>
92766 <contributor>
92767 <ip>206.103.49.104</ip>
92768 </contributor>
92769 <comment>fixing redirect</comment>
92770 <text xml:space="preserve">[[Image:Alexander_severus.jpg|right|thumb|Alexander Severus]]
92771 '''Marcus Aurelius Severus Alexandrus''' ([[October 1]], [[208]]- [[March 18]], [[235]]), commonly called '''Alexander Severus''', [[Roman Emperors|Roman emperor]] from [[222]] to [[235]], was born at [[Arqa|Arca Caesarea]] in [[Palestine (region)|Palestine]].
92772
92773 His father, [[Gessius Marcianus]], held office more than once as an imperial procurator; his mother, [[Julia Mamaea]], was the daughter of [[Julia Maesa]] and the aunt of [[Elagabalus]] (also called &quot;Heliogabalus&quot;). His original name was Bassianus, but he changed it in 221 when his grandmother, Maesa, persuaded the emperor Elagabalus to adopt his cousin as successor and create him Caesar. In the next year, on [[March 11]], Elagabalus was murdered, and Alexander was proclaimed emperor by the [[Praetorian Guard|Praetorians]] and accepted by the senate.
92774
92775 He was then a mere lad, amiable, well-meaning, but entirely under the dominion of his mother, a woman of many virtues, who surrounded him with wise counsellors, watched over the development of his character and improved the tone of the administration, but on the other hand was inordinately jealous, and alienated the army by extreme parsimony, while neither she nor her son had a strong enough hand to keep tight the reins of military discipline. Mutinies became frequent in all parts of the empire; to one of them the life of the jurist and praetorian praefect [[Ulpian]] was sacrificed; another compelled the retirement of [[Dio Cassius]] from his command.
92776
92777 On the whole, however, the reign of Alexander was prosperous till he was summoned to the East to face the new power of the [[Sassanid Empire|Sassanians]]. Of the war that followed we have very various accounts; [[Theodor Mommsen|Mommsen]] leans to that which is least favourable to the Romans. According to Alexander's own dispatch to the senate he gained great victories. At all events, though the [[Persians]] were checked for the time, the conduct of the Roman army showed an extraordinary lack of discipline. The emperor returned to [[Rome]] and celebrated a triumph ([[233]]), but next year he was called to face German invaders in [[Gaul]], not far from Mainz, where he was slain, (on either [[March 18|18]] or [[March 19|19]] March [[235]]), together with his mother, in a mutiny of the [[Legio XXII Primigenia|Legio XXII ''Primigenia'']] which was probably led by [[Maximinus Thrax]], a Thracian legionary, and at any rate secured him the throne.
92778
92779
92780 [[Image:Bronze-Alexander Severus-Deultum AE25 Moushmov 3583.jpg|thumb|300px|Alexander Severus coin, celebrating [[Artemis]] and the ''Flavian colony of [[Burgas|Deultum]]''.]]
92781 Alexander was the last of the Syrian emperors. Under the influence of his mother, he did much to improve the morals and condition of the people. His advisers were men like the famous jurist Ulpian, the historian Dio Cassius and a select board of sixteen senators; a municipal council of fourteen assisted the urban praefect in administering the affairs of the fourteen districts of Rome. The luxury and extravagance that had formerly been so prevalent at the court were put down; the standard of the coinage was raised; taxes were lightened; literature, art and science were encouraged; the lot of the soldiers was improved; and, for the convenience of the people, loan offices were instituted for lending money at a moderate rate of interest.
92782
92783 In religious matters Alexander preserved an open mind. In his private chapel he had busts of [[Orpheus]], [[Abraham]], [[Apollonius of Tyana]], and [[Jesus]]. It is said that he was desirous of erecting a temple to the founder of Christianity, but was dissuaded by the pagan priests. There is no doubt that, had Alexander's many excellent qualities been supported by the energy and strength of will necessary for the government of a military empire, he would have been one of the greatest of the Roman emperors.
92784
92785
92786 ==See also==
92787 * [[Severan dynasty family tree]]
92788
92789 ==External links==
92790 {{Commons|Alexander Severus}}
92791 *[http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Historia_Augusta/Severus_Alexander/1*.html Life of Alexander Severus] (''Historia Augusta'' at LacusCurtius: Latin text and English translation)
92792
92793 ==References==
92794 *{{1911}}
92795 *Lampridius, ''Alexander Severus''
92796 *Dio Cassius lxxviii. 30, lxxix. 17, lxxx. 1
92797 *Herodian vi. 1-18
92798 *Porrath, ''Der Kaiser Alex. Sev.'' (1876)
92799 *[[Pauly-Wissowa]], ''Realencyclopadie,'' ii. 2526 foll. (Groebe)
92800 *RV Nind Hopkins, ''Cambridge Historical Essays,'' No. xiv. (1907).
92801
92802 {{Roman Emperor | Prev=[[Elagabalus]] | CoEmperor= | Next=[[Maximinus Thrax]]|years=222&amp;ndash;235}}
92803
92804 [[Category:208 births]]
92805 [[Category:235 deaths]]
92806 [[Category:Roman emperors]]
92807 [[Category:Severan Dynasty]]
92808 [[Category:Crisis of the Third Century]]
92809 [[Category:Roman emperors killed by own troops]]
92810
92811 [[da:Alexander Severus]]
92812 [[de:Severus Alexander]]
92813 [[et:Severus Alexander]]
92814 [[es:Alejandro Severo]]
92815 [[eo:Aleksandro Severo]]
92816 [[eu:Alexandro Severo]]
92817 [[fr:SÊvère Alexandre]]
92818 [[ko:ė„¸ë˛ ëŖ¨ėŠ¤ ė•Œë ‰ė‚°ë”]]
92819 [[hr:Aleksandar Sever]]
92820 [[it:Alessandro Severo]]
92821 [[he:אלכסנדר סוורוס]]
92822 [[nl:Severus Alexander]]
92823 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗデãƒĢãƒģã‚ģã‚ĻェãƒĢã‚š]]
92824 [[pl:Sewer Aleksander]]
92825 [[pt:Alexandre Severo]]
92826 [[ro:Alexandru Sever]]
92827 [[sr:АĐģĐĩĐēŅĐ°ĐŊĐ´Đ°Ņ€ ĐĄĐĩвĐĩŅ€]]
92828 [[fi:Severus Alexander]]
92829 [[sv:Alexander Severus]]</text>
92830 </revision>
92831 </page>
92832 <page>
92833 <title>Alexander (disambiguation)</title>
92834 <id>1601</id>
92835 <revision>
92836 <id>42051302</id>
92837 <timestamp>2006-03-03T13:37:19Z</timestamp>
92838 <contributor>
92839 <username>Dbachmann</username>
92840 <id>86857</id>
92841 </contributor>
92842 <comment>/* Antiquity */</comment>
92843 <text xml:space="preserve">'''Alexander''' is a common male first name. It also occurs, less frequently, as a [[family name|surname]].
92844
92845 ==Origin==
92846 The name in [[English language|English]] is taken from the [[Latin]] &quot;Alexander,&quot; which is a Romanization of the original [[Ancient Greek|Greek]] [[nominative]] ΑΛΕΞΑΝΔΡΟÎŖ (''Alexandros''). The [[genitive]] form in Greek is ''Alexandrou''.
92847
92848 [[Etymology|Etymologically]], the name derives from ''alex-'', the compound-form of ''alexis'' (from the [[Proto-Indo-European language|Proto-Indo-European]] [PIE] ''*alek-''), meaning &quot;refuge, protection, defence,&quot; together with ''-andros'', the compound form of andēr (from the PIE ''*ner-''), meaning &quot;man.&quot; Thus is may be roughly translated as &quot;protector of men.&quot; The term is either a rare type of &quot;inverse [[tatpurusha]]&quot; compound, with the modifier in second position (the cognate [[Sanskrit]] tatpurusha being *nararakášŖa, cf. [[Ramayana]] 6.33.45; the exact Sanskrit counterpart would be *rakášŖinara, from PIE hleks(i)-hnros), or a worn-down [[terpsimbrotos]] type compound, whose original verbal meaning was &quot;he protects men&quot;.
92849
92850 The earliest reference to the name may be that to [[Alaksandu]] in the [[13th century BC]].
92851
92852 The name was one of the titles (&quot;epithets&quot;) given to the Greek goddess [[Hera]] and as such is usually taken to mean &quot;one who comes to the aid of warriors.&quot; In the [[Iliad]], the character [[Paris (mythology)|Paris]] is known also as Alexander. The name's popularity was spread throughout the [[Hellenistic civilization|Hellenistic world]] by the military conquests of King Alexander III of Macedon, commonly known as '''[[Alexander the Great]]''' (''ΜέÎŗÎąĪ‚ ΑÎģέΞιÎŊδĪÎŋĪ‚'').
92853
92854 ==Variants==
92855 The female version of the name is Alexandra. Clipped forms derived from the name include: Alexandros/Alexandra, Alexis/Alexia, Alekos/Aleka (Greece), Alec, Alle, Alecu (Romania), Alex, Allie, Lex, Sander, Sandra (Female only), Sandro (Italy), Sandu (Romania), Sandy, (also female) Sanya (Slavic), Sascha (German, common in Austria), Sasha (Russian affectionate form), Shura (also in Russia), Xan, Xander, Xandi, Alexandre(french), Alejandro (spanish).
92856
92857 The surname bears various forms depending on the country. In all but a few cases, these forms directly correspond with the form of the first name used in that country. For example, the English version is generally spelled Alexander, the Italian version of the surname is spelled Alessandro, and so on.
92858
92859 ==Monarchs==
92860 &lt;!-- redlinks out per Mos
92861 *[[Aleksander|Alexander]] (* [[1338]], † before [[1386]]) prince of Podolia
92862 *[[Alexandru Lapusneanu|Alexandru Lăpuşneanu]], voivode of Moldavia ([[1552]]-[[1561]] and [[1564]] - [[1568]])
92863 *[[Alexandru Movila|Alexandru Movilă]], voivode of Moldavia ([[1615]]-[[1616]])
92864
92865 *[[Alexandru Coconul]], voivode of Moldavia ([[1629]]-[[1630]])
92866
92867 --&gt;
92868 ===Antiquity===
92869 *[[Alaksandu]], ca. 1280 BC
92870 *[[Alexander of Pherae]] despot of Pherae between [[369 BC|369]] and [[358 BC]]
92871 *[[Alexander I of Epirus]] king of Epirus about 342 B.C.
92872 *[[Alexander II of Epirus]] king of Epirus 272 B.C.
92873 *[[Alexander I of Macedon]]
92874 *[[Alexander II of Macedon]]
92875 *[[Alexander the Great|Alexander III of Macedon]] (Alexander the Great), King of Macedon, 336–323 BC
92876 *[[Alexander IV of Macedon]]
92877 *[[Alexander Balas]], ruler of the Seleucid kingdom of Syria between [[150 BC|150]] and [[146 BC]]
92878 *[[Alexander III of Byzantium|Alexander III]], Byzantine Emperor
92879 *[[Alexander Severus]], ([[208]]-[[235]]), Roman Empire
92880
92881 ===Middle Ages===
92882 *[[Alexander I of Scotland]], (c. [[1078]] - April, [[1124]])
92883 *[[Alexander II of Scotland]], ([[1198]] - [[July 6]], [[1249]])
92884 *[[Alexander III of Scotland]], ([[September 4]], [[1241]] - March, [[1286]])
92885 *[[Alexandru cel Bun]], voivode of Moldavia ([[1400]]-[[1432]])
92886 *[[Skenderbeg]], ([[1405]]-[[1468]]), prince of Albania
92887 *[[Eskander]] or Alexander, Emperor of Ethiopia ([[1472]] - [[1494]])
92888 *[[Alexander of Poland]] (1461-1506), king of Poland
92889
92890 ===Modern===
92891 *[[Alexander I of Russia]], ([[1777]]-[[1825]]), emperor of Russia
92892 *[[Alexander II of Russia]], ([[1818]]-[[1881]]), emperor of Russia
92893 *[[Alexander III of Russia]], ([[1845]] - [[November 1]], [[1894]]), emperor of Russia
92894 *[[Alexander Karadjordjevic, Prince of Serbia|Alexander Karadjordjevic]], ([[1842]]-[[1858]]), Serbian prince
92895 *[[Alexander of Bulgaria]], ([[1857]]-[[1893]]), first prince of Bulgaria
92896 *[[Alexander John Cuza]], prince of Romania ([[1859]]-[[1866]])
92897 *[[Alexander Obrenovich]], (1876-1903), king of Serbia
92898 *[[Alexander of Yugoslavia]] ([[1888]]-[[1934]]), first king of Yugoslavia
92899 *[[Zog I]] a.k.a. Skenderbeg III,([[1895]]-[[1961]]), king of Albanians
92900 *[[Alexander of Greece (king)]], ([[1917]]-[[1920]]), king of Greece
92901 *[[Leka I]], ([[1939]]-), king of Albanians (throne pretender)
92902 *[[Willem-Alexander, Prince of Orange]]
92903
92904 ==Religious leaders==
92905 *[[Pope Alexander I|Alexander I, Pope]], (pope [[97]]-[[105]])
92906 *[[Pope Alexander II|Alexander II, Pope]], (pope [[1058]]-[[1061]])
92907 *[[Pope Alexander III|Alexander III, Pope]], (pope [[1164]]-[[1168]])
92908 *[[Pope Alexander IV|Alexander IV, Pope]], (pope [[1243]]-[[1254]])
92909 *[[Pope Alexander V|Alexander V, Pope]], (''Peter Philarges'' ca. [[1339]]-[[May 3]], [[1410]])
92910 *[[Pope Alexander VI|Alexander VI, Pope]], ([[1431]]-[[1503]]), Roman pope
92911 *[[Pope Alexander VII|Alexander VII, Pope]], ([[1599]]-[[1667]])
92912 *[[Pope Alexander VIII|Alexander VIII, Pope]], (pope [[1689]]-[[1691]]),
92913 *[[Alexander of Constantinople]], bishop of Constantinople (314-337)
92914 *[[Alexander of Alexandria|Alexander (I) of Alexandria]], Coptic Pope, Patriarch of Alexandria between [[313]] and [[328]]
92915 *[[Alexander II of Alexandria]], Coptic Pope ([[702]]-[[729]])
92916 &lt;!-- commented out, add back in when article exists
92917 *[[Alexander of Antioch]]
92918 *[[Alexander of Jerusalem]]
92919
92920 [http://www.newadvent.org/cathen/01285b.htm Alexander (Early Bishops)] - Article from the Catholic Encyclopedia
92921
92922 --&gt;
92923
92924 &lt;!-- Left dates wiki-linnked on purpose. --&gt;
92925
92926 ==Others named Alexander==
92927 ===Surname===
92928 *[[Christopher Alexander]], architect.
92929 *[[Edward Porter Alexander]], (1835-1910), officer in the U.S. Army and Confederate States Army.
92930 *[[F. Matthias Alexander]], Australian actor/orator, founder of [[Alexander Technique]].
92931 *[[Harold Alexander]], British Second World War general.
92932 *[[Jason Alexander]], stage name of American actor Jason Scott Greenspan.
92933 *[[Jason Allen Alexander]], ex-husband of Britney Spears.
92934 *[[John White Alexander]], (1856 - 1915), American artist.
92935 *[[Manny Alexander]], Major League Baseball infielder
92936 *[[Samuel Alexander]], (1859 - 1938) philosopher and essayist
92937 *[[Sarah Alexander]], British actress
92938 *[[Shaun Alexander]], NFL running back
92939
92940 ===First name===
92941 *[[Alexander (general)]], son of Polyperchon, the regent of Macedonia
92942 *[[Alexander of Aphrodisias]] Greek commentator and philosopher
92943 *[[Alexander of Greece (rhetorician)]], Greek rhetorician
92944 *[[Alexander of Hales]] 13th century Medieval theologian
92945 *[[Paris (mythology)]], otherwise known as Alex, the Trojan prince who kidnapped Helen
92946
92947 [http://www.newadvent.org/cathen/01285a.htm Alexander, name of seven men] Article from the Catholic Encyclopedia
92948
92949 ==Places==
92950 A number of places are also associated with Alexander:
92951 &lt;!-- add back in when no red-linked per MoS
92952 *[[Alexander, Manitoba]], [[Canada]]
92953 *[[Alexander Bay, Newfoundland and Labrador]], Canada
92954 *[[Alexander Township, McKenzie County, North Dakota]], United States
92955 *[[Alexander Township, Pierce County, North Dakota]], United States
92956 *[[Alexander Township, Stutsman County, North Dakota]], United States
92957 *[[Alexander Township, Ohio]], United States
92958 --&gt;
92959 *[[Alexander (town), New York]], United States
92960 *[[Alexander (village), New York]], United States
92961 *[[Alexander City, Alabama]], United States
92962 *[[Alexander River]], New Zealand
92963 *[[Alexander, Arkansas]], United States
92964 *[[Alexander, Iowa]], United States
92965 *[[Alexander, Kansas]], United States
92966 *[[Alexander, Maine]], United States
92967 *[[Alexander, North Dakota]], United States
92968 *[[Alexanderplatz, (central square), Berlin]], Germany
92969
92970 ==Other==
92971 *[[Alexander (film)]] 2004 film directed by Oliver Stone
92972 *[[Alexander the great (film)]] 1956 film directed by [[Robert Rossen]].
92973 *[[Alexander Aircraft Company]], an aircraft manufacturer in [[Colorado]] in the 1920s and 1930s, named for its founder, J. Don Alexander
92974 *''[[Alexander (ship)]]'', a convict transport ship in the First Fleet to Australia in 1787
92975 *[[Alexander (game)]] is a PC game Published by UBISOFT based on the life of Alexander the Great
92976
92977 &lt;!-- This one's a bit of a stretch, isn't it?
92978 * [[Isaac Asimov]]'s short story &quot;Alexander the God&quot; ([[1984]]), reprinted in the anthology ''[[Gold (Asimov)|Gold]]'' ([[1995]])
92979 --&gt;
92980
92981 ==See also==
92982 *[[List of people by name: Al]]
92983
92984 {{disambig}}
92985 [[Category:Given names|Alexander]]
92986
92987 [[da:Alexander]]
92988 [[de:Alexander]]
92989 [[el:ΑÎģέΞιÎŊδĪÎŋĪ‚]]
92990 [[fr:Alexandre]]
92991 [[ko:ė•Œë ‰ė‚°ë”]]
92992 [[he:אלכסנדר (פירושונים)]]
92993 [[hr:Aleksandar]]
92994 [[lt:Aleksandras]]
92995 [[hu:Alexander]]
92996 [[nl:Alexander]]
92997 [[ja:&amp;#12450;&amp;#12524;&amp;#12463;&amp;#12469;&amp;#12531;&amp;#12480;&amp;#12540;]]
92998 [[pl:Aleksander]]
92999 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€]]
93000 [[sk:Alexander]]
93001 [[sl:Aleksander]]
93002 [[sv:Alexander]]
93003 [[zh:äēžæ­ˇåąąå¤§]]</text>
93004 </revision>
93005 </page>
93006 <page>
93007 <title>Alexander I</title>
93008 <id>1602</id>
93009 <revision>
93010 <id>41941945</id>
93011 <timestamp>2006-03-02T19:58:18Z</timestamp>
93012 <contributor>
93013 <username>Bluebot</username>
93014 <id>527862</id>
93015 </contributor>
93016 <comment>title =&gt; bold text + clean up using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
93017 <text xml:space="preserve">A number of historical people were named '''Alexander I''':
93018
93019 *[[Alexander I of Macedon]], king of [[Macedon]] 495-450 BC
93020 *[[Alexander I of Epirus]] King of [[Epirus (region)|Epirus]] about [[342 BC|342 B.C.]]
93021 *[[Pope Alexander I]], [[Pope]] from [[106]] to [[115]]
93022 *[[Alexander I of Scotland]] (c. [[1078]]-[[1124]]), King of [[Scotland]]
93023 *[[Alexander I of Georgia]] ([[1412]]-[[1442]]), King of [[Georgia (country)|Georgia]]
93024 *[[Alexander I of Russia]] ([[1777]]-[[1825]]), Tsar of [[Russia]]
93025 *[[Alexander of Bulgaria|Alexander I of Bulgaria]] ([[1857]]-[[1893]]), Prince of [[Bulgaria]]
93026 *[[Alexander I of Greece]] ([[1917]]-[[1920]]), King of [[Greece]]
93027 *[[Alexander I of Yugoslavia]] ([[1929]]-[[1934]]), King of [[Yugoslavia]]
93028
93029 {{hndis}}
93030
93031 [[el:ΑÎģέΞιÎŊδĪÎŋĪ‚ Α']]
93032 [[fr:Alexandre Ier]]
93033 [[it:Alessandro I]]
93034 [[nn:Aleksander I]]
93035 [[pl:Aleksander I]]
93036 [[sv:Alexander I]]
93037 [[zh:äēšåŽ†åąąå¤§ä¸€ä¸–]]</text>
93038 </revision>
93039 </page>
93040 <page>
93041 <title>Alexander II</title>
93042 <id>1603</id>
93043 <revision>
93044 <id>40205476</id>
93045 <timestamp>2006-02-18T23:19:12Z</timestamp>
93046 <contributor>
93047 <username>Deville</username>
93048 <id>364144</id>
93049 </contributor>
93050 <minor />
93051 <comment>Disambiguate [[Epirus]] to [[Epirus (region)]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
93052 <text xml:space="preserve">A number of historical people were named '''Alexander II''':
93053
93054 * [[Alexander II of Macedon]] was King of [[Macedon]] from [[370 BC|370]] to [[368 BC|368 B.C.]]
93055 * [[Alexander II of Epirus]] was the King of [[Epirus (region)|Epirus]] in [[272 BC|272 B.C.]]
93056 * [[Pope Alexander II]] was Pope from [[1061]] to [[1073]].
93057 * [[Alexander II of Scotland]] ([[1198]]&amp;ndash;[[1249]]) was the King of [[Scotland]].
93058 * [[Alexander II of Russia]] ([[1818]]&amp;ndash;[[1881]]) was the Emperor of [[Russia]].
93059
93060 {{hndis}}
93061
93062 &lt;!-- Localization --&gt;
93063 [[fr:Alexandre II]]
93064 [[es:Alejandro II]]
93065 [[it:Alessandro II]]
93066 [[pl:Aleksander II]]
93067 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ II (СĐŊĐ°Ņ‡ĐĩĐŊиŅ)]]
93068 [[sv:Alexander II]]</text>
93069 </revision>
93070 </page>
93071 <page>
93072 <title>Alexander III</title>
93073 <id>1604</id>
93074 <revision>
93075 <id>37179312</id>
93076 <timestamp>2006-01-29T06:17:11Z</timestamp>
93077 <contributor>
93078 <username>Chlewbot</username>
93079 <id>620581</id>
93080 </contributor>
93081 <minor />
93082 <comment>robot Adding: es</comment>
93083 <text xml:space="preserve">'''Alexander III''' may refer to any of the following;
93084
93085 *[[Alexander III (emperor)]], [[Byzantine emperor]] (912-913)
93086 *[[Pope Alexander III]] [[pope]] from 1159 to 1181
93087 *[[Alexander III of Russia]] (1845-1894), emperor of [[Russia]]
93088 *[[Alexander III of Scotland]] (1241-1286), king of [[Scotland]]
93089 *[[Alexander III of Macedon]], also known as Alexander the Great
93090
93091 {{hndis}}
93092
93093 [[es:Alejandro III]]
93094 [[fr:Alexandre III]]
93095 [[it:Alessandro III]]
93096 [[pl:Aleksander III]]
93097 [[ru:АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ III (СĐŊĐ°Ņ‡ĐĩĐŊиŅ)]]
93098 [[zh:äēšåŽ†åąąå¤§ä¸‰ä¸–]]</text>
93099 </revision>
93100 </page>
93101 <page>
93102 <title>Alexander Aetolus</title>
93103 <id>1605</id>
93104 <revision>
93105 <id>41172601</id>
93106 <timestamp>2006-02-25T14:57:24Z</timestamp>
93107 <contributor>
93108 <username>Charles Matthews</username>
93109 <id>12978</id>
93110 </contributor>
93111 <minor />
93112 <comment>/* References */</comment>
93113 <text xml:space="preserve">'''Alexander Aetolus''', of [[Pleuron]] in [[Aetolia]], Greek poet and man of letters, the only representative of Aetolian poetry, flourished about [[280 BC]].
93114
93115 When living in [[Alexandria]] he was commissioned by [[Ptolemy Philadelphus]] to arrange the tragedies and satyric dramas in the library; some ten years later he took up his residence at the court of [[Antigonus II Gonatas|Antigonus Gonatas]], king of [[Macedon]]ia.
93116
93117 His reputation as a tragic poet was so high that he was allotted a place in the [[Alexandrian Pleiad|Alexandrian tragic ''Pleiad'']]; we only know the title of one play (''Astragalistae.'') He also wrote short epics, epigrams and elegies, the considerable fragments of which show learning and eloquence.
93118
93119 ==References==
93120
93121 *[[Augustus Meineke|Meineke]], ''Analecta Alexandrina'' (1853)
93122 *[[Theodor Bergk|Bergk]], ''Poetae Lyrici Graeci''
93123 *[[Auguste Couat]], ''La PoÊsie alexandrine'' (1882).
93124
93125 ==References==
93126 *{{1911}}
93127
93128 [[Category:Ancient Greek poets]]
93129
93130 [[hu:Alexandrosz]]</text>
93131 </revision>
93132 </page>
93133 <page>
93134 <title>Alexander Jannaeus</title>
93135 <id>1606</id>
93136 <revision>
93137 <id>32027788</id>
93138 <timestamp>2005-12-19T23:28:59Z</timestamp>
93139 <contributor>
93140 <username>BPK2</username>
93141 <id>476225</id>
93142 </contributor>
93143 <minor />
93144 <text xml:space="preserve">[[Image:AlexanderJannaeus.gif|thumb|300px|Coin of '''Alexander Jannaeus''' (103-76 BC).
93145 &lt;br&gt;'''Front:''' [[Seleucid]] anchor, with Greek legend &quot;King Alexander&quot;.
93146 &lt;br&gt;'''Back:''' Eight-spoked wheel or star-within a diadem, with Hebrew letters between the spokes &quot;Yehonatan the King&quot;.]]
93147
93148 '''Alexander Jannaeus''' (also known as '''Alexander Jannai/Yannai'''), king of [[Judea]] from ([[103 BCE]] to [[76 BCE]]), son of [[John Hyrcanus]], inherited the throne from his brother [[Aristobulus]], and appears to have married his brother's widow, ''Shlamtzion'' or ''Shlomtzion'' or &quot;Shelomit&quot;, also known as [[Salome Alexandra]], according to the Biblical law of Yibum (&quot;levirate marriage&quot;), although [[Josephus]] is inexplicit on that point.
93149
93150 His likely full Hebrew name was Jonathan; he may have been the High Priest Jonathan, rather than his great-uncle of the same name, who established the [[Masada]] fortress. Under the name King Yannai, he appears as a wicked tyrant in the [[Talmud]], reflecting his conflict with the [[Pharisee]] party. He is among the more colorful historical figures little known, however, outside specialized history, although the impact of him and his widow on the subsequent development of Judaism and Christianity is substantial.
93151
93152 ==Civil war against the Pharisees==
93153 [[Image:WillemSwiddeAlexanderJannaeus.jpg|thumb|300px|The excution of the Pharisees by Alexander Jannaeus, showing the King and his Court feasting during the executions. Engraving by Willem Swidde, 17th century.]]
93154 An avid supporter of the aristocratic [[Hellenism|Hellenist]] faction known as the [[Sadducees]], his reign was constantly challenged by opponents, among them a brother with a rival claim to the throne, and the populist urban-based [[Pharisee]] party.
93155
93156 At the beginning of his reign Alexander Jannaeus halted the suppression of the Pharisees and the Sages for a while, under the influence of his wife Salome Alexandra (said to be the sister of the great Jewish sage Shimon ben Shetach). This gave him time and resources to increase his power and prestige by extending the territory under his rule through war and conquest. As his power grew, however, he enlisted foreign soldiers to suppress his own people and eliminate the Pharisees.
93157
93158 One year during the Jewish holiday of Sukkot, Alexander Jannaeus, while officiating as the High Priest (Kohen Gadol) at the Temple in Jerusalem, demonstrated his support of the Sadducees by denying the law of the water libation. The crowd responded with shock at his mockery and showed their displeasure by pelting Alexander with the etrogim (citrons) that they were holding in their hands. Unwittingly, the crowd had played right into Alexander's hands. He had intended to incite the people to riot and his soldiers fell upon the crowd at his command. The soldiers slew more than 6,000 people in the Temple courtyard.
93159
93160 A civil war started, in which the Pharisees allied with the [[Seleucids]] king [[Demetrius III Eucaerus|Demetrius III]] against Alexander Jannaeus. He first retreated, but then managed to oust his rivals thanks to popular support against the Seleucid invasion of Judea. During the civil war, Alexander Jannaeus suppressed his rivals brutally, killing his brother and many leading Pharisees. ''The New Century Book of Facts'' writes:
93161
93162 :''&quot;It is said that 50,000 perished in this civil strife. He quelled a revolt at Jerusalem by slaughtering 6,000. On his return from a short exile into which he had been driven by the Pharisees, he caused 800 rebels to be crucified before him and their wives and children slaughtered ([[86 BC|86 B.C.]]).&quot;''
93163
93164 ==Alliance with the Essenes==
93165 [[Image:JonathanQumran.gif|thumb|150px|[[Dead Sea scrolls|Dead Sea Scroll]] from Qumran, with a prayer to Alexander Jannaeus.]]
93166 Alexander Jannaeus may have been in close relation with the monastic [[Essenes]] at some point, who were probably allies during his fight against the Pharisees. A piece from the [[Dead Sea scrolls]] from [[Qumran]] appears to be an homage to him:
93167
93168 :''&quot;holy city/ for king Jonathan/ and all the congregation of your people/ Israel/ who are in the four/ winds of heaven/ peace be (for) all/ and upon your kingdom/ your name be blessed&quot;'' (Transcription and translation by E. Eshel, H. Eshel, and A. Yardeni)
93169
93170 Alexander Jannaeus showed considerable competence as a military leader, repelling invaders and expanding the country's borders to the west and south. He was defeated by [[Ptolemy Lathyrus]] in [[Galilee]]; made an alliance with [[Cleopatra]] and drove Ptolemy out. By the end of his rule, the borders of his state would exceed that of David and extend to Gaza and far into Jordan.
93171
93172 Upon his death, he was succeeded as monarch by his wife [[Salome Alexandra]], known also and better as [[Shlomzion]], and succeeded as [[High Priest]] by his son John [[Hyrcanus II]].
93173
93174 ==Coinage==
93175 The coinage of Alexander Jannaeus is characteristic of the early Jewish coinage in that it avoided human or animal representations, in opposition to the surrounding Greek, and later Roman types of the period. Jewish coinage instead focused on symbols, either natural, such as the [[palm tree]], the [[pomegranate]] or the star, either man-made, such as the temple, the [[Menorah]], trumpets or [[cornucopia]].
93176
93177 [[Image:JanaeusCoinPhoto.JPG|thumb|300px|Coin of Alexander Jannaeus ([[103 BC]] to [[76 BC]]).&lt;br&gt;
93178 '''Obv:''' [[Seleucid]] anchor and Greek Legend: BASILEWS ALEXANDROU &quot;King Alexander&quot;.&lt;br&gt;
93179 '''Rev:''' Eight-spoke wheel or star within diadem. Hebrew legend inside the spokes: &quot;Yehonatan the King&quot;.]]
93180 Alexander Jannaeus was the first of the Jewish kings to introduce the &quot;eight-ray star&quot; or &quot;eight-spoked wheel&quot; symbol, in his [[bronze]] &quot;Widow's mite&quot; coins, in combination with the wide-spread [[Seleucid]] numismatic symbol of the anchor. These coins are thought to be the ones referred to in the [[Bible]] in Luke 21:1-4:
93181 :''&quot;and Jesus sat over against the treasury, and beheld how the people cast money into the treasury; and many that were rich cast in much. And He called unto him His disciples, and saith unto them, Verily I say unto you, that this poor widow hath cast more in, than all they which have cast into the treasury: For all they did cast in of their abundance; but she of her want did cast in all that she had&quot;''
93182
93183 Depending on the make, the star symbol can be shown with straight spokes connected to the outside circle, in a style rather indicative of a wheel. On others, the spokes can have a more &quot;flame-like&quot; shape, more indicative of the representation of a star within a diadem.
93184
93185 It is not clear what the wheel or star may exactly symbolize, and interpretations vary, from the morning star, to the sun or the heavens. The influence of some [[Persians|Persian]] symbols of a star within a diadem, or the eight-spoked [[Buddhist]] wheel have also been suggested. The star cannot be a representation of the star of the birth of [[Jesus]], due to the anteriority of the coins by close to a century. On balance, the eight-spoked Macedonian star (a variation of which is the [[Vergina Sun]]), emblem of the royal [[Argead dynasty]] and the ancient kingdom of [[Macedon|Macedonia]], within a Hellenistic [[Diadem (personal wear)|diadem]] symbolizing royalty (many of the coins depict a small knot with two ends on top of the diadem), seem to be the most probable source for this symbol.
93186
93187 {{start box}}
93188 {{succession box one to two|before=[[Aristobulus|Aristobulus I]]|title1=[[Hasmonean|King of Judaea]]|title2=[[List of High Priests of Israel|High Priest of Jerusalem]]|years1=103&amp;ndash;76 BC|years2=103&amp;ndash;76 BC|after1=[[Salome Alexandra]]|after2=[[Hyrcanus II]]}}
93189 {{end box}}
93190
93191 ==References==
93192 * &quot;Jewish symbols on ancient Jewish coins&quot; Paul Romanoff, New York American Israel Numismatic Association, 1971.
93193 * This article incorporates some content from the public domain 1911 edition of ''The New Century Book of Facts'' published by the King-Richardson Company, Springfield, Massachusetts. (This reference gives a death date of 78 BC, but consensus seems to be 76 BC.)
93194
93195 ==External links==
93196 *[http://www.biblicalmites.com Leptons and Prutahs of Alexander Jannaeus]
93197 *[http://dougsmith.ancients.info/feac47wid.html Coinage of King Alexander Jannaeus, &quot;Widow's Mites&quot;.]
93198 *[http://images.google.co.jp/images?q=Alexander%20Jannaeus%20coins&amp;hl=ja&amp;lr=&amp;sa=N&amp;tab=wi Coins of King Alexander Jannaeus]
93199 *[http://www.macedonian-heritage.gr/HellenicMacedonia/en/img_A1a.html Miniature 'shield' showing the 8-spoked star of the Argead]
93200
93201 [[Category:Hasmoneans]]
93202 [[Category:High Priests of Israel]]
93203
93204 [[he:&amp;#1488;&amp;#1500;&amp;#1499;&amp;#1505;&amp;#1504;&amp;#1491;&amp;#1512; &amp;#1497;&amp;#1504;&amp;#1488;&amp;#1497;]]</text>
93205 </revision>
93206 </page>
93207 <page>
93208 <title>Alexander IV</title>
93209 <id>1607</id>
93210 <revision>
93211 <id>35531544</id>
93212 <timestamp>2006-01-17T12:14:59Z</timestamp>
93213 <contributor>
93214 <username>Korg</username>
93215 <id>263660</id>
93216 </contributor>
93217 <minor />
93218 <comment>{{hndis}}</comment>
93219 <text xml:space="preserve">'''Alexander IV''' may refer to either of the following;
93220
93221 *[[Pope Alexander IV]]
93222 *King [[Alexander IV of Macedon]], the son of [[Alexander the Great]]
93223
93224 {{hndis}}
93225
93226 [[de:Alexander IV.]]
93227 [[es:Alejandro IV]]
93228 [[fr:Alexandre IV]]
93229 [[it:Alessandro IV]]
93230 [[sv:Alexander IV]]</text>
93231 </revision>
93232 </page>
93233 <page>
93234 <title>Alexander V</title>
93235 <id>1608</id>
93236 <revision>
93237 <id>15900075</id>
93238 <timestamp>2005-04-21T03:35:52Z</timestamp>
93239 <contributor>
93240 <username>John Kenney</username>
93241 <id>10512</id>
93242 </contributor>
93243 <text xml:space="preserve">#REDIRECT [[Pope Alexander V]]</text>
93244 </revision>
93245 </page>
93246 <page>
93247 <title>Alexander VI</title>
93248 <id>1609</id>
93249 <revision>
93250 <id>15900076</id>
93251 <timestamp>2002-02-25T15:51:15Z</timestamp>
93252 <contributor>
93253 <ip>Conversion script</ip>
93254 </contributor>
93255 <minor />
93256 <comment>Automated conversion</comment>
93257 <text xml:space="preserve">#REDIRECT [[Pope_Alexander_VI]]
93258 </text>
93259 </revision>
93260 </page>
93261 <page>
93262 <title>Alexander VII</title>
93263 <id>1610</id>
93264 <revision>
93265 <id>15900077</id>
93266 <timestamp>2002-02-25T15:51:15Z</timestamp>
93267 <contributor>
93268 <ip>Conversion script</ip>
93269 </contributor>
93270 <minor />
93271 <comment>Automated conversion</comment>
93272 <text xml:space="preserve">#REDIRECT [[Pope_Alexander_VII]]
93273 </text>
93274 </revision>
93275 </page>
93276 <page>
93277 <title>Alexander VIII</title>
93278 <id>1611</id>
93279 <revision>
93280 <id>15900078</id>
93281 <timestamp>2002-02-25T15:51:15Z</timestamp>
93282 <contributor>
93283 <ip>Conversion script</ip>
93284 </contributor>
93285 <minor />
93286 <comment>Automated conversion</comment>
93287 <text xml:space="preserve">#REDIRECT [[Pope_Alexander_VIII]]
93288 </text>
93289 </revision>
93290 </page>
93291 <page>
93292 <title>Alexandrists</title>
93293 <id>1612</id>
93294 <revision>
93295 <id>28050100</id>
93296 <timestamp>2005-11-11T19:41:57Z</timestamp>
93297 <contributor>
93298 <username>Bluebot</username>
93299 <id>527862</id>
93300 </contributor>
93301 <minor />
93302 <comment>Standardising 1911 references.</comment>
93303 <text xml:space="preserve">The '''Alexandrists''' were a school of [[Renaissance]] philosophers who, in the great controversy on the subject
93304 of personal immortality, adopted the explanation of the ''De Anima'' given by Alexander of Aphrodisias.
93305
93306 According to the orthodox [[Thomism]] of the Roman Catholic Church, [[Aristotle]] rightly regarded reason as a facility of the individual soul. Against this, the Averroists, led by [[Agostino Nito]], introduced the modifying theory that universal reason in a sense individualizes itself in each soul and then absorbs the active reason into itself again. These two theories respectively evolved the doctrine of individual and universal immortality, or the absorption of the individual into the eternal One.
93307
93308 The Alexandrists, led by Pietro Pomponazzi, boldly assailed these beliefs and denied that either was rightly attributed to Aristotle. They held that Aristotle considered the soul as a material and therefore a mortal entity which operates during life only under the authority of universal reason. Hence the Alexandrists denied the possibility of any form of immortality, holding that, since the soul is organically connected with the body, the dissolution of the latter involves the extinction of the former.
93309
93310
93311 ==References==
93312 *{{1911}}</text>
93313 </revision>
93314 </page>
93315 <page>
93316 <title>Alexius I Comnenus</title>
93317 <id>1613</id>
93318 <revision>
93319 <id>40205479</id>
93320 <timestamp>2006-02-18T23:19:14Z</timestamp>
93321 <contributor>
93322 <username>Deville</username>
93323 <id>364144</id>
93324 </contributor>
93325 <minor />
93326 <comment>Disambiguate [[Epirus]] to [[Despotate of Epirus]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
93327 <text xml:space="preserve">[[image:Alexius I.jpg|thumb|Byzantine emperor Alexius I Comnenus]]
93328 '''Alexius I''' (Greek: ΑÎģέΞΚÎŋĪ‚ Α' ΚÎŋÎŧÎŊΡÎŊĪŒĪ‚ or Alexios I Komnenos) ([[1048]] &amp;ndash; [[August 15]], [[1118]]), [[Byzantine Empire|Byzantine]] [[List of Byzantine Emperors|emperor]] ([[1081]]&amp;ndash;[[1118]]), was the third son of John Comnenus, the nephew of [[Isaac I Comnenus]] (emperor 1057&amp;ndash;1059).
93329
93330 His father declined the throne on the abdication of Isaac, who was accordingly succeeded by four emperors of other families between [[1059]] and [[1081]]. Under one of these emperors, [[Romanus IV|Romanus IV Diogenes]] ([[1067]]&amp;ndash;[[1071]]), he served with distinction against the [[Seljuk Turks]]. Under [[Michael VII]] Parapinaces ([[1071]]&amp;ndash;[[1078]]) and [[Nicephorus III]] Botaniates ([[1078]]&amp;ndash;[[1081]]) he was also employed, along with his elder brother Isaac, against rebels in [[Asia Minor]], [[Thrace]] and in [[Despotate of Epirus|Epirus]] in [[1071]].
93331
93332 The success of the [[Comnenus|Comneni]] roused the jealousy of Botaniates and his ministers, and the Comneni were almost compelled to take up arms in self-defence. Botaniates was forced to abdicate and retire to a [[monastery]], and Isaac declined the crown in favour of his younger brother Alexius, who then became emperor at the age of 33.
93333
93334 By that time Alexius was the lover of the Empress [[Maria Bagrationi]], a daughter of [[monarch|king]] [[Bagrat IV of Georgia]] who was successively married to [[Michael VII]] Ducas and his successor Botaniates, and was renowned for her beauty. Alexius and Maria lived almost openly together at the Palace of Mangana, and Alexius had [[Michael VII]] and Maria's young son, the prince Constantine Ducas, adopted and proclaimed heir to the throne. The affair conferred to Alexius a degree of dynastic legitimacy, but soon his mother Anna Dalassena consolidated the Ducas family connection by arranging the Emperor's wedding with [[Irene Ducaena]] or Doukaina, granddaughter of the ''caesar'' John Ducas, head of a powerful feudal family and the &quot;kingmaker&quot; behind [[Michael VII]].
93335
93336 Alexius' involvement with Maria continued and shortly after his daughter [[Anna Comnena]] was born, she was betrothed to [[Constantine Ducas]] and moved to live at the Mangana Palace with him and Maria. The situation however changed drastically when [[John II Comnenus]] was born: Anna's engagement to Constantine was dissolved, she was moved to the main Palace to live with her mother and grandmother, Constantine's status as heir was terminated and Alexius became estranged with Maria, now stripped of her imperial title. Shortly afterwards, the teenager Constantine died and Maria was confined to a convent.
93337
93338 [[Image:Histamenon nomisma-Alexius I-sb1776.jpg|thumb|300px|This coin was struck by Alexius during his war against [[Robert Guiscard]].]]
93339 Alexius' long reign of nearly 37 years was full of struggle. At the very outset he had to meet the formidable attack of the [[Normans]] ([[Robert Guiscard]] and his son [[Bohemund I of Antioch|Bohemund]]), who took [[DurrÃĢs|Dyrrhachium]] and [[Corfu]], and laid siege to [[Larissa]] in [[Thessaly]] (see [[Battle of Dyrrhachium (1081)|Battle of Dyrrhachium]]). The Norman danger ended for the time with Robert Guiscard's death in [[1085]], and the conquests were reversed.
93340
93341 He had next to repel the invasions of [[Pechenegs]] and [[Kypchaks|Cumans]] in Thrace, with whom the [[Manichaean]] sect of the [[Bogomils]] made common cause; and thirdly, he had to cope with the fast-growing power of the [[Seljuk Turks]] in Asia Minor.
93342
93343 Above all he had to meet the difficulties caused by the arrival of the [[knight]]s of the [[First Crusade]], which had been, to a great degree, initiated as the result of the representations of his own ambassadors, whom he had sent to [[Pope Urban II]] at the [[Council of Piacenza]] in [[1095]]. The help which he wanted from the West was simply [[mercenary]] forces and not the immense hosts which arrived, to his consternation and embarrassment. The first group, under [[Peter the Hermit]], he dealt with by sending them on to Asia Minor, where they were massacred by the Turks in [[1096]].
93344
93345 The second and much more serious host of knights, led by [[Godfrey of Bouillon]], he also led into Asia, promising to supply them with provisions in return for an oath of homage, and by their victories recovered for the Byzantine Empire a number of important cities and islands&amp;mdash;[[Nicaea]], [[Chios]], [[Rhodes]], [[Izmir|Smyrna]], [[Ephesus]], [[Philadelphia (Alasehir)|Philadelphia]], [[Sardis]], and in fact most of Asia Minor ([[1097]]&amp;ndash;[[1099]]). This is ascribed by his daughter [[Anna Comnena|Anna]] as a credit to his policy and diplomacy, but by the Latin historians of the crusade as a sign of his treachery and falseness. The crusaders believed their oaths were made invalid when Alexius did not help them during the [[siege of Antioch]]; Bohemund, who had set himself up as [[Principality of Antioch|Prince of Antioch]], briefly went to war with Alexius, but agreed to become Alexius' vassal under the [[Treaty of Devol]] in [[1108]].
93346
93347 During the last twenty years of his life he lost much of his popularity. The years were marked by persecution of the followers of the Paulician and Bogomil heresies&amp;mdash;one of his last acts was to burn [[Basil the Physician|Basil]], a Bogomil leader, with whom he had engaged in a theological controversy; by renewed struggles with the Turks ([[1110]]&amp;ndash;[[1117]]); and by anxieties as to the succession, which his wife Irene wished to alter in favour of her daughter Anna's husband, [[Nicephorus Bryennius]], for whose benefit the special title ''[[Byzantine aristocracy and bureaucracy|panhypersebastos]]'' (&quot;honored above all&quot;) was created. This intrigue disturbed even his dying hours.
93348
93349 Alexius was for many years under the strong influence of an ''eminence grise'', his mother [[Anna Dalassena]], a wise and immensely able politician whom, in a uniquely irregular fashion, he had crowned as ''Empress Augusta'' instead of the rightful claimant to the title, his wife Irene. Dalassena was the effective administrator of the Empire during Alexius' long absences in war campaigns: she was constantly at odds with her daughter-in-law and had assumed total responsibility for the upbringing and education of her granddaughter [[Anna Comnena]].
93350
93351 == External links ==
93352 * [http://www.wildwinds.com/coins/byz/alexius_I/t.html Alexius coinage]
93353
93354 ==References==
93355 *{{1911}}
93356
93357 {{Byzantine Emperor | Prev=[[Nicephorus III]] | CoEmperor= | Next=[[John II Comnenus]]}}
93358
93359 [[Category:Comnenid dynasty]]
93360 [[Category:Byzantine emperors]]
93361 [[Category:Crusades]]
93362 [[Category:1048 births]]
93363 [[Category:1118 deaths]]
93364
93365 [[de:Alexios I. (Byzanz)]]
93366 [[el:ΑÎģέΞΚÎŋĪ‚ Α' ΚÎŋÎŧÎŊΡÎŊĪŒĪ‚]]
93367 [[es:Alejo I Comneno]]
93368 [[fr:Alexis Ier Comnène]]
93369 [[he:אלכסיוס הראשון]]
93370 [[hu:I. Alexiosz]]
93371 [[nl:Alexius I van Byzantium]]
93372 [[ja:ã‚ĸãƒŦã‚¯ã‚ˇã‚Ēã‚š1世ã‚ŗムネノ゚]]
93373 [[pl:Aleksy I Komnen]]
93374 [[pt:Aleixo I Comneno]]
93375 [[fi:Aleksios I Komnenos]]
93376 [[sv:Alexios I Komnenos]]
93377 [[zh:é˜ŋåŽ†å…‹åĄžä¸€ä¸–]]</text>
93378 </revision>
93379 </page>
93380 <page>
93381 <title>Alexis</title>
93382 <id>1614</id>
93383 <revision>
93384 <id>41748138</id>
93385 <timestamp>2006-03-01T13:30:44Z</timestamp>
93386 <contributor>
93387 <username>Tasc</username>
93388 <id>853739</id>
93389 </contributor>
93390 <minor />
93391 <comment>Reverted edits by [[Special:Contributions/204.117.145.194|204.117.145.194]] to last version by Naconkantari</comment>
93392 <text xml:space="preserve">:''For other senses of this name, see [[Alexis (disambiguation)]].''
93393
93394 '''Alexis''' (ca. [[375 BC]]-ca. [[275 BC]]) was a [[Greece|Greek]] [[comedian|comic]] [[poet]] of the [[Middle Comedy]], born at [[Thurii]] and taken early to [[Athens]], where he became a citizen.
93395
93396 He won his first [[Lenaean]] victory in the [[350s BC]], most likely, where he was sixth after [[Eubulus]], and fourth after [[Antiphanes]].
93397
93398 [[Plutarch]] says that he lived to the age of 106, and that he died on the stage while being crowned. According to the ''[[Suda]]'', he wrote 245 comedies, of which some 130 titles are preserved. Only fragments of any of the plays have survived - about 340 in all, totalling about 1,000 lines. They attest to the wit and refinement of the author (see [[Theodor Kock]], ''Comicorum Atticorum Fragmenta'').
93399
93400 The ''Suda'' also calls him [[Menander]]'s uncle, but an anonymous [[tractate]] on comedy more plausibly states that Menander was his pupil. Alexis was known in [[Ancient Rome|Roman]] times; [[Aulus Gellius]] noted that Alexis' plays were used by Roman comedians, including [[Turpilius]] and possibly [[Plautus]].
93401
93402 ==References==
93403 *{{1911}}
93404 [[Category:375 BC births]]
93405 [[Category:275 BC deaths]]
93406 [[Category:Ancient Greek poets]]
93407
93408 [[hu:Alexisz]]</text>
93409 </revision>
93410 </page>
93411 <page>
93412 <title>Alexius II Comnenus</title>
93413 <id>1615</id>
93414 <revision>
93415 <id>42042399</id>
93416 <timestamp>2006-03-03T11:51:27Z</timestamp>
93417 <contributor>
93418 <username>KnightRider</username>
93419 <id>430793</id>
93420 </contributor>
93421 <minor />
93422 <comment>warnfile Adding: es</comment>
93423 <text xml:space="preserve">'''Alexius II Comnenus''' ([[September 10]], [[1169]] &amp;ndash; October [[1183]]), [[Byzantine emperor]] ([[1180]]-[[1183]]), was the son of emperor [[Manuel I Comnenus]] and [[Maria of Antioch|Maria]], daughter of [[Raymond of Antioch|Raymund]], [[Principality of Antioch|prince of Antioch]]. He was the long-awaited male heir, and was named Alexius as a fulfilment of the [[AIMA prophecy]].
93424
93425 On Manuel's death in [[1180]], Maria, who had been immured in a [[convent]] under the name of Xene, had herself proclaimed regent (1179-1180), and handing over her son to counsellors, who encouraged him in every vice, supported the government of Alexius the ''[[Byzantine aristocracy and bureaucracy|protosebastos]]'' (a cousin of Alexius II), who was popularly believed to be Maria's lover. The young Alexius and his friends now tried to form a party against the empress mother and the protosebastos; and his sister Maria, wife of Caesar John ([[Renier of Montferrat]]), stirred up riots in the streets of the capital.
93426
93427 Their party was defeated ([[May 2]], [[1182]]), but [[Andronicus I Comnenus|Andronicus Comnenus]] took advantage of these disorders to aim at the crown, entered Constantinople, where he was received with almost divine honours, and overthrew the regents. His arrival was celebrated by a massacre of the Latins in Constantinople, especially the [[Venice|Venetian]] merchants, which he made no attempt to stop. He allowed Alexius to be crowned, but forced him to consent to the death of all his friends, including his mother, his sister and the Caesar, and refused to allow him the smallest voice in public affairs.
93428
93429 The betrothal in 1180 of Alexius with [[Agnes of France]] , daughter of [[Louis VII of France]] and his third wife [[Adèle of Champagne]] and at the time a child of nine, was quashed. Andronicus was now formally proclaimed as co-emperor, and not long afterwards, on the pretext that divided rule was injurious to the Empire, he caused Alexius to be strangled with a bow-string (October 1183).
93430
93431 ==Sources==
93432 * Magdalino, Paul. ''The Empire of Manuel I Komnenos'', 1993
93433
93434 ----
93435 {{Byzantine Emperor | Prev=[[Manuel I Comnenus]] | CoEmperor= | Next=[[Andronicus I Comnenus]]}}
93436 {{1911}}
93437
93438 [[Category:Comnenid dynasty]]
93439 [[Category:Byzantine emperors]]
93440 [[Category:1169 births|Alexius II Comnenus]]
93441 [[Category:1183 deaths|Alexius II Comnenus]]
93442
93443 [[de:Alexios II. (Byzanz)]]
93444 [[el:ΑÎģέΞΚÎŋĪ‚ Β']]
93445 [[es:Alejo II Comneno]]
93446 [[fr:Alexis II Comnène]]
93447 [[it:Alessio II di Bisanzio]]
93448 [[hu:II. Alexiosz]]
93449 [[nl:Alexius II van Byzantium]]
93450 [[ja:ã‚ĸãƒŦã‚¯ã‚ˇã‚Ēã‚š2世ã‚ŗムネノ゚]]
93451 [[pl:Aleksy II Komnen]]
93452 [[fi:Aleksios II Komnenos]]</text>
93453 </revision>
93454 </page>
93455 <page>
93456 <title>Alexius III Angelus</title>
93457 <id>1616</id>
93458 <revision>
93459 <id>37332985</id>
93460 <timestamp>2006-01-30T08:02:32Z</timestamp>
93461 <contributor>
93462 <username>Chlewbot</username>
93463 <id>620581</id>
93464 </contributor>
93465 <minor />
93466 <comment>robot Adding: es</comment>
93467 <text xml:space="preserve">'''Alexius III Angelus''' (Greek: ΑÎģέΞΚÎŋĪ‚ Γ' ΆÎŗÎŗÎĩÎģÎŋĪ‚ or Alexios III Angelos), [[Byzantine Emperors|Byzantine emperor]], was the second son of Andronicus Angelus, nephew of [[Alexius I]].
93468
93469 In [[1195]], while his brother [[Isaac II]] was away hunting in [[Thrace]], he was proclaimed emperor by the troops; he captured Isaac at [[Stagira]] in [[Macedonia (region)|Macedonia]], put out his eyes, and kept him henceforth a close prisoner, though he had been redeemed by him from captivity at [[Antioch]] and loaded with honours.
93470
93471 To compensate for this crime and to confirm his position as emperor, he had to scatter money so lavishly as to empty his treasury, and to allow such licence to the officers of the army as to leave the Empire practically defenceless. He consummated the financial ruin of the state. The able and forceful empress [[Euphrosyne Doukaina Kamaterina]] tried in vain to sustain his credit and his court; Vatatzes, the favourite instrument of her attempts at reform, was [[assassination|assassinated]] by the emperor's orders.
93472
93473 Eastward the Empire was overrun by the [[Seljuk Turks]]; from the north [[Bulgarians]] and [[Vlachs]] descended unchecked to ravage the plains of Macedonia and Thrace; while Alexius squandered the public treasure on his palaces and gardens. Soon he was threatened by a new and yet more formidable danger. In [[1202]] the Western princes of the [[Fourth Crusade]] assembled at [[Venice]], bent on a new [[crusade]]. Alexius, son of the deposed Isaac, escaped from [[Constantinople]] and appealed to the crusaders, promising as a crowning bribe to heal the [[East-West Schism|schism]] of [[Eastern Orthodoxy|East]] and [[Roman Catholicism|West]] if they would help him to depose his uncle.
93474
93475 The crusaders, whose objective had been [[Egypt]], were persuaded to set their course for Constantinople, before which they appeared in June [[1203]], proclaiming Alexius as emperor [[Alexius IV]] and summoning the capital to depose his uncle. Alexius III, sunk in debauchery, took no efficient measures to resist. His son-in-law, [[Theodore I Lascaris|Lascaris]], who was the only one to do anything, was defeated at [[Scutari]], and the siege of [[Constantinople]] began. On the [[July 17]] the crusaders, the aged [[Doge of Venice|doge]] [[Enrico Dandolo]] at their head, scaled the walls and took the city by storm. During the fighting and carnage that followed Alexius hid in the palace, and finally, with one of his daughters, Irene, and such treasures as he could collect, got into a boat and escaped to [[Develton]] in Thrace, leaving his wife, his other daughters and his Empire to the victors. Isaac, drawn from his prison and robed once more in the imperial purple, received his son in state.
93476
93477 Shortly afterwards Alexius made an effort in conjunction with Murtzuphlos ([[Alexius V]]) to recover the throne. The attempt was unsuccessful and, after wandering about [[Greece]], he surrendered with Euphrosyne, who had meanwhile joined him, to [[Boniface of Montferrat]], then master of a great part of the [[Balkan peninsula]] (the so-called [[Kingdom of Thessalonica]]). Leaving his protection he sought shelter with [[Michael I Ducas]], [[Despotate of Epirus|despot of Epirus]], and then repaired to [[Asia Minor]], where his son-in-law Lascaris was holding his own against the Latins.
93478
93479 Alexius, joined by [[Kay Khusrau I]], the [[sultan]] of [[Sultanate of RÃŧm|RÃŧm]] (also called the sultan of [[Iconium]] or [[Konya]]), now demanded the crown of Lascaris, and on his refusal marched against him. Lascaris, however, defeated and took him prisoner. Alexius was relegated to a [[monastery]] at [[Nicaea]], where he died on some date unknown.
93480
93481
93482 {{Byzantine Emperor | Prev=[[Isaac II Angelus]] | CoEmperor= | Next=[[Isaac II Angelus]]&lt;/b&gt; and&lt;br /&gt;&lt;b&gt;[[Alexius IV Angelus]]}}
93483
93484 ==References==
93485 *{{1911}}
93486
93487 [[Category:Angelid dynasty]]
93488 [[Category:Byzantine emperors]]
93489 [[Category:Crusades]]
93490
93491 [[de:Alexios III.]]
93492 [[es:Alejo III Ángelo]]
93493 [[fr:Alexis III]]
93494 [[gl:Aleixo III de Bizancio]]
93495 [[hu:III. Alexiosz]]
93496 [[nl:Alexius III van Byzantium]]
93497 [[ja:ã‚ĸãƒŦã‚¯ã‚ˇã‚Ēã‚š3世ã‚ĸãƒŗã‚˛ãƒ­ã‚š]]
93498 [[pl:Aleksy III Angelos]]</text>
93499 </revision>
93500 </page>
93501 <page>
93502 <title>Alexius V</title>
93503 <id>1617</id>
93504 <revision>
93505 <id>40533553</id>
93506 <timestamp>2006-02-21T06:33:10Z</timestamp>
93507 <contributor>
93508 <username>Adam Bishop</username>
93509 <id>13008</id>
93510 </contributor>
93511 <minor />
93512 <comment>Reverted edits by [[Special:Contributions/69.151.50.88|69.151.50.88]] ([[User talk:69.151.50.88|talk]]) to last version by 81.36.74.251</comment>
93513 <text xml:space="preserve">'''Alexius V Ducas Murtzouphlos''' (d. [[1205]]), [[Byzantine emperor]], was proclaimed emperor on [[February 5]], [[1204]], during the siege of [[Constantinople]] by the Latins ([[Fourth Crusade]]). His nickname &quot;Murtzouphlos&quot; referred to his extremely bushy eyebrows. He was related to the imperial Angelus family.
93514
93515 A Byzantine nobleman, he had risen to the court position of protovestarius by the time of the [[4th Crusade]]. By January of [[1204]], the Emperors [[Isaac II]] and [[Alexius IV]] had inspired little confidence among the people of Constantinople in their efforts to defend the city from the Latins. As a result of his position, Alexius Ducas had easy access to the Imperial residence, and when a revolution in the city arose with the intent of toppling the two Angeli Emperors, Alexius used that access to capture them. The young [[Alexius IV]] would be killed by the bowstring. The death of his father, [[Isaac II]], shortly afterward, was possibly &quot;artificially induced.&quot;
93516
93517 Upon his coronation, Alexius V began to strengthen the defenses of [[Constantinople]] and ended negotiations with the Latins. It was too late, however, for the new Emperor to make much of a difference. During the ensuing fight, he defended the city with courage and tenacity. The crusaders would prove to be too strong, and Alexius fled to Thrace shortly before the city fell.
93518
93519 He later attempted to ally with his fellow ex-emperor [[Alexius III]] against the Latins, but Alexius III had him blinded and delivered into the hands of the crusaders, who put him to death by casting him from the top of the Pillar of Theodosius as the murderer of Alexius IV. He was the last Byzantine emperor before the establishment of the [[Latin Empire]], which controlled Constantinople for the next 57 years.
93520
93521
93522 {{Byzantine Emperor | Prev=[[Isaac II Angelus]]&lt;/b&gt; and&lt;br&gt;&lt;b&gt;[[Alexius IV Angelus]] | CoEmperor= | Next=[[Theodore I Lascaris]]}}
93523 ==References==
93524 *{{1911}}
93525 *John Julius Norwich, &quot;A Short History of Byzantium&quot;, Vintage Books, 1999.
93526
93527 [[Category:1205 deaths]]
93528 [[Category:Angelid dynasty]]
93529 [[Category:Byzantine emperors]]
93530 [[Category:Crusades]]
93531
93532 [[de:Alexios V.]]
93533 [[es:Alejo V Ducas]]
93534 [[fr:Alexis V (empereur byzantin)]]
93535 [[it:Alessio V di Bisanzio]]
93536 [[hu:V. Alexiosz]]
93537 [[nl:Alexius V van Byzantium]]
93538 [[ja:ã‚ĸãƒŦã‚¯ã‚ˇã‚Ēã‚š5世ドã‚Ĩãƒŧã‚Ģã‚š]]
93539 [[pl:Aleksy V Murzuflos]]
93540 [[pt:Alexius V]]
93541 [[fi:Aleksios V]]</text>
93542 </revision>
93543 </page>
93544 <page>
93545 <title>Alexius Mikhailovich</title>
93546 <id>1618</id>
93547 <revision>
93548 <id>15900085</id>
93549 <timestamp>2005-02-08T16:53:56Z</timestamp>
93550 <contributor>
93551 <username>John Kenney</username>
93552 <id>10512</id>
93553 </contributor>
93554 <text xml:space="preserve">#REDIRECT [[Alexis I of Russia]]</text>
93555 </revision>
93556 </page>
93557 <page>
93558 <title>Tsarevich Alexei Petrovich of Russia</title>
93559 <id>1620</id>
93560 <revision>
93561 <id>41960789</id>
93562 <timestamp>2006-03-02T22:17:09Z</timestamp>
93563 <contributor>
93564 <username>Alex Bakharev</username>
93565 <id>294809</id>
93566 </contributor>
93567 <minor />
93568 <comment>fmt</comment>
93569 <text xml:space="preserve">[[Image:Tannauer Aleksei.jpg|thumb|200px|Portrait of Alexei by Johann Gottfried Tannauer, c. 1712-16, Russian Museum, St Petersburg]]
93570 '''Alexei Petrovich''' ({{lang-ru|АĐģĐĩĐēŅĐĩĐš ПĐĩŅ‚Ņ€ĐžĐ˛Đ¸Ņ‡}}) ({{OldStyleDate|18 February|1690|28 February}} &amp;ndash; {{OldStyleDate|7 July|1718|26 June}}), a [[Russia]]n [[tsarevich]]. He was born in [[Moscow]], the son of Tsar [[Peter I of Russia|Peter I]] and his first wife [[Eudoxia Lopukhina]].
93571
93572 ==Childhood==
93573 The young Alexei was brought up by his mother, who fostered an atmosphere of disdain towards [[Peter I of Russia|Peter the Great]], Alexei's father. Alexei's relations with his father suffered from the hatred between his father and his mother, as it was very difficult for him to feel affection for his mother's worst persecutor. From the ages of 6 to 9, Alexei was educated by his tutor Vyazemsky, but after the removal of his mother by Peter the Great to the [[Suzdal]] Intercession Convent, Alexei was confined to the care of educated foreigners, who taught him history, geography, mathematics and French.
93574
93575 ==Military career==
93576 In [[1703]], Alexei was ordered to follow the army to the field as a private in a [[bombardier (rank)|bombardier]] regiment. In [[1704]], he was present at the capture of [[Narva]]. At this period, the preceptors of the tsarevich had the highest opinion of his ability. Alexei had strong leanings towards [[archaeology]] and [[ecclesiology]]. However, Peter had wished his son and heir to dedicate himself to the service of new [[Russia]], and demanded from him unceasing labour in order to maintain Russia's new wealth and power. Painful relations between father and son, quite apart from the prior personal antipathies, were therefore inevitable. It was an additional misfortune for Alexei that his father should have been too busy to attend to him just as he was growing up from boyhood to manhood. He was left in the hands of [[reactionary]] [[boyars]] and priests, who encouraged him to hate his father and wish for the death of the tsar-[[antichrist]].
93577
93578 In [[1708]] Peter sent Alexei to [[Smolensk]] to collect [[provender]] and [[recruit]]s, and after that to [[Moscow]] to fortify it against [[Charles XII of Sweden]]. At the end of [[1709]], Alexei went to [[Dresden]] for one year. There, he finished lessons in French, German, mathematics and fortification. After his education, Alexei married princess [[Charlotte of Brunswick-WolfenbÃŧttel]], greatly against his will. The wedding was celebrated at [[Torgau]] on [[October 14]], [[1711]], in the house of the queen of [[Poland]]. Three weeks later, the bridegroom was hurried away by his father to [[Torun]] to superintend the provisioning of the Russian troops in Poland. For the next twelve months Alexei was kept constantly on the move. His wife joined him at Torun in December, but in April [[1712]] a peremptory [[ukase]] ordered him off to the army in [[Pomerania]], and in the autumn of the same year he was forced to accompany his father on a tour of inspection through [[Finland]].
93579
93580 ==Self-exile==
93581 Immediately on his return from Finland, Alexei was despatched by his father to [[Staraya Russa]] and [[Lake Ladoga]] to see to the building of new ships. This was the last commission entrusted to him, since Peter had not been satisfied with his son's performance and his lack of enthusiasm. Nevertheless, Peter made one last effort to &quot;reclaim&quot; his son. On [[October 11]], [[1715]], princess Charlotte died, after giving birth to a son, the grand-duke Peter, future tsar [[Peter II of Russia|Peter II]]. On the day of the funeral, Peter sent Alexei a stern letter, urging him to take interest in the affairs of the state. Peter threatened to cut him off if he did not acquiesce in his father's plans. Alexei wrote a pitiful reply to his father, offering to renounce the succession in favour of his baby half-brother Peter. Furthermore, in January of [[1716]], Alexei asked his father for permission to become a [[monk]].
93582
93583 Still, Peter did not despair. On the [[August 26]], 1716 he wrote to Alexei from abroad, urging him, if he desired to remain [[tsarevich]], to join him and the army without delay. Rather than face this ordeal, Alexei fled to [[Vienna]] and placed himself under the protection of his brother-in-law, the emperor [[Charles VI, Holy Roman Emperor|Charles VI]], who sent him for safety first to the [[Tirol]]ean fortress of Ahrenberg, and finally to the castle of [[San Elmo]] at [[Naples]]. He was accompanied throughout his journey by his mistress, the [[Finland|Finnish]] girl Afrosina. That the emperor sincerely sympathized with Alexei, and suspected Peter of harbouring murderous designs against his son, is plain from his confidential letter to [[George I of the United Kingdom]], whom he consulted on this delicate affair. Peter felt insulted. The flight of the tsarevich to a foreign potentate was a reproach and a scandal. He had to be recovered and brought back to Russia at all costs. This difficult task was accomplished by Count [[Peter Tolstoi]], the most subtle and unscrupulous of Peter's servants.
93584
93585 ==The return==
93586
93587 Alexei would only consent to return on his father solemnly swearing, that if he came back he should not be punished in the least, but cherished as a son and allowed to live quietly on his estates and marry Afrosina. On [[31 January]] [[1718]] the tsarevich reached Moscow. Peter had already determined to institute a most searching [[inquisition]] in order to get at the bottom of the mystery of the flight. On [[18 February]] a &quot;confession&quot; was extorted from Alexei which implicated most of his friends, and he then publicly renounced the succession to the throne in favour of the baby grand-duke Peter Petrovich. A horrible reign of terror ensued, in the course of which the ex-tsaritsa Eudoxia was dragged from her monastery and publicly tried for alleged [[adultery]], while all who had in any way befriended Alexei were [[Impalement|impale]]d, broken on the wheel and otherwise lingeringly done to death. All this was done to terrorize the reactionaries and isolate the tsarevich.
93588 [[Image:gay_alexis.jpg|thumb|right|350px|''Peter I interrogates Tsarevich Alexei Petrovich at Peterhof'', history painting by Nikolai Ge, 1871, State Tret'yakov Gallery, Moscow]]
93589 In April 1718 fresh confessions were extorted from Alexei. Even now there were no actual facts to go upon. The worst that could be brought against him was that he had wished his father's death. In the eyes of Peter, his son was now a self-convicted and most dangerous traitor, whose life was forfeit. But there was no getting over the fact that his father had sworn to pardon him and let him live in peace if he returned to Russia. The whole matter was solemnly submitted to a grand council of [[prelate]]s, [[senator]]s, [[Political minister|minister]]s and other [[dignitary|dignitaries]] on [[13 June]] [[1718]]. The [[clergy]] left the matter to the tsar's own decision. The temporal dignitaries declared the evidence to be insufficient and suggested that Alexei should be examined by torture.
93590
93591 Accordingly, on [[19 June]], the weak and ailing tsarevich received twenty-five strokes with the [[knout]], and on the 24th - fifteen more. It was hardly possible that he could survive such treatment. On [[26 June]], Alexei died in the [[Petropavlovskaya fortress]] in [[Saint Petersburg]], two days after the senate had condemned him to death for conspiring rebellion against his father, and for hoping for the cooperation of the common people and the armed intervention of his brother-in-law, the emperor. Some historians believe that Alexei actually died of [[strangulation]] by one of Peter's servants.
93592
93593 ==Further Reading==
93594
93595 *Matthew S. Anderson, ''Peter the Great'' (London: Thames and Hudson, 1978).
93596 *Robert Nisbet Bain, ''The First Romanovs 1613 – 1725'' (London, 1905; reprint, New York, 1967).
93597 *Robert K. Massie, ''Peter the Great, His Life and World'' (New York: Ballantine, 1981).
93598 *B.H. Sumner, ''Peter the Great and the Emergence of Russia'' (London: English UP, 1968).
93599 *Fredrick Charles Weber, ''The Present State of Russia'' vol 1, (1723; reprint, London: Frank Cass and Co, 1968).
93600 *---,''The Present State of Russia'' vol 2, (1723; reprint, London: Frank Cass and Co, 1968).
93601
93602 ==References==
93603 *{{1911}}
93604
93605 [[Category:1690 births|Alexei Petrovich of Russia]]
93606 [[Category:1718 deaths|Alexei Petrovich of Russia]]
93607 [[Category:Muscovites|Alexei Petrovich of Russia]]
93608 [[Category:Romanov|Alexei Petrovich of Russia]]
93609 [[Category:Heirs apparent who never acceded|Alexei Petrovich of Russia]]
93610
93611 [[de:Alexei von Russland]]
93612 [[ru:АĐģĐĩĐēŅĐĩĐš ПĐĩŅ‚Ņ€ĐžĐ˛Đ¸Ņ‡]]</text>
93613 </revision>
93614 </page>
93615 <page>
93616 <title>Archimedes of Syracuse</title>
93617 <id>1622</id>
93618 <revision>
93619 <id>15900089</id>
93620 <timestamp>2002-02-25T15:51:15Z</timestamp>
93621 <contributor>
93622 <ip>Conversion script</ip>
93623 </contributor>
93624 <minor />
93625 <comment>Automated conversion</comment>
93626 <text xml:space="preserve">#REDIRECT [[Archimedes]]
93627 </text>
93628 </revision>
93629 </page>
93630 <page>
93631 <title>Andrew Jackson</title>
93632 <id>1623</id>
93633 <revision>
93634 <id>42102009</id>
93635 <timestamp>2006-03-03T21:12:03Z</timestamp>
93636 <contributor>
93637 <username>Rjensen</username>
93638 <id>313197</id>
93639 </contributor>
93640 <comment>rv</comment>
93641 <text xml:space="preserve">{{sprotected}}
93642 {{Infobox_President | name=Andrew Jackson
93643 | nationality=american
93644 | image=Andrew Jackson.jpeg|200px|
93645 | order=7th President
93646 | term_start=[[March 4]], [[1829]]
93647 | term_end=[[March 3]], [[1837]]&lt;!-- Prior to the passage of the 20th Amendment, presidential terms ended at 11:59:59 on March 3. --&gt;
93648 | predecessor= [[John Quincy Adams]]
93649 | successor= [[Martin Van Buren]]
93650 | birth_date= [[March 15]], [[1767]]
93651 | birth_place= [[Waxhaw, North Carolina|Waxhaws area]] of [[South Carolina]]
93652
93653 | death_date= [[June 8]], [[1845]]
93654 | death_place= [[The Hermitage]], [[Nashville]], [[Tennessee]]
93655 | spouse= Widowed. [[Rachel Donelson Robards Jackson]] (niece [[Emily Donelson Jackson]] and daughter-in-law [[Sarah Yorke Jackson]] were [[First Lady of the United States|first ladies]])
93656 | party= [[Democratic Party (United States)|Democratic]]
93657 | vicepresident= [[John C. Calhoun]] (1829-1832) [[Martin Van Buren]] (1833-1837)
93658 }}
93659 '''Andrew Jackson''' ([[March 15]], [[1767]] &amp;ndash; [[June 8]], [[1845]]), was the seventh [[President of the United States]] (1829-1837), hero of the [[Battle of New Orleans]] (1815), a founder of the [[Democratic Party (United States)|Democratic Party]], and the [[eponym]] of the era of [[Jacksonian democracy]]. He was a polarizing figure who helped shape the [[Second Party System]] of [[Politics of the United States|American politics]] in the 1820s and 1830s.
93660
93661 Nicknamed &quot;Old Hickory,&quot; Jackson was the first President primarily associated with the American [[frontier]] (although born in South Carolina, he spent most of his life in Tennessee). .
93662
93663 ==Early life and military career==
93664 Jackson was born in a backwoods settlement to [[Scots-Irish Americans|Scots-Irish]] immigrants in the [[Waxhaw, North Carolina|Waxhaw area]] in the [[Carolinas]], on [[March 15]], [[1767]]. He was the youngest son in his family. Both [[North Carolina]] and [[South Carolina]] have claimed him as a &quot;native son.&quot; Jackson himself always stated that he was born in South Carolina. He received a sporadic education. At age thirteen, he joined the [[Continental Army]] as a courier. He was captured and imprisoned by the [[Kingdom of Great Britain|British]] during the [[American Revolutionary War]]. Jackson was the last U.S. President to have been a veteran of the American Revolution, and the only President to have been a [[prisoner of war]]. The war took the lives of Jackson's entire immediate family.
93665
93666 [[Image:Andrew Jackson brave boy 1780.jpg|thumb|250px|Jackson refusing to clean a British officer's boots (1876 [[lithography]])]]
93667 During the Revolution, after the surrender to the British at Charleston, Jackson and his brother Robert were taken as prisoners, and nearly starved to death. When Jackson refused to clean the boots of a British officer, the irate redcoat slashed at Jackson, giving him scars on his left hand and head, as well as an intense hatred for the British. Both of them contracted small pox while imprisoned, and Robert died days after their release. In addition, two of Jackson's brothers and his mother--his entire remaining family--died from war-time hardships that Jackson also blamed upon the British. This [[anglophobia]] would help to inspire a distrust and dislike of Eastern &quot;aristocrats&quot;, whom Jackson felt were too inclined to favor and emulate their former colonial &quot;masters&quot;. Jackson admired [[Napoleon I of France|Napoleon Bonaparte]], for his willingness to contest British military supremacy.
93668
93669 Jackson came to [[Tennessee]] by 1787, having barely read law, but finding that enough to become a young lawyer on the frontier. Since he was not from a distinguished family, he had to make his career by his own merits; and soon he began to prosper in the rough-and-tumble world of frontier law. Most of the actions grew out of disputed land-claims, or from assaults and battery. His courtroom demeanor was of his time. In 1795, he fought a duel with an opposing counsel over a courtroom argument. He was elected as Tennessee's first [[U.S. House of Representatives|Congressman]], upon its statehood in the late 1790s, and quickly became a [[United States Senate|U.S. Senator]] in 1797, but quit within a year. In 1798, he was appointed Judge on the [[Tennessee Supreme Court]].
93670 [http://www.virtualology.com/virtualwarmuseum.com/hallofamericanwarsandconflicts/andrewjackson.net/]
93671
93672 ===Creek War and War of 1812===
93673 {{main articles|[[Creek War]] and [[Battle of New Orleans]]}}
93674 Jackson became a colonel in the Tennessee militia, which he had led since 1801, the beginning of his military career. In 1813, after a massacre of 400 men, women and children at [[Fort Mims Massacre|Fort Mims]] (in what is now Alabama) by Northern [[Creek people|Creek]] Band chieftain [[Peter McQueen]], Jackson commanded in the campaign against the Northern Creek Indians of Alabama and Georgia, also known as the &quot;[[Red Sticks]]&quot;. Creek leaders such as [[William Weatherford]] (Red Eagle), Peter McQueen, and [[Menawa]], who had been allies of the British during the War of 1812, violently clashed with other chiefs of the Creek Nation over white encroachment on Creek lands, and the &quot;civilizing&quot; programs administered by U.S. Indian Agent [[Benjamin Hawkins]]. In the [[Creek War]], a theatre of the [[War of 1812]], Jackson defeated the Red Stick Creeks at the [[Battle of Horseshoe Bend]], aided by allies from the Southern Creek Indian Band, who had requested Jackson's aid in putting down what they considered to be the &quot;rebellious&quot; Red Sticks, and some [[Cherokee]] Indians, who also sided with the Americans. Although 800 Northern Creek Band &quot;Red Sticks&quot; Indians were killed in the battle, Jackson spared Weatherford's life from any acts of vengeance. [[Sam Houston]] and [[David Crockett]], later to become famous themselves in Texas, served under Jackson at this time. Following the victory, Jackson imposed the [[Treaty of Fort Jackson]] upon both his Northern Creek enemy and Southern Creek allies, wresting 20 million acres (81,000 km&amp;sup2;) from all Creeks, for white settlement.
93675
93676 Jackson's service in the [[War of 1812]] was conspicuous for its bravery and success. He was a strict officer, but was popular with his troops, and was said to have been &quot;tough as old hickory&quot; wood on the battlefield, which gave him his nickname. The war, and particularly his command at the [[Battle of New Orleans]] on [[January 8]], [[1815]], made his national reputation; and he advanced in rank to Major General. In the battle, Jackson's 6,000 militiamen behind barricades of cotton bales opposed 12,000 British regulars marching across an open field, led by General [[Edward Pakenham]]. The battle was a total American victory. The British had over 2,000 casualties to Jackson's 13 killed and 58 wounded or missing.
93677 [http://odur.let.rug.nl/~usa/P/aj7/about/bio/jack07.htm]
93678
93679 [[Image:Bustofandrewjackson.jpg|right|thumb|200px|A bust of Andrew Jackson at the Plaza Ferdinand VII in [[Pensacola, Florida]], where Jackson was sworn in as territorial governor.]]
93680
93681 ===First Seminole War===
93682 {{main|Seminole Wars}}
93683 Jackson saw military service again in the [[Seminole Wars|First Seminole War]], when he was ordered by President [[James Monroe]] in December 1817 [http://www.gilderlehrman.org/collection/document.php?id=391] to lead a campaign in [[Georgia (U.S. state)|Georgia]] against the [[Seminole (tribe)|Seminole]] and [[Creek people|Creek]] Indians, and to prevent [[Spanish Florida]] from becoming a &quot;refuge for runaway slaves&quot;. It was later said that Jackson exceeded his orders in Florida actions, but Monroe and the public wanted Florida. Before going, Jackson wrote to Monroe, &quot;Let it be signified to me through any channel (say Mr. John Rhea [a mutual confidant]) that the possession of the Floridas would be desirable to the United States, and in sixty days it will be accomplished.&quot; Monroe gave Jackson orders that were purposely ambiguous, sufficient for international denials.
93684
93685 Jackson's Tennessee volunteers were attacked by Seminoles, but this left their villages vulnerable, and Jackson burned them and their crops. In his investigation, he found letters that indicated that the Spanish and British were &quot;secretly&quot; assisting the Indians. Jackson believed that the United States would not be &quot;secure&quot; as long as Spain and Great Britain encouraged American Indians to fight, and argued that his actions were undertaken in &quot;self-defense&quot;. Jackson captured Pensacola with little more than some warning shots, and deposed the Spanish governor. He captured, tried, and executed two British subjects who had been supplying and advising the Indians. Jackson's action also struck fear into the Seminole tribes, as word of his ruthlessness in battle spread.
93686
93687 This also created an international incident, and many in the [[James Monroe|Monroe]] administration called for Jackson to be censured. However, Jackson's actions were defended by his [[United States Secretary of State|Secretary of State]], [[John Quincy Adams]]. When the Spanish minister demanded a &quot;suitable punishment&quot; for Jackson, Adams wrote back &quot;Spain must immediately [decide] either to place a force in Florida adequate at once to the protection of her territory, ... or cede to the United States a province, of which she retains nothing but the nominal possession, but which is, in fact, ... a post of annoyance to them.&quot; Adams used Jackson's conquest, and Spain's own &quot;weaknesses&quot;, to convince the Spanish (in the [[Adams-Onís Treaty]]) to cede Florida to the United States. Jackson was subsequently appointed territorial governor there.
93688
93689 ==Election of 1824==
93690 {{main|U.S. presidential election, 1824}}
93691 During his first run for the Presidency in [[U.S._presidential_election,_1824|1824]], Jackson received a [[plurality]] of both the popular and [[electoral]] votes. Since no candidate received a majority, the election was thrown into the [[United States House of Representatives|House of Representatives]], which chose John Quincy Adams instead. Jackson denounced it as a &quot;[[corrupt bargain]]&quot; because [[Henry Clay]] threw his votes to Adams, who then made Clay Secretary of State. Jackson later called for abolishing the [[U.S. Electoral College|Electoral College]]. Jackson's defeat burnished his political credentials, however; since many voters believed the &quot;man of the people&quot; had been robbed by the &quot;corrupt aristocrats of the East&quot;.
93692
93693 Jackson had enemies. [[Albert Gallatin]], who for a while in 1824 was a vice presidential candidate, saw Jackson as &quot;an honest man and the idol of the worshippers of military glory, but from incapacity, military habits, and habitual disregard of laws and constitutional. provisions, altogether unfit for the office.&quot; [Adams 599]
93694
93695 Thomas Jefferson in retirement said of Jackson in 1824:
93696 &lt;blockquote&gt;
93697 &quot;I feel much alarmed at the prospect of seeing General Jackson President. He is one of the most unfit men I know of for such a place. He has had very little respect for laws or constitutions, and is, in fact, an able military chief. His passions are terrible. When I was President of the Senate he was a Senator; and he could never speak on account of the rashness of his feelings. I have seen him attempt it repeatedly, and as often choke with rage. His passions are no doubt cooler now; he has been much tried since I knew him, but he is a dangerous man.&quot; {{ref|Jefferson}}
93698 &lt;/blockquote&gt;
93699
93700 ==Election of 1828==
93701 {{main|United States presidential election, 1828}}
93702
93703 ==Presidency 1829-1837==
93704 ===Spoils system===
93705 Jackson is accused of introducing the &quot;[[spoils system]]&quot;, or &quot;patronage&quot;, to American politics. The term &quot;spoils system&quot; was attributed to Senator [[William L. Marcy]] of New York, who was quoted as saying, &quot;To the victor belong the spoils.&quot; Upon Jackson's election as President, a sizable number of federal officers found that they had suddenly been replaced by supporters and friends of Jackson. Jackson saw this system as promoting the growth of democracy, rewarding people who were involved in his party and thus encouraging others to get involved.
93706
93707 ===Opposition to the National Bank===
93708 {{main|Second Bank of the United States}}
93709 [[image:AJ~bank.JPG|thumb|400px|Democratic cartoon shows Jackson fighting the monster Bank]]
93710 As president, Jackson worked to take away the federal charter of the [[Second Bank of the United States]] (it would continue to exist as a state bank). The original [[First Bank of the United States|Bank of the United States]] had been introduced in 1791 by [[Alexander Hamilton]], as a way of organizing the federal government's finances. This first Bank's charter lapsed in 1811. It was followed by the second Bank, authorized during [[James Madison]]'s tenure in offce in 1816 for a 20 year period, to &quot;alleviate the economic problems caused by the War of 1812&quot;. Both Banks were instrumental in the growth of the U.S. economy; but Jackson opposed the concept on ideological grounds. In Jackson's opinion, the Bank needed to be abolished because:
93711 * it was unconstitutional
93712 * it concentrated an excessive amount of the nation's financial strength into one single institution
93713 * it exposed the government to control by &quot;foreign interests&quot;
93714 * it exercised too much control over members of the Congress
93715 * it favored Northeastern states over Southern and Western (now Mid-western) states
93716 * Jackson had a strong personal and political dislike for the Bank's president, [[Nicholas Biddle (banker)|Nicholas Biddle]]
93717
93718 Jackson followed Jefferson as a supporter of the ideal of an &quot;agricultural republic&quot;, and felt the Bank improved the fortunes of an &quot;elite circle&quot; of commercial and industrial entrepreneurs, at the expense of farmers and laborers. After a titanic struggle, Jackson succeeded in destroying the Bank, by vetoing its 1832 re-charter by Congress, and by withdrawing U.S. funds in 1833. The Bank's money-lending functions were taken over by the legions of local and state banks that sprang up feeding an expansion of credit and speculation; the commercial progress of the nation's economy was noticeably dented.
93719
93720 The [[United States Senate|U.S. Senate]] censured Jackson on March 27, 1834 for his actions in defunding the Bank of the United States; the censure was later expunged when the Jacksonians had a majority in the Senate.
93721
93722 ===Nullification crisis===
93723 {{main|Nullification crisis}}
93724 [[Image:andrew_jackson_20bill.jpg|thumb|left|Andrew Jackson is depicted on the U.S. $20 bill.]]
93725
93726 Another notable crisis during Jackson's period of office was the &quot;[[nullification crisis]]&quot;, or &quot;secession crisis&quot;, of 1828&amp;ndash;1832, which merged issues of sectional strife with disagreements over trade [[tariff]]s. Critics alleged that high tariffs (the &quot;[[Tariff of Abominations]]&quot;) on imports of common manufactured goods made European goods more expensive than ones from the northern US, and raised the prices paid by planters in the southern US. Southern politicians thus had an argument, to the effect that tariffs benefitted northern industrialists at the expense of southern farmers.
93727
93728 The issue came to a head when Vice President [[John C. Calhoun]], in the [[South Carolina Exposition and Protest]] of 1828, supported the claim of his home state, [[South Carolina]], that it had the right to &quot;nullify&quot;&amp;mdash;declare illegal&amp;mdash;the tariff legislation of 1828, and more generally the right of a state to nullify laws which went against its interests. Although Jackson sympathized with the South in the tariff debate, he was also a strong supporter of a strong union, with considerable powers for the central government. Jackson attempted to face Calhoun down over the issue, which developed into a bitter rivalry between the two men. Particularly famous was an incident at the April 13, 1829 Jefferson Day dinner, involving after-dinner toasts. Jackson rose first and voice booming, and glaring at Calhoun, yelled out &quot;Our federal Union: IT MUST BE PRESERVED!&quot;, a clear challenge to Calhoun. Calhoun glared at Jackson and yelled out, his voice trembling, but booming as well, &quot;The Union: NEXT TO OUR LIBERTY, MOST DEAR!&quot;, an astonishingly quick-witted riposte.
93729
93730 In response to South Carolina's threat, Congress passed a &quot;[[Force Bill]]&quot; in 1833, and Jackson vowed to send troops to South Carolina in order to enforce the laws. In December 1832, he issued a resounding proclamation against the &quot;nullifiers&quot;, stating: &quot;I consider...the power to annul a law of the United States, assumed by one State, incompatible with the existence of the Union, contradicted expressly by the letter of the [[Constitution of the United States|Constitution]], unauthorized by its spirit, inconsistent with every principle on which it was founded, and destructive of the great object for which it was formed.&quot; South Carolina, the president declared, stood on &quot;the brink of insurrection and treason,&quot; and he appealed to the people of the state to reassert their allegiance to that Union for which their ancestors had fought. Jackson also denied the right of secession: &quot;The Constitution...forms a ''government'' not a league...To say that any State may at pleasure secede from the Union is to say that the United States is not a nation.&quot;
93731
93732 The crisis was resolved in 1833 with a compromise settlement orchestrated by [[Whig Party (United States)|Whig]] politician [[Henry Clay]] and adopted by a South Carolina convention. The settlement substantially lowered the tariffs and hinted that the central government considered itself &quot;weak&quot; in dealing with determined opposition by an individual state. To enforce this view, the convention proudly but pointlessly declared the federal Force Bill nullified, even though the bill was only meaningful with respect to the tariff nullification. Thus, the South Carolina legislature both averted major conflict with the federal government, and reaffirmed Calhoun's beloved doctrine of nullification.
93733
93734 ===Indian Removal===
93735 [[Image:Andrew_Jackson_Statue_Nashville.jpg|thumb|right|200px|Statue of Andrew Jackson in [[Nashville, Tennessee]].]]
93736
93737 Today, perhaps the most controversial aspect of Andrew Jackson's presidency was his policy regarding [[American Indians in the United States|American Indians]]. Jackson was a leading advocate of a policy known as &quot;[[Indian Removal]]&quot;, signing the [[Indian Removal Act]] into law in 1830. Contrary to popular misconception, the Removal Act did not order the removal of any American Indians; what it did was authorize the President to negotiate treaties to purchase tribal lands in the east in exchange for lands further west, outside of existing U.S. state borders. According to biographer [[Robert V. Remini]], Jackson promoted this policy primarily for reasons of national security, seeing that Great Britain and Spain had recruited Native Americans within U.S. borders in previous wars with the United States.&lt;!--Remini (2001), p.113--&gt; According to historian Anthony Wallace, Jackson never publically advocated removing American Indians by force. Instead, Jackson made the negotiation of treaties a priority: nearly seventy Indian treaties&amp;mdash;many of them land sales&amp;mdash;were ratified during his presidency, more than in any other administration.
93738
93739 The Removal Act was especially popular in the [[American South|South]], where population growth and the discovery of gold on [[Cherokee]] land had increased pressure on tribal lands. The state of [[Georgia (U.S. state)|Georgia]] became involved in a contentious jurisdictional dispute with the Cherokees, culminating in the 1832 Supreme Court decision (''[[Worcester v. Georgia]]'') that ruled that Georgia could not impose its laws upon Cherokee tribal lands. About this case, Jackson is often quoted as having said, &quot;[[John Marshall]] has made his decision, now let him enforce it!&quot; Jackson probably never said this; the popular story that Jackson defied the Supreme Court in carrying out Indian Removal is untrue. In fact, Jackson had no clear legal right to intervene on behalf of the Cherokees in Georgia.
93740
93741 Instead, Jackson used the Georgia crisis to pressure Cherokee leaders to sign a removal treaty. A faction of Cherokees led by Jackson's old ally [[Major Ridge]] negotiated the [[Treaty of New Echota]] with Jackson's administration, a document of dubious legality which was rejected by most Cherokees. However, the terms of the treaty were strictly enforced by Jackson's successor, [[Martin Van Buren]], which resulted in the deaths of thousands of Cherokees along the &quot;[[Trail of Tears]]&quot;.
93742
93743 In all, more than 45,000 American Indians were relocated to the West during Jackson's administration. During this time, the administration purchased about 100 million acres of Indian land for about $68 million and 32 million acres of western land. Though the relocation process was generally popular with the American people at the time, it resulted in much suffering and death among American Indians. Jackson was criticized at the time for his role in these events, and the criticism has grown over the years. Robert Remini characterizes the Indian Removal era as &quot;one of the unhappiest chapters in American history&quot;. {{ref|remini}}
93744
93745 ===Assassination attempt===
93746 [[Image:JacksonAssassinationAttempt.jpg|thumb|right|200px||The etching of the assassination attempt.]]
93747 On January 30, 1835 an unsuccessful [[assassination]] attempt against Jackson occurred in the [[United States Capital]]. This was the first assassination attempt made against an American President. As Jackson left a funeral, a man named [[Richard Lawrence]] approached Jackson and fired a pistol at point-blank range. The would-be assasin was thwarted as his pistol misfired. He immediately drew another pistol, which also misfired, at which point Jackson attacked him with his cane, subduing him. Lawrence was later found to be mentally ill and commited to an insane asylum.
93748
93749 ===Major presidential acts===
93750 *[[Maysville Road Veto]]
93751 *Signed [[Indian Removal Act of 1830]]
93752 *Vetoed renewal of [[Second Bank of the United States]] (1832)
93753 *Signed [[Force Bill]] of 1833
93754 *Executive Order: [[Specie Circular]] (1836)
93755
93756 ===Administration and Cabinet===
93757 [[Image:Andrew jackson head.gif|thumbnail|right]]
93758 {| cellpadding=&quot;1&quot; cellspacing=&quot;4&quot; style=&quot;margin:3px; border:3px solid #000000;&quot; align=&quot;left&quot;
93759 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
93760 |-
93761 |align=&quot;left&quot;|'''OFFICE'''||align=&quot;left&quot;|'''NAME'''||align=&quot;left&quot;|'''TERM'''
93762 |-
93763 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
93764 |-
93765 |align=&quot;left&quot;|[[President of the United States|President]]||align=&quot;left&quot; |'''[[Andrew Jackson]]'''||align=&quot;left&quot;|1829&amp;ndash;1837
93766 |-
93767 |align=&quot;left&quot;|[[Vice President of the United States|Vice President]]||align=&quot;left&quot;|'''[[John C. Calhoun]]'''||align=&quot;left&quot;|1829&amp;ndash;1832
93768 |-
93769 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Martin Van Buren]]'''||align=&quot;left&quot;|1833&amp;ndash;1837
93770 |-
93771 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
93772 |-
93773 |align=&quot;left&quot;|[[United States Secretary of State|Secretary of State]]||align=&quot;left&quot;|'''[[Martin Van Buren]]'''||align=&quot;left&quot;|1829&amp;ndash;1831
93774 |-
93775 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Edward Livingston]]'''||align=&quot;left&quot;|1831&amp;ndash;1833
93776 |-
93777 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Louis McLane]]'''||align=&quot;left&quot;|1833&amp;ndash;1834
93778 |-
93779 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[John Forsyth]]'''||align=&quot;left&quot;|1834&amp;ndash;1837
93780 |-
93781 |align=&quot;left&quot;|[[United States Secretary of the Treasury|Secretary of the Treasury]]||align=&quot;left&quot;|'''[[Samuel Ingham]]'''||align=&quot;left&quot;|1829&amp;ndash;1831
93782 |-
93783 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Louis McLane]]'''||align=&quot;left&quot;|1831&amp;ndash;1833
93784 |-
93785 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[William Duane]]'''||align=&quot;left&quot;|1833
93786 |-
93787 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Roger B. Taney]]'''||align=&quot;left&quot;|1833&amp;ndash;1834
93788 |-
93789 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Levi Woodbury]]'''||align=&quot;left&quot;|1834&amp;ndash;1837
93790 |-
93791 |align=&quot;left&quot;|[[United States Secretary of War|Secretary of War]]||align=&quot;left&quot;|'''[[John H. Eaton]]'''||align=&quot;left&quot;|1829&amp;ndash;1831
93792 |-
93793 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Lewis Cass]]'''||align=&quot;left&quot;|1831&amp;ndash;1836
93794 |-
93795 |align=&quot;left&quot;|[[Attorney General of the United States|Attorney General]]||align=&quot;left&quot;|'''[[John M. Berrien]]'''||align=&quot;left&quot;|1829&amp;ndash;1831
93796 |-
93797 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Roger B. Taney]]'''||align=&quot;left&quot;|1831&amp;ndash;1833
93798 |-
93799 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Benjamin_Franklin_Butler_(lawyer)|Benjamin F. Butler]]'''||align=&quot;left&quot;|1833&amp;ndash;1837
93800 |-
93801 |align=&quot;left&quot;|[[Postmaster General of the United States|Postmaster General]]||align=&quot;left&quot;|'''[[William T. Barry]]'''||align=&quot;left&quot;|1829&amp;ndash;1835
93802 |-
93803 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Amos Kendall]]'''||align=&quot;left&quot;|1835&amp;ndash;1837
93804 |-
93805 |align=&quot;left&quot;|[[United States Secretary of the Navy|Secretary of the Navy]]||align=&quot;left&quot;|'''[[John Branch]]'''||align=&quot;left&quot;|1829&amp;ndash;1831
93806 |-
93807 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Levi Woodbury]]'''||align=&quot;left&quot;|1831&amp;ndash;1834
93808 |-
93809 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Mahlon Dickerson]]'''||align=&quot;left&quot;|1834&amp;ndash;1837
93810 |}
93811 &lt;br clear=&quot;all&quot;&gt;
93812
93813 ===Supreme Court appointments===
93814 *[[John McLean]] - 1830
93815 *[[Henry Baldwin (judge)]] - 1830
93816 *[[James Moore Wayne]] - 1835
93817 *[[Roger Brooke Taney]] - Chief Justice - 1836
93818 *[[Philip Pendleton Barbour]] - 1836
93819
93820 ===Supreme Court cases during his presidency===
93821 *''[[Cherokee Nation vs. Georgia]]'', 1831
93822 *''[[Worcester v. Georgia]]'', 1832
93823 *''[[Charles River Bridge v. Warren Bridge]]'', 1837
93824
93825
93826 ===States admitted to the Union===
93827 * [[Arkansas]] - 1836
93828 * [[Michigan]] - 1837
93829
93830 ==Family and personal life==
93831 [[Image:Andrew Jackson Portrait.jpg|left|thumb|200px|Portrait of Andrew Jackson]]
93832 Jackson's wife, [[Rachel Donelson Robards Jackson|Rachel]], died of a heart attack just 2 months prior to his taking office as President. She had supposedly divorced her first husband, Col. Lewis Robards; but there were &quot;questions&quot; about the legality of the divorce. Jackson deeply resented attacks on his wife's honor; he killed [[Charles Dickinson (historical figure)|Charles Dickinson]] in a duel over a horse-racing debt and an insult to his wife on [[May 30]], [[1806]]. Jackson was also injured during the duel, and the bullet was so close to his heart that it could never be safely removed. It caused him considerable pain for the rest of his life. Jackson blamed [[John Quincy Adams]] for Rachel's death, because of the marital scandal being brought up in the election of 1828. He felt that this had hastened her death, and never forgave Adams.
93833
93834 Jackson had two adopted sons, [[Andrew Jackson Jr.]], the son of Rachel's brother Severn Donelson, and Lyncoya, a [[Creek people|Creek]] Indian orphan adopted by Jackson after the [[Creek War]]. Lyncoya died in 1828 at age 16, probably from [[pneumonia]] or [[tuberculosis]].
93835
93836 The Jacksons also acted as guardians for eight other children. John Samuel Donelson, Daniel Donelson, and [[Andrew Jackson Donelson]] were the sons of Rachel's brother Samuel Donelson who died in 1804. Andrew Jackson Hutchings was Rachel's orphaned grand nephew. Caroline Butler, Eliza Butler, Edward Butler, and Anthony Butler were the orphaned children of Edward Butler, a family friend. They came to live with Andrew and Rachel after the death of their father.
93837
93838 The widower Jackson invited Rachel's niece [[Emily Donelson]] to act as his White House hostess and unofficial [[FLOTUS|First Lady]]. Emily was married to [[Andrew Jackson Donelson]], who acted as Jackson's [[private secretary]]. The relationship between the President and Emily became strained during the [[Petticoat Affair]], and the two became estranged for over a year. They eventually reconciled and she resumed her duties as White House hostess. [[Sarah Yorke Jackson]], the wife of Andrew Jackson Jr., became co-hostess of the White House in 1834. It was the only time in history when two women simultaneously acted as unofficial First Lady. Sarah took over all hostess duties after Emily died in 1836.
93839
93840 Jackson remained influential in both national and state politics after retiring to &quot;[[The Hermitage]]&quot;, his [[Nashville, Tennessee|Nashville]] home, in 1837. Though a slave-holder, Jackson was a firm advocate of the federal union of the states, and declined to give any support to talk of [[secession]].
93841
93842 Jackson was a lean figure standing at 6 feet, 1 inch (1.85 m) tall, and weighing between 130 and 140 pounds (64 kg) on average. Jackson also had an unruly shock of red hair, which had completely grayed by the time he became president at age 61, in 1829. He had a pair of penetrating deep blue eyes. Jackson was one of the more sickly presidents, suffering from chronic headaches, abdominal pains, and a hacking cough that often brought up blood and sometimes even made his whole body shake. After retiring to Nashville he enjoyed eight more years of retirement and died at the Hermitage on June 8, 1845 at the age of 78, of chronic tuberculosis, &quot;[[dropsy]]&quot; and heart failure. His last words were: &quot;Oh, do not cry. Be good children, and we shall all meet in Heaven.&quot;
93843
93844 In his will, Jackson left his entire estate to his adopted son, Andrew Jackson Jr., except for specifically enumerated items that were left to various other friends and family members. Jackson left several [[slaves]] to his daughter-in-law, and grandchildren. Jackson left a sword to his grandson, with the injunction, ''&quot;that he will always use it in defence of our glorious Union.&quot;''
93845
93846 ==Memorials and movies==
93847 [[Image:StLouisCathedralJacksonStatue.jpg|thumb|right|[[Jackson Square]] in [[New Orleans, Louisiana|New Orleans]].]]
93848 * Memorials to Jackson include a set of three identical equestrian statues located in different parts of the country. One is in [[Jackson Square]] in [[New Orleans, Louisiana]]. Another is in [[Nashville, Tennessee|Nashville]] on the grounds of the [[Tennessee State Capitol]]. The other is in [[Washington, D.C.]] near the [[White House]].
93849 * Numerous counties and cities are named after him, including [[Jacksonville, Florida]], [[Jackson, Michigan]], [[Jackson, Mississippi]], [[Jackson County, Florida]], and [[Jackson County, Missouri]].
93850 * [[United States dollar]] &amp;mdash; Jackson's portrait appears on the [[American twenty dollar bill|$20 bill]]. He has appeared on $5, $10, $50, and $10,000 bills in the past, as well as a Confederate $1,000.
93851 * [[Black Jack (stamp)|Blackjack]] United States postage stamp
93852 * The story of Andrew and Rachel Jackson's life together was told in [[Irving Stone]]'s best-selling 1951 novel ''The President's Lady'', which was made into the 1953 film of the same title, starring [[Susan Hayward]], [[Charlton Heston]], [[John McIntire]], and [[Carl Betz]] and directed by [[Henry Levin]]. The relationship between the two was also the basis of a successful documentary by the [[Public Broadcasting Service]], called ''Rachel and Andrew Jackson: A Love Story.''
93853
93854 * Heston played Jackson in the 1958 version of ''[[The Buccaneer]]'', a film about the role of pirate [[Jean Lafitte]] in the [[Battle of New Orleans]]. [[Hugh Sothern]] played Jackson in the original 1938 version of the film.
93855
93856 ==Trivia==
93857 * During Jackson's Administration, the U.S Government was, for the first and ([[as of 2006]]) only time, debt free.
93858 * During the 1828 election, his opponents referred to him as a &quot;Jackass&quot;. Jackson liked the name and used the Jackass as a symbol for a while, but it died out. [http://www.c-span.org/questions/week174.htm]
93859
93860 ==See also==
93861 * [[U.S. presidential election, 1824]]
93862 * [[U.S. presidential election, 1828]]
93863 * [[U.S. presidential election, 1832]]
93864 * [[List of places named for Andrew Jackson]]
93865 * [[The Hermitage]], Andrew Jackson's home, now a tourist destination
93866 * [[List of people on stamps of Ireland]]
93867
93868 ==Notes==
93869 # {{note|Jefferson}} Paul Leicester Ford, ''The Writings of Thomas Jefferson'' 10 vols. (New York, 1892-99), 10: 331.
93870 # {{note|remini}} [[Robert V. Remini]], ''Andrew Jackson and his Indian Wars''. (2001)
93871
93872 ==References==
93873 ===Primary sources===
93874 * Bassett John Spencer, ed. ''Correspondence of Andrew Jackson'' Vols. 1-6. (1926).
93875 * Smith Sam B., and Harriet Chappell Owsley, eds. ''Papers of Andrew Jackson'' . Knoxville: University of Tennessee Press, Vol. 1, 1980.
93876 * Moser Harold D., Sharon MacPherson, and Charles F. Bryan Jr., eds. ''The Papers of Andrew Jackson''. Vols. 2-4. Knoxville: University of Tennessee Press, 1988.
93877 * [http://www.yale.edu/lawweb/avalon/presiden/jackpap.htm online speeches and presidential messages]
93878
93879 ===Secondary sources===
93880 *Brustein, Andrew. ''The Passions of Andrew Jackson''. New York: Knopf, (2003).
93881 *Bugg Jr. James L. ed. ''Jacksonian Democracy: Myth or Reality?'' (1952), excerpts from scholars
93882 * Gammon, Samuel Rhea. ''The Presidential Campaign of 1832'' (1922)]
93883 * Hammond, Bray. ''Andrew Jackson's Battle with the &quot;Money Power&quot;'' (1958) ch 8, an excerpt from his Pulitzer-prize-winning ''Banks and Politics in America: From the Revolution to the Civil War'' (1954).
93884 *Hofstatder, Richard. ''The American Political Tradition'' (1948), chapter on Jackson.
93885 *James, Marquis. ''The Life of Andrew Jackson'' New York: Bobbs-Merrill, 1938. Combines two books: ''The Border Captain'' and ''Andrew Jackson: Portrait of a President''; winner of the [[Pulitzer Prize for Biography or Autobiography|Pulitzer Prize for Biography]].
93886 * Latner Richard B. ''The Presidency of Andrew Jackson: White House Politics, 1820-1837'' (1979), standard survey.
93887 *Ratner, Lorman A. ''Andrew Jackson and His Tennessee Lieutenants: A Study in Political Culture'' (1997)
93888 *[[Robert V. Remini]], ''The Life of Andrew Jackson''. Abridgment of Remini's 3-volume biography, (1998)
93889 ** ''Andrew Jackson and the Course of American Empire, 1767-1821'' (1977); ''Andrew Jackson and the Course of American Freedom, 1822-1832'' (1981); ''Andrew Jackson and the Course of American Democracy, 1833-1845'' (1984)
93890 * Remini Robert. ''The Legacy of Andrew Jackson: Essays on Democracy, Indian Removal, and Slavery'' (1988)
93891 *Rowland, Dunbar. ''Andrew Jackson's Campaign against the British, or, the Mississippi Territory in the War of 1812, concerning the Military Operations of the Americans, Creek Indians, British, and Spanish, 1813-1815'' (1926)
93892 *[[Arthur M. Schlesinger, Jr.|Schlesinger, Arthur M. Jr]]. ''The Age of Jackson''. (1945). Winner of the [[Pulitzer Prize for History]].
93893 *Taylor, George Rogers, ed. ''Jackson Versus Biddle: The Struggle over the Second Bank of the United States'' (1949), excerpts from primary and secondary sources
93894 *Syrett, Harold C. ''Andrew Jackson: His Contribution to the American Tradition'' (1953)
93895 *Temin, Peter. ''The Jacksonian Economy'' (1969)
93896 *Wallace, Anthony F.C. ''The Long, Bitter Trail: Andrew Jackson and the Indians'' (1993)
93897 *Ward, John William. ''Andrew Jackson, Symbol for an Age'' (1962)
93898 * Wilentz, Sean. ''The Rise of American Democracy: Jefferson to Lincoln'' (2005)
93899
93900 ==External links==
93901 {{commons|Andrew Jackson}}
93902 {{wikiquote}}
93903 {{wikisource author}}
93904 * [http://www.expage.com/andrewjackson12 All About Andrew Jackson]
93905 * {{gutenberg author| id=Andrew+Jackson | name=Andrew Jackson}}
93906 * {{CongBio|J000005}}
93907 * [http://tigger.uic.edu/~rjensen/pol-gl.htm#F. American Political History Online]
93908 * [http://www.whitehouse.gov/history/presidents/aj7.html White House Biography]
93909 * [http://www.isidore-of-seville.com/jackson/ Andrew Jackson on the Web (resource directory)]
93910 * [http://www.synaptic.bc.ca/ejournal/jackson.htm Critical Resources: Andrew Jackson and Indian Removal]
93911 * [http://www.bargeron.com/genealogy/gsb/f3802.html A genealogical profile of the President]
93912 * [http://www.doctorzebra.com/prez/g07.htm Jackson's medical history]
93913 * [http://www.wnpt.net/rachel/rachel_andrew/together.html PBS documentary on Rachel &amp; Andrew's life together]
93914 * [http://www.floridamemory.com/Collections/CallBrevardPapers/ Andrew Jackson letters to Richard K. Call]
93915 ===Inaugural addresses===
93916 * [http://www.yale.edu/lawweb/avalon/presiden/inaug/jackson1.htm First Inaugural Address]
93917 * [http://www.yale.edu/lawweb/avalon/presiden/inaug/jackson2.htm Second Inaugural Address]
93918 ===[[State of the Union address]]es===
93919 * [http://www.usa-presidents.info/union/jackson-1.html First State of the Union of Andrew Jackson]
93920 * [http://www.usa-presidents.info/union/jackson-2.html Second State of the Union of Andrew Jackson]
93921 * [http://www.usa-presidents.info/union/jackson-3.html Third State of the Union of Andrew Jackson]
93922 * [http://www.usa-presidents.info/union/jackson-4.html Fourth State of the Union of Andrew Jackson]
93923 * [http://www.usa-presidents.info/union/jackson-5.html Fifth State of the Union of Andrew Jackson]
93924 * [http://www.usa-presidents.info/union/jackson-6.html Sixth State of the Union of Andrew Jackson]
93925 * [http://www.usa-presidents.info/union/jackson-7.html Seventh State of the Union of Andrew Jackson]
93926 * [http://www.usa-presidents.info/union/jackson-8.html Final State of the Union of Andrew Jackson]
93927
93928 {{start box}}
93929 {{succession box
93930 | title=[[United States House of Representatives, Tennessee At Large|Member of the U.S. House of Representatives from Tennessee At Large]]
93931 | before=''(none)''
93932 | after=[[William C. C. Claiborne]]
93933 | years=1796 &amp;ndash; 1797}}
93934 {{U.S. Senator box
93935 | state=Tennessee
93936 | class=1
93937 | before=[[William Cocke]]
93938 | after=[[Daniel Smith]]
93939 | alongside=[[Joseph Anderson]]
93940 | years=1797 &amp;ndash; 1798}}
93941 {{succession box
93942 | title=Military [[Governor of Florida]]
93943 | before=''(none)''
93944 | after=[[William P. Duval]]&lt;br&gt;'''(Territorial Governor)
93945 | years=1821}}
93946 {{U.S. Senator box
93947 | state=Tennessee
93948 | class=2
93949 | before=[[John Williams (Tennessee)|John Williams]]
93950 | after=[[Hugh Lawson White]]
93951 | alongside=[[John H. Eaton]]
93952 | years=1823 &amp;ndash; 1825}}
93953 {{succession box
93954 | title=[[Democratic-Republican Party (United States)|Republican Party presidential nominee]]
93955 | before=[[James Monroe]]
93956 | after=''(none)''
93957 | years=[[U.S. presidential election, 1824|1824]] (lost)&lt;sup&gt;(a)&lt;/sup&gt;}}
93958 {{succession box
93959 | title=[[List of United States Democratic Party presidential tickets|Democratic Party presidential nominee]]
93960 | before=''(none)''
93961 | after=[[Martin Van Buren]]
93962 | years=[[U.S. presidential election, 1828|1828]] (won), [[U.S. presidential election, 1832|1832]] (won)}}
93963 {{succession box
93964 | title=[[President of the United States|President of the United States]]
93965 | before=[[John Quincy Adams]]
93966 | after=[[Martin Van Buren]]
93967 | years=[[March 4]] [[1829]] &amp;ndash; [[March 3]] [[1837]]&lt;!-- Prior to the passage of the 20th Amendment, presidential terms ended at 11:59:59 on March 3. --&gt;}}
93968 {{succession footnote
93969 | marker=&lt;sup&gt;(a)&lt;/sup&gt;
93970 | footnote=The [[Democratic-Republican Party (United States)|Republican Party]] split in 1824, fielding four separate candidates: '''Andrew Jackson''', [[John Quincy Adams]], [[Henry Clay]], and [[William Harris Crawford]].}}
93971 {{end box}}
93972 {{USPresidents}}
93973 {{USDemPresNominees}}
93974 {{FLGovernors}}
93975
93976 [[Category:1767 births|Jackson, Andrew]]
93977 [[Category:1845 deaths|Jackson, Andrew]]
93978 [[Category:Democratic Party (United States) presidential nominees|Jackson, Andrew]]
93979 [[Category:Governors of Florida|Jackson, Andrew]]
93980 [[Category:People from North Carolina|Jackson, Andrew]]
93981 [[Category:Presbyterians]]
93982 [[Category:Presidents of the United States|Jackson, Andrew]]
93983 [[Category:Scots-Irish Americans|Jackson, Andrew]]
93984 [[Category:Members of the United States House of Representatives from Tennessee|Jackson, Andrew]]
93985 [[Category:United States Army generals|Jackson, Andrew]]
93986 [[Category:United States Senators from Tennessee|Jackson, Andrew]]
93987
93988 [[ar:ØŖŲ†Ø¯ØąŲˆ ØŦاŲƒØŗŲˆŲ†]]
93989 [[bg:АĐŊĐ´Ņ€ŅŽ ДĐļĐ°ĐēŅŅŠĐŊ]]
93990 [[da:Andrew Jackson]]
93991 [[de:Andrew Jackson]]
93992 [[es:Andrew Jackson]]
93993 [[eo:Andrew JACKSON]]
93994 [[fr:Andrew Jackson]]
93995 [[ga:Andrew Jackson]]
93996 [[gl:Andrew Jackson]]
93997 [[ko:ė•¤ë“œëŖ¨ ėž­ėŠ¨]]
93998 [[id:Andrew Jackson]]
93999 [[it:Andrew Jackson]]
94000 [[he:אנדרו ג'קסון]]
94001 [[mr:ā¤…ā¤ā¤ĄāĨā¤°āĨ ā¤œāĨ…ā¤•āĨā¤¸ā¤¨]]
94002 [[nl:Andrew Jackson]]
94003 [[ja:ã‚ĸãƒŗドãƒĒãƒĨãƒŧãƒģジãƒŖクã‚Ŋãƒŗ]]
94004 [[no:Andrew Jackson]]
94005 [[nn:Andrew Jackson]]
94006 [[pl:Andrew Jackson]]
94007 [[pt:Andrew Jackson]]
94008 [[sq:Andrew Jackson]]
94009 [[simple:Andrew Jackson]]
94010 [[fi:Andrew Jackson]]
94011 [[sv:Andrew Jackson]]
94012 [[tr:Andrew Jackson]]
94013 [[zh:åŽ‰åžˇé˛Âˇæ°å…‹é€Š]]</text>
94014 </revision>
94015 </page>
94016 <page>
94017 <title>Andrew Johnson</title>
94018 <id>1624</id>
94019 <revision>
94020 <id>41558412</id>
94021 <timestamp>2006-02-28T03:33:52Z</timestamp>
94022 <contributor>
94023 <username>Rjensen</username>
94024 <id>313197</id>
94025 </contributor>
94026 <comment>rv</comment>
94027 <text xml:space="preserve">{{Infobox_President | name=Andrew Johnson
94028 | nationality=american
94029 | image=President Andrew Johnson standing.jpg
94030 | order=17&lt;sup&gt;th&lt;/sup&gt; President
94031 | vicepresident=none
94032 | term_start=[[April 15]] [[1865]]
94033 | term_end=[[March 3]] [[1869]]&lt;!-- Prior to the passage of the 20th Amendment, presidential terms ended at 11:59:59 on [[March 3]]. --&gt;
94034 | predecessor=[[Abraham Lincoln]]
94035 | successor=[[Ulysses S. Grant]]
94036 | birth_date=[[December 29]] [[1808]]
94037 | birth_place=[[Raleigh, North Carolina]]
94038 | death_date=[[July 31]] [[1875]]
94039 | death_place=[[Greeneville, Tennessee]]
94040 | spouse=[[Eliza McCardle Johnson]]
94041 | party=[[United States Democratic Party|Democratic]] (elected on National Union ticket)
94042 }}
94043 {{Otherpeople|Andrew Johnson}}
94044 '''Andrew Johnson''' ([[December 29]] [[1808]] – [[July 31]] [[1875]]) was the sixteenth [[Vice President of the United States|Vice President]] (1865) and the seventeenth [[President of the United States]] (1865–1869), succeeding to the presidency upon the assassination of [[Abraham Lincoln]].
94045
94046 Johnson presided over the [[Reconstruction]] of the United States following the [[American Civil War]], and his conciliatory policies towards the defeated rebels and his vetoes of [[civil rights]] bills embroiled him in a bitter dispute with the Congressional Republicans, leading the [[United States House of Representatives|House of Representatives]] to [[impeachment|impeach]] him in 1868; he was the first President to be impeached. He was subsequently acquitted by a single vote in the [[United States Senate|Senate]].
94047
94048 ==Early life==
94049 Johnson was born on [[December 29]], [[1808]], in [[Raleigh, North Carolina]], to Jacob Johnson and Mary McDonough. When Johnson was four his father died. At the age of 10 he was apprenticed to a tailor, but ran away to [[Greeneville, Tennessee]] in 1826, where he continued his employment as a tailor. He never attended any type of school; his wife, [[Eliza McCardle Johnson]], has historically been credited with teaching him to read and write.
94050
94051 ==Early political career==
94052 Johnson served as an [[alderman]] in [[Greeneville, Tennessee|Greeneville]] from 1828 to 1830 and mayor of Greeneville from 1830 to 1833. He was a member of the [[Tennessee House of Representatives|State House of Representatives]] from 1835 to 1837 and from 1839 to 1841. He was elected to the [[Tennessee Senate|State Senate]] in 1841, and elected as a [[United States Democratic Party|Democrat]] to the Twenty-eighth and to the four succeeding Congresses ([[March 4]] [[1843]] to [[March 3]] [[1853]]). He was chairman of the [[U.S. House Committee on Public Expenditures]] (Thirty-first and Thirty-second Congresses).
94053
94054 ==Political ascension==
94055 Johnson did not seek renomination, having become a candidate for the governorship of [[Tennessee]]. He was Governor of Tennessee from 1853 to 1857, and was elected as a Democrat to the United States Senate and served from [[October 8]] [[1857]] to [[March 4]] [[1862]], when he resigned. He was chairman of the [[Committee to Audit and Control the Contingent Expense]] (Thirty-sixth Congress). At the time of [[secession]] of [[Confederate States of America|the Confederacy]], Johnson was the only Senator from the seceded states to continue participation in Congress. Johnson was then appointed by President [[Abraham Lincoln]] as Military Governor of Tennessee in 1862.
94056
94057 ==Presidency 1865-1869==
94058 ===Assumption===
94059 As a leading War Democrat and pro-Union southerner, Johnson was attractive to the Republicans in 1864 as they tried to enlarge their base to include War Democrats. He was elected [[Vice President of the United States]] on the National Union ticket headed by Republican Abraham Lincoln in 1864 and was inaugurated [[March 4]] [[1865]]. A rather embarrassing incident occurred on this day: Johnson had been suffering from typhoid fever and drank whiskey before the ceremony. He gave a rambling, incoherent speech and had to be led away. Lincoln forgave him for this transgression. He became President of the United States on [[April 15]] [[1865]], upon the death of Lincoln. He was the first Vice President to succeed to the U.S. Presidency upon the assassination of a President and the third to succeed upon the death of a President.
94060
94061 Johnson had an ambiguous party status. The National Union party vanished after the 1864 election but he did not identify with either party while president--though he did try for the Democratic nomination in 1868. Asked why he did not become a Democrat in July 1868 he said &quot;It is true I am asked why don't I join the Democratic party. Why don't they join me?&quot; [Trefouse p 339]
94062
94063 ===Policies===
94064 The Johnson Administration negotiated the [[Alaska purchase|purchase of Alaska]] from Russia on [[April 9]] [[1867]] for $7,200,000.
94065
94066 ===Impeachment===
94067 Congress and Johnson argued in an increasingly public way about [[Reconstruction]]: the manner in which the Southern secessionist states would be readmitted to the Union. Johnson favored a very quick restoration of all rights and privileges of other states. However, &quot;Congressional Reconstruction&quot;, enforced by repeated acts passed over Johnson's [[veto]], provided for provisional state governments run by the military and ensuring the local passage of [[civil rights]] laws and otherwise imposing the will of the United States Congress &amp;mdash; which was run by the North. Johnson's public criticisms of Congress provoked much talk of impeachment over the months.
94068
94069 [[Image:3a05488v.jpg|250px|thumb|''Harper's Weekly'' illustration of Johnson's impeachment trial in the [[United States Senate]].]]
94070 On [[February 21]], [[1868]], Johnson notified Congress that he had removed [[Edwin Stanton]] as Secretary of War, and was replacing him in the interim with Adjutant-General [[Lorenzo Thomas]]. This violated the [[Tenure of Office Act]], a law enacted by Congress on [[March 2]], [[1867]], over Johnson's veto, specifically designed to protect Stanton. Johnson had vetoed the Act, claiming it was unconstitutional. The Act said, &quot;...every person holding any civil office, to which he has been appointed by and with the advice and consent of the Senate ... shall be entitled to hold such office until a successor shall have been in like manner appointed and duly qualified,&quot; thus removing the President's previous unlimited power to remove any of his Cabinet members at will. Years later in the case ''[[Myers v. United States]]'' in 1926, the [[Supreme Court of the United States|Supreme Court]] ruled that such laws were indeed unconstitutional.
94071
94072 The Senate and House entered into hot debate. Thomas attempted to move into the War office, for which Stanton had Thomas arrested. Three days after Stanton's removal, the House passed a resolution to impeach Johnson for &quot;high crimes and misdemeanors&quot;, specifically, for intentionally violating the Tenure of Office Act and thus violating the law of the land, which he had sworn an oath to enforce.
94073
94074 [[Image:AJohnsonimpeach.jpg|thumb|left||The 1868 Impeachment Resolution]]
94075 On [[March 5]], [[1868]] a court of impeachment was constituted in the Senate to hear charges against the President. [[William M. Evarts]] served as his counsel. Eleven articles were set out in the resolution and the trial before the Senate lasted almost three months. Johnson's defense was based on a clause in the Tenure of Office Act stating that the then-current Secretaries would hold their posts throughout the term of the President who appointed them. Since Lincoln had appointed Stanton, it was claimed, the applicability of the Act had already run its course.
94076
94077 There were three votes in the Senate: one on [[May 16]], [[1868]] for the 11th article of impeachment, which included many of the charges contained in the other articles, and two on [[May 26]] for the second and third articles, after which the trial adjourned ''[[sine die]]''. On all three occasions, thirty-five Senators voted &quot;Guilty&quot; and nineteen &quot;Not Guilty&quot;. As the [[United States Constitution]] requires a two-thirds majority for conviction in impeachment trials, Johnson was acquitted.
94078
94079 A single changed vote would have sufficed to return a &quot;Guilty&quot; verdict. The decisive vote had been that of a young [[Radical Republican]] named [[Edmund G. Ross]]. Despite monumental pressure from fellow Radicals prior to the first vote, and dire warnings that a vote for acquittal would end his political career, Ross stood up at the appropriate moment and quietly announced &quot;not guilty,&quot; effectively ending the impeachment trial.
94080
94081 Johnson was the first President to be impeached, and the only one until [[Impeachment of Bill Clinton|Bill Clinton]] on [[December 19]], [[1998]]. Both presidents were acquitted.
94082
94083 ===Administration and Cabinet===
94084 {| cellpadding=&quot;1&quot; cellspacing=&quot;4&quot; style=&quot;margin:3px; border:3px solid #000000;&quot; align=&quot;left&quot;
94085 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
94086 |-
94087 |align=&quot;left&quot;|'''OFFICE'''||align=&quot;left&quot;|'''NAME'''||align=&quot;left&quot;|'''TERM'''
94088 |-
94089 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
94090 |-
94091 |align=&quot;left&quot;|[[President of the United States|President]]||align=&quot;left&quot; |'''Andrew Johnson'''||align=&quot;left&quot;|1865–1869
94092 |-
94093 |align=&quot;left&quot;|[[Vice President of the United States|Vice President]]||align=&quot;left&quot;|''None''||align=&quot;left&quot;|&amp;nbsp;
94094 |-
94095 !bgcolor=&quot;#000000&quot; colspan=&quot;3&quot;|
94096 |-
94097 |align=&quot;left&quot;|[[United States Secretary of State|Secretary of State]]||align=&quot;left&quot;|'''[[William H. Seward]]'''||align=&quot;left&quot;|1865–1869
94098 |-
94099 |align=&quot;left&quot;|[[United States Secretary of the Treasury|Secretary of the Treasury]]||align=&quot;left&quot;|'''[[Hugh McCulloch]]'''||align=&quot;left&quot;|1865–1869
94100 |-
94101 |align=&quot;left&quot;|[[United States Secretary of War|Secretary of War]]||align=&quot;left&quot;|'''[[Edwin M. Stanton]]'''||align=&quot;left&quot;|1865–1868
94102 |-
94103 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[John M. Schofield]]'''||align=&quot;left&quot;|1868–1869
94104 |-
94105 |align=&quot;left&quot;|[[Attorney General of the United States|Attorney General]]||align=&quot;left&quot;|'''[[James Speed]]'''||align=&quot;left&quot;|1865–1866
94106 |-
94107 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Henry Stanberry]]'''||align=&quot;left&quot;|1866–1868
94108 |-
94109 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[William M. Evarts]]'''||align=&quot;left&quot;|1868–1869
94110 |-
94111 |align=&quot;left&quot;|[[Postmaster General of the United States|Postmaster General]]||align=&quot;left&quot;|'''[[William Dennison]]'''||align=&quot;left&quot;|1865–1866
94112 |-
94113 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Alexander Randall]]'''||align=&quot;left&quot;|1866–1869
94114 |-
94115 |align=&quot;left&quot;|[[United States Secretary of the Navy|Secretary of the Navy]]||align=&quot;left&quot;|'''[[Gideon Welles]]'''||align=&quot;left&quot;|1865–1869
94116 |-
94117 |align=&quot;left&quot;|[[United States Secretary of the Interior|Secretary of the Interior]]||align=&quot;left&quot;|'''[[John P. Usher]]'''||align=&quot;left&quot;|1865
94118 |-
94119 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[James Harlan (senator)|James Harlan]]'''||align=&quot;left&quot;|1865–1866
94120 |-
94121 |align=&quot;left&quot;|&amp;nbsp;||align=&quot;left&quot;|'''[[Orville H. Browning]]'''||align=&quot;left&quot;|1866–1869
94122 |}
94123 &lt;br clear=&quot;all&quot;&gt;
94124
94125 ===States admitted to the Union===
94126 * [[Nebraska]]: 1867
94127
94128 ==Post-Presidency==
94129 [[Image:Pres_andrew_johnson.jpg|thumb|right|230px|President Andrew Johnson]]
94130 Johnson was an unsuccessful candidate for election to the United States Senate in 1868 and to the House of Representatives in 1872. He eventually succeeded and was elected as a Democrat to the Senate and served from [[March 4]], [[1875]], until his death near [[Elizabethton, Tennessee]], on [[July 31]], [[1875]]. He is the only President to serve in the Senate after his presidency. Interment was in the Andrew Johnson National Cemetery, [[Greeneville, Tennessee]].
94131
94132 ==See also==
94133 * [[U.S. presidential election, 1864]]
94134 * [[History of the United States (1865-1918)]]
94135
94136 ==References==
94137 * Howard K. Beale, ''The Critical Year. A Study of Andrew Johnson and Reconstruction'' (1930).
94138 * Michael Les Benedict, ''The Impeachment and Trial of Andrew Johnson'' (1999).
94139 * Albert E. Castel, ''The Presidency of Andrew Johnson '' (1979).
94140 * D. M. DeWitt, ''The Impeachment and Trial of Andrew Johnson'' (1903).
94141 * Eric L. McKitrick, ''Andrew Johnson and Reconstruction'' (1961).
94142 * L. P. Stryker, ''Andrew Johnson: A Study in Courage'' (1929).
94143 * Hans L. Trefousse, ''Andrew Johnson: A Biography'' (1989).
94144
94145 ===Primary sources===
94146 * Newspaper clippings, 1865–1869: http://www.impeach-andrewjohnson.com/
94147 * Series of [[Harper's Weekly]] articles covering the impeachment controversy and trial: [http://www.andrewjohnson.com/09ImpeachmentAndAcquittal/ImpeachmentAndAcquittal.htm]
94148 * Johnson's [[obituary]], from the [[New York Times]]: http://starship.python.net/crew/manus/Presidents/aj2/aj2obit.html
94149
94150 ==External links==
94151 {{wikiquote}}
94152 {{Wikisource author}}
94153 * {{gutenberg author| id=Andrew+Johnson | name=Andrew Johnson}}
94154 * [http://jbw1291-essays.wikispaces.org/The+Andrew+Johnson+Administration The Andrew Johnson Administration]
94155 * [http://www.law.umkc.edu/faculty/projects/ftrials/impeach/articles.html Articles of Impeachment]
94156 * [http://www.whitehouse.gov/history/presidents/aj17.html White House Biography]
94157 * [http://www.mlwh.org/inside.asp?ID=91&amp;subjectID=2 Mr. Lincoln's White House: Andrew Johnson]
94158 * [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;GRid=548 Andrew Johnson on Find-A-Grave]
94159 &lt;br clear=both&gt;
94160 {{start box}}
94161 {{succession box
94162 | title=[[United States House of Representatives, Tennessee District 1|U.S. Congressman for the 1st District of Tennessee]]
94163 | before=[[Thomas Dickens Arnold]]
94164 | after=[[Brookins Campbell]]
94165 | years=1843–1853}}
94166 {{succession box
94167 | title=[[Governor of Tennessee]]
94168 | before=[[William B. Campbell]]
94169 | after=[[Isham G. Harris]]
94170 | years=1853–1857}}
94171 {{U.S. Senator box
94172 | state=Tennessee
94173 | class=1
94174 | before=[[James C. Jones]]
94175 | after=[[David T. Patterson]] &lt;sup&gt;(a)&lt;/sup&gt;
94176 | alongside= [[John Bell]], [[Alfred O. P. Nicholson]]
94177 | years=[[October 8]] [[1857]] – [[March 4]] [[1862]]}}
94178 {{succession box
94179 | title=[[Governor of Tennessee]]
94180 | before=[[Isham G. Harris]]
94181 | after=[[E. H. East]]
94182 | years=1862 – 1865}}
94183 {{succession box
94184 | title=[[List of United States Republican Party presidential tickets|Republican Party&lt;sup&gt;(b)&lt;/sup&gt; vice presidential candidate]]
94185 | before=[[Hannibal Hamlin]]
94186 | after=[[Schuyler Colfax]]
94187 | years=[[U.S. presidential election, 1864|1864]] (won)}}
94188 {{succession box
94189 | title=[[Vice President of the United States]]
94190 | before=[[Hannibal Hamlin]]
94191 | after=[[Schuyler Colfax]] &lt;sup&gt;(c)&lt;/sup&gt;
94192 | years=[[March 4]] [[1865]] – [[April 15]] [[1865]]}}
94193 {{succession box
94194 | title=[[President of the United States]]
94195 | before=[[Abraham Lincoln]]
94196 | after=[[Ulysses S. Grant]]
94197 | years=[[April 15]] [[1865]] – [[March 3]] [[1869]]&lt;!-- Prior to the passage of the 20th Amendment, presidential terms ended at 11:59:59 on [[March 3]]. --&gt;}}
94198 {{U.S. Senator box
94199 | state= Tennessee
94200 | class=1
94201 | before=[[William Gannaway Brownlow]]
94202 | after=[[David McKendree Key]]
94203 | alongside=[[Henry Cooper]]
94204 | years=[[March 4]] [[1875]] – [[July 31]] [[1875]]}}
94205 {{succession footnote
94206 | marker=&lt;sup&gt;(a)&lt;/sup&gt;
94207 | footnote=Due to [[Tennessee]]'s secession, the Senate seat was vacant for four years before Patterson succeeded Johnson.}}
94208 [[March 4]] [[1869]].}}
94209 {{succession footnote
94210 | marker=&lt;sup&gt;(b)&lt;/sup&gt;
94211 | footnote=Lincoln and Johnson ran on the National Union ticket in 1864.}}
94212 {{succession footnote
94213 | marker=&lt;sup&gt;(c)&lt;/sup&gt;
94214 | footnote=After Johnson became president in 1865, the Vice Presidency was vacant until [[Schuyler Colfax]] was inaugurated on [[4 March]] [[1869]].}}
94215 {{end box}}
94216 {{USPresidents}}
94217 {{USVicePresidents}}
94218
94219 [[Category:1808 births|Johnson, Andrew]]
94220 [[Category:1875 deaths|Johnson, Andrew]]
94221 [[Category:Autodidacts|Johnson, Andrew]]
94222 [[Category:Baptists|Johnson, Andrew]]
94223 [[Category:Governors of Tennessee|Johnson, Andrew]]
94224 [[Category:Presidents of the United States|Johnson, Andrew]]
94225 [[Category:Reconstruction|Johnson, Andrew]]
94226 [[Category:Republican Party (United States) vice presidential nominees|Johnson, Andrew]]
94227 [[Category:Members of the United States House of Representatives from Tennessee|Johnson, Andrew]]
94228 [[Category:United States Senators from Tennessee|Johnson, Andrew]]
94229 [[Category:Vice Presidents of the United States|Johnson, Andrew]]
94230
94231 [[af:Andrew Johnson]]
94232 [[bg:АĐŊĐ´Ņ€ŅŽ ДĐļĐžĐŊŅŅŠĐŊ]]
94233 [[da:Andrew Johnson]]
94234 [[de:Andrew Johnson]]
94235 [[es:Andrew Johnson]]
94236 [[eo:Andrew JOHNSON]]
94237 [[fr:Andrew Johnson]]
94238 [[ga:Andrew Johnson]]
94239 [[gl:Andrew Johnson]]
94240 [[ko:ė•¤ë“œëŖ¨ ėĄ´ėŠ¨]]
94241 [[id:Andrew Johnson]]
94242 [[it:Andrew Johnson]]
94243 [[he:אנדרו ג'ונסון]]
94244 [[nl:Andrew Johnson]]
94245 [[ja:ã‚ĸãƒŗドãƒĒãƒĨãƒŧãƒģジョãƒŗã‚Ŋãƒŗ]]
94246 [[no:Andrew Johnson]]
94247 [[nn:Andrew Johnson]]
94248 [[pl:Andrew Johnson]]
94249 [[pt:Andrew Johnson]]
94250 [[sq:Andrew Johnson]]
94251 [[simple:Andrew Johnson]]
94252 [[sk:Andrew Johnson]]
94253 [[sl:Andrew Johnson]]
94254 [[fi:Andrew Johnson]]
94255 [[sv:Andrew Johnson]]</text>
94256 </revision>
94257 </page>
94258 <page>
94259 <title>Aleksandr Solzhenitsyn</title>
94260 <id>1625</id>
94261 <revision>
94262 <id>41267983</id>
94263 <timestamp>2006-02-26T04:35:28Z</timestamp>
94264 <contributor>
94265 <username>Bloodshedder</username>
94266 <id>20963</id>
94267 </contributor>
94268 <minor />
94269 <comment>main template</comment>
94270 <text xml:space="preserve">[[Image:Solzhenitsyn.jpg|right|thumb|Aleksandr Solzhenitsyn]]
94271
94272 '''Aleksandr Isayevich Solzhenitsyn''' ({{lang-ru|АĐģĐĩĐēŅĐ°ĖĐŊĐ´Ņ€ ИŅĐ°ĖĐĩвиŅ‡ ĐĄĐžĐģĐļĐĩĐŊиĖŅ†Ņ‹ĐŊ}}; born in [[Kislovodsk]], [[Russia]], on [[December 11]], [[1918]]) is a [[Russia|Russian]] [[novel|novelist]], [[drama|dramatist]] and [[historian]]. He was responsible for thrusting awareness of the [[Gulag]] on the world.
94273 Solzhenitsyn was awarded the [[Nobel Prize in Literature]] in [[1970]] and was exiled from the [[Soviet Union]] in [[1974]].
94274
94275 == In the Soviet Union ==
94276
94277 Solzhenitsyn studied [[mathematics]] at [[Rostov State University]], while at the same time taking correspondence courses from the [[Moscow Institute of Philosophy, Literature, and History]]. During [[World War II]], he served as the commander of an artillery position finding company in the [[Soviet Army]], was involved in major action at the front, and was twice decorated. In February [[1945]] while serving in [[East Prussia]] he was arrested for criticising [[Joseph Stalin]] in private correspondence with a friend and sentenced to an eight-year term in a [[labour camp]], to be followed by permanent internal exile.
94278
94279 The first part of Solzehnitsyn's sentence was served in several different work camps; the &quot;middle phase&quot;, as he later referred to it, was spent in a ''[[sharashka]]'', special scientific research facilities run by Ministry of State Security: these formed the experiences distilled in ''The First Circle'', published in the West in [[1968]]. In [[1950]] he was sent to a &quot;Special Camp&quot; for political prisoners. During his imprisonment at the camp in the town of [[Ekibastuz]] in [[Kazakhstan]] he worked as a [[miner]], a [[bricklayer]], and a [[foundry]]man. His experiences at Ekibastuz formed the basis for the ''[[One Day in the Life of Ivan Denisovich]]''. While there he had a tumor removed, although his [[cancer]] was not then diagnosed.
94280
94281 From [[March]] [[1953]] Solzhenitsyn began a sentence of internal exile for life at Kol-Terek in southern [[Kazakhstan]]. His undiagnosed cancer spread, until by the end of the year he was close to death. However in [[1954]] he was permitted to be treated in a hospital in [[Tashkent]], where he was cured. These experiences became the basis of his novel ''Cancer Ward''.
94282
94283 During his years of exile, and following his reprieve and return to European Russia, Solzhenitsyn was, while teaching at a secondary school during the day, spending his nights secretly engaged in writing. He later wrote, in the short [[autobiography]] written at the time of his being awarded the [[Nobel Prize]], that &quot;during all the years until 1961, not only was I convinced that I should never see a single line of mine in print in my lifetime, but, also, I scarcely dared allow any of my close acquaintances to read anything I had written because I feared that this would become known.&quot;
94284
94285 Finally, when he was 42 years old, he approached a poet and the chief editor of the ''Noviy Mir'' magazine [[Alexander Tvardovsky]] with the manuscript of ''[[One Day in the Life of Ivan Denisovich]]''. It was published in [[1962]], and would remain his only major work to be published in the Soviet Union until [[1990]]. It was during this decade of imprisonment and exile that Solzhenitsyn abandoned his youthful [[Marxism]] and evolved toward his mature philosophical and religious positions. His gradual turn to a philosophically-minded [[Christianity]] is described at some length in the fourth part of ''[[The Gulag Archipelago]].'' (&quot;The Soul and Barbed Wire.&quot;)
94286
94287 [[Image:Arch gulag cover.jpg|left|thumb|Solzhenitsyn was exiled from the [[Soviet Union]] for his book ''[[The Gulag Archipelago]].'']]
94288
94289 ''One Day in the Life of Ivan Denisovich'' brought the Soviet system of prison labor to the attention of the West, but it was his monumental history of the Soviet prisons for both criminal and political prisoners that won him the most acclaim in the West. It caused as much a sensation in the Soviet Union as it did the West. But the attention devoted to it in the West meant that Solzhenitsyn was a marked man. The printing of his work quickly stopped, and by [[1965]] the KGB had seized his papers, including the manuscript of &lt;i&gt;The First Circle&lt;/i&gt;. Meanwhile Solzhenitsyn continued to secretly and feverishly work upon the most subversive of all his writings, the monumental &lt;i&gt;Gulag Archipelago&lt;/i&gt;.
94290
94291 ''[[The Gulag Archipelago]]'' was a three volume work on the Soviet prison camp system. It was based upon Solzhenitsyn's own experience as well as the testimony of 227 former prisoners. It discussed the system's origins from [[Lenin]] and the very founding of the Communist regime. The appearance of the book in the West put the word [[gulag]] into the Western political vocabulary and guaranteed swift retribution from the Soviet authorities. On [[February 13]], [[1974]], Solzhenitsyn was deported from the Soviet Union to [[West Germany]] and stripped of his Soviet citizenship.
94292
94293 == In the West ==
94294
94295 After a time in [[Switzerland]], Solzhenitsyn was given accommodation by [[Stanford University]] to &quot;facilitate [your] work, and to accommodate you and your family&quot; He stayed on the 11th floor of the Hoover Tower, part of the [[Hoover Institution]]. Solzhenitsyn moved to [[Vermont]] in [[1976]]. Over the next 18 years Solzhenitsyn completed his historical cycle of the [[Russian Revolution of 1917]], ''The Red Wheel'', and several shorter works. In [[1990]] his Soviet citizenship was restored, and in [[1994]] he returned to Russia.
94296
94297 Despite an enthusiastic welcome on his first arrival in America, followed by respect for his privacy, he had never been comfortable outside his homeland. Solzhenitsyn's warnings about the dangers of Communist aggression and the weakening of the moral fiber of the West were generally well received in conservative circles in the West. But liberals and secularists were increasingly critical of what they perceived as his [[reactionary]] preference for [[Russia]]n patriotism and the [[Russian Orthodox]] religion. He also harshly criticised what he saw as the ugliness and spiritual vapidity of the dominant [[pop culture]] of the modern West, for example television and rock music: &quot;...the human soul longs for things higher, warmer and purer than those offered by today's mass living habits...by TV stupor and by intolerable music.&quot;
94298
94299 == Return to Russia ==
94300
94301 Since returning to Russia in 1994 Solzhenitsyn has published eight two-part short stories, a series of contemplative &quot;miniatures&quot; or prose poems, a literary memoir on his years in the West (''The Grain Between the Millstones'') and a two-volume work on the history of Russian-Jewish relations (''Two Hundred Years Together'' 2001, 2002). The latter has been received as philo-semitic by some and anti-semitic by others. In it, Solzhenitsyn emphatically repudiates the idea that the Russian revolutions of 1905 and 1917 were the work of a &quot;Jewish conspiracy&quot; (see chapters 9, 14, and 15 of that work). At the same time, he calls on both Russians and Jews to come to terms with the members of their peoples who acted in complicity with the Communist regime. The reception of this work confirms that Solzhenitsyn remains a polarizing figure both at home and abroad.
94302
94303 In his recent political writings, such as ''Rebuilding Russia'' (1990) and ''Russia in Collapse'' (1998) Solzhenitsyn has criticized the oligarchic excesses of the new Russian 'democracy' while opposing any nostalgia for Soviet communism. He has defended moderate and self-critical patriotism (as opposed to extreme nationalism), argued for the indispensability of local self-government to a free Russia, and expressed concerns for the fate of 25 million ethnic Russians in the &quot;near abroad&quot; of the former Soviet Union.
94304
94305 One of his sons, [[Ignat Solzhenitsyn]], has achieved acclaim as a [[pianist]] and [[conductor (music)|conductor]] in the United States.
94306
94307 == Published works ==
94308 {{main|Alexandr Solzhenitsyn bibliography}}
94309 *''[[One Day in the Life of Ivan Denisovich]]'' ([[1962]])
94310 *''For the Good of the Cause'' ([[1964]])
94311 *''[[The First Circle]]'' ([[1968]])
94312 *''[[The Cancer Ward]]'' ([[1968]])
94313 *''[[The Love-Girl and the Innocent]]'' ([[1969]])
94314 *''[[August 1914]]'' ([[1971]]). The beginning of a history of the birth of the USSR in an [[historical novel]]. The novel centers on the disastrous loss in the [[Battle of Tannenberg (1914)]] in [[August]], [[1914]]. Other works, similarly titled, follow the story.
94315 *''[[The Gulag Archipelago]]'' (three volumes) ([[1973]]-[[1978|78]]), not a memoir, but a history of the entire process of developing and administering a [[police state]] in the Soviet Union.
94316 *''[[Prussian Nights]]'' ([[1974]])
94317 * Aleksandr Isaevich Solzhenitsyn, ''A Letter to the Soviet leaders'', Collins: Harvill Press (1974), ISBN 0060139137
94318 *''The Oak and the Calf'' ([[1975]])
94319 *''Lenin in Zurich'' ([[1976]])
94320 *''The Mortal Danger: Misconceptions about Soviet Russia and the Threat to America'' ([[1980]])
94321 *''[[November 1916]]'' ([[1983]])
94322 *''Victory Celebration'' ([[1983]])
94323 *''Prisoners'' ([[1983]])
94324 *''Rebuilding Russia'' ([[1990]])
94325 *''March 1917''
94326 *''April 1917''
94327 *''The Russian Question'' ([[1995]])
94328 *''Invisible Allies'' ([[1997]])
94329 *''Two Hundred Years Together'' on Russian-Jewish relations since 1772, aroused ambiguous public response. ([http://www.cdi.org/russia/johnson/7033-1.cfm], [http://www.jewishsf.com/bk010831/ip29a.shtml], [http://www.orthodoxytoday.org/articles/ChukovskayaSolzhenitsyn.htm])
94330
94331 ==External links==
94332 {{wikiquote}}
94333 *[http://www.almaz.com/nobel/literature/Solzhenitsyn.html The Nobel Prize Internet Archive's page on Solzhenitsyn]
94334 *[http://www.columbia.edu/cu/augustine/arch/solzhenitsyn/harvard1978.html A World Split Apart]: Solzhenitsyn's 1978 Commencement Address to the graduating class at Harvard University
94335
94336 [[Category:Aleksandr Solzhenitsyn|*]]
94337 [[Category:1918 births|Solzhenitsyn, Aleksandr]]
94338 [[Category:Living people|Solzhenitsyn, Aleksandr]]
94339 [[Category:Humanitarians]]
94340 [[Category:Nobel Prize in Literature winners|Solzhenitsyn, Aleksandr]]
94341 [[Category:Russian novelists|Solzhenitsyn, Aleksandr]]
94342 [[Category:Russian writers|Solzhenitsyn, Aleksandr]]
94343 [[Category:Soviet dissidents|Solzhenitsyn, Aleksandr]]
94344 [[Category:Soviet expellees|Solzhenitsyn, Aleksandr]]
94345 [[Category:Sharashka inmates|Solzhenitsyn, Aleksandr]]
94346 [[Category:Russian Orthodox Christians|Solzhenitsyn, Aleksandr]]
94347 [[Category:Don Cossacks|Solzhenitsyn, Aleksandr]]
94348
94349 [[bg:АĐģĐĩĐēŅĐ°ĐŊĐ´ŅŠŅ€ ĐĄĐžĐģĐļĐĩĐŊиŅ†Đ¸ĐŊ]]
94350 [[cs:Alexandr Isajevič SolŞenicyn]]
94351 [[da:Aleksandr Isajevitj Solsjenitsyn]]
94352 [[de:Alexander Issajewitsch Solschenizyn]]
94353 [[es:Alexander Solzhenitsyn]]
94354 [[fr:Alexandre Soljenitsyne]]
94355 [[hr:Aleksandar SolÅženjicin]]
94356 [[io:Alexandr Soljenicyn]]
94357 [[it:Aleksandr Isaevich Solzhenitsyn]]
94358 [[he:אלכסנדר סולז'ני×Ļין]]
94359 [[nl:Aleksandr Solzjenitsyn]]
94360 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗドãƒĢãƒģã‚ŊãƒĢジェニãƒŧツã‚Ŗãƒŗ]]
94361 [[no:Aleksandr Solzjenitsyn]]
94362 [[pl:Aleksander SołÅŧenicyn]]
94363 [[ro:Alexandr SoljeniÅŖÃŽn]]
94364 [[ru:ĐĄĐžĐģĐļĐĩĐŊиŅ†Ņ‹ĐŊ, АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€ ИŅĐ°ĐĩвиŅ‡]]
94365 [[fi:Aleksandr SolÅženitsyn]]
94366 [[sv:Aleksandr Solzjenitsyn]]
94367 [[tr:Aleksandr Soljenitsin]]
94368 [[zh:äēšåŽ†åąąå¤§Âˇį´ĸ尔äģå°ŧį´]]</text>
94369 </revision>
94370 </page>
94371 <page>
94372 <title>Aleksandr Isaevich Solzhenitsyn</title>
94373 <id>1626</id>
94374 <revision>
94375 <id>15900093</id>
94376 <timestamp>2002-02-25T15:51:15Z</timestamp>
94377 <contributor>
94378 <ip>Conversion script</ip>
94379 </contributor>
94380 <minor />
94381 <comment>Automated conversion</comment>
94382 <text xml:space="preserve">#REDIRECT [[Aleksandr_Solzhenitsyn]]
94383 </text>
94384 </revision>
94385 </page>
94386 <page>
94387 <title>Aberdeen</title>
94388 <id>1627</id>
94389 <revision>
94390 <id>41776833</id>
94391 <timestamp>2006-03-01T17:52:32Z</timestamp>
94392 <contributor>
94393 <username>Kierant</username>
94394 <id>16754</id>
94395 </contributor>
94396 <comment>/* Parks and open spaces */ grammar (following a proper noun)</comment>
94397 <text xml:space="preserve">:''This article is about the Scottish city. For other uses see [[Aberdeen (disambiguation)]]''
94398
94399 {| border=1 cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;right&quot; width=300 style=&quot;margin: 0 0 1em 1em;&quot;
94400 |-
94401 !colspan=2 align=center bgcolor=&quot;#ff9999&quot;|City of Aberdeen
94402 |-
94403 |colspan=2 align=center|[[Image:ScotlandAberdeen.png]]
94404 |-
94405 !colspan=2 bgcolor=&quot;#ff9999&quot;|Geography
94406 |-
94407 |width=&quot;45%&quot;|Status:||Unitary, City (1996)
94408 |-
94409 |[[Regions of Britain|Region]]:||[[Scotland]]
94410 |-
94411 |Ceremonial County:||[[Aberdeenshire]]
94412 |-
94413 |[[Surface area|Area]]:&lt;br&gt;- Total||[[Ranked 25th]]&lt;br&gt;[[1 E8 m²|186]] [[square kilometre|km&amp;sup2;]]
94414 |-
94415 |Admin. HQ:||Aberdeen
94416 |-
94417 || [[British national grid reference system|Grid Ref.]]: || NJ925065
94418 |-
94419 |[[ONS coding system|ONS code]]:||00QA
94420 |-
94421 !colspan=2 bgcolor=&quot;#ff9999&quot;|Demographics
94422 |-
94423 |[[Population]]:&lt;br&gt;- Total (2003 est.)&lt;br&gt;- [[Density]]||[[Ranked 7th]]&lt;br&gt;212,125&lt;br&gt;1,140 / km&amp;sup2;
94424 |-
94425 !colspan=2 bgcolor=&quot;#ff9999&quot;|Politics
94426 |-
94427 |colspan=2 align=center|[[Image:Aberdeen-coa.png]]&lt;br&gt;Aberdeen City Council&lt;br&gt;http://www.aberdeencity.gov.uk/
94428 |-
94429 |[[Local_government_in_Scotland#Councils_and_councillors|Leadership]]:||Leader &amp; Cabinet
94430 |-
94431 |Executive:|| [[Conservative Party (UK)|Conservative]] +&lt;br&gt;[[Liberal Democrats (UK)|Liberal Democrat]]
94432 |-
94433 |[[MPs elected in the UK general election, 2005|MPs]]:|| &lt;ul&gt;&lt;li&gt;[[Anne Begg]]&lt;li&gt;[[Malcolm Bruce]]&lt;li&gt;[[Frank Doran]]&lt;/ul&gt;
94434 |-
94435 |[[Member of the Scottish Parliament|MSPs]]|| &lt;ul&gt;&lt;li&gt;[[Lewis Macdonald]]&lt;li&gt;[[Brian Adam]]&lt;li&gt;[[Nicol Stephen]]&lt;/ul&gt;
94436 |-
94437 !colspan=2 bgcolor=&quot;#ff9999&quot;|Post Office and Telephone
94438 |-
94439 |Post town:||ABERDEEN&lt;/ul&gt;
94440 |-
94441 |Postal district:||AB10-AB12; AB13 (part); AB15-AB25&lt;/ul&gt;
94442 |-
94443 |width=&quot;45%&quot;|[[UK telephone numbering plan|Dialling Code]]:||01224
94444 |-
94445 |}
94446
94447 [[Image:Aberdeen (location).png|thumb|235px|Aberdeen's location in Scotland]]
94448 '''Aberdeen''' ([[Scottish Gaelic language|Scottish Gaelic]]: ''Obar Dheathain'', 'confluence of the [River] Don'), often called '''The Granite City''', is [[Scotland]]'s third largest [[City status in the United Kingdom|city]], with a population of 212,125, and the greatest part of the [[unitary authority|unitary]] [[council area]] named the [[City of Aberdeen]], which is surrounded by, but not within, the [[Aberdeenshire]] council area. Aberdeen is the chief commercial centre and [[port|seaport]] in the north-east of Scotland.
94449
94450 It boasts the title of '''Oil Capital of Europe''' thanks to the plentiful supply of [[crude oil]] in the [[North Sea]], and stands on a bay of the North Sea, between the mouths of the rivers [[River Don, Aberdeenshire|Don]] and [[River Dee, Aberdeenshire|Dee]]. The city is currently run by a coalition of 20 [[Liberal Democrats (UK)|Scottish Liberal Democrat]] and 3 [[Conservative Party (UK)|Conservative]] councillors.
94451
94452 ==Coat of Arms and Motto==
94453 The [[coat of arms]] shows a red shield bearing three triple towered castles within the double royal tressure. It is widely accepted that these represent the fortifications which from earliest times stood on the three hills where the city sprang up, namely Castle Hill, the Port or Windmill Hill (Gallowgate) and St Catherine's Hill (Adelphi). The Arms are supported by two leopards - one either side - and above, the scroll with the words 'Bon Accord'.
94454
94455 Legend has it that during the [[Wars of Scottish Independence]], when the Castle of Aberdeen was stormed and the English troops 'were killed all in one night', the watchword to initiate the campaign was 'Bon Accord', and it is from this massacre that the Coat of Arms and the motto originated.
94456
94457 ==History==
94458 Aberdeen grew up as two separate burghs - [[Old Aberdeen]] at the mouth of the Don and New Aberdeen, a fishing and trading settlement where the Denburn entered the Dee estuary. The earliest charter was granted by King [[William I of Scotland|William the Lion]] about 1179, confirming the corporate rights granted by David I. The city received other royal charters later. In 1319, the Great Charter of [[Robert I of Scotland|Robert the Bruce]] transformed Aberdeen into a property owning and financially independent community. Bruce had a high regard for the citizens of Aberdeen who had sheltered him in his days of outlawry, helped him win the Battle of Barra and slayed the English garrison at the Castle. He granted Aberdeen with the nearby Forest of Stocket. The income from this land has formed the basis for the city's Common Good Fund, which is used to this day for the benefit of all Aberdonians.
94459
94460 The city was burned by [[Edward III of England]] in 1336, but was soon rebuilt and extended, and called New Aberdeen. For many centuries the city was subject to attacks by the neighbouring lords, and was strongly fortified, but the gates were all removed by 1770. In 1497 a blockhouse was built at the harbour mouth as a protection against the English. During the [[Scottish Civil War]] of 1644-47 between the Royalists and Covenanters the city was impartially plundered by both sides. In 1644, it was taken and sacked by Royalist troops comprising of Irishmen and Highlanders after the [[battle of Aberdeen]]. In 1715 the Earl Marischal proclaimed the Old Pretender at Aberdeen, and in 1745 the Duke of Cumberland resided for a short time in the city before attacking the Young Pretender.
94461
94462 In the [[18th century]] a new Town Hall was built, elegantly furnished with a marble fireplace from Holland and a set of fine crystal chandeliers and sconces. The latter are still a feature in the Town House. This century also saw the beginnings of social services for the Infirmary at Woolmanhill which was opened in 1742 and the Lunatic Asylum in 1779.
94463
94464 The [[19th century]] was a time of considerable expansion. By 1901 the population was 153,000 and the city covered more than 6,000 acres (24 km²). In the late 18th century, the council embarked on a scheme of road improvements, and by 1805 George Street, King Street and Union Street were open, the latter a feat of extraordinary engineering skill involving the partial levelling of St Catherine's Hill and the building of arches to carry the street over Putachieside. The Denburn Valley was crossed by Union Street with a single span arch of 130 ft (40 m). Along these new streets was built the nucleus of the ''Granite City'' in buildings designed by John Smith and [[Archibald Simpson]].
94465
94466 The increasing economic importance of Aberdeen and the development of the shipbuilding and fishing industries brought a need for improved harbour facilities. During this century much of the harbour as it exists today was built including Victoria Dock, the South Breakwater and the extension to the North Pier. Such an expensive building programme had, of course, repercussions, and in 1817 the city was in a state of bankruptcy. However, a recovery was made in the general prosperity which followed the [[Napoleonic wars]]. Improvements in street lighting came in 1824 with the advent of gas, and a vast improvement was made to the water supply in 1830 when water was pumped from the Dee to a reservoir in Union Place. An underground sewerage system was begun in 1865 to replace the open sewers which previously ran along certain of the streets.
94467
94468 ==Background==
94469
94470 [[Image:Elphinstone_Hall2.jpg|thumb|University of Aberdeen, Elphinstone Hall]]
94471
94472 Though Old Aberdeen, extending from the area surrounding the [[University of Aberdeen]] to the southern banks of the Don, had a separate charter, privileges, and history, the distinction between it and New Aberdeen can no longer be said to exist. Aberdeen's popular name of the &quot;Granite City&quot;, is justified by the fact that the bulk of the city is built of [[granite]], but to appreciate its more poetical designation of the &quot;Silver City by the Golden Sands&quot;, it should be seen after a heavy rainfall when its public buildings and countless houses gleam pure and white under brilliant sunshine. It is also known as the 'Flower of Scotland', as Aberdeen has long been famous for its outstanding parks, gardens and floral displays that include 2 million roses, 11 million daffodils and 3 million crocuses. Aberdeen has won the [[Royal Horticultural Society]]'s [[Britain in Bloom]] contest on numerous occasions, and at one time was banned from entering to enable other cities to win. On [[5 March]], [[2003]] Aberdeen was granted [[Fairtrade City]] status.
94473
94474 The area of the city extends to 71.22 square miles (184.46 [[square kilometre|km²]]), and includes the former burghs of Old Aberdeen, New Aberdeen, Woodside and the district of [[Torry]] to the south of the Dee. The city was first [[incorporation (municipal government)|incorporated]] in 1891. The city is represented in Westminster by two MPs who are both from the Labour party, and in the [[Scottish Parliament]] by three MSPs (one Labour, one SNP and one Liberal Democrat). The city council comprises forty-three councillors who represent the city's [[ward (politics)|wards]] and is headed by the Lord Provost. The current [[List of Provosts and Lord Provosts of Aberdeen|Lord Provost]] is John Reynolds.
94475
94476 As of 1996, Aberdeen has been governed by the unitary [[City of Aberdeen|Aberdeen City Council]] and no longer has any direct control over the neighbouring area of [[Aberdeenshire (unitary)|Aberdeenshire]] (although the headquarters of Aberdeenshire Council are located within the city's boundaries).
94477
94478 Aberdeen has good links to the rest of Scotland and the UK. The main road south to [[Edinburgh]] is a fast dual carriageway and plans are in hand to build a bypass round the city. Aberdeen is served by good rail links to the south and north to [[Inverness]], all services running from the Railway Station in the city centre. Although there are no direct sea links south any more there is still a ferry service running to [[Orkney]] and [[Shetland]]. [[Aberdeen Airport]] is located at Dyce, about 5 miles (8 km) north west of the city centre, and has frequent services to [[London]] and several international destinations.
94479
94480 The mean temperature is 8 °[[Celsius|C]] (47 °[[Fahrenheit|F]]) and it varies between 0.4 °C (32.7 °F) in winter and 17.6 °C (63.7 °[[Fahrenheit|F]]) in summer. The average yearly rainfall is 816 [[millimetre|mm]]. The city is one of the healthiest in Scotland.
94481
94482 ==Art and architecture==
94483 [[Image:Union Street, Aberdeen.jpg|thumb|Union Street]]
94484 [[Image:Aberdeen Market Cross.jpg|thumb|Aberdeen Market Cross]]
94485 [[Image:marschal college.jpg|frame|right|Marischal College as seen from Upperkirkgate]]
94486 Union Street is one of the most imposing and famous thoroughfares in Britain. From Castle Street it runs for nearly a mile (1.5 km), is 70 ft (21 m) wide, and originally contained the principal shops and most of the public buildings, all of granite. Part of the street crosses the Denburn ravine (utilized for the line of the Great North of Scotland railway) by Union Bridge, a fine granite arch of 132 ft (40 m) span, with portions of the older town still fringing the gorge, 50 feet (15 m) below the level of Union Street. Union Street was built from 1801 to 1805, and named after the 1800 Act of Union with [[Ireland]].
94487
94488 Amongst the notable buildings in the street are the Town and County Bank, the Music Hall 1822, the Trinity Hall of the incorporated trades (originating between 1398 and 1527), now a shopping mall; the Palace Hotel; the former office of the Northern Assurance Company, and the National Bank of Scotland.
94489
94490 In Castle Street, a continuation eastwards of Union Street, is the Town House, the headquarters of the city council. One of the most splendid granite edifices in Scotland, in the Franco-Scottish Gothic style, it contains the great hall, with an open timber ceiling and oak-panelled walls; the Sheriff Court House; the Town and County Hall, with portraits of [[Albert of Saxe-Coburg-Gotha|Prince Albert]], the 4th [[Earl of Aberdeen]], various Lord Provosts and other distinguished citizens. In the vestibule of the entrance corridor stands a suit of black armour, believed to have been worn by Provost [[Sir Robert Davidson]], who fought in the [[Battle of Harlaw]] in 1411. On the south-western corner is the 210 ft (64 m) grand tower, which commands a fine view of the city and surrounding country. Adjoining the Town House is the old North of Scotland Bank building, in [[Greek Revival]] style. This building is now a pub named the [[Archibald Simpson]], after its original architect. On the opposite side of the street is the fine building of the Union Bank.
94491
94492 At the upper end of Castlegate stands [[The Salvation Army]] Citadel, an effective castellated mansion, on the site of the medieval castle. In front of it is the [[Market Cross]], built in 1686 by [[John Montgomery]], a native architect. This open-arched structure, 21 ft (6 m) in diameter and 18 ft (5 m) high, comprises a large hexagonal base from the centre of which rises a shaft with a Corinthian capital, on which is the royal [[unicorn]]. The base is highly decorated, including medallions illustrating Scottish monarchs from [[James I of Scotland|James I]] to [[James VII of Scotland|James VII]]. To the east of Castle Street were the military barracks, which were demolished in 1965 and replaced with two tower blocks.
94493
94494 Marischal College on Broad Street, opened by King [[Edward VII of the United Kingdom|Edward VII]] in 1906, is the second largest granite building in the world (after the [[Escorial]], [[Madrid]]), and is one of the most splendid examples of Edwardian architecture in Britain. The architect, [[Alexander Marshall Mackenzie]], a native of Aberdeen, adapted his material, white granite, to the design of the building with the originality of genius. This magnificent building is sadly no longer a seat of learning and is under renovation as the new home of Aberdeen City Council.
94495
94496 There are no tramways in Aberdeen. The last [[tram]] went through the streets on [[May 3]] [[1958]]. All trams except one were scrapped. The last tram is on display in the Transport Museum in [[Alford, Aberdeenshire]].
94497
94498 ==Churches==
94499 Like most Scottish burghs, Aberdeen has many churches, however, in the [[Middle Ages]] there was only one burgh kirk, St Nicholas, one of [[Scotland]]'s largest parish churches. Like a number of other Scottish kirks, it was subdivided after the [[Reformation]], in this case into the East and West churches.
94500
94501 The large kirkyard of [[St Nicholas' Kirk, Aberdeen|St Nicholas' Kirk]] is separated from Union Street by a 147 ft (45 m) long Ionic facade, built in 1830. The divided church within, with a central tower and spire, forms one continuous building, 220 ft (67 m) in length. It contains the Drum Aisle (the ancient burial-place of the Irvines of [[Drum Castle]]) and the Collison Aisle, which divide the two congregations and which formed the [[transept]]s of the [[12th-century]] church of St Nicholas (architectural detail survives from this period). The West Church was built in 1775, in the [[Palladian|Italian style]], on the site of the medieval [[nave]], the East originally in 1834 in Gothic-revival style on the site of the [[choir]]. In 1874 a fire destroyed the East Church and the old central tower with its fine peal of nine [[bell (instrument)|bells]], one of which, Laurence or &quot;Lowrie&quot;, was 4 ft (1.2 m) in diameter at the mouth, 3.5 ft (1.1 m) high and very thick. The church was rebuilt and a massive granite tower erected over the intervening aisles, a new peal of 36 bells, cast in the [[Netherlands]], being installed to commemorate the [[Victoria of the United Kingdom|Victorian]] [[Golden Jubilee|jubilee]] of 1887. These were replaced in 1950 with a carillion of 48 bells, the largest in the [[United Kingdom]].
94502
94503 The [[Diocese]] of Aberdeen is said to have been first founded at Mortlach in [[Banffshire]] by [[Malcolm II of Scotland|Malcolm II]] (1005-34) to celebrate his victory there over the Danes, but in 1137 [[David I of Scotland|David I]] (1124-53) transferred the [[bishopric]] to Old Aberdeen, and twenty years later [[St Machar's Cathedral]], situated a few hundred yards from the Don, was begun. Save during the episcopate of [[William Elphinstone]] ([[1484]]-[[1511]]), the building progressed slowly. Gavin Dunbar, who followed him in 1518, completed the structure by adding the two western spires and the southern transept. The church suffered severely at the [[Reformation]], but is still used by the [[Church of Scotland]] as a parish church. The choir was abandoned to decay and the central tower collapsed in the course of the [[17th century]]. It now consists of the nave and the two-storeyed entrance porch (the former in use as the parish church) and the lower walls of the transepts. These are under the care of [[Historic Scotland]], and contain an important group of late [[medieval]] bishops' tombs, protected from the weather by modern canopies. The Cathedral is chiefly built of outlayer granite, and, though one of the plainest cathedrals in Scotland, its stately simplicity and severe symmetry lend it unique distinction. On the unique flat panelled ceiling of the nave (first half of the [[16th century]]) are the heraldic shields of the contemporary kings of Europe, and the chief earls and bishops of [[Scotland]]. The great west window contains modern painted glass of excellent colour and design. The Cathedral contains a number of well-preserved grave-monuments to the late medieval clergy, a rare [[Romanesque]] cross-head and an early Christian cross-slab from Seaton.
94504
94505 In the [[Middle Ages]], Aberdeen contained houses of the [[Carmelites]] ([[Whitefriars]]) and [[Franciscans]] ([[Greyfriars]]), the latter surviving in modified form as the chapel of [[Marischal College]] as late as the early [[20th century]]. No remains above ground.
94506
94507 [[St. Mary's Cathedral, Aberdeen|St. Mary's Cathedral]] is the [[Roman Catholic]] cathedral. A [[Gothic style|Gothic]] building, it was erected in 1859.
94508
94509 [[St. Andrew's Cathedral, Aberdeen|St. Andrew's Cathedral]] is the [[Scottish Episcopal Church|Scottish Episcopal]] cathedral. The Episcopal Church in Aberdeen is notable for having consecrated the first bishop of the [[Episcopal Church in the United States of America]], [[Samuel Seabury]] ([http://justus.anglican.org/resources/bio/282.html Web Link]). The cathedral was rennovated in the [[1930s]] to commemorate the 150th anniversary of Seabury's consecration. The memorial was dedicated with a ceremony attended by the then U.S. ambassador to the UK, [[Joseph P. Kennedy, Sr]].
94510
94511 The cemeteries are St Peter's in Old Aberdeen, Trinity near the links, Nellfield at the junction of Great Western and Holburn Roads, Allenvale, adjoining Duthie Park and the most recent Facilities at Dyce. There is also a crematorium and cemetery near Hazlehead.
94512
94513 ==Education==
94514 The first of Aberdeen's two universities, [[King's College]], was founded in 1495 by [[William Elphinstone]] (1431-1514), [[Bishop of Aberdeen]] and Chancellor of Scotland. [[Marischal College]] was founded in New Aberdeen by George Keith, 5th Earl Marischal of [[Scotland]] in [[1593]]. These foundations were amalgamated to form the present [[University of Aberdeen]] in [[1860]]. King's and Marischal were [[Scotland]]'s third and fifth oldest universities respectively, and the fifth and seventh oldest in [[Britain]] as a whole.
94515
94516 [[Robert Gordon's College]] (originally Robert Gordon's Hospital) was founded in 1729 by the merchant [[Robert Gordon]], grandson of the map maker Robert Gordon of Straloch, and was further endowed in 1816 by Alexander Simpson of Collyhill. Originally devoted to the instruction and maintenance of the sons of poor burgesses of guild and trade in the city, it was reorganized in 1881 as a day and night school for secondary and technical education, and in the 1990s became co-educational and a day-only school. It also produced the Robert Gordon Institute of Technology, which in [[1992]] became [[The Robert Gordon University]].
94517
94518 [[Gray's School of Art]], founded in 1886, is one of the oldest established colleges of art in the UK. It is situated in beautiful grounds at Garthdee on the edge of the city. It is now incorporated into Robert Gordon University.
94519
94520 [[Aberdeen College]] has several campuses in Aberdeen and offers a wide variety of part-time and full-time courses leading to several different qualifications. It the largest further education institution in Scotland.
94521
94522 [[Northern College]] was a [[teacher]] training college with campuses in Aberdeen and Dundee. In 2000, the Aberdeen campus of Northern College became the University of Aberdeen School of Education.
94523
94524 [[Aberdeen Grammar School]], (now comprehensive, despite its name) founded in 1263 and one of the oldest schools in Britain, was removed in 1861-1863 from its old quarters in Schoolhill to a large new building, in the [[Scottish baronial style]], off Skene Street. One famous alumnus of the Grammar School is [[George Gordon Byron, 6th Baron Byron|Lord Byron]].
94525
94526 There are 12 secondary schools and 54 primary schools which are run by the city council in the city. There are also a small number of private schools. Albyn School for Girls (co-ed as of 2006) and St Margaret's girls school, both in the beautiful granite Queen's Road area just West of the city centre, are two of the better private schools in Scotland. There's also a small French-language school (one of the few in Britain) catering to the oil industry families, an &quot;IB&quot; International school, and a Steiner school.
94527
94528 At [[Blairs]], in [[Kincardineshire]], five miles (8 km) S.W. of Aberdeen, is St Mary's Roman Catholic College, currently ([[2006]]) disused, built for the training of young men intended for the priesthood, with plans to turn it into a hotel.
94529
94530 ==Culture==
94531 [[Image:Playhouseaberdeen.jpg|thumb|250px|left|His Majesty's Theatre, Aberdeen.]]
94532 The city is blessed with amenities which cover a wide range of cultural activities and boasts a selection of museums. The Aberdeen Art Gallery houses a collection of Impressionist, Victorian, Scottish and 20th Century British paintings as well as collections of silver and glass. It also includes The Alexander Macdonald Bequest, a collection of late 19th century works donated by the museum's first benefactor and a constantly changing collection of contemporary work and regular visiting exhibitions.
94533
94534 The Aberdeen Maritime Museum, located in Shiprow, tells the story of Aberdeen's links with the sea from the days of sail and clipper ships to the latest oil and gas exploration technology. The museum includes a range of interactive exhibits and models, including an 8.5m (28 feet) high model of the Murchison oil production platform and a 19th Century assembly taken from Rattray Head lighthouse.
94535
94536 Provost Ross' House is the second oldest dwelling house in the city. It was built in 1593 and became the residence of Provost John Ross of Arnage in 1702. The house retains some original medieval features, including a kitchen, fire places and beam-and-board ceilings. The Gordon Highlanders Regimental Museum tells the story of one of Scotland's best known regiments.
94537
94538 The Marischal Museum holds the principal collections of the University of Aberdeen, comprising some 80,000 items in the areas of fine art, Scottish history &amp; archaeology, and European, Mediterranean &amp; Near Eastern archaeology. The museum is open to the public, but also provides an important resource for the University's students and researchers. The permanent displays and reference collections are augmented by regular temporary exhibitions.
94539
94540 [[Image:Centrallibraryoutside.jpg|thumb|250px|right|Central Library, Aberdeen.]]Aberdeen's museums and attractions include:
94541
94542 *[[Aberdeen International Youth Festival]]
94543 *Aberdeen Art Gallery
94544 *Aberdeen Maritime Museum
94545 *Provost Ross' House
94546 *The Gordon Highlanders Museum
94547 *Marischal Museum
94548 *James Dun's House
94549 *King's College Visitor and Conference Centre
94550 *Museum of Education Victorian Classroom
94551 *Provost Skene's House
94552 *Tolbooth Museum
94553 *Doonies Farm
94554 *Marischal College
94555 *Aberdeen Arts Centre
94556 *The Lemon Tree
94557 *[[Pittodrie|Pittodrie football stadium]]
94558
94559 * The Aberdeen Central Public Library contains more than 60,000 volumes.
94560
94561 * His Majesty's Theatre (1906) is a fine granite theatre which provides a home for popular entertainments.
94562 It has a 1,500 capacity and is one of the most beautiful major touring theatres in Britain.
94563
94564 * Doonies Farm has one of the largest collections in Scotland of endangered breeds of farm animals. Open to the public, the farm is nationally recognized as a breeding centre for rare breeds and is situated on the old coast road between the Bay of Nigg and Cove.
94565
94566 ==Parks and open spaces==
94567 '''Duthie Park''' 50 acres (202,000 m²)), situated on Riverside Drive, was named after and gifted to the city by Miss Elizabeth Crombie Duthie of Ruthrieston in 1881 and opened by Princess Beatrice on [[27 September]] [[1883]]. It
94568 occupies an excellent site on the north bank of the Dee and includes extensive gardens, a rose hill, boating pond, bandstand, and play area as well as the David Welch Winter Gardens. First opened in 1899, the Winter Gardens were rebuilt in 1970 following storm damage and extended. They are Europe's largest indoor gardens and one of the most visited in Scotland.
94569
94570 '''Victoria Park''' 13 acres (53,000 m²) opened in 1871, is a beautiful park situated in the north-western area. There is a conservatory used as a seating area and a fountain made of 14 different granites, presented to the people by the granite polishers and master builders of Aberdeen.
94571
94572 '''Westburn Park''' 13 acres (53,000 m²) opposite Victoria Park, caters for football and tennis, has a children's cycle track and a play area. An open section of the Westburn runs through the park.
94573
94574 '''Stewart Park''' (15 acres (61,000 m²) opened in 1894. The park was named after a former Lord Provost of the city, Sir David Stewart; a section is reserved for [[cricket]] and [[football (soccer)|football]].
94575
94576 '''Hazlehead Park''' is a large, heavily wooded park on the outskirts of the city. It is popular with sports enthusiasts, walkers, naturalists and picnickers. Around the park are football pitches, two golf courses, pitch and putt course, a horseriding school and woods for walking. The park has a significant collection of sculpture by a range of artists and heritage items which have been rescued from various places within the city. It also features Scotland's oldest maze, first planted in 1938.
94577
94578 '''Aberdeen Beach/Queen's Links''' is a well-loved and extremely popular recreational area of the city, visited by holidaymakers and city residents all year round. The area is well provided with sporting and recreational facilities, including the Beach Leisure Centre and the Lynx Ice Arena, cafes, restaurants, a fun fair, a multiplex cinema, a nightclub and other attractions.
94579
94580 '''Johnston Gardens''' is also a great park worth visiting. Situated behind Queen's Road and just beside Nellfield Terrace. It hosts many different types of flowers and plants which have been renowned for their beauty. Johnston Gardens also won many 'Britain in Bloom' competitions. Aberdeen itself has won the title of best city 'In Bloom' for 9 nine years in a row.
94581
94582 '''Seaton Park''' (270,000 m²) is located in the north of the city and was purchased by the Council in 1947 from Major Hay. Beside the park's south gates stands St Machar's Cathedral. There are flowerbeds and a walled garden beside the old stables, which have been converted for housing. The Cathedral Walk is always a resplendent sight in midsummer and one of the most popular with visitors to the city. Seaton Park is also an access point for the River Don and there is a walk from the park to the city boundary.
94583
94584 '''[[Union Terrace Gardens]]''' forms a popular rendezvous location in the heart of the city.
94585
94586 ==Statues==
94587 Adjacent to [[Union Terrace Gardens]] stands a colossal bronze statue of [[William Wallace]], by W. G. Stevenson. Also nearby these same gardens are a bronze statue of [[Robert Burns]] and [[Charles Marochetti]]'s seated figure of [[Prince Albert of Saxe-Coburg-Gotha|Prince Albert]].
94588
94589 In front of Robert Gordon's College is the bronze statue, by T. S. Burnett, of [[Charles George Gordon|General Gordon]]. At the head of Queen's Road stands the bronze statue of Queen Victoria, erected in 1893 by the royal tradesmen of the city. Near the Cross stands the granite statue of George Gordon, 5th Duke of Gordon.
94590
94591 There is a 70 ft (21 m) high [[obelisk]] of [[Peterhead]] granite, originally erected in the square of Marischal College, to the memory of Sir James McGrigor (1778-1851), the military surgeon and director-general of the Army Medical Department, who was thrice elected lord [[rector]] of the College. In the [[1890s]] when the College was extended, the obelisk was moved to the Duthie Park.There is also a statue commemorating Lord Byron in Aberdeen Grammar School in the front grounds.
94592
94593 ==Bridges==
94594 The Dee is crossed by a number of bridges, from west to east:
94595 *Bridge of Dee
94596 *King George VI Bridge
94597 *Railway bridge
94598 *Wellington Suspension Bridge
94599 *Queen Elizabeth II Bridge
94600 *Victoria Bridge
94601
94602 Until 1832, the only access to the city from the south was the Bridge of Dee. It consists of seven semicircular ribbed arches, is about 30 ft (10 m) high, and was built early in the [[16th century]] by Bishops Elphinstone and Dunbar. It was nearly all rebuilt 1718-1723, and in 1842 was widened from 14 to 26 ft (4 to 8 m). This was the site of a battle in 1639 between the Royalists under Viscount Aboyne and the Covenanters who were led by the Marquis of Montrose.
94603
94604 The Bridge of Don has five granite arches, each 75 ft (23 m) in span, and was built 1827-1832. A little to the west is the Auld [[Brig o' Balgownie]], a picturesque single arch spanning the deep black stream, said to have been built by [[Robert I of Scotland|King Robert I]], and celebrated by [[George Gordon Byron, 6th Baron Byron]] in the tenth canto of &quot;[[Don Juan]]&quot;.
94605
94606 ==Harbour==
94607 [[Image:Aberdeen Harbour.jpg|thumb|right|A ship in Aberdeen Harbour.]]
94608 Aberdeen Harbour is the principal commercial port in northern Scotland and an international port for general cargo, roll-on/roll-off and container traffic.
94609
94610 Originally, the defective harbour, with a shallow sand and gravel bar at its entrance, retarded the trade of Aberdeen, but under various acts since 1773 it was greatly deepened. The north pier, built partly by [[John Smeaton]] [[1770s|1775-1781]], and partly by [[Thomas Telford]] [[1810s|1810-1815]], extends nearly 3,000 ft (1000 m) into the [[North Sea]] and raised the bar. A wet dock of 29 acres (117,000 m²) and with 6000 ft (1800 m) of quay, was completed in 1848 and called Victoria Dock in honour of the queen's visit to the city in that year. Adjoining it is the Upper Dock. By the [[Harbour Act of 1868]], the Dee near the harbour was diverted from the south at a cost of ÂŖ80,000, and 90 acres (364,000 m²) of new ground, in addition to 25 acres (101,000 m²) formerly made up, were provided on the north side of the river for the Albert Basin (with a graving dock), quays and warehouses. A 1050 ft (320 m) long concrete [[breakwater]] was constructed on the south side of the stream as a protection against south-easterly gales. On Girdleness, the southern point of the bay, a [[lighthouse]] was built in 1833. Thirty-two people were drowned in the harbour on [[5 April]] [[1876]], in the [[River Dee Ferry Boat Disaster]]. Aberdeen Harbour was the first publicly limited company in the United Kingdom. A harbour in [[Hong Kong]] has been named [[Aberdeen Harbour]], supposedly by ex-patriots from the Scottish city.
94611
94612 ==Industry==
94613 Owing to the variety and importance of its chief industries Aberdeen is one of the most prosperous cities in Scotland. Very durable grey granite was [[quarry|quarried]] at Rubislaw quarry for more than 300 years, and blocked and dressed paving &quot;setts&quot;, kerb and building stones, and monumental and other ornamental work of granite have long been exported from the district to all parts of the world. Quarrying finally ceased in 1971.
94614
94615 This, though once the predominant industry, was surpassed by the deep-sea fisheries, which derived a great impetus from improved technologies throughout the twentieth century. Lately, however, catches have fallen due to overfishing in previous years, and the use of the harbour by oil support vessels. Aberdeen remains an important fishing port, but the catch landed there is now eclipsed by the more northerly ports of [[Peterhead]] and [[Fraserburgh]]. The [[Fisheries Research Service]] is based in Aberdeen, including its headquarters and a marine research lab.
94616
94617 Most of the leading pre-1970s industries date from the [[18th century]], amongst them [[wool]]lens (1703), [[linen]] (1749), and [[cotton]] (1779). These gave employment to several thousands of operatives. The [[paper]]-making industry is one of the most famous and oldest in the city, paper having been first made in Aberdeen in 1694. [[Flax]]-[[spinning]] and [[jute]] and [[comb]]making factories also flourished, along with successful [[foundry|foundries]] and engineering works.
94618
94619 In the days of wooden ships [[ship-building]] was a flourishing industry, the town being noted for its fast [[clipper]]s, many of which established records in the &quot;[[tea]] races&quot;. The introduction of trawling revived this to some extent, and despite the distance of the city from the [[iron]] fields there was a fair yearly output of iron vessels. The last major shipbuilder in Aberdeen, Hall Russells, closed in the late 1980's.
94620
94621 With the discovery of significant oil deposits in the North Sea during the late [[twentieth century]], Aberdeen became the centre of [[Europe]]'s [[petroleum]] industry, with the port serving [[oil rig]]s off-shore. The number of jobs created by the energy industry in and around Aberdeen has been estimated at half a million. In 1988, the city was dealt a heavy blow by the loss-of-life suffered during an explosion and fire aboard one such rig, the [[Piper Alpha]].
94622
94623 ==Population==
94624 In 1396 the population was about 3,000. By 1801 it had become 26,992; in 1841 it was 63,262; (1891) 121,623; (1901) 153,503; in 2001 it was 197,328.
94625
94626 ==Sport==
94627 [[Aberdeen Football Club]] was founded in 1903. Its major success was winning the [[European Cup Winners Cup]] in 1983 and three League Championships between 1980 and 1986, under the current [[Manchester United F.C.]] manager [[Alex Ferguson]]. The club's stadium is [[Pittodrie]] which holds the distinction of being Britain's first all-seater stadium.
94628
94629 Aberdeen F.C. holds the distinction of being the last team to have won the [[Scottish Premier League]] Championship outside the [[Old Firm]] and is the only Scottish team to have won two European trophies adding to their European Cup Winners Cup success by winning the [[European Super Cup]] also in 1983.
94630
94631 Well known footballers who have played for the club include [[Gordon Strachan]] (Current Celtic manager), [[Alex McLeish]] (Current Rangers manager) and club legend [[Willie Miller]]. [[Denis Law]], the joint top scorer for the Scotland national team was also born in the city, but spent his professional career playing for English and Italian clubs.
94632
94633 Aberdeen Golf Club was founded in 1815. It has two 18-hole courses at Balgownie, north of the River Don. There are other golf courses at Auchmill, Balnagask, Hazlehead and King's Links.
94634
94635 ==Transport==
94636
94637 There are four main roads serving the city;
94638
94639 * [[A90 road|A90]] The main arterial route into the city from the South, linking Aberdeen to [[Edinburgh]], [[Dundee]] and [[Perth, Scotland|Perth]].
94640 * [[A96 road|A96]] Links to [[Elgin, Moray|Elgin]] and [[Inverness]] and the North West.
94641 * [[A93 road|A93]] The main route to the West, heading towards [[Royal Deeside]] and the [[Cairngorms]].
94642 * [[A92 road|A92]] The original southerly road to Aberdeen prior to the building of the A90, now used as a tourist route, connecting the towns of [[Montrose, Angus|Montrose]], [[Arbroath]] and [[Brechin]] on the east coast.
94643
94644 The city's original ring road, Anderson Drive, which was built in the 1930s has long since been engulfed by the expansion of the city, and is inadequate for dealing with today's traffic. To this end, a new main bypass road, the Western Peripheral Route, is planned to divert through traffic away from the city centre. The road is due to open in 2010.
94645
94646 The city is well served by the national [[railway]] network. Aberdeen has regular rail services to [[Glasgow]] and Edinburgh as well as long distance trains to [[London]] via Edinburgh. It is possible to take the longest scheduled rail journey in the whole of the UK from Aberdeen. A daily service runs from Aberdeen to [[Penzance]] in [[Cornwall]], which is 722 miles (1,162 km) and twelve and three quarter hours away. Regular trains also run north westerly towards Inverness and north to [[Dyce]] for the airport.
94647
94648 Aberdeen also has an [[airport]] in the neighbouring town of Dyce, which is operated by [[BAA plc]]. As well as connecting the city to the rest of the UK, [[Aberdeen Airport]] (sometimes refererred to as ''Dyce Airport'') is the largest [[helicopter]] terminal in the world, serving the many North Sea oil installations. The [[IATA airport code]] for the airport is ABZ.
94649
94650 == Wards of the City of Aberdeen ==
94651 [[Ashley, Aberdeen|Ashley]], [[Auchmill]], [[Bankhead and Stoneywood, Aberdeen|Bankhead and Stoneywood]], [[Berryden]], [[Broomhill, Aberdeen|Broomhill]], [[Bridge of Don]], [[Castlehill, Aberdeen|Castlehill]], [[Cults]], [[Cummings Park, Aberdeen|Cummings Park]], [[Danestone]], [[Donmouth]], [[Duthie]], [[Dyce]], [[Garthdee]], [[Gilcomston]], [[Hazelhead]], [[Hilton, Aberdeen|Hilton]], [[Holburn]], [[Jesmond, Aberdeen|Jesmond]], [[Kincorth]] East, [[Kincorth]] West, [[Kittybrewster]], [[Langstane]], [[Loirston]], [[Mannofield]], [[Mastrick]], [[Midstocket]], [[Murtle]], [[Newhills]], [[Oldmachar]], [[Peterculter]], [[Pittodrie]], [[Queen's Cross, Aberdeen|Queen's Cross]], [[St. Machar]], [[Seaton]], [[Sheddocksley]], [[Springhill, Aberdeen|Springhill]], [[Stockethill]], [[Summerhill, Aberdeen|Summerhill]], [[Sunnybank, Aberdeen|Sunnybank]], [[Torry]], [[Tullos]], [[Woodside, Aberdeen|Woodside]] and [[Tillydrone]]
94652
94653 == Twinned cities worldwide ==
94654 Aberdeen is [[Town twinning|twinned]] with several cities across Europe and throughout the rest of the world. These include:
94655 {|
94656 | valign=&quot;top&quot; |
94657 * {{flagicon|Germany}} - [[Regensburg]], [[Germany]]
94658 * {{flagicon|France}} - [[Clermont-Ferrand]], [[France]]
94659 * {{flagicon|Norway}} - [[Stavanger]], [[Norway]]
94660 | valign=&quot;top&quot; |
94661 * {{flagicon|Belarus}} - [[Gomel]], [[Belarus]]
94662 * {{flagicon|Zimbabwe}} - [[Bulawayo]], [[Zimbabwe]]
94663 |}
94664
94665 ==See also==
94666 *[[List of Aberdonians]]
94667 *[[List of Bishops of Aberdeen]]
94668 *[[List of Provosts and Lord Provosts of Aberdeen]]
94669
94670 ==External links==
94671 {{commonscat}}
94672 *[http://www.aberdeencity.gov.uk/acc/default.asp Aberdeen City Council]
94673 *[http://www.scots-online.org/grammar/aberdeen.htm Aberdeen Dialect]
94674 *[http://www.touchaberdeen.com/ Aberdeen Business portal]
94675 {{oscoor gbx|NJ925065}}
94676 {{Scottish Cities}}
94677 [[Category:Aberdeen| ]]
94678 [[Category:Scottish names]]
94679
94680 [[da:Aberdeen]]
94681 [[de:Aberdeen]]
94682 [[et:Aberdeen]]
94683 [[es:Aberdeen]]
94684 [[eo:Aberdeen]]
94685 [[fa:Ø§Ø¨ØąØ¯ÛŒŲ†]]
94686 [[fr:Aberdeen]]
94687 [[gl:Aberdeen, Escocia]]
94688 [[ja:ã‚ĸバデã‚Ŗãƒŧãƒŗ (ã‚šã‚ŗットナãƒŗド)]]
94689 [[mk:АйĐĩŅ€Đ´Đ¸ĐŊ]]
94690 [[nl:Aberdeen]]
94691 [[no:Aberdeen]]
94692 [[nn:Aberdeen]]
94693 [[pl:Aberdeen (Szkocja)]]
94694 [[pt:Aberdeen]]
94695 [[ru:Đ­ĐąĐĩŅ€Đ´Đ¸ĐŊ (ĐŗĐžŅ€ĐžĐ´)]]
94696 [[sco:Aiberdeen]]
94697 [[simple:Aberdeen]]
94698 [[fi:Aberdeen]]
94699 [[sv:Aberdeen]]</text>
94700 </revision>
94701 </page>
94702 <page>
94703 <title>August 23</title>
94704 <id>1628</id>
94705 <revision>
94706 <id>42162744</id>
94707 <timestamp>2006-03-04T05:58:02Z</timestamp>
94708 <contributor>
94709 <username>Rklawton</username>
94710 <id>754622</id>
94711 </contributor>
94712 <minor />
94713 <comment>/* Fiction */ formatting</comment>
94714 <text xml:space="preserve">{| style=&quot;float:right;&quot;
94715 |-
94716 |{{AugustCalendar}}
94717 |-
94718 |{{ThisDateInRecentYears|Month=August|Day=23}}
94719 |}
94720 '''[[August 23]]''' is the 235th day of the year in the Gregorian Calendar (236th in leap years), with 130 days remaining.
94721
94722 ==Events==
94723 *[[1305]] - [[William Wallace]] is executed.
94724 *[[1328]] - [[Battle of Kassel]]: French troops stop an uprising of Flemish farmers
94725 *1328 - King [[Philip VI of France]] is crowned.
94726 *[[1541]] - French explorer [[Jacques Cartier]] lands near Quebec City in his third voyage to Canada.
94727 *[[1566]] - Calvinists are granted rights in the Netherlands
94728 *[[1614]] - The [[University of Groningen]] is established
94729 *[[1617]] - In London, the first one-way street is established
94730 *[[1651]] - [[Charles II of England]] enters [[Worcester]] and starts a battle.
94731 *[[1784]] - [[Eastern Tennessee]] declares itself an independent state under the name of [[State of Franklin|Franklin]]; the step is rejected by Congress one year later
94732 *[[1793]] - [[French Revolution]]: a [[levÊe en masse]] was decreed by the [[National Convention]].
94733 *[[1799]] - [[Napoleon]] leaves [[Egypt]] for [[France]] en route to seize power
94734 *[[1813]] - At the [[Battle of Grossbeeren]],the Prussians under [[Von Bulow]] repulse the French army.
94735 *[[1821]] - [[Mexico]] gains its independence from [[Spain]]
94736 *[[1833]] - [[Slavery]] abolished in the British colonies
94737 *[[1839]] - The [[United Kingdom|UK]] captures [[Hong Kong]]
94738 *[[1864]] - The Union Navy captures Fort Morgan, [[Alabama]], thus breaking [[Confederate States of America|Confederate]] dominance of all ports on the [[Gulf of Mexico]]
94739 *[[1866]] - [[Austro-Prussian War]] ends with the [[Treaty of Prague]]
94740 *[[1889]] - First [[radio|wireless]] message from a ship to the shore received.
94741 *[[1896]] - First Cry of the [[Philippine Revolution]] is made in Pugad Lawin ([[Quezon City]]), in the province of [[Manila]]
94742 *[[1904]] - The [[tire chain|automobile tire chain]] is patented.
94743 *[[1914]] - [[Japan]] declares war on [[Germany]] and bombs [[Qingdao]], [[China]].
94744 *[[1924]] - The distance between [[Earth]] and [[Mars (planet)|Mars]] is the smallest since the 10th century.
94745 *[[1927]] - [[Italy|Italian]] [[anarchist]]s [[Sacco and Vanzetti]] are executed in [[Boston, Massachusetts]].
94746 *[[1929]] - Arabs attack Jews in Israel
94747 *[[1939]] - [[World War II]]: [[Germany]] and the [[Soviet Union]] sign a non-aggression treaty, the [[Molotov-Ribbentrop Pact]]. In a secret addition to the pact, [[Baltic states]], [[Finland]] and [[Poland]] are divided between the two nations.
94748 *[[1940]] - World War II: The Germans start bombing [[London]].
94749 *[[1942]] - World War II: Beginning of the [[Battle of Stalingrad]]
94750 *[[1943]] - World War II: [[Kharkov]] liberated.
94751 *[[1944]] - World War II: [[Marseille]] liberated.
94752 *1944 - World War II: [[Michael of Romania|King Michael of Romania]] dismisses the pro-[[Nazi]] government of [[Ion Antonescu|General Antonescu]]. Romania switches sides from the Axis to the Allies.
94753 *1944 - A [[United States Air Force|US Army Air Force]] B-24 Liberator bomber crashes into a school in [[Freckleton]], [[England]] killing 61 people.
94754 *1944 - World War II: [[Ion Antonescu]], prime minister of [[Romania]], is arrested and a new gouverment is established. [[Romania]] exits the war against [[Russia]] joining the [[Allies]].
94755 *[[1947]] - The Maynard Midgets beat Lock Haven 16-7 to win the first-ever [[Little League]] World Series championship.
94756 *[[1948]] - [[World Council of Churches]] is formed.
94757 *[[1952]] - The [[Arab League]] goes into effect.
94758 *[[1958]] - [[Chinese Civil War]]: The [[Second Taiwan Strait crisis]] begins with the [[People's Liberation Army]]'s bombardment of [[Quemoy]].
94759 *[[1960]] - In [[Equatorial Guinea]], the world's largest [[frog]] (3.3 kg) is caught.
94760 *[[1962]] - First live [[television]] connection between the [[United States]] and [[Europe]], via the [[Telstar]] satellite.
94761 *[[1966]] - [[Lunar Orbiter 1]] takes the first photograph of [[Earth]] from orbit around the [[Moon]].
94762 *[[1968]] - [[Ringo Starr]] temporarily quits [[The Beatles]]
94763 *[[1973]] - The [[Intelsat]] communication satellite is launched.
94764 *[[1975]] - Successful [[Communism|Communist]] coup in [[Laos]]
94765 *[[1976]] - A major [[earthquake]] in [[China]] kills thousands of people.
94766 *[[1979]] - [[Soviet Union|Soviet]] dancer [[Alexander Godunov]] defects to the [[United States]].
94767 *[[1985]] - [[Hans Tiedge]], top counter-spy of [[West Germany]], defects to [[East Germany]].
94768 *[[1987]] - Heavy rains and floods in [[Bangladesh]] kill hundreds of victims.
94769 *[[1989]] - [[Singing Revolution]]: two million people from [[Estonia]], [[Latvia]] and [[Lithuania]] stand on the Vilnius-Tallinn road, holding hands ([[Baltic way]]).
94770 *1989 - All of [[Australia]]'s 1,645 domestic airline pilots resign after the airlines threaten to sack them and sue them over a dispute.
94771 *[[1990]] - [[Saddam Hussein]] appears on Iraqi state television with a number of Western &quot;guests&quot; (actually hostages to try to prevent the [[Gulf War]]).
94772 *1990 - [[Armenia]] declares its independence from the [[Soviet Union]].
94773 *1990 - [[West Germany]] and [[East Germany]] announce that they will unite on [[October 3]].
94774 *[[1992]] - [[Hurricane Andrew]] hits South [[Florida]].
94775 *[[1996]] - [[Osama bin Laden]] issues message entitled 'A declaration of war against the Americans occupying the land of the two holy places'
94776 *[[1998]] - That 70's Show pilot episode aired on the FOX T.V. Network
94777 *[[2000]] - A [[Gulf Air]] [[Airbus A320]] crashes into the [[Persian Gulf]] near [[Manama, Bahrain]], killing 143
94778 *2000 - [[Nicaragua]] becomes a member of the [[Berne Convention for the Protection of Literary and Artistic Works|Berne Convention]] [[copyright]] [[treaty]]. This essentially [[deprecated]] the [[Buenos Aires Convention]] treaty, because as of this date, all members of the BA Convention were also signatories to Berne.
94779 *[[2005]] - [[TANS Peru Flight 204]] crashes near [[Pucallpa]], [[Peru]], killing 41.
94780
94781 ==Births==
94782 *[[686]] - [[Charles Martel]], grandfather of [[Charlemagne]] (d. [[741]])
94783 *[[1486]] - [[Sigismund von Herberstein]], Austrian diplomat and historian (d. [[1566]])
94784 *[[1524]] - [[François Hotman]], French lawyer and writer (d. [[1590]])
94785 *[[1623]] - [[Stanisław Lubieniecki]], Polish astronomer (d. [[1675]])
94786 *[[1724]] - [[Abraham Yates]], American Continental Congressman (d. [[1796]])
94787 *[[1741]] - [[Jean-François de Galaup, count de La PÊrouse]], French explorer (d. [[1788]])
94788 *[[1754]] - King [[Louis XVI of France]] (d. [[1792]])
94789 *[[1769]] - [[Georges Cuvier]], French biologist and statesman (d. [[1832]])
94790 *[[1783]] - [[William Tierney Clark]], English civil engineer (d. [[1852]])
94791 *[[1785]] - [[Oliver Hazard Perry]], U.S. naval officer (d.[[1819]])
94792 *[[1805]] - [[Anton von Schmerling]], Austrian statesman (d. [[1893]])
94793 *[[1829]] - [[Moritz Cantor]], German mathematician (d.[[1920]])
94794 *[[1847]] - [[Sarah Frances Whiting]], American physicist and astronomer (d. [[1927]])
94795 *[[1849]] - [[William Ernest Henley]], British poet, critic, and editor (d. [[1903]])
94796 *[[1852]] - [[Arnold Toynbee]], English economist and social reformer (d.[[1883]])
94797 *[[1864]] - [[Eleftherios Venizalos]], [[Prime Minister of Greece]] (d.[[1936]])
94798 *[[1869]] - [[Edgar Lee Masters]], American author (d. [[1950]])
94799 *[[1875]] - [[William Eccles]], English radio pioneer (d. [[1966]])
94800 *[[1880]] - [[Alexander Grin]], Russian writer (d. [[1932]])
94801 *[[1883]] - [[Jonathan Mayhew Wainwright IV]], U.S. general (d. [[1953]])
94802 *[[1884]] - [[Will Cuppy]], American humorist (d. [[1949]])
94803 *[[1900]] - [[Ernst Krenek]], Austrian-born composer (d. [[1991]])
94804 *[[1901]] - [[John Sherman Cooper]], U.S. Senator from Kentucky (d. [[1991]])
94805 *[[1903]] - [[William Primrose]], Scottish violist (d. [[1982]])
94806 *[[1905]] - [[Constant Lambert]], British composer (d. [[1951]])
94807 *[[1911]] - [[Birger Ruud]], Norwegian athelete (d. [[1998]])
94808 *[[1912]] - [[Gene Kelly]], American dancer and actor (d. [[1996]])
94809 *[[1917]] - [[Tex Williams]], American singer (d. [[1985]])
94810 *[[1921]] - [[Kenneth Arrow]], American economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner
94811 *[[1922]] - [[George Kell]], baseball player
94812 *[[1923]] - [[Edgar F. Codd]], English computer scientist (d. [[2003]])
94813 *[[1924]] - [[Ephraim Kishon]], Israeli writer (d. [[2005]])
94814 *1924 - [[Robert Solow]], American economist, [[Nobel Prize in Economics|Nobel Prize]] laureate
94815 *[[1927]] - [[Dick Bruna]], Dutch illustrator
94816 *[[1929]] - [[Vera Miles]], American actress
94817 *[[1930]] - [[Michel Rocard]], [[Prime Minister of France]]
94818 *[[1931]] - [[Hamilton O. Smith]], American microbiologist, recipient of the [[Nobel Prize in Physiology or Medicine]]
94819 *[[1932]] - [[Houari Boumedienne]], [[President of Algeria]] (d. [[1978]])
94820 *1932 - [[Mark Russell]], American comedian, musician, and political commentator
94821 *[[1933]] - [[Robert Curl]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate
94822 *1933 - [[Pete Wilson]], Governor of California
94823 *[[1934]] - [[Barbara Eden]], American actress
94824 *1934 - [[Sonny Jurgensen]], American football player
94825 *[[1936]] - [[Henry Lee Lucas]], American serial killer (d. [[2001]])
94826 *[[1943]] - [[Nelson DeMille]], American novelist
94827 *[[1947]] - [[Keith Moon]], English singer and drummer ([[The Who]]) (d. [[1978]])
94828 *[[1947]] - [[David Robb]], British actor
94829 *[[1949]] - [[Shelley Long]], American actress
94830 *1949 - [[Rick Springfield]], Australian singer and actor
94831 *[[1951]] - [[Akhmad Kadyrov]], President of Chechnya (d. [[2004]])
94832 *1951 - [[Queen Noor]] of Jordan
94833 *[[1952]] - [[Vicky Leandros]], Greek singer
94834 *[[1953]] - [[Bobby G]], British singer ([[Bucks Fizz]])
94835 *[[1956]] - [[Andreas Floer]], German mathematician (d. [[1991]])
94836 *[[1963]] - [[Hans-Henning Fastrich]], German field hockey player
94837 *1963 - [[Kenny Wallace]], American race car driver
94838 *[[1965]] - [[Roger Avary]], Academy Award Winning writer/director/producer
94839 *[[1966]] - [[Rik Smits]], Dutch basketball player
94840 *[[1969]] - [[Keith Tyson]], Turner prize-winning English artist
94841 *1969 - [[Jeremy Schaap]], American sportswriter
94842 *[[1970]] - [[Jay Mohr]], American actor and comedian
94843 *1970 - [[River Phoenix]], American actor (d. [[1993]])
94844 *1970 - [[Fred Durst]], American singer
94845 *[[1974]] - [[Ray Park]], British actor
94846 *[[1975]] - [[Eliza Carthy]], English singer and fiddler
94847 *[[1978]] - [[Kobe Bryant]], American basketball player
94848 *1978 - [[Julian Casablancas]], American musician
94849 *[[1982]] - [[Natalie Coughlin]], American olympic swimmer
94850 *[[1982]] - [[YTCracker]], American musician
94851 *[[1984]] - [[Glen Johnson (footballer)|Glen Johnson]], English footballer
94852 *[[1988]] - [[Niki Leinso]], Croatian singer and songwriter
94853
94854 ==Deaths==
94855 *[[93]] - [[Gnaeus Julius Agricola]], Roman Governor of Britain (b. [[40]])
94856 *[[634]] - [[Abu Bakr]], Arabian caliph
94857 *[[1176]] - [[Emperor Rokujo]] of Japan (b. [[1164]])
94858 *[[1305]] - [[William Wallace]], Scottish patriot (executed)
94859 *[[1387]] - King [[Olav IV of Norway]] (b. [[1370]])
94860 *[[1507]] - [[Jean Molinet]], French writer (b. [[1435]])
94861 *[[1519]] - [[Philibert Berthelier]], Swiss patriot
94862 *[[1540]] - [[Guillaume BudÊ]], French scholar
94863 *[[1591]] - [[Luis Ponce de LeÃŗn]], Spanish poet and mystic (b. [[1527]])
94864 *[[1618]] - [[Gerbrand Adriaensz Bredero]], Dutch writer (b. [[1585]])
94865 *[[1628]] - [[George Villiers, 1st Duke of Buckingham]], English statesman (b. [[1592]])
94866 *[[1723]] - [[Increase Mather]], New England Puritan minister (b. [[1639]])
94867 *[[1618]] - [[Gerbrand Adriaensz Bredero]], Dutch writer (b. [[1585]])
94868 *[[1652]] - [[John Byron, 1st Baron Byron]], English royalist politician (b. [[1600]])
94869 *[[1806]] - [[Charles Augustin de Coulomb]], French physicist (b. [[1736]])
94870 *[[1813]] - [[Alexander Wilson]], Scottish-born ornithologist (b. [[1766]])
94871 *[[1819]] - [[Oliver Hazard Perry]], American naval officer (b. [[1785]])
94872 *[[1866]] - [[Auguste Barthelemy]], French poet (b. [[1796]])
94873 *[[1926]] - [[Rudolph Valentino]], Italian actor (b. [[1895]])
94874 *[[1927]] - [[Nicola Sacco]], Italian anarchist (executed) (b. [[1891]])
94875 *1927 - [[Bartolomeo Vanzetti]], Italian anarchist (executed) (b. [[1888]])
94876 *[[1937]] - [[Albert Roussel]], French composer (b. [[1869]])
94877 *[[1955]] - [[Reginald Tate]], British actor (b. [[1896]])
94878 *[[1960]] - [[Oscar Hammerstein II]], American lyricist (b. [[1895]])
94879 *[[1962]] - [[Walter Anderson]], German folklorist (b. [[1885]])
94880 *1962 - [[Hoot Gibson]], American actor (b. [[1892]])
94881 *[[1966]] - [[Francis X. Bushman]], American actor (b. [[1883]])
94882 *[[1974]] - [[Roberto Assagioli]], Italian psychiatrist (b. [[1888]])
94883 *[[1982]] - [[Stanford Moore]], American biochemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1913]])
94884 *[[1997]] - [[John Kendrew]], British molecular biologist, recipient of the [[Nobel Prize in Chemistry]] (b. [[1917]])
94885 *[[1999]] - [[James White (author)|James White]], Northern Irish science fiction writer (b. [[1928]])
94886 *[[2001]] - [[Peter Maas]], American novelist (b. [[1929]])
94887 *[[2002]] - [[Hoyt Wilhelm]], baseball player (b. [[1922]])
94888 *[[2003]] - [[Imperio Argentina]], Argentine singer and actress (b. [[1906]])
94889 *2003 - [[Bobby Bonds]], baseball player and manager (b. [[1946]])
94890 *2003 - [[Jack Dyer]], Australian footballer (b. [[1913]])
94891 *2003 - [[John Geoghan]], American Catholic priest
94892 *[[2005]] - [[Brock Peters]], American actor (b. [[1927]])
94893
94894 ==Holidays and observances==
94895 *[[Roman festivals]] - [[Vulcanalia]]
94896 *[[Calendar of Saints|RC Saints]] - [[Saint Rose of Lima]]
94897 *[[Romania]] - [[Liberation Day]] ([[1944]])
94898 *[[Swaziland]] - [[Umhlanga Day]]
94899 *[[Astrology]] - First day of sun sign [[Virgo]]
94900
94901 == Fiction ==
94902 *[[Squall Leonhart]]'s birthday (from [[Final Fantasy VIII]]).
94903 *[[Temari (Naruto)|Temari's]] birthday (from [[Naruto]]).
94904
94905 ==External links==
94906 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/23 BBC: On This Day]
94907
94908 ----
94909
94910 [[August 22]] - [[August 24]] - [[July 23]] - [[September 23]] -- [[historical anniversaries|listing of all days]]
94911
94912 {{months}}
94913
94914 [[af:23 Augustus]]
94915 [[ar:23 ØŖØēØŗØˇØŗ]]
94916 [[an:23 d'agosto]]
94917 [[ast:23 d'agostu]]
94918 [[bg:23 авĐŗŅƒŅŅ‚]]
94919 [[be:23 ĐļĐŊŅ–ŅžĐŊŅ]]
94920 [[bs:23. august]]
94921 [[ca:23 d'agost]]
94922 [[ceb:Agosto 23]]
94923 [[cv:ÇŅƒŅ€ĐģĐ°, 23]]
94924 [[co:23 d'aostu]]
94925 [[cs:23. srpen]]
94926 [[cy:23 Awst]]
94927 [[da:23. august]]
94928 [[de:23. August]]
94929 [[et:23. august]]
94930 [[el:23 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
94931 [[es:23 de agosto]]
94932 [[eo:23-a de aÅ­gusto]]
94933 [[eu:Abuztuaren 23]]
94934 [[fo:23. august]]
94935 [[fr:23 aoÃģt]]
94936 [[fy:23 augustus]]
94937 [[ga:23 LÃēnasa]]
94938 [[gl:23 de agosto]]
94939 [[ko:8ė›” 23ėŧ]]
94940 [[hr:23. kolovoza]]
94941 [[io:23 di agosto]]
94942 [[id:23 Agustus]]
94943 [[ia:23 de augusto]]
94944 [[ie:23 august]]
94945 [[is:23. ÃĄgÃēst]]
94946 [[it:23 agosto]]
94947 [[he:23 באוגוסט]]
94948 [[jv:23 Agustus]]
94949 [[ka:23 აგვისáƒĸო]]
94950 [[csb:23 zÊlnika]]
94951 [[ku:23'ÃĒ gelawÃĒjÃĒ]]
94952 [[lt:RugpjÅĢčio 23]]
94953 [[lb:23. August]]
94954 [[hu:Augusztus 23]]
94955 [[mk:23 авĐŗŅƒŅŅ‚]]
94956 [[ms:23 Ogos]]
94957 [[nap:23 'e aÚsto]]
94958 [[nl:23 augustus]]
94959 [[ja:8月23æ—Ĩ]]
94960 [[no:23. august]]
94961 [[nn:23. august]]
94962 [[oc:23 d'agost]]
94963 [[pl:23 sierpnia]]
94964 [[pt:23 de Agosto]]
94965 [[ro:23 august]]
94966 [[ru:23 авĐŗŅƒŅŅ‚Đ°]]
94967 [[sco:23 August]]
94968 [[sq:23 Gusht]]
94969 [[scn:23 di austu]]
94970 [[simple:August 23]]
94971 [[sk:23. august]]
94972 [[sl:23. avgust]]
94973 [[sr:23. авĐŗŅƒŅŅ‚]]
94974 [[fi:23. elokuuta]]
94975 [[sv:23 augusti]]
94976 [[tl:Agosto 23]]
94977 [[tt:23. August]]
94978 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 23]]
94979 [[th:23 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
94980 [[vi:23 thÃĄng 8]]
94981 [[tr:23 Ağustos]]
94982 [[uk:23 ŅĐĩŅ€ĐŋĐŊŅ]]
94983 [[wa:23 d' awousse]]
94984 [[war:Agosto 23]]
94985 [[zh:8月23æ—Ĩ]]
94986 [[pam:Agostu 23]]</text>
94987 </revision>
94988 </page>
94989 <page>
94990 <title>August 24</title>
94991 <id>1629</id>
94992 <revision>
94993 <id>42102153</id>
94994 <timestamp>2006-03-03T21:13:07Z</timestamp>
94995 <contributor>
94996 <username>Squideshi</username>
94997 <id>202826</id>
94998 </contributor>
94999 <comment>/* Events */ Treaty with the Ottawa, etc.</comment>
95000 <text xml:space="preserve">{| style=&quot;float:right;&quot;
95001 |-
95002 |{{AugustCalendar}}
95003 |-
95004 |{{ThisDateInRecentYears|Month=August|Day=24}}
95005 |}
95006 '''[[August 24]]''' is the 236th day of the year in the [[Gregorian Calendar]] (237th in leap years), with 129 days remaining.
95007
95008 ==Events==
95009 * [[49 BC]] - [[Julius Caesar]]'s general Gaius Curio is defeated in the [[Second Battle of the Bagradas River]] by the [[Numidians]] under Attius Varus and King Juba of [[Numidia]]. Curio is slain in battle.
95010 * AD [[79]] - [[Mount Vesuvius]] erupts. The cities of [[Pompeii]], [[Herculaneum]], and [[Stabiae]] are buried in volcanic ash.
95011 * [[410]] - The [[Visigoths]] under [[Alaric I|Alaric]] sack [[Rome]] for three days.
95012 * [[1215]] - [[Pope Innocent III]] declares the [[Magna Carta]] invalid.
95013 * [[1349]] - Six thousand Jews are killed in [[Mainz]] because they are blamed for the [[bubonic plague]].
95014 * [[1391]] - Jews massacred in [[Palma de Mallorca]].
95015 * [[1456]] - The printing of the [[Gutenberg Bible]] is completed.
95016 * [[1511]] - [[Alfonso de Albuquerque]] of [[Portugal]] conquers the [[Sultanate of Malacca]].
95017 * [[1572]] - [[Saint Bartholomews Day Massacre|Saint Bartholomew's Day Massacre]]: On the orders of king [[Charles IX of France]], a massacre of [[Huguenot]]s (French [[Protestant]]s) begins.
95018 * [[1608]] - The first official British representative to [[India]] lands in [[Surat]].
95019 * [[1662]] - [[Act of Uniformity]] requires [[England]] to accept the [[Book of Common Prayer]].
95020 * [[1682]] - [[William Penn]] receives the area that is now the state of [[Delaware]], and adds it to his colony of [[Pennsylvania]].
95021 * [[1690]] - [[Kolkata|Calcutta]], [[India]] is founded.
95022 * [[1814]] - British troops invade [[Washington, D.C.]] and burn down the [[White House]] and several other buildings.
95023 * [[1816]] - The [[Treaty with the Ottawa, etc.]] is signed in [[Saint Louis, Missouri|St. Louis]], [[Missouri]].
95024 * [[1821]] - The [[Treaty of CÃŗrdoba]] is signed in [[CÃŗrdoba, Veracruz|CÃŗrdoba]], now in [[Veracruz (state)|Veracruz]], [[Mexico]], concluding the [[Mexican War of Independence]] from [[Spain]].
95025 * [[1831]] - [[Charles Darwin]] is asked to travel on [[HMS Beagle|HMS ''Beagle'']].
95026 * [[1847]] - [[Charlotte BrontÃĢ]] finishes ''Jane Eyre''.
95027 * [[1853]] - [[Potato chips]] are first prepared.
95028 * [[1857]] - The [[Panic of 1857]] begins, setting off one of the most severe economic crises in U.S. history.
95029 * [[1858]] - In [[Richmond, Virginia]], 90 blacks are arrested for learning.
95030 * [[1891]] - [[Thomas Edison]] patents the motion picture camera.
95031 * [[1909]] - Workers start pouring concrete for the [[Panama Canal]].
95032 * [[1912]] - [[Alaska]] becomes a [[United States]] territory.
95033 * [[1914]] - [[World War I]]: German troops capture [[Namur (city)|Namur]].
95034 * [[1929]] - [[Turkey]] and [[Iran|Persia]] sign a friendship treaty.
95035 * 1929 - [[Riots in Palestine of 1929]]: 18 Jews in Safed, 67 in Hebron, and 22 in Jerusalem killed by Arab Palestinians
95036 * [[1931]] - [[France]] and the [[Soviet Union]] sign a neutrality/no attack treaty.
95037 *[[1931]] - Resignation of the [[United Kingdom]]'s [[Second Labour Government]]. Formation of the [[UK National Government]].
95038 * [[1932]] - [[Amelia Earhart]] is the first woman to fly across the [[United States]] non-stop (from [[Los Angeles, California|Los Angeles]] to [[Newark, New Jersey]]).
95039 * [[1936]] - The [[Australian Antarctic Territory]] is created.
95040 * [[1942]] - [[World War II]]: The [[Battle of the East Solomon Islands]]. [[Japan]]ese [[aircraft carrier]] ''[[Ryuho]]'' is sunk.
95041 * [[1944]] - World War II: French and Allied troops start the attack on [[Paris]].
95042 * [[1949]] - The treaty creating [[NATO]] goes into effect.
95043 * [[1950]] - [[Edith Sampson]] becomess the first black U.S. delegate to the [[UN]].
95044 * [[1954]] - The [[Communist Control Act]] goes into effect. The [[American Communist Party]] is outlawed.
95045 * [[1954]] - [[GetÃēlio Dornelles Vargas]], president of Brazil, commit suicide and is succeeded by [[JoÃŖo CafÊ Filho]].
95046 * [[1960]] - A temperature of &amp;minus;88°C (&amp;minus;127°F) is measured in [[Vostok, Antarctica|Vostok]], [[Antarctica]] &amp;mdash; a world-record low.
95047 * [[1963]] - The 200-metre freestyle is swum in less than 2 minutes for the first time by [[Don Schollander]] (1:58).
95048 * [[1967]] - Led by [[Abbie Hoffman]], a group of [[hippies]] temporarily disrupt trading at the [[NYSE]] by throwing dollar bills from the viewing gallery, causing a cease in trading as the brokers scramble to grab them up.
95049 * [[1968]] - [[France]] explodes its first [[hydrogen bomb]], thus becoming the world's fifth nuclear power.
95050 * [[1971]] - [[Pink Floyd]] performs their most famous concert, in an abandoned Pompeii amphitheatre on the 1892nd anniversary of the infamous disappearance of Pompeii.
95051 * [[1979]] - In [[Central Park]], [[New York]] a concert is given by [[The Cars]].
95052 * [[1981]] - [[Mark David Chapman]] is sentenced to 20 years to life in prison for murdering [[John Lennon]].
95053 * [[1989]] - [[Colombia]]n drug barons declare &quot;total war&quot; on the Colombian government.
95054 * 1989 - [[Cincinnati Reds]] manager [[Pete Rose]] is banned from [[baseball]] for gambling by Commissioner [[A. Bartlett Giamatti]]
95055 * 1989 - [[Voyager 2]] passes [[Neptune (planet)|Neptune]].
95056 * [[1990]] - A judge rules that [[Judas Priest]] are not responsible for the deaths of two youths who committed [[suicide]] after listening to the band's music.
95057 * 1990 - [[SinÊad O'Connor]] refuses to perform at the Garden State Arts Plaza in [[Holmdel, New Jersey]] if &quot;[[The Star-Spangled Banner]]&quot; is played before her show, as is customary.
95058 * [[1991]] - [[Mikhail Gorbachev]] resigns as head of the [[Communist Party of the Soviet Union]].
95059 * 1991 - [[Ukraine]] declares itself independent from the [[Soviet Union]].
95060 * [[1992]] - Diplomatic relations are established between the [[People's Republic of China]] and [[South Korea]].
95061 * 1992 - [[Hurricane Andrew]] hits [[South Florida]].
95062 * [[1994]] - Initial accord between [[Israel]] and the [[PLO]] about partial self-rule of the [[Palestinian]]s on the [[West Bank]].
95063 * [[1995]] - [[Windows 95]] is released.
95064 * [[1998]] - The [[Netherlands]] is selected as the site for the trial of the two [[Libya]]n suspects of the 1988 PanAm bombing.
95065 * [[2001]] - [[Air Transat Flight 236]] runs out of fuel over the Atlantic Ocean (en route to Lisbon from New York) and makes an emergency landing in the Azores.
95066 * [[2004]] - Two airliners in [[Russia]], carrying a total of 89 passengers, crash within minutes of each other after flying out of [[Domodedovo International Airport]], near [[Moscow]], leaving no survivors. Authorities suspect suicide attacks by rebels from the breakaway republic of [[Chechnya]] to be the cause of the crashes.
95067
95068 ==Births==
95069 * [[1113]] - [[Geoffrey of Anjou|Geoffrey Plantagenet]], Count of Anjou (b. [[1113]])
95070 * [[1198]] - King [[Alexander II of Scotland]] (d. [[1249]])
95071 * [[1358]] - King [[John I of Castile]] (d. [[1390]])
95072 * [[1393]] - [[Arthur III, Duke of Brittany]] (d. [[1458]])
95073 *[[1552]] - [[Lavinia Fontana]], Italian painter (d. [[1614]])
95074 *[[1580]] - [[John Taylor (poet)|John Taylor]], English poet (d. [[1654]])
95075 * [[1591]] - [[Robert Herrick (poet)|Robert Herrick]], English poet (d. [[1674]])
95076 * [[1635]] - [[Peder Griffenfeld]], Danish statesman (d. [[1699]])
95077 * [[1669]] - [[Alessandro Marcello]], Italian composer (d. [[1747]])
95078 * [[1759]] - [[William Wilberforce]], English campaigner against slavery (d. [[1833]])
95079 * [[1772]] - King [[William I of the Netherlands]] (1814-1840)
95080 * [[1787]] - [[James Weddell]], Antarctica explorer (d. [[1834]])
95081 * [[1817]] - [[Aleksey Konstantinovich Tolstoy]], Russian writer (d. [[1875]])
95082 * [[1837]] - [[ThÊodore Dubois]], French composer and teacher (d. [[1924]])
95083 * [[1852]] - [[Deacon White]], baseball player (d. [[1919]])
95084 * [[1863]] - [[Dragutin Lerman]], Croatian explorer (d. [[1918]])
95085 * [[1865]] - King [[Ferdinand I of Romania]] (d. [[1927]])
95086 * [[1880]] - [[Joshua Lionel Cowen]], American inventor and entrepreneur (d. [[1965]])
95087 * [[1884]] - [[Earl Derr Biggers]], American author (d. [[1933]])
95088 * [[1887]] - [[Harry Hooper]], baseball player (d. [[1974]])
95089 * [[1890]] - [[Duke Kahanamoku]], Hawaiian swimmer and surfer (d. [[1968]])
95090 * 1890 - [[Jean Rhys]], Dominican writer (d. [[1979]])
95091 * [[1898]] - [[Malcolm Cowley]], American literary critic, writer, and editor (d. [[1989]])
95092 * [[1899]] - [[Jorge Luis Borges]], Argentine writer (d. [[1986]])
95093 * [[1901]] - [[Preston Foster]], American actor (d. [[1970]])
95094 * [[1904]] - [[Alice White]], American film actress (d. [[1983]])
95095 * [[1915]] - [[James Tiptree, Jr.]], American writer (d. [[1987]])
95096 * [[1916]] - [[Hal Smith (actor)|Hal Smith]], American actor and voice actor (d. [[1994]])
95097 *[[1922]] - [[RenÊ LÊvesque]], Premier of Quebec (d. [[1987]])
95098 *[[1923]] - [[Arthur Jensen]], American psychologist
95099 *[[1927]] - [[Harry Markowitz]], American economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner
95100 *[[1929]] - [[Yasser Arafat]], Palestinian leader, recipient of the [[Nobel Peace Prize]] (d. [[2004]])
95101 *[[1934]] - [[Kenny Baker]], English actor
95102 *[[1936]] - [[A. S. Byatt]], English novelist
95103 *[[1938]] - [[HalldÃŗr BlÃļndal]], Icelandic politician
95104 *1938 - [[David Freiberg]], American bassist ([[Quicksilver Messenger Service]] and [[Jefferson Starship]])
95105 *[[1943]] - [[John Cipollina]], American guitarist ([[Quicksilver Messenger Service]]) (d. [[1989]])
95106 *[[1944]] - [[Jim Capaldi]], British drummer, singer, and songwriter ([[Traffic]]) (d. [[2005]])
95107 *[[1945]] - [[Ken Hensley]], English musician ([[Uriah Heep (band)|Uriah Heep]])
95108 *1945 - [[Vince McMahon]], American professional wrestling entrepreneur
95109 *[[1947]] - [[Paulo Coelho]], Brazilian author
95110 *[[1948]] - [[Jean-Michel Jarre]], French musician
95111 *[[1951]] - [[Orson Scott Card]], American novelist
95112 *[[1954]] - [[Libby Mooney]],British Science educator
95113 *[[1956]] - [[John Culberson]], American politician
95114 *[[1957]] - [[Stephen Fry]], English comedian, author, and actor
95115 *[[1958]] - [[Steve Guttenberg]], American actor
95116 *[[1958]] - [[Tracy Harris]], American artist
95117 *[[1960]] - [[Cal Ripken, Jr.]], baseball player
95118 *[[1962]] - [[Craig Kilborn]], American talk show host
95119 *1962 - [[David Koechner]], American actor
95120 *[[1963]] - [[John Bush]], American singer ([[Anthrax (band)|Anthrax]])
95121 *1963 - [[Hideo Kojima]], Japanese video game director
95122 *[[1964]] - [[Salizhan Sharipov]], cosmonaut
95123 *[[1965]] - [[Marlee Matlin]], American actress
95124 *1965 - [[Reggie Miller]], American basketball player
95125 *[[1968]] - [[Shoichi Funaki]], Japanese professional wrestler
95126 *1968 - [[Andreas Kisser]], Brazilian guitarist ([[Sepultura]])
95127 *[[1973]] - [[David Chappelle]], American actor and comedian
95128 *1973 - [[Inge de Bruijn]], Dutch swimmer
95129 *1973 - [[Carmine Giovinazzo]], American actor
95130 *[[1974]] - [[Jennifer Lien]], American actress
95131 *[[1978]] - [[Rafael Furcal]], Dominican [[Major League Baseball]] player
95132 *[[1981]] - [[Chad Michael Murray]], American actor
95133 *[[1983]] - [[Christopher Parker]], British actor
95134 *[[1988]] - [[Rupert Grint]], English actor
95135
95136 ==Deaths==
95137 *[[79]] - [[Pliny the Elder]], Roman writer and naturalist (b. [[23]])
95138 *[[1042]] - [[Michael V]], [[Byzantine Emperor]]) (b. [[1015]])
95139 *[[1103]] - King [[Magnus III of Norway]] (b. [[1073]])
95140 *[[1217]] - [[Eustace the Monk]], French mercenary and pirate
95141 *[[1540]] - [[Girolamo Francesco Maria Mazzola]], Italian painter (b. [[1503]])
95142 *[[1542]] - [[Gasparo Contarini]], Italian diplomat and cardinal (b. [[1483]])
95143 *[[1572]] - Victims of the St. Bartholomew's Day Massacre:
95144 ** [[Gaspard de Coligny]], French Huguenot leader (b. [[1519]])
95145 ** [[Petrus Ramus|Pierre de la RamÊe]], French humanist (b. [[1515]])
95146 ** [[Charles de TÊligny]], French Huguenot soldier
95147 *[[1595]] - [[Thomas Digges]], English astronomer (b. [[1546]])
95148 *[[1647]] - [[Nicholas Stone]], English sculptor and architect (b. [[1586]])
95149 *[[1664]] - [[Maria Cunitz]], Silesian astronomer
95150 *[[1679]] - [[Jean François Paul de Gondi, cardinal de Retz]], French churchman and agitator (b. [[1614]])
95151 *[[1680]] - [[Thomas Blood]], Irish-born thief of the British crown jewels (b. [[1618]])
95152 *[[1683]] - [[John Owen (theologian)|John Owen]], English non-conformist theologian (b. [[1616]])
95153 *[[1759]] - [[Ewald Christian von Kleist]], German poet (b. [[1715]])
95154 *[[1779]] - [[Kosmas Aitolos]], Greek Orthodox martyr (b. [[1714]])
95155 *[[1831]] - [[August von Gneisenau]], Prussian field marshal (b. [[1760]])
95156 *[[1832]] - [[Nicolas LÊonard Sadi Carnot]], French mathematician (b. [[1796]])
95157 *[[1888]] - [[Rudolf Clausius]], German physicist (b. [[1822]])
95158 *[[1921]] - [[Nikolay Gumilyov]], Russian poet (b. [[1886]])
95159 *[[1841]] - [[Theodore Edward Hook]], English author (b. [[1788]])
95160 *[[1940]] - [[Paul Gottlieb Nipkow]], German television pioneer (b. [[1860]])
95161 *[[1946]] - [[James Clark McReynolds]], U.S. Supreme Court justice (b. [[1862]])
95162 *[[1954]] - [[GetÃēlio Vargas]], [[President of Brazil]] (b. [[1882]])
95163 *[[1956]] - [[Kenji Mizoguchi]], Japanese film director (b. [[1898]])
95164 *[[1958]] - [[Paul Henry (painter)|Paul Henry]], Northern Irish artist (b. [[1876]])
95165 *[[1967]] - [[Henry J. Kaiser]], American industrialist (b. [[1882]])
95166 *[[1975]] - [[Eamon de Valera]], [[President of Ireland]] (b. [[1882]])
95167 *[[1978]] - [[Louis Prima]], American band leader (b. [[1910]])
95168 *[[1979]] - [[Hanna Reitsch]], German pilot (b. [[1912]])
95169 *[[1985]] - [[Paul Creston]], American composer (b. [[1906]])
95170 *[[1990]] - [[Sergei Dovlatov]], Russian writer (b. [[1941]])
95171 *[[1991]] - [[Bernard Castro]], Italian inventor (b. [[1904]])
95172 *[[1995]] - [[Alfred Eisenstaedt]], German-born photographer (b. [[1898]])
95173 *[[1998]] - [[E.G. Marshall]], American actor (b. [[1910]])
95174 *[[2002]] - [[Hoyt Wilhelm]], baseball player (b. [[1922]])
95175 *[[2003]] - Sir [[Wilfred Thesiger]], British explorer (b. [[1910]])
95176 *[[2004]] - [[Elisabeth KÃŧbler-Ross]], Swiss-born psychiatrist (b. [[1926]])
95177
95178 ==Holidays and observances==
95179 * [[Roman festivals]] - first of the 3 days on which the ''mundus'' was openend
95180 * [[Calendar of Saints|RC Saints]] - Feast day of Saint [[Bartholomew]]
95181 * [[Liberia]]: Flag Day
95182 * [[Sierra Leone]]: President's Birthday
95183 * [[Ukraine]]: National Holiday, independence from Russia (1991)
95184 ==External links==
95185 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/24 BBC: On This Day]
95186
95187 ----
95188
95189 [[August 23]] - [[August 25]] - [[July 24]] - [[September 24]] -- [[historical anniversaries|listing of all days]]
95190
95191 {{months}}
95192
95193 [[af:24 Augustus]]
95194 [[ar:24 ØŖØēØŗØˇØŗ]]
95195 [[an:24 d'agosto]]
95196 [[ast:24 d'agostu]]
95197 [[bg:24 авĐŗŅƒŅŅ‚]]
95198 [[be:24 ĐļĐŊŅ–ŅžĐŊŅ]]
95199 [[bs:24. august]]
95200 [[ca:24 d'agost]]
95201 [[ceb:Agosto 24]]
95202 [[cv:ÇŅƒŅ€ĐģĐ°, 24]]
95203 [[co:24 d'aostu]]
95204 [[cs:24. srpen]]
95205 [[cy:24 Awst]]
95206 [[da:24. august]]
95207 [[de:24. August]]
95208 [[et:24. august]]
95209 [[el:24 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
95210 [[es:24 de agosto]]
95211 [[eo:24-a de aÅ­gusto]]
95212 [[eu:Abuztuaren 24]]
95213 [[fo:24. august]]
95214 [[fr:24 aoÃģt]]
95215 [[fy:24 augustus]]
95216 [[ga:24 LÃēnasa]]
95217 [[gl:24 de agosto]]
95218 [[ko:8ė›” 24ėŧ]]
95219 [[hr:24. kolovoza]]
95220 [[io:24 di agosto]]
95221 [[id:24 Agustus]]
95222 [[ia:24 de augusto]]
95223 [[ie:24 august]]
95224 [[is:24. ÃĄgÃēst]]
95225 [[it:24 agosto]]
95226 [[he:24 באוגוסט]]
95227 [[jv:24 Agustus]]
95228 [[ka:24 აგვისáƒĸო]]
95229 [[csb:24 zÊlnika]]
95230 [[ku:24'ÃĒ gelawÃĒjÃĒ]]
95231 [[lt:RugpjÅĢčio 24]]
95232 [[lb:24. August]]
95233 [[hu:Augusztus 24]]
95234 [[mk:24 авĐŗŅƒŅŅ‚]]
95235 [[ms:24 Ogos]]
95236 [[nap:24 'e aÚsto]]
95237 [[nl:24 augustus]]
95238 [[ja:8月24æ—Ĩ]]
95239 [[no:24. august]]
95240 [[nn:24. august]]
95241 [[oc:24 d'agost]]
95242 [[pl:24 sierpnia]]
95243 [[pt:24 de Agosto]]
95244 [[ro:24 august]]
95245 [[ru:24 авĐŗŅƒŅŅ‚Đ°]]
95246 [[sco:24 August]]
95247 [[sq:24 Gusht]]
95248 [[scn:24 di austu]]
95249 [[simple:August 24]]
95250 [[sk:24. august]]
95251 [[sl:24. avgust]]
95252 [[sr:24. авĐŗŅƒŅŅ‚]]
95253 [[fi:24. elokuuta]]
95254 [[sv:24 augusti]]
95255 [[tl:Agosto 24]]
95256 [[tt:24. August]]
95257 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 24]]
95258 [[th:24 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
95259 [[vi:24 thÃĄng 8]]
95260 [[tr:24 Ağustos]]
95261 [[uk:24 ŅĐĩŅ€ĐŋĐŊŅ]]
95262 [[wa:24 d' awousse]]
95263 [[war:Agosto 24]]
95264 [[zh:8月24æ—Ĩ]]
95265 [[pam:Agostu 24]]</text>
95266 </revision>
95267 </page>
95268 <page>
95269 <title>August 26</title>
95270 <id>1630</id>
95271 <revision>
95272 <id>41944558</id>
95273 <timestamp>2006-03-02T20:17:19Z</timestamp>
95274 <contributor>
95275 <username>Durova</username>
95276 <id>521374</id>
95277 </contributor>
95278 <comment>/* Events */ Sorry, Joan of Arc never entered Paris. The battle she fought at the city wall was September 8.</comment>
95279 <text xml:space="preserve">{| style=&quot;float:right;&quot;
95280 |-
95281 |{{AugustCalendar}}
95282 |-
95283 |{{ThisDateInRecentYears|Month=August|Day=26}}
95284 |}
95285 '''[[August 26]]''' is the 238th day of the year in the [[Gregorian Calendar]] (239th in [[leap year]]s). There are 127 days remaining.
95286
95287 ==Events==
95288 *[[55 BC]] - [[Julius Caesar]] invades [[British Iron Age|Britain]]
95289 *[[1071]] - [[Battle of Manzikert]]: The [[Seljuk Turks]] defeat the [[Byzantine Empire]] at [[Manzikert]]
95290 *[[1278]] - [[Ladislaus IV of Hungary]] and [[Rudolph I of Germany]] defeat [[Premysl Ottokar II]] of [[Bohemia]] in the [[Battle of Marchfield]] near [[DÃŧrnkrut]] in [[Moravia]].
95291 *[[1346]] - [[Hundred Years' War]]: The military supremacy of the English [[longbow]] over the French combination of [[crossbow]] and armoured [[knight]]s is established at the [[Battle of CrÊcy]].
95292 *[[1498]] - [[Michelangelo]] commissioned to carve the [[Michelangelo's Pietà|Pietà]].
95293 *[[1778]] - The first ascent of [[Triglav]], the highest mountain of [[Slovenia]].
95294 *[[1789]] - [[Declaration of the Rights of Man and of the Citizen]] approved by [[Constituent Assembly]] at [[Palace of Versailles]]
95295 *[[1839]] - The ship ''[[Amistad (ship)|Amistad]]'' is captured off [[Long Island]].
95296 *[[1858]] - First news dispatch by [[Telegraphy|telegraph]].
95297 *[[1862]] - [[American Civil War]]: The [[Second Battle of Bull Run]] begins.
95298 *[[1883]] - Eruption of Mount [[Krakatoa]].
95299 *[[1914]] - [[World War I]]: [[Germany|Germans]] defeat [[Russia]]ns in [[Battle of Tannenberg (1914)|Battle of Tannenberg]].
95300 *[[1914]] - World War I: The [[British Expeditionary Force]] briefly checks the German advance at [[Le Cateau-CambrÊsis|Le Cateau]].
95301 *[[1914]] - World War I: The German colony of [[Togoland]] is invaded by French and British forces, who take it after 5 days.
95302 *[[1920]] - [[United States Constitution/Amendment Nineteen|19th amendment]] to U.S. Constitution gives women the right to vote.
95303 *[[1939]] - The first [[Major League Baseball]] game is telecast, a double-header between the [[Cincinnati Reds]] and the [[Los Angeles Dodgers|Brooklyn Dodgers]] at [[Ebbets Field]], in [[Brooklyn, New York]].
95304 *[[1940]] - [[Chad]] is the first French colony to join the Allies under the administration of FÊlix ÉbouÊ, France's first black colonial governor.
95305 *[[1944]] - [[World War II]]: [[Charles de Gaulle]] enters [[Paris]].
95306 *[[1957]] - The [[USSR]] announces the successful test of an [[ICBM]] - a &quot;super longdistance intercontinental multistage ballistic rocket ... a few days ago,&quot; according to Tass Soviet News Agency.
95307 *[[1968]] - [[1968 Democratic National Convention|Democratic National Convention]] opens in [[Chicago, Illinois]]
95308 *[[1968]] - [[The Beatles]]' &quot;[[Hey Jude]]&quot; is released as a [[single (music)|single]] in the United States under the [[Apple Records]] label.
95309 *[[1972]] - [[1972 Summer Olympics|Games of the XX Olympiad]] open in [[Munich]], [[Germany]].
95310 *[[1976]] - [[Raymond Barre]] becomes Prime Minister of [[France]].
95311 *[[1978]] - [[Papal conclave, 1978 (August)]]: [[Pope John Paul I]] is elevated to the [[Papacy]].
95312 *[[1978]] - [[Sigmund Jähn]] becomes first [[Germany|German]] [[astronaut|cosmonaut]] on board of the [[Soyuz 31]] spacecraft.
95313 *[[1986]] - Toxic gas kills 1700 in [[Cameroon]].
95314 *[[1987]] - [[President of the United States|President]] [[Ronald Reagan|Ronald Wilson Reagan]] proclaims [[September 11]], [[1987]] as 9-1-1 [[Emergency telephone number|Emergency Number]] Day.
95315 *[[1988]] - [[Merhan Karimi Nasseri]] arrives at [[Charles de Gaulle International Airport]].
95316 * [[1997]] - [[Beni-Ali massacre]] in [[Algeria]]; 60-100 people killed.
95317 *[[2002]] - [[Los Angeles Dodgers]] pitcher [[Éric GagnÊ]] converts his first of a record 84 consecutive successful save opportunities.
95318 *[[2002]] - [[Earth Summit 2002]] begins in [[Johannesburg, South Africa]].
95319 *[[2003]] - [[Columbia Accident Investigation Board]] releases its final reports on [[Space Shuttle Columbia disaster]].
95320 *[[2005]] - [[Fiji]]'s High Court rules that the island's [[sodomy law]] is unconstitutional.
95321 *[[2005]] - [[Jean Michel Jarre]]'s &quot;[[Space of Freedom]]&quot; concert in [[Gdańsk]], [[Poland]]
95322
95323 ==Births==
95324 *[[1469]] - [[Ferdinand II of Naples]] (d. [[1496]])
95325 *[[1540]] - King [[Magnus of Livonia]] (d. [[1583]])
95326 *[[1676]] - [[Robert Walpole]], [[Prime Minister of the United Kingdom]] (d. [[1745]])
95327 *[[1694]] - [[Elisha Williams]], American rector of Yale College (d. [[1755]])
95328 *[[1736]] - [[Jean-Baptiste L. RomÊ de l'Isle]], French chemist (d. [[1790]])
95329 *[[1743]] - [[Antoine Lavoisier]], French chemist (d. [[1794]])
95330 *[[1775]] - [[William Joseph Behr]], German writer (d. [[1851]])
95331 *[[1792]] - [[Manuel Oribe]], Uruguayan political figure (d. [[1857]])
95332 *[[1850]] - [[Charles Robert Richet]], French physiologist, [[Nobel Prize in Physiology or Medicine|Nobel Prize]] laureate (d. [[1935]])
95333 *[[1873]] - [[Lee DeForest]], American inventor (d. [[1961]])
95334 *[[1874]] - [[Zona Gale]], American novelist (d. [[1938]])
95335 *[[1875]] - [[John Buchan, 1st Baron Tweedsmuir]], Scottish novelist, [[Governor General of Canada]] (d. [[1940]])
95336 *[[1880]] - [[Guillaume Apollinaire]], French poet and art critic (d. [[1918]])
95337 *[[1882]] - [[James Franck]], German-born physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1964]])
95338 *[[1896]] - [[Ivan Mihailov]], Bulgarian revolutionary (d. [[1990]])
95339 *[[1897]] - [[Yoon Boseon]], [[President of South Korea]] (d. [[1990]])
95340 *[[1898]] - [[Peggy Guggenheim]], American art collector (d. [[1979]])
95341 *[[1900]] - [[Hellmuth Walter]], German engineer and inventor (d. [[1980]])
95342 *[[1901]] - [[Maxwell Taylor]], American general (d. [[1987]])
95343 * 1901 - [[Chen Yi (communist)|Chen Yi]], Chinese communist military commander and politician (d. [[1972]])
95344 *[[1904]] - [[Christopher Isherwood]], English-born writer (d. [[1986]])
95345 *[[1906]] - [[Albert Sabin]], American polio researcher (d. [[1993]])
95346 *[[1909]] - [[Jim Davis (actor)|Jim Davis]], American actor (d. [[1981]])
95347 *[[1914]] - [[Julio CortÃĄzar]], Argentine writer (d. [[1984]])
95348 *[[1921]] - [[Benjamin Bradlee]], American journalist
95349 *[[1922]] - [[Irving R. Levine]], American journalist
95350 *[[1923]] - [[Wolfgang Sawallisch]], German conductor and pianist
95351 *[[1934]] - [[Tom Heinsohn]], American basketball player and commentator
95352 *[[1935]] - [[Geraldine Ferraro]], U.S. Vice Presidential candidate
95353 *[[1936]] - [[Yvette Vickers]], American actress
95354 *[[1940]] - [[Don LaFontaine]], American voice actor
95355 *[[1941]] - [[Barbet Schroeder]], Swiss film director
95356 * 1941 - [[Akiko Wakabayashi]], Japanese actress
95357 *[[1942]] - [[Vic Dana]], American singer
95358 *1942 - [[Dennis Turner]], British politician
95359 *[[1944]] - [[Prince Richard, Duke of Gloucester]]
95360 *[[1946]] - [[Valerie Simpson]], American singer
95361 * 1946 - [[Tom Ridge]], first [[United States Secretary of Homeland Security]]
95362 * 1946 - [[Zhou Ji]], education minister of the People's Republic of China
95363 *[[1952]] - [[Michael Jeter]], American actor (d. [[2003]])
95364 *[[1953]] - [[Pat Sharkey]], Northern Irish footballer
95365 *[[1956]] - [[Brett Cullen]], American actor
95366 *[[1957]] - [[Dr. Alban]], Nigerian singer
95367 *[[1960]] - [[Branford Marsalis]], American saxophonist and bandleader
95368 *[[1965]] - [[Chris Burke (baseball player)|Chris Burke]], American actor
95369 *1965 - [[Jon Hensley]], American actor
95370 *[[1966]] - [[Jacques Brinkman]], Dutch field hockey player
95371 *1966 - [[Shirley Manson]], Scottish singer
95372 *[[1971]] - [[Thalía (actress)|Thalía]], Mexican actress
95373 *[[1979]] - [[Jamal Lewis]], American football player
95374 *[[1980]] - [[Macaulay Culkin]], American actor
95375
95376 ==Deaths==
95377 *[[1278]] - King [[Otakar II of Bohemia]]
95378 *[[1346]] - Killed in the [[Battle of CrÊcy]]:
95379 **[[Charles II of Alençon]] (b. [[1297]])
95380 **[[Louis I of Flanders]] (b. [[1304]])
95381 **[[John I, Count of Luxemburg]] (b. [[1296]])
95382 **[[Rudolph, Duke of Lorraine]] (b. [[1320]])
95383 *[[1349]] - [[Thomas Bradwardine]], [[Archbishop of Canterbury]]
95384 *[[1551]] - [[Margareta Leijonhufvud]], queen of [[Gustav I of Sweden]] (b. [[1516]])
95385 *[[1595]] - [[Antonio, Prior of Crato]], claimant to the throne of Portugal (b. [[1531]])
95386 *[[1666]] - [[Frans Hals]], Dutch painter
95387 *[[1714]] - [[Edward Fowler]], English Bishop of Gloucester (b. [[1632]])
95388 *[[1723]] - [[Anton van Leeuwenhoek]], Dutch scientist (b. [[1632]])
95389 *[[1785]] - [[George Germain, 1st Viscount Sackville]], British soldier and politician (b. [[1716]])
95390 *[[1850]] - [[Louis-Philippe of France]] (b. [[1773]])
95391 *[[1915]] - [[John Bunny]] American comedian (b. [[1863]])
95392 *[[1930]] - [[Lon Chaney, Sr.]], American actor (b. [[1883]])
95393 *[[1944]] - [[Adam von Trott zu Solz]], German diplomat opposing the Nazi regime (executed)
95394 *[[1945]] - [[Franz Werfel]], Austrian writer (b. [[1890]])
95395 *[[1958]] - [[Ralph Vaughan Williams]], English composer (b. [[1872]])
95396 *[[1968]] - [[Kay Francis]], American actress (b. [[1899]])
95397 *[[1974]] - [[Charles Lindbergh]], American aviator (b. [[1902]])
95398 *[[1976]] - [[Lotte Lehmann]], German soprano (b. [[1888]])
95399 *[[1978]] - [[Charles Boyer]], French actor (b. [[1899]])
95400 *1978 - [[JosÊ Manuel Moreno]], Argentine footballer (b. [[1916]])
95401 *[[1979]] - [[Mika Waltari]], Finnish author (b. [[1908]])
95402 *[[1980]] - [[Rosa Albach-Retty]], German actress (b. [[1874]])
95403 *1980 - [[Tex Avery]], American cartoonist (b. [[1908]])
95404 *[[1981]] - [[Roger Nash Baldwin]], founder of the American Civil Liberties Union (b. [[1884]])
95405 *[[1986]] - [[Ted Knight]], American actor (b. [[1923]])
95406 *[[1987]] - [[Georg Wittig]], German chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1897]])
95407 *[[1988]] - [[Carlos PaiÃŖo]], Portuguese singer (b. [[1957]])
95408 *[[1989]] - [[Irving Stone]], American author (b. [[1903]])
95409 *[[1990]] - [[Minoru Honda]], Japanese astronomer (b. [[1913]])
95410 *[[1998]] - [[Frederick Reines]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1918]])
95411 *[[2003]] - [[Jim Wacker]], American football coach (b. [[1937]])
95412 *[[2004]] - [[Laura Branigan]], American singer (b. [[1957]])
95413 *[[2005]] - [[Denis D'Amour]], founding member and guitarist of Canadian metal band Voivod. (b. [[1960]])
95414 *2005 - [[Robert Denning]], Interior designer (b. [[1927]])
95415
95416 ==Holidays and observances==
95417 *[[Calendar of Saints|RC saints]] - [[Pope Zephyrinus|St Zephyrinus]], [[Saint Ninian]], [[David Lewis]] (one of the [[Forty Martyrs of England and Wales]])
95418 *[[Namibia]] - Namibia Day or Heroes' Day
95419 *[[Zanzibar]] - [[Sultan's Birthday]]
95420
95421 ==External links==
95422 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/26 BBC: On This Day]
95423
95424 ----
95425
95426 [[August 25]] - [[August 27]] - [[July 26]] - [[September 26]] -- [[historical anniversaries|listing of all days]]
95427
95428 {{months}}
95429
95430 [[af:26 Augustus]]
95431 [[ang:26 WēodmōnaÞ]]
95432 [[ar:26 ØŖØēØŗØˇØŗ]]
95433 [[an:26 d'agosto]]
95434 [[ast:26 d'agostu]]
95435 [[bg:26 авĐŗŅƒŅŅ‚]]
95436 [[be:26 ĐļĐŊŅ–ŅžĐŊŅ]]
95437 [[bs:26. august]]
95438 [[ca:26 d'agost]]
95439 [[ceb:Agosto 26]]
95440 [[cv:ÇŅƒŅ€ĐģĐ°, 26]]
95441 [[co:26 d'aostu]]
95442 [[cs:26. srpen]]
95443 [[cy:26 Awst]]
95444 [[da:26. august]]
95445 [[de:26. August]]
95446 [[et:26. august]]
95447 [[el:26 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
95448 [[es:26 de agosto]]
95449 [[eo:26-a de aÅ­gusto]]
95450 [[eu:Abuztuaren 26]]
95451 [[fo:26. august]]
95452 [[fr:26 aoÃģt]]
95453 [[fy:26 augustus]]
95454 [[ga:26 LÃēnasa]]
95455 [[gl:26 de agosto]]
95456 [[ko:8ė›” 26ėŧ]]
95457 [[hr:26. kolovoza]]
95458 [[io:26 di agosto]]
95459 [[id:26 Agustus]]
95460 [[ia:26 de augusto]]
95461 [[ie:26 august]]
95462 [[is:26. ÃĄgÃēst]]
95463 [[it:26 agosto]]
95464 [[he:26 באוגוסט]]
95465 [[jv:26 Agustus]]
95466 [[ka:26 აგვისáƒĸო]]
95467 [[csb:26 zÊlnika]]
95468 [[ku:26'ÃĒ gelawÃĒjÃĒ]]
95469 [[la:26 Augusti]]
95470 [[lt:RugpjÅĢčio 26]]
95471 [[lb:26. August]]
95472 [[hu:Augusztus 26]]
95473 [[mk:26 авĐŗŅƒŅŅ‚]]
95474 [[ms:26 Ogos]]
95475 [[nap:26 'e aÚsto]]
95476 [[nl:26 augustus]]
95477 [[ja:8月26æ—Ĩ]]
95478 [[no:26. august]]
95479 [[nn:26. august]]
95480 [[oc:26 d'agost]]
95481 [[pl:26 sierpnia]]
95482 [[pt:26 de Agosto]]
95483 [[ro:26 august]]
95484 [[ru:26 авĐŗŅƒŅŅ‚Đ°]]
95485 [[se:BorgemÃĄnu 26.]]
95486 [[sco:26 August]]
95487 [[sq:26 Gusht]]
95488 [[scn:26 di austu]]
95489 [[simple:August 26]]
95490 [[sk:26. august]]
95491 [[sl:26. avgust]]
95492 [[sr:26. авĐŗŅƒŅŅ‚]]
95493 [[fi:26. elokuuta]]
95494 [[sv:26 augusti]]
95495 [[tl:Agosto 26]]
95496 [[tt:26. August]]
95497 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 26]]
95498 [[th:26 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
95499 [[vi:26 thÃĄng 8]]
95500 [[tr:26 Ağustos]]
95501 [[uk:26 ŅĐĩŅ€ĐŋĐŊŅ]]
95502 [[wa:26 d' awousse]]
95503 [[war:Agosto 26]]
95504 [[zh:8月26æ—Ĩ]]
95505 [[pam:Agostu 26]]</text>
95506 </revision>
95507 </page>
95508 <page>
95509 <title>Antipope</title>
95510 <id>1633</id>
95511 <revision>
95512 <id>41282213</id>
95513 <timestamp>2006-02-26T06:58:59Z</timestamp>
95514 <contributor>
95515 <ip>68.100.144.157</ip>
95516 </contributor>
95517 <comment>/* History */</comment>
95518 <text xml:space="preserve">[[Image:Antipope_Felix_V.jpg|thumbnail|right|200px|[[Antipope Felix V]], the last historical Antipope.]]
95519 An '''antipope''' is one whose claim to being [[Pope]] is the result of a disputed or contested election. These antipopes were usually in opposition to a specific person chosen by the papal electors (since the [[Middle Ages]], the [[College of Cardinals]]; in the twentieth century, their special secret meeting, called [[conclave]], however applies the age limit for eligibility). Some self-appointed leaders of smaller churches are also called &quot;antipopes.&quot;
95520
95521 ==History==
95522 During certain periods of turbulence in the [[Catholicism|Roman Catholic Church]], controversial Papal elections were conducted. Some such elections were considered invalid, either because a large majority of papal electors claimed the election was invalid (such as the election of [[Amadeus VIII of Savoy|Felix V]]), or because they have subsequently been declared invalid (such as [[Antipope Clement VII|Clement VII]]).
95523
95524 The earliest antipope, [[Antipope Hippolytus|Hippolytus]], was elected in protest against [[Pope Callixtus I]] by a schismatic group in the city of [[Rome]] in the [[3rd century]]. Hippolytus was [[exile]]d to the mines on the island of [[Sardinia]] in the company of Callixtus' successor [[Pope Pontian]], and was reconciled to the Catholic Church before his death and has been [[canonization|canonized]] by the Church. The [[Catholic Encyclopedia]] also mentions a Natalius[http://www.newadvent.org/cathen/10448a.htm], before Hippolytus, as first antipope, who, according to Eusebius's EH5.28.8-12, quoting the ''Little Labyrinth'' of Hippolytus, after being &quot;[[Scourge|scourged]] all night by the holy angels&quot;, covered in ash, dressed in [[sackcloth]], and &quot;after some difficulty&quot;, tearfully submitted to [[Pope Zephyrinus]].
95525
95526 The period when antipopes were most numerous was during the struggles between the Popes and the [[Holy Roman Emperor]]s of the [[11th century|11th]] and [[12th century|12th centuries]]. The emperors would frequently sponsor antipopes in order to further their cause. (The popes, likewise, frequently sponsored rival imperial claimants in Germany in attempts to disrupt imperial policy.)
95527
95528 The late [[14th century|14th]] and early [[15th century]] saw a series of rival popes elected, one line of which is counted by the Roman Catholic Church as popes and the other as antipopes. The scandal of multiple claimants added to the demands for reform that produced the [[Protestant Reformation]] at the turn of the [[16th century]]. (See [[Western Schism]], [[Antipope Benedict XIII]].)
95529
95530 It was not evident, during periods when two (or three) rival claimants existed, which was the antipope, and which was the pope, and the clear-cut distinctions made between them in retrospect can give a false sense that certainty existed among their contemporaries. Supporters might offer assistance to a given candidate, but could not know which would be determined to have been an antipope, and which the pope, until events had run their course.
95531
95532 There has not been an antipope since [[1449]] (unless ''[[Antipope#Sedevacantist antipopes|Sedevacantist antipopes]]'' are counted - see below). Other schisms such as the [[Church of England]], the [[Old Catholic Church]] and the [[Chinese Patriotic Catholic Association]] began in a rejection of a primary [[dogma]] of the papacy.
95533
95534 Today the act of becoming an Antipope is considered a schismatic act by the Roman Catholic Church. This would result in automatic [[excommunication]] for the person who became Antipope.
95535
95536 == List of antipopes ==
95537 #[[Antipope Hippolytus|St. Hippolytus]] ''(reconciled with Pope St. Pontian and died as martyr to the church),'' [[217]]&amp;ndash;[[235]]
95538 #[[Antipope Novatian|Novatian]], [[251]]&amp;ndash;[[258]]
95539 #[[Antipope Felix II|Felix II]] ''(confused with a martyr with the same name and thus considered an authentic pope until recently),'' [[355]]&amp;ndash;[[365]]
95540 #[[Antipope Ursicinus|Ursicinus]] (Ursinus), [[366]]&amp;ndash;[[367]]
95541 #[[Antipope Eulalius|Eulalius]], [[418]]&amp;ndash;[[419]]
95542 #[[Antipope Laurentius|Laurentius]], [[498]]&amp;ndash;[[499]], [[501]]&amp;ndash;[[506]]
95543 #[[Antipope Dioscorus|Dioscorus]] ''(legitimate perhaps as opposed to Boniface II but died 22 days after election)'', [[530]]
95544 #[[Antipope Theodore|Theodore (II)]] ''(opposed to antipope Paschal),'' [[687]]
95545 #[[Antipope Paschal|Paschal (I)]] ''(opposed to antipope Theodore),'' [[687]]
95546 #[[Antipope Theofylact|Theofylact]], [[757]]
95547 #[[Antipope Constantine II|Constantine II]], [[767]]&amp;ndash;[[768]]
95548 #[[Antipope Philip|Philip]] ''(replaced antipope Constantine II briefly; reigned for a day and then returned to his monastery),'' [[768]]
95549 #[[Antipope John VIII|John VIII]], [[844]]
95550 #[[Antipope Anastasius|Anastasius III Bibliothecarius]], [[855]]
95551 #[[Antipope Christopher|Christopher]], [[903]]&amp;ndash;[[904]]
95552 #[[Antipope Boniface VII|Boniface VII]], [[974]], [[984]]&amp;ndash;[[985]]
95553 #John Filagatto ([[Antipope John XVI|John XVI]]), [[997]]&amp;ndash;[[998]]
95554 #[[Antipope Gregory VI|Gregory VI]], [[1012]]
95555 #[[Antipope Sylvester III|Sylvester III]], [[1045]]
95556 #John Mincius ([[Antipope Benedict X|Benedict X]]), [[1058]]&amp;ndash;[[1059]]
95557 #Pietro Cadalus ([[Antipope Honorius II|Honorius II]]), [[1061]]&amp;ndash;[[1064]]
95558 #Guibert of Ravenna ([[Antipope Clement III|Clement III]]), [[1080]] &amp; [[1084]]&amp;ndash;[[1100]]
95559 #[[Antipope Theodoric|Theodoric]], [[1100]]&amp;ndash;[[1101]]
95560 #[[Antipope Adalbert|Adalbert]], [[1101]]
95561 #Maginulf ([[Antipope Sylvester IV|Sylvester IV]]), [[1105]]&amp;ndash;[[1111]]
95562 #Maurice Burdanus ([[Antipope Gregory VIII|Gregory VIII]]), [[1118]]&amp;ndash;[[1121]]
95563 #Thebaldus Buccapecuc ([[Antipope Celestine II|Celestine II]]) ''(legitimate but submitted to opposing pope, Honorius II and afterwards considered an antipope),'' [[1124]]
95564 #Pietro Pierleoni ([[Antipope Anacletus II|Anacletus II]]), [[1130]]&amp;ndash;[[1138]]
95565 #Gregorio Conti ([[Antipope Victor IV (1138)|Victor IV]]), [[1138]]
95566 #Ottavio di Montecelio ([[Antipope Victor IV (1159-1164)|Victor IV]]), [[1159]]&amp;ndash;[[1164]]
95567 #Guido di Crema ([[Antipope Paschal III|Paschal III]]), [[1164]]&amp;ndash;[[1168]]
95568 #Giovanni of Struma ([[Antipope Callixtus III|Callixtus III]]), [[1168]]&amp;ndash;[[1178]]
95569 #Lanzo of Sezza ([[Antipope Innocent III|Innocent III]]), [[1179]]&amp;ndash;[[1180]]
95570 #Pietro Rainalducci ([[Antipope Nicholas V|Nicholas V]]), ''antipope in Rome'', [[1328]]&amp;ndash;[[1330]]
95571 #Robert of Geneva ([[Antipope Clement VII|Clement VII]]), ''antipope of the Avignon line'', [[20 September]] [[1378]] &amp;ndash; [[16 September]] [[1394]]
95572 #Pedro de Luna ([[Antipope Benedict XIII|Benedict XIII]]), ''antipope of the Avignon line'', [[1394]]&amp;ndash;[[1423]]
95573 #Pietro Philarghi [[Pope Alexander V|Alexander V]], ''antipope of the Pisan line'', [[1409]]&amp;ndash;[[1410]]
95574 #Baldassare Cosa [[Antipope John XXIII|John XXIII]], ''antipope of the Pisan line'', [[1410]]&amp;ndash;[[1415]]
95575 #Gil SÃĄnchez MuÃąoz ([[Antipope Clement VIII|Clement VIII]]), ''antipope of the Avignon line'', [[1423]]&amp;ndash;[[1429]]
95576 #[[Bernard Garnier]] (the first Benedict XIV), ''antipope of the Avignon line'', [[1425]]&amp;ndash;c. [[1429]]
95577 #[[Jean Carrier]] (the second Benedict XIV), ''antipope of the Avignon line'', [[1430]]&amp;ndash;[[1437]]?
95578 #Duke Amadeus VIII of Savoy ([[Antipope Felix V|Felix V]]), [[5 November ]] [[1439]] &amp;ndash; [[7 April]] [[1449]]
95579
95580 ==Sedevacantist antipopes==
95581 Some breakaway Catholics today, called [[Sedevacantism|sedevacantists]], claim the current Popes are heretics for various reforms which sedevacantists see as innovations in the practices of Roman Catholic Church which were adopted during the reigns of Pope [[John XXIII]] and Pope [[Paul VI]], including aspects of the [[Second Vatican Council]]. Chief among these criticized reforms is the replacing of the [[Tridentine Latin Mass]] with the [[Novus Ordo Missae]]. Many sedevacantists also object to the celebration of the Mass in the [[vernacular]], despite the fact that various provisions existed for the celebration of the Mass in the vernacular prior to the reign of Pope John XXIII. Since the opinion of many Catholic theologians is that a [[heretic]]al Pope would cease to be Catholic and therefore cease to be Pope, sedevacantists believe the current Bishops of Rome are not actually popes. Some sedevacantist groups have their own popes to replace the popes they reject. They are sometimes called antipopes, although it should be noted that in contrast to historical antipopes, the number of their followers is minuscule. Some of these antipopes have developed their own religious infrastructure in recognition that the conventional popes are not likely to consider ceding authority to them, thus being at once antipopes of the ''Universal Church'' and popes of their particular sect.
95582
95583 Sedevacantist antipopes frequently refer to the conventional successors of [[Pope Pius XII]] as a series of antipapacies.
95584
95585 There is a significant number of antipopes self-proclaimed Peter II, due to the special meaning of this name; see [[Antipope Peter II]].
95586
95587 === Antipopes of the 20th-21st centuries ===
95588 ====[[Palmarian Catholic Church]]====
95589 * [[Clemente Domínguez y GÃŗmez]] (Gregory XVII), mystically self-proclaimed from [[1978]]&amp;ndash;2005 in [[Spain]], pope of the [[Palmarian Catholic Church]].
95590 * [[Manuel Corral|Manuel Alonso Corral]] ([[Antipope Peter II|Peter II]]), succeeded Gregory XVII as the Pope of the [[Palmarian Catholic Church]] in 2005 in [[Spain]]
95591
95592 ====[[Reformed Church of Christ]]/[[Apostles of Infinite Love]]====
95593 *[[Michel-Auguste-Marie Collin]] (Clement XV), self-proclaimed [[1963]] in [[ClÊmery]], [[France]] (later at [[St. Jovite]], [[Canada]]), Pope of the &quot;[[Renewed Church of Christ]]&quot; or &quot;[[Church of the Magnificat]]&quot;
95594 * [[Jean-Gaston Tremblay]] (Gregory XVII), succeeded Clement XV in [[1968]] in [[Canada]]; not to be confused with the Canadian politician [[Gaston Tremblay]]
95595
95596 ====[[Conclavist]] movements====
95597 These antipopes are (for the most part) not self-proclaimed in the strictest sense but organized and held elections of 'faithful' Catholics. The verifiable smallest of these '[[Conclave]]s' was attended by only 6 electors, the size of the largest is not known but claimed to be at least larger than the conclave which elected [[Pope Pius XII]].
95598
95599 * [[David Bawden]] (Michael I), self-proclaimed in [[1990]] in [[Kansas]], [[United States|United States of America]] (&quot;conclave&quot; of 6 electors)
95600 * [[Victor von Pentz]] (Linus II), either self-proclaimed in [[1994]] in [[Hertfordshire]], [[United Kingdom]] or elected by several Sedevacantists in [[Assisi]] (disputed)
95601 * [[Lucian Pulvermacher]] (Pius XIII), self-proclaimed in [[1998]] in [[Montana]], [[United States|United States of America]], Pope of the self-proclaimed &quot;[[true Catholic Church]]&quot;. Claims to have been elected by a conclave of a secret number but at least 61 electors.
95602 * [[Reinaldus Michael Benjamins]] (Antipope Gregory XIX) self-proclaimed in [[2001]] in [[New York]], [[United States of America]].
95603
95604 ====Independents and Antipopes of other groups====
95605 * [[Gino Frediani]] (Emmanuel I), self-proclaimed from [[1973]]&amp;ndash;[[1984]] in [[Italy]], Pope of the &quot;[[New Church of the Holy Heart of Jesus]]&quot;
95606 * [[Valeriano Vestini]] (Valeriano I), self-proclaimed in [[1990]] in [[Province of Chieti|Chieti]], [[Italy]]
95607 * [[Maurice Archieri|Maurice Archieri of Le Perreux]] ([[Antipope Peter II|Peter II]]) of Le Perreux, self-proclaimed in [[1995]] in [[France]]
95608 * [[Julius Tischler]] ([[Antipope Peter II|Peter II]]) of [[Germany]]
95609 * [[Pierre Henri Bubois]] ([[Antipope Peter II|Peter II]]) of [[Brussels]], [[Belgium]]
95610 * [[Chester Olszewski]] ([[Antipope Peter II|Peter II]]), self-proclaimed in [[1980]] of [[Pennsylvania]], [[United States|USA]]
95611 * [[William Kamm]] ([[Antipope Peter II|Peter II]]) of [[Australia]], Pope of the &quot;Order of Saint Charbel&quot; movement.
95612
95613 ==See also==
95614 * [[Antipopes in fiction]]
95615 * [[Sedevacantism]]
95616 * [[List of popes]]
95617
95618 *Trentidines recognise the Roman pope, but dispute theology. Notable among these is [[Michael Cox]], of Cree, Birr, Co. Offaly, who infamously ordained [[Sinead O'Conner]] and Bishop [[Pat Buckley]] and conducts weddings of those the regular church refuses to entertain.
95619
95620 ==Sources and References==
95621 *[http://www.newadvent.org/cathen/01582a.htm Catholic Encyclopaedia- article Antipope]
95622 *[http://media.isnet.org/kristen/Ensiklopedia/AntiPope.html The Pope Encyclopaedia - article Antipope]
95623
95624 [[Category:Antipopes| ]]
95625 [[Category:Ecclesiastical titles]]
95626 [[Category:History of the Papacy]]
95627 [[Category:Pope-related lists]]
95628
95629 [[bg:АĐŊŅ‚иĐŋĐ°ĐŋĐ°]]
95630 [[ca:Antipapa]]
95631 [[cs:VzdoropapeÅž]]
95632 [[da:Modpave]]
95633 [[de:Gegenpapst]]
95634 [[es:Antipapa]]
95635 [[et:Vastupaavst]]
95636 [[fi:Vastapaavi]]
95637 [[fr:Antipape]]
95638 [[gl:Antipapa]]
95639 [[it:Antipapa]]
95640 [[ja:寞įĢ‹æ•™įš‡]]
95641 [[lb:GÊigepoopst]]
95642 [[lt:AntipopieÅžius]]
95643 [[nl:Tegenpaus]]
95644 [[no:Motpave]]
95645 [[pl:AntypapieÅŧ]]
95646 [[pt:Antipapa]]
95647 [[ro:Antipapă]]
95648 [[ru:АĐŊŅ‚иĐŋĐ°ĐŋĐ°]]
95649 [[sv:MotpÃĨve]]
95650 [[uk:АĐŊŅ‚иĐŋĐ°ĐŋĐ°]]
95651 [[zh:對įĢ‹æ•™åŽ—]]</text>
95652 </revision>
95653 </page>
95654 <page>
95655 <title>Aquaculture</title>
95656 <id>1634</id>
95657 <revision>
95658 <id>41943492</id>
95659 <timestamp>2006-03-02T20:09:56Z</timestamp>
95660 <contributor>
95661 <ip>207.81.107.130</ip>
95662 </contributor>
95663 <comment>/* External links */</comment>
95664 <text xml:space="preserve">{{globalize|January 2006}}
95665 '''Aquaculture''' is the cultivation of the natural produce of water (such as fish or shellfish, algae and other aquatic plants). [[Mariculture]] is specifically [[ocean|marine]] aquaculture, and thus is a subset of aquaculture. Some examples of aquaculture include raising [[catfish]] and [[tilapia]] in freshwater ponds, growing [[pearl|cultured pearls]], and farming [[salmon]] in net-pens set out in a bay. [[Fish farming]] is a common type.
95666
95667 == History ==
95668 The practice of aquaculture is very ancient and found in many cultures.
95669
95670 Aquaculture was used in [[China]] circa [[2500 BC]]. When the waters lowered after river floods, some fishes, namely [[Common carp|carps]], were held in artificial lakes. Their brood were later fed using [[nymph (biology)|nymph]]s and feces from [[silkworm]]s used for silk production.
95671
95672 The Hawaiian people practiced aquaculture by constructing [[fish pond]]s (see [[Hawaiian aquaculture]]). A remarkable example from [[ancient Hawaii]] is the construction of a fish pond, dating from at least 1,000 years ago, at Alekoko. According to legend, it was constructed by the mythical [[Menehune]].
95673
95674 The Romans were quite adept in breeding fish in ponds. In Europe it became common again in monasteries during the [[Middle Ages]], since fish was scarce and thus expensive. Transportation improvements in the 19th century made fish easily available and inexpensive, even far from the seas, causing a decline in aquaculture.
95675
95676 The current boom in aquaculture started in the 1960s as prices for fish began to climb. Wild fish capture was reaching its peak and the human population was continuing to rise. Today, commercial aquaculture exists on a unprecedented, huge scale. In the 1980s open-netcage salmon farming was also expanding; this particular type of aquaculture technology is still a minor part of the production of farmed finfish worldwide, but evidence of its negative impact on wild stocks, which started coming to light in the late 1990s, has caused it to be a major cause of controversy.[http://www.davidsuzuki.org/Oceans/Aquaculture/Salmon/]
95677
95678 ==Benefits==
95679 Aquaculture has been one of the fastest growing segments of global [[food]] production in recent decades, and has been hailed as an answer to the limits of wild fish stock harvest.
95680
95681 Fish and other aquacultured species are generally very efficient converters of feedstuffs into high quality protein when compared to other farmed animals. For example a catfish may take 6 kg of feed (wet weight to wet weight) to produce 1 kg of catfish whereas a chicken might take 10 kg and a pig 30 kg. This is possible primarily because aquaculture species are cold-blooded (or more corectly - poikilothermic), and hence do not waste energy on heating, and because the physics of the aquatic environmment require little energy for movement. Fish and other aquacultured species also tend to be comprised of a higher percentage of edible weight than terrestrial species.
95682
95683 Farming of high value (and often overexploited) species can reduce presure on wild stocks.
95684
95685 There are inumerable aquatic species farmed in small quantities around the world. Major aquaculture industries around the world include (Apology: latin names are from top of head and may be mis-spelled):
95686
95687 '''Atlantic salmon (''Salmo salar'') and Rainbow trout (''Oncorhynchus mykiss'').''' Also smaller volumes of a variety of other salmonids. Originally developed in Norway, Denmark (Rainbow trout although it is an American species) and Scotland, now farmed in significant quatities in Europe, Canada, Chile and Australia (Tasmania). First or Second in the world for production value.
95688
95689 '''Tropical shrimp; Mostly Black tiger shrimp (''Penaeus monodon'') and increasingly White shrimp (''Litopenaeus vannemi'').''' Techniques originally developed in Japan and Taiwan. Mostly farmed through tropical and sub-tropical Asia and South America. First or Second in the world for production value.
95690
95691 '''Carps; European carp, Chinese carps (Grass, Silver and Black) and Indian major carps''' are easily the largest global aquaculture industry by volume of production but are low in value. Major producers are China, India, Southeat Asia and Europe. China's reported production figures are considered contentious by some authorities. Value of production is also debatable according to whether value is calculated at border (exchange rate) prices or PPP (Purchasing Power Parity) prices. Nonetheless, carps are major contributors of high quality protein to the diets of poorer people around the world.
95692
95693 '''Seaweeds; Many species.''' Huge volumes, low value. Mostly farmed in Asia; particuarly Japan, Korea and China.
95694
95695 '''Catfish; Major species are Vietmanese basa (), Channel catfish and African and Asian walking catfish (''Clarias'' sp.).''' Mostly farmed in Asia and the Southern United States.
95696
95697 '''Tilapia; Nile tilapia and a few other species'''. Very well suited species to subsistance farming although arguably not well suited to large aquabusiness due to finicky breeding biology and low flesh recovery (Although becoming a very successful import in the US and Europe). Mostly farmed in Asia, South America and Africa.
95698
95699 '''Oysters; [[Pacific oyster]] (''Crassostrea gigas''), American oyster (''Crassostrea virginica''), Flat oyster (''Ostrea edulis'')''' and others. Mostly farmed in Asia, US, Australia-New Zealand and Europe. Flat oyster was once a huge industry and low cost/very high quality food for the masses in Europe but collapsed under mortalities brought about by the parasite ''Bonamia''.
95700
95701 '''Mussels; Blue mussel (''Mytilus edulis''), Green mussels (''Perna'' sp.)''' Mostly farmed in Europe, Asia, New Zealand and South America.
95702
95703 These industries are often based in developing countries, and can contribute greatly to food security/quality and income there. Of those industries above, all but Tropical shrimp and salmonids have a low -evel environmental impact. The environmental footprint of the Tropical shrimp and salmonid industries is improving.
95704
95705 [[Tuna]] farming in [[Australia]] has seen financial success. Tuna farming at present is really a fattening enterprise, where wild bred juvenile tuna are captured and grown in pens to a larger size and better flesh quality. Having the fish confined in pens also means that harvests can be timed to suit the market. This practice has resulted (at least in Australia) on reduced pressure on wild populations and a much larger value for their relatively small wild (Southern bluefin) tuna quota. Relatively recently, researchers in Japan have closed the life cycle of the Pacific bluefin tuna, and European researchers in Spain are working on breeding Northern bluefin tuna.
95706
95707 While the negative impacts of some aquaculture on the environment has been widely publicised, the positive environmental effects of aquaculture are rarely noted. For example many aquacultured species are highly sensitive to water quality conditions and aquaculture farmers often notice the effects of pollution or reductions in water quality before other authorities. Aquaculture businesses have a vested interest in clean waterways, in that a reduction in water quality has a direct effect on their production rates and financial bottom line. Appropriate aquaculture development can serve as 'canaries' for the health of waterways, with farms often a very new and undeveloped industry when compared to terrestrial aquacultures. Only a few species (Atlantic salmon, Pacific white shrimp and possibly several species each of catfish, carp and tilapia) are currently on their way to becoming true domesticated aquabuisiness species in the way that poultry, beef and pork have long been. While the aquaculture industry is still only a small way into the development curve the inherent biological characteristics of aquatic animals bode well for the future contribution of aquatic farming to living standards and the environment.
95708
95709 ==Challenges==
95710 In countries like the [[United Kingdom|U.K.]], [[Canada]], [[Norway]], and [[Chile]], [[salmon]] and [[trout]] farming are one of the fastest-growing forms of [[agriculture]]. Salmon farming is not increasing in the United States because of heavy competition from other countries, and higher environmental standards for fish farms in the US. Salmon farming, like other food producing operations such as [[beef]], [[wheat]] or [[tomato]]es can impact the environment.
95711
95712 However, the difference between shore farming and fish farming is that shore farming takes place on private land, while fish farming often takes place on the public waters. Organic wastes from fish cages can have a significant effect on water quality and the population structure of organisms, beyond the boundaries of the fish pens, increasing the occurrence of toxic [[algal bloom]]s. Scotland, as well as Chile and China, has had serious toxic algae blooms. Algal blooms can cause the death of huge numbers of wild fish and other species, and great harm to wild fisheries. However, even a month of fallow time can return the area to pristine condition.
95713
95714 Like other agriculture production, aquaculture must stand up to a rigorous evaluation of any environmental impact. Salmon aquaculture has come under increasing scrutiny from environmental [[nongovernmental organization]]s (ENGO's). In Canada, salmon farming sites occupy a small portion of the coastal zone areas where they are located. The total area occupied by Canadian salmon farms in [[British Columbia]] and the [[Bay of Fundy]] in New Brunswick is about 8,900 acres (36 km²) which is less than 0.01% of the coastal area where these sites are located. Still, even though salmon farms occupy only a small percentage of the public waters, scientists have found a significant degradation of the areas where they exist, with lowered oxygen levels, replacement of native seaweeds with invasive seaweeds, increased algal blooms, reduction of wild species, and loss of nursery habitat for wild fish.
95715
95716 Wild Pacific and Atlantic salmon stocks have seen significant declines over the last several decades, before salmon farming operations started. These declines were caused by a combination of factors including [[climate change]], [[overfishing]] and freshwater habitat destruction. However, rivers with fish farms have experienced accelerated decline of wild stocks caused by spread of diseases such as infectious salmon anemia, and parasites such as sea lice from farmed to wild salmon.
95717
95718 Concerns have been raised on the East coast that wild Atlantic salmon may interbreed with and catch disease from salmon that escape from farms. Canadian salmon farmers have significantly reduced the escape of their salmon. The evidence shows that the escape of farmed salmon on Canada's west coast poses low risk to Pacific salmon. However, young wild salmon swimming down river to the ocean are free of sea lice parasites before they swim past the salmon farms, and laden with sea lice after they pass the farms. Most die from these sea lice.
95719
95720 Many farmed fish species are [[carnivore|carnivorous]], meaning that other wild fish species must be harvested to maintain the fish farm. For example, herring are used to make salmon feed. Since herring are the backbone of the North Atlantic food chain, increased fishing pressure on their numbers is a serious threat to all other fish species which depend on herring for food. It is argued that fish farms, far from removing the pressure on wild fish stocks, increase it. Others argue that it takes less fish (in the form of the fishmeal component of an aquaculture diet) to produce a unit of table fish through aquaculture than through the natural food web. Fisheries that are based on species lower on the trophic web (such as many species used for fishmeal) are also more resistant to overfishing than typical table fish fisheries.
95721
95722 The fish farm industry is trying to decrease its reliance on fish for fish feed. The vast majority of aquaculture production on the global scale (species such as carps, catfish and tilapia) occurs with the use of feeds with very little or no fishmeal. A portion of the fish meal used in fish feeds for highly carnivorous species comes from the trimmings and discards of commercial species. More studies are being done concerning shifts in feed composition using poultry and vegetable oils as substitutes for fish protein &amp; oil. However this use of land based feed ingredients results in a decrease of the Omega 3 fish oils in the farmed fish (although in some cases a 'washing out' of the terrestrial oils can be achieved with a short period of feeding with marine oils prior to harvest). The current relectance to further reduce fishmeal and marine oils in the commercial diets of species such as the salmonids and shrimps is not based so much on technical difficulties as consumer resistance to the taste and health qualities of vegetarian fish. In the long term, alternative sources of long chain Omega 3 fatty acids (the most difficult ingredient to source from non fish sources) may be developed from zooplankton or microalgal origins.
95723
95724 Other problems with aquaculture include the potential for increasing the spread of unwanted [[invasive species]], as farmed species are often not native to the area in which they are farmed. When these species escape, they can compete with native species and damage ecosystems. Another problem is the spread of introduced parasites, pests, and diseases.
95725
95726 ==See also==
95727 *[[Algae culture]]
95728 *[[Fishery]]
95729 *[[Hatchery]]
95730
95731 ==References==
95732 *Hepburn, J. 2002. ''Taking Aquaculture Seriously''. Organic Farming, Winter 2002 Š Soil Association.
95733 *Naylor, R.L., S.L. Williams, and D.R. Strong. 2001. ''Aquaculture &amp;ndash; A Gateway For Exotic Species''. [[Science (journal)|Science]], 294: 1655-6.
95734 *[http://www.scotland.gov.uk/cru/kd01/green/reia-01.asp The Scottish Association for Marine Science and Napier University. 2002. Review and synthesis of the environmental impacts of aquaculture]
95735 *Higginbotham James ''Piscinae: Artificial Fishponds in Roman Italy'' University of North Carolina Press (June, 1997)
95736 * Wyban, Carol Araki (1992) ''Tide and Current: Fishponds of Hawai'I'' [[University of Hawaii]] Press :: ISBN 0-82481-396-0
95737
95738 ==External links==
95739 * [http://www.cjly.net/deconstructingdinner/020206.htm One Hour Radio Broadcast on Farmed Salmon in British Columbia, Canada - Kootenay Co-op Radio's Deconstructing Dinner program]
95740 *[http://www.northernaquafarms.com/links.html Aquaculture Resources Directory] human selected reference links and downloadable reports, articles from numerous sources.
95741 * [http://www.fao.org/fi/default.asp FAO Fisheries Department] and its [http://www.fao.org/sof/sofia/index_en.htm SOFIA report] on fisheries and aquaculture
95742 *[http://www.greenfacts.org/fisheries/l-2/01-fisheries-production.htm#5 State of World Aquaculture] &amp;ndash; A summary for non-specialists of the above FAO report by [[GreenFacts]].
95743 *[http://www.certifiedorganic.bc.ca/rcbtoa/services/aquaculture.html Organic Aquaculture:] Articles and references on the merits and otherwise of farming fish organically.
95744 *[http://govdocs.aquake.org Aquaculture Knowledge Environment:] A searchable online library of government and United Nations documents covering nearly every aspect of aquaculture from pond construction to international codes of conduct.
95745 *[http://www.was.org/main/Default.asp World Aquaculture Society:] Founded in 1970, the primary focus of WAS is to improve communication and information exchange within the diverse global aquaculture community.
95746 *[http://www.nelha.org/ Natural Energy Laboratory of Hawaii Authority] Learn how NELHA and its tenants are using sunshine, seawater and ingenuity to bring economic development and diversity.
95747 *[http://www.keaholepoint.org/ Friends of NELHA] [FON] is a nonprofit corporation formed for education and outreach tours related to research, commercial and pre-commercial activities at Keahole Point, north of Kailua Kona, Hawaii.
95748 *[http://www.watershed-watch.org/ww/Sealicefacts/sealicefacts_main.htm Watershed Watch Society] Salmon farming and sea lice
95749 *[http://aquanic.org/ AquaNIC] A comprehensive information server for aquaculture topics, including publications, news, events, job announcements, images, and related resources.
95750 *[http://www.fisheries.org American Fisheries Society]
95751 *[http://www.fisheries.org/ned/chapters/newyork/ New York Chapter]of the American Fisheries Society
95752 *[http://www.nodc.noaa.gov/ National Oceanographic Documentation Center (NOAA)]
95753 *[http://digital.library.unt.edu/govdocs/crs/search.tkl?q=aquaculture&amp;search_crit=title&amp;search=Search&amp;date1=Anytime&amp;date2=Anytime&amp;type=form Read Congressional Research Service (CRS) Reports regarding Aquaculture]
95754 *[http://www.calacademy.org/research/ichthyology/catalog/ A CATALOG OF THE SPECIES OF FISHES] at California Academy of Sciences, Golden Gate Park, San Francisco, California.
95755 *[http://www.stir.ac.uk/aqua/ INSTITUTE OF AQUACULTURE] at the University of Stirling in the United Kingdom. &quot;an international research and post-graduate training centre which is the largest of its kind in the world.&quot;
95756 *[http://www.fishing4info.com/ FISHING FOR INFORMATION HOME PAGE]: Guide to on-line resources in aquaculture, fisheries and aquatic science
95757 *[http://www.asf.ca/ Atlantic Salmon Federation] an international non-profit organization which promotes the conservation and wise management of the Atlantic salmon and its environment.
95758 *[http://www.nalms.org/ North American Lake Management Society]
95759 *[http://www.nefsc.noaa.gov/ Northeast Fisheries Science Center, Woods Hole, Massachusetts]
95760 *[http://www.atinet.org Advanced Technology Information Network (Calif Ag Tech Institute)]
95761 *[http://www.cce.cornell.edu CENET, the Cornell Extension NETwork]
95762 *[http://www.geographyinaction.co.uk/Issues/Lough%20Swilly.html Geographyinaction - Lough Swilly, Ireland example]
95763 *[http://www.imagomundi.org/area-mt/ Aquaculture Resources for Ethno-Anthropologists] News mirror service in the field of aquaculture with focus on his social effects
95764
95765 [[Category:Edible fish]]
95766 [[Category:Fisheries science|Aquaculture]]
95767 [[Category:Hydrography|Aquaculture]]
95768 [[Category:Physical oceanography|Aquaculture]]
95769 [[Category:Sustainability|Aquaculture]]
95770
95771 {{Link FA|pt}}
95772
95773 [[cs:Akvakultura]]
95774 [[de:Aquakultur]]
95775 [[fr:Aquaculture]]
95776 [[he:חקלאו×Ē ימי×Ē]]
95777 [[nl:Aquacultuur]]
95778 [[no:Akvakultur]]
95779 [[pt:Aquacultura]]
95780 [[simple:Aquaculture]]</text>
95781 </revision>
95782 </page>
95783 <page>
95784 <title>Kolmogorov complexity</title>
95785 <id>1635</id>
95786 <revision>
95787 <id>40588783</id>
95788 <timestamp>2006-02-21T17:38:57Z</timestamp>
95789 <contributor>
95790 <username>CSTAR</username>
95791 <id>61089</id>
95792 </contributor>
95793 <comment>/* Chaitin's incompleteness theorem */ It's not proof of Berry's paradox, but a construction in Berry's paradox.</comment>
95794 <text xml:space="preserve">In [[computer science]], the '''Kolmogorov complexity''' (also known as '''descriptive complexity''', '''Kolmogorov-Chaitin complexity''', '''stochastic complexity''', '''algorithmic entropy''', or '''program-size complexity''') of an object such as a piece of text is a measure of the computational resources needed to specify the object. For example consider the following two [[string (computer science)|string]]s of length 100
95795
95796 0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101
95797
95798 1100100001100001110111101110110011111010010000100101011110010110001101111111010001100011011001110111
95799
95800 The first string admits a short [[English language]] description namely &quot;50 repetitions of '01'&quot;. The second one has no obvious simple description other than writing down the string itself.
95801
95802 More formally, the complexity of a string is the length of the string's shortest description in some fixed description language. The sensitivity of complexity relative to the choice of description language is discussed below. It can be shown that the Kolmogorov complexity of any string cannot be too much larger than the length of the string itself. Strings whose Kolmogorov complexity is small relative to the string's size are not considered to be complex.
95803 The notion of Kolmogorov complexity is surprisingly deep and can be used to state and prove impossibility results akin to [[GÃļdel's incompleteness theorem]] and [[halting problem|Turing's halting problem]].
95804
95805 Algorithmic information theory is the area of computer science that studies Kolmogorov complexity and other complexity measures on strings (or other [[data structure]]s). The field was developed by [[Andrey Kolmogorov]], [[Ray Solomonoff]] and [[Gregory Chaitin]] starting in the late [[1960s]]. There are several variants of Kolmogorov complexity or algorithmic information. The most widely used one is based on self-delimiting programs and is mainly due to [[Leonid Levin]] (1974).
95806
95807 == Definition==
95808
95809 To define Kolmogorov complexity, we must first specify a description language for strings. Such a description language can be based on a programming language such as [[Lisp programming language|Lisp]], [[Pascal programming language|Pascal]], or [[Java virtual machine]] bytecode. If '''P''' is a program which outputs a string ''x'', then '''P''' is a description of ''x''. The length of the description is just the length of '''P''' as a character string. In determining the length of '''P''', the lengths of any subroutines used in '''P''' must be accounted for. The length of any integer constant ''n'' which occurs in the program '''P''' is the number of bits required to represent ''n'', that is (roughly) log&lt;sub&gt;2&lt;/sub&gt;''n''.
95810
95811 We could alternatively choose an encoding for [[Turing machine|Turing machines]] (TM), where an ''encoding'' is a function which associates to each TM '''M''' a bitstring &lt;'''M'''&gt;. If '''M''' is a TM which on input ''w'' outputs string ''x'', then the concatenated string &lt;'''M'''&gt; ''w'' is a description of ''x''. For theoretical analysis, this approach is more suited for constructing detailed formal proofs and is generally preferred in the research literature. In this article we will use an informal approach.
95812
95813 Fix a description language. Any string ''s'' has at least one description, namely the program
95814
95815 '''function''' GenerateFixedString()
95816 '''return''' ''s''
95817
95818 Among all the descriptions of ''s'', there is one with shortest length denoted ''d''(''s''). In case there is more than one program of the same minimal length, choose one arbitrarily, for example selecting the lexicographically first among them. ''d''(''s'') is the '''minimal description''' of ''s''. The '''Kolmogorov complexity''' of ''s'', written ''K''(''s''), is
95819 :&lt;math&gt;K(s) = |d(s)|. \quad &lt;/math&gt;
95820 In the other words, ''K''(''s'') is the length of the minimal description of ''s''.
95821
95822 We now consider how the choice of description language affects the value of ''K'' and show that the effect of changing the description language is bounded.
95823
95824 '''Theorem'''. If ''K''&lt;sub&gt;1&lt;/sub&gt; and ''K''&lt;sub&gt;2&lt;/sub&gt; are the complexity functions relative to description languages ''L''&lt;sub&gt;1&lt;/sub&gt; and ''L''&lt;sub&gt;2&lt;/sub&gt;, then there is a constant ''c'' (which depends only on the languages ''L''&lt;sub&gt;1&lt;/sub&gt; and ''L''&lt;sub&gt;2&lt;/sub&gt;) such that
95825 : &lt;math&gt; |K_1(s) - K_2(s)| \leq c, \quad \forall s &lt;/math&gt;
95826
95827 By symmetry, it suffices to prove that there is some constant ''c'' such that for all bitstrings ''s'',
95828 : &lt;math&gt; K_1(s) \leq K_2(s) + c. &lt;/math&gt;
95829
95830 To see why this is so, there is a program in the language ''L''&lt;sub&gt;1&lt;/sub&gt; which acts as an [[interpreter (computing)|interpreter]] for ''L''&lt;sub&gt;2&lt;/sub&gt;:
95831
95832 '''function''' InterpretLanguage('''string''' ''p'')
95833
95834 where ''p'' is a program in ''L''&lt;sub&gt;2&lt;/sub&gt;. The interpreter is characterized by the following property:
95835
95836 : Running InterpretLanguage on input ''p'' returns the result of running ''p''.
95837
95838 Thus if '''P''' is a program in ''L''&lt;sub&gt;2&lt;/sub&gt; which is a minimal description of ''s'', then InterpretLanguage('''P''') returns the string ''s''. The length of this description of ''s'' is the sum of
95839 # The length of the program InterpretLanguage, which we can take to be the constant ''c''.
95840 # The length of '''P''' which by definition is ''K''&lt;sub&gt;2&lt;/sub&gt;(''s'').
95841
95842 This proves the desired upper bound.
95843
95844 See also [[invariance theorem]].
95845
95846 ==Basic results==
95847
95848 In the following, we will fix one definition and simply write ''K''(''s'') for the complexity of the string ''s''.
95849
95850 It is not hard to see that the minimal description of a string cannot be too much larger than the string itself: the program GenerateFixedString above that outputs ''s'' is a fixed amount larger than ''s''.
95851
95852 '''Theorem'''. There is a constant ''c'' such that
95853 :&lt;math&gt; K(s) \leq |s| + c, \quad \forall s &lt;/math&gt;
95854
95855 The first surprising result is that there is no way to effectively compute ''K''.
95856
95857 '''Theorem'''. ''K'' is not a [[computable function]].
95858
95859 In other words, there is no program which takes a string ''s'' as input and produces the integer ''K''(''s'') as output. We show this by contradiction. Suppose there is a program
95860
95861 '''function''' KolmogorovComplexity('''string''' ''s'')
95862
95863 that takes as input a string ''s'' and returns ''K''(''s''). Now consider the program
95864
95865 '''function''' GenerateComplexString('''int''' ''n'')
95866 '''for''' i = 1 to infinity:
95867 '''for''' each string s of length exactly i
95868 '''if''' KolmogorovComplexity(''s'') &gt;= ''n''
95869 '''return''' ''s''
95870 '''quit'''
95871
95872 This program calls KolmogorovComplexity as a subroutine. This program tries every string, starting with the shortest, until it finds a string with complexity at least ''n'', then returns that string. Therefore, given any positive integer ''n'', it produces a string with Kolmogorov complexity at least as great as ''n''. The program itself has a fixed length ''U''. The input to the program GenerateComplexString is an integer ''n''; here, the size of ''n'' is measured by the number of bits required to represent ''n'' which is log&lt;sub&gt;2&lt;/sub&gt;(''n''). Now consider the following program:
95873
95874 '''function''' GenerateParadoxicalString ()
95875 '''return''' GenerateComplexString(''n''&lt;sub&gt;0&lt;/sub&gt;)
95876
95877 This program calls GenerateComplexString as a subroutine and also has a free parameter
95878 ''n''&lt;sub&gt;0&lt;/sub&gt;. This program outputs a string ''s'' whose complexity is at least ''n''&lt;sub&gt;0&lt;/sub&gt;. By an auspicious choice of the parameter ''n''&lt;sub&gt;0&lt;/sub&gt; we will arrive at a contradiction. To choose this value, note ''s'' is described by the program GenerateParadoxicalString whose length is at most
95879
95880 :&lt;math&gt; U + \log_2(n_0) + C \quad &lt;/math&gt;
95881
95882 where ''C'' is the &quot;overhead&quot; added by the program GenerateParadoxicalString. Since ''n'' grows faster than log&lt;sub&gt;2&lt;/sub&gt;(''n''), there exists a value ''n''&lt;sub&gt;0&lt;/sub&gt; such that
95883 :&lt;math&gt; U + \log_2(n_0) + C &lt; n_0. \quad &lt;/math&gt;
95884 But this contradicts the definition of having a complexity at least ''n''&lt;sub&gt;0&lt;/sub&gt;. Thus the program named &quot;KolmogorovComplexity&quot; cannot actually generate strings with the desired Kolmogorov complexity.
95885
95886 This is proof by contradiction where the contradiction is similar to the [[Berry paradox]]: &quot;Let ''n'' be the smallest positive integer that cannot be defined in fewer than twenty English words. Well, I just defined it in fewer than twenty English words.&quot;
95887
95888 == Compression ==
95889
95890 It is however straightforward to compute upper bounds for ''K''(''s''): simply [[data compression|compress]] the string ''s'' with some method, implement the corresponding decompressor in the chosen language, concatenate the decompressor to the compressed string, and measure the resulting string's length.
95891
95892 A string ''s'' is compressible by ''c'' if it has a description whose length does not exceed |''s''| &amp;minus; ''c''. This is equivalent to saying ''K''(''s'') &amp;le; |''s''| &amp;minus; ''c''. Otherwise ''s'' is incompressible by ''c''. A string incompressible by one is said to be simply ''incompressible''; by the [[pigeonhole principle]], incompressible strings must exist, since there are 2&lt;sup&gt;''n''&lt;/sup&gt; bit strings of length ''n'' but only 2&lt;sup&gt;''n''&amp;minus;1&lt;/sup&gt; shorter strings, that is strings of length ''n''&amp;nbsp;&amp;minus;&amp;nbsp;1.
95893
95894 For the same reason, &quot;most&quot; strings are complex in the sense that they cannot be significantly compressed: ''K''(''s'') is not much smaller than |''s''|, the length of ''s'' in bits. To make this precise, fix a value of ''n''. There are 2&lt;sup&gt;''n''&lt;/sup&gt; bitstrings of length ''n''. The [[Uniform distribution (discrete)|uniform]] [[probability]] distribution on the space of these bitstrings assigns to each string of length exactly ''n'' equal weight 2&lt;sup&gt;&amp;minus;''n''&lt;/sup&gt;.
95895
95896 '''Theorem'''. With the uniform probability distribution on the space of bitstrings of length ''n'', the probability that a string is incompressible by ''c'' is at least 1 &amp;minus; 2&lt;sup&gt;&amp;minus;''c''+1 &lt;/sup&gt; + 2&lt;sup&gt;&amp;minus;''n''&lt;/sup&gt;.
95897
95898 To prove the theorem, note that the number of descriptions of length not exceeding ''n'' &amp;minus; ''c'' is given by the [[geometric series]]:
95899
95900 :&lt;math&gt; 1 + 2 + 2^2 + \cdots + 2^{n-c} = 2^{n-c+1}-1.\quad &lt;/math&gt;
95901
95902 There remain at least
95903
95904 :&lt;math&gt; 2^n-2^{n-c+1}+1 \quad &lt;/math&gt;
95905
95906 many bitstrings of length ''n'' that are incompressible by ''c''. To determine the probability divide by 2&lt;sup&gt;''n''&lt;/sup&gt;.
95907
95908 This theorem is the justification for various challenges in [http://www.faqs.org/faqs/compression-faq/part1/ comp.compression FAQ]. Despite this result, it is sometimes claimed by certain individuals (considered [[Crank (person)#Physics, computer science and mathematics|cranks]]) that they have produced algorithms which uniformly compress data without lossage. See [[lossless data compression]].
95909
95910 ==Chaitin's incompleteness theorem ==
95911
95912 We know that most strings are complex in the sense that they cannot be described in any significantly &quot;compressed&quot; way. However, it turns out that the fact that a specific string is complex cannot be formally proved, if the string's length is above a certain threshold. The precise formalization is as follows. First fix a particular [[axiomatic system]] '''S''' for the [[natural number|natural numbers]]. The axiomatic system has to be powerful enough so that to certain assertions '''A''' about complexity of strings one can be associate a formula '''F'''&lt;sub&gt;'''A'''&lt;/sub&gt; in '''S'''. This association must be such that if '''F'''&lt;sub&gt;'''A'''&lt;/sub&gt; is provable in '''S''', then the corresponding assertion '''A''' is true. This &quot;formalization&quot; can be achieved either by an artificial encoding such as a [[GÃļdel numbering]] or by a formalization which more clearly respects the intended interpretation of '''S'''.
95913
95914 '''Theorem'''. There exists a constant ''L'' (which only depends on the particular axiomatic system and the choice of description language) such that there is no string ''s'' for which the statement
95915 : &lt;math&gt; K(s) \geq L \quad &lt;/math&gt;
95916 (as formalized in '''S''') can be proven within the axiomatic system '''S'''. Note that by the abundance of nearly incompressible strings, the vast majority of those statements must be true.
95917
95918 The proof of this result is modeled on a self-referential construction used in [[Berry's paradox]]. The proof is by contradiction. If the theorem were false, then
95919
95920 :'''Assumption (X)''': For any integer ''n'' there exists a string ''s'' for which there is a proof in '''S''' of the formula &quot;''K''(''s'') &amp;ge; ''n''&quot; (which we assume can be formalized in '''S''').
95921
95922 We can find an effective enumeration of all the formal proofs in '''S''' by some procedure
95923
95924 '''function''' NthProof('''int''' ''n'')
95925 which takes as input ''n'' and outputs some proof. This function
95926 enumerates all proofs. Some of these are proofs for formulas we do not
95927 care about here (examples of proofs which will be listed by the procedure NthProof are the various known proofs of the [[law of quadratic reciprocity]], those of [[Fermat's little theorem]] or the proof of [[Fermat's last theorem]] all translated into the formal language of '''S'''). A small fraction are complexity formulas of the form ''K''(''s'') &amp;ge; ''n'' where ''s'' and ''n'' constants in the language of '''S'''. There is a program
95928
95929 '''function''' NthProofProvesComplexityFormula('''int''' ''n'')
95930
95931 which determines whether the ''n''&lt;sup&gt;th&lt;/sup&gt; proof actually proves
95932 a complexity formula ''K''(''s'') &amp;ge; ''L''. The strings ''s'' and
95933 the integer ''L'' in turn are computable by programs:
95934
95935 '''function''' StringNthProof('''int''' ''n'')
95936
95937 '''function''' ComplexityLowerBoundNthProof('''int''' ''n'')
95938
95939 Consider the folowing program
95940
95941 '''function''' GenerateProvablyComplexString('''int''' ''n'')
95942 '''for''' i = 1 to infinity:
95943 '''if''' NthProofProvesComplexityFormula(i) '''and'''
95944 ComplexityLowerBoundNthProof(i) &gt;= ''n''
95945 '''return''' StringNthProof(''i'')
95946 '''quit'''
95947
95948 Given an ''n'', this program tries every proof until it finds a string
95949 and a proof in the formal system '''S''' of the formula ''K''(''s'') &amp;ge; ''n''. The program
95950 terminates by our '''Assumption (X)'''. Now this program has a length ''U''.
95951 There is an integer ''n''&lt;sub&gt;0&lt;/sub&gt; such that ''U'' + log&lt;sub&gt;2&lt;/sub&gt;(''n''&lt;sub&gt;0&lt;/sub&gt;) + ''C'' &lt; ''n''&lt;sub&gt;0&lt;/sub&gt;, where ''C'' is the overhead cost of
95952
95953 '''function''' GenerateProvablyParadoxicalString()
95954 '''return''' GenerateProvablyComplexString(''n''&lt;sub&gt;0&lt;/sub&gt;)
95955 '''quit'''
95956
95957 The program GenerateProvablyParadoxicalString outputs a string ''s'' for which ''K''(''s'') &amp;ge;
95958 ''n''&lt;sub&gt;0&lt;/sub&gt; can be formally proved in '''S'''. In particular ''K''(''s'') &amp;ge;
95959 ''n''&lt;sub&gt;0&lt;/sub&gt; is true. However, ''s'' is also described by a program of length
95960 ''U''+log&lt;sub&gt;2&lt;/sub&gt;(''n''&lt;sub&gt;0&lt;/sub&gt;)+''C'' so its complexity is less than ''n''&lt;sub&gt;0&lt;/sub&gt;. This contradiction proves '''Assumption (X)''' cannot hold.
95961
95962 Similar ideas are used to prove the properties of [[Chaitin's constant]].
95963
95964 The [[minimum message length]] principle of statistical and inductive inference and machine learning was developed by [http://www.csse.monash.edu.au/~dld/CSWallacePublications/ C.S. Wallace] and D.M. Boulton in 1968. MML is [[Bayesian probability|Bayesian]] (it incorporates prior beliefs) and
95965 information-theoretic. It has the desirable properties of statistical
95966 invariance (the inference transforms with a re-parametrisation, such as from
95967 polar coordinates to Cartesian coordinates), statistical consistency (even
95968 for very hard problems, MML will converge to any underlying model) and efficiency (the MML model will converge to any true underlying model about as quickly as is possible). [http://www.csse.monash.edu.au/~dld/CSWallacePublications/ C.S. Wallace] and D.L. Dowe showed a formal connection between MML and algorithmic information theory (or Kolmogorov complexity) in 1999.
95969
95970 == References ==
95971
95972 * Ming Li and Paul VitÃĄnyi, ''An Introduction to Kolmogorv Complexity and Its Applications'', Springer, 1997. [http://citeseer.ist.psu.edu/li97introduction.html Introduction chapter full-text].
95973 * Yu Manin, ''A Course in Mathematical Logic'', Springer-Verlag, 1977.
95974 * Michael Sipser, ''Introduction to the Theory of Computation'', PWS Publishing Company, 1997.
95975
95976 ==See also==
95977 *[[Chaitin–Kolmogorov randomness|Chaitin-Kolmogorov randomness]]
95978 *[[List of important publications in computer science#algorithmic information theory|Important publications in algorithmic information theory]]
95979
95980 ==External links==
95981
95982 * [http://www.kolmogorov.com/ The Legacy of Andrei Nikolaevich Kolmogorov]
95983 * [http://www.cs.umaine.edu/~chaitin/ Chaitin's online publications]
95984 * [http://www.idsia.ch/~juergen/ray.html Solomonoff's IDSIA page]
95985 * [http://www.idsia.ch/~juergen/kolmogorov.html Schmidhuber's generalizations of algorithmic information]
95986 * [http://homepages.cwi.nl/~paulv/kolmogorov.html Li &amp; Vitanyi's textbook]
95987 * [http://homepages.cwi.nl/~tromp/cl/cl.html Tromp's lambda calculus computer model offers a concrete definition of K()]
95988 * [http://www3.oup.co.uk/computer_journal/hdb/Volume_42/Issue_04/pdf/420270.pdf Minimum Message Length and Kolmogorov Complexity] (by [http://www.csse.monash.edu.au/~dld/CSWallacePublications C.S. Wallace] and [http://www.csse.monash.edu.au/~dld D.L. Dowe], Computer Journal, Vol. 42, No. 4, 1999).
95989 * [http://www.csse.monash.edu.au/~dld David Dowe]'s [http://www.csse.monash.edu.au/~dld/MML.html Minimum Message Length (MML)] and [http://www.csse.monash.edu.au/~dld/Occam.html Occam's razor] pages.
95990 * P. Grunwald, M. A. Pitt and I. J. Myung (ed.), [http://mitpress.mit.edu/catalog/item/default.asp?sid=4C100C6F-2255-40FF-A2ED-02FC49FEBE7C&amp;ttype=2&amp;tid=10478 Advances in Minimum Description Length: Theory and Applications], M.I.T. Press, April 2005, ISBN 0-262-07262-9.
95991 * [http://nms.lcs.mit.edu/~gch/kolmogorov.html Kolmogorov Complexity] provides a simple explanation of Kolmogorov complexity.
95992
95993 [[Category:Algorithmic information theory|*]]
95994 [[Category:Information theory|*]]
95995
95996 [[de:Kolmogorow-Komplexität]]
95997 [[fa:Ų†Ø¸ØąÛŒŲ‡ اŲ„Ú¯ŲˆØąÛŒØĒŲ…ÛŒ Ø§ØˇŲ„اؚاØĒ]]
95998 [[gl:Complexidade de Kolmogorov]]
95999 [[ja:ã‚ŗãƒĢãƒĸã‚´ãƒ­ãƒ•č¤‡é›‘æ€§]]
96000 [[pl:ZłoÅŧoność Kołmogorowa]]
96001 [[pt:Complexidade de Kolmogorov]]
96002 [[ru:КоĐģĐŧĐžĐŗĐžŅ€ĐžĐ˛ŅĐēĐ°Ņ ŅĐģĐžĐļĐŊĐžŅŅ‚ŅŒ]]
96003 [[zh:įŽ—æŗ•äŋĄæ¯čŽē]]
96004 [[he:סיבוכיו×Ē קולמוגורוב]]</text>
96005 </revision>
96006 </page>
96007 <page>
96008 <title>Antoine de Saint-Exupery</title>
96009 <id>1636</id>
96010 <revision>
96011 <id>15900103</id>
96012 <timestamp>2002-07-31T05:11:56Z</timestamp>
96013 <contributor>
96014 <username>Heron</username>
96015 <id>2954</id>
96016 </contributor>
96017 <text xml:space="preserve">#REDIRECT [[Antoine de Saint-ExupÊry]]</text>
96018 </revision>
96019 </page>
96020 <page>
96021 <title>Hymn to Proserpine</title>
96022 <id>1637</id>
96023 <revision>
96024 <id>40359152</id>
96025 <timestamp>2006-02-20T01:16:34Z</timestamp>
96026 <contributor>
96027 <username>Rich Farmbrough</username>
96028 <id>82835</id>
96029 </contributor>
96030 <minor />
96031 <comment>External links per MoS.</comment>
96032 <text xml:space="preserve">&quot;'''Hymn to Proserpine'''&quot; is a [[poem]] by [[Algernon Swinburne|Algernon Charles Swinburne]], published in [[1866]].
96033
96034 The poem opens with the words ''Vicisti, GalilÃĻe'', [[Latin]] for &quot;You have conquered, O Galilean,&quot; the apocryphal [[Famous last words|dying words]] of the Emperor [[Julian the Apostate|Julian]]. He had tried to reverse the official endorsement of [[Christianity]] by the [[Roman Empire]]. The poem is cast in the form of a [[lament]] by a person professing the [[paganism]] of [[classical antiquity]] and lamenting its passing, and expresses regret at the rise of [[Christianity]]:
96035
96036 :''Thou hast conquered, O pale Galilean; the world has grown grey from thy breath;''
96037 :''We have drunken of things [[Lethe]]an, and fed on the fullness of death.''
96038
96039 The poem is addressed to the [[goddess]] [[Proserpina]], the Roman equivalent of [[Persephone]].
96040
96041 ==External links==
96042 *[http://eir.library.utoronto.ca/rpo/display/poem2088.html Full text]
96043
96044 [[Category:British poems]]
96045 {{poetry-stub}}</text>
96046 </revision>
96047 </page>
96048 <page>
96049 <title>The Triumph of Time</title>
96050 <id>1638</id>
96051 <revision>
96052 <id>30776356</id>
96053 <timestamp>2005-12-10T01:10:41Z</timestamp>
96054 <contributor>
96055 <username>Djnjwd</username>
96056 <id>9595</id>
96057 </contributor>
96058 <minor />
96059 <comment>ext link</comment>
96060 <text xml:space="preserve">'''The Triumph of Time''' is a poem by [[Algernon Swinburne]], published in [[1866]]. It is in adapted [[ottava rima]] and is full of elaborate use of literary devices, particularly [[alliteration]]. The theme, which purports to be autobiographical, is that of rejected love. The (male) speaker deplores the ruin of his life, and in tones at times reminiscent of ''[[Hamlet]]'', craves oblivion, for which the sea serves as a constant metaphor.
96061
96062 ==External links--
96063
96064 *[http://eir.library.utoronto.ca/rpo/display/poem2104.html Complete text]
96065 *[http://www.victorianweb.org/authors/swinburne/swinburne9.html#1 ''Victorian Web'' article]
96066 [[Category:British poems]]</text>
96067 </revision>
96068 </page>
96069 <page>
96070 <title>April 28</title>
96071 <id>1639</id>
96072 <revision>
96073 <id>41531580</id>
96074 <timestamp>2006-02-27T23:55:19Z</timestamp>
96075 <contributor>
96076 <ip>84.142.181.128</ip>
96077 </contributor>
96078 <comment>/* Births */</comment>
96079 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
96080 {| style=&quot;float:right;&quot;
96081 |-
96082 |{{AprilCalendar}}
96083 |-
96084 |{{ThisDateInRecentYears|Month=April|Day=28}}
96085 |}
96086 '''April 28''' is the 118th day of the year (119th in [[leap year]]s) in the [[Gregorian Calendar]], with 247 days remaining.
96087 ==Events==
96088 *[[1253]] - [[Nichiren]], a [[Japan]]ese [[Buddhism|Buddhist]] monk, propounds ''[[Nam Myoho Renge Kyo]]'' for the first time and declares it to be the essence of Buddhism, in effect founding [[Nichiren Buddhism]].
96089 *[[1788]] - [[Maryland]] becomes the 7th state to ratify the [[Constitution of the United States]].
96090 *[[1789]] - [[Mutiny]] on the [[Mutiny on the Bounty (history)|HMS ''Bounty'']]. Captain [[William Bligh]] and 18 sailors are set adrift and the rebel crew sets sail for [[Pitcairn Island]].
96091 *[[1796]] - The [[Armistice of Cherasco]] is signed by [[Napoleon I of France|Napoleon Bonaparte]] and [[Victor Amadeus III of Sardinia|Vittorio Amedeo III]], the [[King of Sardinia]], expanding French territory along the [[Mediterranean]] coast.
96092 *[[1862]] - [[American Civil War]]: [[Admiral]] [[David Farragut]] captures [[New Orleans, Louisiana]].
96093 *[[1867]] - [[Pi Beta Phi]] Fraternity for Women founded at [[Monmouth College]] in Monmouth, [[Illinois]]
96094 *[[1920]] - [[Azerbaijan]] is added to the [[Soviet Union]].
96095 *[[1930]] - The first night game in organized baseball history takes place in [[Independence, Kansas]].
96096 *[[1932]] - A [[vaccine]] for [[yellow fever]] is announced for use on [[human]]s.
96097 *[[1945]] - [[Benito Mussolini]] and his mistress [[Clara Petacci]] are executed by members of the [[Italian resistance movement]].
96098 *[[1947]] - [[Thor Heyerdahl]] and five crewmates set out from [[Peru]] on the ''[[Kon-Tiki]]'' to prove that Peruvian natives could have settled [[Polynesia]].
96099 *[[1950]] - King of Thailand, [[Bhumibol Adulyadej]], got married with his queen,[[Queen Sirikit]], after their quiet engagement in Lausanne, Switzerland on July 19, 1949.
96100 *[[1952]] - [[Dwight D. Eisenhower]] resigns as Supreme Commander of [[NATO]] in order to run for [[President of the United States]].
96101 *1952 - [[Occupied Japan]]: The [[United States]] occupation of [[Japan]] ends.
96102 *[[1965]] - [[United States]] troops land in the [[Dominican Republic]] to &quot;forestall establishment of a [[Communist]] dictatorship&quot; and to evacuate U.S. citizens.
96103 *[[1967]] - [[Expo 67]] opens in [[MontrÊal]], QuÊbec, Canada
96104 *[[1969]] - [[Charles de Gaulle]] resigns as [[President of France]].
96105 *[[1970]] - [[Vietnam War]]: U.S. President [[Richard M. Nixon]] formally authorizes [[United States|American]] combat troops to fight [[communist]] sanctuaries in [[Cambodia]].
96106 *[[1977]] - The [[Red Army Faction]] trial ends, with [[Andreas Baader]], [[Gudrun Ensslin]] and [[Jan-Carl Raspe]] found guilty of four counts of [[murder]] and more than 30 counts of [[attempted murder]].
96107 *1977 - The [[Budapest Treaty|Budapest Treaty on the International Recognition of the Deposit of Microorganisms for the Purposes of Patent Procedure]] is signed.
96108 *[[1978]] - [[President of Afghanistan]] [[Mohammed Daoud Khan]] is overthrown and [[assassin]]ated in a [[coup]] led by pro-communist rebels.
96109 *[[1981]] - [[Galicia (Spain)|Galician]] current [[Galician Statute of Autonomy|Statute of Autonomy]]
96110 *[[1987]] - [[United States|U.S.]] engineer [[Ben Linder]] is killed in an ambush by US-funded [[Contras]] in northern [[Nicaragua]].
96111 *[[1988]] - Near [[Maui, Hawaii]], a [[flight attendant]] is sucked out of [[Aloha Flight 243]], a [[Boeing 737]], and falls to her death when an upper part of the plane's cabin area rips off in mid-flight. Metal fatigue is later found to be the cause of the failure.
96112 *[[1990]] - After 6,237 performances, the [[Broadway theatre|Broadway]] musical ''[[A Chorus Line]]'' closes.
96113 *[[1994]] - Former [[Central Intelligence Agency]] official [[Aldrich Ames]] pleads guilty to giving [[United States|U.S.]] secrets to the [[Soviet Union]] and later [[Russia]].
96114 *[[1996]] - [[Whitewater scandal]]: President [[Bill Clinton]] gives 4 1/2 hour videotaped testimony for the defense.
96115 *1996 - [[Port Arthur massacre]]: [[Martin Bryant]] kills 35 people and wounds another 18 in [[Tasmania]], [[Australia]].
96116 *[[1997]] - The [[1993]] [[Chemical Weapons Convention]] goes into effect. [[Russia]], [[Iraq]] and [[North Korea]] were notable nations who had not ratified the treaty.
96117 *[[2001]] - Millionnaire [[Dennis Tito]] becomes the world's first [[space tourism|space tourist]].
96118 *[[2003]] - [[Apple Computer]]'s [[iTunes Music Store]] launches, selling 1 million songs in its first week.
96119 *2003 - Iraq: 15 unarmed teenagers were killed by American forces in front of a school during a demostration; marking the beginning of the [[Falluja]] riots that took place during [[April 2003]].
96120 *[[2004]] - Pictures of abuse and torture of prisoners by U.S. armed forces at [[Abu Ghraib prison]] are first shown on [[60 Minutes]].
96121 *[[2005]] - The [[Patent Law Treaty]] goes into effect.
96122
96123 ==Births==
96124 *[[1442]] - King [[Edward IV of England]] (d. [[1483]])
96125 *[[1630]] - [[Charles Cotton]], English poet (d. [[1687]])
96126 *[[1686]] - [[Michael Brokoff]], Czech sculptor (d. [[1721]])
96127 *[[1715]] - [[Franz Sparry]], composer (d. [[1767]])
96128 *[[1758]] - [[James Monroe]], 5th [[President of the United States]] (d. [[1831]])
96129 *[[1819]] - [[Ezra Abbot]], American Bible scholar (d. [[1884]])
96130 *[[1838]] - [[Tobias Michael Carel Asser]], Dutch jurist, recipient of the [[Nobel Peace Prize]] (d. [[1913]])
96131 *[[1874]] - [[Karl Kraus]], Austrian journalist and author (d. [[1936]])
96132 *[[1878]] - [[Lionel Barrymore]], American actor (d. [[1954]])
96133 *[[1886]] - [[Ghabdulla Tuqay|&amp;#286;abdulla Tuqay]], Russian poet (d. [[1913]])
96134 *[[1889]] - [[AntÃŗnio de Oliveira Salazar]], dictator of Portugal (d. [[1970]])
96135 *[[1900]] - [[Jan Oort]], Dutch astronomer (d. [[1992]])
96136 *[[1903]] - [[Johan Borgen]], Norwegian author (d. [[1979]])
96137 *[[1906]] - [[Kurt GÃļdel]], Austrian mathematician (d. [[1978]])
96138 *1906 - [[Paul Sacher]], Swiss conductor (d. [[1999]])
96139 *[[1908]] - [[Oskar Schindler]], Austrian businessman and anti-Nazi resistance worker (d. [[1974]])
96140 *[[1912]] - [[Odette Sansom]], French resistance worker (d. [[1995]])
96141 *[[1916]] - [[Ferruccio Lamborghini]], Italian automobile manufacturer (d. [[1993]])
96142 *[[1921]] - [[Rowland Evans]], American journalist and commentator (d. [[2001]])
96143 *[[1924]] - [[Kenneth Kaunda]], [[President of Zambia]]
96144 *[[1926]] - [[Harper Lee]], American author
96145 *[[1928]] - [[Yves Klein]], French painter (d. [[1962]])
96146 *1928 - [[Eugene M. Shoemaker]], American planetary scientist (d. [[1997]])
96147 *[[1930]] - [[James Baker]], American politician
96148 *1930 - [[Carolyn Jones]], American actress (d. [[1983]])
96149 *[[1937]] - [[Saddam Hussein]], former leader of Iraq
96150 *[[1938]] - [[Madge Sinclair]], Jamaican actress (d. [[1995]])
96151 *[[1941]] - [[Ann-Margret]], Swedish-born actress
96152 *1941 - [[K. Barry Sharpless]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate
96153 *[[1943]] - [[Jacques Dutronc]], French singer and actor
96154 *[[1944]] - [[Jean-Claude Van Cauwenberghe]], Belgian politician
96155 *[[1948]] - [[Terry Pratchett]], English author
96156 *1948 - [[Marcia Strassman]], American actress
96157 *[[1950]] - [[Jay Leno]], American comedian and television host
96158 *[[1952]] - [[Mary McDonnell]], American actress
96159 *[[1953]] - [[Kim Gordon]], American musician ([[Sonic Youth]])
96160 *[[1955]] - [[Paul Guilfoyle]], American actor
96161 *[[1955]] - [[Nicky Gumbel]], British Author and Priest
96162 *[[1956]] - [[Jimmy Barnes]], Scottish-born singer
96163 *[[1958]] - [[Hal Sutton]], American golfer
96164 *[[1960]] - [[John Cerutti]], baseball player and announcer (d. [[2004]])
96165 *[[1966]] - [[John Daly]], American golfer
96166 *1966 - [[Too $hort]], American rapper
96167 *[[1970]] - [[Nicklas LidstrÃļm]], Swedish Hockey player
96168 *1970 - [[Diego Simeone]], Argentine footballer
96169 *[[1973]] - [[Elisabeth RÃļhm]], American actress
96170 *1973 - [[Jorge Garcia]], American actor
96171 *[[1974]] - [[PenÊlope Cruz]], Spanish actress
96172 *1974 - [[Richel Hersisia]], Dutch boxer
96173 *[[1981]] - [[Jessica Alba]], American actress
96174 *[[1986]] - [[Keri Sable]], American pornographic actress
96175 &lt;!-- Please do not add your own birthday to this list. Thank you. --&gt;
96176
96177 ==Deaths==
96178 *[[1192]] - [[Conrad of Montferrat]], King of Jerusalem
96179 *[[1498]] - [[Henry Percy, 4th Earl of Northumberland]], English politician (killed in battle)
96180 *[[1533]] - [[Nicholas West]], English bishop and diplomat (b. [[1461]])
96181 *[[1695]] - [[Henry Vaughan]], Welsh poet (b. [[1621]])
96182 *[[1710]] - [[Thomas Betterton]], English actor
96183 *[[1726]] - [[Thomas Pitt]], British Governor of Madras (b. [[1653]])
96184 *[[1772]] - [[Johann Friedrich Struensee]], physician of [[Christian VII of Denmark]] (b. [[1737]])
96185 *[[1781]] - [[Cornelius Harnett]], American delegate to the Continental Congress]] (b. [[1723]])
96186 *[[1813]] - [[Mikhail Illarionovich Kutuzov]], Russian field marshal (b. [[1745]])
96187 *[[1816]] - [[Johann Heinrich Abicht]], German philosopher (b. [[1862]])
96188 *[[1841]] - [[Peter Chanel]], French saint (b. [[1803]])
96189 *[[1853]] - [[Ludwig Tieck]], German writer (b. [[1773]])
96190 *[[1858]] - [[Johannes Peter MÃŧller]], German physiologist (b. [[1801]])
96191 *[[1905]] - [[Fitzhugh Lee]], American Confederate general (b. [[1835]])
96192 *[[1926]] - [[Zip the Pinhead]], American freak show performer (b. [[1857]])
96193 *[[1945]] - [[Benito Mussolini]], Italian fascist dictator (b. [[1882]])
96194 *1945 - [[Clara Petacci]], Italian mistress of [[Benito Mussolini]] (shot) (b. [[1912]])
96195 *1945 - [[Roberto Farinacci]], Italian fascist (b. [[1892]])
96196 *[[1954]] - [[LÊon Jouhaux]], French labor leader, recipient of the [[Nobel Peace Prize]] (b. [[1879]])
96197 *[[1973]] - [[Clas Thunberg]], Finnish speed skater (d. [[1893]])
96198 *[[1978]] - [[Sardar Mohammed Daoud]], [[President of Afghanistan]] (shot) (b. [[1909]])
96199 *[[1992]] - [[Francis Bacon (painter)|Francis Bacon]], Anglo-Irish painter (b. [[1909]])
96200 *1992 - [[Iceberg Slim]], American writer (b. [[1918]])
96201 *[[1993]] - [[Jim Valvano]], American basketball coach (b. [[1946]])
96202 *[[1999]] - [[Rory Calhoun]], American actor (b. [[1922]])
96203 *1999 - [[Arthur Leonard Schawlow]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1921]])
96204 *[[2000]] - [[Penelope Fitzgerald]], English writer (b. [[1916]])
96205 *[[2002]] - [[Alexander Lebed]], Russian general (b. [[1950]])
96206 *2002 - [[Lou Thesz]], American wrestler (b. [[1916]])
96207 *[[2005]] - [[Chris Candito|Chris Candido]], professional wrestler (b. [[1972]])
96208
96209 ==Holidays and observances==
96210 *[[Roman Empire]] - first day of the [[Floralia]] in honor of [[Chloris|Flora]]
96211 *[[BahÃĄ'í Faith]] - Feast of JamÃĄl (Beauty) - First day of the third month of the BahÃĄ'í Calendar
96212 *[http://www.ilo.org/public/english/protection/safework/worldday/ World Day for Safety and Health at Work]
96213 *[[Feast day]] of the following [[saint]]s in the [[Roman Catholic Church]]:
96214 **[[Saints Theodora and Didymus]]
96215 **[[Arthemius]]
96216 **[[Saints Vitalis and Valeria]]
96217 **[[Patritius]]
96218 **[[Luchesius]]
96219 **[[Louis Marie Grignon of Montfort]]
96220 **[[Peter Chanel]]
96221
96222 ==External links==
96223 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/28 BBC: On This Day]
96224
96225 ----
96226
96227 [[April 27]] - [[April 29]] - [[March 28]] - [[May 28]] – [[historical anniversaries|listing of all days]]
96228
96229 {{months}}
96230
96231 [[af:28 April]]
96232 [[ar:28 ØŖØ¨ØąŲŠŲ„]]
96233 [[an:28 d'abril]]
96234 [[ast:28 d'abril]]
96235 [[bg:28 Đ°ĐŋŅ€Đ¸Đģ]]
96236 [[be:28 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
96237 [[bs:28. april]]
96238 [[ca:28 d'abril]]
96239 [[ceb:Abril 28]]
96240 [[cv:АĐēĐ°, 28]]
96241 [[co:28 d'aprile]]
96242 [[cs:28. duben]]
96243 [[cy:28 Ebrill]]
96244 [[da:28. april]]
96245 [[de:28. April]]
96246 [[et:28. aprill]]
96247 [[el:28 ΑĪ€ĪÎšÎģίÎŋĪ…]]
96248 [[es:28 de abril]]
96249 [[eo:28-a de aprilo]]
96250 [[eu:Apirilaren 28]]
96251 [[fo:28. apríl]]
96252 [[fr:28 avril]]
96253 [[fy:28 april]]
96254 [[ga:28 AibreÃĄn]]
96255 [[gl:28 de abril]]
96256 [[ko:4ė›” 28ėŧ]]
96257 [[hr:28. travnja]]
96258 [[io:28 di aprilo]]
96259 [[id:28 April]]
96260 [[ia:28 de april]]
96261 [[ie:28 april]]
96262 [[is:28. apríl]]
96263 [[it:28 aprile]]
96264 [[he:28 באפריל]]
96265 [[jv:28 April]]
96266 [[ka:28 აპრილი]]
96267 [[csb:28 łÅŧÃĢkwiôta]]
96268 [[ku:28'ÃĒ avrÃĒlÃĒ]]
96269 [[lt:BalandÅžio 28]]
96270 [[lb:28. AbrÃĢll]]
96271 [[li:28 april]]
96272 [[hu:Április 28]]
96273 [[mk:28 Đ°ĐŋŅ€Đ¸Đģ]]
96274 [[mi:28 Paenga-whāwhā]]
96275 [[ms:28 April]]
96276 [[nap:28 'e abbrile]]
96277 [[nl:28 april]]
96278 [[ja:4月28æ—Ĩ]]
96279 [[no:28. april]]
96280 [[nn:28. april]]
96281 [[oc:28 d'abril]]
96282 [[pl:28 kwietnia]]
96283 [[pt:28 de Abril]]
96284 [[ro:28 aprilie]]
96285 [[ru:28 Đ°ĐŋŅ€ĐĩĐģŅ]]
96286 [[sco:28 Aprile]]
96287 [[sq:28 Prill]]
96288 [[scn:28 di aprili]]
96289 [[simple:April 28]]
96290 [[sk:28. apríl]]
96291 [[sl:28. april]]
96292 [[sr:28. Đ°ĐŋŅ€Đ¸Đģ]]
96293 [[fi:28. huhtikuuta]]
96294 [[sv:28 april]]
96295 [[tl:Abril 28]]
96296 [[tt:28. Äpril]]
96297 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 28]]
96298 [[th:28 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
96299 [[vi:28 thÃĄng 4]]
96300 [[tr:28 Nisan]]
96301 [[uk:28 ĐēвŅ–Ņ‚ĐŊŅ]]
96302 [[ur:28 اŲžØąÛŒŲ„]]
96303 [[wa:28 d' avri]]
96304 [[war:Abril 28]]
96305 [[zh:4月28æ—Ĩ]]
96306 [[pam:Abril 28]]</text>
96307 </revision>
96308 </page>
96309 <page>
96310 <title>Alfred the Great</title>
96311 <id>1640</id>
96312 <revision>
96313 <id>42103550</id>
96314 <timestamp>2006-03-03T21:22:59Z</timestamp>
96315 <contributor>
96316 <username>UkPaolo</username>
96317 <id>269651</id>
96318 </contributor>
96319 <minor />
96320 <comment>Reverted edits by [[Special:Contributions/80.189.247.197|80.189.247.197]] ([[User talk:80.189.247.197|talk]]) to last version by Stbalbach</comment>
96321 <text xml:space="preserve">{{Infobox Monarch Basic
96322 | name=Alfred the Great
96323 | title=King of England
96324 | image=[[Image:Alfred the Great.jpg|200px]]
96325 | rank=6th
96326 | reign=[[871]]&amp;ndash;[[26 October]], [[899]]
96327 | date of birth=c.[[849]]
96328 | place of birth=[[Wantage]], modern [[Oxfordshire]],&lt;br/&gt;[[England]]
96329 | date of death=[[26 October]] [[899]]
96330 | place of death=|
96331 | place of burial=Hyde Abbey
96332 | married=[[Ealhswith]]
96333 | father=[[Ethelwulf of Wessex|Ethelwulf]]
96334 | mother=[[Osburga]]
96335 }}
96336
96337 '''Alfred''' ([[849]]? &amp;ndash; [[26 October]] [[899]]) or ''Ælfred'' was king of the southern [[Anglo-Saxon]] kingdom of [[Wessex]] from [[871]] to [[899]]. Alfred is famous for his defence of the kingdom against the Danes ([[Vikings]]), becoming as a result the only English monarch to be awarded the [[epithet]] &quot;the Great&quot; by his people. Alfred was the first [[List of monarchs of Wessex|King of Wessex]] to style himself &quot;[[List of British monarchs|King of England]]&quot;. Details of his life are known as a result of a work by the [[Wales|Welsh]] scholar, [[Asser, Bishop of Sherborne|Asser]]. A learned man, Alfred encouraged education and improved the kingdom's law system ([[Doom book]]).
96338
96339 == Childhood ==
96340 Alfred was born sometime between [[847]] and AD [[849]] at [[Wantage, England|Wantage]] in present-day [[Oxfordshire]], the fourth son of King [[Ethelwulf of Wessex]] (ÆÞelwulf), most likely by his first wife, [[Osburh]]. He succeeded his brother, [[Ethelred I]] (ÆÞelrÃĻd I), as King of [[Wessex]] and [[Mercia]] in [[871]].
96341
96342 He seems to have been a child of singular attractiveness and promise, and tales of his boyhood were remembered. At five years old, in [[853]], he is said to have been sent to [[Rome]], where he was confirmed by [[Pope Leo IV]], who is also said to have &quot;anointed him as king.&quot; Later writers took this as an anticipatory crowning in preparation for his ultimate succession to the throne of Wessex. That, however, could not have been foreseen in 853, as Alfred had three elder brothers living. It is likely to be understood either of investiture with the consular insignia or possibly with some titular royalty such as that of the under-kingdom of [[Kent]].
96343
96344 This tale is likely apocryphal, though in [[854]]&amp;ndash;[[855]] Alfred almost certainly did go with his father on a pilgrimage to [[Rome]], spending some time at the court of [[Charles the Bald]], King of the [[Franks]]. In [[858]], Ethelwulf died.
96345
96346 == Public life ==
96347 During the short reigns of his two eldest brothers, [[Ethelbald of Wessex|Ethelbald]] and [[Ethelbert of Wessex|Ethelbert]], nothing is heard of Alfred. But with the accession of the third brother, Ethelred, in [[866]] the public life of Alfred began, and he began his great work of delivering England from the [[Denmark|Danes]]. It is in this reign that Asser applies to Alfred the unique title of ''secundarius,'' which seems to show a position akin to that of the [[Celt]]ic ''tanist,'' a recognized successor, closely associated with the reigning prince. It is likely that this arrangement was sanctioned by the [[Witenagemot]], to guard against the danger of a disputed succession should Aethelred fall in battle. The arrangement of crowning a successor as co-king, however, is well-known among [[Germanic tribes]], such as the [[Swedes]], and the Franks, with whom the Anglo-Saxons had close ties (see [[diarchy]] and [[Germanic king]]).
96348 [[Image:Statue d'Alfred le Grand à Winchester.jpg|right|thumb|250px|Statue of Alfred the Great at Winchester]]
96349 In [[868]] Alfred married [[Ealhswith]], daughter of [[Aethelred Mucill]], who is called [[ealdorman]] of the [[Gaini]], a folk who dwelt in [[Lincolnshire]] about [[Gainsborough, England|Gainsborough]]. She was the granddaughter of a former King of Mercia, and they had five or six children, one a daughter, [[Ethelfleda]], who would become queen of Mercia in her own right.
96350
96351 The same year Alfred, fighting beside his brother Ethelred, made an unsuccessful attempt to relieve Mercia from the pressure of the Danes. For nearly two years Wessex had a respite. But at the end of [[870]] the storm burst; and the year which followed has been rightly called &quot;Alfred's year of battles.&quot;
96352
96353 Nine general engagements were fought with varying fortune, though the place and date of two of them have not been recorded. A successful skirmish at [[Battle of Englefield]], [[Berkshire]] ([[31 December]] [[870]]), was followed by a severe defeat at the [[Battle of Reading (871)|Battle of Reading]] ([[4 January]] [[871]]), and this, four days later, by the brilliant victory of [[Battle of Ashdown]], near [[Compton Beauchamp]] in [[Shrivenham Hundred]].
96354
96355 On [[22 January]] [[871]] the English were again defeated at [[Basing]], and on [[22 March]] [[871]] at [[Marton, Wiltshire|Marton]], [[Wiltshire]], the two unidentified battles having perhaps occurred in the interval.
96356
96357 === Accession ===
96358 In April 871 Ethelred died, and Alfred succeeded to the whole burden of the contest. While he was busied with the burial and associated ceremonies for his brother, the Danes defeated the English in his absence at an unnamed spot, and once more in his presence at [[Wilton, Wiltshire|Wilton]] in May. After this peace was made, and for the next five years the Danes were occupied in other parts of England, Alfred merely keeping a force of observation on the border. But in [[876]], the Danes, under a new leader, [[Guthrum the Old| Guthrum]], slipped past him and attacked [[Wareham]]. From there, early in [[877]] and under the pretext of talks, they made a dash westwards and took [[Exeter, England|Exeter]]. Here Alfred blockaded them, and a relieving fleet having been scattered by a storm, the Danes had to submit and withdraw to Mercia. But in January [[878]] they made a sudden swoop on [[Chippenham, Wiltshire|Chippenham]], a royal stronghold in which Alfred had been keeping his Christmas, &quot;and most of the people they reduced, except the King Alfred, and he with a little band made his wayâ€Ļ by wood and swamp, and after Easter heâ€Ļ made a fort at [[Athelney]], and from that fort kept fighting against the foe&quot; (Chronicle).
96359 [[Image:KingAlfredStatueWantage.jpg|thumb|200px|left|Alfred the Great's birthplace [[Wantage]] boasts a statue of its greatest son.]]
96360
96361 A legend tells how, while a fugitive in the marshes of [[Athelney]] near [[North Petherton]] in [[Somerset]], after the first Danish invasion, he was given shelter by a peasant woman who, ignorant of his identity, left him to watch some cakes she had left cooking on the fire. Preoccupied with the problems of the kingdom, Alfred let the cakes burn, and was taken to task by the woman on her return. Upon realizing the king's identity, the woman apologized profusely, but Alfred insisted that he was the one who needed to apologize. The thought that Alfred, during his retreat at Athelney, was a helpless fugitive rests upon the legend of the cakes. In truth he was organizing victory. At about the same time, he is supposed to have disguised himself as a harpist to gain entry to Guthrum's camp and discover his plans.
96362
96363 By the middle of May, his preparations were complete and he moved out of Athelney, being joined on the way by the levies of [[Somerset]], [[Wiltshire]] and [[Hampshire]]. The Danes on their side moved out of Chippenham, and the two armies met at the [[Battle of Edington]] in Wiltshire. The result was a decisive victory for Alfred. The Danes submitted. Guthrum, the Danish king, and twenty-nine of his chief men took baptism, recorded by Asser as occuring at [[Treaty of Wedmore|Wedmore]]. As a result, [[England]] became split into two, the south-western half kept by the [[Saxons]] and the north-eastern half becoming known as the [[Danelaw]]. By the next year ([[879]]) not only Wessex, but Mercia, west of [[Watling Street]], was cleared of the invader.
96364
96365 Though for the time being the north-eastern half of England, including [[London]], was in the hands of the Danes, in truth the tide had turned. For the next few years there was peace, the Danes being kept busy in Europe. A landing in Kent in [[880s|884 or 885]], though successfully repelled, encouraged the East Anglian Danes to rise up. The measures taken by Alfred to repress this uprising culminated in the taking of London in [[885]] or [[886]], following which an agreement was reached between Alfred and Guthrum, the [[Treaty of Alfred and Guthrum]].
96366
96367 Once more for a time there was a lull; but in the fall of [[890s|892 or 893]] the last storm burst. The Danes, finding their position in Europe becoming more and more precarious, crossed to England in two divisions, amounting in the aggregate to 330 sail, and entrenched themselves, the larger body at [[Appledore, Kent]], and the lesser under [[Haesten]] at [[Milton, Kent|Milton]] also in Kent. The fact that the new invaders brought their wives and children with them shows that this was no mere raid, but a meaningful attempt, in concert with the Northumbrian and East Anglian Danes, to conquer England. Alfred, in 893 or 894, took up a position whence he could observe both forces. While he was in talks with Haesten the Danes at Appledore broke out and struck north-westwards, but were overtaken by Alfred's eldest son, [[Edward the Elder|Edward]], and defeated in a general engagement at [[Farnham]], and driven to take refuge on an island in the [[River Colne, Hertfordshire|Hertfordshire Colne]], where they were blockaded and ultimately compelled to submit. They then fell back on Essex, and after suffering another defeat at [[Benfleet]] coalesced with Haesten's force at [[Shoebury]].
96368
96369 Alfred had been on his way to relieve his son at Thorney when he heard that the Northumbrian and East Anglian Danes were besieging Exeter and an unnamed stronghold on the North [[Devon]] shore. Alfred at once hurried westward and raised the siege of Exeter; the fate of the other place is not recorded. Meanwhile the force under Haesten set out to march up the [[Thames Valley]], possibly with the idea of assisting their friends in the west. But they were met by a large force under the three great ealdormen of Mercia, Wiltshire and Somerset, and made to head off to the northwest, being finally overtaken and blockaded at [[Buttington]], which some identify with [[Buttington Tump]] at the mouth of the [[River Wye|Wye River]], others with Buttington near [[Welshpool]]. An attempt to break through the English lines was defeated with loss; those who escaped retreated to Shoebury. Then after collecting reinforcements they made a sudden dash across England and occupied the ruined Roman walls of [[Chester, England|Chester]]. The English did not attempt a winter blockade, but contented themselves with destroying all the supplies in the neighbourhood. And early in [[894]] (or [[895]]) want of food obliged the Danes to retire once more to Essex. At the end of this year and early in 895 (or [[896]]) the Danes drew their ships up the Thames and [[River Lee|Lea]] and fortified themselves twenty miles above London. A direct attack on the Danish lines failed, but later in the year Alfred saw a means of obstructing the river so as to prevent the egress of the Danish ships. The Danes realized that they were out-maneuvred. They struck off northwestwards and wintered at [[Bridgenorth]]. The next year, 896 (or [[897]]), they gave up the struggle. Some retired to Northumbria, some to East Anglia; those who had no connections in England withdrew to the continent. The long campaign was over.
96370
96371 The result testifies to the confidence inspired by Alfred's character and generalship, and to the efficacy of the military reforms initiated by him. These were:
96372 #the division of the ''[[fyrd]]'' or national militia into two, relieving each other at set intervals, so as to ensure continuity in military operations;
96373 #the building of strongholds (burgs) and garrisons at certain points;
96374 #the enforcement of the obligations of thanehood on all owners of five hides of land, thus giving the king a nucleus of highly equipped troops.
96375
96376 ==== Reference ====
96377 * Sir [[Francis Palgrave]], ''History of the Anglo-Saxons'' (1876), pg. 102
96378
96379 === Reorganization ===
96380 After the dispersal of the Danish invaders Alfred turned his attention to the increase of the royal [[navy]], and ships were built according to the king's own designs, partly to repress the ravages of the Northumbrian and East Anglian Danes on the coasts of Wessex, partly to prevent the landing of fresh hordes. This is not, as often asserted, the beginning of the English navy. There had been earlier naval operations under Alfred. One naval engagement was certainly fought under [[Aethelwulf|Æthelwulf]] (in [[851]]), and earlier ones, possibly in [[833]] and [[840]]. The partisan [[Anglo-Saxon Chronicle|Anglo-Saxon Chronicle]] credits Alfred with the construction of a new type of boat, 'swifter, steadier and also higher/more responsive (hierran) than the others'; but these new ships were not a great success, as we hear of them grounding in action and foundering in a storm. Nevertheless both the [[Royal Navy]] and the [[United States Navy]] claim Alfred as the founder of their traditions. The first vessel ever commissioned into the United States Navy was [[USS Alfred|USS ''Alfred'']].
96381
96382 Alfred's main fighting force was separated into two, 'so that there was always half at home and half out' ([[Anglo-Saxon Chronicle]]). The level of organisation required to mobilise his large army in two shifts of which one was feeding the other must have been considerable. The complexity which Alfred's administration had attained by [[892]] is demonstrated by a reasonably reliable charter whose witness list includes a ''thesaurius'', ''cellararius'' and ''pincerna''&amp;mdash;treasurer, food-keeper and butler. Despite the irritation which Alfred must have felt in [[893]], when one division, which had 'completed their call-up (stemn)' gave up the siege of a Danish army even as Alfred was moving to relieve them, this system seems to have worked remarkably well on the whole.
96383
96384 One of the weaknesses of pre-Alfredian defences had been that, in the absence of a standing army, fortresses were largely left unoccupied, making it very possible for a Viking force quickly to secure a strong strategic position. Alfred substantially upgraded the state of many of Wessex's fortresses, as has been demonstrated by systematic excavation of four West Saxon boroughs (at [[Wareham]], [[Cricklade]], [[Lydford]] and [[Wallingford]]]) that &quot;in every case the rampart associated by the excavators with the borough of the Alfredian period was the primary defence on the site&quot; (N.P. Brooks ''The Development of Military Obligations in Eighth and Ninth Century England''). We know that such defences were not constructed by the occasional Danish occupiers, thanks to surviving transcripts of the formidable 11th Century administrative manuscript known as the Burghal Hidage, dated within 20 years of Alfred's death&amp;mdash;it may well date to Alfred's reign, and it almost certainly reflects Alfredian policy. This documents the established position of these four [[burh]]s, among many others, as permanently garrisoned and maintained fortress-towns. By comparing town plans of Wallingford and Wareham with that of Winchester, one can see 'that they were laid out in the same scheme' (P. Wormald in J. Campbell, ed., ''The Anglo-Saxons''). This supports the proposition that these newly established burhs were planned as centres of habitation and trade as well as a place of safety in moments of immediate danger.
96385
96386 The &quot;[[Tribal Hidage|Burghal Hidage]]&quot; sets out the obligations for the upkeep and defence of these towns; in this way, the English population and its wealth was drawn into towns where it was not only safer from Viking soldiers, but also taxable by the King.
96387
96388 Alfred is thus credited with a significant degree of civil reorganization, especially in the districts ravaged by the Danes. Even if one rejects the thesis crediting the 'Burghal Hidage' to Alfred, what is undeniable is that, in the parts of Mercia acquired by Alfred from the Vikings, the [[shire]] system seems now to have been introduced for the first time. This is at least one grain of truth in the legend that Alfred was the inventor of shires, [[Hundred (division)|hundreds]] and [[tithing]]s. The finances also needed attention; but the subject is obscure, and we cannot accept Asser's description of Alfred's appropriation of his revenue as more than an ideal sketch. Alfred's care for the administration of justice is testified both by history and legend; and the title &quot;protector of the poor&quot; was his by unquestioned right. Of the action of the [[Witangemot]] we do not hear very much under Alfred. That he was anxious to respect its rights is conclusively proved, but both the circumstances of the time and the character of the king would tend to throw more power into his hands. The legislation of Alfred probably belongs to the later part of the reign, after the pressure of the Danes had relaxed.
96389
96390 === Foreign relations ===
96391 Asser speaks grandiosely of Alfred's relations with foreign powers, but little definite information is available. He certainly corresponded with [[Elias III]], the [[Orthodox Patriarch of Jerusalem|patriarch of Jerusalem]], and probably sent a mission to [[India]]. Embassies to Rome conveying the English alms to the [[Pope]] were fairly frequent; while Alfred's interest in foreign countries is shown by the insertions which he made in his translation of [[Orosius]].
96392
96393 Around 890 [[Wulfstan of Haithabu]] undertook a journey from [[Haithabu]] on [[Jutland]] along the [[Baltic Sea]] to the Prussian trading town [[Truso]]. Wulfstan reported details of his trip to Alfred the Great.
96394
96395 His relations to the [[Celt]]ic princes in the southern half of the island are clearer. Comparatively early in his reign the [[South Wales|Welsh]] princes, owing to the pressure on them of [[North Wales]] and Mercia, commended themselves to Alfred. Later in the reign the North Welsh followed their example, and the latter co-operated with the English in the campaign of 893 (or 894). That Alfred sent alms to [[Ireland|Irish]] as well as to European monasteries may be taken on Asser's authority; the visit of the three pilgrim &quot;Scots&quot; (i.e., Irish) to Alfred in 891 is undoubtedly authentic; the story that he himself in his childhood was sent to Ireland to be healed by [[St. Modwenna]], though mythical, may show Alfred's interest in that island.
96396
96397 === Christianity and His Writings===
96398 The history of the [[Christianity|church]] under Alfred is most obscure. The Danish inroads had told heavily upon it; the monasteries had been special points of attack, and though Alfred founded two or three monasteries and imported foreign monks, there was no general revival of monasticism under him.
96399
96400 To the ruin of learning and education wrought by the Danes, and the practical extinction of the knowledge of Latin even among the clergy, the preface to Alfred's translation into [[Old English language|Old English]] of [[Pope Gregory I|Pope Gregory's]] ''[[Pastoral Care]]'' bears eloquent witness. It was to remedy these evils that he established a court school, after the example of [[Charlemagne]]; for this he imported scholars like [[Grimbald]] and [[John the Saxon]] from Europe and Asser from South Wales; for this, above all, he put himself to school, and made the series of translations for the instruction of his clergy and people, most of which yet survive. These belong unquestionably to the latter of his reign, likely to the last four years, during which the chronicles are almost silent.
96401
96402 Apart from the lost ''Handboc'' or ''Encheiridion,'' which seems to have been merely a commonplace-book kept by the king, the earliest work to be translated was the ''Dialogues of Gregory,'' a book greatly popular in the [[Middle Ages]]. In this case the translation was made by Alfred's great friend [[Werferth]], Bishop of [[Worcester, England|Worcester]], the king merely furnishing a foreword. The next work to be undertaken was Gregory's ''Pastoral Care,'' especially for the good of the parish clergy. In this Alfred keeps very close to his original; but the introduction which he prefixed to it is one of the most interesting documents of the reign, or indeed of English history. The next two works taken in hand were historical, the ''Universal History'' of Orosius and [[Bede|Bede's]] ''[[Historia ecclesiastica gentis Anglorum|Ecclesiastical History of the English People]].'' The priority should likely be given to the Orosius, but the point has been much debated. In the Orosius, by omissions and additions, Alfred so remodels his original as to produce an almost new work; in the Bede the author's text is closely stuck to, no additions being made, though most of the documents and some other less interesting matters are omitted. Of late years doubts have been raised as to Alfred's authorship of the Bede translation. But the sceptics cannot be regarded as having proved their point.
96403
96404 We come now to what is in many ways the most interesting of Alfred's works, his translation of ''[[Consolation of Philosophy|The Consolation of Philosophy]]'' of [[Anicius Manlius Severinus Boethius|Boethius]], the most popular philosophical handbook of the middle ages. Here again Alfred deals very freely with his original and though the late Dr. G. Schepss showed that many of the additions to the text are to be traced not to Alfred himself, but to the glosses and commentaries which he used, still there is much in the work which is solely Alfred's and highly characteristic of his genius. It is in the Boethius that the oft-quoted sentence occurs: &quot;My will was to live worthily as long as I lived, and after my life to leave to them that should come after, my memory in good works.&quot; The book has come down to us in two manuscripts only. In one of these the writing is prose, in the other alliterating verse. The authorship of the latter has been much disputed; but likely they also are by Alfred. In fact, he writes in the prelude that he first created a prose work and then used it as the basis for his poem, the [[Lays of Boethius]], his crowning literary achievement. He spent a great deal of time working on these books, which he tells us he gradually wrote through the many stressful times of his reign to refresh his mind. Of the authenticity of the work as a whole there has never been any doubt.
96405
96406 The last of Alfred's works is one to which he gave the name ''Blostman,'' i.e., &quot;Blooms&quot; or Anthology. The first half is based mainly on the ''Soliloquies'' of St [[Augustine of Hippo]], the remainder is drawn from various sources, and contains much that is Alfred's own and highly characteristic of him. The last words of it may be quoted; they form a fitting epitaph for the noblest of English kings. &quot;Therefore he seems to me a very foolish man, and truly wretched, who will not increase his understanding while he is in the world, and ever wish and long to reach that endless life where all shall be made clear.&quot;
96407
96408 Beside these works of Alfred's, the Saxon Chronicle almost certainly, and a Saxon Martyrology, of which fragments only exist, probably owe their inspiration to him. A prose version of the first fifty [[Psalms]] has been attributed to him; and the attribution, though not proved, is perfectly possible. Additionally, Alfred appears as a character in ''[[The Owl and the Nightingale]],'' where his wisdom and skill with proverbs is attested. Additionally, ''[[The Proverbs of Alfred]]'', which exists for us in a 13th century manuscript contains sayings that very likely have their origins partly with the king.
96409
96410 === Death ===
96411 Alfred died on [[26 October]] [[899]], though the year is uncertain &amp;mdash; but not [[900]] or [[901]] as were previously accepted. How he died is unknown. He was originally buried in the Old Minster, then moved to the New Minster, and then transferred to Hyde Abbey in the year 1110.
96412
96413 ==Appearance in Culture==
96414 In honour of Alfred, the [[University of Liverpool]] now has a [[King Alfred Chair of English Literature]].
96415
96416 [[Thomas Augustine Arne]]'s ''[[Masque of Alfred]]'' (known for &quot;[[Rule Britannia]]&quot;) was a [[masque]] about Alfred the Great (first public performance: [[1745]]).
96417
96418 [[G K Chesterton]]'s poetical epic ''[[The Ballad of the White Horse]]'' describes Alfred uniting the fragmented Kingdoms of Britain to chase the northern invaders away from the island. Like [[Shakespeare]]'s ''[[Henry V (play)|Henry V]]'', it deals with the theme of a divinely oriented leader waging physical and spiritual battle against a morally unjust enemy.
96419
96420 The [[historical fiction]] author [[Bernard Cornwell]] started, in the early 21st century, a retelling saga ''[[The Saxon Stories]]'' about Alfred's life and his struggle against the [[Vikings]]. A biography of Alfred by Justin Pollard was published in 2005.
96421
96422 Alfred was played by [[David Hemmings]] in the [[1969]] film ''Alfred the Great'', which co-starred [[Michael York (actor)|Michael York]] as Guthrum [http://www.imdb.com/title/tt0064000/].
96423
96424 [[Alfred University]], located in [[Alfred (village), New York|Alfred, NY]], is named after him.
96425
96426 == See also ==
96427 * [[British military history]]
96428 * [[University College, Oxford]]
96429 * [[Kingdom of England]]
96430 * [[Lays of Boethius]]
96431 * [[Alfred Jewel]]
96432
96433 == External links ==
96434 * [http://www.royal.gov.uk/output/Page25.asp Alfred the Great] from the [http://www.royal.gov.uk/ official website of the British Monarchy]
96435 * [http://www.mirror.org/ken.roberts/king.alfred.html King Alfred the Great] and [http://www.mirror.org/ken.roberts/alfred.jewel.html Alfred Jewel] by [http://www.mirror.org/ken.roberts/ Ken Roberts]
96436 * [http://rsparlourtricks.blogspot.com/2005/10/alfred-great.html Ron Schuler's Parlour Tricks: Alfred the Great]
96437 * [http://en.wikisource.org/wiki/Lays_of_Boethius Lays of Boethius]
96438
96439 {{1911}}
96440
96441
96442 {{start box}}
96443 {{succession box two to one|
96444 title1=[[List of British monarchs|King of England]]|
96445 before1=-|
96446 years1=|
96447 title2=[[List of monarchs of Wessex|King of Wessex]]|
96448 before2=[[Ethelred of Wessex|Ethelred]]|
96449 years2=|
96450 after=[[Edward the Elder]]
96451 }}
96452 {{succession box|
96453 title=[[Bretwalda]]|
96454 before=[[Ethelred of Wessex|Ethelred]]|
96455 years=|
96456 after=None
96457 }}
96458 {{end box}}
96459
96460 [[Category:840s births]]
96461 [[Category:899 deaths]]
96462 [[Category:History of Europe]]
96463 [[Category:Anglo-Saxon monarchs]]
96464 [[Category:West Saxon monarchs]]
96465 [[Category:Viking Age]]
96466 [[Category:University College, Oxford]]
96467
96468 [[ang:Ælfrēd se Grēata]]
96469 [[cs:AlfrÊd VelikÃŊ]]
96470 [[de:Alfred der Große]]
96471 [[es:Alfredo el Grande]]
96472 [[eo:Alfredo la Granda]]
96473 [[fr:Alfred le Grand]]
96474 [[he:אלפרד הגדול]]
96475 [[lv:Alfreds Lielais]]
96476 [[lb:Alfred de Groussen]]
96477 [[nl:Alfred de Grote]]
96478 [[ja:ã‚ĸãƒĢフãƒŦッド大įŽ‹]]
96479 [[no:Alfred av England]]
96480 [[pl:Alfred Wielki]]
96481 [[pt:Alfredo de Inglaterra]]
96482 [[ru:АĐģŅŒŅ„Ņ€ĐĩĐ´ ВĐĩĐģиĐēиК]]
96483 [[fi:Alfred Suuri]]
96484 [[sv:Alfred den store]]
96485 [[uk:АĐģŅŒŅ„Ņ€ĐĩĐ´ ВĐĩĐģиĐēиК]]</text>
96486 </revision>
96487 </page>
96488 <page>
96489 <title>Alfred Ernest Albert</title>
96490 <id>1641</id>
96491 <revision>
96492 <id>15900108</id>
96493 <timestamp>2004-12-17T22:44:08Z</timestamp>
96494 <contributor>
96495 <username>John Kenney</username>
96496 <id>10512</id>
96497 </contributor>
96498 <text xml:space="preserve">#REDIRECT: [[Alfred, Duke of Saxe-Coburg and Gotha]]</text>
96499 </revision>
96500 </page>
96501 <page>
96502 <title>Alessandro Algardi</title>
96503 <id>1642</id>
96504 <revision>
96505 <id>38155460</id>
96506 <timestamp>2006-02-04T15:46:59Z</timestamp>
96507 <contributor>
96508 <username>Pietro</username>
96509 <id>19883</id>
96510 </contributor>
96511 <comment>it:</comment>
96512 <text xml:space="preserve">'''Alessandro Algardi''' (Bologna [[July 31]],[[1598]] &amp;ndash; Rome, [[June 10]], [[1654]]), is mainly known as an [[Italy|Italian]] [[Baroque]] [[Sculpture|sculptor]], the major rival of [[Bernini]] in the field and an outstanding draughtsman. His role as an architect rests largely on his designs for the [[Villa Doria Pamphili]], Rome (1644&amp;ndash1652) and its extensive fountains and other garden features, where much of his free-standing sculpture and bas-reliefs also remain, and for the architectonic features of his sculptural setpieces.
96513
96514 While apprenticed in the Bolognese atelier of [[Agostino Carracci]], Algardi's aptitude for sculpture led him to work for the sculptor [[Giulio Cesare Conventi]] (1577&amp;ndash;1640). At the age of twenty he was brought to the notice of [[Duke of Mantua|Ferdinando I, Duke of Mantua]], who gave him several commissions, which gave the young sculptor a chance to immerse himself in one of the greatand exposed the young sculptor a chance to see his large collections of Roman antiquities and sculpture. He was also much employed about the same period by goldsmiths, modelling for them in ivory and making wax ''modelli'' for casting in gold and silver.
96515
96516 After a short residence in [[Venice]], he went to [[Rome]] in 1625 with an introduction from the Duke of Mantua to the [[Pope Gregory XV|late pope's]] nephew, [[Ludovico Cardinal Ludovisi]], who employed him for a time in the restoration of ancient statues, which still form the core of the Bonacorsi-Ludovisi collection in [[Palazzo Altemps]]. . [[Gian Lorenzo Bernini]], in the first flush of his fame, had the pick of the best available commissions in Rome, and the duke's death left Algardi to his own meagre resources, and for several years he earned a precarious living from these restorations and commissions of goldsmiths and jewellers. His friends included his fellow Bolognese, [[Domenichino]] and [[Pietro da Cortona]], and his early Roman commissions included terracotta portrait busts, while he supported himself with small works like crucifixes.
96517
96518 For [[Pietro Buoncompagni]] in 1640, Algardi created his first major public work in marble, a colossal statue of [[Philip Neri]], with kneeling angels. Immediately after this, he produced a similar group, representing the beheading of [[Paul of Tarsus|Saint Paul]] in two figures, of the kneeling saint and the executioner poised to strike the sword-blow, for [[San Paolo Maggiore]], the church of the Barnabite Fathers in Bologna. These proficient works expressed Baroque dramatic attitudes and immediacy of expression, at once established Algardi's reputation, and other commissions quickly followed.
96519
96520 ==Algardi Gains Papal Favor with the Ascent of Innocent X==
96521 For two decades Bernini had dominated the most prominent commissions in Rome, however,with the accession of the Bolognese [[Pamphilj]] [[Pope Innocent X]][http://www.scultura-italiana.com/Galleria/Algardi%20Alessandro/imagepages/image17.html (bust)],[http://members.tripod.com/romeartlover/Juv34.html (coat of arms)]in 1644, Algardi was employed by the Pope and the pope's nephew, [[Camillo Pamphilj]].[http://www.scultura-italiana.com/Galleria/Algardi%20Alessandro/imagepages/image2.html (bust, Hermitage)]For example, he was asked to design the [[Villa Doria Pamphili]] outside the San Pancrazio gate, a project in which he depended on the professional aid of the architect/engineer [[Girolamo Rainaldi]], while Algardi and his studio executed the sculpture-encrusted exteriors and interiors His portrait bust of Camillo Pamphili is at The [[Hermitage Museum]]. A church façade sometimes attributed to Algardi is that of Sant' Ignazio di Loyola in Campo Marzio. In [[1650]] Algardi met [[Diego Velasquez]], who obtained commissions for Spain. There are four chimneypieces by Algardi in the palace of [[Aranjuez]], where the figures on the fountain of [[Neptune (god)|Neptune]] were also by him. The Augustine monastery at [[Salamanca]] contains the tomb of the count and countess de Monterey, another work by Algardi.
96522
96523 ==Relief of ''Fuga d'Attila'' in St. Peter's Basilica==
96524 Algardi's masterpiece is the large dramatic marble high-relief panel of Pope Leo and Attila [http://www.wga.hu/frames-e.html?/html/a/algardi/2/meeting.html (image)](1646&amp;ndash;53) for [[St Peter's Basilica]], which reinvigorated the use of marble in reliefs. There had been large marble reliefs used previously, for example Gianlorenzo's father, [[Pietro Bernini]]'s crowded ''Assumption of the Virgin'' for [[Santa Maria Maggiore]](1606); but for most patrons, it was far too costly to use sculpted marble for such a large display as an altarpiece. In this relief, the two theatrically contrasted principal figures, the stern and courageous pope and the dismayed and frightened Attila, surge and protrude from the center. Only these two see the descending angelic warriers rallying to the pope's defense, while all others persist in the background reliefs, peforming respective earthly duties. The subject was apt for a papal state seeking clout, since it depicts the legendary moment when the greatest of Pope Leos, with supernatural aide, had deterred the Huns from looting Rome. From a baroque standpoint it is a moment of divine intervention in the affairs of man. Algardi's patron Leo XI hoped all viewers would be sternly reminded of the papal capacity to invoke divine retribution against enemies. Algardi died within a year of completing his famous relief, which was admired by contemporaries.
96525
96526 ==Critical Assessment and Legacy==
96527 Algardi was also known for his portraiture which shows an obsessive attention to details of psychologically revealing physiognomy in a sober but immediate naturalism, and minute attention to costume and draperies, such as in the busts of Laudivio Zacchia, Camillo Pamphilj, and Muzio Frangipane and his two sons Lello and Roberto [http://www.romeartlover.it/Algardi.html]. There is also a bronze statue of Innocent X for the ''Palazzo dei Conservatori'' in the [[Campidoglio]]. In St. Peter's Basilica, Algardi was also responsible for the prominent tomb of [[Leo XI]] (completed 1644). In temperament, his style was more akin to the classicized and restrained [[Baroque]] of [[François Duquesnoy]] than to the emotive works of Bernini. From an artistic point of view, he was most successful in portrait-statues and groups of children, where he was obliged to follow nature most closely. His terracotta models, some of them finished works of art, were prized by connoisseur collectors: an outstanding series of them is at the [[Hermitage Museum]], [[Saint Petersburg]].
96528
96529 In his later years Algardi controlled a large studio and amassed a great fortune. His students (including [[Ercole Ferrata]] and [[Domenico Guidi]]) and their followers carried forward their versions of Algardi's classicizing bravura manner well into the 18th century.
96530 The latter two sudents completed his altarpiece at ''Vision of Saint Nicholas'' (San Nicola de Tolentino, Rome) using two separate marble pieces linked together in one event and place, yet successfully separating the divine and earthly spheres.
96531
96532 ==Some major sculptures==
96533 *''Saint Mary Magdalen'' (1629,)
96534 *''Saint Philip Neri'' (1636-38,)
96535 *''The beheading of Saint Paul''
96536
96537
96538
96539 The standard modern monograph is Jennifer Montagu, 1985. ''Alessandro Algardi'' (Yale University Press) ISBN 0-300-03173-4
96540
96541 ==External links==
96542 *[http://www.artnet.com/library/00/0017/T001772.asp Artnet Resource Library:] Alessandro Algardi
96543 *[http://54.1911encyclopedia.org/A/AL/ALGARDI_ALESSANDRO.htm ''Encyclopaedia Britannica'' 1911:] Alessandro Algardi
96544 *[http://gallery.euroweb.hu/html/a/algardi/ Web Gallery of Art:] Algardi, sculptures
96545 *[http://www.iht.com/articles/1999/03/20/algardi.2.t.php Roderick Conway-Morris, &quot;Casting light on a Baroque sculptor&quot;], ''International Herald Tribune'', March 20, 1999: Review of exhibition &quot;Algardi: The Other Face of the Baroque,&quot;, 1999
96546 *[http://www.getty.edu/art/collections/objects/o453.html A landscape pen-and-ink drawing by Giovanni Francesco Grimaldi, c 1650, to which Algardi has added figures of the Holy Family (Getty Museum)]
96547 *[http://www.scultura-italiana.com/Galleria/Algardi%20Alessandro/ Images of nearly all works]
96548
96549 [[Category:1598 births|Algardi, Alessandro]]
96550 [[Category:1654 deaths|Algardi, Alessandro]]
96551 [[Category:Italian sculptors|Algardi, Alessandro]]
96552
96553 [[de:Alessandro Algardi]]
96554 [[es:Alessandro Algardi]]
96555 [[fr:Alessandro Algardi]]
96556 [[gl:Alessandro Algardi]]
96557 [[it:Alessandro Algardi]]
96558 [[pt:Alessandro Algardi]]
96559 [[sv:Alessandro Algardi]]</text>
96560 </revision>
96561 </page>
96562 <page>
96563 <title>Alger of Liège</title>
96564 <id>1643</id>
96565 <revision>
96566 <id>33048155</id>
96567 <timestamp>2005-12-28T22:40:26Z</timestamp>
96568 <contributor>
96569 <username>JASpencer</username>
96570 <id>11096</id>
96571 </contributor>
96572 <comment>/* References */</comment>
96573 <text xml:space="preserve">'''Alger of Liège''' ([[1055]]-[[1131]]), known also as Alger of Cluny and Algerus Magister, a learned [[France|French]] [[priest]] who lived in the first half of the [[12th century]].
96574
96575 He was first a [[deacon]] of the church of St Bartholomew at [[Liège (city)|Liège]], his native town, and was then appointed (c. 1100) to the cathedral church of [[Saint Lambert (martyr)|Saint Lambert]]. He declined many offers from German bishops and finally retired to the monastery of [[Cluny]], where he died at great age and leaving a good reputation for piety and intelligence.
96576
96577 His History of the Church of Liège, and many of his other works, are lost. The most important of those still extant are: 1. ''De Misericordia et Justitia'', a collection of biblical and patristic extracts with a commentary (an important work for the history of church law and discipline), which is to be found in the Anecdota of Martene, vol. v. 2. ''De Sacramentis Corporis et Sanguinis Domini''; a treatise, in three books, against the Berengarian heresy, highly commended by [[Peter of Cluny]] and
96578 [[Erasmus]]. 3. ''De Gratia et Libero Arbitrio''; given in B. Pez's ''Anecdota'', vol. iv. 4. ''De Sacrificio Missae''; given in the ''Collectio Scriptor. Vet.'' of Angelo Mai, vol. ix. p. 371.
96579
96580 See [[Jacques Paul Migne|Migne]], ''[[Patrologia Latina|Patrol Ser. Lat.]]'' vol. clxxx. pp. 739-.972; Herzog-Hauck, ''Realencyk. fÃŧr prot. Theol.,'' art. by S. M. Deutsch.
96581
96582 ==References==
96583 *{{1911}}
96584 *[http://www.newadvent.org/cathen/01310c.htm Catholic Encyclopedia article]
96585
96586 [[Category:Roman Catholic priests]]
96587 [[Category:1055 births|Alger of Liège]]
96588 [[Category:1131 deaths|Alger of Liège]]
96589
96590 [[wa:ÅdjÃŽ d' Lidje]]</text>
96591 </revision>
96592 </page>
96593 <page>
96594 <title>Algiers</title>
96595 <id>1644</id>
96596 <revision>
96597 <id>40849621</id>
96598 <timestamp>2006-02-23T11:57:21Z</timestamp>
96599 <contributor>
96600 <ip>161.74.11.24</ip>
96601 </contributor>
96602 <comment>/* History */ style</comment>
96603 <text xml:space="preserve">{{Otheruses}}
96604
96605 [[Image:Algeria-Alger.png|frame|right|Map of Algeria showing Algiers province]]
96606 [[Image:Algiersnasa.jpg|left|250px|Algiers from space]]
96607
96608 '''Algiers''' ([[Arabic language|Arabic]]: '''ŲˆŲ„اŲŠØŠ اŲ„ØŦØ˛Ø§ØĻØą''') ''El-Jazair'', The Islands) is the capital and largest city of [[Algeria]] in [[North Africa]]. According to the [[1998]] census, the population of the city proper was 1,519,570 whilst the total for the [[agglomeration]] was 2,135,630. Nicknamed ''El-Bahdja'' (اŲ„بŲ‡ØŦØŠ) or ''Alger la Blanche'' (&quot;Algiers the White&quot;) for the glistening white of its buildings as seen sloping up from the sea, it is situated on the west side of a bay of the [[Mediterranean Sea]]. The city name is derived from its location on the slopes of the &quot;[[Sahel]]&quot;, a chain of hills parallel to the coast. Its geographical co-ordinates are: {{coor dm|36|47|N|3|4|E|}}.
96609
96610 The modern part of the city is built on the level ground by the seashore and the old part, the ancient city of the [[dey]]s, climbs the steep hill behind the modern town and is crowned by the [[casbah]] or citadel, 400 feet above the sea. The casbah and the two quays form a triangle.
96611
96612 ==History==
96613 [[Image:Algiers CNE-v1-p58-J.jpg|thumb|300px|right|City and harbour of Algiers, circa 1921]]
96614
96615 A [[Phoenicia|Phoenician]] commercial outpost called ''Ikosim'', turned into a [[Ancient Rome|Roman]] small town called [[Icosium]], existed on what is now the marine quarter of the city. The ''rue de la Marine'' follows the lines of a Roman street. Roman cemeteries existed near ''[[Bab-el-Oued]]'' and ''[[Bab Azoun]]''. The city was given [[Latin]] rights by [[Vespasian]]. The [[bishop]]s of Icosium are mentioned as late as the [[5th century]].
96616
96617 The present city was founded in [[944]] by [[Buluggin ibn Ziri]], the founder of the [[Zirid]]-[[Senhaja]] dynasty, which was overthrown by [[Roger II of Sicily]] in [[1148]]. The [[Zirid]]s had before that date lost Algiers, which in [[1159]] was occupied by the [[Almohades]], and in the [[13th century]] came under the dominion of the Abd-el-Wadid sultans of [[Tlemcen]].
96618
96619 Nominally part of the sultanate of [[Tlemcen]], Algiers had a large measure of independence under [[amir]]s of its own, [[Oran]] being the chief seaport of the Abd-el-Wahid. The islet in front of the harbour, subsequently known as the Penon, had been occupied by the Spaniards as early as [[1302]]. Thereafter a considerable trade grew up between Algiers and [[Spain]].
96620
96621 Algiers, however, continued to be of comparatively little importance until after the expulsion from Spain of the [[Moors]], many of whom sought an asylum in the city. In [[1510]], following their occupation of Oran and other towns on the coast of [[Africa]], the Spaniards fortified the Penon. In [[1516]] the amir of Algiers, Selim b. Teumi, invited the brothers Arouj and Khair-ad-Din ([[Khair ad Din|Barbarossa]]) to expel the Spaniards. Arouj came to Algiers, caused Selim to be assassinated, and seized the town. Khair-ad-Din, succeeding Arouj, drove the Spaniards from the Penon ([[1550]]) and was the founder of the ''pashalik'', afterwards ''deylik'', of Algeria.
96622
96623 [[Image:Sm Bombardment of Algiers, August 1816-Luny.jpg|thumb|right|300px|The bombardment of Algiers by Lord Exmouth, August 1816, painted by Thomas Luny]]
96624
96625 Algiers from this time became the chief seat of the [[Barbary pirates]]. In October [[1541]] the emperor [[Charles V, Holy Roman Emperor|Charles V]] sought to capture the city, but a storm destroyed a great number of his ships, and his army of some 30,000, chiefly Spaniards, was defeated by the Algerians under their [[pasha]], Hassan. From the 17th century, Algiers, free of [[Ottoman Empire|Ottoman]] control and sited on the periphery of both the Ottoman and European economic spheres, and depending for its existence on a Mediterranean that was increasingly controlled by European shipping, backed by European navies, turned to piracy and ransoming. Repeated attempts were made by various nations to subdue the pirates that disturbed shipping in the western Mediterranean and engaged in slave raids as far north as Cornwall. The [[United States]] fought two wars (The [[First Barabary War|First]] and [[Second Barabary War|Second]] [[Barbary Wars]]) over Algiers' attacks on shipping.
96626
96627 In [[1816]] the city was bombarded by a British squadron under [[Edward Pellew, 1st Viscount Exmouth|Lord Exmouth]] (a descendant of Thomas Pellew, taken in an Algierian slave raid in [[1715]]), assisted by [[Netherlands|Dutch]] men-of-war, and the corsair fleet burned. On the 4th of July in [[1830]], on the pretext of an affront to their consul - whom the [[dey]] had hit with a fly-whisk when he said the French government was not prepared to pay its large outstanding debts to two Algerian Jewish merchants - a French army under [[Louis-Auguste-Victor, Count de Ghaisnes de Bourmont|General de Bourmont]] attacked the city, which capitulated on the following day.
96628
96629 The history of Algiers from [[1830]] to [[1962]] is bound to the larger history of [[Algeria]] and its relationship to [[France]].
96630
96631 In [[1962]], after a bloody independence struggle in which hundreds of thousands of Algerians died (a million according to official Algerian history) at the hands of the French army and the Algerian [[Front de LibÊration Nationale]], Algeria finally gained its independence, with Algiers as its capital. Since then, despite losing its entire European or [[Pied-noir]] population, the city has expanded massively - it now has 3 million inhabitants, or 10% of Algeria's population - and its suburbs now cover most of the surrounding [[Metidja]] plain.
96632 [[Image:Algernuit.jpg|thumb|300px|right|Algiers by night]]
96633
96634 * Algiers is hosting the [[2007 All-Africa Games]] for the 2nd time, they hosted the event in [[1978 All-Africa Games|1978.]]
96635
96636 == Local architecture ==
96637
96638 There are many public buildings of interest, including the whole [[casbah]] quarter, Martyrs Square (''Sahat ech-Chouhada'' Øŗاح؊ اŲ„Ø´Ų‡Ø¯Ø§ØĄ), the government offices (formerly the [[United Kingdom|British]] consulate), the &quot;Grand&quot;, &quot;New&quot;, and Ketchaoua [[Mosque]]s, the [[Roman Catholic]] cathedral of [[Notre Dame d'Afrique]], the [[Bardo Museum]] (a former Turkish mansion), the old ''Bibliotheque Nationale d'Alger'' - a [[Turkey|Turkish]] palace built in [[1799]]-[[1800]] - and the new National Library, built in a style reminiscent of the [[British Library]].
96639
96640 The main building in the [[casbah]] was begun in [[1516]] on the site of an older building, and served as the palace of the deys until the [[France|French]] conquest. A road has been cut through the centre of the building, the mosque turned into [[barracks]], and the hall of audience allowed to fall into ruin. There still remain a [[minaret]] and some marble arches and columns. Traces exist of the vaults in which were stored the treasures of the dey.
96641
96642 The Grand Mosque (''Jamaa-el-Kebir'' اŲ„ØŦاŲ…Øš اŲ„ŲƒØ¨ŲŠØą) is traditionally said to be the oldest mosque in Algiers. The pulpit (''[[minbar]]'' Ų…Ų†Ø¨Øą) bears an inscription showing that the building existed in [[1018]]. The minaret was built by [[Abu Tachfin]], sultan of [[Tlemcen]], in [[1324]]. The interior of the mosque is square and is divided into aisles by columns joined by [[Moors|Moorish]] arches.
96643 [[Image:New Mosque (Jamaa el-Jedid) in Algiers 04968r.jpg|thumb|right|350px|The New Mosque (Jamaa el-Jedid) in Algiers - late 1800's]]
96644 [[Image:bfc_algiers_synagogue_02_02w.jpg|frame|Algiers. Stone synagogue. Photo early 1900's.
96645 [http://www.bfcollection.net/cities/algeria/algiers.html Boris Feldblyum Collection]]]
96646
96647 The New Mosque (''Jamaa-el-Jedid'' اŲ„ØŦاŲ…Øš اŲ„ØŦدŲŠØ¯), dating from the [[17th century]], is in the form of a [[Greek cross]], surmounted by a large white cupola, with four small cupolas at the corners. The minaret is 90 ft. high. The interior resembles that of the Grand Mosque.
96648
96649 The church of the Holy Trinity (built in [[1870]]) stands at the southern end of the ''rue d'Isly'' near the site of the demolished Fort Bab Azoun باب ØšØ˛ŲˆŲ†. The interior is richly decorated with various coloured marbles. Many of these marbles contain memorial inscriptions relating to the English residents (voluntary and involuntary) of Algiers from the time of John Tipton, British consul in [[1580]]. One tablet records that in [[1631]] two Algerine pirate crews landed in [[Ireland]], sacked [[Baltimore, County Cork|Baltimore]], and carried off its inhabitants to slavery; another recalls the romantic escape of Ida M`Donnell, daughter of Admiral Ulric, consul-general of [[Denmark]], and wife of the British consul. When Lord Exmouth was about to bombard the city in [[1816]], the British consul was thrown into prison and loaded with chains. Mrs M`Donnell - who was but sixteen - escaped to the British fleet disguised as a midshipman, carrying a basket of vegetables in which her baby was hidden. (Mrs M`Donnell subsequently married the duc de Talleyrand-Perigord and died at [[Florence]] in [[1880]]). Among later residents commemorated is Edward Lloyd, who was the first person to show the value of [[esparto]] grass for the manufacture of paper, and thus started an industry which is one of the most important in Algeria.
96650
96651 The Ketchaoua mosque (''Djamaa Ketchaoua'' ØŦاŲ…Øš ŲƒØĒشاŲˆØŠ), at the foot of the Casbah, was before independence in [[1962]] the cathedral of St Philippe, itself made in [[1845]] from a mosque dating from 1612. The principal entrance, reached by a flight of 23 steps, is ornamented with a [[portico]] supported by four black-veined marble columns. The roof of the nave is of [[Moorish Empire|Moorish]] [[plaster]] work. It rests on a series of arcades supported by white marble columns. Several of these columns belonged to the original mosque. In one of the chapels was a tomb containing the bones of [[San Geronimo]]. The building seems a curious blend of Moorish and [[Byzantine Empire|Byzantine]] styles.
96652
96653 Algiers possesses a college with schools of law, medicine, science and letters. The college buildings are large and handsome. The [[Bardo]] museum holds some of the ancient sculptures and mosaics discovered in Algeria, together with medals and Algerian money.
96654
96655 The port of Algiers is sheltered from all winds. There are two harbours, both artificial - the old or northern harbour and the southern or Agha harbour. The northern harbour covers an area of 235 acres (950,000 m&amp;sup2;). An opening in the south [[jetty]] affords an entrance into Agha harbour, constructed in Agha Bay. Agha harbour has also an independent entrance on its southern side.
96656
96657 The inner harbour was begun in [[1518]] by Khair-ad-Din [[Khair ad Din|Barbarossa]] (see History, below), who, to accommodate his pirate vessels, caused the island on which was Fort Penon to be connected with the mainland by a [[mole (architecture)|mole]]. The lighthouse which occupies the site of Fort Penon was built in [[1544]].
96658
96659 Algiers was a walled city from the time of the deys until the close of the 19th century. The French, after their occupation of the city ([[1830]]), built a [[rampart]], [[parapet]] and [[ditch]], with two terminal forts, [[Bab Azoun]] باب ØšØ˛ŲˆŲ† to the south and [[Bab-el-Oued]] باب اŲ„ŲˆØ§Ø¯ to the north. The forts and part of the ramparts were demolished at the beginning of the [[20th century]], when a line of forts occupying the heights of [[Bouzareah]] بŲˆØ˛ØąŲŠØšØŠ (at an elevation of 1300 ft. above the sea) took their place.
96660
96661 Notre-Dame d'Afrique, a church built ([[1858]]-[[1872]]) in a mixture of the [[Roman Empire|Roman]] and [[Byzantine Empire|Byzantine]] styles, is conspicuously situated, overlooking the sea, on the shoulder of the [[Bouzareah]] hills, 2 m. to the north of the city. Above the altar is a statue of the [[Mary, the mother of Jesus|Virgin]] depicted as a black woman. The church also contains a solid silver statue of the [[archangel Michael]], belonging to the confraternity of [[Naples|Neapolitan]] fishermen.
96662
96663 Villa Abd-el-Tif, former residence of the [[dey]], was used during the French period, to accommodate French artists, chiefly painters, and winners of the [[Abd-el-Tif prize]], for a while of two years. Nowadays, Algerian artists are back in the villa's studios.
96664
96665 [[Image:Houbel.JPG|thumb|400px| the Monument of the Martyrs(Maquam E’chahid).]]
96666
96667 ==References==
96668 *{{1911}}
96669
96670 == See also ==
96671 * [[List of Pasha and Dey of Algiers]]
96672
96673 ==External links==
96674 {{Commons|Algiers|Algiers}}
96675 * [http://www.bfcollection.net/cities/algeria/algiers.html Historic images of Algiers]
96676 * [http://www.samasafia.dz/carte%20d'alger.gif Map of Algiers]
96677
96678 {{Algeria}}
96679
96680 [[Category:Capitals in Africa]]
96681 [[Category:Cities in Algeria]]
96682 [[Category:Coastal cities]]
96683 [[Category:Provinces of Algeria]]
96684 [[Category:Algiers| ]]
96685
96686 [[ar:ŲˆŲ„اŲŠØŠ اŲ„ØŦØ˛Ø§ØĻØą]]
96687 [[bg:АĐģĐļиŅ€ (ĐŗŅ€Đ°Đ´)]]
96688 [[da:Algier]]
96689 [[de:Algier]]
96690 [[eo:Alĝero]]
96691 [[es:Argel]]
96692 [[fi:Alger]]
96693 [[fr:Alger]]
96694 [[ko:ė•Œė œ]]
96695 [[he:אלג'יר]]
96696 [[id:Algiers]]
96697 [[io:Aljer]]
96698 [[is:Algeirsborg]]
96699 [[it:Algeri]]
96700 [[ja:ã‚ĸãƒĢジェ]]
96701 [[la:Algeria]]
96702 [[lb:Algier]]
96703 [[lt:AlÅžyras (miestas)]]
96704 [[nl:Algiers]]
96705 [[pl:Algier]]
96706 [[pt:Argel]]
96707 [[ro:Alger (oraş)]]
96708 [[ru:АĐģĐļиŅ€ (ĐŗĐžŅ€ĐžĐ´)]]
96709 [[simple:Algiers]]
96710 [[sk:AlŞír]]
96711 [[sr:АĐģĐļиŅ€ (ĐŗŅ€Đ°Đ´)]]
96712 [[sv:Alger]]
96713 [[zh:é˜ŋįˆžåŠįˆž]]</text>
96714 </revision>
96715 </page>
96716 <page>
96717 <title>Alhazen</title>
96718 <id>1645</id>
96719 <revision>
96720 <id>41211710</id>
96721 <timestamp>2006-02-25T20:42:04Z</timestamp>
96722 <contributor>
96723 <username>MB</username>
96724 <id>510460</id>
96725 </contributor>
96726 <comment>Alhazen was no Persian, we need to contact an Admin to stand on these acts of distortions by propagandists</comment>
96727 <text xml:space="preserve">'''Alhazen Abu Ali al-Hasan Ibn Al-Haitham''' (also: '''Ibn al Haythen''') ([[965]]-[[1040]]) ([[Arabic language|Arabic]]: ØŖبŲˆ ØšŲ„ŲŠ اŲ„Ø­ØŗŲ† بŲ† اŲ„Ų‡ŲŠØĢŲ…) was an [[Arabian]] [[mathematician]]; he is sometimes called '''al-Basri''' (Arabic: اŲ„بØĩØąŲŠ), after his birthplace [[Basrah]], [[Iraq]].
96728
96729 &lt;!-- Image with unknown copyright status removed: [[Image:Alhazen.jpg|thumb|right|250px|Portrait of Alhazen]] --&gt;
96730
96731 ==Life==
96732 Alhazen was born at [[Basra]], then part of the Islamic(Abbasid) [[Caliphate]], now part of [[Iraq]] (See [http://www-gap.dcs.st-and.ac.uk/~history/Mathematicians/Al-Haytham.html] and [http://www.answers.com/topic/alhazen]), and probably died in [[Cairo]], [[Egypt]].
96733
96734 One account of his career has him summoned to [[Egypt]] by the mercurial [[caliph]] [[al-Hakim bi-Amr Allah|Hakim]] to regulate the [[flooding]] of the [[Nile]]. After his field work made him aware of the impracticality of this scheme, and fearing the caliph's anger, he [[feigned madness]]. He was kept under house arrest until Hakim's death in [[1021]]. During this time he wrote scores of important mathematical treatises.
96735
96736 Abu Ali Hasan Ibn al-Haitham was one of the most eminent physicists, whose contributions to optics and the scientific methods are outstanding. Known in the West as Alhazen, Ibn aI-Hautham was born in [[965]] A. D. in [[Basrah]], and was educated in Basrah and [[Baghdad]]. Thereafter, he went to Egypt, where he was asked to find ways of controlling the flood of the [[Nile]]. Being unsuccessful in this, he feigned madness until the death of [[Caliph]] al-Hakim. He also traveled to [[Spain]] and, during this period, he had ample time for his scientific pursuits, which included optics, mathematics, physics, medicine and development of scientific methods on each of which he has left several outstanding books.
96737
96738 He made a thorough examination of the passage of light through various media and discovered the laws of [[refraction]]. He also carried out the first experiments on the dispersion of light into its constituent [[colors]]. His book Kitab-at-Manazir was translated into [[Latin]] in the [[Middle Ages]], as also his book dealing with the colors of sunset. He dealt at length with the theory of various physical phenomena like [[shadows]], [[eclipse]]s, the [[rainbow]], and speculated on the physical nature of light. He is the first to describe accurately the various parts of the [[eye]] and give a scientific explanation of the process of [[visual perception|vision]]. He also attempted to explain [[binocular vision]], and gave a correct explanation of the apparent increase in size of the [[sun]] and the [[moon]] when near the horizon. He is known for the earliest use of the [[camera obscura]]. He contradicted [[Ptolemy]]'s and [[Euclid]]'s theory of vision that objects are seen by rays of light emanating from the eyes; according to him the rays originate in the object of vision and not in the eye. Through these extensive researches on optics, he has been considered as the [[List_of_people_known_as_the_father_or_mother_of_something|father of modern optics]].
96739
96740 The Latin translation of his main work, Kitab-at-Manazir, exerted a great influence upon Western science e.g. on the work of [[Roger Bacon]] and [[Johannes Kepler|Kepler]]. It brought about a great progress in experimental methods. His research in [[catoptrics]] centered on spherical and parabolic mirrors and spherical aberration. He made the important observation that the ratio between the [[angle of incidence]] and [[refraction]] does not remain constant and investigated the [[magnification|magnifying]] power of a [[lens (optics)|lens]]. His catoptrics contain the important problem known as [[Alhazen's problem]]. It comprises drawing lines from two points in the plane of a circle meeting at a point on the [[circumference]] and making equal angles with the normal at that point. This leads to an equation of the fourth degree.
96741
96742 In his book Mizan al-Hikmah Ibn al-Haitham has discussed the [[density]] of the [[Earth's atmosphere|atmosphere]] and developed a relation between it and the height. He also studied atmospheric refraction. He discovered that the [[twilight]] only ceases or begins when the sun is 19° below the horizon and attempted to measure the height of the atmosphere on that basis. He has also discussed the theories of attraction between [[mass|masses]], and it seems that he was aware of the magnitude of acceleration due to [[gravity]].
96743
96744 His contribution to mathematics and physics was extensive. In mathematics, he developed analytical [[geometry]] by establishing linkage between [[algebra]] and geometry. He studied the mechanics of motion of a body and was the first to maintain that a body moves [[perpetual motion|perpetually]] unless an external force stops it or changes its direction of motion. This would seem equivalent to the [[first law of motion]].
96745
96746 The list of his books runs to 200 or so, very few of which have survived. Even his monumental treatise on optics survived through its Latin translation. During the Middle Ages his books on [[cosmology]] were translated into Latin, [[Hebrew language|
96747 Hebrew]] and other languages. He has also written on the subject of [[evolution]] a book that deserves serious attention even today.
96748
96749 In his writing, one can see a clear development of the scientific methods as developed and applied by the Muslims and comprising the systematic observation of physical phenomena and their linking together into a scientific theory. This was a major breakthrough in scientific methodology, as distinct from guess and gesture, and placed scientific pursuits on a sound foundation comprising systematic relationship between observation, [[hypothesis]] and verification.
96750
96751 Ibn al-Haitham's influence on physical sciences in general, and optics in particular, has been held in high esteem and, in fact, it ushered in a new era in optical research, both in theory and practice.
96752
96753 Alhazen is also featured on the obverse of the Iraqi 10,000 Dinars banknote issued in 2003.
96754
96755 ==Works==
96756 Alhazen was a pioneer in [[optics]], [[engineering]] and [[astronomy]]. According to [[Giambattista della Porta]], Alhazen was the first to explain the apparent increase in the size of the moon and sun when near the horizon, although [[Roger Bacon]] gives the credit of this discovery to [[Ptolemy]]. Alhazen also taught that vision does not result from the emission of rays from the eye, and wrote on the [[refraction]] of light, especially on atmospheric refraction, for example, the cause of morning and evening twilight. He solved the problem of finding the point on a [[convex]] [[mirror]] at which a ray coming from one point is reflected to another point.
96757
96758 Alhazen's extensive writings influenced many Western intellectuals such as Roger Bacon, [[John Pecham]], [[Witelo]], and [[Johannes Kepler]].
96759
96760 ===''Optics''===
96761
96762 His seven volume treatise on optics ''Kitab al-Manazir'' (''Book of Optics'') (written from [[1015]] to [[1021]]) is possibly the earliest work to use the [[scientific method]]. The ancient Greeks believed that truth was determined by the logic and beauty of reasoning; experiment was used as a demonstration. Alhazen used the results of experiments to test theories. The &quot;emission&quot; theory of light had been supported by [[Euclid]] and Ptolemy. This theory postulated that sight worked by the eye emitting light. The second or &quot;intromission&quot; theory, supported by [[Aristotle]] had light entering the eye. Alhazen performed experiments to determine that the &quot;intromission&quot; theory was scientifically correct.
96763
96764 ''Optics'' was translated into Latin by [[Witelo]] in [[1270]]. It was published by [[Friedrich Risner]] in [[1572]], with the title ''Oticae thesaurus Alhazeni libri VII., cum ejusdem libro de crepusculis et nubium ascensionibus.'' This work enjoyed a great reputation during the [[Middle Ages]]. Works by Alhazen on geometrical subjects were discovered in the [[Bibliothèque nationale]] in [[Paris]] in [[1834]] by E. A. Sedillot. Other manuscripts are preserved in the [[Bodleian Library]] at [[Oxford]] and in the library of [[Leiden]].
96765
96766 ==Other Alhazens==
96767 There is another Alhazen who translated [[Ptolemy]]'s ''[[Almagest]]'' in the 10th century.
96768
96769 == Bibliography ==
96770
96771 ''Ibn al-Haytham's Optics: A Study of the Origins of Experimental Science,'' by Saleh Beshara Omar (Bibliotheca Islamica, 1977)
96772
96773 ==External links==
96774
96775 * {{MacTutor Biography|id=Al-Haytham}}
96776 * http://www-groups.dcs.st-and.ac.uk/~history/Mathematicians/Al-Haytham.html
96777 * http://www.answers.com/topic/alhazen
96778 * http://encarta.msn.com/encyclopedia_761579452/Alhazen.html
96779 * http://www.britannica.com/eb/article?eu=5788
96780 * http://www.daviddarling.info/encyclopedia/A/Alhazen.html
96781 * [http://www.islamonline.net/english/Science/2001/08/article11.shtml Alhazen Master of Optics]
96782
96783
96784 [[Category:Arab mathematicians|Alhazen]]
96785 [[Category:Egyptian mathematicians|Alhazen]]
96786 [[Category:10th century mathematicians|Alhazen]]
96787 [[Category:11th century mathematicians|Alhazen]]
96788 [[Category:Arab astronomers|Alhazen]]
96789 [[Category:Arab engineers|Alhazen]]
96790 [[Category:965 births|Alhazen]]
96791 [[Category:1040 deaths|Alhazen]]
96792 [[Category:Muslim scientists|Alhazen]]
96793
96794 [[ar:ابŲ† اŲ„Ų‡ŲŠØĢŲ…]]
96795 [[de:Alhazen]]
96796 [[es:Alhazen]]
96797 [[fr:Alhazen]]
96798 [[gl:Alhazen]]
96799 [[it:Alhazen]]
96800 [[ka:იბნ ალ-ჰაისამი]]
96801 [[ms:Abul Wafa Muhammad Al-Buzjani]]
96802 [[nl:Ibn al-Haytham]]
96803 [[no:Al-Haitham]]
96804 [[pl:Ibn al-Hajsam]]
96805 [[pt:Alhazen]]
96806 [[sl:Ibn al-Haitam]]
96807 [[tr:Ä°bn-i Heysem]]</text>
96808 </revision>
96809 </page>
96810 <page>
96811 <title>Alessandro Allori</title>
96812 <id>1647</id>
96813 <revision>
96814 <id>40694809</id>
96815 <timestamp>2006-02-22T10:17:13Z</timestamp>
96816 <contributor>
96817 <ip>213.170.65.38</ip>
96818 </contributor>
96819 <text xml:space="preserve">[[Image:Allori Portrait.jpg|right|thumb|300px|''Portrait of a Woman'' Oil on copper, 37 x 27 cm &lt;br&gt;Galleria degli [[Uffizi]], Florence]]
96820
96821 '''Alessandro di Cristofano di Lorenzo del Bronzino Allori''' ([[May 31]], [[1535]] - [[September 22]], [[1607]]) was an [[Italy|Italian]] portrait [[painter]] of the late [[Mannerism|Mannerist]] [[Florence|Florentine]] school. He was brought up and trained in art by his uncle, [[Angelo Bronzino]], whose name he sometimes assumed in his pictures. Freedburg derides Allori as derivative, claiming he illustrates &quot;the ideal of Maniera by which art (and style) are generated out of pre-existing art.&quot; The polish of figures has an unnatural marble-like form as if he aimed for cold statuary. Collaborators include [[Giovanni Maria Butteri]], main pupil: [[Giovanni Bizzelli]].
96822
96823 He is the father of [[Cristofano Allori]] ([[1577]]-[[1621]]).
96824
96825 *''Christ and the Samaritan Woman'', (Altarpiece, 1575, [[Santa Maria Novella]], now Prato)
96826 *''Road to Calvary'', (1604, Rome)
96827 *''Dead Christ and Angels'', (Museum Fine Arts, Budapest)[http://www.wga.hu/frames-e.html?/html/a/allori/alessand/]
96828 *''Pearl Fishing'', (1570-72, [[Studiolo of Francesco I (Palazzo Vecchio)]], Florence)[http://www.ocaiw.com/jmpopera.php?id=18012 image]
96829 *''Sussana and the Elders'' , [http://69.20.65.141/art/customer/product.php?productid=23225&amp;cat=1089&amp;page=8&amp;maincat=T]
96830 *''Allegory of Human Life'', [http://www.wga.hu/art/a/allori/alessand/portra2.jpg]
96831 *''The Miracle of St. Peter Walking on Water'',[http://www.wga.hu/art/a/allori/alessand/st_peter.jpg image]
96832 *''Venus and Cupid'', [http://www.wga.hu/art/a/allori/alessand/venus_cu.jpg image]
96833
96834 ==References==
96835 {{commonscat}}
96836 *{{1911}}
96837 *''Painting in Italy 1500-1600'', S.J. Freedberg, (Penguin History of Art, 2nd Edition, 1983).
96838
96839 [[Category:1535 births|Allori, Alessandro]]
96840 [[Category:1607 deaths|Allori, Alessandro]]
96841 [[Category:Italian painters|Allori, Alessandro]]
96842 [[Category:Mannerism painters|Allori, Alessandro]]
96843 [[Category:Portrait artists|Allori, Alessandro]]
96844
96845 [[de:Alessandro Allori]]
96846 [[es:Alessandro Allori]]
96847 [[gl:Alessandro Allori]]
96848 [[it:Alessandro Allori]]
96849 [[nl:Alessandro Allori]]
96850 [[pt:Alessandro Allori]]
96851 [[ru:АĐģĐģĐžŅ€Đ¸, АĐģĐĩŅĐ°ĐŊĐ´Ņ€Đž]]</text>
96852 </revision>
96853 </page>
96854 <page>
96855 <title>Almohades</title>
96856 <id>1648</id>
96857 <revision>
96858 <id>15900114</id>
96859 <timestamp>2004-11-01T01:02:36Z</timestamp>
96860 <contributor>
96861 <username>SWAdair</username>
96862 <id>50984</id>
96863 </contributor>
96864 <comment>#redirect [[Almohad]] -- point to article content instead of creating loop redirect</comment>
96865 <text xml:space="preserve">#redirect [[Almohad]]</text>
96866 </revision>
96867 </page>
96868 <page>
96869 <title>Almoravides</title>
96870 <id>1649</id>
96871 <revision>
96872 <id>39062396</id>
96873 <timestamp>2006-02-10T13:03:12Z</timestamp>
96874 <contributor>
96875 <username>DeC</username>
96876 <id>821904</id>
96877 </contributor>
96878 <minor />
96879 <comment>+ru</comment>
96880 <text xml:space="preserve">'''Almoravides''' (In [[Arabic language|Arabic]] اŲ„Ų…ØąØ§Ø¨ØˇŲˆŲ† ''al-Murabitun'', sing. Ų…ØąØ§Ø¨Øˇ ''Murabit''), is a [[Berber]] dynasty from the [[Sahara]] which, in the [[11th century]], founded the fourth dynasty in [[Morocco]]. Under this dynasty the [[Moorish]] empire was extended over [[Tlemcen]] (in modern [[Algeria]]) and a great part of [[Spain]] and [[Portugal]]. The name is derived from the Arabic ''Murabit'', variously translated as ''religious ascetic'' or ''warrior monk''.
96881
96882 == Beginnings ==
96883 The most powerful of the invading tribes was the [[Lamtuna]] (&quot;veiled men&quot;) from the upper [[Niger River]], whose best-known representatives now are the [[Tuareg]]. They had been converted to [[Islam]] in the early times of the Arab conquest, but their knowledge of Islam did not go much beyond the formula of the [[shahada]] creed---&quot;there is no god but God, and Muhammad is the apostle of God,&quot;--and they were ignorant of the traditions of [[Shariah]], or Islamic law.
96884
96885 == Influence of orthodox Islam ==
96886 About the year 1040 (or a little earlier) one of their chiefs, [[Yahya ibn Ibrahim]], made the [[Hajj|pilgrimage]] to [[Mecca]]. On his way home, he attended the teachers of the mosque at [[Kairouan]], in [[Tunisia]], who soon learnt from him that his people knew little of the religion they were supposed to profess, and that though his will was good, his own ignorance was great. By the good offices of the theologians of Kairawan, one of whom was from [[Fez, Morocco|Fez]], Yahya was provided with a missionary, [[Abd Allah ibn Yasin]], a zealous partisan of the [[Maliki]]s, one of the four [[Four Schools of Madhhab|Madhhab]]; orthodox legal schools of Islam.
96887
96888 His preaching was before-long rejected by the Lamtunas; so on the advice of Yahya, who accompanied him, he retired to an island in the [[Niger River]], where he founded a ''[[ribat]]'', or Islamic monastery, from which as a centre his influence spread. There was no element of [[heresy]] in his creed, which was mainly distinguished by a rigid formalism, and strict obedience to the letter of the [[Qur'an]], and the orthodox tradition or [[Sunnah]].
96889
96890 == Ascendence of Militarism ==
96891 Abd-Allah ibn Yasin imposed a penitential scourging on all converts as a purification, and enforced a regular system of discipline for every breach of the law; even on the chiefs. Under such directions, the Murabits were brought into excellent order. Their first military leader, Yahya ibn Ibrahim, gave them a good military organization. Their main force was infantry, armed with javelins in the front ranks and pikes behind, which formed into a phalanx; and was supported by camelmen and horsemen on the flanks.
96892
96893 == Military Successes ==
96894 From the year [[1053]], the Murabits began to impose their orthodox and puritanical religion on the [[Berber]] tribes of the desert, and on the pagan black Africans. Yahya ibn Ibrahim was killed in a battle in [[1056]], but Abd-Allah ibn Yasin, whose influence as a religious teacher was paramount; named his brother [[Abu-Bakr Ibn-Umar]] as chief. Under him, the Murabits soon began to spread their power beyond the desert, and subjected the tribes of the [[Atlas Mountains]]. They then came in contact with the [[Berghouata]], a [[Berber]] people of central [[Morocco]], who followed a &quot;heresy&quot; founded by [[Salih ibn Tarif]], three centuries earlier. The Berghouata made a fierce resistance, and it was in battle with them that Abdullah ibn Yasin was killed. They were, however, completely conquered by Abu Bakr Ibn-Umar, who took the defeated chief's widow, [[Zainab]], as a wife.
96895
96896 In 1061, Abu Bakr Ibn-Umar made a division of the power he had established, handing over the more-settled parts to his cousin [[Yusuf ibn Tashfin]], as viceroy; resigning to him also his favourite wife Zainab, who had the reputation of being a sorceress. For himself, he reserved the task of suppressing the revolts which had broken out in the desert, but when he returned to resume control, he found his cousin too powerful to be superseded; so he had to go back to the Sahara, where-in [[1087]], he too attained martyrdom, having been wounded with a poisoned arrow, in battle with the pagan black Africans.
96897
96898 === Morocco and Western Sahara ===
96899 Yusuf ibn Tashfin had in the meantime brought what is now known as [[Morocco]] and the [[Western Sahara]] into complete subjection; and in [[1062]], had founded the city of [[Marrakech]]. In [[1080]], he conquered the kingdom of [[Tlemcen]] (in modern-day [[Algeria]]) and founded the present city of that name, his rule extending as far east as [[Oran]].
96900
96901 === Ghana ===
96902 In [[1075]], the Almoravides declared &quot;[[jihad]]&quot; (&quot;holy struggle&quot;) on the [[Kingdom of Ghana]]. The ensuing war pushed Ghana over the edge: ceasing the kingdom's position as a commercial and military power by [[1100]], as it collapsed into tribal groups and chieftaincies, some of which later assimilated into the Almoravides.
96903
96904 === Spain ===
96905 [[Image:Almoravid map reconquest loc.jpg|thumb|250px|Map of Iberia at the time of the Almoravid arrival]]
96906 In [[1086]] Yusuf ibn Tashfin was invited by the Muslim princes in [[Spain]] to defend them against [[Alfonso VI of Castile|Alfonso VI]], King of [[Castile]] and [[Kingdom of LeÃŗn|LeÃŗn]]. In that year, Yusuf ibn Tashfin passed the straits to [[Algeciras]], inflicted a severe defeat on the Christians at the [[Battle of az-Zallaqah|az-Zallaqah]]. He was prevented from following up his victory by trouble in [[Africa]], which he had to settle in person.
96907
96908 When he returned to Spain in [[1090]], it was avowedly for the purpose of deposing the Muslim princes, and annexing their states. He had in his favour the mass of the inhabitants, whom had been worn out by the oppressive taxation imposed by their spend-thrift rulers. Their religious teachers, as well as others in the east, (most notably, [[al-Ghazali]] in [[Iran|Persia]] and [[al-Tartushi]] in Egypt, who was himself a Spaniard by birth, from [[Tortosa]]), detested the native Muslim princes for their religious indifference, and gave Yusuf a ''[[fatwa]]'' -- or legal opinion -- to the effect that he had good moral and religious right, to dethrone the heterodox rulers, who did not scruple to seek help from the Christians, whose habits they had adopted. By 1094, he had removed them all; and though he regained little from the Christians except [[Valencia]], he re-united the Muslim power, and gave a check to the reconquest of the country by the Christians.
96909
96910 === The Prince of the Muslims ===
96911 After friendly correspondence with the caliph at [[Baghdad]], whom he acknowledged as ''Amir al-Mu'minin'' (''Prince of the Faithful''), Yusuf ibn Tashfin in [[1097]] assumed the title of ''Amir al Muslimin'' (''Prince of the Muslims''). He died in [[1106]], when he was reputed to have reached the age of 100.
96912
96913 The Murabit power was at its height at Yusuf's death, and the Moorish empire then included all North-West Africa as far as [[Algiers]], and all Spain south of the [[Tagus]], with the east coast as far as the mouth of the [[Ebro]], and included the [[Balearic Islands]].
96914
96915 == Decline ==
96916 Three years afterwards, under Yusef's son and successor, [[Ali ibn Yusuf]], [[Madrid]], [[Lisbon]] and [[Oporto]] were added, and Spain was again invaded in [[1119]] and [[1121]], but the tide had turned; the French having assisted the Aragonese to recover [[Zaragoza]]. In 1138, Ali ibn Yusuf was defeated by [[Alfonso VII of Castile|Alfonso VII of Castile and LeÃŗn]], and in the [[Battle of Ourique]] ([[1139]]), by [[Afonso I of Portugal]], who thereby won his crown; and [[Lisbon]] was recovered by the Portuguese in [[1147]].
96917
96918 Ali ibn Yusuf was a pious non-entity, who fasted and prayed while his empire fell to pieces under the combined action of his Christian foes in [[Spain]] and the agitation of [[Almohades]] (the Muwahhids) in Morocco. After Ali ibn Yusuf's death in [[1142]], his son Tashfin ibn Ali lost ground rapidly before the Almohades, and in 1146 he was killed by a fall from a precipice, while endeavouring to escape after a defeat near [[Oran]].
96919
96920 His two successors [[Ibrahim ibn Tashfin]] and [[Is'haq ibn Ali]] are mere names. The conquest of the city of Marrakesh by the [[Almohades]] in [[1147]] marked the fall of the dynasty, though fragments of the [[Almoravides]] (the [[Banu Ghanya]]), continued to struggle in the [[Balearic Islands]], and finally in [[Tunisia]].
96921
96922 The amirs of the Almoravides dynasty were as follows:---
96923 *[[Yusuf ibn Tashfin]] (1061-1106)
96924 *[[Ali ibn Yusuf]] (1106-1142)
96925 *[[Tashfin ibn Ali]] (1142-1146)
96926 *[[Ibrahim ibn Tashfin]] (1146)
96927 *[[Ishaq ibn Ali]] (1146-1147)
96928
96929 ==See also==
96930 :[[History of Morocco]]
96931 :[[History of Islam]]
96932 :[[History of Spain]]
96933
96934 ==External links==
96935 *[http://www.islamicarchitecture.org/dynasties/almoravids.html Almoravids Dynasty] Berber dynasty
96936
96937 ==References==
96938 *{{1911}}
96939
96940 {{Template:Zaragoza rulers}}
96941
96942 [[Category:Berber| ]]
96943 [[Category:History of the Maghreb]]
96944 [[Category:History of Mauritania]]
96945 [[Category:History of Morocco]]
96946 [[Category:Moorish Spain]]
96947 [[Category:Jewish Spanish history]]
96948
96949 [[ar:Ų…ØąØ§Ø¨ØˇŲˆŲ†]]
96950 [[ca:Almoràvit]]
96951 [[de:Almoraviden]]
96952 [[es:AlmorÃĄvide]]
96953 [[fr:Almoravides]]
96954 [[nl:Almoraviden]]
96955 [[pt:AlmorÃĄvidas]]
96956 [[ru:АĐģŅŒĐŧĐžŅ€Đ°Đ˛Đ¸Đ´Ņ‹]]
96957 [[sv:Almoravider]]
96958 [[uk:АĐģŅŒĐŧĐžŅ€Đ°Đ˛Ņ–ди]]</text>
96959 </revision>
96960 </page>
96961 <page>
96962 <title>Aloe</title>
96963 <id>1650</id>
96964 <revision>
96965 <id>41887302</id>
96966 <timestamp>2006-03-02T10:48:18Z</timestamp>
96967 <contributor>
96968 <username>Nikai</username>
96969 <id>9759</id>
96970 </contributor>
96971 <minor />
96972 <comment>/* Chemical properties of Aloin */ sp</comment>
96973 <text xml:space="preserve">{{cleanup-date|December 2005}}
96974
96975 {{Taxobox
96976 | color = lightgreen
96977 | name = ''Aloe''
96978 | image = Aloevera2web.jpg
96979 | image_width = 250px
96980 | image_caption = ''Aloe vera''
96981 | regnum = [[Plant]]ae
96982 | divisio = [[flowering plant|Magnoliophyta]]
96983 | classis = [[monocotyledon|Lilliopsida]]
96984 | subclassis = [[Liliidae]]
96985 | ordo = [[Asparagales]]
96986 | familia = [[Asphodelaceae]]
96987 | genus = '''''Aloe'''''
96988 | genus_authority = [[Carolus Linnaeus|L.]]
96989 | subdivision_ranks = Species
96990 | subdivision =
96991 See [[Aloe#Species|Species]]
96992 }}
96993
96994 '''Aloe''' is a [[genus]] of [[succulent plant|succulent]], [[flowering plant]]s in the family [[Asphodelaceae]], which contains about 400 different [[species]]. They are native to the drier parts of [[Africa]], especially [[South Africa]]'s [[Cape Province]] and the mountains of tropical Africa.
96995
96996 Members of the closely allied genera ''[[Gasteria]]'' and ''[[Haworthia]]'', which have a similar mode of growth, are also sometimes popularly known as aloes. Note that the plant sometimes called &quot;American aloe&quot;, ''Agave americana'', belongs to a different family, namely [[Agavaceae]].
96997
96998 Aloe plants are stiff and rugged, consisting mainly of a rosette of large, thick, fleshy [[Leaf|leaves]]. Many common varieties of Aloe are seemingly stemless, with the rosette growing directly at ground level; Other varieties may have a branched or un-branched [[plant stem|stem]] from which the fleshy leaves spring. The leaves are generally lance-shaped with a sharp apex and a spiny margin. They vary in color from grey to bright green and are sometimes striped or mottled.
96999
97000 Aloe [[flower]]s are small, tubular, and yellow or red and are borne on densely clustered, simple or branched leafless stems. The plants are cultivated as ornamental plants, especially in public buildings and gardens.
97001
97002 ==Uses==
97003 Human use of Aloes are primarily as a [[Herbalism|herbal remedy]] in alternative medicines and &quot;home first aid&quot;. Both the translucent inner pulp as well as the resinous yellow exudate from wounding the Aloe plant are used ''externally'' to relieve skin discomforts and ''internally'' as purgatives. To date, research has shown in certain cases that Aloes produce positive medicinal benefits for healing damaged skin, however there is still much debate regarding the effectiveness and safety for using Aloes medicinally in other manners{{citeneeded}}.
97004
97005 Some Aloes have been used for human consumption. For example drinks made from or containing chunks of aloe pulp are popular in Asia as commercial beverages, and as a tea additive. This is notably true in [[Korea]]. As well, the yellow exudate from the leaves were once used on children's fingers to stop nail-biting.
97006
97007 ===External uses===
97008 [[Image:Aloe vera leaf.jpg|thumb|Leaf close up]]
97009
97010 The most common uses of aloe vera have been from topical use on human skin to treat various conditions. Aloe vera is also often used to treat skin from burns. Not only does it soothe the skin, ease pain and reduce inflammation, studies have been done to show that using aloe as a topical treatment to burns will help speed up the healing recovery process. A study performed in the 1990s showed that the healing of a moderate severe burn was sped up by six days when covering the wound on a regular basis with aloe vera gel, compared to the healing of the wound covered in a gauze bandage (Farrar, 2005). Aloe vera not only helps burns of various degrees, it also has become a common relief aid in treating sunburns. Aloe vera be found in drugstores in a gel form. When rubbed over over-exposed skin, the redness will disappear within a couple of days and helps to preserve moisture so that the skin will not become dry and peel.
97011
97012 Aloe vera can also be used to treat minor cuts and scrapes. Using an aloe vera leaf and rubbing it over a cut will help prevent infection and will speed up the healing response from the body. The aloe vera acts as a sealant and pulls the skin back together like a bandage or a suture (http://www.newstarget.com/001560-02.html). Although aloe should not be used as a substitute for medical treatment, its many uses are beneficial and should be considered for anything such as an everyday moisturizer to a first-aid antiseptic. In addition to the above-mentioned benefits, continuous research is being done to learn how else the aloe vera plant can play an important part in human lives.
97013
97014 Many cosmetic companies are now adding this plant to every product possible including makeup, soaps, sunscreens, shampoos and lotions, as well as any product that is created to soothe, protect and moisturize the skin. This is due partially to the fact that Aloe extract is full of vitamins, nutrients and minerals, as well as, the perception of the general public of Aloe as a healing ingredient. The International Aloe Science Council advises choosing products that contain between twenty-five and forty percent aloe in them to receive the ultimate aloe vera benefits to the skin (http://www.iasc.org/aloe.html).
97015
97016 Aloe gel is also useful for any dry skin condition, especially [[eczema]] around the eyes and sensitive facial skin, and for treating fungal infections such as ringworm. In [[Ayurvedic]] medicine, the gel is usually applied fresh and can even be converted into an ointment for long-term use.
97017
97018 === Internal uses ===
97019 [[Image:Aloevera1web.jpg|thumb|right|200px|Aloe vera (flowers)]]
97020 Aloe contains a number of medicinal substances used as a [[purgative]]. The medicinal substance is produced from various species of aloe, such as ''A. vera'', ''A. vulgaris'', ''A. socotrina'', ''A. chinensis'', and ''A. perryi''. Several kinds of aloes are commercially available: Barbadoes, Socotrine, Hepatic, Indian, and Cape aloes. Barbadoes and Socotrine are the varieties most commonly used for curative purposes.
97021
97022 Aloes is the expressed juice of the leaves of the plant. When the leaves are cut, the juice that flows out is collected and evaporated. After the juice has been removed, the leaves are sometimes boiled, to yield an inferior kind of aloes. The juice of the leaves of certain species, e.g. ''Aloe venenosa'', is [[poison]]ous.
97023
97024 Aloe vera has been widely marketed as having a number of benefits when taken internally. For example, Aloe has been marketed as a remedy for coughs, wounds, [[ulcer]]s, [[gastritis]], [[diabetes]], [[cancer]], [[headache]]s, [[arthritis]], [[immune-system deficiencies]], and many other conditions. However, these uses are unproven. The only substantiated internal use is as a [[laxative]]. Furthermore, there is evidence of significant adverse side effects (see for example [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=15633238 this paper]). Consult your doctor when contemplating taking Aloe internally. Avoid use during pregnancy because the [[anthraquinone]] [[glycoside]]s are strongly [[purgative]]. High doses of the leaves can cause vomiting.
97025
97026 Aloe's benefits include ingesting aloe juice to lower blood sugar levels in diabetes patients.{{citeneeded}}
97027
97028 == Compounds in Aloes ==
97029 Aloe vera contains over seventy-five nutrients and twenty minerals, nineteen amino acids including all eight essential amino acids and eleven secondary amino acids as well and twelve vitamins. These vitamins include: A, B1, B6, B12, C and E (http://curezone.com/foods/aloevera.html). It has even been referred to as “a pharmacy in a plant” (Farrar, 2005).
97030
97031 Aloes also contain [[anthraquinone gycoside]]s, [[resin]]s, [[polysaccharide]]s, [[sterol]]s, [[gelonin]]s, and [[chromone]]s. It is also a source of a class of chemicals called ''Aloin''s.
97032
97033 === Chemical properties of Aloin ===
97034 [[Image:Split Aloe.jpg|thumb|right|200px|Split Aloe]]
97035 Aloins are soluble and easily extracted by water. Aloes is the expressed juice of the leaves of the plant. When the leaves are cut, the juice that flows out is collected and evaporated. After the juice has been removed, the leaves are sometimes boiled, to yield an inferior kind of aloes. According to W. A. Shenstone, two classes of Aloins are to be recognized: (1) [[nataloin]]s, which yield [[picric acid|picric]] and [[oxalic acid]]s with [[nitric acid]], and do not give a red coloration with nitric acid; and (2) [[barbaloin]]s, which yield [[aloetic acid]] (C&lt;sub&gt;7&lt;/sub&gt;H&lt;sub&gt;2&lt;/sub&gt;N&lt;sub&gt;3&lt;/sub&gt;O&lt;sub&gt;5&lt;/sub&gt;), [[chrysammic acid]] (C&lt;sub&gt;7&lt;/sub&gt;H&lt;sub&gt;2&lt;/sub&gt;N&lt;sub&gt;2&lt;/sub&gt;O&lt;sub&gt;6&lt;/sub&gt;), picric and oxalic acids with nitric acid, being reddened by the acid. This second group may be divided into a-barbaloins, obtained from Barbadoes aloes, and reddened in the cold, and b-barbaloins, obtained from Socotrine and Zanzibar aloes, reddened by ordinary nitric acid only when warmed or by fuming acid in the cold. Nataloin (2C&lt;sub&gt;17&lt;/sub&gt;H&lt;sub&gt;13&lt;/sub&gt;O&lt;sub&gt;7&lt;/sub&gt;¡H&lt;sub&gt;2&lt;/sub&gt;O) forms bright yellow scales. Barbaloin (C&lt;sub&gt;17&lt;/sub&gt;H&lt;sub&gt;18&lt;/sub&gt;O&lt;sub&gt;7&lt;/sub&gt;) forms yellow [[Prism (geometry)|prism]]atic crystals. Aloes also contain a trace of volatile oil, to which its odour is due.
97036
97037 === Medicinal use of Aloin ===
97038 The dose is 130-320 mg, that of aloin being 30-130 mg. Aloes can be absorbed from a broken surface and will then cause purging. When given internally it increases the actual amount as well as the rate of flow of the [[bile]]. It hardly affects the [[small intestine]], but markedly stimulates the muscular coat of the [[large intestine]], causing purging in about fifteen hours. There is hardly any increase in the intestinal secretion, the drug being emphatically not a hydragogue cathartic. There is no doubt that its habitual use may be a factor in the formation of haemorrhoids; as in the case of all drugs that act powerfully on the lower part of the intestine, without simultaneously lowering the venous pressure by causing increase of secretion from the bowel. Aloes also tends to increase the menstrual flow and therefore belongs to the group of emmenagogues. Aloin is preferable to aloes for therapeutic purposes, as it causes less, if any, pain. It is a valuable drug in many forms of constipation, as its continual use does not, as a rule, lead to the necessity of enlarging the dose. Its combined action on the bowel and the [[uterus]] is of especial value in chlorosis, of which amenorrhoea is an almost constant symptom. The drug is obviously contraindicated in pregnancy and when haemorrhoids are already present. Many well-known patent medicines consist essentially of aloes.
97039
97040 == Lign-aloes and Agarwood ==
97041 The lign-aloes are quite different from plants of the ''Aloe'' genus. The term &quot;Aloes&quot; is used in the [[Bible]] (Numbers 24:6), but as the trees usually supposed to be meant by this word are not native in [[Syria]], it has been suggested that the [[Septuagint]] reading in which the word does not occur is to be preferred. Lign-aloe is a corruption of the Latin ''lignum-aloe'', a wood, not a resin. [[Dioscorides]] refers to it as ''agallochon'', a wood brought from [[Arabia]] or [[India]], which was odoriferous but with an astringent and bitter taste. This may be ''[[Agarwood]]'', a native of East India, [[South East Asia]], and [[China]], which supplies the so-called eagle-wood or aloes-wood, which contains much resin and oil.
97042
97043
97044 ==[[Species]]==
97045 There are around 400 species in the genus ''Aloe''. For a full list, see [[List of species of genus Aloe]]. Common species include:
97046 *''[[Aloe angelica]]'' - Wylliespoort Aloe
97047 *''[[Aloe arborescens]]'' - Candelabra Aloe, Tree Aloe, Krantz Aloe [[Image:Babosa1.jpg|thumb|right|Candelabra Aloe (''Aloe arborescens'')]]
97048 *''[[Aloe aristata]]'' - Torch Plant, Lace Aloe
97049 *''[[Aloe barberae]]'' - Tree Aloe
97050 *''[[Aloe brevifolia]]'' - Shortleaf Aloe
97051 *''[[Aloe castanea]]'' - Cat's Tail Aloe
97052 *''[[Aloe ciliaris]]'' - Climbing Aloe
97053 *''[[Aloe comosa]]'' - Clanwilliam's Aloe
97054 *''[[Aloe dichotoma]]'' - quiver tree or kokerboom
97055 [[Image:Aloe dichotoma.jpg|thumb|right|Aloe dichotoma (''Aloe dichotoma'')]]
97056 *''[[Aloe dinteri]]'' - Namibian Partridge Breast Aloe
97057 *''[[Aloe distans]]'' - Jeweled Aloe
97058 *''[[Aloe excelsa]]'' - Noble Aloe, Zimbabwe Aloe
97059 *''[[Aloe ferox]]'' - Cape Aloe, Tap Aloe, Bitter Aloe
97060 *''[[Aloe glauca]]'' - Blue Aloe
97061 *''[[Aloe humilis]]'' - Spider Aloe
97062 *''[[Aloe khamiensis]]'' - Namaqua Aloe
97063 *''[[Aloe longistyla]]'' - Karoo Aloe, Ramenas
97064 *''[[Aloe maculata]]'' - Soap Aloe, Zebra Aloe
97065 *''[[Aloe mitriformis]]'' - Gold Tooth Aloe
97066 *''[[Aloe nobilis]]'' - Gold Tooth Aloe
97067 *''[[Aloe perryi]]'' - Perry's Aloe
97068 *''[[Aloe pictifolia]]'' - Kouga Aloe
97069 *''[[Aloe pillansii]]'' - Bastard Quiver Tree
97070 *''[[Aloe plicatilis]]'' - Fan Aloe
97071 *''[[Aloe polyphylla]]'' - Spiral Aloe
97072 *''[[Aloe pratensis]]'' - Rosette Aloe
97073 *''[[Aloe ramosissima]]'' - Maidens Quiver Tree
97074 *''[[Aloe saponaria]]'' - African Aloe
97075 *''[[Aloe speciosa]]'' - Tilt-head Aloe
97076 *''[[Aloe striata]]'' - Coral Aloe
97077 *''[[Aloe tauri]]'' - Bullocks Bottle Brush Aloe
97078 *''[[Aloe variegata]]'' - Partridge-breasted Aloe, Tiger Aloe
97079 *''Aloe vera'' - True Aloe, Barbados Aloe, Common Aloe, Yellow Aloe, Medicinal Aloe
97080 * ''[[Aloe zebrina]]'' - Zebra Aloe
97081 ;Hybrids
97082 * ''Aloe x spinosissima'' - Gold-tooth Aloe
97083 &lt;gallery&gt;
97084 Image:Aloe aristata.jpg|Aloe aristata
97085 Image:Aloe vera flower bud.jpg|Flower bud of Aloe Vera
97086 Image:Aloe Vera flower.jpg|Aloe Vera flower
97087 Image:Aloe Vera.jpg
97088 &lt;/gallery&gt;
97089
97090 ==Heraldry==
97091 The aloe plant occurs as a charge in [[heraldry]].
97092
97093 ==References==
97094 *News Target: http://www.newstarget.com/001560-02.html
97095 *International Aloe Science Council: http://www.iasc.org/aloe.html
97096 *University of Maryland Medical Center: http://www.umm.edu/altmed/ConsHerbs/Aloech.html
97097 *Craig, Winston. “The All-purpose Gel,” Vibrant Life; July 2001.
97098 *Farrar, Maureen Meyers. “Skin Deep,” Better Nutrition; July 2005.
97099 *http://curezone.com/foods/aloevera.html
97100
97101 == External links ==
97102 {{commons|Aloe}}
97103 * [http://www.aloeverabenefits.com/what-is-in-aloe-vera.html What is in Aloe Vera?] &quot;Inside the leaf of the medicinal herb&quot;
97104 * [http://www.henriettesherbal.com/eclectic/kings/aloe.html Aloe vera] &quot;King's American Dispensatory&quot;
97105 * [http://www.botanical.com/botanical/mgmh/a/aloes027.html Aloe] &quot;A Modern Herbal&quot;
97106 * [http://www.herbmed.org/herbs/herb3.htm Aloe vera] HerbMed
97107 * [http://www.aloeverabenefits.com/aloe-vera-plant.html Aloe Vera Plant] &quot;Detailed history of the Aloe Vera plant&quot;
97108 * [http://www.best-home-remedies.com/herbal_medicine/herbs/aloe.htm Aloe Herb - Uses And Side Effects]
97109 * [http://www.mcp.edu/herbal/aloe/aloe.pdf Aloe vera] (pdf) Longwood Herbal Task Force
97110 * [http://www.aloeverabenefits.com/is-aloe-vera-useful-in.html Is Aloe Vera useful in treating sickness?] &quot;Recent research findings on its medicinal uses&quot;
97111 * [http://www.homeoint.org/books3/kentmm/aloe.htm Aloe (aloe)] &quot;Kent's Lectures on Homeopathic Materia Medica&quot;
97112 * [http://www.homeoint.org/books5/allenprimer/aloe.htm Aloe] &quot;A Primer of Materia Medica for practitioners of Homoeopathy&quot;
97113 * [http://www.foreverliving.com Forever Living Products(FLP)]World's Largest Aloe Vera Distributor
97114 * [http://www.aloesajten.com/benefits-of-aloe-vera-juice.php Benefits of Aloe Vera Juice]
97115
97116 [[Category:Liliopsida]]
97117 [[Category:Medicinal plants]]
97118 [[de:Aloen]]
97119 [[es:Aloe]]
97120 [[fr:Aloès]]
97121 [[id:Lidah Buaya]]
97122 [[it:Aloe (botanica)]]
97123 [[he:אלוורה]]
97124 [[hu:Aloe vera]]
97125 [[ms:Lidah buaya]]
97126 [[ja:ã‚ĸロエ]]
97127 [[pl:Aloes]]
97128 [[zh:čŠĻ荟]]</text>
97129 </revision>
97130 </page>
97131 <page>
97132 <title>Alured of Berkeley</title>
97133 <id>1651</id>
97134 <revision>
97135 <id>15900117</id>
97136 <timestamp>2002-02-25T15:51:15Z</timestamp>
97137 <contributor>
97138 <ip>Conversion script</ip>
97139 </contributor>
97140 <minor />
97141 <comment>Automated conversion</comment>
97142 <text xml:space="preserve">#REDIRECT [[Alured of Beverley]]
97143 </text>
97144 </revision>
97145 </page>
97146 <page>
97147 <title>Alyattes II</title>
97148 <id>1652</id>
97149 <revision>
97150 <id>30700370</id>
97151 <timestamp>2005-12-09T10:45:35Z</timestamp>
97152 <contributor>
97153 <username>Dimadick</username>
97154 <id>24198</id>
97155 </contributor>
97156 <comment>Added link to his daughter</comment>
97157 <text xml:space="preserve">'''Alyattes II''', king of [[Lydia]] ([[619 BC|619]]-[[560 BC]]), the real founder of the [[Lydian empire]], was the son of [[Sadyattes]], of the house of the [[Mermnadae]].
97158
97159 For several years he continued the war against [[Miletus]] begun by his father, but was obliged to turn his attention to the [[Medes]] and [[Babylonians]]. On [[May 28]], [[585 BC]], during a battle on the [[Halys]] against [[Cyaxares]], king of Media, a [[solar eclipse]] took place (see also [[Thales]]); hostilities were suspended, peace concluded, and the Halys fixed as the boundary between the two kingdoms.
97160
97161 Alyattes drove the [[Cimmeria|Cimmerii]] (see [[Scythia]]) from [[Asia]], subdued the [[Carians]], and took several [[Ionia]]n cities ([[Izmir|Smyrna]], [[Colophon]]). ([[Izmir|Smyrna]] was sacked and destroyed c.[[600 BC]], the inhabitants forced to move to the country.)
97162
97163 He standardised the weight of coins (1 Stater = 168 grains of wheat). The coins were produced using an anvil die technique and stamped with the Lion's head, the symbol of the Mermnadae.
97164
97165 He was succeeded by his son [[Croesus]]. His daughter [[Aryenis of Lydia]] was [[Queen consort]] of [[Astyages]], King of Media.
97166
97167 His tomb still exists on the plateau between Lake Gygaea and the river Hermus to the north of [[Sardis]] -- a large mound of earth with a substructure of huge stones. It was excavated by [[Spiegelthal]] in [[1854]], who found that it covered a large vault of finely-cut marble blocks approached by a flat-roofed passage of the same stone from the south. The [[sarcophagus]] and its contents had been removed by early plunderers of the tomb, all that was left being some broken alabaster vases, pottery and charcoal. On the summit of the mound were large [[phallus|phalli]] of stone.
97168
97169 ==References==
97170 *{{1911}}
97171
97172 ==External links==
97173 *[http://www.livius.org Livius], [http://www.livius.org/men-mh/mermnads/alyattes.html Alyattes of Lydia] by Jona Lendering
97174
97175 [[Category:560 BC deaths]]
97176 [[Category:Kings of Lydia]]
97177
97178 [[de:Alyattes]]
97179 [[nl:Alyattes II]]
97180 [[nb:Alyattes]]
97181 [[sl:Aliat II.]]</text>
97182 </revision>
97183 </page>
97184 <page>
97185 <title>Age of consent</title>
97186 <id>1653</id>
97187 <revision>
97188 <id>42146388</id>
97189 <timestamp>2006-03-04T03:08:08Z</timestamp>
97190 <contributor>
97191 <ip>86.132.136.211</ip>
97192 </contributor>
97193 <comment>/* Ages of consent in various countries */ previous wording implied no male heterosexual AoC in England and Wales! It's 16 for all, except with &quot;relationship of trust&quot;</comment>
97194 <text xml:space="preserve">{{otheruses1|the legal concept}}
97195
97196 {{citation style}}
97197
97198 In [[criminal law]], the '''age of consent''' (AOC) is the age at which a person is considered to be capable of legally giving [[informed consent]] to any legal contract or behavior regulated by law, including [[sexual acts]] with another person. In most jurisdictions, the Age of Consent is violated when an adult has intercourse with an individual who has not reached that jurisdiction's AOC. In other jurisdictions, the AOC is a minimum age for any type of sexual conduct, and two minor participants can violate a jurisdiction's AOC. The crime and penalties for an AOC violation varies based on jurisdiction, the age of the older actor and the difference between the two actors. Charges may range from a relatively low level misdemeanor such as &quot;corruption of a minor&quot; to [[statutory rape]] (which is considered equivalent to rape, both in severity and sentencing.) Some jurisdictions have a second age of consent that is relevant in situations when the adult actor is in a position of authority over the minor (affecting teachers, coaches, principals, health professionals, police officers, family members.) Though some areas allow certain ages that can have sexual intercourse with someone over or under the age of consent but by only a few years (usually 3-4 years).
97199
97200 The age of consent should not be confused with the [[age of majority]] or [[age of criminal responsibility]], and in some jurisdictions, the [[marriageable age]] differs from the age of consent.
97201
97202 The age of consent varies widely from jurisdiction to jurisdiction, though most jurisdictions in the world today have an age of consent between 14 to 18 years, but ages as young as 12 and as old as 21 also occur. The relevant age may also vary by the type of sexual act or the gender of the people concerned.
97203
97204 ==Social and legal attitudes==
97205 Social and legal attitudes towards the appropriate age of consent have drifted upwards in modern times; while ages from ten through to thirteen were typically acceptable in the mid 19th century, fifteen through eighteen had become the norm in many countries by the end of the 20th century. Calls for the age of consent for heterosexual sex to be lowered are largely unheard of outside of US, with a typical age of 14 to 18.
97206
97207 Sexual relations with a person under the age of consent is in general a criminal offense, with punishments ranging from token fines to life imprisonment. In the [[United States]] this offense is frequently (but often inaccurately) called [[Statutory rape#Statutory rape|statutory rape]], though outside the United States other names are more commonly used (e.g. &quot;carnal knowledge of a person under sixteen years&quot;).
97208
97209 The enforcement practices of age of consent laws tend to vary depending on the social sensibilities of the particular culture. Often enforcement is not exercised to the letter of the law, with legal action being taken only when a sufficiently socially-unacceptable age gap exists between the two individuals, or if the perpetrator is in a position of authority over the minor (e.g. a teacher, priest or doctor). The [[sex]] of each participant also influences perceptions of an individual's guilt and therefore enforcement. &quot;The Supreme Court has held that stricter rules for males do not violate the equal protection clause of the Constitution, on the theory that men lack the disincentives associated with pregnancy that women have to engage in sexual activity, and the law may thus provide men with those disincentives in the form of criminal sanctions.&quot; {{ref|posner}} Not only is enforcement more likely in the case of a larger age gap, but in the US at least, laws are becoming more explicit about prohibiting sex between youngsters and authority figures, even when sex would otherwise be legal.
97210
97211 That the relationship was consensual is not in general a defense to having sexual relations with a person under the age of consent; however, there are some defenses: common examples include a ''limited mistake of age defence'' and a ''defense of similarity of age''. A mistake of age defense is that the accused mistakenly believed the victim was not under the age of consent; however, where such a defense is provided, it is normally limited to apply only when the victim is above a certain age. Such a defense becomes stronger if the accused can show [[due diligence]] in determining the age of the victim.
97212
97213 A defense of similarity of age is that the difference in age between the accused and the victim was fewer than a certain number of years.
97214 Another defense is often marriage, for those jurisdictions where the [[marriageable age]] is less than the age of consent.
97215
97216 ===Extraterrioriality===
97217 Increasingly the age of consent laws of a state apply not only to acts committed on its own territory, but also acts committed by its nationals and/or inhabitants on foreign territory. Such provisions have been frequently adopted to help reduce the incidence of child [[sex tourism]].
97218
97219 * In the [[United States]] the [[PROTECT Act of 2003]] (signed into law on April 30, 2003) authorizes fines and/or imprisonment for up to 30 years for US citizens or residents who engage in illicit sexual conduct abroad. For the purposes of this law illicit sexual conduct includes commercial sex with anyone under 18, and all sex with anyone under 16. Previous US law was less strict, only punishing those having sex either in contravention of local laws OR in commerce (prostitution); but did not prohibit non-commercial sex with, say, a 14 year-old if such sex is legal in the foreign territory.
97220
97221 * [[France]] allows the prosecution of its own citizens on rape charges for sex with minors under 15 abroad even if it was legal with respect to the local jurisdiction. The same applies to [[Germany]] if the minor is under 14.
97222
97223 * For inhabitants of the [[Netherlands]] it is a severe crime to have sex with a prostitute under the age of 18, or any person below 16, anywhere in the world. If a foreigner has had sex with someone under the age of 16 or a prostitute below 18—even if this was legal—and if this was done at a time that it was already illegal in the Netherlands, he or she becomes a criminal when immigrating to the Netherlands.
97224
97225 (See also [[Universal jurisdiction]]; the effective age of consent may be the highest of those corresponding to the list in [[Universal jurisdiction#Applicable jurisdictions|Applicable jurisdictions]].)
97226
97227 ==Age of consent for homosexual and heterosexual sex==
97228 Frequently, jurisdictions provide differing ages of consent for [[heterosexual]] and [[homosexuality|homosexual]] intercourse. Most often, the age of consent for heterosexual and female homosexual intercourse is lower than the age of consent for male homosexual intercourse. The [[gay rights movement]] has been attempting in many places to establish an equal age of consent regardless of the sex of the partners; this has resulted in many jurisdictions adopting a common age of consent, though conservatives have frequently and successfully opposed this (see [[Sodomy law]]). However, the [[United States Supreme Court]] decision in [[Lawrence v. Texas]] in 2003 effectively invalidated the disparity between heterosexual and homosexual ages of consent within the US.
97229
97230 ==Ages of consent in various countries==
97231 &lt;!-- Attention editors: if you alter any information in this section please provide a link to an authority or cite the appropriate law. See talk page heading &quot;The Age of Consent Challenge&quot; --&gt;
97232
97233 This table is for relative comparison of the &quot;norm&quot; between countries only and should not be considered authoritative. Most of the information provided is unreferenced, and much is likely to be incorrect. See detailed information for each jurisdiction below.
97234
97235 {|class=&quot;wikitable&quot;
97236 !12
97237 !13
97238 !14
97239 !15
97240 !16
97241 !17
97242 !18
97243 !20
97244 !21
97245 |----
97246 |&lt;!-- 12 --&gt;
97247 Mexico&lt;br&gt;
97248 Philippines&lt;br&gt;
97249 |&lt;!-- 13 --&gt;
97250 Guyana&lt;br&gt;
97251 Japan&lt;br&gt;
97252 South&amp;nbsp;Korea&lt;br&gt;
97253 Spain&lt;br&gt;
97254 Swaziland&lt;br&gt;
97255 |&lt;!-- 14 --&gt;
97256 Albania&lt;br&gt;
97257 Austria&lt;br&gt;
97258 Bulgaria&lt;br&gt;
97259 Canada&lt;br&gt;
97260 Chile&lt;br&gt;
97261 China&lt;br&gt;
97262 Colombia&lt;br&gt;
97263 Ecuador&lt;br&gt;
97264 Estonia&lt;br&gt;
97265 Germany&lt;br&gt;
97266 Hungary&lt;br&gt;
97267 Iceland&lt;br&gt;
97268 Italy&lt;br&gt;
97269 Montenegro&lt;br&gt;
97270 Paraguay&lt;br&gt;
97271 Peru&lt;br&gt;
97272 Portugal&lt;br&gt;
97273 Serbia&lt;br&gt;
97274 |&lt;!-- 15 --&gt;
97275 Czech&amp;nbsp;Republic&lt;br&gt;
97276 Denmark&lt;br&gt;
97277 France&lt;br&gt;
97278 Greece&lt;br&gt;
97279 Morocco&lt;br&gt;
97280 Poland&lt;br&gt;
97281 Romania&lt;br&gt;
97282 Slovakia&lt;br&gt;
97283 Slovenia&lt;br&gt;
97284 Sweden&lt;br&gt;
97285 Thailand&lt;br&gt;
97286 Uruguay&lt;br&gt;
97287 |&lt;!-- 16 --&gt;
97288 Algeria&lt;br&gt;
97289 Andorra&lt;br&gt;
97290 Antigua&lt;br&gt;
97291 Argentina&lt;br&gt;
97292 Australia&lt;br&gt;
97293 Belgium&lt;br&gt;
97294 Finland&lt;br&gt;
97295 Great Britain&lt;br&gt;
97296 Hong&amp;nbsp;Kong&lt;br&gt;
97297 India&lt;br&gt;
97298 Israel&lt;br&gt;
97299 Jersey&lt;br&gt;
97300 Latvia&lt;br&gt;
97301 Netherlands&lt;br&gt;
97302 New Zealand&lt;br&gt;
97303 Norway&lt;br&gt;
97304 Puerto&amp;nbsp;Rico&lt;br&gt;
97305 Russia&lt;br&gt;
97306 Singapore&lt;br&gt;
97307 South&amp;nbsp;Africa&lt;br&gt;
97308 Switzerland&lt;br&gt;
97309 Taiwan&lt;br&gt;
97310 Ukraine&lt;br&gt;
97311 United&amp;nbsp;States&lt;br&gt;
97312 Venezuela&lt;br&gt;
97313
97314 |&lt;!-- 17 --&gt;
97315 Indonesia&lt;br&gt;
97316 Ireland&lt;br&gt;
97317 Northern&amp;nbsp;Ireland&lt;br&gt;
97318 |&lt;!-- 18 --&gt;
97319 Egypt&lt;br&gt;
97320 Kazakhstan&lt;br&gt;
97321 Pakistan&lt;br&gt;
97322 Tanzania&lt;br&gt;
97323 Turkey&lt;br&gt;
97324 Malaysia&lt;br&gt;
97325 Vietnam&lt;br&gt;
97326 |&lt;!-- 20 --&gt;
97327 Tunisia&lt;br&gt;
97328 |&lt;!-- 21 --&gt;
97329 Madagascar&lt;br&gt;
97330 |}
97331
97332 Age of consent in various countries:
97333
97334 &lt;!-- Attention editors: if you alter any information in this section please provide a link to an authority or cite the appropriate law. See talk page heading &quot;The Age of Consent Challenge&quot; --&gt;
97335
97336 * [[Albania]]: 14
97337
97338 * [[Algeria]]: 16; homosexual relationships are illegal
97339
97340 * [[Andorra]]: 16
97341
97342 * [[Antigua and Barbuda|Antigua]]: 16; homosexual relationships are illegal
97343
97344 * [[Argentina]]:
97345 ** 13 (below that it's considered [[rape]] - ''See Art. 119 [http://www.infoleg.gov.ar/infolegInternet/anexos/15000-19999/16546/texact.htm#17 Argentine Penal Code (in spanish)]'');
97346 ** 16, if abusing sexual immaturity or in some other cases (&quot;''Estupro''&quot;, which is less severe than [[rape]] - ''See Art. 120 [http://www.infoleg.gov.ar/infolegInternet/anexos/15000-19999/16546/texact.htm#17 Argentine Penal Code (in spanish)]'').
97347 ** Prosecutable only after a complaint by the minor, or by their parents/guardians. (Article 72 [http://www.infoleg.gov.ar/infolegInternet/anexos/15000-19999/16546/texact.htm#12 Argentine Penal Code])
97348 ** No &quot;corruption&quot; of minors (below 18) - ''See Art. 125 [http://www.infoleg.gov.ar/infolegInternet/anexos/15000-19999/16546/texact.htm#17 Argentine Penal Code (in spanish)]''.
97349
97350 * [[Australia]]:
97351 ** Australia is a Federation of States and Territories. Australia's Constitution protects and retains certain residual powers for the States and so the Australian Federal Government (the Commonwealth) has constitutional limitations on what issues it can legislate. This means that each State has its own laws regarding AOC. However, it is worth mentioning that a 1997 Federal Government and the United Nations Human Rights Committee ruling caused each State to repeal any differences in homo/heterosexual AOC. This is due to International Affairs being a power of the Commonwealth.
97352 ** Federal Laws (Laws that apply to all Australians): It is an offence for an Australian Citizen, Resident or Body Corporate [http://www.austlii.edu.au/au/legis/cth/consol_act/ca191482/s50ad.html {s50AD}] ''while outside of Australia'' to have sexual intercourse with a child '''under the age of 16''' [http://www.austlii.edu.au/au/legis/cth/consol_act/ca191482/s50ba.html {s50BA}] or to induce a child under 16 to have sexual intercourse [http://www.austlii.edu.au/au/legis/cth/consol_act/ca191482/s50bb.html {s50BB}], or be somehow involved in a similar sexual act [http://www.austlii.edu.au/au/legis/cth/consol_act/ca191482/s50bc.html {s50BC}]&amp;[http://www.austlii.edu.au/au/legis/cth/consol_act/ca191482/s50bd.html {s50BD}]
97353 ** [[Australian Capital Territory]] (ACT): It is an offence to engage in sexual intercourse with a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/act/consol_act/ca190082/s55.html {s55(2)}]. However the law in the ACT does permit as a defence if brought to court, an age difference of 2 years for those older than 10 years [http://www.austlii.edu.au/au/legis/act/consol_act/ca190082/s55.html {s55(3b)}].
97354 ** [[New South Wales]]: It is an offence to engage in sexual intercourse with a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/nsw/consol_act/ca190082/s66c.html {s66C}] or attempt such an offence [http://www.austlii.edu.au/au/legis/nsw/consol_act/ca190082/s66d.html {s66d}]. Further it is an offence to engage in sexual intercourse with a person '''under the age of 18''' if that person is under the care of the offender [http://www.austlii.edu.au/au/legis/nsw/consol_act/ca190082/s73.html {s73}] (Guardian, teacher and etcetera).
97355 ** [[Northern Territory]]: It is an offence to engage in sexual intercourse with a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/nt/consol_act/cca115/sch1.html {s127}] or attempt such an offence [http://www.austlii.edu.au/au/legis/nt/consol_act/cca115/sch1.html {s131}]. Further it is an offence to engage in sexual intercourse with a person '''under the age of 18''' if that person is under the care of the offender [http://www.austlii.edu.au/au/legis/nt/consol_act/cca115/sch1.html {s128}] (Guardian, teacher and etcetera).
97356 ** [[Queensland]] (Qld.): It is an offence to have carnal knowledge with a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/qld/consol_act/cc189994/s215.html {s215}]. '''Note''' that in Qld. “carnal knowledge” does not include “sodomy”. Sodomy ([[anal sex]]) is not permitted with any person '''under the age of 18''', regardless of gender or what position is taken by which individual [http://www.austlii.edu.au/au/legis/qld/consol_act/cc189994/s208.html {s208}].
97357 ** [[South Australia]]: It is an offence to have sexual intercourse with a person '''under the age of 17''' [http://www.austlii.edu.au/au/legis/sa/consol_act/clca1935262/s49.html {s49(3)}]. However it is a defence if both parties were 16 at the time of the offence [http://www.austlii.edu.au/au/legis/sa/consol_act/clca1935262/s49.html {s49(4)}] or if both parties are married to one another [http://www.austlii.edu.au/au/legis/sa/consol_act/clca1935262/s49.html {s49(8)}]. Further it is an offence to engage in sexual intercourse with a person '''under the age of 18''' if that person is under the care of the offender [http://www.austlii.edu.au/au/legis/sa/consol_act/clca1935262/s49.html {s49(5)}] (Guardian, teacher and etcetera).
97358 ** [[Tasmania]]: It is an offence to have sexual intercourse with a person '''under the age of 17''' [http://www.austlii.edu.au/au/legis/tas/consol%5fact/cca1924115/s13.html {s13-124}]. However it is a defence if no anal sex occurred and the younger person was of or above 12 years and the older was not more than 3 years their senior or, if no anal sex occured and the younger person was of or above 15 years and the older was not more than 5 years their senior [http://www.austlii.edu.au/au/legis/tas/consol%5fact/cca1924115/s13.html {s13-124(3)}].
97359 ** [[Victoria (Australia)|Victoria]]: It is an offence to take part in sexual penetration with a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/vic/consol_act/ca195882/s45.html {s45(1)}]. However it is a defence if the younger party was aged 10 or more years and the older party was not more than 2 years older [http://www.austlii.edu.au/au/legis/vic/consol_act/ca195882/s45.html {s45(4)(b)}]. Further it is an offence to take part in sexual penetration with a '''16 or 17''' year old person if that person is under the care of the offender [http://www.austlii.edu.au/au/legis/vic/consol_act/ca195882/s48.html {s48}] (Guardian, teacher and etcetera).
97360 ** [[Western Australia]]: It is an offence to sexually penetrate a person '''under the age of 16''' [http://www.austlii.edu.au/au/legis/wa/consol_act/cc94/s321.html {s321}]. Further it is an offence to sexually penetrate a person '''under the age of 18''' if that person is under the care of the offender [http://www.austlii.edu.au/au/legis/wa/consol_act/cc94/s322.html {s322}] (Guardian, teacher and etcetera).
97361
97362 * [[Austria]]: 14 (as of [[August 13]], [[2002]])
97363
97364 * [[Belgium]]: 16 (possible restrictions apply under 18)
97365
97366 * [[Brazil]]:
97367 ** 18;
97368 ** 14-17 prosecutable only after a complaint by the minor.
97369 ** Under 14 there seems to be some confusion regarding the age below which the state may unilaterally bring charges without a complaint from the child or parent. Some sources suggest it is 12, others 10.
97370
97371 * [[Bulgaria]]: 14
97372
97373 * [[Canada]]: 14 (18 for anal sex between persons not married to each other in all provinces except Ontario and Quebec; 18 for anyone in a position of &quot;trust or authority&quot;)
97374 ** Courts in Ontario (1995) and Quebec (1998) independently declared Section 159 of the Criminal Code of Canada (Anal Intercourse) unconstitutional. Although not binding in other provinces, these rulings have set a precedent that would make successful prosecution elsewhere in Canada unlikely.
97375 ** Persons under 18 are still deemed unable to consent to sexual activity in certain contexts, such as prostitution or pornography; or with certain persons in a position of authority.
97376 ** Sex between partners that are within two years of age of each other is always legal unless the age of consent is 18 due to one of the conditions specified above. (14 and 15 year olds are granted an exemption if their partner is less than two years younger than them, 12 and 13 year olds specifically cannot be charged with a violation of the age of consent law, and 11 year olds and under cannot be charged with a crime in Canada.)
97377
97378 * [[Chile]]: 14
97379
97380 * [[China|China, People's Republic of]]: 14
97381 ** [[Hong Kong|Hong Kong S.A.R.]]: male homosexual 21 (and both the older AND younger partners can be prosecuted and liable to imprisonment for life) [gay sex laws recently overturned by court], lesbian 16, heterosexual 16.
97382
97383 * [[Republic of China|China, Republic of; (Taiwan)]]: 16, including heterosexual and homosexual relationships
97384
97385 * [[Colombia]]: 14
97386
97387 * [[Croatia]]: 14 or 18
97388
97389 * [[Czech Republic]]: 15
97390
97391 * [[Denmark]]: 15 for full consent (in regard to age differences) to sexual relationships; no limits when ages are less than 1 year apart (Meaning, no criminal charges are brought) ; 18 for dependency relationships (teacher/student etc.) and professional sexual ([[Prostitution]] is decriminalized in Denmark, but one can consent only when 18 or older).
97392
97393 * [[Ecuador]]:
97394 ** 14;
97395 ** 18 if woman is &quot;honest&quot; (not a prostitute) and &quot;seduction&quot; or deceit is used.
97396
97397 * [[Egypt]]: 18, homosexual sex is not mentioned in the law but homosexuals are prosecuted under various moral statutes
97398
97399 * [[Estonia]]: 14
97400
97401 * [[Finland]]: 16; 18 in dependency relationships (teacher/student etc.)and prostitution.
97402
97403 * [[France]]: 15; however sex with a minor under 18 in a dependency relationship may be criminalized.
97404
97405 * [[Germany]]:
97406 ** 18 years in dependency relationships (teacher/student etc.)
97407 ** 16 years if the older partner is over 18 and coerces the younger partner into sex other than by physical means, or if the older partner pays the younger partner to have sex ([[prostitution]])
97408 ** 16 years if the older partner is over 21 and exploits &quot;lack of sexual self-determination&quot; of the younger partner (only prosecuted after complaints or &amp;#8220;public interest&quot;, in practice rarely prosecuted with little or no punishment)
97409 ** 14 years for all other sexual relationships
97410
97411 * [[Greece]]: 15 (since [[1987]])
97412
97413 * [[Guyana]]: 13 (legislation to raise the age to 16 is [http://www.gina.gov.gy/archive/daily/b050601.html#8 under discussion])
97414
97415 * [[Hungary]]:
97416 ** Since the 2002 decision of the Constitutional Court 14 for both heterosexual and homosexual relationships
97417
97418 * [[Iceland]]: 14
97419
97420 * [[Indonesia]]: 17 (18 for homosexual men)
97421
97422 * [[Iran]]: extramarital sex is illegal (see: [[Marriageable age]]), note that homosexual sex may be punishable by death
97423
97424 * [[Republic of Ireland|Ireland, Republic of]]: 17, 15 for non-penetrative sexual contact.
97425 ** Different sections of law, and indeed different government departments disagree on whether the age of consent is 17 or 16 or even 15, or whether or not a disparity still exists between male and female ages. The majority of sex education literature in schools, as well as the most recent act referencing the age of consent state 16, however more recent [[DÃĄil]] debates have put this into doubt.
97426
97427 * [[Israel]]: 16, but if the female is under 16 and above 14, the age difference should not be greater than 3 years between her and her partner. 18 if dependency relationships (teacher/student etc.)
97428
97429 * [[Italy]]: 14
97430
97431 * [[Japan]]: 13 nationwide. Some prefectures have additional legislation concerning sex with children between 13 and 16 (or 18 if &quot;insincere&quot; relation or prostitution), making the actual age of consent vary between 13 and 16 if prostitution is excluded. Age of marriage for a female with parental approval is 16.
97432
97433 * [[Jersey]]: 16 (18 for homosexual intercourse)
97434
97435 * [[Kazakhstan]]: 18
97436
97437 * [[Latvia]]: 16
97438
97439 * [[Lithuania]]: 14
97440
97441 * [[Madagascar]]: quite possibly 21 (heterosexual and homosexual)
97442
97443 * [[Malaysia]]:
97444 ** 18, but [[Muslim]]s must also be married
97445 ** homosexual sex is illegal (maximum 20 years' jail)
97446 ** Anal penetration is illegal in Malaysia, regardless of age.
97447
97448 * [[Mexico]]: [http://www.interpol.int/Public/Children/SexualAbuse/NationalLaws/csaMexico.asp]
97449 ** 12 (Article 266 of the Penal Code)
97450 ** 16 for prostitution (Article 201)
97451 ** 18 if deceit is used (Article 262 of the Penal Code)
97452
97453 * [[Morocco]]: 15, homosexual sex is illegal
97454
97455 * [[Netherlands]]: 16 (18 if dependent relationship or prostitution)
97456
97457 * [[New Zealand]]: 16 [http://www.legislation.govt.nz/libraries/contents/om_isapi.dll?clientID=197507246&amp;infobase=pal_statutes.nfo&amp;jump=a1961-043%2fs.134&amp;softpage=DOC&amp;wordsaroundhits=6#JUMPDEST_a1961-043/s.134 §134] (18 if prostitution ([http://www.legislation.govt.nz/libraries/contents/om_isapi.dll?clientID=197507246&amp;infobase=pal_statutes.nfo&amp;jd=a2003-028%2fs.20&amp;record={98799F16}&amp;softpage=DOC&amp;wordsaroundhits=6 §20–23]) or some types of dependent relationships)
97458 **Although anti-pedophile laws in New Zealand (as with all other western countries) are currently severe, consensual relationship between adults and young teens are usually not prosecuted unless the parent or child complain about it.
97459 **Before 2005, there was never a law in New Zealand prohibiting any form of sexual relationship between women and boys. Until the Crimes Amendment Act (No.2) came into force in May 2005, the age of consent was 16 for older men and young girls, as well as for homosexual males (since legalization in 1986), but there was no age of consent where a woman was the older partner with a boy, and for Lesbian sex the age of consent was 12 if both partners were under 21 (16 if otherwise). This law was only amended recently after being in force for over 100 years. The legal loophole was identified in 2003 when a 21-year-old man faced imprisonment for sex with a 14-year-old girl, while a 21-year-old woman at the same time made her relationship with a 13-year-old boy public with the media because she knew she couldn't be charged.
97460 ** New Zealand decriminalised prostitution in 2003 with a legal age of 18.
97461
97462 * [[Norway]]: 16 [http://www.lovdata.no/all/hl-19020522-010.html#196 §196]
97463
97464 * [[Pakistan]]: 18
97465
97466 * [[PanamÃĄ]]:
97467 ** 12 if female.
97468 ** 14 if male.
97469
97470 * [[Paraguay]]:
97471 ** 14;
97472 ** 16 if one of them is married to another person;
97473 ** 16 if homosexual
97474
97475 * [[Peru]]: 14
97476
97477 * [[Philippines]]: 12 (restrictions on partners under 18 such as prostitution)
97478
97479 * [[Poland]]: 15
97480
97481 * [[Portugal]]: heterosexual 14, homosexual 16
97482
97483 * [[Puerto Rico]]: 16
97484
97485 * [[Romania]]: 15; 18 in dependency relationships (teacher/student etc.)
97486
97487 * [[Russia]]: 16
97488 ** only a person over 18 can be charged;
97489 ** charges are relatively low (up to 4 years of prison); this includes sexual acts (hetero and homosexual) and &quot;obscene actions&quot; (with even less charges) – ''Articles 134 and 135 of [http://base.consultant.ru/cons/cgi/online.cgi?req=doc;base=LAW;n=57568;div=LAW Penal Code (in Russian)]'';
97490 ** if the victim is proved not to understand the nature and consequences of the act (due to their age or mental abilities), it will be considered rape and charged much more severely (up to 10 years of prison, or up to 15 if victim under 14) – ''Articles 131 and 132 of [http://base.consultant.ru/cons/cgi/online.cgi?req=doc;base=LAW;n=57568;div=LAW Penal Code (in Russian)]'';
97491
97492 * [[Saudi Arabia]]: heterosexual must be married, homosexual illegal
97493 ** heterosexual sex outside marriage is punishable by [[flogging]]
97494 ** male and female homosexual sex is illegal by virtue of being outside marriage and punishable by death
97495 ** See: [[Human rights in Saudi Arabia]]
97496
97497 * [[Serbia-Montenegro]]:
97498 ** [[Serbia]]: heterosexual and female homosexual 14, male homosexual 18
97499 ** [[Montenegro]]: 14 (for all three types)
97500
97501 * [[Singapore]]: 16
97502 ** engaging sexual intercourse with a female aged under 14 is considered [[Statutory Rape]]
97503 ** engaging sexual intercourse with a female aged under 16 is considered an offense of ''&quot;carnal intercourse with an underage female&quot;'' (less severe than rape but still a punishable offense)
97504 ** homosexual sex is illegal and punishable by imprisonment, possibly for 10 years or even life
97505
97506 * [[Slovakia]]: 15
97507
97508 * [[Slovenia]]: 15
97509
97510 * [[South Africa]]: homosexual 19, heterosexual 16
97511
97512 * [[South Korea]]: 13 (19 if prostitution)
97513
97514 * [[Spain]]: 13 (possible restrictions apply under 16)
97515
97516 * [[Swaziland]]: heterosexual 13, homosexual acts are illegal
97517
97518 * [[Sweden]]: 15; 18 in dependency relationships (teacher/student etc.)
97519
97520 * [[Switzerland]]: 16, under 16 legal if age difference is no more than 3 years
97521
97522 * [[Tanzania]]: 18, homosexual sex is illegal
97523
97524 * [[Thailand]]: 15
97525
97526 * [[Tunisia]]: 20, anal intercourse between men is illegal
97527
97528 * [[Turkey]]: 18
97529
97530 * [[Ukraine]]: 16
97531
97532 * [[Uruguay]]:
97533 ** 15, though can be 12 in certain special cases. (Articles 272 and 267, [http://www.parlamento.gub.uy/Codigos/CodigoPenal/l2t10.htm Uruguayan Penal Code])
97534 ** No &quot;corruption&quot; of minors (below 18). (Article 274, [http://www.parlamento.gub.uy/Codigos/CodigoPenal/l2t10.htm Uruguayan Penal Code])
97535
97536 * [[United Kingdom]]: The [[Sexual Offences Act 2003]] is the relevant law. Ages of consent are the same for heterosexuals and homosexuals, but legal treatment varies slightly between different areas of the UK.
97537 **[[England]] and [[Wales]]: heterosexual and homosexual 16 for both sexes
97538 **[[Scotland]]: heterosexual and male homosexual 16
97539 **[[Northern Ireland]]: heterosexual and male homosexual 17
97540 **18 years for any sexual act if there is a relationship of trust (e.g. teacher/pupil), unless they are a married couple.
97541 **Until 2003, there was no specific law regarding the female homosexual, though in England and Wales this has now been set at 16 years old. Although no such legislation exists for Scotland and Northern Ireland, a female under 16 is deemed incapable of consenting to any type of sexual behaviour which could be classed as sexual assault and the courts have taken this to mean that the age of consent is the same as for male homosexual acts.
97542 **Before 2001 the homosexual age of consent in England and Wales was 18, and before the early 1990s it was 21, the age it was set at when consensual [[buggery]] was decriminalised in the 1960s. The heterosexual age of consent was raised from 12 to 16 in the late 19th Century.
97543
97544 * [[United States]]: Varies from state to state, usually 16; some states formerly forbade homosexual acts entirely, however such laws have been declared unconstitutional in 2003 (''[[Lawrence v. Texas]]''). ''Lawrence'' also had the effect of invalidating the differences between heterosexual and homosexual age of consent laws; the general, albeit untested, consensus is that the youngest age of consent law on the books in any given state now applies regardless of sexuality.
97545 **Federal law forbids crossing state lines or international borders with a person who is under 18 (in an attempt to escape the state's AOC or without permission from the minor's legal guardian), or any sex with a person who is under 16 and at least 4 years younger than the perpetrator in Federal territories ([http://caselaw.lp.findlaw.com/casecode/uscodes/18/parts/i/chapters/109a/sections/section_2243.html 18 U.S.C. 2243], [http://caselaw.lp.findlaw.com/casecode/uscodes/18/parts/i/chapters/117/sections/section_2423.html 18 U.S.C. 2423]). Federal and various state laws makes it is illegal to produce [[pornography]] featuring those under 18 and prosecutions have been commenced for cases where both partners are over the age of consent and under 18 years old, where they were making material solely for their own consumption or that of their lawful partner. The constitutionality of these cases is uncertain.
97546 ** [[Alaska]], [[Arkansas]], [[Connecticut]], [[Washington, D.C.|District of Columbia]], [[Delaware]], [[Georgia (U.S. state)|Georgia]], [[Hawaii]], [[Kansas]], [[Maine]], [[Maryland]], [[Massachusetts]] [http://www.lawlib.state.ma.us/sex.html#16], [[Michigan]], [[Minnesota]], [[Mississippi]], [[Montana]], [[Nebraska]], [[Nevada]], [[New Jersey]], [[North Carolina]], [[Ohio]], [[Oklahoma]], [[Pennsylvania]], [[Rhode Island]], [[South Dakota]], [[Vermont]], [[West Virginia]], [[Alabama]]: 16
97547 ** [[Illinois]], [[Louisiana]], [[New York]]: 17
97548 ** [[Arizona]], [[California]], [[North Dakota]], [[Oregon]], [[Tennessee]], [[Utah]], [[Wisconsin]]: 18
97549 ** [[Virginia]]: 18, 15-17 falls under [http://leg1.state.va.us/cgi-bin/legp504.exe?000+cod+18.2-371 18.2-371 contributing to the delinquency of a minor] if partner is over 18, 13-14 falls under [http://leg1.state.va.us/cgi-bin/legp504.exe?000+cod+18.2-63 18.2-63]
97550 ** [[Colorado]]: 15 (17 if partner 10 years older and not spouse)
97551 ** [[Florida]]: 16 (If partner under 24), 18 (all other adult partners)
97552 ** [[Idaho]]: 16 or 17 (if partner less than 5 years older), 18 (all other adult partners)
97553 ** [[Indiana]]: 14 (if partner under 18), 16 (all other adult partners)
97554 ** [[Iowa]]: 14 or 15 (if partner less than 5 years older), 16 (all other adult partners) State law imposes a mandatory lifetime banishment from most [[Iowa]] cities for a person who violates any state's age of consent law. Iowa's ban applies to conduct that occurs in other states regardless if it was legal in those states. Said persons would not be allowed to legally live in most Iowa cities, and would generally be restricted to rural areas. Federal courts have upheld this law, and the US Supreme Court has refused to review it.
97555 ** [[Kentucky]]: 16 (if under 21, a person's partner can legally be no more than 5 years of age younger; i.e. 20 and 15 or 18 and 13)
97556 ** [[Missouri]]: 14 (if partner under 21), 17 (all other adults)
97557 ** [[New Hampshire]]: 16 [http://www.gencourt.state.nh.us/rsa/html/LXII/632-A/632-A-4.htm RSA 632-A:4], 18 (person in position of authority [http://www.gencourt.state.nh.us/rsa/html/LXII/632-A/632-A-2.htm RSA 632-A:6])
97558 ** [[New Mexico]]: 13 if partner is four or less years older, 18 otherwise (NM Statute 30-9-11 Criminal sexual penetration)
97559 ** [[South Carolina]]: 14 (Under state constitution)/16 (Under state law - appears to conflict with state constitution).
97560 ** [[Texas]]: 14 if the other partner is within 3 years in age, otherwise 17.
97561 ** [[Washington]]: 16 (18 if partner is at least 59 months older, OR in a significant supervisory relationship and uses that relationship to engage in sex with the minor).
97562 ** [[Wyoming]]: 16/18 (conflicting laws appear to set two different ages of consent)
97563 ** Military: equal to the state the base is located in; homosexuality grounds for dismissal regardless where the base is located.
97564
97565 * [[Venezuela]]: 16
97566
97567 * [[Vietnam]]: 18 according to most sources
97568
97569 ==See also==
97570 *[[Marriageable age]]
97571 *[[Age disparity in sexual relationships]]
97572 *[[Criminal law]]
97573 *[[United Nations Convention on the Rights of the Child]]
97574
97575 == External links ==
97576 *[http://www.ageofconsent.com/ageofconsent.htm Age Of Consent chart] (last updated 2003)
97577 *[http://www.omaha-neb.com/iowa.htm Iowa's lifetime banishment for violating age of consent laws in any state.] (Law applies even for two teens close in age.)
97578 *[http://womhist.binghamton.edu/aoc/doclist.htm Age of Consent Campaign, 1886-1914] (in the USA)
97579 *[http://www.spartacus.schoolnet.co.uk/REage.htm Age of Consent] campaigns in the U.K.
97580 * [http://www.avert.org/aofconsent.htm Chart of ages of consent around the world] (welcomes suggested updates from readers, if they can provide good sources)
97581 *[http://www.interpol.int/Public/Children/SexualAbuse/NationalLaws/Default.asp Legislation of Interpol member states on sexual offences against children]
97582 * [http://www.state.hi.us/ag/pdf_documents/Report_Age_of_Consent_Task_Force.pdf Hawaii Age of Consent Task Force Report] (pages 65-68 of this report offer graphical charts of the 50 states showing their ages of consent, especially in the context of age differentiation)
97583 * [http://www.moraloutrage.net Current AOC information and statutory rape law reform] (in the USA)
97584
97585 ==References==
97586 #{{note|posner}} Posner, Richard, A Guide to America's Sex Laws, The University of Chicago Press, 1996. ISBN 0-226-67564-5. Page 45. The case cited is &lt;i&gt;Michael M. v. Superior Court&lt;/i&gt;, 450 U.S. 464 (1981).
97587
97588 [[Category:Statutory law]]
97589 [[Category:Legal fictions]]
97590 [[Category:LGBT civil rights]]
97591 [[Category:Sex crimes]]
97592 [[Category:Sexuality and age]]
97593
97594 &lt;!-- The below are interlanguage links. --&gt;
97595 [[da:Seksuel lavalder]]
97596 [[de:Schutzalter]]
97597 [[fr:MajoritÊ sexuelle]]
97598 [[he:גיל ההסכמה]]
97599 [[hu:BeleegyezÊsi korhatÃĄr]]
97600 [[ru:ВозŅ€Đ°ŅŅ‚ ŅĐžĐŗĐģĐ°ŅĐ¸Ņ]]</text>
97601 </revision>
97602 </page>
97603 <page>
97604 <title>Alypius of Antioch</title>
97605 <id>1654</id>
97606 <revision>
97607 <id>41724186</id>
97608 <timestamp>2006-03-01T08:22:31Z</timestamp>
97609 <contributor>
97610 <username>Tagishsimon</username>
97611 <id>51294</id>
97612 </contributor>
97613 <comment>links &amp; addition of the word &quot;and&quot;</comment>
97614 <text xml:space="preserve">:''[[Alypius of Thagaste]] is also the name of an early [[Christian]] [[Saint]].''
97615 '''Alypius of Antioch''' was a [[geographer]] of the mid [[4th century]] who
97616 was sent by the emperor [[Julian the Apostate|Julian]] into [[Roman Britain|Britain]] as [[vicarius]]. He ruled during a difficult period and he was probably considered suitable for the post because he came from the far east of the empire and had no associations with the west. He may have had to deal with the insurrection of the usurper named '[[Carausius II]].'
97617
97618 Alypius was afterwards commissioned to rebuild the [[Temple in Jerusalem]] as part of Julian's systematic attempt to reverse the [[Christianization]] of the [[Roman Empire]] by restoring [[pagan]] and, in this case, [[Judaism|Jewish]] practices. Among the letters of Julian are two (29 and 30) addressed to Alypius; one inviting him to [[Rome]], the other thanking him for a geographical treatise, which no longer exists.
97619
97620 ==References==
97621 *{{1911}}
97622
97623 [[Category:Ancient geographers]]
97624 [[Category:Roman governors of Britain]]
97625 [[Category:Ancient Romans]]
97626 [[Category:Romans in Britain]]</text>
97627 </revision>
97628 </page>
97629 <page>
97630 <title>Amalasuntha</title>
97631 <id>1655</id>
97632 <revision>
97633 <id>32697024</id>
97634 <timestamp>2005-12-25T18:42:49Z</timestamp>
97635 <contributor>
97636 <username>The One True Fred</username>
97637 <id>263909</id>
97638 </contributor>
97639 <minor />
97640 <text xml:space="preserve">'''Amalasuntha''' (also known as '''Amalasuentha''' or '''Amalaswintha''') (d. [[535]]) was a queen of the [[Ostrogoth]]s.
97641
97642 A daughter of Ostrogothic king [[Theodoric the Great]], she secretly married a slave named [[Traguilla]]. When her mother [[Audofleda]] found them together Traguilla was killed.
97643
97644 She was married in [[515]] to Eutharic, an Ostrogoth noble of the old Areal line, who had previously been living in [[Visigoth]]ic [[Iberian peninsula|Iberia]]. Her husband died, apparently in the early years of her marriage, leaving her with two children, [[Athalaric]] and [[Matasuentha]]. On the death of her father in [[526]], her son succeeded him, but she held the power as [[regent]] for her son. Deeply imbued with the old Roman culture, she gave to that son's education a more refined and literary turn than suited the ideas of her Gothic subjects. Conscious of her unpopularity she banished, and afterwards put to death, three Gothic nobles whom she suspected of intriguing against her rule, and at the same time opened negotiations with the emperor [[Justinian I]] with the view of removing herself and the Gothic treasure to [[Constantinople]]. Her son's death in [[534]] made little change in the posture of affairs.
97645
97646 Now queen, Amalasuntha made her cousin [[Theodahad]] partner of her throne (not, as sometimes stated, her husband, for his wife was still living), with the intent of strengthening her position. The choice was unfortunate, for Theodahad, in spite of a varnish of literary culture, was a coward and a scoundrel. He fostered the disaffection of the Goths, and either by his orders or with his permission, Amalasuntha was imprisoned on an island in the Tuscan lake of Bolsena, where in the spring of 535 she was murdered in her bath.
97647
97648 The letters of [[Cassiodorus]], chief minister and literary adviser of Amalasuntha, and the histories of [[Procopius]] and [[Jordanes]], give us our chief information as to the character of Amalasuntha.
97649
97650 ==References==
97651 *{{1911}}
97652
97653 [[Category:535 deaths]]
97654 [[Category:Goths]]
97655 [[Category:Regents]]
97656 [[Category:Murdered royalty]]
97657
97658 [[de:Amalasuntha]]
97659 [[ko:ė•„말ëŧėˆœíƒ€]]
97660 [[it:Amalasunta]]
97661 [[nl:Amalasuntha]]
97662 [[sv:Amalasuntha]]</text>
97663 </revision>
97664 </page>
97665 <page>
97666 <title>Amalric of Bena</title>
97667 <id>1656</id>
97668 <revision>
97669 <id>33241388</id>
97670 <timestamp>2005-12-30T11:18:54Z</timestamp>
97671 <contributor>
97672 <username>Charles Matthews</username>
97673 <id>12978</id>
97674 </contributor>
97675 <minor />
97676 <comment>wfy</comment>
97677 <text xml:space="preserve">'''Amalric''' (French '''Amaury''') '''of Bena''' (d.c. [[1204]]-[[1207]]) was a [[France|French]] [[theology|theologian]]. He was born in the latter part of the [[12th century]] at Bena, a village in the diocese of [[Chartres]].
97678
97679 He taught philosophy and theology at the university of Paris and enjoyed
97680 a great reputation as a subtle [[dialectic]]ian; his lectures developing the [[philosophy of Aristotle]] attracted a large circle of hearers.
97681
97682 In [[1204]] his doctrines were condemned by the university, and, on a personal appeal to [[Pope Innocent III]], the sentence was ratified, Amalric being ordered to return to Paris and recant his errors.
97683
97684 His death was caused, it is said, by grief at the humiliation to which he had been subjected.
97685 In [[1209]] ten of his followers were burnt before the gates of Paris, and Amalric's own body was exhumed and burnt and the ashes given to the winds.
97686
97687 The doctrines of his followers, known as the [[Amalrician]]s, were formally condemned by the [[Fourth Council of the Lateran|fourth Lateran Council]] in 1215.
97688
97689 ==Propositions==
97690 Amalric appears to have derived his philosophical system from [[Johannes Scotus Erigena|Erigena]], whose principles he developed in a one-sided and strongly [[pantheist]]ic form.
97691
97692 Three propositions only can with certainty be attributed to him:
97693
97694 #that God is all;
97695 #that every Christian is bound to believe that he is a member of the body of Christ, and that this belief is necessary for salvation;
97696 #that he who remains in love of God can commit no sin.
97697
97698 These three propositions were further developed by his followers, who maintained that God revealed Himself in a threefold revelation, the first in Abraham, marking the epoch of the Father; the second in Christ, who began the epoch of the Son; and the third in Amalric and his disciples, who inaugurated the era of the [[Holy Ghost]].
97699
97700 Under the pretext that a true believer could commit no sin, the Amalricians indulged in every excess, and the sect does not appear to have long survived the death of its founder.
97701
97702 See [[W. Preger]], ''Geschichte der deutschen Mystik im Mittelalter'' (Leipzig, 1874, i. 167-173); [[Haureau]], ''Hist. de la phil. scol.'' (Paris, 1872); [[C. Schmidt]], ''Hist. de l'Eglise d'Occident itendant le moyen age'' (Paris, 1885); [[Hefele]], ''Conciliengesch.'' (2nd ed., Freiburg, 1886).
97703
97704 ==See also==
97705 *[[Brethren of the Free Spirit]]
97706
97707 ==References==
97708 *{{1911}}
97709 [[Category:Heretics]]
97710 [[Category:Pantheism]]</text>
97711 </revision>
97712 </page>
97713 <page>
97714 <title>Afonso I of Portugal</title>
97715 <id>1657</id>
97716 <revision>
97717 <id>42026529</id>
97718 <timestamp>2006-03-03T08:13:56Z</timestamp>
97719 <contributor>
97720 <ip>83.55.255.157</ip>
97721 </contributor>
97722 <text xml:space="preserve">&lt;table border=1 cellpadding=2 cellspacing=0 align=right style=margin-left:1em&gt;
97723 &lt;caption&gt;&lt;font size=&quot;+1&quot;&gt;'''Afonso I''' &lt;/font&gt;&lt;/caption&gt;
97724 &lt;tr valign=top&gt;&lt;td style=background:#efefef; colspan=2 align=center&gt;[[Image:AfonsoI-P.jpg]]
97725 &lt;tr valign=top&gt;&lt;td&gt;'''Reign'''&lt;td&gt;[[July 26]], [[1139]] - [[December 6]], [[1185]]
97726 &lt;tr valign=top&gt;&lt;td&gt;'''Queen'''&lt;td&gt;[[Maud of Savoy]] ([[1125]]-[[1157]])
97727 &lt;tr valign=top&gt;&lt;td&gt;'''Royal House'''&lt;td&gt;[[House of Burgundy]]
97728 &lt;tr valign=top&gt;&lt;td&gt;'''Father'''&lt;td&gt;[[Henry, Count of Portugal]] ([[1066]]-[[1093]])
97729 &lt;tr valign=top&gt;&lt;td&gt;'''Mother'''&lt;td&gt;[[Teresa of Leon]] ([[1080]]-[[1130]])
97730 &lt;tr valign=top&gt;&lt;td&gt;'''Issue'''&lt;td&gt;[[Urraca of Portugal]] ([[1151]]-[[1188]])&lt;br&gt;[[Sancho I of Portugal]] ([[1154]]-[[1212]])&lt;br&gt;[[Teresa of Portugal (1157-1218)|Teresa of Portugal]] ([[1157]]-[[1218]])&lt;br&gt;[[Mafalda of Portugal (1148-1160)|Mafalda of Portugal]] (d. young)&lt;br&gt;Henrique (d. young)&lt;br&gt;JoÃŖo (d. young)&lt;br&gt;Sancha (d. young)&lt;br&gt;[[Urraca Afonso of Aveiro|Urraca Afonso]] (natural daughter)&lt;br&gt;[[Fernando Afonso, Constable of Portugal|Fernando Afonso]] (natural son)&lt;br&gt;[[Pedro Afonso, Grand-Master of the Order of Aviz|Pedro Afonso]] (natural son)&lt;br&gt;[[Afonso of Portugal, Master of the Order of Saint John of Rhodes|Afonso of Portugal]] (natural son)&lt;br&gt;[[Teresa Afonso]] (natural daughter)&lt;tr valign=top&gt;&lt;td&gt;'''Date of Birth'''&lt;td&gt;[[July 25]], [[1109]]
97731 &lt;tr valign=top&gt;&lt;td&gt;'''Place of Birth'''&lt;td&gt;[[GuimarÃŖes]]
97732 &lt;tr valign=top&gt;&lt;td&gt;'''Date of Death'''&lt;td&gt;[[December 6]], [[1185]]
97733 &lt;tr valign=top&gt;&lt;td&gt;'''Place of Death'''&lt;td&gt;[[Coimbra]]&lt;/td&gt;&lt;/tr&gt;
97734 &lt;tr valign=top&gt;&lt;td&gt;'''Place of Burial'''&lt;td&gt;[[Santa Cruz Monastery]] (Coimbra)
97735 &lt;/table&gt;
97736
97737 '''Afonso I of Portugal''' ([[English language|English]] ''Alphonzo'' or ''Alphonse''), more commonly known as '''Afonso Henriques''' ([[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su e&amp;#771;.'ʁi.kɨʃ}}/), or also ''Affonso'' (Archaic Portuguese), ''Alfonso'' or ''Alphonso'' ([[Portuguese-Galician languages|Portuguese-Galician]]) or ''Alphonsus'' ([[Latin language|Latin]] version), ([[GuimarÃŖes]], [[1109]]?, traditionally [[July 25]] &amp;ndash; [[Coimbra]], [[1185]], [[December 6]]), also known as ''the Conqueror'' ([[Portuguese language|Port.]] ''o Conquistador''), was the first [[List of Portuguese monarchs|King of Portugal]], declaring his independence from [[Kingdom of LeÃŗn|LeÃŗn]].
97738
97739 ==Life==
97740 Afonso I was the son of [[Henry, Count of Portugal|Henry of Burgundy, Count of Portugal]] and [[Teresa of LeÃŗn]], the illegitimate daughter of King [[Alfonso VI of Castile|Alfonso VI of Castile and LeÃŗn]]. He was proclaimed King on [[July 26]] [[1139]], immediately after the [[Battle of Ourique]], and died on [[December 6]] [[1185]] in [[Coimbra]].
97741
97742 At the end of the [[11th century]], the [[Iberian Peninsula]] [[Politics|political]] agenda was mostly concerned with the ''[[Reconquista]]'', the driving out of the [[Muslim]] successor-states to the [[Caliph]]ate of [[CÃŗrdoba, Spain|CÃŗrdoba]] after its collapse. With European [[military]] [[Aristocracy|aristocracies]] focused on the [[Crusades]], Alfonso VI called for the help of the [[France|French]] [[nobility]] to deal with the [[Moors]]. In exchange, he was to give the hands of his daughters in wedlock to the leaders of the expedition and bestow royal privileges to the others. Thus, the royal heiress [[Urraca of Castile]] wedded [[Raymond of Burgundy]], younger son of the [[County of Burgundy|Count of Burgundy]], and her half-sister, princess [[Teresa of LeÃŗn]], wedded his cousin, another French crusader, [[Henry of Burgundy]], younger brother of the [[Duchy of Burgundy|Duke of Burgundy]], whose mother was daughter of the [[Count of Barcelona]]. Henry was made Count of Portugal, a burdensome [[earldom]] south of [[Galicia (Spain)|Galicia]], where Moorish incursions and attacks were to be expected. With his wife Teresa as co-ruler of Portugal, Henry withstood the ordeal and held the lands for his father-in-law.
97743
97744 From this wedlock several sons were born, but only one, '''Afonso Henriques''' (meaning &quot;Afonso son of Henry&quot;) thrived. The boy followed his father as '''Count of Portugal''' in [[1112]], under the tutelage of his mother. The relations between Teresa and her son Afonso proved difficult. Only eleven years old, Afonso already had his own political ideas, greatly different from his mother's. In [[1120]], the young [[prince]] took the side of the [[archbishop]] of [[Braga]], a political foe of Teresa, and both were exiled by her orders. Afonso spent the next years away from his own [[county]], under the watch of the bishop. In [[1122]] Afonso became fourteen, the adult age in the [[12th century]]. He made himself a [[knight]] on his own account in the [[Cathedral]] of [[Zamora]], raised an [[army]], and proceeded to take control of his lands. Near [[GuimarÃŖes]], at the [[Battle of SÃŖo Mamede]] ([[1128]]) he overcame the troops under his mother's lover and ally Count [[Fernando Peres de Trava]] of [[Galicia (Spain)|Galicia]], making her his [[prison]]er and exiling her forever to a [[monastery]] in [[LeÃŗn, LeÃŗn|LeÃŗn]]. Thus the possibility of incorporating Portugal into a Kingdom of Galicia was eliminated and Afonso become sole ruler ('''Dux of Portugal''') after demands for independence from the county's people, church and nobles. He also vanquished [[Alfonso VII of Castile|Alfonso VII of Castile and LeÃŗn]], another of his mother's allies, and thus freed the county from political dependence on the crown of [[Kingdom of LeÃŗn|LeÃŗn]] and [[Castile]]. On [[April 6]], [[1129]], Afonso Henriques dictated the writ in which he proclaimed himself '''Prince of Portugal'''.
97745
97746 {{House of Burgundy}}
97747
97748 Afonso then turned his arms against the everlasting problem of the [[Moors]] in the south. His campaigns were successful and, on [[July 26]] [[1139]], he obtained an overwhelming victory in the [[Battle of Ourique]], and straight after was unanimously proclaimed '''King of Portugal''' by his [[soldier]]s. This meant that Portugal was no longer a vassal county of LeÃŗn-Castile, but an independent kingdom in its own right. Next, he assembled the first assembly of the estates-general at [[Lamego]], where he was given the [[Crown (headgear)|crown]] from the archbishop of [[Braga]], to confirm the independence.
97749
97750 Independence, however, was not a thing a land could choose on its own. Portugal still had to be acknowledged by the neighbouring lands and, most importantly, by the [[Roman Catholic Church]] and the [[Pope]]. Afonso wedded [[Maud of Savoy|Mafalda of Savoy]], daughter of Count [[Amadeo III of Savoy]], and sent [[Ambassador|ambassador]]s to [[Rome]] to negotiate with the [[Pope]]. In Portugal, he built several monasteries and [[convent]]s and bestowed important privileges to [[religious order]]s. In [[1143]], he wrote to [[Pope Innocent II]] to declare himself and the kingdom servants of the Church, swearing to pursue driving the Moors out of the [[Iberian Peninsula|Iberian]] peninsula. Bypassing any king of Castile or LeÃŗn, Afonso declared himself the direct [[liege]]man of the [[Papacy]]. Thus, Afonso continued to distinguish himself by his exploits against the Moors, from whom he wrested [[SantarÊm, Portugal|SantarÊm]] and [[Lisbon]] in [[1147]] (see [[Siege of Lisbon]]). He also conquered an important part of the land south of the [[Tagus]] River, although this was lost again to the Moors in the following years.
97751
97752 Meanwhile, King Alfonso VII of Castile (Afonso's cousin) regarded the independent ruler of Portugal as nothing but a rebel. Conflict between the two was constant and bitter in the following years. Afonso became involved in a [[war]], taking the side of the [[Aragon]]ese king, an enemy of Castile. To ensure the alliance, his son [[Sancho I of Portugal|Sancho]] was engaged to [[Dulce Berenguer]], sister of the [[Kings of Aragon|Count of Barcelona]], and princess of Aragon. Finally, in [[1143]], the [[Treaty of Zamora]] established peace between the cousins and the recognition by the Kingdom of Castile and LeÃŗn that Portugal was an independent kingdom.
97753
97754 [[Image:DAfonsoHenriques.jpg|thumb|left|Statue of Afonso Henriques in [[GuimarÃŖes]].]]
97755 In [[1169]], Afonso was disabled in an engagement near [[Badajoz]] by a fall from his [[horse]], and made prisoner by the soldiers of the king of LeÃŗn. Portugal was obliged to surrender as his [[ransom]] almost all the conquests Afonso had made in Galicia in the previous years.
97756
97757 In [[1179]] the privileges and favours given to the Roman Catholic Church were compensated. In the [[papal bull]] ''Manifestis Probatum'', [[Pope Alexander III]] acknowledged Afonso as King and Portugal as an independent land with the right to conquer lands from the Moors. With this papal blessing, Portugal was at last secured as a country and safe from any Castilian attempts of annexation.
97758
97759 In [[1184]], in spite of his great age, he had still sufficient energy to relieve his son Sancho, who was besieged in [[SantarÊm, Portugal|SantarÊm]] by the Moors. He died shortly after, in [[1185]].
97760
97761 The Portuguese revere him as a hero, both on account of his personal character and as the founder of their [[nation]].
97762
97763 ==Afonso's descendants==
97764 Afonso married in 1146 Mafalda or [[Maud of Savoy]] ([[1125]]-[[1158]]), daughter of Amadeo III, Count of Savoy, and [[Mafalda of Albon]].
97765
97766 {| border=1 style=&quot;border-collapse: collapse;&quot;
97767 |- bgcolor=cccccc
97768 !Name!!Birth!!Death!!Notes
97769 |-
97770 |colspan=4|'''By [[Maud of Savoy]]''' ([[1125]]-[[1158]]; married in [[1146]])
97771 |-
97772 |Henrique||[[March 5]] [[1147]]||[[1147]]||&amp;nbsp;
97773 |-
97774 |Mafalda||[[1148]]||c. [[1160]]||&amp;nbsp;
97775 |-
97776 |[[Urraca of Portugal|Urraca]]||c. [[1151]]||[[1188]]||married to King [[Ferdinand II of LeÃŗn]]
97777 |-
97778 |[[Sancho I of Portugal|Sancho]]||[[1154]]||[[March 26]] [[1212]]||Succeeded him as 2nd [[List of Portuguese monarchs|King of Portugal]]
97779 |-
97780 |[[Teresa of Portugal (1157-1218)|Teresa]]||[[1157]]||[[1218]]||married to [[Philip I of Flanders]] and after his death to [[Eudes III of Burgundy]]
97781 |-
97782 |JoÃŖo||[[1160]]||[[1160]]||&amp;nbsp;
97783 |-
97784 |Sancha||[[1160]]||[[1160]]||&amp;nbsp;
97785 |-
97786 |colspan=4|'''By [[Elvira GÃĄlter]]'''
97787 |-
97788 |[[Urraca Afonso, Lady of Aveiro|Urraca Afonso]]||c. [[1130]]||?||Natural daughter. Married Pedro Afonso Viegas. Lady of [[Aveiro]].
97789 |-
97790 |colspan=4|'''Other natural offspring'''
97791 |-
97792 |[[Fernando Afonso, Constable of Portugal|Fernando Afonso]]||c. [[1166]]||c. [[1172]]||High-General of the Kingdom ([[Constable of Portugal]])
97793 |-
97794 |[[Pedro Afonso, Master of Aviz|Pedro Afonso]]||c [[1130]]||[[1169]]||A.k.a. Pedro Henriques. 1st Grand-Master of the [[Order of Aviz]].
97795 |-
97796 |[[Afonso of Portugal, Master of the Order of Saint John of Rhodes|Afonso]]||c. [[1135]]||[[1207]]||11th Master of the [[Order of Saint John of Rhodes]].
97797 |-
97798 |[[Teresa Afonso]]||c. [[1135]]||?||Married Fernando Martins Bravo.
97799 |}
97800
97801 ==See also==
97802 *[[Portugal]]
97803 *[[History of Portugal]]
97804 *[[Kings of Portugal family tree]]
97805 *[[Timeline of Portuguese history]]
97806 **[[Timeline of Portuguese history (Second County)|Second County of Portugal (11th to 12th Century)]]
97807 **[[Timeline of Portuguese history (First Dynasty)|First Dynasty: Burgundy (12th to 14th Century)]]
97808
97809 {{s-start}}
97810 {{s-hou|[[House of Burgundy]]|25 July|1109|6 December|1185|[[House of Capet]]}}
97811 {{s-bef|before=[[Henry, Count of Portugal|Henrique]]}}
97812 {{s-ttl|title=[[List of Portuguese monarchs|Count of Portugal]]|years=[[1112]]&amp;ndash;[[1139]]|regent1=[[Theresa, Countess of Portugal|Theresa]]|years1=[[1112]]&amp;ndash;[[1126]]}}
97813 {{s-non|reason=Independence&lt;br/&gt;from [[Kingdom of LeÃŗn|LeÃŗn]]&amp;ndash;[[Castile]]}}
97814 |-
97815 {{s-new|reason=Independence&lt;br/&gt;from [[Kingdom of LeÃŗn|LeÃŗn]]&amp;ndash;[[Castile]]}}
97816 {{s-ttl|title=[[List of Portuguese monarchs|Kings of Portugal]]|years=[[1139]]&amp;ndash;[[1185]]}}
97817 {{s-aft|after=[[Sancho I of Portugal|Sancho I]]}}
97818 {{end}}
97819
97820 ==References==
97821 *{{1911}}
97822
97823 [[Category:Portuguese monarchs]]
97824 [[Category:1109 births]]
97825 [[Category:1185 deaths]]
97826
97827 [[bg:АŅ„ĐžĐŊŅŅƒ I (ПоŅ€Ņ‚ŅƒĐŗĐ°ĐģиŅ)]]
97828 [[ca:Alfons I de Portugal]]
97829 [[de:Alfons I. (Portugal)]]
97830 [[eo:Afonso Henriques]]
97831 [[es:Alfonso I de Portugal]]
97832 [[fr:Alphonse Ier de Portugal]]
97833 [[gl:D. Alfonso Henriques]]
97834 [[ia:Afonso Henriques]]
97835 [[it:Don Afonso Henriques]]
97836 [[ja:ã‚ĸフりãƒŗã‚Ŋ1世 (ポãƒĢトã‚ŦãƒĢįŽ‹)]]
97837 [[nl:Alfons I van Portugal]]
97838 [[pl:Alfons I Zdobywca]]
97839 [[pt:Afonso I de Portugal]]
97840 [[ru:АŅ„ĐžĐŊŅŅƒ I ЗавоĐĩваŅ‚ĐĩĐģŅŒ]]
97841 [[sv:Alfons VI av Portugal]]
97842 [[uk:АŅ„ĐžĐŊŅĐž I (ĐēĐžŅ€ĐžĐģŅŒ ПоŅ€Ņ‚ŅƒĐŗĐ°ĐģŅ–Ņ—)]]
97843 [[zh:é˜ŋæ–šį´ĸ一世 (葡萄į‰™)]]</text>
97844 </revision>
97845 </page>
97846 <page>
97847 <title>Afonso II of Portugal</title>
97848 <id>1658</id>
97849 <revision>
97850 <id>41852524</id>
97851 <timestamp>2006-03-02T03:50:57Z</timestamp>
97852 <contributor>
97853 <ip>213.13.246.244</ip>
97854 </contributor>
97855 <text xml:space="preserve">{{House of Burgundy}}
97856
97857 [[Image:AfonsoII-P.jpg|left|Afonso II of Portugal]]
97858
97859 '''Afonso II of Portugal''' ([[Portuguese language|Portuguese]] [[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su}}/; [[English language|English]] ''Alphonzo''), or ''Affonso'' (Archaic Portuguese), ''Alfonso'' or ''Alphonso'' ([[Portuguese-Galician languages|Portuguese-Galician]]) or ''Alphonsus'' ([[Latin language|Latin]] version), known as ''the Fat'' ([[Portuguese language|Port.]] ''o Gordo''), third [[List of Portuguese monarchs|king of Portugal]], was born in [[Coimbra]] on [[April 23]] [[1185]] and died on [[March 25]] [[1223]] in the same city. He was the second but eldest surviving son of [[Sancho I of Portugal]] by his wife, Dulce of Barcelona, princess of Aragon. Afonso succeeded his father in [[1212]].
97860
97861 As a king, Afonso II set a different approach of government. Hitherto, Sancho I his father and [[Afonso I of Portugal|Afonso I]] his grandfather, were mostly concerned with military issues either against the neighbouring [[Castile]] or against the [[Moors]] in the south. Afonso did not pursue territory enlargement policies and managed to insure peace with Castile during his reign. Despite this, some towns, like [[AlcÃĄcer do Sal]] in [[1217]], were conquered from the Moors by the particular initiative of noblemen. This does not mean that he was a weak or somehow cowardly man. The first years of his reign were marked instead by internal disturbances between Afonso and his brothers and sisters. The king managed to keep security within Portuguese borders only by outlawing and exiling his kin.
97862
97863 Since military issues were not a government priority, Afonso established the state's administration and centralized power on himself. He designed the first set of Portuguese written laws. These were mainly concerned with [[private property]], civil [[justice]], and [[minting]]. Afonso also sent ambassadors to [[European]] kingdoms outside the [[Iberian Peninsula]] and began amiable [[trade|commercial]] relations with most of them.
97864
97865 Other reforms included the always delicate matters with the pope. In order to get the independence of Portugal recognized by the popes, his grandfather, Afonso I, had to legislate an enormous amount of privileges to the Church. These eventually created a state within the state. With Portugal's position as a country firmly established, Afonso II endeavoured to weaken the power of the [[clergy]] and to apply a portion of the enormous revenues of the [[Catholic church]] to purposes of national utility. These actions led to a serious diplomatic conflict between the pope and Portugal. After being [[excommunicated]] for his audacities by [[Pope Honorius III]], Afonso II promised to make amends to the church, but he died in [[1223]] before making any serious attempts to do so.
97866
97867 ===Afonso's descendents===
97868
97869 Afonso married [[Urraca, princess of Castile]], daughter of [[Alfonso VIII of Castile|Alfonso VIII]], [[King of Castile]], and [[Leonora of Aquitaine]], in [[1208]].
97870
97871 {| border=1 style=&quot;border-collapse: collapse;&quot;
97872 |- bgcolor=cccccc
97873 !Name!!Birth!!Death!!Notes
97874 |-
97875 |colspan=4|'''By [[Urraca, princess of Castile|Urraca of Castile]]''' ([[1186]]-[[1220]]; married in [[1208]])
97876 |-
97877 |[[Sancho II of Portugal|Sancho II]]||[[September 8]] [[1207]]||[[January 4]] [[1248]]||Succeeded him as 4th [[King of Portugal]]
97878 |-
97879 |[[Afonso III of Portugal|Afonso III]]||[[May 5]] [[1210]]||[[February 16]] [[1279]]||Succeeded his brother Sancho as 5th [[King of Portugal]]
97880 |-
97881 |[[Leonor of Portugal (1211-1231)|Eleanor]]||[[1211]]||[[1231]]||Married King [[Valdemar III of Denmark]]
97882 |-
97883 |[[Ferdinand, Prince of Portugal (1217-1246)|Ferdinand]]||a. [[1217]]||c. [[1243]]||Lord of [[Serpa]]
97884 |-
97885 |Vicente||[[1219]]||[[1219]]||&amp;nbsp;
97886 |-
97887 |colspan=4|'''Natural offspring'''
97888 |-
97889 |[[JoÃŖo Afonso]]||?||[[1234]]||Natural son
97890 |-
97891 |[[Pedro Afonso]]||c. [[1210]]||?||Natural son
97892 |}
97893
97894
97895 ===See also===
97896 [[Kings of Portugal family tree]]
97897
97898 ==References==
97899 *{{1911}}
97900
97901 {{s-start}}
97902 {{s-bef|before=[[Sancho I of Portugal|Sancho I]]}}
97903 {{s-ttl|title=[[List of Portuguese monarchs|King of Portugal]]|years=[[1211]]&amp;ndash;[[1233]]}}
97904 {{s-aft|after=[[Sancho II of Portugal|Sancho II]]}}
97905
97906 [[Category:1185 births]]
97907 [[Category:1233 deaths]]
97908 [[Category:Portuguese monarchs]]
97909
97910 [[ca:Alfons II de Portugal]]
97911 [[de:Alfons II. (Portugal)]]
97912 [[es:Alfonso II de Portugal]]
97913 [[fr:Alphonse II de Portugal]]
97914 [[pl:Alfons II (krÃŗl Portugalii)]]
97915 [[pt:Afonso II de Portugal]]
97916 [[ru:АŅ„ĐžĐŊŅŅƒ II]]
97917 [[zh:é˜ŋæ–šį´ĸäēŒä¸– (葡萄į‰™)]]</text>
97918 </revision>
97919 </page>
97920 <page>
97921 <title>Afonso III of Portugal</title>
97922 <id>1659</id>
97923 <revision>
97924 <id>41657943</id>
97925 <timestamp>2006-02-28T21:21:44Z</timestamp>
97926 <contributor>
97927 <ip>72.224.95.121</ip>
97928 </contributor>
97929 <text xml:space="preserve">{{House of Burgundy}}
97930
97931 '''Afonso III of Portugal''' ([[Portuguese language|Portuguese]] [[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su}}/; [[English language|English]] ''Alphonzo''), or ''Affonso'' (Archaic Portuguese), ''Alfonso'' or ''Alphonso'' ([[Portuguese-Galician languages|Portuguese-Galician]]) or ''Alphonsus'' ([[Latin language|Latin]]), the ''Bolognian'' ([[Portuguese language|Port.]] ''o BolonhÃĒs'') or the ''Brave'' ([[Portuguese language|Port.]] ''o Bravo''), the fifth [[List of Portuguese monarchs|king of Portugal]] ([[May 5]] [[1210]] in [[Coimbra]] &amp;ndash; [[February 16]] [[1279]] in [[Alcobaça]], [[Coimbra]] or [[Lisbon]]). He was the second son of King [[Afonso II of Portugal]] and his wife, [[Urraca of Castile]]; he succeeded his brother, King [[Sancho II of Portugal]] in [[1247]].
97932
97933 {| ALIGN=&quot;left&quot;
97934 |-
97935 | [[Image:AfonsoIII-P.jpg]]
97936 |}
97937
97938 As the second son of King Afonso II of Portugal, Afonso was not expected to inherit the throne, which was destined to go to his brother Sancho. He lived mostly in [[France]], were he married Matilda, the heiress of [[Boulogne]], in [[1238]], thereby becoming [[Count of Boulogne]]. In [[1246]], conflicts between his brother, the king, and the church became unbearable. [[Pope Innocent IV]] then ordered Sancho II to be removed from the throne and be replaced by the Count of Boulogne. Afonso, of course, did not refuse the papal order and marched to Portugal. Since Sancho was not a popular king, the order was not hard to enforce; he was exiled to [[Castile]] and Afonso III became king in [[1247]]. To ascend the throne, he abdicated from the county of Boulogne and later ([[1253]]) divorced Matilda. In 1253 he married Brites (Beatrix), an illegitimate daughter of King [[Alfonso X of Castile]]. Determined not to commit the same mistakes as his brother, Afonso III paid special attention to what the middle class composed of merchants and small land owners had to say. In [[1254]], in the city of [[Leiria]], he held the first session of the ''[[Cortes Generales|Cortes]]'', a general assembly, comprised of the nobility, the middle class and representatives of all [[municipalities]]. He also made laws intended to restrain the upper classes from abusing the least favoured part of the population. Remembered as a notable administrator, Afonso III founded several towns, granted the title of city to many others and reorganized public administration.
97939
97940 [[Image:EstatuaDAfonsoIIIFaro.JPG|thumb|left|Statue of Afonso III in [[Faro, Portugal|Faro]].]]
97941
97942 Secure on the throne, Afonso III then proceeded to make war with the [[Muslim]] communities that still thrived in the south. In his reign the [[Algarve]] became part of the kingdom following the capture of [[Faro, Portugal|Faro]]&amp;mdash;Portugal thus becoming the first Iberian kingdom to complete its ''[[Reconquista]]''. Following his success against the Moors, Afonso III had to deal with a political situation arising from the borders with Castile. The neighbouring kingdom considered that the newly acquired lands of Algarve should be Castilian, not Portuguese, which led to a series of wars between the countries. Finally, in [[1267]], a treaty was signed in [[Badajoz]], determining that the southern border between Castile and Portugal should be the River [[Guadiana]], as it is today.
97943
97944 ===Afonso's marriages and descendants===
97945 Afonso's first wife was [[Matilda II of Boulogne]], daughter of [[Renaud, Count of Dammartin]], and [[Ida of Boulogne]]. She had two sons but both died young (Roberto and an unnamed one). He divorced Matilda in [[1253]] and in the same year married [[Beatrix of Castile]], illegitimate daughter of [[Alfonso X of Castile|Alfonso X]], [[King of Castile]], and [[Maria de Guzman]].
97946
97947 {| border=1 style=&quot;border-collapse: collapse;&quot;
97948 |- bgcolor=cccccc
97949 !Name!!Birth!!Death!!Notes
97950 |-
97951 |colspan=4|'''By [[Matilda II of Boulogne]]''' (c. [[1202]]-[[1262]]; married in [[1216]])
97952 |-
97953 |Robert||[[1239]]||[[1239]]|| &amp;nbsp;
97954 |-
97955 |colspan=4|'''By [[Beatrix of Castile]]''' ([[1242]]-[[1303]]; married in [[1253]])
97956 |-
97957 |[[Branca of Portugal|Branca]]||[[February 25]] [[1259]]||[[April 17]] [[1321]]||Abbess of the Convent of Huelgas
97958 |-
97959 |Ferdinand||[[1260]]||[[1262]]||&amp;nbsp;
97960 |-
97961 |[[Dinis of Portugal|Denis]]||[[October 9]] [[1261]]||[[January 7]] [[1325]]||Succeeded him as 6th [[King of Portugal]]; Married Princess Isabel of Aragon
97962 |-
97963 |[[Afonso, Lord of Portalegre|Afonso]]||[[February 8]] [[1263]]||[[November 2]] [[1312]]||Lord of [[Portalegre]]. Married to Princess Violante Manoel of Castile (daughter of [[Juan Manuel of Castile]])
97964 |-
97965 |[[Sancha of Portugal (1264-1279)|Sancha]]||[[February 2]] [[1264]]||c. [[1302]]||&amp;nbsp;
97966 |-
97967 |[[Maria of Portugal (1264-1304)|Maria]]||[[November 21]] [[1264]]||[[June 6]] [[1304]]||Nun at the [[Santa Cruz Monastery|Convent of Saint John]] in [[Coimbra]]
97968 |-
97969 |Constance||[[1266]]||[[1271]]||&amp;nbsp;
97970 |-
97971 |Vincent||[[1268]]||[[1271]]||&amp;nbsp;
97972 |-
97973 |colspan=4|'''By [[Madragana|Madragana (Mor Afonso)]]''' (c. [[1230]]-?)
97974 |-
97975 |[[Martim Chichorro|Martim Afonso Chichorro]]||c. [[1250]]||a. [[1313]]||Natural son; Married InÃĒs Lourenço de Valadres.
97976 |-
97977 |[[Urraca Afonso]]||c. [[1260]]||?||Natural daughter; Married twice: 1st to D. Pedro Anes de Riba Vizela, 2nd to JoÃŖo Mendes de Briteiros
97978 |-
97979 |colspan=4|'''By [[Maria Peres de Enxara]]''' (?-?)
97980 |-
97981 |[[Afonso Dinis]]||c. [[1260]]||a. [[1310]]||Natural son; Married to D. Maria Pais Ribeira, Lady of the House of Sousa.
97982 |-
97983 |colspan=4|'''Other natural offspring'''
97984 |-
97985 |[[Leonor Afonso, Countess of Neiva|Leonor Afonso]]||c. [[1250]]||[[1291]]||Natural daughter. Married twice: 1st to D. EstevÃŖo Anes de Sousa (without issue), 2nd to D. Gonçalo Garcia de Sousa, Count of [[Neiva]] (without issue).
97986 |-
97987 |[[Gil Afonso]]||[[1250]]||[[December 31]] [[1346]]||Natural son; Gentleman of the Order do Hospital.
97988 |-
97989 |[[Fernando Afonso]]||?||?||Natural son; Gentleman of the Order do Hospital.
97990 |-
97991 |[[Rodrigo Afonso]]||[[1258]]||about [[May 12]] [[1272]]||Natural son; Prior of the city of [[Santarem]].
97992 |-
97993 |[[Leonor Afonso (nun)]]||?||[[1259]]||Natural daughter; Nun in the Monastery of Santa Clara of [[Santarem]].
97994 |-
97995 |[[Urraca Afonso]]||[[1250]]||[[November 4]] [[1281]]||Natural daughter; Nun in the Monastery of Lorvao.
97996 |-
97997 |[[Henrique Afonso]]||?||?||Natural son; Married to InÃĒs (last name unknown).
97998 |}
97999
98000 ===See also===
98001 [[Kings of Portugal family tree]]
98002
98003 {{s-start}}
98004 {{s-bef|before=[[Sancho II of Portugal|Sancho II]]}}
98005 {{s-ttl|title=[[List of Portuguese monarchs|King of Portugal]]|years=[[1248]]&amp;ndash;[[1279]]}}
98006 {{s-aft|after=[[Denis of Portugal|Denis]]}}
98007
98008 ==References==
98009 *{{1911}}
98010
98011 [[Category:1210 births]]
98012 [[Category:1279 deaths]]
98013 [[Category:Portuguese monarchs]]
98014
98015 [[ca:Alfons III de Portugal]]
98016 [[de:Alfons III. (Portugal)]]
98017 [[es:Alfonso III de Portugal]]
98018 [[fr:Alphonse III de Portugal]]
98019 [[pl:Alfons III (krÃŗl Portugalii)]]
98020 [[pt:Afonso III de Portugal]]
98021 [[ru:АŅ„ĐžĐŊŅŅƒ III]]
98022 [[zh:é˜ŋæ–šį´ĸ三世 (葡萄į‰™)]]</text>
98023 </revision>
98024 </page>
98025 <page>
98026 <title>Afonso IV of Portugal</title>
98027 <id>1660</id>
98028 <revision>
98029 <id>41696316</id>
98030 <timestamp>2006-03-01T03:01:50Z</timestamp>
98031 <contributor>
98032 <username>Sparklegurl32</username>
98033 <id>132183</id>
98034 </contributor>
98035 <minor />
98036 <comment>Disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
98037 <text xml:space="preserve">{{House of Burgundy}}
98038
98039 '''Afonso IV of Portugal''' ([[Portuguese language|Portuguese]] [[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su}}/; [[English language|English]] ''Alphonzo''), or ''Affonso'' (Archaic Portuguese), ''Alfonso'' or ''Alphonso'' ([[Portuguese-Galician languages|Portuguese-Galician]]) or ''Alphonsus'' ([[Latin language|Latin]]), ([[February 8]] [[1291]] &amp;ndash; [[May 28]] [[1357]]), known as ''the Brave'' ([[Portuguese language|Port.]] ''o Bravo''), was the seventh [[List of Portuguese monarchs|king of Portugal]] from [[1325]] until his death. He was the only legitimate son of [[Dinis of Portugal]] by his wife [[Elizabeth of Portugal|Elizabeth]].
98040
98041 [[Image:AfonsoIV-P.jpg|left|Afonso IV of Portugal]]
98042
98043 Afonso, born in [[Lisbon]], was his father's only legitimate son and the rightful heir to the Portuguese throne. However, he was not, according to several sources, Dinis' favourite son; his half-brother, the illegitimate [[Afonso Sanches]], enjoyed full royal favour. From early in life, the notorious rivalry led to several outbreaks of [[civil war]]. On [[January 7]], [[1325]], Afonso's father died and he became king, taking full revenge on his brother. His rival was sentenced to [[exile]] in [[Castile]], and stripped of all the lands and [[fiefdom]]s donated by their common father. Afonso Sanches, however, did not sit still. From Castile, he orchestrated a series of attempts to usurp the crown for himself. After a few failed attempts at invasion, both brothers signed a peace treaty, arranged by the Queen Isabella.
98044
98045 In [[1309]], Afonso IV married princess Beatrice, daughter of King [[Sancho IV of Castile]] by his wife [[Maria de Molina]]. The first-born of this union, princess [[Maria of Portugal]], married King [[Alfonso XI of Castile]] in [[1328]], at the same time that Afonso IV's heir, Peter, was promised to another Castilian princess, [[Constance of Penafiel]]. These arrangements were imperiled by the ill will of Alfonso XI of Castile, who was, at the time, publicly mistreating his wife. Afonso IV was not happy to see his daughter abused, and started a war against Castile. Peace arrived four years later, with the intervention of princess Maria herself. A peace treaty was signed in [[Seville]] in [[1339]] and, in the next year, Portuguese troops played an important role in the victory of the [[Battle of Rio Salado]] over the Marinids [[Moors]] in October [[1340]].
98046
98047 The last part of Afonso IV's reign is marked not by open warfare against Castile, but by political intrigue. Civil war between King [[Peter I of Castile]] and his half-brother [[Henry of Trastamara]] led to the exile of many Castilian [[nobility|noble]]s to [[Portugal]]. These immigrants immediately created a faction among the Portuguese court, aiming at privileges and power that, somehow, could compensate what they lost at home. The faction grew in power, especially after [[Ines de Castro]], daughter of an important nobleman and maid of the [[Constance of Penafiel|Crown Princess Constance]], became the lover of her lady's husband: [[Peter I of Portugal|Peter]], the heir of Portugal. Afonso IV was displeased with his son's choice of lovers, and hoped that the relationship would be a futile one. Unfortunately for internal politics, it was not. Peter was openly in love with Ines, recognized all the children she bore, and, worst of all, favoured the Castilians that surrounded her. Moreover, after his wife's death in [[1349]], Peter refused the idea of marrying anyone other than Ines herself.
98048
98049 The situation became worse as the years passed and the aging Afonso lost control over his court. Peter's only male heir, future king [[Fernando of Portugal]], was a sickly child, while the illegitimate children sired with Ines thrived. Worried about his legitimate grandson's life, and the growing power of Castile within Portugal's borders, Afonso ordered the murder of [[Ines de Castro]] in [[1355]]. He expected his son to act reasonably, but the heir was not able to forgive him for the act. Enraged at the barbaric act, Peter put himself at the head of an army and devastated the country between the [[Douro]] and the [[Minho]] rivers before he was reconciled to his father in early [[1357]]. Afonso died almost immediately after, in Lisbon in May.
98050
98051 As king, Afonso IV is remembered as a soldier and a valiant general, hence the nickname ''the Brave''. But perhaps his most important contribution was the importance he gave to the Portuguese [[navy]]. Afonso IV granted public funding to raise a proper [[trade|commercial]] fleet and ordered the first maritime explorations. The [[Canary Islands]] (today a part of [[Spain]]) were discovered during his reign.
98052
98053 ===Afonso's descendants===
98054
98055 Afonso married Beatrice of [[Castile]] ([[1293]]-[[1359]]) in [[1309]], daughter of [[Sancho IV of Castile|Sancho IV]], [[King of Castile]], and Maria de Molia and had four sons and three daughters.
98056
98057 {| border=1 style=&quot;border-collapse: collapse;&quot;
98058 |- bgcolor=cccccc
98059 !Name!!Birth!!Death!!Notes
98060 |-
98061 |colspan=4|'''By [[Beatrice of Castile]]''' ([[1293]]-[[1359]]; married in [[1309]])
98062 |-
98063 |[[Maria of Portugal (1313-1357)|Princess Maria]]||[[1313]]||[[1357]]||Married to [[Alfonso XI of Castile]]
98064 |-
98065 |Prince Afonso||[[1315]]||[[1315]]||&amp;nbsp;
98066 |-
98067 |Prince Denis||[[1317]]||[[1318]]||&amp;nbsp;
98068 |-
98069 |[[Peter I of Portugal|Peter I]]||[[April 8]] [[1320]]||[[January 18]] [[1367]]||Succeeded him as 8th [[King of Portugal]]
98070 |-
98071 |Princess Isabel||[[December 21]] [[1324]]||[[July 11]] [[1326]]||&amp;nbsp;
98072 |-
98073 |Prince John||[[September 23]] [[1326]]||[[June 21]] [[1327]]||&amp;nbsp;
98074 |-
98075 |[[Leonor of Portugal (1328-1348)|Princess Leonor]]||[[1328]]||[[1348]]||Married to [[Peter IV of Aragon|Peter IV]], [[King of Aragon]]
98076 |-
98077 |colspan=4|'''Illegitimate offspring'''
98078 |-
98079 |[[Maria Afonso]]||[[1316]]||[[1384]]||Natural daughter
98080 |}
98081
98082 ===See also===
98083 [[Kings of Portugal family tree]]
98084
98085
98086 {{s-start}}
98087 {{s-bef|before=[[Denis of Portugal|Denis]]}}
98088 {{s-ttl|title=[[List of Portuguese monarchs|King of Portugal]]|years=[[1325]]&amp;ndash;[[1457]]}}
98089 {{s-aft|after=[[Peter I of Portugal|Peter I]]}}
98090
98091 {{1911}}
98092
98093 [[Category:Portuguese monarchs]]
98094 [[Category:1291 births|Afonso IV of Portugal]]
98095 [[Category:1357 deaths|Afonso IV of Portugal]]
98096
98097 [[de:Alfons IV. (Portugal)]]
98098 [[es:Alfonso IV de Portugal]]
98099 [[fr:Alphonse IV de Portugal]]
98100 [[pl:Alfons IV (krÃŗl Portugalii)]]
98101 [[pt:Afonso IV de Portugal]]
98102 [[zh:é˜ŋæ–šį´ĸ四世 (葡萄į‰™)]]</text>
98103 </revision>
98104 </page>
98105 <page>
98106 <title>Afonso V of Portugal</title>
98107 <id>1661</id>
98108 <revision>
98109 <id>37706610</id>
98110 <timestamp>2006-02-01T18:16:54Z</timestamp>
98111 <contributor>
98112 <username>Cyrruss</username>
98113 <id>755021</id>
98114 </contributor>
98115 <text xml:space="preserve">{{House of Aviz}}
98116
98117 [[Image:AfonsoV-P.jpg|left|Afonso V of Portugal]]
98118 '''Afonso V of Portugal''' ([[Portuguese language|Portuguese]] [[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su}}/; [[English language|English]] ''Alphonzo''), or ''Affonso'' (Archaic Portuguese), ''the African'' ([[Portuguese language|Port.]] ''o Africano''), 12th [[List of Portuguese monarchs|king of Portugal]] was born in [[Sintra]] in [[January 15]] [[1432]] and died in the same city in [[August 28]] [[1481]]. He was the oldest son of king [[Duarte of Portugal]] by his wife, princess Eleanor of [[Aragon]]. Afonso V was onlly six years old when he succeeded his father in [[1438]].
98119
98120 During his minority, Afonso V was placed under the regency of his mother, according to a late will of his father. As both a foreigner and a woman, the queen was not a popular choice for regent. Opposition rose and the queen's only ally was [[Afonso, Duke of Braganza|Afonso]], the illegitimate half brother of Duarte I and count of Barcelos. In the following year, the ''Cortes'' (assembly of the kingdom) decide to replace the queen with [[Pedro, Duke of Coimbra]], the young king's oldest uncle. His main policies were concerned with avoiding the development of great noble houses, kingdoms inside the kingdom, and concentrating power in the person of the king. The country prospered under his rule, but not peacefully, as his laws interfered with the ambition of powerful nobles. The count of Barcelos, a personal enemy of the duke of Coimbra (despite being half-brothers) eventually became the king's favourite uncle and began a constant struggle for power. In [[1442]], the king made Afonso the first [[Duke of Braganza]]. With this title and its lands, he became the most powerful man in Portugal and one of the richest men in Europe. To secure his position as regent, in [[1445]] Pedro married his daughter, Isabel of Coimbra, princess of Portugal, to Afonso V.
98121
98122 But in [[June 9]] [[1448]], when the king came of age, Pedro had to surrender his power to Afonso V. The years of conspiracy by the duke of Braganza finally came to a head. In [[September 15]] of the same year, Afonso V nullified all the laws and edicts approved under the regency. The situation became unstable and, in the following year, being led by what he afterwards discovered to be false representations, Afonso declared Pedro a rebel and defeated his army in the [[battle of Alfarrobeira]], in which both his uncle and father in law was killed. After this battle and the loss of one of Portugal's most remarkable princes, the duke of Braganza became the ''de facto'' ruler of the country.
98123
98124 Afonso V then turned his attentions to the North of Africa. In his grandfather's ([[John I of Portugal]]) reign, [[Ceuta]] had been conquered to the king of [[Morocco]], now the new king wanted to expand the conquests. The king's army conquered Alcacer Ceguer ([[1458]]), [[Tangiers]] (won and lost several times between [[1460]] and [[1464]]) and [[Arzila]] ([[1470]]). This achievements granted the king the nickname of ''African''. The king also supported the exploration of the [[Atlantic Ocean]] led by prince [[Henry the Navigator]] but, after Henry's death in [[1460]] he did nothing to pursue this course of action. Administratively, Afonso V was an absent king, since he did not pursue development of laws or commerce, preferring to stand with the legacy of his father and grandfather.
98125
98126 [[Image:Domafonsov.jpg|left|200px|Afonso V of Portugal, Conqueror of African strongholds]]
98127 When the campaigns in Africa were over, Afonso V found new grounds to battle in the Iberian Peninsula. In neighbouring [[Castile]], a huge scandal with political and dynastic implications was rising. King [[Henry IV of Castile]] was dying without heirs. From his two marriages, only a daughter, [[Joan, princess of Castile]] had been born. But her paternity was questioned, as rumour said the king was impotent and the queen, princess Joana of Portugal, had a notorious affair with a nobleman called BeltrÃĄn de La Cueva. The birth of princess Joan in [[1462]], openly called ''the Beltraneja'', caused the divorce of her parents. She was never consider legitimate and, now that the king was dying, no one took her as a serious contender for the crown. Her aunt, [[Isabella I of Castile]] that was due to inherit the crown. But Afonso V was keen to interfere with the succession in Castile. In [[1475]] he married his niece Joan, the Beltraneja, who he considered the legitimate heir to the crown. Since her adulteress mother was his own sister, Afonso V had not only ambition, but the family honour to protect. He proclaimed himself king of Castile and [[Kingdom of LeÃŗn|LeÃŗn]] and prepared to defend his wife's rights. But in the following year he was defeated at the [[battle of Toro]] by king [[Ferdinand II of Aragon]], the husband of Isabella of Castile. He went to [[France]] to obtain the assistance of [[Louis XI of France|Louis XI]], but finding himself deceived by the French monarch, he returned to Portugal in [[1477]] with very low spirits. Disillusioned and depressed he fell into a deep melancholy and abdicated to his son JoÃŖo. After this, he retired to a monastery in [[Sintra]] where he died in 1481. His death was mourned in the country, by the people who loved the king, and by the nobles who were starting to fear his successor.
98128
98129 Afonso was a direct descendant of [[Edward III of England]] through his son [[John of Gaunt]] and therefore was a direct descendant of [[William the Conqueror]], [[King of England]].
98130
98131 ===Afonso's marriages and descendants===
98132 Afonso married first to his cousin [[Isabel of Coimbra]] in [[1447]]. Isabel died in [[1455]] and Afonso married again (although not recognized by the Papacy) in [[1475]], this time to [[Joan, princess of Castile|Joan of Castile]] (known as &quot;la Beltraneja&quot;), daughter of [[Henry IV of Castile]] and [[Joan of Portugal]]. This marriage was an attempt to inherit the throne of Castile as Joan was the sole daughter of Henry IV. However this didn't happen as Afonso lost a short war with Castile.
98133
98134 {| border=1 style=&quot;border-collapse: collapse;&quot;
98135 |- bgcolor=cccccc
98136 !Name!!Birth!!Death!!Notes
98137 |-
98138 |colspan=4|'''By [[Isabel of Coimbra]]''' ([[1432]]-[[December 2]] [[1445]]; married on [[February 2]] [[1387]])
98139 |-
98140 |Prince John||[[January 29]] [[1451]]||[[1451]]||&amp;nbsp;
98141 |-
98142 |[[Saint Joan of Portugal|Princess Joan]]||[[February 6]] [[1452]]||[[May 12]] [[1490]]||Known as Saint Joan of Portugal or Saint Joan Princess. [[Canonized]] in [[1693]] by [[Pope Innocent XII]]
98143 |-
98144 |[[John II of Portugal|John II]]||[[March 3]] [[1455]]||[[October 25]] [[1495]]||Who succeeded him as 13th [[King of Portugal]].
98145 |-
98146 |colspan=4|'''[[Joan, princess of Castile|Joan of Castile]]''' ([[1462]]-[[1530]]; married on [[May 30]] [[1475]])
98147 |-
98148 |colspan=4|'''By [[Maria Álvares de Carvalho]]''' (?-?)
98149 |-
98150 |[[Álvaro Soares de Carvalho]]||c. [[1467]]||[[1557]]||Natural son.
98151 |}
98152
98153 '''See also:''' [[Kings of Portugal family tree]], [[Afonso de Albuquerque]] (contemporary Portuguese naval general)
98154
98155 {{s-start}}
98156 {{s-bef|before=[[Edward of Portugal|Edward]]}}
98157 {{s-ttl|title=[[List of Portuguese monarchs|King of Portugal]]|years=[[1438]]&amp;ndash;[[1481]]}}
98158 {{s-aft|after=[[John II of Portugal|John II]]}}
98159 {{end}}
98160
98161 [[Category:Portuguese monarchs]]
98162 [[Category:Knights of the Garter]]
98163 [[Category:1432 births|Afonso V of Portugal]]
98164 [[Category:1481 deaths|Afonso V of Portugal]]
98165
98166 [[bg:АŅ„ĐžĐŊŅŅƒ V (ПоŅ€Ņ‚ŅƒĐŗĐ°ĐģиŅ)]]
98167 [[de:Alfons V. (Portugal)]]
98168 [[es:Alfonso V de Portugal]]
98169 [[fr:Alphonse V de Portugal]]
98170 [[pl:Alfons V (krÃŗl Portugalii)]]
98171 [[pt:Afonso V de Portugal]]
98172 [[zh:é˜ŋæ–šį´ĸäē”世 (葡萄į‰™)]]</text>
98173 </revision>
98174 </page>
98175 <page>
98176 <title>Afonso VI of Portugal</title>
98177 <id>1662</id>
98178 <revision>
98179 <id>32913976</id>
98180 <timestamp>2005-12-27T21:13:35Z</timestamp>
98181 <contributor>
98182 <username>Airunp</username>
98183 <id>241848</id>
98184 </contributor>
98185 <minor />
98186 <comment>+es:</comment>
98187 <text xml:space="preserve">{|align=right
98188 |-
98189 |[[Image:Afonsoviportugal.jpg|left|150px]]
98190 |-
98191 |{{House of Braganza}}
98192 |}
98193 '''Afonso VI''' ([[Portuguese language|Portuguese]] [[Pronunciation|pron.]] [[International Phonetic Alphabet|IPA]] /{{IPA|ɐ.'fÃĩ.su}}/; [[English language|English]] ''Alphonzo'' or ''Alphonse''), or ''Affonso'' (Old Portuguese), ([[August 21]],[[1643]]-[[September 12]], [[1683]]) was the twenty-second (or twenty-third according to some historians) [[Kings of Portugal|King]] of [[Portugal]], the second of the [[House of Braganza]], known as '''the Victorious''' ([[Portuguese language|Port.]] ''o Vitorioso'').
98194
98195 He succeeded his father ([[JoÃŖo IV]]) in [[1656]] at the age of thirteen. His mother, ([[D. Luisa de GusmÃŖo]]) was named regent in his father's will. At the age of three, he had suffered an illness that left him paralyzed on the left side of his body, as well as leaving him mentally unstable. This, plus his disinterest in ruling left his mother as regent for six years, until 1662. Luisa oversaw military victories over the [[Spain|Spanish]] at [[Ameixial]] ([[June 8]] [[1663]]) and [[Montes Claros]] ([[June 17]] [[1665]]), culminating in the final Spanish recognition of Portugal's independence on [[February 13]] [[1668]]. Colonial affairs saw the [[Netherlands|Dutch]] conquest of [[Jaffnapatam]], Portugal's last colony in [[Sri Lanka]] ([[1658]]) and the cession of [[Bombay]] and [[Tangier]] to [[England]] ([[June 23]] [[1661]]) as dowry for Afonso's sister, [[Catherine of Braganza]] who had married King [[Charles II of England]]. English mediation in 1661 saw the [[Netherlands]] acknowledge Portuguese rule of [[Brazil]] in return for uncontested control of Sri Lanka.
98196 In [[1667]] In 1662, the [[Conde de Castelo-Melhor|Count of Castelo-Melhor]] saw an opportunity to gain power at court by befriending the king. He managed to convince the king that his mother was out to steal his throne and exile him from Portugal. As a result, Afonso took control of the throne and his mother sent to a convent.
98197
98198 [[Image:AfonsoVIPortugal.jpg|left|thumb|150px]]He was married to ([[Marie Françoise of Nemours]]), the daughter of the Duke of Savoy, in 1666, but this marriage would not last long. Marie, or Maria Francisca, as the Portuguese call her, filed for an annullment in 1667 based on the impotence of the king. The Church granted her the annulment, and she married Afonso's brother, D. Pedro, (future ([[D. Pedro II]])). That same year, D. Pedro managed to gain enough support to force the king to relinquish control of the government and he became the Prince Regent. Afonso was banished to the island of [[Terceira]] in the [[Azores]] for seven years, returning to Portugal shortly before he died at [[Sintra]] in [[1683]].
98199
98200 {{s-start}}
98201 {{s-bef|before=[[John IV of Portugal|John IV]]}}
98202 {{s-ttl|title=[[List of Portuguese monarchs|King of Portugal]]|years=[[1656]]&amp;ndash;[[1667]]}}
98203 {{s-aft|after=[[Peter II of Portugal|Peter II]]}}
98204 {{end}}
98205
98206 ==References==
98207 *{{1911}}
98208
98209 [[Category:1643 births|Afonso VI of Portugal]]
98210 [[Category:1675 deaths|Afonso VI of Portugal]]
98211 [[Category:Portuguese monarchs]]
98212 [[Category:Dukes of Braganza]]
98213
98214 [[de:Alfons VI. (Portugal)]]
98215 [[es:Alfonso VI de Portugal]]
98216 [[it:Alfonso VI di Portogallo]]
98217 [[ja:ã‚ĸフりãƒŗã‚Ŋ6世]]
98218 [[pl:Alfons VI (krÃŗl Portugalii)]]
98219 [[pt:Afonso VI de Portugal]]
98220 [[zh:é˜ŋæ–šį´ĸ六世 (葡萄į‰™)]]</text>
98221 </revision>
98222 </page>
98223 <page>
98224 <title>Alphonso I of Spain</title>
98225 <id>1663</id>
98226 <revision>
98227 <id>15900129</id>
98228 <timestamp>2005-04-13T06:47:33Z</timestamp>
98229 <contributor>
98230 <username>JonnyR</username>
98231 <id>234035</id>
98232 </contributor>
98233 <minor />
98234 <comment>{{disambig}}</comment>
98235 <text xml:space="preserve">There has not been a monarch known as '''Alphonso''' or '''Alfonso I of Spain''', the first king of that name of the unified [[Spain]] being [[Alfonso XII of Spain|Alfonso XII]] ([[1874]]-[[1885]]).
98236
98237 Several precursor kingdoms have had an '''Alfonso I'''. You may have been looking for:
98238 *[[Alfonso I of Asturias]] ([[739]]-[[757]]).
98239 *[[Alfonso I of Aragon]] and Navarre ([[1104]]-[[1134]]), known as ''the Battler''.
98240 *[[Alfonso II of Aragon|Alfons I, Count of Barcelona]] ([[1162]]-[[1196]]) known as ''el Cast (the Chaste)'' or ''el Trobador (the Troubadour)'', also Alfonso II of Aragon.
98241
98242 {{disambig}}</text>
98243 </revision>
98244 </page>
98245 <page>
98246 <title>Alfonso II of Asturias</title>
98247 <id>1664</id>
98248 <revision>
98249 <id>40292012</id>
98250 <timestamp>2006-02-19T16:01:57Z</timestamp>
98251 <contributor>
98252 <username>Yearofthedragon</username>
98253 <id>472</id>
98254 </contributor>
98255 <text xml:space="preserve">[[Image:Spain.Santiago.de.Compostela.Alfonso.II.jpg|thumb|Statue Alfonso II, Santiago de Compostela]]
98256 '''Alfonso II''' ([[759]]-[[842]], king [[791]]), [[Alfonso I of Asturias|Alfonso I]]'s reputed grandson, bears the name of &quot;the Chaste.&quot;
98257
98258 The [[Arab]] writers who speak of the [[Spain|Spanish]] kings of the north-west as the Beni-Altons, appear to recognize them as a royal stock derived from Alfonso I.
98259
98260 The events of his reign are in reality unknown. Poets of a later generation invented the story of the secret marriage of his sister Ximena with Sancho, count of Saldana, and the feats of their son [[Bernardo del Carpio]]. Bernardo is the hero of a ''[[cantar de gesta]]'' (''chanson de geste'') written to please the anarchical spirit of the nobles.
98261
98262 ==References==
98263 *{{1911}}
98264
98265 {{s-start}}
98266 {{s-bef|before=[[Bermudo I of Asturias]]}}
98267 {{s-ttl|title=[[List of Asturian monarchs|King of Asturias]]|years=[[791]]–[[842]]}}
98268 {{s-aft|after=[[Ramiro I of Asturias]]}}
98269 {{end}}
98270
98271 [[Category:Asturian monarchs]]
98272
98273 [[ast:Alfonso II]]
98274 [[ca:Alfons II d'AstÃēries]]
98275 [[de:Alfons II. (Asturien)]]
98276 [[es:Alfonso II de Asturias]]
98277 [[gl:Afonso II de Asturias]]
98278 [[nl:Alfons II van AsturiÃĢ]]
98279 [[pt:Afonso II das AstÃērias]]</text>
98280 </revision>
98281 </page>
98282 <page>
98283 <title>Alphonso III of Spain</title>
98284 <id>1665</id>
98285 <revision>
98286 <id>34237308</id>
98287 <timestamp>2006-01-07T13:26:14Z</timestamp>
98288 <contributor>
98289 <username>Wiki alf</username>
98290 <id>303874</id>
98291 </contributor>
98292 <comment>red Alfonso III of LeÃŗn</comment>
98293 <text xml:space="preserve">#Redirect [[Alfonso III of LeÃŗn]]</text>
98294 </revision>
98295 </page>
98296 <page>
98297 <title>Analytical Engine</title>
98298 <id>1666</id>
98299 <revision>
98300 <id>15900132</id>
98301 <timestamp>2002-02-25T15:51:15Z</timestamp>
98302 <contributor>
98303 <ip>Conversion script</ip>
98304 </contributor>
98305 <minor />
98306 <comment>Automated conversion</comment>
98307 <text xml:space="preserve">#REDIRECT [[Analytical engine]]
98308 </text>
98309 </revision>
98310 </page>
98311 <page>
98312 <title>Alphonso IV of Spain</title>
98313 <id>1667</id>
98314 <revision>
98315 <id>34237448</id>
98316 <timestamp>2006-01-07T13:28:24Z</timestamp>
98317 <contributor>
98318 <username>Wiki alf</username>
98319 <id>303874</id>
98320 </contributor>
98321 <comment>red Alfonso IV of LeÃŗn</comment>
98322 <text xml:space="preserve">#Redirect [[Alfonso IV of LeÃŗn]]</text>
98323 </revision>
98324 </page>
98325 <page>
98326 <title>Alfonso V of Spain</title>
98327 <id>1668</id>
98328 <revision>
98329 <id>23226170</id>
98330 <timestamp>2005-09-14T15:54:58Z</timestamp>
98331 <contributor>
98332 <username>John Kenney</username>
98333 <id>10512</id>
98334 </contributor>
98335 <text xml:space="preserve">#REDIRECT [[Alfonso V of LeÃŗn]]</text>
98336 </revision>
98337 </page>
98338 <page>
98339 <title>Amara Sinha</title>
98340 <id>1669</id>
98341 <revision>
98342 <id>40359160</id>
98343 <timestamp>2006-02-20T01:16:37Z</timestamp>
98344 <contributor>
98345 <username>Rich Farmbrough</username>
98346 <id>82835</id>
98347 </contributor>
98348 <minor />
98349 <comment>External links per MoS.</comment>
98350 <text xml:space="preserve">'''Amara Sinha''' (c. [[375|AD 375]]) was a [[Sanskrit]] [[grammar]]ian and [[poet]], of whose personal history hardly anything is known.
98351
98352 He is said to have been &quot;one of the nine gems that adorned the throne of [[Vikramaditya]],&quot; and according to the evidence of Hsuan Tsang, this is the [[Chandragupta Vikramaditya]] ([[Chandragupta II]]) that flourished about AD 375.
98353
98354 Amara seems to have been a [[Buddhist]]; and an early tradition asserts that his works, with one exception, were destroyed during the persecution carried on by the orthodox [[Brahmin]]s in the [[5th century]]. The exception is the celebrated ''Amara-Kosha'' (''Treasury of Amara''), a vocabulary of Sanskrit roots, in three books, and hence sometimes called ''Trikanda'' or the &quot;Tripartite.&quot;
98355
98356 It contains 10,000 words, and is arranged, like other works of its class, in metre, to aid the memory. The first chapter of the ''Kosha'' was printed at [[Rome]] in Tamil character in 1798. An edition of the entire work, with English notes and an index by [[Henry Thomas Colebrooke|HT Colebrooke]], appeared at [[Serampore]] in 1808. The Sanskrit text was printed at [[Calcutta]] in 1831. A French translation by ALA Loiseleur-Deslongchamps as published at Paris in 1839.
98357
98358
98359 ==References==
98360 *{{1911}}
98361
98362 ==External links==
98363
98364 *[http://sanskrit.gde.to/doc_z_misc_amarakosha.html Amarakosha Sanskrit text]</text>
98365 </revision>
98366 </page>
98367 <page>
98368 <title>Alphonso VI of Spain</title>
98369 <id>1670</id>
98370 <revision>
98371 <id>15900136</id>
98372 <timestamp>2002-12-29T07:31:48Z</timestamp>
98373 <contributor>
98374 <username>Montrealais</username>
98375 <id>3378</id>
98376 </contributor>
98377 <text xml:space="preserve">#REDIRECT [[Alfonso VI of Castile]]</text>
98378 </revision>
98379 </page>
98380 <page>
98381 <title>Alphonso VII of Spain</title>
98382 <id>1671</id>
98383 <revision>
98384 <id>15900137</id>
98385 <timestamp>2002-12-29T07:32:18Z</timestamp>
98386 <contributor>
98387 <username>Montrealais</username>
98388 <id>3378</id>
98389 </contributor>
98390 <minor />
98391 <text xml:space="preserve">#REDIRECT [[Alfonso VII of Castile]]</text>
98392 </revision>
98393 </page>
98394 <page>
98395 <title>Alphonso VIII of Spain</title>
98396 <id>1672</id>
98397 <revision>
98398 <id>15900138</id>
98399 <timestamp>2002-12-29T07:32:41Z</timestamp>
98400 <contributor>
98401 <username>Montrealais</username>
98402 <id>3378</id>
98403 </contributor>
98404 <text xml:space="preserve">#REDIRECT [[Alfonso VIII of Castile]]</text>
98405 </revision>
98406 </page>
98407 <page>
98408 <title>Alfonso IX of Spain</title>
98409 <id>1673</id>
98410 <revision>
98411 <id>15900139</id>
98412 <timestamp>2004-08-06T23:34:16Z</timestamp>
98413 <contributor>
98414 <username>Timwi</username>
98415 <id>13051</id>
98416 </contributor>
98417 <minor />
98418 <comment>fix double-redirect</comment>
98419 <text xml:space="preserve">#REDIRECT [[Alfonso IX of Leon]]</text>
98420 </revision>
98421 </page>
98422 <page>
98423 <title>Alphonso X of Spain</title>
98424 <id>1674</id>
98425 <revision>
98426 <id>15900140</id>
98427 <timestamp>2002-12-29T07:59:34Z</timestamp>
98428 <contributor>
98429 <username>Montrealais</username>
98430 <id>3378</id>
98431 </contributor>
98432 <text xml:space="preserve">#REDIRECT [[Alfonso X of Castile]]</text>
98433 </revision>
98434 </page>
98435 <page>
98436 <title>Alphonso XI of Spain</title>
98437 <id>1675</id>
98438 <revision>
98439 <id>15900141</id>
98440 <timestamp>2002-12-29T16:01:06Z</timestamp>
98441 <contributor>
98442 <username>Montrealais</username>
98443 <id>3378</id>
98444 </contributor>
98445 <text xml:space="preserve">#REDIRECT [[Alfonso XI of Castile]]</text>
98446 </revision>
98447 </page>
98448 <page>
98449 <title>Alfonso XII of Spain</title>
98450 <id>1676</id>
98451 <revision>
98452 <id>41447727</id>
98453 <timestamp>2006-02-27T10:59:39Z</timestamp>
98454 <contributor>
98455 <username>Dimadick</username>
98456 <id>24198</id>
98457 </contributor>
98458 <comment>Added link to his legal father</comment>
98459 <text xml:space="preserve">{|align=right
98460 |[[Image:Alfonso XII.png|thumb|'''Alfonso XII'''&lt;br&gt;&lt;small&gt;King of Spain&lt;/br&gt;&lt;/small&gt;]]
98461 |-
98462 |{{House of Bourbon}}
98463 |}
98464 '''Alfonso XII of Spain''' ([[November 28]], [[1857]]&amp;ndash;[[November 25]], [[1885]]), was king of [[Spain]], reigning from 1875 to 1885, after a ''[[coup d'Êtat]]'' restored the monarchy and ended the ephemeral [[First Spanish Republic]].
98465
98466 He was son of [[Isabella II of Spain]]. His biological paternity is uncertain, though his legal paternity is not: his mother was married to her homosexual cousin [[Francis of Asis de Bourbon]], Infante, and king Consort of Spain, eldest son of the duke of Cadiz, at the time of Alfonso's conception and birth. Alfonso's biological father is said to have been Enrique Puig y MoltÃŗ, a captain of the guard, or [[Francisco Serrano y Dominguez|General Serrano]].
98467
98468 When Queen Isabella and her husband were forced to leave Spain by the [[revolution of 1868]], Alfonso accompanied them to [[Paris]], and from there he was sent to the [[Theresianum]] at [[Vienna]] to continue his studies. On [[June 25]] [[1870]] he was recalled to Paris, where his mother abdicated in his favour, in the presence of a number of Spanish nobles who had followed the fortunes of the exiled queen. He assumed the title of Alfonso XII; for although no king of united Spain had previously borne the name, the Spanish monarchy was regarded as continuous with the more ancient monarchy, represented by the eleven kings of [[Kingdom of LeÃŗn|LeÃŗn]] and [[Castile]] also named [[Alfonso]]. Shortly afterwards he proceeded to the [[Royal Military Academy Sandhurst]] in the [[United Kingdom]], to continue his military studies, and while there he issued, on the [[December 1]], [[1874]], in reply to a birthday greeting from his followers, a manifesto proclaiming himself the sole representative of the Spanish monarchy. At the end of the year, when Marshal Serrano left [[Madrid]] to take command of the northern army in the [[Carlist War]], Brigadier [[Arsenio Martínez Campos|Martinez Campos]], who had long been working more or less openly for the king, carried off some battalions of the central army to [[Sagunto]], rallied to his own flag the troops sent against him, and entered [[Valencia]] in the king's name. Thereupon the president of the council resigned, and the power was transferred to the king's plenipotentiary and adviser, [[Canovas del Castillo]]. In the course of a few days the king arrived at Madrid, passing through [[Barcelona]] and Valencia, and was received everywhere with acclamation (1875). In 1876 a vigorous campaign against the [[Carlists]], in which the young king took part, resulted in the defeat of [[Infante Carlos of Spain|Don Carlos]] and his abandonment of the struggle. On [[January 23]], [[1878]] Alfonso married his cousin, Princess [[Maria de las Mercedes of Spain|Maria de las Mercedes]], daughter of the duc de Montpensier, but she died within six months of her marriage. Towards the end of the same year a young workman of [[Tarragona]], [[Juan Oliva Moncasi]], fired at the king in Madrid.
98469
98470 On [[November 29]], [[1879]] he married a much more distant relative, Archduchess [[Maria Christina of Austria]], daughter of [[Karl Ferdinand, Archduke of Austria|Archduke Karl Ferdinand of Austria]]. During the honeymoon a pastrycook named Otero fired at the young sovereigns as they were driving in Madrid.
98471
98472 The children of this marriage were:
98473 * [[Maria de las Mercedes]], Princess of Asturias, ([[September 11]], [[1880]] &amp;ndash; [[October 17]], [[1904]]), married on [[February 14]], [[1901]] to Prince Carlos of Bourbon, and titular heiress from the death of her father until the posthumous birth of her brother
98474 * Maria Teresa, ([[November 12]], [[1882]] &amp;ndash; [[September 23]], [[1912]]), married to Prince Ferdinand of Bavaria on [[January 12]], [[1906]]
98475 * King [[Alfonso XIII of Spain|Alfonso XIII]] who was king from the moment of his birth and thus never held any other Spanish titles from the crown, such as Infante or Prince of Asturias.
98476
98477 In 1881 the king refused to sanction the law by which the ministers were to remain in office for a fixed term of eighteen months, and upon the consequent resignation of Canovas del Castillo, he summoned [[PrÃĄxedes Mateo Sagasta]], the Liberal leader, to form a cabinet.
98478
98479 Alfonso died of [[tuberculosis]].
98480
98481 Coming to the throne at such an early age, he had served no apprenticeship in the art of ruling, but he possessed great natural tact and a sound judgment ripened by the trials of exile. Benevolent and sympathetic in disposition, he won the affection of his people by fearlessly visiting the districts ravaged by cholera or devastated by [[earthquake]] in 1885. His capacity for dealing with men was considerable, and he never allowed himself to become the instrument of any particular party. In his short reign, peace was established both at home and abroad, the finances were well regulated, and the various administrative services were placed on a basis that afterwards enabled [[Spain]] to pass through the disastrous war with the [[United States]] without even the threat of a revolution.
98482
98483 [[Image:Monument-to-Alfonso-XII.jpg|thumb|left|300px|Monument to Alfonso XII in [[Parque del Retiro]], [[Madrid]].]]
98484
98485 {{s-start}}
98486 {{s-hou|[[House of Bourbon]]|[[28 November]]|1857|[[25 November]]|1885}}
98487 {{s-non|reason=[[First Spanish Republic|First Republic]]&lt;br/&gt;'''''&lt;small&gt;Title last held by&lt;br/&gt;[[Amadeo I of Spain|Amadeo I]]&lt;/small&gt;''}}
98488 {{s-ttl|title=[[List of Spanish monarchs|King of Spain]]|years=[[1875]]&amp;ndash;[[1885]]}}
98489 {{s-aft|after=[[Alfonso XIII of Spain|Alfonso XIII]]}}
98490 {{end}}
98491
98492 ==References==
98493 *{{1911}}
98494
98495 [[Category:Spanish monarchs]]
98496 [[Category:Knights of the Garter]]
98497 [[Category:1857 births|Alfonso XII of Spain]]
98498 [[Category:1885 deaths|Alfonso XII of Spain]]
98499 [[Category:House of Bourbon]]
98500
98501 [[de:Alfons XII. (Spanien)]]
98502 [[es:Alfonso XII de EspaÃąa]]
98503 [[fr:Alphonse XII d'Espagne]]
98504 [[it:Alfonso XII di Spagna]]
98505 [[pl:Alfons XII Burbon]]
98506 [[pt:Afonso XII de Espanha]]
98507 [[sv:Alfons XII av Spanien]]
98508 [[zh:é˜ŋæ–šį´ĸ十äēŒä¸–]]</text>
98509 </revision>
98510 </page>
98511 <page>
98512 <title>Alfonso XIII of Spain</title>
98513 <id>1677</id>
98514 <revision>
98515 <id>41642999</id>
98516 <timestamp>2006-02-28T19:16:36Z</timestamp>
98517 <contributor>
98518 <username>Tail</username>
98519 <id>64886</id>
98520 </contributor>
98521 <minor />
98522 <comment>+lv:</comment>
98523 <text xml:space="preserve">{|align=right
98524 |[[Image:Alfonso XIII of Spain.jpg|thumb|right|200px|'''Alfonso XIII'''&lt;br&gt;&lt;small&gt;King of Spain&lt;/small&gt;]]
98525 |-
98526 |{{House of Bourbon}}
98527 |}
98528 '''Alfonso XIII of Spain''' ([[May 17]], [[1886]] &amp;ndash; [[February 28]], [[1941]]), [[List of Spanish monarchs|King of Spain]], posthumous son of [[Alfonso XII of Spain]], was proclaimed King at his birth. He reigned from 1886-1931. His mother, Queen [[Maria Christina of Austria]], was appointed [[regent]] during his minority. In 1902, on attaining his 16th year, the King assumed control of the government.
98529
98530 The growth of the young monarch can be seen in his portraits on Spain's periodically issued [[peseta]] coins.
98531
98532 On [[May 31]], [[1906]] he married Scottish-born [[Princess Victoria Eugenie of Battenberg]] (1887-1969), a niece of King [[Edward VII of the United Kingdom]] and a granddaughter of Queen [[Victoria of the United Kingdom]]. A [[Serene Highness]] by birth, Ena, as she was known, was raised to Royal Highness status a month before her wedding to prevent the union from being viewed as unequal. As Alfonso XIII and Queen Ena were returning from the wedding they narrowly escaped the assassination attempted by the [[Anarchism|anarchist]] [[Mateu Morral]]; instead, the bomb explosion killed or injured many bystanders and members of the royal procession.
98533
98534 The royal couple had seven children:
98535 * [[Infante]] Alfonso Pío Cristino Eduardo, [[Prince of Asturias]] ([[1907]]-[[1938]]), a [[hemophiliac|hemophiliac]], he renounced his rights to the throne in 1933 to marry a commoner, Edelmira Sampedro Ocejo y Robato, and became Count of [[Covadonga]]. He later remarried to Marta Esther Rocafort y Altazarra, but had no issue by either of them.
98536 * Infante [[Infante Jaime of Spain, Duke of Segovia|Jaime Luitpold Isabelino Enrique]] ([[1908]]-[[1975]]), a [[deaf-mute]] as the result of a childhood operation, he renounced his rights to the throne in 1933 and became Duke of [[Segovia]], and later Duke of Madrid, and who, as a [[legitimist]] [[pretender to the French throne]] from 1941 to 1975, was known as the Duke of [[Anjou]].
98537 * Infanta Beatriz Isabel Federica Alfonsa Eugenia ([[1909]]-[[2002]]), who married [[Don Alessandro Torlonia, 5th Prince di Civitella-Cesi]].
98538 * Infante Fernando, [[stillborn]] (1910)
98539 * Infanta [[Maria Cristina Teresa Alejandra]] ([[1911]]-[[1996]]), who married Enrico Eugenio Marone-Cinzano, 1st Conte di Marone.
98540 * Infante [[Juan de BorbÃŗn, Count of Barcelona|Juan Carlos Teresa Silvestre Alfonso]] ([[1913]]-[[1993]]), named heir to the throne and Count of Barcelona.
98541 * Infante Gonzalo Manuel María Bernardo ([[1914]]-[[1934]]), a hemophiliac.[[Image:Alfonso_XIII_sculpted_by_JosÊ_Navas-Parejo.jpg|thumb|left|200px|Alfonso XIII sculpted by Jose Navas-Parejo]]
98542
98543 The king also had three illegitimate children, Roger Leveque de Vilmorin (1905-1980), by French aristocrat MÊlanie de Gaufridy de Dortan; Leandro Alfonso Ruíz Moragas (born in [[1929]]), officially recognized by Spanish courts on [[May 21]] [[2003]] as Leandro Alfonso de BorbÃŗn Ruíz, son of the King; and his sister, Ana María Teresa Ruíz Moragas. The mother of both siblings was the Spanish actress Carmen Ruíz Moragas.
98544
98545 During his reign [[Spain]] lost its last colonies in [[Cuba]], [[Puerto Rico]] and the [[Philippines]]; lost several wars in north Africa; saw the start of the [[Spanish Generation of 1927]], and endured the dictatorship of [[Miguel Primo de Rivera]].
98546 He was a promoter of [[tourism in Spain]].
98547 The problems with the lodging of his wedding guests prompted the construction of the luxury [[Hotel Palace]] in Madrid.
98548 He also supported the creation of a network of state-run lodges (''[[Parador]]'') in historic buildings of Spain.
98549 [[Image:Alfonso xiii illustration.3.jpg|thumb|left|125px]]His fondness for the sport of football led to the patronage of several &quot;royal&quot; clubs like [[Real Sociedad]], [[Real Madrid]], [[Real Betis BalompiÊ]] and [[Real UniÃŗn]].
98550 When the [[Second Spanish Republic]] was proclaimed on [[April 14]] [[1931]], he abandoned the country with no formal abdication. When the [[Spanish Civil War]] broke out, Alfonso made it clear he favoured the military uprising against the [[Popular Front (Spain)|Popular Front]] government, but General [[Francisco Franco]] in September 1936 declared that the Nationalists would never accept Alfonso as king (the supporters of the rival [[Carlist]] made an important part of the Franco army). First he went into exile in [[France]]. Later he moved to [[Fascist Italy]], and died in [[Rome]] in 1941. After leaving his successory rights to his fourth, but second surviving, son [[Juan de Borbon, Count of Barcelona]], the father of the later King [[Juan Carlos of Spain|Juan Carlos]]. The count of Barcelona renounced his rights to the throne in 1977, in favor of his son, Juan Carlos.
98551
98552 {{s-start}}
98553 {{s-hou|[[House of Bourbon]]|[[17 May]]|1886|[[28 February]]|1941}}
98554 {{s-bef|before=[[Alfonso XII of Spain|Alfonso XII]]}}
98555 {{s-ttl|title=[[List of Spanish monarchs|King of Spain]]|years=[[1886]]&amp;ndash;[[1931]]|regent1=[[Maria Christina of Austria|Maria Christina]]|years1=[[1886]]&amp;ndash;[[1902]]}}
98556 {{s-non|reason=[[Second Spanish Republic|Second Republic]]&lt;br/&gt;declared}}
98557 |-
98558 {{s-non|reason=[[Second Spanish Republic|Second Republic]]&lt;br/&gt;declared}}
98559 {{s-tul|title=[[List of Spanish monarchs|King of Spain]]|years=[[1931]]&amp;ndash;[[1941]]|reason=[[Second Spanish Republic|Second Republic]]&lt;br/&gt;[[Spanish Civil War]]&lt;br/&gt;[[Spanish State]]|start=1931|end=1975}}
98560 {{s-aft|after=[[Juan de BorbÃŗn, Count of Barcelona|Juan III]]}}
98561 {{end}}
98562
98563 {{start box}}
98564 {{succession box two to one|
98565 before1=[[Alfonso Carlos, Duke of San Jaime|Alphonse Charles XII]]&lt;br&gt;&lt;small&gt;(duke of San Jaime)&lt;/small&gt;|
98566 before2=[[Alfonso Carlos, Duke of San Jaime|Alfonso Carlos I]]&lt;br&gt;&lt;small&gt;(duke of San Jaime)&lt;/small&gt;|
98567 title1=[[Legitimist]] claimants to the throne of France|
98568 years1=|
98569 title2=[[Carlist]] claimants to the throne of Spain|
98570 years2=|
98571 after=[[Infante Jaime of Spain, Duke of Segovia|Jacques Henri VI / Jaime IV]]&lt;br&gt;&lt;small&gt;(duke of Anjou and Segovia)&lt;/small&gt;
98572 }}
98573 {{end box}}
98574
98575 [[Category:Spanish monarchs]]
98576 [[Category:British Field Marshals]]
98577 [[Category:Knights of the Garter]]
98578 [[Category:1886 births|Alfonso XIII of Spain]]
98579 [[Category:1941 deaths|Alfonso XIII of Spain]]
98580 [[Category:House of Bourbon]]
98581 [[Category:Knights Grand Cross of the Royal Victorian Order]]
98582 [[Category:Pretenders to the French throne]]
98583
98584 [[ca:Alfons XIII d'Espanya]]
98585 [[da:Alfons 13. af Spanien]]
98586 [[de:Alfons XIII.]]
98587 [[es:Alfonso XIII de EspaÃąa]]
98588 [[eo:Alfonso la 13-a (Hispanio)]]
98589 [[fr:Alphonse XIII d'Espagne]]
98590 [[it:Alfonso XIII di Spagna]]
98591 [[ka:ალფონსო XIII (ესპანეთი)]]
98592 [[lv:Alfonso XIII]]
98593 [[nl:Alfons XIII van Spanje]]
98594 [[ja:ã‚ĸãƒĢフりãƒŗã‚Ŋ13世 (゚ペイãƒŗįŽ‹)]]
98595 [[pl:Alfons XIII Burbon]]
98596 [[pt:Afonso XIII de Espanha]]
98597 [[fi:Alfonso XIII]]
98598 [[sv:Alfons XIII av Spanien]]
98599 [[uk:АĐģŅŒŅ„ĐžĐŊŅ ĐĨІІІ (ĐēĐžŅ€ĐžĐģŅŒ ІŅĐŋĐ°ĐŊŅ–Ņ—)]]
98600 [[zh:é˜ŋæ–šį´ĸ十三世]]</text>
98601 </revision>
98602 </page>
98603 <page>
98604 <title>Alphonsus a Sancta Maria</title>
98605 <id>1678</id>
98606 <revision>
98607 <id>28106054</id>
98608 <timestamp>2005-11-12T10:45:00Z</timestamp>
98609 <contributor>
98610 <username>Bluebot</username>
98611 <id>527862</id>
98612 </contributor>
98613 <minor />
98614 <comment>Standardising 1911 references.</comment>
98615 <text xml:space="preserve">'''Alphonsus a Sancta Maria''', or '''Alphonso de Cartagena''' ([[1396]] - [[July 12]], [[1456]]), [[Spain|Spanish]] historian, was born at [[Cartagena, Spain|Cartagena]], and succeeded his father, Paulus, as bishop of [[Burgos]]. In [[1431]] he was deputed by [[John II of Castile|John II, king of Castile]], to attend the council of [[Basel]], in which he made himself conspicuous by his learning. He was the author of several works, the principal of which is entitled ''Rerum Hispanorum Romanorum imperatorum, summorum pontificum, nec non regum Francorum anacephaleosis''. This is a history of [[Spain]] from the earliest times down to [[1456]], and was printed at [[Granada]] in [[1545]], and also in the ''Rerum Hispanicarum Scriptores aliquot'', by R. Bel (Frankfort, 1579).
98616
98617
98618 ==References==
98619 *{{1911}}</text>
98620 </revision>
98621 </page>
98622 <page>
98623 <title>Alfonso the Battler</title>
98624 <id>1679</id>
98625 <revision>
98626 <id>40347008</id>
98627 <timestamp>2006-02-19T23:40:10Z</timestamp>
98628 <contributor>
98629 <username>Srnec</username>
98630 <id>494861</id>
98631 </contributor>
98632 <comment>/* Reign */ finished all his battles of the reconquista</comment>
98633 <text xml:space="preserve">'''Alfonso I''' (c.[[1073]] &amp;ndash; [[1134]]), called '''the Battler''', was the [[Kings of Aragon|king of AragÃŗn]] and [[Kings of Navarre|Navarre]] from [[1104]] until his death in [[1134]]. He was the second son of King [[Sancho I of Aragon|Sancho Ramírez]] and successor of his brother [[Peter I of Aragon|Peter I]]. Alfonso the Battler won his greatest successes in the middle [[Ebro]], where he expelled the Moors from [[Zaragoza]] in [[1118]] and took [[Egea]], [[Tudela]], [[Calatayud]], [[Borja]], [[Tarazona]], [[Daroca]], and [[Monreal del Campo]]. He died in September 1134 after an unsuccessful battle with the [[Moors]] at the siege of [[Fraga]].
98634
98635 ==Early life==
98636
98637 His earliest years were passed in the [[monastery]] of [[Siresa]], learning to read and write and the military arts by Lope GarcÊs the Pilgrim, who was repaid for his services by his former charge with the county of [[Pedrola]] when he came to the throne.
98638
98639 During his brother's reign, he participated in the taking of Huesca (the [[Battle of Alcoraz]], [[1096]]), which became the largest city in the kingdom and the new capital. He also joined [[El Cid]]'s expeditions in [[Valencia]]. His father gave him the lordships of [[Biel]], [[Luna]], [[Ardenes]], y [[Bailo]].
98640
98641 A series of fortunate deaths put Alfonso directly in line for the throne. His brother's children, Isabel and Peter (who married María Rodríguez, daughter of El Cid), died in [[1103]] and 1104 respectively.
98642
98643 ==Reign==
98644
98645 ===Marriage===
98646
98647 A passionate fighting-man (he fought twenty-nine battles against Christian or Moor), he was married (when well over 30 years and a habitual bachelor) in [[1109]] to [[Urraca of Castile]], widow of [[Raymond of Burgundy]], a very dissolute and passionate woman. The marriage had been arranged by her father [[Alfonso VI of Castile]] in 1106 to unite the two chief Christian states against the [[Almoravides]], and to supply them with a capable military leader. But Urraca was tenacious of her right as proprietary queen and had not learnt chastity in the polygamous household of her father. Alfonso is reported to have said that a real soldier lives with men, not women. Husband and wife quarrelled with the brutality of the age and came to open war. Alfonso had the support of one section of the nobles who found their account in the confusion. Being a much better soldier than any of his opponents he gained victories at [[Sepulveda]] and [[Fuente de la Culebra]], but his only trustworthy supporters were his Aragonese, who were not numerous enough to keep [[Kingdom of Castile|Castile]] and [[Kingdom of Leon|LeÃŗn]] subjugated. The marriage of Alfonso and Urraca was declared null by the pope, as they were third cousins, in [[1114]]. During his marriage, he had called himself &quot;King and Emperor of Castile, Toledo, AragÃŗn, Pamplona, Sobrarbe, and Ribagorza&quot; in recognition of his rights as Urraca's husband; of his inheritance of the lands of his father, including the kingdom of his great-uncle [[Gonzalo of Sobrarbe and Ribagorza|Gonzalo]]; and his prerogative to conquer [[Andalusia]] from the Moor. He inserted the title of ''imperator'' on the basis that he had three kingdoms under his rule.
98648
98649 ===Church relations===
98650
98651 The king quarrelled with the church, and particularly the [[Cistercian]]s, almost as violently as with his wife. As he beat her, so he drove Archbishop Bernard into exile and expelled the monks of [[SahagÃēn]]. He was finally compelled to give way in Castile and Leon to his stepson [[Alfonso_VII_of_Castile|Alfonso RaimÃēndez]], son of Urraca and her first husband. The intervention of [[Pope Calixtus II]] brought about an arrangement between the old man and his young namesake.
98652
98653 In [[1122]] in Belchite, he founded a confraternity of knighst to fight agains the Almoravids. It was the start of the military orders in AragÃŗn. Years later, he organised a branch of the ''Militia Christi'' of the [[Holy Land]] at [[Monreal del Campo]].
98654
98655 ===Reconquista===
98656
98657 Alfonso spent his first four years in near-constant war with the Moor. In [[1105]], he conquered Ejea and Tauste and refortified Castellar and Juslibol. In [[1106]], he defeated [[Ahmad II al-Musta'in]] of Zaragoza at Valtierra. In [[1107]], he took Tamarite de Litera and Esteban de la Litera. Then followed a period dominated by his relations with Castile and LeÃŗn through his wife, Urraca. He resumed his Reconquista in [[1117]] by conquering Fitero, Corella, CintruÊnigo, Murchante, Monteagudo, and Cascante from Islam.
98658
98659 In [[1118]], the Council of Toulouse declared it a [[crusade]] to assist in the reconquest of [[Zaragoza]]. Many Frenchmen consequently joined Alfonso at [[Ayerbe]]. They took AlmudÊvar, Gurrea de GÃĄllego, and Zuera, besieging Zaragoza itself by the end of May. On [[18 December], it fell and the forces of Alfonso occupied the Azuda, the government tower. The great palace of the city was given to the monks of Bernard. Promptly, the city was made Alfonso's capital. Two years later, in [[1120]], he defeated a Moslem army intent on reconquering his new capital at [[Cutanda]]. He promulgated the ''fuero'' of ''tortum per tortum'', facilitating taking the law into one's own hands, and forced the Moslem population of the city (greater than 20,000) to move to the suburbs.
98660
98661 In [[1119]], he retook Cervera, Tudejen, CastellÃŗn, Tarazona, Ágreda, MagallÃŗn, Borja, AlagÃŗn, Novillas, MallÊn, Rueda, Épila and repopulated the region of [[Soria]]. He began the siege of [[Calatayud]], but left to defeat the army at Cutanda trying to retake Zaragoza. When Calatayud fell, he took Bubierca, Alhama de AragÃŗn, Ariza, and Daroca (1120). In [[1123]], he besieged and took [[LÊrida]], which was in the hands of the [[count of Barcelona]]. From the winter of [[1124]] to September [[1125]], he was on a risky expedition to PeÃąa Cadiella deep in Andalusia.
98662
98663 In the great raid of 1125, he carried away a large part of the subject Christians from Granada, and in the south-west of France, he had claims as usurper-king of Navarre. From 1125 to [[1126]], he was on campaign against [[Granada]], where he was trying to install a Christian prince, and [[CÃŗrdoba]], where got only as far as Motril. In [[1127]], he reconquered Longares, but simultaneously lost all his Castilian possessions to [[alfonso VII of Castile|Alfonso VII]]. He confirmed a treaty with Castile the next year ([[1128]]) at [[TÃĄmara]] which fixed the boundaries of the two realms.
98664
98665 He conquered Molina de AragÃŗn and repopulated MonzÃŗn in [[1129]], before besieging [[Valencia]], which had falled again upon the Cid's death.
98666
98667 He went north of the Pyrenees in October [[1130]] to protect the [[Val d'Aran]]. Early in [[1131]], he besieged [[Bayonne]]. It is said he ruled &quot;from Belorado to Pallars and from Bayonne to Monreal.&quot;
98668
98669 Three years before his death, he made a will leaving his kingdom to the [[Templars]], the [[Hospitallers]], and the Knights of the [[Holy Sepulchre]], which his subjects refused to carry out—instead bringing his brother Ramiro from the monastery to assume royal powers.
98670
98671 His final campaigns were against Mequinenza ([[1133]]) and Fraga (1134), where [[García VI of Navarre|García Ramírez]], the future king of Navarre, and a mere 500 other knights fought with him. It fell on [[17 July]]. He was dead by September. Alfonso was a fierce, violent man, a soldier and nothing else, whose piety was wholly militant. He has a great role in the Spanish reconquest.
98672
98673 ==Death==
98674
98675 His testament was not honored: Aragon took his aged brother abbot-bishop Ramiro out of monastery and made him king; [[Navarrese]] regained independence and put Lord Garcia Ramirez of [[Monzon, Spain|MonzÃŗn]], son of his second cousin, to the throne in [[Pamplona]].
98676
98677 ==References==
98678
98679 *{{1911}}
98680
98681 {{s-start}}
98682 {{s-bef|rows=2|before=[[Peter I of Aragon|Peter I]]}}
98683 {{s-ttl|title=[[List of Aragonese monarchs|King of Aragon]]|years=[[1104]]&amp;ndash;[[1134]]}}
98684 {{s-aft|after=[[Ramiro II of Aragon|Ramiro II]]}}
98685 {{s-ttl|title=[[List of Navarrese monarchs|King of Navarre]]|years=[[1104]]&amp;ndash;[[1134]]}}
98686 {{s-aft|after=[[García VI of Navarre|García VI]]}}
98687 {{end}}
98688
98689 [[Category:Aragonese monarchs]]
98690 [[Category:Navarrese monarchs]]
98691 [[Category:1073 births|Alfonso I of Aragon]]
98692 [[Category:1134 deaths|Alfonso I of Aragon]]
98693
98694 [[ca:Alfons I d'AragÃŗ]]
98695 [[de:Alfons I. (AragÃŗn)]]
98696 [[es:Alfonso I de AragÃŗn]]
98697 [[fr:Alphonse Ier d'Aragon]]
98698 [[he:אלפונסו הראשון מלך אראגון]]
98699 [[nl:Alfons I van Aragon]]
98700 [[pl:Alfons I (krÃŗl Aragonii)]]
98701 [[pt:Afonso I de AragÃŖo]]
98702 [[zh:é˜ŋæ–šį´ĸ一世 (é˜ŋæ‹‰č´Ą)]]</text>
98703 </revision>
98704 </page>
98705 <page>
98706 <title>Amaryllis</title>
98707 <id>1680</id>
98708 <revision>
98709 <id>42083640</id>
98710 <timestamp>2006-03-03T18:42:36Z</timestamp>
98711 <contributor>
98712 <ip>194.134.193.16</ip>
98713 </contributor>
98714 <comment>minus pictur of [[Hippeastrum]]</comment>
98715 <text xml:space="preserve">{{Taxobox
98716 | color = lightgreen
98717 | name = ''Amaryllis''
98718 | image = NakedLadies.jpg
98719 | image_width = 250px
98720 | image_caption = &quot;Naked Lady&quot; flowers in the [[Sinkyone Wilderness State Park]], [[California]]
98721 | regnum = [[Plant]]ae
98722 | divisio = [[flowering plant|Magnoliophyta]]
98723 | classis = [[monocotyledon|Lilliopsida]]
98724 | ordo = [[Asparagales]]
98725 | familia = [[Amaryllidaceae]]
98726 | genus = ''Amaryllis''
98727 | species = '''''A. belladonna'''''
98728 | binomial = ''Amaryllis belladonna''
98729 | binomial_authority = [[Carolus Linnaeus|L.]]
98730 }}
98731
98732 '''''Amaryllis''''' is a monotypic [[genus]] of plant containing one species, the '''Belladonna Lily''' (''Amaryllis belladonna''), a native of [[South Africa]]. ['''Note:''' [[Hippeastrum]] is the flowering bulb commonly sold in November and December for blooming inside]
98733
98734 The Belladonna Lily is a [[bulb]] plant, with each bulb being 5-10 cm in diameter. It has several strap-shaped, dull green [[leaf|leaves]], 30-50 cm long and 2-3 cm broad, arranged in two rows. The leaves are produced in the autumn and eventually die down by late spring. The bulb is then dormant until late summer.
98735
98736 In late summer the bulb produces one or two naked stems 30-60 cm tall, each of which bear a cluster of 2 to 12 funnel-shaped [[flower]]s at their tops. Each flower is 6-10 cm diameter with six [[tepal]]s (three outer sepals, three inner petals, with similar appearance to each other), white, pink or purple in colour. This flowering pattern is the cause of its common name 'naked lady'. The scientific name ''Amaryllis'' is named after a shepherdess in one of [[Virgil]]'s pastorals, and means any young rustic maiden.
98737
98738 The Belladonna Lily was introduced into cultivation at the beginning of the [[18th century]]. However, most of the so-called Amaryllis bulbs sold as 'ready to bloom for the holidays' belong to the allied genus ''[[Hippeastrum]]'', despite being labeled as 'Amaryllis' by sellers and [[nursery (horticulture)|nurseries]]. Adding to the name confusion, some bulbs of other species with a similar growth and flowering pattern are also sometimes called 'naked ladies', even though those species have their own more widely used and accepted common names, such as the [[Resurrection Lily]] (''Lycoris squamigera'').
98739
98740
98741 [[Category:Asparagales]]
98742
98743 [[de:Amaryllis (Gattung)]]
98744 [[es:Amaryllis]]
98745 [[fr:Amaryllis (fleur)]]
98746 [[it:Amaryllis]]
98747 [[nl:Amaryllis]]
98748 [[ja:ã‚ĸマãƒĒãƒĒã‚š]]</text>
98749 </revision>
98750 </page>
98751 <page>
98752 <title>Amasis I</title>
98753 <id>1682</id>
98754 <revision>
98755 <id>15900147</id>
98756 <timestamp>2004-08-13T20:02:22Z</timestamp>
98757 <contributor>
98758 <username>Timwi</username>
98759 <id>13051</id>
98760 </contributor>
98761 <minor />
98762 <comment>fix double-redirect</comment>
98763 <text xml:space="preserve">#REDIRECT [[Ahmose I]]</text>
98764 </revision>
98765 </page>
98766 <page>
98767 <title>Alfonso III of Aragon</title>
98768 <id>1683</id>
98769 <revision>
98770 <id>41013661</id>
98771 <timestamp>2006-02-24T14:06:27Z</timestamp>
98772 <contributor>
98773 <username>Francisco Valverde</username>
98774 <id>495548</id>
98775 </contributor>
98776 <minor />
98777 <comment>/* References */</comment>
98778 <text xml:space="preserve">{{verify}}
98779
98780
98781
98782 '''Alfons''' or '''Alfonso III of Aragon''' ([[1265]] &amp;ndash; [[June 18]], [[1291]], also '''Alfons II of Barcelona'''), surnamed ''the Liberal'', was the king of
98783 [[Aragon]] and count of [[Barcelona]] from [[1285]] to [[1291]].
98784
98785 He was a son of [[Peter III of Aragon]] and his [[Queen consort]] Constance of Sicily, daughter and heiress of [[Manfred of Sicily]]. His maternal grandmother Beatrice of Savoy was a daughter of [[Amadeus IV of Savoy]] and Anne of Burgundy.
98786
98787 He conquered the island of [[Minorca]] in [[1287]].
98788
98789 His inability to resist the demands of his nobles left a heritage of trouble in Aragon. By recognising their right to rebel in the articles called the [[Union of Aragon]] he helped to make anarchy permanent.
98790
98791 For this reason, probably, [[Dante Alighieri]], in [[the Divine Comedy]], recounts that he saw Alfonso's spirit seated outside the gates of [[Purgatory]] with the other monarchs whom Dante blamed for the chaotic political state of [[Europe]] during the [[13th century]].
98792
98793 == References ==
98794
98795 *DANTE ALIGHIERI, ''Purgatorio'', Canto VII, l. 115ff.
98796
98797
98798 {{s-start}}
98799 {{s-bef|before=[[Peter III of Aragon|Peter III]]}}
98800 {{s-ttl|title=King of [[List of Aragonese monarchs|Aragon]] and [[List of Valencian monarchs|Valencia]],&lt;br/&gt;[[List of Counts of Barcelona|Count of Barcelona]]
98801 |years=[[1285]]-[[1291]]}}
98802 {{s-aft|after=[[James II of Aragon|James II]]}}
98803 {{end}}
98804
98805 [[Category:1265 births]]
98806 [[Category:1291 deaths]]
98807 [[Category:Aragonese monarchs]]
98808 [[Category:Characters in the Divine Comedy]]
98809 [[Category:Counts of Barcelona]]
98810
98811 [[ca:Alfons el Franc]]
98812 [[de:Alfons III. (AragÃŗn)]]
98813 [[es:Alfonso III de AragÃŗn]]
98814 [[it:Alfonso III di Aragona]]
98815 [[ja:ã‚ĸãƒĢフりãƒŗã‚Ŋ3世 (ã‚ĸナゴãƒŗįŽ‹)]]
98816 [[pt:Afonso III de AragÃŖo]]
98817 [[sv:Alfonso III av Aragonien]]</text>
98818 </revision>
98819 </page>
98820 <page>
98821 <title>Alfonso IV of Aragon</title>
98822 <id>1684</id>
98823 <revision>
98824 <id>37722042</id>
98825 <timestamp>2006-02-01T20:10:49Z</timestamp>
98826 <contributor>
98827 <username>Ian Pitchford</username>
98828 <id>230605</id>
98829 </contributor>
98830 <comment>[[WP:AWB|AWB Assisted]] clean up</comment>
98831 <text xml:space="preserve">'''Alfonso IV of Aragon''', surnamed ''the Kind'' ([[Catalan language|Catalan]]: ''Alfons el Benigne'') was the king of
98832 [[Aragon]] and count of [[Barcelona]] (as Alfonso III) from [[1327]] to [[1336]]. Born in [[1299]] and died [[January 24]] [[1336]], he was the second son of [[James II of Aragon]] and [[Blanche of Anjou]].
98833
98834 He became heir after his older brother James renounced his rights to become a monk. He married Teresa of Entença and Antillon (1300-1327), heiress of [[Urgell]]. With this marriage, Urgell was definitively incorporated into the crown of Aragon.
98835
98836 After widowing, he married Leonor de Castile, who should have been his brother James' wife but he refused to consummate the marriage. She was the sister of [[Alfonso XI of Castile]] and was murdered by her nephew [[Peter I of Castile]].
98837
98838 ===Children===
98839 By Teresa of Entença:
98840 * Alfons (lived only one year).
98841 * [[Peter IV of Aragon|Peter IV]]
98842 * James (Jaume), Count of Urgell (1320-1347). He also inherited Entença and Antillon.
98843 * Fadrique (died young).
98844 * Constança (1322-1346), married [[James III of Majorca]].
98845 * Elizabeth (died young).
98846 * Sanç (1327, lived only a few days).
98847
98848 By Leonor de Castile:
98849 * [[Ferdinand, Prince of Aragon|Ferdinand]] (Ferran), Marquis of Tortosa. Married [[Maria of Portugal (1342-1367)|Maria of Portugal]] (daughter of [[Peter I of Portugal]]) and was killed by his half-brother Peter IV.
98850 * John (Joan). Married Isabel NÃēÃąez de Lara and was killed by order of his cousin Peter I of Castile.
98851
98852 {{start box}}
98853 {{succession box three to three|
98854 before=[[James II of Aragon|James II]]|
98855 after=[[Peter IV of Aragon|Peter IV]]|
98856 title1=[[List of Aragonese monarchs|King of Aragon]]|
98857 title2=[[List of Counts of Barcelona|Count of Barcelona]]|
98858 title3=[[List of Valencian monarchs|King of Valencia]]|
98859 years1=1327&amp;ndash;1336|
98860 years2=1327&amp;ndash;1336|
98861 years3=1327&amp;ndash;1336|
98862 }}
98863 {{end box}}
98864
98865
98866 [[Category:1299 births]]
98867 [[Category:1366 deaths]]
98868 [[Category:Aragonese monarchs]]
98869 [[Category:Counts of Barcelona]]
98870
98871 [[ca:Alfons el Benigne]]
98872 [[de:Alfons IV. (AragÃŗn)]]
98873 [[es:Alfonso IV de AragÃŗn]]
98874 [[it:Alfonso IV di Aragona]]
98875 [[ja:ã‚ĸãƒĢフりãƒŗã‚Ŋ4世 (ã‚ĸナゴãƒŗįŽ‹)]]
98876
98877
98878 {{Euro-royal-stub}}</text>
98879 </revision>
98880 </page>
98881 <page>
98882 <title>Amasis II</title>
98883 <id>1685</id>
98884 <revision>
98885 <id>40338054</id>
98886 <timestamp>2006-02-19T22:32:16Z</timestamp>
98887 <contributor>
98888 <username>That Guy, From That Show!</username>
98889 <id>419920</id>
98890 </contributor>
98891 <minor />
98892 <comment>[[WP:AWB|AWB assisted]] removed redundant category &amp; cleanup formatting</comment>
98893 <text xml:space="preserve">{{Template:Hiero/3name | name= Amasis II | horus=&lt;hiero&gt;s-mn:n-U1-mAa:t&lt;/hiero&gt; | praenomen=&lt;hiero&gt;ra-W9-m-ib&lt;/hiero&gt; | nomen=&lt;hiero&gt;N12-ms-R24-zA&lt;/hiero&gt; | align=right | era=lp}}
98894
98895 '''Amasis II''' (also '''Ahmose II''') was a [[pharaoh]] ([[570 BC]]-[[526 BC]]) of the [[Twenty-sixth dynasty of Egypt]], the successor of [[Apries]]. His capital was at [[Sais, Egypt|Sais]]. He was the last great ruler of [[Egypt]] before the [[Iran|Persia]]n conquest.
98896
98897 Most of our information about him is derived from [[Herodotus]] (2.161ff) and can only be imperfectly verified by monumental evidence. According to the Greek historian, he was of common origins. A revolt of the native soldiers gave him his opportunity. These troops, returning home from a disastrous expedition to [[Cyrene (city)|Cyrene]], suspected that they had been betrayed in order that [[Apries]], the reigning king, might rule more absolutely by means of his [[mercenaries]], and their friends in Egypt fully sympathized with them. Amasis, sent to meet them and quell the revolt, was proclaimed king by the rebels, and Apries, who had now to rely entirely on his mercenaries, was defeated and taken prisoner in the ensuing conflict at [[Memphis, Egypt|Memphis]]; the [[usurper]] treated the captive prince with great leniency, but was eventually persuaded to give him up to the people, by whom he was strangled and buried in his ancestral tomb at Sais. An inscription confirms the fact of the struggle between the native and the foreign soldiery, and proves that Apries was killed and honourably buried in the 3rd year of Amasis.
98898
98899 Although Amasis thus appears first as champion of the disparaged native, he had the good sense to cultivate the friendship of the [[Ancient Greece|Greek world]], and brought Egypt into closer touch with it than ever before. Herodotus relates that under his prudent administration [[Egypt]] reached the highest pitch of prosperity; he adorned the temples of [[Lower Egypt]] especially with splendid [[monolith]]ic [[shrine]]s and other monuments (his activity here is proved by remains still existing). To the Greeks, Amasis assigned the commercial colony of [[Naucratis]] on the [[Canopic]] branch of the [[Nile]], and when the [[temple of Delphi]] was burnt he contributed 1,000 [[talent (weight)|talents]] to the rebuilding. He also married a Greek princess named '''Ladice''', the daughter of [[Battus]], king of Cyrene, and he made alliances with [[Polycrates of Samos]] and [[Croesus of Lydia]].
98900
98901 His kingdom consisted probably of Egypt only, as far as the [[First Cataract]], but to this he added [[Cyprus]], and his influence was great in Cyrene. At the beginning of his long reign, before the death of Apries, he appears to have sustained an attack by [[Nebuchadrezzar II]] ([[568 BC]]). [[Cyrus II of Persia|Cyrus]] left Egypt unmolested; but the last years of Amasis were disturbed by the threatened invasion of [[Cambyses]] and by the rupture of the alliance with Polycrates of Samos. The blow fell upon his son [[Psammetichus III]], whom the Persian deprived of his kingdom after a reign of only six months.
98902
98903 == References ==
98904 [[William Flinders Petrie|W. M. Flinders Petrie]], ''History'', vol. iii.; [[James Henry Breasted]], ''History and Historical Documents'', vol. iv. p. 509; [[Gaston Maspero]], ''Les Empires''.
98905
98906 {{Pharaoh | Prev=[[Apries]] | Dynasty=[[570 BC|570]] &amp;ndash; [[526 BC]]&lt;br&gt;[[Twenty-sixth Dynasty]] | Next=[[Psamtik III]]}}
98907
98908 {{1911}}
98909
98910 [[Category:526 BC deaths]]
98911 [[Category:Pharaohs]]
98912
98913 [[ar:ØŖØ­Ų…Øŗ]]
98914 [[bg:АĐŧаСиŅ]]
98915 [[de:Amasis (Pharao)]]
98916 [[fr:Amasis]]
98917 [[ru:АĐŧĐ°ŅĐ¸Ņ II]]
98918 [[zh:雅čĩĢæ‘Šæ–¯äēŒä¸–]]</text>
98919 </revision>
98920 </page>
98921 <page>
98922 <title>Alfons V of Aragon</title>
98923 <id>1686</id>
98924 <revision>
98925 <id>39543163</id>
98926 <timestamp>2006-02-14T04:44:00Z</timestamp>
98927 <contributor>
98928 <username>Srnec</username>
98929 <id>494861</id>
98930 </contributor>
98931 <minor />
98932 <text xml:space="preserve">'''Alfons V of Aragon''' (also '''Alfons I of Naples''') ([[1396]] &amp;ndash; [[June 27]], [[1458]]), surnamed ''the Magnanimous'', was the [[Kings of Aragon|King]] of [[Aragon]] and [[Naples]] and count of [[Barcelona]] from [[1416]] to [[1458]]. He was a son of [[Ferdinand I of Aragon]] (also called Ferdinand of Antequera), and is one of the most conspicuous figures of the early [[Renaissance]].
98933
98934 He represented the old line of the counts of Barcelona only through women, and was on his father's side descended from the House of Trastamara, a noble family of [[Castile]]. By hereditary right he was king of [[Sicily]]. He disputed the island of [[Sardinia]] with [[Genoa]] and conquered the [[kingdom of Naples]]. He fought and triumphed amid the exuberant development of individuality which accompanied the revival of learning and the birth of the modern world.
98935
98936 When he was a prisoner in the hands of [[Visconti|Filippo Maria Visconti]], Duke of [[Milan]], in [[1435]], Alfonso persuaded his ferocious and crafty captor to let him go by making it plain that it was the interest of Milan not to prevent the victory of the Aragonese party in Naples.
98937
98938 Like a true prince of the Renaissance he favoured men of letters whom he trusted to preserve his reputation to posterity. His devotion to the [[classics]] was exceptional even in that time. For example, Alfonso halted his army in pious respect before the birthplace of a Latin writer, carried Livy or Caesar on his campaigns with him, and his panegyrist [[Panormita]] did not think it an incredible lie to say that the king was cured of an illness when a few pages of [[Quintus Curtius Rufus]]' history of [[Alexander the Great]] were read to him. However, the classics had not refined his taste, for he was amused by setting iternant scholars, who swarmed to his court, to abuse one another in the indescribably filthy Latin scolding matches which were then the fashion.
98939
98940 Alfons founded nothing, and, after his conquest of [[Naples]] in [[1441]], ruled by his mercenary soldiers and no less mercenary men of letters. His Spanish possessions were ruled for him by his brother [[Juan II of Aragon|John]]. He left his conquest of Naples to his bastard son [[Ferdinand I of Naples|Ferdinand]]; his inherited lands, Sicily and [[Sardinia]], going to his brother John, who survived him.
98941
98942 Alfons was the object of diplomatic contacts from the empire of [[Ethiopia]]. In [[1428]], he received a letter from [[Yeshaq I of Ethiopia]], borne by two dignitaries, which proposed an alliance against the [[Muslim]]s and would be sealed by a dual marriage, that would require the Infante Don Pedro to bring a group of artisans to Ethiopia, where he would marry Yashq's daughter. It is not clear how or if Alfonso responded to this letter, although in a letter sent to Yeshaq's successor [[Zara Yaqob]] in [[1450]], Alfons wrote that he would be happy to send artisans to Ethiopia, if their safe arrival could be guaranteed for on a previous occasion a party of 13 of his subjects travelling to Ethiopia had all perished. &lt;sup&gt;[[#Notes|1]]&lt;/sup&gt;
98943
98944 He was betrothed to [[María de Castilla]] ([[1401]]&amp;ndash;[[1458]]; sister of [[Juan II of Castile]]) in [[Valladolid]] in 1408; the marriage was celebrated in [[Valencia]] during [[1415]]. They failed to produce children.
98945
98946 See list of [[Monarchs of Naples and Sicily]].
98947
98948 == Notes ==
98949 # [[O. G. S. Crawford]] (editor), ''Ethiopian Itineraries, circa 1400 - 1524'' (Cambridge: the Hakluyt Society, 1958), pp. 12f.
98950
98951 {{start box}}
98952 {{succession box|
98953 before=[[Ferdinand I of Aragon|Ferdinand I]]|
98954 after=[[John II of Aragon|John II]]|
98955 title=King of [[King of Aragon|Aragon]],&lt;br/&gt;[[King of Sicily|Sicily]], [[List of Valencian monarchs|Valencia]], and [[List of Kings of Majorca|Majorca]], &lt;br/&gt;[[List of Counts of Barcelona|Count of Barcelona]]|
98956 years=1416&amp;ndash;1458|}}
98957 {{succession box|
98958 title=[[King of Naples]]|
98959 before=[[RenÊ I of Naples|RenÊ I]]|
98960 after=[[Ferdinand I of Naples|Ferdinand I]]|
98961 years=1442&amp;ndash;1458}}
98962 {{end box}}
98963
98964 [[Category:Aragonese monarchs]]
98965 [[Category:Kings of Sicily]]
98966 [[Category:Knights of the Garter]]
98967 [[Category:Knights of the Golden Fleece]]
98968 [[Category:1396 births|Alfonso V of Aragon]]
98969 [[Category:1458 deaths|Alfonso V of Aragon]]
98970
98971 [[ca:Alfons el Magnànim]]
98972 [[cy:Alfonso V o Aragon]]
98973 [[de:Alfons V. (AragÃŗn)]]
98974 [[es:Alfonso V de AragÃŗn]]
98975 [[fr:Alphonse V d'Aragon]]
98976 [[it:Alfonso V d'Aragona]]
98977 [[nl:Alfons V van Aragon]]
98978 [[pl:Alfons V (krÃŗl Aragonii)]]
98979 [[pt:Afonso V de AragÃŖo]]
98980 [[zh:é˜ŋæ–šį´ĸäē”世 (é˜ŋæ‹‰č´Ą)]]</text>
98981 </revision>
98982 </page>
98983 <page>
98984 <title>Amathus</title>
98985 <id>1687</id>
98986 <revision>
98987 <id>37520590</id>
98988 <timestamp>2006-01-31T14:55:57Z</timestamp>
98989 <contributor>
98990 <ip>194.42.22.4</ip>
98991 </contributor>
98992 <text xml:space="preserve">'''Amathus''' was an ancient city of [[Cyprus]], on the southern coast, about 24 miles west of [[Larnaka]] and 6 miles east of [[Limassol]]. It lies among sandy hills and sand-dunes, which perhaps explain its name in Greek (''amathos'', sand). Being one of the most ancient royal cities, according to the legend, was settled by one of the sons of [[Heracles]], who was worshipped there. According to other legends, [[Ariadne]], the beautiful daughter of Minos, who fled from [[Labyrinth]] in [[Crete]] with [[Theseus]], was later abandoned in Amathus. She died there while giving birth to her child and was buried in a sacred tomb.
98993
98994 Amathus was built on the coastal cliffs with an amazing view to the sea. It flourished and became a rich kingdom since the early years of its settlement. During the Post Phoenician Era (800 B.C.) a port was also constructed there, which served the trade with the [[Greeks]] and the Levantines. High on the cliff a temple was built, which became a special worship site to Aphrodite, the goddess of Beauty and Love. The excavators discovered the Temple of Aphrodite, which dates approximately to the first century B.C.. According to the legend, it was where Adonia took place, in which athletes competed in hunting wild boars during sport competitions. They also competed in dancing and singing to the honour of Adonis.
98995
98996 The earliest remains hitherto found on the site are tombs of the early [[Iron Age]] period of Graeco-Phoenician influences ([[1000 BC|1000]]-[[600 BC|600 B.C.]]). Amathus is identified by some (E. Oberhummer, ''Die Insel Cypern'', i., 1902, pp. 13-14; but see [[Citium]]) with Kartihadasti (Phoenician &quot;New-Town&quot;) in the Cypriote tribute-list of [[Esarhaddon]] of [[Assyria]] (668 B.C.). It certainly maintained strong [[Phoenicia]]n sympathies, for it was its refusal to join the phil-Hellene league of [[Onesilos of Salamis]] which provoked the revolt of Cyprus from [[Iran|Persia]] in [[500 BC|500]]-[[494BC|494 B.C]]. (Herod. v. 105), when Amathus was besieged unsuccessfully and avenged itself by the capture and execution of Onesilos.
98997
98998 The phil-Hellene [[Evagoras]] of Salamis was similarly opposed by Amathus about 385-380 B.C. in conjunction with [[Citium]] and [[Soli, Cyprus|Soli]] (Diod. Sic. xiv. 98); and even after [[Alexander the Great|Alexander]] the city resisted annexation, and was bound over to give hostages to [[Seleucus]] (Diod. Sic. xix. 62).
98999 Its political importance now ended, but its temple of [[Adonis]] and [[Aphrodite]] (Venus Amathusia) remained famous in [[Roman Empire|Roman time]].
99000
99001 The wealth of Amathus was derived partly from its corn ([[Strabo]] 340, quoting [[Hipponax]], fi. 540 B.C.), partly from its [[copper]] mines (Ovid, ''Met.'' x. 220, 531), of which traces can be seen inland (G. Mariti, i. 187; L. Ross, ''Inselreise,'' iv. 195; W. H. Engel, ''Kypros,'' i. 111 ff.).
99002 [[Ovid]] also mentions its sheep (Met. x. 227); the epithet ''Amathusia'' in Roman poetry often means little more than &quot;Cypriote,&quot; attesting however the fame of the city.
99003
99004
99005 Amathus was a rich and densely populated kingdom with a flourishing agriculture and mines situated very close northeast Kalavasos. In the Roman Era it became the capital of one out of the four (4) administrative regions. Later, in the 4th century A.D. it became the Episcopal See and continued to flourish until the [[Byzantine]] Period. At approximately the Late 6th century A.D., Ayios Ioannis Eleimonas (Saint John Charitable), protector of the knights was born in Amathus.
99006
99007 Until 1191 when Richard the Lionheart arrived in Cyprus, Amathus had declined. The tombs were plundered and the stones from the beautiful edifices were brought to Limassol to be used for new constructions. Much later, in [[1869]], a great number of blocks of stone from Amathus were used for the construction of the [[Suez Canal]].
99008
99009 Amathus still flourished and produced a distinguished patriarch of [[Alexandria]] ([[St. John the Merciful]]), as late as 606-616, and a ruined [[Byzantian Empire|Byzantine]] church marks the site; but it was already almost deserted when [[Richard I of England|Richard Plantagenet]] won Cyprus by a victory there over [[Isaac Comnenus of Cyprus|Isaac Comnenus]] in 1191.
99010
99011 A new settlement close to Amathus but further inland was created, and named after St Tykhon, a bishop of Amathus. The land were the ruins are is within the borders of this village, though the expansion of the Limassol tourist area has threatened the ruins (it is speculated that some of the hotels are on top of the Amathus necropolis).
99012
99013 Archaeological excavations in the area by parties of Cypriots and French archaeologists started in 1980 and continue until today. The Acropolis, the Aphrodite’s Temple, the market, the city’s walls, the Basicila and the port have all been excavated.
99014
99015 It is an amazing opportunity for the visitor to ramble over the area and have the feeling of living as they used to live. The visitors have a wonderful chance to explore the area and see rare and beautiful archaeological treasures, which are buried in the soil for centuries.
99016
99017 In the market there are marvellous marble columns decorated with spiral ornaments and huge paved precincts. At the coastal side of the city there are indications of an Early Christian Basilica with floors decorated with precious gems. Farther, near the terraced road leading to the Temple, situated on the top of the cliff, several houses built in a row dating to the Hellenistic Period have been discovered. In the east and west extremes of the city the two acropolis are situated, where a number of tombs have been found, many of which are intact.
99018
99019
99020 The rich [[necropolis]], already partly plundered then, has yielded valuable works of art to New York and to the [[British Museum]]; but the city has vanished, except fragments of wall and of a great stone cistern on the acropolis. A similar vessel was transported to the [[Louvre]] in 1867. You might admire many of the interesting hand-made items with an archaeological value, which have been found during the excavations and are actually exposed at the Cyprus Museum in Nicosia as well as at the Limassol District Archaeological Museum or even at the [[Metropolitan Museum of Art|New York Metropolitan Museum]]. The biggest treasure of Amathus is exposed at Paris Louvre Museum. It is a dim made from limestone, which dates to the 6th century B.C. It is 1.85 m. high and weighs 14 tons. It was made from a single big stone and has four (4) curved handles decorated with the head of a bull. It was used for storing the must from the grapes, which after the fermentation it became wine, which Cyprus is famous for.
99021
99022 Two small sanctuaries, with terracotta votive offerings of Graeco-Phoenician age, lie not far off, but the great shrine of Adonis and Aphrodite has not been identified (M. Ohnefalsch-Richter, ''Kypros,'' i. ch.1).
99023
99024 The ruins of Amathus are less well-preserved than neighbouring [[Kourion]].
99025
99026 ==References==
99027 *{{1911}}
99028 *[http://www.limassolmunicipal.com.cy/amathus/index.html Municipality of Limassol]
99029
99030 [[category:History of Cyprus]]
99031 [[Category:Ancient Cities in Cyprus]]</text>
99032 </revision>
99033 </page>
99034 <page>
99035 <title>Alfonso</title>
99036 <id>1688</id>
99037 <revision>
99038 <id>28802108</id>
99039 <timestamp>2005-11-20T03:43:06Z</timestamp>
99040 <contributor>
99041 <username>KnowName</username>
99042 <id>533999</id>
99043 </contributor>
99044 <minor />
99045 <comment>/* Portuguese explorers */</comment>
99046 <text xml:space="preserve">'''''Alfonso''''' (or '''''Afonso''''', '''''Affonso''''', '''''Alphonso''''', '''''Alphonse''''') - ([[English language|English]]: '''''Alphonzo''''') may refer to any of the following;
99047
99048 ==[[List of Portuguese monarchs|Kings of Portugal]]==
99049 *[[Afonso I of Portugal]] -- (1109-1185) &quot;the Conqueror&quot; (Afonso Henriques)
99050 *[[Afonso II of Portugal]] -- (1185-1223) &quot;the Fat&quot;
99051 *[[Afonso III of Portugal]] -- (1210-1279)
99052 *[[Afonso IV of Portugal]] -- (1291-1357)
99053 *[[Afonso V of Portugal]] -- (1432-1481)
99054 *[[Afonso VI of Portugal]] -- (1656-1683) second king of the house of Braganza
99055
99056 ==Portuguese explorers==
99057 *[[Afonso de Albuquerque]]
99058
99059 ==Kings of [[Kings of Castile|Castile, Leon or Asturias]]==
99060 *[[Alfonso I of Asturias]] -- (739-757)
99061 *[[Alfonso II of Asturias]] -- (789-842)
99062 *[[Alfonso III of Leon]] -- (866-910) the Great
99063 *[[Alfonso IV of Leon]] -- (924-931)
99064 *[[Alfonso V of Castile]] -- (999-1028)
99065 *[[Alfonso VI of Castile]] -- (1065-1109)
99066 *[[Alfonso VII of Castile]] -- (1126-1157) the Emperor
99067 *[[Alfonso VIII of Castile]] -- (1158-1214)
99068 *[[Alfonso IX of Castile]] -- (1188-1230)
99069 *[[Alfonso X of Castile]] -- (1252-1284) The Wise
99070 *[[Alfonso XI of Castile]] -- (1312-1350) The Avenger
99071
99072 ==[[Kings of Aragon]]==
99073 *[[Alfonso I of Aragon]] -- (1104-1134) the Battler
99074 *[[Alfonso II of Aragon]] -- (1162-1196) the Chaste
99075 *[[Alfonso III of Aragon]] -- (1285-1291) The Liberal
99076 *[[Alfonso IV of Aragon]] -- (1327-1336) The Kind
99077 *[[Alfonso V of Aragon ]] -- (1416-1458) The Magnanimous
99078
99079 ==[[Kings of Spain]]==
99080 *[[Alfonso XII of Spain]] -- (1857-1885) king of Spain
99081 *[[Alfonso XIII of Spain]] -- (1886-1931) king of Spain
99082
99083 See also: [[lists of incumbents]]
99084
99085 ==[[Manikongo (Kings of the Congo)]]==
99086
99087 [[Affonso I of Kongo]] 1505&amp;#8211;43)
99088
99089 ==Variety of mango==
99090
99091 '''Alphonso''' is also a variety of [[mango]] found in [[India]], see [[alphonso (mango)]].
99092
99093 ==Places==
99094
99095 *[[Alphonse]] Island belongs to the [[Outer Islands]] of [[Seychelles]]
99096 *[[Alfonso, Cavite]] is a municipality in the [[Philippines]]
99097
99098 {{disambig}}
99099
99100 [[de:Alfons]]
99101 [[eo:Alfonzo]]
99102 [[hu:Alfonz]]
99103 [[pl:Alfons]]
99104 [[pt:Afonso]]
99105 [[sk:Alfonz]]
99106 [[sv:Alfons]]</text>
99107 </revision>
99108 </page>
99109 <page>
99110 <title>Alfonso I</title>
99111 <id>1689</id>
99112 <revision>
99113 <id>29362807</id>
99114 <timestamp>2005-11-27T08:24:01Z</timestamp>
99115 <contributor>
99116 <username>Japanese Searobin</username>
99117 <id>153340</id>
99118 </contributor>
99119 <minor />
99120 <comment>+ja:</comment>
99121 <text xml:space="preserve">*[[Afonso I of Portugal]] -- ([[1094]]-[[1195]]) (Afonso Henriques)
99122 *[[Alfonso I of Asturias]] -- ([[739]]-[[757]])
99123 *[[Alfonso I (of Castile)]] -- ([[1040]]-[[1109]]) the first King of Castile to be called Alfonso, but better known as [[Alfonso VI of Castile]] as he was the sixth Alfonso in the line that started with Alfonso I of Asturius, and included another monarch of [[Asturias]] called Alfonso and three [[Kings of Leon]] called Alfonso.
99124 *[[Alfonso I of Aragon]] -- ([[1104]]-[[1134]])
99125 *[[Alphonso I of Ferrara]], duke of Ferrara (15th century)
99126 *[[Alfonso I of Naples]], also known as [[Alfonso V of Aragon]]
99127 {{disambig}}
99128
99129 [[ca:Alfons I]]
99130 [[de:Liste der Herrscher namens Alfons]]
99131 [[es:Alfonso I]]
99132 [[fr:Alphonse Ier]]
99133 [[ja:ã‚ĸãƒĢフりãƒŗã‚Ŋ1世]]
99134 [[nl:Alfons I]]
99135 [[pl:Alfons I]]
99136 [[pt:Afonso I]]
99137 [[zh:é˜ŋæ–šį´ĸ一世]]</text>
99138 </revision>
99139 </page>
99140 <page>
99141 <title>Amati</title>
99142 <id>1690</id>
99143 <revision>
99144 <id>34669550</id>
99145 <timestamp>2006-01-10T22:23:55Z</timestamp>
99146 <contributor>
99147 <username>GrinBot</username>
99148 <id>411872</id>
99149 </contributor>
99150 <minor />
99151 <comment>robot Adding: no</comment>
99152 <text xml:space="preserve">:''For the [[Mazda]] [[luxury car]] [[marque]], Amati, see the main [[Mazda]] article''
99153
99154 '''Amati''' is the name of a family of [[Italy|Italian]] [[violin]]-makers, who flourished at [[Cremona]] from about [[1550]] to [[1740]].
99155
99156 '''Andrea Amati''' (before 1511 &amp;ndash; before 1580) was the first maker of violins whose instruments still survive today. Indeed he seems more or less responsible for giving the instruments of the modern violin family their definitive profile. A small number of his instruments survive, dated between the years of 1564 and 1574 and most bearing the coat of arms of [[Charles IX of France]].
99157
99158 Andrea Amati was succeeded by his sons '''Antonio Amati''' (born c. 1540) and '''Girolamo Amati''' ([[1561]] &amp;ndash; [[1630]]). The &quot;brothers Amati&quot;, as they were known, implemented far-reaching innovations in design, including the perfection of the shape of the soundhole. They are also thought to have pioneered the modern alto format of [[viola]] (rather than the older tenor violas).
99159
99160 '''Nicolo Amati''' ([[December 3]], [[1596]] &amp;ndash; [[April 12]], [[1684]]) was the son of Girolamo Amati. He was the most eminent of the family. He improved the model adopted by the rest of the Amatis and produced instruments capable of yielding greater power of [[tone]]. His pattern was usually small, but he also made a wider model now known as the &quot;Grand Amati&quot;, which have become his most sought-after violins.
99161
99162 Of his pupils the most famous were [[Antonio Stradivari]], Andrea [[Guarneri]] (the first of the Guarneri family of violin makers), and [[Bartolomeo Cristofori]] (the inventor of the [[piano|pianoforte]]).
99163
99164 The last maker of the family was Nicolo's son, Girolamo Amati, known as '''Hieronymus II''' ([[February 26]], [[1649]] &amp;ndash; [[February 21]], [[1740]]). Although he improved on the arching of his father's instruments, by and large they are inferior and no match for the greatest maker of his day, Antonio Stradivari.
99165
99166 ==See also==
99167 *[[Amati Quartet]]
99168 *[[Luthier]] - provides links to articles about other famous makers of stringed instruments
99169
99170 ==External links==
99171 *[http://www.theviolinsite.com/violin_making/index.html Violin Making]
99172
99173 ==References==
99174 *{{1911}}
99175 [[Category:Italian musical instrument makers|Amati]]
99176 [[Category:Luthiers|Amati]]
99177
99178 [[de:Amati]]
99179 [[fr:Amati]]
99180 [[hu:Amati]]
99181 [[nl:Amati]]
99182 [[no:Amati-familien]]
99183 [[pl:Amati]]</text>
99184 </revision>
99185 </page>
99186 <page>
99187 <title>Alfonso II</title>
99188 <id>1691</id>
99189 <revision>
99190 <id>27035597</id>
99191 <timestamp>2005-11-01T03:22:41Z</timestamp>
99192 <contributor>
99193 <username>Joaopais</username>
99194 <id>94195</id>
99195 </contributor>
99196 <text xml:space="preserve">*[[Alfonso II of Asturias]] -- ([[789]]-[[842]])
99197 *[[Alfonso II of Aragon]] -- ([[1152]]-[[1196]])
99198 *[[Afonso II of Portugal]] -- ([[1185]]-[[1223]]) &quot;the Fat&quot;
99199 *[[Alphonso II of Naples]]
99200
99201 {{disambig}}
99202
99203 [[ca:Alfons II]]
99204 [[de:Liste der Herrscher namens Alfons]]
99205 [[es:Alfonso II]]
99206 [[fr:Alphonse II]]
99207 [[pt:Afonso II]]
99208 [[zh:é˜ŋæ–šį´ĸäēŒä¸–]]</text>
99209 </revision>
99210 </page>
99211 <page>
99212 <title>Alfonso III</title>
99213 <id>1692</id>
99214 <revision>
99215 <id>27035985</id>
99216 <timestamp>2005-11-01T03:28:29Z</timestamp>
99217 <contributor>
99218 <username>Joaopais</username>
99219 <id>94195</id>
99220 </contributor>
99221 <text xml:space="preserve">There have been several monarchs called '''Alfonso III''':
99222
99223 *[[Alfonso III of Leon]] -- (866-914) surnamed &quot;the Great&quot;
99224 *[[Afonso III of Portugal]] -- (1210-1279)
99225 *[[Alfonso III of Aragon]] -- (1285-1291)
99226 *[[Alfonso III of Kongo]] -- (1666-1667)
99227
99228 {{disambig}}
99229
99230 [[ca:Alfons III]]
99231 [[de:Liste der Herrscher namens Alfons]]
99232 [[es:Alfonso III]]
99233 [[fr:Alphonse III]]
99234 [[pt:Afonso III]]</text>
99235 </revision>
99236 </page>
99237 <page>
99238 <title>Amazon</title>
99239 <id>1693</id>
99240 <revision>
99241 <id>40867459</id>
99242 <timestamp>2006-02-23T15:12:37Z</timestamp>
99243 <contributor>
99244 <username>Dabbler</username>
99245 <id>139032</id>
99246 </contributor>
99247 <comment>/* Other */ fix link</comment>
99248 <text xml:space="preserve">The name '''''Amazon''''' may refer to several concepts:
99249
99250 ==Geography==
99251 *The [[Amazon River]], [[Amazon Rainforest]], and [[Amazon Basin]] through which it flows.
99252 *[[Amazonas]], the name of several administrative divisions in [[South America]] named after the river, including:
99253 **[[Amazonas Department, Colombia|Amazonas Department]], Colombia
99254 **[[Amazonas Region]], Peru
99255 **[[Amazonas State, Brazil]]
99256 **[[Amazonas State, Venezuela]]
99257 *[[Amazônia Legal]], a government-designated economic and environmental development region covering 61% of Brazil
99258
99259 ==Other==
99260 *The legendary [[Amazons]], women renowned in antiquity for their prowess in battle.
99261 *[[Amazon.com]], the large online store that began as an online book store but which has expanded as a seller of many goods.
99262 *[[Volvo Amazon]], a car model from Volvo. Perhaps as P120 in the US.
99263 *[[HMS Amazon|HMS ''Amazon'']], name of many ships of the Royal Navy
99264 *[[Amazon parrot]]s are a group of parrots native to the New World, which are usually predominantly green.
99265 *''[[Swallows and Amazons (series)|Swallows and Amazons]]'' is a series of children's books by English author Arthur Ransome.
99266 *[[The Game of the Amazons]], an abstract board game.
99267 *''[[Amazons (1986 film)]]''
99268 *[[Dahomey Amazons]], an all-female regiment of the African kingdom of Dahomey.
99269 *[[Amazon (band)]], formed in 2002.
99270 *Amazon or Amazonia, was the nom de guerre of a [[female gladiator]].
99271 *[[Amazon Guardians of Eden]] an adventure game developed by Access Software.
99272 *''[[Amazon Women on the Moon]]'', a 1987 comedic film.
99273 *[[Amazon (comics)]] is a female fictional character in the Marvel Universe.
99274 {{disambig}}
99275
99276 [[de:Amazonas (Begriffsklärung)]]
99277 [[es:Amazona]]
99278 [[fr:Amazone]]
99279 [[id:Amazon]]
99280 [[ja:ã‚ĸマゞãƒŗ]]
99281 [[mk:АĐŧаСОĐŊ]]
99282 [[nl:Amazone]]
99283 [[pl:Amazonka]]
99284 [[pt:Amazonas (desambiguaçÃŖo)]]
99285 [[ro:Amazon]]
99286 [[sv:Amazon]]
99287 [[zh:äēšéŠŦ孙]]</text>
99288 </revision>
99289 </page>
99290 <page>
99291 <title>Alfonso IV</title>
99292 <id>1694</id>
99293 <revision>
99294 <id>33093349</id>
99295 <timestamp>2005-12-29T06:35:44Z</timestamp>
99296 <contributor>
99297 <ip>83.226.101.102</ip>
99298 </contributor>
99299 <comment>link to zh</comment>
99300 <text xml:space="preserve">*[[Alfonso IV of Leon]] -- (924-931)
99301 *[[Afonso IV of Portugal]] -- (1291-1357)
99302 *[[Alfonso IV of Aragon]] -- (1327-1336)
99303
99304 {{disambig}}
99305
99306 [[pt:Afonso IV]]
99307 [[zh:é˜ŋæ–šį´ĸ四世]]</text>
99308 </revision>
99309 </page>
99310 <page>
99311 <title>Amazons</title>
99312 <id>1695</id>
99313 <revision>
99314 <id>41820621</id>
99315 <timestamp>2006-03-01T23:29:15Z</timestamp>
99316 <contributor>
99317 <username>Martial Law</username>
99318 <id>514543</id>
99319 </contributor>
99320 <comment>/* Modern depiction of Amazons */</comment>
99321 <text xml:space="preserve">{{dablink|This article is about the Amazon women of Greek mythology and similar cases. For other uses, see [[Amazons (disambiguation)]].}}
99322
99323 In [[Greek mythology]], the '''{{polytonic|áŧˆÎŧÎąÎļĪŒÎŊÎĩĪ‚}}, Amazons''' were either an ancient legendary nation of female warriors or a land dominated by women at the outer edges of their known world. The legends appear to have a nugget of factual basis in warrior women among the [[Scythia]]ns, but classical Greeks never ceased to be astounded at such role-reversals. Women in classical Greek society were expected to be passive and dependent on males. In early modern usage, the word was often used to refer to strong and independent women, in contrast to conventional stereotypes of women as weak and passive (see &quot;[[damsel in distress]]&quot;), but now &quot;amazon&quot; in such contexts has self-ironic overtones.
99324
99325 [[Image:1729.jpg|thumb|300px|The unidentified London cartographer, ''ca'' 1770, has placed ''Amazones'' in the north of ''[[Sarmatians|Sarmatia Asiatica]]'', based on Greek literary sources.]]
99326
99327 ==Etymology==
99328 The name {{polytonic|áŧˆÎŧÎąÎļĪŽÎŊ}} is probably derived from an [[Iranian peoples|Iranian]] [[ethnonym]], ''*ha-mazan-'', originally meaning &quot;warriors&quot;. A connected word is probably the [[Hesychius of Alexandria|Hesychius]] gloss {{polytonic|&amp;#7937;ÎŧÎąÎļÎąÎē&amp;#8049;ĪÎąÎŊ¡ Ī€ÎŋÎģÎĩÎŧÎĩ&amp;#8150;ÎŊ}} (&quot;to make war&quot;, containing the [[Indo-Iranian]] root ''kar-'' &quot;make&quot; also in ''[[karma|kar-ma]]'').
99329
99330 The Greek variant of the name was connected by [[popular etymology]] to [[privative a]] + ''mazos'', &quot;without [[breast]]&quot;, connected with an [[aetiological]] tradition that Amazons had their right breast cut off or burnt out, in order that they might be able to use the bow more freely (contemporary Greeks drew the bowstring to the [[sternum]]); there is no indication of this practice in works of art, in which the Amazons are always represented with both breasts, although the right is frequently covered. Other suggested derivations were: ''a-'' (intensive) + ''mazos'', breast, &quot;full-breasted&quot;; ''a'' (privative) and ''masso'', touch, &quot;not touching&quot; (men); ''maza'', a [[Circassian]] word said to signify &quot;moon&quot;, has suggested their connection with the worship of a moon-goddess, perhaps the Asiatic representative of [[Artemis]].
99331
99332 ==Amazons of Greek mythology==
99333 [[Image:AmazonBattle.JPG|thumbnail|right|''Amazon Preparing for Battle'' or ''Armed Venus'', by [[Pierre-Eugène-Emile HÊbert]].]]
99334 Amazons were said to have lived in [[Pontus]],which is part of modern day Turkey near the shore of the [[Euxine Sea]], where they formed an independent kingdom under the government of a queen, often named [[Hippolyta]] (&quot;she lets her horses loose&quot;). They were supposed to have founded many towns, amongst them [[Izmir|Smyrna]], [[Ephesus]], [[Sinope]], [[Paphos]]. According to another account, they originally came to the [[Thermodon]] from the ''Palus Maeotis'' (&quot;Lake Maeotis&quot;, the [[Sea of Azov]]).
99335
99336 In some versions, no men were permitted to reside in Amazon country; but once a year, in order to prevent their race from dying out, they visited the [[Gargareans]], a neighbouring tribe. The male children who were the result of these visits were either put to death or sent back to their fathers; the females were kept and brought up by their mothers, and trained in agricultural pursuits, hunting, and the art of war ([[Strabo]] xi. p. 503).
99337
99338 In the ''[[Iliad]]'', the Amazons were referred to as [[Antianeira]] (&quot;those who fight like men&quot;). [[Herodotus]] called them [[Androktones]] (&quot;killers of men&quot;).
99339
99340 The Amazons appear in connection with several Greek legends. They invaded [[Lycia]], but were defeated by [[Bellerophon]], who was sent out against them by [[Iobates]], the king of that country, in the hope that he might meet his death at their hands (''Iliad'', vi. 186). According to [[Diodorus Siculus|Diodorus]], Queen [[Myrine]] led them to victory against the [[Atlantis|Atlanteans]], [[Libya]] and much of [[Gorgon]].
99341
99342 They attacked the [[Phrygia]]ns, who were assisted by [[Priam]], then a young man (''Iliad'', iii. 189). Although in his later years, towards the end of the [[Trojan War]], his old opponents took his side again against the Greeks under their queen [[Penthesilea]], who was slain by [[Achilles]] (Quint. Smyr. i.; Justin ii. 4; Virgil, Aen. i. 490).
99343
99344 One of the tasks imposed upon [[Heracles]] by [[Eurystheus]] was to obtain possession of the girdle of the Amazonian queen [[Hippolyte]] (''[[Apollodorus]]'' ii. 5). He was accompanied by his friend [[Theseus]], who carried off the princess [[Antiope (mythology)|Antiope]], sister of Hippolyte, an incident which led to a retaliatory invasion of [[Attica, Greece|Attica]], in which Antiope perished fighting by the side of Theseus. In some versions, however, Theseus marries Hippolyta and in others, he marries Antiope and she does not die. The battle between the Athenians and Amazonians is often commemorated in an entire genre of art, [[amazonomachy]], marble carvings such as from the [[Parthenon]].
99345
99346 The Amazons are also said to have undertaken an
99347 expedition against the island of [[Leuke]], at the mouth of the [[Danube]], where the ashes of Achilles had been deposited by [[Thetis]]. The ghost of the dead hero appeared and so terrified the horses, that they threw and trampled upon the invaders, who were forced to retire. [[Pompey]] is said to have found them in the army of [[Mithradates]].
99348
99349 They are heard of in the time of [[Alexander the Great]], when some of the great king's biographers make mention of Amazon Queen [[Thalestris]] visiting him and becoming a mother by him. However, several other biographers of Alexander totally dispute the claim, including the highly regarded secondary source, [[Plutarch]]. In his writing he makes mention of when Alexander's secondary naval commander, [[Onesicritus]], was reading the Amazon passage of his Alexander history to King [[Lysimachus]] of [[Thrace]] who was on the original expedition, the king smiled at him and said &quot;And where was I, then?&quot;
99350
99351 The Roman writer [[Virgil]]'s character of the [[Volsci|Volscian]] warrior maiden ''Camilla'' in the ''[[Aeneid]]'' borrows heavily from the myth of the Amazonian.
99352
99353 ==Scythian origins==
99354
99355 In a recent excavation of [[Sarmatian]] sites by Dr. Jeannine Davis-Kimball, a tomb was found wherein female warriors were buried, thus lending some credence to the myths about the Amazons. Following the excavation in [[2003]] by Dr. Davis-Kimball, she and Dr. Joachim Burger compared the genetic evidence from the site with the nomadic [[Kazakh]]s, and have found a striking genetic link – verified later by the [[University of Cambridge]] [http://www.thirteen.org/pressroom/release.php?get=1272]
99356
99357 Before modern archaeology uncovered some of the Scythian burials of warrior-maidens entombed under [[kurgan]]s in the [[Altai]] region of Siberia, giving concrete form at last to the Greek tales of mounted Amazons, the origin of the story of the Amazons has been the subject of speculation among classics scholars. In the 1911 ''EncyclopÃĻdia Britannica'' speculation ranged along the following lines.
99358
99359 While some regard the Amazons as a purely mythical people, others assume an historical foundation for them. The deities worshipped by them were [[Ares]] (who is consistently assigned to them as a god of war, and as a god of [[Thrace|Thracian]] and generally northern origin) and [[Artemis]], not the usual Greek goddess of that name, but an Asiatic deity in some respects her equivalent. It is conjectured that the Amazons were originally the temple-servants and priestesses (''hierodulae'') of this goddess; and that the removal of the breast corresponded with the self-mutilation of the god [[Attis]] and the [[galli]], Roman priests of [[Cybele]]. Another theory is that, as the knowledge of geography extended, travellers brought back reports of tribes ruled entirely by women, who carried out the duties which elsewhere were regarded as peculiar to man, in whom alone the rights of nobility and inheritance were vested, and who had the supreme control of affairs. Hence arose the belief in the Amazons as a nation of female warriors, organized and governed entirely by women. According to J. Vurtheim (''De Ajacis origine'', [[1907]]), the Amazons were of Greek origin: &quot;all the Amazons were Dianas, as [[Diana (goddess)|Diana]] herself was an Amazon&quot;. It has been suggested that the fact of the conquest of the Amazons being assigned to the two famous heroes of Greek mythology, Heracles and Theseus &amp;ndash; who in the tasks assigned to them were generally opposed to monsters and beings impossible in themselves, but possible as illustrations of permanent danger and damage &amp;ndash; shows that they were mythical illustrations of the dangers which beset the Greeks on the coasts of Asia Minor; rather perhaps, it may be intended to represent the conflict between the Greek culture of the colonies on the [[Black Sea]] and the barbarism of the native inhabitants.
99360
99361 [[Herodotus]] reported that the [[Sarmatians]]/[[Sauromatians]] were descendants of Amazons and Scythians. Their [[Scythian]]/[[Saka]]/[[Cimmerian]]/[[Gomer]]ian origins are further proved by their origins from [[Thermodon]]'s Scythians who invaded there coming from around the [[Sea of Azov]] and their use of the bow and arrow as their primary weapon as well as fighting on horseback.
99362
99363 Medieval and Renaissance authors credit the Amazons with the invention of the [[battle-axe]]. This is probably related to the [[Sagaris]], an axe-like weapon associated with both Amazons and Scythian tribes by Greek authors (see also [[Aleksandrovo kurgan]]). [[Paulus Hector Mair]] expresses astonishment that such a &quot;manly weapon&quot; should have been invented by a &quot;tribe of women&quot;, but he accepts the attribution out of respect for his authority, [[Johannes Aventinus]].
99364
99365 ==Amazons in Greek art==
99366
99367 In works of art, battles between Amazons and Greeks are placed on the same level as and often associated with battles of Greeks and [[centaurs]]. The belief in their existence, however, having been once accepted and introduced into the national poetry and art, it became necessary to surround them as far as possible with the appearance of not unnatural beings. Their occupation was hunting and war; their arms the bow, spear, axe, a half shield, nearly in the shape of a crescent, called ''pelta'', and in early art a helmet, the model before the Greek mind having apparently been the goddess Athena. In later art they approach the model of Artemis, wearing a thin dress, girt high for speed; while on the later painted vases their dress is often peculiarly [[Iran|Persia]]n &amp;ndash; that is, close-fitting trousers and a high cap called the kidaris. They were usually on horseback but sometimes on foot. They can also be identified in vase paintings by the fact that they are wearing one earring. The battle between Theseus and the Amazons is a favourite subject on the friezes of temples (e.g. the reliefs from the frieze of the temple of [[Apollo]] at [[Bassae]], now in the [[British Museum]]), vases and sarcophagus reliefs; at [[Athens]] it was represented on the shield of the statue of [[Athena Parthenos]], on wall-paintings in the [[Theseum]] and in the [[stoa | ''Stoa Poikile'']]. Many of the sculptors of antiquity, including [[Pheidias]], [[Polyclitus]], [[Cresilas]] and [[Phradmon]], executed statues of Amazons; and there are many existing reproductions of these.
99368
99369 ===Legendary Amazons from Greek myth===
99370
99371 *[[Ainia]]
99372 *[[Antianara]]
99373 *[[Antibrote]]
99374 *[[Antiope (mythology)|Antiope]]
99375 *[[Asteria]]
99376 *[[Cleite]]
99377 *[[Helene (mythology)|Helene]]
99378 *[[Hippolyte]]
99379 *[[Melanippe]]
99380 *[[Otrera]]
99381 *[[Penthesilea]]
99382 *[[Thalestris]]
99383 *[[Thebe (mythology)|Thebe]]
99384
99385 ==Amazon-like figures in history and folklore==
99386 [[Image:Blenda.jpg|right|300px|thumb|'''[[Blenda]]''' leads the women in the defense of their villages, by Hugo Hamilton (1830)]]
99387 [[Image:Peter-nicolai-arbo-hervor.jpg|thumb|300px|The [[shieldmaiden]] [[Hervor]] dying after a battle with the [[Huns]] in ''[[Hervarar saga]]'']]
99388 [[Image:Dahomey amazon6.jpg|right|thumb|170px|Dahomey Amazons holding muskets. The horns are indicators of rank]]
99389 Armed women have often acted as royal [[bodyguard]]s throughout history. [[Chandragupta Maurya]] ([[322 BC|322]]&amp;ndash;[[298 BC]]), the first [[emperor]] to develop a centralized state in [[India]], had a personal guard composed of giant Greek women. Female royal guards re-appear 2000 years later in the [[History of India|history of India]] as guards for the [[Nizam]]s of [[Deccan]] and [[Hyderabad State|Hyderabad]]. And on the island of [[Sri Lanka]], the [[Kandy]] royal family had a royal guard of female [[archer]]s. In [[Europe]], [[Celt]]ic and [[Germanic tribes]] often had women fighting with their husbands. [[Tacitus]] tells us that [[Boadicea]] had more women than men in her army.
99390
99391 There is also a woman in the Old Testament, Deborah, who may be one of the first recorded instances of a woman participating in battle. She was a prophetess, a warrior, a leader, and a Judge of Israel, all in one. She correctly predicted that the enemy general, Sisera, who faced Israel at this time would be slain by a woman (the woman who killed him and also received credit for the army's victory was named Jael.) This story is chronicled in Judges.
99392
99393 In [[Scandinavia]], women who did not yet have the responsibility for raising a family could take up arms and live like warriors. They were called [[shieldmaiden]]s and many of them figure in [[Norse mythology]]. One of the most famous shieldmaidens was [[Hervor]] and she figures in the cycle of the magic sword [[Tyrfing]]. The Danish chronicler [[Saxo Grammaticus]] relates that when the Swedish king [[Sigurd Ring]] and the Danish king [[Harald Wartooth]] met at the [[Battle of BrÃĨvalla]], 300 shieldmaidens fought on the Danish side led by Visna. Saxo relates that the shieldmaidens fought with small shields and long swords.
99394
99395 Similarly, the '''[[Valkyries]]''' of [[Norse mythology]] are minor female deities, who serve [[Odin]]. The name means ''choosers of the slain''. The valkyries' purpose was to choose the most heroic of those who had died in battle and to carry them off to [[Valhalla]] where they became [[einherjar]]. This was necessary because Odin needed warriors to fight at his side at the preordained battle at the end of the world, [[Ragnarok|RagnarÃļk]].
99396
99397 A legend which may be based on the Greek Amazons appears in the history of [[Bohemia]]. As the story goes, a large band of women, lead by a certain [[Vlasta]], carried on war against the duke of Bohemia, and enslaved or put to death all men who fell into their hands; eventually, they were mercilessly defeated by the duke. In the [[16th century]] the [[Spain|Spanish]] explorer [[Francisco de Orellana|Orellana]] asserted that he had come into conflict with fighting women in [[South America]] on the [[MaraÃąÃŗn River]], which was named after them the [[Amazon River|Amazon]] or river of the Amazons, although others derive its name from the Indian amassona (boat-destroyer), applied to the tidal phenomenon known as the &quot;bore&quot;.
99398
99399 The armored warrior maiden (whose gender is often unsuspected) is a frequent character in the European chivalric epic. The most famous of these female knights is ''Bradamante'' -- daughter of Aymon, sister to the knight [[Renaud de Montauban]] (''Rinaldo'', ''Ranaldo'') and legendary ancestor to the house of [[Este]] -- who is destined to marry the knight ''Ruggiero'' (or ''Rugiero''). Her adventures are a major element in the Italian [[Renaissance]] epics ''[[Orlando Innamorato]]'' by [[Matteo Maria Boiardo]] and its continuation ''[[Orlando furioso]]'' by [[Ariosto]]. A similar character is the pagan warrior knight ''Clorinda'' who battles against the Christian crusaders in [[Torquato Tasso]]'s epic ''[[Jerusalem Delivered]]''. The vogue of such female knights in literature would continue though the seventeenth century and inspired not only dramatic recreations but also actual military feats (such as the [[Anne, Duchess of Montpensier|duchess of Montpensier]]'s participation in the [[Fronde]]).
99400
99401 The [[Dahomey Amazons]] were a 6000 strong military unit of [[Dahomey]] (now [[Benin]]) in [[West Africa]] who were active from the [[16th century|16th]] to the late [[19th century]]. They were largely successful in their battles with neighboring kingdoms, and were finally defeated by the [[France|French]]. [[Libya]] has a long history of Amazon women, which probably pre-dates the Greek Amazons. Even today, [[Gadaffi]] is guarded by female soldiers. Other [[Africa]]n ethnic groups who used fighting women were the [[Igbo (people)|Igbo]] and [[Fulani]], who integrated the women into their armies.
99402
99403 In the kingdom of [[Siam]] in the 19th century, the king had a personal battalion of 400 spear-wielding women. They were chosen from the most beautiful women of the country, and were said to be excellent spear-throwers, though they were regarded as too valuable to be sent to war. Almost all countries have female combatants in their history one time or the other; it is simply the matter of more or less.
99404
99405 Around 400 women secretly took part as soldiers in the [[American Civil War]]. For notable cases of women became soldiers, reference may be made to [[Mary Anne Talbot]] and [[Hannah Snell]].
99406
99407 In the 20th century, the states of the [[Soviet Union]] and [[Israel]] took the initiative to train and utilize women for light infantry and other combatant roles. Although these moves were initially motivated by the shortage of manpower, for example on USSR's western front in WWII, they led the way for the use of female combatants by the U.S. and other western nations.
99408
99409 ==Modern depiction of Amazons==
99410
99411 It has been noted that until the 20th century, Amazons were typically depicted in [[literature]] as an alien adversary that threatened the masculinity of heroes. As such, the typical goal of the heroes has been to defeat and humiliate them as a way of reasserting male superiority.
99412
99413 In the 20th century, Amazons were depicted with increasing sympathy. Today, the typical depiction of the characters is as an isolated community of powerful and beautiful warriors whom the male heroes are challenged to earn their respect to become valuable allies. The most famous modern example of an Amazon is the [[superhero]], [[Wonder Woman]]. Amazons were also frequently featured on the ''[[Xena: Warrior Princess]]'' and ''[[Hercules: The Legendary Journeys]]'' television series. [[Robert E. Howard]]'s minor character [[Red Sonja]], who was fleshed out more in the ''[[Conan the Barbarian]]'' comic books, and subsequently, in her own movie, also owes much to this modern sympathetic treatment of Amazons. An episode of [[Futurama]] had a planet of [[giant (mythology)|giant]] Amazon-like women where the cast gets stranded. [[Esther Freisner]] has published a series of [[anthology|anthologies]] on the theme of ''Chicks in [[Chainmail]]'', containing humorous takes on Amazon characters by a number of science fiction and fantasy writers.
99414
99415 The [[comic book]] series ''[[Y: The Last Man]]'', in which every male on Earth is wiped out in a mysterious plague, includes a hyper-feminist [[cult]] called the Daughters of the Amazon, who believe that [[Mother Earth]] cleansed itself of the &quot;aberration&quot; of the Y chromosome.
99416
99417 A [[Buck Rogers in the 25th Century (TV series)|Buck Rogers]] episode, ''Planet of the Amazon Women'' features a society composed solely of women, because all men were either killed in war or held as prisoners of war by their enemy.
99418
99419 A [[Star Trek]]: The Next Generation episode features similar women in &quot;Angel One&quot;. These women are large and strong and dominate the smaller, weaker, more servile men.
99420
99421 [[Zeus, Master of Olympus]], a computer game, features these women under the command of Artemis who is, depending on the scenario/campaign played, are either the player's allies or deadly enemies, since Artemis can either &quot;bless&quot; the game player's leader or &quot;curse&quot; the game player's leader, depending on the scenario/campaign played. Some scenarios also feature ''independent'' amazons, such as the Military 2 scenario and The Labors of Hercules scenario.
99422
99423 A [[Sliders]] Episode depicts women in control of a Earth, due to a germ warfare virus killing most of the men, and causing the survivors to be sterile, and left the women unaffected by it. When the male Sliders were found, they were mistaken for men that
99424 somehow escaped the plague, not knowing that they're aliens from another dimension, which they were.
99425
99426 A [[Stargate SG-1]] episode, Birthright, has the military unit from Earth asking woman warriors on another planet for aid against spaceborne and dimensional enemies.
99427
99428 A [[Thundarr the Barbarian]] episode, ''Attack of the Amazon Women'', depicts warlike women located in
99429 what was left of Mt. Rushmore. He and his companions defeated a female meglomaniac who had found a
99430 &quot;ancient&quot; nuclear warhead, and intended to use it in her attempt at conquest.
99431
99432 Another computer game, [[Diablo II]], depicts these women in it as a combat class.
99433
99434 In the [[Wheel of Time]] books by [[Robert Jordan]], the [[Aiel]] people have amazon warriors, called ''[[Far Dareis Mai]]'', &quot;Maidens of the Spear&quot;.
99435
99436 In The Television series [[Futurama]] the characters crash-land on a planet called &quot;Amazonia&quot; inhabited by a race of giant women (Amazonians). Episode 5 of Season 3, [http://en.wikipedia.org/wiki/Futurama_%28TV_series_-_season_3%29#Amazon_Women_in_the_Moodhttp://en.wikipedia.org/wiki/Futurama_%28TV_series_-_season_3%29#Amazon_Women_in_the_Mood Amazon Women in the Mood]
99437
99438 A [[Outer Limits]] episode, called [[Lithia]] depicts women who have survived all out war, incl. a nuclear attack and a germ warfare attack which killed all men. In this, a man, who was a [[Major]] in the US Military, was cryogenically frozen as part of a experiment before the war broke out, was revived by some women. He found that humanity survived the war, but were all women. Reproduction was carried out by using frozen sperm, but the virus kills male babies.
99439 Due to a social taboo, he was placed BACK into cryogenic stasis. This episode was shown on the [[Sci-Fi]] channel on 3-1-06 @ 3pm EST/EDT, was made in 1998.
99440
99441 ==See also==
99442 {{wikiquote}}
99443 *[[Timeline of women's participation in warfare]]
99444 *[[Valkyrie]]
99445 *[[Themis]]
99446 *[[Artemis]]
99447 *[[Diablo II#Amazon|Amazon Class: Diablo II]]
99448 *[[Virago]]
99449 *[[Joan of Ark]]
99450 *[[Amazon Women on the Moon]]
99451
99452 ==External links==
99453
99454 *[http://www.pbs.org/wnet/secrets/case_amazon/index.html Secrets of the Dead: Amazon Warrior Women (PBS)] - includes information on genetic and archaeological study of recent finds of skeletons in tombs
99455 *[http://www.moonspeaker.ca/amazonsframe.html Amazon Nation] The Amazons existed. But, their history has been long lost, or else so corrupted by later peoples who would rather we forgot them they are barely recognizable. This is a version of a book in progress, so you may notice differences if you were to compare it to a printed version.
99456 *[http://www.perseus.tufts.edu/cgi-bin/ptext?lookup=Hdt.+4.110.1 Herodotus on the Amazons]
99457 *[http://www.gutenberg.org/catalog/world/readfile?pageno=180&amp;fk_files=1131 Herodotus via Gutenberg]
99458 *[http://www.stevequayle.com/Giants/W.Europe/W.Europe4.html] The Amazons existed. They were originally warrior women of Scythians. Greeks later added them to their mythology even sometimes deitifying some of them.
99459 *[http://folk.uio.no/thomas/lists/amazon-connection.html The Amazon Connection] - A guide to online resources about Amazons, aiming to cover the entire spectrum of meaning that has been attributed to the term Amazon.
99460 *[http://folk.uio.no/thomas/lists/amazons.html Amazons International] - A newsletter dedicated to the image of the Amazon or female hero in fiction and in fact, in art and literature, in the physiques and feats of female athletes, and in gender-related and sexual orientations.
99461 *[http://www.theowljournal.com/article.php?issue=06&amp;story=04&amp;comments=1 Man-Handlers: Feminism in Ancient Greece] by Declan Jenkins, New College, Oxford, in [http://www.theowljournal.com ''The Owl Journal'']
99462 *[http://www.perseus.org/cgi-bin/ptext?doc=Perseus%3Atext%3A1999.04.0004%3Aid%3Damazon Perseus]
99463 *[http://www.sacred-texts.com/wmn/rca/rca02.htm THE AMAZONS IN GREEK LEGEND]
99464 *[http://www.straightdope.com/mailbag/mamazon.html Straight Dope]
99465 *[http://www.lisasmedman.topcities.com/page22.html Amazons of Mythology] Information on the European and North African Amazons of Greek mythology, comments on archaeological findings, plus an article on sites of interest in Turkey for modern travelers.
99466
99467 ==References==
99468 *[[A. D. Mordtmann]], ''Die Amazonen'' (1862)
99469 *[[W. Stricker]], ''Die Amazonen in Sage und Geschichte'' (1868)
99470 *[[A. Klugmann]], ''Die Amazonen in der attischen Literatur und Kunst'' (1875)
99471 *[[H. L. Krause]], ''Die Amazonensage'' (1893)
99472 *[[F. G. Bergmann]], ''Les Amazones dans l'histoire et dans la fable'' (1853)
99473 *[[P. Lacour]], ''Les Amazones'' (1901)
99474 *articles in [[Pauly-Wissowa]]'s ''Realencyclopadie,'' and [[W. H. Roscher]]'s ''Lexikon der Mythologie''
99475 *[[George Grote]], ''History of Greece,'' pt. i. ch. 11.
99476 *[[J. A. Salmonson]], ''The Encyclopedia of Amazons'' (1991), ISBN 0385423667
99477
99478 ==Sources==
99479 About twenty-five hundred years ago, [[Herodotus]] in ''Histories'' in book four records:
99480
99481 110. About the Sauromatai the following tale is told:--When the
99482 Hellenes had fought with the Amazons,--now the Amazons are called by the Scythians /Oiorpata/, which name means in the Hellenic tongue &quot;slayers of men,&quot; for &quot;man&quot; they call /oior/, and /pata/ means &quot;to slay,&quot;--then, as the story goes, the Hellenes, having conquered them in the battle at the Thermodon, were sailing away and conveying with them in three ships as many Amazons as they were able to take prisoners. These in the open sea set upon the men and cast them out of the ships; but they knew nothing about ships, nor how to use rudders or sails or oars, and after they had cast out the men they were driven
99483 about by wave and wind and came to that part of the Maiotian lake
99484 where Cremnoi stands; now Cremnoi is in the land of the free
99485 Scythians. There the Amazons disembarked from their ships and
99486 made their way into the country, and having met first with a troop of
99487 horses feeding they seized them, and mounted upon these they plundered
99488 the property of the Scythians.
99489
99490 111. The Scythians meanwhile were not
99491 able to understand the matter, for they did not know either their
99492 speech or their dress or the race to which they belonged, but were in
99493 wonder as to whence they had come and thought that they were men, of
99494 an age corresponding to their appearance: and finally they fought a
99495 battle against them, and after the battle the Scythians got possession
99496 of the bodies of the dead, and thus they discovered that they were
99497 women. They took counsel therefore and resolved by no means to go on
99498 trying to kill them, but to send against them the youngest men from
99499 among themselves, making conjecture of the number so as to send just
99500 as many men as there were women. These were told to encamp near them,
99501 and do whatsoever they should do; if however the women should come
99502 after them, they were not to fight but to retire before them, and when
99503 the women stopped, they were to approach near and encamp. This plan
99504 was adopted by the Scythians because they desired to have children
99505 born from them.
99506
99507 112. The young men accordingly were sent out and did
99508 that which had been commanded them: and when the Amazons perceived
99509 that they had not come to do them any harm, they let them alone; and
99510 the two camps approached nearer to one another every day: and the
99511 young men, like the Amazons, had nothing except their arms and their
99512 horses, and got their living, as the Amazons did, by hunting and by
99513 taking booty.
99514
99515 113. Now the Amazons at midday used to scatter abroad
99516 either one by one or by two together, dispersing to a distance from
99517 one another to ease themselves; and the Scythians also having
99518 perceived this did the same thing: and one of the Scythians came near
99519 to one of those Amazons who were apart by themselves, and she did not
99520 repulse him but allowed him to lie with her: and she could not speak
99521 to him, for they did not understand one another's speech, but she made
99522 signs to him with her hand to come on the following day to the same
99523 place and to bring another with him, signifying to him that there
99524 should be two of them, and that she would bring another with her. The
99525 young man therefore, when he returned, reported this to the others;
99526 and on the next day he came himself to the place and also brought
99527 another, and he found the Amazon awaiting him with another in her
99528 company. Then hearing this the rest of the young men also in their
99529 turn tamed for themselves the remainder of the Amazons;
99530
99531 114, and after
99532 this they joined their camps and lived together, each man having for
99533 his wife her with whom he had had dealings at first; and the men were
99534 not able to learn the speech of the women, but the women came to
99535 comprehend that of the men. So when they understood one another, the
99536 men spoke to the Amazons as follows: &quot;We have parents and we have
99537 possessions; now therefore let us no longer lead a life of this kind,
99538 but let us go away to the main body of our people and dwell with them;
99539 and we will have you for wives and no others.&quot; They however spoke thus
99540 in reply: &quot;We should not be able to live with your women, for we and
99541 they have not the same customs. We shoot with bows and hurl javelins
99542 and ride horses, but the works of women we never learnt; whereas your
99543 women do none of these things which we said, but stay in the waggons
99544 and work at the works of women, neither going out to the chase nor
99545 anywhither else. We therefore should not be able to live in agreement
99546 with them: but if ye desire to keep us for your wives and to be
99547 thought honest men, go to your parents and obtain from them your share
99548 of the goods, and then let us go and dwell by ourselves.&quot;
99549
99550 115. The young men agreed and did this; and when they had obtained the share of the goods which belonged to them and had returned back to the Amazons, the women spoke to them as follows: &quot;We are possessed by fear and trembling to think that we must dwell in this place, having not only separated you from your fathers, but also done great damage to your land. Since then ye think it right to have us as your wives, do this together with us,--come and let us remove from this land and pass over the river Tana also&quot;.
99551
99552 116. They crossed over the Tana rising sun for three days' journey from Tana North Wind for three days' journey from the Maiotian lake: and having arrived at the place where they are now settled, they took up their abode there: and from thenceforward the women of the Sauromatai practise their ancient way of living, going out regularly on horseback to the chase both in company with the men and apart from them, and going regularly to war, and wearing the same dress as the men.
99553
99554 117. And the Sauromatai make use of the Scythian tongue, speaking it barbarously however from the first, since the Amazons did not learn it thoroughly well. As regards marriages their rule is this, that no maiden is married until she has slain a man of their enemies; and some of them even grow old and die before they are married, because they are not able to fulfil the requirement of the law.&quot; [http://www.gutenberg.org/catalog/world/readfile?pageno=180&amp;fk_files=1131]
99555
99556 {{1911}}
99557
99558 {{Commonscat|Amazons}}
99559
99560 [[Category:Women in war]]
99561 [[Category:Greek mythology]]
99562 [[Category:Eurasian nomads]]
99563 [[Category:Scythians]]
99564 [[Category:Sarmatians]]
99565
99566 {{Link FA|no}}
99567
99568 [[ar:ØŖŲ…Ø§Ø˛ŲˆŲ†ŲŠØ§ØĒ]]
99569 [[da:Amazone]]
99570 [[de:Amazonen]]
99571 [[es:Amazona (mitología)]]
99572 [[eu:Amazona (mitologia)]]
99573 [[fr:Amazones]]
99574 [[it:Amazzoni]]
99575 [[he:אמזונו×Ē]]
99576 [[lt:Amazonė (mitologija)]]
99577 [[hu:Amazonok]]
99578 [[nl:Amazone (mythologie)]]
99579 [[no:Amasoner]]
99580 [[nn:Amasone]]
99581 [[pl:Amazonki]]
99582 [[pt:Amazonas (guerreiras)]]
99583 [[sl:Amazonka (mitologija)]]
99584 [[fi:Amatsonit]]
99585 [[sv:Amasoner]]
99586 [[uk:АĐŧаСОĐŊĐēи]]</text>
99587 </revision>
99588 </page>
99589 <page>
99590 <title>Alfonso V</title>
99591 <id>1696</id>
99592 <revision>
99593 <id>27036875</id>
99594 <timestamp>2005-11-01T03:39:58Z</timestamp>
99595 <contributor>
99596 <username>Joaopais</username>
99597 <id>94195</id>
99598 </contributor>
99599 <text xml:space="preserve">*[[Alfonso V of Castile]] -- (999-1028)
99600 *[[Alfonso V of Aragon]] -- (1416-1458) The Magnanimous
99601 *[[Afonso V of Portugal]] -- (1432-1481) The African
99602
99603 {{disambig}}
99604 [[pt:Afonso V]]</text>
99605 </revision>
99606 </page>
99607 <page>
99608 <title>Ambergris</title>
99609 <id>1697</id>
99610 <revision>
99611 <id>41860417</id>
99612 <timestamp>2006-03-02T05:03:51Z</timestamp>
99613 <contributor>
99614 <username>SDC</username>
99615 <id>181435</id>
99616 </contributor>
99617 <comment>/* Source */</comment>
99618 <text xml:space="preserve">'''Ambergris''' ('''Ambra grisea''', '''Ambre gris''', '''ambergrease''', or '''grey [[amber]]''') is a solid, fatty, flammable substance of a dull grey or blackish color, with the shades being variegated like [[marble]]. It possesses a peculiar sweet, earthy odour not unlike [[isopropyl alcohol]]. Now largely replaced by synthetics, it is occasionally still used as a [[fixative]] in [[perfumery]].
99619
99620 == Source ==
99621 Ambergris occurs as a [[biliary]] [[concretion]] in the [[intestines]] of the [[sperm whale]], and can be found floating upon the sea, on the sea-coast, or in the sand near the sea-coast. Because lumps of ambergris with embedded beaks of [[giant squid]] have been found, scientists have theorized that the whale's intestine produces the substance as a means of facilitating the passage of hard, sharp objects that the whale might have inadvertently eaten. Ambergris can be found in the [[Atlantic Ocean]]; on the coasts of [[Brazil]] and [[Madagascar]]; also on the coast of [[Africa]], of the [[East Indies]], [[China]], [[Japan]], [[Australia]] and the [[Maluku Islands|Molucca islands]]. However, most commercially collected ambergris came from the [[Bahama Islands]], [[New Providence Island|Providence Island]], etc. It is also sometimes found in the [[abdomen]]s of [[whale]]s.
99622
99623 == Physical properties ==
99624 Ambergris is found in lumps of various shapes and sizes, weighing from &amp;frac12; [[ounce|oz]] (14 [[gram|g]]) to 100 or more [[pound (mass)|pound]]s (45 or more [[kilogram|kg]]). When initially expelled by the whale or removed from it, the fatty precursor of ambergris is pale white in colour (sometimes streaked with black), soft in consistency, with a strong fecal smell. Following months to years of [[photo-degradation]] and [[oxidation]] in the ocean, this precursor gradually hardens, developing a dark grey or black colour, a crusty and waxy texture, and a peculiar odour that is at once sweet, earthy, marine, and animalic. Its smell has been described by many as a vastly richer and smoother version of [[isopropanol]] without its stinging harshness.
99625
99626 In this developed condition, ambergris has a [[specific gravity]] ranging from 0.780 to 0.926. It melts at about 62 [[degree (temperature)|&amp;deg;]][[celsius|C]] to a fatty, yellow resinous-like liquid; and at 100 &amp;deg;C it is volatilized into a white vapour. It is soluble in [[diethyl ether|ether]], and in volatile and fixed oils. Ambergris is relatively unreactive to [[acid]]. White crystals of a substance called [[ambrein]], which closely resembles [[cholesterol]], can be separated from ambergris by heating raw ambergris in alcohol then allowing the resulting solution to cool.
99627
99628 == Replacement compounds and economics ==
99629 Historically, the primary commercial use of ambergris has been in [[fragrance]] chemistry, although it has also been used for [[medicine|medicinal]] and [[flavoring]] purposes. Ambergris is one of the most important amber type odorants and is highly sought. However, it is difficult to get a consistent and reliable supply of high quality ambergris. Due to demand for ambergris and its high price, replacement compounds have been sought out by the fragrance industry and chemically [[chemical synthesis|synthesized]]. The most important of these is [[Ambrox]], which has taken its place as the most widely used amber odorant in [[perfume]] manufacture. The oldest and most commercially significant synthesis of Ambrox is from [[sclareol]] (primarily extracted from [[Clary sage]]), although syntheses have been devised from a variety of other [[secondary metabolites|natural products]], including [[cis-abienol]] and [[thujone]]. Procedures for the microbial production of Ambrox have also been devised.
99630
99631 Depending on its quality, raw ambergris fetches approximately USD$20 per gram. In the [[United States]], possession of any part of an endangered species &amp;mdash; including ambergris that has washed ashore &amp;mdash; is a violation of the [[Endangered Species Act]] of 1978.
99632
99633 ==In literature, cinema and music==
99634
99635 '''Ambergris''' is also a fictional city, named for &quot;the most secret and valued part of the whale&quot;, appearing in [[Jeff Vandermeer]]'s books ''[[City of Saints and Madmen]]'' and ''[[Shriek: An Afterword]]''.
99636 The word also appears in [[Ezra Pound]]'s poem ''Portrait d'une Femme''. Chapters XCI and XCII of ''[[Moby-Dick]]'' relate the extraction of ambergris from a deceased sperm whale.
99637
99638 In the 2001 motion picture [[Hannibal (film)|''Hannibal'']], [[Hannibal Lecter|Dr. Lecter's]] secret location in [[Florence, Italy]] was determined after FBI Agent Clarice Starling received a letter from him that was scented with a hand-engineered fragrance containing ambergris. Agent Starling consulted a team of fragrance industry experts who identified the presence of ambergris by smelling the letter and lamented their inability to work with this substance in the United States due to its prohibition.
99639
99640 '''Ambergris''' is mentioned during the ''[[Futurama]]'' episode [[Three Hundred Big Boys]] when the whale Mooshu is caused to vomit by the rotten fish it ingests when Leela swims with it.
99641
99642 In the [[Encyclopedia Brown]] series of children's detective stories, there is a story called &quot;The Case of Smelly Nellie and the Ambergris&quot;.
99643
99644 There was also a [[rock music|rock band]] called Ambergris, who released one self-titled album in 1970 through [[ABC Records]].
99645
99646 In the [[World of Warcraft]] [[video game]], players occasionally receive an item called Threshadon Ambergris from defeating [[Loch Ness Monster]]-like sea creatures.
99647
99648 '''Ambergris''' is mentioned in ''[[The Far Side of the World]]'', one of the ''[[Aubrey-Maturin series]]'' novels by [[Patrick O'Brian]].
99649
99650 A whale-sized block of ambergris plays a central role in artist [[Matthew Barney]]'s film ''[[Drawing Restraint 9]]''
99651
99652 ==External links==
99653 * [http://www.rsmas.miami.edu/support/lib/seas/seasQA/QAs/a/ambergris.html University of Miami Ambergris FAQ]
99654 * [http://www.naturalhistorymag.com/editors_pick/1933_05-06_pick.html Natural History Magazine Article: Floating Gold -- The Romance of Ambergris]
99655 * [http://www.netstrider.com/documents/ambergris/ Ambergris - A Pathfinder and Annotated Bibliography]
99656 * [http://www.laputanlogic.com/articles/2006/02/01-0159-300.html Article on Ambergris and its history]
99657 * [http://www.cropwatch.org/amber.htm On the chemistry and ethics of Ambergris]
99658
99659 {{1911}}
99660
99661 [[Category:Perfumery]]
99662 [[Category:Whale products]]
99663 [[Category:Animal glandular products]]
99664
99665 [[da:Ambra]]
99666 [[de:Ambra]]
99667 [[eo:ambro]]
99668 [[fr:Ambre gris]]
99669 [[nl:Amber (potvis)]]
99670 [[ja:鞍æļŽéĻ™]]
99671 [[pl:Ambra]]
99672 [[pt:Âmbar cinza]]
99673 [[ru:АĐŧĐąŅ€Đ°]]
99674 [[fi:Ambra]]
99675 [[sv:Ambra]]
99676 [[uk:АĐŧĐąŅ€Đ°]]
99677 [[zh:鞍æļŽéĻ™]]</text>
99678 </revision>
99679 </page>
99680 <page>
99681 <title>Ambiorix</title>
99682 <id>1698</id>
99683 <revision>
99684 <id>38961991</id>
99685 <timestamp>2006-02-09T20:27:27Z</timestamp>
99686 <contributor>
99687 <username>Gaius Cornelius</username>
99688 <id>293907</id>
99689 </contributor>
99690 <minor />
99691 <comment>[[WP:AWB|AWB assisted]] clean up + typo fix</comment>
99692 <text xml:space="preserve">'''Ambiorix''' was prince of the [[Eburones]], a [[Belgae|Belgic]] tribe of north-eastern [[Gaul]] ([[Gallia Belgica]]).
99693
99694 [[Image:Ambiorix.jpg|thumb|Statue of Ambiorix in [[Tongeren]].]]
99695 Although [[Julius Caesar]] had freed him from paying tribute to the [[Atuatuci]], Ambiorix joined [[Catuvolcus]] (winter, [[54 BC]]) in an uprising against the [[Roman Republic|Roman]] forces under [[Q. Titurius Sabinus]] and [[I. Aurunculeius Cotta]], and almost annihilated them. An attack on [[Quintus Cicero]] (brother of the orator), then stationed with a legion in the [[Nervii]]'s territory, failed due to the timely appearance of Caesar. Ambiorix is said to have found safety across the [[Rhine]], but his fate remains unknown. It is certain that Caesar attempted to capture him, eliminating the Eburones and destroying their land in the process.
99696
99697 A statue of of Ambiorix (actually a 19th century Romantic interpretation of what Ambiorix might have looked like) can be found in the [[Belgium|Belgian]] town of [[Tongeren]].
99698
99699 Caesar, ''[[Gallic Wars|De Bello Gallico]]'' v. 26-51, vi. 29-43,
99700 viii. 24; Dio Cassius xl. 7-11; Florus iii. 10.
99701
99702 ==External links==
99703 * [http://www.livius.org/am-ao/ambiorix/ambiorix.html Ambiorix] from www.livius.org
99704
99705 [[Category:Ancient Roman enemies and allies]]
99706 [[Category:Ancient Gauls]]
99707
99708 [[de:Ambiorix]]
99709 [[fr:Ambiorix]]
99710 [[li:Ambiorix]]
99711 [[nl:Ambiorix]]
99712 [[pt:Ambiorix]]
99713 [[sv:Ambiorix]]
99714
99715
99716 {{Ancient-Rome-bio-stub}}
99717 {{royalty-stub}}</text>
99718 </revision>
99719 </page>
99720 <page>
99721 <title>Alfonso VI</title>
99722 <id>1699</id>
99723 <revision>
99724 <id>38133427</id>
99725 <timestamp>2006-02-04T11:36:04Z</timestamp>
99726 <contributor>
99727 <username>Ft1</username>
99728 <id>875504</id>
99729 </contributor>
99730 <minor />
99731 <comment>+it</comment>
99732 <text xml:space="preserve">*[[Alfonso VI of Portugal]] -- (1643-1667) second king of the [[House of Braganza]]
99733 *[[Alfonso VI of Castile]] -- (1065-1109)
99734
99735 {{disambig}}
99736
99737 [[es:Alfonso VI]]
99738 [[it:Alfonso VI]]
99739 [[pt:Afonso VI]]
99740 [[sv:Alfonso VI]]</text>
99741 </revision>
99742 </page>
99743 <page>
99744 <title>August Wilhelm Ambros</title>
99745 <id>1700</id>
99746 <revision>
99747 <id>28106107</id>
99748 <timestamp>2005-11-12T10:46:30Z</timestamp>
99749 <contributor>
99750 <username>Bluebot</username>
99751 <id>527862</id>
99752 </contributor>
99753 <minor />
99754 <comment>Standardising 1911 references.</comment>
99755 <text xml:space="preserve">'''August Wilhelm Ambros''' ([[November 17]], [[1816]] &amp;ndash; [[June 28]], [[1876]]) was an [[Austrian]] composer and music historian of [[Czech people|Czech]] decent.
99756
99757 He was born at MÃŊto (''Mauth'') near [[Rokycany]], [[Bohemia]]. His father was a cultured man, and his mother was the sister of [[Raphael Georg Kiesewetter]] ([[1773]]-[[1850]]), the musical archaeologist and collector. Ambros was well-educated in music and the arts, which were his abiding passion. He was, however, destined for the law and an official career in the Austrian civil service, and he occupied various important posts under the ministry of justice, music being an avocation.
99758
99759 From [[1850]] onwards he became well-known as a critic and essay-writer, and in [[1860]] he began working on his magnum opus, his ''History of Music'', which was published at intervals from [[1864]] in five volumes, the last two ([[1878]], [[1882]]) being edited and completed by [[Otto Kade]] and [[Langhaus]].
99760
99761 Ambros became professor of the history of music at [[Prague]] in [[1869]]. He was an excellent pianist, and the author of numerous compositions somewhat reminiscent of [[Felix Mendelssohn]].
99762
99763 Ambros died at [[Vienna]], Austria at the age of 59.
99764
99765 ==References==
99766 *{{1911}}
99767
99768 [[Category:1816 births|Ambros, August Wilhelm]]
99769 [[Category:1876 deaths|Ambros, August Wilhelm]]
99770 [[Category:Austrian composers|Ambros, August Wilhelm]]
99771 [[Category:Romantic composers|Ambros, August Wilhelm]]
99772
99773 [[de:August Wilhelm Ambros]]
99774 [[pt:August Wilhelm Ambros]]</text>
99775 </revision>
99776 </page>
99777 <page>
99778 <title>Amazon River</title>
99779 <id>1701</id>
99780 <revision>
99781 <id>41789642</id>
99782 <timestamp>2006-03-01T19:41:32Z</timestamp>
99783 <contributor>
99784 <username>Gdr</username>
99785 <id>55814</id>
99786 </contributor>
99787 <comment>/* 20th century concerns */ reverft vandalism</comment>
99788 <text xml:space="preserve">{{Infobox_river | river_name = Amazon River
99789 | image_name = Amazon_river_basin.png
99790 | caption = Map showing the course of the Amazon, selected tributaries, and the approximate extent of its drainage area
99791 | origin = [[Nevado Mismi]]
99792 | mouth = [[Atlantic Ocean]]
99793 | basin_countries = [[Brazil]] (62.4%), [[Peru]] (16.3%)&lt;br&gt;[[Bolivia]] (12.0%), [[Colombia]] (6.3%)&lt;br&gt;[[Ecuador]] (2.1%)
99794 | length = 6,387 km (3,969 mi)
99795 | elevation = 5,597 m (18,364 ft)
99796 | discharge = 219,000 m&amp;sup3;/s (7,735,080 ft&amp;sup3;/s)
99797 | watershed = 6,915,000 km&amp;sup2; (2,669,882 mi&amp;sup2;)
99798 }}
99799
99800 The '''Amazon River''' (occasionally ''River Amazon''; [[Spanish language|Spanish]]: ''Río Amazonas'', [[Portuguese language|Portuguese]]: ''Rio Amazonas'') of [[South America]] is [[River lengths|one of the two longest]] [[river]]s on Earth, the other being the [[Nile]] in Africa. The Amazon has by far the greatest total flow of any river, carrying more than the [[Mississippi River|Mississippi]], [[Nile]], and [[Yangtze River|Yangtze]] rivers combined — so while it may not be the ''longest'' river, it is undoubtedly the ''largest''. Its [[drainage area]], called the [[Amazon Basin]], is the largest of any river system.
99801
99802 The quantity of fresh water released to the [[Atlantic Ocean]] is enormous: up to 300,000&amp;nbsp;m&amp;sup3; per second in the rainy season. Indeed, the Amazon is responsible for a fifth of the total volume of [[fresh water]] entering the oceans worldwide. It is said that offshore of the mouth of the Amazon [[potable]] water can be drawn from the ocean while still out of sight of the coastline, and the salinity of the ocean is notably lower a hundred miles out to sea.
99803
99804 The main river (which is usually between one and six miles wide) is navigable for large ocean steamers to [[Manaus]], 1,500 km (more than 900 miles) upriver from the mouth. Smaller ocean vessels of 3,000 tons[http://uk.encarta.msn.com/encyclopedia_761571466/Amazon.html] and 5.5 m (18 ft) [[Draft (nautical)|draft]][http://www.ultramargroup.com/TextosPeru/Per-013.html] can reach as far as [[Iquitos, Peru|Iquitos]], 3,600 km (2,250 miles) from the sea. Smaller riverboats can reach 780 km (486 mi) higher as far as [[Achual Point]]. Beyond that, small boats frequently ascend to the [[Pongo de Manseriche]], just above Achual Point.
99805
99806 The Amazon drains an area of some [[1 E12 m²|6,915,000km]]&amp;sup2; (2,722,000 mile&amp;sup2;), or some 40 percent of South America. It gathers its waters from 5 degrees north latitude to 20 degrees south [[latitude]]. Its most remote sources are found on the inter-[[Andes|Andean]] plateau, just a short distance from the [[Pacific Ocean]]; and, after a course of about 6,400 km (4,000 mi) through the interior of [[Peru]] and across [[Brazil]], it enters the [[Atlantic Ocean]] at the [[Equator|equator]].
99807
99808 The Amazon has changed its drainage several times, from westward in the early [[Cenozoic]] to its present eastward locomotion following the uplift of the [[Andes]].
99809
99810 ==Source and upper reaches==
99811 [[Image:Amazon_origin_at_Mismi.jpg|thumb|160px|right|The Amazon originates from a cliff at the [[Nevado Mismi]], with a sole sign of a wooden cross.]]
99812
99813 The ultimate source of the Amazon has only recently been firmly established as a stream on a 5,597 metre (18,363 ft) peak called [[Nevado Mismi]] in the Peruvian [[Andes]], roughly 160 km west of Lake [[Titicaca]] and 700 km S.E. of [[Lima, Peru|Lima]]. The mountain was first suggested as the source in [[1971]] but this was not confirmed until [[2001]]. The waters from Nevado Mismi flow into the [[Río Apurímac]] which is a tributary of the [[Ucayali]] which later joins the [[MaraÃąÃŗn River|MaraÃąÃŗn]] to form the Amazon proper.
99814
99815 After the confluence of [[Río Apurímac]] and [[Ucayali]], the river leaves Andean terrain and is instead surrounded by [[flood plain]]. From this point to the [[MaraÃąÃŗn River|MaraÃąÃŗn]], some 1,600 km (1,000 mi), the forested banks are just out of water, and are inundated long before the river attains its maximum flood-line. The low river banks are interrupted by only a few hills, and the river enters the enormous [[Amazon Rainforest]].
99816
99817 ==Amazonian Rainforest==
99818 {{main|Amazon Rainforest}}
99819 of the [[Andes]], the Amazon [[Rainforest]] begins. It is the largest rainforest in the world and is of great [[ecological]] significance, as its biomass is capable of absorbing enormous amounts of [[carbon dioxide]]. [[Conservation ethic|Conservation]] of the Amazon Rainforest has been a major issue in recent years.
99820
99821 The rainforest is supported by the extremely wet climate of the Amazon basin. The Amazon, and its hundreds of tributaries, flow slowly across the landscape, with an extremely shallow gradient sending them towards the sea: [[Manaus]], 1,600 km (1,000 mi) from the [[Atlantic]], is only 44 m (144 ft) above sea level.
99822
99823 The [[biodiversity]] within the rainforest is extraordinary: the region is home to at least 2.5 million insect species, tens of thousands of plants, and some 2,000 birds and mammals. One fifth of all the world's species of birds can be found in the Amazon rainforest.
99824
99825 The diversity of plant species in the Amazon basin is the highest on Earth. Some experts estimate that one square kilometre may contain over 75,000 types of trees and 150,000 species of higher plants. One square kilometre of Amazon rainforest can contain about 90,000 tons of living plants.
99826
99827 ==Flooding==
99828 [[Image:Amazon-river-NASA.jpg|thumb|250px|right|A [[NASA]] satellite image of a flooded portion of the river.]]
99829
99830 Seasonal rains give rise to extensive [[floods]] along the course of the Amazon and its tributaries. The average depth of the river in the height of the rainy season is 40 m (120 ft) and the average width can be nearly twenty-five miles. It starts to rise in November, and increases in volume until June, then falls until the end of October. The rise of the [[Negro River|Negro]] branch is not synchronous; the [[rainy season]] does not commence in its valley until February or March. By June it is full, and then it begins to fall with the Amazon. The [[Madeira River|Madeira]] rises and falls two months earlier than the Amazon.
99831
99832 The abundance of water in the Amazon basin is due to the fact that much of this lies in the region below the [[Intertropical convergence zone]], where rainfall is at a maximum. Also, the basin lies in the [[Trade Wind]] zone, where moisture from the Atlantic is pushed westwards, and eventually forced to rise over the [[Andes]], the second tallest mountain range on Earth, where the moist air cools and precipitates water. This combination creates more rainfall over a large river basin than anywhere else on the planet.
99833
99834 In the rainy season, the Amazon inundates the country throughout its course to the extent of several hundred thousand square miles, covering the flood-plain, called [[vargem]]. The flood-levels are, in some places, from 12 to 15 m (40 to 50 ft) higher than levels during the dry season. During the flood, the level at [[Iquitos]] is 6 m (20 ft); at [[Teffe]], it is 15 m (45 ft); near [[Óbidos, ParÃĄ|Óbidos]], 11 m (35 ft); and at [[ParÃĄ]], 4 m (12 ft), above the low-water extreme seen during the dry season.
99835 &lt;br clear=all /&gt;
99836
99837 ==Towards the sea==
99838 The breadth of the Amazon in some places is as much as 6 to 10 km (4 to 6 mi) from one bank to the other. At some points, for long distances, the river divides into two main streams with inland and lateral [[channel (geography)|channels]], all connected by a complicated system of natural [[canal]]s, cutting the low, flat igapo lands, which are never more than 5 m (15 ft) above low river, into almost numberless islands.
99839
99840 At the narrows of [[Óbidos, ParÃĄ|Óbidos]], 600 km (400 mi) from the sea, the Amazon narrows, flowing in a single streambed, a mile (1.6 km) wide and over 200 ft (60 m). deep, through which the water rushes toward the sea at the speed of 6 to 8 km/h (4 to 5 mph).
99841
99842 From the village of [[Canaria]] at the great bend of the Amazon to the Negro 1,000 km (600 mi) downstream, only very low land is found, resembling that at the mouth of the river. Vast areas of land in this region are submerged at high water, above which only the upper part of the trees of the sombre forests appear. Near the mouth of the Rio Negro to Serpa, nearly opposite the river Madeira, the banks of the Amazon are low, until approaching Manaus, they rise to become rolling hills. At Óbidos, a bluff 17 m (56 ft) above the river is backed by low hills. The lower Amazon seems to have once been a [[gulf]] of the [[Atlantic Ocean]], the waters of which washed the cliffs near Óbidos.
99843
99844 [[Image:Amazon near Manaus.jpg|thumb|left|250px|The Amazon near Manaus]]
99845
99846 Only about 10% of the water discharged by the Amazon enters the mighty stream downstream of Óbidos, very little of which is from the northern slope of the valley. The drainage area of the Amazon basin above Óbidos is about 5 million km&amp;sup2; (2 million mile&amp;sup2;), and, below, only about 1 million km&amp;sup2; (400,000 mile&amp;sup2;), or around 20%, exclusive of the 1.4 million km&amp;sup2; (600,000 mile&amp;sup2;) of the Tocantins basin.
99847
99848 In the lower reaches of the river, the north bank consists of a series of steep, table-topped [[hill]]s extending for about 240 km (150 mi) from opposite the mouth of the Xingu as far as [[Monte Alegre]]. These hills are cut down to a kind of [[Terrace (agriculture)|terrace]] which lies between them and the river.
99849
99850 Monte Alegre reaches an altitude of several hundred feet. On the south bank, above the Xingu, an almost-unbroken line of low [[bluff]]s bordering the flood-plain extends nearly to Santarem, in a series of gentle curves before they bend to the south-west, and, abutting upon the lower Tapajos, merge into the bluffs which form the terrace margin of the Tapajos river valley.
99851
99852 ==Mouth of the river==
99853 [[Image:Amazon-river-delta-NASA.jpg|thumb|250px|A satellite image of the mouth of the Amazon River, looking south]]
99854
99855 The width of the mouth of the river is usually measured from [[Cabo do Norte]] to [[Punto Patijoca]], a distance of some 330 km (207 mi); but this includes the ocean outlet, 60 km (40 mi) wide, of the Para river, which should be deducted, as this stream is only the lower reach of the Tocantins. It also includes the ocean frontage of [[MarajÃŗ]], an island about the size of [[Denmark]] lying in the mouth of the Amazon.
99856
99857 ==Tidal bore==
99858 Following the coast, a little to the north of Cabo do Norte, and for 160 km (100 miles) along its Guiana margin up the Amazon, is a belt of half-submerged islands and shallow sandbanks. Here the tidal phenomenon called the [[tidal bore|bore]], or ''Pororoca'', occurs, where the depths are not over 4 [[fathom]]s (7 m). The tidal bore starts with a roar, constantly increasing, and advances at the rate of from 15 to 25 km/h (10 to 15 mph), with a breaking wall of water from 1.5 to 4 m (5 to 12 ft) high. The bore is the reason the Amazon does not have a [[river delta|delta]]; the ocean rapidly carries away the vast volume of [[silt]] carried by the Amazon, making it impossible for a delta to grow. It also has a very large tide sometimes reaching 20 feet.
99859
99860 ==Wildlife==
99861 The waters of the Amazon support a diverse range of wildlife. Along with the [[Orinoco]], the river is one of the main habitats of the [[Boto]], also known as the Amazon River Dolphin. The largest species of river dolphin, it can grow to lengths of up to 2.6 m.
99862
99863 Also present in large numbers are the notorious [[Piranha]], carnivorous fish which congregate in large schools, and may attack livestock and even humans. Although many experts believe their reputation for ferocity is unwarranted, a school of piranha was apparently responsible for the deaths of up to 300 people when their boat capsized near [[Óbidos, ParÃĄ|Óbidos]] in [[1981]].
99864
99865 The [[Anaconda]] snake is found in shallow waters in the Amazon basin. One of the world's largest species of snake, the Anaconda spends most of its time in the water, with just its nostrils above the surface. Anacondas have been known very occasionally to attack fishermen.
99866
99867 The river also supports thousands of species of fish, as well as crabs and turtles.
99868
99869 ==European exploration==
99870 The first descent by a European of the Amazon from the [[Andes]] to the sea was made by [[Francisco de Orellana]] in 1541.
99871
99872 The first ascent by a European of the river was made in 1638 by [[Pedro Teixeira]], a [[Portugal|Portuguese]], who reversed the route of Orellana and reached [[Quito]] by way of the [[Napo River|Napo River]]. He returned in 1639 with the two [[Society of Jesus|Jesuit]] fathers [[Christoval de Acuna|Acuna]] and [[Artieda]], who had been delegated by the viceroy of [[Peru]] to accompany Texeira.
99873
99874 ==Name==
99875 Before the conquest of South America, the ''Río de las Amazonas'' had no general name; instead, indigenous peoples had names for the sections of the river they occupied, such as [[Paranaguazu]], [[Guyerma]], [[SolimÃĩes]] and others.
99876
99877 In the year 1500, [[Vicente YaÃąez Pinzon]], in command of a [[Spain|Spanish]] expedition, became the first European to explore the river, exploring its mouth when he discovered that the ocean off the shore was fresh water. Pinzon called the river the ''Rio Santa Maria de la Mar Dulce'', which soon became abbreviated to Mar Dulce, and for some years, after 1502, it was known as the Rio Grande.
99878
99879 Pinzon's companions called the river ''El Río MaraÃąÃŗn''. The word MaraÃąÃŗn is thought by some to be of indigenous origin. This idea was first stated in a letter from [[Pietro Martire Vermigli|Peter Martyr]] to [[Lope Hurtado de Mendoza]] in 1513. However, the word may also be derived from the [[Spanish language|Spanish]] word ''&quot;maraÃąa&quot;'' &amp;mdash; meaning a tangle, a snarl, which well represents the bewildering difficulties which the earlier explorers met in navigating not only the entrance to the Amazon, but the whole island-bordered, river-cut and indented coast of what is now the Brazilian state of [[MaranhÃŖo]].
99880
99881 The name ''Amazon'' arises from a battle which [[Francisco de Orellana]] had with a tribe of [[Tapuya]]s where the women of the tribe fought alongside the men, as was the custom among the entire tribe. Orellana derived the name Amazonas from the ancient [[Amazons]] of [[Asia]] and [[Africa]] described by [[Herodotus]] and [[Diodorus]].
99882
99883 ==Exploitation==
99884 &lt;!-- Unsourced image removed: [[Image:Solimoes_and_Negro_converge.jpg|thumb|left|250px|The SolimÃĩes and Negro rivers join near [[Manaus]]. The SolimÃĩes is laden with silt carried down from the Andes; the clear-running Negro has its source in a region with little sediment]] --&gt;
99885
99886 [[Image:Amazon at Iquitos.jpg|thumb|250px|left|The Amazon flows past the Malecon in [[Iquitos, Peru|Iquitos]].]]
99887
99888 For 350 years after the European discovery of the Amazon by Pinzon, the Portuguese portion of its basin remained an almost undisturbed wilderness, occupied by indigenous tribes split into countless fragments by their quest for food. Because of the difficulty of [[hunter-gatherer|hunting and gathering]] food, the indigenous inhabitants probably had a population density no higher than one person to every 13 km&amp;sup2; (5 sq. miles) of territory.
99889
99890 A few settlements on the banks of the main river and some of its tributaries had been founded by the Portuguese either for trade with the Indians or for evangelizing purposes. The total population of the Brazilian portion of the Amazon basin in 1850 was perhaps 300,000, of whom about two-thirds comprised by Europeans and slaves, the slaves amounting to about 25,000.
99891
99892 The principal commercial city, [[Para (city)|Para]], had from 10,000 to 12,000 inhabitants, including slaves. The town of ManÃĄos, now [[Manaus]], at the mouth of the Rio Negro, had from 1,000 to 1,500 population. All the remaining villages, as far up as [[Tabatinga]], on the Brazilian frontier of Peru, were very small.
99893
99894 On [[September 6]] [[1850]], the emperor, [[Dom Pedro II]], sanctioned a law authorizing steam navigation on the Amazon, and gave Barao Maua ([[Irineu Evangilista de Sousa]]) the task of putting it into effect. He organized the &quot;Compania de Navigacao e Commercio do Amazonas&quot; at Rio de Janeiro in 1852; and in the following year it commenced operations with three small steamers, the ''Monarch'', the ''MarajÃŗ'' and ''Rio Negro''.
99895
99896 At first, navigation was principally confined to the main river; and even in 1857 a modification of the government contract only obliged the company to a monthly service between Para and ManÃĄos, with steamers of 200 tons cargo capacity, a second line to make six round voyages a year between ManaÃŗs and Tabatinga, and a third, two trips a month between Para and Cameta. This was the first step in opening up the vast interior.
99897
99898 The success of the venture called attention to the opportunities for economic exploitation of the Amazon, and a second company soon opened commerce on the Madeira, Purus and Negro; a third established a line between Para and ManÃĄos; and a fourth found it profitable to navigate some of the smaller streams. In that same period, the Amazonas Company was increasing its fleet. Meanwhile, private individuals were building and running small steam craft of their own on the main river as well as on many of its tributaries.
99899
99900 On [[July 31]], 1867 the government of Brazil, constantly pressed by the maritime powers and by the countries encircling the upper Amazon basin, decreed the opening of the Amazon to all flags; but limited this to certain defined points: Tabatinga&amp;mdash;on the Amazon; Cameta&amp;mdash;on the Tocantins; Santarem&amp;mdash;on the Tapajos; Borba&amp;mdash;on the Madeira and ManÃĄos&amp;mdash;on the Rio Negro. The decree took effect on [[September 7]], 1867.
99901
99902 ManÃĄos (now Manaus), Para and Iquitos are now thriving commercial centres. The first direct foreign trade with ManÃĄos was commenced about 1874. The local trade of the river was carried on by the English successors to the Amazonas Company&amp;mdash;the Amazon Steam Navigation Company&amp;mdash;as well as numerous small river steamers, belonging to companies and firms engaged in the rubber trade, navigating the Negro, Madeira, Purfis and many other streams. The principal exports of the valley were [[Rubber|india-rubber]], [[cacao]], [[Brazil nut]]s and a few other products of very minor importance.
99903
99904 ==20th century concerns==
99905 Four centuries after the discovery of the Amazon river, the total cultivated area in its basin was probably less than 25 square miles (65 km&amp;sup2;), excluding the limited and rudely cultivated areas among the mountains at its extreme headwaters. This situation changed dramatically during the [[20th century]].
99906
99907 [[Image:Manaus-Amazon-NASA.jpg|thumb|250px|right|[[Manaus]], the largest city on the Amazon, as seen from a [[NASA]] satellite image, surrounded by the muddy Amazon River and the dark [[Negro River]].]]
99908
99909 Wary of foreign exploitation of the nation's resources, Brazilian governments in the 1940s set out to develop the interior, away from the seaboard where foreigners owned large tracts of land. The original architect of this expansion was President [[GetÃēlio Vargas]], the demand for rubber from the Allied forces in [[World War II]] providing funding for the drive.
99910
99911 The construction of the new capital [[Brasilia]] in the interior in [[1960]] also contributed to the opening up of the Amazon basin. A large scale colonization program saw families from north-eastern Brazil relocated to the forests, encouraged by promises of cheap land. Many settlements grew along the road from Brasilia to [[Belem]], but rainforest soil proved difficult to cultivate.
99912
99913 Still, long-term development plans continued. Roads were cut through the forests, and in 1970, the work on Trans-Amazon highway network began. The network's three pioneering highways were completed within ten years, connecting all the major cities of the Brazilian Amazon interior.
99914
99915 Cattle farming became a major impetus in [[deforestation]], with military governments in the [[1960s]] and [[1970s]] heavily subsidising the creation of large ranches. By the [[1980s]] the rate of destruction of the rainforest was dizzying, and it is estimated that over a fifth of the total area of the rainforest has now been [[clearcut]]. The preservation of the remaining forest is becoming an ever more prominent concern.
99916
99917 ==Major tributaries==
99918 The Amazon has over 1,000 [[Tributary | tributaries]] in total. Some of the more notable are:
99919
99920 {|
99921 |
99922 * [[Branco River|Branco]]
99923 * [[Casiquiare canal]]
99924 * [[Huallaga River|Huallaga]]
99925 * [[IÃ§ÃĄ River|IÃ§ÃĄ (or Putumayo)]]
99926 * [[Javary]]
99927 * [[Jurua]]
99928 * [[Madeira River|Madeira]]
99929 * [[MaraÃąÃŗn River|MaraÃąÃŗn]]
99930 * [[Morona]]
99931 * [[Nanay]]
99932 * [[Napo River|Napo]]
99933 |&amp;nbsp;&amp;nbsp;||
99934 * [[Negro River|Negro]]
99935 * [[Pastaza River|Pastaza]]
99936 * [[Purus]]
99937 * [[Río Tambo|Tambo]]
99938 * [[TapajÃŗs]]
99939 * [[Tigre River|Tigre]]
99940 * [[Tocantins River|Tocantins]]
99941 * [[Trombetas]]
99942 * [[Ucayali]]
99943 * [[Xingu River|Xingu]]
99944 * [[Yapura]]
99945 |}
99946
99947 ==Longest rivers in the Amazon system==
99948 # 6,387 km - [[Amazon River|Amazon]], [[South America]]
99949 # 3,379 km - [[Purus]], [[Peru]] / [[Brazil]], (2,948 km) (3,210 km)
99950 # 3,239 km - [[Madeira River|Madeira]], [[Bolivia]] / [[Brazil]]
99951 # 2,820 km - [[Yapura]], [[Colombia]] / [[Brazil]]
99952 # 2,750 km - [[Tocantins River|Tocantins]], [[Brazil]], (2,416 km) (2,640 km)
99953 # 2,575 km - [[Araguaia River|Araguaia]], [[Brazil]] (tributary of Tocantins)
99954 # 2,410 km - [[JuruÃĄ]], [[Peru]] / [[Brazil]]
99955 # 2,250 km - [[Negro River|Negro]], [[South America]]
99956 # 2,100 km - [[Xingu River|Xingu]], [[Brazil]]
99957 # 1,900 km - [[TapajÃŗs]], [[Brazil]]
99958 # 1,749 km - [[GuaporÊ]], [[Brazil]] / [[Bolivia]] (tributary of Madeira)
99959 # 1,575 km - [[IÃ§ÃĄ River|IÃ§ÃĄ (Putumayo)]], [[South America]]
99960 # 1,415 km - [[MaraÃąÃŗn River|MaraÃąÃŗn]], [[Peru]]
99961 # 1,300 km - [[Iriri River|Iriri]], [[Brazil]] (tributary of Xingu)
99962 # 1,240 km - [[Juruena]], [[Brazil]] (tributary of TapajÃŗs)
99963 # 1,200 km - [[TapajÃŗs]], [[Brazil]]
99964 # 1,130 km - [[Madre de Dios River|Madre de Dios]], [[Peru]] / [[Bolivia]] (tributary of Madeira)
99965 # 1,100 km - [[Huallaga River|Huallaga]], [[Peru]] (tributary of MaraÃąÃŗn)
99966
99967 ==External links==
99968 {{Commons|Amazon river}}
99969 *[http://www.destination360.com/south-america/brazil/amazon.php Amazon River and Amazon Rainforest virtual tour]
99970 *[http://www.extremescience.com/AmazonRiver.htm Information on the Amazon from Extreme Science]
99971 *[http://mitosyfraudes.8k.com/photoEng-2.html Map of South America]
99972 *[http://www.underwatercolours.com/amazon/ss07.html Pictures of the Amazon River]
99973 *[http://www.junglephotos.com Amazon River and rainforest photos and information]
99974 *[http://www.amazon-rainforest.org Amazon River and Amazon rainforest information]
99975 *[http://www.mbarron.net/Amazon An Amazon River web site]
99976 *[http://earthtrends.wri.org/maps_spatial/maps_detail_static.cfm?map_select=410&amp;theme=2 Information and a map of the Amazon's watershed]
99977
99978 ==References==
99979 *{{1911}}
99980
99981 [[Category:Rivers of Brazil]]
99982 [[Category:Rivers of Colombia]]
99983 [[Category:Rivers of Peru]]
99984
99985 [[ar:ØŖŲ…Ø§Ø˛ŲˆŲ†]]
99986 [[an:Río Amazonas]]
99987 [[bg:АĐŧаСОĐŊĐēĐ°]]
99988 [[ca:Riu Amazones]]
99989 [[cs:Amazonka]]
99990 [[da:Amazonfloden]]
99991 [[de:Amazonas]]
99992 [[et:Amazonas]]
99993 [[es:Río Amazonas]]
99994 [[eo:Amazono (rivero)]]
99995 [[fa:ØąŲˆØ¯ØŽØ§Ų†Ų‡ ØĸŲ…Ø§Ø˛ŲˆŲ†]]
99996 [[fr:Amazone (fleuve)]]
99997 [[gl:Río Amazonas]]
99998 [[ko:ė•„마ėĄ´ 강]]
99999 [[io:Amazon]]
100000 [[id:Sungai Amazon]]
100001 [[is:AmasÃŗnfljÃŗt]]
100002 [[it:Rio delle Amazzoni]]
100003 [[he:אמזונאס (נהר)]]
100004 [[lt:Amazonė (upė)]]
100005 [[lb:Amazonas]]
100006 [[hu:Amazonas]]
100007 [[nl:Amazone (rivier)]]
100008 [[ja:ã‚ĸマゞãƒŗåˇ]]
100009 [[no:Amazonaselva]]
100010 [[nn:Amazonaselva]]
100011 [[pl:Amazonka (rzeka)]]
100012 [[pt:Rio Amazonas]]
100013 [[ro:Amazon (fluviu)]]
100014 [[ru:АĐŧаСОĐŊĐēĐ° (Ņ€ĐĩĐēĐ°)]]
100015 [[simple:Amazon River]]
100016 [[sl:Amazonka]]
100017 [[sr:АĐŧаСОĐŊ]]
100018 [[fi:Amazon (joki)]]
100019 [[sv:Amazonfloden]]
100020 [[ta:āŽ…āŽŽā¯‡āŽšāŽžāŽŠā¯ āŽ†āŽąā¯]]
100021 [[th:āšā¸Ąāšˆā¸™āš‰ā¸ŗāšā¸­ā¸Ąā¸°ā¸‹ā¸­ā¸™]]
100022 [[zh:äēšéŠŦ逊æ˛ŗ]]</text>
100023 </revision>
100024 </page>
100025 <page>
100026 <title>Alured of Beverley</title>
100027 <id>1702</id>
100028 <revision>
100029 <id>15900167</id>
100030 <timestamp>2005-01-06T14:00:41Z</timestamp>
100031 <contributor>
100032 <username>Stbalbach</username>
100033 <id>87883</id>
100034 </contributor>
100035 <text xml:space="preserve">Alredus, or '''Alfred of Beverley''', [[English historians in the Middle Ages|English chronicler]], was [[sacristan]] of the church of [[Beverley]] in the first half of the 12th century.
100036
100037 He wrote, apparently about the year 1143, a [[chronicle]] entitled ''Annales sive Historia de gestis regum Britanniae'', which begins with [[Brutus of Britain|Brutus]] and carries the history of [[England]] down to 1129.
100038
100039 [[Geoffrey of Monmouth]] and [[Simeon of Durham]] are Alured's chief sources.
100040
100041 ----
100042
100043 {{1911}}
100044
100045 [[Category:Medieval historians]]
100046 [[Category:Medieval literature]]</text>
100047 </revision>
100048 </page>
100049 <page>
100050 <title>Alphonso VII</title>
100051 <id>1703</id>
100052 <revision>
100053 <id>15900168</id>
100054 <timestamp>2002-12-29T07:43:22Z</timestamp>
100055 <contributor>
100056 <username>Montrealais</username>
100057 <id>3378</id>
100058 </contributor>
100059 <text xml:space="preserve">#REDIRECT [[Alfonso VII of Castile]]</text>
100060 </revision>
100061 </page>
100062 <page>
100063 <title>Alphonso VIII</title>
100064 <id>1704</id>
100065 <revision>
100066 <id>15900169</id>
100067 <timestamp>2002-12-29T07:32:56Z</timestamp>
100068 <contributor>
100069 <username>Montrealais</username>
100070 <id>3378</id>
100071 </contributor>
100072 <minor />
100073 <text xml:space="preserve">#REDIRECT [[Alfonso VIII of Castile]]</text>
100074 </revision>
100075 </page>
100076 <page>
100077 <title>Alphonso IX</title>
100078 <id>1705</id>
100079 <revision>
100080 <id>15900170</id>
100081 <timestamp>2004-08-06T23:34:23Z</timestamp>
100082 <contributor>
100083 <username>Timwi</username>
100084 <id>13051</id>
100085 </contributor>
100086 <minor />
100087 <comment>fix double-redirect</comment>
100088 <text xml:space="preserve">#REDIRECT [[Alfonso IX of Leon]]</text>
100089 </revision>
100090 </page>
100091 <page>
100092 <title>Alphonso X</title>
100093 <id>1706</id>
100094 <revision>
100095 <id>15900171</id>
100096 <timestamp>2002-12-29T07:57:21Z</timestamp>
100097 <contributor>
100098 <username>Montrealais</username>
100099 <id>3378</id>
100100 </contributor>
100101 <text xml:space="preserve">#REDIRECT [[Alfonso X of Castile]]</text>
100102 </revision>
100103 </page>
100104 <page>
100105 <title>Alphonso XI</title>
100106 <id>1707</id>
100107 <revision>
100108 <id>15900172</id>
100109 <timestamp>2002-12-29T16:00:15Z</timestamp>
100110 <contributor>
100111 <username>Montrealais</username>
100112 <id>3378</id>
100113 </contributor>
100114 <text xml:space="preserve">#REDIRECT [[Alfonso XI of Castile]]</text>
100115 </revision>
100116 </page>
100117 <page>
100118 <title>Alphonso XII</title>
100119 <id>1708</id>
100120 <revision>
100121 <id>15900173</id>
100122 <timestamp>2002-12-29T16:21:51Z</timestamp>
100123 <contributor>
100124 <username>Montrealais</username>
100125 <id>3378</id>
100126 </contributor>
100127 <text xml:space="preserve">#REDIRECT [[Alfonso XII of Spain]]</text>
100128 </revision>
100129 </page>
100130 <page>
100131 <title>Alphonso XIII</title>
100132 <id>1709</id>
100133 <revision>
100134 <id>15900174</id>
100135 <timestamp>2002-12-29T16:30:43Z</timestamp>
100136 <contributor>
100137 <username>Montrealais</username>
100138 <id>3378</id>
100139 </contributor>
100140 <text xml:space="preserve">#REDIRECT [[Alfonso XIII of Spain]]</text>
100141 </revision>
100142 </page>
100143 <page>
100144 <title>April 22</title>
100145 <id>1710</id>
100146 <revision>
100147 <id>41602295</id>
100148 <timestamp>2006-02-28T12:41:47Z</timestamp>
100149 <contributor>
100150 <ip>86.131.6.251</ip>
100151 </contributor>
100152 <comment>/* Births */ rm graffito</comment>
100153 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
100154 {| style=&quot;float:right;&quot;
100155 |-
100156 |{{AprilCalendar}}
100157 |-
100158 |{{ThisDateInRecentYears|Month=April|Day=22}}
100159 |}
100160 '''[[April 22]]''' is the 112th day of the year in the [[Gregorian calendar]] (113th in [[leap year]]s). There are 253 days remaining.
100161 ==Events==
100162 *[[1500]] - [[Portugal|Portuguese]] navigator [[Pedro Álvares Cabral]] becomes the first European to sight [[Brazil]].
100163 *[[1509]] - [[Henry VIII of England|Henry VIII]] ascends the throne of [[England]] after the death of his father.
100164 *[[1529]] - [[Treaty of Saragossa]] divides the eastern hemisphere between [[Spain]] and [[Portugal]] along a line 297.5 leagues or 17° east of the [[Moluccas]].
100165 *[[1836]] - [[Texas Revolution]]: A day after the [[Battle of San Jacinto]] forces under [[Republic of Texas|Texas]] General [[Sam Houston]] capture [[Mexico|Mexican]] General [[Antonio LÃŗpez de Santa Anna]].
100166 *[[1863]] - [[American Civil War]]: [[Grierson's Raid]] begins &amp;ndash; troops under [[United States|Union]] Colonel [[Benjamin Grierson]] attack central [[Mississippi]].
100167 *[[1864]] - The [[Congress of the United States|U.S. Congress]] passes the [[Coinage Act (1864)|Coinage Act]] which mandates that the inscription &quot;In God We Trust&quot; be placed on all coins minted as [[United States currency]].
100168 *[[1889]] - [[Oklahoma land rush]]: President [[Benjamin Harrison]] opens the [[Unassigned_Lands|Unassigned Lands]] in what is now central [[Oklahoma]] to white settlement.
100169 *[[1898]] - [[Spanish-American War]]: The [[United States Navy]] begins a [[blockade]] of [[Cuba]]n ports and the [[USS Nashville]] captures a [[Spain|Spanish]] merchant ship.
100170 *[[1913]] - ''[[Pravda]],'' the &quot;voice&quot; of the [[Communist Party of the Soviet Union]], begins publications in [[Saint Petersburg]].
100171 *[[1914]] - [[Babe Ruth]], age 19, pitches his first professional game for the minor league [[Baltimore Orioles (minor league)|Baltimore Orioles]].
100172 *[[1915]] - The [[use of poison gas in World War I]] escalates when [[chlorine|chlorine gas]] is released as a [[chemical warfare|chemical weapon]] in the [[Second Battle of Ypres]].
100173 *[[1930]] - The [[United Kingdom]], [[Japan]] and the [[United States]] sign the [[London Naval Treaty]] regulating [[submarine]] warfare and limiting [[shipbuilding]].
100174 *[[1943]] - [[Albert Hofmann]] writes his first report about the hallucinogenic properties of [[LSD]].
100175 *[[1944]] - [[World War II]]: [[Operation Persecution]] initiated &amp;ndash; [[Allies|Allied]] forces land in the Hollandia area of [[New Guinea]].
100176 *[[1945]] - World War II: After learning that [[Soviet Union|Soviet]] forces have taken [[Eberswalde]] without a fight, [[Adolf Hitler]] admits defeat in his underground [[bunker]] and states that [[suicide]] is his only recourse.
100177 *[[1946]] - The first installment of the popular [[Japan]]ese comic strip, ''[[Sazae-san]]'', is published in the [[Fukunichi Shimbun]].
100178 *[[1954]] - [[Red Scare]]: [[Army-McCarthy Hearings]] begin.
100179 *[[1964]] - The [[1964 New York World's Fair|1964-1965 New York World's Fair]] opens for its first season.
100180 *[[1970]] - First [[Earth Day]] celebrated.
100181 *[[1971]] - [[John Kerry]], dressed in combat fatigues, testifies on his views of the [[Vietnam War]] before the [[U.S. Senate Committee on Foreign Relations|United States Senate Foreign Relations Committee]]
100182 *[[1972]] - [[Vietnam War]]: Increased [[United States|American]] bombing in [[Vietnam]] prompts antiwar protests in [[New York City]], [[San Francisco, California|San Francisco]], and [[Los Angeles, California|Los Angeles]].
100183 *[[1975]] - [[Barbara Walters]] signs a five-year $5 million contract with the American Broadcasting Corporation (ABC), becoming the highest paid [[television]] newsperson.
100184 *[[1978]] - [[The Blues Brothers]] make their first appearance on ''[[Saturday Night Live]]''.
100185 *[[1979]] - [[Brent Mydland]] performs his first show with the [[Grateful Dead]] at [[Spartan Stadium, San Jose|Spartan Stadium]], [[San Jose, California]].
100186 *[[1993]] - In [[Washington, DC]], the [[Holocaust Memorial Museum]] is dedicated.
100187 * 1993 - The web browser [[Mosaic (web browser)|Mosaic]] version 1.0 is released.
100188 *[[1996]] - [[Cisco Systems]] acquires [[StrataCom]] for $4B
100189 *[[1997]] - [[Haouch Khemisti massacre]] in [[Algeria]]; 93 villagers killed.
100190 * 1997 - A 126-day hostage crisis at the residence of the [[Japan]]ese ambassador in [[Lima, Peru|Lima]], [[Peru]] ends after government commandos storm and capture the building, rescuing 71 hostages. One hostage dies of a [[Myocardial infarction|heart attack]], two soldiers are killed from rebel fire, and all 14 rebels are slain.
100191 *[[2000]] - In a predawn raid, federal agents seize six-year-old [[EliÃĄn GonzÃĄlez]] from his relatives' home in [[Miami, Florida]].
100192 * 2000 - The [[Big Number Change]] takes place in the [[United Kingdom]].
100193 *[[2004]] - Two fuel trains collide in [[Ryongchon]], [[North Korea]], killing up to 150 people.
100194 *[[2005]] - [[Mordechai Vanunu]] installed as [[Lord Rector]] of the [[University of Glasgow]].
100195
100196 ==Births==
100197 *[[1451]] - Queen [[Isabella of Castile]] and Leon (d. [[1504]])
100198 *[[1550]] - [[Edward de Vere]], Lord Great Chamberlain of England (d. [[1604]])
100199 *[[1610]] - [[Pope Alexander VIII]] (d. [[1691]])
100200 *[[1658]] - [[Giuseppe Torelli]], Italian composer (d. [[1709]])
100201 *[[1690]] - [[John Carteret, 2nd Earl Granville]], English statesman (d. [[1763]])
100202 *[[1692]] - [[James Stirling (mathematician)|James Stirling]], Scottish mathematician (d. [[1770]])
100203 *[[1707]] - [[Henry Fielding]], English author (d. [[1754]])
100204 *[[1711]] - [[Eleazar Wheelock]], American founder of Dartmouth College (d. [[1779]])
100205 *[[1724]] - [[Immanuel Kant]], German philosopher (d. [[1804]])
100206 *[[1766]] - [[Madame de StaÃĢl]], French author (d. [[1817]])
100207 *[[1812]] - [[Solomon Caesar Malan]], British orientalist (d. [[1894]])
100208 *[[1840]] - [[Odilon Redon]], French painter (d. [[1916]])
100209 *[[1844]] - [[Lewis Thornton Powell]], would-be [[assassin]] of [[Secretary of State]] [[William Seward]] (d. [[1865]])
100210 *[[1852]] - [[Guillaume IV, Grand Duke of Luxembourg]] (d. [[1912]])
100211 *[[1854]] - [[Henri La Fontaine]], Belgian lawyer and activist, recipient of the [[Nobel Peace Prize]] (d. [[1943]])
100212 *[[1860]] - [[Ada Rehan]], American stage actress (d. [[1916]])
100213 *[[1870]] (N.S.) - [[Vladimir Lenin]], Russian revolutionary (d. [[1924]])
100214 *[[1873]] - [[Ellen Glasgow]], American author (d. [[1945]])
100215 *[[1876]] - [[Robert BÃĄrÃĄny]], American physician, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1936]])
100216 *1876 - [[Georg Lurich]], Estonian wrestler (d. [[1920]])
100217 *[[1881]] - [[Alexander Kerensky]], Russian politician (d. [[1970]])
100218 *[[1884]] - [[Otto Rank]], Austrian psychologist (d. [[1939]])
100219 *[[1891]] - [[Harold Jeffreys]], English astronomer (d. [[1989]])
100220 *[[1899]] - [[Vladimir Nabokov]], Russian writer (d. [[1977]])
100221 *[[1904]] - [[Robert Oppenheimer]], American physicist (d. [[1967]])
100222 *[[1906]] - [[Eddie Albert]], American actor (d. [[2005]])
100223 *1906 - [[Prince Gustaf Adolf, Duke of Westrobothnia]], second in line to the Swedish throne (d. [[1946]])
100224 *[[1907]] - [[Ivan Efremov]], Russian paleontologist and author (d. [[1972]])
100225 *[[1909]] - [[Rita Levi-Montalcini]], Italian neurologist, recipient of the [[Nobel Prize in Physiology or Medicine]]
100226 *[[1910]] - [[Norman Steenrod]], American mathematician (d. [[1971]])
100227 *[[1912]] - [[Kathleen Ferrier]], British contralto (d. [[1953]])
100228 *[[1914]] - [[Jan de Hartog]], Dutch writer (d. [[2002]])
100229 *[[1916]] - [[Yehudi Menuhin]], American-born violinist (d. [[1999]])
100230 *[[1918]] - [[Mickey Vernon]], baseball player
100231 *[[1919]] - [[Donald J. Cram]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[2001]])
100232 *[[1922]] - [[Charles Mingus]], American musician (d. [[1979]])
100233 *1922 - [[Wolf V. Vishniac]], American microbiologist (d. [[1973]])
100234 *[[1923]] - [[Bettie Page]], American model
100235 *1923 - [[Aaron Spelling]], American television producer and writer
100236 *[[1926]] - [[Charlotte Rae]], American actress
100237 *1926 - [[James Stirling (architect)|James Stirling]], British architect (d. [[1992]])
100238 *[[1935]] - [[Paul Chambers]], American jazz bassist (d. [[1969]])
100239 *[[1936]] - [[Glen Campbell]], American musician
100240 *[[1937]] - [[Jack Nicholson]], American actor
100241 *1937 - [[Jack Nitzsche]], American composer and arranger (d. [[2000]])
100242 *[[1939]] - [[Jason Miller (actor)|Jason Miller]], American actor (d. [[2001]])
100243 *[[1943]] - [[Louise GlÃŧck]], American poet
100244 *[[1944]] - [[Steve Fossett]], American adventurer
100245 *[[1946]] - [[John Waters (filmmaker)|John Waters]], American film writer and director
100246 *[[1950]] - [[Peter Frampton]], British musician
100247 *[[1952]] - [[Marilyn Chambers]], American actress
100248 *[[1958]] - [[Ken Olandt]], American actor
100249 *[[1959]] - [[Catherine Mary Stewart]], Canadian actress
100250 *1959 - [[Ryan Stiles]], Canadian-born actor and comedian
100251 *[[1962]] - [[Jeff Minter]], British video game programmer
100252 *[[1965]] - [[Peter Zezel]], Canadian ice hockey player
100253 *[[1967]] - [[Sheryl Lee]], American actress
100254 *[[1968]] - [[Zarley Zalapski]], Canadian ice hockey player
100255 *[[1970]] - [[Andrea Giani]], Italian volleyball player
100256 *[[1972]] - [[Owen Finegan]], Australian International Rugby Union
100257 *[[1974]] - [[Shavo Odadjian]], Armenian-born bassist ([[System of a Down]])
100258 *[[1975]] - [[Greg Moore (race car driver)|Greg Moore]], Canadian race car driver (d. [[1999]])
100259 *[[1977]] - [[Andruw Jones]], baseball player
100260 *[[1979]] - [[Daniel Johns]], lead singer of Australian band [[Silverchair]]
100261 *[[1981]] - [[Ken Dorsey]], American football player
100262 *[[1982]] - [[KakÃĄ]], Brazilian footballer
100263 *[[1983]] - [[Matt Jones]], American football player
100264
100265 ==Deaths==
100266 *[[296]] - [[Pope Caius]]
100267 *[[536]] - [[Pope Agapetus I]]
100268 *[[1592]] - [[Bartolomeo Ammanati]], Italian architect and sculptor (b. [[1511]])
100269 *[[1672]] - [[Georg Stiernhielm]], Swedish poet (b. [[1598]])
100270 *[[1699]] - [[Hans Erasmus Aßmann, Freiherr von Abschatz]], German statesman and poet (b. [[1646]])
100271 *[[1758]] - [[Antoine de Jussieu]], French naturalist (b. [[1686]])
100272 *[[1778]] - [[James Hargreaves]], English weaver, carpenter, and inventor (b. [[1720]])
100273 *[[1806]] - [[Pierre-Charles Villeneuve]], French admiral (stabbed) (b. [[1763]])
100274 *[[1833]] - [[Richard Trevithick]], English inventor (b. [[1771]])
100275 *[[1892]] - [[Edouard Lalo]], French composer (b. [[1823]])
100276 *[[1896]] - [[Thomas Meik]], British civil engineer (b. [[1812]])
100277 *[[1908]] - [[Henry Campbell-Bannerman]], [[Prime Minister of the United Kingdom]] (b. [[1836]])
100278 *[[1925]] - [[AndrÊ Caplet]], French composer (b. [[1878]])
100279 *[[1930]] - [[Jeppe Aakjaer]], Danish poet and novelist {b. [[1866]])
100280 *[[1945]] - [[Käthe Kollwitz]], German artist (b. [[1867]])
100281 *[[1946]] - [[Harlan Fiske Stone|Harlan F. Stone]], [[Chief Justice of the United States Supreme Court]] (b. [[1872]])
100282 *[[1951]] - [[Horace Donisthorpe]], British entomologist (b. [[1870]])
100283 *[[1968]] - [[Stephen H. Sholes]], American recording executive (b. [[1911]])
100284 *[[1978]] - [[Will Geer]], American actor and activist (b. [[1902]])
100285 *[[1980]] - [[Jane Froman]], American actor and singer (b. [[1907]])
100286 *1980 - [[Fritz Strassmann]], German physicist (b. [[1902]])
100287 *[[1983]] - [[Earl Hines|Earl &quot;Fatha&quot; Hines]], British jazz pianist (b. [[1903]])
100288 *[[1984]] - [[Ansel Adams]], American photographer (b. [[1902]])
100289 *[[1985]] - [[Paul H. Emmett]], American chemical engineer (b. [[1900]])
100290 *[[1986]] - [[Mircea Eliade]], Romanian writer and philosopher (b. [[1907]])
100291 *[[1994]] - [[Richard Nixon]], [[President of the United States]] (b. [[1913]])
100292 *[[1995]] - [[Maggie Kuhn]], American activist (b. [[1905]])
100293 *[[1996]] - [[Erma Bombeck]], American humorist and writer (b. [[1927]])
100294 *[[2002]] - [[Linda Lovelace]], American actress (b. [[1949]])
100295 *[[2003]] - [[Martha Griffiths]], U.S. Congresswoman (b. [[1912]])
100296 * 2003 - [[Michael Larrabee]], American athlete (b. [[1933]])
100297 *[[2004]] - [[Pat Tillman]], American football player and U.S. Army Ranger (killed in action) (b. [[1976]])
100298 *[[2005]] - [[Philip Morrison]], American physicist (b. [[1915]])
100299
100300 ==Holidays and observances==
100301 *[[Earth Day]]
100302 *[[Brazil]] - [[Discovery Day]]
100303
100304 ==External links==
100305 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/22 BBC: On This Day]
100306
100307 ----
100308
100309 [[April 21]] - [[April 23]] - [[March 22]] - [[May 22]] &amp;ndash; [[historical anniversaries|listing of all days]]
100310
100311 {{months}}
100312
100313 [[ceb:Abril 22]]
100314 [[nap:22 'e abbrile]]
100315 [[war:Abril 22]]
100316 [[pam:Abril 22]]
100317
100318 [[af:22 April]]
100319 [[ar:22 ØŖØ¨ØąŲŠŲ„]]
100320 [[an:22 d'abril]]
100321 [[ast:22 d'abril]]
100322 [[bg:22 Đ°ĐŋŅ€Đ¸Đģ]]
100323 [[be:22 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
100324 [[bs:22. april]]
100325 [[ca:22 d'abril]]
100326 [[cv:АĐēĐ°, 22]]
100327 [[co:22 d'aprile]]
100328 [[cs:22. duben]]
100329 [[cy:22 Ebrill]]
100330 [[da:22. april]]
100331 [[de:22. April]]
100332 [[et:22. aprill]]
100333 [[el:22 ΑĪ€ĪÎšÎģίÎŋĪ…]]
100334 [[es:22 de abril]]
100335 [[eo:22-a de aprilo]]
100336 [[eu:Apirilaren 22]]
100337 [[fo:22. apríl]]
100338 [[fr:22 avril]]
100339 [[fy:22 april]]
100340 [[ga:22 AibreÃĄn]]
100341 [[gl:22 de abril]]
100342 [[ko:4ė›” 22ėŧ]]
100343 [[hr:22. travnja]]
100344 [[io:22 di aprilo]]
100345 [[id:22 April]]
100346 [[ia:22 de april]]
100347 [[ie:22 april]]
100348 [[is:22. apríl]]
100349 [[it:22 aprile]]
100350 [[he:22 באפריל]]
100351 [[jv:22 April]]
100352 [[kn:ā˛Žā˛Ēāŗā˛°ā˛ŋā˛˛āŗ āŗ¨āŗ¨]]
100353 [[ka:22 აპრილი]]
100354 [[csb:22 łÅŧÃĢkwiôta]]
100355 [[ku:22'ÃĒ avrÃĒlÃĒ]]
100356 [[la:22 Aprilis]]
100357 [[lt:BalandÅžio 22]]
100358 [[lb:22. AbrÃĢll]]
100359 [[li:22 april]]
100360 [[hu:Április 22]]
100361 [[mk:22 Đ°ĐŋŅ€Đ¸Đģ]]
100362 [[ms:22 April]]
100363 [[nl:22 april]]
100364 [[ja:4月22æ—Ĩ]]
100365 [[no:22. april]]
100366 [[nn:22. april]]
100367 [[oc:22 d'abril]]
100368 [[pl:22 kwietnia]]
100369 [[pt:22 de Abril]]
100370 [[ro:22 aprilie]]
100371 [[ru:22 Đ°ĐŋŅ€ĐĩĐģŅ]]
100372 [[se:CuoŋomÃĄnu 22.]]
100373 [[sq:22 Prill]]
100374 [[scn:22 di aprili]]
100375 [[simple:April 22]]
100376 [[sk:22. apríl]]
100377 [[sl:22. april]]
100378 [[sr:22. Đ°ĐŋŅ€Đ¸Đģ]]
100379 [[fi:22. huhtikuuta]]
100380 [[sv:22 april]]
100381 [[tl:Abril 22]]
100382 [[tt:22. Äpril]]
100383 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 22]]
100384 [[th:22 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
100385 [[vi:22 thÃĄng 4]]
100386 [[tr:22 Nisan]]
100387 [[uk:22 ĐēвŅ–Ņ‚ĐŊŅ]]
100388 [[ur:22 اŲžØąÛŒŲ„]]
100389 [[wa:22 d' avri]]
100390 [[zh:4月22æ—Ĩ]]</text>
100391 </revision>
100392 </page>
100393 <page>
100394 <title>August 31</title>
100395 <id>1711</id>
100396 <revision>
100397 <id>41781229</id>
100398 <timestamp>2006-03-01T18:30:55Z</timestamp>
100399 <contributor>
100400 <username>Rklawton</username>
100401 <id>754622</id>
100402 </contributor>
100403 <minor />
100404 <comment>/* Deaths */ same event</comment>
100405 <text xml:space="preserve">{| style=&quot;float:right;&quot;
100406 |-
100407 |{{AugustCalendar}}
100408 |-
100409 |{{ThisDateInRecentYears|Month=August|Day=31}}
100410 |}
100411 '''[[August 31]]''' is the 243rd day of the year in the [[Gregorian calendar]] (244th in leap years), with 122 days remaining.
100412
100413 ==Events==
100414 *[[1056]] - [[List of Byzantine Emperors|Byzantine Empress]] [[Theodora (11th century)|Theodora]] dies suddenly without children to succeed the [[throne]], ending the [[Macedonian dynasty]]
100415 *[[1864]] - [[American Civil War]]: [[United States|Union]] forces led by General [[William T. Sherman]] launch an assault on [[Atlanta, Georgia]].
100416 *[[1876]] - [[Ottoman sultan]] [[Murat V]] is deposed and succeeded by his brother [[Abd-ul-Hamid II]].
100417 *[[1886]] - [[Charleston earthquake | Earthquake]] kills 100 in [[Charleston, South Carolina]]
100418 *[[1888]] - Mary Ann Nicholls is murdered. She is perhaps the first of [[Jack the Ripper]]'s victims
100419 *[[1895]] - John Brallier is paid [[US$]]10 plus expenses to play football for the [[Latrobe, Pennsylvania]] YMCA, making him the first professional [[American football|football]] player.
100420 *[[1897]] - [[Thomas Edison]] patents the [[Kinetoscope]], the first movie projector.
100421 *[[1907]] - [[England]], [[Russia]] and [[France]] form the [[Triple Entente]] [[military alliance|alliance]].
100422 *[[1914]] - [[Ecuador]] becomes a signatory to the [[Buenos Aires Convention|Buenos Aires]] [[copyright]] [[treaty]].
100423 *[[1915]] - [[Brazil]] becomes a signatory to the [[Buenos Aires Convention|Buenos Aires]] [[copyright]] [[treaty]].
100424 *[[1920]] - [[Polish-Bolshevik War]]: A decisive Polish victory in the [[Battle of KomarÃŗw]].
100425 *1920 - First [[news radio]] program broadcast in [[Detroit, Michigan|Detroit]], [[Michigan]].
100426 *[[1939]] - [[Nazi Germany]] mounts a staged [[Gleiwitz incident|attack on Gleiwitz radio station]], giving them an excuse to attack [[Poland]] the following day, starting [[European Theatre of World War II|World War II in Europe]].
100427 *[[1943]] - The [[USS Harmon (DE-678)|USS ''Harmon'']], the first [[United States Navy|U.S. Navy]] ship to be named for a black person, is commissioned.
100428 *[[1945]] - The [[Liberal Party of Australia]] is founded by [[Robert Menzies]].
100429 *[[1957]] - The [[Federation of Malaya]] gains its independence from the [[United Kingdom]].
100430 *[[1962]] - [[Trinidad and Tobago]] become independent.
100431 *[[1965]] - The [[Aero Spacelines Super Guppy]] [[Aircraft]] makes its first flight.
100432 *[[1978]] - [[William Harris (terrorist)|William]] and [[Emily Harris]], founders of the [[Symbionese Liberation Army]], plead guilty to the [[1974]] kidnapping of newspaper heiress [[Patricia Hearst]].
100433 *[[1980]] - The [[Solidarity]] [[trade union]] is formed in Poland.
100434 *[[1985]] - [[Richard Ramirez]], the &quot;Night Stalker&quot; [[serial killer]], is arrested in [[Los Angeles, California|Los Angeles]], [[California]].
100435 *[[1986]] - An [[AeromÊxico]] [[Douglas DC-9]] collides with a [[Piper Cherokee|Piper PA-28]] over [[Cerritos, California|Cerritos]], [[California]], killing 67 in the air and 15 on the ground.
100436 *1986 - The [[Soviet Union|Soviet]] passenger liner ''[[Admiral Nakhimov (ship)|Admiral Nakhimov]]'' sinks in the Black Sea after colliding with the bulk carrier ''Pyotr Vasev'', killing 398.
100437 *[[1989]] - [[Buckingham Palace]] officials confirm that [[Anne, Princess Royal|Princess Anne]] and [[Captain]] [[Mark Phillips]] are separating.
100438 *[[1991]] - [[Kyrgyzstan]] declares its independence from the [[Soviet Union]].
100439 *[[1992]] - [[Pascal Lissouba]] is inaugurated as the [[Republic of the Congo|President]] of the [[Republic of the Congo]] after a [[Republic of the Congo presidential election, 1992|multiparty presidential election]], ending a long history of one-party oppressive rule under the [[Congolese Workers Party]].
100440 *[[1994]] - The [[Provisional Irish Republican Army]] declares a [[ceasefire]].
100441 *[[1997]] - [[Diana, Princess of Wales|Diana]], [[Prince of Wales|Princess of Wales]], dies in a [[Car accident|car crash]] in [[Paris]].
100442 *[[1998]] - [[North Korea]] reportedly launchs ''[[Kwangmyongsong]]'', its first [[artificial satellite|satellite]].
100443 *[[1999]] - The first of a series of [[Russian Apartment Bombings]] in [[Moscow]], killing one person and wounding 40 others.
100444 *[[2004]] - [[Mel Gibson]]'s film ''[[The Passion of the Christ]]'' is released on [[DVD]] and [[VHS]] in stores across the [[United States]], selling approximately 4.1 million copies by the end of the day.
100445 *[[2005]] - A [[Baghdad bridge stampede|stampede]] on [[Al-Aaimmah bridge]] in [[Baghdad]] kills 1,199 people.
100446
100447 ==Births==
100448 *[[12]] - Gaius [[Caligula]], [[Roman Emperor]] (d. [[41]])
100449 *[[161]] - [[Commodus]], [[Roman Emperor]] (d. [[192]])
100450 *[[1569]] - [[Jahangir]], Mughal Emperor of India (d. [[1627]])
100451 *[[1663]] - [[Guillaume Amontons]], French physicist and instrument maker (d. [[1705]])
100452 *[[1721]] - [[George Hervey, 2nd Earl of Bristol]], British statesman (d. [[1775]])
100453 *[[1811]] - [[Theophile Gautier]], French poet and novelist (d. [[1872]])
100454 *[[1821]] - [[Hermann von Helmholtz]], German physician (d. [[1894]])
100455 *[[1834]] - [[Amilcare Ponchielli]], Italian composer (d. [[1886]])
100456 *[[1870]] - [[Maria Montessori]], Italian educator (d. [[1952]])
100457 *[[1878]] - [[Frank Jarvis]], American athlete (d. [[1933]])
100458 *[[1879]] - [[Alma Mahler]], wife of [[Gustav Mahler]], [[Walter Gropius]], and [[Franz Werfel]] (d. [[1964]])
100459 *[[1880]] - Queen [[Wilhelmina I of the Netherlands]] (d. [[1962]])
100460 *[[1885]] - [[DuBose Heyward]], American playwright (d. [[1940]])
100461 *[[1897]] - [[Fredric March]], American actor (d. [[1975]])
100462 *[[1903]] - [[Arthur Godfrey]], American television host (d. [[1983]])
100463 *[[1907]] - [[Ramon Magsaysay]], [[President of the Philippines]] (d. [[1957]])
100464 *1907 - [[William Shawn]], American editor (d. [[1992]])
100465 *[[1908]] - [[William Saroyan]], American novelist and playwright (d. [[1981]])
100466 *[[1913]] - Sir [[Bernard Lovell]], British radio astronomer
100467 *[[1914]] - [[Richard Basehart]], American actor (d. [[1984]])
100468 *[[1916]] - [[Daniel Schorr]], American journalist
100469 *[[1918]] - [[Alan Jay Lerner]], American composer (d. [[1986]])
100470 *[[1924]] - [[Buddy Hackett]], American actor and comedian (d. [[2003]])
100471 *[[1928]] - [[James Coburn]], American actor (d. [[2002]])
100472 *[[1931]] - [[Noble Willingham]], American actor (d. [[2004]])
100473 *[[1935]] - [[Frank Robinson]], baseball player and manager
100474 *1935 - [[Eldridge Cleaver]], American political activist (d. [[1998]])
100475 *[[1938]] - [[Martin Bell]], British journalist and politician
100476 *[[1945]] - [[Van Morrison]], Irish musician
100477 *1945 - [[Itzhak Perlman]], Israeli violinist
100478 *[[1948]] - [[Lowell Ganz]], American screenwriter
100479 *1948 - [[Rudolf Schenker]], German guitarist ([[Scorpions (band)|Scorpions]])
100480 *[[1949]] - [[Richard Gere]], American actor
100481 *1949 - [[H. David Politzer]], American physicist, [[Nobel Prize]] laureate
100482 *[[1953]] - [[GyÃļrgy KÃĄroly]], Hungarian author
100483 *[[1956]] - [[Masashi Tashiro]], Japanese television performer
100484 *[[1958]] - [[Edwin Moses]], American athlete
100485 *[[1961]] - [[Anri]], [[J-pop|Japanese Singer]]
100486 *[[1968]] - [[Todd Carty]], British actor
100487 *[[1970]] - [[Deborah Gibson]], American singer
100488 *1970 - [[Queen Rania]], Queen of Jordan and wife of King Abdullah II
100489 *[[1972]] - [[Chris Tucker]], American actor
100490 *[[1977]] - [[Jeff Hardy]], American professional wrestler
100491 *1977 - [[Craig Nicholls]], Australian singer, songwriter, and guitarist ([[The Vines]])
100492 *[[1982]] - [[JosÊ Manuel Reina PÃĄez|Jose Reina]], Spanish footballer
100493
100494 ==Deaths==
100495 *[[651]] - [[Saint Aidan of Lindisfarne]], Irish bishop and missionary
100496 *[[1056]] - [[Theodora (11th century)|Theodora]], Byzantine Empress (b. [[981]])
100497 *[[1234]] - [[Emperor Go-Horikawa]] of Japan (b. [[1212]])
100498 *[[1372]] - [[Ralph Stafford, 1st Earl of Stafford]], English soldier (b. [[1301]])
100499 *[[1422]] - King [[Henry V of England]] (b. [[1387]])
100500 *[[1645]] - [[Francesco Bracciolini]], Italian poet (b. [[1566]])
100501 *[[1654]] - [[Ole Worm]], Danish physician (b. [[1588]])
100502 *[[1688]] - [[John Bunyan]], English writer (b. [[1628]])
100503 *[[1741]] - [[Johann Gottlieb Heineccius]], German jurist (b. [[1681]])
100504 *[[1772]] - [[William Borlase]], English naturalist (b. [[1695]])
100505 *[[1782]] - [[George Croghan]], American colonist
100506 *[[1795]] - [[François-AndrÊ Danican Philidor]], French chess player (b. [[1726]])
100507 *[[1799]] - [[Nicolas-Henri Jardin]], French architect (b. [[1720]])
100508 *[[1814]] - [[Arthur Phillip]], British admiral, first Governor of New South Wales (b. [[1738]])
100509 *[[1867]] - [[Charles Baudelaire]], French poet (b. [[1821]])
100510 *[[1920]] - [[Wilhelm Wundt]], German psychologist (b. [[1832]])
100511 *[[1941]] - [[Marina Tsvetaeva]], Russian poet (b. [[1892]])
100512 *[[1963]] - [[Georges Braque]], French painter (b. [[1882]])
100513 *[[1967]] - [[Ilya Ehrenburg]], Russian writer (b. [[1891]])
100514 *[[1969]] - [[Rocky Marciano]], American boxer (b. [[1923]])
100515 *[[1973]] - [[John Ford]], American film director (b. [[1894]])
100516 *[[1978]] - [[John Wrathall]], [[President of Rhodesia]] (b. [[1913]])
100517 *[[1979]] - [[Sally Rand]], American dancer and actress (b. [[1904]])
100518 *[[1985]] - [[Frank Macfarlane Burnet]], Australian biologist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1899]])
100519 *[[1986]] - [[Henry Moore]], English sculptor (b. [[1898]])
100520 *1986 - [[Urho Kekkonen]], [[President of Finland]] (b. [[1900]])
100521 *[[1997]] - [[Diana, Princess of Wales]] (vehicular collision) (b. [[1961]])
100522 **[[Dodi Fayed]], Egyptian-born film producer (vehicular collision) (b. [[1955]])
100523 *[[2002]] - [[Lionel Hampton]], American vibraphone player (b. [[1908]])
100524 *2002 - [[George Porter]], English chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1920]])
100525 *[[2004]] - [[Carl Wayne]], English singer (b. [[1943]])
100526 *[[2005]] - [[JÃŗzef Rotblat]], Polish physicist, recipient of the [[Nobel Peace Prize]] (b. [[1908]])
100527 *2005 - [[Michael Sheard]], British actor (b. [[1940]])
100528
100529 ==Holidays and observances==
100530 * [[Calendar of Saints]] - Saint [[Aidan of Lindisfarne]], [[San Abbondio]], Saint [[Raymond Nonnatus]]
100531 * [[Moldova]]: Day of Our Language (Limba Noastra)
100532 * [[Malaysia]] - [[Hari Merdeka]], a [[National Day]] ([[Independence Day|independence]] within the Commonwealth, [[1957]])
100533 * [[Kyrgyzstan]] - [[Independence Day]] (from USSR, [[1991]])
100534 * [[Trinidad and Tobago]] - [[Independence Day]] (from Great Britain, [[1962]])
100535 &lt;!--* [[United Kingdom]] - the cut-off day which defines the [[school year]] for students.--&gt;
100536
100537 ==External links==
100538 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/31 BBC: On This Day]
100539
100540 -----
100541
100542 [[August 30]] - [[September 1]] - [[July 31]] - [[September 30]] -- [[historical anniversaries|listing of all days]]
100543
100544 {{months}}
100545
100546 [[af:31 Augustus]]
100547 [[ar:31 ØŖØēØŗØˇØŗ]]
100548 [[an:31 d'agosto]]
100549 [[ast:31 d'agostu]]
100550 [[bg:31 авĐŗŅƒŅŅ‚]]
100551 [[be:31 ĐļĐŊŅ–ŅžĐŊŅ]]
100552 [[bs:31. avgust]]
100553 [[ca:31 d'agost]]
100554 [[ceb:Agosto 31]]
100555 [[cv:ÇŅƒŅ€ĐģĐ°, 31]]
100556 [[co:31 d'aostu]]
100557 [[cs:31. srpen]]
100558 [[cy:31 Awst]]
100559 [[da:31. august]]
100560 [[de:31. August]]
100561 [[et:31. august]]
100562 [[el:31 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
100563 [[es:31 de agosto]]
100564 [[eo:31-a de aÅ­gusto]]
100565 [[eu:Abuztuaren 31]]
100566 [[fo:31. august]]
100567 [[fr:31 aoÃģt]]
100568 [[fy:31 augustus]]
100569 [[ga:31 LÃēnasa]]
100570 [[gl:31 de agosto]]
100571 [[ko:8ė›” 31ėŧ]]
100572 [[hr:31. kolovoza]]
100573 [[io:31 di agosto]]
100574 [[id:31 Agustus]]
100575 [[ia:31 de augusto]]
100576 [[ie:31 august]]
100577 [[is:31. ÃĄgÃēst]]
100578 [[it:31 agosto]]
100579 [[he:31 באוגוסט]]
100580 [[jv:31 Agustus]]
100581 [[ka:31 აგვისáƒĸო]]
100582 [[csb:31 zÊlnika]]
100583 [[ku:31'ÃĒ gelawÃĒjÃĒ]]
100584 [[la:31 Augusti]]
100585 [[lt:RugpjÅĢčio 31]]
100586 [[lb:31. August]]
100587 [[hu:Augusztus 31]]
100588 [[mk:31 авĐŗŅƒŅŅ‚]]
100589 [[ml:ā´†ā´—ā´¸āĩā´ąāĩā´ąāĩâ€Œ 31]]
100590 [[ms:31 Ogos]]
100591 [[nap:31 'e aÚsto]]
100592 [[nl:31 augustus]]
100593 [[ja:8月31æ—Ĩ]]
100594 [[no:31. august]]
100595 [[nn:31. august]]
100596 [[oc:31 d'agost]]
100597 [[pl:31 sierpnia]]
100598 [[pt:31 de Agosto]]
100599 [[ro:31 august]]
100600 [[ru:31 авĐŗŅƒŅŅ‚Đ°]]
100601 [[sco:31 August]]
100602 [[sq:31 Gusht]]
100603 [[scn:31 di austu]]
100604 [[simple:August 31]]
100605 [[sk:31. august]]
100606 [[sl:31. avgust]]
100607 [[sr:31. авĐŗŅƒŅŅ‚]]
100608 [[fi:31. elokuuta]]
100609 [[sv:31 augusti]]
100610 [[tl:Agosto 31]]
100611 [[tt:31. August]]
100612 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 31]]
100613 [[th:31 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
100614 [[vi:31 thÃĄng 8]]
100615 [[tr:31 Ağustos]]
100616 [[uk:31 ŅĐĩŅ€ĐŋĐŊŅ]]
100617 [[ur:31 اگØŗØĒ]]
100618 [[wa:31 d' awousse]]
100619 [[war:Agosto 31]]
100620 [[zh:8月31æ—Ĩ]]
100621 [[pam:Agostu 31]]</text>
100622 </revision>
100623 </page>
100624 <page>
100625 <title>Autpert Ambrose</title>
100626 <id>1714</id>
100627 <revision>
100628 <id>36265001</id>
100629 <timestamp>2006-01-22T21:29:42Z</timestamp>
100630 <contributor>
100631 <username>Necrothesp</username>
100632 <id>64853</id>
100633 </contributor>
100634 <text xml:space="preserve">'''Autpert Ambrose (Ambroise)''' (d. [[778]]), was a [[Franks|Frankish]] [[Benedictine]] monk.
100635
100636 He became abbot of San Vicenzo on the Volturno in South Italy in the time of [[Desiderius]], king of the [[Lombards]]. Autpert's election as [[abbot]] caused internal dissent at St. Vicenzo, and both [[Pope Stephen III]] and [[Charlemagne]] intervened. The disagreement was based both on objections to Autpert's personality and to his Frankish origin.
100637
100638 He wrote a considerable number of works on the Bible and religious subjects generally. Among these are commentaries on the [[Apocalypse]], on the [[Psalms]], and on the [[Song of Solomon]]; Lives of Saints Paldo, Tuto and Vaso; [[Assumption of Mary|Assumption]] of the Virgin; and a ''Combat between the Virtues and the Vices''.
100639
100640 * [http://www.newadvent.org/cathen/02143b.htm Catholic Encyclopedia article]
100641
100642 [[Category:Frankish people]]
100643 [[Category:Benedictines]]</text>
100644 </revision>
100645 </page>
100646 <page>
100647 <title>Abu Bakr</title>
100648 <id>1715</id>
100649 <revision>
100650 <id>41303401</id>
100651 <timestamp>2006-02-26T11:44:46Z</timestamp>
100652 <contributor>
100653 <username>Rebelguys2</username>
100654 <id>406178</id>
100655 </contributor>
100656 <minor />
100657 <comment>Reverted edits by [[Special:Contributions/217.218.239.202|217.218.239.202]] ([[User_talk:217.218.239.202|talk]]) to last version by Zora</comment>
100658 <text xml:space="preserve">{{Islam}}
100659 :''For the entry on Persian philosopher AbÅĢ Bakr Muhammad Ibn ZakarÄĢya al-Rāzi, see [[Al-Razi]].''
100660
100661 '''Abu Bakr''' ({{lang-ar|&amp;#1575;&amp;#1576;&amp;#1608; &amp;#1576;&amp;#1603;&amp;#1585;}}, alternative spellings, '''Abubakar''', '''Abi Bakr''', '''Abu Bakar''') (''ca''. [[573]] &amp;ndash; [[August 23]], [[634]]) ruled as the first of the [[Muslim]] [[caliph]]s ([[632]] &amp;ndash; [[634]]).
100662
100663 ==Early life==
100664 Abu Bakr was born in [[Mecca]] (Makkah), a [[Quraish]]i of the [[Banu Taim]] clan. According to early Muslim historians, he was a [[merchant]], and highly esteemed as a [[judge]], as an interpreter of [[dream]]s, and as one learned in Meccan traditions. He was one of the last people anyone would have expected to convert to the faith preached by his kinsman [[Muhammad]]. Yet he was one of the [[Identity of first male Muslim | first converts]] to [[Islam]] and instrumental in converting many of the Quraish and the residents of Mecca.
100665
100666 Originally called ''Abd-ul-Ka'ba'' (&quot;servant of the [[Kaaba]]&quot;), on his conversion he assumed the name of ''Abd-Allah'' (servant of God). However, he is usually styled ''Abu Bakr'' (from the Arabic word ''bakr'', meaning a young [[camel]]) due to his interest in raising camels. [[Sunni]] Muslims also honor him as Al-Siddiq (&quot;the truthful&quot;). His full name was '''Abd-Allah ibn Abi Quhaafah'''.
100667
100668 ==During the lifetime of Muhammad==
100669 Abu Bakr was one of Muhammad's companions. When Muhammad fled from Mecca in the [[migration to Medina]] of [[622]], Abu Bakr alone accompanied him. Abu Bakr was also linked to Muhammad by marriage: Abu Bakr's daughter [[Aisha]] married Muhammad soon after the migration to [[Medina]]. He was a trusted lieutenant, high in Muhammad's councils.
100670
100671 ==Rise to the Caliphate==
100672 During the prophet's last illness, it is said by some traditions that Muhammad allowed Abu Bakr to lead prayers in his absence, and that many took this as an indication that Abu Bakr would succeed Muhammad. Soon after the latter's death (on [[8 June]] [[632]]), a gathering of prominent ''[[Ansar]]'' and some of the ''[[Muhajirun]]'', in Medina, acclaimed Abu Bakr as the new Muslim leader or ''[[caliph]]''. What happened at this meeting, called [[Saqifah]], is much disputed.
100673
100674 Abu Bakr's assumption of power is an extremely controversial matter, and the source of the first [[schism]] in Islam, between [[Sunni Islam|Sunni]] and [[Shia Islam]]. Shi'a believe that Muhammad's cousin and son-in-law, [[Ali ibn Abu Talib]], was his designated successor, while Sunnis believe that Muhammad deliberately declined to designate a successor. They argue that Muhammad endorsed the traditional Arabian method of ''[[shura]]'' or ''consultation'', as the way for the community to choose leaders. Designating one's successor was the sign of kingship, or ''[[mulk]]'', which the independence-minded tribesmen disliked. Whatever the truth of the matter, Ali gave his formal ''[[bay'ah]]'', or submission, to Abu Bakr and to Abu Bakr's two successors. (The Sunni depict this ''bay'ah'' as enthusiastic, and Ali as a supporter of Abu Bakr and [[Umar]]; the Shi'a argue that Ali's support was only ''pro forma'', and that he effectively withdrew from public life in protest). The Sunni/Shi'a schism did not erupt into open warfare until much later. Many volumes have been written on the affair of the succession. A detailed treatment can be found at [[Succession to Muhammad]].
100675
100676 ==The Ridda Wars==
100677 Troubles emerged soon after Abu Bakr's succession, threatening the unity and stability of the new community and state. Various Arab tribes of [[Hejaz]] and [[Nejd]] rebelled against the ''caliph'' and the new system. Some withheld the ''[[zakat]]'', the alms tax, though they did not challenge the prophecy of Muhammad. Others [[apostatize]]d outright and returned to their pre-Islamic religion and traditions, classified by Muslims as [[idolatry]]. The tribes claimed that they had submitted to Muhammad and that with Muhammad's death, their allegiance was ended. Abu Bakr insisted that they had not just submitted to a leader but joined the Muslim religious community, of which he was the new head. Apostasy is a capital offense under traditional interpretations of [[Islamic law]], and Abu Bakr declared war on the rebels. This was the start of the ''[[Ridda wars]]'', [[Arabic language|Arabic]] for the Wars of [[Apostasy]]. The severest struggle was the war with [[Ibn Habib al-Hanefi]], known as &quot;Musailimah the Liar&quot;, who claimed to be a prophet and Muhammad's true successor. The Muslim general [[Khalid bin Walid]] finally defeated al-Hanefi at the [[Battle of Akraba]].
100678
100679 ==Expeditions to the north==
100680
100681 After suppressing internal dissension and completely subduing [[Arabia]], Abu Bakr directed his generals towards the [[Byzantine Empire|Byzantine]] and [[Sassanid Empire|Sassanid]] empires. Khalid bin Walid conquered [[History of Iraq|Iraq]] in a single campaign, and a successful expedition into [[History of Syria|Syria]] also took place. [[Fred Donner]], in his book ''The Early Islamic Conquests'', argues that Abu Bakr's &quot;foreign&quot; expeditions were merely an extension of the Ridda Wars, in that he sent his troops against Arab tribes living on the borders of the [[Fertile Crescent]]. Given that the [[steppe]]s and [[desert]]s over which [[Arabic language|Arabic]]-speaking tribes roamed extended without break from southern Syria down to [[Yemen]], any polity that controlled only the southern part of the steppe was inherently insecure.
100682
100683 ==The ''Qur'an''==
100684
100685 Some traditions about the origin of the ''Qur'an'' say that Abu Bakr was instrumental in preserving Muhammad's revelations in written form. It is said that after the hard-won victory over Musailimah, [[Umar ibn al-Khattab]] (the later ''Caliph'' Umar), saw that many of the Muslims who had memorized the ''Qur'an'' from the lips of the prophet had died in battle. Abu Bakr asked Umar to oversee the collection of the revelations. The record, when completed, was deposited with [[Hafsa bint Umar]], daughter of Umar, and one of the wives of Muhammad. Later it became the basis of [[Uthman ibn Affan]]'s definitive text of the ''Qur'an''. However, other historians give Uthman the principal credit for collecting and preserving the ''Qur'an''. Shi'as strongly refute the idea that Abu Bakr or Umar had anything to do with the collection or preservation of the ''Qur'an''.
100686
100687 ==Death==
100688 Abu Bakr died on [[August 23]], [[634]] in [[Medina]]. Shortly before his death, likely of natural causes (one tradition ascribes it to [[poison]]), he urged the Muslim community to accept [[Umar ibn al-Khattab]] as his successor. The community did so, without serious incident. However, this succession is also a matter of controversy. Shi'a Muslims believe that the leadership should have been assumed by Ali ibn Abu Talib, without any recourse to shura (consultation).
100689
100690 Abu Bakr initially served without pay. His followers insisted that he take an official stipend. At his death, his will returned all these payments to the treasury (''Age of Faith'', Durant, p. 187).
100691
100692 Abu Bakr lies buried in the [[Masjid al Nabawi]] mosque in Medina, alongside Muhammad and Umar ibn al-Khattab.
100693
100694 ==First man to adopt Islam?==
100695 Muslim scholars agree that the first woman to adopt Islam was [[Khadijah]], Muhammad's first wife. However, there is some disagreement over the identity of the first male to convert. Some Muslim historians have claimed that it was Abu Bakr, or perhaps Muhammad's adopted son Zayd ibn Harithah. Shi'a Muslims, as well as some other Muslim historians, believe that the first male convert (after Muhammad) was Ali ibn Abi Talib. This matter is discussed at greater length in [[Identity of first male Muslim]].
100696
100697 ==Shia view==
100698 :''{{Main|Shia view of Abu Bakr}}
100699
100700 Shi'as believe that Abu Bakr, far from being a devout Muslim and wise and humble man, was a schemer who seized the Islamic state for himself, displacing the proper heir, Ali. They believe that Abu Bakr and Umar persecuted Ali, his family, and his followers, and in so doing, caused the death of Ali's wife and Muhammad's daughter, [[Fatima Zahra]], and her unborn child, [[Al Muhsin]]. For a fuller discussion, see [[Succession to Muhammad]].
100701
100702 ==See also==
100703 *[[Family tree of Abu Bakr ibn abu Qahafa]]
100704 *[[Succession to Muhammad]]
100705
100706 ==References==
100707 * Donner, Fred -- ''The Early Islamic Conquests'', Princeton University Press, 1981.
100708 * Watt, W. Montgomery -- ''Muhammad at Mecca'', Oxford University Press, 1953.
100709
100710 {{start box}}
100711 {{succession box|title=[[Caliph]]|before= --|after=[[Umar ibn al-Khattab|Umar]]|years=632&amp;ndash;634}}
100712 {{end box}}
100713
100714 ==External links==
100715 *http://www.ymofmd.com/books/abas/chapter2.htm
100716 *http://www.islamonline.net/English/NewHijriYear/HijrahHeroes/1426/04.shtml
100717 * [http://www.lailahailallah.net/Khutbahs/Khutbah17.asf Sirah of Abu Bakr (Radia'Allahuanhu) Part 1] by Shaykh Sayyed Muhammad bin Yahya Al-Husayni Al-Ninowy.
100718 * [http://www.lailahailallah.net/Khutbahs/Khutbah16.asf Sirah of Abu Bakr (Radia'Allahuanhu) Part 2] by Shaykh Sayyed Muhammad bin Yahya Al-Husayni Al-Ninowy.
100719
100720
100721 [[Category:573 births]]
100722 [[Category:634 deaths]]
100723 [[Category:Caliphs]]
100724 [[Category:Muslims]]
100725 [[Category:Sahaba]]
100726
100727 [[ar:ØŖبŲˆ بŲƒØą]]
100728 [[da:Abu Bakr]]
100729 [[de:Abu Bakr]]
100730 [[es:Abu Bakr as-Siddiq]]
100731 [[et:AbÅĢ Bakr]]
100732 [[fa:ابŲˆØ¨ÚŠØą]]
100733 [[fi:Abu Bakr]]
100734 [[fr:Abou Bakr]]
100735 [[gl:Abu Bakr - ابŲˆ بŲƒØą اŲ„ØĩدŲŠŲ‚]]
100736 [[he:אבו בכר]]
100737 [[id:Abu Bakar]]
100738 [[it:AbÅĢ Bakr]]
100739 [[ja:ã‚ĸブãƒŧīŧãƒã‚¯ãƒĢ]]
100740 [[ms:Saidina Abu Bakar]]
100741 [[nl:Aboe Bakr]]
100742 [[no:Abu Bakr]]
100743 [[pl:Abu Bakr]]
100744 [[pt:Abu Bakr]]
100745 [[ru:АйŅƒ БаĐēŅ€]]
100746 [[sv:Abu Bakr]]
100747 [[th:ā¸­ā¸°ā¸šā¸šā¸šā¸ąā¸ā¸Ŗā¸ē]]
100748 [[tr:Ebu Bekir]]
100749 [[zh:č‰žåœÂˇäŧ¯å…‹å°”]]</text>
100750 </revision>
100751 </page>
100752 <page>
100753 <title>Ambrose the Camaldulian</title>
100754 <id>1716</id>
100755 <revision>
100756 <id>36939720</id>
100757 <timestamp>2006-01-27T13:30:28Z</timestamp>
100758 <contributor>
100759 <username>Bluebot</username>
100760 <id>527862</id>
100761 </contributor>
100762 <minor />
100763 <comment>Bringing &quot;External links&quot; and &quot;See also&quot; sections in line with the [[Wikipedia:Manual of Style|Manual of Style]].</comment>
100764 <text xml:space="preserve">'''Ambrose the Camaldulian,''' (Ambrogio Traversari) ([[1386]]-[[1439]]), was a [[theology|theologian]], born near [[ForlÃŦ]] at the village of Portico di [[Romagna]].
100765
100766 At the age of fourteen he entered the [[Camaldulian]] Order in the monastery of Santa Maria degli Angeli, and rapidly became a leading theologian and Hellenist. In Greek literature his master was [[Manuel Chrysoloras|Emmanuel Chrysoloras]]. He became general of the order in 1431, and was a leading advocate of the [[papacy]].
100767 This attitude he showed clearly when he attended the [[Council of Basel]] as legate of [[Pope Eugenius IV]].
100768 So strong was his hostility to some of the delegates that he described Basel as a western [[Babylon]]. He likewise supported the pope at [[Ferrara]] and Florence, and worked hard in the attempt to reconcile the Eastern and Western Churches.
100769
100770 Though this cause was unsuccessful, Ambrose is interesting as typical of the new humanism which was growing up within the church. Thus while among his own colleagues he seemed merely a hypocritical and arrogant priest, in his relations with his brother humanists, such as [[Cosimo de Medici]], he appeared as the student of classical antiquities and especially of Greek theological authors.
100771
100772 His chief works are: -- ''Hodoeporicon'', an account of a journey taken at the pope's command, during which he visited the monasteries of Italy; translations of [[Palladius]]' ''Life of Chrysostom;'' of ''Nineteen Sermons of Ephraem Syrus''; of the St Basil ''On Virginity.'' A number of his manuscripts remain in the library of St Mark at Venice.
100773
100774 He died on [[October 20]] [[1439]].
100775
100776 ==References==
100777 *{{1911}}
100778
100779 ==External links==
100780
100781 * [http://www.tertullian.org/articles/traversari_index.htm Letters] - a few letters translated into English and a portrait of him from a manuscript he copied.</text>
100782 </revision>
100783 </page>
100784 <page>
100785 <title>Ambrosians</title>
100786 <id>1717</id>
100787 <revision>
100788 <id>41724977</id>
100789 <timestamp>2006-03-01T08:33:48Z</timestamp>
100790 <contributor>
100791 <ip>193.40.4.119</ip>
100792 </contributor>
100793 <comment>/* Ambrosian Orders */</comment>
100794 <text xml:space="preserve">'''Ambrosians''' is a term that might be applied either to members of one of the religious brotherhoods which at various times since the [[14th century]] have sprung up in and around [[Milan]] or, exceptionally to a [[16th century]] sect of [[Anabaptist Ambrosians|Anabaptists]].
100795
100796 ==Ambrosian Orders==
100797 Only the oldest of the Catholic Ambrosians, the Fratres S. Ambrosii ad Nemus, had anything more than a very local significance. This order is known from a bull of [[Pope Gregory XI]] addressed to the [[monk]]s of the church of St Ambrose outside Milan.
100798
100799 Saint Ambrose, Bishop of Milan, certainly did not found religious orders, though he took an interest in the monastic life and watched over its beginnings in his diocese, providing for the needs of a monastery outside the walls of Milam, as Saint Augustine recounts in his ''Confessions''. Ambrose also made successful efforts to improve the moral life of women in the Milan of his time by promoting the permament institution of Virgins, as also of widows. His exhortations and other interventions have survived in various writings: ''De virginibus'', ''De viduis'', ''De virginitate'', ''De institutione virginis'', ''De exhortatione virginitatis'', and ''De lapsu virginis consecratae''. Ambrose was the only Father of the Church to leave behind so many writings on the subject and his attentions naturally enough led to the formation of communities which later became formal monasteries of women.
100800
100801 It is against this background that two religious orders or congregations, one of men and one of women, when founded in the Milan area during the [[13th century|13th]] and [[15th century|15th centuries]], took Saint Ambrose as their patron and hence adopted his name.
100802
100803 ===The Order of St Ambrose===
100804 The first of these groups was formed in a wood outside Milan by three noble Milanese, Alexander Grivelli, Antonio Petrasancta, and Albert Besuzzi, who were joined by others, including some priests. In [[1375]] [[Pope Gregory XI]] gave them the Rule of St Augustine, with set of constitutions. As a canonically recognized order they took the name &quot;Fratres Sancti Ambrosii ad Nemus&quot; and adopted a habit consisting of a brown tunic, scapular, and hood. The brethren elected a superior with the title of prior who was then instituted by the Archbishop of Milan. The priests of the congregation undertook preaching and other tasks of the ministry but were not allowed to accept charge parishes. In the liturgy they followed the [[Ambrosian Rite]]. Various monasteries were founded on these lines, but without any formal bond between them. In [[1441]] [[Pope Eugene IV]] merged them into one congregation called &quot;Congregatio Sancti Ambrosii ad Nemus&quot;, made the original house the main seat, and laid down a system of government whereby a general chapter met every three years, elected the priors who stayed in office till the next chapter. There was a rector, or superior general, who was assisted by two &quot;visitors&quot;.
100805
100806 Saint Charles Borromeo, Archbishop of Milan, successfully reformed their discipline, grown lax, in [[1579]]. In [[1589]] [[Pope Sixtus V]] united to the Congregation of St Ambrose the monasteries of a group known as the &quot;Brothers of the Apostles of the Poor Life&quot; (or &quot;Apostolini&quot; or &quot;Brothers of St. Barnabas&quot;), whose houses were in the province of Genoa and in the March of Ancona. This was an order that had been founded by Giovanni Scarpa at the end of the [[15th century]]. The union was confirmed by [[Pope Paul V]] in [[1606]], at which time the congregation added the name of St. Barnabas to its title, adopted new constitutions, divided its houses into four provinces, two of them, St Clement's and St Pancras's, being in Rome. Published works have survived from the pen of Ascanio Tasca and Michele Mulozzani, each of whom was superior-general, and of Zaccaria Visconti, Francesco-Maria Guazzi and Paolo Fabulotti. Although various Ambrosians were given the title of Blessed in recognition of their holiness: Antonio Gonzaga of Mantua, Filippo of Fermo, and Gerardo of Monza, the order was eventually dissolved by [[Pope Innocent X]] in [[1650]].
100807
100808 ===Ambrosian Nuns===
100809 The Nuns of St Ambrose (Ambrosian Sisters) wore a habit of the same colour as the Brothers of St Ambrose, conformed to their constitutions, and followed the [[Ambrosian Rite]], but were independent in government. [[Pope Sixtus IV]] gave the nuns canonical status in [[1474]]. Their one monastery was on the top of Monte Varese, near Lago Maggiore, on the spot where their foundress, the Blessed Catarina Morigia (or Catherine of Palanza), had first led a solitary life. Other early nuns were the Blessed Juliana of Puriselli, Benedetta Bimia, and Lucia Alciata. The nuns were esteemed by St Charles Borromeo.
100810
100811 Another group of cloistered &quot;Nuns of St Ambrose&quot;, also called the Annunciatae (Italian: ''Annunziate'') of Lombardy or &quot;Sisters of St Marcellina&quot;, were founded in [[1408]] by three young women of Pavia, Dorothea Morosini, Eleonora Contarini, and Veronica Duodi. Their houses, scattered throughout Lombardy and Venetia, were united into a congregation by St Pius V, under the Rule of St Augustine with a mother-house, residence of the prioress general, at Pavia. One of the nuns in this group was Saint Catharine Fieschi Adorno, who died on [[September 14]], [[1510]].
100812
100813
100814 ===The [[Oblates of St Ambrose and of St Charles]]===
100815 In some sense also &quot;Ambrosians&quot; are the members of a diocesan religious society founded by St Charles Borromeo, Archbishop of Milan. All priests or destined to become priests, they took a simple vow of obedience to their bishop. The model for this was a society that already existed at Brescia, under the name of &quot;Priests of Peace&quot;. In August [[1578]] the new society was inaugurated, being entrusted with the church of the Holy Sepulchre and given the name of &quot;Oblates of St. Ambrose.&quot; They later received the approbation of Gregory XIII. St Charles died in [[1584]]. These Oblates were dispersed by [[Napoleon I]] in 1810, while another group called the Oblates of Our Lady of Rho escaped this fate. In 1848 they were reorganized and given the name of &quot;Oblates of St. Charles&quot; and reassigned the house of the Holy Sepulchre. In the course of the [[19th century]] similar groups were founded in a number of countries, including the &quot;Oblates of St Charles&quot;, established in London by Cardinal Nicholas Wiseman.
100816
100817 ==See also==
100818
100819 *[[Ambrosian Rite]]
100820
100821 See Herzog-Hauck's ''Realencyklopadie'', i. 439.
100822
100823 ==References==
100824 *{{1911}}
100825 *{{catholic}}</text>
100826 </revision>
100827 </page>
100828 <page>
100829 <title>Ambrosiaster</title>
100830 <id>1718</id>
100831 <revision>
100832 <id>29324051</id>
100833 <timestamp>2005-11-26T23:06:35Z</timestamp>
100834 <contributor>
100835 <username>Thierry Caro</username>
100836 <id>441183</id>
100837 </contributor>
100838 <minor />
100839 <comment>fr</comment>
100840 <text xml:space="preserve">'''Ambrosiaster''', a commentary on St [[Paul of Tarsus|Paul]]'s epistles, &quot;brief in words but weighty in matter,&quot; and valuable for the criticism of the [[Latin]] text of the [[New Testament]], was long attributed to St [[Ambrose]].
100841
100842 [[Erasmus]] in 1527 threw doubt on the accuracy of this ascription, and the author is usually spoken of as Ambrosiaster or pseudo-Ambrose. Because [[Augustine of Hippo|Augustine]] cites part of the commentary on [[Epistle to the Romans|Romans]] as by &quot;Sanctus Hilarius&quot; it has been ascribed by various critics at different times to almost every known Hilary. Dom G. Morin (''Rev. d'hist. et de litt. religieuses'', tom. iv. 97 f.) broke new ground by suggesting in 1899 that the writer was Isaac, a converted Jew, writer of a tract on the Trinity and Incarnation, who was exiled to [[Spain]] in 378-380 and then relapsed to [[Judaism]], but he afterwards abandoned this theory of the authorship in favour of [[Decimus Hilarianus Hilarius]], proconsul of [[North Africa during the Classical Period|Africa]] in 377.
100843
100844 With this attribution Professor Alex. Souter, in his ''Study of Ambrosiaster'' (Cambridge Univ. Press, 1905), agrees. There is scarcely anything to be said for the possibility of Ambrose having written the book before he became a bishop, and added to it in later years, incorporating remarks of [[Hilary of Poitiers]] on Romans. The best presentation of the case for Ambrose is by P. A. Ballerini in his complete edition of that father's works.
100845
100846 In the book cited above Professor Souter also discusses the authorship of the ''Quaestiones Veteris et Novi Testamenti,'' which the manuscripts ascribe to [[Augustine of Hippo|Augustine]]. He concludes, on very thorough [[philology|philological]] and other grounds, that this is with one possible slight exception the work of the same &quot;Ambrosiaster.&quot; The same conclusion had been arrived at previously by Dom Morin.
100847
100848 ==References==
100849 *{{1911}}
100850
100851 [[fr:Ambrosiaster]]</text>
100852 </revision>
100853 </page>
100854 <page>
100855 <title>Ambrosius Aurelianus</title>
100856 <id>1719</id>
100857 <revision>
100858 <id>40977437</id>
100859 <timestamp>2006-02-24T06:14:31Z</timestamp>
100860 <contributor>
100861 <username>Betacommand</username>
100862 <id>509520</id>
100863 </contributor>
100864 <comment>clean up using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
100865 <text xml:space="preserve">'''Ambrosius Aurelianus''' (incorrectly referred to in the ''[[Historia Regum Britanniae]]'' as '''Aurelius Ambrosius ''') was a leader of the [[Romano-British]], who won important battles against the [[Anglo-Saxons]] in the [[5th century]], according to [[Gildas]] and to the legends preserved in the ''[[Historia Britonum]]''. According to the Annal ''Chronicon Maiora'' Ambrosius came to power in [[479]]. Some scholars have speculated that he was the leader of the Romano-British at the [[Battle of Mons Badonicus]] and as such may have become a [[historical basis for King Arthur]].
100866
100867 == Aurelianus according to Gildas ==
100868 Ambrosius Aurelianus is one of the few people Gildas identifies by name in his sermon [[Gildas#De Excidio Britanniae|De Excidio Britanniae]]. Following the destructive assault of the Saxons, the survivors gather together under the leadership of Ambrosius, who is described as &quot;a gentleman who, perhaps alone of the Romans, had survived the shock of this notable storm. Certainly his parents, who had worn the purple, were slain in it. His descendants in our day have become greatly inferior to their grandfather's [''avita''] excellence.&quot; According to Gildas, Ambrosius organised the survivors into an armed force, and achieved the first military victory over the Saxon invaders. However, this victory was not decisive: &quot;Sometimes the Saxons and sometimes the citizens [meaning the Romano-British inhabitants] were victorious.&quot;
100869
100870 Two points in this brief description have attracted much scholarly commentary. The first is what Gildas meant by saying Ambrosius' parents &quot;had worn the purple&quot;: does this mean that Ambrosius was related to one of the [[Roman Emperors]], perhaps the [[House of Theodosius]] or a usurper like [[Constantine III (usurper)|Constantine III]]? The second question is the meaning of the word ''avita'': does it mean &quot;ancestors&quot;, or did Gildas intend it to mean more specifically &quot;grandfather&quot; — thus indicating Ambrosius lived about a generation before the Battle of [[Mons Badonicus]]? The lack of information for this period prevents us from decisively answerering these questions.
100871
100872 == Other accounts of Aurelianus ==
100873 The ''Historia Britonum'' preserves several snippets of lore about Ambrosius. The most significant of these is the story about Ambrosius, [[Vortigern]], and the two dragons beneath [[Dinas Emrys]] 'Fortress of Ambrosius' in Chapters 40&amp;ndash;42. This story was later retold with more detail by [[Geoffrey of Monmouth]] in his fictional ''[[Historia Regum Britanniae]]'', conflating the personage of Ambrosius with the Welsh tradition of [[Merlin (wizard)|Merlin]] the visonary, known for oracular utterances that foretold the coming victories of the native [[Celt]]ic inhabitants of Britain over the [[Saxons]] and the [[Normans]].
100874
100875 But there are smaller snippets of tradition preserved in ''Historia Brittonum'': in Chapter 31, we are told that Vortigern ruled in fear of Ambrosius; later, in Chapter 66, various events are dated from a battle of Guoloph (often identified with Wallop, 15km ESE of [[Amesbury]] near [[Salisbury, England|Salisbury]]), which is said to have been between Ambrosius and Vitolinus; lastly, in Chapter 48, it is said that Pascent, the son of Vortigern, was granted rule over the kingdoms of [[Buellt]] and [[Gwrtheyrion]]. It is not clear how these various traditions relate to each other or that they come from the same tradition, and it is very possible that these references are to a different Ambrosius. The ''Historia Brittonum'' dates the battle of Guoloph to 439, forty to fifty years before the battles that Gildas says were commanded by Ambrosius Aurelianus.
100876
100877 Because Ambrosius and Vortigern are shown in the ''Historia Brittonum'' as being in conflict, some historians have suspected that this preserves a historical core of the existence of two parties in opposition to one another, one headed by Ambrosius, and the other by Vortigern. J.N.L. Myres built upon this suspicion and put forth the hypothesis that belief in [[Pelagianism]] reflected an actively provincial outlook in Britain, and that Vortigern represented the Pelagian party, while Ambrosius led the Catholic one. Some later historians accepted this hypothesis as fact, and have created a narrative of events in fifth-century Britain with various degrees of elaborate detail. Yet a simpler alternative interpretation of this conflict between these two figures is that the ''Historia Brittonum'' is preserving traditions hostile to the purported descendants of Vortigern, who at this time were a ruling house in [[kingdom of Powys|Powys]]. This interpretation is supported by the negative character of all of the stories retold about Vortigern in the ''Historia Brittonum'', which include his alleged practice of [[incest]].
100878
100879 Ambrosius Aurelianus appears in later pseudo-chronicle tradition beginning with [[Geoffrey of Monmouth]]'s ''Historiae Regum Britanniae'' with the slightly garbled name ''Aurelius Ambrosius'', now presented as son of a King Constantine. When King Constantine's eldest son Constans is murdered at Vortigern's instigation, the two remaining sons, Ambrosius and Uther, still very young, are quickly hustled into exile in [[Brittany]]. (Note that this does not fit with Gildas' account in which Ambrosius' family perished in the turmoil of the Saxon uprisings.) Later, when Vortigern's power has faded, the two brothers return from exile with a large army, destroy Vortigern and become friends with Merlin. The Welsh possibly had traditions of two different Ambrosianii, whom Geoffrey of Monmouth confused.
100880
100881 In Welsh Ambrosius appears as ''Emrys Wledig''. In [[Robert de Boron]]'s ''Merlin'' he is called simply ''Pendragon'' and his younger brother is named ''Uter'', a name which Uter changes after the death of Pendragon to ''Uterpendragon''. This is probably a confusion that entered oral tradition from [[Robert Wace|Wace]]'s ''Brut''. Wace usually only refers to ''li roi'' 'the king' without naming him and someone has taken an early mention of Uther's epithet ''Pendragon'' as the name of his brother.
100882
100883 S. Appelbaum has suggested that [[Amesbury]] in [[Wiltshire]] might preserve in it the name of Ambrosius, and perhaps Amesbury was the seat of his power base in the later fifth century. Place name scholars have found a number of [[Toponymy|place names]] through the Midland dialect regions of Britain with placenames incorporating the ''ambre-'' element: [[Ombersley]] in [[Worcestershire]], [[Ambrosden]] in [[Oxfordshire]], Amberley in [[Herefordshire]], and Amberley in [[Gloucestershire]]. These scholars have claimed this element rerpresents an [[Old English language|Old English]] word ''amor'', the name of a woodland bird. However, [[Amesbury]] in Wiltshire is in a different dialect region, and does not easily fit into the pattern of the Midland dialect place names. This makes Appelbaum's suggestion more likely. If we combine this etymology with the tradition reported by Geoffrey of Monmouth stating Ambrosius Aurelianus ordered the building of [[Stonehenge]] &amp;mdash; which is located within the parish of Amesbury (and where Ambrosius was supposedly buried) &amp;mdash; and with the presence of an [[Iron age]] [[hill fort]] also in that parish, then it is extremely tempting to connect this shadowy figure with Amesbury.
100884
100885 == Aurelianus in fiction ==
100886 In [[Marion Zimmer Bradley]]'s ''[[The Mists of Avalon]]'', Aurelianus is depicted as the aging High King of Britain, a &quot;too-ambitious&quot; son of a Western Roman Emperor. His sister's son is Uther Pendragon, but somehow, Uther is described as not having any Roman blood in him. Strangely, Aurelianus is unable to gather the leadership of the native Celts, who refuse to follow any but their own race.
100887
100888 In [[Stephen R. Lawhead]]'s ''[[Pendragon Cycle]]'', Ambrosius Aurelianus (referred to as &quot;[[Aurelius]]&quot;) is a minor character, being assassinated soon after becoming [[High King]] of [[Prydein]]. Lawhead alters the standard Arthurian story somewhat, in that he has Aurelius marry [[Igraine]] and become the true father of [[King Arthur]].
100889
100890 In [[Valerio Massimo Manfredi]]'s ''[[The Last Legion]]'', Aurelianus is a major character that is shown as the last loyal Roman that goes to enormous lengths for his boy emperor [[Romulus Augustus]] , whose power has been wrested by the barbarian [[Odoacer]]. In this story [[Romulus Augustus]] marries [[Igraine]], and ''[[Caliban]]'', the sword of [[Julius Caesar]], becomes the legendary [[Excalibur]] in Britain.
100891
100892 In [[Rosemary Sutcliff]]'s ''[[The Lantern Bearers (Sutcliff novel)|The Lantern Bearers]]'' Prince Ambrosius Aurelianus drives out the Saxons by training his British army with Roman techniques and making effective use of cavalry. By the end of the novel, the elite cavalry wing is led by a dashing young warrior prince named Artos, who Sutcliff postulates to be the real Arthur.
100893
100894 [[Mary Stewart]]'s ''The Crystal Cave'' follows Geoffrey of Monmouth in calling him Aurelius Ambrosius and portrays him as the father of Merlin, the elder brother of Uther (hence uncle of Arthur), an initiate of [[Mithras]], and generally admired by everyone except the Saxons. Much of the book is set at his court in Brittany or during the campaign to retake his throne from Vortigern. Later books in the series show that Merlin's attitude toward Arthur is influenced by his belief that Arthur is a reincarnation of Ambrosius, who is seen through Merlin's eyes as a model of good kingship.
100895
100896 Judging by his situation (a Romano-British living in post-Roman Britain and fighting Mons Badonicus), the titular character from the 2004 movie ''[[King Arthur (2004 movie)|King Arthur]]'' was based on Aurelianus, despite the fact that his name ([[Lucius Artorius Castus|Artorius Castus]]) comes from another historical source for Arthur.
100897
100898 {{start box}}
100899 {{succession box |
100900 before=[[Vortigern]]|
100901 title=[[King of the Britons|Mythical British Kings]]|
100902 after=[[Uther Pendragon]]|
100903 years= |
100904 }}
100905 {{end box}}
100906
100907 &lt;!-- interwiki --&gt;
100908
100909 [[Category:5th century births]]
100910 [[Category:6th century deaths]]
100911 [[Category:Ancient Britons]]
100912 [[Category:Ancient Romans]]
100913 [[Category:Romans in Britain]]
100914 [[Category:Sub-Roman Britain]]
100915 [[Category:British traditional history]]
100916 [[Category:Arthurian legend]]
100917 [[Category:Mythological kings]]
100918
100919 [[de:Ambrosius Aurelianus]]
100920 [[nl:Aurelius Ambrosius]]
100921 [[fr:Ambrosius Aurelianus]]</text>
100922 </revision>
100923 </page>
100924 <page>
100925 <title>Amun</title>
100926 <id>1721</id>
100927 <revision>
100928 <id>41983215</id>
100929 <timestamp>2006-03-03T01:06:17Z</timestamp>
100930 <contributor>
100931 <ip>24.180.10.191</ip>
100932 </contributor>
100933 <text xml:space="preserve">:''For the people in the Bible, see [[Ammon (nation)]]. For the extinct mollusc see [[Ammonite]].''
100934
100935 :''For the game by [[Reiner Knizia]], see [[Amun-Re (game)]]
100936
100937 '''Amun''' (also spelt '''Amon''', '''Amoun''', '''Amen''', and rarely '''Imenand''', and spelt in [[Greek language|Greek]] as '''Ammon''', and '''Hammon''') was the name of a [[deity]], in [[Egyptian mythology]], who gradually rose to become one of the most important deities, before fading into obscurity.
100938
100939 {{Hiero|Amun|&lt;hiero&gt;i-mn:n-C12&lt;/hiero&gt;|align=right|era=egypt}}
100940 ==God of Air==
100941 Originally, he was simply nothing more than a deification of the concept of air, and thus [[wind]], one of the four fundamental concepts held to have composed the primordial universe, in the [[Ogdoad]] [[cosmogeny]], whose cult was strongest in [[Hermopolis]]. His name reflects this function, since it means ''the hidden one'', reflecting the invisibility of the air, and of the wind. Like all other members of the Ogdoad, his male aspect was usually depicted as a frog, or frog-headed. Symbolically, invisibility was represented by the [[colour]] [[blue]], since it was the colour of the [[sky]], seen through the air, and so this was the colour usually given to Amun's image.
100942
100943 As with the other concepts in the Ogdoad, he was dualistically considered to have a female aspect, referred to as '''[[Amunet]]''' (also spelt '''Amentet''', '''Amentit''', '''Imentet''', '''Imentit''', '''Amaunet''', and '''Ament'''), which was simply the [[feminine]] form of the word ''Amun''. The other female aspects of the Ogdoad were all depicted as snakes, thus Amunet was depicted likewise.
100944
100945 ==Creator==
100946 [[Image:Amon and mut.png|170px|thumb|left|Amun and Mut]]
100947
100948 Gradually, as god of air, he came to be associated with the ''breath of life'', which created the [[Egyptian soul|ba]], particularly in [[Thebes, Egypt|Thebes]]. By the [[First Intermediate Period]] this had led to him being thought of, in these areas, as the creator god, titled ''father of the gods'', preceding the Ogdoad, although also part of it. As he became more significant, he was assigned a wife (Amunet being his own female aspect, more than a distinct wife), and since he was the creator, his wife was considered the divine mother from which the cosmos emerged, who in the areas where Amun was worshipped was, by this time, [[Mut]].
100949
100950 Amun became depicted in [[human]] form, seated on a throne, wearing on his head a plain deep circlet from which rise two straight parallel plumes, possibly symbolic of the tail [[feather]]s of a [[bird]], a reference to his earlier status as a wind god.
100951
100952 Having become more important than [[Menthu]], the local [[war]] [[god]] of Thebes, Menthu's authority became said to exist because he was the son of Amun. However, as Mut was infertile, it was believed that she, and thus Amun, had adopted Menthu instead. In later years, due to the shape of a [[pool]] outside the sacred temple of Mut at Thebes, Menthu was replaced, as their adopted son, by [[Chons]], the [[lunar deity|moon god]].
100953
100954 ==King==
100955 [[Image:Amun5.jpg|thumb|right|200px|Bas-relief depicting Amun as king.]]
100956 With the eviction of the [[Hyksos]] rulers from Egypt, by the [[army|armies]] of the [[Eighteenth dynasty of Egypt|Eighteenth dynasty]], Thebes, where the victors were based, became the most important city, and so Amun became nationally important. To Amun the [[Pharaoh]]s attributed all their successful enterprises, and on his temples they lavished their wealth and captured spoil. And so, when the Greeks reported back on their [[tourism|visits]] to Egypt, Amun, as king of the gods, became identified by the Geeks with [[Zeus]], and so his consort [[Mut]] with [[Hera]].
100957
100958 As the Egyptians considered themselves opressed during he period of Hyksos rule, the victory under the supreme god Amun, was seen as his championing of the [[underdog]]. Consequently, Amun was viewed as upholding the rights to justice of the poor, being titled ''[[Vizier]] of the poor'', and aiding those who travelled in his name,as the ''Protector of the road''. Since he upheld [[Ma'at]], those who prayed to Amun were required first to demonstrate that they were worthy, by confessing their sins.
100959
100960 ==Fertility God==
100961 [[image:Chem.jpg|right|thumb|190px|Amun-Min]]
100962 When, subsequently, Egypt conquered [[Kush]], they identified the chief deity of the Kushites as Amun. This deity was depicted as [[Ram]] headed, specifically a [[wool]]ly Ram with curved [[horn (anatomy)|horns]], and so Amun started becoming associated with the Ram. Indeed, due to the aged appearance of it, they came to believe that this had been the original form of Amun, and that Kush was where he had been born.
100963
100964 However, since rams, due to their [[rutting]], were considered a symbol of [[virility]], Amun became thought of as a fertility deity, and so started to absorb the identity of [[Min (god)|Min]], becoming ''Amun-Min''. This association with virility lead to ''Amun-Min'' gaining the [[epithet]] ''Kamutef'', meaning ''Bull of his mother'', in which form he was often found depicted on the walls of [[Karnak]], [[ithyphallic]], and with a [[scourge]].
100965
100966 ==Sun God==
100967 {{Hiero|Amun-Ra|&lt;hiero&gt;i-mn:n-ra:Z1-C1&lt;/hiero&gt;|align=left|era=egypt}}
100968 As Amun's cult grew bigger, Amun rapidly became identified with the chief God that was worshipped in other areas, ''Ra-Herakhty'', the merged identities of [[Ra]], and [[Horus]]. This identification led to a merger of identities, with Amun becoming ''Amun-Ra''. As [[Ra]] had been the father of [[Shu]], and [[Tefnut]], and the remainder of the [[Ennead]], so Amun-Ra was likewise identified as their father.
100969
100970 Ra-Herakhty had been a [[solar deity|sun god]], and so this became true of Amun-Ra as well, Amun becoming considered the ''hidden'' aspect of the sun (e.g. during the night), in contrast to Ra-Herakhty as the ''visible'' aspect, since Amun clearly meant ''the one who is hidden''. This complexity over the sun led to a gradual movement towards the support of a more pure form of deity. Thus the pharaoh, [[Akhenaten|Amenhotep IV]] introduced the worship of [[Aten]], the sun's [[disc]] itself, identifying it as Amun-Ra.
100971
100972 Although [[Atenism]], the worship of Aten, had started out as standard [[henotheism]], it very quickly became, for reasons that are not very clear, entirely [[monotheism|monotheistic]]. Indeed, it is even possible that this is the first instance of monotheism in the world. Subsequently, Amenhotep IV started persecuting the worship of Amun, and erased the name from monuments, even changing his own name to [[Akhenaten]] in favour of Aten.
100973
100974 However, this abrupt change was unpopular, particularly with the previous [[priesthood]]s, who had now suddenly found themselves without power. Consequently, when Akhenaten died, his name was struck out, and all his changes undone, almost as if they had not occurred. The correct form of mentioning about Akhenaten were figures akin to 'crazy one from Akhetaten'. Worship of Aten was replaced, and that of Amun-Ra restored. The priests persuaded the new underage pharaoh [[Tutankhaten]] (most likely Akhenaten's son), the &quot;live image of Aten&quot;, to change his name to [[Tutankhamun]], the &quot;live image of Amun&quot;.
100975
100976 ==Decline==
100977 After the [[Twentieth dynasty of Egypt|Twentieth dynasty]] moved the centre of power back to Thebes, the powerbase of Amun's cult had been renewed, and the authority of Amun began to stack. Under the [[Twenty-first dynasty of Egypt|Twenty-first dynasty]] the secondary line of priest kings of Thebes upheld his dignity to the best of their power, and the [[Twenty-second dynasty of Egypt|Twenty-second]] favoured Thebes.
100978
100979 As the sovereignty weakened the division between Upper and Lower Egypt asserted itself, and thereafter Thebes would have rapidly decayed had it not been for the piety of the kings of [[Nubia]] towards Amun, whose worship had long prevailed in their country. Thebes was at first their Egyptian capital, and they honoured Amun greatly, although their wealth and culture were not sufficient to affect much.
100980
100981 However, in the rest of Egypt, his cult was rapidly overtaken, in popularity, by the less divisive cult of the [[Legend of Osiris and Isis]], which had not been associated with Akhenaten's actions. And so there, his identity became first subsumed into Ra (''Ra-Herakhty''), who still remained an identifiable figure in the [[Osiris]] cult, but ultimately, became merely an aspect of [[Horus]].
100982
100983 In areas outside of Egypt, where the Egyptians had previously brought the worship of Amun, Amun's fate was not as bad. In Nubia, where his name was pronounced '''Amane''', he remained the national god, with his priesthoods at [[Meroe]] and [[Nobatia]], via an [[oracle]], regulating the whole government of the country, choosing the king, and directing his military expeditions. According to [[Diodorus Siculus]], they were even able to compel kings to commit suicide, although this behaviour stopped when [[Arkamane]], in the [[3rd century BC]], [[slaughter|slew]] them.
100984
100985 Likewise, in [[Libya]], there remained an oracle of Amun in [[Libyan Desert|the desert]], at the [[oasis]] of [[Siwa Oasis|Siwa]]. Such was its reputation among the Greeks that [[Alexander the Great]] journeyed there, after the [[battle of Issus]], and during his occupation of Egypt, in order to be acknowledged the son of the god. Even during this occupation, Amun, identified as a form of [[Zeus]], continued to be the great god of Thebes, in its decay.
100986
100987 ----
100988 {{1911}}
100989
100990 ==Derived Terms==
100991
100992 Several words derive from Amun via the Greek form Ammon: [[ammonia]] and [[ammonite]]. Ammonia, as well as being the chemical, is a genus name in the [[foraminifera]]. Both these foraminiferans (shelled [[Protozoa]]) and ammonites (extinct shelled [[cephalopod]]s) have/had spiral shells resembling a ram's, and Ammon's, horns. Ammonia the chemical derives its name in a more round-about way &amp;ndash; see end of article [[ammonia]]. The regions of the [[hippocampus]] in the [[brain]] are called the ''[[cornu ammonis]]'' &amp;ndash; literally &quot;Amun's Horns&quot;, due to the horned appearance of the dark and light bands of [[cell (biology) | cellular]] layers.
100993
100994 ==References==
100995 *[[Adolf Erman]], ''Handbook of Egyptian Religion'' (London, 1907)
100996 *[[Ed. Meyer]], article &quot;Ammon&quot; in [[W. H. Roscher]]'s ''Lexikon der griechischen und rÃļmischen Mythologie''
100997 *[[Pietschmann]], articles &quot;Ammon&quot; and &quot;Ammoneion&quot; in [[Pauly-Wissowa]], ''Realencyclopädie.''
100998
100999 ==External links==
101000 *[http://www.ancientlibrary.com/wcd/Ammon Wiki Classical Dictionary: Ammon]
101001 *[http://www.maat.sofiatopia.org/amun.htm Leiden Hymns to Amun]
101002
101003 [[Category:Egyptian gods]]
101004
101005 [[ar:ØŖŲ…ŲˆŲ†]]
101006 [[bg:АĐŧĐžĐŊ]]
101007 [[ca:Ammon]]
101008 [[da:Amon]]
101009 [[de:Amun (Ägyptische Mythologie)]]
101010 [[et:Amon]]
101011 [[es:AmÃŗn (mitología)]]
101012 [[eu:Amon]]
101013 [[fr:Amon]]
101014 [[ko:ė•„ëŦ¸]]
101015 [[it:Amon]]
101016 [[lt:Amonas]]
101017 [[nl:Amon (mythologie)]]
101018 [[ja:ã‚ĸãƒĄãƒŗ]]
101019 [[pl:Amon]]
101020 [[pt:Amon]]
101021 [[ro:Ammon]]
101022 [[ru:АĐŧĐžĐŊ]]
101023 [[sk:AmÃŗn]]
101024 [[fi:Amon]]
101025 [[sv:Amon]]
101026 [[tr:Amun]]
101027 [[uk:АĐŧĐžĐŊ]]
101028 [[zh:é˜ŋ蒙]]</text>
101029 </revision>
101030 </page>
101031 <page>
101032 <title>Ammon</title>
101033 <id>1722</id>
101034 <revision>
101035 <id>39998943</id>
101036 <timestamp>2006-02-17T11:25:56Z</timestamp>
101037 <contributor>
101038 <username>Meegs</username>
101039 <id>406581</id>
101040 </contributor>
101041 <minor />
101042 <comment>bypassed [[Providence]] disambiguation page</comment>
101043 <text xml:space="preserve">'''Ammon''' or '''Ammonites''' ('''&amp;#1506;&amp;#1463;&amp;#1502;&amp;#1468;&amp;#1493;&amp;#1465;&amp;#1503;''' &quot;People&quot;, [[Standard Hebrew]] '''&amp;#699;Ammon''', [[Tiberian Hebrew]] '''&amp;#699;Ammôn'''), also referred to in the [[Bible]] as the &quot;children of Ammon,&quot; were a people living east of the [[Jordan river]], who along with the [[Moabites]] traced their origin to [[Lot (biblical)|Lot]], the nephew of the patriarch [[Abraham]], and who were regarded as close relatives of the [[Israelites]] and [[Edomites]].
101044
101045 ==Territory==
101046
101047 The borders of the Ammonite territory are not clearly defined in the Bible. In [[Book of Judges|Judges]] xi. 13, the claim of the king of Ammon, who demands of the Israelites the restoration of the land &quot;from [[Arnon]] even unto [[Jabbok]] and unto [[Jordan River|Jordan]],&quot; is mentioned only as an unjust claim (xi. 15), inasmuch as the Israelite part of this tract had been conquered from the [[Amorite]] king [[Sihon]] who had, in turn, displaced the Moabites; in Judges xi. 22 it is stated that the Israelites had possession &quot;from the wilderness even unto Jordan,&quot; and that they laid a claim to territory beyond this, so as to leave no room for Ammon. The [[Book of Numbers]] xxi. 24 describes the Hebrew conquest (compare Judges, xi. 19) as having reached &quot;even unto the children of Ammon, for the border of the children of Ammon was [[Jazer]]&quot; (read the last word, with [[Septuagint]], as &quot;Jazer,&quot; instead of &quot;'az,&quot; strong, A. V.; compare Judges, xi. 32). Josh. xiii. 25, defines the frontier of the tribe of Gad as being &quot;Jazer ... and half the land of the children of Ammon.&quot; The latter statement can be reconciled with Num. xxi. 24 (Deut. ii. 19, 37) only by assuming that the northern part of Sihon's Amorite kingdom had formerly been Ammonite. This explains, in part, the claim mentioned above (Judges, xi. 13). According to Deut. ii. 37, the region along the river Jabbok and the cities of the hill-country formed the border-line of Israel. On the authority of Deut. ii. 20, their territory had formerly been in the possession of a mysterious nation, the Zamzummim (also called Zuzim), and the war of [[Chedorlaomer]] (Gen. xiv. 5) with this nation may be connected with the history of Ammon. When the Israelites invaded Canaan, they passed by the frontier of the Ammonites (Num. xxi. 24; Deut. ii. 19, 37; Josh. xiii. 25).
101048
101049 From their original territory the Ammonites are supposed to have been expelled by [[Sihon]], king of the [[Amorites]], who was said to have been found by the Israelites, after their deliverance from [[Egypt]], in possession of [[Gilead]], that is, of the whole country on the left bank of the Jordan, lying to the north of the Arnon ([[Book of Numbers|Numbers]] 21:13). By this invasion, the Ammonites were driven out of Gilead across the upper waters of the Jabbok where it flows from south to north, which henceforth continued to be their western boundary (Numbers 21:24; Deuteronomy 2:37 and 3:16). The other limits of the Ammonitis, or country of the Ammonites ('Lmmanitis chora', [[2 Maccabees]] 4:26) were not exactly defined. On the south it probably adjoined the land of Moab; on the north it may have met that of the king of [[Geshur]] ([[Joshua]] 12:5); and on the east it may have melted away into the desert peopled by [[Kedarites]] and other nomadic tribes.
101050
101051 The chief city of the country was ''[[Rabbah]]'' or ''Rabbath Ammon'', i.e. the metropolis of the Ammonites (Deut. 3:11), called ''Rabbathammana'' by the later [[Greeks]] ([[Polybius]] v. 7. 4). [[Ptolemy Philadelphus]] changed its name to Philadelphia, and made it a large and strong city with an [[acropolis]], situated on both sides of a branch of the Jabbok, today known as Nahr `Amman, the river of Ammon -- whence the designation &quot;city of waters&quot; ([[2 Samuel]] 12:27); see Survey of E. Pal (Pal. Explor. Fund), pp. 19ff. The city of [[Amman, Jordan]] is located on roughly the same site. The country to the south and east of Amman is distinguished by its fertility; and ruined towns are scattered thickly over it, attesting that it was once occupied by a population that, however fierce, was settled and industrious; a fact indicated also by the tribute of grain paid annually to [[Jotham of Judah|Jotham]] (2 Chr. 27:5).
101052
101053 ==In the [[Torah]], [[Book of Joshua|Joshua]] and [[Book of Judges|Judges]]==
101054
101055 ===Descent===
101056
101057 According to the pedigree given in [[Genesis]] xix. 37-38, the Ammonites were closely related to the Israelites and still more closely to their neighbors in the south, the Moabites. This relationship is supported by the fact that all names of Ammonitish persons show a pure [[Canaanite languages|Canaanite]] character. But the above passage indicates also the contempt and hatred for the Ammonites felt by the Hebrews ([[Deuteronomy]] xxiii. 4). The Torah excludes the progeny of Ammonites from the assembly of the Lord (but cf. Deut. ii. 19, 37, in which the consciousness of relationship seems to be at the root of the regard shown to Ammon).
101058
101059 Both the Ammonites and Moabites are sometimes spoken of under the common name of the children of Lot ([[Deuteronomy]] 2:19; [[Psalms]] 83:8). Both tribes hired [[Balaam]] to curse [[Israel]], which he instead blessed (Deut. 23:4). Also known as the ''Beni-ammi'' ([[Genesis]] 19:38), the Ammonites and the Israelites, throughout the Old Testament and recorded history, were antagonists.
101060
101061 ===Role in the Israelite Exodus===
101062
101063 When the Israelites of the Exodus paused before their territory, the Ammonites prohibited them from passing through their lands. For this act, they were denied entry into &quot;the congregation of the Lord&quot; until ten generations had passed (Deuteronomy 23:3).
101064
101065 Sometimes a slight distinction only seems to be made between the Ammonites and their southern brothers, the Moabites. Deut. xxiii. 4, 5, for instance, states that the Ammonites and Moabites hired [[Balaam]] to curse the Israelites, while in Num. xxii. 3 et seq. Moab alone is mentioned. Some authorities overcome this discrepancy by the help of the emended text of Num. xxii. 5, according to which Balaam came &quot;from the land of the children of Ammon.&quot; This is the reading of most ancient versions; the Septuagint, however, has it like the present Hebrew text: &quot;the children of his people&quot; (&quot;ammo&quot;) (see Balaam).
101066
101067 ===In the time of the Judges===
101068
101069 In Judges, iii. 13, the Ammonites appear as furnishing assistance to King [[Eglon]] of Moab against Israel; but in Judges, x. 7, 8, 9, in which not only Gilead is oppressed but a victorious war is waged also west of the Jordan, Ammon alone is mentioned. The speech of Jephthah which follows, however, is clearly addressed to the Moabites as well, for he speaks of their god [[Chemosh]] (Judges, xi. 18-24). Some scholars find that these varying statements conflict (compare Deut. xxiii. 3); others conclude that the brother-nations still formed a unit. The small nation of Ammon could face Israel only in alliance with other non-Israelites (compare II Chron. xx. and Ps. lxxxiii. 7). The attack of King [[Nahash]] upon the frontier city Jabesh in Gilead was easily repulsed by Saul (I Sam. xi., xiv. 47).
101070
101071 ==During the Kingdoms of [[Kingdom of Israel|Israel]] and [[Kingdom of Judah|Judah]]==
101072
101073 Attacks by the Ammonites on Israelite communities east of the Jordan were the impetus behind the unification of the tribes under [[Saul the King|Saul]], who defeated them. ([[Books of Samuel|1 Samuel]] 11:11).
101074
101075 From II Sam. x. 2, it may be concluded that [[Nahash]] assisted David out of hatred for Saul; but his son [[Hanun]] provoked David by ill-treating his ambassadors, and brought about the defeat of the Ammonites, despite assistance from their northern neighbors in [[Aram]] (ibid. x. 13). Their capital Rabbah was captured (ibid. xii. 29), and numerous captives were taken from &quot;all the cities of the children of Ammon.&quot;
101076
101077 In 2 Samuel 12:31, King David is described slaughtering Ammonites:
101078 :''And he brought forth the people that were therein, and put them under saws, and under harrows of iron, and under [[axe]]s of iron, and made them pass through the [[brick]]-[[kiln]]: and thus did he unto all the cities of the children of Ammon.''
101079
101080 David's treatment of the captives (ibid. xii. 31) was not necessarily barbarous; the description may be interpreted to mean that he employed them as laborers in various public works. Some scholars claim that these passages recount symbolic gestures of submission common to the times rather than actual reports of massacres. The Chronicler, however, takes it in the most cruel sense (I Chron. xx. 3). The Ammonites, themselves, had a reputation for exceeding cruelty in warfare (I Sam. xi. 2; [[Amos]], i. 13). The new king, [[Shobi]], a brother of Hanun, evidently appointed by David, kept peace, his attitude being even friendly (II Sam. xvii. 27). There were Ammonite [[mercenaries]] in David's army (ibid. 23, 27) and Solomon's chief wife, the mother of his heir, was Naamah, the Ammonitess (I Kings, xiv. 21; compare xi. 1), probably a daughter of Shobi. She became the mother of [[Rehoboam]] ([[Books of Kings|1 Kings]] 14:31; [[Books of Chronicles|2 Chronicles]] 12:13).
101081
101082 After this, hostilities again broke out, under [[Jehoshaphat]] (II Chron. xx.), [[Jeroboam II]] (Amos, i. 13) and under [[Jotham]], who subjected the Ammonites (II Chron. xxvii. 5).
101083
101084 From the [[Assyria|Assyrian]] inscriptions, we learn that the Ammonite king [[Baasha ben Ruhubi| Ba'sa (Baasha)]] son of [[Ruhubi]], with 1000 men, joined [[Ahab]] and the Syrian allies against [[Shalmaneser III]] at the [[Battle of Karkar]] in [[853 BC]]. They may at this time have been [[vassal]]s of [[Bar-Hadad II]], the Aramaean king of [[Damascus]]. In [[734 BC|734]] their king [[Sanipu]] was a vassal of [[Tiglath-Pileser III]] and his successor, [[Pudu-ilu]], held the same position under [[Sennacherib]] and [[Esarhaddon]]. An Assyrian [[tribute]]-list from this period, showing that Ammon paid one-fifth of Judah's tribute, gives evidence of the scanty extent and resources of the country (see Schrader, &quot;K.A.T.&quot; pp. 141 et seq.; Delitzsch, &quot;Paradies,&quot; p. 294; Winckler, &quot;Geschichte Israels,&quot; p. 215).
101085
101086 Somewhat later, their king [[Amminadab (Ammon)|Amminadab I]] was among the tributaries who suffered in the course of the great Arabian campaign of [[Assurbanipal]]. Other kings attested to in contemporary sources are [[Barakel]] (attested to in several contemporary [[seal (device)|seal]]s and [[Hissalel]] who reigned about 620 BCE (and who is mentioned on an inscription on a bottle found at [[Tel Siran]], Jordan along with his son, King Amminadab II, who reigned around 600 BCE.)
101087
101088 With the neighbouring tribes, the Ammonites under King [[Baalis]] helped the [[Babylonian]] monarch [[Nebuchadrezzar II|Nebuchadrezzar]] against [[Jehoiakim]] (2 Kings 24:2); and if they joined [[Zedekiah]]'s conspiracy ([[Book of Jeremiah|Jeremiah]] 27:3), and were threatened by the [[Babylonian]] army ([[Book of Ezekiel|Ezekiel]] 21:20), they do not appear to have suffered greatly.
101089
101090 ==Subsequent History==
101091
101092 [[Image:Levant 800.png|thumb|400px|right|Map of the southern [[Levant]], c.[[800 BCE]].]]
101093
101094 In the time of [[Nebuchadnezzar II|Nebuchadnezzar]], the Ammonites seem to have been fickle in their political attitude. They assisted the [[Babylonia]]n army against the Jews (II Kings, xxiv. 2); encroached upon the territory of the [[Tribe of Gad|Gad]]; and occupied [[Heshbon]] and [[Jazer]] ([[Jeremiah]] xlix. 1; ''cf.'' [[Zephaniah]] ii. 8); but the prophetic threatenings in Jer. ix. 26, xxv. 21, xxvii. 3, and [[Ezra]], xxi. 20, point to rebellion by them against Babylonian supremacy. They received [[Jew]]s fleeing before the Babylonians (Jer. xl. 11), and their king, [[Baalis]], instigated the murder of [[Gedaliah]], the Babylonians' Jewish governor of Jerusalem and its environs (ibid. xl. 14, xli. 15).
101095
101096 At the time of the rebuilding of Jerusalem by Ezra and [[Nehemiah]], they were hostile to the Jews, and [[Tobiah]], an Ammonite (possibly the governor of Ammon), incited them to hinder the work (Neh. iii. 35). But inter-marriages between Jews and Ammonites were frequent (Ezra, ix. 1; I Esd. viii. 69, and elsewhere).
101097
101098 Little mention is made of the Ammonites through the [[Persian Empire|Persian]] and early [[Hellenistic]] periods. Their name appears, however, during the time of the [[Maccabees]]. The Ammonites, with some of the neighbouring tribes, did their utmost to resist and check the revival of the Jewish power under [[Judas Maccabaeus]] ([[1 Maccabees]] v. 6; cf. [[Josephus]] ''Ant. Jud.'' xii. 8. 1.).
101099
101100 It is stated (I Macc. v. 6) that the Ammonites under [[Timotheus (Ammon)|Timotheus]] were defeated by Judas; but it is possible that, after the exile, the term Ammonite denoted all peoples living in the former country of Ammon and Gad. [[Ezekiel]] xxv. 4-5 seems to mark the beginning of an immigration of tribes from the [[Arabian]] desert (''cf.'' Neh. ii. 19, iv. 7, Josephus, &quot;Ant.&quot; xiii. 9, § 1).
101101
101102 The last notice of the Ammonites themselves is in [[Justin Martyr]] (''Dial. cum Tryph.'' sec. 119), where it is affirmed that they were still a numerous people.
101103
101104 ==[[Language]]==
101105 ''Main Article: [[Ammonite language]]''
101106
101107 The few Ammonite names that have been preserved (Nahash, [[Hanun]], and those mentioned above; [[Zelek]] in 2 Samuel 23:37 is textually uncertain) testify, in harmony with other considerations, that their language was [[Semitic]], closely allied to the [[Hebrew language]] and the [[Moabite language]].
101108
101109 ==[[Religion]]==
101110
101111 Of the customs, religion, and constitution of the Ammonites, little is known. The frequent assumption that, living on the borders of the desert, they remained more pastoral than the Moabites and Israelites, is unfounded (Ezek. xxv. 4, II Chron. xxvii. 5); the environs of Rabbah, at least, were fertile and were tilled. In regard to other cities than Rabbah, see Judges, xi. 33; II Sam. xii. 31. Of their gods the name of only the chief deity, [[Milcom]] (sometimes given as [[Moloch]]), as in I Kings, xi. 5 [LXX. 7], 33; I Kings, xi. 7; II Kings, xxiii. 13). In Jer. xlix. 1, 3, &quot;Malcam&quot; is to be translated by &quot;Milcom&quot; (the god) and not as in A. V., &quot;their king.&quot; In the Bible Milcom is described as having been worshipped with [[human sacrifice]].
101112
101113 From the names of their kings, it seems logical that the [[cult]] of the [[Baal]]im probably coexisted in Ammon, as, possibly, that of [[El (god)|El]]. The name Tobiah suggests that [[YHWH]] may have been worshipped in Ammon as well; possibly this was an import from the era of Israelite domination. Other inscriptions and names suggest the possibility that such gods as the [[Edomite]] deity [[Kaus]] had Ammonite cults.
101114
101115 ==Economy==
101116
101117 Like its sister-kingdom of Moab, Ammon was the source of numerous natural resources, including [[sandstone]] and [[limestone]]. It had a productive agricultural sector and occupied a vital place along the [[King's Highway (ancient)|King's Highway]], the ancient trade route connecting Egypt with [[Mesopotamia]], [[Syria]], and [[Anatolia]]. As with the Edomites and Moabites, trade along this route gave them considerable revenue.
101118
101119 ==In [[Jewish law]]==
101120
101121 The Ammonites, still numerous in the south of [[Palestine (region)|Palestine]] in the second Christian century according to Justin Martyr (&quot;Dialogus cum Tryphone,&quot; ch. cxix.), presented a serious problem to the [[Pharisees]] because many marriages with Ammonite and Moabite wives had taken place in the days of Nehemiah (Neh. xiii. 23). Still later, it is not improbable that when Judas Maccabeus had inflicted a crushing defeat upon the Ammonites, Jewish warriors took Ammonite women as wives, and their sons, sword in hand, claimed recognition as Jews notwithstanding the law (Deut. xxiii. 4) that &quot;an Ammonite or a Moabite shall not enter into the congregation of the Lord.&quot; Such a condition or a similar incident is reflected in the story told in the [[Talmud]] (Yeb. 76b, 77a; Ruth R. to ii. 5) that in the days of King Saul the legitimacy of David's claim to royalty was disputed on account of his descent from Ruth, the Moabite; whereupon [[Ithra]], the Israelite (II Sam. xvii. 25; compare I Chron. ii. 17), girt with his sword, strode like an Ishmaelite into the schoolhouse of [[Jesse]], declaring upon the authority of [[Samuel]], the prophet, and his [[bet din]] (court of justice), that the law excluding the Ammonite and Moabite from the Jewish congregation referred only to the men—who alone had sinned in not meeting Israel with bread and water—and not to the women. The story reflects actual conditions in pre-Talmudic times, conditions that led to the fixed rule stated in the [[Mishnah]] (Yeb. viii. 3): &quot;Ammonite and Moabite men are excluded from the Jewish community for all time; their women are admissible.&quot;
101122
101123 The fact that Rehoboam, the son of King Solomon, was born of an Ammonite woman (I Kings, xiv. 21-31) also made it difficult to maintain the [[Messiah|messianic]] claims of the [[Davidic line|house of David]]; but it was adduced as an illustration of divine [[Divine providence|Providence]] which selected the &quot;two doves,&quot; [[Ruth]], the Moabite, and Naamah, the Ammonite, for honorable distinction (B. Ḳ. 38b).
101124
101125 ==Resources==
101126
101127 *[http://www.hostkingdom.net/Jordan.html#Ammon Ammon on Bruce Gordon's Regnal Chronologies] (also at [http://ellone-loire.net/obsidian/Jordan.html#Ammon])
101128 *[http://www.kinghussein.gov.jo/his_testament.html Jordanian government site on ancient Trans-Jordanian kingdoms]
101129 *[http://ancientneareast.tripod.com/Ammonites.html Ancient Biblical Ammonites]
101130 *[http://ancientneareast.tripod.com/Umayri_Keramim.html Tel Umayri]
101131 *[http://www.newadvent.org/cathen/01431b.htm Catholic Encyclopedia article]
101132 *[http://www.jewishencyclopedia.com/view.jsp?artid=1414&amp;letter=A Jewish Encyclopedia article]
101133
101134 {{eastons}}
101135
101136 {{1911}}
101137 {{JewishEncyclopedia}}
101138
101139 [[Category:Ammon]]
101140 [[Category:Ancient Israel and Judah]]
101141 [[Category:Ancient peoples]]
101142 [[Category:History of Jordan]]
101143 [[Category:Tanakh people]]
101144 [[Category:Torah people]]
101145
101146 [[ca:Ammonites]]
101147 [[de:Ammoniter]]
101148 [[he:×ĸמון]]
101149 [[ru:АĐŧĐŧĐžĐŊиŅ‚ŅĐŊĐĩ]]</text>
101150 </revision>
101151 </page>
101152 <page>
101153 <title>Ammonius Hermiae</title>
101154 <id>1723</id>
101155 <revision>
101156 <id>39511401</id>
101157 <timestamp>2006-02-14T00:31:35Z</timestamp>
101158 <contributor>
101159 <username>BDAbramson</username>
101160 <id>196446</id>
101161 </contributor>
101162 <minor />
101163 <comment>[[WP:AWB|AWB assisted]] re-categorisation per [[WP:CFD|CFD]]</comment>
101164 <text xml:space="preserve">'''Ammonius Hermiae''' ([[5th century]] AD) was a [[Byzantine Empire|Greek]] [[philosopher]], and the son of [[Hermias]] or Hermeias, a fellow-pupil of [[Proclus]]. He taught at [[Alexandria]], and had among his scholars [[Asclepius]], [[John Philoponus]], [[Damascius]] and [[Simplicius of Cilicia|Simplicius]].
101165
101166 Of his reputedly numerous writings, his commentaries on [[Plato]] and [[Ptolemy]] are lost, but we have:
101167 #A commentary on the ''Isagoge'' of [[Porphyry (philosopher)|Porphyry]] (Venice, 1500 fol.);
101168 #A commentary on the ''Categories'' (Venice, 1503 fol.), the authenticity of which is doubted by [[C. A. Brandis]];
101169 #A commentary on the ''De Interpretatione'' (Venice, 1503 fol.). They are printed in Brandis's [[scholia]] to Aristotle, forming the fourth volume of the [[Berlin]] Aristotle; they are also edited (1891-1899) in A. Busse's ''Commentaria in Aristot. Graeca''. The special section on fate was published separately by [[J. C. Orelli]], ''Alex. Aphrod., Ammonii, et aliorum de Fato quae supersunt'' (Zurich, 1824).
101170 #Other commentaries on the Topics and the first six books of the [[Metaphysics]] of [[Aristotle]] still exist in manuscript.
101171
101172 A life of Aristotle, ascribed to Ammonius, but with more accuracy to [[John Philoponus]], is often prefixed to editions of Aristotle. It has been printed separately, with Latin translation and scholia, at [[Leiden]], 1621, at [[Helmstedt]], 1666, and at [[Paris]], 1850.
101173
101174 Of the value of the logical writings of Ammonius there are various opinions. K. Prantl speaks of them with great, but hardly merited, contempt.
101175
101176 For a list of his works see [[Johann Albert Fabricius|J. A. Fabricius]], ''Bibliotheca Graeca,'' v. 704-707: [[C. A. Brandis]], ''Uber d. Reihenf. d. Bucher d. Aristot. Org.,'' 283 f.; [[K. Prantl]], ''Gesch. d. Logik,'' i. 642.
101177
101178 ==References==
101179 *{{1911}}
101180 [[Category:Latin authors]]</text>
101181 </revision>
101182 </page>
101183 <page>
101184 <title>Ammonius Saccas</title>
101185 <id>1724</id>
101186 <revision>
101187 <id>37530826</id>
101188 <timestamp>2006-01-31T16:25:26Z</timestamp>
101189 <contributor>
101190 <username>Andrew c</username>
101191 <id>704413</id>
101192 </contributor>
101193 <text xml:space="preserve">'''Ammonius Saccas''' ([[3rd century|3rd century AD]]) was a Greek [[philosopher]] of [[Alexandria]], often called the founder of the [[Neoplatonism|Neoplatonic school]].
101194
101195 Of humble origin, he appears to have earned a livelihood as a [[Porter (carrier)|porter]] at the docks of Alexandria; hence his nickname of &quot;Sack-bearer&quot; (''Sakkas,'' for ''sakkoforos''). The details of his life are unknown. After long study and meditation, Ammonius opened a school of philosophy in Alexandria, where his principal pupils were [[Herennius]], the two [[Origen]]s, [[Cassius Longinus]] and [[Plotinus]]. As he designedly wrote nothing, and, with the aid of his pupils, kept his views secret after the manner of the [[Pythagoreans]], his philosophy must be inferred mainly from the writings of Plotinus. As [[Eduard Zeller]] points out, however, there is reason to think that his doctrines were closer to those of the earlier [[Platonic idealism|Platonists]] than to those of Plotinus. [[Hierocles of Alexandria|Hierocles]], writing in the [[5th century]], states that Ammonius' fundamental doctrine was an eclecticism, derived from a critical study of [[Plato]] and [[Aristotle]]. His admirers credited him with having reconciled the quarrels of the two great schools. His death is variously given between AD [[240]] and [[245]], at a great age.
101196
101197 The details of the life of the philosopher Ammonius Saccas are so unclear that he has frequently been confused with a Christian philosopher of the [[Ammonius of Alexandria (Christian)|same name]].
101198
101199 ==See also==
101200 *[[Origen]]
101201
101202 [[Category:240s deaths]]
101203 [[Category:Neoplatonists]]
101204 [[Category:Roman era philosophers]]
101205
101206 [[cs:AmmÃŗnios SakkÃĄs]]
101207 [[de:Ammonios Sakkas]]
101208 [[es:Ammonio Saccas]]
101209 [[fr:Ammonios Saccas]]
101210 [[it:Ammonio Sacca]]
101211 [[hu:AmmÃŗniosz Szakkasz]]
101212 [[pl:Amoniusz]]
101213 [[pt:Amônio Sacas]]
101214 [[ru:АĐŧĐŧĐžĐŊиК ĐĄĐ°ĐēĐēĐ°Ņ]]
101215 [[sk:Ammonios Sakkas]]
101216 [[fi:Ammonios Sakkas]]</text>
101217 </revision>
101218 </page>
101219 <page>
101220 <title>Amorites</title>
101221 <id>1725</id>
101222 <revision>
101223 <id>15900190</id>
101224 <timestamp>2004-01-05T04:09:51Z</timestamp>
101225 <contributor>
101226 <username>Zestauferov</username>
101227 <id>21678</id>
101228 </contributor>
101229 <comment>merge &amp; redirect</comment>
101230 <text xml:space="preserve">#REDIRECT[[Amorite]]</text>
101231 </revision>
101232 </page>
101233 <page>
101234 <title>Book of Amos</title>
101235 <id>1726</id>
101236 <revision>
101237 <id>41198988</id>
101238 <timestamp>2006-02-25T19:00:33Z</timestamp>
101239 <contributor>
101240 <username>Bdc822</username>
101241 <id>990774</id>
101242 </contributor>
101243 <comment>/* Where was it written? */</comment>
101244 <text xml:space="preserve">{{Books of the Old Testament}} {{Books of Nevi'im}}
101245
101246 The '''Book of Amos''' is one of the books of the [[Nevi'im]] and of the [[Old Testament]].
101247
101248 ==Who wrote it?==
101249 '''[[Amos (prophet)|Amos]]''' was a [[prophet]] during the reign of Jeroboam ben Joash (Jeroboam II), ruler of [[Israel]] from 793 BCE to 753 BCE, and the reign of Uzziah, King of Judah, at a time when both kingdoms (Israel in the North and Judah in the South) were peaking in prosperity. He was a contemporary of the prophet [[Hosea]], but likely preceded him. Many of the earlier accounts of prophets found in the [[Old Testament]] are found within the context of other accounts of Israel's history. Amos, however, is the first prophet whose name also serves as the title of the corresponding biblical book in which his story is found.
101250
101251 It is unlikely that Amos was a &quot;professional prophet&quot;, trained to work in the king's court. Rather, he gives the account of being called by God while working in his trade as a herdsman and farmer. The food that he farmed (sycamore figs) is thought to be a food most widely known as part of an [[Ancient Egyptian|Egyptian]] commoner's diet. Therefore, scholars assume that Amos was not a member of the wealthy elite who he, by God's command, condemns in his prophesy. Rather he appears to be a working-class shepherd. Amos pointed out that he was not trained as a professional prophet, but did not condemn prophecy in itself.
101252
101253 ==When was it written?==
101254 Most scholars believe that [[Amos (prophet)|Amos]] gave his message in the autumn of 750 BCE or 749 BCE. It is generally understood that his preaching at [[Bethel]] lasted only a single day at the least and a few days at the most. Leading up to this time, Assyrian armies battled against [[Damascus]] for a number of years, which greatly diminished Syria's threat to [[Israel]]. As a result of the fighting amongst its neighbors, Israel had the benefit of increasing its borders almost to those of the time of [[David]] and [[Solomon]].
101255
101256 It should also be noted that Amos preached about two years before a very large earthquake, and made reference to it twice in his book. [[Zechariah]] remembers this earthquake over 200 years later (Zech. 14:5).
101257
101258 ==Where was it written?==
101259 Some scholars believe that [[Amos (prophet)|Amos]]' message was recorded after he delivered it to the Northern Kingdom, upon returning to his southern homeland of [[Tekoa]], a town eight kilometres south of [[Bethlehem]]. It is mentioned many times in the [[Old Testament]] ([[Joshua]] 15:39, [[2 Samuel]] 14:9 and 23:26, [[1 Chronicles]] 11:28). [[Rehoboam]] is reported to have fortified Tekoa along with other cities in [[Kingdom of Judah|Judah]] in [[2 Chronicles]] 11:5-6.
101260
101261 There are some differing opinions as to the location of the Tekoa Amos was presumably from. It is believed by most that Amos was a southern farmer, called by [[God]] to deliver his prophetic message in the North. However, some believe that Amos was actually from a Tekoa in the North, near [[Galilee]], but this is most likely not true. They believe that it is more probable that Amos was from the North because it has conditions more suitable for the cultivation of sycamore figs than the Tekoa of the South. Sycamore figs grow at a low elevation, lower than the Tekoa of Judah, which is at a relatively high elevation of 850 metres (overlooking both [[Jerusalem]] and [[Bethlehem]]). Others have discredited the theory about the Galilean Tekoa, citing that the difference in elevation between the two locations is not significant. Scholars in support of the idea of Amos being from the North also say it makes more sense because of Amaziah's accusation of conspiracy in chapter seven, verse 10. A conspirator, they argue, is more likely to be a national.
101262
101263 Two other opinions of where Amos' writings were recorded deserve mention. They are that 1) disciples of Amos followed him and recorded his message and 2) that someone in his audience in the North recorded his message.
101264
101265 ==Why was it written?==
101266 The Book of Amos is set in a time when the people of [[Israel]] have reached a low point in their devotion to [[Yahweh]] - the people have become greedy and have stopped following and adhering to their values. The wealthy elite are becoming rich at the expense of others. Peasent farmers who once practiced subsistence farming are being forced to farm what is best for foreign trade, mostly wine and oil.
101267
101268 Yahweh speaks to Amos, a farmer and herder and tells him to go to [[Samaria]], the capital of the Northern kingdom. Through Amos, Yahweh tells the people that he is going to judge Israel for its sins, and it will be a foreign nation that will enact his judgement.
101269
101270 The people understand judgment as the coming of &quot;the Day of the Lord.&quot; &quot;The Day of the Lord&quot; was widely celebrated and highly anticipated by the followers of Yahweh. However, Amos came to tell the people that &quot;the Day of the Lord&quot; was coming soon and that it meant divine judgment and justice for their own iniquity.
101271
101272 ==What are the themes of the books?==
101273 Many scholars break the book of Amos up into three sections. Chapters one and two look at the nations surrounding [[Israel]] and then Israel itself through a moral/ethical filter. Chapters three to six are a collection of verses that look more specifically at Israel's transgressions. Chapters seven to nine include visions that [[Yahweh]] gave Amos as well as Amaziah's rebuke of the prophet. The last section of the book (7:1 to 9:8), commonly referred to as the Book of Visions, contains the only narrative section.
101274
101275 In the first two visions, [[Amos (prophet)|Amos]] is able to convince Yahweh not to act out the scenes of discipline presented to him. The ideas of discipline and justice, although not enacted here, corresponds to the central message in what some refer to as the Book of Woes (5:1 to 6:14). This message can be seen most clearly in verse 24 of chapter five. The plagues in the preceding chapter, chapter four, were supposed to be seen as acts of discipline that turned Israel back to Yahweh. However, the people did not interpret the acts this way and the discipline turned into judgment for the people's disobedience. In the second set of visions (7:7-9), there is no intercession by Amos and Yahweh says that he &quot;will never pass by them again.&quot; The plight of Israel has become hopeless. [[God]] will not hold back judgment because Israel refuses to listen to the prophets and even goes so far as to try to silence them (2:12, 3:8, 7:10-17).
101276
101277 The central idea of the book of Amos according to most scholars is that Yahweh puts his people on the same level as the nations that surround it -- Yahweh expects the same morality of them all. As it is with all nations that rise up against the kingdom of Yahweh, even Israel and Judah will not be exempt from the judgment of Yahweh because of their idolatry and unjust ways. The nation that represents Yahweh must be made pure of anything or anyone that profanes the name of Yahweh. Yahweh's name must be exalted.
101278
101279 Other major themes in the book of Amos include: social justice and concern for the disadvantaged; the idea that Israel's [[covenant]] with Yahweh did not exempt them from his standards of morality; Yahweh is [[God]] of all nations; Yahweh is judge of all nations; Yahweh is God of moral righteousness; Yahweh made all people; Yahweh elected Israel and then redeemed Israel so that he would be known throughout the world; election by Yahweh means that those elected are responsible to live according to the purposes clearly outlined to them in the law; Yahweh will only destroy the unjust and a remnant will remain and; Yahweh is free to judge, redeem and act as savior to Israel.
101280 ----
101281
101282 ===Translations of the book of Amos:===
101283 *[[Judaism|Jewish]] translations:
101284 ** [http://www.chabad.org/library/archive/LibraryArchive2.asp?AID=16098 Amos] from Chabad.org
101285
101286 *[[Christian]] translations:
101287 ** [http://www.biblegateway.com/passage/?search=amos;&amp;version=49; ''Amos'' at BibleGateway.com] (Various translations)
101288
101289 ===References:===
101290 * Easton's Bible Dictionary, 1897.
101291 * LaSor, William Sanford et al. ''Old Testament Survey: the Message, Form, and Background of the Old Testament''. Grand Rapids: William B. Eerdmans, 1996.
101292 * Keil, C.F. et al. ''Commentary on the Old Testament in Ten Volumes''. Grand Rapids: William B. Eerdmans, 1986.
101293 * Metzger, Bruce M. et al. ''The Oxford Companion to the Bible''. New York: Oxford University Press, 1993.
101294 * Doorly, William J. ''Prophet of Justice: Understanding the Book of Amos''. New York: Paulist Press 1989.
101295 * Carroll R., M. Daniel ''Amos: The Prophet and His Oracles''. Louisville: Westminster John Knox Press, 2002.
101296 * Coote, Robert B. ''Amos Among the Prophets: Composition and Theology''. Philadelphia: Fortress Press, 1981.
101297 * Haynes, John H. ''Amos the Eighth Century Prophet: His Times and His Preaching''. Nashville: Abingdon Press, 1988.
101298 * Hasel, Gerhard F. ''Understanding the Book of Amos: Basic Issues in Current Interpretations''. Grand Rapids: Baker Book House, 1991.
101299
101300 ==External links==
101301 Online translations of ''Book of Amos'':
101302 * [http://www.anova.org/sev/htm/hb/30_amos.htm ''Amos'' at The Great Books] (New Revised Standard Version)
101303 * {{biblegateway||Amos}}
101304 * [http://en.wikisource.org/wiki/Bible%2C_King_James%2C_Amos ''Amos'' at Wikisource] (Authorised King James Version)
101305
101306 Related articles:
101307 * [http://explorers.whyte.com/Bible/amos.htm Nicholas Whyte on Amos]
101308 * [http://www.bible.gen.nz/ ''Amos'' Hypertext Bible Commentary]
101309
101310 ----
101311 ''Prepared in 2005 for the course BIBL5023 at [[Acadia Divinity College]]''
101312
101313 [[Category:Nevi'im|Amos]]
101314 [[Category:Old Testament books|Amos]]
101315
101316 [[cs:Kniha Ámos]]
101317 [[de:Amos (Buch)]]
101318 [[fr:Livre d'Amos]]
101319 [[pl:Księga Amosa]]
101320 [[fi:Aamoksen kirja]]
101321 [[zh:é˜ŋ摊司書]]</text>
101322 </revision>
101323 </page>
101324 <page>
101325 <title>Amphipolis</title>
101326 <id>1727</id>
101327 <revision>
101328 <id>41392175</id>
101329 <timestamp>2006-02-27T00:56:06Z</timestamp>
101330 <contributor>
101331 <ip>64.12.116.70</ip>
101332 </contributor>
101333 <text xml:space="preserve">[[Image:Amphipolis location.jpg|right|300px|]]
101334 '''Amphipolis''' (modern Greek: '''Amfipoli'''; see also [[List of traditional Greek place names]]), was an ancient city of [[Macedon]]ia, on the east bank of the river [[Strymon]], where it emerges from Lake Cercinitis, about 3 m. from the sea.
101335
101336 Originally a [[Thracian]] town, known as ''Ennea Odoi'' (&quot;Nine Roads&quot;), it was [[colonized]] by Athenians with other Greeks under [[Hagnon]] in [[437 BC]], previous attempts--in [[497 BC|497]], [[476 BC|476]] (Schol. [[Aeschines|Aesch.]] ''De fals. leg.'' 31) and [[465 BC|465]]--having been unsuccessful.
101337
101338 In [[424 BC]] it surrendered to the Spartan [[Brasidas]] without resistance, owing to the gross negligence of the historian [[Thucydides]], who was with the fleet at [[Thasos]]. In [[422 BC]] [[Cleon]] led an unsuccessful expedition to recover it, in which both he and Brasidas were slain (see [[Battle of Amphipolis]]).
101339
101340 The importance of Amphipolis in ancient times was due to the fact that it commanded the bridge over the Strymon, and consequently the route from northern [[Greece]] to the [[Hellespont]]; it was important also as a depot for the gold and silver mines of the district, and for timber, which was largely used in shipbuilding. This importance is shown by the fact that, in the [[peace of Nicias]] ([[421 BC]]), its restoration to [[Athens]] is made the subject of a special provision, and that about [[417 BC|417]], this provision not having been observed, at least one expedition was made by Nicias with a view to its recovery.
101341
101342 [[Philip of Macedon]] made a special point of occupying it ([[357 BC|357]]), and under the early empire it became the headquarters of the Roman propraetor, though it was recognized as independent.
101343 Many inscriptions, coins, etc., have been found here, and traces of the ancient fortifications and of a [[Roman aqueduct]] are visible.
101344
101345 ==Amphipolis in other media==
101346
101347 [[Xena]], the main fictional character in the [[TV]] series ''[[Xena: Warrior Princess]]'', was of Amphipolis.
101348
101349 ==External links==
101350 *[http://www.livius.org Livius], [http://www.livius.org/am-ao/amphipolis/amphipolis.html Amphipolis (Ennea Hodoi)] by Jona Lendering
101351
101352 ==References==
101353 *{{1911}}
101354
101355 [[Category:Ancient Greek cities]]
101356 [[Category:Athenian colonies]]
101357 [[Category:Archaeological sites in Greece]]
101358
101359 [[de:Amphipolis]]
101360 [[fa:ØĸŲ…ŲÛŒŲžŲˆŲ„ÛŒØŗ]]
101361 [[fr:Amphipolis]]
101362 [[la:Amphipolis]]
101363 [[nl:Amphipolis]]
101364 [[pl:Amfipolis]]
101365 {{Link FA|fr}}</text>
101366 </revision>
101367 </page>
101368 <page>
101369 <title>Amram</title>
101370 <id>1728</id>
101371 <revision>
101372 <id>39187631</id>
101373 <timestamp>2006-02-11T08:55:39Z</timestamp>
101374 <contributor>
101375 <ip>70.176.153.107</ip>
101376 </contributor>
101377 <comment>Amram means &quot;people are exalted&quot;</comment>
101378 <text xml:space="preserve">{{dablink|[[Amram Gaon]] was a Jewish Babylonian sage who lived in the 9th century.}}
101379
101380 '''Amram''' ('''&amp;#1506;&amp;#1463;&amp;#1502;&amp;#1456;&amp;#1512;&amp;#1464;&amp;#1501;''' &quot;Friend of the most high ([[Elohim|God]]&quot;), or &quot;People are Exalted&quot; [[Standard Hebrew]] '''&amp;#703;Amram''', [[Tiberian Hebrew]] '''&amp;#703;Amr&amp;#257;m''') is a [[Levite]], a son of [[Kohath]], the husband of [[Jochebed]] (Ex 6,20 and Num 26,59) and father of [[Aaron]], [[Miriam]] and [[Moses]]. He is mentioned in the [[Book of Exodus]].
101381
101382 According to the [[Talmud]], Amram promulgated the laws of [[marriage]] and [[divorce]] amongst the Jews in Egypt.
101383
101384 The Arabic version refers to the father of Moses as Imran - and the Israeli/Jewish people are referred to as &quot;Aale Imran&quot; (Children of Imran) in the [[Qur'an]], the third [[Surah]] of which is titled ''The House of Imran''. &quot;Imran&quot; is also the name attributed by Muslims to the father of the [[Mary, the mother of Jesus|Virgin Mary]] (he is not named in the Bible, but called &quot;Joachim&quot; in Catholic and Orthodox Tradition).
101385
101386 The Testament of Amram ([[2nd century BC]]) is the name assigned to one of the [[Dead Sea Scrolls]] (4Q535, Manuscript B). It is related to the [[Watchers]]:
101387
101388 ''[[Enoch]]: &quot;I saw Watchers in my vision, the dream-vision. Two men were fighting over me ... holding a great contest over me. I asked them, 'Who are you, that you are thus empowered over me?' They answered, 'We have been empowered and rule over all mankind.' They said to me, 'Which of us do you choose to rule you?' I raised my eyes and looked. One of them was terrifying in his appearance, like a serpent, his cloak, many-colored yet very dark. ... And I looked again, and in his appearance, his visage like a [[viper]]. ... I replied to him, 'This Watcher, who is he?' He answered, 'This Watcher ... his three names are [[Belial]] and [[Prince of Darkness]] and [[King of Evil]].' I said (to the other Watcher), 'My lord, what dominion (have you?)' He answered, 'You saw (the viper), and he is empowered over all Darkness, while I (am empowered over all Light.) ... My three names are [[Michael]], [[Prince of Light]] and [[King of Righteousness]].'&quot;'' (translation Prof. Robert Eisenman)
101389
101390 [[Category:Torah people]]
101391
101392 [[de:Amram]]
101393 [[fr:Imran]]</text>
101394 </revision>
101395 </page>
101396 <page>
101397 <title>Amyntas I of Macedon</title>
101398 <id>1729</id>
101399 <revision>
101400 <id>36832661</id>
101401 <timestamp>2006-01-26T19:56:44Z</timestamp>
101402 <contributor>
101403 <ip>168.233.1.6</ip>
101404 </contributor>
101405 <text xml:space="preserve">'''Amyntas I''', king of [[Macedon]] (c. [[540 BC|540]]-[[498 BC]]), was a
101406 tributary vassal of [[Darius Hystaspes]] of [[Iran|Persia]]. With him the history of Macedon may be said to begin. He was the first of its rulers to have relations with other countries; he entered into an alliance with the [[Pisistratus|Peisistratidae]] of [[Athens]], and when [[Hippias (son of Pisistratus)|Hippias]] was driven out of Athens he offered him the territory of [[Anthemus]] on the [[Thermaic Gulf]], with the object of turning the [[Hellenic civilization|Greek]] party feuds to his own advantage.
101407
101408 '''Ancient sources:''' ([[Herodotus]] v. 17, 94; [[Junianus Justinus|Justin]] vii. 2; [[Thucydides]] ii. 100; [[Pausanias (geographer)|Pausanias]] ix. 40).
101409
101410 {{1911}}
101411
101412 {{start box}}
101413 {{succession box |
101414 title=[[Kings of Macedon|King of Macedon]] |
101415 before=[[Alcetas I of Macedon|Alcetas I]] |
101416 after=[[Alexander I of Macedon|Alexander I]] |
101417 years=547 BC&amp;ndash;498 BC
101418 }}
101419 {{end box}}
101420
101421 [[Category:498 BC deaths]]
101422 [[Category:Macedonian monarchs]]
101423 [[Category:Ancient Greece]]
101424
101425 [[de:Amyntas I.]]
101426 [[fr:Amyntas Ier]]
101427 [[no:Amyntas I av Makedonia]]</text>
101428 </revision>
101429 </page>
101430 <page>
101431 <title>Amyntas III of Macedon</title>
101432 <id>1730</id>
101433 <revision>
101434 <id>32160863</id>
101435 <timestamp>2005-12-20T22:48:27Z</timestamp>
101436 <contributor>
101437 <username>YurikBot</username>
101438 <id>271058</id>
101439 </contributor>
101440 <minor />
101441 <comment>robot Adding: fr</comment>
101442 <text xml:space="preserve">[[Image:Amyntas III-161113.jpg|thumb|Amyntas III, stater]]
101443
101444 '''Amyntas III''' (or '''II'''), son of Arrhidaeus, grandfather of [[Alexander the Great]], was king of [[Macedon]] from [[393 BC|393]] (or 389) to [[369 BC]].
101445
101446 He came to the throne after the ten years of confusion which followed the death of [[Archelaus II of Macedon|Archelaus II]], the patron of art and literature. But he had many enemies at home; in [[383 BC|383]] he was driven out by the [[Illyria]]ns, but in the following year, with the aid of the [[Thessalia]]ns, he recovered his kingdom.
101447
101448 He concluded a treaty with the [[Sparta]]ns, who assisted him to reduce [[Olynthus]] ([[379 BC|379]]). He also entered into a league with [[Jason of Pherae]], and assiduously cultivated the friendship of [[Athens]].
101449
101450 By his wife, [[Eurydice II of Macedon|Eurydice]], he had three sons, the youngest of whom was the famous [[Philip II of Macedon]].
101451
101452 ==References==
101453 *{{1911}}
101454
101455 {{start box}}
101456 {{succession box |
101457 title=[[Kings of Macedon|King of Macedon]] |
101458 before=[[Argaeus II of Macedon|Argaeus II]] |
101459 after=[[Alexander II of Macedon|Alexander II]] |
101460 years=393 BC&amp;ndash;369 BC
101461 }}
101462 {{end box}}
101463
101464 [[Category:369 BC deaths]]
101465 [[Category:Macedonian monarchs]]
101466
101467 [[de:Amyntas III.]]
101468 [[fr:Amyntas III]]
101469 [[pl:Amyntas III Macedoński]]
101470 [[fi:Amyntas III]]
101471 [[sv:Amyntas III]]</text>
101472 </revision>
101473 </page>
101474 <page>
101475 <title>Anabaptists</title>
101476 <id>1731</id>
101477 <revision>
101478 <id>15900196</id>
101479 <timestamp>2002-02-25T15:43:11Z</timestamp>
101480 <contributor>
101481 <ip>Conversion script</ip>
101482 </contributor>
101483 <minor />
101484 <comment>Automated conversion</comment>
101485 <text xml:space="preserve">#REDIRECT [[Anabaptist]]
101486 </text>
101487 </revision>
101488 </page>
101489 <page>
101490 <title>Anacharsis</title>
101491 <id>1732</id>
101492 <revision>
101493 <id>22844082</id>
101494 <timestamp>2005-09-08T14:43:38Z</timestamp>
101495 <contributor>
101496 <username>Curps</username>
101497 <id>44727</id>
101498 </contributor>
101499 <comment>replace &amp;quot with &quot;</comment>
101500 <text xml:space="preserve">[[Image:Anacharsis.jpg|frame|left|Anacharsis]]
101501 :''&quot;He marvelled that among the Greeks, those who were skillful in a thing vie in competition; those who have ''no'' skill, judge&quot;'' &amp;mdash;[[Diogenes Laertius]], of Anacharsis.
101502
101503 '''Anacharsis''' was a [[Scythian]] philosopher who travelled from his homeland on the northern shores of the [[Black Sea]] to Athens in the early [[6th century BCE]] and made a great impression as a forthright, outspoken &quot;[[barbarian]],&quot; apparently a forerunner of the [[Skepticism|Skeptics]] and [[Cynics]], though none of his authentic works have survived.
101504
101505 Anacharsis was half Greek and the son of a Scythian chief, from a mixed Hellenistic culture, apparently in the region of the [[Cimmerian Bosporus]]. He cultivated the outsider's knack of seeing the illogic in familiar things. His conversation was droll and frank, and Solon and the Athenians took to him as a natural philosopher, not unlike the way the French took to [[Benjamin Franklin]]. His rough and free discourse became proverbial among Athenians as 'Scythian discourse'.
101506
101507 Arriving in Athens about 589 BCE, he came to the house of [[Solon]] the philosopher and lawgiver, and told Solon's slave that Anacharsis was come to visit, desired to see Solon, and wanted to enter into hospitable relations. The servant returned with Solon's quintessentially Greek answer, &quot;Men generally limit such hospitality to their own countrymen.&quot; Thereupon the Scythian stepped significantly across the threshold, and said that, now that he was in Solon's country, it would be quite suitable.
101508
101509 Anacharis was the first stranger who received the privileges of Athenian citizenship. He was reckoned one of the [[Seven Sages of Athens]], and it is said that he was initiated into the [[Eleusinian Mysteries]] of the Great Goddess, a privilege denied to those who did not speak fluent Greek.
101510
101511 His book paralleling the laws of the Scythians with the laws of the Greeks has been lost. It was he who compared laws to spiders' webs, which catch small flies and allow wasps and hornets to escape.
101512
101513 He exhorted moderation in everything, saying that the vine bears three clusters of grapes: the first wine, pleasure; the second, drunkenness, the third, disgust. So he became a kind of [[emblem]] to the Athenians, who inscribed on his statues: 'Restrain your tongues, your appetites, your passions.' (Compare the philosophy of [[Epicurus]].)
101514
101515 His famous ''Letter to [[Croesus]]'', the proverbially rich king of [[Lydia]], is apocryphal, but typical of his quality:
101516
101517 :&quot;Anarcharsis to Croesus: O king of the Lydians, I am come to the country of the Greeks, in order to become acquainted with their customs and institutions; but I have no need of gold, and shall be quite contented if I return to Scythia a better man than I left it. However I will come to Sardis, as I think it very desirable to become a friend of yours.&quot;
101518
101519 When he did return to the Scythians, he was killed, Herodotus (iv, 76) reported, by his own brother, for his Greek ways and especially for the impious attempt to sacrifice to the Mother Goddess [[Cybele]], whose role was unwelcome among the patriarchal Scythians.
101520
101521 [[Strabo]] makes him the (probably legendary) inventor of the [[anchor]] with two flukes.
101522
101523 ==The revival of Anacharsis in the 18th century==
101524 In [[1788]] [[Jean Jacques Barthelemy]] (1716-95), a highly esteemed classical scholar and Jesuit, published ''The Travels of Anacharsis the Younger in Greece,'' a learned imaginary travel journal, one of the first [[historical novel]]s, which a modern scholar has called &quot;the encyclopedia of the new cult of the antique&quot; in the late 18th Century; it had a high impact on the growth of [[philhellenism]] in France at the time. The book went through many editions, was reprinted in the United States and translated into German and other languages. It later inspired European sympathy for the [[Greek War of Independence|Greek struggle for independence]] and spawned sequels and imitations through the [[19th century]].
101525
101526 ==External links==
101527 *[http://classicpersuasion.org/pw/diogenes/dlanacharsis.htm Diogenes Laertius, ''Lives of the Philosophers'' i, 101: brief entry gives many pithy but apocryphal remarks.]
101528 *[http://www.whoosh.org/issue56/rich1.html A witty comparison of the Anacharsis cult with the modern cult of Xena, &quot;Warrior Princess&quot;.] (See [[Xena: Warrior Princess|Xena]].)
101529
101530 [[Category:Presocratic philosophers]]
101531 [[Category:Ancient philosophers]]
101532 [[Category:Scythians]]
101533
101534 ==Classical references==
101535 *Herodotus iv. 76; Lucian, ''Scytha''; Cicero, ''Tusc. Disp.'' v. 32; Diogenes Laertius i. 101.
101536
101537 [[de:Anacharsis]]
101538 [[fr:Anacharsis]]
101539 [[fi:Anakharsis Skyytti]]</text>
101540 </revision>
101541 </page>
101542 <page>
101543 <title>Anacreon (poet)</title>
101544 <id>1733</id>
101545 <revision>
101546 <id>41253266</id>
101547 <timestamp>2006-02-26T02:11:12Z</timestamp>
101548 <contributor>
101549 <username>Haiduc</username>
101550 <id>80885</id>
101551 </contributor>
101552 <comment>Category:Pederasty</comment>
101553 <text xml:space="preserve">[[Image:As-anacreonte.jpg|thumb|200px|right|Anacreonte roman copy , Rome in Palazzo dei Conservatori]]
101554 '''Anacreon''' (born ca. [[570 BC]]) was a [[Greece|Greek]] [[lyric poem|lyric]] [[poet]], notable for his drinking songs and hymns. Later Greeks included him in the canonical list of [[nine lyric poets]].
101555
101556 == Life ==
101557 He was born at [[Teos]], an [[Ionia]]n city on the coast of [[Asia Minor]]. Little more is known of his life, but it is likely that he shared the voluntary exile of the mass of his fellow-townsmen who sailed to [[Abdera, Thrace|Abdera]] in [[Thrace]], where they founded a colony, rather than remaining behind to surrender their city to [[Harpagus]], one of [[Cyrus the Great]]'s generals. Cyrus was, at the time ([[545 BC]]), besieging the Greek cities of [[Asia Minor]]. Anacreon seems to have taken part in the fighting, in which, on his own admission, he did not distinguish himself.
101558
101559 From Thrace he removed to the court of [[Polycrates of Samos]]. He is said to have acted as [[tutor]] to Polycrates; that he enjoyed the [[tyrant]]'s confidence we learn on the authority of [[Herodotus]] (iii.121), who represents the poet as sitting in the royal chamber when audience was given to the [[Iran|Persia]]n herald. In return for his favour and protection, Anacreon wrote many complimentary [[ode]]s upon his patron. Like his fellow-lyric poet, [[Horace]], who was one of his great admirers, and in many respects a kindred spirit, Anacreon seems to have been made for the society of courts. On the death of Polycrates, [[Hipparchus (son of Pisistratus)|Hipparchus]], who was then in power at [[Athens]] and inherited the literary tastes of his father [[Pisistratus|Peisistratus]], sent a special embassy to fetch the popular poet to Athens in a galley of fifty oars. Here he became acquainted with the poet [[Simonides]], and other members of the brilliant circle which had gathered round Hipparchus. When this circle was broken up by the assassination of Hipparchus, Anacreon seems to have returned to his native town of Teos, where, according to a metrical epitaph ascribed to his friend Simonides, he died and was buried. According to others, before returning to Teos, he accompanied Simonides to the court of [[Echecrates]], a [[Thessaly|Thessalian]] dynast of the house of the [[Aleuadae]]. [[Lucian]] mentions Anacreon amongst his instances of the longevity of eminent men, as having completed eighty-five years. If an anecdote given by [[Pliny the Elder]] (''Nat. Hist.'' vii. 7) is to be trusted, he was choked at last by a grape-stone, but the story has an air of mythical adaptation to the poet's habits, which makes it somewhat [[apocryphal]].
101560
101561 Anacreon was for a long time popular at Athens, where his statue was to be seen on the [[Acropolis, Athens|Acropolis]], together with that of his friend [[Xanthippus]], the father of [[Pericles]]. On several coins of Teos he is represented holding a lyre in his hand, sometimes sitting, sometimes standing. A marble statue found in [[1835]] in the [[Sabine]] district, and now in the [[Villa Borghese]], is said to represent Anacreon.
101562
101563 == Poetry ==
101564 Anacreon had a reputation as a composer of hymns, as well as of those [[bacchanalian]] and amatory lyrics - some of a [[Pederasty in ancient Greece|pederastic]] nature - which are commonly associated with his name. Two short hymns to [[Artemis]] and [[Dionysus]], consisting of eight and eleven lines respectively, stand first amongst his few undisputed remains, as printed by recent editors. But pagan hymns, especially when addressed to such deities as [[Aphrodite]], [[Eros (god)|Eros]] and [[Dionysus]], are not so very unlike what we call &quot;Anacreontic&quot; poetry as to make the contrast of style as great as the word might seem to imply. The tone of Anacreon's lyric effusions has probably led to an unjust estimate, by both ancients and moderns, of the poet's personal character. The &quot;triple worship&quot; of the [[Muses]], Wine and Love, ascribed to him as his religion in an old Greek epigram (''Anthol.'' iii. 25, 51), may have been as purely professional in the two last cases as in the first, and his private character on such points was probably neither much better nor worse than that of his contemporaries. [[Athenaeus]] remarks acutely that he seems at least to have been sober when he wrote; and he himself strongly repudiates, as Horace does, the brutal characteristics of intoxication as fit only for [[barbarian]]s and [[Scythian]]s (Fr. 64).
101565
101566 Of the five books of lyrical pieces by Anacreon which the ''[[Suda]]'' and Athenaeus mention as extant in their time, we have now but the merest fragments, collected from the citations of later writers. Those graceful little poems (most of them first printed from the MSS. by [[Henry Estienne]] in [[1554]]), which long passed among the learned for the songs of Anacreon, and which are well-known to many English readers in the translations of [[Abraham Cowley]] and Moore, are really of much later date, though possibly here and there genuine fragments of the poet are included. Modern critics, however, regard the entire collection as imitations belonging to different periods--the oldest probably to [[Alexandria]]n times, the most recent to the last days of [[paganism]]. They will always retain a certain popularity from their lightness and elegance, and some of them are fair copies of Anacreon's style, which would lend itself readily enough to a clever imitator. A strong argument against their genuineness lies in the fact that the peculiar forms of the [[Ionic Greek]], in which Anacreon wrote, are not to be found in these reputed odes, while the fragments of his poems quoted by ancient writers are full of Ionicisms. Again, only one of the quotations from Anacreon in ancient writers is to be found in these poems, which further contain no references to contemporaries, whereas [[Strabo]] (xiv. p. 638) expressly states that Anacreon's poems included numerous allusions to [[Polycrates]]. In particular, Anacreon addresses a poem to the boy Smerdis, with whom he had fallen in love, and whom Polycrates, in a fit of jealousy had shorn of his locks (Athenaeus (12.540e) and Aelian (VH 9.4). The character of Love as a mischievous little boy is quite different from that given by Anacreon, who describes him as &quot;striking with a mighty [[axe]], like a [[smith]],&quot; and is more akin to the conceptions of later literature.
101567
101568 ==A Poem==
101569 '''The Wounded Cupid. Song'''
101570
101571 Cupid as he lay among&lt;br /&gt;
101572 Roses, by a Bee was stung.&lt;br /&gt;
101573 Whereupon in anger flying&lt;br /&gt;
101574 To his Mother, said thus crying;&lt;br /&gt;
101575 Help! O help! your Boy's a dying.&lt;br /&gt;
101576 And why, my pretty Lad, said she?&lt;br /&gt;
101577 Then blubbering, replied he,&lt;br /&gt;
101578 A winged Snake has bitten me&lt;br /&gt;
101579 Which Country people call a Bee.&lt;br /&gt;
101580 At which she smil'd; then with her hairs&lt;br /&gt;
101581 And kisses drying up his tears:&lt;br /&gt;
101582 Alas! said she, my Wag! if this&lt;br /&gt;
101583 Such a pernicious torment is:&lt;br /&gt;
101584 Come, tell me then, how great's the smart&lt;br /&gt;
101585 Of those, thou woundest with thy Dart!&lt;br /&gt;
101586
101587 Translated from the Greek by [[Robert Herrick (poet)|Robert Herrick]] ([[1591]]-[[1674]]).
101588
101589 == External links ==
101590 *[http://www.gottwein.de/Grie/lyr/LyrAnakr01.php Zweisprchige Textauswahl zu den griechischen Lyrikern mit zus&amp;auml;tzlichen Hilfen]
101591
101592 ==Poets named after Anacreon==
101593 * ''[[Francesco Albani|Anacreon of Painters]]'', Francesco Albani
101594 * ''[[Hafiz|Anacreon of Persia]]'', Hafiz
101595 * ''[[Bertrand Barère de Vieuzac|Anacreon of the Guillotine]]'', Barere
101596 * ''[[Carl Michael Bellman|Anacreon of Sweden]]'', Bellmann
101597 * ''[[Hippolit Bogdanovich|Russian Anacreon]]'', Bogdanovich
101598
101599 ==References==
101600 *{{1911}}
101601
101602
101603 [[Category:Ancient Greek poets]]
101604 [[Category:Pederasty]]
101605
101606 [[bg:АĐŊĐ°ĐēŅ€ĐĩĐžĐŊ]]
101607 [[de:Anakreon]]
101608 [[es:Anacreonte]]
101609 [[fr:AnacrÊon]]
101610 [[gl:Anacreonte]]
101611 [[he:אנאקראון ]]
101612 [[it:Anacreonte]]
101613 [[hu:AnakreÃŗn]]
101614 [[nl:Anacreon]]
101615 [[pl:Anakreont z Teos]]
101616 [[pt:Anacreonte]]
101617 [[fi:Anakreon]]
101618 [[sv:Anakreon]]
101619 [[uk:АĐŊĐ°ĐēŅ€ĐĩĐžĐŊŅ‚]]</text>
101620 </revision>
101621 </page>
101622 <page>
101623 <title>Anah</title>
101624 <id>1734</id>
101625 <revision>
101626 <id>41377090</id>
101627 <timestamp>2006-02-26T23:05:31Z</timestamp>
101628 <contributor>
101629 <username>Charles Matthews</username>
101630 <id>12978</id>
101631 </contributor>
101632 <minor />
101633 <comment>lk</comment>
101634 <text xml:space="preserve">''This article is about the town of Anah. For the character in the Book of [[Genesis]], see [[Minor characters in the Book of Genesis]].''
101635
101636 '''Anah''', or '''`Ana''', a town on the [[Euphrates]], about mid-way between the Gulf of Alexandretta and the [[Persian Gulf]]. It is called '''Hanat''' in a Babylonian letter (about [[2200 BC]]), and '''An-at''' by the scribe of Assur-nasir-pal (879 B.C.), Anatho (Isidore Charax), Anatha (Ammianus Marcellinus) by Greek and Latin writers in the early Christian centuries,
101637 `Ana (sometimes, as if plural, `Anat) by Arabic writers. The name has been connected with that of the deity Anat.
101638
101639 Whilst `Ana has thus retained its name for forty-one centuries the site is variously described. Most early writers concur in placing it on an island; so [[Assur-nasir-pal]], [[Isidore of Seville|Isidore]], [[Ammianus Marcellinus]], [[Ibn Serapion]], [[al-Istakri]], [[Abulfeda]] and [[al-Karamani]]. Ammianus (lib. 24, c. 2) calls it a munimentum, Theophylactus Simocatta (iv. 10, v. 1, 2) to 'Anathon frourion, [[Zosimus]] (iii. 14) a frourion, opp. Fathusai, which may be the Beth(th)ina of Ptolemy (v. 19).&lt;sup&gt;1&lt;/sup&gt; Leonhart Rauwolff, in AD 1574, found it &quot;divided ... into two towns,&quot; the one &quot;Turkish,&quot; &quot;so surrounded by the river, that you cannot go into it but by boats,&quot; the other, much larger, on the Arabian side of the river.&lt;sup&gt;2&lt;/sup&gt; GA Olivier in the beginning of the 19th century describes it as a long street (5 or 6 m. long), parallel to the right bank of the Euphrates--some 100 yards from the water's edge and 300 to 400 paces from the rocky barrier of the Arabian desert--with, over against its lower part, an island bearing at its north end the ruins of a fortress (p. 451).
101640
101641 This southernmost town of [[Mesopotamia]] proper (Gezira) must have shared the chequered history of that land. Of `Ana's fortunes under the early Babylonian
101642 empire the records have not yet been unearthed; but in a letter dating from the third millennium BC, six men of Hanat (Ha-na-atK1) are mentioned in a statement as to certain disturbances which had occurred in the sphere of the Babylonian
101643 Resident of Suhi, which would include the district of `Ana.
101644
101645 How `Ana fared at the hands of the Mitanni and others is unknown. The suggestion that [[Amenhotep I|Amenophis (Amenhotep) I]]. ([[16th century BC]]) refers to it is improbable; but we seem to be justified in holding `Ana to be the town &quot;in the middle of the Euphrates&quot; opposite (ina put) to which
101646 Assur-nasir-pal halted in his campaign of 879 BC. The supposed reference to `Ana in the speech put into the mouth of [[Sennacherib]]'s messengers to Hezekiah (2 Kings xix. 13, Is. xxxvii. 13) is exceedingly improbable. The town may be mentioned, however, in four 7th century documents edited by [[Claude Hermann Walter Johns]].&lt;sup&gt;3&lt;/sup&gt;
101647
101648 It was at `Ana that the emperor Julian met the first opposition on his disastrous expedition against [[Iran|Persia]] (363), when he got possession of the place and transported the people; and there that Ziyad and Shureih with the advanced guard of `Ali's army were refused passage across the Euphrates (36/657) to join `Ali in Mesopotamia (Tabari i. 3261).
101649
101650 Later `Ana was the place of exile of the caliph Qaim (al-qaim bi-amr-illah) when [[Basisiri]] was in power (450/1058.) In the 14th century `Ana was the seat of a
101651 Catholicos, primate of the Persians (Marin Sanuto). In 1610 [[Della Valle]] found a [[Scotland|Scot]], George Strachan, resident at `Ana (to study Arabic) as physician to the amir (i. 671-681). In 1835 the steamer &quot;Tigris&quot; of the English Euphrates expedition went down in a hurricane just above `Ana, near where Julian's force had suffered from a similar storm. Della Valle described `Ana as the chief Arab town on the Euphrates, an importance which it owes to its position on one of the routes from the west to [[Baghdad]]; Texeira said that the power of its amir extended to [[Palmyra]] (early 17th century); but Olivier found the ruling prince with only twenty-five men in his service, the town becoming more depopulated every day from lack of protection from the Arabs of the desert.
101652 [[Von Oppenheim]] (1893) reported that Turkish troops having been recently stationed at the place, it had no longer to pay blackmail (huwwa) to the Arabs. [[FR Chesney]] reported some 1800 houses, 2 mosques and 16 water-wheels; WF Ainsworth (1835) reported the Arabs as inhabiting the northwestern part of the town, the Christians the centre, and the Jews the southeast; Della Valle (1610) found some sun-worshippers still there.
101653
101654 Modern `Ana lies from west to east on the right bank along a bend of the river just before it turns south towards Hit, and presents an attractive appearance. It extends, chiefly as a single street, for several miles along a narrow strip
101655 of land between the river and a ridge of rocky hills. The houses are separated from one another by fruit gardens. `Ana marks the boundary between the olive (north) and the date (south). Arab poets celebrated its wine (Yuqut, iii. 593
101656 f.), and Mustaufi (8/14th century) tells of the fame of its palm-groves. In the river, facing the town, is a succession of equally productive islands. The most easterly contains the ruins of the old castle, whilst the remains of the ancient Anatho extend from this island for about 2 miles down the left bank. Coarse cloth is almost the only manufacture.
101657
101658 ===BIBLIOGRAPHY===
101659
101660 In addition to the authorities cited above may be mentioned: [[Guillaume-Antoine Olivier|G. A. Olivier]], ''Voyage dans l'empire othoman'', etc., iii. 450-459 (1807); Carl Ritter, ''Erdkunde von Asien'', vii. b., pp. 716- 726 (1844); W. F. Ainsworth, ''Euphrates Expedition'', i. 401-418 (1888).
101661
101662 &lt;sup&gt;1&lt;/sup&gt; Steph. Byz. (sub Turos) says that [[Arrian]] calls Anatha Turos.
101663
101664 &lt;sup&gt;2&lt;/sup&gt; Texeira (1610) says that &quot;Anna&quot; lay on both banks of the river, and so Della Valle (i. 671).
101665
101666 &lt;sup&gt;3&lt;/sup&gt; Ass. Deeds and Doc. nos. 23, 168, 228, 385. The characters used are DIS TU, which may mean Ana-tu.
101667
101668 ==References==
101669 *{{1911}}</text>
101670 </revision>
101671 </page>
101672 <page>
101673 <title>Ananda</title>
101674 <id>1735</id>
101675 <revision>
101676 <id>40534883</id>
101677 <timestamp>2006-02-21T06:47:54Z</timestamp>
101678 <contributor>
101679 <ip>138.16.38.54</ip>
101680 </contributor>
101681 <text xml:space="preserve">:''Note: the word'' '''Ananda''' ''means [[Bliss (feeling)|bliss]] in [[Sanskrit|Sanskrit language]] and is quite often part of a [[Hinduism|Hindu]] [[Sanyasa|monastic]] name.''
101682 {{buddhism}}
101683 '''Ananda''' (Ch:é˜ŋé›Ŗ) was one of many principal disciples of the [[Shakyamuni Buddha|Buddha]], a devout attendant and was renowned as the ''Guardian of the Dharma.''
101684
101685 Ananda was the first cousin of the Buddha, and
101686 was devotedly attached to him. Once he entered the Order
101687 in the second year of the Buddha's ministry, he became one
101688 of his personal attendants, accompanying him on most of his
101689 wanderings and being the interlocutor in many of the recorded
101690 dialogues. He is the subject of a special [[panegyric]] delivered
101691 by the Buddha just before his death ([[Mahaparinibbana Sutta]],
101692 [[Digha Nikaya]] 16); but it is the panegyric of an unselfish
101693 man, kindly, thoughtful for others and popular; not of the
101694 intellectual man, versed in the theory and practice of the
101695 Buddhist system of self-culture. So in the long list of
101696 the disciples given in the [[Anguttara]] (i. xiv.) where each
101697 of them is declared to be the chief in some gift, Ananda is
101698 mentioned five times (which is more often than any other),
101699 but it is as chief in conduct and in service to others and
101700 in power of memory, not in any of the intellectual powers
101701 so highly prized in the community. This explains why he had
101702 not attained to arahatship; and in the earliest account of
101703 the convocation said to have been held by five hundred of
101704 the principal disciples immediately after the Buddha's death,
101705 he was the only one who was not an [[arahat]] ([[Cullavagga]],
101706 book xi.). In later accounts this incident is explained
101707 away. Thirty-three verses ascribed to Ananda are preserved
101708 in a collection of lyrics by the principal male members of the order ([[Theragatha]], 1017-1050). They
101709 show a gentle and reverent but simple spirit.
101710
101711 Ananda is often called the disciple of the Buddha who &quot;heard much&quot;; because he attended personally upon the Buddha and often traveled with him, Ananda overheard and memorized many of the discourses delivered by the Buddha to various audiences. At the [[Buddhist councils|First Council]], convened shortly after the death of the Buddha, Ananda was called upon to recite many of the discourses that later became the [[Sutta Pitaka]] of the [[Pāli Canon]].
101712
101713 Despite his long association and close proximity to the Buddha, Ananda is depicted as being slow to develop along the Buddhist path. Prior to the First Council, it was proposed that Ananda not be permitted to attend on the grounds that he was not yet an [[arhat]]. According to legend, this prompted Ananda to focus his efforts on the attainment of [[nibbana]], and he was able to reach the specified level of attainment before the calling of the conclave. Ananda was, however, rebuked by the First Council for failing to request that the Buddha remain in the world for a longer period of time; in the [[Mahaparinibbana Sutta]], the Buddha is depicted dropping a number of hints to Ananda that he can remain in the world as long as is required if it is requested by one of his disciples. Ananda fails to pick up on the intimation, and the Buddha soon after passes from the world.
101714
101715 In contrast to most of the figures depicted in the [[Pāli Canon]], Ananda is depicted as an imperfect, if sympathetic, figure. He mourns the deaths of both [[Sariputta]], with whom he enjoyed a close friendship, and the [[Buddha]]. A verse of the [[Theragatha]] [http://www.accesstoinsight.org/canon/sutta/khuddaka/theragatha/thag-17-03-ao0.html] reveals his loneliness and isolation following the death of the Buddha.
101716
101717 In the [[Zen]] tradition, Ananda is considered to be the second Indian patriarch. He is often depicted with the Buddha alongside [[Mahakashyapa]], the first Indian patriarch.
101718
101719 ==External links==
101720 *[http://ds.dial.pipex.com/town/avenue/xha71/powsample/images/127vb2.jpg Ananda with the Buddha and Subhuti]
101721 *[http://www.acmuller.net/ddb Digital Dictionary of Buddhism] (log in with userID &quot;guest&quot;)
101722
101723 ==See also==
101724 * [[Ananda Mahidol]] &amp;ndash; King Rama VIII of [[Thailand]]
101725
101726 ==References==
101727 *{{1911}}
101728
101729
101730 [[Category:disciples of the Buddha]]
101731 [[Category:Zen Patriarchs]]
101732
101733 [[cs:Ánanda]]
101734 [[de:Ananda]]
101735 [[fr:Ananda]]
101736 [[ja:é˜ŋé›Ŗ]]
101737 [[nl:Ananda]]
101738 [[sv:Ananda]]
101739 [[vi:A-nan-đà]]</text>
101740 </revision>
101741 </page>
101742 <page>
101743 <title>Ananias</title>
101744 <id>1736</id>
101745 <revision>
101746 <id>41482769</id>
101747 <timestamp>2006-02-27T17:39:36Z</timestamp>
101748 <contributor>
101749 <ip>209.60.40.210</ip>
101750 </contributor>
101751 <text xml:space="preserve">'''Ananias''' is the [[Greek language|Greek]] form of '''Hananiah''' (Hebrew for &quot;Yahweh is gracious&quot;), or '''Ananiah''', a name occurring several times in the [[Old Testament]] and [[Apocrypha]] ([[Book of Nehemiah|Nehemiah]] 3:23, [[Books of Chronicles|1 Chronicles]] 15:23, [[Book of Tobit|Tobit]] 5:12. etc.), and three times in the [[New Testament]]. Special mention need be made only of the bearers of the name in the New Testament:
101752
101753 #A member of the first Christian community, who dropped dead suddenly after attempting to deceive the Holy Spirit by withholding part of the profit from the sale of a piece of land. A few moments later his wife, Sapphira also lied and also suffered the same fate. They both lied to Peter about the amount they had received and individually dropped dead upon hearing Peter's rebuke.([[Acts of the Apostles|Acts]] 5:1-10; cf. [[Book of Joshua|Joshua]] 7:1 ff.). See [[Ananias and Sapphira]].
101754 #'''Saint Ananias''' (d. ''c.'' [[70]]), A disciple at [[Damascus]] who figures in the story of the conversion and [[baptism]] of [[Paul of Tarsus|Paul]] (Acts 9:10-17, 22:12-16.)
101755 #Son of Nedebaios ([[Josephus]], ''Antiquites'' xx. 5. 2), a high priest who presided during the trial of Paul at [[Jerusalem]] and [[Caesarea Palaestina|Caesarea]] (Acts 23:2, 24:1-5). He officiated as high priest from about AD [[47]] to [[59]]. Quadratus, governor of [[Syria (Roman province)|Syria]], accused him of being responsible for acts of violence. He was sent to [[Rome]] for trial (AD [[52]]), but was acquitted by the emperor [[Claudius]]. Being a friend of the Romans, he was murdered by the people at the beginning of the Jewish war.
101756
101757 ==References==
101758 *{{1911}}
101759 [[Category: Saints]]
101760 [[de:Ananias]]
101761 [[nl:Ananias]]</text>
101762 </revision>
101763 </page>
101764 <page>
101765 <title>Anaxagoras</title>
101766 <id>1737</id>
101767 <revision>
101768 <id>40042542</id>
101769 <timestamp>2006-02-17T18:39:40Z</timestamp>
101770 <contributor>
101771 <ip>82.76.154.154</ip>
101772 </contributor>
101773 <text xml:space="preserve">{{dablink|This article is about the philosopher Anaxagoras. For the mythical Greek King Anaxagoras of [[Argos]], see [[Anaxagoras (mythology)]].}}
101774
101775 [[Image:Anaxagoras.png|thumb|300px|Anaxagoras]]'''Anaxagoras''' (c. [[500 BCE]]&amp;ndash;[[428 BCE]]) was a [[Pre-Socratic philosophy|pre-Socratic]] [[Greece|Greek]] [[philosopher]] who was likely born about 500 BCE (Apollodorus ap. Diog. Laert. ii. 7.). He was a member of what is now often called the [[Ionian School]] of philosophy.
101776
101777 At his native town of [[Clazomenae]] in [[Asia Minor]], he appears to have had some amount of property and prospects of political influence; he supposedly surrendered both of these out of a fear that they would hinder his search for knowledge. Although a Greek, he was probably a Persian citizen, perhaps even a soldier of the Persian army since Clazomenae was suppressed during the [[Ionian Revolt]].
101778
101779 In early manhood (c. 464-462 BCE) he went to [[Athens]], which was rapidly becoming the centre of Greek culture. There he is said to have remained for thirty years. [[Pericles]] learned to love and admire him, and the poet [[Euripides]] derived from him an enthusiasm for science and humanity. Some authorities assert that even [[Socrates]] was among his disciples.
101780
101781 Anaxagoras brought philosophy and the spirit of scientific inquiry from [[Ionia]] to [[Athens]]. His observations of the celestial bodies led him to form new theories of the universal order; he attempted to give a scientific account of [[eclipse]]s, [[meteor]]s, [[rainbow]]s and the [[sun]], which he described as a mass of blazing metal, larger than the [[Peloponnesus]]. The heavenly bodies, he asserted, were masses of stone torn from the earth and ignited by rapid rotation. However, these theories brought him into collision with the popular faith.
101782
101783 Anaxagoras was arrested by his friend Pericles' political opponents on a charge of contravening the established [[dogma]]s of religion (some say the charge was one of [[Medism]]), and it required all the eloquence of Pericles to secure his release. Even so he was forced to retire from Athens to Lampsacus in Ionia (434-433 BCE), where he died about [[428 BCE]]. Citizens of Lampsacus erected an altar to Mind and Truth in his memory, and observed the anniversary of his death for many years afterward.
101784
101785 Anaxagoras wrote a book of philosophy, but only fragments of the first part of this have survived through the preservation of [[Simplicius of Cilicia]] (6th century CE).
101786
101787 == Cosmological theory ==
101788 All things have existed from the beginning. But originally they existed in infinitesimally small fragments of themselves, endless in number and inextricably combined. All things existed in this mass, but in a confused and indistinguishable form. There were the seeds (''spermata'') or miniatures of corn and flesh and gold in the primitive mixture; but these parts, of like nature with their wholes (the ''omoiomere'' of [[Aristotle]]), had to be eliminated from the complex mass before they could receive a definite name and character.
101789
101790 Thought arranged the segregation of like from unlike; ''panta chremata en omou eita nous elthon auta diekosmese''. This peculiar thing, called Thought (''nous''), was no less illimitable than the chaotic mass, but, unlike the ''[[logos]]'' of [[Heraclitus]], it stood pure and independent (''mounos ef eoutou''), a thing of finer texture, alike in all its manifestations and everywhere the same. This subtle agent, possessed of all knowledge and power, is especially seen ruling in all the forms of life.
101791
101792 Thought causes motion. It rotated the primitive mixture, starting in one corner or point, and gradually extended till it gave distinctness and reality to the aggregates of like parts, working something like a centrifuge, and eventually creating the known cosmos. But even after it had done its best, the original intermixture of things was not wholly overcome. No one thing in the world is ever abruptly separated, as by the blow of an axe, from the rest of things.
101793
101794 It is noteworthy that Aristotle accuses Anaxagoras of failing to differentiate between ''nous'' and ''psyche'', while Socrates ([[Plato]], ''Phaedo'', 98 B) objects that his ''nous'' is merely a ''[[deus ex machina]]'' to which he refuses to attribute design and knowledge.
101795
101796 Anaxagoras proceeded to give some account of the stages in the process from original chaos to present arrangements. The division into cold mist and warm ether first broke the spell of confusion. With increasing cold, the former gave rise to water, earth and stones. The seeds of life which continued floating in the air were carried down with the rains and produced vegetation. Animals, including man, sprang from the warm and moist clay. If these things be so, then the evidence of the senses must be held in slight esteem. We seem to see things coming into being and passing from it; but reflection tells us that decease and growth only mean a new aggregation (sugkrisis) and disruption (''diakrisis''). Thus Anaxagoras distrusted the senses, and gave the preference to the conclusions of reflection. Thus he maintained that there must be blackness as well as whiteness in snow; how otherwise could it be turned into dark water?
101797
101798 Anaxagoras marked a turning-point in the history of philosophy.
101799 With him speculation passes from the colonies of Greece to settle at Athens. By the theory of minute constituents of things, and his emphasis on mechanical processes in the formation of order, he paved the way for the atomic theory. However, his enunciation of the order that comes from reason suggested the theory that nature is the work of design.
101800
101801 The conception of thought causing movement in the world passed from him to Aristotle, who postulated a [[Prime mover]].
101802
101803 {{Presocratics}}
101804
101805 ==References==
101806 *{{1911}}
101807
101808 ==External links==
101809
101810 * {{MacTutor Biography|id=Anaxagoras}}
101811
101812 [[Category:500 BC births]]
101813 [[Category:428 BC deaths]]
101814 [[Category:Presocratic philosophers]]
101815 [[Category:Ancient philosophers]]
101816
101817 [[bg:АĐŊĐ°ĐēŅĐ°ĐŗĐžŅ€]]
101818 [[bn:āĻāĻ¨āĻžāĻ•ā§āĻ¸āĻžāĻ—ā§‹āĻ°āĻžāĻ¸]]
101819 [[bs:Anaksagora]]
101820 [[ca:Anaxàgores]]
101821 [[cs:AnaxagorÃĄs]]
101822 [[de:Anaxagoras]]
101823 [[el:ΑÎŊιΞιÎŗĪŒĪÎąĪ‚]]
101824 [[es:AnaxÃĄgoras]]
101825 [[eu:Anaxagoras]]
101826 [[fr:Anaxagore de Clazomènes]]
101827 [[gl:AnaxÃĄgoras de Clazomenas - ΑÎŊÎąÎžÎ¯ÎŧÎąÎŊδĪÎŋĪ‚]]
101828 [[ko:ė•„ë‚™ė‚Ŧęŗ ëŧėŠ¤]]
101829 [[hr:Anaksagora]]
101830 [[id:Anaxagoras]]
101831 [[it:Anassagora]]
101832 [[he:אנכסגורס]]
101833 [[la:Anaxagoras]]
101834 [[nl:Anaxagoras]]
101835 [[ja:ã‚ĸナクã‚ĩゴナ゚]]
101836 [[pl:Anaksagoras]]
101837 [[pt:AnaxÃĄgoras de Clazômenas]]
101838 [[ro:Anaxagora]]
101839 [[ru:АĐŊĐ°ĐēŅĐ°ĐŗĐžŅ€ иС КĐģаСОĐŧĐĩĐŊ]]
101840 [[sk:Anaxagoras]]
101841 [[sl:Anaksagora]]
101842 [[sr:АĐŊĐ°ĐēŅĐ°ĐŗĐžŅ€Đ°]]
101843 [[fi:Anaksagoras]]
101844 [[sv:Anaxagoras]]
101845 [[tr:Anaksagoras]]
101846 [[zh:é˜ŋé‚Ŗå…‹č¨å“Ĩ拉]]</text>
101847 </revision>
101848 </page>
101849 <page>
101850 <title>Anaxarchus</title>
101851 <id>1738</id>
101852 <revision>
101853 <id>29149404</id>
101854 <timestamp>2005-11-24T18:11:49Z</timestamp>
101855 <contributor>
101856 <username>Tomisti</username>
101857 <id>348887</id>
101858 </contributor>
101859 <minor />
101860 <comment>+fi</comment>
101861 <text xml:space="preserve">'''Anaxarchus''' (flourished around [[340 BC]]), a [[Greece|Greek]] [[philosopher]] of the school of [[Democritus]], was born at [[Abdera, Thrace|Abdera]] in [[Thrace]].
101862
101863 He was the companion and friend of [[Alexander the Great]] in his Asiatic campaigns. According to [[Diogenes Laertius]] (Lives 9.10.2), in response to Alexander's claim to have been the son of Zeus-Ammon, Anaxarchus pointed to his bleeding wound and remarked, &quot;See the blood of a mortal, not [[ichor]], such as flows from the veins of the immortal gods.&quot;
101864
101865 [[Plutarch]] tells a story that at [[Bactra]], in [[327 BC]] in a debate with [[Callisthenes]], he advised all to worship Alexander as a god even during his lifetime, is with greater probability attributed to the Sicilian [[Cleon]].
101866
101867 Diogenes Laertius (Lives 9.10.3) also says that [[Nicocreon]], the tyrant of [[Cyprus]], commanded him to be pounded to death in a mortar, and that he endured this torture with fortitude and [[Cicero]] relates the same story.
101868
101869 His philosophical doctrines are not known, though some have inferred from the epithet ''eudaimonikos'' (&quot;fortunate&quot;), usually applied to him, that he held the end of life to be ''[[eudaimonia]].''
101870
101871 [[Category:Hellenistic philosophers]]
101872
101873 [[de:Anaxarch]]
101874 [[gl:Anaxarco]]
101875 [[pl:Anaksarchos z Abdery]]
101876 [[fi:Anaksarkhos]]</text>
101877 </revision>
101878 </page>
101879 <page>
101880 <title>Ancyra</title>
101881 <id>1740</id>
101882 <revision>
101883 <id>15900205</id>
101884 <timestamp>2002-02-25T15:43:11Z</timestamp>
101885 <contributor>
101886 <ip>Conversion script</ip>
101887 </contributor>
101888 <minor />
101889 <comment>Automated conversion</comment>
101890 <text xml:space="preserve">#REDIRECT [[Ankara]]
101891 </text>
101892 </revision>
101893 </page>
101894 <page>
101895 <title>Arnold Mathew</title>
101896 <id>1741</id>
101897 <revision>
101898 <id>34680794</id>
101899 <timestamp>2006-01-10T23:50:05Z</timestamp>
101900 <contributor>
101901 <username>JamesReyes</username>
101902 <id>10465</id>
101903 </contributor>
101904 <text xml:space="preserve">{{dablink|See [[Matthew Arnold]], the poet.}}
101905 ----
101906 [[Image:Arnoldmathew.jpg|thumb|right|Bishop Arnold Harris Mathew]]
101907 '''Arnold Harris Mathew''' ([[1852]]&amp;ndash;[[1919]]) was the first [[Old Catholic Church|Old Catholic]] [[bishop]] in the [[United Kingdom]]. He was a suspended [[Roman Catholic]] priest who became the leading prelate of the Old Catholic sect in the U.K.
101908
101909 Mathew was appointed in [[1908]] after the Utrecht Union of Churches approved the establishment of a mission in the U.K. Mathew convinced the continental Old Catholic prelates that he had a significant following in the U.K. which, in fact, was a rather small following. He was consecrated by Archbishop [[Gerardus Gul]] of Utrecht on [[April 28]], [[1908]]. Assisting Gul was Bishop J. J. Van Thiel of Haarlem, Bishop N. B. P. Spit of Deventer and Bishop J. Demmel of Bonn, Germany.
101910
101911 He then returned to England and eventually raised a number of men to the episcopacy himself, including two former Catholic priests, Howarth and Beale, who had been excommunicated by the Bishop of Nottingham for embezzling. Mathew then sent documents to [[Pope Pius X]] attesting to the consecrations. Upon receipt of these documents, Pope Pius X published the ''Bull Cravi Iamdiu Scandalo'' in which he excommunicated Mathew and condemned him as a &quot;pseudo-bishop&quot; and declared him ''vitandus'', a term in church law which meant that Catholics were subject to censure if they had anything to do with Mathew. Pius X also extended his sentence of excommunication to include those who had been consecrated by Mathew.
101912
101913 On [[December 29]], [[1910]] Mathew declared his autonomy from the continental Old Catholics due to disagrements with certain practices and disciplines that Mathew felt deviated from Catholic tradition.
101914
101915 Mathew later consecrated Prince Rudolph Edward de Landes Berghes, an [[Austrian]] nobleman, in [[1913]] for work in [[Scotland]].
101916
101917 In [[January 1916]], he announced that he would be reconciled to the [[Holy See]], but changed his mind two months later. He then sought union with the [[Church of England]] but the [[Archbishop of Canterbury]] refused to give Mathew any position as an Anglican clergyman. Mathew retired to a village in the countryside and contented himself with assisting at services in an Anglican parish church as a layman.
101918
101919 By this time, he had been deserted by his wife and abandoned by virtually all the priests and bishops he had made. He died suddenly in [[December 1919]] and was buried as an Anglican layman. His episcopal seal and other documents disappeared after his death.
101920
101921 [[Category:Old Catholic bishops|Mathew, Arnold Harris]]
101922 [[Category:1852 births|Mathew, Arnold Harris]]
101923 [[Category:1919 deaths|Mathew, Arnold Harris]]</text>
101924 </revision>
101925 </page>
101926 <page>
101927 <title>Anastasius I</title>
101928 <id>1742</id>
101929 <revision>
101930 <id>15900207</id>
101931 <timestamp>2005-06-14T13:10:30Z</timestamp>
101932 <contributor>
101933 <username>Panairjdde</username>
101934 <id>2400</id>
101935 </contributor>
101936 <minor />
101937 <text xml:space="preserve">*[[Pope Anastasius I]] -- Pope from 399-401
101938 *[[Anastasius I (emperor)|Anastasius I]] -- (c. 430-518) Byzantine emperor
101939
101940 {{disambig}}
101941
101942 [[de:Anastasius I.]]
101943 [[es:Anastasio I]]
101944 [[fr:Anastase Ier]]</text>
101945 </revision>
101946 </page>
101947 <page>
101948 <title>Anastasius II</title>
101949 <id>1743</id>
101950 <revision>
101951 <id>15900208</id>
101952 <timestamp>2005-05-11T20:26:38Z</timestamp>
101953 <contributor>
101954 <username>Kbdank71</username>
101955 <id>197953</id>
101956 </contributor>
101957 <comment>rm category as per cfd</comment>
101958 <text xml:space="preserve">*[[Pope Anastasius II]] -- Pope from 496-498
101959 *[[Anastasius II of the Byzantine Empire]] -- (d. 721) Roman emperor in the East
101960 *[[Anastasius II of Antioch]] -- Greek Orthodox Patriarch of Antioch
101961
101962 {{disambig}}</text>
101963 </revision>
101964 </page>
101965 <page>
101966 <title>Anastasius III</title>
101967 <id>1744</id>
101968 <revision>
101969 <id>15900209</id>
101970 <timestamp>2002-04-06T14:14:34Z</timestamp>
101971 <contributor>
101972 <username>Bryan Derksen</username>
101973 <id>66</id>
101974 </contributor>
101975 <minor />
101976 <comment>redirect</comment>
101977 <text xml:space="preserve">#REDIRECT [[Pope Anastasius III]]</text>
101978 </revision>
101979 </page>
101980 <page>
101981 <title>Anastasius IV</title>
101982 <id>1745</id>
101983 <revision>
101984 <id>15900210</id>
101985 <timestamp>2002-04-25T17:25:33Z</timestamp>
101986 <contributor>
101987 <username>Eclecticology</username>
101988 <id>372</id>
101989 </contributor>
101990 <comment>change to redirect</comment>
101991 <text xml:space="preserve">#redirect [[Pope Anastasius IV]]
101992 </text>
101993 </revision>
101994 </page>
101995 <page>
101996 <title>Anaximenes of Lampsacus</title>
101997 <id>1746</id>
101998 <revision>
101999 <id>28108524</id>
102000 <timestamp>2005-11-12T11:41:58Z</timestamp>
102001 <contributor>
102002 <username>Bluebot</username>
102003 <id>527862</id>
102004 </contributor>
102005 <minor />
102006 <comment>Standardising 1911 references.</comment>
102007 <text xml:space="preserve">'''Anaximenes of Lampsacus''' (fl. [[380 BC|380]] - [[320 BC]]), [[Hellenistic Greece|Greek]] [[rhetoric]]ian and historian, was a favourite of [[Alexander the Great]], whom he accompanied in his Persian campaigns. He wrote histories of [[Greece]] and of [[Philip of Macedon]], and an epic on Alexander (fragments in Muller, ''Scriptores Rerum Alexandri Magni''.) As a rhetorician, he was a determined opponent of
102008 [[Isocrates]] and his school. The ''Rhetorica ad Alexandrum'' (&quot;Address to Alexander&quot;), traditionally included among the works of [[Aristotle]], is now generally admitted to be by Anaximenes, although some consider it a much later production.
102009
102010 ==References==
102011 *{{1911}}
102012
102013 [[hu:AnaximenÊsz (írÃŗ)]]</text>
102014 </revision>
102015 </page>
102016 <page>
102017 <title>Anastasius</title>
102018 <id>1747</id>
102019 <revision>
102020 <id>26556922</id>
102021 <timestamp>2005-10-26T20:40:40Z</timestamp>
102022 <contributor>
102023 <username>GrinBot</username>
102024 <id>411872</id>
102025 </contributor>
102026 <minor />
102027 <comment>robot Adding: de, eo, hu</comment>
102028 <text xml:space="preserve">'''Anastasius''' is part of the name of:
102029
102030 *[[Pope Anastasius]]:
102031 **[[Pope Anastasius I]] -- Pope from 399-401
102032 **[[Pope Anastasius II]] -- Pope from 496-498
102033 **[[Pope Anastasius III]] -- Pope from 911-913
102034 **[[Pope Anastasius IV]] -- Pope from 1153 to 1154
102035 *[[Anastasius I of the Byzantine Empire]] (c. 430-518) -- Roman emperor
102036 *[[Anastasius II of the Byzantine Empire]] (d. 721) -- Roman emperor in the East
102037 *[[Anastasius (patriarch)|Anastasius]] -- [[Patriarch]] of [[Constantinople]] from 730-754
102038 *[[Anastasius Bibliothecarius]] (c.810-879) -- [[librarian]] of the [[Church of Rome]], scholar and statesman
102039 * [[Anton Alexander Graf von Auersperg]] (1806-1876) -- Austrian poet who wrote under the pseudonym of '''Anastasius GrÃŧn'''.
102040
102041 {{disambig}}
102042
102043 [[de:Anastasius]]
102044 [[eo:Anastazio (vira nomo)]]
102045 [[hu:AnasztÃĄz]]</text>
102046 </revision>
102047 </page>
102048 <page>
102049 <title>Anaximenes of Miletus</title>
102050 <id>1748</id>
102051 <revision>
102052 <id>39235747</id>
102053 <timestamp>2006-02-11T19:20:24Z</timestamp>
102054 <contributor>
102055 <username>Schaengel89</username>
102056 <id>221783</id>
102057 </contributor>
102058 <text xml:space="preserve">[[Image:Anaximenes.png|thumb|right|180px|Anaximenes of Miletus]]
102059 '''Anaximenes''' (in [[Greek language|Greek]]: &amp;#902;&amp;#957;&amp;#945;&amp;#958;&amp;#953;&amp;#956;&amp;#941;&amp;#957;&amp;#951;&amp;#962;) of Miletus ([[585 BC]] - [[525 BC]]) was a [[Greece|Greek]] [[philosopher]] from the latter half of the [[6th century BC|6th century]], probably a younger contemporary of [[Anaximander]], whose pupil or friend he is said to have been.
102060
102061 He held that the [[Air (classical element)|air]], with its variety of contents, its universal presence, its vague associations in popular fancy with the phenomena of life and growth, is the source of all that exists. Everything is air at different degrees of density, and under the influence of heat, which expands, and of cold, which contracts its volume, it gives rise to the several phases of existence. The process is gradual, and takes place in two directions, as heat or cold predominates. In this way was formed a broad disk of earth, floating on the circumambient air. Similar condensations produced the sun and stars; and the flaming state of these bodies is due to the velocity of their motions. He states:
102062
102063 &quot;Just as our soul, being air, holds us together, so do breath and air encompass the whole world.&quot;
102064
102065
102066 What makes the three [[Miletus|milesic]] philsophers, [[Thales]], [[Anaximander]] and Anaximenes, stand out is that the theoretical human has become a reality. The way of thinking has in its basic form moved away from the mythological thinking (or ''mythos'') and into the domain of the theoretical thinking (or ''logos''). From now on it is about explaining the universal and the general. Everything in the universe can now be approached by the thoughts of humans. This notably influenced the Pythagoreans.
102067 ''See also:'' [[philosophy]]
102068
102069 == Reference ==
102070 * {{1911}}
102071
102072 {{Presocratics}}
102073
102074 [[Category:585 BC births]]
102075 [[Category:525 BC deaths]]
102076 [[Category:Presocratic philosophers]]
102077 [[Category:Ancient Greek philosophers]]
102078 [[Category:Ancient Greek mathematicians]]
102079
102080 [[bg:АĐŊĐ°ĐēŅĐ¸ĐŧĐĩĐŊ]]
102081 [[bn:āĻŽāĻžāĻ‡āĻ˛ā§‡āĻŸāĻžāĻ¸-āĻāĻ° āĻāĻ¨āĻžāĻ•ā§āĻ¸āĻŋāĻŽā§‡āĻ¨āĻŋāĻ¸]]
102082 [[bs:Anaksimen]]
102083 [[ca:Anaxímenes]]
102084 [[da:Anaximenes]]
102085 [[de:Anaximenes]]
102086 [[el:ΑÎŊιΞΚÎŧέÎŊΡĪ‚]]
102087 [[es:Anaxímenes]]
102088 [[eu:Anaximenes]]
102089 [[fa:ØĸŲ†Ø§ÚŠØŗیŲ…Ų† Ų…ÛŒŲ„ØĒŲˆØŗی]]
102090 [[fr:Anaximène]]
102091 [[gl:Anaxímenes de Mileto]]
102092 [[hr:Anaksimen]]
102093 [[id:Anaximenes]]
102094 [[it:Anassimene di Mileto]]
102095 [[he:אנכסימנס]]
102096 [[la:Anaximenes]]
102097 [[nl:Anaximenes]]
102098 [[ja:ã‚ĸãƒŠã‚¯ã‚ˇãƒĄãƒã‚š]]
102099 [[no:Anaximenes]]
102100 [[nn:Anaximenes frÃĨ Milet]]
102101 [[pl:Anaksymenes]]
102102 [[pt:Anaxímenes de Mileto]]
102103 [[ro:Anaximene]]
102104 [[ru:АĐŊĐ°ĐēŅĐ¸ĐŧĐĩĐŊ]]
102105 [[sk:Anaximenes]]
102106 [[sl:Anaksimen]]
102107 [[sv:Anaximenes]]
102108 [[zh:é˜ŋé‚Ŗ克čĨŋįžŽå°ŧ]]</text>
102109 </revision>
102110 </page>
102111 <page>
102112 <title>Ancus Marcius</title>
102113 <id>1749</id>
102114 <revision>
102115 <id>41860781</id>
102116 <timestamp>2006-03-02T05:07:25Z</timestamp>
102117 <contributor>
102118 <username>Elwikipedista</username>
102119 <id>90304</id>
102120 </contributor>
102121 <comment>[[es:Anco Marcio]]</comment>
102122 <text xml:space="preserve">'''Ancus Marcius''' (r. [[640 BC]]-[[616 BC]]), fourth of the [[Kings of Rome]], and possibly legendary. Like [[Numa Pompilius|Numa]], his reputed grandfather, he was a friend of peace and religion, but was obliged to make war to defend his territories. He conquered the [[Latin_(disambiguation) | Latins]], and a number of them he settled on the [[Aventine Hill]] formed the origin of the [[Plebeians]]. He fortified the [[Janiculum]], threw a wooden bridge across the [[Tiber]], the [[pons sublicius]], founded the port of [[Ostia]], established salt-works and built a prison which was founded in 625 B.C. and was used to hold people until they decided what to do with them. Before this time, a popular punishment was to exile people.
102123
102124 Ancus Marcius is merely a duplicate of Numa, as is shown by his second name, Numa Marcius, the confidant and pontifex of Numa, being no other than [[Numa Pompilius]] himself, represented as priest. The identification with Ancus is shown by the legend which makes the latter a bridge-builder (pontifex), the constructor of the first wooden bridge over the Tiber. It is in the exercise of his priestly functions that the resemblance is most clearly shown. Like Numa, Ancus died a natural death. He was succeeded by [[Lucius Tarquinius Priscus]].
102125
102126 ==References==
102127 *{{1911}}
102128
102129 {{start box}}
102130 {{succession box|title=[[King of Rome]]|before=[[Tullus Hostilius]]|after=[[Tarquinius Priscus]]|years=641&amp;ndash;616}}
102131 {{end box}}
102132
102133 [[Category:616 BC deaths]]
102134 [[Category:Ancient Romans]]
102135 [[Category:Roman Kingdom]]
102136
102137 [[de:Ancus Marcius]]
102138 [[es:Anco Marcio]]
102139 [[fr:Ancus Martius]]
102140 [[hr:Anko Marcije]]
102141 [[it:Anco Marzio]]
102142 [[he:אנקוס מארקיוס]]
102143 [[la:Ancus Marcius]]
102144 [[nl:Ancus Martius]]
102145 [[pt:Anco MÃĄrcio]]
102146 [[ru:АĐŊĐē МаŅ€Ņ†Đ¸Đš]]
102147 [[fi:Ancus Marcius]]
102148 [[sv:Ancus Marcius]]</text>
102149 </revision>
102150 </page>
102151 <page>
102152 <title>Andaman Islands</title>
102153 <id>1750</id>
102154 <revision>
102155 <id>39665817</id>
102156 <timestamp>2006-02-15T00:57:15Z</timestamp>
102157 <contributor>
102158 <username>Khoikhoi</username>
102159 <id>657950</id>
102160 </contributor>
102161 <comment>upload the images yourself - don't add links to your own website</comment>
102162 <text xml:space="preserve">[[Image:Andamanen(Satellitenaufnahme).jpg|right|thumb|250px|Satellite photo of the Andaman Islands]]
102163
102164 The '''Andaman Islands''' are a group of [[island]]s in the [[Bay of Bengal]], and are part of the [[Andaman and Nicobar Islands]] [[Union Territory]] of [[India]]. [[Port Blair]] is the chief community on the islands, and the administrative center of the Union Territory. The Andaman Islands form a single [[Districts of India|administrative district]] within the Union Territory, the [[Andaman district]] (the [[Nicobar district]] was separated and established as a new district in [[1974]]). The [[population]] of the Andamans was 314,084 in 2001.
102165
102166 ==Physical Geography==
102167 There are approximately 550 islands in the group, 26 of which are inhabited. They are located 950 [[kilometre|km]] from the mouth of the [[Hooghly River]], 193 km from [[Cape Negrais]] in [[Myanmar]], the nearest point of the mainland, and 547 km from the northern extremity of [[Sumatra]]. The length of the island chain is 352 km and its greatest width is 51 km. The total land area of the Andamans is 6408 [[square kilometre|km&amp;sup2;]].
102168
102169 The five chief islands over a distance of 251 km, are known collectively as [[Great Andaman]]. These are from north to south, [[North Andaman]], [[Middle Andaman]], [[South Andaman]], [[Baratang]] and [[Rutland Island]]. Four narrow straits part these islands, [[Austin Strait]], between North and Middle Andaman, [[Homfray's Strait]] between Middle Andaman and Baratang, and the north extremity of South Andaman, [[Middle Strait|Middle (or Andaman) Strait]] between Baratang and South Andaman and [[Macpherson Strait]] between South Andaman and Rutland Island. Of these only the last is navigable by ocean-going vessels.
102170
102171 Together with the chief islands are, on the extreme north, [[Landfall Islands]], separated by the navigable [[Cleugh Passage]]; [[Interview Island]], separated by the navigable [[Interview Passage]], off the West coast of the Middle Andaman; the [[Labyrinth Island]] off the southwest coast of the South Andaman, through which is the navigable [[Elphinstone Passage]]; [[Ritchie's Archipelago|Ritchie's (or the Andaman) Archipelago]] off the East coast of South Andaman and Baratang, separated by the wide and safe [[Diligent Strait]] and intersected by [[Kwangtung Strait]] and the [[Tadma Juru]] (Strait). Little Andaman, roughly 42 km by 26 km, forms the southern extremity of the whole group and lies 50 km south of Rutland Island across the Manners Strait, the main shipping route between the Andamans and the [[Chennai|Madras]] coast. Besides these are a great number of islets lying off the shores of the main islands.
102172
102173 The principal outlying islands include the [[North Sentinel]], a dangerous island of about 73 km&amp;sup2;, lying about 29 km off the west coast of the South Andaman. About 29 km west of the Andamans are the dangerous Western Banks and Dalrymple Bank, rising to within a few [[fathom]]s of the surface of the sea and forming, with the two [[Sentinel Islands]], the tops of a line of submarine hills parallel to the Andamans.
102174
102175 Andamans is the only place in India with an [[active volcano]]. [[Barren Island (Andaman Islands)|Barren Island]], northeast of Port Blair, became active in [[1990s]] after being quiescent for almost two hundred years. It erupted again in May 2005, experts pointing to the post-tsunami change in tectonic plates as the likely cause. The isolated extinct volcano of [[Narcondam Island|Narcondam]], rising 710 m out of the sea, is 114 km east of North Andaman. Plans are afoot to make volcano tourism popular. Also 64 km to the east is the [[Invisible Bank]], with one rock just awash, and 55 km southeast of Narcondam is a submarine hill rising to 689 m below the surface of the sea. Narcondam, Barren Island and the Invisible Bank, a great danger of these seas, are in a line almost parallel to the Andamans inclining towards them from north to south.
102176
102177 ===Topography===
102178 The Andamans, unlike the Lakshadweep-Chagos chain, are high volcanic islands, arising from a submerged mountain chain that follows the southward extension of the continental shelf.
102179
102180 Extensive fringing reefs exist here, as well as a 320 kilometers-long barrier reef on the west coast. Much of the wildlife on these islands is endemic, including 112 species of endemic birds. While poorly known scientifically, these reefs may prove to be the most diverse and best preserved in the Indian Ocean.
102181
102182 The islands forming Great Andaman consist of a mass of hills enclosing very narrow valleys, the whole covered by dense tropical jungle. The hills rise to a considerable elevation:
102183 the chief heights being in the North Andaman, Saddle Peak (732 m); in the Middle Andaman, Mount Diavolo behind Cuthbert Bay (511 m); in the South Andaman, Koiob (459 m), Mount Harriet (364 m) and the Cholunga range (324 m); and in Rutland Island, Ford's Peak (433 m). Little Andaman is practically flat. There are no rivers and few perennial streams in the islands. The whole of the Andamans and the outlying islands were completely surveyed topographically by the Indian Survey Department under Colonel Hobday in [[1883]]-[[1886]], and the surrounding seas were charted by Commander Carpenter in [[1888]]-[[1889]].
102184
102185 ===Harbours===
102186 The coasts of the Andamans are deeply indented, giving existence to a number of safe harbours, which are often surrounded by mangrove swamps. The chief harbours are (starting northwards from Port Blair, the great harbour of South Andaman) on the East coast: Port Meadows, Colebrooke Passage, Elphinstone Harbour (Homfray's Strait), Stewart Sound and Port Cornwallis. The last three are very large. On the West coast: Temple Sound, Interview Passage, Port Anson or Kwangtung Harbour (large), Port Campbell (large), Port Mouat and Macpherson Strait. There are many other safe anchorages about the coast, notably Shoal Bay and Kotara Anchorage in South Andaman; Cadell Bay and the Turtle Islands in North Andaman; and Outram Harbour and Kwangtung Strait in the archipelago.
102187
102188 ==Geology==
102189 The Andaman Islands and the [[Nicobar Islands]] to the south form part of a range of submarine mountains, 1130 km long, running from Cape Negrais in the Arakan Yoma range of Burma, to Achin Head in Sumatra. This range separates the Bay of Bengal from the Andaman Sea, and it contains much that is geologically characteristic of the Arakan Yoma. The older rocks are early Tertiary or late Cretaceous. The newer rocks are in Ritchie's Archipelago chiefly, and contain fossils of radiolarians and foraminifera. There is coral along the coasts everywhere, and the Sentinel Islands are composed of the newer rocks with a superstructure of coral. A theory of a still continuing subsidence of the islands was formed by Kurz in [[1866]] and confirmed by Oldham in [[1884]]. Signs of its continuance are found on the east coast in several places.
102190
102191 ==Climate==
102192 The climate of the Andamans themselves may be described as normal for tropical islands of similar latitude. It is always warm, but with sea-breezes; very hot when the sun is northing; irregular rainfall, but usually dry during the north-east, and very wet during the south-west monsoon. Not only does the rainfall at one place vary from year to year, but there is an extraordinary difference for places quite close to one another. The Islands are barely affected by the often disastrous cyclones that come up the Bay of Bengal, though they are within the influence of practically every one. The Andamans thus were once of great importance for monitoring weather in the region for the benefit of the Indian mainland and ships at sea in the Indian Ocean. A meteorological station was established at Port Blair in [[1868]].
102193
102194 ==Flora==
102195 A section of the Forest Department of India was established in the Andamans in [[1883]], and in the neighbourhood of Port Blair 400 km&amp;sup2; were set apart for regular forest operations to be carried on by convict labour. The chief timber of indigenous growth is [[padouk]] ''(Pterocarpus dalbergioides'') used for buildings, boats, furniture, fine joinery and all purposes to which teak, mahogany, hickory, oak and ash are applied. This tree was widespread and formed a valuable export to European markets. Other first-class timbers are koko (''Albizzia lebbek''), white chuglam (''Terminalia bialata''), black chugiam (''Myristica irya''), marble or zebra wood (''Diospyros kurzii'') and satin-wood (''Murraya exotica''), which differs from the satin-wood of Ceylon (''Chloroxylon swietenia''.) All of these timbers are used for furniture and similar fine purposes, but many are now endangered. In addition there are a number of second- and third-class timbers, which are used locally and for export to Calcutta. Gangaw (''Messua ferrea'') the Assam iron-wood, is suitable for railway sleepers; and didu (''Bombax insigne'') is used for tea-boxes and packing-cases.
102196
102197 Among the introduced flora are tea, Siberian coffee, cocoa, CearÃĄ rubber (which has not done well), Manila hemp, teak, cocoanut and a number of ornamental trees, fruit-trees, vegetables and garden plants. Tea is grown in considerable quantities and the cultivation was once under a department of the penal settlement. The general character of the forests is Burmese with an admixture of Malay types. Great mangrove swamps supply unlimited fire-wood of the best quality. The great peculiarity of Andaman flora is that, with the exception of the Cocos islands, no coconut palms are found in the archipelago.
102198
102199 ==Fauna==
102200 The Andamans are home to a wide variety of bird, animal and marine life, with many [[species]] [[endemic (ecology)|endemic]] to the islands, or even locations on the islands, to a large degree owing to the islands' relative isolation from nearby landmasses. Several of these species are also to be found in the Nicobar islands, whilst others are found only in one or the other island groups.
102201
102202 Endemic [[bird]] species include the [[Nicobar scrubfowl]] (''Megapodius nicobariensis'', a type of [[megapode]]), [[Nicobar green imperial pigeon]] (''Ducula aenea nicobarica''), and the [[Nicobar emerald dove]] (''Chancophaps indica augusta'').
102203
102204 [[Reptile|Reptilian]] species include the [[saltwater crocodile]] (''Crocodylus porusus'') which nests in [[estuary|estuarine]] regions. Several species of endangered [[Sea turtle]] (family ''Cheloniidae'') are also found in the islands' waters, such as [[Hawksbill turtle]]s (''Eretmochelys imbricata''), [[Leatherback Sea Turtle]]s (''Dermochelys coriacea''), and [[Olive Ridley]] sea turtles (''Lepidochelys olivacea''). Terrestrial- and arboreal-dwelling reptiles include several species of [[lizard]], such as the [[Coryphophylax subcristatus|Bay Island forest lizard]] (''Coryphophylax subcristatus''), a species from the [[Agamidae]] Family of lizards.
102205
102206 Marine mammals include [[Dugong]] (''Dugong dugon''), Finless porpoise (''Neophocaena hocaenoides''), and [[Blainville's Beaked Whale]] (''Mesoplodon densirostris''), a wide-ranging but non-migratory species of [[mesoplodont whale]]s. Rich fish and invertebrate faunas exist on the reefs; fish families include Labridae, Pomacentridae, Scaridae, and Blenniidae. Nine species of seagrass are also present.
102207
102208 Fish are very numerous and many species are endemic to the Andaman seas. Turtles are abundant and supply the Calcutta market. Of imported animals, cattle, goats, asses and dogs thrive well, ponies and horses indifferently, and sheep badly, though some success has been achieved in breeding them.
102209
102210 ==History==
102211 It is uncertain whether any of the names of the islands given by [[Ptolemy]] ought to be attached to the Andamans; yet it is probable that his name itself is traceable in the Alexandrian geographer. Andaman first appears distinctly in the Arab notices of the [[9th century]], already quoted. But it seems possible that the tradition of marine nomenclature had never perished; that the ''Agathou daimonos nesos'' was really a misunderstanding of some form like ''Agdaman'', while ''Nesoi Baroussai'' survived as ''Lanka Balus'', the name applied by the Arabs to the [[Nicobar Islands]]. The islands are briefly noticed by [[Marco Polo]], who may have seen them without visiting, under the name ''Angamanain'', seemingly an Arabic dual, &quot;the two Angamans&quot;, with the exaggerated picture of the natives as dog-faced [[anthropophagi]].
102212
102213 Another notice occurs in the story of [[Nicolo Conti]] (c. 1440), who explains the name to mean ''Island of Gold'', and speaks of a lake with peculiar virtues as existing in it. The name is probably derived from the [[Malay language|Malay]] ''Handuman'', coming from the ancient ''Hanuman'' (monkey god). Later travellers repeat the stories, too well founded, of the &quot;ferocious hostility&quot; of the people; of whom we may instance [[Cesare Federici]] ([[1569]]), whose narrative is given in ''Ramusio'', vol. iii. (only in the later editions), and in ''Purchas''. A good deal is also told of them in the vulgar and gossiping but useful work of [[Captain A. Hamilton]] ([[1727]]).
102214
102215 In [[1788]]-[[1789]] the government of Bengal sought to establish in the Andamans a penal colony, associated with a harbour of refuge. Two officers, Colebrooke of the Bengal Engineers, and Blair of the sea service, were sent to survey and report. In the sequel the settlement was established by Captain Blair, in September [[1789]], on Chatham Island, in the southeast bay of the Great Andaman, now called Port Blair, but then Port Cornwallis. There was much sickness, and after two years, urged by [[Admiral Cornwallis]], the government transferred the colony to the northeast part of Great Andaman, where a naval arsenal was to be established. With the colony the name also of Port Cornwallis was transferred to this new locality. The scheme did ill; and in [[1796]] the government put an end to it, owing to the great mortality and the embarrassments of maintenance. The settlers were finally removed in May [[1796]].
102216
102217 In [[1824]] Port Cornwallis was the ''rendezvous'' of the fleet carrying the army to the first Burmese war. In [[1839]], Dr Helfer, a German savant employed by the Indian government, having landed in the islands, was attacked and killed. In [[1844]] the troop-ships ''Briton'' and ''Runnymede'' were driven ashore here, almost close together. The natives showed hostility, killing all stragglers. Outrages on shipwrecked crews continued so rife that the question of occupation had to be taken up again; and in [[1855]] a project was formed for such a settlement, embracing a convict establishment. This was interrupted by the [[Indian Mutiny of 1857]], but as soon as the neck of that revolt was broken, it became more urgent than ever to provide such a resource, on account of the great number of prisoners falling into British hands. Lord Canning, therefore, in November [[1857]], sent a commission, headed by Dr F. Mouat, to examine and report. The commission reported favourably, selecting as a site Blair's original Port Cornwallis, but pointing out and avoiding the vicinity of a salt swamp which seemed to have been pernicious to the old colony. To avoid confusion, the name of Port Blair was given to the new settlement.
102218
102219 For some time sickness and mortality were excessively large, but the [[Land reclamation|reclamation of swamp]] and clearance of jungle on an extensive scale by Colonel Henry Man when in charge ([[1868]]-[[1870]]), had a most beneficial effect, and the health of the settlement has since been notable. The Andaman colony obtained a tragical notoriety from the murder of the viceroy, the earl of Mayo, by a Muslim convict, when on a visit to the settlement on [[February 8]], [[1872]]. In the same year the two groups, Andaman and Nicobar, the occupation of the latter also having been forced on the British government (in [[1869]]) by the continuance of outrage upon vessels, were united under a chief commissioner residing at Port Blair.
102220 [[Image:Andaman ross is.jpg|thumb|Ross Island - during the British rule the main military base]]
102221 The Andaman islands were later occupied by Japan during [[World War II]]. The islands were nominally put under the authority of the [[Arzi Hukumate Azad Hind]] of Netaji [[Subhash Chandra Bose]]. Netaji visited the islands during the war, and renamed them as Shaheed (Martyr) &amp; Swaraj (Self-rule). General Loganathan of the [[Indian National Army]] , was Governor of the Andaman and Nicobar Islands which had been annexed to the Provisional Government. After the end of the war they briefly returned to British control, before becoming part of the newly independent state of India.
102222
102223 On [[26 December]] [[2004]] the coast of the Andaman Islands was devastated by a 10 metre high [[tsunami]] following the [[2004 Indian Ocean earthquake]].
102224
102225 ===Penal Settlement===
102226 The point of enduring interest as regards the Andamans is the [[penal colony]], the object of which is to turn the life-sentence and few long-sentence convicts, who alone are sent to the settlement, into honest, self-respecting men and women, by leading them along a continuous course of practice in self-help and self-restraint, and by offering them every inducement to take advantage of that practice. After ten years' graduated labour the convict is given a ticket-of-leave and becomes self-supporting. He can farm, keep cattle, and marry or send for his family, but he cannot leave the settlement or be idle. With approved conduct, however, he may be absolutely released after twenty to twenty-five years in the settlement; and throughout that time, though possessing no civil rights, a [[Quasi-judicial body|quasi-judicial]] procedure controls all punishments inflicted upon him, and he is as secure of obtaining justice as if free. There is an unlimited variety of work for the labouring convicts, and some of the establishments are on a large scale. Very few experts are employed in supervision; practically everything is directed by the officials, who themselves have first to learn each trade. Under the chief commissioner, who is the supreme head of the settlement, are a deputy and a staff of assistant superintendents and overseers, almost all Europeans, and sub-overseers, who are natives of India. All the petty supervising establishments are composed of convicts.
102227
102228 The garrison consists of 140 British and 300 Indian troops, with a few local European volunteers. The police are organized as a military battalion 643 strong. The number of convicts has somewhat diminished of late years and in [[1901]] stood at 11,947. The total population of the settlement, consisting of convicts, their guards, the supervising, clerical and departmental staff, with the families of the latter, also a certain number of ex-convicts and trading settlers and their families, numbered 16,106. The labouring convicts are distributed among four jails and nineteen stations; the self-supporters in thirty-eight villages. The elementary education of the convicts' children is compulsory. There are four hospitals, each under a resident medical officer, under the general supervision of a senior officer of the Indian medical service, and medical aid is given free to the whole population. The net annual cost of the settlement to the government is about six pounds per convict. The harbour of Port Blair is well supplied with buoys and harbour lights, and is crossed by ferries at fixed intervals, while there are several launches for hauling local traffic. On Ross Island there is a lighthouse visible for 19 miles. A complete system of signalling by night and day on the Morse system is worked by the police. Local posts are frequent, but there is no telegraph and the mails are irregular.
102229
102230 The above accounts, written while Britain still controlled India, may leave the impression that these settlements were a model of progressive penal reform. Indian accounts, however, paint a different picture. From the time of its development in [[1858]] under the direction of [[James Pattison Walker]], and in response to the mutiny and rebellion of the previous year, the settlement was first and foremost a repository for political prisoners. The [[Cellular Jail]] at Port Blair when completed in [[1910]] included 698 cells designed to better accommodate solitary confinement; each cell measured 4.5 by 2.7 metres with a single ventilation window 3 metres above the floor. [[Vinayak Damodar Savarkar]] had been one of the illustrious prisoners there. The Viper Chain Gang Jail on Viper Island was reserved for troublemakers, and was also the site of hangings. In the 20th century it became a convenient place to house India's freedom fighters, and it was here that on [[December 30]], [[1943]] during Japanese occupation, that [[Subhas Chandra Bose]] first raised the flag of Indian independence. The penal colony was closed on [[August 15]], [[1947]] when India gained its freedom. It has since served as a museum to the freedom fighters.
102231
102232 ==Demographics==
102233 The population of the Andaman Islands has increased rapidly, from roughly 2000 in 1901 to 157,821 in 1981, 241,453 in 1991, and 314,239 in 2001. These increases are mostly attributable to migration from the Indian mainland. It is estimated that less than ten percent of the population of the Andaman Islands is indigenous Andamanese including in 2005, only 99 [[Onge]], 250 [[Sentinelese]], 39 [[Andamanese]] and 350 [[Jarawa (Andaman Islands)|Jarawas]].
102234
102235 ==Indigenous Andamanese==
102236 [[Image:Andaman tribal &amp; linguistic map.jpg|thumb|300px|Ethnolinguistic map of the precolonial Andaman Islands]]
102237 The various [[indigenous peoples|indigenous]] [[Andamanese]] peoples [[list of subsistence techniques|subsisted]] mostly as [[hunter-gatherer]] communities, supplemented by [[fishing]] and limited [[agriculture|agricultural]] practices. The Sentinelese, Önge, and Jarawa peoples continue in this way of life in the southern part of the archipelago.
102238
102239 The indigenous Andamanese are slightly built, dark-skinned, with tightly-curled hair, and physically resemble the [[Semang]] of the [[Malay Peninsula]] and the [[Aeta]] of the [[Philippines]]. The Andamanese, Semang, and Aeta are probably descendants of a people who were more widespread in [[Southeast Asia]] before they were displaced or assimilated by the ancestors of today's [[Austronesian]]-speakers.
102240
102241 Their antiquity is attested by the remains found in their kitchen-[[midden]]s. These are of great age, and rise sometimes to a height exceeding 5 metres. The fossil shells, pottery and primitive stone implements, found alike at the base and at the surface of these middens, show that the habits of the islanders have varied little since the remote past, and lead to the belief that the Andamans were settled by their present inhabitants some time during the [[Pleistocene]] period, and certainly no later than the [[Neolithic]] age. The oldest [[archaeological]] evidence for occupation yet obtained is dated to [[3rd century BC|2,200 years ago]]; however, the investigations which have been made are not extensive, and it is most likely that much earlier dates will be attested.
102242
102243 The Andamans may have been linked to Myanmar by a land bridge during the [[ice age]]s, and it is possible that the ancestors of the Andamanese reached the islands without crossing the sea. Whether an original sea-crossing was required or not, linguistic and genetic studies indicate that the Andamanese peoples have lived in almost complete isolation for 30,000 to 70,000 years. For example, a report in the journal &quot;Science&quot; [Vol 308, Issue 5724, 996, [[13 May]] [[2005]]] by Thangaraj et al. identifies M31 and M32 [[mitochondrial DNA|mtDNA]] types among indigenous Andamanese, which show that these populations became genetically isolated about 50,000 to 70,000 years ago, apparently after their initial migration from Africa.
102244
102245 The indigenous Andamanese spoke several related languages, the [[Andamanese languages]], a distinct [[language family]] unrelated to languages found outside the islands. Of the 13 languages spoken at the beginning of the century, nine are now extinct. The extinct languages were spoken on Great Andaman, and the Great Andamanese now mostly speak [[Hindi]]. The [[Jarawa (Andaman Islands)|Jarawa]], [[Onge|Önge]], and [[Sentinelese]] mostly speak their own languages, and limit their contact with outsiders.
102246
102247 The earliest European notice of the Andamanese is in a remarkable collection of early [[Arab]] notes on India and China from the year [[851]] which influenced the view of this people until modern times. The traditional charge of [[cannibalism]] has been very persistent; but it is entirely denied by the islanders themselves, and is now and probably always has been untrue. Of their massacres of shipwrecked crews, there is no doubt, but that the policy of conciliation has secured a friendly reception for shipwrecked crews at any port of the islands.
102248
102249 The historic population of the islands is difficult to estimate, but it has probably always been small. The estimated total at a census taken in [[1901]] was only 2,000. Though all descended from one stock, there are twelve distinct [[Tribes of India|tribes]] of the Andamanese, each with its own clearly-defined locality, its own distinct variety of the one fundamental language and to a certain extent its own separate habits. Every tribe is divided into fairly well defined septs. The tribal feeling may be expressed as friendly within the tribe, courteous to other Andamanese if known, hostile to every stranger, Andamanese or other.
102250
102251 The Andaman languages are extremely interesting from the philological standpoint. They are [[agglutinative]] in nature, show hardly any signs of syntactical growth though every indication of long etymological growth, give expression to only the most direct and the simplest thought, and are purely colloquial and wanting in the modifications always necessary for communication by writing. The sense is largely eked out by manner and action. Mincopie is the first word in Colebrooke's vocabulary for &quot;Andaman Island, or native country&quot;, and the term - though probably a mishearing on Colebrooke's part for Mongebe (&quot;I am an Onge&quot;, i.e. a member of the Onge tribe) - has thus become a persistent book-name for the people.
102252
102253 Another division of the natives is into [[Aryauto]] or long-shore-men, and the [[Eremtaga]] or jungle-dwellers. The habits and capacities of these two differ, owing to surroundings, irrespectively of tribe. Yet again the Andamanese can be grouped according to certain salient characteristics: the forms of the bows and arrows, of the canoes, of ornaments and utensils, of [[tattoo]]ing and of language.
102254
102255 The average height of males is 149 cm; of females, 137 cm. The only artificial deformity is a depression of the skull, chiefly among one of the southern tribes, caused by the pressure of a strap used for carrying loads.
102256
102257 The women's heads are shaved entirely and the men's into fantastic patterns. Yellow and [[red ochre]] mixed with grease are coarsely smeared over the bodies, grey in coarse patterns and white in fine patterns resembling tattoo marks. Tattooing is of two distinct varieties. In the south the body is slightly cut by women with small flakes of glass or quartz in zigzag or lineal patterns downwards. In the north it is deeply cut by men with pig-arrows in lines across the body.
102258
102259 The male is said to reach adulthood when about fifteen years of age, typically marries when about twenty-six, and lives onto sixty or sixty-five if he reaches old age. Except as to the marrying age, these figures fairly apply to women. Before marriage, free intercourse between the sexes is the rule, though certain conventional precautions are taken to prevent it. Marriages rarely produce more than three children and often none at all. Divorce is rare, unfaithfulness after marriage uncommon and incest virtually unknown.
102260
102261 By preference the Andamanese are exogamous as regards sept and endogamous as regards tribe.
102262
102263 There is no idea of government, but in each sept there is a head, who has attained that position by degrees on account of some tacitly admitted superiority and commands a limited respect and some obedience. The young are deferential to their elders. Offences are punished by the aggrieved party. Property is communal and theft is only recognized as to things of absolute necessity, such as arrows, pork and fire. Fire is the one thing they are really careful about, not knowing how to renew it. A very rude barter exists between tribes of the same group in regard to articles not locally obtainable.
102264
102265 The religion consists of beliefs in spirits of the wood, the sea, disease and ancestors, and of avoidance of acts traditionally displeasing to them. There is neither worship nor propitiation. An anthropomorphic deity, [[Puluga]], is the cause of all things, but it is not necessary to propitiate him. There is an idea that the &quot;soul&quot; will go somewhere after death, but there is no heaven nor hell, nor idea of a corporeal resurrection. There is much faith in dreams, and in the utterances of certain &quot;wise men&quot;, who practise an embryonic magic and witchcraft.
102266
102267 The great amusement of the Andamanese is a formal night dance, but they are also fond of games. The bows differ altogether with each group, but the same two kinds of arrows are in general use: (1) long and ordinary for fishing and other purposes; (2) short with a detachable head fastened to the shaft by a thong, which quickly brings pigs up short when shot in the thick jungle. Bark provides material for string, while baskets and mats are neatly and stoutly made from canes and buckets out of bamboo and wood.
102268
102269 None of the tribes ever ventures out of sight of land, and they have no idea of steering by sun or stars. Their canoes are simply hollowed out of trunks with the adze and in no other way, and it is the smaller ones that are outrigged; they do not last long and are not good sea-boats. The story of raids on Car Nicobar, out of sight across a stormy and sea-rippled channel, must be discredited.
102270
102271 Honour is shown to an adult when he dies by wrapping him in a cloth and placing him on a platform in a tree instead of burying him. At such a time the encampment is deserted for three months.
102272
102273
102274 ==Reference==
102275 *{{1911}}
102276
102277 ==External links==
102278 *[http://andaman-islands.tripod.com/ Photos from Andaman Islands] 100 photos taken by an Andaman's lover
102279 *[http://community.webshots.com/user/mp5ingh Snaps of Andaman and Nicobar Islands] Snaps of Andaman Islands taken by Mahendra Pratap Singh, S/o Shri R.P.Singh
102280 *[http://www.andaman.org/ The Andaman Association, Lonely Islands: The Andamanese]
102281
102282 [[Category:Ecoregions of India]]
102283 [[Category:Archipelagoes]]
102284 [[Category:Regions of India]]
102285 [[Category:Islands of India]]
102286 [[Category:Andaman and Nicobar Islands]]
102287 [[Category:Indomalaya]]
102288 [[Category:Tropical and subtropical moist broadleaf forests]]
102289
102290 [[da:Andamanerne]]
102291 [[de:Andamanen]]
102292 [[et:Andamani saared]]
102293 [[es:Islas AndamÃĄn]]
102294 [[eo:Andamanoj]]
102295 [[fr:Îles Andaman]]
102296 [[id:Andaman]]
102297 [[nl:Andamanen]]
102298 [[no:Andamanene]]
102299 [[pl:Andamany]]
102300 [[pt:Ilhas Andaman]]</text>
102301 </revision>
102302 </page>
102303 <page>
102304 <title>Alexander Anderson (mathematician)</title>
102305 <id>1751</id>
102306 <revision>
102307 <id>35872567</id>
102308 <timestamp>2006-01-19T22:56:43Z</timestamp>
102309 <contributor>
102310 <username>Valentinian</username>
102311 <id>256198</id>
102312 </contributor>
102313 <comment>/* References */ stub sorting</comment>
102314 <text xml:space="preserve">'''Alexander Anderson''' (c. [[1582]]-[[1620]]?) was a Scottish [[mathematician]] born in [[Aberdeen]]. In his youth he went to the continent and taught mathematics in [[Paris]], where he published or edited, between the years [[1612]] and [[1619]], various [[geometric]] and [[algebraic]] tracts.
102315
102316 He was selected by the executors of [[François Viète]] to revise and edit Viete's manuscript works. The works of Anderson amount to six thin quarto volumes, and as the last of them was published in [[1619]], it is probable that the author died soon after that year, but the precise date is unknown.
102317
102318 ==References==
102319 *{{1911}}
102320 {{Scotland-bio-stub}}
102321 {{UK-scientist-stub}}
102322 {{Mathematician-stub}}
102323
102324 [[Category:1582 births|Anderson, Alexander]]
102325 [[Category:1620 deaths|Anderson, Alexander]]
102326 [[Category:Aberdonians|Anderson, Alexander]]
102327 [[Category:Scottish emigrants|Anderson, Alexander]]
102328 [[Category:Scottish mathematicians|Anderson, Alexander]]
102329 [[Category:Scottish scholars|Anderson, Alexander]]
102330 [[Category:University of Paris|Anderson, Alexander]]
102331
102332 [[es:Alexander Anderson]]
102333 [[sv:Alexander Anderson]]</text>
102334 </revision>
102335 </page>
102336 <page>
102337 <title>Andocides</title>
102338 <id>1752</id>
102339 <revision>
102340 <id>28108588</id>
102341 <timestamp>2005-11-12T11:42:59Z</timestamp>
102342 <contributor>
102343 <username>Bluebot</username>
102344 <id>527862</id>
102345 </contributor>
102346 <minor />
102347 <comment>Standardising 1911 references.</comment>
102348 <text xml:space="preserve">'''Andocides''', or '''Andokidès ''', ([[440 BC|440]]&amp;ndash;[[390 BC]]) one of the ten [[Attic orators]].
102349
102350 He was implicated during the [[Peloponnesian War]] in the mutilation of the [[Herms]] on the eve of the departure of the [[Sicilian expedition|Athenian expedition]] against [[Sicily]] in [[415 BC]]. Although he saved his life by turning informer, he was condemned to partial loss of civil rights and went into exile. He engaged in commercial pursuits, and returned to [[Athens]] under the general amnesty that followed the restoration of the democracy ([[403 BC]]), and filled some important offices. In [[391 BC]] he was one of the ambassadors sent to [[Sparta]] to discuss peace terms, but the negotiations failed. Oligarchical in his sympathies, he offended his own party and was distrusted by the democrats. Andocides was no professional orator; his style is simple and lively, natural but inartistic.
102351
102352 '''Speeches extant'''--''De Reditu,'' his plea for his return and removal of civil disabilities; ''De Mysteriis,'' his defence against the charge of impiety in attending the [[Eleusinian Mysteries]]; ''De Pace,'' advocating peace with Sparta; ''Contra [[Alcibiades|Alcibiadem]],'' generally considered spurious.
102353
102354
102355 ==References==
102356 *{{1911}}
102357 [[Category:Ancient Athenians|Andocides]]
102358
102359 [[de:Andokides (Redner)]]
102360 [[el:ΑÎŊδÎŋÎēÎ¯Î´ÎˇĪ‚]]
102361 [[fr:Andocide]]
102362 [[hu:AndokidÊsz]]</text>
102363 </revision>
102364 </page>
102365 <page>
102366 <title>Andrea Del Sarto</title>
102367 <id>1753</id>
102368 <revision>
102369 <id>15900218</id>
102370 <timestamp>2002-04-24T05:59:11Z</timestamp>
102371 <contributor>
102372 <username>Gianfranco</username>
102373 <id>918</id>
102374 </contributor>
102375 <comment>#REDIRECT [[Andrea del Sarto]] - (correct title) - moving content</comment>
102376 <text xml:space="preserve">#REDIRECT [[Andrea del Sarto]]</text>
102377 </revision>
102378 </page>
102379 <page>
102380 <title>Andrea Andreani</title>
102381 <id>1754</id>
102382 <revision>
102383 <id>35439958</id>
102384 <timestamp>2006-01-16T20:13:18Z</timestamp>
102385 <contributor>
102386 <username>FlaBot</username>
102387 <id>228773</id>
102388 </contributor>
102389 <minor />
102390 <comment>robot Adding: de</comment>
102391 <text xml:space="preserve">'''Andrea Andreani''' ([[1540]]-[[1623]]), Italian [[engraver]] on wood, in [[chiaroscuro]].
102392
102393 Born in [[Mantua]] about [[1540]] (Brulliot says [[1560]]) and died at [[Rome]] in [[1623]]. His engravings are scarce and valuable, and are chiefly copies of [[Mantegna]], [[Albrecht DÃŧrer]], and [[Titian]]. The most remarkable of his works are &quot;Mercury and Ignorance&quot;, the &quot;Deluge,&quot; &quot;Pharaoh's Host Drowned in the Red Sea&quot; (after Titian), the &quot;Triumph of Caesar&quot; (after Mantegna), and &quot;Christ retiring from the judgment-seat of Pilate&quot; after a relief by Giambologna.
102394
102395 ==References==
102396 *{{1911}}
102397
102398 [[Category:1540 births|Andreani]]
102399 [[Category:1623 deaths|Andreani]]
102400 [[Category:Italian engravers|Andreani]]
102401 [[Category:Natives of Mantua|Andreani]]
102402
102403 [[de:Andrea Andreani]]</text>
102404 </revision>
102405 </page>
102406 <page>
102407 <title>Andrew II of Hungary</title>
102408 <id>1755</id>
102409 <revision>
102410 <id>41213584</id>
102411 <timestamp>2006-02-25T20:57:33Z</timestamp>
102412 <contributor>
102413 <username>Mathiasrex</username>
102414 <id>776781</id>
102415 </contributor>
102416 <minor />
102417 <text xml:space="preserve">'''Andrew II''' ([[Hungarian language|Hungarian]]: ''II. AndrÃĄs'' or ''II. Endre'', [[Slovak language|Slovak]]: ''Ondrej II'') ([[1175]]-[[1235]]) was a son of [[BÊla III of Hungary|BÊla III]] and succeeded his nephew, the infant [[Ladislaus III of Hungary|Ladislaus III]], as King of Hungary in [[1205]].
102418
102419 Few other royal reigns were as detrimental to the Hungarian realm as Andrew's. Valiant, enterprising, pious as he was, all these fine qualities were ruined by a reckless good nature which never thought of the future. He declared in a decree that the generosity of a king should be limitless, and he followed this principle throughout his reign. He gave away everything - money, villages, domains, whole counties - to the utter impoverishment of the treasury, thereby rendering the crown, for the first time in Hungarian history, dependent upon the great [[nobility]] eager for personal gain. In all matters of government, Andrew was equally reckless and haphazard. He was directly responsible for the beginnings of the feudal anarchy which led to the extinction of the [[ÁrpÃĄds|ÁrpÃĄd]] [[dynasty]] at the end of the [[13th century]]. The great nobles did not even respect the lives of the royal family, for Andrew was recalled from a futile attempt to reconquer [[Galicia (Central Europe)|Galicia]] through the murder of his first wife [[Gertrude of Meran]] in [[1213]] by rebellious nobles jealous of the influence of her relatives.
102420
102421 In [[1215]] he married Iolanthe (Yolande) of [[France]], but in [[1217]] was compelled by [[Pope Honorius III]] to lead the [[Fifth Crusade]] to the [[Holy Land]], which he undertook in hopes of being elected [[Latin Empire|Latin emperor]] of [[Constantinople]]. The crusade was not popular in Hungary, but Andrew contrived to collect 15,000 men together, whom he led to [[Venice]]. After the surrender of Hungarian claims on Zara ([[Zadar]]), about two-thirds of the crusaders were conveyed to [[Acre (city)|Acre]]. Nevertheless the whole expedition was a forlorn hope. The [[Kingdom of Jerusalem]] was by this time reduced to a strip of coast about 440 mi² in extent, and after a drawn battle with the [[Turkic peoples|Turks]] on the [[Jordan River]] on [[November 10]] 1217 and fruitless assaults on the fortresses of the [[Lebanon]] and on [[Mount Tabor]], Andrew started home ([[January 18]], [[1218]]) through Antioch ([[Antakya]]), Iconium ([[Konya]]), Constantinople, and [[Bulgaria]]. On his return he found the feudal barons in the ascendant, and they extorted from him the [[Golden Bull of 1222|Golden Bull]].
102422
102423 Andrew's last exploit was to defeat an invasion of [[Frederick II of Austria|Frederick II]] of [[Austria]] in [[1234]]. That same year he married his third wife, Beatrice of [[Este]].
102424
102425 ==Family==
102426
102427 Andrew had five children by his first wife, Gertrude:
102428 # Maria of Hungary (1203-1221), married Tsar [[Ivan Asen II of Bulgaria]]
102429 # [[Bela IV of Hungary]] (1206-1270)
102430 # [[Elisabeth of Hungary|Saint Elizabeth of Hungary]] (1207-1231)
102431 # KÃĄlmÃĄn, Duke of [[Croatia]] (1208-1241)
102432 # AndrÃĄs, King of Galicia (1210-1234)
102433
102434 From his second marriage to Yolande de Courtney, he had one daughter:
102435 # JolÃĄn (Yolande) of Hungary (1215-1251), married [[James I of Aragon]]
102436
102437 Andrew's third marriage to Beatrice d'Este produced one posthumous son:
102438 # IstvÃĄn (1236-1271), who was himself father of King [[Andrew III of Hungary]]
102439
102440 ==References==
102441 * {{1911}}
102442
102443 {{start box}}
102444 {{succession box|title=[[King of Hungary]]|before=[[Ladislaus III of Hungary|Ladislaus III]]|after=[[Bela IV of Hungary|BÊla IV]]|years=1205&amp;ndash;1235}}
102445 {{end box}}
102446
102447 [[Category:Hungarian monarchs]]
102448 [[Category:1175 births|Andrew II of Hungary]]
102449 [[Category:1235 deaths|Andrew II of Hungary]]
102450 [[Category:Crusades]]
102451
102452 [[de:Andreas II. (Ungarn)]]
102453 [[fr:AndrÊ II de Hongrie]]
102454 [[hu:II. AndrÃĄs]]
102455 [[ja:エãƒŗドãƒŦ2世]]
102456 [[pl:Andrzej II]]
102457 [[pt:AndrÊ II da Hungria]]
102458 [[ro:Andrei al II-lea al Ungariei]]
102459 [[sk:Ondrej II. (Uhorsko)]]
102460 [[sv:Andreas II av Ungern]]
102461 [[zh:åŽ‰åžˇįƒˆäēŒä¸–]]</text>
102462 </revision>
102463 </page>
102464 <page>
102465 <title>An Enquiry Concerning Human Understanding</title>
102466 <id>1756</id>
102467 <revision>
102468 <id>42161859</id>
102469 <timestamp>2006-03-04T05:47:49Z</timestamp>
102470 <contributor>
102471 <username>Lucidish</username>
102472 <id>75338</id>
102473 </contributor>
102474 <text xml:space="preserve">'''''An Enquiry Concerning Human Understanding''''' is a book by the [[Scotland|Scottish]] [[philosopher]] [[David Hume]], published in [[1748]].
102475
102476 This is the book that woke [[Immanuel Kant]] from his self-described &quot;dogmatic slumber&quot;. It was a simplification of an earlier effort, Hume's ''[[A Treatise of Human Nature]]'', published anonymously in [[London]] in [[1739]]&amp;ndash;[[1740]]. Hume was disappointed with the reception of the ''Treatise'' (it &quot;fell dead-born from the press&quot;, as he put it) and so tried again to get his ideas before the public in this ''Enquiry''. Among the changes from the ''Treatise'' included a removal of Hume's theories of [[personal identity]].
102477
102478 == Summary ==
102479 The argument of the Enquiry proceeds following these steps:
102480
102481 # '''Of the different species of philosophy.''' In the first section of the Enquiry, Hume provides a rough introduction to philosophy as a whole. For Hume, philosophy can be split into two general parts: natural and moral philosophy. By &quot;moral philosophy&quot; Hume means the philosophy of human nature, which investigates both actions and thoughts. He emphasizes in this section, by way of warning, that philosophers with nuanced thoughts will likely be cast aside in favor of those who weild flowery rhetoric. However, he insists, precision helps art and craft of all kinds.
102482 # '''Of the origin of ideas.''' In this section, Hume discusses the distinction between impressions and ideas. By &quot;impressions&quot;, he means sensations, while by &quot;ideas&quot;, he means memories and imaginings. According to Hume, the difference between the two is that ideas are less vivacious than impressions. Along with the empiricist's program, he argues that the source of all ideas are impressions, combined with the operations of the imagination. One noteworthy consequence which he gives some treatment of is the &quot;missing blue shade&quot; problem.
102483 # '''Of the association of ideas.''' In this chapter, Hume discusses how thoughts tend to come in sequences, as in trains of thought. He explains that there are at least three kinds of associations between ideas: resemblance, contiguity, and cause-and-effect. He argues that there must be some universal principle that must account for the various sorts of connections that exist between ideas, but does not immediately show what this principle might be.
102484 # '''Skeptical doubts concerning the operations of the understanding (in two parts)'''. In the first part, Hume discusses how the objects of inquiry are either &quot;relations of ideas&quot; or &quot;matters of fact&quot;, which is roughly the distinction between [[analytic proposition|analytic]] and [[synthetic proposition]]s. In part two, Hume inquires into how anyone can justifiably believe that experience yields any conclusions about the world. He shows how a satisfying argument for experience can be based neither on principles (since no principle exists) nor experience (since that would be a [[circular argument]]).
102485 # '''Skeptical solution of these doubts (in two parts).''' For Hume, we assume that experience tells us something about the world because of habit or custom, which human nature forces us to take seriously. This is also, presumably, the principle that organizes the connections between ideas. Indeed, one of the many famous passages of the ''Enquiry'' was on the topic of the incorrigibility of human custom. Hume wrote:''&quot;The great subverter of Pyrrhonism or the excessive principles of skepticism is action, and employment, and the occupations of common life. These principles may flourish and triumph in the schools; where it is, indeed, difficult, if not impossible, to refute them. But as soon as they leave the shade, and by the presence of the real objects, which actuate our passions and sentiments, are put in opposition to the more powerful principles of our nature, they vanish like smoke, and leave the most determined skeptic in the same condition as other mortals.&quot;''
102486 # '''Of probability.'''
102487 # '''Of the idea of necessary connection (in two parts).'''
102488 # '''Of liberty and necessity (in two parts).'''
102489 # '''Of the reason of animals (comparable to man).'''
102490 # '''Of miracles (in two parts).'''
102491 # '''Of a particular providence and of a future state.'''
102492 # '''Of the academical or sceptical philosophy (in three parts).''' The first section of the last chapter is organized as an outline of various skeptical arguments. The treatment includes the arguments of atheism, Cartesian skepticism, &quot;light&quot; skepticism, and rationalist critiques of empiricism. Hume shows that even light skepticism leads to crushing doubts about the world which - while ultimately are more philosophically justifiable - may only be combatted through the non-philosophical adherance to custom or habit. He ends the section with his own reservations towards Cartesian and Lockean epistemologies.
102493
102494 ==External links==
102495 *[http://etext.library.adelaide.edu.au/h/h92e/ ebook text]
102496 *{{gutenberg|no=9662|name=An Enquiry Concerning Human Understanding}}
102497
102498 [[Category:1748 books|Enquiry Concerning Human Understanding, An]]
102499 [[Category:Books by David Hume|Enquiry Concerning Human Understanding, An]]
102500 [[Category:Philosophy books|Enquiry Concerning Human Understanding, An]]
102501
102502 {{Scotland-stub}}
102503 {{book-stub}}
102504
102505 [[lv:PētÄĢjums par cilvēka sapratni]]</text>
102506 </revision>
102507 </page>
102508 <page>
102509 <title>Andrew of Longjumeau</title>
102510 <id>1758</id>
102511 <revision>
102512 <id>39937801</id>
102513 <timestamp>2006-02-16T23:18:44Z</timestamp>
102514 <contributor>
102515 <ip>200.160.81.208</ip>
102516 </contributor>
102517 <text xml:space="preserve">'''Andrew of Longjumeau''' (also Longumeau, Lonjumel, etc.) was a [[13th century]] [[France|French]] [[Dominican Order|Dominican]], [[exploration|explorer]] and diplomat.
102518
102519 He accompanied the mission that was sent by [[Pope Innocent IV]] to the [[Mongols]] in [[1247]] under Friar Ascelin or Anselm, which was chronicled by [[Simon of St Quentin]]. At the [[Tatars]]' camp near [[Kars]] he met a certain David, who next year ([[1248]]) appeared at the court of King [[Louis IX of France]] in [[Cyprus]]. Andrew, who was now with Saint Louis, interpreted David's message to the King, a real or pretended offer of alliance from the Mongol general [[Ilchikdai]] (Ilchikadai), and a proposal of a joint attack upon the [[Islam]]ic powers for the conquest of [[Syria]].
102520
102521 In reply to this the French sovereign dispatched Andrew as his ambassador to the great [[Guyuk|Kuyuk Khan]]; with Longjumeau went his brother (a [[monk]]) and several others — John Goderiche, John of Carcassonne, Herbert &quot;Le Sommelier,&quot; Gerbert of Sens, Robert (a clerk), a certain William, and an unnamed clerk of [[Poissy]].
102522
102523 The party set out about [[February 16]], [[1249]], with letters from King Louis and the [[papal legate]], and rich presents, including a chapel-tent, lined with scarlet cloth and embroidered with sacred pictures. From Cyprus they went to the port of [[Antioch]] in Syria, and thence travelled for a year to the Khan's court, going ten leagues (55.56 kilometers) per day. Their route led them through [[Iran|Persia]], along the southern and eastern shores of the [[Caspian Sea|Caspian]] (whose inland character, unconnected with the outer ocean, their journey helped to demonstrate), and probably through [[Talas, Kyrgyzstan|Talas]], north-east of [[Tashkent]].
102524
102525 On arrival at the supreme Mongol court — either that on the [[Imyl river]] (near [[Lake Ala-kul]] and the present Russo-Chinese frontier in the [[Altai]]), or more probably at or near [[Karakorum]] itself, south-west of [[Lake Baikal]] — Andrew found Kuyuk Khan dead, poisoned, as the envoy supposed, by [[Batu Khan]]'s agents. The regent-mother [[Ogul Gaimish]] (the &quot;Camus&quot; of [[William of Rubruck]]) seems to have received and dismissed him with presents and a letter for Louis IX, the latter a fine specimen of Mongol insolence. But it is certain that before the friar had quitted &quot;Tartary&quot; [[Mangu Khan]], Kuyuk's successor, had been elected.
102526
102527 Andrew's report to his sovereign, whom he rejoined in [[1251]] at [[Caesarea Palaestina|Caesarea]] in [[Palestine (region)|Palestine]], appears to have been a mixture of history and fable; the latter affects his narrative of the Mongols' rise to greatness, and the struggles of their leader, evidently [[Genghis Khan]], with [[Prester John]]; it is still more evident in the position assigned to the [[Tatars]] homeland, close to the prison of [[Gog and Magog]]. On the other hand, the envoy's account of Tatar manners is fairly accurate, and his statements about [[Mongolia|Mongol]] Christianity and its prosperity, though perhaps exaggerated (e.g. as to the 800 chapels on wheels in the nomadic host), are based on fact.
102528
102529 Mounds of bones marked his road, witnesses of devastations which other historians record in detail. He found [[Christianity|Christian]] prisoners, from [[Germany]] in the heart of &quot;Tartary&quot; (at Talas), and was compelled to observe the ceremony of passing between two fires, as a bringer of gifts to a dead Khan, gifts which were of course treated by the Mongols as evidence of submission. This insulting behaviour, and the language of the letter with which Andrew reappeared, marked the mission a failure: King Louis, says [[Jean de Joinville|Joinville]], &quot;''se repenti fort''&quot; (&quot;felt very sorry&quot;).
102530
102531 We only know of Andrew through references in other writers: see especially [[William of Rubruck]]'s in ''Recueil de voyages'', iv. (Paris, 1839), pp. 261, 265, 279, 296, 310, 353, 363, 370; Joinville, ed. Francisque Michel (1858, etc.), pp. 142, etc.; Jean Pierre Sarrasin, in same vol., pp. 254–235; [[William of Nangis]] in ''Recueil des historiens des Gaules'', xx. 359–367; [[Charles de RÊmusat|RÊmusat]], ''MÊmoires sur les relations politiques des princes chrÊtiensâ€Ļ avec lesâ€Ļ Mongols'' (1822, etc.), p. 52.
102532
102533 ==See also==
102534 *[[Giovanni da Pian del Carpine]]
102535
102536 ==References==
102537 {{1911}}
102538
102539 [[Category:Dominicans|Longjumeau, Andrew of]]
102540 [[Category:French diplomats|Longjumeau, Andrew of]]
102541 [[Category:French explorers|Longjumeau, Andrew of]]
102542 [[Category:Explorers of Asia|Longjumeau, Andrew of]]
102543
102544 [[fr:AndrÊ de Longjumeau]]</text>
102545 </revision>
102546 </page>
102547 <page>
102548 <title>Andriscus</title>
102549 <id>1759</id>
102550 <revision>
102551 <id>28108625</id>
102552 <timestamp>2005-11-12T11:43:57Z</timestamp>
102553 <contributor>
102554 <username>Bluebot</username>
102555 <id>527862</id>
102556 </contributor>
102557 <minor />
102558 <comment>Standardising 1911 references.</comment>
102559 <text xml:space="preserve">'''Andriscus''', (also spelt Andriskos) often called the &quot;pseudo-Philip,&quot; a fuller of Adramyttium, who claimed to be a son of [[Perseus of Macedon|Perseus]], last king of [[Macedon]]ia.
102560
102561 He occupied the throne for a year ([[149 BC]]-[[148 BC]].) Unable to obtain a following in Macedonia, he applied to [[Demetrius I of Syria|Demetrius Soter of Syria]], who handed him over to the Romans. He contrived, however, to escape; reappeared in Macedonia with a large body of [[Thracians]]; and, having completely defeated the praetor [[Publius Juventius]] (149), he assumed the title of king.
102562
102563 His conquest of [[Thessaly]] and alliance with [[Carthage]] made the situation dangerous. Eventually he was defeated by [[Quintus Caecilius Metellus|Q. Caecilius Metellus]] (148), and fled to [[Thrace]], whose prince gave him up to [[Rome]].
102564
102565 He figured in the triumph of Metellus (146), who received the title of &quot;Macedonicus&quot; for his victory. Andriscus's brief reign was marked by cruelty and extortion. After this Macedonia was formally reduced to a province.
102566
102567 [[Marcus Velleius Paterculus|Velleius Paterculus]] i. 11; [[Florus]] ii. 14; [[Livy]], ''Epit.'' 49, 50, 52; [[Diodorus Siculus|Diod. Sic.]] xxxii. 9.
102568
102569 ==References==
102570 *{{1911}}
102571
102572 [[Category:Ancient Roman enemies and allies]]
102573 [[fi:Andriskos]]</text>
102574 </revision>
102575 </page>
102576 <page>
102577 <title>Andronicus III</title>
102578 <id>1760</id>
102579 <revision>
102580 <id>42042677</id>
102581 <timestamp>2006-03-03T11:55:28Z</timestamp>
102582 <contributor>
102583 <username>KnightRider</username>
102584 <id>430793</id>
102585 </contributor>
102586 <minor />
102587 <comment>warnfile Adding: es</comment>
102588 <text xml:space="preserve">'''Andronicus III Palaeologus''' (c. [[1296]] - [[June 15]], [[1341]]), [[Byzantine emperor]], was the son of [[Michael IX Palaeologus]] and Princess [[Rita of Armenia]].
102589
102590 His conduct during his youth was so violent that, after the death of his father Michael in [[1320]], his grandfather [[Andronicus II]] resolved to deprive him of his right to the crown. Andronicus rebelled; he had a powerful party, and the first period of civil war ended in his being crowned and accepted as colleague by his grandfather, [[1325]]. The quarrel broke out again and, notwithstanding the help of the [[Bulgaria]]ns, the older emperor was compelled to abdicate in [[1328]].
102591
102592 His chief minister during this period was John Cantacuzenus, later Emperor [[John VI Cantacuzenus|John VI]]. During his reign Andronicus III was engaged in constant war, chiefly with the [[Ottoman Turks]], who greatly extended their territory, conquering almost all of [[Asia Minor]] before his coming to power. Under Andronicus's rule, [[Nicaea]] fell to [[Ottoman Empire|Ottoman]] [[emir]] [[Orhan I]] in 1331, with [[Nicomedia]] following in 1337. After that, in Asia Minor only Philadelphia and a handful of ports remained under Byzantine control. He annexed large regions in [[Thessaly]] and [[Epirus (region)|Epirus]], but they were lost few years after his death in period of new civil war to the rising power of [[Serbia]] under [[Stefan Dusan]]. Andronicus worked on the reorganization of the navy, and recovered [[Lesbos Island|Lesbos]], [[Phocaea]], and [[Chios]] from the [[Genoa|Genoese]]. He died in [[1341]], and was succeeded by his son, [[John V Palaeologus|John V]].
102593
102594 {{start box}}
102595 {{succession box | before=[[Andronicus II]] | title=[[Byzantine Emperor]] | years=1325&amp;ndash;1341 &lt;br /&gt;''with [[Andronicus II]] in 1325-1328'' | after=[[John V Palaeologus]]}}
102596 {{end box}}
102597
102598 [[Category:1290s births]]
102599 [[Category:1341 deaths]]
102600 [[Category:Palaeologus dynasty]]
102601 [[Category:Byzantine emperors]]
102602
102603 [[de:Andronikos III.]]
102604 [[el:ΑÎŊδĪĪŒÎŊΚÎēÎŋĪ‚ Γ']]
102605 [[es:AndrÃŗnico III PaleÃŗlogo]]
102606 [[fr:Andronic III PalÊologue]]
102607 [[hu:III. Andronikosz]]
102608 [[ja:ã‚ĸãƒŗドロニã‚ŗã‚š3世パãƒŦã‚Ēロゴ゚]]
102609 [[pl:Andronik III Paleolog]]</text>
102610 </revision>
102611 </page>
102612 <page>
102613 <title>Andronicus II</title>
102614 <id>1761</id>
102615 <revision>
102616 <id>42042664</id>
102617 <timestamp>2006-03-03T11:55:17Z</timestamp>
102618 <contributor>
102619 <username>KnightRider</username>
102620 <id>430793</id>
102621 </contributor>
102622 <minor />
102623 <comment>warnfile Adding: es</comment>
102624 <text xml:space="preserve">'''Andronicus II Palaeologus''' ([[1260]] &amp;ndash; [[February 13]], [[1332]]), [[Byzantine emperor]], was the elder son of [[Michael VIII Palaeologus]], whom he succeeded in [[1282]]. He ruled until 1328.
102625
102626 He allowed the fleet, which his father had organized, to fall into decay; and the empire was thus less able than ever to resist the exacting demands of the rival powers of [[Venice]] and [[Genoa]].
102627
102628 During his reign the [[Ottoman Turks]] under [[Osman I|Osman]] conquered nearly the whole of [[Bithynia]]; and to resist them the emperor called in the aid of the [[Catalonia|Catalan]] [[Roger de Flor]], who commanded a body of [[Aragon]]ese and [[Catalonia|Catalan]] adventurers known as [[Almogavars]]. The Turks were defeated, but Roger was found to be nearly as formidable an enemy to the imperial power. He was [[assassination|assassinated]] by Andronicus's son and colleague (sometimes referred to as emperor Michael IX, though he never ruled in his own name), in [[1305]]. His adventurers (known as the [[Catalan Grand Company]] or ''Companyia Catalana'' in [[Catalan language|Catalan]]) declared war upon Andronicus, and, after devastating [[Thrace]] and [[Macedonia (region)|Macedonia]], conquered the [[Duchy of Athens]] and [[Thebes, Greece|Thebes]].
102629
102630 From [[1320]] onwards the emperor was engaged in war with his grandson [[Andronicus III|Andronicus]]. He abdicated in [[1328]] and died in [[1332]].
102631
102632 In [[1274]] he married Anne of Hungary, a daughter of King [[Stephen V of Hungary|Stephen V]], with whom he had two sons:
102633 # [[Michael IX Palaeologus]]
102634 # Constantine
102635 After she died in [[1281]] Andronicus married a daughter of Wilhelm IX of Montferrat, Yolande, who took the name of Irene and bore him:
102636 # John (c. 1286 - 1308)
102637 # [[Theodore I of Montferrat|Theodore I, Marquis of Montferrat]] (1291-1338)
102638 # Demetrius (d. after 1343)
102639 # Simonis (1294 - after 1336) (married King of [[Serbia]] [[Stefan Milutin|Stephen II Urosh Milutin]])
102640 He also had at least two illegitimate daughters:
102641 # Irene, wife of John II despot of [[Thessaly]]
102642 # Maria, wife of [[Tokhta]] Khan of the [[Golden Horde]]
102643
102644 {{Byzantine Emperor | Prev=[[Michael VIII Palaeologus]] | CoEmperor=with [[Michael IX Palaeologus]]| Next=[[Andronicus III]]}}
102645 ==References==
102646 *{{1911}}
102647
102648 [[Category:Palaeologus dynasty]]
102649 [[Category:Byzantine emperors]]
102650 [[Category:1260 births]]
102651 [[Category:1332 deaths]]
102652
102653 [[de:Andronikos II.]]
102654 [[el:ΑÎŊδĪĪŒÎŊΚÎēÎŋĪ‚ Β']]
102655 [[es:AndrÃŗnico II PaleÃŗlogo]]
102656 [[fr:Andronic II PalÊologue]]
102657 [[hu:II. Andronikosz]]
102658 [[ja:ã‚ĸãƒŗドロニã‚ŗã‚š2世パãƒŦã‚Ēロゴ゚]]
102659 [[pl:Andronik II Paleolog]]
102660 [[zh:åŽ‰åžˇæ´›å°ŧåĄäēŒä¸–]]</text>
102661 </revision>
102662 </page>
102663 <page>
102664 <title>Andronicus I Comnenus</title>
102665 <id>1762</id>
102666 <revision>
102667 <id>42042654</id>
102668 <timestamp>2006-03-03T11:55:08Z</timestamp>
102669 <contributor>
102670 <username>KnightRider</username>
102671 <id>430793</id>
102672 </contributor>
102673 <minor />
102674 <comment>warnfile Adding: es</comment>
102675 <text xml:space="preserve">[[Image:ByzantineBillonTrachy.jpg|frame|Billon trachy (a cup-shaped coin) of Andronicus I Comnenus (1183-1185)]]
102676
102677 '''Andronicus I Comnenus''' (c.1118 - September 12th 1185), [[Byzantine Emperors|Byzantine emperor]], son of prince [[Isaac Comnenus (d. 1152)|Isaac Comnenus]], and grandson of [[Alexius I Comnenus|Alexius I Comnenus]], was born about the beginning of the [[12th century]]. His birth has been estimated to c. [[1118]]. He was endowed by nature with the most remarkable gifts both of mind and body. He was handsome and eloquent, but licentious; and at the same time active, hardy, courageous, a great general and an able politician.
102678
102679 Andronicus' early years were spent in alternate pleasure and military service. In [[1141]] he was taken captive by the [[Seljuk Turks]] and remained in their hands for a year. On being ransomed he went to [[Constantinople]], where was held the court of his cousin, the emperor [[Manuel I Comnenus|Manuel]], with whom he was a great favourite. Here the charms of his niece, the princess Eudoxia, attracted him. She became his mistress, while her sister Theodora stood in a similar relation to the emperor Manuel.
102680
102681 In [[1152]], accompanied by Eudoxia, he set out for an important command in [[Cilicia]]. Failing in his principal enterprise, an attack upon [[Mopsuestia]], he returned, but was again appointed to the command of a province. This second post he seems also to have left after a short interval, for he appeared again in [[Constantinople]], and narrowly escaped death at the hands of the brothers of Eudoxia.
102682
102683 About this time ([[1153]]) a conspiracy against the emperor, in which Andronicus participated, was discovered and he was thrown into prison. There he remained for about twelve years, during which time he made repeated but unsuccessful attempts to escape. At last, in [[1165]], he was successful; and, after passing through many dangers, reached the court of [[Yaroslav]], grand prince of [[Ruthenia]], at [[Kyiv]]. While under the protection of the grand prince, Andronicus brought about an alliance between him and the emperor Manuel, and so restored himself to the emperor's favour. With a Russian army he joined Manuel in the invasion of [[Hungary]] and assisted at the siege of [[Semlin]].
102684
102685 After a successful campaign Manuel and Andronicus returned together to Constantinople ([[1168]]); but a year after, Andronicus refused to take the oath of allegiance to the prince of Hungary, whom Manuel desired to become his successor. He was removed from court, but received the province of [[Cilicia]].
102686
102687 Being still under the displeasure of the emperor, Andronicus fled to the court of [[Raymond of Antioch|Raymond]], [[Principality of Antioch|prince of Antioch]]. While residing here he captivated and seduced the beautiful daughter of the prince, Philippa, sister of the empress [[Maria of Antioch|Maria]]. The anger of the emperor was again roused by this dishonour, and Andronicus was compelled to flee.
102688
102689 He took refuge with [[Amalric I of Jerusalem]], whose favour he gained, and who invested him with the [[Principality of Galilee|Lordship of Beirut]]. In Jerusalem he saw [[Theodora Comnena|Theodora]], the beautiful widow of the late King [[Baldwin III of Jerusalem|Baldwin III]] and niece of the emperor Manuel. Although Andronicus was at that time fifty-six years old, age had not diminished his charms, and Theodora became the next victim of his artful seduction. To avoid the vengeance of the Emperor, she fled with Andronicus to the court of the Sultan of [[Damascus]]; but not deeming themselves safe there, they continued their perilous journey through [[Iran|Persia]] and [[Turkestan]], round the [[Caspian Sea]] and across [[Mount Caucasus]], until at length they settled in the ancestral lands of the Comneni at [[Oinaion]], on the shores of the [[Black Sea]], between [[Trebizond]] and [[Sinope]].
102690
102691 While Andronicus was on one of his incursions, his castle was surprised by the governor of Trebizond, and Theodora with her two children were captured and sent to Constantinople. To obtain their release Andronicus made abject submission to the Emperor and, appearing in chains before him, implored pardon. This he obtained, and was allowed to retire with Theodora into banishment at Oinaion.
102692
102693 In [[1180]] the emperor Manuel died, and was succeeded by his son [[Alexius II Comnenus]], who was under the guardianship of the empress Maria. Her conduct excited popular indignation, and the consequent disorders, amounting almost to civil war, gave an opportunity to the ambition of Andronicus. He left his retirement in [[1182]], secured the support of the army and marched upon Constantinople, where his advent was stained by a cruel massacre of the Latin inhabitants, which was focused on the [[Venice|Venetian]] merchants who virtually controlled the economy of the city. Alexius was compelled to acknowledge him as colleague in the empire, but was soon put to death.
102694
102695 Andronicus, now ([[1183]]) sole emperor, married [[Agnes of France]], widow of Alexius II and a child twelve years of age. Agnes was a daughter of [[Louis VII of France]] and his third wife [[Adèle of Champagne]].
102696
102697 His short reign was characterized by strong and wise measures. He resolved to suppress many abuses, but, above all things, to check [[feudalism]] and limit the power of the nobles. The people, who felt the severity of his laws, at the same time acknowledged their justice, and found themselves protected from the rapacity of their superiors. The aristocrats, however, were infuriated against him, and summoned to their aid [[William II of Sicily]]. This prince landed in [[Despotate of Epirus|Epirus]] with a strong force, and marched as far as [[Thessalonica]], which he took and destroyed; but he was shortly afterwards defeated, and compelled to return to [[Sicily]].
102698
102699 Andronicus seems then to have resolved to exterminate the aristocracy, and his plans were nearly crowned with success. But in [[1185]], during his absence from the capital, his lieutenant ordered the arrest and execution of [[Isaac II Angelus|Isaac Angelus]], a descendant of the first Alexius. Isaac escaped and took refuge in the church of [[Hagia Sophia]]. He appealed to the populace, and a tumult arose which spread rapidly over the whole city. When Andronicus arrived he found that his power was overthrown, and that Isaac had been proclaimed emperor. Isaac delivered him over to his enemies, and for three days he was exposed to their fury and resentment. His punishments included flogging, being tied to the back of a sick camel and having boiling water thrown in his face. At last they hung him up by the feet between two pillars. His dying agonies were shortened by an [[Italy|Italian]] soldier, who mercifully plunged a sword into his body. He died on [[September 12]], 1185. Andronicus was the last of the [[Comnenus|Comneni]] to rule Constantinople, although his grandsons [[Alexius I of Trebizond]] and his brother [[David (co-emperorof Trebizond)|David]] founded the [[Empire of Trebizond]] in [[1204]].
102700
102701 == External links ==
102702 {{Commons|Andronicus I Comnenus}}
102703
102704
102705 {{Byzantine Emperor | Prev=[[Alexius II Comnenus]] | CoEmperor= | Next=[[Isaac II Angelus]]}}
102706
102707 [[Category:1118 births]]
102708 [[Category:1185 deaths]]
102709 [[Category:Comnenid dynasty]]
102710 [[Category:Byzantine emperors]]
102711 [[Category:Crusades]]
102712
102713 [[de:Andronikos I. (Byzanz)]]
102714 [[el:ΑÎŊδĪĪŒÎŊΚÎēÎŋĪ‚ Α']]
102715 [[es:AndrÃŗnico I Comneno]]
102716 [[eo:Androniko la 1-a]]
102717 [[fr:Andronic Ier Comnène]]
102718 [[hu:I. Andronikosz]]
102719 [[ja:ã‚ĸãƒŗドロニã‚ŗã‚š1世ã‚ŗムネノ゚]]
102720 [[pl:Andronik I Komnen]]</text>
102721 </revision>
102722 </page>
102723 <page>
102724 <title>Andronicus of Cyrrhus</title>
102725 <id>1763</id>
102726 <revision>
102727 <id>28106208</id>
102728 <timestamp>2005-11-12T10:49:03Z</timestamp>
102729 <contributor>
102730 <username>Bluebot</username>
102731 <id>527862</id>
102732 </contributor>
102733 <minor />
102734 <comment>Standardising 1911 references.</comment>
102735 <text xml:space="preserve">'''Andronicus of Cyrrhus''' was a [[Greece|Greek]] [[astronomer]] who flourished about 100 BC.
102736
102737 He built a [[horologium]] at [[Athens]], the so-called [[Tower of the Winds]], a considerable portion of which still exists. It is octagonal, with figures carved on each side, representing the eight principal winds. In antiquity a bronze figure of [[Triton (god)|Triton]] on the summit, with a rod in his hand, turned round by the wind, pointed to the quarter from which it blew. From this model is derived the custom of placing weathercocks on steeples.
102738
102739 ==References==
102740 *{{1911}}
102741
102742 [[Category:Greek and Roman astronomers]]
102743
102744 [[sl:Andronik]]</text>
102745 </revision>
102746 </page>
102747 <page>
102748 <title>Andronicus of Rhodes</title>
102749 <id>1764</id>
102750 <revision>
102751 <id>28106223</id>
102752 <timestamp>2005-11-12T10:49:23Z</timestamp>
102753 <contributor>
102754 <username>Bluebot</username>
102755 <id>527862</id>
102756 </contributor>
102757 <minor />
102758 <comment>Standardising 1911 references.</comment>
102759 <text xml:space="preserve">'''Andronicus of Rhodes''' (c. 70 B.C.), was the eleventh scholarch
102760 of the [[Peripatetics]]. His chief work was the arrangement of
102761 the writings of [[Aristotle]] and [[Theophrastus]] with materials
102762 supplied to him by [[Tyrannion]]. Before his time, Aristotle's dialogues were widely known, but his treatises had been lost in obscurity. Besides arranging the works,
102763 he seems to have written paraphrases and commentaries, none
102764 of which is extant. Two treatises are sometimes erroneously
102765 attributed to him, one on the Emotions, the other a commentary
102766 on Aristotle's Ethics (really by Constantine Palaeocappa
102767 in the 16th century, or by John Callistus of Thessalonica).
102768
102769 ==References==
102770 *{{1911}}
102771
102772 [[hu:rhodoszi Andronikosz]]
102773 [[fi:Andronikos Rhodoslainen]]</text>
102774 </revision>
102775 </page>
102776 <page>
102777 <title>Andronicus</title>
102778 <id>1765</id>
102779 <revision>
102780 <id>21539173</id>
102781 <timestamp>2005-08-22T01:33:41Z</timestamp>
102782 <contributor>
102783 <username>Pumpie</username>
102784 <id>22949</id>
102785 </contributor>
102786 <minor />
102787 <comment>de &amp; el</comment>
102788 <text xml:space="preserve">The name '''Andronicus''' refers to several people:
102789
102790 * [[Livius Andronicus]] ([[284 BC|284?]]&amp;ndash;[[204 BC]]) &amp;mdash; introduced [[drama]] to the Romans and produced the first formal play in Latin in c. [[240 BC]]
102791 *[[Andronicus of Cyrrhus]] &amp;mdash; [[Greece|Greek]] [[astronomer]] (c. [[100 BC]])
102792 *[[Andronicus of Rhodes]] (c. [[70 BC]])
102793 *[[Andronicus]], an early Christian mentioned in Romans 16
102794 *Four [[Byzantine Emperors]]:
102795 **[[Andronicus I Comnenus]] ([[1118]]&amp;ndash;[[1185]])
102796 **[[Andronicus II]] Palaeologus ([[1258]]&amp;ndash;[[1332]])
102797 **[[Andronicus III]] Palaeologus ([[1297]]&amp;ndash;[[1341]])
102798 **[[Andronicus IV]] Palaeologus ([[1348]]&amp;ndash;[[1385]])
102799 *Three [[Empire of Trebizond|Emperors of Trebizond]]:
102800 **[[Andronicus I of Trebizond|Andronicus I Gidus Comnenus]] ([[1222]]&amp;ndash;[[1235]])
102801 **[[Andronicus II of Trebizond|Andronicus II Comnenus]] ([[1263]]&amp;ndash;[[1266]])
102802 **[[Andronicus III of Trebizond|Andronicus III Comnenus]] ([[1330]]&amp;ndash;[[1332]])
102803 *[[Titus Andronicus]] &amp;mdash; main character in the play of the same name by [[William Shakespeare]], possibly named after one of the above-listed emperors
102804
102805 {{disambig}}
102806
102807 [[de:Andronikos]]
102808 [[el:ΑÎŊδĪĪŒÎŊΚÎēÎŋĪ‚]]
102809 [[hu:Andronikosz]]
102810 [[pl:Andronik]]</text>
102811 </revision>
102812 </page>
102813 <page>
102814 <title>Asteroid Belt</title>
102815 <id>1766</id>
102816 <revision>
102817 <id>15900231</id>
102818 <timestamp>2002-09-03T22:11:27Z</timestamp>
102819 <contributor>
102820 <username>Bryan Derksen</username>
102821 <id>66</id>
102822 </contributor>
102823 <minor />
102824 <comment>changing redirect</comment>
102825 <text xml:space="preserve">#REDIRECT [[Asteroid belt]]</text>
102826 </revision>
102827 </page>
102828 <page>
102829 <title>Ammianus Marcellinus</title>
102830 <id>1767</id>
102831 <revision>
102832 <id>36166738</id>
102833 <timestamp>2006-01-22T02:55:21Z</timestamp>
102834 <contributor>
102835 <username>GBWallenstein</username>
102836 <id>607387</id>
102837 </contributor>
102838 <comment>/* External link */ link to the Latin Library</comment>
102839 <text xml:space="preserve">'''Ammianus Marcellinus''' was a [[Roman Empire|Roman]] historian who wrote during [[Late Antiquity]].
102840
102841 He was born about [[325]]&amp;#8209;[[330]], probably at [[Antioch]] (the probability hinges on whether he was the recipient of a surviving letter to a Marcellinus from a fellow citizen of Antioch). The date of his death is unknown, but he must have lived till [[391]], as he mentions [[Aurelius Victor]] as the city [[prefect]] for that year. The surviving books of his valuable history cover the years [[353]]&amp;#8209;[[378]]; the work is sometimes referred to by a Latin title as ''Res Gestae'', a usage best avoided, however, since it leads to confusion with the ''[[Res Gestae Divi Augusti]]''.
102842
102843 He was &quot;a [[soldier]] and a [[Greek people|Greek]]&quot; he tells us, and his enrollment among the elite ''protectores domestici'' (household guards) shows that he was of noble birth. He entered the army at an early age, when [[Constantius II]] was emperor of the East, and was sent to serve under [[Ursicinus]], governor of [[Nisibis]] in [[Roman Mesopotamia]], and ''magister militiae.''
102844
102845 He returned to Italy with Ursicinus, when he was recalled by Constantius, and accompanied him on the expedition against [[Silvanus the Frank]], who had been forced by the unjust accusations of his enemies into proclaiming himself emperor in [[Gaul]]. With Ursicinus he went twice to the East, and barely escaped with his life from Amida or Amid (modern [[Diyarbakir]]), when it was taken by the Persian king [[Shapur II of Persia|Shapur II]]. When Ursicinus lost his office and the favour of Constantius, Ammianus seems to have shared his downfall; but under [[Julian the Apostate]], Constantius's successor, he regained his position. He accompanied this emperor, for whom he expresses enthusiastic admiration, in his campaigns against the [[Alamanni]] and the [[Sassanid dynasty|Persians]]; after his death he took part in the retreat of [[Jovian]] as far as Antioch, where he was residing when the conspiracy of [[Theodorus]] ([[371]]) was discovered and cruelly put down.
102846
102847 Eventually he settled in Rome, where, at an advanced age, he wrote (in Latin) a history of the Roman empire from the accession of [[Nerva]] ([[96]]) to the death of [[Valens]] at the [[Battle of Adrianople (378)|Battle of Adrianople]] ([[378]]), thus forming a continuation of the work of [[Gaius Cornelius Tacitus|Tacitus]]. This history (''Res Gestae Libri XXXI'') was originally in thirty-one books, but the first thirteen are lost. The surviving eighteen books cover the period from [[353]] to 378. As a whole it has been considered extremely valuable, being a clear, comprehensive and impartial account of events by a contemporary of soldierly honesty, independent judgement and wide reading. Recent studies have, however, shown the [[rhetoric]]al power in his histories. Like all ancient historians, he did not even attempt to produce a history in the modern style: he had a strong political and pagan religious agenda to pursue, and he contrasted Constantius II with Julian to the former's constant disadvantage.
102848
102849 [[Edward Gibbon]] judged Ammianus as &quot;an accurate and faithful guide, who composed the history of his own times without indulging the prejudices and passions which usually affect the mind of a contemporary.&quot; Ammianus was a [[paganism|pagan]], and when he marginalises [[Christianity]] repeatedly in his account, we are reminded that making Christianity the state religion did not make all Romans Christians. His style is generally harsh, often pompous and extremely obscure, occasionally even journalistic in tone, but the author's foreign origin and his military life and training partially explain this.
102850
102851 Further, the work being intended for public recitation, some rhetorical embellishment was necessary, even at the cost of simplicity. It is a striking fact that Ammianus, though a professional soldier, gives excellent pictures of social and economic problems, and in his attitude to the non-Roman peoples of the empire he is far more broad-minded than writers like [[Livy]] and Tacitus; his digressions on the various countries he had visited are particularly interesting.
102852
102853 In his description of the Empire &amp;mdash;the exhaustion produced by excessive taxation, the financial ruin of the middle classes, the progressive decline in the morale of the army&amp;mdash; we find the explanation of its fall before the [[Goths]] twenty years after his death.
102854
102855 ==Reference==
102856 Latin text and facing English translation commonly available in the [[Loeb Classical Library]], 1935&amp;#8209;1940 with many reprintings.
102857
102858 ==External links==
102859 *[http://odur.let.rug.nl/~drijvers/ammianus/index.htm Ammianus Marcellinus on-line project]
102860 *[http://www.thelatinlibrary.com/ammianus.html Ammianus Marcellinus' works] in Latin at the Latin Library
102861
102862 ==References==
102863 *{{1911}}
102864
102865 [[Category:Roman era historians]]
102866 [[Category:Late Antique writers]]
102867 [[Category:Ancient Roman soldiers]]
102868
102869 [[bg:АĐŧиаĐŊ МаŅ€Ņ†ĐĩĐģиĐŊ]]
102870 [[de:Ammianus Marcellinus]]
102871 [[es:Amiano Marcelino]]
102872 [[fr:Ammien Marcellin]]
102873 [[gl:Ammiano Marcelino]]
102874 [[it:Ammiano Marcellino]]
102875 [[hu:Ammianus Marcellinus]]
102876 [[nl:Ammianus Marcellinus]]
102877 [[pl:Ammianus Marcellinus]]
102878 [[pt:Ammiano Marcellino]]
102879 [[ru:АĐŧĐŧиаĐŊ МаŅ€Ņ†ĐĩĐģĐģиĐŊ]]
102880 [[fi:Ammianus Marcellinus]]</text>
102881 </revision>
102882 </page>
102883 <page>
102884 <title>ALICE</title>
102885 <id>1768</id>
102886 <revision>
102887 <id>41144813</id>
102888 <timestamp>2006-02-25T09:01:45Z</timestamp>
102889 <contributor>
102890 <ip>84.58.14.205</ip>
102891 </contributor>
102892 <text xml:space="preserve">'''ALICE''' may stand for:
102893 *[[A Large Ion Collider Experiment]], a high energy heavy ion- and particle physics experiment at the European Center for Nuclear Research CERN's Large Hadron Collider LHC
102894 *[[All-purpose Lightweight Individual Carrying Equipment]], a package of load-bearing equipment utilized by the United States Armed Forces
102895 *[[Artificial Linguistic Internet Computer Entity]], a natural language processing chatterbot
102896 ==See also==
102897 *[[Alice]]
102898 {{disambig}}
102899 [[Category:5-letter acronyms]]
102900 [[pl:ALICE]]</text>
102901 </revision>
102902 </page>
102903 <page>
102904 <title>An Enquiry Concerning Human Understanding/Text</title>
102905 <id>1769</id>
102906 <revision>
102907 <id>15900234</id>
102908 <timestamp>2002-06-21T23:53:36Z</timestamp>
102909 <contributor>
102910 <username>Bryan Derksen</username>
102911 <id>66</id>
102912 </contributor>
102913 <minor />
102914 <comment>no need to have this in a separate subspace any more</comment>
102915 <text xml:space="preserve">#REDIRECT [[An Enquiry Concerning Human Understanding]]</text>
102916 </revision>
102917 </page>
102918 <page>
102919 <title>Apollo 13</title>
102920 <id>1770</id>
102921 <revision>
102922 <id>42105272</id>
102923 <timestamp>2006-03-03T21:34:43Z</timestamp>
102924 <contributor>
102925 <username>Rich Farmbrough</username>
102926 <id>82835</id>
102927 </contributor>
102928 <minor />
102929 <comment>No overlap visible here. If it persists on other borwsers insert {{subst:clear}}</comment>
102930 <text xml:space="preserve">:''This article is about the Moon mission. There is also a ''[[Apollo 13 (film)|''film by the name of ''Apollo 13]]''.''
102931 {| class=&quot;toccolours&quot; border=&quot;1&quot; cellpadding=&quot;4&quot; style=&quot;float: right; margin: 0 0 1em 1em; width: 20em; border-collapse: collapse; font-size: 95%; clear: right;&quot;
102932 |+&lt;font size=&quot;+1&quot;&gt;'''Apollo 13'''&lt;/font&gt;
102933 |-
102934 !colspan=&quot;2&quot; cellspacing=&quot;9&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission insignia
102935 |-
102936 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:Ap13.jpg|200px|Apollo 13 insignia]]
102937 |-
102938 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission statistics
102939 |-
102940 |'''Mission name:'''||Apollo 13
102941 |-
102942 |'''Call sign:'''||Command module: ''Odyssey''&lt;br /&gt;Lunar module: ''Aquarius''
102943 |-
102944 |'''Number of&lt;br /&gt;crew:'''||3
102945 |-
102946 |'''Launch:'''||[[April 11]], [[1970]]&lt;br /&gt;19:13:00 [[Coordinated Universal Time|UTC]]&lt;br /&gt;[[Kennedy Space Center]]&lt;br /&gt;LC 39A
102947 |-
102948 |'''Lunar flyby:&lt;br /&gt;(Pericynthion)'''||[[April 15]], [[1970]]&lt;br /&gt;00:21:00 UTC&lt;br /&gt;254.3 km from Moon&lt;br /&gt;400,171 km from Earth
102949 |-
102950 |'''Splashdown:'''||[[April 17]], [[1970]]&lt;br /&gt;18:07:41 UTC&lt;br /&gt;21° 38' 24&quot; S - 165° 21' 42&quot; W
102951
102952 |-
102953 |'''Duration:'''||5 d 22 h 54 min 41 s
102954 |-
102955 |'''Mass:'''||CSM 28,945 kg;&lt;br /&gt;LM 15,235 kg
102956 |-
102957 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Crew picture
102958 |-
102959 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:GPN-2000-001167.jpg|300px|Apollo 13 crew portrait (L-R: Lovell, Swigert, and Haise)]]&lt;br/&gt;Apollo 13 crew portrait &lt;br/&gt;(L-R: Lovell, Swigert, and Haise)
102960 |-
102961 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Apollo 13 Crew
102962 |}
102963 '''Apollo 13''' was an [[United States|American]] space mission, part of the [[Project Apollo|Apollo program]]. It was intended to be the third mission to land on the [[Moon]], but instead is famous for the critical malfunction it suffered and its difficult but successful return home.
102964
102965 ==Crew==
102966 *[[James A. Lovell]] (flew on ''[[Gemini 7]]'', ''[[Gemini 12]]'', ''[[Apollo 8]]'' &amp; ''Apollo 13''), commander
102967 *[[Jack Swigert]] (flew on ''Apollo 13''), command module pilot
102968 *[[Fred Haise]] (flew on ''Apollo 13''), lunar module pilot
102969 *[[Ken Mattingly]] was originally slated to be command module pilot, but he was removed from the flight three days before launch after being exposed to [[German Measles]]. He later flew as command module pilot on [[Apollo 16]].
102970
102971 ===Backup crew===
102972 *[[John W. Young|John Young]], commander
102973 *[[Jack Swigert]], command module pilot
102974 *[[Charles Duke]], lunar module pilot
102975
102976 ===Support crew===
102977 *[[Vance Brand]] (flew on [[Apollo-Soyuz]], [[STS-5]], [[STS-41-B]], and [[STS-51]])
102978 *[[Jack Lousma]] (flew on [[Skylab 3]] and [[STS-3]])
102979 *[[William Pogue|Bill Pogue]] (flew on [[Skylab 4]])
102980 *[[Joseph P. Kerwin|Joe Kerwin]] (flew on [[Skylab 2]])
102981
102982 ==Mission parameters==
102983 *'''[[Mass]]:''' CM 28,945 kg; LM 15,235 kg
102984 *'''[[Perigee]]:''' 181.5 km
102985 *'''[[Apogee]]:''' 185.6 km
102986 *'''[[Inclination]]:''' 33.5°
102987 *'''[[Orbital period|Period]]:''' 88.07 min
102988
102989 ===Oxygen tank explosion===
102990 *[[April 14]], [[1970]], 03:08:53.555 UTC
102991 ** 321,860 km from earth.
102992
102993 ===Closest approach to Moon===
102994 *[[April 15]], [[1970]], 00:21:00 UTC
102995 ** 254.3 km above far side of Moon;
102996 ** 400,171 km from Earth (possibly a record distance, see below).
102997
102998 ===See also===
102999 * [[Splashdown (spacecraft landing)|Splashdown]]
103000 * [[List of artificial objects on the Moon]]
103001
103002 ==Quote==
103003 Famous '''mis'''quote: &quot;''Houston, we have a problem''&quot;&lt;br /&gt;
103004 Actual quote: &quot;''Okay, Houston, we've had a problem here''&quot; [http://www.hq.nasa.gov/office/pao/History/Timeline/apollo13chron.html], uttered by Swigert to ground. Lovell then uttered this similar phrase: &quot;''Houston, we've had a problem.''&quot;
103005
103006 ==Mission highlights==
103007 The Apollo 13 mission began with a lesser known malfunction which could have been equally catastrophic. During second stage burn the center engine shut down prematurely. Engineers later discovered that this was due to dangerous [[pogo oscillation]]s which might have torn the second stage apart; the engine was experiencing 68g vibrations at 16 hertz, flexing the thrust frame by 3 inches. Luckily the oscillations caused a low pressure reading to register, and the computer shut the engine down automatically. This was later traced to amplification of the pogo that had occurred on previous flights by an unexpected interaction with the cavitation in the turbopumps. Later missions had anti-pogo devices as had already been planned since before Apollo 13 which solved the problem.
103008
103009 When Apollo 13 was 321,860 kilometers (199,990 mi) from Earth, an oxygen tank in the service module exploded. The only solution was for the crew to cancel their planned landing, swing around the Moon and return on a trajectory back to Earth. However, because their command/service module &quot;Odyssey&quot; was severely damaged, the three astronauts had to use the lunar module &quot;Aquarius&quot; as a crowded lifeboat for the return home. The four-day return trip was cold, uncomfortable, and tense. But Apollo 13 proved the program's ability to weather a major crisis and bring the crew back home safely.
103010
103011 ===Problem===
103012 As the [[spacecraft]] was on its way to the Moon, the number two oxygen tank in the [[Service Module]] (SM) exploded when [[Lyndon B. Johnson Space Center|Mission Control]] requested that the crew perform a &quot;cryo stir&quot;, in which the oxygen &quot;slush&quot; is stirred to prevent it from stratifying. Teflon insulation covering damaged electrical wires powering the stirrer motor caught fire when power was applied. The fire caused a pressure increase above the tank's nominal 1,000 lbf/in&amp;sup2; (7 MPa), and the tank exploded. This explosion damaged other parts of the service module, including the number 1 oxygen tank. At the time of the explosion, however, the true cause was not known; one conjecture was a [[meteoroid]] impact. The loss of both oxygen tanks in the service module and thus the oxygen required to create electrical power for the [[Apollo Command/Service Module|Command/Service Modules]] (CSM) meant that the CSM had to be completely shut down. The [[Command Module]] (CM) contained batteries for use during re-entry, after the Service Module was jettisoned, but these would only last about ten hours, and needed to be saved for re-entry. The crew survived by using the [[Lunar Module]] (LM, still attached to the CM) as a &quot;lifeboat&quot;.
103013
103014 [[Image:Apollo 13 SM.jpg|thumb|250px|Apollo 13 damaged Service Module (NASA)]]
103015 The damage to the CSM meant that the Moon-landing mission (originally intended to land at the [[Fra Mauro formation|Fra Mauro]] Highlands) had to be aborted; a single pass around the Moon was made and the spacecraft returned to [[Earth]]. Considerable ingenuity under extreme pressure was required from both the crew and the [[flight controller]]s to figure out how to [[jury rig]] the craft for the crew's safe return, with much of the world watching the drama on television. One of the major stumbling blocks in this was that the LM &quot;lifeboat&quot; was equipped to sustain two people for two days, and it would now have to sustain three people for four days. One of the most critical problems was that the [[lithium hydroxide]] [[carbon dioxide]] filters in the LM would not last for all four days, and the CM's spare filters were the wrong shape for the LM's filter receptacle; an adapter had to be fabricated from materials in the spacecraft.
103016
103017 To accomplish a safe return to Earth, a significant course correction to place the spacecraft on a [[free return trajectory]] was required. This would normally be a simple procedure using the [[service module]] [[Spacecraft propulsion|propulsion]] engine. However, the [[flight controller]]s did not know the extent of the damage the service module had suffered and did not want to risk firing the main engine. Instead, the course correction would have to be performed by firing the lunar module's descent engine. After extensive discussion, engineers on the ground found it was possible. The initial maneuver to change to a free return trajectory was made within hours of the accident. The descent engine was fired again after passage around the Moon in order to accelerate the spacecraft's return to Earth, and later for a minor course correction.
103018
103019 As re-entry to Earth's atmosphere approached, NASA took the unusual step of jettisoning the Service Module first, while the Lunar Module was still attached to the Command Module. The LM thrusters were used to maneuver the CM/LM stack to point its windows at the departing SM, and photos were taken. When the crew saw the damaged service module, they reported that the access panel covering the O&lt;sub&gt;2&lt;/sub&gt; tanks and fuel cells had been blown off.
103020
103021 There was some fear that the extensive condensation in the CM, due to reduced temperatures during the return leg, might have seriously damaged the electronics of the Command Module, which would become apparent upon activation. But the equipment worked perfectly when activated, at least partly due to the extensive design modifications made to the CM after the [[Apollo 1]] fire.
103022
103023 [[Image:Apollo13 splashdown.jpg|left|thumb|160px|A successful splashdown (NASA)]]
103024
103025 The crew returned unharmed to Earth, although Haise had a [[urinary tract infection]] resulting from the scarcity of potable water on the damaged ship and the difficulty of disposing of urine, and had to be treated in an infirmary.
103026
103027 While the crew was unfortunate to have this kind of major malfunction, they were still extremely lucky that it occurred on the first leg of the mission when they had a maximum of supplies, equipment, and power to use in the emergency. If the explosion had occurred while in orbit around the moon, or on the return leg after the LM had been jettisoned, the crew probably would not have survived.
103028
103029 After the completion of the mission, there was a full investigation of the incident and the craft was modified to prevent future occurrences of the fault.
103030
103031 [[Jim Lovell]] and [[Jeffrey Kluger|Jeffrey Kluger's]] book about the mission, ''[[Lost Moon]]'', was later turned into a successful movie, ''[[Apollo 13 (film)|Apollo 13]]'', starring [[Tom Hanks]], [[Bill Paxton]] and [[Kevin Bacon]] as the Apollo crewmen.
103032
103033 ===Cause of the accident===
103034 The explosion on Apollo 13 led to a lengthy investigation of the underlying cause. Thanks to detailed manufacturing records and logs of mission problems, the failure of the faulty oxygen tank was
103035 tracked to multiple faults that were not problems individually, but nearly led to disaster on this mission.
103036
103037 Liquid gases are very difficult to handle, and most storage containers holding them are unsealed so that pressure from expanding gas will not cause the container to fail (much like freezing water in even the strongest sealed container will shatter it). Apollo's liquid oxygen tank was a marvel of [[engineering]], able to hold several hundred pounds of highly pressurized liquid gas to supply the craft with oxygen, fuel for [[electricity]] (along with hydrogen) and [[water]] from the by-product of the [[fuel cells]]. Left alone, the tank was capable of safely holding liquid oxygen under high pressure for years before it evaporated because of its design and insulation. Unfortunately, the very characteristic that made the tank useful made internal inspection impossible.
103038
103039 The tank was made of several basic components that were relevant to the accident:
103040 * A [[thermostat]] to control the heater within the tank that sped the evaporation of the liquid into gaseous oxygen;
103041 * A [[thermometer]] to determine the temperature of the heater;
103042 * Valves and piping that were designed to allow the tank to be completely emptied of liquid by forcing gas into the tank;
103043 * An interior coating of [[teflon]] that protected the wiring from the extremely cold gas; and
103044 * An internal fan to stir the liquid oxygen (liquid oxygen will turn into a &quot;slush&quot; at these pressures if it is allowed to sit for a long period of time).
103045
103046 These were the basic design, manufacturing and operational problems that led to the accident.
103047 * The thermostat was originally designed to handle the 28 [[volt]] supply that would be used in the command module. However, the specification for the tank was changed so that it had to handle 65 [[volt]]s on the launch pad. Most of the wiring was changed to handle the higher voltage, but the thermostat was not.
103048 * The thermometer was designed to read out at the highest operational temperature of the heater, about 100 degrees Fahrenheit. Higher temperatures registered at 100 °F, but the thermostat was supposed to cut out at 80 °F (27 °C), making higher temperatures impossible.
103049 * During assembly, the structure carrying the tank that failed was dropped about 2 inches (5 cm). The exterior was undamaged, but the pipes that directed flow within the tank became misaligned.
103050 * For ground testing the tank was filled. However, when it came time to empty it, the problem with the piping was discovered. As such, the tank could not be properly emptied except by running the heater to evaporate the liquid gas. Not using this tank would have delayed the mission and there was no alternative tank available. Lovell was aware of the decision to use the heater to evaporate the oxygen, which was calculated to take a few days at the highest operational temperature of 80 °F (27 °C).
103051 * However, when the heater was turned on continuously, the higher voltage fused the thermostat, which allowed the heater to keep heating up. Because the thermometer did not register temperatures higher than 100 degrees Fahrenheit (38 degrees Celsius), the monitoring equipment did not pick this up. The current recorder in the power supply showed that the heater was not cycling on and off, but no-one noticed it at the time. Instead of taking several days, the gas evaporated in hours, and the interior of the tank kept heating up, reaching an estimated 800 degrees Fahrenheit (430 °C). This burned off the teflon coating, leaving the wires inside the tank exposed.
103052 * The rest was inevitable. When the tank was refilled with oxygen, it became a bomb waiting to go off. The order to run the &quot;cryo stir&quot; to run the fans set off sparks inside the tank which led to the explosion.
103053 * Disaster might have been averted, had not the oxygen tanks been adjacent. Although the second tank survived the explosion, its valves were damaged which allowed the oxygen within to leak out. In future Apollo missions, the two oxygen tanks were separately located.
103054
103055 ==Mission notes==
103056 *There was no time to properly replace the original [[lunar plaques|lunar plaque]] on ''Aquarius'' (which bore Mattingly's name), so Jim Lovell was given a replacement (with Swigert's name) to place over the original plaque once they landed on the moon. However, because the lunar landing was never made, Lovell kept the plaque, which is one of the few mementos from the mission that he has on display at his home.
103057
103058 *As a result of following the free return trajectory, the altitude of Apollo 13 over the [[Far side (Moon)|lunar far side]] was approximately 100 km greater than the corresponding orbital altitude on the remaining Apollo lunar missions. This could mean an all-time [[altitude]] record for human spaceflight&amp;mdash;not even superseded [[as of 2006]]&amp;mdash;but this may well not be the case: the variation in distance between Earth and the Moon owing to the [[eccentricity (orbit)|eccentricity]] of the Moon's orbit about Earth is much larger than this 100 km. The [[Guinness Book of Records]] listed this flight as having the absolute altitude record for a manned spacecraft, and Lovell should have received a certificate from them attesting to this record (Lovell stated in the book ''Lost Moon'' that apart from the plaque and a couple of other pieces of salvage, the only other item he has regarding this mission was a letter from [[Charles Lindbergh]]).
103059
103060 *The splashdown point was {{coor dm|21|38|S|165|22|W|}}, SE of American Samoa and 6.5 km (4 mi) from the recovery ship, [[USS Iwo Jima (LPH-2)|USS ''Iwo Jima'']].
103061
103062 *Superstitious people have associated the [[Triskaidekaphobia|belief that 13 is an unlucky number]] to the mission, especially due to the fact that the mission began at 13:13 [[Central Standard Time Zone|CST]], the problems began on [[April 13]], and the mission is called Apollo 13.
103063
103064 ==Insignia==
103065 The Apollo 13 logo featured three flying horses, and the motto ''Ex luna, scientia'' (from the Moon, knowledge), and the number of the mission in Roman numerals. It is one of two Apollo insignias (the other being ''[[Apollo 11]]'''s) not to include the names of the crew (which was fortunate, considering one of the original crew was replaced not long before the mission began).
103066
103067 ==Relics==
103068 The command module is currently displayed at the [[Kansas Cosmosphere and Space Center]], [[Hutchinson, Kansas]]. It was formerly at the [[MusÊe de l'Air et de l'Espace]], [[Paris]]. The lunar module burned up in Earth's atmosphere [[17 April]], [[1970]], having been targeted to enter over the Pacific Ocean to reduce the possibility of contamination from a [[radioisotope thermoelectric generator]] (RTG) on board (had the mission proceeded as planned, the RTG would have been used to power the [[Apollo Lunar Surface Experiment Package]], and then remained on the Moon). The RTG survived reentry (as designed) and landed in the [[Tonga Trench]]. While it will remain radioactive for approximately 2000 years, it does not appear to be releasing radioactive material.
103069
103070 ==Dramatization==
103071 * ''[[Apollo 13 (film)|Apollo 13]]'' - the 1995 [[film]] directed by [[Ron Howard (American director)|Ron Howard]] and starring, as the astronauts, [[Tom Hanks]], [[Bill Paxton]], and [[Kevin Bacon]], with [[Ed Harris]] as [[flight director]] [[Gene Kranz]], [[Kathleen Quinlan]], and [[Gary Sinise]] in supporting roles. The film was based on ''Lost Moon'', Jim Lovell's book about the incident.
103072 * In the [[1993]] film ''[[Falling Down]]'', [[Michael Douglas]]' character compares himself to the crew of Apollo 13, claiming that he had passed the &quot;point of no return&quot; as they had, thus causing them to circle the moon.
103073
103074 ==Games==
103075 * ''[[Apollo 13 Solarquest]]'' was a [[1995]] board game released by Universal Games. It was based on the popular [[1986]] &quot;space-age&quot; [[Monopoly (game)|Monopoly]] variant, [[Solarquest]].
103076 *[[Sega]] produced an Apollo 13 [[pinball]] machine, featuring a 13-ball [[Glossary of pinball terms#M|multiball]].
103077 *[http://www.apollo13game.com/ Apollo 13 - an ITSM case experience] is a simulation game used in [[ITIL]] training. It's made by Dutch company [http://www.gamingworks.nl GamingWorks BV].
103078
103079 ==External links==
103080 * [http://www.astronautix.com/flights/apollo13.htm Apollo 13 entry in Encyclopedia Astronautica]
103081
103082 ===References===
103083 *[http://nssdc.gsfc.nasa.gov/nmc/sc-query.html NASA NSSDC Master Catalog]
103084 *[http://history.nasa.gov/SP-4029/Apollo_00a_Cover.htm APOLLO BY THE NUMBERS: A Statistical Reference by Richard W. Orloff (NASA)]
103085 *[http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm The Apollo Spacecraft: A Chronology]
103086 *[http://history.nasa.gov/apsr/apsr.htm Apollo Program Summary Report]
103087 *[http://history.nasa.gov/SP-4012/vol3/table2.41.htm Apollo 13 Characteristics - SP-4012 NASA HISTORICAL DATA BOOK]
103088 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19770075651_1977075651.pdf Original Apollo 13 Lunar Exploration and Photography Summary Plan (PDF), February 1970]
103089 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19930074343_1993074343.pdf Apollo 13 Spacecraft Incident Investigation, (PDF) NASA June 1970]
103090 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19700076776_1970076776.pdf Report of Apollo 13 Review Board, (PDF) NASA June 1970]
103091 *[http://www.jsc.nasa.gov/history/mission_trans/AS13_TEC.PDF Apollo 13 Technical Air-to-Ground Voice Transcription, April 1970, 765 pages (PDF, 20.4 MB)]
103092 *[http://www.spectrum.ieee.org/apr05/2697 Apollo 13, We Have a Solution: Rather than hurried improvisation, saving the crew of Apollo 13 took years of preparation]
103093 *Lovell, Jim; Kluger, Jeffrey (1994). ''Lost Moon: The Perilous Voyage of Apollo 13''. Houghton Mifflin. ISBN 0395670292.
103094 * [http://www.archive.org/details/HoustonWeveGotAProblem ''NASA film on the Apollo 13 mission downloadable from ''archive.org'' ''The Internet Archive'']
103095 {{commons|Apollo 13}}
103096
103097 {{Project Apollo| before=[[Apollo 12]]| after=[[Apollo 14]]}}
103098
103099 [[Category:1970]]
103100 [[Category:Apollo program]]
103101 [[Category:Human spaceflights]]
103102 [[Category:Lunar spacecraft]]
103103
103104 [[af:Apollo 13]]
103105 [[cs:Apollo 13]]
103106 [[da:Apollo 13]]
103107 [[de:Apollo 13]]
103108 [[et:Apollo 13]]
103109 [[fi:Apollo 13]]
103110 [[fr:Apollo 13]]
103111 [[he:אפולו 13]]
103112 [[hu:Apollo-13]]
103113 [[it:Apollo 13]]
103114 [[ja:ã‚ĸポロ13åˇ]]
103115 [[ko:ė•„í´ëĄœ 13호]]
103116 [[nl:Apollo 13]]
103117 [[no:Apollo 13]]
103118 [[pl:Apollo 13]]
103119 [[pt:Apollo 13]]
103120 [[ru:АĐŋĐžĐģĐģĐžĐŊ-13]]
103121 [[sk:Apollo 13]]
103122 [[sv:Apollo 13]]
103123 [[zh:é˜ŋæŗĸįŊ—13åˇ]]</text>
103124 </revision>
103125 </page>
103126 <page>
103127 <title>Apollo Program</title>
103128 <id>1771</id>
103129 <revision>
103130 <id>15900236</id>
103131 <timestamp>2004-10-22T01:07:23Z</timestamp>
103132 <contributor>
103133 <username>N328KF</username>
103134 <id>77722</id>
103135 </contributor>
103136 <minor />
103137 <text xml:space="preserve">#REDIRECT [[Project Apollo]]</text>
103138 </revision>
103139 </page>
103140 <page>
103141 <title>Arthritus</title>
103142 <id>1772</id>
103143 <revision>
103144 <id>15900237</id>
103145 <timestamp>2002-02-25T15:43:11Z</timestamp>
103146 <contributor>
103147 <ip>Conversion script</ip>
103148 </contributor>
103149 <minor />
103150 <comment>Automated conversion</comment>
103151 <text xml:space="preserve">#REDIRECT [[Arthritis]]
103152 </text>
103153 </revision>
103154 </page>
103155 <page>
103156 <title>Apollo 7</title>
103157 <id>1773</id>
103158 <revision>
103159 <id>40359173</id>
103160 <timestamp>2006-02-20T01:16:41Z</timestamp>
103161 <contributor>
103162 <username>Rich Farmbrough</username>
103163 <id>82835</id>
103164 </contributor>
103165 <minor />
103166 <comment>External links per MoS.</comment>
103167 <text xml:space="preserve">{| border=1 align=right cellpadding=4 cellspacing=0 width=272 style=&quot;margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;&quot;
103168 |+&lt;big&gt;'''''Apollo 7'''''&lt;/big&gt;
103169 |-
103170 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission insignia
103171 |-
103172 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:AP7lucky7.jpg|200px|Apollo 7 insignia]]
103173 |-
103174 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission statistics
103175 |-
103176 |'''Mission name:'''||Apollo 7
103177 |-
103178 |'''Call sign:'''||Command module:&lt;br /&gt;''Apollo 7''
103179 |-
103180 |'''Number of&lt;br /&gt;Crew:'''||3
103181 |-
103182 |'''Launch:'''||[[October 11]], [[1968]]&lt;br /&gt;15:02:45 [[Coordinated Universal Time|UTC]]&lt;br /&gt;[[Cape Canaveral Air Force Station]]&lt;br /&gt;LC 34
103183 |-
103184 |'''Apogee:'''||297 km
103185 |-
103186 |'''Perigee:'''||231 km
103187 |-
103188 |'''Period:'''||89.78 min
103189 |-
103190 |'''Inclination:'''||31.63
103191 |-
103192 |'''Splashdown:'''||[[October 22]], [[1968]]&lt;br /&gt;11:11:48 UTC&lt;br /&gt;27° 38' N - 64° 09' W
103193 |-
103194 |'''Duration:'''||10 d 20 h 9 min 3 s
103195 |-
103196 |'''Number of&lt;br /&gt;Orbits:'''||163
103197 |-
103198 |'''Mass:'''||CSM 14,781 kg
103199 |-
103200 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Crew picture
103201 |-
103202 |-
103203 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:GPN-2000-001160.jpg|275px|Apollo 7 crew portrait (L-R: Eisle, Schirra and Cunningham)]]&lt;br&gt;&lt;small&gt;''Apollo 7'' crew portrait &lt;br/&gt;(L-R: Eisle, Schirra and Cunningham)&lt;/small&gt;
103204 |-
103205 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Apollo 7 crew
103206 |}
103207
103208 '''Apollo 7''' was the first manned mission in the [[Apollo program]] to be launched. It was an eleven-day earth-orbital mission, the first manned launch of the [[Saturn IB]] launch vehicle, and the first three-man [[United States|American]] space mission.
103209
103210 ==Crew==
103211 *[[Wally Schirra]] (flew on ''[[Mercury 8]]'', ''[[Gemini 6A]]''), commander
103212 *[[Donn Eisele]] (first time in space), command module pilot
103213 *[[Walter Cunningham]] (first time in space), lunar module pilot
103214
103215 This crew was originally the backup crew of the ill-fated [[Apollo 1]].
103216
103217 ===Backup Crew===
103218 *[[Tom Stafford]], (flew on ''[[Gemini 6A]]'', ''[[Gemini 9A]]'', ''[[Apollo 10]]'', ''[[Apollo-Soyuz]]''), commander
103219 *[[John_W._Young|John Young]], (flew on ''[[Gemini 3]]'', ''[[Gemini 10]]'', ''[[Apollo 10]]'', ''[[Apollo 16]]'', ''[[STS-1]]'', ''[[STS-9]]''), command module pilot
103220 *[[Eugene Cernan]], (flew on ''[[Gemini 9A]]'', ''[[Apollo 10]]'', ''[[Apollo 17]]''), lunar module pilot
103221
103222 ===Support Crew===
103223 *[[Ron Evans]], (flew on ''[[Apollo 17]]'')
103224 *[[Ed Givens]], (never flew in space due to being killed in a car accident)
103225 *[[John Swigert]], (flew on ''[[Apollo 13]]'')
103226 *[[William_Pogue|Bill Pogue]], (flew on ''[[Skylab 4]]'')
103227
103228 ==Mission Parameters==
103229 *'''[[Mass]]:''' 14,781 kg
103230 *'''[[Perigee]]:''' 231 km
103231 *'''[[Apogee]]:''' 297 km
103232 *'''[[Inclination]]:''' 31.63°
103233 *'''[[Orbital period|Period]]:''' 89.78 min
103234
103235 ===Rendezvous with spent S-IVB rocket stage===
103236 *[[October 12]], [[1968]], 20:58:28 UTC
103237
103238 Stationkeeping with spent S-IVB rocket stage was performed for 25 minutes.
103239
103240 ===See also===
103241 *[[Splashdown]]
103242
103243 ==Mission Highlights==
103244 Apollo 7 was a confidence-builder. After the January 1967 [[Apollo 1|Apollo launch pad fire]], the Apollo command module had been extensively redesigned. Schirra, who would be the only astronaut to fly [[Mercury program|Mercury]], [[Gemini program|Gemini]] and Apollo missions, commanded this Earth-orbital shakedown of the command and service modules. Since it was not carrying a [[lunar module]], Apollo 7 could be launched with the [[Saturn IB]] booster rather than the much larger and more powerful [[Saturn V]].
103245
103246 The Apollo hardware and all mission operations worked without any significant problems, and the Service Propulsion System (SPS), the all-important engine that would place Apollo in and out of lunar orbit, made eight nearly perfect firings. Even though Apollo's larger cabin was more comfortable than Gemini's, eleven days in orbit took its toll on the astronauts. The food was bad, and all three developed colds. As a result Schirra became irritable with requests from Mission Control and all three began &quot;talking back&quot; to the [[capsule communicator|Capcom]] leading to none of the crew being selected for further missions. But the mission successfully proved the spaceworthiness of the basic Apollo vehicle.
103247
103248 Goals for the mission included the first live [[television]] broadcast from an American spacecraft ([[Gordon Cooper]] had broadcast slow scan television pictures from [[Mercury 9|Faith 7]] in 1963) and testing the [[lunar module]] docking maneuver.
103249
103250 First orbit: [[Perigee]] 231 km, [[Apogee]] 297 km, Period 89.78 min, Inclination 31.63 deg. Weight: C/SM 14,781 kg.
103251
103252 The splashdown point was 27 deg 32 min N, 64 deg 04 min W, 200 nautical miles (370 km) SSW of Bermuda and 13 km (8 mi) north of the recovery ship [[USS Essex (CV-9) | USS Essex]].
103253
103254 For nearly 30 years the Apollo 7 module was on loan (renewable every two years) to the National Museum of Science and Technology of Canada, in [[Ottawa]], along with the space suit worn by [[Wally Schirra]]. In November 2003 the Smithsonian Institution in Washington D.C. requested them back for display at their new annex at the [[Steven F. Udvar-Hazy Center]].
103255
103256 The Apollo 7 Capsule is currently on display at the Frontiers of Flight Museum located next to Love Field in Dallas Texas. The spacecraft is on loan from the Smithsonian.
103257
103258 Apollo 7 was the only manned Apollo launch to take place from Cape Canaveral Air Force Station's Launch Complex 34, as all subsequent Apollo (including Apollo-Soyuz) and Skylab missions were launched from [[Launch Complex 39]] at the nearby [[Kennedy Space Center]].
103259
103260 ===Reference===
103261 *[http://nssdc.gsfc.nasa.gov/nmc/sc-query.html NASA NSSDC Master Catalog]
103262 *[http://history.nasa.gov/SP-4029/Apollo_00a_Cover.htm APOLLO BY THE NUMBERS: A Statistical Reference by Richard W. Orloff (NASA)]
103263
103264 [[Image:Ap7-KSC-68PC-163.jpg|thumb|left|168px|Apollo 7 launch (NASA)]]
103265
103266 [[Image:As7-3-1545.jpg|thumb|left|255px|Apollo 7 SIV-B rocket stage (NASA)]]
103267
103268 [[Image:Apollo_7_Florida.jpg|thumb|left|250px|Apollo 7 view of Florida. (NASA)]]
103269
103270 &lt;br style=&quot;clear: left&quot;/&gt;
103271 {{Project Apollo | before=[[Apollo 6]]| after=[[Apollo 8]]}}
103272
103273 ==External links==
103274 *[http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19760072144_1976072144.pdf NASA Apollo 7 Mission Report - Dec. 1, 1968 (PDF format)]
103275 *[http://www.astronautix.com/flights/apollo7.htm Apollo 7 entry in Encyclopedia Astronautica]
103276 *[http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm The Apollo Spacecraft: A Chronology]
103277 *[http://history.nasa.gov/apsr/apsr.htm Apollo Program Summary Report]
103278
103279 [[Category:Human spaceflights|Apollo 07]]
103280 [[Category:Apollo program|Apollo 07]]
103281 [[Category:1968 in the United States]]
103282 [[cs:Apollo 7]]
103283 [[de:Apollo 7]]
103284 [[fr:Apollo 7]]
103285 [[it:Apollo 7]]
103286 [[he:אפולו 7]]
103287 [[hu:Apollo-7]]
103288 [[nl:Apollo 7]]
103289 [[pt:Apollo 7]]
103290 [[ro:Apollo 7]]
103291 [[sk:Apollo 7]]
103292 [[fi:Apollo 7]]</text>
103293 </revision>
103294 </page>
103295 <page>
103296 <title>Apollo 9</title>
103297 <id>1774</id>
103298 <revision>
103299 <id>42106021</id>
103300 <timestamp>2006-03-03T21:39:45Z</timestamp>
103301 <contributor>
103302 <username>Rich Farmbrough</username>
103303 <id>82835</id>
103304 </contributor>
103305 <minor />
103306 <comment>Ced.</comment>
103307 <text xml:space="preserve">{| border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; align=&quot;right&quot;
103308 |+&lt;font size=&quot;+1&quot;&gt;'''Apollo 9'''&lt;/font&gt;
103309 |-
103310 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission insignia
103311 |-
103312 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:Apollo-9-patch.jpg|200px|Apollo 9 insignia]]
103313 |-
103314 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Mission statistics
103315 |-
103316 |'''Mission name:'''||Apollo 9
103317 |-
103318 |'''Call sign:'''||Command module:&lt;br /&gt;''Gumdrop''&lt;br /&gt;Lunar module:&lt;br /&gt;''Spider''
103319 |-
103320 |'''Number of&lt;br /&gt;crew:'''||3
103321 |-
103322 |'''Launch:'''||[[March 3]], [[1969]]&lt;br /&gt;16:00:00 [[Coordinated Universal Time|UTC]]&lt;br /&gt;[[Kennedy Space Center]]&lt;br /&gt;LC 39A
103323 |-
103324 |'''EVA length:'''|| 1 h 8 min 1 s
103325 |-
103326 |'''Splashdown:'''||[[March 13]], [[1969]]&lt;br /&gt;17:00:54 UTC&lt;br /&gt;23° 15' N - 67° 56' W
103327
103328 |-
103329 |'''Duration:'''||10 d 1 h 0 min 54 s
103330 |-
103331 |'''Number of&lt;br /&gt;orbits:'''||152
103332 |-
103333 |'''Mass:'''||CSM 26,801 kg;&lt;br /&gt;LM 14,575 kg
103334 |-
103335 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Crew picture
103336 |-
103337 |colspan=&quot;2&quot; align=&quot;center&quot;|[[Image:GPN-2000-001162.jpg|275px|Apollo 9 crew portrait (L-R: McDivitt, Scott and Schweickart)]] &lt;br/&gt;Apollo 9 crew portrait &lt;br/&gt;(L-R: McDivitt, Scott and Schweickart)
103338 |-
103339 !colspan=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; bgcolor=&quot;#FFDEAD&quot;|Apollo 9 Crew
103340 |}
103341 '''Apollo 9''' was the third manned mission in the [[Project Apollo|Apollo program]], a ten day earth-orbital mission launched [[3 March]] [[1969]]. It was the second manned flight of the Saturn V launch vehicle and the first manned flight of the [[Apollo Lunar Module]] (LM).
103342
103343 ==Crew==
103344
103345 *[[James McDivitt]] (flew on ''[[Gemini 4]]'' &amp; ''Apollo 9''), commander
103346 *[[David Scott]] (flew on ''[[Gemini 8]]'', ''Apollo 9'', &amp; ''[[Apollo 15]]''), command module pilot
103347 *[[Russell Schweickart]] (flew on ''Apollo 9''), lunar module pilot
103348
103349 ===Backup crew===
103350 *[[Pete Conrad]] (flew on ''[[Gemini 5]]'', ''[[Gemini 11]]'', ''[[Apollo 12]]'', ''[[Skylab 2]]''), commander
103351 *[[Dick Gordon]] (flew on ''[[Gemini 11]]'', ''[[Apollo 12]]''), command module pilot
103352 *[[Alan Bean]] (flew on ''[[Apollo 12]]'', ''[[Skylab 3]]''), lunar module pilot.
103353
103354 ===Support crew===
103355 *[[Fred Haise]] (flew on ''[[Apollo 13]]'')
103356 *[[Jack Lousma]] (flew on ''[[Skylab 3]]'', ''[[STS-3]]'')
103357 *[[Edgar Mitchell|Ed Mitchell]] (flew on ''[[Apollo 14]]'')
103358 *[[Al Worden]] (flew on ''[[Apollo 15]]'')
103359
103360 ==Mission parameters==
103361 *'''[[Mass]]:''' CSM 26,801 kg; LM 14,575 kg
103362 *'''[[Perigee]]:''' 189.5 km
103363 *'''[[Apogee]]:''' 192.4 km
103364 *'''[[Inclination]]:''' 32.57°
103365 *'''[[Orbital period|Period]]:''' 88.64 min
103366
103367 ===LM - CSM docking===
103368 *'''Undocked''': [[March 7]], [[1969]] - 12:39:36 UTC
103369 *'''Re-docked''':[[March 7]], [[1969]] - 19:02:26 UTC
103370
103371 ===EVA===
103372 * ''Schweickart'' - EVA - LM forward hatch
103373 **'''Start''': [[March 6]], [[1969]], 16:45:00 UTC
103374 **'''End''': [[March 6]], [[1969]], 17:52:00 UTC
103375 **'''Duration''': 1 hour, 07 minutes
103376
103377 * ''Scott'' - EVA - CM side hatch
103378 **'''Start''': [[March 6]], [[1969]], 17:01:00 UTC
103379 **'''End''': [[March 6]], [[1969]], 18:02:00 UTC
103380 **'''Duration''': 1 hour, 01 minute
103381
103382 ===See also===
103383 * [[Extra-vehicular activity]]
103384 * [[List of spacewalks]]
103385 * [[Splashdown]]
103386
103387 ==Original mission profile==
103388 In October 1967, it was planned that following the first manned orbital flight of the CSM ([[Apollo 7]], also known as the C Mission), the second manned Apollo mission (D Mission) would have a manned CSM launched on a Saturn 1B, and a few days later the Lunar Module launched on a second Saturn 1B to practise the first orbit rendezvous. McDivitt, Scott and Schweickart were given this mission, with [[Frank Borman]], [[Jim Lovell]] and [[William Anders]] being assigned to a later, similar Earth-orbit test (E Mission), this time using the [[Saturn V]] to carry both the CSM and LM.
103389
103390 However, production problems with the LM meant that the D Mission would not be able to fly until the spring of [[1969]], so NASA officials created another &quot;C-Prime&quot; mission to go inbetween the C and D missions, involving the CSM (with no LM) making the first manned flight to the Moon. This flight became [[Apollo 8]], and was given to Borman, Lovell and Anders. Although he was in the rotation for it, McDivitt claims he was never offered the &quot;C-Prime&quot; mission as he was already experienced with the LM - but if he had been offered it, he probably would have declined, as he wanted to fly the LM. The original E Mission was subsequently scrubbed - Apollo 9 was the only Earth-orbit test of the full Apollo spacecraft, and was launched on a Saturn V instead of two Saturn 1Bs. This had long lasting consequence - when the crew rotation for Apollos 8 and 9 were swapped, their backup crews were also swapped, putting [[Neil Armstrong]] and his crew (who were Borman, Lovell and Anders' backups) in line for the first manned landing mission instead of [[Pete Conrad]] and his crew.
103391
103392 ==Mission highlights==
103393 Apollo 9 was the first space test of the complete Apollo spacecraft, including the third critical piece of Apollo hardware - the [[lunar module]]. For ten days, the astronauts put all three Apollo vehicles through their paces in Earth orbit, undocking and then redocking the lunar lander with the command module, just as they would in lunar orbit. Apollo 9 gave proof that the Apollo machines were up to the task of orbital rendezvous and docking.
103394
103395 For this and all subsequent Apollo flights, the crews were allowed to name their own spacecraft. The gangly lunar module was named &quot;Spider,&quot; and the command module was labelled &quot;Gumdrop&quot; on account of the blue cellophane wrapping in which the craft arrived at KSC.
103396
103397 Schweickart and Scott performed an EVA - Schweickart checked out the new Apollo spacesuit, the first to have its own life support system rather than being dependent on an umbilical connection to the spacecraft, while Scott filmed him from the command module hatch. Schweickart was due to carry out a more extensive set of activity to test the suit, and demonstrate that it was possible for astronauts to perform an EVA from the lunar module to the command module in an emergency, but as he had been suffering from [[space sickness]], this was restricted to the stand up test in the Lunar Module hatch.
103398
103399 McDivitt and Schweickart later testflew the LM, and practiced separation and docking maneuvers in earth orbit. They flew the LM up to 111 miles from &quot;Gumdrop&quot;, using the engine on the descent stage to propel them originally, before jettisoning it and using the ascent stage to return.
103400
103401 The splashdown point was 23 deg 15 min N, 67 deg 56 min W, 180 miles (290 km) east of Bahamas and within sight of the recovery ship [[USS Guadalcanal (LPH-7)|USS ''Guadalcanal'']].
103402
103403 The command module was displayed at the [[Michigan Space and Science Center]], [[Jackson, Michigan]] until April 2004 when the center closed. In May, 2004, the command module '''Gumdrop''' was moved to San Diego Aerospace Museum in southern California. The LM ascent stage orbit decayed on [[23 October]] [[1981]], the LM descent stage (1969-018D) orbit decayed [[22 March]] [[1969]]. The S-IVB stage J-2 engine was restarted after Lunar Module extraction and propelled the stage into solar orbit by burning to depletion.
103404
103405 ==Apollo 9 maneuver summary==
103406 {| border=&quot;1&quot; cellspacing=&quot;0&quot; align=&quot;Left&quot; width=&quot;750&quot;
103407 ! T + Time
103408 ! Event
103409 ! Burn Time
103410 ! Delta-Velocity
103411 ! Orbit
103412 |-
103413 | T + 00:00:00 || Lift-off ||. ||. ||.
103414 |-
103415 | T + 00:02:14 || S-IC center engine cut-off || 141 s ||. ||.
103416 |-
103417 | T + 00:02:43 || S-IC engine cut-off || 169 s ||. ||.
103418 |-
103419 | T + 00:02:44 || S-II ignition ||. ||. ||.
103420 |-
103421 | T + 00:03:14 || S-II skirt separation ||. ||. ||.
103422 |-
103423 | T + 00:03:19 || LES jettison ||. ||. ||.
103424 |-
103425 | T + 00:08:56 || S-II cut-off ||. ||. ||.
103426 |-
103427 | T + 00:08:57 || S-II cutoff + separation, S-IVB ignition ||. ||. ||.
103428 |-
103429 | T + 00:11:05 || S-IVB cutoff + orbital insertion || 127.4 s ||. ||191.3 x 189.5 km
103430 |-
103431 | T + 02:45:00 || CSM/S-IVB separation ||. ||. ||.
103432 |-
103433 | T + 03:02:08 || CSM/LM docking ||. ||. ||.
103434 |-
103435 | T + 04:18:00 || Spacecraft/S-IVB separation ||. ||. ||.
103436 |-
103437 | T + 05:59:00 || First SPS test || 5.1 s || +10.4 m/s || 234.1 x 200.7 km
103438 |-
103439 | T + 22:12:03 || Second SPS test || 110 s || +259.2 m/s || 351.5 x 199.5 km
103440 |-
103441 | T + 25:17:38 || Third SPS test || 281.6 s || +782.6 m/s || 503.4 x 202.6 km
103442 |-
103443 | T + 28:24:40 || Fourth SPS test || 28.2 s || -914.5 m/s || 502.8 x 202.4 km
103444 |-
103445 | T + 49:41:33 || First DPS test || 369.7 s || -530.1 m/s || 499.3 x 202.2 km
103446 |-
103447 | T + 54:26:11 || Fifth SPS test || 43.3 s || -175.6 m/s || 239.3 x 229.3 km
103448 |-
103449 | T + 92:39:30 || CSM/LM undocking ||. ||. ||.
103450 |-
103451 | T + 93:02:53 || CSM separation maneuver || 10.9 s || -1.5 m/s ||.
103452 |-
103453 | T + 93:47:34 || LM DPS phasing maneuver || 18.6 s || +27.6 m/s || 253.5 x 207 km
103454 |-
103455 | T + 95:39:07 || LM DPS insertion maneuver || 22.2 s || +13.1 m/s || 257.2 x 248.2 km
103456 |-
103457 | T + 96:16:04 || LM concentric sequence initiation maneuver || 30.3 s || -12.2 m/s || 255.2 x 208.9 km
103458 |-
103459 | T + 96:58:14 || LM APS constant delta height maneuver || 2.9 s || -12.6 m/s || 215.6 x 207.2 km
103460 |-
103461 | T + 97:57:59 || LM terminal phase finalization maneuver || 34.7 s || +6.8 m/s || 232.8 x 208.5 km
103462 |-
103463 | T + 98:59:00 || CSM/LM docking ||. ||. ||.
103464 |-
103465 | T + 101:32:44 || Post-jettison CSM separation maneuver || 7.2 s || +0.9 m/s || 235.7 x 224.6 km
103466 |-
103467 | T + 101:53:20 || LM APS burn to depletion || 350 s || +1,643.2 m/s || 6,934.4 x 230.6 km
103468 |-
103469 | T + 123:25:06 || Sixth SPS test || 1.29 s || -11.5 m/s || 222.6 x 195.2 km
103470 |-
103471 | T + 169:38:59 || Seventh SPS test || 25 s || +199.6 m/s || 463.4 x 181.1 km
103472 |-
103473 | T + 240:31:14 || Eighth SPS test || 11.6 s || -99.1 m/s || 442.2 x -7.8 km
103474 |-
103475 | T + 241:00:54 || Splashdown ||. ||. ||.
103476 |}
103477
103478 &lt;br style=&quot;clear: left&quot;/&gt;
103479
103480 [[Image:GPN-2000-001100.jpg|center|thumb|left|225px|Dave Scott spacewalk. (NASA)]]
103481
103482 [[Image:GPN-2000-001106.jpg|center|thumb|left|225px|Apollo 9 LM &quot;Spider&quot;. (NASA)]]
103483
103484 [[Image:GPN-2000-001109.jpg|center|thumb|left|225px|LM &quot;Spider&quot; over ocean. (NASA)]]
103485
103486 &lt;br style=&quot;clear: left&quot;/&gt;
103487
103488 ===References===
103489 *[http://nssdc.gsfc.nasa.gov/nmc/sc-query.html NASA NSSDC Master Catalog]
103490 *[http://history.nasa.gov/SP-4029/Apollo_00a_Cover.htm APOLLO BY THE NUMBERS: A Statistical Reference by Richard W. Orloff (NASA)]
103491 *[http://history.nasa.gov/SP-4012/vol3/table2.37.htm Apollo 9 Characteristics - SP-4012 NASA HISTORICAL DATA BOOK]
103492 *Baker, David. ''The History of Manned Space Flight''. Crown Publishers, Inc. First Edition. ISBN 051754377X
103493
103494 {{Project Apollo | before=[[Apollo 8]] | after=[[Apollo 10]]}}
103495
103496 ==External links==
103497 * [http://www.astronautix.com/flights/apollo9.htm Apollo 9 entry in Encyclopedia Astronautica]
103498 *[http://www.hq.nasa.gov/office/pao/History/SP-4009/cover.htm The Apollo Spacecraft: A Chronology]
103499 *[http://history.nasa.gov/apsr/apsr.htm Apollo Program Summary Report]
103500
103501 [[Category:Human spaceflights|Apollo 09]]
103502 [[Category:Apollo program|Apollo 09]]
103503 [[Category:1969]]
103504 [[cs:Apollo 9]]
103505 [[de:Apollo 9]]
103506 [[fr:Apollo 9]]
103507 [[it:Apollo 9]]
103508 [[he:%D7%90%D7%A4%D7%95%D7%9C%D7%95_9]]
103509 [[hu:Apollo-9]]
103510 [[nl:Apollo 9]]
103511 [[pt:Apollo 9]]
103512 [[sk:Apollo 9]]
103513 [[sv:apollo 9]]
103514 [[fi:Apollo 9]]</text>
103515 </revision>
103516 </page>
103517 <page>
103518 <title>Applied discrete math</title>
103519 <id>1775</id>
103520 <revision>
103521 <id>15900240</id>
103522 <timestamp>2002-08-28T04:19:05Z</timestamp>
103523 <contributor>
103524 <username>Andre Engels</username>
103525 <id>300</id>
103526 </contributor>
103527 <minor />
103528 <comment>correcting redirect</comment>
103529 <text xml:space="preserve">#REDIRECT [[Discrete mathematics]]</text>
103530 </revision>
103531 </page>
103532 <page>
103533 <title>Arthritis</title>
103534 <id>1776</id>
103535 <revision>
103536 <id>41970384</id>
103537 <timestamp>2006-03-02T23:26:08Z</timestamp>
103538 <contributor>
103539 <username>Arcadian</username>
103540 <id>104523</id>
103541 </contributor>
103542 <comment>clean up using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
103543 <text xml:space="preserve">{{DiseaseDisorder infobox |
103544 Name = Arthritis |
103545 ICD10 = M00-M25 |
103546 ICD9 = {{ICD9|710}}-{{ICD9|719}} |
103547 }}
103548
103549 '''Arthritis''' (from Greek ''arthro-'', joint + ''-itis'', inflammation) is a group of conditions that affect the health of the [[bone]] [[joint]]s in the body. One in three adult Americans suffer from some form of arthritis and the disease affects about twice as many women as men.
103550
103551 Arthritic [[disease]]s include [[rheumatoid arthritis]] and [[psoriatic arthritis]], which are [[autoimmune disorder|autoimmune diseases]]; [[septic arthritis]], caused by joint infection; and the more common [[osteoarthritis]], or degenerative joint disease. Arthritis can be caused from strains and injuries caused by repetitive motion, sports, overexertion, and falls. Unlike the autoimmune diseases, osteoarthritis largely affects older people and results from the degeneration of joint cartilage. Other forms are discussed below.
103552
103553 Arthritic joints can be sensitive to weather changes. The increased sensitivity is thought to be caused by the affected joints developing extra nerve endings in an attempt to protect the joint from further damage.
103554
103555 ==Signs and symptoms==
103556 All arthritides feature [[pain]], which is generally worse in the morning and on initiating movement, and resolves in the course of time. In elderly people and children, the pain may not be the main feature, and the patient simply moves less (elderly) or refuse to use the affected limb (children).
103557
103558 When faced with joint pain, a doctor will generally ask about several other medical symptoms (such as [[fever]], skin symptoms, breathlessness, [[Raynaud's phenomenon]]) that may narrow down the [[differential diagnosis]] to a few items, for which testing can be done.
103559
103560 Arthritis and fever together are pointers towards ''septic arthritis'' (see below). This is a [[medical emergency]], and requires urgent referral to a [[rheumatology|rheumatologist]].
103561
103562 ==Diagnosis==
103563 The various types of arthritis can be distinguished by the pace of onset, the age and sex of the patient, the amount of (and which) joints affected, additional symptoms such as [[psoriasis]], [[iridocyclitis]], [[Raynaud's phenomenon]], and rheumatoid nodules, and other clues.
103564
103565 [[Blood test]]s and [[X-ray]]s of the affected joints are often performed to make the diagnosis. X-rays can show erosions or bone appositions.
103566
103567 Screening blood tests: [[full blood count]], [[electrolytes]], [[renal function]], [[liver enzyme]]s, [[calcium]], [[phosphate]], [[protein electrophoresis]], [[C-reactive protein]] and the [[erythrocyte sedimentation rate]] (ESR). Specific tests are the [[rheumatoid factor]], [[antinuclear factor]] (ANF), [[extractable nuclear antigen]] and specific antibodies whenever the ANF is found to be positive.
103568
103569 ==Treatment==
103570 Treatment options vary depending on the precise condition, but include [[surgery]], and drug treatment, reduction of joint stress, [[Physical therapy|physical]] and [[Occupational therapy|occupational therapy]], and [[pain management]]. There are also numerous herbal remedies that purportedly treat arthritis, including ''[[Harpagophytum procumbens]]''. For specifics, see the articles on the individual conditions listed below.
103571
103572 In March 2005, researchers at [[Harvard Medical School]] and [[Brigham and Women's Hospital]] in the USA found that a diet rich in [[oily fish]] raised the body's production of an anti-inflammatory fat, and may thus reduce the effects of arthritis. According to their study published in the [[Journal of Experimental Medicine]], this diet worked best when combined with low [[aspirin]] doses.
103573
103574 ==Types of arthritis==
103575 Primary forms of arthritis:
103576 * [[Septic arthritis]]
103577 * [[Rheumatoid arthritis]]
103578 * [[Osteoarthritis]]
103579 * [[Gout]] and [[pseudogout]]
103580 * [[Juvenile arthritis]]
103581 * [[Still's disease]]
103582 * [[Ankylosing spondylitis]]
103583
103584 Secondary to other diseases:
103585 * [[Lupus erythematosus|Systemic lupus erythematosus]] (SLE)
103586 * [[Henoch-SchÃļnlein purpura]]
103587 * [[Psoriatic arthritis]]
103588 * [[Reiter's syndrome]]
103589 * [[Reactive arthritis]]
103590 * [[Hemochromatosis]]
103591 * [[Hepatitis]]
103592 * [[Wegener's granulomatosis]] (and many other [[vasculitis]] syndromes)
103593 * [[Familial Mediterranean fever]] (FMF), [[Hyperimmunoglobinemia D with recurrent fever|HIDS]] (hyperimmunoglobulinemia D and periodic fever syndrome) and [[TRAPS]] ([[TNF-alpha]] receptor associated periodic fever syndrome).
103594
103595 Diseases that can mimic arthritis:
103596 * [[Pierre Marie-Bamberger syndrome]] (hypertrophic pulmonary osteoarthropathy, a [[paraneoplastic phenomenon]] of [[lung cancer]])
103597 * [[multiple myeloma]]
103598 * [[osteoporosis]]
103599 * ''others''
103600
103601 ==History==
103602 While evidence of primary ankle osteoarthritis has been discovered in dinosaurs, the first known traces of human arthritis date back as far as [[4500 BC]]. It was noted in skeletal remains of [[Native Americans in the United States|Indians]] found in [[Tennessee]] and parts of what is now Olathe, Kansas. Evidence of arthritis has been found throughout history from Otzi, the name of a mummy (circa 3000 BC) found along the border of modern Italy and Austria, to the Egyptian mummies circ 2590 BC. Around 500 BC willow bark gained popularity when it was discovered that this bark could help relieve some of the aches and pains of arthritis. It wasn't until over 2000 years later in the early 1820s that European scientists began to scientifically study what the chemical compound was in willow bark that alleviated the arthritis symptoms. They discovered the compound was salicin. When they isolated salicin, however, they found it was very noxious to the stomach. Almost 80 years later, in 1897, an employee of Bayer Company -- then a dye production company -- named Felix Hoffman discovered how to isolate the compound and make it less irritating to the stomach. Hoffman was attempting to make the drug in order to help his father who was suffering with arthritis. In 1899, Bayer Company trademarked Hoffman's discovery under the name &quot;Aspirin.&quot; Today it is believed that over a trillion tablets of aspirin have been sold worldwide. [http://www.arthritis.org/resources/arthritistoday/2000_archives/2000_01_02_TimeLine.asp].
103603
103604 ==External links==
103605 *[http://www.arthritis.org Arthritis Foundation] ([[non-profit organisation]])
103606 *[http://www.ar-i.org Arthritis Rheumatism International] (International Patient Advoacacy Group)
103607 *[http://www.rheumatology.org American College of Rheumatologists] (US professional body) - also contains classification criteria of important forms of arthritis
103608 *[http://www.rheumatology.org.uk British Society for Rheumatology] (UK professional body)
103609 *[http://www.arthritismd.com ArthritisMD] (Physician submitted articles) - research based arthritis articles by physicians
103610
103611 [[Category:Arthritis| ]]
103612 [[Category:Skeletal disorders]]
103613 [[Category:Inflammations]]
103614 [[Category:Rheumatology]]
103615
103616 [[de:Arthritis]]
103617 [[es:Artritis]]
103618 [[eo:Artrito]]
103619 [[fr:Arthrite]]
103620 [[ia:Arthritis]]
103621 [[io:Artrito]]
103622 [[it:Artrosi]]
103623 [[nl:Artritis]]
103624 [[ja:é–ĸį¯€ãƒĒã‚Ļマチ]]
103625 [[pl:Artretyzm]]
103626 [[pt:Artrite]]
103627 [[uk:АŅ€Ņ‚Ņ€Đ¸Ņ‚]]
103628 [[zh:å…ŗ节į‚Ž]]</text>
103629 </revision>
103630 </page>
103631 <page>
103632 <title>April 2</title>
103633 <id>1777</id>
103634 <revision>
103635 <id>42163021</id>
103636 <timestamp>2006-03-04T06:01:07Z</timestamp>
103637 <contributor>
103638 <username>Rklawton</username>
103639 <id>754622</id>
103640 </contributor>
103641 <comment>rv sorry for your loss. However, without a wikipedia article or significant noteability, she doesn't belong here</comment>
103642 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
103643 {| style=&quot;float:right;&quot;
103644 |-
103645 |{{AprilCalendar}}
103646 |-
103647 |{{ThisDateInRecentYears|Month=April|Day=2}}
103648 |}
103649 '''April 2''' is the 92nd day of the year (93rd in [[leap year]]s) in the [[Gregorian calendar]], with 273 days remaining.
103650 ==Events==
103651 *[[69]] - [[Galba]], governor of Spain, names himself ''legatus senatus populique Romani'', breaking the line of Roman emperors begun with [[Julius Caesar]] and [[Augustus]].
103652 *[[1453]] - [[Mehmed II]] begins his siege of [[Constantinople]] ([[&amp;#304;stanbul]]), which would fall on [[May 29]]
103653 *[[1513]] - [[Juan Ponce de Leon]] sets foot on [[Florida]] becoming the first known [[Europe]]an to do so.
103654 *[[1755]] - Commodore [[William James (naval commander)|William James]] captures [[pirate]] fortress of Severndroog on west coast of [[India]].
103655 *[[1792]] - The [[Coinage Act (1792)|Coinage Act]] is passed establishing the [[United States Mint]].
103656 *[[1801]] - [[Napoleonic Wars]]: [[Battle of Copenhagen]] - The British destroy the Danish fleet.
103657 *[[1863]] - [[Richmond Bread Riots]]: [[Food]] shortages incite hundreds of angry women to [[rioting|riot]] in [[Richmond, Virginia]] and demand the [[Confederate States of America|Confederate]] government to release emergency supplies.
103658 *[[1865]] - [[American Civil War]]: [[Siege of Petersburg]] broken - [[United States|Union]] troops capture the trenches around [[Petersburg, Virginia]], forcing [[Confederate States of America|Confederate]] General [[Robert E. Lee]] to retreat.
103659 *1865 - American Civil War: Confederate President [[Jefferson Davis]] and most of his Cabinet flee the Confederate capital of [[Richmond, Virginia]].
103660 *[[1900]] The [[Foraker Act]] passes through [[Congress]], giving [[Puerto Ricans]] limited [[self-rule]].
103661 *[[1902]] - &quot;Electric Theatre&quot;, the first movie theater in the [[United States]], opens in [[Los Angeles, California]].
103662 *[[1917]] - [[World War I]]: U.S. President [[Woodrow Wilson]] asks the [[Congress of the United States|U.S. Congress]] for a [[declaration of war]] on [[Germany]].
103663 *1917 - The first [[woman]] ever elected to the U.S. Congress, [[Jeannette Rankin]], takes her seat as a representative from [[Montana]].
103664 *[[1930]] - [[Haile Selassie]] is proclaimed emperor of [[Ethiopia]].
103665 *[[1941]] - The [[radio]] program ''[[Life of Riley]]'' airs for the first time.
103666 *[[1956]] - [[General Motors]] board member [[Alfred P. Sloan]] steps down after 19 years as chairman with [[Albert Bradley]] as his successor.
103667 *1956 - ''[[As the World Turns]]'' and ''[[The Edge of Night]]'' first aired on the [[CBS]] network in the [[United States]], as the first half-hour serial dramas.
103668 *[[1964]] - The [[Saab Automobile|Saab]] board starts ''Project Gudmund'' to develop a new and larger [[automobile|car]], later released as the [[Saab 99]].
103669 *[[1971]] - The final broadcast of ''[[Dark Shadows]]'' airs on [[ABC-TV]].
103670 *[[1972]] - Actor [[Charlie Chaplin]] returns to the [[United States]] for the first time since being labeled a [[communism|communist]] in the early [[1950s]] during the [[Red Scare]].
103671 *1972 - [[Vietnam War]]: [[Easter Offensive]] begins - [[North Vietnam]]ese soldiers of the 304th Division take the northern half of [[Quang Tri Province]].
103672 *[[1973]] - Launch of [[LexisNexis]] computerized legal research service.
103673 *[[1975]] - Vietnam War: Thousands of civilian [[refugee]]s flee from the [[Quang Ngai Province]] in front of advancing [[North Vietnam]]ese troops.
103674 *[[1978]] - Prime-time Soap Opera ''[[Dallas (TV series)|Dallas]]'' premieres on [[CBS]], beginning a 13-year run.
103675 *[[1980]] - U.S. President [[Jimmy Carter]] signs the [[Crude Oil Windfall Profits Tax Act]] in an effort to help the U.S. [[economics|economy]] rebound.
103676 *[[1982]] - [[Falklands War]]: [[1982 invasion of the Falkland Islands]] by [[Argentina]]. The disputed [[Falkland Islands|islands]] are later retaken by the [[United Kingdom]].
103677 *1982 - [[John Chancellor]] helms the news desk at the ''[[NBC Nightly News]]'' for the final time, after eleven-and-a-half years.
103678 *[[1989]] - [[Soviet Union|Soviet]] leader [[Mikhail Gorbachev]] arrives in [[Havana]], [[Cuba]] to meet with [[Fidel Castro]] in an attempt to mend strained relations.
103679 *[[1992]] - In [[New York]], [[Mafia]] boss [[John Gotti]] is convicted of [[murder]] and [[racketeering]] and is later sentenced to life in prison.
103680 *1992 - [[Pierre BÊrÊgovoy]] becomes Prime Minister of [[France]]
103681 *[[2002]] - [[Israel]]i forces surrounded the [[Church of the Nativity]] in [[Bethlehem]] which has around 200 [[Palestinians]] inside. A siege ensues.
103682 *[[2004]] - [[Islamism|Islamist]] [[terrorism|terrorists]] involved in the [[11 March 2004 Madrid attacks]] attempt a thwarted bombing of the Spanish high-speed train [[AVE]] near [[Madrid]].
103683 *[[2005]] - [[Pope John-Paul II]] dies. Hundreds of millions of Catholics, and non-Catholics mourn worldwide.
103684 *2005 - [[James Stewart Jr.]] becomes first African American to win a major motorsports event.
103685
103686 ==Births==
103687 *[[1510]] - [[Ashikaga Yoshiharu]], Japanese shogun (d. [[1550]])
103688 *[[1545]] - [[Elizabeth of Valois]], queen of [[Philip II of Spain]] (d. [[1568]])
103689 *[[1565]] - [[Cornelis de Houtman]], Dutch explorer (d. [[1599]])
103690 *[[1618]] - [[Francesco Maria Grimaldi]], Italian mathematician and physicist (d. [[1663]])
103691 *[[1653]] - [[Prince George of Denmark]], prince consort of [[Anne of England]] (d. [[1708]])
103692 *[[1719]] - [[Johann Wilhelm Ludwig Gleim]], German poet (d. [[1803]])
103693 *[[1725]] - [[Casanova]], Italian adventurer and writer (d. [[1798]])
103694 *[[1788]] - [[Francisco Balagtas]], Filipino poet (d. [[1862]])
103695 *[[1798]] - [[August Heinrich Hoffmann von Fallersleben]], German poet (d. [[1874]])
103696 *[[1805]] - [[Hans Christian Andersen]], Danish writer (d. [[1875]])
103697 *[[1827]] - [[William Holman Hunt]], English painter (d. [[1910]])
103698 *[[1838]] - [[LÊon Gambetta]], French statesman (d. [[1882]])
103699 *[[1840]] - [[Émile Zola]], French novelist and critic (d. [[1902]])
103700 *[[1862]] - [[Nicholas Murray Butler]], American president of Columbia University, recipient of the [[Nobel Peace Prize]] (d. [[1947]])
103701 *[[1867]] - [[Eugen Sandow]], German bodybuilder and circus performer (d. [[1925]])
103702 *[[1869]] - [[Hughie Jennings]], baseball player (d. [[1928]])
103703 *[[1875]] - [[Walter Chrysler]], American automobile pioneer (d. [[1940]])
103704 *[[1891]] - [[Max Ernst]], German painter (d. [[1976]])
103705 *[[1900]] - [[Roberto Arlt]], Argentine writer (d. [[1942]])
103706 *[[1908]] - [[Buddy Ebsen]], American actor and dancer (d. [[2003]])
103707 *[[1914]] - Sir [[Alec Guinness]], English actor (d. [[2000]])
103708 *[[1917]] - [[Lou Monte]], American singer (d. [[1989]])
103709 *[[1920]] - [[Jack Webb]], American actor, director, and producer (d. [[1982]])
103710 *[[1923]] - [[G. Spencer-Brown]], English mathematician
103711 *[[1925]] - [[George MacDonald Fraser]], English author
103712 *[[1926]] - Sir [[Jack Brabham]], Australian race car driver
103713 *[[1927]] - [[Carmen Basilio]], American boxer
103714 *1927 - [[Ferenc PuskÃĄs]], Hungarian footballer
103715 *1927 - [[Kenneth Tynan]], English critic and writer (d. [[1980]])
103716 *[[1928]] - [[Joseph Cardinal Bernardin]], American cardinal (d. [[1996]])
103717 *1928 - [[Serge Gainsbourg]], French singer (d. [[1991]])
103718 *[[1934]] - [[Paul Joseph Cohen]], American mathematician
103719 *1934 - [[Brian Glover]], British actor and wrestler (d. [[1997]])
103720 *[[1937]] - [[Dick Radatz]], American baseball player (d. [[2005]])
103721 *[[1939]] - [[Marvin Gaye]], American singer (d. [[1984]])
103722 *[[1940]] - [[Penelope Keith]], English actress
103723 *[[1941]] - [[Dr. Demento]], American radio personality
103724 *[[1942]] - [[Hiroyuki Sakai]], Japanese chef
103725 *[[1945]] - [[Linda Hunt]], American actress
103726 *1945 - [[Don Sutton]], [[Major League Baseball]] player player
103727 *1945 - [[Reggie Smith]], [[Major League Baseball]] player
103728 *[[1947]] - [[Emmylou Harris]], American singer
103729 *1947 - [[Camille Paglia]], American feminist writer
103730 *[[1949]] - [[Pamela Reed]], American actress
103731 *[[1951]] - [[Moriteru Ueshiba]], Japanese martial artist
103732 *[[1953]] - [[Jim Allister]], Northern Irish politician
103733 *1953 - [[David Robinson (musician)|David Robinson]], American musician
103734 *1953 - [[Debralee Scott]], American actress (d. [[2005]])
103735 *[[1954]] - [[Ron Palillo]], American actor
103736 *[[1959]] - [[Juha Kankkunen]], Finnish race car driver
103737 *[[1960]] - [[Linford Christie]], British athlete
103738 *[[1961]] - [[Christopher Meloni]], American actor
103739 *1961 - [[Keren Woodward]], British singer ([[Bananarama]])
103740 *[[1962]] - [[Pierre Carles]], French documentarist
103741 *1962 - [[Mark Shulman]], American children's author
103742 *[[1966]] - [[Bill Romanowski]], American football player
103743 *[[1967]] - [[Greg Camp]], American guitarist and songwriter ([[Smash Mouth]])
103744 *1967 - [[Helen Chamberlain]], British television presenter
103745 *[[1971]] - [[Todd Woodbridge]], Australian tennis player
103746
103747 ==Deaths==
103748 *[[1272]] - [[Richard, 1st Earl of Cornwall]], Holy Roman Emperor (b. [[1209]])
103749 *[[1335]] - Duke [[Henry of Carinthia]]
103750 *[[1412]] - [[Ruy GonzÃĄles de Clavijo]], Spanish traveler and writer
103751 *[[1502]] - [[Arthur Tudor|Prince Arthur Tudor]], son of [[Henry VII of England]] (b. [[1486]])
103752 *[[1507]] - [[Francis of Paola]], Italian founder of the Order of the Minims (b. [[1416]])
103753 *[[1657]] - [[Ferdinand III, Holy Roman Emperor]] (b. [[1608]])
103754 *[[1720]] - [[Joseph Dudley]], colonial Governor of Massachusetts (b. [[1647]])
103755 *[[1742]] - [[James Douglas (physician)|James Douglas]], Scottish physician and anatomist (b. [[1675]])
103756 *[[1747]] - [[Johann Jacob Dillenius]], German botanist (b. [[1684]])
103757 *[[1754]] - [[Thomas Carte]], English historian (b. [[1686]])
103758 *[[1787]] - [[Thomas Gage]], British general (b. [[1719]])
103759 *[[1801]] - [[Thomas Dadford Junior]], British canal engineer
103760 *[[1803]] - [[Sir James Montgomery, 1st Baronet]], Scottish politican and judge (b. [[1721]])
103761 *[[1817]] - [[Johann Heinrich Jung]], German author (b. [[1740]])
103762 *[[1827]] - [[Ludwig Heinrich Bojanus]], German physician and naturalist (b. [[1776]])
103763 *[[1865]] - General [[A. P. Hill]], American Confederate general (b. [[1825]])
103764 *[[1872]] - [[Samuel Morse]], American inventor (b. [[1791]])
103765 *[[1902]] - [[Esther Hobart Morris|Esther Morris]], suffragist and first female American judge (b. [[1814]])
103766 *[[1914]] - [[Paul Johann Ludwig von Heyse|Paul von Heyse]], German writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (b. [[1830]])
103767 *[[1922]] - [[Hermann Rorschach]], Swiss psychologist (b. [[1884]])
103768 *[[1928]] - [[Theodore William Richards]], American chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (b. [[1868]])
103769 *[[1930]] - Empress [[Zauditu of Ethiopia]] (b. [[1876]])
103770 *[[1966]] - [[C.S. Forester]], British author (b. [[1899]])
103771 *[[1972]] - [[Gil Hodges]], American baseball player (b. [[1924]])
103772 *[[1974]] - [[Georges Pompidou]], [[President of France]] (b. [[1911]])
103773 *[[1987]] - [[Buddy Rich]], American drummer (b. [[1917]])
103774 *[[1994]] - [[Betty Furness]], American actress (b. [[1916]])
103775 *[[1995]] - [[Harvey Penick]], American golfer (b. [[1904]])
103776 *1995 - [[Hannes AlfvÊn]], Swedish physicist (b. [[1908]])
103777 *[[2000]] - [[Tommaso Buscetta]], Italian gangster (b. [[1928]])
103778 *[[2001]] - [[Charles Daudelin]], Canadian artist (b. [[1920]])
103779 *[[2003]] - [[Edwin Starr]], American singer (b. [[1942]])
103780 *[[2005]] - [[Pope John Paul II]] (b. [[1920]])
103781
103782 ==External links==
103783 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/2 BBC: On This Day]
103784 * [http://www.nytimes.com/learning/general/onthisday/20050402.html ''The New York Times'': On This Day]
103785 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=02 On This Day in Canada]
103786
103787
103788 ----
103789
103790 [[April 1]] - [[April 3]] - [[March 2]] - [[May 2]] -- [[historical anniversaries|listing of all days]]
103791
103792 {{months}}
103793
103794 [[af:2 April]]
103795 [[ar:2 ØĨØ¨ØąŲŠŲ„]]
103796 [[an:2 d'abril]]
103797 [[ast:2 d'abril]]
103798 [[az:2 Aprel]]
103799 [[bg:2 Đ°ĐŋŅ€Đ¸Đģ]]
103800 [[be:2 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
103801 [[bs:2. april]]
103802 [[ca:2 d'abril]]
103803 [[ceb:Abril 2]]
103804 [[cv:АĐēĐ°, 2]]
103805 [[co:2 d'aprile]]
103806 [[cs:2. duben]]
103807 [[cy:2 Ebrill]]
103808 [[da:2. april]]
103809 [[de:2. April]]
103810 [[et:2. aprill]]
103811 [[el:2 ΑĪ€ĪÎšÎģίÎŋĪ…]]
103812 [[es:2 de abril]]
103813 [[eo:2-a de aprilo]]
103814 [[eu:Apirilaren 2]]
103815 [[fo:2. apríl]]
103816 [[fr:2 avril]]
103817 [[fy:2 april]]
103818 [[ga:2 AibreÃĄn]]
103819 [[gl:2 de abril]]
103820 [[ko:4ė›” 2ėŧ]]
103821 [[hr:2. travnja]]
103822 [[io:2 di aprilo]]
103823 [[id:2 April]]
103824 [[ia:2 de april]]
103825 [[ie:2 april]]
103826 [[is:2. apríl]]
103827 [[it:2 aprile]]
103828 [[he:2 באפריל]]
103829 [[jv:2 April]]
103830 [[ka:2 აპრილი]]
103831 [[csb:2 łÅŧÃĢkwiôta]]
103832 [[ku:2'ÃĒ avrÃĒlÃĒ]]
103833 [[lt:BalandÅžio 2]]
103834 [[lb:2. AbrÃĢll]]
103835 [[li:2 april]]
103836 [[hu:Április 2]]
103837 [[mk:2 Đ°ĐŋŅ€Đ¸Đģ]]
103838 [[ms:2 April]]
103839 [[nap:2 'e abbrile]]
103840 [[nl:2 april]]
103841 [[ja:4月2æ—Ĩ]]
103842 [[no:2. april]]
103843 [[nn:2. april]]
103844 [[oc:2 d'abril]]
103845 [[os:2 Đ°ĐŋŅ€ĐĩĐģŅ‹]]
103846 [[pl:2 kwietnia]]
103847 [[pt:2 de Abril]]
103848 [[ro:2 aprilie]]
103849 [[ru:2 Đ°ĐŋŅ€ĐĩĐģŅ]]
103850 [[se:CuoŋomÃĄnu 2.]]
103851 [[sco:2 Aprile]]
103852 [[sq:2 Prill]]
103853 [[scn:2 di aprili]]
103854 [[simple:April 2]]
103855 [[sk:2. apríl]]
103856 [[sl:2. april]]
103857 [[sr:2. Đ°ĐŋŅ€Đ¸Đģ]]
103858 [[fi:2. huhtikuuta]]
103859 [[sv:2 april]]
103860 [[tl:Abril 2]]
103861 [[tt:2. Äpril]]
103862 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 2]]
103863 [[th:2 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
103864 [[vi:2 thÃĄng 4]]
103865 [[tr:2 Nisan]]
103866 [[uk:2 ĐēвŅ–Ņ‚ĐŊŅ]]
103867 [[ur:2 اŲžØąÛŒŲ„]]
103868 [[wa:2 d' avri]]
103869 [[war:Abril 2]]
103870 [[zh:4月2æ—Ĩ]]
103871 [[pam:Abril 2]]</text>
103872 </revision>
103873 </page>
103874 <page>
103875 <title>Acetylene</title>
103876 <id>1778</id>
103877 <revision>
103878 <id>41763366</id>
103879 <timestamp>2006-03-01T15:53:38Z</timestamp>
103880 <contributor>
103881 <ip>209.173.6.129</ip>
103882 </contributor>
103883 <comment>/* Preparation */</comment>
103884 <text xml:space="preserve">&lt;!-- Here is a table of data; skip past it to edit the text. --&gt;
103885 {| class=&quot;toccolours&quot; border=&quot;1&quot; style=&quot;float: right; clear: right; margin: 0 0 1em 1em; border-collapse: collapse;&quot;
103886 ! {{chembox header}}| '''{{PAGENAME}}''' &lt;!-- replace if not identical with the article name --&gt;
103887 |-
103888 | align=&quot;center&quot; colspan=&quot;2&quot; bgcolor=&quot;#ffffff&quot; | [[Image:{{PAGENAME}}.png|200px|{{PAGENAME}}]] &lt;!-- replace if not identical with the pagename --&gt;
103889 |-
103890 | [[IUPAC nomenclature|Chemical name]]
103891 | {{PAGENAME}} &lt;!-- replace if not identical with the article name --&gt;
103892 |-
103893 | [[Chemical formula]]
103894 | C&lt;sub&gt;2&lt;/sub&gt;H&lt;sub&gt;2&lt;/sub&gt;
103895 |-
103896 | Other names
103897 | Ethyne, Ethine
103898 |-
103899 | [[Molecular mass]]
103900 | 26.0373 g/mol
103901 |-
103902 | [[CAS registry number|CAS number]]
103903 | 74-86-2
103904 |-
103905 | [[Density]]
103906 | 1.09670E-03 g/cm&lt;sup&gt;3&lt;/sup&gt;
103907 |-
103908 | [[Melting point]]
103909 | -84 °C
103910 |-
103911 | [[Boiling point]]
103912 | -80.8 °C
103913 |-
103914 | [[Simplified molecular input line entry specification|SMILES]]
103915 | C#C
103916 |-
103917 {{PubChem Row|6326}}
103918 |-
103919 {{EINECS Row|200-816-9}}
103920 |-
103921 | {{chembox header}} | &lt;small&gt;[[wikipedia:Chemical infobox|Disclaimer and references]]&lt;/small&gt;
103922 |-
103923 |}
103924
103925 The [[chemical compound]] and [[alkyne|unsaturated]] [[hydrocarbon]] '''acetylene''', also known under [[IUPAC nomenclature]] (see [[IUPAC nomenclature of organic chemistry]]) as '''ethyne''', was discovered in 1836 by [[Edmund Davy]], in [[England]].
103926
103927 ==Preparation==
103928 The principal raw materials for acetylene manufacture are [[calcium carbonate]] ([[limestone]]) and [[coal]]. The calcium carbonate is first converted into calcium oxide and the coal into [[coke (fuel)|coke]], then the two are reacted with each other to form [[calcium carbide]] and [[carbon monoxide]]:
103929
103930 :CaO + 3C &amp;rarr; CaC&lt;sub&gt;2&lt;/sub&gt; + CO
103931
103932 Calcium carbide (or calcium acetylide) and water are then reacted by any of several methods to produce acetylene and [[calcium hydroxide]].
103933
103934 :CaC&lt;sub&gt;2&lt;/sub&gt; + 2H&lt;sub&gt;2&lt;/sub&gt;O &amp;rarr; Ca(OH)&lt;sub&gt;2&lt;/sub&gt; + C&lt;sub&gt;2&lt;/sub&gt;H&lt;sub&gt;2&lt;/sub&gt;
103935
103936 Acetylene can also be manufactured by the partial [[combustion]] of [[methane]] with [[oxygen]], or by the [[Cracking (chemistry)|cracking]] of [[hydrocarbon|hydrocarbons]].
103937
103938 ==Safety and handling==
103939
103940 ===Compression===
103941
103942 Acetylene can explode with extreme violence if the pressure of the gas exceeds about 100 kPa as a gas or when in liquid or solid form, so it is shipped and stored dissolved in [[acetone]]. The majority of acetylene's chemical energy is contained in the carbon-carbon triple bond.
103943
103944 ===Toxic effects===
103945
103946 Inhaling acetylene may cause dizziness, headache and nausea&lt;ref name=&quot;HitCL&quot;&gt;Muir, GD (ed.) 1971, ''Hazards in the Chemical Laboratory'', The Royal Institute of Chemistry, London.&lt;/ref&gt;. It may also contain toxic impurities: the [http://www.cganet.com/publication_detail.asp?id=G-1.1 Compressed Gas Association Commodity Specification for acetylene] has established a grading system for identifying and quantifying [[phosphine]], [[arsine]], and [[hydrogen sulfide]] content in commercial grades of acetylene in order to limit exposure to these impurities.
103947
103948 ===Fire hazard===
103949
103950 Mixtures with air containing between 3% and 82% acetylene are explosive on ignition. The minimum ignition temperature is 335°C.&lt;ref name=&quot;HitCL&quot; /&gt;
103951
103952 ==Reactions==
103953 Above 400 °C (which is quite low for a hydrocarbon), the [[pyrolysis]] of acetylene will start. The main products are the [[dimer]] [[vinylacetylene]] (C&lt;sub&gt;4&lt;/sub&gt;H&lt;sub&gt;4&lt;/sub&gt;) and [[benzene]]. At temperatures above 900 °C, the main product will be [[soot]].
103954
103955 Polymerization with [[Ziegler-Natta catalyst]]s produces [[polyacetylene]] films.
103956
103957 ==Uses==
103958 Approximately 80 percent of the acetylene produced annually in the [[United States]] is used in chemical synthesis. The remaining 20 percent is used primarily for [[oxyacetylene]] [[gas welding]] and [[blowtorch|cutting]]. Combustion with oxygen produces a flame of over 3300°C, releasing 11,800 [[Joule|J]]/g.
103959
103960 Acetylene is also used in the [[carbide lamp|acetylene ('carbide') lamp]], formerly found in mines (not to be confused with the [[Davy lamp]]), and on vintage [[automobile|cars]]; it is still sometimes used by [[spelunker]]s. In this context, the acetylene is generated by adding [[calcium carbide]] (CaC&lt;sub&gt;2&lt;/sub&gt;) pellets to [[water]].
103961
103962 In former times a few towns used acetylene for lighting, including [[Tata_(Hungary)|Tata]] in [[Hungary]] where it was installed on [[24 July]] [[1897]], and [[North Petherton]], [[England]] in 1898.
103963
103964 Nowadays acetylene is used for [[carburization]] (that is, [[carburization|hardening]]) of [[steel]]. Research in the last ten years has concluded that acetylene is the best hydrocarbon available for this purpose.
103965
103966 Acetylene has been proposed as a carbon feedstock for [[Molecular Manufacturing]] using Nanotechnology. Since it does not occur naturally, using acetylene could limit out-of-control self-replication.
103967
103968 ==Other meanings==
103969 Sometimes the plural &quot;acetylenes&quot; is used to more generally mean organic chemical compounds that contain the -C&lt;u&gt;=&lt;/u&gt;C= group: see [[-yne]].
103970
103971 ==References==
103972 &lt;!--See [[Wikipedia:Footnotes]] for an explanation of how to generate footnotes using the &lt;ref(erences/)&gt; tags--&gt;
103973 &lt;references/&gt;
103974
103975 ==External links==
103976 * [http://jchemed.chem.wisc.edu/JCESoft/CCA/CCA5/MAIN/1ORGANIC/ORG07/MENU.HTM Acetylene at Chemistry Comes Alive!]
103977 * {{gutenberg|name=Acetylene, the Principles of Its Generation and Use|no=8144}}
103978
103979 [[Category:Alkynes]]
103980
103981 [[ca:Acetilè]]
103982 [[da:Acetylen]]
103983 [[de:Ethin]]
103984 [[el:ΑΚθίÎŊΚÎŋ]]
103985 [[es:Acetileno]]
103986 [[eo:Acetileno]]
103987 [[fr:AcÊtylène]]
103988 [[it:Acetilene]]
103989 [[hu:AcetilÊn]]
103990 [[nl:Acetyleen]]
103991 [[ja:ã‚ĸã‚ģチãƒŦãƒŗ]]
103992 [[pl:Etyn]]
103993 [[pt:Acetileno]]
103994 [[sk:AcetylÊn]]
103995 [[sr:АŅ†ĐĩŅ‚иĐģĐĩĐŊ]]
103996 [[fi:Asetyleeni]]
103997 [[sv:Etyn]]
103998 [[zh:乙į‚”]]</text>
103999 </revision>
104000 </page>
104001 <page>
104002 <title>Alfred</title>
104003 <id>1779</id>
104004 <revision>
104005 <id>31644715</id>
104006 <timestamp>2005-12-16T19:48:35Z</timestamp>
104007 <contributor>
104008 <ip>81.153.10.145</ip>
104009 </contributor>
104010 <text xml:space="preserve">'''Alfred''' is the name of some places in the [[United States|United States of America]]:
104011 *[[Alfred, Maine]]
104012 *[[Alfred, New York]] (village)
104013 *[[Alfred (town), New York |Alfred, New York]] (town)
104014
104015 and in [[Canada]]:
104016 *[[Alfred, Ontario]]
104017
104018 There are also:
104019 *[[Alfred the Great]], king of [[Wessex]] and first king of [[England]]
104020 *[[Alfred Hitchcock]]
104021 *[[Alfred Nobel]], the inventor of [[dynamite]].
104022 *[[Alfred Pennyworth]], Bruce Wayne's ([[Batman]]) butler
104023 *[[Alfred State College]] (in [[New York]] State)
104024 *[[Alfred University]] (in [[New York]] State)
104025 *[[Alfred Rosenberg]]
104026 *[[Alfred (masque)]], [[Thomas Augustine Arne]]'s ''[[Masque]] of Alfred'' (known for &quot;[[Rule Britannia]]&quot;)
104027 *[[King Alfred Chair of English Literature]] (at the [[University of Liverpool]])
104028 *[[The Alfred Hospital]] in [[Melbourne]], [[Australia]]
104029
104030 ==Note==
104031
104032 Alfred University (NY) , Alfred State College (NY), the town Alfred (NY), Arne's ''Masque of Alfred'' and Liverpool's King Alfred Chair of English Literature are all named after Alfred the Great.
104033
104034 '''Alfred''' is also a [[Computer and video games|video game]] [[fictional character|character]] from the [[Fatal Fury]] series.
104035
104036 '''Alfred''' is also the name by which the personnel of the [[Charles de Gaulle International Airport]] in Paris calls [[Merhan Karimi Nasseri]], who has been living in the departure hall of Terminal 1 since 1988.
104037
104038 {{disambig}}
104039
104040 [[de:Alfred]]
104041 [[eo:Alfredo]]
104042 [[fr:Alfred]]
104043 [[hu:AlfrÊd]]
104044 [[pl:Alfred]]
104045 [[sk:AlfrÊd]]
104046 [[sv:Alfred]]</text>
104047 </revision>
104048 </page>
104049 <page>
104050 <title>August 28</title>
104051 <id>1781</id>
104052 <revision>
104053 <id>42113144</id>
104054 <timestamp>2006-03-03T22:29:49Z</timestamp>
104055 <contributor>
104056 <username>Rklawton</username>
104057 <id>754622</id>
104058 </contributor>
104059 <comment>rv silliness</comment>
104060 <text xml:space="preserve">{| style=&quot;float:right;&quot;
104061 |-
104062 |{{AugustCalendar}}
104063 |-
104064 |{{ThisDateInRecentYears|Month=August|Day=28}}
104065 |}
104066 '''[[August 28]]''' is the 240th day of the year in the Gregorian Calendar (241st in leap years), with 125 days remaining.
104067
104068 ==Events==
104069 *[[475]] - The Pannonian general [[Orestes (Roman soldier)|Orestes]] forces western [[Roman Emperors|Roman Emperor]] [[Julius Nepos]] to flee his capital of [[Ravenna]] and appoints [[Romulus Augustus]] in his place.
104070 *[[489]] - [[Theodoric the Great|Theodoric]], king of the [[Ostrogoths]] defeats [[Odoacer]] at the [[Battle of Isonzo (489)|Battle of Isonzo]], forcing his way into Italy.
104071 *[[1521]] - The [[Turkey|Turks]] occupy [[Belgrade]]
104072 *[[1542]] - Reinforced with at least 600 arquebusiers and cavalry, Imam [[Ahmad Gragn]] attacks the Portuguese camp in the [[Battle of Wofla]]. The Portuguese are scattered, their leader [[ChristovÃŖo da Gama]] captured and afterwards executed.
104073 *[[1565]] - [[St. Augustine, Florida]], established. It is the oldest surviving European settlement in the [[United States]].
104074 *[[1609]] - [[Henry Hudson]] discovers [[Delaware Bay]].
104075 *[[1619]] - [[Ferdinand II of Germany|Ferdinand II]] is elected emperor of the [[Holy Roman Empire]].
104076 *[[1830]] - The ''[[Tom Thumb]]'' presages the first railway service in the United States.
104077 *[[1845]] - ''[[Scientific American]]'' magazine publishes its first issue
104078 *[[1849]] - After a month-long siege, [[Venice]], which had declared itself independent, surrenders to [[Austria]].
104079 *[[1850]] - [[Richard Wagner]]'s opera ''[[Lohengrin (opera)|Lohengrin]]'' premieres in [[Weimar, Germany]].
104080 *[[1862]] - [[Second Battle of Bull Run]], also known as the battle of Second Manassas
104081 *[[1867]] - The United States occupies [[Midway Island]].
104082 *[[1879]] - [[Cetshwayo]], last king of the [[Zulu]]s, is captured by the British.
104083 *[[1884]] - First known photograph of a [[tornado]] is made.
104084 *[[1898]] - [[Caleb Bradham]] renames his carbonated soft drink &quot;[[Pepsi-Cola]]&quot;.
104085 *[[1907]] - [[UPS]] is founded by [[James E. (Jim) Casey]] in [[Seattle, Washington]].
104086 *[[1913]] - [[Queen Wilhelmina]] opens the [[Peace Palace]] in [[The Hague]].
104087 *[[1914]] - The [[Royal Navy|British fleet]] beats the German fleet in the [[Battle of Heligoland Bight]].
104088 *[[1916]] - [[Germany]] declares war on [[Romania]].
104089 *1916 - [[Italy]] declares war on Germany.
104090 *[[1917]] - Ten [[Suffragettes|suffragist]]s are arrested when picketing the [[White House]].
104091 *[[1918]] - [[PFC Spartak Varna]] founded.
104092 *[[1937]] - [[Toyota]] Motors becomes an independent company
104093 *[[1943]] - In [[Denmark]], a [[general strike]] against the [[Nazi]] occupation is started.
104094 *[[1944]] - [[Marseille]] and [[Toulon]] are liberated.
104095 *[[1953]] - [[Nippon Television]] broadcasts [[Japan]]'s first television show, including its first TV advertisement.
104096 *[[1955]] - Black [[Mississippi]]an [[Emmett Till]] is murdered, allegedly for whistling to a white woman and calling her ''baby''.
104097 *[[1963]] - During a 200,000-person [[civil rights]] rally in at the [[Lincoln Memorial]] in [[Washington, D.C.]], [[Martin Luther King, Jr.]] gives his famous ''[[I have a dream]]'' speech.
104098 *[[1964]] - The [[Philadelphia 1964 race riot|Philadelphia race riot]] began.
104099 *[[1968]] - Riots in [[Chicago, Illinois]], during the Democratic National Convention
104100 *[[1971]] - The [[dollar]] is allowed to float against the [[yen]] for the first time.
104101 *[[1972]] - During the [[Olympic Games]] in [[Munich]], [[Mark Spitz]] gets his first of seven gold medals in [[swimming]] events.
104102 *[[1975]] - Missionary Armand Doll is imprisoned in [[Mozambique]] by Marxist extremists.
104103 *[[1979]] - An [[provisional IRA|IRA]] bomb explodes on the Great Market in [[Brussels]].
104104 *[[1981]] - The [[National Centers for Disease Control]] announce a high incidence of [[Pneumocystis]] and [[Kaposi's sarcoma]] in gay men. Soon, these will be recognized as symptoms of an [[immune system|immune]] disorder, which will be called [[AIDS]].
104105 *[[1986]] - Stage of siege declared in [[Bolivia]].
104106 *1986 - US Navy officer [[Jerry A. Whitworth]] is sentenced to 365 years [[imprisonment]] for [[espionage]] for the [[Soviet Union]].
104107 *[[1988]] - At an air show in [[Ramstein]], [[West Germany]], three stunt fighters collide; 69 people die.
104108 *[[1990]] - [[Iraq]] declares [[Kuwait]] to be its newest [[Provinces of Iraq|province]].
104109 *1990 - [[The Plainfield Tornado]]: An F5 tornado hits in [[Plainfield, Illinois]], and [[Joliet, Illinois]], killing 28 people.
104110 *[[1991]] - A drunk motorman speeds into the [[Union Square (New York City)|Union Square]] station on the No. 4 line in [[New York City]]. The train derails on the curve, killing six passengers and injuring dozens.
104111 *[[1993]] - A dam breaks in [[Qinghai]], [[China]]. 223 die.
104112 *1993 - 76 die in an airplane crash in [[Tajikistan]].
104113 *1993 - [[Ong Teng Cheong]] elected president of [[Singapore]]
104114 *[[1994]] - First [[Japan]]ese [[Gay pride|gay pride march]].
104115 *[[1995]] - A mortar shell kills 38 people in [[Sarajevo]], [[Bosnia and Herzegovina|Bosnia]].
104116 *[[1996]] - Britain's [[Charles, Prince of Wales]], and [[Diana, Princess of Wales]], are divorced.
104117 *[[1998]] - Pakistan's [[National Assembly of Pakistan|National Assembly]] passes a [[Constitution of Pakistan|constitutional]] [[Fifteenth Amendment to the Constitution of Pakistan|amendment]] to make the &quot;[[Qur'an]] and [[Sunnah]]&quot; the &quot;supreme law&quot; but the bill is defeated in the [[Senate of Pakistan|Senate]].
104118 *[[2001]] - [[Netherlands|Dutch]] prime minister [[Wim Kok]] announces that he will not be available for another term as PvdA party leader or prime minister after the 2002 elections.
104119 *[[2005]] - A [[Effect of Hurricane Katrina on New Orleans|mandatory evacuation]] is ordered by [[New Orleans, Louisiana]] mayor [[Ray Nagin]] and Louisiana governor [[Kathleen Blanco]] as [[Hurricane Katrina]] moved nearer to Louisiana.
104120
104121 ==Births==
104122 *[[1025]] - [[Emperor Go-Reizei]] of Japan (d. [[1068]])
104123 *[[1582]] (O.S.) - [[Taichang Emperor]], of the Ming dynasty of China (d. [[1620]])
104124 *[[1592]] - [[George Villiers, 1st Duke of Buckingham]], English statesman (d. [[1628]])
104125 *[[1612]] - [[Marcus Zuerius van Boxhorn]], Dutch scholar (d. [[1653]])
104126 *[[1714]] - [[Anthony Ulrich II, Duke of Brunswick-LÃŧneburg]] (d. [[1774]])
104127 *[[1749]] - [[Johann Wolfgang von Goethe]], German writer and scientist (d. [[1832]])
104128 *[[1774]] - [[Elizabeth Ann Seton]], first American-born Catholic saint (d. [[1821]])
104129 *[[1814]] - [[Sheridan le Fanu]], Irish writer (d. [[1873]])
104130 *[[1828]] (O.S.) - [[Leo Tolstoy]], Russian writer (d. [[1910]])
104131 *[[1849]] - [[Benjamin Godard]], French composer (d. [[1895]])
104132 *[[1853]] - [[Vladimir Shukhov]], Russian engineer and inventor (d. [[1939]])
104133 *[[1867]] - [[Umberto Giordano]], Italian composer (d. [[1948]])
104134 *[[1878]] - [[George Whipple]], American scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1976]])
104135 *[[1894]] - [[Karl BÃļhm]], Austrian conductor (d. [[1981]])
104136 *[[1897]] - [[Charles Boyer]], French actor (d. [[1978]])
104137 *[[1903]] - [[Bruno Bettelheim]], American psychologist (d. [[1990]])
104138 *[[1904]] - [[Secondo Campini]], Italian jet engine pioneer (d. [[1980]])
104139 *[[1906]] - [[John Betjeman]], English poet (d. [[1984]])
104140 *[[1908]] - [[Roger Tory Peterson]], American ornithologist and illustrator (d. [[1996]])
104141 *[[1910]] - [[Tjalling Koopmans]], Dutch economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (d. [[1985]])
104142 *[[1911]] - [[Joseph Luns]], Dutch politician (d. [[2002]])
104143 *[[1913]] - [[Robertson Davies]], Canadian writer (d. [[1995]])
104144 *1913 - [[Richard Tucker]], American tenor (d. [[1975]])
104145 *[[1916]] - [[Jack Vance]], American author
104146 *[[1917]] - [[Jack Kirby]], American comic book artist (d. [[1994]])
104147 *[[1919]] - [[Godfrey Hounsfield]], English electrical engineer and inventor, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[2004]])
104148 *[[1919]] - [[Gyula VÃĄrady]], Hungarian footballer (d. [[2002]])
104149 *[[1924]] - [[Janet Frame]], New Zealand author
104150 *1924 - [[Peggy Ryan]], American actress (d. [[2004]])
104151 *[[1925]] - [[Donald O'Connor]], American singer, dancer, and actor (d. [[2003]])
104152 *[[1929]] - [[Istvan Kertesz]], Hungarian conductor (d. [[1973]])
104153 *[[1930]] - [[Ben Gazzara]], American actor
104154 *[[1931]] - [[John Shirley-Quirk]], English bass-baritone
104155 *[[1932]] - [[Andy Bathgate]], Canadian [[ice hockey]] player
104156 *[[1938]] - [[Paul Martin]], [[Prime Minister of Canada]]
104157 *1938 - [[Maurizio Costanzo]], Italian television journalist
104158 *[[1941]] - [[Sybille de Selys Longchamps|Baroness Sybille de Selys Longchamps]], Belgian aristocrat
104159 *[[1942]] - [[Sterling Morrison]], American guitarist ([[The Velvet Underground]]) (d. [[1995]])
104160 *[[1943]] - [[David Soul]], American actor
104161 *1943 - [[Lou Piniella]], baseball manager
104162 *[[1944]] - [[Marianne Heemskerk]], Dutch swimmer
104163 *[[1947]] - [[Liza Wang]], Hong Kong actress
104164 *[[1957]] - [[Daniel Stern (actor)|Daniel Stern]], American actor
104165 *1957 - [[Rick Rossovich]], American actor
104166 *[[1958]] - [[Scott Hamilton]], American figure skater
104167 *[[1960]] - [[Emma Samms]], English actress
104168 *[[1961]] - [[Kim Appleby]], British singer
104169 *[[1965]] - [[Amanda Tapping]], Canadian actress
104170 *[[1965]] - [[Shania Twain]], Canadian singer
104171 *[[1966]] - [[RenÊ Higuita]], Colombian football goalkeeper
104172 *[[1968]] - [[Billy Boyd]], Scottish actor
104173 *[[1969]] - [[Jason Priestley]], Canadian actor
104174 *1969 - [[Jack Black (actor)|Jack Black]], American actor and musician
104175 *[[1971]] - [[Janet Evans]], American swimmer
104176 *[[1978]] - [[Jess Margera]], American drummer
104177 *[[1979]] - [[Robert Hoyzer]], German football referee
104178 *[[1981]] - [[Martin Erat]], Czech hockey player
104179 *[[1982]] - [[LeAnn Rimes]], American singer
104180
104181 ==Deaths==
104182 *[[388]] - [[Magnus Maximus]], [[Roman usurper]] against [[Valentinian III]]
104183 *[[430]] - [[Augustine of Hippo]], North African saint and theologian (b. [[354]])
104184 *[[1341]] - King [[Leo V of Armenia]] (murdered) (b. [[1309]])
104185 *[[1481]] - King [[Afonso V of Portugal]] (b. [[1432]])
104186 *[[1645]] - [[Hugo Grotius]], Dutch philosopher and writer (b. [[1583]])
104187 *[[1654]] - [[Axel Oxenstierna]], Lord High Chancellor of Sweden (b. [[1583]])
104188 *[[1678]] - [[John Berkeley, 1st Baron Berkeley of Stratton]], English soldier (b. [[1602]])
104189 *[[1757]] - [[David Hartley (philosopher)|David Hartley]], English philosopher (b. [[1705]])
104190 *[[1784]] - [[Junípero Serra]], Spanish Franciscan missionary (b. [[1713]])
104191 *[[1785]] - [[Jean-Baptiste Pigalle]], French sculptor (b. [[1714]])
104192 *[[1793]] - [[Adam Philippe, Comte de Custine]], French general (executed) (b. [[1740]])
104193 *[[1805]] - [[Alexander Carlyle]], Scottish church leader (b. [[1722]])
104194 *[[1818]] - [[Jean Baptiste Point du Sable]], founder of Chicago
104195 *[[1839]] - [[William Smith (geologist)|William Smith]], English geologist (b. [[1769]])
104196 *[[1900]] - [[Henry Sidgwick]], English philosopher (b. [[1838]])
104197 *[[1903]] - [[Frederick Law Olmsted]], American landscape architect (b. [[1822]])
104198 *[[1919]] - [[Louis Botha]], Boer leader (b. [[1862]])
104199 *[[1943]] - King [[Boris III of Bulgaria]] (b. [[1894]])
104200 *[[1959]] - [[Bohuslav Martinů]], Romanian composer (b. [[1890]])
104201 *[[1965]] - [[Giulio Racah]], Israeli physicist (b. [[1909]])
104202 *[[1975]] - [[Fritz Wotruba]], Austrian sculptor (b. [[1907]])
104203 *[[1981]] - [[BÊla Guttman]], Hungarian footballer (b. [[1900]])
104204 *[[1985]] - [[Ruth Gordon]], American actress (b. [[1896]])
104205 *[[1987]] - [[John Huston]], American movie director (b. [[1906]])
104206 *[[1990]] - [[Willy Vandersteen]], Belgian cartoonist (b. [[1913]])
104207 *[[1993]] - [[William Stafford]], American writer (b. [[1914]])
104208 *[[1995]] - [[Michael Ende]], German writer (b. [[1929]])
104209 *[[2005]] - [[Esther Szekeres]], Hungarian mathematician (b. [[1910]])
104210 *2005 - [[George Szekeres]], Hungarian mathematican (b. [[1911]])
104211
104212 ==Holidays and observances==
104213 *[[Hong Kong]]: Liberation Day ([[1945]])
104214 *Many Christian churches: feast day of Saint [[Augustine of Hippo]].
104215
104216 ==External links==
104217 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/28 BBC: On This Day]
104218
104219 ----
104220
104221 [[August 27]] - [[August 29]] - [[July 28]] - [[September 28]] &amp;ndash; [[historical anniversaries|listing of all days]]
104222
104223 {{months}}
104224
104225 [[af:28 Augustus]]
104226 [[ar:28 ØŖØēØŗØˇØŗ]]
104227 [[an:28 d'agosto]]
104228 [[ast:28 d'agostu]]
104229 [[bg:28 авĐŗŅƒŅŅ‚]]
104230 [[be:28 ĐļĐŊŅ–ŅžĐŊŅ]]
104231 [[bs:28. august]]
104232 [[ca:28 d'agost]]
104233 [[ceb:Agosto 28]]
104234 [[cv:ÇŅƒŅ€ĐģĐ°, 28]]
104235 [[co:28 d'aostu]]
104236 [[cs:28. srpen]]
104237 [[cy:28 Awst]]
104238 [[da:28. august]]
104239 [[de:28. August]]
104240 [[et:28. august]]
104241 [[el:28 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
104242 [[es:28 de agosto]]
104243 [[eo:28-a de aÅ­gusto]]
104244 [[eu:Abuztuaren 28]]
104245 [[fo:28. august]]
104246 [[fr:28 aoÃģt]]
104247 [[fy:28 augustus]]
104248 [[ga:28 LÃēnasa]]
104249 [[gl:28 de agosto]]
104250 [[ko:8ė›” 28ėŧ]]
104251 [[hr:28. kolovoza]]
104252 [[io:28 di agosto]]
104253 [[id:28 Agustus]]
104254 [[ia:28 de augusto]]
104255 [[ie:28 august]]
104256 [[is:28. ÃĄgÃēst]]
104257 [[it:28 agosto]]
104258 [[he:28 באוגוסט]]
104259 [[jv:28 Agustus]]
104260 [[ka:28 აგვისáƒĸო]]
104261 [[csb:28 zÊlnika]]
104262 [[ku:28'ÃĒ gelawÃĒjÃĒ]]
104263 [[la:28 Augusti]]
104264 [[lt:RugpjÅĢčio 28]]
104265 [[lb:28. August]]
104266 [[hu:Augusztus 28]]
104267 [[mk:28 авĐŗŅƒŅŅ‚]]
104268 [[ms:28 Ogos]]
104269 [[nap:28 'e aÚsto]]
104270 [[nl:28 augustus]]
104271 [[ja:8月28æ—Ĩ]]
104272 [[no:28. august]]
104273 [[nn:28. august]]
104274 [[oc:28 d'agost]]
104275 [[pl:28 sierpnia]]
104276 [[pt:28 de Agosto]]
104277 [[ro:28 august]]
104278 [[ru:28 авĐŗŅƒŅŅ‚Đ°]]
104279 [[sco:28 August]]
104280 [[sq:28 Gusht]]
104281 [[scn:28 di austu]]
104282 [[simple:August 28]]
104283 [[sk:28. august]]
104284 [[sl:28. avgust]]
104285 [[sr:28. авĐŗŅƒŅŅ‚]]
104286 [[fi:28. elokuuta]]
104287 [[sv:28 augusti]]
104288 [[tl:Agosto 28]]
104289 [[tt:28. August]]
104290 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 28]]
104291 [[th:28 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
104292 [[vi:28 thÃĄng 8]]
104293 [[tr:28 Ağustos]]
104294 [[uk:28 ŅĐĩŅ€ĐŋĐŊŅ]]
104295 [[wa:28 d' awousse]]
104296 [[war:Agosto 28]]
104297 [[zh:8月28æ—Ĩ]]
104298 [[pam:Agostu 28]]</text>
104299 </revision>
104300 </page>
104301 <page>
104302 <title>AvoidBiasDebate</title>
104303 <id>1782</id>
104304 <revision>
104305 <id>15900247</id>
104306 <timestamp>2002-04-17T16:56:03Z</timestamp>
104307 <contributor>
104308 <username>Lee Daniel Crocker</username>
104309 <id>43</id>
104310 </contributor>
104311 <comment>*</comment>
104312 <text xml:space="preserve">#REDIRECT [[wikipedia talk:Neutral point of view]]</text>
104313 </revision>
104314 </page>
104315 <page>
104316 <title>Aisha</title>
104317 <id>1783</id>
104318 <revision>
104319 <id>41720947</id>
104320 <timestamp>2006-03-01T07:37:28Z</timestamp>
104321 <contributor>
104322 <username>Savidan</username>
104323 <id>677067</id>
104324 </contributor>
104325 <comment>fix link</comment>
104326 <text xml:space="preserve">{{otheruses}}
104327 {{WivesMuhammad}}
104328 '''Aisha''', '''Ayesha''', ''''A'isha''', or ''''Aisha''' ([[Arabic language|Arabic ]]ؚاØĻش؊ ''`ā'isha'', &quot;she who lives&quot;) was a wife of [[Muhammad]], whom Muslims regard as the final prophet of [[Islam]].
104329
104330 == Early life ==
104331 It is not clear when Aisha was born. Most scholars calculate her age by reference to the date of her marriage to Muhammad ([[622]]) and then subtracting her age at marriage. However, there are many theories as to [[Aisha#Young marriage age controversy|her age at marriage]].
104332
104333 Aisha was the daughter of [[Abu Bakr]] of [[Mecca]]. They belonged to the [[Bani Tamim]] clan of the tribe of the [[Quraysh]], the tribe to which Muhammad also belonged. Aisha is said to have followed her father in accepting Islam when she was still young. She also joined him in his migration to [[Ethiopia]] in [[615]] CE; a number of Mecca's Muslims emigrated then, seeking refuge from persecution by the Meccans who still followed their pre-Islamic religions.
104334
104335 According to the early Islamic historian [[al-Tabari]], Aisha's father tried to spare her the dangers and discomfort of the journey by solemnizing her marriage to her fiance, Jubair, son of Mut`am ibn `Adi. However, Mut’am refused to honor the long-standing betrothal, as he did not wish his family to be connected to the Muslim outcasts. The emigration to Ethiopia proved temporary and Abu Bakr's family returned to Mecca within a few years. Aisha was then betrothed to Muhammad.
104336
104337 == Aisha's marriage to Muhammad ==
104338 The marriage was delayed until after the [[Hijra (Islam)|Hijra]], or migration to [[Medina]], in 622. Aisha and her older sister [[Asma]] only moved to Medina after Muhammad had already fled there. Abu Bakr gave Muhammad the money to build a house for himself. After this, the wedding was celebrated very simply, by the bride and groom drinking a bowl of milk in front of witnesses.
104339
104340 === Status as &quot;favorite wife&quot; ===
104341 Even though the marriage may have been politically motivated, to mark the ties between Muhammad and his companion Abu Bakr, most early accounts say that Muhammad and Aisha became sincerely fond of each other. Aisha is usually described as Muhammad's favorite wife. [[Shi'a]] Muslims would disagree with this description, regarding it as politically motivated. They adduce the following episodes as proof that Muhammad and Aisha's marriage did not always go smoothly.
104342
104343 ==== Aisha accused of adultery ====
104344 Aisha was traveling with her husband Muhammad and some of his followers. She left camp in the morning to search for her lost necklace; when she returned, she found that the company had broken camp and left without her. She waited patiently for half a day, until she was rescued by a man named Safwan and taken to rejoin the caravan.
104345
104346 Malicious tongues started to wag, claiming that she must have been having an affair with Safwan. Some urged Muhammad to divorce his wife. He then received a revelation directing that adultery be proven by four eyewitnesses, rather than simply inferred from opportunity. One passage of the Qur'an, &quot;Verily! They who spread the slander are a gang among you...&quot; (Qur'an 24.11), is usually taken as a rebuke to those who slandered Aisha.
104347
104348 ====The story of the honey====
104349 According to one widely-accepted tale, Muhammad's wife Zainab bint Jahsh was given a skin filled with honey, which she shared with her husband. He was fond of sweets and stayed overlong with Zainab bint Jash; at least in the opinion of Aisha and her co-wife [[Hafsa]]. Aisha and Hafsa conspired. Each of them was to tell Muhammad that the honey had given him bad breath. When he heard this from two wives, he believed that it was true and swore that he would eat no more of the honey. Soon afterwards, he reported that he had received a revelation, in which he was told that he could eat anything permitted by God (Qur'an 66:1). In the following verses, Muhammad's wives are rebuked for their unruliness: &quot;your hearts are inclined (to oppose him)&quot;.
104350
104351 Word spread in the small Muslim community that Muhammad's wives were tyrannizing over the mild-mannered man, speaking sharply to him and conspiring against him. Umar, Hafsa's father, scolded his daughter and also spoke to Muhammad of the matter. Muhammad, saddened and upset, separated from his wives for a month, sleeping by himself on a lumpy mattress. By the end of this time, his wives were humbled and harmony, of a sort, was restored.
104352
104353 When Muslim commentators on the [[Qur'an]] explicate [[Surah]] 66, it is usually this story that is told to explain the &quot;occasion of revelation&quot;.
104354
104355 There is a similar but alternative explanation of [[At-Tahrim|Surah 66]], also involving Aisha. In this story, Aisha and her co-wives were unhappy because Muhammad was infatuated with [[Maria al-Qibtiyya]], the Christian Coptic woman who bore Muhammad a brief-lived son. (Some accounts say that she was a slave, some that she converted to Islam, was freed, and was taken as a wife.)
104356
104357 ==== The death of Muhammad ====
104358 Ibn Ishaq, in his ''Sirat Rasulallah'', states that during Muhammad's last illness, he sought Aisha's apartments and died with his head in her lap. The Sunni take this as evidence of Muhammad's fondness for Aisha.
104359
104360 Aisha never remarried after Muhammad's death. A passage in the Qur'an forbids any Muslim to marry the prophet's widows.
104361
104362 : ''Nor is it right for you that ye should annoy God's Apostle, or that ye should marry his widows after him at any time. Truly such a thing is in God's sight an enormity.'' (Al-Ahzab 33: 53)
104363
104364 ==After Muhammad ==
104365 === Aisha's father becomes the first caliph ===
104366 After Muhammad's death in 632 C.E., Aisha's father Abu Bakr became the first [[caliph]], or leader of the Muslims. This matter is extremely controversial. Shi'a believe that Ali should have been chosen to lead; Sunni maintain that the community chose Abu Bakr, and did so in accordance with Muhammad's wishes. This is discussed in much greater detail in the article [[Succession to Muhammad]].
104367
104368 ===The battle of the camel===
104369 Abu Bakr's reign was short, and in 634 C.E. he was succeeded by [[Umar ibn al-Khattab|Umar]], as caliph. Umar reigned 10 years, and was then followed by [[Uthman ibn Affan|Uthman]] in 644 C.E. Both of these men had been among Muhammad's earliest followers, were linked to him by clanship and marriage, and had taken prominent parts in various military campaigns.
104370
104371 Aisha, in the meantime, lived in Medina and made several pilgrimages to Mecca.
104372 In 656 C.E. Uthman was killed by rebellious Muslim soldiers. The rebels then asked Ali to be the new caliph. Many reports absolve Ali of complicity in the murder. He is reported to have refused the caliphate, saying, &quot;You are not a people fit for my rulership nor am I a master fit for you people&quot;. He agreed to rule only after his followers persisted.
104373
104374 Aisha raised a small army which confronted [[Ali]]'s army outside the city of [[Basra]]. Battle ensued and Aisha's forces were defeated. Aisha was directing her forces from a howdah on the back of a camel; this [[656]] battle is therefore called the [[Battle of the Camel]].
104375
104376 Ali captured Aisha but declined to harm her. He sent her back to Medina under military escort. She lived a retired life until she died in approximately [[678]].
104377
104378 == Young marriage age controversy ==
104379 The age of Aisha at marriage is an extremely contentious issue. On the one hand, there are several [[hadith]]s (said to have been narrated by Aisha herself) which state she was six or seven years old when betrothed and nine when the marriage was consummated. On the other hand, calculations based on information found in an early Muslim chronicler, [[Ibn Ishaq]], indicate that Aisha was at least fourteen to sixteen years old, thus past the age of [[puberty]]. Other [[hadith]]s suggest that Aisha may have been nineteen or twenty years old when she married.
104380
104381 Many Muslim scholars have accepted the tradition that Aisha was nine years old when the marriage was consummated. This has in turn led critics to denounce Muhammad for having sexual relations with a girl so young, which in modern times would be classified as [[child sexual abuse]]. Some respond to this criticism by claiming that Aisha was post-pubescent at nine and that early [[marriageable age|marriages]] were common in most cultures until fairly recent times.
104382
104383 However, other Muslim scholars point to other traditions that conflict with those attributed to Aisha in this matter. If the other traditions are right, this would imply that Aisha was either confused in her dating, was exaggerating her youth at marriage, or that her stories (which were not written down until more than 100 years after her death) had been garbled in transmission. If we believe traditions that say she was post-pubescent when married, then these other traditions, from [[Ibn Ishaq]] and [[Tabari]] and others, seem much more convincing.
104384
104385 From the viewpoint of the Islamic clergy, the [[ulema]], this explanation, while relieving them of one difficulty, poses another. The &quot;late marriage&quot; argument values the biographical and historical literature, the [[sira]], over the canonical [[hadith]], or oral traditions accepted by the ulema. However, anything that threatens the value of the hadith, and especially hadith narrated by Aisha, threatens the whole elaborate structure of Islamic law, or [[sharia]]. The [[Shi'a]] version of shari'a is less at risk in this one instance, as the Shi'a deprecate anything sourced to Aisha.
104386
104387 Liberal Muslims do not see any problem with saving Muhammad's character at the expense of shari'a. Conservative Muslims, and the ulema, tend to embrace the &quot;early puberty&quot; theories.
104388
104389 === Evidence that Aisha was nine when the marriage was consummated ===
104390 These traditions are from the hadith collections of [[Bukhari]] (d. [[870]]) and [[Muslim b. al-Hajjaj]] (d. [[875]]). These two collections are in general regarded as the most authentic by [[Sunni]] Muslims.
104391
104392 * Sahih Muslim Book 008, Number 3310: 'Aisha (Allah be pleased with her) reported: Allah's Apostle (may peace be upon him) married me when I was six years old, and I was admitted to his house when I was nine years old.
104393
104394 * Sahih Bukhari Volume 7, Book 62, Number 88 Narrated 'Urwa: The Prophet wrote the (marriage contract) with 'Aisha while she was six years old and consummated his marriage with her while she was nine years old and she remained with him for nine years (i.e. till his death).
104395
104396 * Sahih Bukhari Volume 7, Book 62, Number 64 Narrated 'Aisha: that the Prophet married her when she was six years old and he consummated his marriage when she was nine years old, and then she remained with him for nine years (i.e., till his death).
104397
104398 * Sahih Bukhari 8:151, Narrated 'Aisha: &quot;I used to play with the dolls in the presence of the Prophet , and my girl friends also used to play with me. When Allah's Apostle used to enter (my dwelling place) they used to hide themselves, but the Prophet would call them to join and play with me. (The playing with the dolls and similar images is forbidden, but it was allowed for 'Aisha at that time, as she was a little girl, not yet reached the age of puberty.) (Fateh-al-Bari page 143, Vol.13)
104399
104400 * Sahih Bukhari vol. 5, Book 58, Number 234 Narrated 'Aisha: The prophet engaged me when I was a girl of six. We went to Medina and stayed at the home of Harith Kharzraj. Then I got ill and my hair fell down. Later on my hair grew (again) and my mother, Um Ruman, came to me while I was playing in a swing with some of my girl friends. She called me, and I went to her, not knowing what she wanted to do to me. She caught me by the hand and made me stand at the door of the house. I was breathless then, and when my breathing became all right, she took some water and rubbed my face and head with it. Then she took me into the house. There in the house I saw some Ansari women who said, &quot;Best wishes and Allah's blessing and a good luck.&quot; Then she entrusted me to them and they prepared me (for the marriage).
104401
104402 Other hadith in Bukhari repeat this information.
104403
104404 History from [[Tabari]], volume 9, page 131
104405
104406 * &quot;Then the men and women got up and left. The Messenger of God consummated his marriage with me in my house when I was nine years old. Neither a camel nor a sheep was slaughtered on behalf of me&quot;......(The Prophet) married her three years before the Emigration, when she was seven years old and consummated the marriage when she was nine years old, after he had emigrated to Medina in Shawwal. She was eighteen years old when he died.
104407
104408 === Evidence that Aisha was older than nine ===
104409 * According to [[Ibn Hisham]]'s recension of [[Ibn Ishaq]]'s (d. [[768]]) biography of Prophet Muhammad, the ''Sirat Rashul Allah'', the earliest surviving biography of Muhammad, Aisha accepted Islam before [[Umar ibn al-Khattab]]. If true, then Aisha accepted Islam during the first few years of Islam. She could not have been less than 14 years in 1 AH - the time she got married (Al-Sirah al-Nabawiyyah, Ibn Hisham, Vol 1, Pg 227 - 234, Arabic, Maktabah al-Riyadh al-hadithah, Al-Riyadh).
104410
104411 * [[Tabari]] reports that when Abu Bakr planned on migrating to [[Ethiopia]] (8 years before [[Hijrah]]), he went to Mut`am - with whose son Aisha was engaged at that time - and asked him to take Aisha as his son's wife. Mut`am refused because Abu Bakr had converted to Islam. If Aisha was only six years old at the time of her betrothal to Muhammad, she could not have been born at the time Abu Bakr decided on migrating to [[Ethiopia]]. ''Tehqiq e umar e Siddiqah e Ka'inat, Habib ur Rahman Kandhalwi'', p. 38.
104412
104413 * Tabari in his treatise on Islamic history reports that Abu Bakr had four children and all four were born during the [[Jahiliyyah]] - the pre Islamic period. If Aisha was born in the period of jahiliyyah, she could not have been less than 14 years in 1 AH. ''Tarikh al-umam wa al-mamloo'k'', Al-Tabari, Vol. 4, p. 50.
104414
104415 * According to Ibn Hajar, [[Fatima Zahra|Fatima]] was five years older than Aisha. Fatima is reported to have been born when Muhammad was 35 years old. Muhammad migrated to Medina when he was 52, making Aisha 14 years old in 1 AH. ''Tamyeez al-Sahaabah'', Ibn Hajar al-Asqalaniy'', Vol. 4, p. 377.
104416
104417 * According to Abd ar Rahman ibn Abi Zannad, Aisha was 10 years younger than her sister Asma. (Siyar a´lÃĸm an-nubalÃĸ', adh-DhahabÃŽ, Vol. 2, p. 289, Mu'assat ar-RisÃĸla, Beirut, 1992). That is also confirmed by Ibn Kathir (al-BidÃĸya wa-n-nihÃĸya, Ibn KathÃŽr, Bd. 8, S. 371, DÃĸr al-Fikr al-´ArabÃŽ, al-DschÃŽza, 1933). Virtually all other historical reports also agree in this matter. Ibn Kathir also reports that Asma was present when her son died in 73 AH and she herself died 5 days thereafter (other reports differ slightly, giving between 5 and 100 days between the deaths of the two). At the time of her death she was 100 years old (al-BidÃĸya wa-n-nihÃĸya, Ibn KathÃŽr, Vol. 8, p. 372, DÃĸr al-Fikr al-´ArabÃŽ, al-DschÃŽza, 1933). This is also confirmed by Ibn Hadschar al-´AsqalÃĸnÃŽ who reports that she died in 73 or 74 AH at the age of 100 years. (TaqrÃŽb at-tahdhÃŽb, Ibn Hadschar al-´AsqalÃĸnÃŽ, p. 654, BÃĸb fi-n-nisÃĸ', harfu l-alif, Lucknow). But this means, of course, that Asma was 27 or 28 years old at 1 AH and the 10 years youger Aisha already 17 or 18, so when Muhammad and Aisha started to live together she was already 19 or 20.
104418
104419 * Aisha has become known for having at the side of Muhammad in the battle of Badr (see for example hadiths by Muslim) as well as in the battle of Uhud (see e.g. hadiths by Bukhari). Bukhari also reports (KitÃĸb al-maghÃĸzÃŽ, BÃĸb Ghazawat al-Khandaq wa-hiya l-AhzÃĸb) that the Prophet did not allow 14 year olds to participate but allowed them to join on their 15th birthday. This implies that Aisha was older at that time of these battles. However, it's also possible that the age restriction was not applied to Aisha as a wife of Muhammad.
104420
104421 * In a hadith of Bukhari, Aisha says: &quot;I was a young girl (dschÃĸriya) when Surah al-Qamar was revealed (SahÃŽh al-BukhÃĸrÃŽ, KitÃĸb at-tafsÃŽr, BÃĸb qaulihÃŽ Ta´ÃĸlÃĸ &quot;Bali-s-sÃĸ´atu mau´iduhum wa-s-sÃĸ´atu ad-hÃĸ wa-amarr&quot;). That Surah was revealed 8 years before Hijra and at that time Aisha would have been at most a baby (sabiyya) had she been only 9 years old at the age of her marriage. The word dschariya is most fitting for a 6-13 year old which would mean her age of marriage would be anywhere between 14 and 21. However, the exact dates of when al-Qamar was revealed is disputed. Thus, making this a weak argument.
104422
104423 * Most Muslims generally agree that Aisha had reached the age of puberty at her marriage. This would be unlikely for a 9 year old. In addition, Aisha was already termed 'bikr', meaning virgin adult woman even when the marriage was discussed, i.e. 3 years before the actual marriage. (Musnad Ahmad ibn Hanbal, Vol. 6, p. 210, DÃĸr IhyÃĸ' at-TurÃĸth al-´ArabÃŽ, Beirut).
104424
104425 * Some Muslim scholars{{fact}} say that the hadith collectors Bukhari and Muslim applied less stringent standards to hadith relating to history than they did to hadith relating directly to prayer and family law. Hence a historical tradition included in Bukhari or Muslim cannot be presumed to be &quot;strong&quot;.
104426
104427 == Sunni and Shia views of Aisha ==
104428 [[Sunni]] historians praise Aisha as a Mother of Believers and a learned woman, who tirelessly recounted stories from the life of Muhammad and explained Muslim history and traditions. She is considered to be one of the foremost scholars of Islam's early age and is revered as a role model by millions of women.
104429
104430 [[Shi'a]] historians take a much dimmer view of Aisha. They believe that Ali should have been the first caliph, and that the other three caliphs were usurpers. Aisha not only supported [[Umar]], [[Uthman]] and her father [[Abu Bakr]], she also raised an army and fought against [[Ali]], her step-son-in-law. The Shia believe that in opposing Ali, the divinely appointed successor of Muhammad, she committed a grievous sin.
104431
104432 ==See also==
104433 * [[Muhammad]]
104434 * [[Muhammad's marriages]]
104435 * [[Family tree of Aisha]]
104436
104437 ==External links==
104438 Sunni view of Aisha:
104439 * [http://www.usc.edu/dept/MSA/history/biographies/sahaabah/bio.AISHAH_BINT_ABI_BAKR.html Biography of Aisha]
104440
104441 Shi'a view of Aisha:
104442 * [http://www.islamic-paths.org/Home/English/Sects/Shiite/Encyclopedia/Chapter_1a_Part09.htm Shi'a view of Aisha]
104443 * [http://www.answering-ansar.org/answers/ayesha/en/chap1.php Answering some important issues regarding Aisha]
104444
104445 Questioning hadith re Aisha's age at marriage:
104446 * [http://www.muslim.org/islam/aisha-age.htm#_ftn3 From muslim.org]
104447 * [http://www.understanding-islam.com/ri/mi-005.htm From understanding-islam.com]
104448
104449 [[Category:678 deaths]]
104450 [[Category:Women in war]]
104451 [[Category:Muslim women]]
104452 [[Category:Arab people]]
104453 [[Category:Islam and controversy]]
104454 [[Category:Islamic history]]
104455
104456 [[ar:ؚاØĻش؊ بŲ†ØĒ ØŖبŲŠ بŲƒØą]]
104457 [[de:ĘŋĀʾischa bint AbÄĢ Bakr]]
104458 [[eo:Aiŝa]]
104459 [[fa:ؚایشŲ‡]]
104460 [[fr:Aïcha]]
104461 [[gl:Aisha - ؚاØĻØ´Ų‡]]
104462 [[it:Aisha]]
104463 [[nl:Aïsja]]
104464 [[ja:ã‚ĸãƒŧã‚¤ã‚ˇãƒŖ]]
104465 [[pl:Aisza]]
104466 [[sv:Aisha]]
104467 [[th:ā¸­ā¸˛ā¸­ā¸´ā¸Šā¸°ā¸Ģā¸ē]]
104468 [[zh:é˜ŋäŧŠčŽŽ]]</text>
104469 </revision>
104470 </page>
104471 <page>
104472 <title>Athenian democracy</title>
104473 <id>1784</id>
104474 <revision>
104475 <id>41961728</id>
104476 <timestamp>2006-03-02T22:23:53Z</timestamp>
104477 <contributor>
104478 <username>TKE</username>
104479 <id>531146</id>
104480 </contributor>
104481 <comment>Revert to revision 41098540 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
104482 <text xml:space="preserve">[[Image:ac.pnyx.jpg|thumb|400px|The speaker's platform in the [[Pnyx]], the meeting ground of the assembly where all the great political struggles of Athens were fought during the &quot;Golden Age&quot;. Here Athenian statesmen stood to speak, such as [[Pericles]] and [[Aristides]] in the 5th century BC and [[Demosthenes]] and [[Aeschines]] in the 4th — along with countless humbler citizens as well. In the background high on the [[Acropolis, Athens|Acropolis]] is the [[Parthenon]], the temple of [[Athena]], the city's protective goddess, looking down upon their deliberations.]]
104483
104484 The '''Athenian democracy''' (sometimes called '''classical democracy''') was the [[democracy|democratic]] system developed in the [[Ancient Greece|Greek]] [[city-state]] of [[Athens]] (comprising the central city-state of Athens and its surrounding territory [[Attica, Greece|Attica]]). Athens was one of the very first known democracies, and probably the most important in ancient times. Other Greek cities set up democracies, most but not all following an Athenian model, but none were as powerful or as stable (or, relatively speaking, as well-documented) as that of Athens. It remains a unique and intriguing experiment in direct democracy where the people do not elect representatives to vote on their behalf but vote on legislation and executive bills in their own right. Participation was by no means open to all inhabitants of Attica, but the in-group of participants was constituted with no reference to economic class and they participated on a scale that was truly phenomenal. Never before had so many people spent so much of their time in governing themselves.
104485
104486 The dates traditionally given for it are from around 508 BC with its foundation under [[Cleisthenes]] to its suppression under the [[Macedon|Macedonia]]ns in 322 BC. The Athenians themselves however were more likely to talk about it as going back to [[Solon]] almost a century before Cleisthenes, or even to retroject it into their remotest past ([[Theseus]]). There was also a short period of revival in the 4th century BC. Nor was the democratic period entirely continuous; there were two brief takeovers by [[oligarch]]ic [[revolution]]aries.
104487
104488 The word &quot;democracy&quot; combines the elements ''demos'' (&quot;the people&quot;) and ''kratos'' (&quot;force, power&quot;). ''Kratos'' is an unexpectedly brutish word. In the words &quot;monarchy&quot; and &quot;oligarchy&quot;, the second element ''arche'' means rule, leading, or being first. It is possible that the term &quot;democracy&quot; was coined by its detractors who rejected the possibility of, so to speak, a valid &quot;demarchy&quot;. Whatever its original tone, the term was adopted wholeheartedly by Athenian democrats. (The word is attested in some of the earliest Greek prose to survive, but even this may not have been written before 440 or 430 BC. It is not at all certain that the word goes back to the beginning of the democracy, but from around 460 BC at any rate an individual is known whose parents had decided to name him 'Democrates', a name evidently manufactured as a gesture of democratic loyalty.)
104489
104490 ==Overview==
104491 ===Assembly===
104492 The central events of the Athenian democracy were the meetings of the assembly. Unlike a [[parliament]], the assembly's 'members' were not elected, but attended by right when and if they chose. Members of the Assembly were chosen by lot. It was open only to adult male citizens over the age of 30, but to all of them: unlike earlier schemes there was no property qualification. Although the entire citizen body never gathered in one place at one time, this body did not represent the people — it was them. That is to say, the version of Greek democracy created at Athens was a [[direct democracy]] and not [[representative democracy]]: there was no electorate selecting representatives to decide for them. Members were chosen annually by a form of lottery. It was an honor and a privilege to be part of the Assembly. It was the duty of the individual to attend.
104493
104494 The ''ekklesia'' had at least four functions: it made executive pronouncements (decrees, such as deciding to go to war or granting citizenship to a foreigner); it elected some officials; it legislated; and it tried political crimes. As the system evolved these last two functions were shifted to the law courts. The standard format was that of speakers making speeches for and against a position followed by a general vote (usually by show of hands) of yes or no. Unlike in modern parliaments, the speeches were actually attempts to persuade those present. Though there might be blocs of opinion, sometimes enduring, on crucial issues, there were no political parties and likewise no [[government]] or [[opposition]] (as in the [[Westminster system]]). In effect, the 'government' was whatever speaker(s) the assembly agreed with on a particular day. Voting was by simple [[majority rule|majority]]. In the 5th century at least there were scarcely any limits on the power exercised by the assembly. If the assembly broke the law, the only thing that might happen is that they would punish those who had made the proposal that they had agreed to. If a mistake had been made, from their viewpoint it could only be because they had been 'misled'.
104495
104496 ===Officeholders===
104497 Administration was in the hands of officeholders, over a thousand each year. They were mostly chosen by [[sortition|lot]], with a much smaller (and more prestigious) group [[elected]]. Neither was compulsory; individuals had to nominate themselves for both selection methods. By and large the power exercised by these officials was routine administration and quite limited. In particular, those chosen by lot were citizens acting without particular expertise. This was almost inevitable since, with the notable exception of the generals ([[strategoi]]), each office could be held by the same person only once. Part of the ethos of democracy, however, was the building of general competence by ongoing involvement. In the 5th century version of the democracy, the ten annually elected generals were often very prominent, but for those who had power, it lay primarily in their frequent speeches and in the respect accorded them in the assembly, rather than their vested powers. While citizens voting in the assembly ''were'' the people and so were free of review or punishment, those same citizens when holding an office ''served'' the people and could be punished very severely. All of them were subject to a review beforehand that might disqualify them for office and an examination after stepping down. Officeholders were the agents of the people, not their representatives.
104498
104499 ===Council of 500===
104500 The council (''boule'') of 500, the largest board of officeholders, formed a steering committee for the assembly, drafting legislation and setting its agenda. The 500 was selected by a lottery, held each year. A citizen could serve on the council twice in their lifetime. Any citizen could submit proposals to the council for drafting. Technically it was forbidden for the assembly to vote on measures without a pre-proposal (''probouleuma'') from the council. These might be concrete, worked-out proposals or 'open', that is little more than items on the agenda. The council, or rotating sections of it, also served as a kind of front desk for the state, on duty in the council chamber 24 hours a day. Every day of the year one of these councillors was head of state for the day (for instance, holding the keys to the treasury and the seal of the city and being responsible for greeting foreign envoys, and in the 5th century presiding over the assembly and council meetings). It has been calculated that one quarter of all citizens must at one time in their lives have held the post. This head of state position could be held once only in a lifetime.
104501
104502 ===Courts===
104503 Courts consisting of massive juries (smallest 200, largest 6000) heard cases argued by litigants (both citizen and non-citizen) without the involvement of lawyers or judges. In particular there was no state prosecutor: all cases, even the most public (e.g. for treason) had to be brought by citizens acting on their own initiative. These juries formed a second site for the expression of popular sovereignty: as in the assembly, citizens acting as jurors acted as the people and were immune from review or punishment. (Notably when the jurors are addressed by speakers as &quot;you&quot;, they can be referred to as having committed any act ever committed by the 'Athenian people', such as battles fought before any of them were born or court decisions made by other juries whose membership may have had no overlap with those currently addressed.) Jurors however had a minimum age of 30 and they were under oath. From an Athenian perspective, where the young are rash and age brings wisdom and where an oath is a serious matter, both of these requirements gave jurors more weight than the citizens attending the assembly. Here only the legislative function of courts will be described, though this by no means exhausts the relevance of the courts to the workings of the democracy.
104504
104505 ===Shifting balance between Assembly and Courts===
104506 As the system evolved, the courts (that is, citizens under another guise) intruded upon the power of the assembly. From 355 BC political trials were no longer held in the assembly, but only in a court. In 416 BC the [[graphe paranomon]] (&quot;indictment against measures contrary to the laws&quot;) was introduced. Under this anything passed by the assembly or even proposed but not yet voted on, could be put on hold for review before a jury — which might annul it and perhaps punish the proposer as well. Remarkably, it seems that a measure blocked before the assembly voted on it did not need to go back to the assembly if it survived the court challenge: the court was enough to validate it. Once again it is important to bear in mind the lack of 'neutral' state intervention. To give a schematic scenario by way of illustration: two men have clashed in the assembly about a proposal put by one of them; it passed, and now the two of them go to court with the loser in the assembly prosecuting both the law and its proposer. The quantity of these suits was enormous: in effect the courts became a kind of upper house.
104507
104508 In the 5th century there was in effect no procedural difference between an executive decree and a law: they were both simply passed by the assembly. But from 403 BC they were set sharply apart. Henceforth laws were made not in the assembly, but by special panels of 1000 citizens drawn from the annual jury pool of 6000. They were known as the ''nomothetai'', the lawmakers. Here again it is not anything like a legislative commission sitting down to discuss the pros and cons and drafting proposals, but the format is that of a trial, voting yes or no after a clash of speeches.
104509
104510 ===Citizen-initiator===
104511 The institutions sketched above — assembly, officeholders, council, courts — are incomplete without the figure that drove the whole system, ''Ho boulomenos'', he who wishes, or anyone who wishes. This expression encapsulated the right of citizens to take the initiative: to stand to speak in the assembly, to initiate a public law suit (that is, one held to affect the political community as a whole), to propose a law before the lawmakers or to approach the council with suggestions. Unlike officeholders, the citizen initiator was not vetted before taking up office or automatically reviewed after stepping down — it had after all no set tenure and might be an action lasting only a moment. But any stepping forward into the democratic limelight was risky and if someone chose (another citizen initiator) they could be called to account for their actions and punished.
104512
104513 The degree of participation among citizens varied greatly, along a spectrum from doing virtually nothing towards something like a fulltime committent. But for even the most active citizen the formal basis of his political activity was the invitation issed to everyone (every qualified free male Athenian citizen) by the phrase &quot;whoever wishes&quot;. There are then three functions: the officeholders organized and saw to the complex protocols; ''Ho boulomenos'' was the initiator and the proposer of content; and finally the people, massed in assembly or court or convened as lawmakers, made the decisions, either yes or no, or choosing between alternatives.
104514
104515 ==Participation and exclusion==
104516 ===Size and make-up of the Athenian population===
104517 The population of Attica can only be roughly guessed at as the Athenians themselves never conducted a complete census. Numbers of [[slaves]] and [[metic]]s (resident aliens) in particular will have fluctuated. During the [[4th century BC]], the population of Athens may well have comprised some 250,000—300,000 people. Citizen families may have amounted to 100,000 people and out of these some 30,000 will have been the adult male citizens entitled to vote in the assembly. In the mid-5th century the number of adult male citizens was perhaps as high as 60,000, but this number fell precipitously during the Peloponnesian war. This slump was permanent due to the introduction of a stricter definition of citizen described below. From a modern perspective these figures seem pitifully small, but in the world of Greek city-states Athens was huge: most of thousand or so Greek cities could only muster 1000-1500 adult male citizens and Corinth, a major power, had at most 15,000.
104518
104519 The non-citizen component of the population was divided between metics and slaves, with the latter perhaps somewhat more numerous. Around 338 BC the orator [[Hyperides]] (fragment 13) claimed that there were 150,000 slaves in Attica, but this figure is probably not more than an impression: slaves outnumbered those of citizen stock but did not swamp them.
104520
104521 ===Citizenship in Athens===
104522 Only adult male Athenian citizens who had completed their military training as [[ephebe]]s &amp;ndash; effectively twenty years and over &amp;ndash; had the right to vote in Athens. This excluded a majority of the population, namely [[Slavery#Slavery in Greece|slaves]], women and resident foreigners ([[metic]]s). Also disallowed were citizens whose rights were under suspension (typically for failure to pay a debt to the city: see [[Atimia (loss of citizen rights)|atimia]]); for some Athenians this amounted to permanent (and in fact inheritable) disqualification. Still, in contrast with oligarchical societies, there were no real property requirements limiting access. (The property classes of [[Solon]]'s constitution remained on the books, but they were a dead letter). Given the exclusionary and ancestral conception of citizenship held by Greek [[city-states]], a relatively large portion of the population took part in the government of Athens and of other radical democracies like it. At Athens some citizens were far more active than others, but the vast numbers required just for the system to work testify to a breadth of particpation among those eligible that greatly exceeded any present day democracy.
104523
104524 Athenian citizens had to be legitimately descended from citizens&amp;mdash;after the reforms of Pericles in [[450 BC]] on both sides of the family, excluding the children of Athenian men and foreign women. Although the legislation was not retrospective, five years later the Athenians removed 5000 from the citizen registers when a free gift of corn arrived for all citizens from an Egyptian king. Citizenship could be granted by the assembly and was sometimes given to large groups (Plateans in 427 BC, Samians in 405 BC), but by the 4th century only to individuals and by a special vote with a quorum of 6000. This was generally done as a reward for some service to the state. In the course of a century the numbers involved were in the hundreds rather than thousands. This reflected the general conception of the ''polis'' as a community, somewhat like an extended family, rather than as a territorial state.
104525
104526 Modern democracies too have their own exclusions: resident foreigners (legal and otherwise), individuals below a certain age and in some cases incarcerated citizens and those who have committed felonies. The modern form has other limitations as well: the right of voting is usually restricted to once every several years, and voters merely get to choose their representatives in the legislative or executive branches&amp;mdash;and it is these representatives, not the voters themselves, who make policy decisions (with the exception of occasional [[referendum|referenda]]).
104527
104528 ==Main bodies of governance==
104529 There were three political bodies where citizens gathered in numbers running into the hundreds or thousands. These are the assembly (in some cases with a quorum of 6000), the council of 500 (''[[boule]]'') and the courts (a minumum of 200 people, but running at least on some occasions up to 6000). Of these three bodies it is the assembly and the courts that were the true sites of power — although courts, unlike the assembly, were never simply called the ''demos'' (the People) as they were manned by a subset of the citizen body, those over thirty. But crucially citizens voting in both were not liable to review and prosecution as were council members and all other officeholders. In the 5th century BC we often hear of the assembly sitting as a court of judgement itself for trials of political importance and it is not a coincidence that 6000 is the number both for the full quorum for the assembly and for the annual pool from which jurors were picked for particular trials. By the mid-4th century however the assembly's judicial functions were largely curtailed, though it always kept a role in the initiation of various kinds of political trial.
104530
104531 ===Council of 500===
104532 The council (''boule'') of 500, the largest board of officeholders, formed a steering committee for the assembly, drafting legislation and setting its agenda. A citizen could serve on the council twice in their lifetime. Any citizen could submit proposals to the council for drafting. Technically it was forbidden for the assembly to vote on measures without a pre-proposal (''probouleuma'') from the council. These might be concrete, worked-out proposals or 'open', that is little more than items on the agenda. The council, or rotating sections of it, also served as a kind of front desk for the state, on duty in the council chamber 24 hours a day. Every day of the year one of these councillors was head of state for the day (for instance, holding the keys to the treasury and the seal of the city and being responsible for greeting foreign envoys, and in the 5th century presiding over the assembly and council meetings). It has been calculated that one quarter of all citizens must at one time in their lives have held the post. This head of state position could be held once only in a lifetime.
104533
104534 ===Assembly===
104535 As usual in ancient democracies, one had to physically attend a gathering in order to vote. Military service or simple distance prevented the exercise of citizenship. Voting was usually by show of hands (cheirotonia, &quot;arm stretching&quot;) with officials 'judging' the outcome by sight. With thousands of people attending, counting was impossible. For a small category of votes a quorum of 6000 was required, principally grants of citizenship, and here coloured balls were used, white for yes and black for no. Probably at the end of the session, each voter tossed one of these into a large clay jar which was afterwards cracked open for the counting of the ballots. ([[Ostracism]] required to voters to scratch names onto pieces of broken pottery, though this did not occur within the assembly as such.)
104536
104537 In the 5th century BC, there were 10 fixed assembly meetings per year, one in each of the ten [[Attic calendar#State calendar|state months]], with other meetings called as needed. In the following century the meetings were set to forty a year, with four in each state month. (One of these was now as the main meeting, ''kuria ekklesia''.) Additional meetings might still be called, especially as up until 355 BC there were still political trials that were conducted in the assembly rather than in court. The assembly meetings did not occur at fixed intervals, as they had to dodge the annual festivals that were differently placed in each of the twelve lunar months. There was also a tendency for the four meetings to bunch up toward the end of each state month.
104538
104539 Attendance at the assembly was voluntary. In the 5th century public slaves forming a cordon with a red-stained rope herded citizens from the [[agora]] into the assembly meeting place (''[[pnyx]]''), with a fine for those who got the red on their clothes. This, however, cannot compare with the compulsory voting schemes of some modern democracies. It was rather an immediate measure to get enough people rapidly in place, like an aggressive form of ushering. After the restoration of the democracy in 403 BC, pay for assembly attendance was introduced for the first time. At this there was a new enthusiasm for assembly meetings. Only the first 6000 to arrive were admitted and paid, with the red rope now used to keep latecomers at bay. These two uses of the red rope are known from [[Aristophanes]]'s comedy ''Acharnians'' 17-22, the forcing in, and his ''Ekklesiazousai'' 378-9 for the keeping out.
104540
104541 ===Athenian Courts===
104542 Athens had an elaborate legal system centred on the '''''dikasteria''''' or jury courts: the word is derived from '''''dikastes''''', 'judge/juror.' These [[Athenian law court (classical period)|jury courts]] were manned by large panels selected by lot from an annual pool of 6,000 citizens. To be eligible to serve as juror, a citizen had to be over 30 years of age and in possession of full citizen rights (see [[atimia (loss of citizen rights)|atimia]]). The age limit, the same as that for office holders but ten years older than that required for participation in the assembly, gave the courts a certain standing in relation to the assembly: for the Athenians older was wiser. Added to this was the fact that jurors were under oath, which was not a feature of attendance at the assembly. However, the authority exercised by the courts had the same basis as that of the assembly: both were regarded as expressing the direct will of the people. Unlike office holders (magistrates) who could be impeached and prosecuted for misconduct, the jurors could not be censured, for they, in effect, were the people and no authority could be higher than that. A corollary of this was that, at least in words spoken before the jurors, if a court had made an unjust decision, it must have been because it had been misled by a litigant
104543
104544 Essentially there were two grades of suit, a smaller kind known as ''dike'' or private suit, and a larger kind known as ''graphe'' or public suit. For private suits the minimum jury size was 201 (increased to 401 if a sum of over 1000 drachmas was at issue), for public suits 501. For particularly important public suits the jury could be increased by adding in extra allotments of 500. One thousand and 1500 are regularly encountered as jury sizes and on at least one occasion, the first time a new kind of case was brought to court (see [[graphe paranomon]]), all 6,000 members of the juror pool were put onto the one case. In public suits the litgants each had something like three hours to speak, less in private suits.
104545
104546 The cases were put by the litigants themselves in the form of an exchange of single speeches timed by water clock, first prosecutor then defendant. In a public suit the litigants each had three hours to speak, much less in private suits (though here it was in proportion to the amount of money at stake). Decisions were made by voting without any time set aside for deliberation. Nothing, however, stopped jurors from talking informally amongst themselves during the voting procedure and juries could be rowdy shouting out their disapproval or disbelief of things said by the litigants. This may have had some role in building a consensus. The jury could only cast a 'yes' or 'no' vote as to the guilt and sentence of the defendant. For private suits only the victims or their families could prosecute, while for public suits anyone (''ho boulomenos'', 'whoever wants to' i.e. any citizen with full citizen rights) could bring a case since the issues in these major suits were regarded as affecting the community as a whole.
104547
104548 Justice was rapid: no case could last no longer than one day. Some convictions triggered an automatic penalty, but where this was not the case the two litgants each proposed a penalty for the convicted defendant and the jury chose between them in a further vote. No appeal was possible. There was however a mechanism for prosecuting the witnesses of a successful prosecutor, which it appears could lead to the undoing of the earlier verdict.
104549
104550 Payment for jurors was introduced around 462 BC and is ascribed to [[Pericles]], a feature described by Aristotle as fundamental to radical democracy (''Politics'' 1294a37). Pay was raised from 2 to 3 [[obol]]s by [[Cleon]] early in the Peloponnesian war and there it stayed; the original amount is not known. Notably this was introduced more than fifty years before payment for attendance at assembly meetings. Running the courts was one of the major expenses of the Athenian state and there were moments of financial crisis in the 4th century when the courts, at least for private suits, had to be suspended.
104551
104552 The system shows a marked anti-professionalism. No judges presided over the courts nor was there anyone to give legal direction to the jurors, as the magistrates in charge of the courts had only an administrative function and were themselves in any case amateurs (most of the annual magistracies at Athens could only be held once in a lifetime). There were no lawyers as such, but the litigants acted solely in their capacity as citizens. Whatever professionalism there was tended to disguise itself: it was possible to pay for the services of a speechwriter (''logographos'') but this was not advertised in court (except as something your opponent in court has had to resort to), and even politically prominent litigants made some show of disowning special expertise.
104553
104554 ==Officeholders==
104555 Citizens active as office holders served in a quite different capacity from when they voted in the assembly or served as jurors. The assembly and the courts were regarded as the instantiation of the people of Athens: they were the people, no power was above them and they could not be reviewed, impeached or punished. However, when an Athenian took up an office, he was regarded as 'serving' the people. As such, he could be regarded as failing in his duty and be punished for it. There were two methods of selecting people as officeholders, lottery or election. Something like 1100 citizens (including the memebrs of the council of 500) held office each year and about a 100 of these were elected.
104556
104557 ===Selection by lot (Allotment)===
104558 Selection by lottery was the standard means as it was regarded as the more democratic: elections will favour those who are rich, noble, eloquent and well-known, while [[sortition|allotment]] spreads the work of administration throughout the whole citizen body, engaging them in the crucial democratic experience of, to use Aristotle's words (Politics 1317b28-30), &quot;ruling and being ruled in turn.&quot; The allotment of an individual was based on citizenship rather than merit or any form of personal popularity which could be bought. Allotment therefore was seen as a means to prevent the corrupt purchase of votes and it gave citizens a unique form of political equality as all had an equal chance of obtaining government office.
104559
104560 Individuals who were interested in holding office had to nominate themselves as available for selection the year before. Officeholders were paid a stipend, but it was intended as a small sum to cover loss of income fixed at the lowest end of the scale. That is, virtually anyone able to work could earn more elsewhere. Payment is confirmed for the 5th century; was cancelled under the oligarchs in 404; may or may not have been restored after democracy was reinstituted.
104561
104562 The random assignment of responsibility to individuals who may or may not be competent has obvious risks, but the system included features meant to obviate possible problems. Athenians selected for office served as teams (boards, panels). In a group someone will know the right way to do things and those that do not may learn from those that do. During the period of holding a particular office everyone on the team is observing everybody else. There were however officials such as the nine archons, who while seemingly a board carried out very different functions from each other.
104563
104564 There were in fact some limitations on who could hold office. Age restrictions were in place with thirty (and in some cases forty) years as a minimum, rendering something like a third of the adult citizen body ineligible at any one time. An unknown proportion of citizens were also subject to disenfranchisement ([[Atimia (loss of citizen rights)|atimia]]), excluding some of them permanently and others temporarily (depending on the type). Furthermore, all citizens selected were reviewed before taking up office (''dokimasia'') at which they might be disqualified. Competence does not seem to have been the main issue, but rather, at least in the 4th century BC, whether they were loyal democrats or had oligarchic tendencies. After leaving office they were subject to a scrutiny (''euthunai'', literally 'straightenings') to review their performance. Both of these processes were in most cases brief and formulaic, but they opened up in the possibility, if some citizen wanted to take some matter up, of a contest before a jury court. In the case of a scrutiny going to trial, there was the risk for the former officeholder of suffering severe penalties. Finally, even during his period of office, any officeholder could be impeached and removed from office by the assembly. In each of the ten &quot;main meetings&quot; (''kuriai ekklesiai'') a year, the question was explicitly raised in the assembly agenda: were the office holders carrying out their duties correctly?
104565
104566 No office appointed by lot could be held twice by the same individual. The only exception was the boule or council of 500. In this case, simply by demographic necessity, an individual could serve twice in a lifetime. This principle extended down to the secretaries and undersecretaries who served as assistants to magistrates such as the archons. To the Athenians it seems what had to be guarded against was not incompetence but any tendency to use office as a way of accumulating ongoing power.
104567
104568 The powers of officials were precisely defined and their capacity for imitative limited. They administered rather than governed. When it came to penal sanctions, no officeholder could impose a fine over fifty drachmas fine. Anything higher had to go before a court.
104569
104570 ===Elected===
104571 Something like a hundred officials were elected rather than chosen by lot. There were two main categories in this group: those required to handle large sums of money, and the 10 generals, the ''[[strategoi]]''. One reason that financial officials were elected was that any money [[embezzled]] could be recovered from their estates; election in general strongly favoured the rich, but in this case wealth was virtually a prerequisite.
104572
104573 Generals were elected not only because their role required expert knowledge but also because they needed to be people with experience and contacts in the wider Greek world where wars were fought. In the [[5th century BC]], principally as seen through the figure of [[Pericles]], the generals could be among the most powerful people in the state. Yet in the case of Pericles it is wrong to see his power as coming from his long series of annual generalships (each year along with nine others). His office holding was rather an expression and a result of the influence he wielded. That influence was based on his relation with the assembly, a relation that in the first instance lay simply in the right of any citizen to stand and speak before the people. Under the [[4th century|4th century]] version of democracy the roles of general and of key political speaker in the assembly tended to be filled by different persons. In part this was a consequence of the increasingly specialised forms of warfare practiced in the later period.
104574
104575 Elected officials too were subject to review before holding office and scrutiny after office. And they too could be removed from office any time the assembly met. In one case from the [[5th century BC]] the 10 treasurers of the [[Delian]] league (the ''hellenotamiai'') were accused at their scrutinies of misappropriation of funds. Put on trial, they were condemned and executed one by one until before the trial of the tenth and last an error of accounting was discovered, allowing him to go free. ([[Antiphon]] 5.69-70)
104576
104577 ==Individualism in Athenian democracy==
104578 Another interesting insight into Athenian democracy comes from the law that excluded from decisions of war those citizens who had property close to the city walls - on the basis that they had a personal interest in the outcome of such debates because the practice of an invading army was at the time to destroy the land outside the walls. A good example of the contempt the first democrats felt for those who did not participate in politics can be found in the modern word 'idiot' that finds its origins in the ancient Greek word {{polytonic|&amp;#x1f30;&amp;#948;&amp;#953;&amp;#x1f7d;&amp;#964;&amp;#951;&amp;#962;}} (idi&amp;#333;t&amp;#275;s) meaning a private person, a person who is not actively interested in politics; such characters were talked about with contempt and the word eventually acquired its modern meaning.
104579
104580 ==Criticism of the democracy==
104581 Athenian democracy has had many critics, both ancient and modern. Modern critics are more likely to find fault with the narrow definition of the citizen body, but in the ancient world the complaint if anything went in the opposite direction. Ancient authors were almost invariably from an elite background for whom giving poor and uneducated people power over their betters seemed a reversal of the proper, rational order of society. For them the ''demos'' in democracy meant not the whole people, but the people as opposed to the elite. Instead of seeing it as a fair system under which 'everyone' has equal rights, they saw it as the numerically preponderant poor tyrannising over the rich. They viewed society like a modern stock company: democracy is like a company where all shareholders have an equal say regardless of the scale of their holding; one share or ten thousand, it makes no difference. They regarded this as manifestly unjust. In Aristotle this is categorised as the difference between 'arithmetic' and 'geometric' (i.e. proportional) equality. Democracy was far from being the normal style of governance and the beliefs on which it was based were in effect a minority opinion. Those writing in later centuries generally had no direct experience of democracy themselves.
104582
104583 To its ancient detractors the democracy was reckless and arbitrary. They had some signal instances to point to, especially from the long years of the Peloponnesian war.
104584 *In 406 BC, after years of defeats in the wake of the annihilation of their vast invasion force in Sicily, the Athenians at last won a naval victory at [[Battle of Arginusae| Arginusae]] over the Spartans. After the battle a storm arose and the eight [[strategoi|generals]] in command failed to collect survivors: the Athenians sentenced all of them to death. Technically, it was illegal, as the generals were tried and sentenced together, rather than one by one as Athenian law required. [[Socrates]] happened to be the citizen presiding over the assembly that day and refused to cooperate, though to little effect. Standing against the idea that it was outrageous for the people to be unable to do whatever they wanted. Later they repented the executions, but made up for it by executing those who had accused the generals before them. (A long account in [[Xenophon]] ''Hellenica'' 1.7.1-35)
104585 *Years earlier, the ten treasurers of the [[Delian league]] (''Hellenotamiai'') had been accused of embezzlement. They were tried and executed one after the other until, when only one was still alive, the accounting error was discovered and that last surviving treasurer was acquitted. Perfectly legal in this case, but an example of the extreme severity with which the people could punish those who served them. ([[Antiphon]] 5.69-70)
104586 *In 399 BC [[Socrates]] himself was put on trial and executed for 'corrupting the young and believing in strange gods'. His death gave Europe its first ever intellectual hero and martyr, but guaranteed the democracy an eternity of bad press at the hands of his disciple [[Plato]]. In the [[Gorgias]] written years later Plato has [[Socrates]] contemplating the possibility of himself on trial before the Athenians: he says he would be like a doctor prosecuted by a pastry chef before a jury of children.
104587
104588 Two right wing coups briefly interrupted democratic rule during the Peloponnesian war, both named by the numbers in control: the Four Hundred in 411 BC and the [[Thirty Tyrants|Thirty]] in 404 BC. The focus on number speaks to the drive behind each of them: to reduce the size of the electorate by linking the franchise with property qualifications. Though both ended up as rogue governments and did not follow through on their constitutional promises, they began as responses from the Athenian elite to what they saw as the inherent arbitrariness of government by the masses. (Plato in the ''Seventh Epistle'' does remark that the Thirty made the preceding democratic regime look like a Golden Age.)
104589
104590 Whether the democratic failures should be seen as systematic, or as a product of the extreme conditions of the Peloponnesian war, there does seem to have been a move toward correction. A new version of democracy was established from 403 BC, but it can be linked with both earlier and subsequent reforms ([[graphe paranomon]] 416 BC; end of assembly trials 355 BC). For the first time a conceptual and procedural distinction was made between laws and decrees. Increasingly, responsibility was shifted from the assembly to the courts, with laws being made by jurors and all assembly decisions becoming reviewable by courts. That is to say, the mass meeting of all citizens lost some ground to smaller gatherings (of only a thousand or so!) which were under oath, free of men in their impetuous 20's and with more time to focus on just one matter (though never more than a day). One downside was that the new democracy was less capable of rapid response.
104591
104592 Another tack of criticism is to notice the disquieting links between democracy and a number of less than appealing features of Athenian life. Although it predated it by over thirty years, democracy is strongly bound up with Athenian imperialism. For much of the 5th century at least democracy fed off an empire of subject states. [[Thucydides son of Milesias|Thucydides]] the son of Milesias (not the historian), an aristocrat, stood in opposition to these policies, for which he was ostracised in 443 BC. At times the imperialist democracy acted with extreme brutality, as in the decision to execute the entire male population of [[Melos]] and sell off its woman and children simply for refusing to became subjects of Athens. The common people were numerically dominant in the navy, which they used to pursue their own interests in the form of work as rowers and in the hundreds of overseas administrative positions. Further they used the income from empire to fund payment for officeholding. This is the position set out by the anti-democratic pamphlet known whose anonymous author is often called the [[Old Oligarch]]. On the other hand the empire was, more or less, defunct in the 4th century BC so it cannot be said that it was democracy was not viable without it. Only then in fact was payment for assembly attendance, the central event of democracy. (Similarly for the period before the Persian wars, but for the very early democracy the sources are very meagre and it can be thought of as being in an embryonic state.)
104593
104594 A case can be made that discriminatory lines came to be drawn more sharply under Athenian democracy than before or elsewhere, in particular in relation to woman and slaves, as well as in the line between citizens and non-citizens. By so strongly validating one role, that of the male citizen, it has been argued that democracy compromised the status of those who did not share it.
104595 *Male citizenship had become a newly valuable, indeed profitable, possession, to be jealously guarded. Under [[Pericles]] in 450 BC restrictions were tightened so that a citizen had to be born from citizen parentage on both sides. ''Metroxenoi'', those with foreign mothers, were now to be excluded. Traditionally for the poorer citizens local marriage was the norm, while the elite had been much more likely to marry abroad as a part of aristocratic alliance building. A habit of one group in society was thus codified as a law for the whole citizen body, which thus lost one axis of openness. Many Athenians prominent earlier in the century would have lost citizenship, had this law applied to them: [[Cleisthenes]], the founder of democracy, had a non-Athenian mother, and the mothers of [[Cimon]] and [[Themistocles]] were not Greek at all, but [[Thrace|Thracian]]. As Athens attracted an increasing number of resident aliens (''[[metic]]s''), this shift in the definition of citizen worked to keep the immigrant population more sharply distinguished politically.
104596 *Likewise the status of women seems lower in Athens than in many Greek cities. At Sparta women competed in public exercise — so in [[Aristophanes]]' ''Lysistrata'' the Athenian women admire the tanned, muscular bodies of their Sparten counterparts — and women could own property in their own right, as they could not at Athens. [[Misogyny]] was by no means an Athenian invention, but it has been claimed that in regard to gender democracy generalised a harsher set of values derived, again, from the common people. Democracy may well have been impossible without the contribution of women's labour (Hansen 1987: 318).
104597 *[[Slavery in antiquity|Slave]] use was more widespread at Athens than in other Greek cities. Indeed the extensive use of imported non-Greeks (&quot;[[barbarian]]s&quot;) as [[chattel slavery|chattel slaves]] seems to have been an Athenian development. This triggers the parodoxical question: Was democracy &quot;based on&quot; slavery? It does seem clear that possession of slaves allowed even poorer Athenians — owning a few slaves was by no means equated with wealth — to devote more of their time to political life. But whether democracy depended on this extra time is impossible to say. The breadth of slave ownership also meant that the leisure of the rich (the small minority who were actually free of the need to work) rested less than it would have on the exploitation of their less well-off fellow citizens. Working for wages was clearly regarded as subjection to the will of another, but at least debt servitude had been abolished at Athens (under the reforms of Solon at the start of the 6th century BC). By allowing a new kind of equality among citizens this opened the way to democracy, which in turn called for a new means, chattel slavery, to at least partially equalise the availability of leisure between rich and poor. In the absence of reliable statistics all these connections remain speculative. However, as [[Cornelius Castoriadis]] pointed out, other societies also kept slaves, yet did not develop democracy. Even with respect to slavery the new citizen law of 450 BC may have had effect: it is speculated that originally Athenian fathers had been able to register for citizenship offspring had with slave women (Hansen 1987:53). This will have rested on an older, less categorical sense of what it meant to be a slave.
104598
104599 Contemporary opponents of [[majoritarianism]] (arguably the principle behind Athenian democracy) call it an illiberal regime (in contrast to [[liberal democracy]]) that allegedly leads to [[anomie]], [[balkanization]] and [[xenophobia]]. Proponents (especially of majoritarianism) deny these accusations, and argue that any faults in Athenian democracy were due to the fact that the franchise was quite limited (only male citizens could vote - women, slaves and non-citizens were excluded). Despite this limited franchise, Athenian democracy was certainly the first - and perhaps the best - example of a working [[direct democracy]].
104600
104601 ==See also==
104602 *[[History of Athens]]
104603 *[[History of democracy]]
104604 *[[List of politics-related topics]]
104605
104606 *[[Areopagus]]
104607 *[[Athenian empire]]
104608 *[[Atimia (loss of citizen rights)]]
104609 *[[Attic calendar]]
104610 *[[Boule]]
104611 *[[Ecclesia (ancient Athens)]]
104612 *[[Graphe paranomon]]
104613 *[[Hellenic civilization]]
104614 *[[Metic]]
104615 *[[Ostracism]]
104616 *[[Persian Wars]]
104617 *[[Strategos]]
104618
104619 ==References==
104620 *Hansen M.H. 1987, The Athenian Democracy in the age of Demosthenes. Oxford.
104621 *Manville B. and J. Ober 2003, A company of citizens : what the world's first democracy teaches leaders about creating great organizations. Boston.
104622 *Meier C. 1998, Athens: a portrait of the city in its Golden Age (translated by R. and R. Kimber). New York.
104623 *Ober J 1989, Mass and Elite in Democratic Athens: Rhetoric, Ideology and the Power of the People. Princeton.
104624 *Ober J and C. Hendrick (edds) 1996, Demokratia : a conversation on democracies, ancient and modern. Princeton.
104625 *Rhodes P.J.(ed) 2004, Athenian democracy. Edinburgh.
104626
104627 ==External links==
104628 *[http://www.constitution.org/ari/athen_00.htm The Athenian Constitution, Aristotle]
104629 *[http://www.stoa.org/projects/demos/home?greekEncoding=UnicodeC D&amp;#275;mos: Classical Athenian Democracy], A digital
104630 encyclopedia: the history, institutions, and people of democratic Athens in the 5th and 4th centuries BCE, Christopher Blackwell, ed.
104631
104632 [[Category:Ancient Greece]]
104633 [[Category:Political systems]]
104634 [[Category:Ancient Greek law]]
104635
104636 [[da:Det athenske demokrati]]
104637 [[de:attische Demokratie]]
104638 [[fr:DÊmocratie athÊnienne]]
104639 [[pl:Demokracja ateńska]]</text>
104640 </revision>
104641 </page>
104642 <page>
104643 <title>Arabic numerals</title>
104644 <id>1786</id>
104645 <revision>
104646 <id>42046572</id>
104647 <timestamp>2006-03-03T12:44:34Z</timestamp>
104648 <contributor>
104649 <username>Deeptrivia</username>
104650 <id>274615</id>
104651 </contributor>
104652 <minor />
104653 <comment>Reverted edits by [[Special:Contributions/137.163.18.136|137.163.18.136]] to last version by Noe</comment>
104654 <text xml:space="preserve">{{Otheruses2|Arabic numerals}}
104655
104656 {{numeral systems}}
104657
104658 [[Image:Numerals.png|thumb|240px|right|Numerals [[sans serif]]]]
104659 '''Arabic numerals''', also known as '''[[Hindu-Arabic numerals]]''', '''[[Indian numerals]]''', '''[[Hindu numerals]]''', '''[[European numerals]]''', and '''Western numerals''', are the most common [[Symbol|symbolic]] representation of [[number]]s around the world. They are considered an important milestone in the development of [[mathematics]].
104660
104661 One may distinguish between the [[decimal]] system involved, also known as the [[Hindu-Arabic numeral system]], and the precise [[glyph]]s used. The glyphs most commonly in conjunction with the [[Latin alphabet]] since [[Early modern Europe|Early Modern]] times are &lt;big&gt;[[0 (number)|0]] [[1 (number)|1]] [[2 (number)|2]] [[3 (number)|3]] [[4 (number)|4]] [[5 (number)|5]] [[6 (number)|6]] [[7 (number)|7]] [[8 (number)|8]] [[9 (number)|9]]&lt;/big&gt;.
104662
104663 The system was developed in [[India]] by the [[Hindus]] around [[400 BCE]], found its way to [[Persia]], and was relayed to Europe by Arabs. Hence, they became known in the West as &quot;Arabic numerals&quot;. The glyphs underwent some modifications en route from India to Europe.
104664
104665 ==Description==
104666 {{main articles|[[Algorism]] and [[glyphs used with the Hindu-Arabic numeral system]]}}
104667
104668 The numeral system employed, known as [[Algorism]], is [[positional notation|positional]] [[decimal]] notation.
104669
104670 Various symbol sets are used to represent numbers in the [[Hindu-Arabic numerals (system)|Hindu-Arabic numeral system]], all of which evolved from the [[Brahmi numerals]]. The symbols used to represent the system have split into various typographical variants since the [[Middle Ages]]:
104671 *the widespread Western &quot;Arabic numerals&quot; used with the [[Latin alphabet]], in the table below labelled &quot;European&quot;, descended from the &quot;West Arabic numerals&quot; which were developed in [[al-Andalus]] and the [[Maghreb]] (There are two [[typographic]] styles for rendering European numerals, known as lining figures and [[text figures]]).
104672 *the &quot;Arabic-Indic&quot; or &quot;'''[[Eastern Arabic numerals]]'''&quot; used with the [[Arabic alphabet]], developed primarily in what is now [[Iraq]]. A variant of the Eastern Arabic numerals used in Persian and Urdu languages as shown as &quot;East Arabic-Indic&quot;.
104673 *the &quot;Devanagari numerals&quot; used with [[Devanagari]] and related variants grouped as '''[[Indian numerals]]'''.
104674
104675 [[Image:Arabic numerals-en.svg|500px|Table of numerals]]
104676
104677 ==History==
104678
104679 ===Origins===
104680 {{main|History of the Hindu-Arabic numeral system}}
104681 [[Buddhist]] inscriptions from around 300 BCE use the symbols which became 1, 4 and 6. One century later, their use of the symbols which became 2, 4, 6, 7 and 9 was recorded.
104682 [[Image:Indian numerals 100AD.gif|frame|left|[[Brahmi numeral]]s in [[India]] in the first century CE]]
104683 The system was adopted by the Arabs in the [[8th century]]. The first certain positional use of zero dates to the [[9th century]], in an inscription at [[Gwalior]] dated to [[870]], and in the work of [[Al-Khwarizmi]].
104684
104685 [[Image:EgyptphoneKeypad.jpg|right|thumb|Modern day Arab telephone keypad with Hindu-Arabic numerals and corresponding Arabic-language numerals]]
104686 The numeral system came to be known to both the [[Persians|Persian]] mathematician [[Al-Khwarizmi]], whose book ''On the Calculation with Hindu Numerals'' written about [[825]], and the [[Arab]] mathematician [[Al-Kindi]], who wrote four volumes, &quot;On the Use of the Indian Numerals&quot; (Ketab fi Isti'mal al-'Adad al-Hindi) about [[830]], are principally responsible for the diffusion of the Indian system of numeration in the [[Middle-East]] and the West [http://www-gap.dcs.st-and.ac.uk/%7Ehistory/HistTopics/Indian_numerals.html]. In the [[10th century]], [[Middle-East]]ern mathematicians extended the decimal numeral system to include fractions, as recorded in a treatise by [[Syrian]] mathematician [[Abu'l-Hasan al-Uqlidisi]] in [[952]]-[[953]].
104687
104688 In the Arab World&amp;mdash;until modern times&amp;mdash;the Arabic numeral system was used only by mathematicians. Muslim scientists used the [[Babylonian_numerals|Babylonian numeral system]], and merchants used the [[Abjad numerals]]. Therefore, it was not until [[Fibonacci]] that the Arabic numeral system was used by a large population.
104689
104690 ===West Arabic numerals===
104691 A distinctive &quot;West Arabic&quot; variant of the symbols begins to emerge in ca. the [[10th century]] in the [[Maghreb]] and [[Al-Andalus]], called the ''ghubar'' (&quot;sand-table&quot; or &quot;dust-table&quot;) numerals.
104692
104693 The first mentions of the numerals in the West are found in the Codex Vigilanus of [[976]] [http://www.mathorigins.com/V.htm]. From the [[980s]], [[Pope Silvester II|Gerbert of Aurillac]] began to spread knowledge of the numerals in Europe. Gerbert studied in [[Barcelona]] in his youth, and he is known to have requested mathematical treatises concerning the [[astrolabe]] from [[Lupitus of Barcelona]] after he had returned to France.
104694
104695 ===Adoption in Europe===
104696 [[Image:Talhoffer_Thott_140r.jpg|thumb|300px|German manuscript page teaching use of Arabic numerals ([[Hans Talhoffer|Talhoffer]] Thott, [[1459]]). At this time, knowledge of the numerals was still widely seen as esoteric, and Talhoffer teaches them together with the [[Hebrew alphabet]] and [[astrology]].]]
104697 [[Image:Petrus Astronomus Astronomical clock in Uppsala Cathedral.jpg|thumb|300px|Woodcut showing the 16th century [[astronomical clock]] of [[Uppsala]] cathedral, with two clockfaces, one with Arabic and one with Roman numerals.]]
104698 [[Image:Horloge-republicaine1.jpg|thumb|250px|Late 18th century French revolutionary &quot;decimal&quot; clockface.]]
104699
104700 [[Al-Khwarizmi]]'s [[825]] treatise ''On the Calculation with Hindu Numerals'' was translated into Latin in the [[12th century]], as ''Algoritmi de numero Indorum'' (''Algoritmi'' being the translator's rendition of the author's name, ''{{Unicode|al-á¸ĢwārizmÄĢ}}'', ultimately leading to the term [[algorithm]]).
104701
104702 [[Leonardo of Pisa|Fibonacci]], an [[Italy|Italian]] mathematician who had studied in [[Bejaia]] ([[Bougie]]), [[Algeria]], promoted the Arabic numeral system in [[Europe]] with his book ''[[Liber Abaci]]'', which was published in [[1202]], still describing the numerals as &quot;Indian&quot; rather than &quot;Arabic&quot;.
104703
104704 :&quot;When my father, who had been appointed by his country as public notary in the customs at Bugia acting for the Pisan merchants going there, was in charge, he summoned me to him while I was still a child, and having an eye to usefulness and future convenience, desired me to stay there and receive instruction in the school of accounting. There, when I had been introduced to the art of the Indians' nine symbols through remarkable teaching, knowledge of the art very soon pleased me above all else and I came to understand it..&quot;
104705
104706 The numerals are arranged with their lowest value digit to the right, with higher value positions added to the left. This arrangement was adopted identically into the numerals as used in Europe. The Latin alphabet running from left to right, unlike the Arabic alphabet, this resulted in an inverse arrangement of the place-values relative to the direction of reading.
104707
104708 The European acceptance of the numerals was accelerated by the invention of the [[printing press]], and they became commonly known during the [[15th century]]. The first known use in [[England]] was on a 1487 inscription (the date being written in Arabic numerals) at [[Piddletrenthide]] church, [[Dorset]]. By the mid [[16th century]], they were in common use in most of Europe.[http://mathforum.org/library/drmath/view/52545.html.] Roman numerals remained in use mostly for the notation of years of the [[Common Era]], and for numbers on clockfaces. Sometimes, Roman numerals are still used for enumeration of lists (as an alternative to alphabetical enumeration), and numbering pages in prefatory material in books.
104709
104710 ==Encodings==
104711
104712 The Arabic numerals are encoded in [[ASCII]] (and [[Unicode]]) at positions 48 to 57:
104713
104714 {| class=&quot;wikitable&quot; style=&quot;text-align: center&quot;
104715 |-
104716 !style=&quot;width: 5.5em&quot;|Binary
104717 !style=&quot;width: 2.5em&quot;|Dec
104718 !style=&quot;width: 2.5em&quot;|Hex
104719 !Glyph
104720 |-
104721 |0011&amp;nbsp;0000
104722 |48
104723 |30
104724 |0
104725 |-
104726 |0011&amp;nbsp;0001
104727 |49
104728 |31
104729 |1
104730 |-
104731 |0011&amp;nbsp;0010
104732 |50
104733 |32
104734 |2
104735 |-
104736 |0011&amp;nbsp;0011
104737 |51
104738 |33
104739 |3
104740 |-
104741 |0011&amp;nbsp;0100
104742 |52
104743 |34
104744 |4
104745 |-
104746 |0011&amp;nbsp;0101
104747 |53
104748 |35
104749 |5
104750 |-
104751 |0011&amp;nbsp;0110
104752 |54
104753 |36
104754 |6
104755 |-
104756 |0011&amp;nbsp;0111
104757 |55
104758 |37
104759 |7
104760 |-
104761 |0011&amp;nbsp;1000
104762 |56
104763 |38
104764 |8
104765 |-
104766 |0011&amp;nbsp;1001
104767 |57
104768 |39
104769 |9
104770 |}
104771
104772 ==See also ==
104773 {{Table Numeral Systems}}
104774 *[[Hindu-Arabic numeral system]]
104775
104776 ==References==
104777 *[http://www.historyworld.net/wrldhis/PlainTextHistories.asp?historyid=ab34 History of Counting Systems and Numerals]. Retrieved [[11 December]] [[2005]].
104778 *[http://www.laputanlogic.com/articles/2003/06/01-95210802.html The Evolution of Numbers]. [[16 April]] [[2005]].
104779 *O'Connor, J. J. and Robertson, E. F. [http://www-gap.dcs.st-and.ac.uk/%7Ehistory/HistTopics/Indian_numerals.html Indian numerals]. November 2000.
104780
104781 ==External links==
104782 *History of the Numerals
104783 **[http://www-gap.dcs.st-and.ac.uk/%7Ehistory/HistTopics/Arabic_numerals.html Arabic numerals]:
104784 **[http://www.scit.wlv.ac.uk/university/scit/modules/mm2217/han.htm Hindu-Arabic numerals]:
104785
104786 [[Category:Numeration]]
104787
104788
104789 [[da:Arabiske talsystem]]
104790 [[de:Arabische Ziffern]]
104791 [[sr:АŅ€Đ°ĐŋŅĐēи ĐąŅ€ĐžŅ˜Đĩви]]
104792 [[es:NumeraciÃŗn arÃĄbiga]]
104793 [[eo:EÅ­ropaj ciferoj]]
104794 [[fr:Chiffre arabe]]
104795 [[gu:āĒšāĒŋāĒ¨āĢāĒĻāĢ-āĒ…āĒ°āĢ‡āĒŦāĢ€āĒ• āĒ…āĒ‚āĒ•āĢ‹]]
104796 [[ko:ė•„ëŧ비ė•„ ėˆ˜ ė˛´ęŗ„]]
104797 [[hr:Arapski brojevi]]
104798 [[la:Numeri arabici]]
104799 [[nl:Arabische cijfers]]
104800 [[ja:ã‚ĸナビã‚ĸ数字]]
104801 [[pl:Cyfry arabskie]]
104802 [[ru:АŅ€Đ°ĐąŅĐēиĐĩ Ņ†Đ¸Ņ„Ņ€Ņ‹]]
104803 [[sl:Arabske ÅĄtevilke]]
104804 [[fi:Arabialaiset numerot]]
104805 [[vi:Cháģ¯ sáģ‘ áēĸ Ráē­p]]
104806 [[uk:АŅ€Đ°ĐąŅŅŒĐēĐ° ŅĐ¸ŅŅ‚ĐĩĐŧĐ° Ņ†Đ¸Ņ„Ņ€]]
104807 [[zh:é˜ŋ拉äŧ¯æ•°å­—]]</text>
104808 </revision>
104809 </page>
104810 <page>
104811 <title>April 9</title>
104812 <id>1787</id>
104813 <revision>
104814 <id>41990933</id>
104815 <timestamp>2006-03-03T02:06:32Z</timestamp>
104816 <contributor>
104817 <username>LtPowers</username>
104818 <id>749490</id>
104819 </contributor>
104820 <minor />
104821 <comment>rm redlinked person who died 15 years before he was born.</comment>
104822 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
104823 {| style=&quot;float:right;&quot;
104824 |-
104825 |{{AprilCalendar}}
104826 |-
104827 |{{ThisDateInRecentYears|Month=April|Day=9}}
104828 |}
104829 '''[[April 9]]''' is the [[99 (number)|99th]] day of the year in the [[Gregorian calendar]] (100th in [[leap year]]s). There are 266 days remaining.
104830 ==Events==
104831 *[[193]] - [[Septimius Severus]] is proclaimed [[Roman Emperor]] by the army in [[Illyricum]] (in the [[Balkans]]).
104832 *[[1241]] - [[Battle of Legnica|Battle of Liegnitz]]: [[Mongol]] forces defeats the [[Poland|Polish]] and [[Germany|German]] armies.
104833 *[[1667]]: First public art exhibition opens in Paris
104834 *[[1682]] - [[RenÊ Robert Cavelier, Sieur de La Salle|Robert Cavelier de La Salle]] discovers the mouth of the [[Mississippi River]], claims it for [[France]] and names it [[Louisiana]].
104835 *[[1864]] - [[American Civil War]]: [[Battle of Mansfield]] - [[United States|Union]] General [[Nathaniel Banks]]' [[Red River Campaign]] is thwarted by [[Confederate States of America|Confederate]] General [[Richard Taylor (general)|Richard Taylor]]'s forces at [[Mansfield, Louisiana]].
104836 *[[1865]] - [[American Civil War]]: [[Robert E. Lee]] surrenders the [[Army of Northern Virginia]] (26,765 troops) to [[Ulysses S. Grant]] at [[Appomattox Courthouse, Virginia]], effectively ending the [[war]].
104837 *[[1867]] - [[Alaska purchase]]: Passing by a single vote, the [[United States Senate]] ratifies a [[treaty]] with [[Russia]] for the purchase of [[Alaska]].
104838 *[[1909]] - The [[Congress of the United States|U.S. Congress]] passes the [[Payne-Aldrich Tariff Act]].
104839 *[[1913]] - The [[Brooklyn Dodgers]]' [[Ebbets Field]] opens.
104840 *[[1916]] - [[World War I]]: [[Battle of Verdun]] - [[Germany|German]] forces launch their third offensive of the [[battle]].
104841 *[[1917]] - World War I: [[Battle of Arras (1917)|Battle of Arras]] - The [[battle]] begins with [[Canada|Canadian]] forces executing a massive assault on the [[Vimy Ridge]].
104842 *[[1939]] - [[Marian Anderson]] sings at the [[Lincoln Memorial]], after having been refused the right to sing at the [[Daughters of the American Revolution]]'s [[Constitution Hall]].
104843 *[[1940]] - [[World War II]]: [[Germany]] invades [[Denmark]] and [[Norway]].
104844 *[[1942]] - [[World War II|Second World War]]: [[Battle of Bataan]]/[[Bataan Death March]] - [[United States]] forces surrender on the [[Bataan Peninsula]]. [[Japanese Navy]] launches air raid on [[Trincomalee]] in [[Ceylon]] ([[Sri Lanka]]); [[Royal Navy]] [[aircraft carrier]] [[HMS Hermes]] and [[Royal Australian Navy]] [[Destroyer]] [[HMAS Vampire]] are sunk off the country's East Coast.
104845 *[[1945]] - The [[German pocket battleship Admiral Scheer]] is sunk.
104846 *[[1947]] - The [[Glazier-Higgins-Woodward Tornadoes]] kill 181 and injure 970 in [[Texas]], [[Oklahoma]], and [[Kansas]].
104847 *1947 - The [[Journey of Reconciliation]], the first interracial [[Freedom Ride]] of 16 black and white men traveling through the upper [[Southern United States|South]] in violation of [[Jim Crow]] laws begins. The riders, sponsored by [[CORE]] and the [[Fellowship of Reconciliation]], are seeking to force southern states to enforce the [[United States Supreme Court]]'s [[1946]] [[Irene Morgan]] decision that banned [[racial segregation]] in interstate travel.
104848 *[[1948]] - [[Jorge EliÊcer GaitÃĄn]]'s assassination provokes a violent riot in [[BogotÃĄ]] (the ''Bogotazo''), and a further ten years of violence in all of [[Colombia]] (''La violencia'').
104849 *1948 - Massacre at [[Deir Yassin]].
104850 *[[1949]] - The [[Gurkha Contingent]] of the [[Singapore Police Force]] is formed.
104851 *[[1953]] - [[Warner Brothers]] premieres the first [[3-D film]], entitled ''[[House of Wax (1953 movie)|House of Wax]]''
104852 *[[1959]] - [[Mercury program]]: [[NASA]] announces the selection of the [[United States]]' first seven [[astronaut]]s which the news media quickly dub the &quot;Mercury Seven&quot;.
104853 *[[1967]] - The first [[Boeing 737]] (a 100 series) takes its maiden flight.
104854 *[[1969]] - The &quot;[[Chicago Eight]]&quot; plead not guilty on federal charges of conspiracy to incite a riot at the [[1968 Democratic National Convention]] in [[Chicago, Illinois]].
104855 *[[1986]] - The [[government of France]] rules against the privatization of [[France|French]] automaker [[Renault]].
104856 *[[1987]] - [[Dikye Baggett]] becomes the first person to undergo corrective surgery for [[Parkinson's disease]].
104857 *[[1991]] - [[Georgia (country)|Georgia]] declares its independence from the [[Soviet Union]].
104858 *[[1992]] - [[Manuel Noriega]] is convicted of eight crimes.
104859 *1992 - [[John Major]]'s [[Conservative Party]] wins an unprecedented fourth general election victory in the [[United Kingdom]].
104860 *[[1998]] - The [[National Prisoner of War Museum]] is dedicated in [[Andersonville, Georgia]], on the site of an [[American Civil War]] POW camp.
104861 *[[1999]] - [[Ismail Omar Guelleh]] is elected president of [[Djibouti]].
104862 *1999 - [[Niger | Nigerian]] President [[Ibrahim BarÊ Maïnassara]] is assassinated.
104863 *[[2002]] - The funeral of [[Elizabeth Bowes-Lyon | HM Queen Elizabeth, the Queen Mother]] of the [[United Kingdom]] is held at [[Westminster Abbey]].
104864 *[[2003]] - [[2003 invasion of Iraq]]: The Ba'ath regime headed by [[Saddam Hussein]] in [[Iraq]] is deposed.
104865 *[[2005]] - [[HRH]] [[Charles, Prince of Wales]] [[Wedding of Charles, Prince of Wales and Camilla, Duchess of Cornwall | weds]] [[Camilla, Duchess of Cornwall | Camilla Parker Bowles]]
104866
104867 ==Births==
104868 *[[1336]] - [[Tamerlane]], Turkish conqueror (d. [[1405]])
104869 *[[1498]] - [[John, Cardinal of Lorraine]], French churchman (d. [[1550]])
104870 *[[1597]] - [[John Davenport (clergyman)|John Davenport]], Connecticut pioneer (d. [[1670]])
104871 *[[1648]] - [[Henri de Massue, Marquis de Ruvigny, 1st Viscount Galway]], French soldier and diplomat (d. [[1720]])
104872 *[[1649]] - [[James Scott, 1st Duke of Monmouth]], illegitimate son of [[Charles II of Great Britain] (d. [[1685]])
104873 *[[1680]] - [[Philippe NÊricault Destouches]], French dramatist (d. [[1754]])
104874 *[[1686]] - [[James Craggs the Younger]], British politician (d. [[1721]])
104875 *[[1691]] - [[Johann Matthias Gesner]], German classical scholar (d. [[1761]])
104876 *[[1757]] - [[Edward Pellew, 1st Viscount Exmouth]], British admiral (d. [[1833]])
104877 *[[1770]] - [[Thomas Johann Seebeck]], German physicist (d. [[1831]])
104878 *[[1773]] - [[Étienne Aignan]], French writer (d. [[1824]])
104879 *[[1794]] - [[Theobald Boehm]], German inventor of the modern flute (d. [[1881]])
104880 *[[1806]] - [[Isambard Kingdom Brunel]], British engineer (d. [[1859]])
104881 *[[1821]] - [[Charles Baudelaire]], French poet (d. [[1867]])
104882 *[[1830]] - [[Eadweard Muybridge]], English-born photographer and motion picture pioneer (d. [[1904]])
104883 *[[1835]] - King [[LÊopold II of Belgium]] (d. [[1909]])
104884 *[[1865]] - [[Erich Ludendorff]], German general in World War I (d. [[1937]])
104885 *[[1867]] - [[Chris Watson]], third [[Prime Minister of Australia]] (d. [[1941]])
104886 *[[1872]] - [[LÊon Blum]], French prime minister (d. [[1950]])
104887 *[[1888]] - [[Sol Hurok]], Russian-born impresario (d. [[1974]])
104888 *[[1889]] - [[Efrem Zimbalist]], Russian violinist (d. [[1985]])
104889 *[[1897]] - [[John B. Gambling]], American radio talk-show host (d. [[1974]])
104890 *[[1898]] - [[Curly Lambeau]], American football coach, executive (d. [[1965]])
104891 *1898 - [[Paul Robeson]], American singer and activist (d. [[1976]])
104892 *[[1903]] - [[Ward Bond]], American actor (d. [[1960]])
104893 *[[1904]] - [[Sharkey Bonano]], American musician (d. [[1972]])
104894 *[[1905]] - [[J. William Fulbright]], U.S. Senator from Arkansas (d. [[1995]])
104895 *[[1906]] - [[Antal Dorati]], Hungarian conductor (d. [[1988]])
104896 *[[1908]] - [[Victor Vasarely]], Hungarian-born painter (d. [[1997]])
104897 *[[1910]] - [[Abraham Ribicoff]], American politician (d. [[1998]])
104898 *[[1912]] - [[Lew Kopelew]], Russian author (d. [[1997]])
104899 *[[1917]] - [[Johannes Bobrowski]], German lyricist, narrative writer, adaptor and essayist (d. [[1965]])
104900 *1917 - [[Brad Dexter]], American actor (d. [[2002]])
104901 *[[1918]] - [[Jørn Utzon]], Danish architect
104902 *[[1919]] - [[J. Presper Eckert]], American computer pioneer
104903 *[[1926]] - [[Hugh Hefner]], American editor and publisher
104904 *[[1928]] - [[Tom Lehrer]], American musician and mathematician
104905 *[[1932]] - [[Jim Fowler]], American zoologist
104906 *1932 - [[Carl Perkins]], American musician (d. [[1998]])
104907 *[[1933]] - [[Jean-Paul Belmondo]], French actor
104908 *[[1934]] - [[Bill Birch]], New Zealand politician
104909 *[[1935]] - [[Avery Schreiber]], American actor (d. [[2002]])
104910 *[[1937]] - [[Marty Krofft]], children's television producer
104911 *[[1938]] - [[Viktor Chernomyrdin]], Russian politician
104912 *[[1939]] - [[Michael Learned]], American actress
104913 *[[1942]] - [[Brandon De Wilde]], American actor (d. [[1972]])
104914 *[[1945]] - [[Peter Gammons]], baseball journalist
104915 *[[1954]] - [[Dennis Quaid]], American actor
104916 *1954 - [[Iain Duncan Smith]], British politician
104917 *[[1957]] - [[Severiano Ballesteros|Seve Ballesteros]], Spanish golfer
104918 *[[1962]] - [[Imran Sherwani]], British field hockey player
104919 *[[1964]] - [[Rick Tocchet]], Canadian [[ice hockey]] player
104920 *[[1965]] - [[Jeff Zucker]], American television executive
104921 *[[1966]] - [[Cynthia Nixon]], American actress
104922 *[[1967]] - [[Rajendra Yadav]], Indian doctor
104923 *[[1971]] - [[Jacques Villeneuve]], Canadian race car driver
104924 *[[1974]] - [[Jenna Jameson]], American adult entertainer
104925 *[[1975]] - [[Robbie Fowler]], English footballer
104926 *[[1977]] - [[Gerard Way]], American singer ([[My Chemical Romance]])
104927 *[[1978]] - [[Jorge Andrade]], Portuguese footballer
104928 *1978 - [[Rachel Stevens]], English singer
104929 *1978 - [[Vesna Pisarović]], Croatian singer
104930 *[[1979]] - [[Keshia Knight Pulliam]], American actress
104931 *[[1981]] - [[Milan Bartovic|Milan Bartovič]], Slovak ice hockey player
104932 *[[1987]] - [[Jesse McCartney]], American singer/actor
104933 *[[1990]] - [[Kristen Stewart]], American actress
104934 *[[1998]] - [[Elle Fanning]], American child actress
104935
104936 ==Deaths==
104937 *[[491]] - [[Zeno of the Byzantine Empire|Zeno]], [[Byzantine Emperor]]
104938 *[[715]] - [[ Pope Constantine]]
104939 *[[1024]] - [[Pope Benedict VIII]]
104940 *[[1137]] - [[William X of Aquitaine|William X, Duke of Aquitaine]] (b. [[1099]])
104941 *[[1483]] - King [[Edward IV of England]] (b. [[1442]])
104942 *[[1484]] - [[Edward of Middleham]], [[Prince of Wales]] (b. [[1473]])
104943 *[[1553]] - [[François Rabelais]], French writer
104944 *[[1557]] - [[Mikael Agricola]], Finnish scholar (b. [[1510]])
104945 *[[1626]] - Sir [[Francis Bacon]], English philosopher, statesman, and essayist (b. [[1561]])
104946 *[[1693]] - [[Roger de Rabutin, Comte de Bussy]], French writer (b. [[1618]])
104947 *[[1739]] - [[Nicolas Saunderson]], English scientist and mathematician (b. [[1682]])
104948 *[[1747]] - [[Simon Fraser, 11th Lord Lovat]], Scottish clan chief
104949 *[[1754]] - [[Christian Wolff (philosopher)|Christian Wolff]], German philosopher (b. [[1679]])
104950 *[[1761]] - [[William Law]], British minister (b. [[1686]])
104951 *[[1804]] - [[Jacques Necker]], French statesman (b. [[1732]])
104952 *[[1806]] - [[William V of Orange]], [[Stadtholder]] of the Dutch Republic
104953 *[[1889]] - [[Michel Eugène Chevreul]], French chemist (b. [[1786]])
104954 *[[1917]] - [[James Hope Moulton]], British scholar of Classical Greek (b. [[1863]])
104955 *[[1936]] - [[Ferdinand TÃļnnies]], German sociologist (b. 1855)
104956 *[[1940]] - [[Mrs. Patrick Campbell]], British actress (b. [[1865]])
104957 *[[1944]] - [[Evgeniya Rudneva]], Russian World War II heroine (executed) (b. [[1920]])
104958 *[[1945]] - [[Wilhelm Canaris]], German Nazi leader (b. [[1887]])
104959 *1945 - [[Dietrich Bonhoeffer]], German theologian (executed) (b. [[1906]])
104960 *[[1948]] - [[Jorge EliÊcer GaitÃĄn]], Colombian politician (b. [[1903]]).
104961 *[[1951]] - [[Vilhelm Bjerknes]], Norwegian physicist (b. [[1862]])
104962 *[[1959]] - [[Frank Lloyd Wright]], American architect (b. [[1867]])
104963 *[[1961]] - King [[Zog of Albania]] (b. [[1895]])
104964 *[[1963]] - [[Eddie Edwards]], American jazz trombonist (b. [[1891]])
104965 *[[1976]] - [[Dagmar Nordstrom]], American composer, pianist, one of The [[Nordstrom Sisters]] (b. [[1903]])
104966 *1976 - [[Phil Ochs]], American singer (b. [[1940]])
104967 *[[1988]] - [[Brook Benton]], American actor (b. [[1931]])
104968 *[[1991]] - [[Martin Hannett]], record producer (b. [[1948]])
104969 *[[1996]] - [[Richard Condon]], American novelist (b. [[1915]])
104970 *1996 - [[James W. Rouse]], American real estate developer, activist, and philanthropist (b. [[1914]])
104971 *[[1997]] - [[Laura Nyro]], American singer and songwriter (b. [[1947]])
104972 *[[1999]] - [[Ibrahim BarÊ Maïnassara]], Niger politician and general (b. [[1949]])
104973 *[[2001]] - [[Willie Stargell]], baseball player (b. [[1940]])
104974 *[[2002]] - [[Leopold Vietoris]], Austrian mathematician (b. [[1891]])
104975 *[[2005]] - [[Andrea Dworkin]], American feminist and writer (b. [[1946]])
104976
104977 ==Holidays and observances==
104978 *[[BahÃĄ'í Faith]] - Feast of JalÃĄl (Glory) - First day of the second month of the BahÃĄ'í Calendar
104979 *[[Bataan Death March|Bataan Day]] (Day of Valor - ''Araw ng Kagitingan'') in the [[Philippines]]
104980
104981 ==External links==
104982 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/9 BBC: On This Day]
104983 * [http://www.tnl.net/when/4/9 Today in History: April 9]
104984
104985 ----
104986
104987 [[April 8]] - [[April 10]] - [[March 9]] - [[May 9]] -- [[historical anniversaries|listing of all days]]
104988
104989 {{months}}
104990
104991 [[ceb:Abril 9]]
104992 [[nap:9 'e abbrile]]
104993 [[war:Abril 9]]
104994 [[pam:Abril 9]]
104995
104996 [[af:9 April]]
104997 [[ar:9 ØŖØ¨ØąŲŠŲ„]]
104998 [[an:9 d'abril]]
104999 [[ast:9 d'abril]]
105000 [[bg:9 Đ°ĐŋŅ€Đ¸Đģ]]
105001 [[be:9 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
105002 [[bs:9. april]]
105003 [[ca:9 d'abril]]
105004 [[cv:АĐēĐ°, 9]]
105005 [[co:9 d'aprile]]
105006 [[cs:9. duben]]
105007 [[cy:9 Ebrill]]
105008 [[da:9. april]]
105009 [[de:9. April]]
105010 [[et:9. aprill]]
105011 [[el:9 ΑĪ€ĪÎšÎģίÎŋĪ…]]
105012 [[es:9 de abril]]
105013 [[eo:9-a de aprilo]]
105014 [[eu:Apirilaren 9]]
105015 [[fo:9. apríl]]
105016 [[fr:9 avril]]
105017 [[fy:9 april]]
105018 [[ga:9 AibreÃĄn]]
105019 [[gl:9 de abril]]
105020 [[ko:4ė›” 9ėŧ]]
105021 [[hr:9. travnja]]
105022 [[io:9 di aprilo]]
105023 [[id:9 April]]
105024 [[ia:9 de april]]
105025 [[ie:9 april]]
105026 [[is:9. apríl]]
105027 [[it:9 aprile]]
105028 [[he:9 באפריל]]
105029 [[jv:9 April]]
105030 [[ka:9 აპრილი]]
105031 [[csb:9 łÅŧÃĢkwiôta]]
105032 [[ku:9'ÃĒ avrÃĒlÃĒ]]
105033 [[lt:BalandÅžio 9]]
105034 [[lb:9. AbrÃĢll]]
105035 [[li:9 april]]
105036 [[hu:Április 9]]
105037 [[mk:9 Đ°ĐŋŅ€Đ¸Đģ]]
105038 [[ms:9 April]]
105039 [[nl:9 april]]
105040 [[ja:4月9æ—Ĩ]]
105041 [[no:9. april]]
105042 [[nn:9. april]]
105043 [[oc:9 d'abril]]
105044 [[pl:9 kwietnia]]
105045 [[pt:9 de Abril]]
105046 [[ro:9 aprilie]]
105047 [[ru:9 Đ°ĐŋŅ€ĐĩĐģŅ]]
105048 [[se:CuoŋomÃĄnu 9.]]
105049 [[sco:9 Aprile]]
105050 [[sq:9 Prill]]
105051 [[scn:9 di aprili]]
105052 [[simple:April 9]]
105053 [[sk:9. apríl]]
105054 [[sl:9. april]]
105055 [[sr:9. Đ°ĐŋŅ€Đ¸Đģ]]
105056 [[fi:9. huhtikuuta]]
105057 [[sv:9 april]]
105058 [[tl:Abril 9]]
105059 [[tt:9. Äpril]]
105060 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 9]]
105061 [[th:9 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
105062 [[vi:9 thÃĄng 4]]
105063 [[tr:9 Nisan]]
105064 [[uk:9 ĐēвŅ–Ņ‚ĐŊŅ]]
105065 [[ur:9 اŲžØąÛŒŲ„]]
105066 [[wa:9 d' avri]]
105067 [[zh:4月9æ—Ĩ]]</text>
105068 </revision>
105069 </page>
105070 <page>
105071 <title>ABM</title>
105072 <id>1788</id>
105073 <revision>
105074 <id>40429517</id>
105075 <timestamp>2006-02-20T14:05:56Z</timestamp>
105076 <contributor>
105077 <ip>85.34.201.166</ip>
105078 </contributor>
105079 <comment>+ [[Agent based model]]</comment>
105080 <text xml:space="preserve">'''ABM''' is a [[three-letter abbreviation]] with multiple meanings:
105081
105082 * [[Acoustic black metal]], for example [[Impaled Northern Moonforest]]
105083 * [[Activity-based management]], see [[cost management]]
105084 * [[Anti-ballistic missile]] or the [[Anti-Ballistic Missile Treaty]]
105085 * [[Anything But Microsoft]], a [[zealot]]ry which espouses that [[Microsoft]] is evil; therefore no one should use their products or technology regardless of technical merit. A particular zealot of this nature is an ABMer. Antonym: NBM
105086 * [[Agent based model]]
105087 * [[Asynchronous Balanced Mode]]
105088 * [[Automatic Banking Machine]], usually referred to by the term [[Automatic teller machine]]
105089 * [[Bamaga Injinoo Airport]] (IATA airport code: ABM) in Bamaga, Queensland, Australia
105090 * [[Uru: Ages Beyond Myst]], a computer game
105091
105092 {{TLAdisambig}}
105093
105094 [[de:ABM]]
105095 [[nn:ABM]]
105096 [[sv:ABM]]</text>
105097 </revision>
105098 </page>
105099 <page>
105100 <title>Apuleius</title>
105101 <id>1789</id>
105102 <revision>
105103 <id>39480442</id>
105104 <timestamp>2006-02-13T17:12:26Z</timestamp>
105105 <contributor>
105106 <username>Kbdank71</username>
105107 <id>197953</id>
105108 </contributor>
105109 <comment>per [[WP:CFD]] [[Wikipedia:Categories for deletion/Log/2006 February 5|Feb 5]]</comment>
105110 <text xml:space="preserve">:''Apuleius should not be confused with [[Lucius Appuleius Saturninus]], a Roman demagogue or with [[Pseudo-Apuleius]], an author.''
105111 '''Lucius Apuleius''' (c. A.D. [[123]]/[[125|5]] - c. A.D. [[180]]), an utterly [[Roman Empire|Romanized]] [[Berber]] who described himself as &quot;half-[[Numidia|Numidian]] half-[[Gaetulia|Gaetulian]]&quot;, is remembered most for his bawdy [[Picaresque novel|picaresque]] [[Latin]] [[novel]] ''[[The Golden Ass]]'' or, in Latin, the '''Aureus Asinus''' (where the Latin word ''aureus'' - golden - connoted an element of blessed luckiness).
105112
105113 He was born in [[Madaurus]] (now [[Mdaourouch]], [[Algeria]]), a [[Roman colony]] in Numidia on the North African coast, bordering Gaetulia; this is the same ''[[colonia]]'' where [[Augustine of Hippo|Saint Augustine]] later received part of his early education, and, though located well away from the Romanized coast, is today the site of some pristine Roman ruins. Details regarding his life come mostly from his defense speech (see below) and a work entitled &quot;Florida,&quot; which consists of snippets taken from some of his best speeches. There is also a desire on the part of many to take details from his seemingly autobiographical novel and apply them to Apuleius, but this is not a reliable source -- most notably, the novel is misused as evidence that Apuleius was a worshiper of [[Isis]], though there is good reason to think that this was not the case. (Another dubious conclusion is that &quot;Lucius,&quot; the first name of the main character of the novel, was also the first name of Apuleius -- wishful thinking for which there is no concrete evidence.)
105114
105115 Apuleius inherited a substantial fortune from his father, a provincial magistrate. Apuleius studied with a master at [[Carthage]] and later at [[Athens]], where he studied [[Platonic philosophy]] among other subjects. He subsequently went to [[Rome]] to study [[Latin]] [[oratory]] and, most likely, to declaim in the law courts for a time before returning to his native North Africa. He also travelled extensively in [[Asia Minor]] and [[Egypt]], studying [[philosophy]] and [[religion]], burning up his inheritance while doing so.
105116
105117 After being accused of using [[Magic (paranormal)|magic]] to gain the attentions (and fortune) of the wealthy widow he married (the mother of a school chum from his days in Athens), he declaimed and then distributed a witty ''tour de force'' in his own defense before the [[proconsul]] and a court of magistrates convened in [[Sabratha]], near [[Tripoli]], the ''Apologia (A Discourse on Magic)''. The work has very little to do with magic, and a lot to do with making mincemeat of his opponents, with hilarity and panache. It is among the funniest works that have come down to us from Antiquity -- it is certainly the most entertaining example of Latin courtroom oratory to survive, though some fans of Cicero might disagree -- and firmly places Apuleius among the great humorists of his day.
105118
105119 His other works include ''On the God of Socrates'', ''Florida'', ''On Plato and his Doctrine'', and possibly ''On the Universe''.
105120
105121 ''The Golden Ass'' is the only Latin novel that has survived in its entirety. It is an imaginative, irreverent, and amusing work that relates the ludicrous adventures of one Lucius, who experiments in magic and is accidentally turned into an [[donkey|ass]]. In this guise he hears and sees many unusual things, until escaping from his predicament in a rather unexpected way (see SPOILER below). Within this [[frame story]] are found multiple [[story within a story|digressions]], the longest among them being the well-known tale of [[Cupid and Psyche]].
105122
105123 {{spoiler}}
105124
105125 The ending of &quot;The Golden Ass&quot; is unexpected, and should not be spoiled for those who have not read the book. However, since it is an important aspect of Apuleius's masterpiece, it cannot be omitted from this site -- thus the use of this warning.
105126
105127 &quot;The Golden Ass&quot; ends with the hero, Lucius, being rescued by Isis and transformed back from his donkey form. Lucius subsequently becomes a worshiper of Isis, and Apuleius provides a lengthy account of his initiation into the [[mystery religion|mysteries]] of [[Isis]], which some see as [[autobiography|autobiographical]]. But Apuleius need not have been a worshiper of Isis to know the details he provides, and this work is more likely to belong to a sub-genre of stories involving rescue by Isis. It is even possible that he is mocking such intensely devout worshipers of the goddess.
105128
105129 == External links ==
105130 *{{gutenberg author|id=Apuleius|name=Apuleius}}
105131 *[http://www.thelatinlibrary.com/apuleius.html Apulei Opera] (Latin texts of all the surviving works of Apuleius) at [[The Latin Library]]
105132 *[http://www.cwru.edu/UL/preserve/stack/Apologia.html English translation of ''Florida'' by H. E. Butler (PDF)]
105133 *[http://www.chieftainsys.freeserve.co.uk/apuleius_apology01.htm English translation of the ''Apologia'' by H. E. Butler]
105134 *[http://www.cwru.edu/UL/preserve/stack/Apologia.html English translation of the ''Apologia'' by H. E. Butler (PDF)]
105135 *[http://ccat.sas.upenn.edu/jod/apuleius/index.html Apuleius - Apologia: Seminar] (Latin text of the ''Apologia'' with H. E. Butler's English translation and an English crib with discussion and commentary)
105136 *[http://www.unisi.it/ricerca/ist/anc_hist/online/apuleio/hunink/hunink.htm Apuleius of Madauros, ''Pro Se De Magia (Apologia)'', edited with a commentary by Vincent Hunink] (Long and detailed introduction to the ''Apologia'')
105137
105138
105139 [[Category:Roman era humorists]]
105140 [[Category:Roman era novelists]]
105141 [[Category:Ancient Roman rhetoricians]]
105142
105143 [[cs:Lucius Apuleius]]
105144 [[de:Apuleius]]
105145 [[el:ΑĪ€ÎŋĪ…ÎģΎΚÎŋĪ‚]]
105146 [[es:Apuleyo]]
105147 [[fr:ApulÊe]]
105148 [[gl:Apuleio]]
105149 [[it:Apuleio]]
105150 [[la:Apuleius]]
105151 [[hu:Apuleius]]
105152 [[nl:Lucius Apuleius Madaurensis]]
105153 [[pt:Apuleio]]
105154 [[ru:АĐŋŅƒĐģĐĩĐš]]
105155 [[sr:АĐŋŅƒĐģĐĩŅ˜]]
105156 [[fi:Apuleius]]
105157 [[sv:Apuleius]]</text>
105158 </revision>
105159 </page>
105160 <page>
105161 <title>Alexander Selkirk</title>
105162 <id>1790</id>
105163 <revision>
105164 <id>40196255</id>
105165 <timestamp>2006-02-18T22:06:31Z</timestamp>
105166 <contributor>
105167 <ip>67.185.117.241</ip>
105168 </contributor>
105169 <comment>/* Cast away life */</comment>
105170 <text xml:space="preserve">__NOTOC__
105171 '''Alexander Selkirk''', born '''Alexander Selcraig''', ([[1676]]&amp;ndash;[[13 December]] [[1721]]) was a sailor who spent four years as a [[castaway]] on an uninhabited island; he is supposed to be the prototype of [[Daniel Defoe|Defoe's]] ''[[Robinson Crusoe]]''.
105172 ==Biography==
105173 ===Early life===
105174 The son of a shoemaker and [[tanning|tanner]] in [[Lower Largo]], [[Fife]], [[Scotland]], he was born in 1676. In his youth he displayed a quarrelsome and unruly disposition, and having been summoned on [[27 August]] [[1695]] before the kirk-session for his &quot;''undecent carriage''&quot; (indecent behaviour) in church, &quot;''did not compear [appear], having gone away to &amp;thorn;e sea: this bussiness is continued till his return''&quot; ([[quotation]] in original [[spelling]]).
105175
105176 At an early period he was engaged in [[buccaneer]] expeditions to the South Seas, and in [[1703]] joined famed [[privateer]] and [[exploration|explorer]] [[William Dampier]] on the [[galleon]] ''Cinque Ports'' as sailing master. The following year, in [[October]], the ''[[Cinque Ports (1703 ship)|Cinque Ports]]'' was stopped over at the uninhabited [[archipelago]] of [[Juan FernÃĄndez Islands|Juan FernÃĄndez]] for a mid-expedition restock of supplies and fresh water. At this point, Selkirk had grave concerns about the seaworthiness of his vessel (the ''Cinque Ports'', later sank, losing most hands) and opted to stay ashore, banking on an impending visit by another ship. His decision spawned almost immediate regret. He chased and called after his boat to no avail; Selkirk spent a solitary residence of four years and four months on [[Juan FernÃĄndez Islands|Juan FernÃĄndez]]. He took with him a [[musket]], [[gunpowder]], [[carpenter|carpenter's]] tools, a knife, a Bible, and his clothing.
105177 ===Cast away life===
105178 Selkirk initially stayed on the beach, fearing strange inland sounds he assumed to be dangerous beasts. During this period, he camped in a small cave, consumed [[shellfish]] for nutrition, surveyed the ocean each day for a possible rescue, and suffered from deep loneliness, depression, and regret. Eventual hordes of [[sea lion]]s, collecting on the beach for their mating and weaning season, drove him to the island's interior.
105179
105180 There, life became significantly better. A bevy of new food sources became available: [[Wild Goat|wild goats]], introduced by earlier sailors, provided [[meat]] and [[milk]]; uncultivated [[turnips]], [[cabbage]], and [[black pepper|pepper]] berries offered diversity and spice. [[Rat]]s, also not native, were an initial problem -- they made a habit of gnawing on Selkirk during the night. However, by domesticating and living near equally feral [[cat]]s, he was able to sleep soundly.
105181
105182 Selkirk made extraordinary use of the equipment he took from the ship and, later, that which he made from island materials. He carpentered two [[hut]]s out of native [[Pimento tree]]s and employed his musket and knife to hunt and clean goats. However, when his gunpowder dwindled, he had to resort to chasing his prey on foot. This resulted in a major injury wherein he tumbled off a cliff and was rendered unconscious for about twenty four hours (his prey had unwittingly intervened, sparing him a broken back).{{ref|fall}} He also read from the [[Bible]] frequently, finding it beneficial to his emotional state and grasp of English. When Selkirk's clothing wore out, he fashioned new garments from goatskin using a [[nail]] to sew. His father was a tanner, and the lessons he had learned as a child helped him greatly on the island. When his shoes were no longer usable, Selkirk's feet had become so toughened and calloused that he found them unnecessary. He forged a new knife out of iron barrel rings left on the beach.
105183
105184 Two vessels arrived and departed before his escape; both were [[Spain|Spanish]]. As a [[Scotland|Scotsman]] and [[privateer]], he faced a fate worse than death if captured. Selkirk hid from both crews.
105185
105186 The long awaited rescue occurred on [[2 February]] [[1709]] by way of privateer ''Duke'', a ship piloted by the same William Dampier mentioned earlier. Selkirk was discovered off the island by the ''Duke''&lt;nowiki&gt;'&lt;/nowiki&gt;s [[Captain]], [[Woodes Rogers]], who called him the Governor of the island. Upon being found, the four year castaway was completely incoherent with joy. The agile Selkirk caught two or three goats a day, helping restore the health of Rogers's men. Rogers eventually made Selkirk his mate and gave him the independent command of one of his prizes. Rogers's ''A cruising voyage round the world: first to the South-Sea, thence to the East-Indies, and homewards by the Cape of Good Hope'' was published in [[1712]], with an account of Selkirk's ordeal.
105187
105188 In 1717 Selkirk had returned to Lower Largo, but only stayed a few months. There he met Sophia Bruce, a sixteen year old dairymaid, and they eloped to [[London]]. Within a year he had again gone to sea. On a visit to [[Plymouth]], he married a widowed innkeeper. According to the ship's [[data logging|log]], he died at 8 p.m. on [[December 13]], [[1721]] while [[lieutenant]] on board the Royal ship ''[[Weymouth]]'', probably succumbing to the [[yellow fever]] which had devastated the voyage. He was buried at sea off the west coast of [[Africa]].
105189
105190 ==The Island==
105191 *One of the islands in [[Juan FernÃĄndez Islands]] has been named Alejandro Selkirk.
105192
105193 ==Notes==
105194 #{{note|fall}} Rodgers, Woodes, ''Providence display’d, or a very surprizing account of one'', p. 6.
105195
105196 ==References==
105197 *Selcraig, B. (July 2005). &quot;The Real Robinson Crusoe&quot;. ''[[Smithsonian]]'', p.82-90.
105198 {{1911}}
105199
105200 ==Further reading and information==
105201 Diana Souhami, ''Selkirk's Island: The True and Strange Adventures of the Real Robinson Crusoe'', (2001) ISBN 0151005265
105202
105203 == External links ==
105204 *[http://www.ini.unizh.ch/~tobi/alex/alex.html Account of a trip to Selkirk's Island]
105205 *[http://www.timesonline.co.uk/article/0,,3-1783811,00.html Site of Selkirk's camp indentified], from [[The Times]] (London), [[17 September]] [[2005]].
105206
105207 [[Category:1676 births|Selkirk, Alexander]]
105208 [[Category:1721 deaths|Selkirk, Alexander]]
105209 [[Category:Natives of Fife|Selkirk, Alexander]]
105210 [[Category:Castaways|Selkirk, Alexander]]
105211
105212 [[de:Alexander Selkirk]]
105213 [[fr:Alexandre Selkirk]]
105214 [[nl:Alexander Selkirk]]
105215 [[fi:Alexander Selkirk]]
105216 [[sv:Alexander Selkirk]]</text>
105217 </revision>
105218 </page>
105219 <page>
105220 <title>Anti-ballistic missile</title>
105221 <id>1791</id>
105222 <revision>
105223 <id>41381115</id>
105224 <timestamp>2006-02-26T23:35:14Z</timestamp>
105225 <contributor>
105226 <username>Mahanchian</username>
105227 <id>606519</id>
105228 </contributor>
105229 <comment>Disambiguation link repair ([[Wikipedia:Disambiguation pages with links|You can help!]])</comment>
105230 <text xml:space="preserve">An '''anti-ballistic missile''' (ABM) is a [[missile]] designed to counter [[ballistic missile]]s. A ballistic missile is used to deliver [[nuclear weapon| nuclear]], [[Chemical warfare| chemical]], [[Biological warfare| biological]] or conventional [[warhead]]s in a [[External ballistics|ballistic]] flight [[trajectory]]. The term &quot;anti-ballistic missile&quot; describes any antimissile system designed to counter ballistic missiles. However the term is more commonly used for ABM systems designed to counter long range, nuclear-armed [[Intercontinental ballistic missile]]s (ICBMs).
105231
105232 Only two ABM systems have previously been operational against ICBMs, the U.S. [[Safeguard (nuke)| Safeguard]] system, and the Russian A-35 system which used the Galosh interceptor. Safeguard was only briefly operational; the Russian system has been improved and is still active, now called A-135 and using two missile types, Gorgon and Gazelle. However the U.S. [[Ground-Based Midcourse Defense]] (GMD, previously called [[National Missile Defense|NMD]]) system has recently reached initial operational capability.
105233
105234 Three shorter range tactical ABM systems are currently operational: the U.S. [[MIM-104 Patriot| Patriot]], Navy [[Aegis combat system]]/[[Standard missile| Standard SM-3]], and the Israeli [[Arrow missile| Arrow]]. The longer-range U.S. [[Terminal High Altitude Area Defense]] (THAAD) system is scheduled for deployment in 2011. In general short-range tactical ABMs cannot intercept ICBMs, even if within range. The tactical ABM radar and performance characteristics do not allow it, as an incoming ICBM warhead moves much faster than a tactical missile warhead. However it's possible the higher performance THAAD missile could be upgraded to intercept ICBMs.
105235
105236 Latest versions of the U.S. [[MIM-23 Hawk| Hawk missile]] have a limited capability against tactical ballistic missiles, but is usually not described as an ABM.
105237
105238 For current US developments, see [[Missile Defense Agency]]. For other short-range missiles, see [[Sea Wolf missile|Sea Wolf]], [[MBDA Aster|Aster 15]] and [[Crotale missile]].
105239
105240 ==Early history of ABMs==
105241 === From World War II through the 1950s===
105242 The idea of shooting down rockets before they can hit their target dates from the first use of modern missiles in warfare, the German [[V-1]] and [[V-2]] program of [[World War II]]. British and American fighters attempted to destroy V-1 &quot;buzz bombs&quot; in flight prior to impact, with some success. The V-2, the first true ballistic missile, proved impossible to intercept using [[Supermarine Spitfire|Spitfire]]s and similar craft. Instead, the Allies launched [[Operation Crossbow]] to find and destroy V-2s before launch. The operation was largely ineffective, as was a similar operation during the first [[Persian_gulf|Persian]] [[Gulf War]] nearly fifty years later against the V-2's direct descendant, the Iraqi [[Scud]] missile.
105243
105244 The American armed forces began experimenting with anti-missile missiles shortly after World War II, as the extent of German research into rocketry became clear. But defenses against Soviet long-range bombers took priority until the later 1950s, when the Soviets began to test their missiles (most notably via the [[Sputnik program|Sputnik]] launch in October 1957). The first experimental ABM system was [[Project Nike|Nike Zeus]], a modification of existing air defense systems. Nike Zeus proved unworkable, and so work proceeded with [[Project Nike|Nike X]].
105245
105246 [[Image:NIKE Zeus.jpg|thumb|right|Launch of a Nike Zeus missile]]
105247
105248 Another avenue of research by the U.S. was the test explosions of several [[hydrogen bomb]]s at very high altitudes over the southern Atlantic ocean, launched from ships. When such an explosion takes place a burst of [[X-ray]]s are released that strike the Earth's atmosphere, causing secondary showers of charged particles over an area hundreds of miles across. The movement of these charged particles in the Earth's magnetic field causes a powerful [[electromagnetic pulse|EMP]] which induces very large currents in any conductive material. The idea was to destroy any electronics on the warheads. The project was found to be unworkable, although the exact reasons are not given.
105249
105250 Other countries were also involved in early ABM research. A more advanced project was at [[DRE Valcartier|CARDE]] in [[Canada]], which rearched the main problems of ABM systems. This included developing several advanced [[infrared]] detectors for terminal guidance, a number of missile airframe designs, a new and much more powerful solid rocket fuel, and numerous systems for testing it all. After a series of drastic budget cuts in the late 1950s the research wound down. One offshoot of the project was [[Gerald Bull]]'s system for inexpensive high-speed testing, consisting of missile airframes fired from a [[sabot]] round, which would later form the basis of [[Project HARP]].
105251
105252 ==Developments in the 1960s and 1970s==
105253 ===Nike-X, Sentinel and Safeguard===
105254 [[Image:meck6.jpg|thumb|185px|Dual launch of Sprint missiles during a salvo test at [[Meck|Meck island]] ]]
105255 Nike X was a US system of two missiles, radars and their associated control systems. The original Nike Zeus (later called Spartan) was upgraded for longer range and a much larger 5 megatonne warhead intended to destroy warheads with a burst of x-rays outside the atmosphere. A second shorter-range missile called [[Sprint (missile)|Sprint]] with very high acceleration was added to handle warheads that evaded longer-ranged Spartan. Sprint was a very fast missile (some sources claimed it accelerated to 8,000 mph within 4 seconds of flight--an average acceleration of ''100 [[g]]''!) and had a smaller W66 [[Neutron bomb|enhanced radiation]] warhead in the 1-3 kiloton range for in-atmosphere interceptions.
105256
105257 The new Spartan changed the deployment plans as well. Previously the Nike systems were to have been clustered near cities as a last-ditch defense, but the Spartan allowed for interceptions at hundreds of miles range. Therefore the basing changed to provide almost complete coverage of the United States in a system known as [[Safeguard (nuke)|Sentinel]]. Later Sentinel was restructured to a more limited defense of ICBM sites against incoming warheads. That system used the same Spartan/Sprint missiles and radar, and was called [[Safeguard (nuke)| Safeguard]].
105258
105259 ===Moscow ABM system===
105260 The only other ICBM ABM system to reach production was the [[Soviet Union|Soviet]] A-35 system. It was initially a single-layer exoatmospheric (outside the atmosphere) design, using the Galosh (SH-01/ABM-1) interceptor. It was deployed at four sites around [[Moscow]] in the early 1970s.
105261
105262 Originally intended to be a larger deployment, the system was downsized to the two sites allowed under the 1972 ABM treaty. It was upgraded in the 1980s to a two-layer system. The Gorgon (SH-11/ABM-4) long-range missile was designed to handle intercepts outside the atmosphere, and the Gazelle (SH-08/ABM-3) short-range missile endoatmospheric intercepts that eluded Gorgon. In general the system is thought to have capabilities similar to that of the former U.S. Safeguard system.
105263
105264 ===The problem of defense against MIRVs===
105265 [[Image:Peacekeeper-missile-testing.jpg|thumb|right|Testing of the [[LGM-118A Peacekeeper]] re-entry vehicles, all eight fired from only one missile. Each line represents the path of a warhead which, were it live, would detonate with the explosive power of twenty-five [[Little Boy|Hiroshima-style]] weapons.]]
105266 ABM systems were initially developed to counter single warheads from large [[Intercontinental ballistic missile]]s (ICBMs). The economics seemed simple enough: since rocket costs increase rapidly with size, interceptor cost should be less than the attacking ICBMs (which had much longer range and heavier payloads). In an arms race the defense would always win.
105267
105268 Things changed dramatically with the introduction of [[Multiple independently targetable reentry vehicle]] (MIRV) warheads. Suddenly each launcher was throwing not one warhead, but several. The defense would still require a rocket for every warhead, as they would be re-entering over a wide space and could not be attacked by several warheads from a single antimissile rocket. Suddenly the defense was more expensive than offense: it was much less expensive to add more warheads, or even decoys, than it was to build the interceptor needed to shoot them down.
105269
105270 The experimental success of Nike X persuaded the [[Lyndon B. Johnson]] administration to propose a thin ABM defense. In a September 1967 speech, Defense Secretary [[Robert McNamara]] described it as [[Safeguard (nuke)| Sentinel]]. McNamara, a private ABM opponent because of cost and feasibility (see [[cost-exchange ratio]]), claimed that Sentinel would be directed not against the Soviet Union's missiles (since the [[Soviet Union|USSR]] had more than enough missiles to overwhelm any American defense), but rather against the potential nuclear threat of the [[People's Republic of China]].
105271
105272 In the meantime a public debate over the merit of ABMs broke out. Even before the MIRV problem made ABM effectiveness non-workable in the late [[1960s]], some technical difficulties had already made an ABM system questionable for a large sophisticated attack. One problem was the [[Fractional Orbital Bombardment System]] (FOBS) that would give little warning to the defense. Another problem was high altitude EMP (whether from offensive or defensive nuclear warheads) which could degrade defensive radar systems.
105273
105274 Technical difficulties aside, the debate turned to an odd position: that no defense at all was better than any defense. Namely, a false sense of security might encourage ABM-defended nations to escalate against minor threats, believing they would be protected against any response. By this reasoning simply starting to deploy such a system could prompt a full-scale attack before it could become operational and thereby render such an attack useless. This curious set of arguments thus put the system in a terrible position: it couldn't possibly work, but if it did that would be even worse.
105275
105276 ===The ABM Treaty of 1972===
105277 Various technical, economic and political problems led to the [[Anti-Ballistic Missile Treaty|ABM treaty]] of 1972, which restricted the deployment of strategic (not tactical) antiballistic missiles.
105278
105279 Under the ABM treaty and a 1974 revision, each country was allowed to deploy a single ABM system with only 100 interceptors to protect a single target. The Soviets deployed a system named A-35 (using Galosh interceptors), designed to protect Moscow. The U.S. deployed [[Safeguard (nuke)| Safeguard ]] (using Spartan/Sprint interceptors) to defend ballistic missile sites at Grand Forks Air Force Base, North Dakota, in 1975. The U.S. Safeguard system was only briefly operational. The Russian system (now called A-135) has been improved and is still active around Moscow. On June 13, 2002, the US withdrew from the treaty.
105280
105281 Why did the Soviets and Americans accept the treaty?
105282
105283 * Deployment of even a limited defensive system might well invite a pre-emptive nuclear attack before it could be implemented
105284 * Soviet leaders suspected that the United States, with its mammoth resources and technological superiority, might well be able to create a leakproof defense.
105285 * Deploying ABM systems would likely invite another expensive arms race for defensive systems, in addition to maintaining existing offensive expenditures
105286 * Then-current technology did not permit a thorough defense against a sophisticated attack
105287 * Concerns that use of nuclear warheads on antimissile interceptors would degrade capability of defensive radar, thus possibly rendering defense ineffective after the first few intercepts
105288 * In the U.S, political and public concern of detonating defensive nuclear warheads over friendly territory
105289 * An ICBM defense could jeopardize the [[Mutual assured destruction|Mutually Assured Destruction]] concept, thus being a destabilizing influence
105290
105291 In an ironic twist, this limitation of defensive arms eventually led to treaties limiting the construction of offensive arms, known as the [[Strategic Arms Limitation Talks|SALT I]] treaties.
105292
105293 Although designed and ratified under Republican President Nixon and Secretary of State Henry Kissinger, conservatives in the United States generally remained opposed to the ABM Treaty.
105294
105295 ==ABM developments in the 1980s and Persian Gulf War==
105296 The [[Ronald Reagan|Reagan]]-era [[Strategic Defense Initiative]] (better known as &quot;Star Wars&quot;), along with research into various energy-beam weaponry, brought new interest in the area of ABM technologies.
105297
105298 SDI was an extremely ambitious program to provide a total shield against a massive Soviet ICBM attack. The initial concept envisioned large sophisticated orbiting laser battle stations, space-based relay mirrors, and nuclear-pumped X-ray laser satellites. Later research indicated that some planned technologies such as X-ray [[Laser]]s were not feasible with then-current technology. As research continued, SDI evolved through various concepts as designers struggled with the difficulty of such a large complex defense system. SDI remained a research program and was never deployed. However several SDI technologies were used in follow on ABM systems.
105299
105300 The [[MIM-104 Patriot|Patriot antiaircraft missiles]] was the first deployed tactical ABM system, although it was not designed from the outset for that task and consequently had limitations. It was used in the 1991 Gulf War to attempt to intercept Iraqi [[Scud]] missiles. Post-war analyses show that the Patriot much less effective than initially thought because of its radar and control system's inability to discriminate warheads from other objects when the Scud missiles broke up during reentry. On the other hand, the Scud itself was highly inaccurate and not very reliable. It was more a psychological than real threat to military targets.
105301 &lt;!--(See new 1990s section. The arrow system doesn't require hit-to-kill and is non-nuclear which contradicts this section)
105302 &lt;!--(You're right, I fixed it.- joema 23-Feb-06)Testing of ABMs and ABM technology continued through the 1990s with mixed success. Use of non-nuclear interceptors requires that the interceptor physically contact the incoming payload -- a much more difficult problem. There are also many unresolved issues with warhead discrimination and decoy deployment. There is little doubt that occasional intercepts are possible. The issue is whether an ABM system is a cost effective deterrent or whether a potential enemy will simply deploy a few more missiles with more warheads.--&gt;
105303
105304 ==Post Gulf War ABM developments in the 1990s==
105305 ===Tactical ABMs deployed===
105306 [[Image:Navy Theater Ballistic Missile Defense.JPG|thumb|right|230px|Developed in th late 1990s, the Lightweight Exo-Atmospheric Projectile (LEAP) attaches to a modified [[Standard missile|SM-2 Block IV missile]] used by the [[United States Navy|U.S. Navy]]]]
105307 &lt;!--[http://www.fas.org/spp/starwars/program/nmd/index.html FAS] also has a time line for ABM/NMB/TBMD starting in [http://www.fas.org/spp/starwars/program/milestone.htm Missie Defense Milestones]--&gt;
105308 Testing of ABMs and ABM technology continued through the 1990s with mixed success. However, following the Gulf War, improvements were made to several U.S. air defense systems. [[MIM-104 Patriot| Patriot PAC-3]] was developed and tested following the Gulf War. The PAC-3 is a complete redesign of the system deployed during the war, including a totally new missile. The improved guidance, radar and missile performance improves the probablility of kill over the earlier PAC-2. In operation Iraqi Freedom, the Patriot PAC-3 had a near 100% sucess rate at intercepting short range [[tactical ballistic missile]]s (TBMs). However since no longer range Iraqi [[Scud]] missiles were fired, PAC-3 effectiveness againt those was untested. Also the PAC-3 was involved in two [[fratricide]] incidents: two incidents of Patriot firings at coalition aircraft and one of U.S. aircraft firing on a Patriot battery [http://www.acq.osd.mil/dsb/reports/2005-01-Patriot_Report_Summary.pdf].
105309
105310 From 1992 to 2000 a demonstration system for the US Army [[Terminal High Altitude Area Defense]] was deployed at [[White Sands Missile Range]]. Tests were conducted on a regular basis and resulted in early failures, but successful intercepts occurred in 1999. A new version of the Hawk missile was tested in the early to mid 90's and by the end of 1998 the majority of US Marine Corps [[MIM-23 Hawk|Hawk]] systems were modified to support basic theater anti-ballistic missile capabilities[http://www.fas.org/spp/starwars/program/hawk.htm]. Following the Gulf war, the [[Aegis combat system]] was expanded to include ABM capabilities. The [[Standard missile]] system was also enhanced and tested for ballistic missile interception. In the late 90's SM-2 block IVA missiles were tested in a theater ballistic missile defense role.[http://www.fas.org/spp/starwars/program/sm2.htm] Standard Missile 3 (SM3) systems have also been tested for an ABM role. In 1998, Defense secretary William Cohen proposed spending an additional $6.6 billion on ballistic missile defense programs to build a system to protect against attacks from North Korea or accidental launches from Russia or China[http://www.pbs.org/newshour/bb/military/jan-june99/nmd_1-28a.html]. The [[Israel]]i [[Arrow missile|Arrow]] system was initially tested in 1990, before the first Gulf War. The Arrow was supported by the United States throughout the nineties.
105311
105312 ===Brilliant Pebbles===
105313 Approved for acquisition by the Pentagon in 1991 but never realized, Brilliant Pebbles was a proposed space-based anti-ballistic system that tried to avoid some of the problems of the earlier SDI concepts. Rather than use sophisticated large laser battle stations and nuclear-pumped X-ray laser satellites, Brilliant Pebbles consisted of a thousand very small, highly intelligent orbiting satellites with kinetic warheads. The system relied on advances in computer technology, avoided problems with overly centralized command and control and risky, expensive development of large, complicated space defense satellites. It promised to be much less expensive to develop and have less technical development risk.
105314
105315 The name Brilliant Pebbles comes from the small size of the satellite interceptors and great computational power enabling more autonomous targeting. Rather than rely exclusively on ground-based control, the many small interceptors would cooperatively communicate among themselves and target a large swarm of ICBM warheads in space or in the late boost phase. Development was later discontinued in favor of a limited ground-based defense.
105316
105317 ===SDI changed to NMD===
105318 In the early 1990s, President G. H. W. Bush called for a more limited version using rocket-launched interceptors based on the ground at a single site. In 1993, SDI was reorganized as the Ballistic Missile Defense Organization. Deployment of the more limited system, called the National Missile Defense (NMD) was planned to protect all 50 states from a rogue missile attack. Research and development of the NMD system continued under the Clinton administration from 1992 to 2000.
105319
105320 ==Current ABM developments==
105321 A renewed interest in missile defense cooincided with the election of President [[George W. Bush]] in 2000. In several tests, the U.S. military has demonstrated the feasibility of shooting down long and short range ballistic missiles. Combat effectivness of newer systems against tactical ballistic missiles seems very high, as the [[MIM-104 Patriot| Patriot PAC-3]] had a 100% success rate in Operation Iraqi Freedom. However NMD real-world effectiveness against longer range ICBMs is less clear.
105322
105323 While the Reagan era Strategic Defense Initiative was intended to shield against a massive Soviet attack, the current [[National Missile Defense]] has the more limited goal of shielding against a limited attack by a [[rogue state]].
105324
105325 The Bush administration has accelerated development and deployment of a system proposed in 1998 by the Clinton administration. The system is a dual purpose test and interception facility in Alaska, and as of 2006 is operational with a few interceptor missiles. The Alaska site provides more protection against North Korean missiles or accidental launches from Russia or China, but is likely less effective against missiles launched from Iran. The Alaska interceptors may be later augmented by the naval [[Aegis Ballistic Missile Defense System]], by ground-based missiles in other locations, or by the [[Boeing YAL-1| Boeing Airborne Laser]]. President Bush has referenced the [[September 11, 2001 Terrorist Attacks]] and the proliferation of ballistic missiles as reasons for missile defense.
105326
105327 &lt;!-- (Seems POV and a broad generalization, and I can't find a source for it. Please cite source and uncomment) Often overlooked in the ABM debate in the United States is the resistance of many Pentagon leaders to the construction of a National Missile Defense. Admirals and generals of all services oppose spending huge sums (currently $8bn/yr in 2003) to research, develop, and procure NMD systems. They would prefer to have that money spent on new conventional weapons, training, equipment, or pay. By conventional [[procurement]] methodologies ([[cost-benefit analysis]] and [[cost-utility analysis]]) missile defense would be regarded as a 'bad buy' owing to its very high costs, high level of project risk (it is essentially a research project, not acquisition of proven technologies) and the benefits are disputed. In order to prevent its cancellation by the Pentagon, successive administrations have placed missile defense outside of direct Pentagon control in a separate organisation.--&gt;
105328
105329 ===International ABM efforts===
105330 [[Image:Arrow missle.jpg|thumb|right|An Arrow anti-ballistic missile interceptor]]
105331 In 1993, a symposium was held by western European nations to explore potential future ballistic missile defense programs. In the end, the council recommended deployment of early warning and surveillance systems as well as regionally controlled defense systems. [http://www.fas.org/spp/starwars/program/europe/weu_93/weu1363tasc.htm] In 1998 the [[Israel]]i military conducted a successful test of their [[Arrow missile|Arrow ABM]], developed in Israel with American assistance. Designed to intercept incoming missiles traveling at up to 2 mile/s (3 km/s), the Arrow is expected to perform much better than the Patriot did in the Gulf War. [[Taiwan]] is also engaged in the development of an anti-ballistic missile system, based on its indigenously developed Tien Kung-II (Sky Bow) SAM system. Although reports suggest a promising system, the ROC government continues to show strong interest towards the American [[Terminal High Altitude Area Defense]] (THAAD) program.
105332
105333 &lt;!--'A link to a section on international responses to American NMD is needed. A link to international ABM systems and Non-US systems is needed.'--&gt;
105334
105335 ==See also==
105336 *[[National Missile Defense]]
105337 *[[nuclear disarmament]]
105338 *[[nuclear proliferation]]
105339 *[[nuclear warfare]]
105340 *[[atmospheric reentry]]
105341 *[[Terminal High Altitude Area Defense]]
105342 *[[Aegis Ballistic Missile Defense System]]
105343 *[[sprint (missile)]]
105344 *[[Spartan (missile)]]
105345 *[[Safeguard (nuke)| Safeguard/Sentinel ABM system]]
105346
105347 ==External links==
105348 * The [http://www.cdi.org Center for Defense Information] has many resources on ABMs and NMD.
105349 * The [http://www.fas.org/ssp/bmd/index.html Federation of American Scientists], as usual, is a wonderful resource for technical data, full-text of key documents, and analysis.
105350 * [http://www.missilethreat.com/systems/ MissileThreat.com], a listing and descriptions of ABM systems around the world.
105351 * [http://www.srmsc.org/ The unofficial website of the Stanley R. Mickelson Safeguard complex] contains relevant images and history of the Safeguard program.
105352 * [http://www.redstone.army.mil/history/vigilant/intro.html History of U.S. Air Defense Systems]
105353
105354 {{Missile types}}
105355 :&lt;br /&gt;
105356 {{airlistbox}}
105357
105358 [[Category:Anti-ballistic missiles|*]]
105359
105360 [[he:&amp;#1496;&amp;#1497;&amp;#1500; &amp;#1504;&amp;#1490;&amp;#1491; &amp;#1496;&amp;#1497;&amp;#1500;&amp;#1497;&amp;#1501;]]
105361 [[nn:ABM]]</text>
105362 </revision>
105363 </page>
105364 <page>
105365 <title>August 29</title>
105366 <id>1793</id>
105367 <revision>
105368 <id>41906422</id>
105369 <timestamp>2006-03-02T14:54:48Z</timestamp>
105370 <contributor>
105371 <username>Jimmmmmmmmm</username>
105372 <id>515208</id>
105373 </contributor>
105374 <comment>/* Births */ added Babayaro</comment>
105375 <text xml:space="preserve">{| style=&quot;float:right;&quot;
105376 |-
105377 |{{AugustCalendar}}
105378 |-
105379 |{{ThisDateInRecentYears|Month=August|Day=29}}
105380 |}
105381 '''[[August 29]]''' is the 241st day of the year in the [[Gregorian Calendar]] (242nd in [[leap year]]s), with 124 days remaining. It is also the 1st day of [[Thoth]] - which is the 1st day of the Egyptian Horoscope. Thoth is the Ibis-headed god of knowledge.
105382
105383
105384 ==Events==
105385 *[[708]] - Copper coins are minted in [[Japan]] for the first time (Traditional [[Japanese calendar|Japanese date]]: August 10, 708).
105386 *[[1189]]- [[Ban Kulin]] wrote &quot;The Charter of Kulin&quot;, which become a symbolic &quot;birth certificate&quot; of [[Bosnia and Herzegovina|Bosnian]] statehood
105387 *[[1261]] - [[Pope Urban IV|Urban IV]] becomes [[Pope]], the last man to do so without being a [[Cardinal (Catholicism)|Cardinal]] first.
105388 *[[1475]] - The [[Treaty of Picquigny]] ends a brief war between [[France]] and [[England]].
105389 *[[1484]] - [[Pope Innocent VIII|Cardinal Giovanni Battista Cibo]], a staunch supporter of the [[Spanish Inquisition]], is elected Pope Innocent VIII.
105390 *[[1521]] - The [[Ottoman Turks]] capture [[NÃĄndorfehÊrvÃĄr]], now known as [[Belgrade]].
105391 *[[1526]] - [[Battle of MohÃĄcs]]: The Ottoman Turks led by [[Suleiman the Magnificent]] defeat and kill the last [[Jagiellonian]] king of [[Hungary]] and [[Bohemia]].
105392 *[[1533]] - [[Inca]] [[emperor]] [[Atahualpa]] is [[Execution (legal)|executed]] in [[Cajamarca]] by the garrote.
105393 *[[1541]] - The Ottoman Turks capture [[Buda]], the capital of the Hungarian Kingdom.
105394 *[[1756]] - [[Frederick the Great]] attacks [[Saxony]], beginning the [[Seven Years' War]].
105395 *[[1786]] - [[Shays' Rebellion]], an armed uprising of [[Massachusetts]] farmers, begins in response to high debt and tax burdens.
105396 *[[1831]] - [[Michael Faraday]] discovers [[electromagnetic induction]].
105397 *[[1842]] - The [[Tokugawa shogunate]] orders the local [[Daimyo|daimyō]] to begin providing foreign ships with fresh water and supplies when requested. (Traditional [[Japanese calendar|Japanese date]]: July 24, 1842).
105398 *[[1862]] - [[Battle of Aspromonte]]: [[Italy|Italian]] royal forces defeat rebels.
105399 *[[1869]] - The [[Mount Washington Cog Railway]] opens, making it the world's first [[cog railway]].
105400 *[[1871]] - [[Emperor Meiji]] orders the [[Abolition of the han system]] and the establishment of [[Prefectures of Japan|prefectures]] as local centers of administration. (Traditional [[Japanese calendar|Japanese date]]: July 14, 1871).
105401 *[[1885]] - [[Gottlieb Daimler]] patents the world's first [[motorcycle]].
105402 *[[1895]] - The formation of the [[Rugby League| Northern Rugby Union]] at the George Hotel, [[Huddersfield]], [[England]].
105403 *[[1896]] - [[Chop suey]] is invented in [[New York City]].
105404 *[[1898]] - The [[Goodyear]] tire company is founded.
105405 *[[1907]] - The [[Quebec Bridge]] collapses during construction, killing 75 workers.
105406 *[[1910]] - [[Japan]] changes [[Korea|Korea's]] name to [[Joseon|Chōsen]] and appoints a governor-general to rule its new colony.
105407 *[[1911]] - [[Ishi]], considered the last [[Native Americans in the United States|Native American]] to make contact with whites, emerges from the wilderness of northeastern [[California]].
105408 *[[1922]] - Turkish forces set fire to [[Smyrna]], in [[Asia Minor]].
105409 *[[1930]] - The last 36 remaining inhabitants of [[St Kilda, Scotland|St Kilda]] are voluntarily evacuated to Scotland.
105410 *[[1943]] - [[Occupation of Denmark|German-occupied Denmark]] [[scuttle]]s most of its navy; Germany dissolves Danish government.
105411 *[[1944]] - [[Slovak National Uprising]] takes place as 60,000 [[Slovaks|Slovak]] troops turn against the [[Nazi]] rulers.
105412 *[[1949]] - [[Soviet atomic bomb project]]: The [[Soviet Union]] tests its first [[atomic bomb]], known as ''First Lightning'' or ''[[Joe 1]]'', at [[Semipalatinsk Test Site|Semipalatinsk]], [[Kazakhstan]].
105413 *[[1952]] - Premiere of [[John Cage]]'s ''4'33&quot;'' in [[Woodstock, New York]].
105414 *[[1958]] - [[United States Air Force Academy]] opens in [[Colorado Springs, Colorado]].
105415 *[[1966]] - Last [[The Beatles|Beatles]] concert, in [[San Francisco, California]].
105416 *1966 - Execution of [[Sayyid Qutb]], a leading theoretician of the Egyptian [[Muslim Brotherhood]].
105417 *[[1982]] - The synthetic [[chemical element]] [[Meitnerium]], [[atomic number]] 109, is first synthesized at the [[Gesellschaft fÃŧr Schwerionenforschung]] in [[Darmstadt]], Germany.
105418 *[[1991]] - [[Supreme Soviet]] suspends all activities of the Soviet Communist Party.
105419 *[[1995]] - [[NATO]] launches [[Operation Deliberate Force]] against Bosnian Serb forces.
105420 *[[1996]] - [[Vnukovo Airlines Flight 2801]], a [[Vnukovo Airlines]] [[Tupolev Tu-154]] crashes into a mountain on the [[Arctic]] island of [[Spitsbergen]], killing all 141 aboard.
105421 *[[1997]] - At least 98 villagers are killed by the [[Armed Islamic Group|GIA]] in the [[Rais massacre]], [[Algeria]].
105422 *1997 - Serial killer [[Ángel Maturino ResÊndiz]] bludgeons to death [[Christopher Maier]] of [[Lexington, Kentucky]], [[United States|USA]], the first of nine victims.
105423 *[[2003]] - [[Ayatollah]] [[Sayed Mohammed Baqir al-Hakim]], the [[Shia Muslim]] leader in [[Iraq]], is [[assassin]]ated in a [[terrorism|terrorist]] bombing, along with nearly 100 worshippers as they leave a [[mosque]] in [[Najaf]].
105424 *[[2005]] - [[Hurricane Katrina]] [[Effect of Hurricane Katrina on New Orleans|devastates]] much of the [[U.S. Gulf Coast]] from [[Louisiana]] (especially [[New Orleans, Louisiana|New Orleans]]) to the [[Florida Panhandle]], killing more than 1,417 and costing over 75 billion dollars in damage.
105425 *2005 - [[Esquivalience]] found to be a false word
105426
105427 ==Births==
105428 *[[1619]] - [[Jean-Baptiste Colbert]], French minister of finance (d. [[1683]])
105429 *[[1628]] - [[John Granville, 1st Earl of Bath]], English royalist statesman (d. [[1701]])
105430 *[[1632]] - [[John Locke]], English philosopher (d. [[1704]])
105431 *[[1725]] - [[Charles Townshend]], English politician (d. [[1767]])
105432 *[[1756]] - [[Heinrich Graf von Bellegarde]], Austrian field marshal and statesman (d. [[1845]])
105433 *[[1756]] - [[Jan Śniadecki]], Polish mathematician, philosopher and astronomer (d. [[1830]])
105434 *[[1777]] - [[Nikita Yakovlevich Bichurin]], Russian Sinologist (d. 1852)
105435 *[[1780]] - [[Jean Auguste Dominique Ingres|Jean Ingres]], French painter (d. [[1867]])
105436 *[[1805]] - [[Frederick Maurice]], English theologian (d. [[1872]])
105437 *[[1809]] - [[Oliver Wendell Holmes, Sr.]], American physician and writer (d. [[1894]])
105438 *[[1810]] - [[Juan Bautista Alberdi]], founding father of the Argentine Republic (d. [[1884]])
105439 *[[1843]] - [[David B. Hill]], Governor of New York (d. [[1910]])
105440 *[[1844]] - [[Edward Carpenter]], English Socialist poet (d. [[1929]]
105441 *[[1862]] - [[Andrew Fisher]], fifth [[Prime Minister of Australia]] (d. [[1928]])
105442 *1862 - [[Maurice Maeterlinck]], Belgian writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1949]])
105443 *[[1871]] - [[Albert Lebrun]], French politician (d. [[1950]])
105444 *[[1876]] - [[Charles F. Kettering]], American inventor (d. [[1958]])
105445 *[[1898]] - [[Preston Sturges]], American screenwriter (d. [[1959]])
105446 *[[1904]] - [[Werner Forssmann]], German physician, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1979]])
105447 *[[1905]] - [[Dhyan Chand]], Indian hockey player (d. [[1979]])
105448 *[[1915]] - [[Ingrid Bergman]], Swedish actress (d. [[1982]])
105449 *[[1916]] - [[George Montgomery]], American actor (d. [[2000]])
105450 *[[1917]] - [[Isabel Sanford]], American actress (d. [[2004]])
105451 *[[1920]] - [[Charlie Parker]], American jazz saxophonist and composer (d. [[1955]])
105452 *[[1923]] - [[Richard Attenborough|The Lord Attenborough]], English film director
105453 *[[1924]] - [[Consuelo VelÃĄzquez]], Mexican songwriter (d. [[2005]])
105454 *1924 - [[Dinah Washington]], American singer (d. [[1963]])
105455 *[[1933]] - [[Arnold Koller]], Swiss Federal Councilor
105456 *[[1936]] - [[John McCain]], American politician
105457 *[[1937]] - [[James Florio]], Governor of New Jersey
105458 *[[1938]] - [[Elliott Gould]], American actor
105459 *1938 - [[Robert Rubin]], [[United States Secretary of the Treasury]]
105460 *[[1939]] - [[William Friedkin]], American film director
105461 *1939 - [[Joel Schumacher]], American film director
105462 *[[1940]] - [[Gary Gabelich]], race car driver and land world speed record holder
105463 *[[1941]] - [[Robin Leach]], English television host
105464 *[[1946]] - [[Bob Beamon]], American jumper
105465 *[[1958]] - [[Michael Jackson]], American singer and songwriter
105466 *[[1958]] - [[Lenny Henry]], British Comic
105467 *[[1959]] - [[Ernesto Rodrigues]], Portuguese composer
105468 *[[1959]] - [[Akkineni Nagarjuna]], Telugu film actor
105469 *1959 - [[Timothy Perry Shriver]], American chairman of the Special Olympics
105470 *[[1961]] - [[Carsten Fischer]], German field hockey player
105471 *[[1962]] - [[Rebecca De Mornay]], American actress
105472 *[[1963]] - [[Elizabeth Fraser]], English singer ([[Cocteau Twins]])
105473 *[[1969]] - [[Me'Shell NdegÊOcello]], American singer
105474 *1969 - [[Joe Swail]], Northern Irish snooker player
105475 *[[1970]] - [[Jacco Eltingh]], Dutch tennis player
105476 *[[1971]] - [[Carla Gugino]], American actress
105477 *[[1976]] - [[Stephen Carr]], Irish footballer
105478 *[[1978]] - [[Celestine Babayaro]], Nigerian footballer
105479 *[[1979]] - [[Chieu Luu]], Canadian journalist
105480 *[[1980]] - [[David Desrosiers]], Canadian musician ([[Simple Plan]])
105481 *[[1981]] - [[Lanny Barbie]], Canadian [[porn star]]
105482 *[[1985]] - [[DuÅĄan Jocić]], Serbian Warlord
105483
105484 ==Deaths==
105485 *[[886]] - [[Basil I]], [[Byzantine Emperor]] (b. [[811]])
105486 *[[1093]] - [[Hugh I, Duke of Burgundy]] (b. [[1057]])
105487 *[[1395]] - Duke [[Albert III of Austria]] (b. [[1349]])
105488 *[[1435]] - [[Isabeau de Bavière]], queen of [[Charles VI of France]] (b. [[1371]])
105489 *[[1442]] - [[John VI, Duke of Brittany]] (b. [[1389]])
105490 *[[1526]] - King [[Louis II of Hungary and Bohemia]] (killed in battle) (b. [[1506]])
105491 *[[1533]] - [[Atahualpa]], last Inca ruler of Peru
105492 *[[1542]] - [[CristovÃŖo da Gama]], Portuguese soldier (born c.[[1510s|1516]])
105493 *[[1657]] - [[John Lilburne]], English dissenter
105494 *[[1712]] - [[Gregory King]], English statistician (b. [[1648]])
105495 *[[1769]] - [[Edmund Hoyle]], English author and teacher (b. [[1672]])
105496 *[[1780]] - [[Jacques-Germain Soufflot]], French architect (b. [[1713]])
105497 *[[1799]] - [[Pope Pius VI]] (b. [[1717]])
105498 *[[1877]] - [[Brigham Young]], American religious leader and western settler (b. [[1801]])
105499 *[[1904]] - [[Murad V]], [[Ottoman Sultan]] (b. [[1840]])
105500 *[[1930]] - [[William Archibald Spooner]], English writer (b. [[1844]])
105501 *[[1935]] - [[Astrid of the Belgians|Queen Astrid of Belgium]] (b. [[1905]])
105502 *[[1947]] - [[Manolete]], Spanish bullfighter (b. [[1917]])
105503 *[[1966]] - [[Sayyid Qutb]], Egyptian theoretician (b. [[1906]])
105504 *[[1968]] - [[Ulysses S. Grant III]], American soldier and planner (b. [[1881]])
105505 *[[1972]] - [[Lale Andersen]], German singer (b. [[1905]])
105506 *[[1975]] - [[Eamon de Valera]], first [[Taoiseach]] and third [[President of Ireland]] (b. [[1882]])
105507 *[[1981]] - [[Lowell Thomas]], American writer and broadcaster (b. [[1892]])
105508 *[[1982]] - [[Ingrid Bergman]], Swedish actress (b. [[1915]])
105509 *[[1987]] - [[Lee Marvin]], American actor (b. [[1924]])
105510 *[[1989]] - [[Peter Scott]], English explorer, naturalist, and painter (b. [[1909]])
105511 *[[2003]] - Ayatollah [[Sayed Mohammed Baqir al-Hakim]], Iraqi political leader (b.[[1939]])
105512 *[[2004]] - [[Hans Vonk]], Dutch conductor (b. [[1942]])
105513
105514 ==Holidays and observances==
105515 *[[Eastern Orthodoxy|Eastern Orthodox Christianity]] and [[Calendar of Saints|Roman Catholic Church]] commemorate the beheading of [[John the Baptist]] with a feast day
105516 *[[Slovakia]] - [[Slovak National Uprising]] Day ([[1944]], against the Nazi's)
105517 *[[United States]] - Hurricane Awareness Day (in response to [[Hurricane Katrina]])
105518
105519 ==Fictional==
105520 * The day the running stopped for fugitive [[Richard Kimble]] - [[29 August]] [[1967]].
105521 * Judgment Day in the movie ''[[Terminator 2: Judgment Day]]'' - [[29 August]] [[1997]].
105522
105523 ==External links==
105524 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/29 BBC: On This Day]
105525
105526 ----
105527
105528 [[August 28]] - [[August 30]] - [[July 29]] - [[September 29]] &amp;ndash; [[historical anniversaries|listing of all days]]
105529
105530 {{months}}
105531
105532 [[af:29 Augustus]]
105533 [[ar:29 ØŖØēØŗØˇØŗ]]
105534 [[an:29 d'agosto]]
105535 [[ast:29 d'agostu]]
105536 [[bg:29 авĐŗŅƒŅŅ‚]]
105537 [[be:29 ĐļĐŊŅ–ŅžĐŊŅ]]
105538 [[bs:29. august]]
105539 [[ca:29 d'agost]]
105540 [[ceb:Agosto 29]]
105541 [[cv:ÇŅƒŅ€ĐģĐ°, 29]]
105542 [[co:29 d'aostu]]
105543 [[cs:29. srpen]]
105544 [[cy:29 Awst]]
105545 [[da:29. august]]
105546 [[de:29. August]]
105547 [[et:29. august]]
105548 [[el:29 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
105549 [[es:29 de agosto]]
105550 [[eo:29-a de aÅ­gusto]]
105551 [[eu:Abuztuaren 29]]
105552 [[fo:29. august]]
105553 [[fr:29 aoÃģt]]
105554 [[fy:29 augustus]]
105555 [[ga:29 LÃēnasa]]
105556 [[gl:29 de agosto]]
105557 [[ko:8ė›” 29ėŧ]]
105558 [[hr:29. kolovoza]]
105559 [[io:29 di agosto]]
105560 [[id:29 Agustus]]
105561 [[ia:29 de augusto]]
105562 [[ie:29 august]]
105563 [[is:29. ÃĄgÃēst]]
105564 [[it:29 agosto]]
105565 [[he:29 באוגוסט]]
105566 [[jv:29 Agustus]]
105567 [[ka:29 აგვისáƒĸო]]
105568 [[csb:29 zÊlnika]]
105569 [[ku:29'ÃĒ gelawÃĒjÃĒ]]
105570 [[lt:RugpjÅĢčio 29]]
105571 [[lb:29. August]]
105572 [[hu:Augusztus 29]]
105573 [[mk:29 авĐŗŅƒŅŅ‚]]
105574 [[ms:29 Ogos]]
105575 [[nap:29 'e aÚsto]]
105576 [[nl:29 augustus]]
105577 [[ja:8月29æ—Ĩ]]
105578 [[no:29. august]]
105579 [[nn:29. august]]
105580 [[oc:29 d'agost]]
105581 [[pl:29 sierpnia]]
105582 [[pt:29 de Agosto]]
105583 [[ro:29 august]]
105584 [[ru:29 авĐŗŅƒŅŅ‚Đ°]]
105585 [[sco:29 August]]
105586 [[sq:29 Gusht]]
105587 [[scn:29 di austu]]
105588 [[simple:August 29]]
105589 [[sk:29. august]]
105590 [[sl:29. avgust]]
105591 [[sr:29. авĐŗŅƒŅŅ‚]]
105592 [[fi:29. elokuuta]]
105593 [[sv:29 augusti]]
105594 [[tl:Agosto 29]]
105595 [[tt:29. August]]
105596 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 29]]
105597 [[th:29 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
105598 [[vi:29 thÃĄng 8]]
105599 [[tr:29 Ağustos]]
105600 [[uk:29 ŅĐĩŅ€ĐŋĐŊŅ]]
105601 [[wa:29 d' awousse]]
105602 [[war:Agosto 29]]
105603 [[zh:8月29æ—Ĩ]]
105604 [[pam:Agostu 29]]</text>
105605 </revision>
105606 </page>
105607 <page>
105608 <title>August 30</title>
105609 <id>1794</id>
105610 <revision>
105611 <id>41841633</id>
105612 <timestamp>2006-03-02T02:20:54Z</timestamp>
105613 <contributor>
105614 <username>Can't sleep, clown will eat me</username>
105615 <id>603177</id>
105616 </contributor>
105617 <minor />
105618 <comment>Reverted edits by [[Special:Contributions/210.8.54.32|210.8.54.32]] to last version by Rklawton</comment>
105619 <text xml:space="preserve">{| style=&quot;float:right;&quot;
105620 |-
105621 |{{AugustCalendar}}
105622 |-
105623 |{{ThisDateInRecentYears|Month=August|Day=30}}
105624 |}
105625 '''August 30''' is the 242nd day of the year in the Gregorian Calendar (243rd in leap years), with 123 days remaining.
105626
105627 ==Events==
105628 *[[711]] - [[K'inich K'an Joy Chitam]], king of the [[Maya civilization|Maya]] city of [[Palenque]], disappears from history. He was probably taken prisoner by a rivalling city state.
105629 *[[1574]] - [[Guru Ram Das]] became the Fourth Sikh Guru/Master
105630 *[[1590]] - [[Tokugawa Ieyasu]] enters [[Edo Castle]]. (Traditional [[Japanese calendar|Japanese date]]: August 1, 1590)
105631 *[[1813]] - [[Battle of Kulm]]: [[France|French]] forces defeated by [[Austria]]n-[[Prussia]]n-[[Russia]]n alliance
105632 * 1813 - [[Creek War]]: [[Creek people|Creek]] [[Red Sticks]] carried out the [[Fort Mims Massacre]].
105633 *[[1850]] - [[Honolulu, Hawaii]], becomes a city
105634 *[[1862]] - [[American Civil War]]: [[Battle of Richmond, Kentucky]]: [[Confederate States of America|Confederates]] under [[Edmund Kirby Smith]] rout a [[Union Army|Union army]] under General [[Horatio Wright]]
105635 *[[1862]] - American Civil War: Union forces are defeated in [[Second Battle of Bull Run]]
105636 *[[1873]] - [[Austrian]] explorers [[Julius von Payer]] and [[Karl Weyprecht]] discover the archipelago of [[Franz Joseph Land]] in the [[Arctic Sea]].
105637 *[[1909]] - [[Burgess Shale]] fossils discovered by [[Charles Doolittle Walcott]]
105638 *[[1914]] - [[Battle of Tannenberg (1914)|Battle of Tannenberg]]
105639 *[[1918]] - [[Fanya Kaplan]], an [[assassin]], shoots and seriously injures [[Bolshevik]] leader [[Vladimir Lenin]]. This, along with the assassination of Bolshevik senior official [[Moisei Uritsky]] days earlier, prompts the decree for [[Red Terror]].
105640 *[[1922]] - [[Battle of Dumlupinar]], final battle in [[Greco-Turkish War (1919-1922)]] (&quot;[[Turkish War of Independence]]&quot;)
105641 *[[1941]] - [[Siege of Leningrad]] begins.
105642 * [[1942]] - [[World War II]]: [[Battle of Alam Halfa]] begins.
105643 *[[1945]] - [[Hong Kong]] is liberated from Japan by British Forces.
105644 *1945 - Supreme Commander of the Allied Forces, [[Douglas MacArthur|General Douglas MacArthur]] lands at [[NAF Atsugi|Atsugi Air Force Base]].
105645 *[[1962]] - [[Japan]] conducts a test of the [[NAMC YS-11]], its first aircraft since the [[World War II|war]] and its only successful commercial aircraft from before or after the war.
105646 *[[1963]] - Hotline between U.S. and Soviet leaders goes into operation.
105647 *[[1965]] - [[Casey Stengel]] announces his retirement from baseball
105648 *1965 - [[Rock and roll|Rock]] musician [[Bob Dylan]] releases his influential album ''[[Highway 61 Revisited]]'' featuring the song &quot;Like a Rolling Stone.&quot;
105649 *[[1967]] - [[Thurgood Marshall]] is confirmed as the first [[African American]] Justice of the [[Supreme Court of the United States|United States Supreme Court]].
105650 *[[1974]] - A [[Belgrade]]-[[Dortmund]] express train derails at the main train station in [[Zagreb]] killing 153 passengers.
105651 *[[1976]] - [[Tom Brokaw]] becomes news anchor of the ''[[The Today Show|Today Show]]''.
105652 *[[1984]] - [[STS-41-D]]: The [[Space Shuttle]] ''[[Space Shuttle Discovery|Discovery]]'' takes off on its maiden voyage.
105653 *[[1990]] - [[Tatarstan]] declares independence from the [[RSFSR]].
105654 *[[1991]] - [[Azerbaijan]] declares independence from the [[Soviet Union|USSR]].
105655 *[[1992]] - [[Michael Schumacher]] wins his first [[Formula One]] race at the [[1992 Belgian Grand Prix|Belgian Grand Prix]].
105656 *[[1993]] - ''[[The Late Show with David Letterman]]'' debuts on [[CBS]].
105657 *[[1999]] - [[East Timor]]ese vote for independence in a referendum.
105658 *[[2002]] - The [[Tandy Center Subway]] in [[Fort Worth, Texas]], ceases to operate.
105659 *[[2005]] - The [[17th Street Canal]] in New Orleans is breached during [[Hurricane Katrina]], leading to massive flooding and destruction.
105660
105661 ==Births==
105662 *[[1334]] - King [[Peter I of Castile]] (d. [[1369]])
105663 *[[1377]] - [[Shah Rukh (Timurid dynasty)|Shah Rukh]], ruler of Persia and Transoxonia (d. [[1447]])
105664 *[[1705]] - [[David Hartley (philosopher)|David Hartley]], English philosopher (d. [[1757]])
105665 *[[1720]] - [[Samuel Whitbread (brewer)|Samuel Whitbread]], English brewer and politician (d. [[1796]])
105666 *[[1748]] - [[Jacques-Louis David]], French painter (d. [[1825]])
105667 *[[1797]] - [[Mary Wollstonecraft Shelley]], English writer (d. [[1851]])
105668 *[[1839]] - [[Gulstan Ropert]], French Catholic prelate (d. [[1903]])
105669 *[[1848]])- [[Andrew Onderdonk]], Railway Contractor.
105670 *[[1852]] - [[Jacobus Henricus van 't Hoff]], Dutch chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1911]])
105671 *[[1856]] - [[Carle David TolmÊ Runge]], German physicist (d. [[1927]])
105672 *[[1871]] - [[Ernest Rutherford, 1st Baron Rutherford of Nelson]], New Zealand physicist, recipient of the [[Nobel Prize in Chemistry]] (d. [[1937]])
105673 *[[1884]] - [[Theodor Svedberg]], Swedish chemist, [[Nobel Prize in Chemistry|Nobel Prize]] laureate (d. [[1971]])
105674 *[[1893]] - [[Huey Long]], American politician (d. [[1935]])
105675 *[[1896]] - [[Raymond Massey]], Canadian actor (d. [[1983]])
105676 *[[1898]] - [[Shirley Booth]], American actress (d. [[1992]])
105677 *[[1901]] - [[Roy Wilkins]], American civil rights leader ([[1981]])
105678 *[[1906]] - [[Joan Blondell]], American actress (d. [[1979]])
105679 *[[1908]] - [[Fred MacMurray]], American actor (d. [[1991]])
105680 *[[1912]] - [[Edward Mills Purcell]], American physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1997]])
105681 *[[1913]] - [[Richard Stone]], British economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (d. [[1991]])
105682 *[[1918]] - [[Ted Williams]], baseball player (d. [[2002]])
105683 *[[1919]] - [[Kitty Wells]], American singer
105684 *[[1922]] - [[Lionel Keith Murphy|Lionel Murphy]], Australian politician and judge
105685 *[[1925]] - [[Laurent de Brunhoff]], French writer and illustrator
105686 *[[1927]] - [[Geoffrey Beene]], American fashion designer
105687 *[[1930]] - [[Warren Buffett]], American entrepreneur
105688 * 1930 - [[Jerry Tarkanian]], American basketball coach
105689 *[[1935]] - [[John Phillips (musician)|John Phillips]], American singer (The [[Mamas and the Papas]]) (d. [[2001]])
105690 *[[1939]] - [[John Peel]], English radio disc jockey (d. [[2004]])
105691 *[[1941]] - [[Ben Jones (US)|Ben Jones]], American actor and politician
105692 *[[1943]] - [[R. Crumb]], American cartoonist
105693 *1943 - [[Jean-Claude Killy]], French skier
105694 *[[1944]] - [[Molly Ivins]], American political humorist
105695 *[[1947]] - [[Peggy Lipton]], American actress
105696 *[[1948]] - [[Lewis Black]], American comedian
105697 *[[1949]] - [[Peter Maffay]], German Rock Musician
105698 *[[1951]] - [[Timothy Bottoms]], American actor
105699 *[[1951]] - [[Dana (singer)]], Irish singer and politician
105700 *[[1954]] - [[Alexander Lukashenko]], President of Belarus
105701 *[[1959]] - [[Mark 'Jacko' Jackson]], Australian footballer and actor
105702 *[[1963]] - [[Paul Oakenfold]], British disc jockey
105703 *[[1971]] - [[Lars Frederiksen]], American Guitarist ([[Rancid]]/[[UK Subs]])
105704 *[[1972]] - [[Cameron Diaz]], American actress
105705 * 1972 - [[Pavel Nedved]], Czech footballer
105706 *[[1974]] - [[Aaron Barrett]], American guitarist and singer ([[Reel Big Fish]])
105707 *[[1975]] - [[Radhi Jaidi]], Tunisian footballer
105708 *[[1982]] - [[Andy Roddick]], American tennis player
105709
105710 ==Deaths==
105711 *[[1158]] - King [[Sancho III of Castile]] (b. [[1134]])
105712 *[[1428]] - [[Emperor Shoko of Japan]] (b. [[1401]])
105713 *[[1483]] - King [[Louis XI of France]] (b. [[1423]])
105714 *[[1580]] - [[Emmanuel Philibert, Duke of Savoy]] (b. [[1528]])
105715 *[[1617]] - [[Rose of Lima]], Peruvian saint (b. [[1586]])
105716 *[[1619]] - [[Shimazu Yoshihiro]], Japanese samurai and warlord (b. [[1535]])
105717 *[[1751]] - [[Christopher Polhem]], Swedish scientist and inventor (b. [[1661]])
105718 *[[1856]] - [[Gilbert Abbott à Beckett]], English writer (b. [[1811]])
105719 *[[1879]] - [[John Bell Hood]], American Confederate general (b. [[1831]])
105720 *[[1896]] - [[Alexei Lobanov-Rostovsky]], Russian statesman (b. [[1824]])
105721 *[[1907]] - [[Richard Mansfield]], American actor and manager (b. [[1857]])
105722 *[[1928]] - [[Wilhelm Wien]], German physicist, [[Nobel Prize]] laureate (b. [[1864]])
105723 *[[1935]] - [[Henri Barbusse]], French novelist and journalist (b. [[1873]])
105724 *[[1940]] - [[J.J. Thomson]], English physicist, [[Nobel Prize]] laureate (b. [[1856]])
105725 *[[1941]] - [[Peder Oluf Pedersen]], Danish engineer and physicist (b. [[1874]])
105726 *[[1943]] - [[Father Eustaquio van Lieshout]], Dutch Catholic priest (b. [[1890]])
105727 *[[1949]] - [[Arthur Fielder]], English cricketer (b. [[1877]])
105728 *[[1961]] - [[Charles Coburn]], American actor (b. [[1877]])
105729 *[[1981]] - [[Vera-Ellen]], American actress (b. [[1921]])
105730 *[[1985]] - [[Taylor Caldwell]], English-born author (b. [[1900]])
105731 *[[1991]] - [[Jean Tinguely]], Swiss painter and sculptor (b. [[1925]])
105732 *[[1994]] - [[Lindsay Anderson]], English film director (b. [[1923]])
105733 *[[1995]] - [[Sterling Morrison]], American guitarist ([[The Velvet Underground]]) (b. [[1942]])
105734 *[[1999]] - [[Raymond Poïvet]], French comics artist, creator of ''[[Les Pionniers de l'EspÊrance]]'' (b. [[1910]])
105735 *[[2003]] - [[Charles Bronson]], American actor (b. [[1921]])
105736 *[[2003]] - [[Donald Davidson (philosopher)|Donald Davidson]], American philosopher (b. [[1917]])
105737 *[[2004]] - [[Fred Lawrence Whipple]], American astronomer (b. [[1906]])
105738
105739 ==Holidays and observances==
105740 *[[List of public holidays in Peru|Peru]] - [[Saint Rose of Lima]]'s Day
105741 *[[Turkey]] - [[Victory Day (Turkey)|Victory Day]] (to commemorate the [[Battle of Dumlupinar]] in [[1922]])
105742 *[[International Day of the Disappeared]]
105743
105744 ==External links==
105745 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/august/30 BBC: On This Day]
105746 * [http://www.nytimes.com/learning/general/onthisday/20050831.html ''The New York Times'': On This Day]
105747 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Aug&amp;day=30 On This Day in Canada]
105748
105749 ----
105750
105751 [[August 29]] - [[August 31]] - [[July 30]] - [[September 30]] -- [[historical anniversaries|listing of all days]]
105752
105753 {{months}}
105754
105755 [[af:30 Augustus]]
105756 [[ar:30 ØŖØēØŗØˇØŗ]]
105757 [[an:30 d'agosto]]
105758 [[ast:30 d'agostu]]
105759 [[bg:30 авĐŗŅƒŅŅ‚]]
105760 [[be:30 ĐļĐŊŅ–ŅžĐŊŅ]]
105761 [[bs:30. avgust]]
105762 [[ca:30 d'agost]]
105763 [[ceb:Agosto 30]]
105764 [[cv:ÇŅƒŅ€ĐģĐ°, 30]]
105765 [[co:30 d'aostu]]
105766 [[cs:30. srpen]]
105767 [[cy:30 Awst]]
105768 [[da:30. august]]
105769 [[de:30. August]]
105770 [[et:30. august]]
105771 [[el:30 ΑĪ…ÎŗÎŋĪĪƒĪ„ÎŋĪ…]]
105772 [[es:30 de agosto]]
105773 [[eo:30-a de aÅ­gusto]]
105774 [[eu:Abuztuaren 30]]
105775 [[fo:30. august]]
105776 [[fr:30 aoÃģt]]
105777 [[fy:30 augustus]]
105778 [[ga:30 LÃēnasa]]
105779 [[gl:30 de agosto]]
105780 [[ko:8ė›” 30ėŧ]]
105781 [[hr:30. kolovoza]]
105782 [[io:30 di agosto]]
105783 [[id:30 Agustus]]
105784 [[ia:30 de augusto]]
105785 [[ie:30 august]]
105786 [[is:30. ÃĄgÃēst]]
105787 [[it:30 agosto]]
105788 [[he:30 באוגוסט]]
105789 [[jv:30 Agustus]]
105790 [[ka:30 აგვისáƒĸო]]
105791 [[csb:30 zÊlnika]]
105792 [[ku:30'ÃĒ gelawÃĒjÃĒ]]
105793 [[lt:RugpjÅĢčio 30]]
105794 [[lb:30. August]]
105795 [[hu:Augusztus 30]]
105796 [[mk:30 авĐŗŅƒŅŅ‚]]
105797 [[ms:30 Ogos]]
105798 [[nap:30 'e aÚsto]]
105799 [[nl:30 augustus]]
105800 [[ja:8月30æ—Ĩ]]
105801 [[no:30. august]]
105802 [[nn:30. august]]
105803 [[oc:30 d'agost]]
105804 [[pl:30 sierpnia]]
105805 [[pt:30 de Agosto]]
105806 [[ro:30 august]]
105807 [[ru:30 авĐŗŅƒŅŅ‚Đ°]]
105808 [[sco:30 August]]
105809 [[sq:30 Gusht]]
105810 [[scn:30 di austu]]
105811 [[simple:August 30]]
105812 [[sk:30. august]]
105813 [[sl:30. avgust]]
105814 [[sr:30. авĐŗŅƒŅŅ‚]]
105815 [[fi:30. elokuuta]]
105816 [[sv:30 augusti]]
105817 [[tl:Agosto 30]]
105818 [[tt:30. August]]
105819 [[te:ā°†ā°—ā°ˇāąā°Ÿāą 30]]
105820 [[th:30 ā¸Ēā¸´ā¸‡ā¸Ģā¸˛ā¸„ā¸Ą]]
105821 [[vi:30 thÃĄng 8]]
105822 [[tr:30 Ağustos]]
105823 [[uk:30 ŅĐĩŅ€ĐŋĐŊŅ]]
105824 [[wa:30 d' awousse]]
105825 [[war:Agosto 30]]
105826 [[zh:8月30æ—Ĩ]]
105827 [[pam:Agostu 30]]</text>
105828 </revision>
105829 </page>
105830 <page>
105831 <title>Acre</title>
105832 <id>1797</id>
105833 <revision>
105834 <id>41487937</id>
105835 <timestamp>2006-02-27T18:22:20Z</timestamp>
105836 <contributor>
105837 <username>Kbh3rd</username>
105838 <id>88976</id>
105839 </contributor>
105840 <comment>revert: &quot;pole&quot; is a linear measure, not area.</comment>
105841 <text xml:space="preserve">:''This article is about the unit of measure known as the ''acre''. For other definitions, see [[Acre (disambiguation)]].''
105842
105843 An '''acre''' is an [[English unit]] of area, which is also frequently used in the United States and some [[Commonwealth of Nations|Commonwealth]] countries. It is most often used to describe areas of land.
105844
105845 == UK definition ==
105846 The UK has a definition in the system of [[Imperial unit]]s of the acre in [http://www.opsi.gov.uk/si/si1995/Uksi_19951804_en_2.htm The Units of Measurement Regulations 1995] as 4,046.8564224 [[metre|m²]]. This is equivalent to 43,560&amp;nbsp;square feet using the definition of foot in the same source.
105847
105848 == U.S. customary units ==
105849 The [[U.S. customary units]] definition of the acre in [http://ts.nist.gov/ts/htdocs/230/235/appxc/appxc.htm NIST Handbook 44] is 43,560.0 [[square foot|square feet]]. However, the U.S. has two definitions of foot (''international foot'' and ''survey foot'') and thus two definitions of acre:
105850 * The ''international acre'' is 4,046.8564224 m². This is based on ''international foot'' of 0.3048 m.
105851 * The U.S. ''survey acre'' is 4,046.87261 m². This is based on the U.S. ''survey foot'' of &lt;sup&gt;1200&lt;/sup&gt;&amp;frasl;&lt;sub&gt;3937&lt;/sub&gt; m.
105852
105853 ==Related linear measurements==
105854 Two obsolete, but related, measurements are the acre's length and the acre's breadth.
105855 *1 acre's length = 1 [[furlong]], 40 [[pole (length)|poles]], or 220 yards
105856 *1 acre's breadth = 1 [[chain (unit)|chain]], 4 poles, or 22 yards
105857
105858 == Conversion ==
105859 An international acre may be [[Conversion of units|converted]] to other units because it is equivalent to exactly:
105860 * 4,046.8564224 [[metre|m²]] (SI unit)
105861 * 40.468564224 [[Are|a]],
105862 * 0.40468564224 [[hectare|ha]],
105863 * 43,560 square feet,
105864 * 4,840 square [[yard]]s,
105865 * 160 square [[rod (unit)|rod]]s,
105866 * 4 [[rood]],
105867 * 1/640 [[square mile]],
105868 * a 10:1 rectangle of 1 [[furlong]] by 1 [[chain (length)|chain]].
105869 * 10 square chains.
105870
105871 An acre is equivalent to approximately:
105872 * a square of side 208.71 [[feet]] (63.61 [[metre]]s).
105873
105874 One [[square mile]] is 640 acres. A square parcel of land Âŧ mile wide is 40 acres. A square parcel of land ÂŊ mile on a side is 160 acres, the usual land tract under the [[Homestead Act]] in the [[United States]]. This results in common field lengths of ÂŊ mile, with every [[rod (unit)|rod]] in width equal to one acre.
105875
105876 One acre is slightly less than 91 yards on an [[American Football]] field, with the full field, including the end zones, covering approximately 1.32 acres.
105877
105878 ==History==
105879 The acre was selected as approximately the amount of land tillable by one man behind an [[ox]] in one [[day]]. This explains its rectangular definition one-[[chain (length)|chain]] by one-[[furlong]] parcel of land; a long narrow strip of land is more efficient to plough than a square plot, since the plough does not have to be turned so often. Statutory values were enacted in England by acts of
105880 * [[Edward I of England|Edward I]],
105881 * [[Edward III of England|Edward III]],
105882 * [[Henry VIII of England|Henry VIII]],
105883 * [[George IV of the United Kingdom|George IV]] and
105884 * [[Victoria of the United Kingdom|Victoria]] - the British &quot;Weights and Measures Act&quot; of [[1878]] defined it as containing 4,840 square yards.
105885
105886 In the UK use of acres is officially discouraged, but it is still a very familiar measure of land with the general public, especially middle-aged and elderly people.
105887 Acre is measured on &quot;flat plane&quot;, therefore land that is steeply sloped may contain more area than one acre while actually being only one acre on a map.
105888
105889 ==See also==
105890 * [[Conversion of units]]
105891 * [[Acre-foot]]
105892 * [[Acre (Scots)]]
105893
105894 ==External links==
105895 * [http://www.opsi.gov.uk/si/si1995/Uksi_19951804_en_2.htm The Units of Measurement Regulations 1995]
105896 * [http://ts.nist.gov/ts/htdocs/230/235/appxc/appxc.htm NIST Handbook 44]
105897
105898 [[Category:Units of area]]
105899 [[Category:Imperial units]]
105900 [[Category:Customary units in the United States]]
105901 [[Category:Real estate]]
105902
105903 [[da:Acre (arealenhed)]]
105904 [[de:Acre (Einheit)]]
105905 [[eo:Akreo (Mezurunuo)]]
105906 [[fr:Acre (unitÊ)]]
105907 [[he:אקר]]
105908 [[nl:Acre (oppervlaktemaat)]]
105909 [[ja:エãƒŧã‚Ģãƒŧ]]
105910 [[pl:Akr]]
105911 [[pt:Acre (unidade)]]
105912 [[ru:АĐēŅ€]]
105913 [[sl:Aker]]
105914 [[ta:āŽāŽ•ā¯āŽ•āŽ°ā¯]]
105915 [[vi:MáēĢu Anh]]
105916 [[uk:АĐēŅ€]]
105917 [[zh:英äēŠ]]</text>
105918 </revision>
105919 </page>
105920 <page>
105921 <title>Acre, Palestine</title>
105922 <id>1798</id>
105923 <revision>
105924 <id>29401637</id>
105925 <timestamp>2005-11-27T19:09:11Z</timestamp>
105926 <contributor>
105927 <username>Gilgamesh</username>
105928 <id>47947</id>
105929 </contributor>
105930 <text xml:space="preserve">#REDIRECT [[Acre, Israel]]</text>
105931 </revision>
105932 </page>
105933 <page>
105934 <title>ATP</title>
105935 <id>1799</id>
105936 <revision>
105937 <id>40708635</id>
105938 <timestamp>2006-02-22T13:34:59Z</timestamp>
105939 <contributor>
105940 <username>Ravn</username>
105941 <id>47881</id>
105942 </contributor>
105943 <comment>mv tennis association in category &quot;usually&quot;</comment>
105944 <text xml:space="preserve">'''ATP''' usually refers to:
105945 *[[Adenosine triphosphate]], the universal energy currency of all living organisms ([[biochemistry]])
105946 *[[Association of Tennis Professionals]], professional men's tennis association
105947
105948
105949 '''ATP''' may also refer to:
105950
105951 ;Companies:
105952
105953 *[[Alberta Theatre Projects]], a major [[Canada|Canadian]] theatre company.
105954 *[[Associated Talking Pictures]], a British film company which later became [[Ealing Studios]]
105955 *[[BAe ATP]], the ''British Aerospace ATP''
105956
105957 ;Organizations
105958 *[[Academic Talent Program]]
105959 *[[Association of Test Publishers]]
105960
105961 ;Technologies
105962 *[[AppleTalk|AppleTalk Transaction Protocol]]
105963 *[[Automated theorem proving]]
105964 *[[Automatic train protection]]
105965 *[[Anti-Tachycardia Pacing]] (see [[Implantable cardioverter-defibrillator]])
105966 *[[Asynchronous Transfer Protocol]] (telecommunications)
105967
105968 ;Other
105969 *[[Airline Transport Pilot License]]
105970 *[[Australian Technology Park]]
105971 *[[All Tomorrow's Parties (music festival)|All Tomorrow's Parties]], a music festival.
105972 **''All Tomorrow's Parties'', A song by the [[Velvet Underground]], released in 1967 on the album ''The Velvet Underground and Nico''
105973 **''All Tomorrow's Parties'', A novel in the [[Bridge trilogy]] by [[William Gibson (novelist)|William Gibson]]
105974
105975 *[[Accepted Test Plan]]
105976 *[[Addressee To Pay]]
105977 *[[Adult Treatment Panel]], guidelines for patients with high cholesterol
105978 *[[Allmänna tilläggspensionen]], a [[supplementary]] (income-related) pension in [[Sweden]].
105979 *[[Arbejdsmarkedets TillÃĻgspension]], a [[supplementary]] (income-related) pension in [[Denmark]]
105980 *[[Available To Promise]]
105981
105982 {{TLAdisambig}}
105983
105984 [[cs:ATP (rozcestník)]]
105985 [[da:ATP]]
105986 [[de:ATP]]
105987 [[es:ATP]]
105988 [[fr:ATP]]
105989 [[ko:ATP]]
105990 [[it:ATP]]
105991 [[lb:ATP]]
105992 [[nl:ATP]]
105993 [[pt:ATP (desambiguaçÃŖo)]]
105994 [[fi:ATP]]
105995 [[sv:ATP]]
105996 [[zh:ATP]]</text>
105997 </revision>
105998 </page>
105999 <page>
106000 <title>Adenosine triphosphate</title>
106001 <id>1800</id>
106002 <revision>
106003 <id>41811677</id>
106004 <timestamp>2006-03-01T22:28:44Z</timestamp>
106005 <contributor>
106006 <ip>64.81.70.227</ip>
106007 </contributor>
106008 <comment>Remove extra ] in chemical name (was introduced 21:29, 26 February 2006)</comment>
106009 <text xml:space="preserve">:''For other uses of the initials ATP, see [[ATP (disambiguation)]]''
106010 &lt;div&gt;
106011 &lt;!-- Here is a table of data; skip past it to edit the text. --&gt;
106012 &lt;!-- Submit {{:subst:chembox_simple_organic}} to get this template or go to [[:Template:Chembox_simple_organic]]. --&gt;
106013 {| align=&quot;right&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;3&quot; style=&quot;margin: 0 0 0 0.5em; background: #FFFFFF; border-collapse: collapse; border-color: #C0C090; width: 320px;&quot;
106014 ! {{chembox header}}| '''Adenosine 5'-triphosphate'''
106015 |-
106016 | align=&quot;center&quot; colspan=&quot;2&quot; | [[Image:ATP_chemical_structure.png|320px|Chemical structure of ATP]]
106017 |-
106018 | [[IUPAC nomenclature|Chemical name&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;]]
106019 | [[[5-(6-aminopurin-9-yl)-3,4-dihydroxy-oxolan-2-yl]&lt;br/&gt;methoxy-hydroxy-phosphoryl]&lt;br/&gt;oxy-hydroxy-phosphoryl] oxyphosphonic acid
106020 |-
106021 | Abbreviations
106022 | '''ATP&lt;br/&gt;'''
106023 |-
106024 | [[Chemical formula|Chemical&amp;nbsp;formula]]
106025 | C&lt;sub&gt;10&lt;/sub&gt;H&lt;sub&gt;16&lt;/sub&gt;N&lt;sub&gt;5&lt;/sub&gt;O&lt;sub&gt;13&lt;/sub&gt;P&lt;sub&gt;3&lt;/sub&gt;
106026 |-
106027 | [[Molecular mass]]
106028 | 507.181 g mol&lt;sup&gt;-1&lt;/sup&gt;
106029 |-
106030 | [[Melting point]]
106031 | ? °C
106032 |-
106033 | [[Density]]
106034 | ? g/cm&lt;sup&gt;3&lt;/sup&gt;
106035 |-
106036 | [[Acid dissociation constant|p''K''&lt;sub&gt;a&lt;/sub&gt;]]
106037 | ?
106038 |-
106039 | [[CAS registry number|CAS number]]
106040 | 56-65-5
106041 |-
106042 {{EINECS Row|200-283-2}}
106043 |-
106044 {{PubChem Row|5957}}
106045 |-
106046 |}
106047 &lt;/div&gt;
106048
106049 &lt;!-- TEXT --&gt;
106050 '''Adenosine 5'-triphosphate''' ('''ATP''') is a multifunctional [[nucleotide]] primarily known in [[biochemistry]] as the &quot;[[molecule|molecular]] currency&quot; of intracellular [[energy]] transfer. In this role ATP transports chemical energy within [[cell (biology)|cell]]s. It is produced as an energy source during the processes of [[photosynthesis]] and [[cellular respiration]]. ATP is also one of four monomers required for the synthesis of [[ribonucleic acid]]s. Furthermore, in signal transduction pathways, ATP is used to provide the phosphate for protein-kinase reactions.
106051
106052 ==Chemical properties==
106053 ATP consists of [[adenosine]] and three [[phosphate]] groups (triphosphate). The phosphoryl groups, starting with that on [[adenosine monophosphate|AMP]], are referred to as the alpha (&amp;alpha;), beta (β), and gamma (&amp;gamma;) phosphates. ATP is extremely rich in chemical energy, in particular between the second and third phosphate groups. The net change in energy of the decomposition of ATP into [[Adenosine diphosphate|ADP]] and an inorganic phosphate is -12 kCal / mole ''in vivo'' (inside of a living cell) and -7.3 kCal / mole ''in vitro'' (in laboratory conditions). This massive release in energy makes the decomposition of ATP extremely [[exergonic]], and hence useful as a means for chemically storing energy.
106054
106055 ==Synthesis==
106056 [[Image:Atp_space_filling_ray_trace.jpg|200px|thumb|Space filling image of ATP]]
106057 ATP can be produced by various cellular processes: Under aerobic conditions, the majority of the synthesis occurs in [[mitochondria]] during [[oxidative phosphorylation]] and is catalyzed by [[ATP synthase]] and, to a lesser degree, under anaerobic conditions by [[fermentation]].
106058
106059 The main fuels for ATP synthesis are [[glucose]] and [[triglyceride]]s. The fuels that result from the breakdown of triglycerides are [[glycerol]] and [[fatty acid]]s.
106060
106061 First, glucose and glycerol are metabolised to [[pyruvate]] in the [[cytosol]] using the [[glycolysis|glycolyitic]] pathway. This generates some ATP through [[substrate-level phosphorylation|substrate phosphorylation]] catalyzed by two enzymes: [[Phosphoglycerate kinase|PGK]] and [[Pyruvate kinase]]. Pyruvate is then oxidised further in the [[mitochondrion]].
106062
106063 In the mitochondrion, pyruvate is oxidised by [[pyruvate dehydrogenase]] to [[acetyl-CoA]], which is fully oxidised to carbon dioxide by the [[Krebs cycle]]. Fatty acids are also broken down to acetyl CoA by [[beta-oxidation]] and metabolised by the Krebs cycle. Every turn of the Krebs cycle produces an ATP equivalent (GTP) through [[substrate-level phosphorylation|substrate phosphorylation]] catalyzed by [[Succinyl-CoA synthetase]] as well as reducing power as NADH. The electrons from NADH are used by the [[electron transport chain]] to generate a large amount of ATP by [[oxidative phosphorylation]] coupled with ATP synthase.
106064
106065 The whole process of oxidising glucose to carbon dioxide is known as [[cellular respiration]] and is more than 40% efficient at transfering the chemical energy in glucose to the more useful form of ATP.
106066
106067 ATP is also synthesized through several so-called &quot;replenishment&quot; reactions catalyzed by the enzyme families of NDKs ([[nucleoside diphosphate kinase]]s), which use other nucleoside triphosphates as a high-energy phosphate donor, and the ATP:guanido-phosphotransferase family, which uses [[creatine]].
106068
106069 ::[[adenosine diphosphate|ADP]] + [[guanosine triphosphate|GTP]] &lt;math&gt;\to&lt;/math&gt; ATP + [[guanosine diphosphate|GDP]]
106070
106071 In plants, ATP is synthesized in [[chloroplast]]s during the light reactions of [[photosynthesis]]. Some of this ATP is then used to power the [[Calvin cycle]], which synthesizes [[triose]] sugars.
106072
106073 If a [[clot]] causes a decrease in [[oxygen]] delivery to the [[cell]], the amount of '''ATP''' produced in the [[mitochondria]] will decrease.
106074
106075 ==Function==
106076 ATP energy is released when [[hydrolysis]] of the [[high energy phosphate|phosphate-phosphate]] bonds is carried out. This energy can be used by a variety of [[enzyme]]s, [[motor protein]]s, and [[transport protein]]s to carry out the work of the cell. Also, the hydrolysis yields free inorganic [[phosphate|P&lt;sub&gt;i&lt;/sub&gt;]] and [[adenosine diphosphate|ADP]], which can be broken down further to another P&lt;sub&gt;i&lt;/sub&gt; and [[adenosine monophosphate|AMP]]. ATP can also be broken down to AMP directly, with the formation of [[pyrophosphate|PP&lt;sub&gt;i&lt;/sub&gt;]]. This last reaction has the advantage of being an effectively irreversible process in [[aqueous]] [[solution]].
106077
106078 ==ATP in the human body==
106079 The total quantity of ATP in the human body is about 0.1 [[Mole (unit)|mole]]. The energy used by human cells requires the [[hydrolysis]] of 200 to 300 moles of ATP daily. This means that each ATP molecule is recycled 2000 to 3000 times during a single day. ATP cannot be stored, hence its consumption must closely follow its synthesis. On a per-hour basis, 1 kilogram of ATP is created, processed and then recycled in the body.
106080
106081 ==Other uses==
106082 There is talk of using ATP as a [[power (physics)|power]] source for [[nanotechnology]] and implants. [[Artificial pacemaker]]s could become independent of [[battery (electricity)|batteries]]. ATP is also present as a neurotransmitter independent from its energy-containing function. Receptors that utilise ATP as their [[ligand]] are known as purinoceptors.
106083
106084 == See also ==
106085 * [[Adenosine diphosphate]] (ADP)
106086 * [[Adenosine monophosphate]] (AMP)
106087 * [[Cyclic adenosine monophosphate]] (cAMP)
106088 * [[ATPases]]
106089 * [[ATP hydrolysis]]
106090 * [[Citric acid cycle]] (also called the Krebs cycle or TCA cycle)
106091 * [[Phosphagen]]
106092 * [[ATP thermochemistry]]
106093 * [[Nucleotide exchange factor]]
106094
106095 ==External links==
106096 * [http://www.zytologie-online.net/atp.php ATP and Cell Biology (Ger)]
106097 * [http://www.emc.maricopa.edu/faculty/farabee/BIOBK/BioBookATP.html ATP and biological energy]
106098
106099 {{Nucleic acids}}
106100
106101 [[Category:Cellular respiration]]
106102 [[Category:Exercise physiology]]
106103 [[Category:Nucleotides]]
106104 [[Category:Organic compounds]]
106105 [[Category:Organophosphates]]
106106 [[Category:Phosphates]]
106107
106108 [[ar:ØŖدŲŠŲ†ŲˆØ˛ŲŠŲ† ØĢŲ„اØĢŲŠ اŲ„ŲŲˆØŗŲØ§ØĒ]]
106109 [[cs:Adenozin trifosfÃĄt]]
106110 [[da:ATP (kemi)]]
106111 [[de:Adenosintriphosphat]]
106112 [[es:Adenosín trifosfato]]
106113 [[fi:Adenosiinitrifosfaatti]]
106114 [[fr:AdÊnosine triphosphate]]
106115 [[he:ATP]]
106116 [[id:ATP]]
106117 [[is:AdenÃŗsínÞrífosfat]]
106118 [[ja:ã‚ĸãƒ‡ãƒŽã‚ˇãƒŗ三ãƒĒãƒŗ酸]]
106119 [[ko:ė•„데노ė‹  ė‚ŧė¸ė‚°]]
106120 [[lb:Adenosintriphosphat]]
106121 [[lt:ATP]]
106122 [[nl:Adenosinetrifosfaat]]
106123 [[pl:ATP]]
106124 [[pt:Adenosina tri-fosfato]]
106125 [[ru:АдĐĩĐŊОСиĐŊŅ‚Ņ€Đ¸Ņ„ĐžŅŅ„ĐžŅ€ĐŊĐ°Ņ ĐēиŅĐģĐžŅ‚Đ°]]
106126 [[sl:Adenozintrifosfat]]
106127 [[sr:АдĐĩĐŊОСиĐŊ Ņ‚Ņ€Đ¸Ņ„ĐžŅŅ„Đ°Ņ‚]]
106128 [[su:AdÊnosin trifosfat]]
106129 [[sv:Adenosintrifosfat]]
106130 [[zh:三įŖˇé…¸č…ē苷]]</text>
106131 </revision>
106132 </page>
106133 <page>
106134 <title>Abbasids</title>
106135 <id>1801</id>
106136 <revision>
106137 <id>15900265</id>
106138 <timestamp>2002-04-20T22:56:04Z</timestamp>
106139 <contributor>
106140 <username>Maveric149</username>
106141 <id>62</id>
106142 </contributor>
106143 <comment>*#redirect [[Abbasid]]</comment>
106144 <text xml:space="preserve">#redirect [[Abbasid]]</text>
106145 </revision>
106146 </page>
106147 <page>
106148 <title>Ægir</title>
106149 <id>1802</id>
106150 <revision>
106151 <id>41505652</id>
106152 <timestamp>2006-02-27T20:46:12Z</timestamp>
106153 <contributor>
106154 <username>Nebiros</username>
106155 <id>114866</id>
106156 </contributor>
106157 <comment>Reverted vandalism to version 15 February 2006 by ZwoBot</comment>
106158 <text xml:space="preserve">:''This article is about a mythological figure. For the software, see [[Aegir (software)]]; for the [[tidal bore]] on the English River Trent see [[River Trent]].''
106159
106160 '''Ægir''' is a [[jotun|giant]] and a king of the sea in [[Norse mythology]]. He seems to be a personification of the power of the [[ocean]]. He was also known for throwing massive parties for the gods.
106161
106162 In [[Snorri Sturluson]]'s [[SkÃĄldskaparmÃĄl]] Ægir is identified with Gymir and HlÊr who lived on [[Hlesey|HlÊsey]]. Gymir, it may be noticed, is the name of the giant father of the beautiful [[Gerd|Gerðr]] wooed by [[Freyr]]. Another link between the [[Æsir]] and the sea giants is found in [[Hymir]], who is said in [[Hymiskviða]] to be father of [[TÃŊr]].
106163
106164 Ægir is said to have had [[Daughters of Ægir|nine daughters]] with his wife, [[RÃĄn]]. His daughters were called the billow maidens. They were named BÃĄra, BlÃŗðughadda, Bylgja, DÃēfa, Hefring, HiminglÃĻva, HrÃļnn, KÃŗlga, and Unnr. The names of each reflect different types of waves of the sea.
106165
106166 Ægir is son of [[FornjÃŗt]]r and brother of Logi (fire, flame) and KÃĄri (wind). He is also called HlÊr and Gymir. In the [[Lokasenna]], he has a festival for the gods, where he provides the ale brewed in an enormous pot provided by [[Thor]]. The story of Thor getting the pot for the brewing is told in the [[Hymiskviða]].
106167
106168 Ægir had two servants, Fimafengr (killed by Loki) and Eldir.
106169
106170 ==Familiar forms==
106171
106172 Ægir's name is sometimes [[Old Norse orthography|anglicized]] as &quot;Aegir&quot; or &quot;Aeger&quot;. The common Swedish form is Ägir.
106173
106174 {{NorseMythology}}
106175
106176 [[Category:Norse giants]]
106177 [[Category:Sea and river gods]]
106178
106179 [[da:Ægir]]
106180 [[de:Ägir]]
106181 [[el:ΕÎŗÎēίĪ]]
106182 [[es:Ægir]]
106183 [[eo:Ægir]]
106184 [[fr:Ægir]]
106185 [[he:אייגיר]]
106186 [[ms:Aegir]]
106187 [[nl:Aegir]]
106188 [[ja:エãƒŧã‚ŽãƒĢ]]
106189 [[no:Æge]]
106190 [[pt:Aegir]]
106191 [[ru:Đ­ĐŗиŅ€]]
106192 [[sv:Ägir]]</text>
106193 </revision>
106194 </page>
106195 <page>
106196 <title>Albert Schweizer</title>
106197 <id>1804</id>
106198 <revision>
106199 <id>15900268</id>
106200 <timestamp>2002-02-25T15:51:15Z</timestamp>
106201 <contributor>
106202 <ip>Conversion script</ip>
106203 </contributor>
106204 <minor />
106205 <comment>Automated conversion</comment>
106206 <text xml:space="preserve">#REDIRECT [[Albert Schweitzer]]
106207 </text>
106208 </revision>
106209 </page>
106210 <page>
106211 <title>Antibiotic</title>
106212 <id>1805</id>
106213 <revision>
106214 <id>42161642</id>
106215 <timestamp>2006-03-04T05:45:20Z</timestamp>
106216 <contributor>
106217 <username>GreatWhiteNortherner</username>
106218 <id>35888</id>
106219 </contributor>
106220 <minor />
106221 <comment>spelling, standardize on UK English, delete duplicated word</comment>
106222 <text xml:space="preserve">An '''antibiotic''' is a [[Medication|drug]] that kills or slows the growth of [[bacterium|bacteria]]. Antibiotics are one class of [[antimicrobial]]s, a larger group which also includes anti-viral, anti-fungal, and anti-parasitic drugs. They are relatively harmless to the host, and therefore can be used to [[healthcare treatment|treat]] [[infection]]s. The term, coined by [[Selman Waksman]], originally described only those formulations derived from living organisms, in contradistinction to &quot;chemotherapeutic agents&quot;, which were purely synthetic. Nowadays the term &quot;antibiotic&quot; is also applied to [[Chemical synthesis|synthetic]] antimicrobials, such as the [[sulfonamide]]s. Antibiotics are small [[molecule]]s with a [[molecular weight]] less than 2000. They are not [[enzyme]]s.
106223 Some antibiotics are made from mould.
106224
106225 Unlike previous treatments for infections, which included poisons such as [[strychnine]] and [[arsenic]], antibiotics were labelled &quot;magic bullets&quot;: [[medication|drugs]] which targeted disease without harming the host. Conventional antibiotics are not effective in [[virus|viral]], [[fungal]] and other nonbacterial infections, and individual antibiotics vary widely in their effectiveness on various types of bacteria. Antibiotics can be categorised based on their target specificity: 'narrow-spectrum' antibiotics target particular types of bacteria, such as [[Gram-negative]] or [[Gram-positive]] bacteria, while 'wide-spectrum' antibiotics affect a larger range of bacteria.
106226
106227 The effectiveness of individual antibiotics varies with the location of the infection, the ability of the antibiotic to reach the site of infection, and the ability of the bacteria to resist or inactivate the antibiotic. Some antibiotics actually kill the bacteria (bactericidal), whereas others merely prevent the bacteria from multiplying (bacteriostatic) so that the host's immune system can overcome them.
106228
106229 Oral antibiotics are the simplest approach when effective, with intravenous antibiotics reserved for more serious cases. Antibiotics may sometimes be administered topically, as with eyedrops or ointments.
106230
106231 Antibiotics can also be classified by the organisms against which they are effective, and by the type of infection in which they are useful, which depends on the sensitivities of the organisms that most commonly cause the infection and the concentration of antibiotic obtainable in the affected tissue.
106232
106233 == History ==
106234 :''See also: [[Timeline of antibiotics]]''
106235
106236 Many ancient cultures, including the [[Ancient Greece|ancient Greeks]] and [[Ancient China|ancient Chinese]], already used [[mould|moulds]] and other plants to treat [[infections|infection]]. This worked because some moulds produce antibiotic substances. However, they couldn't distinguish or distil the active component in the moulds.
106237
106238 Modern research on antibiotics began with the discovery of [[Penicillin]] in [[1928]] by [[Alexander Fleming]].
106239
106240 == Classes of antibiotics ==
106241 {| width=&quot;100%&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; frame=&quot;none&quot; rules=&quot;none&quot; border=&quot;0&quot;
106242 |+'''Antibiotics{{Ref|antibiotics-classes-table}}'''
106243
106244 |-
106245 !style=&quot;text-align:left; background:aqua&quot; | Class !!style=&quot;background:silver;&quot; | Generic&amp;nbsp;Name !!Brand&amp;nbsp;Names !!style=&quot;background:silver&quot; | Common&amp;nbsp;Uses !!style=&quot;text-align:left&quot; | Side&amp;nbsp;Effects
106246 |-
106247 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Aminoglycosides]]
106248 |-
106249 | || style=&quot;text-align:left; background:silver;&quot; | [[Amikacin]] || ||rowspan=&quot;7&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | Infections caused by [[Gram-negative bacteria]], such as [[Escherichia coli]] and [[Klebsiella]] || rowspan=&quot;7&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Hearing loss&lt;br /&gt;[[Vertigo (medical)|Vertigo]]&lt;br /&gt;Kidney damage
106250 |-
106251 | || style=&quot;text-align:left; background:silver;&quot; | [[Gentamicin]]
106252 |-
106253 | || style=&quot;text-align:left; background:silver;&quot; | [[Kanamycin]]
106254 |-
106255 | || style=&quot;text-align:left; background:silver;&quot; | [[Neomycin]]
106256 |-
106257 | || style=&quot;text-align:left; background:silver;&quot; | [[Netilmicin]]
106258 |-
106259 | || style=&quot;text-align:left; background:silver;&quot; | [[Streptomycin]]
106260 |-
106261 | || style=&quot;text-align:left; background:silver;&quot; | [[Tobramycin]]
106262 |-
106263 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Carbacephem]]
106264 |-
106265 | || style=&quot;text-align:left; background:silver;&quot; | [[Loracarbef]] || || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top;&quot; |
106266 |-
106267 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Carbapenems]]
106268 |-
106269 | || style=&quot;text-align:left; background:silver;&quot; | [[Ertapenem]] || || rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top;&quot; |
106270 |-
106271 | || style=&quot;text-align:left; background:silver;&quot; | [[Imipenem]]/[[Cilastatin]]
106272 |-
106273 | || style=&quot;text-align:left; background:silver;&quot; | [[Meropenem]]
106274 |-
106275 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Cephalosporins]] ([[Cephalosporins#First Generation Cephalosporins|First generation]])
106276 |-
106277 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefadroxil]] || || rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastrointestinal upset and diarrhoea&lt;br /&gt;Nausea (if alcohol taken concurrently)&lt;br /&gt;Allergic reactions
106278 |-
106279 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefazolin]]
106280 |-
106281 | || style=&quot;text-align:left; background:silver;&quot; | [[Cephalexin]]
106282 |-
106283 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Cephalosporins]] ([[Cephalosporins#Second Generation Cephems|Second generation]])
106284 |-
106285 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefaclor]] || || rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastrointestinal upset and diarrhoea&lt;br /&gt;Nausea (if alcohol taken concurrently)&lt;br /&gt;Allergic reactions
106286 |-
106287 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefamandole]]
106288 |-
106289 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefoxitin]]
106290 |-
106291 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefprozil]]
106292 |-
106293 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefuroxime]]
106294 |-
106295 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Cephalosporins]] ([[Cephalosporins#Third Generation Cephalosporins|Third generation]])
106296
106297 |-
106298 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefixime]] || || rowspan=&quot;10&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;10&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastrointestinal upset and diarrhoea&lt;br /&gt;Nausea (if alcohol taken concurrently)&lt;br /&gt;Allergic reactions
106299 |-
106300 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefdinir]]
106301 |-
106302 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefditoren]]
106303 |-
106304 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefoperazone]]
106305 |-
106306 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefotaxime]]
106307 |-
106308 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefpodoxime]]
106309 |-
106310 | || style=&quot;text-align:left; background:silver;&quot; | [[Ceftazidime]]
106311 |-
106312 | || style=&quot;text-align:left; background:silver;&quot; | [[Ceftibuten]]
106313 |-
106314 | || style=&quot;text-align:left; background:silver;&quot; | [[Ceftizoxime]]
106315 |-
106316 | || style=&quot;text-align:left; background:silver;&quot; | [[Ceftriaxone]]
106317 |-
106318 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Cephalosporins]] ([[Cephalosporins#Fourth Generation Cephalosporins|Fourth generation]])
106319
106320 |-
106321 | || style=&quot;text-align:left; background:silver;&quot; | [[Cefepime]] || || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastrointestinal upset and diarrhoea&lt;br /&gt;Nausea (if alcohol taken concurrently)&lt;br /&gt;Allergic reactions
106322 |-
106323 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Glycopeptide antibiotics|Glycopeptides]]
106324 |-
106325 | || style=&quot;text-align:left; background:silver;&quot; | [[Teicoplanin]] || || rowspan=&quot;2&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;2&quot; style=&quot;text-align:left; vertical-align:top;&quot; |
106326 |-
106327 | || style=&quot;text-align:left; background:silver;&quot; | [[Vancomycin]]
106328 |-
106329 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Macrolides]]
106330 |-
106331 | || style=&quot;text-align:left; background:silver;&quot; | [[Azithromycin]] || [http://www.pfizer.com/pfizer/do/medicines/mn_zithromax.jsp Zithromax&amp;reg;]&amp;nbsp;([[Pfizer]])&lt;br /&gt;[http://www.sumamed.com.hr/disclaim.htm Sumamed&amp;reg;]&amp;nbsp;([[Pliva]]) || rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | [[Streptococcal infection]]s, [[syphilis]], [[respiratory infection]]s, [[mycoplasmal infection]]s, [[Lyme disease]] || rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Nausea, vomiting, and diarrhoea (especially at higher doses)&lt;br /&gt;Jaundice
106332 |-
106333 | || style=&quot;text-align:left; background:silver;&quot; | [[Clarithromycin]]
106334 |-
106335 | || style=&quot;text-align:left; background:silver;&quot; | [[Dirithromycin]]
106336 |-
106337 | || style=&quot;text-align:left; background:silver;&quot; | [[Erythromycin]]
106338 |-
106339 | || style=&quot;text-align:left; background:silver;&quot; | [[Troleandomycin]]
106340 |-
106341 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Monobactam]]
106342 |-
106343 | || style=&quot;text-align:left; background:silver;&quot; | [[Aztreonam]] || || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | || rowspan=&quot;1&quot; style=&quot;text-align:left; vertical-align:top;&quot; |
106344 |-
106345 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Penicillins]]
106346 |-
106347 | || style=&quot;text-align:left; background:silver;&quot; | [[Amoxicillin]] || style=&quot;text-align:left&quot; | [http://cipla.com/admin.php?mode=prod&amp;action=disp&amp;id=196 Novamox&amp;trade;]&amp;nbsp;([[Cipla]])|| rowspan=&quot;12&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | Wide range of infections; penicillin used for [[streptococcal infection]]s, [[syphilis]], and [[Lyme disease]] || rowspan=&quot;12&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastrointestinal upset and diarrhoea&lt;br /&gt;Allergy with serious [[anaphylactic reaction]]s&lt;br /&gt;Brain and kidney damage (rare)
106348 |-
106349 | || style=&quot;text-align:left; background:silver;&quot; | [[Ampicillin]]
106350 |-
106351 | || style=&quot;text-align:left; background:silver;&quot; | [[Azlocillin]]
106352 |-
106353 | || style=&quot;text-align:left; background:silver;&quot; | [[Carbenicillin]]
106354 |-
106355 | || style=&quot;text-align:left; background:silver;&quot; | [[Cloxacillin]]
106356 |-
106357 | || style=&quot;text-align:left; background:silver;&quot; | [[Dicloxacillin]]
106358 |-
106359 | || style=&quot;text-align:left; background:silver;&quot; | [[Flucloxacillin]]
106360 |-
106361 | || style=&quot;text-align:left; background:silver;&quot; | [[Mezlocillin]]
106362 |-
106363 | || style=&quot;text-align:left; background:silver;&quot; | [[Nafcillin]]
106364 |-
106365 | || style=&quot;text-align:left; background:silver;&quot; | [[Penicillin]]
106366 |-
106367 | || style=&quot;text-align:left; background:silver;&quot; | [[Piperacillin]]
106368 |-
106369 | || style=&quot;text-align:left; background:silver;&quot; | [[Ticarcillin]]
106370 |-
106371 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Polypeptide antibiotics|Polypeptides]]
106372 |-
106373 | || style=&quot;text-align:left; background:silver;&quot; | [[Bacitracin]] || || rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | Eye, ear or bladder infections; usually applied directly to the eye or inhaled into the lungs; rarely given by injection|| rowspan=&quot;3&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Kidney and nerve damage (when given by injection)
106374 |-
106375 | || style=&quot;text-align:left; background:silver;&quot; | [[Colistin]]
106376 |-
106377 | || style=&quot;text-align:left; background:silver;&quot; | [[Polymyxin B]]
106378 |-
106379
106380 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Quinolones]]
106381 |-
106382 | || style=&quot;text-align:left; background:silver;&quot; | [[Ciprofloxacin]] || style=&quot;text-align:left&quot; | [http://cipla.com/admin.php?mode=prod&amp;action=disp&amp;id=161 Ciplox&amp;trade;]&amp;nbsp;([[Cipla]])|| rowspan=&quot;9&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | Urinary tract infections, [[bacterial postatitis]], [[bacterial diarrhoea]], [[gonorrhea]]|| rowspan=&quot;9&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Nausea (rare)
106383 |-
106384 | || style=&quot;text-align:left; background:silver;&quot; | [[Enoxacin]]
106385 |-
106386 | || style=&quot;text-align:left; background:silver;&quot; | [[Gatifloxacin]]
106387 |-
106388 | || style=&quot;text-align:left; background:silver;&quot; | [[Levofloxacin]]
106389 |-
106390 | || style=&quot;text-align:left; background:silver;&quot; | [[Lomefloxacin]]
106391 |-
106392 | || style=&quot;text-align:left; background:silver;&quot; | [[Moxifloxacin]]
106393 |-
106394 | || style=&quot;text-align:left; background:silver;&quot; | [[Norfloxacin]]
106395 |-
106396 | || style=&quot;text-align:left; background:silver;&quot; | [[Ofloxacin]]
106397 |-
106398 | || style=&quot;text-align:left; background:silver;&quot; | [[Trovafloxacin]]
106399
106400 |-
106401 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Sulfonamides]]
106402 |-
106403 | || style=&quot;text-align:left; background:silver;&quot; | [[Mafenide]] || || rowspan=&quot;9&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | Urinary tract infections (except sulfacetamide and mafenide); mafenide is used topically for burns|| rowspan=&quot;9&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Nausea, vomiting, and diarrhoea&lt;br /&gt;[[Allergy]] (including skin rashes)&lt;br /&gt;Crystals in urine&lt;br /&gt;Kidney failure&lt;br /&gt;Decrease in [[white blood cell]] count&lt;br /&gt;Sensitivity to sunlight
106404 |-
106405 | || style=&quot;text-align:left; background:silver;&quot; | [[Prontosil]] (archaic)
106406 |-
106407 | || style=&quot;text-align:left; background:silver;&quot; | [[Sulfacetamide]]
106408 |-
106409 | || style=&quot;text-align:left; background:silver;&quot; | [[Sulfamethizole]]
106410 |-
106411 | || style=&quot;text-align:left; background:silver;&quot; | [[Sulfanilimide]] (archaic)
106412 |-
106413 | || style=&quot;text-align:left; background:silver;&quot; | [[Sulfasalazine]]
106414 |-
106415 | || style=&quot;text-align:left; background:silver;&quot; | [[Sulfisoxazole]]
106416 |-
106417 | || style=&quot;text-align:left; background:silver;&quot; | [[Trimethoprim]]
106418 |-
106419 | || style=&quot;text-align:left; background:silver;&quot; | [[Trimethoprim]]-[[Sulfamethoxazole]] ([[Co-trimoxazole]]) ([[TMP-SMX]])
106420 |-
106421
106422 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| [[Tetracyclines]]
106423 |-
106424 | || style=&quot;text-align:left; background:silver;&quot; | [[Demeclocycline]] || || rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top; background:silver;&quot; | [[Syphilis]], [[chlamydial infection]]s, [[Lyme disease]], [[mycoplasmal infection]]s, [[rickettsial infection]]s|| rowspan=&quot;5&quot; style=&quot;text-align:left; vertical-align:top;&quot; | Gastroitestinal upset&lt;br /&gt;Sensitivity to sunlight&lt;br /&gt;Staining of teeth&lt;br /&gt;Potential toxicity to mother and foetus during pregnancy
106425 |-
106426 | || style=&quot;text-align:left; background:silver;&quot; | [[Doxycycline]]
106427 |-
106428 | || style=&quot;text-align:left; background:silver;&quot; | [[Minocycline]]
106429 |-
106430 | || style=&quot;text-align:left; background:silver;&quot; | [[Oxytetracycline]]
106431 |-
106432 | || style=&quot;text-align:left; background:silver;&quot; | [[Tetracycline]]
106433
106434 |-
106435 !colspan=&quot;5&quot; style=&quot;text-align:left; background:aqua;&quot;| Others
106436 |-
106437 | || style=&quot;text-align:left; background:silver;&quot; | [[Chloramphenicol]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106438 |-
106439 | || style=&quot;text-align:left; background:silver;&quot; | [[Clindamycin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106440 |-
106441 | || style=&quot;text-align:left; background:silver;&quot; | [[Ethambutol]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106442 |-
106443 | || style=&quot;text-align:left; background:silver;&quot; | [[Fosfomycin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106444 |-
106445 | || style=&quot;text-align:left; background:silver;&quot; | [[Furazolidone]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106446 |-
106447 | || style=&quot;text-align:left; background:silver;&quot; | [[Isoniazid]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106448 |-
106449 | || style=&quot;text-align:left; background:silver;&quot; | [[Linezolid]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106450 |-
106451 | || style=&quot;text-align:left; background:silver;&quot; | [[Metronidazole]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106452 |-
106453 | || style=&quot;text-align:left; background:silver;&quot; | [[Nitrofurantoin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106454 |-
106455 | || style=&quot;text-align:left; background:silver;&quot; | [[Pyrazinamide]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106456 |-
106457 | || style=&quot;text-align:left; background:silver;&quot; | [[Quinupristin/Dalfopristin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106458 |-
106459 | || style=&quot;text-align:left; background:silver;&quot; | [[Rifampin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106460 |-
106461 | || style=&quot;text-align:left; background:silver;&quot; | [[Spectinomycin]] || style=&quot;text-align:left;&quot;| || style=&quot;text-align:left; background:silver;&quot; | || ||
106462 |-
106463 !style=&quot;text-align:left; background:aqua&quot; | Class !!style=&quot;background:silver;&quot; | Generic&amp;nbsp;Name !!Brand&amp;nbsp;Names !!style=&quot;background:silver&quot; | Common&amp;nbsp;Uses !!style=&quot;text-align:left&quot; | Side&amp;nbsp;Effects
106464 |}
106465
106466 == Production ==
106467 :''Main article: [[Production of antibiotics]]''
106468
106469 Since the first pioneering efforts of [[Howard Walter Florey|Florey]] and [[Ernst Boris Chain|Chain]] in 1939, the importance of antibiotics to [[medicine]] has led to much research into discovering and producing them. The process of production usually involves screening of wide ranges of microorganisms, testing and modification. Production is carried out using [[fermentation]].
106470
106471 == Side effects ==
106472 Possible side effects are varied, and range from fever and nausea to major allergic reactions. One of the more common side effects is [[diarrhea|diarrhoea]], which results from the antibiotic disrupting the normal balance of intestinal flora. Other side effects can result from interaction with other drugs, such as elevated risk of [[tendon]] damage from administration of a [[Quinolones|quinolone]] antibiotic with a systemic [[corticosteroid]].
106473
106474 Some antibiotics can interfere with the efficacy of birth control pills. Such effects were found to be unusual, and have been studied only for a limited number of antibiotics.
106475
106476 == Antibiotic misuse ==
106477 Common forms of antibiotic misuse include taking them in inappropriate situations, such as the use of antibacterials for viral infections such as the [[common cold]], and failure to take the entire prescribed course of the antibiotic, usually because the patient feels better before the infecting organism is completely eradicated. In addition to treatment failure, these practices can result in [[antibiotic resistance]] in the bacteria that survive the abbreviated treatment.
106478
106479 In the United States, vast quantities of certain antibiotics are routinely included as low doses in the diet of some kinds of healthy farm animals, where this practice has been proved to make animals grow faster. Opponents of this practice, however, point out the likelihood that it also leads to an environment conductive to the evolution of antibiotic resistance, frequently in bacteria that are known to also infect humans. There has been little or no evidence as yet of the evolution of antibiotic resistance in such bacteria actually occurring. As the majority of bacteria is killed in the pasteurization process applied to the milk, and the cooking of the meat of such animals, any possible resistance may go unnoticed until the bacteria survives it. Theoretically, though, there is a significant possibility that such resistances could be transferred through the bacterial plasmids. Excessive use of [[prophylaxis|prophylactic]] antibiotics in travellers may also be classified as misuse.
106480
106481 == Antibiotic resistance ==
106482 :''Main article: [[Antibiotic resistance]]''
106483
106484 Use or misuse of antibiotics may result in the development of ''antibiotic resistance'' by the infecting organisms, similar to the development of [[pesticide resistance]] in insects. [[Evolutionary theory]] of [[selection|genetic selection]] requires that as close as possible to 100% of the infecting organisms be killed off to avoid selection of resistance; if a small subset of the population survives the treatment and is allowed to multiply, the average susceptibility of this new population to the compound will be much less than that of the original population, since they have descended from those few organisms which survived the original treatment. This survival often results from an inheritable resistance to the compound which was infrequent in the original population but is now much more frequent in the descendants thus selected entirely from those originally infrequent resistant organisms.
106485
106486 Antibiotic resistance has become a serious problem in both the developed and underdeveloped nations. By 1984 half of the people with active [[tuberculosis]] in the [[United States]] had a strain that resisted at least one antibiotic. In certain settings, such as hospitals and some child-care locations, the rate of [[antibiotic resistance]] is so high that the normal, low cost antibiotics are virtually useless for treatment of frequently seen infections. This leads to more frequent use of newer and more expensive compounds, which in turn leads inexorably to the rise of resistance to those drugs, and a never-ending ever-spiralling race to discover new and different antibiotics ensues, just to keep us from losing ground in the battle against infection. The fear is that we will eventually fail to keep up in this race, and the time when people did not fear life-threatening bacterial infections will be just a memory of a golden era.
106487
106488 Another example of selection is ''[[Staphylococcus aureus]]'', which could be treated successfully with penicillin in the 1940s and 1950s. At present, nearly all strains are resistant to [[penicillin]], and many are resistant to [[nafcillin]], leaving only a narrow selection of drugs such as [[vancomycin]] useful for treatment. The situation is worsened by the fact that genes coding for antibiotic resistance can be transferred between bacteria, making it possible for bacteria never exposed to an antibiotic to acquire resistance from those which have. The problem of antibiotic resistance is worsened when antibiotics are used to treat disorders in which they have no efficacy, such as the common cold or other viral complaints, and when they are used widely as prophylaxis rather than treatment (as in, for example, animal feeds), because this exposes more bacteria to selection for resistance.
106489
106490 == Beyond antibiotics ==
106491 Unfortunately, the comparative ease of finding compounds which safely cured bacterial infections proved much harder to duplicate with respect to fungal and viral infections. Antibiotic research led to great strides in our knowledge of basic biochemistry and to the current biological revolution; but in the process it was discovered that the susceptibility of bacteria to many compounds which are safe to humans is based upon significant differences between the cellular and molecular physiology of the bacterial cell and that of the mammalian cell. In contrast, despite the seemingly huge differences between fungi and humans, the basic biochemistries of the fungal cell and the mammalian cell are much more similar; so much so that there are few therapeutic opportunities for compounds to attack a fungal cell which will not harm a human cell. Similarly, we know now that viruses represent an incredibly minimal intracellular parasite, being stripped down to a few genes worth of [[DNA]] or [[RNA]] and the minimal molecular equipment needed to enter a cell and actually take over the machinery of the cell to produce new viruses. Thus, the great bulk of viral metabolic biochemistry is not merely similar to human biochemistry, it actually is human biochemistry, and the possible targets of antiviral compounds are restricted to the relatively very few components of the actual virus itself.
106492
106493 Research into [[bacteriophage]]s is ongoing at the moment. Bacteriophages are a specific type of virus that only targets bacteria. Research suggests that nature has evolved several types of bacteriophage for each type of bacteria. While research into bacteriophages is only in its infancy the results are promising and have already lead to major advances in microscopic imaging (see [http://news.uns.purdue.edu/UNS/html4ever/2006/060201.Jiang.salmonella.html]). While bacteriophages provide a possible solution the problem of antibacterial resistance there is as of yet no proof that we will actually be able to deploy these microscopic killers in humans, we can only continue the research and see where it leads.
106494
106495 == References ==
106496 #{{Note|antibiotics-classes-table}} The Merck Manual of Medical Information - Home Edition, Robert Berkow (Ed.), Pocket (September, 1999), ISBN 0-671-02727-1.
106497
106498 == External links ==
106499 * [http://www.genomenewsnetwork.org/categories/index/drugs/resist.php Antibiotic News from Genome News Network (GNN)]
106500 * [http://www.eff.org/Misc/Publications/Bruce_Sterling/FSF_columns/fsf.15 Bruce Sterling's Bitter Resistance]
106501 * [http://www.jaapa.com/issues/j20040601/articles/antibiotics0604.html JAAPA: New antibiotics useful in primary care]
106502 * [http://www.isracast.com/tech_news/090605_tech.htm A new method for controlling bacterial activity without antibiotics] - Research conducted at the Hebrew University
106503
106504 === Resources ===
106505 * [http://www.apua.org Alliance for the Prudent Use of Antibiotics]
106506
106507 [[Category:Antibiotics|*]]
106508 [[Category:Pharmacologic agents]]
106509
106510 [[ca:AntibiÃ˛tic]]
106511 [[cs:Antibiotika]]
106512 [[da:Antibiotikum]]
106513 [[de:Antibiotikum]]
106514 [[es:AntibiÃŗtico]]
106515 [[eo:Antibiotiko]]
106516 [[fr:Antibiotique]]
106517 [[ko:항ėƒė œ]]
106518 [[io:Antibiotiko]]
106519 [[id:Antibiotik]]
106520 [[he:אנטיביוטיקה]]
106521 [[lt:Antibiotikas]]
106522 [[hu:Antibiotikum]]
106523 [[nl:Antibioticum]]
106524 [[ja:抗į”Ÿį‰ŠčŗĒ]]
106525 [[no:Antibiotika]]
106526 [[nn:Antibiotikum]]
106527 [[pl:Antybiotyk]]
106528 [[pt:AntibiÃŗtico]]
106529 [[ru:АĐŊŅ‚ийиОŅ‚иĐēи]]
106530 [[simple:Antibiotic]]
106531 [[sk:Antibiotikum]]
106532 [[fi:Antibiootti]]
106533 [[sv:Antibiotika]]
106534 [[th:ā¸ĸā¸˛ā¸›ā¸ā¸´ā¸Šā¸ĩā¸§ā¸™ā¸°]]
106535 [[tr:Antibiyotik]]
106536 [[uk:АĐŊŅ‚ийŅ–ĐžŅ‚иĐē]]
106537 [[zh:抗į”Ÿį´ ]]</text>
106538 </revision>
106539 </page>
106540 <page>
106541 <title>Arnold Schwarzenegger</title>
106542 <id>1806</id>
106543 <revision>
106544 <id>42118998</id>
106545 <timestamp>2006-03-03T23:13:54Z</timestamp>
106546 <contributor>
106547 <username>Karrmann</username>
106548 <id>244252</id>
106549 </contributor>
106550 <comment>replace fair use image with free use image</comment>
106551 <text xml:space="preserve">{{Infobox_Governor
106552 |name=Arnold Schwarzenegger
106553 |image=Arnold Schwarzenegger.jpg|400px
106554 |caption=
106555 |order=38&lt;sup&gt;th&lt;/sup&gt;
106556 |office=Governor of California
106557 |term_start=[[November 17]], [[2003]]
106558 |term_end=''present''
106559 |lieutenant=[[Cruz Bustamante]]
106560 |predecessor=[[Gray Davis]]
106561 |successor=''incumbent''
106562 |birth_date= [[July 30]], [[1947]]
106563 |birth_place=[[Thal, Austria|Thal bei Graz]], [[Steiermark]], [[Austria]]
106564 |death_date=
106565 |death_place=
106566 |spouse= [[Maria Shriver]]
106567 |profession= [[Actor]], [[Politician]]
106568 |party=[[Republican Party (United States)|Republican]]
106569 |footnotes=
106570 }}
106571 '''{{Audio|de_ArnoldSchwarzenegger.ogg|Arnold Alois Schwarzenegger}}''' (born [[July 30]], [[1947]]) is an [[Austria|Austrian]]-[[United States|American]] [[bodybuilder]], [[Golden Globe]] award winning [[actor]], and [[Republican Party (United States)|Republican]] [[Politics of the United States|politician]], currently serving as the 38th [[Governor of California]]. He was elected on [[October 7]], [[2003]] in [[2003 California recall|a special recall election]] which removed the sitting governor, [[Gray Davis]], from office. Schwarzenegger was sworn in on [[November 17]], [[2003]], to serve the remainder of Davis' term, which lasts until [[January 8]], [[2007]]. On September 16th, 2005 he officially announced that he will seek re-election to a full term in [[California gubernatorial election, 2006|California's 2006 gubernatorial election]].
106572
106573 Nicknamed &quot;The Austrian Oak&quot; in his body-building days, and more recently &quot;The Governator&quot; (a [[portmanteau]] of the words &quot;Governor&quot; and &quot;Terminator&quot;, after the film role), Schwarzenegger as a young man gained widespread attention as a highly successful bodybuilder, and later gained worldwide fame as a [[Hollywood, Los Angeles, California|Hollywood]] [[action film]] star. Some of his most famous films include ''[[The Terminator]]'', ''[[Predator (movie)|Predator]]'', ''[[True Lies]]'', ''[[Kindergarten Cop]]'', ''[[Total Recall (film)|Total Recall]]'', and his Hollywood breakthrough film ''[[Conan the Barbarian (film)|Conan the Barbarian]]''.
106574
106575 ==Personal background==
106576 [[Image:Arnold military.jpg|framed|left|Arnold Schwarzenegger pictured next to an [[Patton tank|M47]] tank, which he was trained to operate.]] &lt;!--Dates verified at http://www.bodybuildbid.com/articles/mrolympia/arnold-schwarzenegger.html--&gt;
106577
106578 Schwarzenegger was born in [[Thal, Austria]], a small town near the [[Styria|Styrian]] capital, [[Graz]], and christened Edward James Albetski. His parents were the local [[police chief]] and former [[Nazi stormtrooper]] [[Gustav Schwarzenegger]] (1907-1972), and his wife, the former Aurelia Jadrny (1922-1998), who had been married on [[October 20]], [[1945]], when he was 35 and she was 23 and widowed.
106579 Gustav was a strict and demanding father, who generally favored the elder of his two sons, the handsome and blonde Meinhard.
106580
106581 Meinhard died in a car accident in 1971, and Gustav died the following year. Schwarzenegger attended neither's funeral. In ''[[Pumping Iron]]'' he claimed he did not attend his father's funeral as he was training for a bodybuilding contest, although both he and the film's producer later stated that this story was taken from another bodybuilder.
106582
106583 As a boy, Schwarzenegger played many sports, but discovered his passion for [[bodybuilding]] when in his mid-teens his [[soccer]] coach took the team for [[weight training]]. He attended a [[gym]] in Graz, where he also frequented the local [[Movie theater|cinema]]s, viewing his idols such as musclemen [[Reg Park]], [[Steve Reeves]], and [[Johnny Weissmuller]] on the big screen.
106584
106585 Arnold served in the [[Military of Austria|Austrian army]] in [[1965]], completing the mandatory one year service required at the time for all 18 year old Austrian men. During this year he snuck off the base to compete in his first bodybuilding competition, the junior division of Mr. Europe, where he won first place.
106586
106587 Schwarzenegger left Thal for a job managing a gym in [[Munich, Germany]], while continuing his bodybuilding.
106588 He made his first plane trip in [[1966]], attending the [[NABBA Mr. Universe]] competition being held in [[London]]. He arrived in [[England]] knowing little English, and it was here he first started being referred to as &quot;The Austrian Oak&quot;, due to his large build and the story of him performing [[chin ups]] from the limb of an [[Oak tree]] on the banks of the river Thalersee, the lake of his hometown.
106589 He would come second in the competition, but would win the title the next year, becoming the youngest ever Mr Universe at age 20.
106590
106591 Schwarzenegger moved to the [[United States]] in [[September]] [[1968]], with little money or knowledge of the English language, and trained at [[Gold's Gym]] in [[Santa Monica]] under the [[patronage]] of [[Joe Weider]].
106592 He became a U.S. citizen in [[1983]], although he has also retained his Austrian citizenship. During this time, he earned a [[Bachelor of Arts|B.A.]] from the [[University of Wisconsin-Superior]] where he graduated with degrees in [[marketing|international marketing]] of fitness and [[business administration]] in 1979.
106593
106594 In 1983 his autobiography, ''Arnold: The Education of a Body-Builder'' was published.
106595
106596 In 1986, Schwarzenegger married TV journalist [[Maria Shriver]], niece of the late [[President of the United States]] [[John F. Kennedy]]. The couple have four children: daughters Katherine (born [[December 13]], [[1989]]) and Christina (b.[[July 23]], [[1991]]), and sons Patrick (b.[[September 18]], [[1993]]) and Christopher (b.[[September 27]], [[1997]]). Together, the couple own a home in [[gated community|gated]] [[Bel Air, California]] as well as at the fabled [[Kennedy Compound]] in [[Massachusetts]].
106597
106598 His distinctive and oft-imitated accent has led many entertainers and pundits to refer to him simply as &quot;Ah-nuldt&quot;.
106599
106600 Though Schwarzenegger refuses to discuss his plastic surgery (&quot;You are confusing me with [[Cher (entertainer)|Cher]],&quot; he told ''[[People Magazine]]'' in 2002), citing before and after photos, critics allege he has undergone procedures on his eyes and chin, and has received at least one facelift (see [http://www.rotten.com/library/bio/entertainers/actors/arnold-schwarzenegger/]).
106601
106602 ==Bodybuilding career==
106603 Schwarzenegger first gained fame as a [[bodybuilding|bodybuilder]]. One of the first competitions he won was Junior Mr. Europe. He would go on to compete in and win many bodybuilding (as well as some [[powerlifting]]) contests, including 4 [[NABBA Mr. Universe]] wins and a record 7 [[Mr. Olympia]] wins, a record which would remain until [[Lee Haney]] won his eighth straight Mr. Olympia title in 1991. In 1967 Arnold won the Munich stone lifting contest in which a stone weighing 508 German pounds, approximately 560 English pounds, is lifted between the legs while standing on two foot rests. Arnold broke the existing record, winning the contest. Arnold's goal was to become the greatest bodybuilder in the world, which meant becoming Mr. Olympia.
106604
106605 His first attempt was in 1969 where he lost to three-time champion [[Sergio Oliva]]. Arnold entered the contest confident, but when he saw Oliva in the pump room his confidence was shattered. The terrifying image of Oliva spurred Arnold to come back in 1970 with a vengence. He convincingly won the competition. Arnold won the 1971 Mr. Olympia with little incident. Then, in 1972, Oliva came back with what is still considered by many to be the greatest physique ever displayed. Arnold won the show but it was very close and bodybuilding fans still argue over whether Arnold or Sergio should have won. In 1973, Arnold once again won the Olympia with no real competition. He displayed his best physique to that point. Perhaps Arnold was in such great shape for the 1973 Olympia because he feared Oliva would once again enter the competition. In 1974, Arnold was once again in top form and won the title for the fifth consecutive time. Lou Ferrigno also competed at the '73 Olympia. Ferrigno was the first possible threat to Arnold's reign since Oliva. Arnold retired from competition after the 1974 Olympia. However, George Butler and Charles Gaines convinced him to compete one more time so they could make the bodybuilding documentary called ''[[Pumping Iron]]''. Arnold had only three months to prepare for the competition after losing significant weight to appear in the film ''Stay Hungry'' with Jeff Bridges. Ferrigno proved to not be a threat and a lighter than usual Schwarzenegger convincingly won the 1975 Olympia. After being declared Mr. Olympia for a sixth consecutive time Arnold once again retired from competition. Arnold came out of retirement to compete in the 1980 Mr. Olympia, the most controversial Olympia ever. [[Mike Mentzer]] was defeated in this competition, despite being on his best ever form (a fact which caused him to leave the world of bodybuilding). Arnold was a late entry and won with only eight weeks of preparation. Schwarzenegger is considered among the most important figures in the history of bodybuilding, and his legacy is commemorated in the [[Arnold Classic]] annual bodybuilding competition.
106606
106607 Schwarzenegger has remained a prominent face in the bodybuilding sport long after his retirement, in part due to his ownership of gyms and fitness magazines. He has presided over numerous contests and awards shows. For many years he wrote a monthly column for the bodybuilding magazines [[Muscle and Fitness|Muscle &amp; Fitness]] and ''Flex''. Shortly after being elected Governor, he was appointed executive [[editor]] of both magazines in a largely symbolic capacity. The magazines agreed to donate $250,000 a year to the Governor's various physical fitness initiatives. The magazine ''MuscleMag International'' has a monthly two page article on him and refers to him as &quot;The King&quot;.
106608
106609 Schwarzenegger's first political appointment was to the [[President's Council on Physical Fitness and Sports]], on which he served from 1990 to 1993. He was nominated by [[George H. W. Bush]], who called him Conan the Republican.
106610
106611 In 2003 two [[African-American]] bodybuilders came forward claiming that Schwarzenegger has a history of making [[racist]] comments. Schwarzenegger has allegedly said, &quot;If you gave these [[Black people|Blacks]] a country to run, they would run it down the tubes&quot; (see [http://www.drudgereport.com/ar1.htm]).
106612
106613 ===Bodybuilding contests===
106614 Schwarzenegger won most of the bodybuilding contests he competed in. Those he did not win are indicated in ''italics''
106615
106616 *1965 Junior Mr. Europe (Germany)
106617 *1966 Best Built Man of Europe (Germany)
106618 *1966 Mr. Europe (Germany)
106619 *1966 International Powerlifting Championship (Germany)
106620 *''1966 [[NABBA Mr. Universe]] amateur (London), 2nd to [[Chet Yorton]]''
106621 *1967 NABBA Mr. Universe amateur (London)
106622 *1968 NABBA Mr. Universe professional (London)
106623 *1968 German Powerlifting Championship
106624 *1968 IFBB Mr. Internaional (Mexico)
106625 *''1968 [[IFBB Mr. Universe]] (Florida), 2nd to [[Frank Zane]]''
106626 *1969 IFBB Mr. Universe (New York)
106627 *1969 NABBA Mr. Universe professional (London)
106628 *1970 NABBA Mr. Universe professional (London), defeating his boyhood idol [[Reg Park]]
106629 *''1969 [[Mr. Olympia]], 2nd to [[Sergio Oliva]]''
106630 *1970 Mr. World (Columbus, Ohio), the first time he had beaten Sergio Oliva
106631 *1970 Mr. Olympia (New York)
106632 *1971 Mr. Olympia (Paris)
106633 *1972 Mr. Olympia (Essen, Germany)
106634 *1973 Mr. Olympia (New York)
106635 *1974 Mr. Olympia (New York)
106636 *1975 Mr. Olympia (Pretoria, South Africa), the subject of the documentary ''[[Pumping Iron]]''
106637 *1980 Mr. Olympia
106638
106639 ===Steroid Use===
106640 Schwarzenegger has admitted to using performance-enhancing [[anabolic steroid]]s whilst they were legal, writing in 1977 that &quot;[steroids] were helpful to me in maintaining muscle size while on a strict diet in preparation for a contest. I did not use them for muscle growth, but rather for muscle maintenance when cutting up.&quot; However, some bodybuilders who used the same steroid cocktails as Schwarzenegger in the 1970s dispute the notion that they were used merely for &quot;muscle maintenance&quot;. Even Schwarzenegger has called the drugs &quot;tissue building.&quot; (see [http://hjem.get2net.dk/JamesBond/www/artikler/steroidemisbrug/arnoldandsteroids.htm])
106641
106642 In 1999, Schwarzenegger sued Dr. Willi Heepe, a German doctor who publicly predicted an early death for the bodybuilder based on a link between steroid use and later heart problems. Because the doctor had never examined him personally, Schwarzenegger collected a [[Deutsche Mark|DM]] 20,000 ($12,000 USD) libel judgment against him in a German court. In 1999 Schwarzenegger also sued and settled with [[Globe Magazine]], a U.S. tabloid which had made similar predictions about the bodybuilder's future health. As late as 1996, a year before open heart surgery to replace an [[aortic valve]], Schwarzenegger publicly defended his use of anabolic steroids during his bodybuilding career. (see [http://espn.go.com/columns/farrey_tom/1655597.html])
106643
106644 Schwarzenegger was born with a [[bicuspid aortic valve]]; a normal heart has [[tricuspid]] valves. According to a spokesman, Schwarzenegger has not used anabolic steroids since 1990 when they were made illegal (see [http://hjem.get2net.dk/JamesBond/www/artikler/steroidemisbrug/arnoldandsteroids.htm]). In bodybuilder slang, steroids are sometimes refered to as &quot;Arnolds&quot; (see [http://www.streetdrugs.org/dgsa.htm]).
106645
106646 ==Acting career==
106647 ===Roles===
106648 Schwarzenegger had long planned to segue from bodybuilding into a career in acting, as had done many of his idols, such as [[Reg Park]]. Initially he had trouble breaking into films due to his long surname, large muscles, and foreign accent, but was eventually chosen to play the role of Hercules (as had done both Reg Park and [[Steve Reeves]]) in ''[[Hercules in New York]]'' (1970). Credited under the name ''Arnold Strong'', his accent in the film was so thick that his lines had to be [[dubbed]] after production. His second film appearance was as a [[deaf]] and [[mute]] hitman for the mob in director [[Robert Altman|Robert Altman's]] ''[[The Long Goodbye]]'' (1973), which was followed by a much more significant part in the film ''[[Stay Hungry (film)|Stay Hungry]]'' (1976), for which he was awarded a [[Golden Globe]] for Best New Male Star. Schwarzenegger came to the attention of more people in the documentary ''[[Pumping Iron]]'' (1977), elements of which were dramatized. In 1991, Schwarzenegger purchased the rights to this film, its outtakes, and associated still photography (see [http://www.thesmokinggun.com/archive/arnoldpump1.html]).
106649
106650 [[Image:Terminator.jpg|thumb|200px|right|''[[The Terminator]]'', starring Schwarzenegger (1984)]]
106651
106652 The 6'2&quot; Schwarzenegger's breakthrough film was ''[[Conan the Barbarian (film)|Conan the Barbarian]]'' (1982), and this was cemented by a sequel, ''[[Conan the Destroyer]]'' (1984). As an actor, he is best-known as the title character of director [[James Cameron]]'s android thriller ''[[The Terminator]]'' (1984). Schwarzenegger's acting ability (described by one critic as having an emotional range that &quot;stretches from A almost to B&quot;) has long been the butt of many jokes; he retains a strong Austrian accent in his speech even in roles which do not call for such an accent. However, few of the fans of his work seem to care. He also made a mark for injecting his films with a droll, often self-deprecating sense of humor, setting him apart from more serious action heroes such as [[Sylvester Stallone]], his most prominent contemporary. (As an aside, his alternative-universe comedy/thriller ''[[Last Action Hero]]'' featured a poster of the movie ''Terminator 2: Judgment Day'' which, in that alternate universe had Sylvester Stallone as its star; a similar in-joke in ''[[Twins (movie)|Twins]]'' suggested that the two actors might one day co-star, something which has yet to come to pass).
106653
106654 [[Image:predator.gif|thumb|180px|left|''[[Predator (movie)|Predator]]'', starring Schwarzenegger (1987)]]
106655
106656 Following his arrival as a Hollywood superstar, he made a number of commercially successful films: ''[[Commando (film)|Commando]]'' (1985), ''[[Raw Deal (1986 movie)|Raw Deal]]'' (1986), ''[[The Running Man]]'' (1987), and ''[[Red Heat]]'' (1988). In ''[[Predator (movie)|Predator]]'' (1987), another commercially successful film, Schwarzenegger led a cast which included future [[Minnesota]] [[List of Governors of Minnesota|Governor]] [[Jesse Ventura]] (Ventura also appears in ''Running Man'') and future [[Kentucky]] [[List of Governors of Kentucky|Gubernatorial]] Candidate [[Sonny Landham]]. ''[[Twins (movie)|Twins]]'', (1988) a comedy with [[Danny DeVito]], was a change of pace. ''[[Total Recall (film)|Total Recall]]'' (1990), at that time the most expensive film ever, netted Schwarzenegger $10 million and 15% of the gross, and was a widely praised, thought-provoking science-fiction script behind his usual violent action. ''[[Kindergarten Cop]]'' (1990) was another comedy.
106657
106658 Schwarzenegger had a brief foray into directing, first with a [[1990]] episode of the [[TV series]] ''[[Tales from the Crypt (TV series)|Tales from the Crypt]]'', entitled &quot;[[List of Tales from the Crypt episodes#Season 2 (1990)|The Switch]]&quot;, and then with the [[1992]] [[telemovie]] ''[[Christmas in Connecticut]]''. He has not directed since.
106659
106660 Schwarzenegger's critical and commercial high-water mark was ''[[Terminator 2: Judgment Day]]'' (1991). His next film project, the self-aware action comedy ''[[Last Action Hero]],'' (1993), had the misfortune to be released opposite ''[[Jurassic Park]]'', and suffered accordingly. Schwarzenegger's career never again achieved quite the same prominence, his aura of box-office invincibility suffering. ''[[True Lies]]'' (1994) was a popular sendup of spy films, and saw Schwarzenegger reunited with director [[James Cameron]], whose own career had taken off with ''[[The Terminator]]''. Shortly thereafter came ''[[Junior (film)|Junior]]'', which brought Schwarzenegger his second [[Golden Globe]] nomination, this time for Best Actor - Musical or Comedy. It was followed by the popular, albeit by-the-numbers ''[[Eraser (movie)|Eraser]]'' (1996), and ''[[Batman and Robin (1997 movie)|Batman &amp; Robin]]'' (1997), his final film before taking time to recuperate from a back injury. Although ''[[Batman and Robin (1997 movie)|Batman &amp; Robin]]'' was a famous disaster, Schwarzenegger emerged largely unscathed. Several film projects were announced with Schwarzenegger attached to star including the remake of ''[[Planet of the Apes]]'', a new film of ''[[I Am Legend]]'' and a World War II film scripted by [[Quentin Tarantino]] that would have seen Schwarzenegger finally play an Austrian. Instead he returned with ''[[End of Days]]'' (1999) - an unsuccessful and atypically dark attempt to broaden his acting range - ''[[The 6th Day]]'' (2000) and ''[[Collateral Damage]]'' (2002), none of which came close to recapturing his former prominence. He starred in the popularly received ''[[Terminator 3: Rise of the Machines]]'' (2003) His last film appearance to date was a cameo appearance in the 2004 remake of ''[[Around the World in 80 Days (2004 movie)|Around the World in 80 Days]]'', notable for featuring him onscreen with action star [[Jackie Chan]] for the first time.
106661
106662 ===Filmography===
106663 *''[[Brutal Deluxe]]'' (2008/2009)
106664 *''[[The Kid &amp; I]]'' (2005)
106665 *''[[Around the World in 80 Days (2004 movie)|Around the World in 80 Days]]'' (2004)
106666 *''[[The Rundown]]'' (2003) (cameo)
106667 *''[[Terminator 3: Rise of the Machines]]'' (2003)
106668 *''[[Collateral Damage (movie)|Collateral Damage]]'' (2002)
106669 *''[[Dr. Dolittle 2]]'' (2001) (voice)
106670 *''[[The 6th Day]]'' (2000)
106671 *''[[End of Days]]'' (1999)
106672 *''[[Batman &amp; Robin]]'' (1997)
106673 *''[[Eraser (1996 film)|Eraser]]'' (1996)
106674 *''[[Jingle All the Way]]'' (1996)
106675 *''[[Beretta's Island]]'' (1994)
106676 *''[[True Lies]]'' (1994)
106677 *''[[Junior (film)|Junior]]'' (1994)
106678 *''[[Last Action Hero]]'' (1993)
106679 *''[[Terminator 2: Judgment Day]]'' (1991)
106680 *''[[Kindergarten Cop]]'' (1990)
106681 *''[[Total Recall (film)|Total Recall]]'' (1990)
106682 *''[[Twins (film)|Twins]]'' (1988)
106683 *''[[Red Heat]]'' (1988)
106684 *''[[Predator (film)|Predator]]'' (1987)
106685 *''[[The Running Man]]'' (1987)
106686 *''[[Raw Deal (1986 film)|Raw Deal]]'' (1986)
106687 *''[[Red Sonja (1985 film)|Red Sonja]]'' (1985)
106688 *''[[Commando (film)|Commando]]'' (1985)
106689 *''[[The Terminator]]'' (1984)
106690 *''[[Conan the Destroyer]]'' (1984)
106691 *''[[Conan the Barbarian (film)|Conan the Barbarian]]'' (1982)
106692 *''[[The Jayne Mansfield Story]]'' (1980)
106693 *''[[The Villain]]'' (1979)
106694 *''[[Scavenger Hunt]]'' (1979)
106695 *''[[Pumping Iron]]'' (1977)
106696 *''[[Stay Hungry (film)|Stay Hungry]]'' (1976)
106697 *''[[Happy Anniversary and Goodbye]]'' (1974)
106698 *''[[The Long Goodbye (film)|The Long Goodbye]]'' (1973)
106699 *''[[Hercules in New York]]'' (1970)
106700
106701 ==Political career==
106702 [[Image:Arnoldandson.jpg|thumb|200px|Schwarzenegger and son Patrick at [[Edwards Air Force Base]], [[California]] in December 2002.]]
106703
106704 ===Political affiliation===
106705 Schwarzenegger is a registered [[Republican Party (United States)|Republican]], unusual among the often heavily [[Democratic Party (United States)|Democratic]] [[Hollywood, Los Angeles, California|Hollywood]] community. He describes himself as fiscally conservative and socially moderate (i.e. he is [[pro-choice]] and supports [[stem cell]] research.) Schwarzenegger backed Republican President [[Ronald Reagan]] (another movie star turned politician) while Reagan was in office, and campaigned for [[George H.W. Bush]] in 1988. However, he chastised fellow Republicans during the impeachment of [[Bill Clinton]] in 1998. Sensing an opportunity to affect the outcome of the [[U.S. presidential election, 2004|2004 Presidential race]], Schwarzenegger campaigned in Ohio for Republican [[George W. Bush]] in the closing days of the campaign.
106706
106707 In an interview on [[October 29]], [[2002]], with [[MSNBC]]'s [[Chris Matthews]] at [[Chapman University]], Schwarzenegger explained why he is a Republican:
106708
106709 :&quot;Well, I think because a lot of people don't know why I'm a Republican, I came first of all from a socialistic country which is Austria and when I came over here in 1968 with the [[U.S. presidential election, 1968|presidential elections]] coming up in November, I came over in October, I heard a lot of the press conferences from both of the candidates [[Hubert Humphrey|Humphrey]] and [[Richard Nixon|Nixon]], and Humphrey was talking about more government is the solution, protectionism, and everything he said about government involvement sounded to me more like [[Social Democratic Party of Austria|Austrian socialism]].
106710
106711 :Then when I heard Nixon talk about it, he said open up the borders, the consumers should be represented there ultimately and strengthen the military and get the government off our backs. I said to myself, what is this guy's party affiliation? I didn't know anything at that point. So I asked my friend, what is Nixon? He's a Republican. And I said, I am a Republican. That's how I became a Republican.&quot;
106712
106713 Regarding a run for public office, in 1999, he told ''Talk'' magazine that &quot;I think about it many times.&quot; He also said, &quot;The possibility is there because I feel it inside. I feel there are a lot of people standing still and not doing enough. And there's a vacuum.&quot;
106714
106715 ===Venturing into politics===
106716 Schwarzenegger was appointed Chairman of the [[President's Council on Physical Fitness and Sports]] in the administration of [[George H. W. Bush]] from 1990 to 1993. During that time, Schwarzenegger traveled across the U.S. promoting physical fitness to kids and lobbying all 50 governors in support of school fitness programs. &quot;He would hit sometimes two or three governors in a day in his own airplane, at his own expense, somewhere around $4,000 an hour,&quot; said George Otott, his chief of staff at the time. &quot;When he walked in, it wasn't about the governor, it was about Arnold,&quot; said Otott, a retired Marine. &quot;He has what we in the military call a ''command presence''. He becomes the number one attention-getter.&quot;
106717
106718 He later served as Chairman for the California ''Governor's Council on Physical Fitness and Sports'' under Governor [[Pete Wilson]]. Schwarzenegger scored his first real political success on [[November 5]], [[2002]], when [[California]]ns approved his personally crafted and sponsored [[California Proposition 49 (2002)|Proposition 49]], the &quot;After School Education and Safety Program Act of 2002&quot;, an initiative to make state grants available for after-school programs.
106719
106720 ===2003 California recall===
106721 For years, Schwarzenegger had discussed with friends, potential donors, advisors and political allies a possible run for high political office; on [[April 10]], [[2003]], for example, he met with Republican political operative [[Karl Rove]] to discuss a future campaign.
106722
106723 In the months leading to the [[2003 California recall]], Schwarzenegger was widely rumored to be considering a run at becoming [[Governor of California]]. In the July 2003 issue of ''[[Esquire Magazine]]'', he said, &quot;Yes, I would love to be governor of California ... If the state needs me, and if there's no one I think is better, then I will run.&quot; When a petition to recall [[United States Democratic Party|Democratic]] governor [[Gray Davis]] qualified for the ballot on [[July 24]], Schwarzenegger left many wondering whether he would jump into the contest. Schwarzenegger was just wrapping up a promotional tour for ''Terminator 3'' and said he would announce his decision on whether to run on [[August 6]] on ''[[The Tonight Show with Jay Leno]]''.
106724
106725 [[Image:Arnold Schwarzenegger inauguration-crowd750.jpg|thumb|left|300px|Crowd watching Schwarzenegger inauguration]]
106726
106727 In the days and even hours leading up to the show's taping, political experts and insiders concluded that Schwarzenegger was leaning against running in California's [[October 7]] recall election. Even his closest advisors said he was probably not going to run. Rumors leading up to the announcement said that his wife, [[Maria Shriver]], a Kennedy family Democrat, was against his running, and he wanted her approval in order to run. When announcing his candidacy on [[The Tonight Show with Jay Leno|the Tonight Show]], he joked, &quot;It's the most difficult [decision] I've made in my entire life, except the one I made in 1978 when I decided to get a bikini wax&quot;. Ultimately, Shriver said she would support Schwarzenegger no matter what he chose, so he decided to run. Schwarzenegger told Leno, &quot;The politicians are fiddling, fumbling and failing. The man that is failing the people more than anyone is [[Gray Davis]]. He is failing them terribly, and this is why he needs to be recalled and this is why I am going to run for governor of the state of California.&quot;
106728
106729 As a candidate in the recall election, Schwarzenegger had the most name recognition in a crowded field of candidates, but he had never held public office and his political views were unknown to most Californians. His candidacy was immediate national and international news, with media outlets dubbing him the &quot;Governator&quot; (referring to ''[[The Terminator]]'' movies, see above) and &quot;The Running Man&quot; (the name of another of his movies), and calling the recall election &quot;Total Recall&quot; (ditto) and &quot;Terminator 4: Rise of the Candidate&quot; (referring to his movie ''[[Terminator 3: Rise of the Machines]]''). Schwarzenegger was quick to make use of his well-known one-liners, promising to &quot;pump up [[Sacramento, California]]&quot; (the state capital) and tell [[Gray Davis]] ''hasta la vista''. At the end of his first press conference, he told the audience &quot;I'll be back.&quot; Schwarzenegger looked to follow in the footsteps of former California governor and one-time movie star [[Ronald Reagan]].
106730
106731 However, due to his status as a [[naturalize]]d citizen, he would not be eligible to seek the [[President of the United States|Presidency]] unless the [[Constitution]] were to be amended (as proposed in 2000 by [[United States House of Representatives|Congressman]] [[Barney Frank]] ([[Democratic Party (United States)|D]]-[[Massachusetts|MA]]), and in July 2003 (the [[Equal Opportunity to Govern Amendment]]) by [[United States Senate|Senator]] [[Orrin Hatch]] ([[Republican Party (United States)|R]]-[[Utah|UT]])). Among his campaign team were Democrat actor [[Rob Lowe]], Democrat sounding billionaire [[Warren Buffett]], and moderate [[George Shultz]] (former Nixon and Reagan aide).
106732
106733 [[Image:Arnold Schwarzenegger sexual harassment protestors750.jpg|thumb|300px|Sexual harassment protesters]]
106734
106735 During the campaign, allegations of sexual and personal misconduct were raised against Schwarzenegger (see [[Gropegate]]). Within the last five days before the election, news reports appeared in the ''[[Los Angeles Times]]'' recounting allegations of sexual misconduct from several individual women, sixteen of whom eventually came forward with their personal stories. Chronologically, they ranged from Elaine Stockton, who claimed that Schwarzenegger groped her breast at a [[Gold's Gym]] in 1975 (she was 19 at the time), to a 51 year old woman who said that he pinned her to his chest and spanked her shortly after she met him in connection with production of his film, ''[[The Sixth Day]]'', in 2000. Schwarzenegger admitted that he has &quot;behaved badly sometimes&quot; and apologized, but also stated that &quot;a lot of (what) you see in the stories is not true&quot;. This came after a magazine interview from the same era (1975) surfaced in which Schwarzenegger discussed attending sexual orgies and indulging in drugs like [[marijuana]] and [[cocaine]] (see
106736 [http://www.sfgate.com/cgi-bin/article.cgi?f=/news/archive/2003/10/03/state1434EDT0082.DTL]], [[http://www.thesmokinggun.com/archive/arnoldinter1.html]], [[http://www.latimes.com/news/printedition/front/la-me-women2oct02,1,4493659,print.story]).
106737
106738 Allegations printed on the front page of ''[[The Los Angeles Times]]'', based on selective quotation, which Schwarzenegger claimed not to recall, were also made that he at one time admired [[Adolf Hitler]] and had praised him as a great propagandist. However the full text of the statement from which the quotation was taken significantly reduces the credibility of the allegations. Although Schwarzenegger's father was in fact a member of the [[Nazi]] party, Schwarzenegger has been a strong supporter of various Jewish groups, and has denounced the principles of the fascist German regime, saying &quot;I have always despised everything that Hitler stands for&quot;.
106739
106740 March 1992 [[Spy Magazine]] article mentions a story confirmed by &quot;a businessman and longtime friend of Schwarzenegger's&quot; -- that in the '70s Arnold &quot;enjoyed playing and giving away records of Hitler's speeches&quot; (see [http://www.s-t.com/daily/12-96/12-25-96/c06ae100.htm]]). Schwarzenegger supported the campaign of his friend, [[Kurt Waldheim]], former [[UN]] chief and a former Austrian politician who was accused of [[war crimes]] during World War II in [[Yugoslavia]], which resulted in both Waldheim, and his wife, Elisabeth, both of whom belonged to the Nazi Party, being excluded from entering the [[United States]]. Schwarzenegger's name remained on Waldheim's campaign posters, even after allegations of Waldheim's war crimes were brought to light. Waldheim was also invited to Arnold's wedding with [[Maria Shriver]], but declined (see [[http://arnoldexposed.com/arnold.htm#nazi]).
106741
106742 These allegations were brought up mainly in the context of his campaign, but they continue to be occasionally used by some critics. [[Garry Trudeau]], the [[cartoonist]] behind the [[comic strip]] [[Doonesbury]], combined the allegations by nicknaming Schwarzenegger &quot;Herr GrÃļpenfÃŧhrer&quot; and depicting Schwarzenegger as a huge, groping hand in his artwork.
106743
106744 A slightly smaller scandal arose when campaign ads were shown to have citizens of California out of focus, but products from campaign contributors clear. This got little press but still angered many.
106745 On [[October 7]], [[2003]], the [[2003 California recall]] resulted in Governor [[Gray Davis]] being recalled with 55.4% of the ''Yes'' vote. Schwarzenegger was elected Governor of California under the second question on the ballot with 48.6% of the vote, defeating Democrat [[Cruz Bustamante]], fellow Republican [[Tom McClintock]] and others. In total, Arnold won the election by about 1.3 million votes.
106746
106747 He was sworn into office on [[November 17]], [[2003]]. Schwarzenegger's inauguration was opened by [[Vanessa Lynn Williams]], his co-star from ''[[Eraser (movie)|Eraser]]'', singing the [[The Star-Spangled Banner|National Anthem]]. Hollywood attendees included [[Danny DeVito]], [[Rhea Perlman]], [[Dennis Miller]] and [[Rob Lowe]] (Only Miller is a Republican). The Schwarzenegger children joined others in reciting the [[Pledge of Allegiance]], then [[Maria Shriver]] spoke and held the Bible while Schwarzenegger was sworn into the office of Governor. He spoke briefly: &quot;Today is a new day in California. I did not seek this office to do things the way they've always been done. What I care about is restoring your confidence in your government... This election was not about replacing one man. It was not replacing one party. It was about changing the entire political climate of our state.&quot;
106748
106749 ===Governorship===
106750 [[Image:BushCAGovs.jpg|right|thumb|300px|Arnold Schwarzenegger, [[President of the United States|President]] [[George W. Bush]], and [[Gray Davis]] speak to firefighters on [[November 4]], [[2003]].]]
106751
106752 [[Image:Arnold and Edmund 1.jpg|thumb|300px|Arnold Schwarzenegger and [[Bavaria]]'s minister president [[Edmund Stoiber]].]]
106753
106754 In his first few hours in office Schwarzenegger fulfilled his campaign promise to repeal an unpopular 200% increase in vehicle license fees undertaken to fund the state's budget. The increase was a restoration to 1998 levels. On his first full day in office, Schwarzenegger proposed a three-point plan to address the budget woes. First, Schwarzenegger proposed floating $15,000,000,000 (USD) in [[bond]]s. Second, he urged voters to pass a [[constitutional amendment]] to limit state spending. Third, he sought an overhaul of [[workers' compensation]]. Schwarzenegger also called the state legislature into a special session and said that spending cuts would also be necessary. He initiated the cuts by agreeing to serve as governor with no salary, a savings of $175,000 (USD) per year.
106755
106756 To fulfill the first two points, he urged California voters to pass [[California Proposition 57 (2004)|Proposition 57]] and [[California Proposition 58 (2004)|Proposition 58]] in the [[March 2]], [[2004]], election, which authorized the sale of $15 billion in bonds and mandated balanced budgets, respectively. Despite initially tepid support from the public, the combination of heavy campaigning by Schwarzenegger, endorsements from a number of leading Democrats, and warnings about the dire consequences should the propositions fail to pass, led to overwhelming votes in favor of the two propositions. Prop. 57 passed with 63.3% of the votes in favor and Prop. 58 passed with 71.0% in favor. He accomplished the third point when he signed a workers' compensation reform bill on [[April 19]], [[2004]]. Schwarzenegger convinced the Democratic-controlled state legislature to approve the package by threatening to take the issue directly to state voters in a November ballot initiative if the legislature did not act.
106757
106758 Schwarzenegger was later criticized for reneging on his campaign pledges not to take money from special interests and for failing to answer directly the sexual harassment allegations raised by the ''[[Los Angeles Times]]'' immediately preceding the recall election. However, Schwarzenegger made a point shortly after becoming governor of voluntarily attending a training course conducted by the state Attorney General's office on preventing sexual harassment (along with several members of his senior staff). Schwarzenegger continues to collect campaign contributions from private interests (see [http://arnoldwatch.org/special_interests/index.html]]) at a greater rate than any politician in California history, including Gray Davis, whom he criticized on that very issue (see [[http://www.nbc4.tv/politics/2385057/detail.html]).
106759
106760 In February 2004 when [[San Francisco]] city mayor, [[Gavin Newsom]], ordered a change in the certificate application documents to allow for [[same-sex marriage]]s, Governor Schwarzenegger opposed the move as being beyond the powers of the mayor, but also said that he supports gay rights and has expressed support for a law to grant [[civil unions]] to gay couples.
106761
106762 In 2005 when he vetoed a bill that would have legalized same-sex marriages he defended his actions by saying that California voters had passed an initiative banning such recognition and that he supports that state's domestic partnership law that gives same-sex couples many of the same rights as a heterosexual married couple.
106763
106764 Still, critics have observed that there is no federal requirement that other states recognize a state-granted domestic partnership, as is the case with marriages under the [[Full Faith and Credit Clause]] of the United States Constitution.
106765
106766 Also in February 2004, he declined [[amnesty]] to convicted murderer [[Kevin Cooper]] who had asked him for clemency in his [[death penalty]] sentence. Nevertheless, Cooper's planned [[Execution (legal)|execution]] was stayed by the [[Ninth U.S. Circuit Court of Appeals]] pending a revisiting of evidence. The first execution under his administration was that of [[Donald Beardslee]].
106767
106768 [[Austrian Green Party]] spokesman, [[Peter Pilz]], later called for Schwarzenegger to be stripped of his Austrian [[citizenship]]. Pilz claimed that Austrian law forbids any Austrian citizen from taking part in or ordering executions. However, Schwarzenegger does not appear to be in any danger of losing his Austrian citizenship.
106769
106770 The governor has granted [[clemency]] to a number of [[Felony|convicted felons]] &amp;ndash; more than Democrat predecessor Gray Davis, who presided over numerous executions. The power of clemency is often controversial. After a longer period of consideration than is usual, on [[December 12]], [[2005]], Schwarzenegger denied clemency to quadruple murderer [[Stanley Tookie Williams]], who was executed on [[December 13]]. In a statement (see [http://news.bbc.co.uk/1/hi/world/americas/4523352.stm]) Schwarzenegger argued not on the grounds that Williams' actions were beyond atonement: instead he appeared to acknowledge that atonement was possible, but Williams had not done so, Schwarzenegger stating that &quot;the one thing [apologising for the four murders he committed] that would be the clearest indication of complete remorse and full redemption is the one thing Williams will not do.&quot;
106771
106772 Despite expectations that Schwarzenegger would be vulnerable to opposition critics once taking office, his early governorship showed some successes. He has dealt successfully with California politicians as diverse as [[John Burton]] on the left to [[Tom McClintock]] on the right. At the end of May, 2004, the Field poll put his popularity at 65%, the highest for a California governor in 45 years, including 41% of Democrats, party adherents of his opposition. By comparison, former [[United States President]] [[Ronald Reagan]], known as &quot;the Great Communicator,&amp;quot; never hit 60% approval while serving as California governor. (see [http://www.latimes.com/news/local/politics/cal/la-me-lopez28may28,1,2650515.column?coll=la-news-politics-california])
106773
106774 In March, 2004 libertarian policy research foundation, [[The Cato Institute]], rated him 1st in their 1994 fiscal policy report card (see [http://www.cato.org/pub_display.php?pub_id=3691]) of the tax and spending policies of the nation's governors.
106775
106776 In July 2004, however, Schwarzenegger and the state legislature deadlocked, failing to approve the state budget on time. Trying to rouse public support for his position, he compared lawmakers to kindergartners who need a &quot;timeout,&quot; and in a rally of supporters called his budget opponents &quot;girlie men&quot; (a reference to a long-running ''[[Saturday Night Live]]'' skit parodying Schwarzenegger). He said about the legislators: &quot;They are part of a bureaucracy that is out of shape, that is out of date, that is out of touch and that is definitely out of control in Sacramento. They cannot have the guts to come out there in front of you and say, 'I don't want to represent you. I want to represent those special interests: the unions, the trial lawyers.' ... if they don’t have the guts, I call them girlie-men. They should get back to the table and they should finish the budget.&quot; The remark became national news and was not received well by his opponents, including gay advocacy and feminist groups who labeled it homophobic and sexist, in spite of his earlier support for gay rights (see the Gavin Newsom incident above), not to mention the legislators themselves. Others however, were quick to point out that the critics actually were expressing a sentiment of latent [[homophobia]] themselves because they automatically connected the phrase &quot;girlie-men&quot; with [[homosexual]]s. His supporters made &quot;girly men&quot; T-shirts and the Governor continued to use the term, including when he addressed the [[Republican National Convention]] in NYC, calling critics of the current U.S. economic situation &quot;economic girlie men&quot;.
106777
106778 Despite what some viewed as political snags during the summer, the Field polls released in August and October 2004 showed that Schwarzenegger's approval rating remained at 65%. Additionally, in October, for the first time in four years a plurality of Californians felt the state was &quot;on the right track&quot;.
106779
106780 However, when asked if they would support Schwarzenegger if he could run for president, 50% said they would oppose, while only 26% said they would support the governor in a presidential bid (see [http://field.com/fieldpollonline/subscribers/RLS2137.pdf]).
106781
106782 ====Spring 2005====
106783 &lt;!--Please remember to report neutrally in this section--&gt;
106784 In the spring of 2005, polls began showing Schwarzenegger's approval ratings had dropped to between 40-49%.
106785 (See [http://www.latimes.com/news/local/la-me-cap7apr07,1,63188.column?coll=la-headlines-california&amp;amp;ctrack=3&amp;cset=true],
106786 [http://www.woai.com/news/local/story.aspx?content_id=A367E183-FC31-4616-8669-4FD5D36181D4],
106787 [http://www.surveyusa.com/50governorsrated051005.htm],
106788 [http://www.bloomberg.com/apps/news?pid=10000103&amp;sid=ac98Wx3eNeSw&amp;refer=us].)
106789
106790 On [[June 13]], [[2005]], Schwarzenegger called a [[California special election, 2005|statewide special election]] for [[November 8]], [[2005]], to vote on a series of reform measures he initially proposed in his 2005 State of the State address. A non-partisan Field poll released a week later showed his support had dropped to 37%, one of the lowest approval ratings for any California governor and barely above the support of recalled former Governor, [[Gray Davis]] (see [http://www.sfgate.com/cgi-bin/article.cgi?f=/n/a/2005/06/21/state/n060039D76.DTL]).
106791
106792 Schwarzenegger's spokesman responded that Schwarzenegger had not yet had enough time to explain his proposals to voters. The Legislature also shared low approval ratings, with just 24% of voters saying they approve of the job lawmakers have been doing. That represents a drop of 10% since February. The governor has responded that the poll sends a &quot;very clear message to us. They are saying they want us to work together.&quot; He has also responded &quot;I know popularity goes up and down... as soon as you start making decisions and strong decisions, sometimes they're not popular decisions.&quot; (see [http://www.foxnews.com/story/0,2933,159854,00.html], video, right side)
106793
106794 Republicans have claimed that the drop in popularity was due to a multi-million dollar ad campaign by various groups such as unions for nurses, police and firefighters, who opposed his plans for the state pension and his administration's lawsuit to delay implementation of a nurse-to-patient staffing ratio plan. In late June 2005, another non-partisan Field Poll had similar numbers as the earlier one, finding that 57% of California voters are not inclined to elect Schwarzenegger to a second term as Governor in 2006 (see [http://news.yahoo.com/news?tmpl=story&amp;u=/nm/20050629/pl_nm/politics_fieldpoll_dc_3]], [[http://news.yahoo.com/news?tmpl=story&amp;u=/afp/20050621/ts_alt_afp/uspolitics_050621195840]).
106795
106796 When asked about the lessons of the poll, Schwarzenegger has responded &quot;People make mistakes sometimes, and I think that we learn. [...] These are very clear messages that we must work together, and so I am looking forward to that.&quot;
106797
106798 To some degree, Governor Schwarzenegger's unpopularity has had to do with his confrontations with three popular labor groups: nurses, teachers, and firefighters. Some unions and activists reacted with anger (see [http://www.sfist.com/archives/2005/04/05/fk_arnold_nurses_firefighters_and_teachers_protest_the_governator.php],
106799 [http://www.mercurynews.com/mld/mercurynews/news/politics/12112103.htm],
106800 [http://cbs5.com/topstories/local_story_192212252.html],
106801 [http://www.mercurynews.com/mld/mercurynews/news/local/states/california/northern_california/11964407.htm]), and others with humor (see [http://msnbc.msn.com/id/7445648/site/newsweek/],
106802 [http://arnoldwatch.org/assets/governator_rap.mp3],
106803 [http://talent.pratt.edu/user/114/114_-711700702-main.jpg]).
106804
106805 ====Summer 2005====
106806 =====Accusation of conflict of interest=====
106807 While governor, Schwarzenegger continued to hold a position of executive editor of two [[American Media]] magazines. He announced in March 2004 that his $250,000 a year salary would be donated to charity. Schwarzenegger has an extensive history with the magazines and was frequently their star in his body-building days. As executive editor, he produces monthly columns based on his body-building history.
106808
106809 Schwarzenegger drew fire when a second contract, a consulting position, was subsequently discovered in [[SEC filing]]s, by the ''L.A. Times''. This second contract would net him an estimated $8,000,000 (USD) over the next five years (see [http://www.latimes.com/features/health/nutrition/la-me-bill15jul15,1,6217015.story?coll=la-health-nutrition-news]). His consulting duties are not clear, except that the job allegedly &quot;takes up little time.&quot;
106810
106811 ''[[The New York Times]]'' further reported (on July 15) that under the five-year November 2003 contract, signed two days before his inauguration as Governor, '''Oak Productions''', Mr. Schwarzenegger's company, is to receive 1 % of the net print advertising revenues of '''Weider Publications'''. But the payment must be at least $1,000,000 (USD) per year. Mr. Schwarzenegger has also been granted '''phantom equity''', a way of sharing in the growth of the value of the company. The equity could become worth 1% of the company's value, which was stated at the time of the contract as $520,000,000 (USD)&quot; (see [http://www.nytimes.com/2005/07/15/national/15calif.html?ex=1279080000&amp;en=d59de5489ea19d3b&amp;ei=5090&amp;partner=rssuserland&amp;emc=rss]).
106812
106813 This contract was seen as a conflict of interest by critics, who note that the magazines receive much of their revenue from advertisements for dietary supplements, a government-regulated industry affected by Schwarzenegger's veto (September 2004) of a bill that would ban schools from accepting sponsorships from firms that make performance-enhancing dietary supplements. In Schwarzenegger's reason for his veto, he drew a distinction between performance-enhancing dietary supplements and steroid usage, which he says is what needs to be prevented in high school students. (see [http://www.townhall.com/news/politics/200507/POL20050718a.shtml]).
106814
106815 Supporters point out that he did sign into law a bill that prohibited companies from selling the supplements to minors. Following the accusation, Schwarzenegger responded he would end the contracts with the magazines.
106816
106817 In August 2005, the [[Washington Post]] reported that American Media had paid former TV actress [[Gigi Goyette]], $20,000 (USD) to keep silent about a seven-year extramarital affair Schwarzenegger had with her beginning in 1975, when Goyette was 16 years old (see [http://www.washingtonpost.com/wp-dyn/content/article/2005/08/12/AR2005081201651_pf.html]]). Since the [[age of consent]] in California is 18 years, Schwarzenegger may have committed [[statutory rape]]. In addition, American Media's knowledge of the Goyette affair put it in a position of being able to [[blackmail]] Schwarzenegger, providing further reason for Schwarzenegger to align his interests with theirs.
106818
106819 Also in August, the ''[[Los Angeles Times]]'' reported that five non-profit organizations had collected $3,000,000 (USD), chiefly from large businesses, in order to help defray Schwarzenegger's personal and political expenses, including the rent on the $6,000-a-month hotel suite that Schwarzenegger uses when in Sacramento (see [http://ktla.trb.com/news/local/la-me-nonprofits24aug24,0,3132004.story?coll=ktla-news-1]]). The governor's spokesman subsequently reported that Schwarzenegger had directed the disclosure of the contributors to the &quot;residence fund&quot; (see [[http://www.latimes.com/news/opinion/la-ed-funds29aug29,0,213871.story?coll=la-home-oped]).
106820
106821 ====Fall 2005====
106822 On [[September 29]], [[2005]], Schwarzenegger vetoed the California gay marriage bill after it had passed both houses of the legislature (see [http://www.worldnetdaily.com/news/article.asp?ARTICLE_ID=46212], [http://www.southernvoice.com/thelatest/thelatest.cfm?blog_id=2680]). He stated that he vetoed the bill because he felt that it was in opposition to the will of the voters as expressed by [[Proposition 22]], that had passed in 2000 with 61.4% of the vote. Proposition 22 stated that only marriages between a man and a woman would be recognized in the state of California.
106823
106824 On [[September 16]], [[2005]], Schwarzenegger announced that he would seek a second term as governor. Despite his initially high approval ratings, a Field Poll conducted the week before indicated that only 36% of California voters were inclined to reelect him.
106825
106826 Schwarzenegger vetoed SB 469 (Bowen) October 7. It would have required people circulating petitions to say whether the signature gatherers are volunteers or are being paid to collect signatures.
106827
106828 Running up to the November special election, Schwarzenegger campaigned heavily throughout the state for his slate of propositions. Through an organization called &quot;Join Arnold&quot;, tens of millions of dollars were funneled into the state, mostly from corporate interests, to fund the campaign. Schwarzenegger even reportedly spent 7 million dollars of his own money. Schwarzenegger characterized the four propositions as being key to his reform agenda. State unions and other groups opposed to the measures spent large sums of money opposing Schwarzenegger. Total spending by both sides leading up to the election was estimated at $300 million.
106829
106830 Schwarzenegger made personal appearances at numerous so-called &quot;town hall meeting&quot; events throughout the state to promote the measures. In reality these events were highly choreographed, and typically featured Hollywood-style set lighting and coordinated electronic displays. A group of four or so &quot;ordinary citizens&quot;, pre-selected by local Republican operatives, would appear on stage with Schwarzenegger to ask him questions at the appropriate time. The time and location of these events would not be released to the public until two hours in advance, to limit the time anti-Schwarzenegger forces had to organize protests.
106831
106832 In the [[November 8]], [[2005]] special election, California voters dealt a devastating blow to Schwarzenegger by soundly rejecting all four ballot initiatives that Schwarzenegger had proposed to reform the state government. All propositions were defeated by a margin of at least 7 percentage points. The two propositions most key to Schwarzenegger's agenda, propositions 76 and 77, were defeated by 24 and 19 points respectively.
106833
106834 The defeat left Schwarzenegger significantly weakened politically, depriving him of the one source of leverage he had against the Democratic legislature. Some opponents took to calling him &quot;the One-terminator&quot;, a play on his popular role as &quot;the Terminator&quot; in films, implying that his chances of winning re-election had been diminished.
106835
106836 In the aftermath of the election, Schwarzenegger has moved back to the center. He has hired a former aide of [[Gray Davis]] as his chief of staff, and is working with California State Senate Majority Leader, [[Don Perata]], for development of a bond, estimated in the billions of dollars, to accelerate construction of [[infrastructure]] such as freeways and waterworks.
106837
106838 ===Electoral History===
106839 *'''2003 Recall Election for Governor'''
106840 **Arnold Schwarzenegger (R), 49%
106841 **[[Cruz Bustamante]] (D), 32%
106842 **[[Tom McClintock]] (R), 13%
106843
106844 ==Miscellaneous==
106845 *On [[January 8]], [[2006]], while riding his [[Harley Davidson]] [[motorcycle]], with his son in the sidecar, another driver backed into the street he was riding on causing him and his son to collide with the car at a low speed. While his son and the other driver were unharmed, the govenor sustained a minor injury to his lip, forcing him to get 15 [[sutures]]. &quot;No citations were issued&quot; said officer Jason Lee, a police spokesman. Schwarzenegger, who famously rode motorcycles in the [[Terminator]] movies, has never actually obtained an M-1 or M-2 endorsement on his [[California]] [[driver's license]] that would allow him to legally ride one on the street. In December 2001, he broke six ribs and was hospitalized for four days after another motorcycle crash in L.A.
106846
106847 * In honor of its most famous son, Schwarzenegger's home town of [[Graz]] had named its [[soccer]] stadium after him. The Arnold Schwarzenegger Stadium, now officially titled [[Stadion Graz-Liebenau]], is the home of both [[Grazer AK]] and [[Sturm Graz]]. Following the [[Stanley Tookie Williams]] execution and after street protests in his home town, several local politicians began a campaign to remove Schwarzenegger's name from the stadium. Schwarzenegger responded, saying that &quot;to spare the responsible politicians of the city of Graz further concern, I withdraw from them as of this day the right to use my name in association with the Liebenauer Stadium&quot;. Graz officials removed Schwarzenegger's name from the stadium in December 2005 (see [http://news.bbc.co.uk/1/hi/world/europe/4560182.stm]).
106848
106849 * In a satirical tribute to Schwarzenegger in 2002, Forum Stadtpark, a local cultural association, proposed plans to build a 25-metre (82 foot) tall ''Terminator'' statue in a park in central Graz. Schwarzenegger reportedly said he was flattered, but thought the money would be better spent on social projects and the [[Special Olympics]] (see [http://www.killoggs.com/news/?news=609]).
106850
106851 * In 2005 [[Peter Pilz]] from the [[Austrian Green Party]] in parliament demanded to revoke Schwarzenegger's Austrian citizenship. This demand was based on article 33 of the Austrian citizenship act that states: '''A citizen, who is in the public service of a foreign country, shall be deprived of his citizenship, if he heavily damages the reputation or the interests of the Austrian Republic''' (see [http://news.bbc.co.uk/1/hi/world/americas/4198633.stm]). Pilz claimed that Schwarzenegger's actions in support of the death penalty (prohibited in Austria under Protocol 13 of the [[European Convention on Human Rights]]) had indeed done heavy damage to Austria's reputation. Schwarzenegger justified his actions by referring to the fact that his only duty as Governor of California was to prevent an error in the judicial system. &quot;Schwarzenegger has a lot of muscles, but apparently not much heart,&quot; said Julien Dray, spokesman for the Socialist Party in France, where the death penalty was abolished in 1981.
106852
106853 * Schwarzenegger as president of the U.S. was jokingly referenced in the 1993 [[Sylvester Stallone]] film, ''[[Demolition Man (film)|Demolition Man]],'' where a future America passed a constitutional amendment to allow [[naturalization| naturalized]] Americans like Schwarzenegger to become [[President of the United States]], and that film has reference to a &quot;Schwarzenegger Presidential Library&quot;.
106854
106855 * Because Schwarzenegger opted in 1997 for a replacement heart valve made of his own transplanted tissue, medical experts predict he will require repeated heart valve replacement surgery in the next two to eight years (as his current valve degrades). Schwarzenegger apparently opted against a mechanical valve, the only permanent solution available at the time of his surgery, because it would have sharply limited his physical activity and capacity to exercise.
106856
106857 * He bought the first [[Hummer]] manufactured for [[civilian]] use in 1992, a model so large, 6,300 lb (2900 kg) and 7 feet (2.1 m) wide that it is classified as a large truck and U.S. fuel economy regulations do not apply to it. During the Gubernatorial Recall campaign he announced that he would convert one of his Hummers to burn hydrogen (see [http://msnbc.msn.com/id/3180817/]). The conversion was reported to have cost about $21,000 (USD). After the election, he signed an executive order to jumpstart the building of hydrogen refueling plants called the &quot;California Hydrogen Highway Network&quot;, and gained a [[United States Department of Energy|DOE]] grant to help pay for its projected $91,000,000 (USD) cost (see [http://www.bmwworld.com/hydrogen/schwarzenegger.htm]). California took delivery of the first H2H (Hydrogen Hummer) in October 2004 (see [http://trucks.about.com/od/hybridcar/a/hummer_h2h.htm]).
106858
106859 * His fellow bodybuilder and actor, [[Sven-Ole Thorsen]], has collaborated with him in 15 movies so far.
106860
106861 * He has appeared alongside his fellow actor from [[Around the World in 80 Days (2004 film)|Around the World in 80 Days]], [[Jackie Chan]], in a government advert to combat piracy, (see [http://video.google.com/videoplay?docid=6443035544827856436&amp;q=Jackie+Chan&amp;pr=goog-sl]).
106862
106863 * Schwarzenegger's official height has usually been reported as 6'2&quot;, though some observers debit him two or three inches. While campaigning for [[George W. Bush]] in Ohio in 2004, he appeared only about an inch taller than the 5'11&quot; President. Schwarzenegger's weight while competing was in the 245 pound range; currently, he carries about 210 pounds.
106864
106865 * In 1983 Arnold Schwarzenegger starred in the promotional video &quot;Carnival in Rio&quot;, which ''could'' be seen as advertising [[sex tourism]] in [[Brazil]] (see [http://www.devilducky.com/media/38195/]).
106866
106867 ==Net worth==
106868 According to ([http://www.arnoldexposed.com/]), Schwarzenegger's net worth has been estimated conservatively at $100,000,000 (USD), and over the years, he invested his bodybuilding and movie earnings in an array of stocks, bonds, privately controlled companies and real estate holdings in the US and worldwide.
106869
106870 ==See also==
106871 * [[Spy Magazine]]
106872
106873 ==External links==
106874 {{wikiquote}}
106875
106876 {{commons|Arnold Schwarzenegger}}
106877
106878
106879 ===Official===
106880 *[http://www.governor.ca.gov/ State of California - Office of Governor Arnold Schwarzenegger]
106881 *[http://www.schwarzenegger.com/en/index.asp Arnold Schwarzenegger's Official Website] (Non-Political)
106882 *[http://www.joinarnold.com/ Arnold Schwarzenegger's Official Political Website]
106883 *[http://www.citizenstosaveca.org/ Citizens to Save California, a broad-based committee supporting the reform agendas of Governor Schwarzenegger and others ]
106884
106885 ===Unofficial===
106886 *[http://ezinearticles.com/?id=105280 Arnold's Office Refuses to Comment]
106887 *[http://www.imdb.com/name/nm0000216/ Arnold Schwarzenegger] at [[The Internet Movie Database]]
106888 * [http://www.twoop.com/people/archives/2005/10/arnold_schwarzenegger.html Arnold Schwarzenegger] - Timeline of his life
106889 *[http://www.askmen.com/men/mar00/15_arnold_schwarzenegger.html Arnold Schwarzenegger on AskMen.com]
106890 * [http://www.commandofans.com CommandoFans.com] A website and message board dedicated to the Schwarzenegger film ''Commando''.
106891 * [http://news.bbc.co.uk/1/hi/entertainment/film/3131155.stm Arnold and the American dream] (BBC News)
106892 * Greg Palast [http://www.gregpalast.com/detail.cfm?artid=283&amp;row=1 Arnold Unplugged] (exposÊ on the Schwarzenegger-Enron connection)
106893 * [http://www.schwarzenegger.ca Schwarzenegger.ca] A bodybuilding forum, complete with a dedicated Arnold section
106894 * [http://news.bbc.co.uk/media/video/39425000/rm/_39425228_arnie_speech_vi.ram Video: Arnold's victory speech] (BBC News)
106895 * [http://www.languagemonitor.com/uploads/pjjp_au_interview.mp3 ArnoldSPEAK: The Governator's Impact on Language]
106896 * [http://100towatch.com/2008/arnold-schwarzenegger.html Arnold Schwarzenegger news and related links]
106897 * [http://www.mediaman.com.au/profiles/schwarzenegger.html Arnold Schwarzenegger: King of bodybuilding, movies, politics and media]
106898 * [http://www.globalarnold.com/ globalarnold.com] (Global Arnold Schwarzenegger fan community)
106899 * [http://www.schwarzeneggergovernor.com/ Arnold Schwarzenegger Governor]
106900 * [http://usliberals.about.com/b/a/235539.htm About.com's Arnold Schwarzenegger, California's Newest Democrat ]
106901 * [http://www.arnoldexposed.com/ Anti-Schwarzenegger web site.]
106902 * [http://www.arnoldcalls.com/ Site dedicated to Arnold Schwarzenegger prank calls.]
106903 * [http://www.mashhur.com/item/commando Schwarzenegger's popularity in Pakistan]
106904 * [http://arnoldaloisschwarzenegger.com/ Arnold Schwarzenegger] Unofficial Blog for Arnold Schwarzenegger
106905 * [http://arnoldexposed.com/ Arnold Exposed] An unofficial website claiming to have evidence of Schwarzenegger's misconduct
106906
106907 ==References==
106908 * Arnold Schwarzenegger, ''Arnold: Developing a Mr Universe Physique'', 1977
106909 * ---- [http://www.thesmokinggun.com/archive/arnoldinter1.html Interview in ''Oui'' magazine, August 1977 ]
106910 * ---- [http://www.time.com/time/nation/printout/0,8816,483264,00.html Excerpts from ''Time Out'' (London) interview, 1977]
106911 * ---- ''Arnold: The Education of a Bodybuilder'', 1983, Simon &amp; Schuster, Reprint edition, 1993, ISBN 06717974841983. autobiography
106912 * ---- ''Arnold's Body Building for Men'', Simon &amp; Schuster, Reprint edition, 1984, ISBN 0671531638
106913 * ---- ''The New Encyclopedia of Modern Bodybuilding : The Bible of Bodybuilding'', 1985, Fully Updated and Revised, Simon &amp; Schuster, 1999, ISBN 0684857219
106914 * Nigel Andrews, ''True Myths of Arnold Schwarzenegger : The Life and Times of Arnold Schwarzenegger, from Pumping Iron to Governor of California'', Bloomsbury USA, Revised edition, 2004, ISBN 1582344655
106915 * Michael Blitz, ''Why Arnold Matters: The Rise of a Cultural Icon''
106916 *Karen Brandon, ''Arnold Schwarzenegger''.
106917 *Colleen A. Sexton, ''Arnold Schwarzenegger (A&amp;E Biography)'', Lerner Publications, 2004, ISBN 0822522233
106918 * Susan Zannos, ''Arnold Schwarzenegger (Real-Life Reader Biography)''
106919 * Andy Borowitz, ''Governor Arnold : A Photodiary of His First 100 Days in Office'', Simon &amp; Schuster, 2004, ISBN 0743262662
106920 * &quot;Arnold Schwarzenegger - Hollywood Hero&quot; DVD ~ Todd Baker
106921 * &quot;Pumping Iron&quot; (25th Anniversary Special Edition) DVD ~ George Butler
106922 * {{imdb name|id=0000216|name=Arnold Schwarzenegger}}
106923 *[http://www.cinemovie.info/ArnoldSchwarzenegger_scheda.html Cinemovie.Info: Arnold Schwarzenegger]
106924
106925 {{start box}}
106926 {{incumbent succession box|
106927 title=[[List of Governors of California|Governor of California]]|
106928 before=[[Gray Davis]]|
106929 start=2003|
106930 }}
106931 {{end box}}
106932
106933 {{CAGovernors}}
106934
106935 {{Template:Current U.S. governors}}
106936
106937 [[Category:1947 births|Schwarzenegger, Arnold]]
106938 [[Category:Roman Catholic politicians|Schwarzenegger, Arnold]]
106939 [[Category:Roman Catholics|Schwarzenegger, Arnold]]
106940 [[Category:Actor-politicians|Schwarzenegger, Arnold]]
106941 [[Category:American bodybuilders|Schwarzenegger, Arnold]]
106942 [[Category:American entrepreneurs|Schwarzenegger, Arnold]]
106943 [[Category:Austrian actors|Schwarzenegger, Arnold]]
106944 [[Category:Austrian-Americans|Schwarzenegger, Arnold]]
106945 [[Category:Batman actors|Schwarzenegger, Arnold]]
106946 [[Category:Film actors|Schwarzenegger, Arnold]]
106947 [[Category:Foreign-born US political figures|Schwarzenegger, Arnold]]
106948 [[Category:Governors of California|Schwarzenegger, Arnold]]
106949 [[Category:Kennedy family|Schwarzenegger, Arnold]]
106950 [[Category:Living people|Schwarzenegger, Arnold]]
106951 [[Category:Naturalized citizens of the United States|Schwarzenegger, Arnold]]
106952 [[Category:Pro-choice celebrities|Schwarzenegger, Arnold]]
106953 [[Category:Pro-choice politicians|Schwarzenegger, Arnold]]
106954 [[Category:Worst Actor Razzie Nominee|Schwarzenegger, Arnold]]
106955 [[Category:Worst Supporting Actor Razzie Nominee|Schwarzenegger, Arnold]]
106956 [[Category:Terminator actors]]
106957
106958 [[bg:АŅ€ĐŊĐžĐģĐ´ ШваŅ€Ņ†ĐĩĐŊĐĩĐŗĐĩŅ€]]
106959 [[bs:Arnold Schwarzenegger]]
106960 [[cs:Arnold Schwarzenegger]]
106961 [[da:Arnold Schwarzenegger]]
106962 [[de:Arnold Schwarzenegger]]
106963 [[eo:Arnold SCHWARZENEGGER]]
106964 [[es:Arnold Schwarzenegger]]
106965 [[fi:Arnold Schwarzenegger]]
106966 [[fr:Arnold Schwarzenegger]]
106967 [[he:ארנולד שוור×Ļנגר]]
106968 [[hr:Arnold Schwarzenegger]]
106969 [[hu:Arnold Schwarzenegger]]
106970 [[id:Arnold Schwarzenegger]]
106971 [[it:Arnold Schwarzenegger]]
106972 [[ja:ã‚ĸãƒŧノãƒĢドãƒģã‚ˇãƒĨワãƒĢツェネッã‚Ŧãƒŧ]]
106973 [[ko:ė•„널드 ėŠˆė›Œė œë„¤ęą°]]
106974 [[la:Arnoldus Schwarzeneggerus]]
106975 [[nl:Arnold Schwarzenegger]]
106976 [[no:Arnold Schwarzenegger]]
106977 [[pl:Arnold Schwarzenegger]]
106978 [[pt:Arnold Schwarzenegger]]
106979 [[ru:ШваŅ€Ņ†ĐĩĐŊĐĩĐŗĐŗĐĩŅ€, АŅ€ĐŊĐžĐģŅŒĐ´ АĐģОиŅ]]
106980 [[sq:Arnold Schwarzenegger]]
106981 [[sr:АŅ€ĐŊĐžĐģĐ´ ШваŅ€Ņ†ĐĩĐŊĐĩĐŗĐĩŅ€]]
106982 [[sv:Arnold Schwarzenegger]]
106983 [[zh:é˜ŋč¯ē¡æ–Ŋį“Ļ辛æ ŧ]]</text>
106984 </revision>
106985 </page>
106986 <page>
106987 <title>ASA</title>
106988 <id>1807</id>
106989 <revision>
106990 <id>41890320</id>
106991 <timestamp>2006-03-02T11:39:37Z</timestamp>
106992 <contributor>
106993 <username>Rmosler2100</username>
106994 <id>518794</id>
106995 </contributor>
106996 <minor />
106997 <comment>spelling correction</comment>
106998 <text xml:space="preserve">'''ASA''' may stand for:
106999
107000 * '''ASA''' is the ICAO code for [[Alaska Airlines]]
107001 * [[Accessible Surface Area]]
107002 * Acetylsalicylic acid, acetylsalicylic acid; see [[Salicylic acid]] and [[Aspirin]]
107003 * [[Adaptive Simulated Annealing]] optimization algorithm.
107004 * [[Advertising Standards Authority]] in the [[United Kingdom|UK]]
107005 * [[Amateur Softball Association]]
107006 * [[American Sailing Association]]
107007 * [[American Society of Anesthesiologists]] and a I-V rating of [[anesthetic risk]]
107008 * [[American Sociological Association]]
107009 * [[American Speed Association]], was a second-tier [[stock car racing]] circuit in the [[United States]]
107010 * &quot;American Standards Association&quot;; a former name of the [[American National Standards Institute]] (ANSI)
107011 * ASA [[film speed]]
107012 * [[Anti-Soviet agitation]]
107013 * [[Arlington Hall|Army Security Agency]]; formerly the Signals Security Agency, an [[intelligence agency]] of the [[United States]]
107014 * [[ASA (automobile)|ASA]] was an [[Italy|Italian]] car.
107015 * Associate of the [[Society of Actuaries]]
107016 * [[Anti-Semitic Association]]
107017 * [[Atlantic Southeast Airlines]]
107018 * &quot;Australian Soccer Association&quot;, a former name of the [[football (soccer)]] governing body now known as [[Football Federation Australia]]
107019 * [[Autism Society of America]]
107020 * [[AtlÊtico Sport AviaçÃŖo]], a football (soccer) club from [[Angola]]
107021 * [[AgremiaçÃŖo Sportiva Arapiraquense]], a football (soccer) club from [[Brazil]]
107022
107023 ''See also'': [[Asa]]
107024
107025 {{TLAdisambig}}
107026
107027 [[de:ASA]]
107028 [[fr:ASA]]
107029 [[ja:ASA]]</text>
107030 </revision>
107031 </page>
107032 <page>
107033 <title>A. N. Whitehead</title>
107034 <id>1808</id>
107035 <revision>
107036 <id>15900272</id>
107037 <timestamp>2002-03-08T16:40:37Z</timestamp>
107038 <contributor>
107039 <username>Eclecticology</username>
107040 <id>372</id>
107041 </contributor>
107042 <comment>*</comment>
107043 <text xml:space="preserve">#REDIRECT [[Alfred North Whitehead]]</text>
107044 </revision>
107045 </page>
107046 <page>
107047 <title>Aquinas</title>
107048 <id>1809</id>
107049 <revision>
107050 <id>15900273</id>
107051 <timestamp>2004-01-13T07:02:27Z</timestamp>
107052 <contributor>
107053 <username>Snoyes</username>
107054 <id>8289</id>
107055 </contributor>
107056 <minor />
107057 <comment>Reverted to last edit by Conversion script</comment>
107058 <text xml:space="preserve">#REDIRECT [[Thomas Aquinas]]</text>
107059 </revision>
107060 </page>
107061 <page>
107062 <title>Actium</title>
107063 <id>1810</id>
107064 <revision>
107065 <id>41800778</id>
107066 <timestamp>2006-03-01T21:07:26Z</timestamp>
107067 <contributor>
107068 <username>RexNL</username>
107069 <id>241337</id>
107070 </contributor>
107071 <minor />
107072 <comment>Reverted edits by [[Special:Contributions/209.101.125.35|209.101.125.35]] ([[User talk:209.101.125.35|talk]]) to last version by 85.157.101.9</comment>
107073 <text xml:space="preserve">'''Actium''' (mod. Punta), the ancient name of a [[promontory]] in the north of [[Acarnania]] ([[Greece]]) at the mouth of the Sinus Ambracius ([[Gulf of Arta]]) opposite [[Nicopolis]], built by [[Caesar Augustus|Augustus]] on the north side of the strait. On the promontory was an ancient temple of [[Apollo]] Actius, which was enlarged by Augustus, who also, in memory of the [[battle]],
107074 instituted or renewed the quinquennial games called Actia or Ludi Actiaci. Actiaca Aera was a computation of time from the [[Battle of Actium]]. There was on the promontory a small [[town]], or rather [[village]], also called Actium.
107075
107076 == History ==
107077
107078 Actium belonged originally to the [[Corinth|Corinthian]] [[colonist]]s of Anactorium, who probably founded the [[worship]] of Apollo Actius and the Actia games; in the [[3rd century BC|3rd century B.C.]] it fell to the [[Acarnania|Acarnanians]], who subsequently held their synods there. Actium is chiefly famous as the site of [[Caesar Augustus]]' decisive [[battle of Actium|victory]] over [[Mark Antony]] ([[September 2]] [[31 BC|31 B.C.]]). This battle ended a long series of ineffectual operations. The final conflict was provoked by Antony, who is said to have been persuaded by [[Cleopatra VII of Egypt|Cleopatra VII]] to retire to [[Egypt]] and give battle to mask his retreat; but lack of provisions and the growing demoralization of his [[army]] would eventually account for this decision.
107079
107080 == External links ==
107081
107082 * [http://www.acdgthemovie.co.uk/index.html Augustus Caesar: Diamond Geezer — a short film about the Battle of Actium]
107083
107084 [[Category:Archaeological sites in Greece]]
107085 [[Category:Corinthian colonies]]
107086 [[Category:Roman sites in Greece]]
107087
107088 [[da:Actium]]
107089 [[de:Actium]]
107090 [[fr:Actium]]
107091 [[hr:Akcij]]
107092 [[la:Actium]]
107093 [[nl:Actium]]
107094 [[ro:Actium]]
107095 [[fi:Aktion]]
107096 [[sv:Actium]]</text>
107097 </revision>
107098 </page>
107099 <page>
107100 <title>Amide hydrolysis</title>
107101 <id>1811</id>
107102 <revision>
107103 <id>15900275</id>
107104 <timestamp>2005-02-14T17:11:03Z</timestamp>
107105 <contributor>
107106 <username>SimonP</username>
107107 <id>1591</id>
107108 </contributor>
107109 <comment>[[Category:Chemical processes]]</comment>
107110 <text xml:space="preserve">'''Amide hydrolysis''' involves the C-N bond being broken in reaction with water ([[hydrolysis]]). The reaction is [[catalyst|catalysed]] by either [[acid]] or [[alkali]].
107111
107112 [[image:amide_hydrolysis.png]]
107113
107114 '''Procedure:'''
107115
107116 The [[amide]] is heated under reflux with moderately concentrated acqueous acid or alkali. If an ''[[acid]]'' is used, the product contains Ammonium ions. If a ''[[alkali]]'' is used, the [[carboxylic acid]] loses an H&lt;sup&gt;+&lt;/sup&gt; ion and the product contains carboxylate ions.
107117 [[Category:Chemical processes]]</text>
107118 </revision>
107119 </page>
107120 <page>
107121 <title>Amway</title>
107122 <id>1812</id>
107123 <revision>
107124 <id>41819814</id>
107125 <timestamp>2006-03-01T23:23:36Z</timestamp>
107126 <contributor>
107127 <username>Illusion408</username>
107128 <id>586799</id>
107129 </contributor>
107130 <minor />
107131 <comment>/* Lines of Sponsorship */</comment>
107132 <text xml:space="preserve">{{Infobox Company
107133 | company_name = Amway
107134 | company_logo = [[Image:amwaylogo.gif]]
107135 | company_type = [[Private company|Private]]
107136 | foundation = [[1959]]
107137 | location = [[Ada, Michigan|Ada]], [[Michigan]]
107138 | key_people = [[Steve Van Andel]]&lt;br/&gt;[[Doug DeVos]]&lt;br/&gt;[[Lynn Lyall]]
107139 | industry = [[Multi-level marketing]]
107140 | products =
107141 | revenue =
107142 | operating_income =
107143 | net_income =
107144 | num_employees =
107145 | homepage = [http://www.amway.com/ www.amway.com]
107146 }}
107147
107148 '''Amway''' is a [[multi-level marketing]] company founded in [[1959]] by [[Jay Van Andel]] and [[Rich DeVos]]. The company's name is a [[portmanteau]] of &quot;American Way.&quot; [http://www.amway.com/en/History/history-10362.aspx] Based in [[Ada, Michigan]], the company &amp; family of companies under [[Alticor]] reported sales of $6.4 billion for the performance year ending August 31, 2005 marking the company’s sixth straight year of growth. Its product lines include personal care products, jewelry, dietary supplements, and [[cosmetics]], among others. Today, Amway conducts business through a number of affiliated companies in more than ninety countries and territories around the world [http://www.amway.com/en/History/global-growth-10106.aspx].
107149
107150 In [[1999]] the founders of the Amway corporation launched a sister (and separate) [[Internet]]-based company named [[Quixtar]]. The [[Alticor]] corporation owns both Amway and Quixtar, plus several other concerns. Quixtar replaced the North American business of Amway in [[2001]], with Amway operating in the rest of the world. [[Amivo]] acts as an Amway subsidiary in [[Europe]], as does [[a2k]] in [[Australia]] and [[New Zealand]].
107151
107152 Amway cofounder Jay Van Andel (in 1980) and later his son Steve Van Andel (in 2001) were elected by the board of directors of the [[United States Chamber of Commerce]] as chairman of that organization.
107153
107154 ==The Corporation==
107155
107156 Anyone can become an Amway [[Independent Business Owner]] (or ''IBO'', formerly known as a ''Distributor''); IBOs may purchase products from Amway at rates published as [[wholesale]] prices.
107157
107158 Each product has an associated Points Value (PV), which is the same for that product all around the world. It operates like an international [[currency]], which represents the amount of [[profit]] inherent in the product. The sum of the group's PV determines the commission level (3%, 6%, ... 25%) payable. The Business Volume (BV) turns the PV into the local currency, after removing items such as [[value added tax]] (which obviously cannot be part of the profit). The [[commission]] level is applied to the BV in determining the monthly payments to be received as commission.
107159
107160 As in most MLM businesses, a person wishing to join Amway is &quot;sponsored&quot; by an existing IBO. This involves the new IBO purchasing an &quot;Amway Opportunity Kit&quot; or &quot;Business Pack&quot; and completing the appropriate forms. The kit also contains literature and some starter product. IBOs must pay a yearly fee to remain in Amway, although they are not required to buy a minimum amount of products.
107161
107162 Amway claims to have 4 million distributors worldwide who have renewed at least once, including 500,000 in the U.S. [[Japan]] represents a very fast-growing market with 1 million distributors. Recently, Amway received permission to establish a network in [[China]] and have done sales of over 2 Billion U.S. dollars in 2004. (It should be noted that Amway cannot conduct Chinese operations as it typically does elsewhere due to a ban on direct sales).
107163
107164 Training organizations exist to offer a variety of business services to IBOs as well as their prospective business partners. This includes training [[seminar]]s, CDs and literature. Often, public meetings are made available as a way of helping present the concept to prospects.
107165
107166 Amway's distributors are organized hierarchically, and the corporation employs a system of ''pin levels'' to reward successful distributors (so-called because attainees are awarded a stick pin to indicate their level.) Higher-level distributors act as mentors to newer distributors, organize regular meetings of their group and (controversially) may derive most of their profit from the sale of motivational tools to them. &quot;Crosslining,&quot; or associating with people from a different &quot;leg&quot; or distributor chain, is generally discouraged.
107167
107168 ===Pin Levels===
107169
107170 Pin levels reflect the level an IBO has reached in the Amway business. As such they are an indication of both the size of an IBO's group and their income, and by extension the IBO's knowledge and expertise in the field. Top pin level IBOs may have groups numbering hundreds or thousands of people, and are in high demand. They also command respect and adulation from their group. High pin levels are named after precious metals or gems to convey a sense of the wealth that they are supposed to represent.
107171
107172 The lowest pin levels reflect successively higher volumes of PV sold through the IBO's group, and are named after the percentage bonus that each level pays.
107173
107174 The first significant pin level is that of ''Platinum'' (formerly known as a ''Direct''.) The term Direct came from distributors beginning to get products sent to them directly from the corporation after attaining this level, as opposed to previously having bought them via their &quot;sponsoring&quot; distributor. (These days the &quot;Direct&quot; concept is defunct, as all IBOs order their product direct from Amway.) This level requires the IBO's group to be moving 7,500 PV (or 10,000 PV in some countries) of product per month, and the Amway recruitment plan customarily shows that such a group will have a total of 70-100 people; although in practice that number is often larger. The income at the Platinum level, generally speaking, is approximately the same as the average full-time wage in the IBO's country of origin, although this will depend on a number of factors including business structure, volume of retail sales versus group sales, and the total PV turnover. Variations typically range from half to over double the average full-time wage.
107175
107176 A significant pin level is that of ''Diamond''. This level requires that six people the IBO has sponsored have themselves reached the Platinum level (or higher). The remuneration at Diamond is (generally) a &quot;six-figure&quot; passive annual income, and advertised to represent financial freedom for the IBO. Almost all IBOs aspire to this pin level because of this &quot;freedom&quot; aspect.
107177
107178 (Note that it cannot merely be assumed that the income of a Diamond IBO is a simple 6x multiple of the income of a Platinum, since there are several other ranks between Direct and Diamond, and monetary bonuses are paid as a result of having attained these as well.)
107179
107180 The highest level is ''Crown Ambassador''. This level used to require at least twenty legs, each at least at the Platinum level. Amway has recently introduced a system called FAA Points, where it is possible to become a Crown Ambassador with only 9 legs - however each needs to have a Diamond within that leg. This is helping to create much more stable sustainable businesses.
107181
107182 Only a small number of people in the world have attained this pin level, and they are in constant demand for recruitment, training and motivational speaking engagements. The remuneration at the Crown Ambassador level runs into the millions annually.
107183
107184 Other pin levels include ''Ruby'' (15,000 PV per month), ''Emerald'' (three Platinum legs), and ''Executive-'', ''Double-'' and ''Triple Diamond'' (nine and twelve and 15 Platinum legs respectively - or with differing numbers of FAA Points.)
107185
107186 On top of the remuneration for PV moved through their group, an IBO may be entitled to additional monetary incentives. These bonuses are paid for meeting growth targets, extraordinary recruitment number, etc and can represent a significant portion of an IBO's income.
107187
107188 Alticor recently started a program that makes it possible to attain the Crown Ambassador level with only 9 legs. If all of the 9 legs are Diamonds, the IBO receives 27 FAA points as every Diamond counts for 3 FAA points. This allows for greater earnings than with the &quot;old-fashioned way.&quot; Additionally, approximately 80 FAA-points would guarantee a 7 figure bonus (USD) per year.
107189
107190 ===&quot;Crown Ambassador&quot;===
107191
107192 By way of their seniority most Crown Ambassadors sit on various Amway [[board of directors|boards]], deciding business policy which affect all IBOs worldwide. Most also run, or contribute heavily to, their own motivational organizations.
107193
107194 [[Dexter Yager]], one of the biggest landowners in [[Charlotte, North Carolina]], considered a legend by some within the Amway organization, is probably the most famous American Crown Ambassador. He created a training system of functions, [[book]]s of the month, and [[tape]]s. This has been done by a number of other organizations, such as Network 21 which is the most international of the business systems which run parallel to Amway.
107195
107196 ===Lines of Sponsorship===
107197
107198 A line of sponsorship (LOS or [[line of affiliation]]) is an essential organizational concept in Amway organizations. Status is determined by where one is on the hierarchical continuum within the LOS. Those [[upline]] have higher status and those and [[downline]] have less status. [http://www.mlmsurvivor.com/stewart_v_gooch4.htm] A given IBO signs an agreement upon registration that says he/she will not switch LOS ([[Crossline]]). [http://www.quixtar.com/Documents/IWOV/VIS/010-EN/PDFs_Redstar90104/IBO_Support/Registration/LA1037H_Registration.pdf] Some of Amway LOS have included: [[TEAM (company)|TEAM]] (formerly Team of Destiny), [[InterNET]], [[BWW]], [[WorldWide Dream Builders]] (WWDB), [[Alliance Net Solutions]] (ANS), [[Empire]], [[True North]], [[eFinity]], [[InterNet Associates]] (INA), [[International Connection]], [[International Leadership Development]] (ILD), [[MarkerMan Productions]] (MMP), [[ProAlliance]], [[Interbiz]], [[IBO Alliance]], and [[GlobalNet]].[http://whataboutquixtar.com/forum/index.php?sid=7a767a537c21a12c6a3d4db1dbb75114]
107199
107200 ==Controversy==
107201
107202 Amway (and its online incarnation, [[Quixtar]]) have been controversial for years because of allegations that these companies are [[pyramid scheme]]s. Critics claim that most of the products sold by Amway are to the Independent Business Owners (IBOs) themselves for personal consumption rather than to retail consumers who aren't enrolled as IBOs. Buying products from Amway or Quixtar gives IBOs points and they are paid back on the number of points that they generate from personal consumption. It is claimed to be a business opportunity and hence an existing IBO can help others to get an IBO number and divert their buying habit from other stores to Amway or Quixtar. Thus the business grows as a greater number of people join the group. The share of profit is based on the leverage that an IBO has.
107203
107204 Typically, IBOs spend a large amount of money on tapes, books, and seminars (known as &quot;tools&quot; in AMO parlance) which are ostensibly &quot;required&quot; to &quot;hone the business skills of the IBOs&quot;. These are not provided by Amway itself but organizations often described as [[Amway Motivational Organization]]s (AMO) in general run by people in the higher ranks of the organization. Claims regarding the support material range from &quot;can be of help to an IBO &quot; to &quot;are absolutely required&quot; to &quot;build a big business&quot;. However, undercover investigations like one done by [http://www.msnbc.msn.com/id/4375477/ MSNBC Dateline] in [[April 2003]] suggest that most of the money being earned by these successful individuals was coming from the hidden &quot;tools&quot; business rather than through selling the company products. Critics also claim that the materials are specifically geared towards encouraging IBOs to continue working for a non-economic return, rather than improving their actual business skills.
107205
107206 [[Dexter Yager]]'s organization, the International Dreambuilders' Association/Digital Alliance (usually simply referred to by the abbreviation IDA) is arguably the largest and best-known of the AMOs, and is probably the one most commonly associated with Amway.
107207
107208 ==Political causes/Culture==
107209
107210 Commentators have often (but not strictly accurately) identified Amway as supporting the [[United States Republican Party|US Republican Party]] and other [[right-wing]] causes. Amway Corporation claims to support no political party, yet 100% of its political donations have been to Republicans. [[Rich DeVos]] and [[Jay Van Andel]], who fully owned the company until their retirement (when they delegated authority and substantial ownership to their children), have strongly supported the Republican Party and socially and economically [[conservative]] causes, but that has been with their personal assets, not as a company position ''per se''. Many of Amway's best-known distributors, including Dexter Yager, have also declared themselves Republicans. Amway touts the [[environmental]] benefits of many of its products, and in June [[1989]] the [[United Nations Environmental Programme]]'s Regional Office for North America recognized it for its contributions to the cause of the environment.
107211
107212 As well as tending towards being right wing, the senior distributors also promote a worldview encompassing [[Pentecostal]] [[Christian fundamentalism]], and a general advocacy of [[Baby boomer|boomer]]/[[1950s|50s]] values. The Amway Motivational Organization's (AMO's) perception of the role of women, though, always includes successful women in awards, recognition and speaking engagements. One rarely, if ever, sees a male, married distributor speak on stage without his wife getting equal billing, and explaining her active role in the business. This is a reflection of the AMOs' strong advocacy of the [[1950s]] style [[nuclear family]] model. (Women have successfully developed Amway/Quixtar businesses around the world.)
107213
107214 A significant part of the Amway culture is the promotion and sale of training materials, as well as the attendance at meetings and rallies locally, regionally, and nationally. Training includes education about the topic of generalised, non-Amway specific [[entrepreneurship]]. The purpose of this is to create interest and enthusiasm. They are intended to maintain and increase membership, and to inspire IBOs to be more successful in their businesses. To a casual observer, they have some resemblance to a religious gathering. By involving people in a regular schedule of meetings, people are encouraged to maintain their focus, and to not be distracted by critics and other nay-sayers.
107215
107216 [[Doug Wead]], who was a Special Assistant to former U.S. President [[George H. W. Bush]], is a successful IBO who is a regular speaker at group rallies.
107217
107218 In May of 2005, former Amway President Dick DeVos, one of the wealthiest people in Michigan, and his wife Betsy were listed as two of the largest campaign contributors of the 2004 election. Just days later, Dick announced that he would run against Governor [[Jennifer Granholm]] in [[2006]].
107219
107220 ==Supporters==
107221
107222 [[Robert Kiyosaki]], author of the best-selling (but controversial) business books ''[[Rich Dad, Poor Dad]]'' and ''[[Cashflow Quadrant]]'', endorses organizations that, according to him, promote financial literacy. A few of those organizations utilize Amway as a vehicle to develop a business.
107223
107224 ==Legal rulings==
107225
107226 In the [[1979]] ''In re. Amway Corp.'' (93 F.T.C. 618) ruling [http://www.ftc.gov/speeches/other/dvimf16.htm#N_19_], the [[Federal Trade Commission]] found that Amway does not qualify as an illegal pyramid scheme since the main aim of the enterprise is the sale of product. It did, however, order Amway to change several business practices and prohibited the company from misrepresenting the amount of profit, earnings or sales its distributors are likely to achieve. Amway was ordered to accompany any such statements with the actual averages per distributor, pointing out that more than half of the distributors do not make any money, with the average distributor making less than $100 per month. The order was violated with a [[1986]] ad campaign, resulting in a $100,000 fine. [http://www.ftc.gov/opa/predawn/F86/amway.htm]
107227
107228 In [[1983]], Amway pleaded guilty to [[tax evasion]] and [[Customs (tax)|customs]] [[fraud]] in Canada, resulting in a fine of CDN$25 million, the largest fine ever imposed in that country.
107229 ==Other violations==
107230 In 2005, Amway/Quixtar orchestrated an attempt to drown out sites reporting deceptive practices and negative opinions. The [http://www.webraw.com/quixtar/archives/2004/10/the_quixtar_web_initiative.php &quot;Web Initiative&quot;] was flagged as [[Google bombing]], a violation of [http://www.google.com/webmasters/guidelines.html Google's Quality Guidelines].
107231
107232 ==External links and references==
107233
107234 * [http://www.amway.com/ Amway Corporation]
107235 *[http://biz.yahoo.com/ic/40/40031.html Yahoo! - Alticor Inc. Company Profile]
107236 *[http://biz.yahoo.com/ic/103/103441.html Yahoo! - Amway Corporation Company Profile]
107237 *[http://www.amway.co.jp/ Amway Japan Limited]
107238
107239 Amway detractors accuse the company of spreading [[right-wing]] beliefs among its distributors:
107240 *[http://www.motherjones.com/news/special_reports/1996/09/burstein.html Mother Jones]
107241 *[http://io.scoop.co.nz/stories/HL0412/S00154.htm Scoop].
107242 This has led to the derogatory term &quot;Amway Christian&quot;, which suggests a professed Christian with a lack of commitment to the social-justice elements of the faith
107243 *[http://www.webraw.com/quixtar/archives/2005/02/amway_christian.php, Webraw]
107244 *[http://www.augustafreepress.com/stories/storyReader$31336 Augusta]
107245 *[http://www.ftc.gov/speeches/other/dvimf16.htm Prepared Statement of Debra A. Valentine, General Counsel for the U.S. FTC, on &quot;Pyramid Schemes&quot;]
107246 *[http://www.ftc.gov/opa/predawn/F86/amway.htm Amway Corp. to Pay $100,000 Civil Penalty (1986), from ftc.gov]
107247
107248 ==Resources==
107249
107250 *[http://www.quixtar.com/ Quixtar homepage]
107251 *[http://www.alticor.com/companies/quixtar.html Alticor Inc. (Amway &amp; Quixtar Parent Company)]
107252 *[http://www.pyramidschemealert.org/ Pyramid Scheme Alert] a non profit consumer rights organization.
107253 *[http://dmoz.org/Business/Opportunities/Opposing_Views/Amway_and_Quixtar/ Dmoz.org: Amway and Quixtar] Selection of opposing websites.
107254 *[http://www.merchantsofdeception.com/ Merchants of Deception (MOD) - True Amway Quixtar story by former Emerald IBO] (free PDF eBook by Eric Scheibeler)
107255 *[http://www.letsgetthewordout.com Let's Get the Word Out] - A grassroots movement to help those disassociating from Amway Quixtar and multi-level marketing
107256 *[http://www.msnbc.msn.com/id/4375477/ MSNBC Dateline undercover investigation of Amway, Quixtar and Bill Britt] - transcript
107257 *[http://www.quixtarresponse.com Quixtar's response to the Dateline report]
107258 *[http://www.technorati.com/tags/Amway Technorati 'Amway' tag site] - gathers blog posts, links and images related to Amway
107259 *[http://amquix.info/ Quixtar Business Analysis] - analyzes and criticizes Amway extensively, mostly from a financial perspective
107260 *[http://www.amwaylive.com/ amwaylive.com] A Japanese site where IBOs in Japan order products and find business tools
107261 *[http://www.amquix.info/blakey.html The Blakey Report] A report by a drafter of recent American organized crime legislation, comparing the structure and function of Amway, when combined with the distributor organizations, with that of the American Mafia
107262
107263 [[Category:Amway]]
107264 [[Category:Multi-level marketing]]
107265 [[Category:Companies based in Michigan]]
107266
107267 [[de:Amway]]
107268 [[nl:Amway]]
107269 [[ja:&amp;#12450;&amp;#12512;&amp;#12454;&amp;#12455;&amp;#12452;]]
107270 [[pl:Amway]]
107271 [[fi:Amway]]
107272 [[sv:Amway]]
107273 [[zh:&amp;#23433;&amp;#21033;]]</text>
107274 </revision>
107275 </page>
107276 <page>
107277 <title>Adam Smith</title>
107278 <id>1814</id>
107279 <revision>
107280 <id>42116676</id>
107281 <timestamp>2006-03-03T22:55:53Z</timestamp>
107282 <contributor>
107283 <username>RexNL</username>
107284 <id>241337</id>
107285 </contributor>
107286 <minor />
107287 <comment>Reverted edits by [[Special:Contributions/138.89.41.193|138.89.41.193]] ([[User talk:138.89.41.193|talk]]) to last version by Bluemoose</comment>
107288 <text xml:space="preserve">{{Otherpeople|Adam Smith}}
107289 {{Infobox_Philosopher |
107290 &lt;!-- Scroll down to edit this page --&gt;
107291 &lt;!-- Philosopher Category --&gt;
107292 region = Western Philosophers |
107293 era = [[18th-century philosophy]]&lt;br&gt;(Modern Philosophy) |
107294 color = #B0C4DE |
107295
107296 &lt;!-- Image and Caption --&gt;
107297 image_name = AdamSmith.jpg |
107298 image_caption = Adam Smith |
107299
107300 &lt;!-- Information --&gt;
107301 name = Adam Smith |
107302 birth = [[June 5]], [[1723]] (baptized) ([[Kirkcaldy]], [[Fife]], [[Scotland]]) |
107303 death = [[July 17]], [[1790]] ([[Edinburgh]], [[Scotland]]) |
107304 school_tradition = [[Classical economics]] |
107305 main_interests = [[Political philosophy]], [[ethics]], [[economics]] |
107306 influences = [[Aristotle]], [[Thomas Hobbes|Hobbes]], [[John Locke|Locke]], [[David Hume|Hume]], [[Baron de Montesquieu|Montesquieu]] |
107307 influenced = [[Thomas Malthus|Malthus]], [[David Ricardo|Ricardo]], [[John Stuart Mill|Mill]], [[John Maynard Keynes|Keynes]], [[Karl Marx|Marx]], [[Friedrich Engels|Engels]], [[Founding Fathers of the United States|American Founding Fathers]] |
107308 notable_ideas = [[Classical economics]], modern [[free market]], [[division of labour]] |
107309 }}
107310 '''Adam Smith, [[Royal Society of Edinburgh|FRSE]]''' (baptised [[June 5]], [[1723]] – [[July 17]], [[1790]]) was a [[Scotland|Scottish]] [[political economy|political economist]] and [[moral philosophy|moral philosopher]]. His ''[[The Wealth of Nations|Inquiry into the Nature and Causes of the Wealth of Nations]]'' was one of the earliest attempts to study the historical development of industry and commerce in [[Europe]]. That work helped to create the modern academic discipline of [[economics]] and provided one of the best-known intellectual rationales for [[free trade]] and [[capitalism]].
107311
107312 ==Biography==
107313 Smith was a son of the controller of the customs at [[Kirkcaldy]], [[Fife]], [[Scotland]]. The exact date of his birth is unknown, but he was baptized at Kirkcaldy on [[June 5]], [[1723]], his father having died some six months previously. At around the age of 4, he was kidnapped by a band of [[Roma people|Gypsies]], but he was quickly rescued by his uncle and returned to his mother. Smith's biographer, [[John Rae (biographer)|John Rae]], commented wryly that he feared Smith would have made &quot;a poor Gypsy.&quot;
107314
107315 At the age of fourteen, Smith proceeded to the [[University of Glasgow]], studying moral philosophy under &quot;the never-to-be-forgotten&quot; (as Smith called him) [[Francis Hutcheson (philosopher)|Francis Hutcheson]]. Here Smith developed his strong passion for liberty, reason and free speech. In [[1740]] he entered [[Balliol College, Oxford]], but as William Robert Scott has said, &quot;the [[University of Oxford|Oxford]] of his time gave little if any help towards what was to be his lifework,&quot; and he left the university in [[1746]]. In [[1748]] he began delivering public lectures in [[Edinburgh]] under the patronage of [[Lord Kames]]. Some of these dealt with rhetoric and ''belles-lettres'', but later he took up the subject of &quot;the progress of opulence,&quot; and it was then, in his middle or late 20s, that he first expounded the economic philosophy of &quot;the obvious and simple system of natural liberty&quot; which he was later to proclaim to the world in his ''Inquiry into the Nature and Causes of the Wealth of Nations''. About [[1750]] he met [[David Hume]], who became one of the closest of his many friends.
107316
107317 In [[1751]] Smith was appointed professor on [[logic]] at the University of Glasgow, transferring in [[1752]] to the chair of [[moral philosophy]]. His lectures covered the fields of [[ethics]], [[rhetoric]], [[jurisprudence]], [[political economy]], and &quot;police and revenue.&quot; In [[1759]] he published his ''[[The Theory of Moral Sentiments]]'', embodying some of his [[Glasgow]] lectures. This work, which established Smith's reputation in his day, was concerned with how human communication depends on sympathy between agent and spectator (that is, the individual and other members of society). His analysis of language evolution was somewhat superficial, as shown only 14 years later by a more rigourous examination of primitive language evolution by [[Lord Monboddo]] in his ''Of the Origin and Progress of Language''{{ref|monboddo}}. Smith's capacity for fluent, persuasive, if rather rhetorical argument is much in evidence. He bases his explanation, not as the third Lord Shaftesbury and Hutcheson had done, on a special &quot;moral sense&quot;, nor (as Hume did) on [[utilitarianism|utility]], but on sympathy.
107318
107319 Smith now began to give more attention to jurisprudence and economics in his lecture and less to his theories of morals. An impression can be obtained as to the development of his ideas on political economy from the notes of his lectures taken down by a student in about [[1763]] which were later edited by [[Edwin Cannan]]{{ref|cannan}}, and from what Scott, its discoverer and publisher, describes as &quot;An Early Draft of Part of The Wealth of Nations&quot;, which he dates about 1763. Cannan's work appeared as ''Lectures on Justice, Police, Revenue and Arms''. A fuller version was published as [[Lectures on Jurisprudence]] in the Glasgow Edition of 1976.
107320
107321 At the end of 1763 Smith obtained a lucrative post as tutor to the young [[Henry Scott, 3rd Duke of Buccleuch|Duke of Buccleuch]] and resigned his professorship. From [[1764]]-[[1766|66]] he traveled with his pupil, mostly in France, where he came to know such intellectual leaders as [[Anne Robert Jacques Turgot, Baron de Laune|Turgot]], [[Jean le Rond d'Alembert| Jean D'Alembert]], [[AndrÊ Morellet]], [[HelvÊtius]] and, in particular, [[Francois Quesnay]], the head of the [[physiocrats|Physiocratic school]] whose work he respected greatly. On returning home to Kirkcaldy he devoted much of the next ten years to his [[magnum opus]], ''An Inquiry into the Nature and Causes of the Wealth of Nations,'' which appeared in [[1776]]. It was very well-received and popular, and Smith became famous. In [[1778]] he was appointed to a comfortable post as commissioner of customs in Scotland and went to live with his mother in Edinburgh. He died there on July 17, 1790, after a painful illness and was buried in Canongate Churchyard, Royal Mile, Edinburgh. He had apparently devoted a considerable part of his income to numerous secret acts of charity.
107322
107323 Smith's literary executors were two old friends from the Scottish academic world; physicist/chemist [[Joseph Black]] and pioneering geologist [[James Hutton]]. Smith left behind many notes and some unpublished material, but gave instructions to destroy anything that was not fit for publication. He mentioned an early unpublished ''History of Astronomy'' as probably suitable, and it duly appeared in 1795, along with other material, as [[Essays on Philosophical Subjects]].
107324
107325 ==Works==
107326 Shortly before his death Smith had nearly all his manuscripts destroyed. In his last years he seemed to have been planning two major treatises, one on the theory and history of law and one on the sciences and arts. The posthumously published ''Essays on Philosophical Subjects'' ([[1795]]) probably contain parts of what would have been the latter treatise.
107327
107328 ''The Wealth of Nations'' was influential since it did so much to create the field of economics and develop it into an autonomous systematic discipline. In the Western world, it is arguably the most influential book on the subject ever published. When the book, which has become a classic [[manifesto]] against [[mercantilism]] (the theory that large reserves of [[bullion]] are essential for economic success), appeared in [[1776]], there was a strong sentiment for [[free trade]] in both [[Kingdom of Great Britain|Britain]] and [[United States|America]]. This new feeling had been born out of the economic hardships and poverty caused by the war. However, at the time of publication, not everybody was immediately convinced of the advantages of [[free trade]]: the British public and [[Palace of Westminster|Parliament]] still clung to mercantilism for many years to come.
107329
107330 ''The Wealth of Nations'' also rejects the [[Physiocrats|Physiocratic]] school's emphasis on the importance of land; instead, Smith believed labour was paramount, and that a [[division of labour]] would effect a great increase in production. ''Nations'' was so successful, in fact, that it led to the abandonment of earlier economic schools, and later economists, such as [[Thomas Malthus]] and [[David Ricardo]], focused on refining Smith's theory into what is now known as [[classical economics]] ([[Modern economics]] evolved from this). Malthus expanded Smith's ruminations on [[overpopulation]], while Ricardo believed in the &quot;[[iron law of wages]]&quot; — that overpopulation would prevent wages from topping the subsistence level. Smith postulated an increase of wages with an increase in production, a view considered more accurate today.
107331
107332 One of the main points of ''The Wealth of Nations'' is that the free market, while appearing chaotic and unrestrained, is actually guided to produce the right amount and variety of goods by a so-called &quot;[[Invisible Hand|invisible hand]]&quot;. If a product shortage occurs, for instance, its price rises, creating a profit margin that creates an incentive for others to enter production, eventually curing the shortage. If too many producers enter the market, the increased [[competition]] among manufacturers and increased supply would lower the price of the product to its production cost, the &quot;[[natural price]]&quot;. Even as profits are zeroed out at the &quot;natural price,&quot; there would be incentives to produce goods and services, as all costs of production, including compensation for the owner's labour, are also built into the price of the goods. If prices dipped below a zero profit, producers would drop out of the market; if they were above a zero profit, producers would enter the market. Smith believed that while human motives are often [[selfishness|selfish]] and [[Greed (emotion)|greedy]], the competition in the free market would tend to benefit society as a whole by keeping prices low, while still building in an incentive for a wide variety of goods and services. Nevertheless, he was wary of businessmen and argued against the formation of [[monopoly|monopolies]].
107333
107334 Smith vigorously attacked the antiquated government restrictions which he thought were hindering industrial expansion. In fact, he attacked most forms of government interference in the economic process, including [[tariff]]s, arguing that this creates inefficiency and high prices in the long run. This theory, now referred to as &quot;[[laissez-faire]]&quot;, which means &quot;let them do&quot;, influenced government legislation in later years, especially during the [[19th century]]. (However, it must be remembered that Smith advocated for a Government that was active in sectors other than the economy: he advocated for public education of poor adults; for institutional systems that were not profitable for private industries; for a judiciary; and for a standing army.)
107335
107336 Two of the most famous and oft-quoted passages in ''The Wealth of Nations'' are:
107337
107338 :''It is not from the benevolence of the butcher, the brewer, or the baker that we expect our dinner, but from their regard to their own interest. We address ourselves, not to their humanity but to their self-love, and never talk to them of our own necessities but of their advantages.''
107339
107340 :''As every individual, therefore, endeavours as much as he can both to employ his capital in the support of domestic industry, and so to direct that industry that its produce may be of the greatest value; every individual necessarily labours to render the annual value of society as great as he can. He generally, indeed, neither intends to promote the public interest, nor knows how much he is promoting it. By preferring the support of domestic to that of foreign industry, he intends only his own security; and by directing that industry in such a manner as its produce may be of the greatest value, he intends only his own gain, and he is in this, as in many other cases, led by an invisible hand to promote an end which was no part of his intention. Nor is it always the worse for the society that it was no part of it. By pursuing his own interest he frequently promotes that of society more effectually than when he really intends to promote it. I have never known much good done by those who affected to trade for the public good. It is an affectation, indeed, not very common among merchants, and very few words need be employed in dissuading them from it.''
107341
107342 ==''The &quot;Adam Smith-Problem&quot;''==
107343 {{liberalism}}
107344 There has been considerable controversy as to whether there is a contradiction between Smith's emphasis on sympathy in his ''Theory of Moral Sentiments'' and the key role of self-interest in ''The Wealth of Nations''. Economist [[Joseph Schumpeter]] referred to this in German as ''[[:de:Adam-Smith-Problem|das 'Adam Smith-Problem']]''. In his ''Moral Sentiments'' Smith seems to emphasize the broad synchronization of human intention and behaviour under a beneficent Providence, while in ''The Wealth of Nations'', in spite of the general theme of &quot;the invisible hand&quot; Adam Smith makes the claim that, within the system of capitalism, an individual acting for his own good tends also to promote the good of his community. creating harmony out of conflicting self-interests, he finds many more occasions for pointing out cases of conflict and of the narrow selfishness of human motives. Yet it would be inaccurate to describe the Adam Smith of the ''Moral Sentiments'' as disbelieving of an essential selfishness of most human motives, for he writes that:
107345 :''Thus self-preservation, and the propagation of the species, are the great ends which Nature seems to have proposed in the formation of all animals. Mankind are endowed with a desire of those ends, and an aversion to the contrary; with a love of life, and a dread of dissolution; with a desire of the continuance and perpetuity of the species, and with an aversion to the thoughts of its entire extinction. But though we are in this manner endowed with a very strong desire of those ends, it has not been entrusted to the slow and uncertain determinations of our reason, to find out the proper means of bringing them about. Nature has directed us to the greater part of these by original and immediate instincts. Hunger, thirst, the passion which unites the two sexes, the love of pleasure, and the dread of pain, prompt us to apply those means for their own sakes, and without any consideration of their tendency to those beneficent ends which the great Director of nature intended to produce by them.''
107346
107347 Adam Smith himself cannot have seen any contradiction, since he produced a slightly revised edition of ''Moral Sentiments'' after the publication of ''[[The Wealth of Nations]]''. Both sets of ideas are to be found in his [[Lectures on Jurisprudence]]. He may have believed that moral sentiments and self-interest would always add up to the same thing.
107348
107349 Some scholars have given another explanation: Adam Smith was trying to illustrate the complicated economy with two simple dimensions. It was the people who, due to historical limitations, emphasized the &quot;wealth&quot; part. In the future, due to the change of world economy, the emphasis may well change.
107350
107351 ==Influence==
107352 ''The Wealth of Nations'', and to a lesser extent ''The Theory of Moral Sentiments'', have become the starting point for any defence or critique of forms of [[capitalism]], most influentially in the writings of [[Karl Marx|Marx]] and [[Humanism|Humanist]] [[economist]]s. Because capitalism is so often associated with unbridled [[selfishness]], there is a recent movement to emphasize the moral philosophy of Smith, with its focus on [[sympathy]] with one's fellows.
107353
107354 There has been some controversy over the extent of Smith's originality in ''The Wealth of Nations''; some argue that the work added modestly to the already established ideas of thinkers such as [[Anders Chydenius]] ([[The National Gain]] (1765)), [[David Hume]] and the [[Charles de Secondat, Baron de Montesquieu|Baron de Montesquieu]]. Indeed, many of the theories Smith sets out simply describe historical trends away from [[mercantilism]], towards [[free trade]], that had been developing for many decades, and had already had significant influence on governmental policy. Nevertheless, it organizes their ideas comprehensively, and remains one of the most influential and important books in the field today.
107355
107356 Smith was ranked #30 in [[Michael H. Hart]]'s [[The 100|list of the most influential figures in history]].
107357
107358 ==Major works==
107359 * ''[[The Theory of Moral Sentiments]]'' (1759)
107360 * ''[[The Wealth of Nations]]'' (1776)
107361 * ''[[Essays on Philosophical Subjects]]''
107362
107363 ==Notes==
107364 #{{note|cannan}} ''&quot;Lectures on Justice, Police, Revenue and Arms&quot;'', 1896
107365 #{{note|monboddo}} Cloyd, E.L.: ''&quot;[[James Burnett, Lord Monboddo]]&quot;'', pp 64-66. Oxford University Press, 1972
107366
107367 ==See also==
107368 *[[Liberalism]]
107369 *[[Contributions to liberal theory]]
107370 *[[Adam Smith rule]]
107371 *[[Capitalism]]
107372 *[[History of economic thought]]
107373 *[[Anders Chydenius]]
107374 *''[[The National Gain]]''
107375 *[[Times obituary of Adam Smith]]
107376 *[[William Petty]]
107377
107378 ==External links==
107379 {{Wikiquote}}
107380 {{Wikisource author}}
107381 ;General
107382 * {{gutenberg author| id=Adam+Smith | name=Adam Smith}}
107383 *[http://www.econlib.org/library/Enc/bios/Smith.html Biography] at the ''Concise Encyclopedia of Economics''
107384 *[http://www.econlib.org/library/YPDBooks/Rae/raeLS.html ''Life of Adam Smith''] by John Rae, at the Library of Economics and Liberty
107385 *[http://cepa.newschool.edu/het/profiles/smith.htm Smith's works]
107386 *[http://econ161.berkeley.edu/Economists/smith.html Brad deLong's Adam Smith page]
107387 *[http://www.adamsmith.org The Adam Smith Institute]
107388 *[http://www.libertyforums.com/ LibertyForums] - Classical Liberal, Libertarian &amp; Objectivist Discussion Board.
107389 *[http://www.boomerbible.com/adam20.html Excerpt from &quot;The Book of the VIP Adam&quot;]
107390 *[http://web.uvic.ca/~rutherfo/a_smith.html Grave of Adam Smith] on the [http://web.uvic.ca/~rutherfo/mr_grvs.html Famous Economists Grave Sites]
107391 *[http://www.npg.org.uk/live/search/ Images at the National Portrait Gallery]
107392 *[http://www.importantscots.com/adam-smith.htm Adam Smith - Important Scots]
107393 *[http://www.cfh.ufsc.br/ethic@/et42art2.pdf Reflections on Smith's ethics]
107394
107395 ;Works
107396 *[http://www.econlib.org/library/Smith/smWN.html ''The Wealth of Nations''] at the [http://www.econlib.org/index.html Library of Economics and Liberty]. Cannan edition. Definitive, fully searchable, free online.
107397 *{{Gutenberg|no=3300|name=The Wealth of Nations}}
107398 *[http://www.mondopolitico.com/library/wealthofnations/toc.htm ''The Wealth of Nations''] from [http://www.mondopolitico.com/library/ Mondo Politico Library] - full text; formatted for easy on-screen reading.
107399 *[http://www.adamsmith.org/smith/won-intro.htm ''The Wealth of Nations''] from the [http://www.adamsmith.org/ Adam Smith Institute] - elegantly formatted for on-screen reading
107400 *[http://oll.libertyfund.org/Home3/BookSetToCPage.php?recordID=0141 ''Works and Correspondence of Adam Smith'']. Glasgow edition, 7 volumes at the [http://oll.libertyfund.org/ Online Library of Liberty]. Definitive, free online.
107401 *[http://www.econlib.org/library/Smith/smMS.html ''The Theory of Moral Sentiments''] at the [http://www.econlib.org/index.html Library of Economics and Liberty]
107402
107403 [[Category:1723 births|Smith, Adam]]
107404 [[Category:1790 deaths|Smith, Adam]]
107405 [[Category:Adam Smith]]
107406 [[Category:Business theorists|Smith, Adam]]
107407 [[Category:Economists|Smith, Adam]]
107408 [[Category:Enlightenment philosophers|Smith, Adam]]
107409 [[Category:Fellows of the Royal Society of Arts|Smith, Adam]]
107410 [[Category:Fellows of the Royal Society of Edinburgh|Smith, Adam]]
107411 [[Category:Fellows of the Royal Society|Smith, Adam]]
107412 [[Category:Glaswegians|Smith, Adam]]
107413 [[Category:Natives of Fife|Smith, Adam]]
107414 [[Category:Scottish economists|Smith, Adam]]
107415 [[Category:Scottish Enlightenment|Smith]]
107416 [[Category:Scottish philosophers|Smith, Adam]]
107417 [[Category:Scottish writers|Smith, Adam]]
107418
107419 [[bg:АдаĐŧ ĐĄĐŧиŅ‚]]
107420 [[bn:āĻāĻĄāĻžāĻŽ āĻ¸ā§āĻŽāĻŋāĻĨ]]
107421 [[bs:Adam Smith]]
107422 [[ca:Adam Smith]]
107423 [[cs:Adam Smith]]
107424 [[da:Adam Smith]]
107425 [[de:Adam Smith]]
107426 [[eo:Adam SMITH]]
107427 [[es:Adam Smith]]
107428 [[et:Adam Smith]]
107429 [[eu:Adam Smith]]
107430 [[fi:Adam Smith]]
107431 [[fr:Adam Smith]]
107432 [[ga:Adam Smith]]
107433 [[gd:Adam Smith]]
107434 [[he:אדם סמי×Ē]]
107435 [[hr:Adam Smith]]
107436 [[hu:Adam Smith]]
107437 [[id:Adam Smith]]
107438 [[io:Adam Smith]]
107439 [[is:Adam Smith]]
107440 [[it:Adam Smith]]
107441 [[ja:ã‚ĸダムãƒģ゚ミ゚]]
107442 [[ko:ė• ë¤ ėŠ¤ë¯¸ėŠ¤]]
107443 [[lt:Adamas Smitas]]
107444 [[ms:Adam Smith]]
107445 [[nl:Adam Smith]]
107446 [[nn:Adam Smith]]
107447 [[no:Adam Smith]]
107448 [[pl:Adam Smith]]
107449 [[pt:Adam Smith]]
107450 [[ro:Adam Smith]]
107451 [[ru:ĐĄĐŧиŅ‚, АдаĐŧ]]
107452 [[scn:Adam Smith]]
107453 [[sco:Adam Smith]]
107454 [[sh:Adam Smith]]
107455 [[simple:Adam Smith]]
107456 [[sk:Adam Smith]]
107457 [[sr:АдаĐŧ ĐĄĐŧиŅ‚]]
107458 [[sv:Adam Smith]]
107459 [[th:āšā¸­ā¸”ā¸ąā¸Ą ā¸Ēā¸Ąā¸´ā¸—]]
107460 [[tr:Adam Smith]]
107461 [[vi:Adam Smith]]
107462 [[zh:äēšåŊ“Âˇæ–¯å¯†]]</text>
107463 </revision>
107464 </page>
107465 <page>
107466 <title>AntoineLavoisier</title>
107467 <id>1820</id>
107468 <revision>
107469 <id>15900283</id>
107470 <timestamp>2002-02-25T15:43:11Z</timestamp>
107471 <contributor>
107472 <ip>Conversion script</ip>
107473 </contributor>
107474 <minor />
107475 <comment>Automated conversion</comment>
107476 <text xml:space="preserve">#REDIRECT [[Antoine Lavoisier]]
107477 </text>
107478 </revision>
107479 </page>
107480 <page>
107481 <title>Antoine Laurent Lavoisier</title>
107482 <id>1821</id>
107483 <revision>
107484 <id>15900284</id>
107485 <timestamp>2002-02-25T15:51:15Z</timestamp>
107486 <contributor>
107487 <ip>Conversion script</ip>
107488 </contributor>
107489 <minor />
107490 <comment>Automated conversion</comment>
107491 <text xml:space="preserve">#REDIRECT [[Antoine Lavoisier]]
107492 </text>
107493 </revision>
107494 </page>
107495 <page>
107496 <title>Antoine Lavoisier</title>
107497 <id>1822</id>
107498 <revision>
107499 <id>41585319</id>
107500 <timestamp>2006-02-28T08:34:58Z</timestamp>
107501 <contributor>
107502 <ip>204.69.190.75</ip>
107503 </contributor>
107504 <comment>/* Can a severed head think? */</comment>
107505 <text xml:space="preserve">{{Infobox Celebrity
107506 | name =Antoine Lavoisier
107507 | image = Antoine_lavoisier_color.jpg
107508 | caption = [[List of people known as the father or mother of something|Father of modern chemistry]]
107509 | birth_date = [[August 26]] [[1743]]
107510 | birth_place = [[Paris]],[[France]]
107511 | death_date = [[May 8]] [[1794]]
107512 | death_place = [[Paris]],[[France]]
107513 | occupation = [[Chemist]], [[economics|economist]] and [[nobility|nobleman]].
107514 | salary =
107515 | networth =
107516 | website =
107517 | footnotes =
107518 }}
107519
107520 '''Antoine-Laurent de Lavoisier''' ([[August 26]] [[1743]] &amp;ndash; [[May 8]] [[1794]]) was a [[France|French]] [[nobility|nobleman]] prominent in the histories of [[chemistry]], [[finance]], [[biology]], and [[economics]]. The &quot;''[[List of people known as the father or mother of something|father of modern chemistry]]''&quot;, he stated the first version of the [[Law of Conservation of Matter]], recognized and named [[oxygen]] ([[1778]]), disproved the [[phlogiston theory]], and helped to reform chemical nomenclature. He was also an investor and administrator of the ''[[Ferme GÊnÊrale]]'', a private tax collection company; chairman of the board of the [[Discount Bank]] (later the [[Banque de France]]); and a powerful member of a number of other aristocratic administrative councils. Due to his prominence in the pre-revolutionary government in [[France]], he was [[Decapitation|beheaded]] at the height of the [[French Revolution]].
107521
107522 ==Early life==
107523 [[Image:David_Portrait_of_Monsieur_Lavoisier.jpg|thumb|200px|left|''Portrait of Monsieur Lavoisier and his Wife'', by [[Jacques-Louis David]].]]
107524 Born to a wealthy family in [[Paris]], Antoine Laurent Lavoisier inherited a large fortune when his mother died. He attended the [[College Mazarin]] from [[1754]] to [[1761]], studying [[chemistry]], [[botany]], [[astronomy]], and [[mathematics]]. His education was filled with the ideals of the French [[The Enlightenment|Enlightenment]] of the time, he felt fascination for [[Maquois|Maquois's]] dictionary. His devotion and passion for chemistry was largely influenced by [[Étienne Condillac]], a prominent French scholar of the [[18th century]]. His first chemical publication appeared in [[1764]]. In [[1767]] he worked on a geological survey of [[Alsace-Lorraine]]. He was elected a member of the [[French Academy of Sciences]], France's most elite scientific society, at the age of 25 in [[1768]] for an essay on street lighting and in recognition for his earlier research. In [[1769]] he worked on the first geological map of [[France]].
107525
107526 In [[1771]], he married 13-year-old [[Marie-Anne Pierette Paulze]], the daughter of a co-owner of the Ferme. With time, she proved to be a scientific colleague to her husband. She translated documents from English for him, including [[Richard Kirwan]]'s &quot;''Essay on Phlogiston''&quot; and [[Joseph Priestley]]'s research. She created many [[drawing|sketches]] and carved engravings of the laboratory instruments used by Lavoisier and his colleagues. She also edited and published Lavoisier’s memoirs and hosted many parties during which eminent scientists would discuss new chemical theories. As a result of her close work with her husband, it is difficult to separate her individual contributions from his, but it is correctly assumed that much of the work accredited to him bears her fingerprints.
107527
107528 ==Contributions to chemistry==
107529 [[Image:Antoine_lavoisier.jpg|thumb|100px|right|[[Portrait]] of Antoine Lavoisier in his youth.]]
107530
107531 ===Background===
107532 Beginning in [[1775]], he served in the [[Royal Gunpowder Administration]], where his work led to improvements in the production of [[gunpowder]] and the use of [[agricultural chemistry]] by designing a new method for preparing [[saltpeter]].
107533 [[Image:Hidrogenexp1.jpg|thumb|180px|left|[[Drawing|Hand sketch]] design aparatus for hydrogen combustion experiment made by Lavoisier in the [[1780s]].]]
107534 ===Major works===
107535 Some of Lavoisier's most important experiments examined the nature of [[combustion]], or burning. Through these experiments, he demonstrated that burning is a process that involves the combination of a substance with oxygen. He also demonstrated the role of oxygen in metal rusting, as well as its role in animal and plant respiration: working with [[Pierre-Simon Laplace]], Lavoisier conducted experiments that showed that respiration was essentially a slow combustion of organic material using inhaled oxygen. Lavoisier's explanation of combustion replaced the [[phlogiston]] theory, which postulates that materials release a substance called phlogiston when they burn.
107536 ===Research on hydrogen and role disproving Phlogiston theory===
107537 [[Image:Hidrogenexp2.gif|thumb|170px|right|Aparatus for hydrogen combustion experiment made from Lavoisier's sketch by Jean Baptiste Meusnier in [[1783]].]]
107538 He also discovered that the inflammable air of [[Henry Cavendish]] which he termed ''[[hydrogen]]'' ([[Ancient Greek|Greek]] for &quot;water-former&quot;), combined with oxygen to produce a dew, as [[Joseph Priestley]] had reported, which appeared to be water. Lavoisier's work was partly based on the work of Priestley (he corresponded with Priestley and fellow members of the [[Lunar Society]]). However, he tried to take credit for Priestley's discoveries. This tendency to use the results of others without acknowledgment, then draw conclusions is said to be characteristic of Lavoisier. In ''Sur la combustion en general'' (''On Combustion in general'', [[1777]]) and ''ConsidÊrations GÊnÊrales sur la Nature des Acides'' (''General Considerations on the Nature of Acids''), [[1778]]), he demonstrated that the &quot;air&quot; responsible for combustion was also the source of acidity. In [[1779]], he named this part of the air ''oxygen'' (Greek for &quot;acid-former&quot;), and the other ''azote'' (Greek for &quot;no life&quot;). In ''Reflexions sur le Phlogistique'' (''Reflections on Phlogiston'', [[1783]]), Lavoisier showed the [[phlogiston theory]] to be inconsistent.
107539
107540 ===Pioneer of [[Stoichiometry]]===
107541 [[Image:Instruments_lavoisier.jpg|thumb|175px|left|[[Laboratory equipment|Laboratory instruments]] used by Lavoisier circa [[1780s]].]]
107542 Lavoisier's experiments were among the first truly quantitative chemical experiments ever performed; that is, he carefully weighed the reactants and products involved, a crucial step in the advancement of chemistry. He showed that, although matter changes its state in a chemical reaction, the quantity of matter is the same at the end as at the beginning of every chemical reaction. He burnt phosphorus and sulfur in air, and proved that the products weighed more than the original. Nevertheless, the weight gained was lost from the air. These experiments provided evidence for the law of the conservation of matter, or in other words, '''the law of conservation of mass .'''
107543
107544 ===Major works on analytical chemistry and chemical nomenclature===
107545 Lavoisier also investigated the composition of water and air, which at the time were considered elements. He discovered the components of water were oxygen and hydrogen, and that air was a mixture of gases - primarily [[nitrogen]] and oxygen. With the French chemists [[Claude-Louis Berthollet]], Antoine Fourcroy and Guyton de Morveau, Lavoisier devised a chemical nomenclature, or a system of names describing the structure of chemical compounds. He described it in ''MÊthode de nomenclature chimique'' (''Method of Chemical Nomenclature'', [[1787]]). Their system facilitated communication of discoveries between chemists of different backgrounds and is still largely in use today, including names such as sulfuric acid, sulfates, and sulfites.
107546 [[Image:Lavoisiers_lab.jpg|thumb|200px|right|A replica of Lavoisier's laboratory at the ''Deutsches Museum'' in [[Munich]], [[Germany]].]]
107547 His ''TraitÊ ÉlÊmentaire de Chimie (Elementary Treatise of Chemistry'', [[1789]], translated into English by [[Robert Kerr (writer)|Robert Kerr]]) is considered to be the first modern chemical [[textbook]], and presented a unified view of new theories of chemistry, contained a clear statement of the [[Law of Conservation of Mass]], and denied the existence of phlogiston. Also, Lavoisier clarified the concept of an element as a simple substance that could not be broken down by any known method of chemical analysis, and he devised a theory of the formation of chemical compounds from elements.
107548
107549 [[Image:Lentilles_ardentes.jpg|thumb|170px|left|Combustion, generated by focusing sun light over [[flammable]] materials using lenses, experiment conducted by Lavosier circa [[1770s]].]]
107550 In addition, it contained a list of elements, or substances that could not be broken down further, which included oxygen, nitrogen, hydrogen, [[phosphorus]], [[mercury (element)|mercury]], [[zinc]], and [[sulphur]]. It also forms the basis for the modern list of elements. His list, however, also included light and [[Caloric theory|caloric]], which he believed to be material substances. While many leading chemists of the time refused to believe Lavoisier's new revelations, the ''Elementary Treatise'' was written well enough to convince the younger generation.
107551 [[Image:Zoom_lunette_ardente.jpg|thumb|180px|right|Lavoisier while conducting combustion experiment.]]
107552 ===Aftermath===
107553 Lavoisier's fundamental contributions to chemistry were a result of a conscious effort to fit all experiments into the framework of a single theory. He established the consistent use of [[chemical balance]], used oxygen to overthrow the phlogiston theory, and developed a new system of chemical nomenclature which held that oxygen was an essential constituent of all acids (which later turned out to be erroneous). Lavoisier also made introductory research on physical chemistry and thermodynamics in joint experiment with [[Laplace]], when he used a calorimeter to estimate the heat evolved per unit of carbon dioxide produced, eventually they found the same ratio for a flame and animals, indicating that animals produced energy by a type of combustion.
107554 [[Image:Calorimeter.gif|thumb|115px|left|Constant [[pressure]] [[calorimeter]] made by Lavoisier for chemical [[enthalpy]] experiment.]]
107555
107556 He also made remarkable contributions to [[chemical bond|chemical bonding]] by stating the radical theory, believing that radicals, which function as a single group in a chemical reaction, would combine with oxygen in reactions. He also introduced the possibility of [[allotropy|allotropy in chemical elements]] when he discovered that [[diamond]] is a crystalline form of carbon.
107557
107558 He also updated many chemical concepts, for the first time the modern notion of elements was laided out systematically; the three or four elements of classical chemistry gave way to the modern system, and Lavoisier worked out reactions in chemical equations that respect the conservation of mass (see, for example, the [[nitrogen cycle]]).[[Image:Lavoisier_humanexp.jpg|thumb|240px|right|Lavoisier conducting an experiment in the [[1770s]].]]
107559 His contributions are considered the most important in advancing the science of chemistry to the level of what had been achieved in physics and mathematics during [[18th century]].
107560
107561 ==Law and politics==
107562 Of key significance in Lavoisier's life was his study of [[law]]. He received a [[law degree]] and was admitted to the [[bar association|bar]], but never practiced as a [[lawyer]]. He did become interested in French [[politics]], and as a result, he obtained a position as [[tax]] collector in the ''[[Ferme GÊnÊrale]]'', a [[tax farming]] company, at the age of 26, where he attempted to introduce reforms in the French [[monetary system|monetary]] and [[tax]]ation system. While in government work, he helped develop the [[SI|metric system]] to secure uniformity of [[weights and measures]] throughout France.
107563
107564 ==Execution==
107565 As one of 28 French tax collectors and a powerful figure in the unpopular Ferme GÊnÊrale, Lavoisier was branded a traitor during the Reign of Terror by [[French Revolution|revolutionists]] in 1794, and tried, convicted and [[guillotine|guillotined]] all on one day in Paris, at the age of 51. Ironically, Lavoisier was one of the few liberals in his position. One of his actions that may have sealed his fate was a contretemps a few years earlier with the young [[Jean-Paul Marat|Jean-Paul Marat]], who subsequently became a leading revolutionary.
107566
107567 An appeal to spare his life was cut short by the judge: &quot;The Republic has no need of geniuses [or, alternately, &quot;scientists.&quot;].&quot; His importance for science was expressed by the mathematician [[Joseph Louis Lagrange]] who lamented the beheading by saying: &quot;It took them only an instant to cut off that head, but France may not produce another like it in a century.&quot;
107568
107569 One and a half years following his death, Lavoisier was exonerated by the French government. When his private belongings were delivered to his widow, a brief note was included reading &quot;To the widow of Lavoisier, who was falsely convicted.&quot;
107570
107571 About a century after his death, a statue of Lavoisier was erected in Paris. It was later discovered that the sculptor had not actually copied Lavoisier's head for the statue, but used a spare head of the [[Marquis de Condorcet]], the Secretary of the Academy of Sciences during Lavoisier's last years. Lack of money prevented alterations being made and, in any case, the French argued pragmatically that all men in wigs looked alike anyway. The statue was melted down during the [[World War II|Second World War]] and has never been replaced.
107572
107573 == Can a severed head think? ==
107574 A story relates how Lavoisier arranged a final experiment at his death intended to determine whether and for how long a severed head remains conscious after [[decapitation]]. Supposedly, Lavoisier decided to blink as many times as possible, and had an assistant count the blinks, which numbered between 15 and 20. The story may be apocryphal. Standard biographies have never mentioned the incident, and some biologists have expressed skepticism that it would be possible. However romantic, the story is false.[http://www.straightdope.com/classics/a5_262.html]
107575
107576 ==References==
107577 * Berthelot, M. ''La rÊvolution chimique: Lavoisier.'' Paris: Alcan, 1890.
107578 * Daumas, M. ''Lavoisier, thÊoricien et expÊrimentateur.'' Paris: Presses Universitaires de France, 1955.
107579 * Lavoisier, A. ''TraitÊ ÊlÊmentaire de chimie, prÊsentÊ dans un ordre nouveau et d'après les dÊcouvertes modernes, 2 vols.'' Paris: Chez Cuchet, 1789. Reprinted Bruxelles: Cultures et Civilisations, 1965.
107580 * Antoine Lavoisier, ''Elements of Chemistry'', Dover Publications Inc., New York, NY,1965, 511 pages.
107581
107582 ==Further reading==
107583 *Donovan, Arthur, &quot;Antoine Lavoisier: Science, Administration, and Revolution.&quot;, Cambridge University Press, 1993.
107584 * Hundred Greatest Men, 1885 [http://www.lib.utexas.edu www.lib.utexas.edu]
107585 *Gunpowder: Alchemy, Bombards, &amp; Pyrotechnics by Jack Kelly - The history of the explosive that changed the world (Basic Books, 2004 - 0-465-03718-6).
107586 *Grey, Vivian. &quot;The Chemist Who Lost His Head: The Story of Antoine Lavoisier.&quot;, Coward, McCann &amp; Geoghegan, Inc. , 1982
107587
107588 ==External links==
107589 {{wikiquote}}
107590 {{commons|Antoine-Laurent de Lavoisier|Antoine Lavoisier}}
107591 * [http://moro.imss.fi.it/lavoisier/ A virtual museum of Antoine Lavoisier]
107592 * [http://histsciences.univ-paris1.fr/i-corpus/lavoisier/index.php The Complete Works of Lavoisier]
107593 * [http://www.straightdope.com/classics/a5_262.html Does the head remain briefly conscious after decapitation?] from [[The Straight Dope]], references Lavoisier's execution
107594 * [http://www.chemheritage.org/EducationalServices/chemach/fore/all.html Antoine Lavoisier], Chemical Achievers profile
107595
107596 [[Category:1743 births|Lavoisier, Antoine]]
107597 [[Category:1794 deaths|Lavoisier, Antoine]]
107598 [[Category:French scientists|Lavoisier, Antoine]]
107599 [[Category:French chemists|Lavoisier, Antoine]]
107600 [[Category:Lunar Society|Lavoisier, Antoine]]
107601 [[Category:Guillotined French Revolution figures|Lavoisier, Antoine]]
107602 [[Category:Discoverers of chemical elements|Lavoisier, Antoine]]
107603
107604 [[ar:ØŖŲ†ØˇŲˆØ§Ų† Ų„اŲŲˆØ§Ø˛ŲŠŲŠŲ‡]]
107605 [[bg:АĐŊŅ‚ОаĐŊ ЛавоазиĐĩ]]
107606 [[ca:Antoine Laurent Lavoisier]]
107607 [[da:Antoine Laurent Lavoisier]]
107608 [[de:Antoine Laurent de Lavoisier]]
107609 [[el:ΑÎŊĪ„ÎŋĪ…ÎŦÎŊ ΛĪ‰ĪÎŦÎŊ ΛαβÎŋĪ…ÎąÎļΚέ]]
107610 [[es:Antoine Lavoisier]]
107611 [[fr:Antoine Lavoisier]]
107612 [[ko:ė•™íˆŦė•ˆ ëŧëļ€ė•„ė§€ė—]]
107613 [[hr:Antoine Laurent de Lavoisier]]
107614 [[id:Antoine Lavoisier]]
107615 [[it:Antoine Lavoisier]]
107616 [[he:אנטואן לבואזיה]] {{Link FA|he}}
107617 [[ka:ლავáƒŖაზიე, ანáƒĸáƒŖან]]
107618 [[ms:Antoine Lavoisier]]
107619 [[nl:Antoine Lavoisier]]
107620 [[ja:ã‚ĸãƒŗトワãƒŧヌãƒģナヴりã‚ĸジエ]]
107621 [[no:Antoine Lavoisier]]
107622 [[pl:Antoine Lavoisier]]
107623 [[pt:Antoine Lavoisier]]
107624 [[ru:ЛавŅƒĐ°ĐˇŅŒĐĩ, АĐŊŅ‚ŅƒĐ°ĐŊ ЛоŅ€Đ°ĐŊ]]
107625 [[sk:Antoine Laurent Lavoisier]]
107626 [[sl:Antoine Lavoisier]]
107627 [[fi:Antoine Lavoisier]]
107628 [[sv:Antoine Laurent de Lavoisier]]
107629 [[tr:Antoine Lavoisier]]
107630 [[zh:拉į“Ļ锡]]</text>
107631 </revision>
107632 </page>
107633 <page>
107634 <title>Alan Cox</title>
107635 <id>1823</id>
107636 <revision>
107637 <id>42054440</id>
107638 <timestamp>2006-03-03T14:10:24Z</timestamp>
107639 <contributor>
107640 <ip>212.113.198.67</ip>
107641 </contributor>
107642 <comment>Interview link</comment>
107643 <text xml:space="preserve">:''For the radio presenter, see [[Alan Cox (radio presenter)]].''
107644
107645 '''Alan Cox''' (born 1968) is a [[programmer]] heavily involved in the development of the [[Linux kernel]] since its early days (1991). Whilst employed on the campus of [[University of Wales, Swansea]], he installed a very early version of [[Linux]] on one of the machines belonging to the [[Swansea University Computer Society|university computer society]]. This was one of the first Linux installations on a busy [[computer network| network]], and revealed many bugs in the networking code. Cox fixed many of these bugs, and went on to rewrite much of the networking subsystem. He then became one of the main developers and maintainers of the whole kernel.
107646 [[Image:With-alan-cox.jpg|thumb|Alan Cox, wearing a red hat, with two [[Gentoo]] developers at the LinuxWorld Expo 2005]]
107647 He maintained an old branch (2.2.x), and his own versions of the previous stable branch (2.4.x) (signified by an &quot;ac&quot; in the version, for example 2.4.13-ac1). This branch was very stable and contained bugfixes that went directly into the vendor kernels. He was once commonly regarded as being the &quot;second in command&quot; after [[Linus Torvalds]] himself. His dense and friendly comments have guided many programmers on the [[linux kernel mailing list]]. Alan is employed by [[Red Hat]] and lives in [[Swansea]], [[Wales]] with his wife, Telsa Gwynne. Since then he has also been involved in the [[GNOME]] and [[Xorg]] projects.
107648
107649 He was the main developer of [[AberMUD]], which he wrote whilst a student at the [[University of Wales, Aberystwyth]].
107650
107651 He is an ardent supporter of programming freedom, and an outspoken opponent of [[software patent]]s, the [[DMCA]] and the [[CBDTPA]]. He resigned from a subgroup of [[Usenix]] in protest, and said he would not visit the [[United States]] for fear of being imprisoned after the arrest of [[Dmitry Sklyarov]] for DMCA violations.
107652
107653 Cox was the recipient of the [[Free Software Foundation]]'s [[2003]] [[FSF Award for the Advancement of Free Software|Award for the Advancement of Free Software]] at the [[FOSDEM]] conference in [[Brussels]].
107654
107655 On October 5th 2005, Cox received a lifetime achievement award at the [[LinuxWorld]] awards in London.
107656
107657 == External links ==
107658 *[http://www.softpanorama.org/People/Cox/index.shtml Alan Cox: The maintainer of production version of the Linux kernel. Ch. 5 of ebook ''Open Source Pioneers'', includes a lot of difficult to find interviews]
107659 *[http://www.redhat.com/advice/ask_alancox.html Interview on his biography]
107660 *[http://zenii.linux.org.uk/diary/ His diary] in [[Welsh language|Welsh]]
107661 *[http://zenii.linux.org.uk/~telsa/Diary/diary.html His wife Telsa's diary]
107662 *[http://lwn.net/1999/features/ACInterview/ LWN interviews Alan Cox]
107663 *[http://kerneltrap.org/node/view/9 Interview with Alan Cox - January 15, 2002]
107664 *[http://www.sucs.org/ The Swansea University Computer Society]
107665 *[http://www.lugradio.org/episodes/24 LugRadio interview]
107666 *[http://www.linuxformat.co.uk/modules.php?op=modload&amp;name=Sections&amp;file=index&amp;req=viewarticle&amp;artid=15 Linux Format interview - August 2005]
107667
107668 &lt;!-- Categories --&gt;
107669 [[Category:1968 births|Cox, Alan]]
107670 [[Category:Adult learners of Welsh|Cox, Alan]]
107671 [[Category:Bloggers|Cox, Alan]]
107672 [[Category:Linux|Cox, Alan]]
107673 [[Category:British hackers|Cox, Alan]]
107674 [[Category:Living people|Cox, Alan]]
107675 [[Category:Programmers|Cox, Alan]]
107676 [[Category:Welsh people|Cox, Alan]]
107677 [[Category:University of Wales, Aberystwyth Alumni|Cox, Alan]]
107678 [[Category:Free Software developers]]
107679
107680 &lt;!-- Translations --&gt;
107681 [[ca:Alan Cox]]
107682 [[cs:Alan Cox]]
107683 [[de:Alan Cox]]
107684 [[es:Alan Cox]]
107685 [[fr:Alan Cox]]
107686 [[pl:Alan Cox]]</text>
107687 </revision>
107688 </page>
107689 <page>
107690 <title>A roll</title>
107691 <id>1824</id>
107692 <revision>
107693 <id>15900287</id>
107694 <timestamp>2005-05-21T18:19:15Z</timestamp>
107695 <contributor>
107696 <username>Kelly Martin</username>
107697 <id>158241</id>
107698 </contributor>
107699 <comment>changed to redirect</comment>
107700 <text xml:space="preserve">#REDIRECT [[Footage]]</text>
107701 </revision>
107702 </page>
107703 <page>
107704 <title>Adolph Wilhelm Hermann Kolbe</title>
107705 <id>1825</id>
107706 <revision>
107707 <id>23283077</id>
107708 <timestamp>2005-09-15T13:29:14Z</timestamp>
107709 <contributor>
107710 <username>David Berardan</username>
107711 <id>369964</id>
107712 </contributor>
107713 <minor />
107714 <comment>interwiki</comment>
107715 <text xml:space="preserve">[[Image:Adolfkolbe.jpg|right]]
107716
107717 '''Adolph Wilhelm Hermann Kolbe''' ([[September 27]], [[1818]] &amp;ndash; [[November 25]], [[1884]]) was a [[chemist]].
107718
107719 Kolbe was born in Elliehausen near [[Hanover]], [[Germany]].
107720
107721 He became an assistant to [[Robert Wilhelm Bunsen]] at the [[University of Marburg]] in [[1842]], after studying [[chemistry]] with [[Friedrich Woehler|Friedrich WÃļhler]]. Subsequently he assisted [[Lyon Playfair, 1st Baron Playfair|Lyon Playfair]] at the University of [[London]] and from 1847 to 1851 was engaged in editing the ''HandwÃļrterbuch der reinen und angewandten Chemie'' (''Dictionary of Pure and Applied Chemistry'') written by [[Justus von Liebig]] and WÃļhler. Kolbe then succeeded Bunsen at Marburg, and in 1865 he went to the University of [[Leipzig]].
107722
107723 At that time, it was believed that organic and [[inorganic compound]]s are independent from each other, and that organic compounds could be created only by living organisms. Kolbe believed that [[organic compound]]s could be derived from inorganic ones, directly or indirectly, by substitution processes. He validated his theory by converting [[carbon disulfide]], in several steps, to [[acetic acid]] (1843-45). Introducing a modified idea of structural [[free radical|radicals]], he contributed to the establishment of [[structural theory]]. He also predicted the existence of secondary and tertiary [[alcohol]]s.
107724
107725 He worked on the [[electrolysis]] of the salts of [[fatty acid|fatty]] and other [[acid]]s ([[Kolbe electrolysis]]) and prepared [[salicylic acid]], a building block of [[aspirin]] in a process called [[Kolbe synthesis]] or [[Kolbe-Schmitt reaction]].
107726
107727 With [[Edward Frankland]] he found that [[nitrile]]s can be hydrolyzed to the corresponding acids. As editor of the ''Journal fÃŧr praktische Chemie'' (''Journal of practical chemistry'', 1869), he was sometimes severely critical of the work of others.
107728
107729 He died in [[Leipzig]], [[Germany]]
107730
107731 [[Category:1818 births|Kolbe, Adolph Wilhelm Hermann]]
107732 [[Category:1884 deaths|Kolbe, Adolph Wilhelm Hermann]]
107733 [[Category:German chemists|Kolbe, Adolph Wilhelm Hermann]]
107734
107735 [[de:Adolph Wilhelm Hermann Kolbe]]
107736 [[fr:Adolph Wilhelm Hermann Kolbe]]</text>
107737 </revision>
107738 </page>
107739 <page>
107740 <title>April 18</title>
107741 <id>1826</id>
107742 <revision>
107743 <id>40972460</id>
107744 <timestamp>2006-02-24T05:09:50Z</timestamp>
107745 <contributor>
107746 <username>Calton</username>
107747 <id>128887</id>
107748 </contributor>
107749 <minor />
107750 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
107751 {| style=&quot;float:right;&quot;
107752 |-
107753 |{{AprilCalendar}}
107754 |-
107755 |{{ThisDateInRecentYears|Month=April|Day=18}}
107756 |}
107757 '''April 18''' is the 108th day of the year in the [[Gregorian calendar]] (109th in [[leap year]]s). There are 257 days remaining.
107758 ==Events==
107759 *[[1025]] - [[Boleslaus I of Poland|Boles&amp;#322;aw I Chrobry]] is crowned as the first king of [[Poland]].
107760 *[[1042]] - [[Michael V]] attempts to remain sole ruler of the [[Byzantine Empire]] by sending his adoptive mother and co-ruler [[Zoe (empress)|ZoÃĢ of Byzantium]] to a [[monastery]].
107761 *[[1518]] - [[Bona Sforza]] is crowned as queen of [[Poland]].
107762 *[[1775]] - Two [[lantern]]s were hung from the [[steeple (architecture)|steeple]] of the [[Old North Church]] in [[Boston, Massachusetts]]. [[Paul Revere]], [[William Dawes]] and [[Samuel Prescott]] ride to warn of impending arrests of [[Samuel Adams]] and [[John Hancock]] and seizure of weapons. Only Prescott finishes the ride.
107763 *[[1797]] - [[Battle of Neuwied (1797)|Battle of Neuwied]] resulted in the victory of [[France|French]] under General [[Louis Lazare Hoche]] against [[Austria]]ns under General [[Wermecek]].
107764 *[[1880]] - A [[Fujita scale|F4]] tornado strikes [[Marshfield, Missouri]], killing 99 people and injuring 200.
107765 *[[1899]] - [[St. Andrew's Ambulance Association]] is granted a [[Royal Charter]] by [[Queen Victoria]]
107766 *[[1906]] - An [[earthquake]] with an estimated magnitude of 7.8, destroys much of [[San Francisco, California]]. (See [[1906 San Francisco earthquake]])
107767 *1906 - The ''[[Los Angeles Times]]'' runs a front-page story on the [[Azusa Street Revival]], launching [[Pentecostalism]] as a worldwide movement.
107768 *[[1915]] - Early [[France|French]] [[aviator]] and a [[fighter aircraft]] pilot [[Roland Garros]] was shot down and glided to a landing on the [[Germany|German]] side of the lines during [[World War I]].
107769 *[[1923]] - [[Yankee Stadium]], &quot;The House that [[Babe Ruth|Ruth]] Built&quot;, opens.
107770 *[[1934]] - The first [[washateria]] opens in [[Fort Worth, Texas]].
107771 *[[1942]] - [[World War II]]: The [[Doolittle Raid]] on [[Tokyo]] occurs.
107772 *1942 - [[Pierre Laval]] becomes Prime Minister of [[Vichy France]].
107773 *[[1945]] - [[World War II]]: Over 1,000 bombers attack the small island of [[Heligoland]], [[Germany]], leaving nothing standing.
107774 *[[1946]] - The [[League of Nations]] is dissolved.
107775 *[[1949]] - The [[Republic of Ireland Act]] comes into force.
107776 *[[1954]] - [[Gamal Abdal Nasser]] seizes power in [[Egypt]].
107777 *[[1958]] - A [[U.S.]] federal court rules that [[poet]] [[Ezra Pound]] be released from an [[insane asylum]].
107778 *[[1961]] - [[ConferÃĒncia das OrganizaçÃĩes Nacionalistas das ColÃŗnias Portuguesas|CONCP]] is founded in [[Casablanca]] as a united front of African movements opposing [[Portugal|Portuguese]] colonial rule.
107779 *[[1972]] - The [[Roland Corporation]] is founded in [[Osaka, Osaka|Osaka]], [[Japan]].
107780 *[[1974]] - [[Italy|Italian]] prosecutor [[Mario Sossi]] is kidnapped by the [[Red Brigades]].
107781 *[[1980]] - The Republic of [[Zimbabwe]] (formerly [[Rhodesia]]) comes into being, with [[Canaan Banana]] as the country's first [[List of Presidents of Zimbabwe|President]].
107782 *[[1981]] - A [[Minor League baseball]] game between the [[Rochester Red Wings]] and the [[Pawtucket Red Sox]] at [[McCoy Stadium]] in [[Pawtucket]], [[Rhode Island]] becomes the [[longest baseball game|longest professional baseball game]] in history: 8 hours and 25 minutes/33 innings (the 33rd inning was not played until [[June 23|June 23rd]]).
107783 *[[1983]] - A [[suicide bomber]] [[April 1983 U.S. Embassy bombing|destroys the United States embassy]] in [[Beirut]], [[Lebanon]], killing 63 people.
107784 *[[1987]] - [[Mike Schmidt]] becomes the 14th member of the [[500 home run club]] with a [[Home run|home run]] at [[Three Rivers Stadium]] in [[Pittsburgh, Pennsylvania]].
107785 *[[1988]] - U.S. launches [[Operation Praying Mantis]] against Iranian naval forces in retaliation for the [[April 14]] [[naval mine|mining]] of the [[USS Samuel B. Roberts (FFG-58)]] in the [[Persian Gulf]] during [[Operation Earnest Will]]. The one-day action is the world's largest naval battle since World War II.
107786 *[[1992]] - [[General]] [[Abdul Rashid Dostum]] revolted against [[President of Afghanistan|President]] [[Mohammad Najibullah]] of the [[Democratic Republic of Afghanistan]] and allied with [[Ahmed Shah Massoud]] to capture [[Kabul]].
107787 *[[1996]] - In [[Lebanon]], 102 [[Lebanon|Lebanese]] civilians are killed when the [[Israel Defense Forces]] shell the [[UN]] compound at [[Qana]] (see [[Qana Massacre]]).
107788 *[[2002]] - A new order of [[insect]]s, [[Mantophasmatodea]], is announced.
107789
107790 ==Births==
107791 *[[1480]] - [[Lucrezia Borgia]], Florentine ruler and daughter of [[Pope Alexander VI]]
107792 *[[1580]] - [[Thomas Middleton]], English dramatist (d. [[1627]])
107793 *[[1590]] - [[Ahmed I]], [[Ottoman Emperor]] (d. [[1617]])
107794 *[[1605]] - [[Giacomo Carissimi]], Italian composer (d. [[1674]])
107795 *[[1771]] - [[Karl Philipp FÃŧrst zu Schwarzenberg]], Austrian field marshal (d. [[1820]])
107796 *[[1772]] - [[David Ricardo]], English economist (d. [[1823]])
107797 *[[1797]] - [[Adolphe Thiers]], French statesman (d. [[1877]])
107798 *[[1819]] - [[Franz von SuppÊ]], Austrian composer (d. [[1895]])
107799 *[[1838]] - [[Paul Emile Lecoq de Boisbaudran]], French scientist (d. [[1912]])
107800 *[[1857]] - [[Clarence Darrow]], American attorney (d. [[1938]])
107801 *[[1864]] - [[Richard Harding Davis]], American author (d. [[1916]])
107802 *[[1874]] - [[Ivana Brlic-Mazuranic]], Croatian writer (d. [[1938]])
107803 *[[1880]] - [[Sam Crawford]], baseball player (d. [[1968]])
107804 *[[1882]] - [[Leopold Stokowski]], Polish conductor (d. [[1977]])
107805 *[[1888]] - [[Duffy Lewis]], baseball player (d. [[1979]])
107806 *[[1897]] - [[Ardito Desio]], Italian topographer and mountaineer (d. [[2001]])
107807 *[[1902]] - [[Giuseppe Pella]], [[Prime Minister of Italy]] (d. [[1981]])
107808 *[[1904]] - [[Pigmeat Markham]], American comedian (d. [[1981]])
107809 *[[1905]] - [[George H. Hitchings]], American scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1998]])
107810 *[[1907]] - [[MiklÃŗs RÃŗzsa]], Hungarian-born composer (d. [[1995]])
107811 *[[1917]] - [[Ty LaForest]], Canadian baseball player (d. [[1947]])
107812 *[[1918]] - [[Cliff Hillegass]], American publisher (d. [[2001]])
107813 *[[1921]] - [[Jean Richard]], French actor (d. [[2001]])
107814 *[[1924]] - [[Clarence Gatemouth Brown|Clarence &quot;Gatemouth&quot; Brown]], American musician
107815 *1924 - [[Henry Hyde]], American politician
107816 *[[1927]] - [[Samuel P. Huntington]], American political scientist
107817 *[[1936]] - [[Tommy Ivo]], American race car driver
107818 *[[1939]] - [[Thomas J. Moyer]], Chief Justice of the Ohio Supreme Court
107819 *[[1940]] - [[Joseph L. Goldstein]], American scientist, recipient of the [[Nobel Prize in Physiology or Medicine]]
107820 *1940 - [[Robert N. Kucey]], Canadian author
107821 *[[1945]] - [[Margaret Hassan]], Irish-born aid worker (d. [[2004]])
107822 *[[1946]] - [[Hayley Mills]], English actress
107823 *[[1947]] - [[Kathy Acker]], American author (d. [[1997]])
107824 *1947 - [[Dorothy Lyman]], American actress, director, producer
107825 *1947 - [[Cindy Pickett]], American actress
107826 *1947 - [[James Woods]], American actor and poker player
107827 *[[1949]] - [[Geoff Bodine]], American race car driver
107828 *[[1954]] - [[Rick Moranis]], Canadian comedian
107829 *[[1956]] - [[Anna Kathryn Holbrook]], American actress
107830 *1956 - [[Eric Roberts]], American actor
107831 *1956 - [[Melody Thomas Scott]], American actress
107832 *[[1958]] - [[Malcolm Marshall]], West Indian cricketer (d. [[1999]])
107833 *[[1961]] - [[Jane Leeves]], British actress
107834 *[[1963]] - [[Eric McCormack]], Canadian actor
107835 *1963 - [[Conan O'Brien]], American comedian
107836 *[[1964]] - [[Niall Ferguson]], British historian
107837 *[[1966]] - [[Trine Hattestad]], Norwegian athlete
107838 *[[1967]] - [[Maria Bello]], American actress
107839 *[[1968]] - [[David Hewlett]], Canadian actor
107840 *[[1969]] - [[Princess Sayako]] of Japan
107841 *[[1970]] - [[Greg Eklund]], American musician ([[Everclear (band)|Everclear]])
107842 *[[1971]] - [[David Tennant]], Scottish actor
107843 *[[1973]] - [[Haile Gebrselassie]], Ethiopian athlete
107844 *[[1976]] - [[Melissa Joan Hart]], American actress
107845 *[[1979]] - [[Vahid Rahbani]], Iranian actor and director
107846 *1979 - [[Michael Bradley (basketball)|Michael Bradley]], American basketball player
107847 *1979 - [[Matthew Upson]], English footballer
107848 *[[1981]] - [[Audrey Tang]], [[Taiwan]]ese [[free software]] [[programmer]]
107849 *[[1989]] - [[Alia Shawkat]], American actress
107850
107851 ==Deaths==
107852 *[[1161]] - [[Theobald of Bec]], [[Archbishop of Canterbury]]
107853 *[[1552]] - [[John Leland]], English antiquarian (b. [[1502]])
107854 *[[1556]] - [[Luigi Alamanni]], Italian poet (b. [[1495]])
107855 *[[1567]] - [[Wilhelm von Grumbach]], German adventurer (b. [[1503]])
107856 *[[1558]] - [[Roxelana]], wife of [[Suleiman the Magnificent]]
107857 *[[1636]] - [[Julius Caesar (judge)|Julius Caesar]], English judge
107858 *[[1650]] - [[Simonds d'Ewes]], English antiquarian and politician (b. [[1602]])
107859 *[[1674]] - [[John Graunt]], English statistician (b. [[1620]])
107860 *[[1689]] - [[George Jeffreys]], British Chief Justice (b. [[1648]])
107861 *[[1690]] - [[Charles IV, Duke of Lorraine]], general of the Holy Roman Empire (b. [[1643]])
107862 *[[1794]] - [[Charles Pratt, 1st Earl Camden]], Lord Chancellor of Great Britain (b. [[1714]])
107863 *[[1796]] - [[Johan Wilcke]], Swedish physicist (b. [[1732]])
107864 *[[1802]] - [[Erasmus Darwin]], English physician and botanist (b. [[1731]])
107865 *[[1873]] - [[Justus von Liebig]], German chemist (b. [[1803]])
107866 *[[1898]] - [[Gustave Moreau]], French painter (b. [[1826]])
107867 *[[1935]] - [[Panait Istrati]], Romanian writer (b. [[1884]])
107868 *[[1936]] - [[Ottorino Respighi]], Italian composer (b. [[1879]])
107869 *[[1943]] - [[Isoroku Yamamoto]], Japanese admiral. (b. [[1884]])
107870 *[[1945]] - [[John Ambrose Fleming]], English physicist and electrical engineer (b. [[1849]])
107871 *1945 - [[Ernie Pyle]], American journalist (b. [[1900]])
107872 *[[1947]] - [[Josef Tiso]], Slovakian leader (b. [[1887]])
107873 *[[1955]] - [[Albert Einstein]], German-born Jewish physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (b. [[1879]])
107874 *[[1964]] - [[Ben Hecht]], American playwright and screenwriter (b. [[1894]])
107875 *[[1976]] - [[Henrik Dam]], Dutch biochemist, recipient of the [[Nobel Prize in Physiology or Medicine]] (b. [[1895]])
107876 *[[1996]] - [[Piet Hein (Denmark)|Piet Hein]], Danish mathematician and inventor (b. [[1905]])
107877 *[[1998]] - [[Terry Sanford]], American politician (b. [[1917]])
107878 *[[2002]] - [[Thor Heyerdahl]], Norwegian explorer (b. [[1914]])
107879 *2002 - [[Wahoo McDaniel]], American football player and wrestler (b. [[1938]])
107880 *[[2003]] - [[Edgar F. Codd]], English computer scientist (b. [[1923]])
107881 *2003 - [[Daijiro Kato]], Japanese motorcycle racer (b. [[1976]])
107882 *[[2004]] - [[Kamisese Mara|Ratu Sir Kamisese Mara]], first [[Prime Minister of Fiji]] and [[President of Fiji]] (b. [[1920]])
107883 *[[2005]] - [[Sam Mills]], [[American football]] [[linebacker]] (b. [[1959]])
107884
107885 ==Holidays and observances==
107886 * [[Feast day]]s of
107887 ** [[Saint Apollonius]] (d. [[186]])
107888 ** [[Perfecto|Saint Perfecto]] (d. [[850]])
107889 ** [[Galdino|Saint Galdino]] (d. [[1176]])
107890 ** [[Eusebius]] (d. [[526]])
107891 ** [[Agia|Saint Agia]] (d. [[707]])
107892 ** [[Marie de l'Incarnation]] ([[1566]] &amp;ndash; [[1618]])
107893 * [[Zimbabwe]] &amp;ndash; Independence Day
107894
107895 ==External links==
107896 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/18 BBC: On This Day]
107897 * [http://www.nytimes.com/learning/general/onthisday/20050418.html ''The New York Times'': On This Day]
107898 * [http://www1.sympatico.ca/cgi-bin/on_this_day?mth=Apr&amp;day=18 On This Day in Canada]
107899
107900 ----
107901
107902 [[April 17]] - [[April 19]] - [[March 18]] - [[May 18]] &amp;ndash; [[historical anniversaries|listing of all days]]
107903
107904 {{months}}
107905
107906 [[af:18 April]]
107907 [[ar:18 ØŖØ¨ØąŲŠŲ„]]
107908 [[an:18 d'abril]]
107909 [[ast:18 d'abril]]
107910 [[bg:18 Đ°ĐŋŅ€Đ¸Đģ]]
107911 [[be:18 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
107912 [[bs:18. april]]
107913 [[ca:18 d'abril]]
107914 [[ceb:Abril 18]]
107915 [[cv:АĐēĐ°, 18]]
107916 [[co:18 d'aprile]]
107917 [[cs:18. duben]]
107918 [[cy:18 Ebrill]]
107919 [[da:18. april]]
107920 [[de:18. April]]
107921 [[et:18. aprill]]
107922 [[el:18 ΑĪ€ĪÎšÎģίÎŋĪ…]]
107923 [[es:18 de abril]]
107924 [[eo:18-a de aprilo]]
107925 [[eu:Apirilaren 18]]
107926 [[fo:18. apríl]]
107927 [[fr:18 avril]]
107928 [[fy:18 april]]
107929 [[ga:18 AibreÃĄn]]
107930 [[gl:18 de abril]]
107931 [[ko:4ė›” 18ėŧ]]
107932 [[hr:18. travnja]]
107933 [[io:18 di aprilo]]
107934 [[id:18 April]]
107935 [[ia:18 de april]]
107936 [[ie:18 april]]
107937 [[is:18. apríl]]
107938 [[it:18 aprile]]
107939 [[he:18 באפריל]]
107940 [[jv:18 April]]
107941 [[ka:18 აპრილი]]
107942 [[csb:18 łÅŧÃĢkwiôta]]
107943 [[ku:18'ÃĒ avrÃĒlÃĒ]]
107944 [[lt:BalandÅžio 18]]
107945 [[lb:18. AbrÃĢll]]
107946 [[li:18 april]]
107947 [[hu:Április 18]]
107948 [[mk:18 Đ°ĐŋŅ€Đ¸Đģ]]
107949 [[ms:18 April]]
107950 [[nap:18 'e abbrile]]
107951 [[nl:18 april]]
107952 [[ja:4月18æ—Ĩ]]
107953 [[no:18. april]]
107954 [[nn:18. april]]
107955 [[oc:18 d'abril]]
107956 [[pl:18 kwietnia]]
107957 [[pt:18 de Abril]]
107958 [[ro:18 aprilie]]
107959 [[ru:18 Đ°ĐŋŅ€ĐĩĐģŅ]]
107960 [[se:CuoŋomÃĄnu 18.]]
107961 [[sq:18 Prill]]
107962 [[scn:18 di aprili]]
107963 [[simple:April 18]]
107964 [[sk:18. apríl]]
107965 [[sl:18. april]]
107966 [[sr:18. Đ°ĐŋŅ€Đ¸Đģ]]
107967 [[fi:18. huhtikuuta]]
107968 [[sv:18 april]]
107969 [[tl:Abril 18]]
107970 [[tt:18. Äpril]]
107971 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 18]]
107972 [[th:18 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
107973 [[vi:18 thÃĄng 4]]
107974 [[tr:18 Nisan]]
107975 [[uk:18 ĐēвŅ–Ņ‚ĐŊŅ]]
107976 [[ur:18 اŲžØąÛŒŲ„]]
107977 [[wa:18 d' avri]]
107978 [[war:Abril 18]]
107979 [[zh:4月18æ—Ĩ]]</text>
107980 </revision>
107981 </page>
107982 <page>
107983 <title>April 23</title>
107984 <id>1827</id>
107985 <revision>
107986 <id>41983889</id>
107987 <timestamp>2006-03-03T01:11:55Z</timestamp>
107988 <contributor>
107989 <ip>24.130.221.252</ip>
107990 </contributor>
107991 <comment>/* Births */</comment>
107992 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
107993 {| style=&quot;float:right;&quot;
107994 |-
107995 |{{AprilCalendar}}
107996 |-
107997 |{{ThisDateInRecentYears|Month=April|Day=23}}
107998 |}
107999 '''[[April 23]]''' is the 113th day of the year in the [[Gregorian Calendar]] (114th in [[leap year]]s). There are 252 days remaining.
108000 ==Events==
108001 *[[215 BC]] - A temple is built on the [[Capitoline Hill]] dedicated to [[Venus Erycina]] to commemorate the [[Roman Empire|Roman]] defeat at [[Battle of Lake Trasimene|Lake Trasimene]].
108002 *[[1014]] - [[Battle of Clontarf]]: [[Brian Boru]] defeats [[Viking]] invaders, but is killed in battle.
108003 *[[1348]] - The founding of the [[Order of the Garter]] by King [[Edward III of England]] is announced on [[Saint George|St George's Day]].
108004 *[[1521]] - [[Battle of Villalar]]: [[Charles V, Holy Roman Emperor|King Charles I of Spain]] defeats the [[Comuneros]].
108005 *[[1533]] - The [[Church of England]] annuls the marriage between [[Catherine of Aragon]] and [[Henry VIII of England|Henry VIII]] of England.
108006 *[[1597]] - Shakespeare's ''[[The Merry Wives of Windsor]]'' is first performed, with Queen [[Elizabeth I of England]] in attendance.
108007 *[[1660]] - [[Treaty of Oliwa]] is established between [[Sweden]] and [[Poland]].
108008 *[[1661]] - King [[Charles II of England]], [[Scotland]] and [[Ireland]] is crowned in [[Westminster Abbey]].
108009 *[[1827]] - [[William Rowan Hamilton]] presents his ''Theory of systems of rays''.
108010 *[[1867]] - [[William Lincoln]] patents the [[zoetrope]], a machine which shows animated pictures by mounting a strip of drawings in a wheel.
108011 *[[1920]] - The national council in [[Turkey]] denounces the government of [[Sultan]] [[Mehmed VI]] and announces a temporary constitution.
108012 *[[1923]] - Inauguration ceremonies take place of [[Gdynia]] as a temporary military port and fishers' shelter.
108013 *[[1932]] - The 153-year old [[De Adriaan]] Windmill in [[Haarlem]], [[the Netherlands]] burns down.
108014 *[[1935]] - [[Polish Constitution of 1935]] is adopted.
108015 *[[1940]] - A fire at a dance hall in [[Natchez, Mississippi]] kills 198 people.
108016 *[[1942]] - [[World War II]]: [[Baedeker Blitz]] &amp;ndash; [[Germany|German]] bombers hit [[Exeter]], [[Bath]] and [[York]] in retaliation for the British raid on [[LÃŧbeck]].
108017 *[[1948]] - [[1948 Arab-Israeli War]]: [[Haifa]], the major port of [[Israel]], is captured from Palestinian forces.
108018 *[[1954]] - [[Hank Aaron]] hits his first major league [[home run]].
108019 *[[1956]] - [[Elvis Presley]] makes his first appearance in [[Las Vegas, Nevada]].
108020 *[[1961]] - [[Judy Garland]] appears in her celebrated concert at [[Carnegie Hall]] in [[New York]].
108021 *[[1967]] - A group of young radicals are expelled from the [[Nicaraguan Socialist Party]] (PSN). This group goes on to found the [[Communist Party of Nicaragua|Socialist Workers Party]] (POS).
108022 *[[1968]] - The [[United Kingdom]] produces its first decimalised coins, a 5p and a 10p coin.
108023 *1968 - [[Vietnam War]]: Student protesters at [[Columbia University]] in [[New York City]] take over administration buildings and shut down the university.
108024 *[[1974]] - A [[Pan American World Airways]] [[Boeing]] 707 crashes in [[Bali]], [[Indonesia]], killing 107.
108025 *[[1979]] - Fighting in London between the [[Anti-Nazi League]] and the [[Metropolitan Police]]'s [[Special Patrol Group]] results in the death of protestor [[Blair Peach]].
108026 *[[1981]] - [[Stefano Bontade]], [[Mafia]] boss in [[Sicily]], is murdered in [[Palermo]], the opening shot in a Mob War orchestrated by [[Salvatore Riina]].
108027 *[[1985]] - [[New Coke]], a [[list of major flops|marketing disaster]] is introduced.
108028 *[[1990]] - [[Namibia]] becomes the 160th member of the [[United Nations]] and the 50th member of the [[Commonwealth of Nations]].
108029 *[[1993]] - [[Eritrea]]ns vote overwhelmingly for independence from [[Ethiopia]] in a [[United Nations]]-monitored referendum.
108030 *[[1994]] - [[physics|Physicists]] discover the [[top quark]] [[subatomic particle]].
108031 *[[1995]] - [[Association of Autonomous Astronauts]] founded.
108032 *[[1997]] - [[Omaria massacre]] in [[Algeria]]; 42 villagers killed.
108033 *[[2001]] - [[Intel]] introduces the [[Pentium 4]] Processor.
108034 *[[2003]] - [[Beijing]] closes all schools for two weeks due to the [[Severe acute respiratory syndrome|SARS]] virus.
108035
108036 ==Births==
108037 *[[1185]] - King [[Afonso II of Portugal]] (d. [[1223]])
108038 *[[1484]] - [[Julius Caesar Scaliger]], Italian philosopher (d. [[1558]])
108039 *[[1500]] - [[Alexander Ales]], Scottish theologian (d. [[1565]])
108040 *[[1516]] - [[Georg Fabricius]], German poet, historian, and archaeologist (d. [[1571]])
108041 *[[1564]] - [[William Shakespeare]], English poet and playwright [uncertain] (d. [[1616]])
108042 *[[1598]] - [[Maarten Tromp]], Dutch admiral (d. [[1653]])
108043 *[[1628]] - [[Johann van Waveren Hudde]], Dutch mathematician (d. [[1704]])
108044 *[[1676]] - King [[Frederick I of Sweden]] (d. [[1751]])
108045 *[[1720]] - [[Vilna Gaon]], Lithuanian rabbi (d. [[1797]])
108046 *[[1725]] - [[Saint Gerard Majella]], [[Roman Catholic|Catholic]] [[saint]]
108047 *[[1775]] - [[William Turner]], English ornithologist (d. [[1851]])
108048 *[[1791]] - [[James Buchanan]], 15th [[President of the United States]] (d. [[1868]])
108049 *[[1792]] - [[John Thomas Romney Robinson]], Irish astronomer and physicist (d. [[1882]])
108050 *[[1805]] - [[Johann Karl Friedrich Rosenkranz]], German philosopher (d. [[1879]])
108051 *[[1813]] - [[Stephen A. Douglas]], U.S. Senator from Illinois and Presidential candidate (d. [[1861]])
108052 *[[1823]] - [[Abd-ul-Mejid]], [[Ottoman Sultan]] (d. [[1861]])
108053 *[[1858]] - [[Max Planck]], German physicist, [[Nobel Prize in Physics|Nobel Prize]] laureate (d. [[1947]])
108054 *[[1861]] - [[Edmund Henry Hynman Allenby]], British general (d. [[1936]])
108055 *[[1867]] - [[Johannes Andreas Grib Fibiger]], Danish scientist, recipient of the [[Nobel Prize in Physiology or Medicine]] (d. [[1928]])
108056 *[[1876]] - [[Arthur Moeller van den Bruck]], German historian (d. [[1925]])
108057 *[[1880]] - [[Michel Fokine]], Russian choreographer and dancer (d. [[1942]])
108058 *[[1882]] - [[Albert Coates]], British composer (d. [[1953]])
108059 *[[1889]] - [[Karel Doorman]], Dutch admiral (d. [[1942]])
108060 *[[1893]] - [[Frank Borzage]], American film director (d. [[1952]])
108061 *1893 - [[Allen Dulles]], American Central Intelligence Agency director (d. [[1969]])
108062 *[[1895]] - [[Ngaio Marsh]], New Zealand writer (d. [[1982]])
108063 *[[1897]] - [[Lucius Clay]], American general (d. [[1978]])
108064 *1897 - [[Lester B. Pearson]], fourteenth [[Prime Minister of Canada]], recipient of the [[Nobel Peace Prize]] (d. [[1972]])
108065 *[[1899]] - Dame [[Ngaio Marsh]], New Zealand author (d. [[1982]])
108066 *1899 - [[Bertil Ohlin]], Swedish economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner (d. [[1979]])
108067 *[[1900]] - [[Joseph Green]], Polish-born actor and director (d. [[1996]])
108068 *[[1901]] - [[Edmund Brisco Ford|E.B. Ford]], British ecological geneticist (d. [[1988]])
108069 *[[1902]] - [[HalldÃŗr Laxness]], Icelandic writer, [[Nobel Prize in Literature|Nobel Prize]] laureate (d. [[1998]])
108070 *[[1904]] - [[Duncan Renaldo]], Spanish-American actor (d. [[1985]])
108071 *[[1907]] - [[Fritz Wotruba]], Austrian sculptor
108072 *[[1910]] - [[Simone Simon]], French actress (d. [[2005]])
108073 *[[1918]] - [[Maurice Druon]], French author
108074 *[[1921]] - [[Warren Spahn]], baseball player (d. [[2003]])
108075 *[[1923]] - [[Dolph Briscoe]], Governor of Texas
108076 *1923 - [[Avram Davidson]], American writer (d. [[1993]])
108077 *[[1928]] - [[Shirley Temple]], American actress and politician
108078 *[[1932]] - [[Jim Fixx]], American athlete and writer (d. [[1984]])
108079 *1932 - [[Halston]], American fashion designer (d. [[1990]])
108080 *1932 - [[Estelle Harris]], American actress
108081 *[[1935]] - [[Bunky Green]], American musician
108082 *1935 - [[Ray Peterson]], American singer (d. [[2005]])
108083 *[[1936]] - [[Roy Orbison]], American singer and musician (d. [[1988]])
108084 *[[1939]] - [[Lee Majors]], American actor
108085 *[[1941]] - [[Jacqueline Boyer]], French singer
108086 *1941 - [[Paavo Lipponen]], [[Prime Minister of Finland]]
108087 *[[1942]] - [[Sandra Dee]], American actress (d. [[2005]])
108088 *[[1943]] - [[Tony Esposito]], Canadian hockey player
108089 *1943 - [[Frans Koppelaar]], Dutch painter
108090 *1943 - [[HervÊ Villechaize]], French actor (d. [[1993]])
108091 *[[1947]] - [[Bernadette Devlin]], Irish politician
108092 *[[1948]] - [[Pascal Quignard]], French author
108093 *[[1949]] - [[Joyce DeWitt]], American actress
108094 *[[1954]] - [[Michael Moore]], American filmmaker
108095 *[[1955]] - [[Judy Davis]], Australian actress
108096 *1955 - [[Tony Miles]], English chess player (d. [[2001]])
108097 *[[1958]] - [[Hilmar Örn Hilmarsson]], music composer, art director and ''allsherjargoði'' (chief [[goði]]) of the [[Íslenska ÁsatrÃēarfÊlagið]] (Icelandic ÁsatrÃē Association)
108098 *1958 - [[Tove Jensen]], Swedish porn actress
108099 *1958 - [[Ryan Walter]], Canadian ice hockey player
108100 *[[1960]] - [[Valerie Bertinelli]], American actress
108101 *1960 - [[Steve Clark]], English guitarist ([[Def Leppard]]) (d. [[1991]])
108102 *[[1961]] - [[George Lopez]], American actor and comedian
108103 *[[1967]] - [[Melina Kanakaredes]], American actress
108104 *[[1968]] - [[Timothy McVeigh]], American terrorist (d. [[2001]])
108105 *[[1972]] - [[Patricia Manterola]], Mexican singer
108106 *[[1975]] - [[JÃŗn ÞÃŗr Birgisson]], Guitar player and lead singer of the Icelandic post-rock band Sigur RÃŗs
108107 *[[1977]] - [[John Cena]], American professional wrestler and rapper
108108 *[[1978]] - [http://www.decalhaven.com John Cummings], Great American entripenuer
108109 *[[1979]] - [[Jaime King]], American actress
108110 *[[1983]] - [[Daniela HantuchovÃĄ]], Slovakian tennis player
108111 *[[1986]] - [[Jessica Stam]], Canadian supermodel
108112 *[[1989]] - [[Nicole VaidiÅĄovÃĄ]], Czech tennis player
108113
108114 ==Deaths==
108115 *[[303]] - [[Saint George]], Roman soldier and Christian martyr
108116 *[[725]] - [[Wihtred]], [[King of Kent]]
108117 *[[871]] - [[Ethelred of Wessex]]
108118 *[[1014]] - [[Brian Boru]], [[High King of Ireland]] (killed in battle)
108119 *[[1016]] - [[Ethelred II of England]]
108120 *[[1124]] - King [[Alexander I of Scotland]] (b. [[1078]])
108121 *[[1151]] - Queen [[Adeliza]] of England (b. [[1103]])
108122 *[[1217]] - King [[Inge II of Norway]] (b. [[1185]])
108123 *[[1407]] - [[Olivier de Clisson]], French soldier (b. [[1326]])
108124 *[[1616]] - [[Miguel Cervantes]], Spanish author (b. [[1547]])
108125 *1616 - [[William Shakespeare]], English writer and actor (b. [[1564]])
108126 *[[1625]] - [[Maurice of Nassau, Prince of Orange]] (b. [[1567]])
108127 *[[1702]] - [[Margaret Fell]], English Quaker leader (b. [[1614]])
108128 *[[1740]] - [[Thomas Tickell]], English writer (b. [[1685]])
108129 *[[1781]] - [[James Abercrombie (general)|James Abercrombie]], British general (b. [[1706]])
108130 *[[1792]] - [[Karl Friedrich Bahrdt]], German theologian and adventurer (b. [[1741]])
108131 *[[1794]] - [[Guillaume-ChrÊtien de Lamoignon de Malesherbes]], French statesman (executed) (b. [[1721]])
108132 *[[1850]] - [[William Wordsworth]], English poet (b. [[1770]])
108133 *[[1889]] - [[Jules Barbey d'Aurevilly]], French writer (b. [[1808]])
108134 *[[1895]] - [[Carl Ludwig]], German physician (b. [[1815]])
108135 *[[1936]] - [[Teresa de la Parra]], Venezuelan writer (b. [[1889]])
108136 *[[1951]] - [[Charles G. Dawes]], [[Vice President of the United States]], recipient of the [[Nobel Peace Prize]] (b. [[1865]])
108137 *[[1952]] - [[Julius Freed]], American inventor and banker (b. [[1887]])
108138 *[[1975]] - [[William Hartnell]], English actor (b. [[1908]])
108139 *[[1979]] - [[Blair Peach]], New Zealand-born anti-fascist (b. [[1946]])
108140 *[[1983]] - [[Buster Crabbe]], American swimmer and actor (b. [[1908]])
108141 *[[1984]] - [[Red Garland]], American jazz pianist (b. [[1923]])
108142 *[[1985]] - [[Sam Ervin]], American politician (b. [[1896]])
108143 *[[1986]] - [[Harold Arlen]], American composer (b. [[1905]])
108144 *1986 - [[Jim Laker]], English cricketer (b. [[1922]])
108145 *1986 - [[Otto Preminger]], Austrian-born film director (b. [[1906]])
108146 *[[1990]] - [[Paulette Goddard]], American actress (b. [[1911]])
108147 *[[1991]] - [[Johnny Thunders]], American musician (b. [[1952]])
108148 *[[1992]] - [[Satyajit Ray]], Indian filmmaker (b. [[1921]])
108149 *[[1993]] - [[CÊsar ChÃĄvez]], American labor activist (b. [[1927]])
108150 *[[1995]] - [[Howard Cosell]], American sports journalist (b. [[1918]])
108151 *1995 - [[John C. Stennis]], U.S. Senator from Mississippi (b. [[1904]])
108152 *[[1996]] - [[P. L. Travers]], Australian author (b. [[1899]])
108153 *[[1997]] - [[Denis Compton]], English cricketer (b. [[1918]])
108154 *[[1998]] - [[James Earl Ray]], American assassin (b. [[1928]])
108155 *[[2002]] - [[Linda Lovelace]], American actress (b. [[1949]])
108156 *[[2003]] - [[James H. Critchfield]], American Central Intelligence agent (b. [[1917]])
108157 *2003 - [[Fernand Fonssagrives]], French photographer (b. [[1910]])
108158 *[[2005]] - Sir [[Joh Bjelke-Petersen]], Premier of Queensland (b. [[1911]])
108159 *2005 - [[Al Grassby]], Australian immigration minister (b. [[1928]])
108160 *2005 - Sir [[John Mills]], English actor (b. [[1908]])
108161 *2005 - [[Romano Scarpa]], Italian-born comic artist (b. [[1927]])
108162 *2005 - [[Earl Wilson]], baseball player (b. [[1934]])
108163
108164 ==Holidays and observances==
108165 *Feast Day of [[Saint George]]:
108166 **[[National Day]] of [[England]]
108167 **Celebrated as ''St. Jordi's Day'' in [[Catalonia]], presents of books and roses. See below.
108168 **[[Jurgi]] festival, in ancient [[Latvia]]
108169 *[[UNESCO]] [[World Book and Copyright Day|International Day of the Book]] in honor of Shakespeare's and Cervantes's death on April 23, 1616.
108170 *[[Catalonia]] - Lover's Day. Men receive a book as a gift from their romantic interest, while women receive roses. The book is in honor of Shakespeare's and Cervantes's death on April 23, 1616.
108171 *[[Turkey]] - National Sovereignty and Children's Day ([[1920]])
108172 *[[Israel]] - [[Yom Ha'atzma'ut]] (Israeli Independence Day) for [[2007]]: (the observed date of this [[national holiday]] is determined by the [[Jewish Calendar]]).
108173 *Independence Day for the [[Conch Republic]]
108174 *National [[Beer]] Day in [[Germany]]
108175
108176 ==External links==
108177 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/23 BBC: On This Day]
108178
108179 ----
108180
108181 [[April 22]] - [[April 24]] - [[March 23]] - [[May 23]] &amp;ndash; [[historical anniversaries|listing of all days]]
108182
108183 {{months}}
108184
108185 [[ceb:Abril 23]]
108186 [[ilo:Abril 23]]
108187 [[nap:23 'e abbrile]]
108188 [[war:Abril 23]]
108189 [[pam:Abril 23]]
108190
108191 [[af:23 April]]
108192 [[ar:23 ØŖØ¨ØąŲŠŲ„]]
108193 [[an:23 d'abril]]
108194 [[ast:23 d'abril]]
108195 [[bg:23 Đ°ĐŋŅ€Đ¸Đģ]]
108196 [[be:23 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
108197 [[bs:23. april]]
108198 [[ca:23 d'abril]]
108199 [[cv:АĐēĐ°, 23]]
108200 [[co:23 d'aprile]]
108201 [[cs:23. duben]]
108202 [[cy:23 Ebrill]]
108203 [[da:23. april]]
108204 [[de:23. April]]
108205 [[et:23. aprill]]
108206 [[el:23 ΑĪ€ĪÎšÎģίÎŋĪ…]]
108207 [[es:23 de abril]]
108208 [[eo:23-a de aprilo]]
108209 [[eu:Apirilaren 23]]
108210 [[fo:23. apríl]]
108211 [[fr:23 avril]]
108212 [[fy:23 april]]
108213 [[ga:23 AibreÃĄn]]
108214 [[gl:23 de abril]]
108215 [[ko:4ė›” 23ėŧ]]
108216 [[hr:23. travnja]]
108217 [[io:23 di aprilo]]
108218 [[id:23 April]]
108219 [[ia:23 de april]]
108220 [[ie:23 april]]
108221 [[is:23. apríl]]
108222 [[it:23 aprile]]
108223 [[he:23 באפריל]]
108224 [[jv:23 April]]
108225 [[ka:23 აპრილი]]
108226 [[csb:23 łÅŧÃĢkwiôta]]
108227 [[ku:23'ÃĒ avrÃĒlÃĒ]]
108228 [[lt:BalandÅžio 23]]
108229 [[lb:23. AbrÃĢll]]
108230 [[li:23 april]]
108231 [[hu:Április 23]]
108232 [[mk:23 Đ°ĐŋŅ€Đ¸Đģ]]
108233 [[ms:23 April]]
108234 [[nl:23 april]]
108235 [[ja:4月23æ—Ĩ]]
108236 [[no:23. april]]
108237 [[nn:23. april]]
108238 [[oc:23 d'abril]]
108239 [[pl:23 kwietnia]]
108240 [[pt:23 de Abril]]
108241 [[ro:23 aprilie]]
108242 [[ru:23 Đ°ĐŋŅ€ĐĩĐģŅ]]
108243 [[sco:23 Aprile]]
108244 [[sq:23 Prill]]
108245 [[scn:23 di aprili]]
108246 [[simple:April 23]]
108247 [[sk:23. apríl]]
108248 [[sl:23. april]]
108249 [[sr:23. Đ°ĐŋŅ€Đ¸Đģ]]
108250 [[fi:23. huhtikuuta]]
108251 [[sv:23 april]]
108252 [[tl:Abril 23]]
108253 [[tt:23. Äpril]]
108254 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 23]]
108255 [[th:23 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
108256 [[vi:23 thÃĄng 4]]
108257 [[tr:23 Nisan]]
108258 [[uk:23 ĐēвŅ–Ņ‚ĐŊŅ]]
108259 [[ur:23 اŲžØąÛŒŲ„]]
108260 [[wa:23 d' avri]]
108261 [[zh:4月23æ—Ĩ]]</text>
108262 </revision>
108263 </page>
108264 <page>
108265 <title>Amitabh Bachchan</title>
108266 <id>1828</id>
108267 <revision>
108268 <id>41963178</id>
108269 <timestamp>2006-03-02T22:34:11Z</timestamp>
108270 <contributor>
108271 <ip>202.62.123.178</ip>
108272 </contributor>
108273 <text xml:space="preserve">{{Infobox_Celebrity
108274 | name = Amitabh Bachchan
108275 | image = AmitabhBhachchan.jpg
108276 | birth_date = [[October 11]], [[1942]]
108277 | birth_place = [[Allahabad]], [[India]]
108278 | death_date =
108279 | death_place =
108280 | occupation = [[Actor]]
108281 | salary =
108282 | networth =
108283 | website =
108284 }}
108285 '''Amitabh Bachchan''' (born [[October 11]], [[1942]], in [[Allahabad]], [[India]]) also known as '''Big B''', is an iconic [[India]]n [[actor]] whose [[Bollywood]] career has spanned four decades. He was declared Superstar of the Millennium in 1999 in an international poll hosted by the [[BBC]].
108286
108287 ==Biography==
108288 Amitabh was born to Teji and [[Harivansh Rai 'Bachchan']]. Harivansh Rai was a well-known [[Hindi]] poet. Amitabh attended Boys' High School in [[Allahabad]] followed by [[Sherwood College]] in [[Nainital]] and went on to [[Delhi University]] to earn a degree in science.
108289
108290 He gave up his job as a freight broker for the shipping firm Bird and Company in Calcutta to pursue an acting career. He entered FTII Pune (the Film And Television Institute of India at Pune). Jaya Bhaduri (whom he later married), Anil Dhawan (director David Dhawan's brother), Shatrughan Sinha, Romesh Sharma, Danny Denzongpa, and Amitabh were all classmates at FTII Pune.
108291
108292 Bachchan began his acting career in 1969 with ''[[Saat Hindustani]]''. He became well known as a [[movie star]] in 1973, with the films ''[[Abhimaan]]'' and ''[[Zanjeer]]''.
108293
108294 In 1982, Bachchan was injured while filming on the set of ''[[Coolie]]''. People were so concerned about his health that they thronged to temples and prayed for his life and quick recovery. He recovered and resumed making films. Popular interest in his injury had been so high that when ''Coolie'' was released, it featured a freeze-frame and caption, isolating the exact instant during a fight scene when Amitabh was hurt.
108295
108296 While his popularity waned in the [[1990s]], Bachchan made a comeback in the early [[2000s]] by hosting ''[[Kaun Banega Crorepati]]'', the Indian version of ''[[Who Wants to be a Millionaire]]''.
108297
108298 Bachchan married actress [[Jaya Bhaduri]] in 1973. He has co-starred with Jaya in many films: ''[[Zanjeer]]'', ''[[Abhimaan]]'', ''Milli'', ''Chupke Chupke'',''[[Sholay]]'', ''[[Silsila]]'' and, ''[[Kabhi Khushi Kabhi Gham]]''. They have two children: [[Shweta Bachchan-Nanda]] and [[Abhishek Bachchan]]. Abhishek Bachchan has followed in his father's footsteps, having starred in a number of movies.
108299
108300 ==Career==
108301 Bachchan's first film was ''[[Saat Hindustani]]'' (1969). He became well known as a [[movie star]] in 1973 following the success of ''[[Abhimaan]]'' and ''[[Zanjeer]]''.
108302
108303 Amitabh's most loved films and characters date from this period. Fans remember him from box office hits like ''[[Sholay]]'', ''[[Amar Akbar Anthony]]'', ''[[Trishul]]'', ''[[Don]]'', ''[[Deewar ]]'' and more recently in ''Baghban''. Amitabh often played an angry young man fighting a corrupt establishment -- a theme that had immense appeal in India during that time. The screen-writing duo of [[Salim-Javed]] [http://www.upperstall.com/people/salimjaved.html] have often been credited with creating this persona. In a sense, the relationship was symbiotic. Neither Salim-Javed nor Amitabh have since attained the level of success they achieved with their collaborations.
108304
108305 Amitabh is famous for playing a person who is angry with the whole system, doesn't believe in God and replies back to evils of society, a person who believes in right and does right, a person who doesn't bow before anyone else except his mother. As a result of portraying these kind of images in the films he worked, the people and media call him &quot;an [[Angry young man]]&quot;.
108306
108307 In an era where producers looked to cast a handsome full-bodied man as the hero, Amitabh was written off, due to his unconventional looks and tall, lanky frame. His baritone (since regarded as his biggest asset) once failed to get him a job as a [[news presenter]] at [[All India Radio]]. The success of ''Zanjeer'' and ''Sholay'' turned that around. Audiences adored his on-screen presence and a flair for comedy.
108308
108309 Many of his films in the 1970s followed a set formula: a poor childhood, parents murdered or separated after birth, survival through street-smart instincts, entry of a villain (usually a social oppressor or smuggler or his parents' killer or long lost father), some comedy scenes, a drunk scene, songs, dances, an action finale and a dying speech. It can be argued that the Salim-Javed stories written for Amitabh during the 1970s form an informal sequel, with the same character being played out in various settings.
108310
108311 Critics would regard most of these 1970s films as run-of-the-mill ''masala'' movies with creaking plots and sub-par production values. However, Amitabh's persona lifted them to incredible heights of popularity.
108312
108313 He continued making films all through the [[1980s]] and [[1990s]], but his appeal seemed to have waned. Though a few of his movies were successful (''[[Bade Miyan Chhote Miyan]]'' and ''[[Mohabbatein]]''), critics said that they succeeded due to Amitabh's co-stars, [[Govinda (actor)|Govinda]] and [[Shahrukh Khan]]. Industry gossip said that Amitabh was finished as an actor.
108314
108315 Then Amitabh proved the critics wrong. First came the fan accolades. In 1999, in a [[British Broadcasting Corporation|BBC]] Online Poll, he was named the Superstar of the Millennium. In [[June]] [[2000]] he became the first living [[Asian]] to have a wax statue erected in his honor at [[Madame Tussaud's]].
108316
108317 In 2000, he was chosen as the host for ''[[Kaun Banega Crorepati]]'', the Indian version of ''[[Who Wants to Be a Millionaire?]]''. The show became an enormous hit. While the show
108318 was on, street traffic dropped dramatically; restaurants and movie theaters complained of diminishing clientèle. Critics were forced to admit that Amitabh could still pull big crowds. The show was aired again as ''Kaun Banega Crorepati 2'', with a prize money double the first version.
108319
108320 The reason for the popularity of Amitabh has probably been the uncanny portrayal of the Indian consciousness in his roles. We can see the development of 70's India to the corporate setup of the present era. In this transformation the identity of &quot;Indian-ness&quot; is not lost.
108321
108322 Since his game show success, he has appeared in several hit movies. He has also appeared in many [[Advertising|ads]] for commercial products and for various [[non-profit organization]]s. He has supported campaigns for eye donations and against [[polio]] and [[AIDS]].
108323
108324 ==Public life==
108325 In 1984, Bachchan briefly entered politics in support of long-time family friend [[Rajiv Gandhi]]. He contested Allahabad's parliament seat against H. N. Bahuguna, a well-known politician and won (winning 68.2% of the vote). {{ref|election}} However, his political career was short-lived; he resigned after three years before finishing his term. At the time of his resignation, it was rumored that he might have been involved in the [[Bofors scandal]]. Bachchan was not implicated in the corruption and has since distanced himself from the Gandhi family. Bachchan denies that the these events were connected, commenting that he &quot;should have never got into politics.&quot; {{ref|politics}}
108326
108327 In 1995, Amitabh went into business, founding Amitabh Bachchan Corporation Ltd., an entertainment company that specialized in film production and event management. The company did not succeed and Bachchan was pushed into huge debt when a big-budget production bombed at the Bollywood box office. He did not, however, file for bankruptcy. Apart from what is a commonly held belief that influential public figures such as Sahara Group chairman Subroto Roy and politician Amar Singh helped bail Bachchan financially out of his debts, the actor also took on visibly more acting and endorsing contracts to pay off his creditors. According to most accounts, with his return to the small screen for a second season of Kaun Banega Crorepati, his debts may have been completely cleared in 2005. Some observers speculate that he will try to revive his company.
108328
108329 He was admited to hospital in November 2005 for Ulcerative Colitis. For weeks this formed the basis of the main news stories in the Indian media. Such is the popularity of Amitabh that prayers were held all over India and special ‘pujas' conducted, in scenes reminiscient of the Coolie film accident.
108330
108331 In 2006, Indian National Organisation for Tobacco Eradication (Note) accused Bachchan of breaking national law by appearing smoking a cigar on advertising posters for the film ''Family''. India's government banned tobacco advertisements in 2003, and Note threatened the film star with legal action.
108332
108333 ==Trivia==
108334 Amitabh Bachchan has played a character named Vijay in at least seventeen of his films! Veteran Hindi actor Raaj Kumar was first approached to play the role of Police Inspector in Zanjeer, for some reason Raaj Kumar (who was known for his eccentric mannerisms)didn't accept the role and the role went to Amitabh. Had Raaj Kumar accepted the Zanjeer's hero's role, Amitabh might not have been what he is today.
108335
108336 ==Awards==
108337 Bachchan has received the [[Padma Shri]] (1983) and [[Padma Bhushan]] (2005), civilian honours from the [[Government of India|Indian government]]. In 1990, he won the National Award for his portrayal of a mafia don in ''Agneepath''. In 1999, he was named [[BBC]] Superstar of the Millennium. He has also won 14 [[Filmfare Award]]s in various categories.He recently won the 2006 FilmFare award for best actor for his role in film Black.
108338
108339 ==Filmography==
108340 {{ActingFilmography}}
108341
108342 {{ActingFilmography-movie |
108343 Title = [[Kamagata Maru]] |
108344 Year = 2006 |
108345 Role =
108346 }}
108347 {{ActingFilmography-movie |
108348 Title = [[Happy New Year (film)|Happy New Year]] |
108349 Year = 2007 |
108350 Role =
108351 }}
108352 {{ActingFilmography-movie |
108353 Title = Baiju Aur Tansen |
108354 Year = 2006 |
108355 Role = Tansen
108356 }}
108357 {{ActingFilmography-movie |
108358 Title = [[Sholay]] |
108359 Year = 2006 |
108360 Role = Gabbar Singh
108361 }}
108362 {{ActingFilmography-movie |
108363 Title = Darna Zaroori Hai |
108364 Year = 2006 |
108365 Role =
108366 }}
108367 {{ActingFilmography-movie |
108368 Title = God Tussi Great Ho |
108369 Year = 2006 |
108370 Role =
108371 }}
108372 {{ActingFilmography-movie |
108373 Title = [[Kabhi Alvida Naa Kehna]] |
108374 Year = 2006 |
108375 Role = Mohinder Sharma
108376 }}
108377 {{ActingFilmography-movie |
108378 Title = [[Baabul]] |
108379 Year = 2006 |
108380 Role = Balraj Kapoor
108381 }}
108382 {{ActingFilmography-movie |
108383 Title = [[Eklavya (film)|Eklavya]] |
108384 Year = 2006 |
108385 Role =
108386 }}
108387 {{ActingFilmography-movie |
108388 Title = Khazan |
108389 Year = 2006 |
108390 Role =
108391 }}
108392 {{ActingFilmography-movie |
108393 Title = Struggler |
108394 Year = 2006 |
108395 Role =
108396 }}
108397 {{ActingFilmography-movie |
108398 Title = Zamaanat |
108399 Year = 2006 |
108400 Role = Shiv Shankar
108401 }}
108402 {{ActingFilmography-movie |
108403 Title = Family |
108404 Year = 2006 |
108405 Role = Viren Sahai
108406 }}
108407 {{ActingFilmography-movie |
108408 Title = [[Ek Ajnabee]] |
108409 Year = 2005 |
108410 Role = Suryaveer Singh
108411 }}
108412 {{ActingFilmography-movie |
108413 Title = Dil Jo Bhi Kahey... |
108414 Year = 2005 |
108415 Role = Shekhar Sinha
108416 }}
108417 {{ActingFilmography-movie |
108418 Title = [[Viruddh]] |
108419 Year = 2005 |
108420 Role = Vidhyadar Ramkrishna Patwardhan
108421 }}
108422 {{ActingFilmography-movie |
108423 Title = [[Parineeta]] |
108424 Year = 2005 |
108425 Role = Narrator
108426 }}
108427 {{ActingFilmography-movie |
108428 Title = [[Sarkar (film)]] |
108429 Year = 2005 |
108430 Role = Subhash Nagare 'Sarkar'
108431 }}
108432 {{ActingFilmography-movie |
108433 Title = [[Paheli]] |
108434 Year = 2005 |
108435 Role = The Shepherd
108436 }}
108437 {{ActingFilmography-movie |
108438 Title = [[Ramji Londonwale]] |
108439 Year = 2005 |
108440 Role = Amitabh Bachchan as Himself
108441 }}
108442 {{ActingFilmography-movie |
108443 Title = [[Bunty Aur Babli]] |
108444 Year = 2005 |
108445 Role = DCP Dashrath Singh
108446 }}
108447 {{ActingFilmography-movie |
108448 Title = [[Waqt]] |
108449 Year = 2005 |
108450 Role = Ishwarchand Thakur
108451 }}
108452 {{ActingFilmography-movie |
108453 Title = [[Black (The Movie)|Black]] |
108454 Year = 2005 |
108455 Role = Debraj Sahai
108456 }}
108457 {{ActingFilmography-movie |
108458 Title = [[Khakee]] |
108459 Year = 2004 |
108460 Role = DCP Anant Kumar Shrivastav
108461 }}
108462 {{ActingFilmography-movie |
108463 Title = Aetbaar |
108464 Year = 2004 |
108465 Role = Dr. Ranveer Malhotra
108466 }}
108467 {{ActingFilmography-movie |
108468 Title = Rudraksh |
108469 Year = 2004 |
108470 Role = Narrator
108471 }}
108472 {{ActingFilmography-movie |
108473 Title = Insaaf: The Justice |
108474 Year = 2004 |
108475 Role = Narrator
108476 }}
108477 {{ActingFilmography-movie |
108478 Title = [[Dev]] |
108479 Year = 2004 |
108480 Role = Dev
108481 }}
108482 {{ActingFilmography-movie |
108483 Title = [[Lakshya]] |
108484 Year = 2004 |
108485 Role = Col. Sunil Damle
108486 }}
108487 {{ActingFilmography-movie |
108488 Title = [[Deewaar]] |
108489 Year = 2004 |
108490 Role = Maj. Ranvir Kaul
108491 }}
108492 {{ActingFilmography-movie |
108493 Title = [[Kyun...! Ho Gaya Na]] |
108494 Year = 2004 |
108495 Role = Raj Chauhan
108496 }}
108497 {{ActingFilmography-movie |
108498 Title = Hum Kaun Hai? |
108499 Year = 2004 |
108500 Role = Dual Role (Major Frank John Williams &amp; Frank James Williams)
108501 }}
108502 {{ActingFilmography-movie |
108503 Title = [[Veer-Zaara]] |
108504 Year = 2004 |
108505 Role = Chaudhary Sumer Singh
108506 }}
108507 {{ActingFilmography-movie |
108508 Title = Ab Tumhare Hawale Watan Saathiyo |
108509 Year = 2004 |
108510 Role = Major General Amarjeet Singh
108511 }}
108512 {{ActingFilmography-movie |
108513 Title = Fun2shh |
108514 Year = 2003 |
108515 Role = Narrator
108516 }}
108517 {{ActingFilmography-movie |
108518 Title = [[Baghban]] |
108519 Year = 2003 |
108520 Role = Raj Malhotra
108521 }}
108522 {{ActingFilmography-movie |
108523 Title = [[Boom]] |
108524 Year = 2003 |
108525 Role = Bade Mia
108526 }}
108527 {{ActingFilmography-movie |
108528 Title = [[Mumbai Se Aaya Mera Dost ]] |
108529 Year = 2003 |
108530 Role = Narrator
108531 }}
108532 {{ActingFilmography-movie |
108533 Title = Armaan |
108534 Year = 2003 |
108535 Role = Dr. Siddharth Sinha
108536 }}
108537 {{ActingFilmography-movie |
108538 Title = Khushi |
108539 Year = 2003 |
108540 Role = Narrator
108541 }}
108542 {{ActingFilmography-movie |
108543 Title = [[Kaante]] |
108544 Year = 2002 |
108545 Role = Yashvardhan Rampal 'Major'
108546 }}
108547 {{ActingFilmography-movie |
108548 Title = Agnivarsha |
108549 Year = 2002 |
108550 Role = Indra
108551 }}
108552 {{ActingFilmography-movie |
108553 Title = Hum Kisise Kum Nahi |
108554 Year = 2002 |
108555 Role = Dr. Rastogi
108556 }}
108557 {{ActingFilmography-movie |
108558 Title = Aankhen |
108559 Year = 2002 |
108560 Role = Vijay Singh Rajput
108561 }}
108562 {{ActingFilmography-movie |
108563 Title = [[Lagaan]] |
108564 Year = 2001 |
108565 Role = Narrator
108566 }}
108567 {{ActingFilmography-movie | Title = [[Kabhi Khushi Kabhie Gham]] | Year = 2001 | Role = Yashvardhan 'Yash' Raichand
108568 }}
108569 {{ActingFilmography-movie |
108570 Title = [[Aks]] |
108571 Year = 2001 |
108572 Role = Inspector Manu Verma
108573 }}
108574 {{ActingFilmography-movie |
108575 Title = Ek Rishta - The Bond of Love |
108576 Year = 2001 |
108577 Role = Vijay Kapoor
108578 }}
108579 {{ActingFilmography-movie |
108580 Title = [[Mohabbatein]] |
108581 Year = 2000 |
108582 Role = Narayan Shankar
108583 }}
108584 {{ActingFilmography-movie |
108585 Title = Kohraam |
108586 Year = 1999 |
108587 Role = Col. Balbir Singh Sodi, aka Devraj Hathoda/Dada Bhai
108588 }}
108589 {{ActingFilmography-movie
108590 | Title = Hindustan Ki Kasam
108591 | Year = 1999
108592 | Role = Kabeera
108593 }}
108594 {{ActingFilmography-movie
108595 | Title = [[Hello Brother]]
108596 | Year = 1999
108597 | Role = Voice of God
108598 }}
108599 {{ActingFilmography-movie
108600 | Title = Sooryavansham
108601 | Year = 1999
108602 | Role = Dual Role (Thakur Bhanu Pratap Singh &amp; Heera Singh)
108603 }}
108604 {{ActingFilmography-movie
108605 | Title = Lal Baadshah
108606 | Year = 1999
108607 | Role = Dual Role (Lal 'Baadshah' Singh &amp; Ranbhir Singh)
108608 }}
108609 {{ActingFilmography-movie
108610 | Title = [[Bade Miyan Chhote Miyan]]
108611 | Year = 1998
108612 | Role = Dual Role (Inspector Arjun Singh &amp; Bade Miyan)
108613 }}
108614 {{ActingFilmography-movie
108615 | Title = Majorsaab
108616 | Year = 1998
108617 | Role = Maj. Jasbir Singh Rana
108618 }}
108619 {{ActingFilmography-movie
108620 | Title = [[Mrityudata]]
108621 | Year = 1997
108622 | Role = Dr. Ram Prasad Ghayal
108623 }}
108624 {{ActingFilmography-movie
108625 | Title = Tere Mere Sapne
108626 | Year = 1996
108627 | Role = Narrator
108628 }}
108629 {{ActingFilmography-movie
108630 | Title = [[Insaniyat]]
108631 | Year = 1994
108632 | Role = Inspector Amar
108633 }}
108634 {{ActingFilmography-movie
108635 | Title = [[Khuda Gawah]]
108636 | Year = 1992
108637 | Role = Baadshah Khan
108638 }}
108639 {{ActingFilmography-movie
108640 | Title = [[Indrajeet]]
108641 | Year = 1991
108642 | Role = Indrajeet
108643 }}
108644 {{ActingFilmography-movie
108645 | Title = [[Hum]]
108646 | Year = 1991
108647 | Role = Tiger/Shekhar
108648 }}
108649 {{ActingFilmography-movie
108650 | Title = [[Akayla]]
108651 | Year = 1991
108652 | Role = Inspector Vijay Verma
108653 }}
108654 {{ActingFilmography-movie
108655 | Title = [[Ajooba]]
108656 | Year = 1991
108657 | Role = Ajooba/Ali
108658 }}
108659 {{ActingFilmography-movie
108660 | Title = Krodh
108661 | Year = 1990
108662 | Role =
108663 }}
108664 {{ActingFilmography-movie
108665 | Title = [[Agneepath]]
108666 | Year = 1990
108667 | Role = Vijay Deenanath Chauhan
108668 }}
108669 {{ActingFilmography-movie
108670 | Title = [[Aaj ka Arjun]]
108671 | Year = 1990
108672 | Role = Bheema
108673 }}
108674 {{ActingFilmography-movie
108675 | Title = [[Toofan]]
108676 | Year = 1989
108677 | Role = Dual Role (Toofan &amp; Shyam)
108678 }}
108679 {{ActingFilmography-movie
108680 | Title = [[Main Azaad Hoon]]
108681 | Year = 1989
108682 | Role = Azaad
108683 }}
108684 {{ActingFilmography-movie
108685 | Title = [[Jaadugar]]
108686 | Year = 1989
108687 | Role =
108688 }}
108689 {{ActingFilmography-movie
108690 | Title = Soorma Bhopali
108691 | Year = 1988
108692 | Role = (Guest Appearance)
108693
108694 }}
108695 {{ActingFilmography-movie
108696 | Title = [[Shahenshah]]
108697 | Year = 1988
108698 | Role = Inspector Vijay Kumar Srivastava/Shahenshah
108699 }}
108700 {{ActingFilmography-movie
108701 | Title = Kaun Jeeta Kaun Haara (Guest)
108702 | Year = 1988
108703 | Role =
108704 }}
108705 {{ActingFilmography-movie
108706 | Title = [[Ganga Jamuna Saraswati]]
108707 | Year = 1988
108708 | Role = Ganga Prasad
108709 }}
108710 {{ActingFilmography-movie
108711 | Title = Jalwa
108712 | Year = 1987
108713 | Role = Special Appearance as himself
108714 }}
108715 {{ActingFilmography-movie
108716 | Title = Hero Hiralal
108717 | Year = 1987
108718 | Role = Special Appearance as himself
108719 }}
108720 {{ActingFilmography-movie
108721 | Title = Ek Ruka Hua Faisla
108722 | Year = 1986
108723 | Role = (Guest Appearance)
108724 }}
108725 {{ActingFilmography-movie
108726 | Title = [[Aakhree Raasta]]
108727 | Year = 1986
108728 | Role = Dual Role
108729 }}
108730 {{ActingFilmography-movie
108731 | Title = Naya Bakra
108732 | Year = 1985
108733 | Role =
108734 }}
108735 {{ActingFilmography-movie
108736 | Title = [[Mard]]
108737 | Year = 1985
108738 | Role = Raju 'Mard' Tangewala
108739 }}
108740 {{ActingFilmography-movie
108741 | Title = [[Giraftaar]] (Guest)
108742 | Year = 1985
108743 | Role = Inspector Karan Kumar Khanna
108744 }}
108745 {{ActingFilmography-movie
108746 | Title = [[Sharaabi]]
108747 | Year = 1984
108748 | Role = Vicky Kapoor
108749 }}
108750 {{ActingFilmography-movie
108751 | Title = [[Inquilaab]]
108752 | Year = 1984
108753 | Role = Amarnath
108754 }}
108755 {{ActingFilmography-movie
108756 | Title = [[Nastik]]
108757 | Year = 1983
108758 | Role = Shankar (Sheru)/Bhola
108759 }}
108760 {{ActingFilmography-movie
108761 | Title = [[Pukar]]
108762 | Year = 1983
108763 | Role = Ramdas/Ronnie
108764 }}
108765 {{ActingFilmography-movie
108766 | Title = [[Mahaan]]
108767 | Year = 1983
108768 | Role = Triple role (Amit/Rana Ranveer, Guru &amp; Inspector Shankar)
108769 }}
108770 {{ActingFilmography-movie
108771 | Title = [[Coolie]]
108772 | Year = 1983
108773 | Role = Iqbal
108774 }}
108775 {{ActingFilmography-movie
108776 | Title = [[Andha Kanoon]] (Guest)
108777 | Year = 1983
108778 | Role = Jan Nissar Akhtar Khan (Guest Appearance)
108779 }}
108780 {{ActingFilmography-movie
108781 | Title = [[Shakti]]
108782 | Year = 1982
108783 | Role = Vijay Kumar
108784 }}
108785 {{ActingFilmography-movie
108786 | Title = [[Satte pe Satta]]
108787 | Year = 1982
108788 | Role = Dual Role (Ravi Anand/Babu)
108789 }}
108790 {{ActingFilmography-movie
108791 | Title = [[Namak Halaal]]
108792 | Year = 1982
108793 | Role = Arjun Singh
108794 }}
108795 {{ActingFilmography-movie
108796 | Title = [[Khud-daar]]
108797 | Year = 1982
108798 | Role = Govind Srivastav/Chotu Ustad
108799 }}
108800 {{ActingFilmography-movie
108801 | Title = [[Desh Premee]]
108802 | Year = 1982
108803 | Role = Dual Role (Master Dinanath &amp; Raju)
108804
108805 }}
108806 {{ActingFilmography-movie
108807 | Title = [[Bemisaal]]
108808 | Year = 1982
108809 | Role = Dual Role (Dr. Sudhir Roy &amp; Adhir Roy)
108810 }}
108811 {{ActingFilmography-movie
108812 | Title = [[Yaraana]]
108813 | Year = 1981
108814 | Role = Kishan Kumar
108815 }}
108816 {{ActingFilmography-movie
108817 | Title = [[Silsila]]
108818 | Year = 1981
108819 | Role = Amit Malhotra
108820 }}
108821 {{ActingFilmography-movie
108822 | Title = [[Naseeb]]
108823 | Year = 1981
108824 | Role = John, Jaani, Janardhan
108825 }}
108826 {{ActingFilmography-movie
108827 | Title = [[Lawaaris]]
108828 | Year = 1981
108829 | Role = Heera
108830 }}
108831 {{ActingFilmography-movie
108832 | Title = Vilayati Babu (Special Appearance)
108833 | Year = 1981
108834 | Role = Jagga (Special Appearance)
108835 }}
108836 {{ActingFilmography-movie
108837 | Title = [[Kaalia]]
108838 | Year = 1981
108839 | Role = Kallu/Kaalia
108840 }}
108841 {{ActingFilmography-movie
108842 | Title = [[Barsaat ki Ek Raat]]
108843 | Year = 1981
108844 | Role = ACP Abhijeet Rai
108845 }}
108846 {{ActingFilmography-movie
108847 | Title = Commander (Guest)
108848 | Year = 1981
108849 | Role = Guest Appearance
108850 }}
108851 {{ActingFilmography-movie
108852 | Title = Chashme Buddoor (Guest)
108853 | Year = 1981
108854 | Role = Guest Appearance
108855 }}
108856 {{ActingFilmography-movie
108857 | Title = [[Shaan]]
108858 | Year = 1980
108859 | Role = Vijay Kumar
108860 }}
108861 {{ActingFilmography-movie
108862 | Title = [[Ram Balraam]]
108863 | Year = 1980
108864 | Role = Inspector Balram Singh
108865 }}
108866 {{ActingFilmography-movie
108867 | Title = [[Dostaana]]
108868 | Year = 1980
108869 | Role = Vijay Varma
108870 }}
108871 {{ActingFilmography-movie
108872 | Title = [[Do aur Do Panch]]
108873 | Year = 1980
108874 | Role = Vijay/Ram
108875 }}
108876 {{ActingFilmography-movie
108877 | Title = Cinema Cinema
108878 | Year = 1979
108879 | Role =
108880 }}
108881 {{ActingFilmography-movie
108882 | Title = [[Suhaag]]
108883 | Year = 1979
108884 | Role = Amit Kapoor
108885 }}
108886 {{ActingFilmography-movie
108887 | Title = [[Mr. Natwarlal]]
108888 | Year = 1979
108889 | Role = Natwarlal/Avtar Singh
108890 }}
108891 {{ActingFilmography-movie
108892 | Title = [[Manzil]]
108893 | Year = 1979
108894 | Role = Ajay Chandra
108895 }}
108896 {{ActingFilmography-movie
108897 | Title = [[Kaala Patthar]]
108898 | Year = 1979
108899 | Role = Vijay Pal Singh
108900 }}
108901 {{ActingFilmography-movie
108902 | Title = Jurmaana
108903 | Year = 1979
108904 | Role = Inder Saxena
108905 }}
108906 {{ActingFilmography-movie
108907 | Title = [[The Great Gambler]]
108908 | Year = 1979
108909 | Role = Dual Role (Jay &amp; Inspector Vijay)
108910 }}
108911 {{ActingFilmography-movie
108912 | Title = [[Gol Maal]]
108913 | Year = 1979
108914 | Role = as himself Guest Appearance
108915 }}
108916 {{ActingFilmography-movie
108917 | Title = [[Muqaddar ka Sikandar]]
108918 | Year = 1978
108919 | Role = Sikandar
108920 }}
108921 {{ActingFilmography-movie
108922 | Title = [[Trishul]]
108923 | Year = 1978
108924 | Role = Vijay Kumar
108925 }}
108926 {{ActingFilmography-movie
108927 | Title = [[Kasme Vaade]]
108928 | Year = 1978
108929 | Role = Dual Role (Amit &amp; Shankar)
108930 }}
108931 {{ActingFilmography-movie
108932 | Title = [[Ganga Ki Saugandh]]
108933 | Year = 1978
108934 | Role = Jeeva
108935 }}
108936 {{ActingFilmography-movie
108937 | Title = [[Don]]
108938 | Year = 1978
108939 | Role = Double Role (Don/Vijay)
108940 }}
108941 {{ActingFilmography-movie
108942 | Title = [[Besharam]]
108943 | Year = 1978
108944 | Role = Ram Kumar Chandra/Prince Chandrashekar
108945 }}
108946 {{ActingFilmography-movie
108947 | Title = Shatranj Ke Khilari
108948 | Year = 1977
108949 | Role = Narrator
108950 }}
108951 {{ActingFilmography-movie
108952 | Title = [[Parvarish]]
108953 | Year = 1977
108954 | Role =
108955 }}
108956 {{ActingFilmography-movie
108957 | Title = [[Khoon Paseena]]
108958 | Year = 1977
108959 | Role = Shiva/Tiger
108960 }}
108961 {{ActingFilmography-movie
108962 | Title = [[Imaan Dharam]]
108963 | Year = 1977
108964 | Role = Ahmed Raza
108965 }}
108966 {{ActingFilmography-movie
108967 | Title = [[Amar Akbar Anthony]]
108968 | Year = 1977
108969 | Role = Anthony Gonsalves/Raju
108970 }}
108971 {{ActingFilmography-movie
108972 | Title = [[Alaap]]
108973 | Year = 1977
108974 | Role = Alok Prasad
108975 }}
108976 {{ActingFilmography-movie
108977 | Title = Charandas (Special Appearance)
108978 | Year = 1977
108979 | Role = Qawwali Singer (Special Appearance)
108980 }}
108981 {{ActingFilmography-movie
108982 | Title = [[Adalat]]
108983 | Year = 1976
108984 | Role = Dual Role (Dharma/Thakur Dharam Chand &amp; Raju)
108985 }}
108986 {{ActingFilmography-movie
108987 | Title = [[Hera Pheri]]
108988 | Year = 1976
108989 | Role = Vijay
108990 }}
108991 {{ActingFilmography-movie
108992 | Title = [[Kabhie Kabhie]]
108993 | Year = 1976
108994 | Role = Amitabh &quot;Amit&quot; Malhotra
108995 }}
108996 {{ActingFilmography-movie
108997 | Title = [[Do Anjaane]]
108998 | Year = 1976
108999 | Role = Amit Roy/Naresh Dutt
109000 }}
109001 {{ActingFilmography-movie
109002 | Title = [[Sholay]]
109003 | Year = 1975
109004 | Role = Jai (Jaidev)
109005
109006 }}
109007 {{ActingFilmography-movie
109008 | Title = [[Mili]]
109009 | Year = 1975
109010 | Role = Shekhar Dayal
109011 }}
109012 {{ActingFilmography-movie
109013 | Title = [[Zameer]]
109014 | Year = 1975
109015 | Role = Baadal/Chimpoo
109016 }}
109017 {{ActingFilmography-movie
109018 | Title = [[Faraar]]
109019 | Year = 1975
109020 | Role = Rajesh (Raj)
109021 }}
109022 {{ActingFilmography-movie
109023 | Title = [[Deewar]]
109024 | Year = 1975
109025 | Role = Vijay Verma
109026 }}
109027 {{ActingFilmography-movie
109028 | Title = [[Chupke Chupke]]
109029 | Year = 1975
109030 | Role = Professor Sukumar Sinha/Parimal Tripathi
109031 }}
109032 {{ActingFilmography-movie
109033 | Title = Kunwara Baap (Guest)
109034 | Year = 1974
109035 | Role = as Himself (Guest Appearance)
109036 }}
109037 {{ActingFilmography-movie
109038 | Title = [[Roti Kapda aur Makaan]]
109039 | Year = 1974
109040 | Role = Vijay
109041 }}
109042 {{ActingFilmography-movie
109043 | Title = [[Majboor]]
109044 | Year = 1974
109045 | Role = Ravi Khanna
109046 }}
109047 {{ActingFilmography-movie
109048 | Title = [[Kasauti]]
109049 | Year = 1974
109050 | Role = Amitabh Sharma (Amit)
109051 }}
109052 {{ActingFilmography-movie
109053 | Title = Dost (Guest)
109054 | Year = 1974
109055 | Role = Anand (Guest Appearance)
109056 }}
109057 {{ActingFilmography-movie
109058 | Title = [[Benaam]]
109059 | Year = 1974
109060 | Role = Amit Srivastav
109061 }}
109062 {{ActingFilmography-movie
109063 | Title = Bada Kabutar (Guest)
109064 | Year = 1973
109065 | Role = Guest appearance
109066 }}
109067 {{ActingFilmography-movie
109068 | Title = [[Zanjeer]]
109069 | Year = 1973
109070 | Role = Inspector Vijay
109071 }}
109072 {{ActingFilmography-movie
109073 | Title = [[Saudagar]]
109074 | Year = 1973
109075 | Role = Mothi
109076 }}
109077 {{ActingFilmography-movie
109078 | Title = [[Namak Haram]]
109079 | Year = 1973
109080 | Role = Vikram (Vicky)
109081 }}
109082 {{ActingFilmography-movie
109083 | Title = [[Gehri Chaal]]
109084 | Year = 1973
109085 | Role = Ratan
109086 }}
109087 {{ActingFilmography-movie
109088 | Title = Baandhe Haath
109089 | Year = 1973
109090 | Role = Dual Role (Shyamu &amp; Deepak)
109091 }}
109092 {{ActingFilmography-movie
109093 | Title = [[Abhimaan]]
109094 | Year = 1973
109095 | Role = Subir Kumar (Beeru)
109096
109097 }}
109098 {{ActingFilmography-movie
109099 | Title = Raaste Ka Patthar
109100 | Year = 1972
109101 | Role = Jai Shankar Rai
109102 }}
109103 {{ActingFilmography-movie
109104 | Title = Bawarchi (Guest)
109105 | Year = 1972
109106 | Role = Narrator
109107 }}
109108 {{ActingFilmography-movie
109109 | Title = Jaban
109110 | Year = 1972
109111 | Role =
109112 }}
109113 {{ActingFilmography-movie
109114 | Title = [[Ek Nazar]]
109115 | Year = 1972
109116 | Role = Manmohan Akash Tyagi
109117 }}
109118 {{ActingFilmography-movie
109119 | Title = [[Bombay to Goa]]
109120 | Year = 1972
109121 | Role = Ravi Kumar
109122 }}
109123 {{ActingFilmography-movie
109124 | Title = Bansi Birju
109125 | Year = 1972
109126 | Role = Birju
109127 }}
109128 {{ActingFilmography-movie
109129 | Title = Piya Ka Ghar (Guest)
109130 | Year = 1971
109131 | Role = Guest Appearance
109132 }}
109133 {{ActingFilmography-movie
109134 | Title = [[Reshma Aur Shera]]
109135 | Year = 1971
109136 | Role = Chotu
109137 }}
109138 {{ActingFilmography-movie
109139 | Title = [[Sanjog]]
109140 | Year = 1971
109141 | Role = Mohan
109142 }}
109143 {{ActingFilmography-movie
109144 | Title = [[Parwaana]]
109145 | Year = 1971
109146 | Role = Kumar Sen
109147 }}
109148 {{ActingFilmography-movie
109149 | Title = Pyar Ki Kahani
109150 | Year = 1971
109151 | Role = Ram Chandra
109152 }}
109153 {{ActingFilmography-movie
109154 | Title = [[Guddi]]
109155 | Year = 1971
109156 | Role = as himself guest appearance
109157 }}
109158 {{ActingFilmography-movie
109159 | Title = [[Anand]]
109160 | Year = 1970
109161 | Role = Dr. Bhaskar K. Bannerjee/Babu Moshai
109162 }}
109163 {{ActingFilmography-movie
109164 | Title = [[Bhuvan Shome]]
109165 | Year = 1969
109166 | Role = Narrator aka Mr. Shome
109167 }}
109168 {{ActingFilmography-movie
109169 | Title = [[Saat Hindustani]]
109170 | Year = 1969
109171 | Role = Anwar Ali Anwar
109172 }}
109173 {{Filmography-end
109174 }}
109175 ===Current projects===
109176 *''[[Baiju Aur Tansen]]''
109177 *''[[Happy New Year!!! (film)| Happy New Year!!!]]''
109178 *''[[Sarkar 2]]''
109179 *''[[Sholay]]''
109180 *''[[God Tussi Great Ho]]''
109181 *''[[Darna Zaroori Hai]]''
109182 *''[[Baabul]]''
109183 *''[[Khazan]]''
109184 *''[[Eklavya]]''
109185 *''[[Struggler]]''
109186
109187 ==References==
109188 *{{note|election}} &quot;[http://www.hindustantimes.com/news/specials/amitabh/politics.htm Amitabh Bachchan: Stint in Politics]&quot; HindustanTimes.com. Accessed on [[December 5]], [[2005]].
109189 *{{note|politics}} &quot;[http://news.bbc.co.uk/1/hi/world/south_asia/4487416.stm Amitabh Bachchan: The comeback man]&quot; BBC News. Accessed on [[December 5]], [[2005]].
109190
109191 ==External links==
109192 * {{imdb name|name=Amitabh Bachchan|id=0000821}}
109193 * [http://www.AmitabhBachchan.net An unofficial Amitabh Bachchan Website]
109194 * [http://www.filmlinc.com/wrt/programs/4-2005/ab05.htm Bachchan film retrospective at Lincoln Center]
109195 * [http://www.bharatmatrimony.com/matrimonyxpress/celeb-speak/indian/bollywood-actor/amitabh-bachchan-01.shtml An interview with Amitabh Bachchan]
109196
109197 [[Category:1942 births|Bachchan, Amitabh]]
109198 [[Category:Living people|Bachchan, Amitabh]]
109199
109200 [[Category:Actors|Bachchan,Amitabh]]
109201 [[Category:Actor-politicians|Bachchan, Amitabh]]
109202 [[Category:Film actors|Bachchan,Amitabh]]
109203 [[Category:Indian actors|Bachchan,Amitabh]]
109204 [[Category:Indian film actors|Bachchan,Amitabh]]
109205 [[Category:Indian television presenters|Bachchan,Amitabh]]
109206 [[Category:Padma Bhushan awardees|Bachchan, Amitabh]]
109207 [[Category:Padma Shri awardees|Bachchan, Amitabh]]
109208 [[Category:Vegetarians|Bachchan,Amitabh]]
109209
109210 [[de:Amitabh Bachchan]]
109211 [[fa:ØĸŲ…ÛŒØĒاب باچاŲ†]]
109212 [[fr:Amitabh Bachchan]]
109213 [[gu:āĒ…āĒŽāĒŋāĒ¤āĒžāĒ­ āĒŦāĒšāĢāĒšāĒ¨]]
109214 [[hi:ā¤…ā¤Žā¤ŋā¤¤ā¤žā¤­ ā¤Ŧā¤šāĨā¤šā¤¨]]
109215 [[nl:Amitabh Bachchan]]
109216 [[sa:ā¤…ā¤Žā¤ŋā¤¤ā¤žā¤­ ā¤Ŧā¤šāĨā¤šā¤¨]]
109217 [[sv:Amitabh Bachchan]]
109218 [[he:אמיטאב בא×Ļ'אן]]</text>
109219 </revision>
109220 </page>
109221 <page>
109222 <title>Air Pollution</title>
109223 <id>1830</id>
109224 <revision>
109225 <id>15900293</id>
109226 <timestamp>2002-04-27T07:46:26Z</timestamp>
109227 <contributor>
109228 <username>Chato</username>
109229 <id>159</id>
109230 </contributor>
109231 <minor />
109232 <comment>changed redirect to &amp;quot;Air pollution&amp;quot;</comment>
109233 <text xml:space="preserve">#REDIRECT [[Air pollution]]
109234 </text>
109235 </revision>
109236 </page>
109237 <page>
109238 <title>Antarctic-Environmental Protocol</title>
109239 <id>1831</id>
109240 <revision>
109241 <id>15900294</id>
109242 <timestamp>2002-02-25T15:51:15Z</timestamp>
109243 <contributor>
109244 <ip>Conversion script</ip>
109245 </contributor>
109246 <minor />
109247 <comment>Automated conversion</comment>
109248 <text xml:space="preserve">#REDIRECT [[Protocol on Environmental Protection to the Antarctic Treaty]]
109249 </text>
109250 </revision>
109251 </page>
109252 <page>
109253 <title>Allomorph</title>
109254 <id>1832</id>
109255 <revision>
109256 <id>40198555</id>
109257 <timestamp>2006-02-18T22:23:34Z</timestamp>
109258 <contributor>
109259 <username>Localzuk</username>
109260 <id>687650</id>
109261 </contributor>
109262 <minor />
109263 <comment>[[WP:AWB|AWB assisted]] migrate {{[[template:book reference|book reference]]}} to {{[[template:cite book|cite book]]}}</comment>
109264 <text xml:space="preserve">&lt;!-- Keep this note! Technical term, necessary for wikipedia articles; don't assign for wiktionary --&gt;
109265 ''This article is about a lingustic term. See [[Pseudomorph]] for another meaning of the word.''
109266 ----
109267 In [[linguistics]] an '''allomorph''' is a variant form of a [[morpheme]]. The meaning remains the same, while the sound can vary.
109268
109269 For example, in the [[English language]] the past tense morpheme is -ed. It occurs in several allomorphs depending on its phonological environment, assimilating voicing of the previous segment or inserting a [[schwa]] when following an alveolar stop:
109270
109271 * as {{IPA|/əd/}} in 'hunted' or 'banded',
109272 * as {{IPA|/d/}} in 'buzzed',
109273 * as {{IPA|/t/}} in 'fished'
109274
109275 Allomorphy can also exist in case distinctions, as in Classic [[Sanskrit]]:
109276
109277 {| class=&quot;wikitable&quot;
109278 |+'''Vāk''' (voice)
109279 |-
109280 !
109281 !'''Singular'''
109282 !'''Plural'''
109283 |-
109284 ! [[Nominative]]
109285 |{{IPA|/va&amp;#720;k/}}
109286 |{{IPA|/va&amp;#720;&amp;#679;-as/}}
109287 |-
109288 ! [[Genitive case|Genitive]]
109289 |{{IPA|/va&amp;#720;&amp;#679;-as/}}
109290 |{{IPA|/va&amp;#720;&amp;#679;-a&amp;#720;m/}}
109291 |-
109292 ! [[Instrumental case|Instrumental]]
109293 |{{IPA|/va&amp;#720;&amp;#679;-a&amp;#720;/}}
109294 |{{IPA|/va&amp;#720;g-b&amp;#689;is/}}
109295 |-
109296 ! [[Locative case|Locative]]
109297 |{{IPA|/va&amp;#720;&amp;#679;-i/}}
109298 |{{IPA|/va&amp;#720;k-&amp;#642;i/}}
109299 |}
109300
109301 The nominative {{IPA|/va&amp;#720;k/}} is the basic form of the morpheme and, because of Pre-Indic palatalazation of [[velars]] and the merging of {{IPA|/e/}} and {{IPA|/o/}} into {{IPA|/a/}} (making the alternation unpredictable on phonetic grounds), morphophonemic variation has occurred that isn’t directly related to phonological processes.
109302
109303 ==See also==
109304 * [[Consonant mutation]]
109305 * [[Grassman's Law]]
109306
109307
109308 ==Reference==
109309 *{{cite book|title= Principles and Methods for Historical Linguistics |author= Jeffers, Robert J. and Lehiste, Ilse |year=1979|
109310 publisher= MIT press |}}
109311
109312 {{ling-stub}}
109313
109314 [[Category:Linguistic morphology]]
109315
109316 [[de:Allomorph]]
109317 [[nl:Allomorf]]
109318 [[pl:Allomorf]]
109319 [[sv:Allomorf]]</text>
109320 </revision>
109321 </page>
109322 <page>
109323 <title>American bias</title>
109324 <id>1833</id>
109325 <revision>
109326 <id>15900296</id>
109327 <timestamp>2002-02-25T15:51:15Z</timestamp>
109328 <contributor>
109329 <ip>Conversion script</ip>
109330 </contributor>
109331 <minor />
109332 <comment>Automated conversion</comment>
109333 <text xml:space="preserve">#REDIRECT [[Cultural_imperialism]]
109334 </text>
109335 </revision>
109336 </page>
109337 <page>
109338 <title>Allophone</title>
109339 <id>1834</id>
109340 <revision>
109341 <id>39139570</id>
109342 <timestamp>2006-02-10T23:34:59Z</timestamp>
109343 <contributor>
109344 <username>Chlewbot</username>
109345 <id>620581</id>
109346 </contributor>
109347 <minor />
109348 <comment>robot Adding: gl</comment>
109349 <text xml:space="preserve">''This article is about the sense of &quot;allophone&quot; used in linguistics. For other senses, see [[allophone (disambiguation)]].''
109350
109351 In [[phonetics]], an '''allophone''' is one of several similar [[phone]]s that belong to the same [[phoneme]]. A phone is a sound that has a definite shape as a sound wave, while a phoneme is a basic group of sounds that can distinguish words (i.e. changing one phoneme in a word can produce another word); speakers of a particular language perceive a phoneme as a single distinctive sound in that language. Thus an allophone is a phone considered as a member of one phoneme.
109352
109353 Each allophone is used in a specific phonetic context and many times there is some sort of [[phonology|phonological]] process. Not all phonemes have significantly different allophones, but there are always minor differences in articulation from one piece of speech to the next.
109354
109355 For example, {{IPA|[p&amp;#688;]}} as in ''pin'' and {{IPA|[p]}} as in ''cap'' are allophones for the phoneme /p/ in the [[English language]] because they occur in [[complementary distribution]]. English speakers generally treat these as the same sound, but they are different. The latter is [[unaspirated]] (plain): if plain {{IPA|[p]}} is also found in words such as the second '''p''' in ''paper'' {{IPA|[p&amp;#688;eÉĒ.pɚ]}} or ''spin'' {{IPA|[spÉĒn]}}. Outside of contexts that plain '''p''' appears in English, speakers may hear it as '''b''' since English '''b''' is typically unaspirated.
109356
109357 [[Chinese language|Chinese]] treats these two phones differently and the latter is always written as '''b''' in [[pinyin]]; thus, they are not allophones in Chinese.
109358
109359 Similarly, English-speaking people may become aware of the difference between two allophones of the phoneme '''t''' when they consider the pronunciations of the following phrases:
109360
109361 :night rate
109362 :nitrate
109363
109364 ==See also==
109365 *[[List of phonetics topics]]
109366
109367 [[Category:Phonetics]]
109368 [[Category:Phonology]]
109369
109370 [[br:Alofonenn]]
109371 [[da:Allofon]]
109372 [[de:Allophon]]
109373 [[es:AlÃŗfono]]
109374 [[eo:Alofono]]
109375 [[fr:Allophone]]
109376 [[gl:AlÃŗfono]]
109377 [[ko:ė´ėŒ]]
109378 [[it:Allofono]]
109379 [[he:אלופון]]
109380 [[hu:AllofÃŗn]]
109381 [[nl:Allofoon]]
109382 [[nn:Allofon]]
109383 [[pl:Alofon]]
109384 [[ru:АĐģĐģĐžŅ„ĐžĐŊ]]
109385 [[sco:Allophones]]
109386 [[fi:Allofoni]]
109387 [[sv:Allofon]]</text>
109388 </revision>
109389 </page>
109390 <page>
109391 <title>Affix</title>
109392 <id>1835</id>
109393 <revision>
109394 <id>39117935</id>
109395 <timestamp>2006-02-10T20:59:14Z</timestamp>
109396 <contributor>
109397 <username>Chlewbot</username>
109398 <id>620581</id>
109399 </contributor>
109400 <minor />
109401 <comment>robot Adding: gl</comment>
109402 <text xml:space="preserve">An '''affix''' is a [[morpheme]] that is attached to a base morpheme such as a [[root (linguistics)|root]] or to a [[stem (linguistics)|stem]], to form a word. Affixes may be [[derivation_(linguistics)|derivational]], like English ''-ness'' and ''pre-'', or [[inflection|inflectional]], like English plural ''-s'' and past tense ''-ed''.
109403
109404 ==Types of affixes==
109405 Affixes are divided into several types, depending on their position with reference to the root:
109406
109407 * [[Prefix]]es (attached before another morpheme)
109408 * [[Suffix]]es (attached after another morpheme)
109409 * [[Infix]]es (inserted within another morpheme)
109410 * [[Circumfix]]es (attached before and after another morpheme or set of morphemes)
109411 * [[Interfix]]es (semantically empty linking elements in compounds)
109412 * [[Suprafix]]es (also ''superfix'', attached [[suprasegmental]]ly to another morpheme)
109413 * [[Simulfix]]es (also ''transfix'' or ''root-and-pattern morphology'', discontinuous affix interweaved throughout a discontinuous base)
109414 * [[Duplifix]] (little used term referring to affix composed of both a reduplicated and non-reduplicated element, see [[Reduplication#Reduplication and other processes|Reduplication and other processes]])
109415
109416 Affixes are [[bound morpheme]]s by definition. Prefixes and suffixes may be [[separable affix]]es.
109417
109418 There also has been a proposal of a somewhat different type of affix, a ''[[disfix]]'' or ''subtractive morpheme'', which subtracts phonological segments from bases.
109419
109420 Affixes are central to the process of [[concatenation]].
109421
109422 {| class=&quot;wikitable&quot;
109423 ! affix !! example
109424 |- align=&quot;center&quot;
109425 | prefix || &lt;u&gt;''un''&lt;/u&gt;do&lt;br&gt;''prefix'' + root
109426 |- align=&quot;center&quot;
109427 | suffix || look&lt;u&gt;''ing''&lt;/u&gt;&lt;br&gt;root + ''suffix''
109428 |- align=&quot;center&quot;
109429 | infix &lt;sup&gt;1&lt;/sup&gt; || fan&lt;u&gt;''freaking''&lt;/u&gt;tastic&lt;br&gt;ro- + ''infix'' + -ot
109430 |- align=&quot;center&quot;
109431 | circumfix || [[Kabyle language|Kabyle]]: {{IPA|&lt;u&gt;''θ''&lt;/u&gt;issli&lt;u&gt;''θ''&lt;/u&gt;}} &quot;bride&quot;&lt;br&gt;(compare to {{IPA|issli}} &quot;groom&quot;)&lt;br&gt;''circumfix'' + root + ''circumfix''
109432 |- align=&quot;center&quot;
109433 | suprafix || '''pro'''duce (noun)&lt;br&gt;pro'''duce''' (verb)&lt;br&gt;(changing [[lexical stress|stress]])
109434 |}
109435 &lt;small&gt;&lt;sup&gt;1&lt;/sup&gt; [[English language|English]] [[tmesis|tmeses]], as in this example, are by some considered infixes.&lt;/small&gt;
109436 &lt;br&gt;
109437
109438 ==Lexical affixes==
109439
109440 ''Lexical affixes'' (or ''semantic affixes'') are bound elements that appear as affixes, but function as [[incorporated noun]]s within verbs and as elements of [[compound noun]]s. In other words, they are similar to word roots/stems in function but similar to affixes in form. Although similar to incorporated nouns, lexical affixes differ in that they never occur as freestanding nouns, i.e. they always appear as affixes.
109441
109442 Lexical affixes are relatively rare. The [[Wakashan languages|Wakashan]], [[Salishan languages|Salishan]], and [[Chimakuan languages|Chimakuan]] languages all have lexical suffixes — the presence of these is an [[areal feature]] of the Pacific Northwest of the [[North America]].
109443
109444 The lexical suffixes of these languages often show little to no resemblance to free nouns with similar meanings. Compare the lexical suffixes and free nouns of [[Saanich language|Northern Straits Saanich]] written in the Saanich orthography and in [[Americanist phonetic notation|Americanist notation]]:
109445
109446 {| border=&quot;1&quot; cellpadding=&quot;4&quot; style=&quot;border-collapse: collapse; background: #f9f9f9; margin: 1em 1em 1em 0; vertical-align: top; border: 1px solid #ccc; line-height: 1.2em; font-family: Chrysanthi Unicode, Doulos SIL, Gentium, GentiumAlt, Code2000, TITUS Cyberbit Basic, DejaVu Sans, Bitstream Vera Sans, Bitstream Cyberbit, Arial Unicode MS, Lucida Sans Unicode, Hiragino Kaku Gothic Pro, Matrix Unicode;&quot;
109447 |- style=&quot;font-size: 85%; background: #efefef;&quot;
109448 ! colspan=&quot;3&quot; | Lexical Suffix
109449 ! colspan=&quot;3&quot; | Noun
109450 |-
109451 | -O,
109452 | -aʔ
109453 | &quot;person&quot;
109454 | ,ELĖļTÁLᚈEWĖą
109455 | ʔəÉŦtelŋəxʡ
109456 | &quot;person&quot;
109457 |-
109458 | -NÁT
109459 | -net
109460 | &quot;day&quot;
109461 | SCĖ¸IĆEL
109462 | skʷičəl
109463 | &quot;day&quot;
109464 |-
109465 | -SEN
109466 | -sən
109467 | &quot;foot, lower leg&quot;
109468 | SXENE,
109469 | sxĖŖənəʔ
109470 | &quot;foot, lower leg&quot;
109471 |-
109472 | -ÁWTWĖą
109473 | -ewĖ•txʡ
109474 | &quot;building, house, campsite&quot;
109475 | ,Á,LEᚈ
109476 | ʔeʔləŋ
109477 | &quot;house&quot;
109478 |}
109479
109480 Lexical suffixes when compared with free nouns often have a more generic or general meaning. For instance, one of these languages may have a lexical suffix that means water in a general sense, but it may not have any noun equivalent referring to water in general and instead have several nouns with a more specific meaning (such &quot;saltwater&quot;, &quot;whitewater&quot;, etc.). In other cases, the lexical suffixes have become [[grammaticalization|grammaticalized]] to various degrees.
109481
109482 Some linguists have claimed that these lexical suffixes provide only adverbial or adjectival notions to verbs. Other linguists disagree arguing that they may additionally be syntactic [[Verb argument|arguments]] just as free nouns are and thus equating lexical suffixes with incorporated nouns. Gerdts (2003) gives examples of lexical suffixes in the [[Halkomelem language]] (the [[word order]] here is [[Verb Subject Object]]):
109483
109484 :{| cellpadding=&quot;5&quot; vertical-align: top; border: 1px solid #ccc; line-height: 1.2em; text-align: center; font-family: Chrysanthi Unicode, Doulos SIL, Gentium, GentiumAlt, Code2000, TITUS Cyberbit Basic, DejaVu Sans, Bitstream Vera Sans, Bitstream Cyberbit, Arial Unicode MS, Lucida Sans Unicode, Hiragino Kaku Gothic Pro, Matrix Unicode;&quot;
109485 |- style=&quot;line-height: 1.0em; font-size: 75%&quot;
109486 |
109487 |
109488 | style=&quot;background: #bbbbff&quot; | VERB
109489 | style=&quot;background: #ffebad&quot; | SUBJ
109490 | style=&quot;background: #ffbbbb&quot; | OBJ
109491 |-
109492 | (1)
109493 | niʔ
109494 | ÅĄak’ʷ-ət-əs
109495 | łə słeniʔ
109496 | &lt;span style=&quot;color:#008000&quot;&gt;&lt;u&gt;łə qeq&lt;/u&gt;&lt;/span&gt;
109497 |-
109498 |
109499 | colspan=&quot;3&quot; | &quot;the woman bathed &lt;span style=&quot;color:#008000&quot;&gt;&lt;u&gt;the baby&lt;/u&gt;&lt;/span&gt;&quot;
109500 |- style=&quot;line-height: 1.0em; font-size: 75%&quot;
109501 | &amp;nbsp;
109502 |- style=&quot;line-height: 1.0em; font-size: 75%&quot;
109503 |
109504 |
109505 | style=&quot;background: #bbbbff&quot; | VERB&lt;span style=&quot;color:#800000&quot;&gt;+LEX.SUFF&lt;/span&gt;
109506 | style=&quot;background: #ffebad&quot; | SUBJ
109507 |
109508 |-
109509 | (2)
109510 | niʔ
109511 | ÅĄk’ʷ&lt;span style=&quot;color:#800000&quot;&gt;&lt;u&gt;-əyəł&lt;/u&gt;&lt;/span&gt;
109512 | łə słeniʔ
109513 |
109514 |-
109515 |
109516 | colspan=&quot;3&quot; | &quot;the woman bathed &lt;span style=&quot;color:#800000&quot;&gt;&lt;u&gt;the/a baby&lt;/u&gt;&lt;/span&gt;&quot;
109517 |}
109518
109519 In sentence (1), the verb &quot;bathe&quot; is {{unicode|'''ÅĄak’ʷətəs'''}} where {{unicode|'''ÅĄak’ʷ-'''}} is the root and {{unicode|'''-ət'''}} and {{unicode|'''-əs'''}} are inflectional suffixes. The subject &quot;the woman&quot; is {{unicode|'''łə słeniʔ'''}} and the object &lt;span style=&quot;color:#008000&quot;&gt;&quot;the baby&quot;&lt;/span&gt; is &lt;span style=&quot;color:#008000&quot;&gt;{{unicode|'''łə qeq'''}}&lt;/span&gt;. In this sentence, &quot;the baby&quot; is a free noun. (The {{unicode|'''niʔ'''}} here is an [[auxiliary]], which can be ignored for explanatory purposes.)
109520
109521 In sentence (2), &lt;span style=&quot;color:#800000&quot;&gt;&quot;the/a baby&quot;&lt;/span&gt; does not appear as a free noun. Instead it appears as the lexical suffix &lt;span style=&quot;color:#800000&quot;&gt;{{unicode|'''-əyəł'''}}&lt;/span&gt; which is affixed to the verb root {{unicode|'''ÅĄk’ʷ-'''}} (which has changed slightly in pronunciation, but this can also be ignored here). Note how the lexical suffix may be translated as either &quot;the baby&quot; (definite) or &quot;a baby&quot; (indefinite): this change in [[definiteness]] is a common change in meaning that happens with incorporated nouns.
109522
109523 ==See also==
109524
109525 * [[Derivation (linguistics) | Derivation]]
109526 * [[List of English prefixes]]
109527 * [[List of English suffixes]]
109528 * [[Family name affixes]]
109529 * [[Combining form]]
109530
109531 ==Bibliography==
109532
109533 * Gerdts, Donna B. (2003). The morphosyntax of Halkomelem lexical suffixes. ''International Journal of American Linguistics'', ''69'' (4), 345-356.
109534 * Montler, Timothy. (1986). ''An outline of the morphology and phonology of Saanich, North Straits Salish''. Occasional Papers in Linguistics (No. 4). Missoula, MT: University of Montana Linguistics Laboratory.
109535 * Montler, Timothy. (1991). ''Saanich, North Straits Salish classified word list''. Canadian Ethnology service paper (No. 119); Mercury series. Hull, Quebec: Canadian Museum of Civilization.
109536
109537 [[Category:Linguistic morphology]]
109538 [[Category:Affixes|*]]
109539
109540 [[cv:АŅ„Ņ„иĐēŅ]]
109541 [[de:Affix#Affixe in der klassischen Linguistik]]
109542 [[es:Afijo]]
109543 [[eo:Afikso]]
109544 [[fr:Affixe]]
109545 [[gl:Afixo]]
109546 [[is:Aðskeyti]]
109547 [[nl:Affix]]
109548 [[ja:æŽĨ辞]]
109549 [[pl:Afiks]]
109550 [[pt:Afixo]]
109551 [[sv:Affix]]
109552 [[zh:詞įļ´]]</text>
109553 </revision>
109554 </page>
109555 <page>
109556 <title>Allegory</title>
109557 <id>1837</id>
109558 <revision>
109559 <id>41477317</id>
109560 <timestamp>2006-02-27T16:52:50Z</timestamp>
109561 <contributor>
109562 <username>Buchanan-Hermit</username>
109563 <id>775423</id>
109564 </contributor>
109565 <minor />
109566 <comment>Reverted edits by [[Special:Contributions/163.153.27.11|163.153.27.11]] to last version by Colonies Chris</comment>
109567 <text xml:space="preserve">An '''allegory''' (from [[Greek language|Greek]] &amp;alpha;&amp;lambda;&amp;lambda;&amp;omicron;&amp;sigmaf;, ''allos'', &quot;other&quot;, and &amp;alpha;&amp;gamma;&amp;omicron;&amp;rho;&amp;epsilon;&amp;upsilon;&amp;epsilon;&amp;iota;&amp;nu;, ''agoreuein,'' &quot;to speak in public&quot;) is a figurative mode of [[representation (arts)|representation]] conveying a [[meaning]] other than and in addition to the literal. Through allegory a subject of a higher spiritual order is described in terms of that of a lower which is made out to resemble it in properties and circumstances, the principal subject being so kept out of view that we are left to construe the drift of it from the resemblance of the two subjects.
109568
109569 Allegory is generally treated as a figure of [[rhetoric]], but an allegory does not have to be expressed in [[language]]: it may be addressed to the eye, and is often found in [[painting]], [[sculpture]] or some form of [[mimetic art]]. The [[etymology|etymological]] meaning of the word is wider than that which it bears in actual use. Though it is similar to other rhetorical comparisons, an allegory is sustained longer and more fully in its details than a [[metaphor]], and appeals to imagination where an [[analogy]] appeals to reason. The [[fable]] or [[parable]] is a short allegory with one definite moral.
109570
109571 [[Northrop Frye]] discussed the continuum of allegory from what he termed the &quot;naive allegory&quot; of ''The Faerie Queen'' to the more private allegories of modern paradox literature. The characters in a &quot;naive&quot; allegory are not fully three-dimensional, for each aspect of their individual personalities and the events that befall them embodies some moral quality or other abstraction. The allegory has been selected first: the details merely flesh it out.
109572
109573 Since meaningful stories are always applicable to larger issues, allegories may be read into many stories, sometimes distorting their author's overt meaning. For instance, many people have suggested that [[The Lord of the Rings]] was an allegory for the [[world war|World Wars]], an interpretation which the author sharply denied, stating, &quot;I cordially dislike allegory in all of its manifestations.&quot;
109574
109575 The allegory has been a favourite form in the literature of nearly every nation. The Hebrew scriptures present frequent instances of it, an example of which is the comparison of the history of Israel to the growth
109576 of a vine in {{Bibleverse|Psalm||80:8-17|}}. In the Rabbinic tradition fully-developed allegorical readings were applied to every text, with every detail of the narrative given an [[emblem]]atic reading. A particularly important case is the [[Song of Solomon|Song of Songs]], which was accepted as [[Biblical canon|canonical]] only because of an allegorical reading. This tradition of Biblical interpretation was inherited by Christian writers, for whom allegorical similitudes are the basis of [[exegesis]], the origin of the arts of [[hermeneutics]]. The late Jewish and Early Christian visionary [[Apocalyptic literature]], with its base in the ''[[Book of Daniel]]'', presents allegorical figures, of which the [[Whore of Babylon]] and the Beast of ''Revelation'' are the most familiar.
109577
109578 In classical literature two of the best-known allegories are the cave of shadowy representations in [[Plato]]'s ''[[Republic]]'' (Book VII) and the story of the stomach and its members in the speech of Menenius Agrippa ([[Livy]] ii. 32); and several occur in [[Ovid]]'s ''[[Metamorphoses (poem)|Metamorphoses]].'' In Late Antiquity [[Martianus Capella]] organized all the information a 5th-century upper-class male needed to know into an allegory of the wedding of Mercury and ''Philologia,'' with the seven [[liberal arts]] as guests, an allegory that was widely read through the Middle Ages.
109579
109580 Medieval thinking accepted allegory as having a ''reality'' underlying any rhetorical or fictional uses. The allegory was as true as superficial facts. Thus, the bull ''[[Unam Sanctam]]'' (1302) presents themes of the unity of [[Christendom]] with the pope as its head in which the allegorical details of the metaphors are adduced as ''actual facts'' which take the place of a logical demonstration, employing the vocabulary of logic: &quot;''Therefore'' of this one and only Church there is one body and one head—not two heads as if it were a monster... If, then, the Greeks or others say that they were not committed to the care of Peter and his successors, they ''necessarily'' confess that they are not of the sheep of Christ&quot; [http://en.wikisource.org/wiki/Unam_sanctam (complete text)].
109581
109582 In the late 15th century, the enigmatic ''[[Hypnerotomachia]]'', with its elaborate woodcut illustrations, shows the influence of themed pageants and [[masque]]s on contemporary allegorical representation, as [[Renaissance humanism|humanist dialectic]] conveyed them.
109583
109584 Some elaborate and successful specimens of allegory are to be found in the following works, arranged in approximately chronological order:
109585 * [[Aesop]] &amp;ndash; ''[[Aesop's Fables| Fables]]''
109586 * [[Plato]] &amp;ndash; ''[[Plato's Republic|The Republic]]'' (''[[Plato's allegory of the cave]]'')
109587 * [[Plato]] &amp;ndash; ''[[Phaedrus (dialogue)|Phaedrus]]'' (''[[Chariot Allegory]]'')
109588 * ''[[Book of Revelation]]'' (for allegory in Christian theology, see [[typology (theology)]])
109589 * [[Martianus Capella]] &amp;ndash; ''De nuptiis philologiÃĻ et Mercurii''
109590 * ''[[The Romance of the Rose]]''
109591 * [[William Langland]] &amp;ndash; ''[[Piers Plowman]]''
109592 *[[Pearl (poem)|Pearl]]
109593 * [[Dante Alighieri]] &amp;ndash; ''[[The Divine Comedy]]''
109594 * [[Edmund Spenser]] &amp;ndash; ''[[The Faerie Queene]]''
109595 * [[John Bunyan]] &amp;ndash; ''[[Pilgrim's Progress]]''
109596 * [[Jean de La Fontaine]] &amp;ndash; ''Fables''
109597 * [[Jonathan Swift]] &amp;ndash; ''[[A Tale of a Tub]]''
109598 * [[Joseph Addison]] &amp;ndash; ''Vision of Mirza''
109599 * [[Edgar Allan Poe]] &amp;ndash; ''[[The Masque of the Red Death]]''
109600 Modern allegories in fiction tend to operate under constraints of modern requirements for [[verisimilitude]] within conventional expectations of [[realism (arts)|realism]]. Works of fiction with strong allegorical overtones include:
109601 * [[William Golding]] &amp;ndash; ''[[Lord of the Flies (novel)|Lord of the Flies]]''
109602 * [[George Orwell]] &amp;ndash; ''[[Animal Farm]]''
109603 * [[Arthur Miller]] &amp;ndash; ''[[The Crucible]]''
109604 * [[Philip Pullman]] &amp;ndash; ''[[His Dark Materials]]''
109605 * [[Hualing Nieh]] &amp;ndash; ''[[Mulberry and Peach]]''
109606 * [[David Lindsay (novelist)|David Linday]] &amp;ndash; ''A Voyage to Arcturus'
109607
109608 Where some requirements of &quot;realism&quot;, in its flexible meanings, are set aside, allegory can come more strongly to the surface, as in the work of [[Bertold Brecht]] or [[Franz Kafka]] on one hand, or on the other in science fiction and fantasy, where an element of universal application and allegorical overtones are common, from ''[[Dune (novel)|Dune]]'' to ''[[The Chronicles of Narnia]]''.
109609
109610 Allegorical films include:
109611 * [[Fritz Lang]]'s ''[[Metropolis (movie)|Metropolis]]''
109612 * [[Ingmar Bergman]]'s ''[[The Seventh Seal]]''
109613 * ''[[El Topo]]'' etc.
109614 Allegorical artworks include:
109615 * [[Sandro Botticelli]] &amp;ndash; ''La Primavera (Allegory of Spring)''
109616 * [[Albrecht DÃŧrer]] &amp;ndash; ''[[Melancholia I]]''
109617 * [[Artemisia Gentileschi]] &amp;ndash; ''Self-Portrait as the Allegory of Painting''; ''Allegory of Inclination''
109618 * [[Jan Vermeer]] &amp;ndash; ''The Allegory of Painting''
109619
109620 ==See also==
109621 *[[Allegory in the Middle Ages]]
109622 *[[Allegorical sculpture]]
109623 *[[Roman à clef]]
109624
109625 ==External links==
109626 *[http://www.tnellen.com/cybereng/lit_terms/allegory.html Good brief definition of Allegory]
109627 *[http://etext.lib.virginia.edu/cgi-local/DHI/dhi.cgi?id=dv1-07 ''Dictionary of the History of Ideas'':] Allegory in Literary history
109628 *[http://scholar.lib.vt.edu/ejournals/ElAnt/V1N5/levis.html ''Electronic Antiquity'', Richard Levis, &quot;Allegory and the ''Eclogues''&quot;] Roman definitions of ''allegoria'' and interpreting Vergil's ''[[Eclogue]]s''.
109629
109630 ==Further reading==
109631 *[[Northrop Frye|Frye, Northrop]], 1957. ''[[Anatomy of Criticism]]''
109632
109633 [[Category:Rhetoric]]
109634
109635 [[cs:Alegorie]]
109636 [[da:Allegori]]
109637 [[de:Allegorie]]
109638 [[es:Alegoría]]
109639 [[eo:Alegorio]]
109640 [[fr:AllÊgorie]]
109641 [[gl:Alegoría]]
109642 [[io:Alegorio]]
109643 [[ia:Allegoria]]
109644 [[it:Allegoria]]
109645 [[he:אלגוריה]]
109646 [[hu:AllegÃŗria]]
109647 [[nl:Allegorie (letterkunde)]]
109648 [[no:Allegori]]
109649 [[nn:Allegori]]
109650 [[pl:Alegoria]]
109651 [[sk:Inotaj]]
109652 [[sv:Allegori]]
109653 [[uk:АĐģĐĩĐŗĐžŅ€Ņ–Ņ]]</text>
109654 </revision>
109655 </page>
109656 <page>
109657 <title>Amazon river</title>
109658 <id>1838</id>
109659 <revision>
109660 <id>15900301</id>
109661 <timestamp>2002-02-25T15:51:15Z</timestamp>
109662 <contributor>
109663 <ip>Conversion script</ip>
109664 </contributor>
109665 <minor />
109666 <comment>Automated conversion</comment>
109667 <text xml:space="preserve">#REDIRECT [[Amazon River]]
109668 </text>
109669 </revision>
109670 </page>
109671 <page>
109672 <title>Allotropy</title>
109673 <id>1839</id>
109674 <revision>
109675 <id>41612128</id>
109676 <timestamp>2006-02-28T14:35:53Z</timestamp>
109677 <contributor>
109678 <username>Wayward</username>
109679 <id>184087</id>
109680 </contributor>
109681 <minor />
109682 <comment>Reverted edits by [[Special:Contributions/207.165.43.10|207.165.43.10]] ([[User talk:207.165.43.10|talk]]) to last version by Chobot</comment>
109683 <text xml:space="preserve">{{expert}}
109684 {{Sections}}
109685 [[Image:Allotropy.jpg|thumb|right|Example of allotropic materials: graphite vs. Diamond]]
109686 '''Allotropy''' (Gr. ''allos'', other, and ''tropos'', manner), a name
109687 applied by [[JÃļns Jakob Berzelius]] to the property possessed by certain
109688 substances of existing in forms with different chemical structures; the various forms are known as ''allotropes''. JÃļns Jakob Berzelius used the name in an entirely different sense (see Macmillan Encyclopedia of Chemistry, edited by J.J.Lagowski, 1997, Simon Schuster).
109689
109690 Some classic examples of elements that have allotropes are [[phosphorus]] (in &quot;red&quot;, &quot;white&quot;, &quot;purple&quot; etc. forms), [[oxygen]] (O&lt;sub&gt;2&lt;/sub&gt;, [[ozone|O&lt;sub&gt;3&lt;/sub&gt;]], and [[tetraoxygen|O&lt;sub&gt;4&lt;/sub&gt;]]) and [[carbon]] (in the form of [[graphite]], [[diamond]], [[fullerenes]], and others - see [[allotropes of carbon]]). The term allotropes may also be used to refer to the molecular forms of an element (such as a diatomic gas), even if there is only one such additional form.
109691
109692 [[Sulfur]] is an additional example of an element with several allotropic forms. Amorphous (plastic sulfur) is produced by quickly cooling the crystalline form, generating helical structure with eight atoms per spiral.
109693
109694 Allotropy specifically refers to the chemical bond structure between atoms of the same kind and should not be confused with the existence of [[phases of matter|multiple physical states]], such as with [[water]], which can exist as a [[gas]] ([[steam]]), a [[liquid]] (water), or a [[solid]] ([[ice]]). These phases of water are not allotropes, since they are caused by changes in the physical bonding between water molecules, rather than changes in the chemical bonding of the water molecules themselves. Allotropes of an element can be in any state, gaseous, liquid, or solid.
109695
109696 Allotropy usually refers to pure elemental solids, while [[allotropy|polymorphism]] may refer to elemental solids or more generally to any material having multiple crystal structures.
109697
109698 As can be seen with the example of carbon allotropes, certain physical properties can vary dramatically from allotrope to allotrope. In diamond, carbon [[atom]]s are connected each to four other carbon atoms in a [[tetrahedron|tetrahedral]] lattice structure, whereas in graphite, each carbon atom is firmly bonded to just three other carbon atoms in [[hexagon]]al sheets. These hexagonal sheets are then more loosely coupled to one another in stacks. The structure of fullerenes (a [[carbon]] allotrope found in [[soot]]) resembles that of graphite, except that instead of hexagons of carbon atoms, smaller regular [[polygon]]s are formed, such as a mix of hexagons and [[pentagon]]s, such that the sheet can fold back onto itself into closed [[spheroid]]s, as with the seams of a [[soccer]] ball.
109699 Allotropes not only show dramatic differences in physical properties but also
109700 show differences in chemical properties. Graphite can be oxidized by [[nitric acid]] to give compounds related to [[benzene]] whereas diamond does not give compounds related to benzene.
109701 ==See also==
109702 *[[Tin pest]]
109703 *[[Allotropes of carbon]]
109704
109705 [[Category:Inorganic chemistry]]
109706
109707 [[ar:ØĒØĸØĩŲ„]]
109708 [[ca:Al¡lotropia]]
109709 [[de:Allotropie]]
109710 [[et:Allotroopia]]
109711 [[es:Alotropía]]
109712 [[eo:Alotropo]]
109713 [[fr:Allotropie]]
109714 [[ko:동ė†Œė˛´]]
109715 [[is:FjÃļlgervi]]
109716 [[it:Allotropia]]
109717 [[he:אלוטרופיה]]
109718 [[hu:AllotrÃŗpia]]
109719 [[ms:Alotrop]]
109720 [[nl:Allotroop]]
109721 [[ja:同į´ äŊ“]]
109722 [[nn:Allotrope former]]
109723 [[pl:Alotropia]]
109724 [[pt:Alotropia]]
109725 [[ru:АĐģĐģĐžŅ‚Ņ€ĐžĐŋиŅ]]
109726 [[sl:Alotropija]]
109727 [[fi:Allotropia]]
109728 [[tr:Allotrop]]
109729 [[uk:АĐģĐžŅ‚Ņ€ĐžĐŋŅ–Ņ]]
109730 [[zh:同į´ åŧ‚åŊĸäŊ“]]</text>
109731 </revision>
109732 </page>
109733 <page>
109734 <title>Agathocles</title>
109735 <id>1840</id>
109736 <revision>
109737 <id>39478656</id>
109738 <timestamp>2006-02-13T16:35:25Z</timestamp>
109739 <contributor>
109740 <ip>213.41.174.227</ip>
109741 </contributor>
109742 <comment>fr:</comment>
109743 <text xml:space="preserve">{{otheruses}}
109744
109745 '''Agathocles''' ([[361 BC]]-[[289 BC]]), [[tyrant]] of [[Syracuse, Italy|Syracuse]] ([[317 BC]]-[[289 BC]]) and king of [[Sicily]] ([[304 BC]]-[[289 BC]]).
109746
109747 [[Image:agathocles coin.jpg|thumb|200px|right|Coin of Agathocles.]]
109748
109749 He was born at Thermae Himeraeae (modern name [[Termini Imerese]]) in Sicily. The son of a [[pottery|potter]] who had moved to Syracuse in about [[343 BC]], he learned his father's trade, but afterwards entered the army. In [[333 BC]] he married the [[widow]] of his patron Damas, a distinguished and wealthy citizen. He was twice [[banishment|banished]] for attempting to overthrow the [[oligarchy|oligarchical]] party in Syracuse.
109750
109751 In [[317 BC]] he returned with an army of [[mercenary|mercenaries]] under a solemn oath to observe the [[democracy|democratic]] [[constitution]] which was then set up. Having banished or murdered some 10,000 citizens, and thus made himself master of Syracuse, he created a strong army and fleet and subdued the greater part of Sicily.
109752
109753 War with [[Carthage]] followed. In [[311 BC]] Agathocles was [[siege|besieged]] and defeated in Syracuse in [[Battle of Himera (311 BC)|the battle of Himera]]. After defeat in [[310 BC]] he took the desperate resolve of breaking through the [[blockade]] and attacking the enemy in [[Africa]]. In Africa he concluded the treaty with [[Ophellas]], ruler of [[Cyrenaica]]. After several victories he was at last completely defeated ([[307 BC]]) and fled secretly to Sicily.
109754
109755 After concluding peace with Carthage in [[306 BC]], Agathocles styled himself king of Sicily in [[304 BC]], and established his rule over the [[Greece|Greek]] cities of the island more firmly than ever. A peace treaty with Carthage left him in control of Sicily east of the [[Halycus River]]. Even in his old age he displayed the same restless energy, and is said to have been contemplating a fresh attack on Carthage at the time of his death.
109756
109757 His last years were harassed by ill-health and the turbulence of his grandson [[Archagathus]], at whose instigation he is said to have been [[poison|poisoned]]; according to others, he died a natural death. He was a born leader of mercenaries, and, although he did not shrink from cruelty to gain his ends, he afterwards showed himself a mild and popular &quot;tyrant.&quot; Agathocles restored the Syracusan democracy on his death bed and did not want his sons to succeed him as king.
109758
109759 Agathocles married [[Theoxena]], stepdaughter of [[Ptolemy I of Egypt]]. His daughter [[Lanassa]] married King [[Pyrrhus of Epirus]].
109760
109761 ==Sources==
109762 * [[Junianus Justinus|Justin]]
109763 * [[Diodorus Siculus]] xix., xxi., xxii. (follows generally Timaeus who had a special grudge against Agathocles)
109764 * [[Polybius]] ix. 23
109765
109766 ==References==
109767 * Schubert, (1887) ''Geschichte des Agathokles''
109768 * Grote, ''History of Greece'', ch. 97.
109769
109770 {{1911}}
109771
109772 [[Category:361 BC births]]
109773 [[Category:289 BC deaths]]
109774 [[Category:Ancient Greek generals]]
109775 [[Category:Sicilian tyrants]]
109776
109777 [[de:Agathokles von Syrakus]]
109778 [[es:Agatocles]]
109779 [[fr:Agathoclès de Syracuse]]
109780 [[pl:Agatokles (tyran Syrakuz)]]
109781 [[sv:Agathokles]]
109782 [[zh:é˜ŋ加托克刊斯]]</text>
109783 </revision>
109784 </page>
109785 <page>
109786 <title>Industry in Alberta</title>
109787 <id>1841</id>
109788 <revision>
109789 <id>34900031</id>
109790 <timestamp>2006-01-12T16:20:44Z</timestamp>
109791 <contributor>
109792 <username>Circeus</username>
109793 <id>98785</id>
109794 </contributor>
109795 <minor />
109796 <comment>rm {{alberta}}</comment>
109797 <text xml:space="preserve">The primary '''[[Industry|industries]] in [[Alberta]]''', [[Canada]] are [[Energy development|energy]], [[logging|lumber]], and [[Agriculture|farming]] and [[ranching]].
109798
109799 While [[gold]] and other [[mining]] operations still exist from the time of the [[Klondike Gold Rush]], they have diminished in importance as [[petroleum|oil]] and [[natural gas|gas]] extraction have achieved dominance in the [[1980s]] and [[1990s]].
109800
109801 Vast beds of [[coal]] are found extending for hundreds of miles, a short distance below the surface of the plains. The coal belongs to the [[Cretaceous]] beds, and while not so heavy as that of the Coal Measures in [[England]] is of excellent quality. In the valley of the [[Bow River]], alongside the [[Canadian Pacific Railway]], valuable beds of anthracite coal are still worked. The usual coal deposits of the Province of Alberta are of bituminous or semi-bituminous coal. These are largely worked at [[Lethbridge, Alberta|Lethbridge]] in southern Alberta and [[Edmonton, Alberta|Edmonton]] in the centre of the province. Many other parts of the province have pits for private use.
109802
109803 Notable gas reserves were discovered in the [[1890s]], when the town of [[Medicine Hat, Alberta|Medicine Hat]] began using gas for lighting the town, and suppling light and fuel for the people, and a number of industries using the gas for manufacturing. In fact a large glassworks was established at Redcliff. When Rudyard Kipling visited Medicine Hat he described it as the city &quot;with all hell for a basement.&quot;
109804
109805 Since the early [[1940s]], Alberta had supplied oil and gas to the rest of Canada and the [[United States]]. The [[Athabasca River]] region, as well as localities far north on the [[Mackenzie River]], produce oil for internal and external use. The [[Athabasca Oil Sands]] contain the largest proven reserves of oil in the world. [[Natural gas]] has been found at several points, and in 1999, the production of natural gas liquids ([[ethane]], [[propane]], and [[butane|butanes]]) totaled 172.8 million barrels (27,000,000 m&amp;sup3;), valued at $2.27 billion. Alberta also provides 13% of all the natural gas used in the United States.
109806
109807 In 1999, [[lumber]] products from Alberta were valued at $4.1 billion of which 72% were exported around the world. Since forests cover approximately 59% of the province's land area, the government allows about 23,300,000 cubic metres to be harvested annually from the forests on public lands.
109808
109809 In the past, [[cattle]], [[horses]], and [[domestic sheep|sheep]] were reared in the southern prairie region on ranches or smaller holdings. Currently Alberta produces cattle valued at over $3.3 billion, as well as other livestock in lesser quanities. In this region [[irrigation]] is widely used. [[Wheat]], accounting for almost half of the $2 billion agricultural economy, is supplemented by [[canola]], [[barley]], [[rye]], [[sugar beets]], and other mixed farming.
109810
109811 Alberta is the richest province in Canada (GDP per capita wise) and if it were its own country, it would be ranked second richest in the world (after Luxembourg). The average Albertan salary is more than $7,000 US higher than the American average. If oil prices do not collapse, then within a few short years Albertans are expected to have not only the highest salaries in the world but also the highest quality of life.
109812
109813 [[Category:Alberta]]</text>
109814 </revision>
109815 </page>
109816 <page>
109817 <title>Augustin Louis Cauchy</title>
109818 <id>1842</id>
109819 <revision>
109820 <id>40589465</id>
109821 <timestamp>2006-02-21T17:45:19Z</timestamp>
109822 <contributor>
109823 <username>Predr</username>
109824 <id>395615</id>
109825 </contributor>
109826 <minor />
109827 <comment>+da</comment>
109828 <text xml:space="preserve">[[Image:Augustin_Louis_Cauchy.JPG|thumb|250px|right|Augustin Louis Cauchy]]
109829
109830 '''Augustin Louis Cauchy''' ([[August 21]], [[1789]] &amp;ndash; [[May 23]],[[1857]]) was a [[France|French]] [[mathematician]]. He started the project of formulating and proving the theorems of [[calculus]] in a rigorous manner and was thus an early pioneer of [[mathematical analysis|analysis]]. He also gave several important theorems in [[complex analysis]] and initiated the study of [[permutation group]]s. A profound mathematician, Cauchy exercised by his perspicuous and rigorous methods a great influence over his contemporaries and successors. His writings cover the entire range of mathematics and [[mathematical physics]].
109831
109832 Having received his early education from his father [[Louis François Cauchy]] ([[1760]]&amp;ndash;[[1848]]), who held several minor public appointments and counted [[Joseph Louis Lagrange|Lagrange]] and [[Pierre-Simon Laplace|Laplace]] among his friends, Cauchy entered the [[École Centrale du PanthÊon]] in [[1802]], and proceeded to the [[École Polytechnique]] in [[1805]], and to the [[École Nationale des Ponts et ChaussÊes]] in [[1807]]. Having adopted the profession of an [[Engineering|engineer]], he left [[Paris]] for [[Cherbourg]] in [[1810]], but returned in [[1813]] on account of his health, whereupon Lagrange and Laplace persuaded him to renounce engineering and to devote himself to mathematics. He obtained an appointment at the École Polytechnique, which, however, he relinquished in [[1830]] on the accession of [[Louis-Philippe_of_France|Louis-Philippe]], finding it impossible to take the necessary oaths. A short sojourn at [[Fribourg]] in [[Switzerland]] was followed by his appointment in [[1831]] to the newly-created chair of mathematical physics at the [[University of Turin]].
109833
109834 In [[1833]] the deposed king [[Charles X of France]] summoned Cauchy to be tutor to his grandson, the duke of [[Bordeaux]], an appointment which enabled Cauchy to travel and thereby become acquainted with the favourable impression which his investigations had made. Charles created him a [[baron]] in return for his services. Returning to Paris in [[1838]], Cauchy refused a proffered chair at the [[Collège de France]], but in [[1848]], the oath having been suspended, he resumed his post at the École Polytechnique, and when the oath was reinstituted after the [[coup d'Êtat]] of [[1851]], Cauchy and [[François Arago]] were exempted from it.
109835
109836 Cauchy had two brothers: [[Alexandre Laurent Cauchy]] ([[1792]]&amp;ndash;[[1857]]), who became a president of a division of the court of appeal in [[1847]], and a judge of the court of cassation in [[1849]]; and [[Eugène François Cauchy]] ([[1802]]&amp;ndash;[[1877]]), a publicist who also wrote several mathematical works.
109837
109838 The genius of Cauchy was illustrated in his simple solution of the [[Apollonian gasket|problem of Apollonius]], i.e. to describe a [[circle]] touching three given circles, which he discovered in [[1805]], his generalization of [[Euler's theorem]] on [[polyhedra]] in [[1811]], and in several other elegant problems. More important is his memoir on [[wave]] propagation, which obtained the Grand Prix of the Institut in [[1816]]. His greatest contributions to mathematical science are enveloped in the rigorous methods which he introduced. These are mainly embodied in his three great treatises, ''Cours d'analyse de l'École Polytechnique'' ([[1821]]); ''Le Calcul infinitÊsimal'' ([[1823]]); ''Leçons sur les applications de calcul infinitÊsimal''; ''La gÊomÊtrie'' ([[1826]]&amp;ndash;[[1828]]); and also in his ''Courses of mechanics'' (for the École Polytechnique), ''Higher algebra'' (for the [[FacultÊ des Sciences]]), and of ''Mathematical physics'' (for the Collège de France). His treatises and contributions to scientific journals (to the number of 789) contain investigations on the theory of series (where he developed with perspicuous skill the notion of convergency), on the theory of numbers and complex quantities, the theory of groups and substitutions, the theory of functions, differential equations and determinants. He clarified the principles of the calculus by developing them with the aid of limits and continuity, and was the first to prove [[Taylor's theorem]] rigorously, establishing his well-known form of the remainder. In [[mechanics]], he made many researches, substituting the notion of the continuity of geometrical displacements for the principle of the continuity of matter. In [[optics]], he developed the wave theory, and his name is associated with the simple dispersion formula. In [[elasticity]], he originated the theory of [[stress (physics)|stress]], and his results are nearly as valuable as those of [[Simeon Poisson]].
109839
109840 He was the first to prove the [[Fermat polygonal number theorem]].
109841
109842 He created the [[residue theorem]] and used it to derive a whole host of most interesting series and integral formulas.
109843
109844 He was the first to define complex numbers as pairs of real numbers.
109845
109846 He discovered many of the basic formulas in the theory of [[q-series]].
109847
109848 His collected works, ''&amp;#338;uvres complètes d'Augustin Cauchy'', have been published in 27 volumes.
109849
109850 ==See also==
109851
109852 * [[Cauchy integral theorem]]
109853 * [[Cauchy's integral formula]]
109854 * [[Cauchy-Schwarz inequality]]
109855 * [[Cauchy distribution]]
109856 * [[Cauchy determinant]]
109857 * [[Cauchy formula for repeated integration]]
109858 * [[Cauchy sequence]]
109859 * [[Cauchy-Riemann equations]]
109860 * [[Cauchy-Frobenius lemma]]
109861 * [[Cauchy product]]
109862 * [[Cauchy principal value]]
109863 * [[Cauchy-Binet formula]]
109864 * [[Cauchy-Euler equation]]
109865 * [[Cauchy's equation]]
109866 * [[Cauchy problem]]
109867 * [[Cauchy horizon]]
109868 * [[Cauchy boundary condition]]
109869 * [[Cauchy surface]]
109870 * [[Cauchy-Kovalevskaya theorem]]
109871 * [[Maclaurin-Cauchy test]]
109872 * [[Cauchy's radical test]]
109873 * [[Cauchy (crater)]]
109874
109875 ==External links==
109876
109877 * {{MacTutor Biography|id=Cauchy}}
109878 * [http://planetmath.org/encyclopedia/CauchyCriterionForConvergence.html Cauchy criterion for convergence]
109879 ==References==
109880 *{{1911}}
109881
109882 [[Category:1789 births|Cauchy, Augustin Louis]]
109883 [[Category:1857 deaths|Cauchy, Augustin Louis]]
109884 [[Category:19th century mathematicians|Cauchy, Augustin Louis]]
109885 [[Category:French mathematicians|Cauchy, Augustin Louis]]
109886 [[Category:Alumni of the École Polytechnique|Cauchy, Augustin Louis]]
109887 [[Category:Christians in science|Cauchy]]
109888
109889 {{Link FA|de}}
109890
109891 [[bg:ОĐŗŅŽŅŅ‚ĐĩĐŊ ЛŅƒĐ¸ КоŅˆĐ¸]]
109892 [[cs:Augustin Louis Cauchy]]
109893 [[da:Augustin Louis Cauchy]]
109894 [[de:Augustin Louis Cauchy]]
109895 [[es:Augustin Louis Cauchy]]
109896 [[eo:Augustin Louis CAUCHY]]
109897 [[fr:Augustin Louis Cauchy]]
109898 [[ko:ė˜¤ęˇ€ėŠ¤íƒą ëŖ¨ė´ ėŊ”ė‹œ]]
109899 [[hr:Augustin Louis Cauchy]]
109900 [[is:Augustin Louis Cauchy]]
109901 [[it:Augustin Louis Cauchy]]
109902 [[he:אוגוסטין לואי קושי]]
109903 [[lt:Augustinas Luisas KoÅĄi]]
109904 [[hu:Augustin Cauchy]]
109905 [[nl:Augustin Louis Cauchy]]
109906 [[ja:ã‚Ēãƒŧã‚ŽãƒĨã‚šã‚ŋãƒŗīŧãƒĢイãƒģã‚ŗãƒŧã‚ˇãƒŧ]]
109907 [[pl:Augustin Louis Cauchy]]
109908 [[pt:Augustin Louis Cauchy]]
109909 [[ru:КоŅˆĐ¸, ОĐŗŅŽŅŅ‚ĐĩĐŊ ЛŅƒĐ¸]]
109910 [[fi:Augustin Louis Cauchy]]
109911 [[sv:Augustin Louis Cauchy]]
109912 [[vi:Augustin Louis Cauchy]]
109913 [[tr:Augustin Louis Cauchy]]
109914 [[uk:КоŅˆŅ– ОŌ‘ŅŽŅŅ‚ĐĩĐŊ-ЛŅƒŅ—]]</text>
109915 </revision>
109916 </page>
109917 <page>
109918 <title>Archimedes</title>
109919 <id>1844</id>
109920 <revision>
109921 <id>42093182</id>
109922 <timestamp>2006-03-03T20:00:12Z</timestamp>
109923 <contributor>
109924 <username>DominvsVobiscvm</username>
109925 <id>862379</id>
109926 </contributor>
109927 <text xml:space="preserve">:''For other senses of this word, see [[Archimedes (disambiguation)]].''
109928 [[Image:Archimedes.jpg|thumb|right|Archimedes of Syracuse.]]
109929 '''Archimedes''' ([[Greek language|Greek]]: ΑĪĪ‡ÎšÎŧΡδΡĪ‚ ) (''c''. [[287 BC]]&amp;ndash;[[212 BC]]) was an ancient Sicilian [[mathematician]], [[physicist]], [[engineer]], [[astronomer]] and [[philosopher]] born in the seaport colony of [[Syracuse, Italy|Syracuse]]. He is considered by some [[history of mathematics|historians of mathematics]] to be one of the greatest mathematicians in [[antiquity]]; [[Carl Friedrich Gauss]] considered him one of the three greatest ever.
109930
109931 ==Discoveries and inventions==
109932 [[Image:Archimedes' screw.jpg|thumb|The [[Archimedes' screw]] lifts water to higher levels for irrigation]]
109933
109934 Archimedes became a popular figure as a result of his involvement in the defense of Syracuse against the [[Roman Republic|Roman]] [[siege]] in the [[Second Punic War]]. He is reputed to have held the Romans at bay with war machines of his own design; to have been able to move a full-size ship complete with crew and cargo by pulling a single rope[http://www.smith.edu/hsc/museum/ancient_inventions/shipshaker2.html]; to have [[discovery (observation)|discover]]ed the principles of [[density]] and [[buoyancy]], also known as [[Archimedes' principle]], while taking a bath (thereupon taking to the streets naked he called &quot;[[Eureka (word)|Eureka]]&quot;). He has also been credited with the possible invention of the [[odometer]] during the First Punic War. One of his inventions used for military defense of Syracuse against the invading Romans was the [[claw of Archimedes]].
109935
109936 [[Image:DeathRayDiagram.gif|thumb|left|A diagram showing how Archimedes may have enabled the defenders of Syracuse aim their mirrors at approaching ships]]It is said that he prevented one Roman attack on Syracuse by using a large array of [[mirror]]s (speculated to have been highly polished shields) to reflect sunlight onto the attacking ships causing them to catch fire. This popular legend was tested on the Discovery Channel's ''[[MythBusters]]'' program. After a number of experiments, whereby the hosts of the program tried burning a model wooden ship with a variety of mirrors, they concluded that the enemy ships would have had to have been virtually motionless and very close to shore for them to ignite, an unlikely scenario during a battle. A group at MIT subsequently performed their own tests and concluded that the mirror weapon was a possibility [http://web.mit.edu/2.009/www/lectures/10_ArchimedesResult.html], although later tests of their system showed it to be ineffective in conditions that more closely matched the described siege [http://www.sfgate.com/cgi-bin/article.cgi?f=/n/a/2005/10/22/state/n121443D54.DTL].
109937
109938 Archimedes was killed by a Roman soldier in the sack of Syracuse during the Second Punic War, despite orders from the Roman general, [[Marcus Claudius Marcellus|Marcellus]], that he was not to be harmed. The Greeks said that he was killed while drawing an equation in the sand; engrossed in his diagram and impatient with being interrupted, he is said to have muttered his [[famous last words]] before being slain by an enraged Roman soldier: ΜáŊ´ ÎŧÎŋáŊē Ī„ÎŋĪ…Ī‚ ÎēĪÎēÎģÎŋĪ…Ī‚ Ī„ÎŦĪÎąĪ„Ī„Îĩ (&quot;Don't disturb my circles&quot;). This story was sometimes told to contrast the Greek high-mindedness with Roman ham-handedness; however, it should be noted that Archimedes designed the siege engines that devastated a substantial Roman invasion force, so his death may have been out of retribution.
109939
109940 In creativity and insight, he exceeded any other European mathematician prior to the European [[Renaissance]]. In a civilization with an awkward numeral system and a language in which &quot;a myriad&quot; (literally &quot;ten thousand&quot;) meant &quot;infinity&quot;, he invented a positional numeral system and used it to write numbers up to 10&lt;sup&gt;64&lt;/sup&gt;. He devised a [[heuristic]] method based on [[statistics]] to do private calculation that we would classify today as [[integral calculus]], but then presented rigorous [[geometry|geometric]] proofs for his results. To what extent he actually had a correct version of integral calculus is debatable. He proved that the [[ratio]] of a [[circle]]'s [[perimeter]] to its [[diameter]] is the same as the ratio of the circle's area to the [[square (geometry)|square]] of the [[radius]]. He did not call this ratio [[Pi|&amp;pi;]] but he gave a procedure to approximate it to arbitrary accuracy and gave an approximation of it as between 3 + 10/71 (approximately 3.1408) and 3 + 1/7 (approximately 3.1429). He was the first [[ancient Greece|Greek]] mathematician to introduce [[mechanical]] curves (those traced by a moving point) as legitimate objects of study. He proved that the area enclosed by a [[parabola]] and a straight line is 4/3 the area of a [[triangle (geometry)|triangle]] with equal base and height. (See the illustration below. The &quot;base&quot; is any [[secant line]], not necessarily [[orthogonal]] to the parabola's [[axis]]; &quot;the same base&quot; means the same &quot;horizontal&quot; component of the length of the base; &quot;horizontal&quot; means orthogonal to the axis. &quot;Height&quot; means the length of the segment parallel to the axis from the [[vertex]] to the base. The vertex must be so placed that the two horizontal distances mentioned in the illustration are equal.)
109941
109942 &lt;div style=&quot;float:right;padding:5px;text-align:center&quot;&gt;[[Image:Parabola.png]]&lt;br&gt;&lt;/div&gt;
109943
109944 In the process, he calculated the oldest known example of a [[geometric series]] with the [[ratio]] 1/4:
109945
109946 :&lt;math&gt; \sum_{n=0}^\infty 4^{-n} = 1 + 4^{-1} + 4^{-2} + 4^{-3} + \cdots = {4\over 3} \; . &lt;/math&gt;
109947
109948 If the first term in this series is the area of the triangle in the [[illustration]] then the second is the sum of the areas of two triangles whose bases are the two smaller secant lines in the illustration. Essentially, this paragraph summarizes the proof. Archimedes also gave a quite different proof of nearly the same [[proposition]] by a method using [[infinitesimals]] (see &quot;[[How Archimedes used infinitesimals]]&quot;).
109949
109950 He proved that the [[area]] and volume of the [[sphere]] are in the same ratio to the area and volume of a circumscribed straight [[cylinder (geometry)|cylinder]], a result he was so proud of that he made it his [[epitaph]].
109951
109952 Archimedes is probably also the first [[mathematical physicist]] on record, and the best before [[Galileo Galilei|Galileo]] and [[Isaac Newton|Newton]]. He invented the field of [[statics]], enunciated the law of the [[lever]], the law of [[equilibrium]] of [[fluids]] and the law of [[buoyancy]]. (He famously discovered the latter when he was asked to determine whether a crown had been made of pure gold, or gold adulterated with silver; he realized that the rise in the water level when it was immersed would be equal to the volume of the crown, and the decrease in the weight of the crown would be in proportion; he could then compare those with the values of an equal weight of pure gold). He was the first to identify the concept of [[center of gravity]], and he found the centers of gravity of various geometric figures, assuming uniform [[density]] in their interiors, including triangles, [[paraboloid]]s, and [[sphere|hemisphere]]s. Using only [[ancient Greece|ancient Greek]] [[geometry]], he also gave the equilibrium positions of floating sections of paraboloids as a function of their height, a feat that would be taxing to a modern physicist using [[calculus]].
109953
109954 Apart from general physics he was an [[astronomer]], and [[Cicero]] writes that the Roman [[consul]] [[Marcus Claudius Marcellus|Marcellus]] brought two devices back to [[Rome]] from the sacked city of Syracuse. One device mapped the [[sky]] on a sphere and the other predicted the motions of the [[sun]] and the [[moon]] and the [[planet]]s (i.e., an [[orrery]]). He credits [[Thales]] and [[Eudoxus of Cnidus|Eudoxus]] for constructing these devices. For some time this was assumed to be a legend of doubtful nature, but the discovery of the [[Antikythera mechanism]] has changed the view of this issue, and it is indeed probable that Archimedes possessed and constructed such devices. [[Pappus]] of [[Alexandria]] writes that Archimedes had written a practical book on the construction of such spheres entitled ''[[On Sphere-Making]]''.
109955
109956 Archimedes' works were not widely recognized, even in [[classical antiquity|antiquity]]. He and his contemporaries probably constitute the peak of Greek [[mathematical rigour]]. During the [[Middle Ages]] the mathematicians who could understand Archimedes' work were few and far between. Many of his works were lost when the [[library of Alexandria]] was burnt (twice) and survived only in [[Latin]] or [[Arabic language|Arabic]] [[translation]]s. As a result, his ''[[how Archimedes used infinitesimals|mechanical method]]'' was lost until around [[1900]], after the [[arithmetization of analysis]] had been carried out successfully. We can only speculate about the effect that the &quot;method&quot; would have had on the development of [[calculus]] had it been known in the [[16th century|16th]] and [[17th century|17th]] centuries.
109957
109958 == Writings by Archimedes ==
109959 * ''On the Equilibrium of Planes'' (2 volumes)
109960 :This scroll explains the law of the lever and uses it to calculate the areas and centers of gravity of various geometric figures.
109961 * ''On Spirals''
109962 :In this scroll, Archimedes defines what is now called [[Archimedean spiral|Archimedes' spiral]]. This is the first mechanical curve (i.e., traced by a moving point) ever considered by a Greek mathematician. Using this curve, he was able to [[Squaring the circle|square the circle]].
109963 * ''On the Sphere and The Cylinder''
109964 :In this scroll Archimedes obtains the result he was most proud of: that the area and volume of a sphere are in the same relationship to the area and volume of the circumscribed straight cylinder.
109965 * ''On Conoids and Spheroids''
109966 :In this scroll Archimedes calculates the areas and volumes of sections of cones, spheres and paraboloids.
109967 * ''On Floating Bodies'' (2 volumes)
109968 :In the first part of this scroll, Archimedes spells out the law of equilibrium of fluids, and proves that water around a center of gravity will adopt a spherical form. This is probably an attempt at explaining the observation made by Greek astronomers that the Earth is round. Note that his fluids are not self-gravitating: he assumes the existence of a point towards which all things fall and derives the spherical shape. One is led to wonder what he would have done had he struck upon the idea of universal [[gravitation]].
109969 :In the second part, a veritable ''tour-de-force'', he calculates the equilibrium positions of sections of paraboloids. This was probably an idealization of the shapes of ships' hulls. Some of his sections float with the base under water and the summit above water, which is reminiscent of the way [[iceberg]]s float, although Archimedes probably was not thinking of this application.
109970 * ''The Quadrature of the Parabola''
109971 :In this scroll, Archimedes calculates the area of a segment of a parabola (the figure delimited by a parabola and a secant line not necessarily perpendicular to the axis). The final answer is obtained by [[Triangulation|triangulating]] the area and summing the geometric series with ratio 1/4.
109972 * ''Stomachion''
109973 :This is a Greek puzzle similar to [[Tangram]]. In this scroll, Archimedes calculates the areas of the various pieces. This may be the first reference we have to this game. Recent discoveries indicate that Archimedes was attempting to determine how many ways the strips of paper could be assembled into the shape of a square. This is possibly the first use of [[combinatorics]] to solve a problem.
109974 * ''Archimedes' Cattle Problem''
109975 :Archimedes wrote a letter to the scholars in the Library of Alexandria, who apparently had downplayed the importance of Archimedes' works. In these letters, he dares them to count the numbers of cattle in the [[Herd of the Sun]] by solving a number of simultaneous [[Diophantus|Diophantine]] equations, some of them [[quadratic equation|quadratic]] (in the more complicated version). This problem is one of the famous problems solved with the aid of a computer. The solution is a very large number, approximately {{sn|7.760271|206544}} (See the external links to the Cattle Problem.)
109976 * ''[[The Sand Reckoner]]''
109977 :In this scroll, Archimedes counts the number of grains of sand fitting inside the [[universe]]. This book mentions [[Aristarchus of Samos]]' theory of the [[solar system]] (concluding that &quot;this is impossible&quot;), contemporary ideas about the size of the Earth and the distance between various celestial bodies. From the introductory letter we also learn that Archimedes' father was an astronomer.
109978 * ''&quot;[[Archimedes Palimpsest|The Method]]&quot;''
109979 :In this work, which was unknown in the Middle Ages, but the importance of which was realised after its discovery, Archimedes pioneered the use of [[infinitesimal]]s, showing how breaking up a figure in an infinite number of infinitely small parts could be used to determine its area or volume. Archimedes did probably consider these methods not mathematically precise, and he used these methods to find at least some of the areas or volumes he sought, and then used the more traditional [[method of exhaustion]] to prove them. This particular work is found in what is called the [[Archimedes bathtub flotation device]]. Some details can be found at [[how Archimedes used infinitesimals]].
109980
109981 ==Quotes about Archimedes==
109982 * &quot;Perhaps the best indication of what Archimedes truly loved most is his request that his tombstone include a cylinder circumscribing a sphere, accompanied by the inscription of his amazing [[theorem]] that the sphere is exactly two-thirds of the circumscribing cylinder in both surface area and volume!&quot; (Laubenbacher and Pengelley, p. 95)&lt;sup id=&quot;fn_1_back&quot;&gt;[[#fn_1|1]]&lt;/sup&gt;
109983
109984 * &quot;...but regarding the work of an engineer and every art that ministers the needs of life as ignoble and vulgar, he devoted his earnest efforts only to those studies the subtlety and charm of which are not affected by the claims of necessity.&quot; [[Plutarch]], possibly explaining why Archimedes produced no writings that describe precisely the design of his inventions. It has also been suggested that this statement merely reflects the prejudices of Plutarch and his peers, influenced by [[Platonic]] beliefs in pure [[reasoning]] and [[deduction]] over [[experimentation]] and [[induction (philosophy)|inductive]] processes. Given Archimedes's prodigious output as an engineer, Plutarch's often quoted comments on him seem hard to believe for modern historians.
109985
109986 ==Named after Archimedes==
109987 * [[Archimedes (crater)|Archimedes crater]] on [[the Moon]].
109988 * [[3600 Archimedes|Asteroid 3600 Archimedes]], named in his honour
109989 * The [[Acorn Archimedes]]
109990 * [[Archimedes' principle]]
109991 * [[Archimedean property]]
109992 * [[Archimedean solid]]
109993 * [[Archimedean point]]
109994 * [[Tiling_by_regular_polygons#Archimedean.2C_uniform_or_semiregular_tilings|Archimedean tiling]]
109995 * [[Archimedean spiral]]
109996 * [[Archimedean field]]
109997 * [[Trammal of Archimedes]]
109998 * [[Claw of Archimedes]]
109999 * [[Archimedes' screw|Archimedean screw]]
110000 * Archimedean [[copula (statistics)|copula]]
110001 * [[Archimedes number]]
110002
110003 ==See also==
110004 * [[Archimedes Palimpsest]]
110005 * [[How Archimedes used infinitesimals]]
110006
110007 == Notes==
110008 &lt;cite id=&quot;fn_1&quot;&gt;[[#fn_1_back|Note 1:]]&lt;/cite&gt; p. 95, ''[[Mathematical Expeditions: Chronicles by the Explorers]]'' by [[Reinhard Laubenbacher|Laubenbacher]] and [[David Pengelley|Pengelley]] ([[1999]]) ISBN 0387984348 (Hardcover) ISBN 038798433X (Paperback)
110009
110010 [[Category:287 BC births]]
110011 [[Category:212 BC deaths]]
110012 [[Category:Ancient Greek engineers]]
110013 [[Category:Ancient Greek inventors]]
110014 [[Category:Ancient Greek mathematicians]]
110015 [[Category:Ancient Greek physicists]]
110016 [[Category:Hellenistic philosophers]]
110017 [[Category:Sicilian Greeks]]
110018 [[Category:Murdered scientists]]
110019 [[Category:History of physics]]
110020
110021 == External links ==
110022 {{wikiquote}}
110023 * [http://www.cut-the-knot.org/Curriculum/Geometry/BookOfLemmas/index.shtml Archimedes' Book of Lemmas] at [[cut-the-knot]]
110024 *[http://agutie.homestead.com/files/rhombicubocta.html Archimedes and the Rhombicuboctahedron] by Antonio Gutierrez from Geometry Step by Step from the Land of the Incas.
110025 *[http://www.mcs.drexel.edu/~crorres/Archimedes/contents.html Archimedes Home Page]
110026 * {{MacTutor Biography|id=Archimedes }}
110027 *[http://www.thewalters.org/archimedes/frame.html The Archimedes Palimpsest] web pages at the [[Walters Art Museum]].
110028 *[http://www.pbs.org/wgbh/nova/archimedes/palimpsest.html NOVA program on Archimedes Palimpsest]
110029 *[http://www.mcs.drexel.edu/~crorres/Archimedes/Crown/CrownIntro.html Archimedes - The Golden Crown] points out that in reality Archimedes may well have used a more subtle method than the one in the classic version of the story.
110030 *[http://www.math.ubc.ca/~cass/archimedes/parabola.html Archimedes' ''Quadrature Of The Parabola''] Translated by [[Thomas Heath]].
110031 *[http://www.math.ubc.ca/~cass/archimedes/circle.html Archimedes' ''On The Measurement Of The Circle''] Translated by [[Thomas Heath]].
110032 * [http://www.mcs.drexel.edu/~crorres/Archimedes/Cattle/Statement.html Archimedes' Cattle Problem]
110033 * [http://mathworld.wolfram.com/ArchimedesCattleProblem.html Archimedes' Cattle Problem]
110034 *{{gutenberg author|id=Archimedes|name=Archimedes}}
110035 * [http://www.cut-the-knot.org/pythagoras/archi.shtml Angle Trisection by Archimedes of Syracuse (Java)]
110036 * [http://www.cut-the-knot.org/ctk/Parabola.shtml#ArchimedesTriangle Archimedes'Triangle (Java)]
110037 * [http://www.cut-the-knot.org/pythagoras/Archimedes.shtml An ancient extra-geometric proof]
110038 * [http://www.cut-the-knot.org/ctk/Parabola.shtml#SqParabola Archimedes' Squaring of Parabola (Java)] at [[cut-the-knot]]
110039 * [http://www.mlahanas.de/Greeks/Mirrors.htm Archimedes and his Burning Mirrors, Reality or Fantasy?]
110040
110041 [[ar:ØŖØąØŽŲ…ŲŠØ¯Øŗ]]
110042 [[bg:АŅ€Ņ…иĐŧĐĩĐ´]]
110043 [[bn:āĻ†āĻ°ā§āĻ•āĻŋāĻŽāĻŋāĻĄāĻŋāĻ¸]]
110044 [[ca:Arquimedes]]
110045 [[cs:ArchimÊdÊs]]
110046 [[da:Arkimedes]]
110047 [[de:Archimedes]]
110048 [[et:Archimedes]]
110049 [[el:ΑĪĪ‡ÎšÎŧΎδΡĪ‚]]
110050 [[es:Arquímedes]]
110051 [[eo:Arkimedo]]
110052 [[fr:Archimède]]
110053 [[gl:Arquimedes]]
110054 [[ko:ė•„ëĨ´í‚¤ëŠ”데ėŠ¤]]
110055 [[hr:Arhimed]]
110056 [[ia:Archimedes]]
110057 [[io:Archimede]]
110058 [[id:Archimedes]]
110059 [[is:Arkímedes]]
110060 [[it:Archimede]]
110061 [[he:ארכימדס]]
110062 [[la:Archimedes]]
110063 [[lt:Archimedas]]
110064 [[mk:АŅ€Ņ…иĐŧĐĩĐ´]]
110065 [[nl:Archimedes]]
110066 [[ja:ã‚ĸãƒĢã‚­ãƒĄãƒ‡ã‚š]]
110067 [[no:Arkimedes]]
110068 [[pl:Archimedes]]
110069 [[pt:Arquimedes]]
110070 [[ru:АŅ€Ņ…иĐŧĐĩĐ´]]
110071 [[sco:Archimedes]]
110072 [[scn:Archimedi]]
110073 [[simple:Archimedes]]
110074 [[sk:Archimedes]]
110075 [[sl:Arhimed]]
110076 [[sr:АŅ€Ņ…иĐŧĐĩĐ´]]
110077 [[fi:Arkhimedes]]
110078 [[sv:Arkimedes]]
110079 [[tl:Archimedes]]
110080 [[th:ā¸­ā¸˛ā¸ŖāšŒā¸„ā¸´ā¸Ąā¸´ā¸”ā¸ĩā¸Ē]]
110081 [[vi:Archimedes]]
110082 [[tr:Arşimet]]
110083 [[uk:АŅ€Ņ…Ņ–ĐŧĐĩĐ´]]
110084 [[zh:é˜ŋåŸēįąŗåžˇ]]</text>
110085 </revision>
110086 </page>
110087 <page>
110088 <title>Alternative medicine</title>
110089 <id>1845</id>
110090 <revision>
110091 <id>42123227</id>
110092 <timestamp>2006-03-03T23:47:58Z</timestamp>
110093 <contributor>
110094 <username>Dieter Simon</username>
110095 <id>2599</id>
110096 </contributor>
110097 <minor />
110098 <comment>/* Critiques */ Have formatted this link. This does not reflect my acceptance or otherwise of the opinions professed</comment>
110099 <text xml:space="preserve">{{mergefrom|Complementary and alternative medicine}}
110100
110101 '''Alternative medicine''' broadly describes methods and practices used in place of, or in addition to, [[medicine|conventional medical]] treatments. The precise scope of alternative medicine is a matter of some debate and depends to a great extent on the definition of &quot;conventional medicine.&quot; Many practitioners regard the distinction as false, preferring &quot;good medicine&quot; (which demonstrably works) and &quot;bad medicine.&quot; Richard Dawkins, professor of the Public Understanding of Science at Oxford, notes that alternative medicine is defined as that set of practices that cannot be tested, refuse to be tested or consistently fail tests.
110102
110103 The debate on alternative medicine is complicated further by the diversity of treatments that are categorized as &quot;alternative.&quot; These include practices that incorporate spiritual, metaphysical, or religious underpinnings; non-European medical traditions; newly developed approaches to healing; and a number of others. Proponents of one class of alternative medicine may reject others.
110104
110105 Detractors of alternative medicine may also define it as &quot;diagnosis, treatment, or therapy which can be provided legally by persons who are not licensed to diagnose and treat illness,&quot; although some medical doctors find value using alternative therapies in the practice of &quot;complementary medicine.&quot;
110106
110107 Many in the scientific community define alternative medicine as any treatment, the efficacy and safety of which has not been verified through [[peer-review]]ed, controlled studies. This form of definition is not based on political views, turf protection, or economic interests, but hinges exclusively on questions of effectiveness and safety. It is thus possible for a method to change categories ''in either direction'', based on increased knowledge of its effectiveness or lack thereof.
110108
110109 Some techniques and therapies once considered to be &quot;alternative&quot;, have - upon being proven to be effective - been accepted into mainstream medicine.
110110
110111 The opposite is equally true, with methods once thought to be effective being dropped when it has been discovered that their only effect was because of the [[placebo effect]], or when their side effects were found to result in an unfavorable safety-to-benefit ratio.
110112
110113 Various advocates and critics of alternative therapies believe that the term &quot;alternative medicine&quot; is misleading. Some advocates believe that Western therapies are the &quot;alternative&quot; in that they were preceded by traditional therapies. Others believe that the term was invented by advocates of &quot;allopathic&quot; medicine in an attempt to discredit natural therapies [http://www.quackpotwatch.org/]. Critics of alternative therapies assert that they are not effective and consequently are not a legitimate alternative to [[conventional medicine]]. [[Richard Dawkins]], professor of the Public Understanding of Science at Oxford University, defines alternative medicine as ''&quot;that set of practices that cannot be tested, refuse to be tested or consistently fail tests&quot;'' (See Diamond 2003). Many on both sides believe that alternative therapies can become accepted as conventional medicine if they are scientifically proven to be effective.
110114 &lt;!--INFOBOX -- SCROLL DOWN SEVERAL LINES FOR TEXT OF ARTICLE --&gt;
110115 &lt;div style=&quot;float:right;width:225px;margin:0 0 1em 1em;&quot;&gt;
110116 &lt;table border=1&gt;&lt;tr&gt;&lt;th bgcolor=&quot;#ffcc99&quot;&gt;
110117 '''Alternative Medicine'''&lt;tr&gt;&lt;td&gt;
110118 &lt;tr&gt;&lt;td align=&quot;center&quot;&gt;This article is part of the [[Terms and concepts in alternative medicine#CAM|CAM]] series of articles.&lt;tr&gt;&lt;td&gt;
110119 &lt;tr&gt;&lt;td&gt;
110120 &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; bgcolor=&quot;#ffcc99&quot;&gt;'''[[:Category:Alternative medicine|CAM Article Index]]'''
110121 &lt;/td&gt;&lt;/tr&gt;
110122 &lt;/table&gt;
110123 &lt;/div&gt;
110124 &lt;!--//END OF INFOBOX--&gt;
110125
110126 ==Complementary and alternative medicine==
110127
110128 The [[National Center for Complementary and Alternative Medicine]] defines [[complementary and alternative medicine]] as &quot;a group of diverse medical and health care systems, practices, and products that are not presently considered to be part of conventional medicine&quot;. One distinction that the NCCAM makes is that complementary medicine is used in conjunction with conventional medicine whereas alternative medicine is used in place of conventional medicine. The NCCAM also defines integrative medicine as the combination of &quot;mainstream medical therapies and CAM therapies for which there is some high-quality scientific evidence of safety and effectiveness&quot;.
110129
110130 &quot;''Importantly, integrative medicine is not synonymous with complementary and alternative medicine (CAM). It has a far larger meaning and mission in that it calls for restoration of the focus of medicine on health and healing and emphasizes the centrality of the patient-physician relationship.&quot;'' (Snyderman, Weil 2002)
110131
110132 ==Regulation==
110133 [[Jurisdiction]] differs concerning which branches of alternative medicine are legal, which are regulated, and which (if any) are provided by a government-controlled [[Publicly_funded_medicine | health service]] or reimbursed by a [[ Health_insurance |private health medical insurance company]].
110134
110135 A number of alternative medicine advocates disagree with the restrictions of government agencies that approve medical treatments (such as the American [[Food and Drug Administration]]) and the agencies' adherence to experimental evaluation methods. They claim that this impedes those seeking to bring useful and effective treatments and approaches to the public, and protest that their contributions and discoveries are unfairly dismissed, overlooked or suppressed. Alternative medicine providers often argue that health fraud should be dealt with appropriately when it occurs.
110136
110137 ==Contemporary use of alternative medicine==
110138 [[Edzard Ernst]] wrote in the [[Medical Journal of Australia]] that &quot;''about half the general population in developed countries use complementary and alternative medicine (CAM)''&quot; (Ernst 2003). A [http://nccam.nih.gov/news/2004/052704.htm survey] (Barnes et al 2004) released in May 2004 by the [[National Center for Complementary and Alternative Medicine]], part of the [[National Institutes of Health]] in the United States, found that in 2002, 36% of Americans used some form of alternative therapy in the past 12 months &amp;mdash; a category that included yoga, meditation, herbal treatments and the [[Atkins diet]]. If [[prayer]] was counted as an alternative therapy, the figure rose to 62.1%. Another study by Astin et al (1998) suggests a similar figure of 40%. A British telephone survey by the BBC of 1209 adults in 1998 shows that around 20% of adults in Britain had used alternative medicine in the past 12 months (Ernst &amp; White 1999)
110139
110140 The use of alternative medicine appears to be increasing. Eisenburg et al carried out a study in 1998 which showed that use of alternative medicine had risen from 33.8% in 1990 to 42.1% in 1997. In the United Kingdom, a [[2000]] report ordered by the [[House of Lords]] suggested that &quot;limited data seem to support the idea that CAM use in the United Kingdom is high and is increasing&quot;[http://www.parliament.the-stationery-office.co.uk/pa/ld199900/ldselect/ldsctech/123/12301.htm].
110141
110142 ===Medical education===
110143 Increasing numbers of medical colleges have begun offering courses in alternative medicine. For example, the [[University of Arizona]] College of Medicine offers a program in [[Integrative Medicine]] under the leadership of [[Andrew Weil|Dr. Andrew Weil]] which trains physicians in various branches of alternative medicine which &quot;''neither rejects conventional medicine, nor embraces alternative practices uncritically.''&quot; [http://www.ahsc.arizona.edu/opa/horizons/1997/integrate.htm] In three separate research surveys that surveyed the 125 medical schools offering a MD degree, the 19 medical schools offering a DO degree, and 585 schools of nursing in the United States: 60 percent of U.S. medical schools offering a MD degree teach CAM, 95% of Osteopathic medical school teach CAM, and 84.8% of US schools of nursing teach CAM. (Wetzel et al 1998, Saxon et al 2004, Fenton &amp; Morris 2003)
110144
110145 In the UK, no medical schools offer courses that teach the clinical practise of alternative medicine. However, alternative medicine is taught in several schools as part of the curriculum. Teaching is based mostly on theory and understanding alternative medicine, with emphasis on being able to communicate with alternative medicine specialists. To obtain competence in practising clinical alternative medicine, qualifications must be obtained from individual medical societies. The student must have graduated and be a qualified doctor. The [http://www.medical-acupuncture.co.uk British Medical Acupuncture Society], which offers medical acupuncture certificates to doctors, is one such example.
110146
110147 == Support for alternative medicine ==
110148 Advocates of alternative medicine hold that alternative therapies often provide the public with services not available from conventional medicine. This argument covers a range of areas, such as [[patient empowerment]], alternative methods of [[pain management]], treatment methods that support the [[biopsychosocial model]] of health, stress reduction services, other preventive health services that are not typically a part of conventional medicine, and of course complementary medicine's [[palliative care]] which is practiced by such world renowned cancer centers such as [[Memorial Sloan-Kettering Cancer Center|Memorial Sloan-Kettering]] (see Vickers 2004).
110149
110150 ===Efficacy===
110151 Advocates of alternative medicine hold that the various alternative treatment methods are effective in treating a wide range of major and minor medical conditions, and contend that recently published research (such as Michalsen 2003, Gonsalkorale 2003, and Berga 2003) proves the effectiveness of specific alternative treatments. They assert that a PubMed search revealed over 370,000 research papers classified as alternative medicine published in Medline-recognized journals since 1966 in the National Library of Medicine database (such as Kleijnen 1991, Linde 1997, Michalsen 2003, Gonsalkorale 2003, and Berga 2003).
110152
110153 Advocates of alternative medicine hold that alternative medicine may provide health benefits through [[patient empowerment]], by offering more choices to the public, including treatments that are simply not available in conventional medicine.
110154
110155 ''&quot;Most Americans who consult alternative providers would probably jump at the chance to consult a physician who is well trained in scientifically based medicine and who is also open-minded and knowledgeable about the body's innate mechanisms of healing, the role of lifestyle factors in influencing health, and the appropriate uses of dietary supplements, herbs, and other forms of treatment, from osteopathic manipulation to Chinese and Ayurvedic medicine. In other words, they want competent help in navigating the confusing maze of therapeutic options that are available today, especially in those cases in which conventional approaches are relatively ineffective or harmful.&quot;'' (Snyderman, Weil 2002)
110156
110157 Some physicians are willing to embrace some aspects of alternative medicine.
110158
110159 Although advocates of alternative medicine acknowledge that the [[placebo effect]] may play a role in the benefits that some receive from alternative therapies, they point out that this does not diminish their validity. Skeptics are confounded by this view and claim that it is acknowledgement of the inefficacy of alternative treatments.
110160
110161 ===Danger reduced when used as a complement to conventional medicine===
110162 A major objection to alternative medicine is that it may be done in place of conventional medical treatments. As long as alternative treatments are used alongside standard conventional medical treatments, most medical doctors find most forms of complementary medicine acceptable (Vickers 2004). Consistent with previous studies, the CDC recently reported that the majority of individuals in the United States (i.e., 54.9%) used CAM in conjunction with conventional medicine. (CDC Advance Data Report #343, 2002)
110163
110164 Patients should however always inform their medical doctor they are using alternative medicine. Some patients do not tell their medical doctors since they fear it will hurt their patient-doctor relationship. However some alternative treatments may interact with orthodox medical treatments.
110165
110166 The issue of alternative medicine interfering with conventional medical practices is minimized when it is only turned to after the conventional medicine path has been exhausted. Many patients believe alternative medicine can help in coping with chronic illnesses for which conventional medicine offers no cure and only management. It is becoming more common for a patient's own MD to suggest alternatives when they cannot offer a treatment.
110167
110168 == Criticism of alternative medicine ==
110169
110170 Due to the wide range of therapies that are considered to be &quot;alternative medicine&quot; few criticisms apply across the board. For more information about a particular therapy or branch of alternative medicine, including specific criticism, please refer to the following link: [[List of branches of alternative medicine]].
110171
110172 Criticisms directed at specific branches of alternative medicine range from the fairly minor (conventional treament is believed to be more effective in a particular area) to incompatibility with the known laws of physics (for example, in [[homeopathy]]).
110173
110174 Proponents of the various forms of alternative medicine reject criticism as being founded in prejudice, financial self-interest, or ignorance.
110175
110176 ===Efficacy===
110177
110178 ====Lack of proper testing====
110179 Despite the large number of studies regarding alternative therapies, critics contend that there are no statistics on exactly how many of these studies were controlled, double-blind peer-reviewed experiments or how many produced results supporting alternative medicine or parts thereof. They contend that many forms of alternative medicine are rejected by conventional medicine because the efficacy of the treatments has not been demonstrated through double-blind [[randomized controlled trial]]s. Some skeptics of alternative practices point out that a person may attribute symptomatic relief to an otherwise ineffective therapy due to the natural recovery from or the cyclical nature of an illness, the [[placebo effect]], or the possibility that the person never originally had a true illness [http://www.quackwatch.org/01QuackeryRelatedTopics/altpsych.html].
110180
110181 ====Problems with known tests and studies====
110182 Critics contend that observer bias and poor study design invalidate the results of many studies carried out by alternative medicine promoters.
110183
110184 A review of the effectiveness of certain alternative medicine techniques for cancer treatment (Vickers 2004), while finding that most of these treatments are not merely &quot;unproven&quot; but are proven not to work, notes that several studies have found evidence that the [[psychosocial treatment]] of patients by [[psychologist]]s is linked to survival advantages (although it comments that these results are not consistently replicated). The same review, while specifically noting that &quot;complementary therapies for cancer-related symptoms were not part of this review&quot;, cites studies indicating that several complementary therapies can provide benefits by, for example, reducing pain and improving the mood of patients.
110185
110186 Some argue that less research is carried out on alternative medicine because many alternative medicine techniques cannot be patented, and hence there is little financial incentive to study them. Drug research, by contrast, can be very lucrative, which has resulted in funding of trials by pharmaceutical companies. Many people, including conventional and alternative medical practitioners, contend that this funding has led to corruption of the scientific process for approval of drug usage, and that ghostwritten work has appeared in major [[peer review|peer-reviewed]] medical journals. (Flanagin ''et al.'' 1998, Larkin 1999). Increasing the funding for research of alternative medicine techniques was the purpose of the [[U.S. National Center for Complementary and Alternative Medicine|National Center for Complementary and Alternative Medicine]]. NCCAM and its predecessor, the Office of Alternative Medicine, have spent more than $200 million on such research since 1991. The German Federal Institute for Drugs and Medical Devices [[Commission E]] has studied many herbal remedies for efficacy. [http://www.csicop.org/si/2003-09/alternative-medicine.html]
110187
110188 ===Safety===
110189 Critics contend that &quot;dubious therapies can cause death, serious injury, unnecessary suffering, and disfigurement&quot; [http://www.quackwatch.org/01QuackeryRelatedTopics/harmquack.html] and that some people have been hurt or killed directly from the various practices or indirectly by failed diagnoses or the subsequent avoidance of conventional medicine which they believe is truly efficacious [http://www.valleyskeptic.com/perrot.htm].
110190
110191 Alternative medicine critics agree with its proponents that people should be free to choose whatever method of healthcare they want, but stipulate that people must be informed as to the safety and efficacy of whatever method they choose. People who choose alternative medicine may think they are choosing a safe, effective medicine, while they may only be getting [[quackery|quack]] remedies.
110192
110193 ====Delay in seeking conventional medical treatment====
110194 They state that those who have had success with one alternative therapy for a minor ailment may be convinced of its efficacy and persuaded to extrapolate that success to some other alternative therapy for a more serious, possibly life-threatening illness. For this reason, they contend that therapies that rely on the placebo effect to define success are very dangerous.
110195
110196 ==== Danger can be increased when used as a complement to conventional medicine ====
110197 A Norwegian multicentre study examined the association between the use of alternative medicines (AM) and cancer survival. 515 patients using standard medical care for cancer were followed for eight years. 22% of those patients used AM concurrently with their standard care.
110198
110199 The study revealed that death rates were 30% higher in AM users than in those who did not use AM: &quot;The use of AM seems to predict a shorter survival from cancer.&quot; -- [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=PubMed&amp;cmd=Retrieve&amp;list_uids=12565991&amp;dopt=Citation Does use of alternative medicine predict survival from cancer?]
110200 Eur J Cancer 2003 Feb;39(3):372-7
110201
110202 Associate Professor Alastair MacLennan of the Department of Obstetrics and Gynaecology in Adelaide University, Australia reports that a patient of his almost bled to death on the operating table. She had failed to mention she had been taking &quot;natural&quot; potions to &quot;build up her strength&quot; for the operation - one of them turned out to be a powerful anticoagulant which nearly
110203 caused her death.
110204
110205 ====Issues of regulation====
110206 Critics contend that some branches of alternative medicine are often not properly regulated in some countries to identify who practices or know what training or expertise they may possess. Critics argue that the governmental regulation of any particular alternative therapy does necessitate that the therapy is effective.
110207
110208 ==See also==
110209 *[[Famous people in alternative medicine]]
110210 *[[History of alternative medicine]]
110211 *[[Terms and concepts in alternative medicine]]
110212 Skeptical terms:
110213 *[[Pseudoscience]]
110214 *[[Quackery]]
110215 *[[Snake oil]]
110216 *[http://www.skepticwiki.org/wiki/index.php/SCAM sCAM (so-Called &quot;Alternative&quot; Medicine)]
110217
110218 == References ==
110219
110220 ===Dictionary definitions===
110221 *[http://cancerweb.ncl.ac.uk/cgi-bin/omd?query=Complementary+medicine&amp;action=Search+OMD Complementary medicine]
110222
110223 ===World Health Organization publication===
110224 *[http://www.who.int/bookorders/anglais/detart1.jsp?sesslan=1&amp;codlan=1&amp;codcol=15&amp;codcch=614 WHO Global Atlas of Traditional, Complementary and Alternative Medicine]
110225
110226 === Journals dedicated to alternative medicine research ===
110227
110228 * Alternative therapies in health and medicine. Aliso Viejo, CA : InnoVision Communications, c1995- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=9502013&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 9502013]
110229 * Alternative medicine review : a journal of clinical therapeutic. Sandpoint, Idaho : Thorne Research, Inc., c1996- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=9705340&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 9705340]
110230 * [http://www.biomedcentral.com/1472-6882 BMC complementary and alternative medicine]. London : BioMed Central, 2001- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=101088661&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 101088661]
110231 * Complementary therapies in medicine. Edinburgh ; New York : Churchill Livingstone, c1993- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=9308777&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 9308777]
110232 * [http://ecam.oxfordjournals.org/ Evidence based complementary and alternative medicine]
110233 * [http://www.openmindjournals.com/EBInteg.html Evidence Based journal of Integrative medicine]
110234 * [http://www.jintmed.com/ Journal of Integrative medicine.]
110235 * [http://www.catchword.com/titles/10755535.htm The journal of alternative and complementary medicine : research on paradigm, practice, and policy.] New York, NY : Mary Ann Liebert, Inc., c1995- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=9508124&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 9508124]
110236 * Journal of alternative &amp; complementary medicine. London : Argus Health Publications, c1989- NLM ID: [http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&amp;v2=1&amp;ti=1,1&amp;Search_Arg=9883124&amp;Search_Code=0359&amp;CNT=20&amp;SID=1 9883124]
110237 *[http://www.liebertpub.com/publication.aspx?pub_id=26 Journal for Alternative and Complementary Medicine]
110238 *[http://www.sram.org/index.html Scientific Review of Alternative Medicine (SRAM)]
110239
110240
110241 === Research articles cited in the text ===
110242
110243 # Astin JA &quot;Why patients use alternative medicine: results of a national study&quot; ''JAMA'' 1998; '''279'''(19): 1548-1553
110244 # Barnes P, Powell-Griner E, McFann K, Nahin R. &quot;Complementary and Alternative Medicine Use Among Adults: United States, 2002.&quot; ''Advanced data from vital health and statistics'' 2004; Hyattsville, Maryland:NCHS [http://nccam.nih.gov/news/report.pdf Online]
110245 # Benedetti F, Maggi G, Lopiano L. &quot;Open Versus Hidden Medical Treatments: The Patient's Knowledge About a Therapy Affects the Therapy Outcome.&quot; ''Prevention &amp; Treatment'', 2003; '''6'''(1), [http://journals.apa.org/prevention/volume6/pre0060001a.html APA online]
110246 # Berga SL, Marcus MD, Loucks TL. &quot;Recovery of ovarian activity in women with functional hypothalamic amenorrhea who were treated with cognitive behavior therapy.&quot; ''Fertility and Sterility'' 2003; ''80''(4): 976-981 [http://www.fertstert.org/article/PIIS0015028203011245/abstract Abstract]
110247 # Downing AM, Hunter DG. &quot;Validating clinical reasoning: a question of perspective, but whose perspective?&quot; ''Man Ther'', 2003; '''8'''(2): 117-9. PMID 12890440 [http://www.sciencedirect.com/science?_ob=ArticleURL&amp;_udi=B6WN0-487KJXH-3&amp;_coverDate=05%2F31%2F2003&amp;_alid=110095405&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_qd=1&amp;_cdi=6948&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=8da5eb9e5359691e31c6cee489724da8 Manual Therapy Online]
110248 # Eisenberg DM. &quot;Advising patients who seek alternative medical therapies.&quot; ''Ann Intern Med'' 1997; '''127''':61-69. PMID 9214254
110249 # Eisenberg, DM, Davis RB, Ettner SL &quot;Trends in alternative medicine use in the United States 1990-1997.&quot; ''JAMA'', 1998; '''280''':1569-1575. PMID 9820257
110250 # Ernst E. &quot;Obstacles to research in complementary and alternative medicine.&quot; '''Medical Journal of Australia'', 2003; '''179'''(6): 279-80. PMID 12964907 http://www.mja.com.au/public/issues/179_06_150903/ern10442_fm-1.html MJA online]
110251 # Fenton MV, Morris DL. &quot;The integration of holistic nursing practices and complementary and alternative modalities into curricula of schools of nursing.&quot; ''Altern Ther Health Med,'' 2003; '''9'''(4):62-7. PMID 12868254
110252 # Flanagin A, Carey LA, Fontanarosa PB. &quot;Prevalence of articles with honorary authors and ghost authors in peer-reviewed medical journals.&quot; ''JAMA'', 1998; '''280'''(3):222-4. [http://jama.ama-assn.org/cgi/content/full/280/3/222 Full text]
110253 # Gonsalkorale WM, Miller V, Afzal A, Whorwell PJ. &quot;Long term benefits of hypnotherapy for irritable bowel syndrome.&quot; ''Gut'', 2003; '''52'''(11):1623-9. PMID 14570733
110254 # Gunn IP. &quot;A critique of Michael L. Millenson's book, Demanding medical excellence: doctors and accountability in the information age, and its relevance to CRNAs and nursing.&quot; ''AANA J'', 1998 '''66'''(6):575-82. Review. PMID 10488264
110255 # Kleijnen J, Knipschild P, ter Riet G. &quot;Clinical trials of homoeopathy.&quot; ''BMJ'', 1991; '''302''':316-23. Erratum in: ''BMJ'', 1991;'''302''':818. PMID 1825800
110256 # Larkin M. &quot;Whose article is it anyway?&quot; ''Lancet'', 1999; '''354''':136. [http://www.thelancet.com/journal/vol354/iss9173/full/llan.354.9173.news.3708.1 Editorial]
110257 # Linde K, Clausius N, Ramirez G. &quot;Are the clinical effects of homeopathy placebo effects? A meta-analysis of placebo-controlled trials.&quot; ''Lancet'', 1997; '''350''': 834-43. Erratum in: Lancet 1998 Jan 17;351(9097):220. PMID 9310601
110258 # Michalsen A, Ludtke R, Buhring M. &quot;Thermal hydrotherapy improves quality of life and hemodynamic function in patients with chronic heart failure.&quot; ''Am Heart J'', 2003; '''146'''(4):E11. PMID 14564334
110259 # Saxon DW, Tunnicliff G, Brokaw JJ, Raess BU. &quot;Status of complementary and alternative medicine in the osteopathic medical school curriculum.&quot; ''J Am Osteopath Assoc'' 2004; '''104'''(3):121-6. PMID 15083987
110260 # Snyderman R, Weil AT. &quot;Integrative medicine: bringing medicine back to its roots.&quot; ''Arch Intern Med'' 2002; '''162''':395&amp;#8211;397.
110261 # Tonelli MR. &quot;The limits of evidence-based medicine.&quot; ''Respir Care'', 2001; '''46'''(12): 1435-40; discussion 1440-1. Review. PMID 11728302 [http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=11863470 PMID: 11863470]
110262 # Vickers A. &quot;Alternative Cancer Cures: &quot;Unproven&quot; or &quot;Disproven&quot;?&quot; ''CA Cancer J Clin'' 2004; '''54''': 110-118. [http://caonline.amcancersoc.org/cgi/content/full/54/2/110 Online]
110263 # Wetzel MS, Eisenberg DM, Kaptchuk TJ. &quot;Courses involving complementary and alternative medicine at US medical schools.&quot; ''JAMA'' 1998; '''280'''(9):784 -787. PMID 9729989
110264 # Zalewski Z. &quot;Importance of Philosophy of Science to the History of Medical Thinking.&quot; ''CMJ'' 1999; '''40''': 8-13. [http://www.bsb.mefst.hr/cmj/1999/4001/400102.htm CMJ online]
110265
110266 === Other works that discuss alternative medicine ===
110267
110268 * Diamond, J. ''Snake Oil and Other Preoccupations'' 2001 (ISBN 0099428334), foreword by Richard Dawkins reprinted in Dawkins, R. ''A Devil's Chaplain'' 2003 (ISBN 0753817500).
110269 * [http://www.cwru.edu/med/epidbio/mphp439/Sources_of_Healthcare.htm WHERE DO AMERICANS GO FOR HEALTHCARE?] by Anna Rosenfeld, Case Western Reserve University, Cleveland, Ohio, USA.
110270 *Planer, Felix E. 1988 ''Superstition'' Revised ed. Buffalo, New York: Prometheus Books
110271 *Hand, Wayland D. 1980 ''Folk Magical Medicine and Symbolism in the West'' in ''Magical Medicine'' Berkeley: University of California Press, pp. 305-319.
110272 *Phillips Stevens Jr. Nov./Dec. 2001 ''Magical Thinking in Complementary and Alternative Medicine'' Skeptical Inquirer Magazine, Nov.Dec/2001
110273 * Illich I. Limits to Medicine. Medical Nemesis: The expropriation of Health. Penguin Books, 1976.
110274 * Dillard, James and Terra Ziporyn. ''Alternative Medicine for Dummies''. Foster City, CA: IDG Books Worldwide, Inc., 1998.
110275
110276 ==External links==
110277
110278 ===General information===
110279 * [http://nccam.nih.gov/ The National Center for Complementary and Alternative Medicine] - US National Institutes of Health
110280 * [http://www.i-c-m.org.uk/ Institute for Complementary Medicine (ICM), UK] - includes article &quot;What is Complementary Medicine?&quot;
110281 *[http://www.nlm.nih.gov/nccam/camonpubmed.html Complementary and Alternative Medicine on PubMed] - Alternative Medicine Research Database
110282 * Web pages for [http://www.open2.net/alternativemedicine/index.html new BBC/Open University television series &quot;Alternative Medicine&quot;] that examines the evidence scientifically.
110283
110284 ===Advocacy===
110285 *[http://www.noah-health.org/en/alternative/ Consumer focused alternative medicine information] - in English and Spanish
110286 *[http://www.rosenthal.hs.columbia.edu/ Complementary and alternative medicine information] - Columbia University supported and ad-free
110287 *[http://www.wholehealthmd.com/ WholeHealth Networks' CAM education website] - created by practicing MD's
110288 *[http://goldbamboo.com/ Traditional and Alternative Medicine] - both clinical and alternative health perspectives
110289 *[http://chinese-school.netfirms.com/Chinese-medicine.html Alternative Medicine: Chinese medicine]
110290 *[http://www.hands-on-london.com Alternative Medicine: Osteopathy]
110291 *[http://circleofhealers.com Circle of Healers] - Alternative Medicine News and Resources
110292 *[http://tutorials.naturalhealthperspective.com/history.html A History of Western Natural Healing Practices]
110293 *[http://autopenhosting.org/whatismedicine/ What is Medicine?] - Historical perspective of various modes of medicine
110294 *[http://www.dailystar.com/dailystar/printDS/6529.php &quot;Weil's integrative medicine gathering steam&quot;], by Carla McClain, ''Arizona Daily Star'', Published: 01-20-2004
110295 *[http://health.dailynewscentral.com/content/view/0001181/31/ Alternative Medicine Becoming Mainstream]
110296 *[http://www.alternativehealth.co.uk/ Alternative Health &amp;amp; Complementary Medicine UK Directory]
110297 *[http://www.althealthinfo.com/ Alternative Medicine and Natural Health] Information and news on alternative medicine
110298 *[http://www.clickabove.com/alternative.htm Comprehensive list of Alternative Medicine Websites]
110299
110300 ===Critiques===
110301 *[http://www.skepdic.com/tialtmed.html Skeptic's Dictionary: Alternative Medicine]
110302 *[http://www.canoe.ca/HealthAlternative/home.html Alternative medicine: A Skeptical Look]
110303 *[http://www.quackwatch.org/index.html Quackwatch: Your Guide to Health Fraud, Quackery, and Intelligent Decisions]
110304 *[http://podbazaar.com/object/program/read/126100789566373908?k=29E23E6803DC7B878CFD8141B78AD53C Shreekant Gokhale's Podcasts Challenging Alternative Medicine.]
110305
110306 &lt;!-- Categorization --&gt;
110307 [[Category:Alternative medicine|*0]]
110308 [[Category:Pseudoscience]]
110309 [[Category:Protoscience]]
110310
110311 &lt;!-- Localization --&gt;
110312
110313 [[ar:ØˇØ¨ بدŲŠŲ„]]
110314 [[da:Naturmedicin]]
110315 [[de:Alternativmedizin]]
110316 [[et:Alternatiivmeditsiin]]
110317 [[es:Medicina alternativa]]
110318 [[fr:MÊdecine parallèle]]
110319 [[ko:대ė˛´ė˜í•™]]
110320 [[it:Medicina alternativa]]
110321 [[he:רפואה אלטרנטיבי×Ē]]
110322 [[nl:Alternatieve geneeswijze]]
110323 [[ja:äģŖæ›ŋåŒģį™‚]]
110324 [[no:Alternativ medisin]]
110325 [[pl:Medycyna niekonwencjonalna]]
110326 [[pt:Medicina alternativa]]
110327 [[ru:АĐģŅŒŅ‚ĐĩŅ€ĐŊĐ°Ņ‚ивĐŊĐ°Ņ ĐŧĐĩдиŅ†Đ¸ĐŊĐ°]]
110328 [[fi:Vaihtoehtoinen hoitomuoto]]
110329 [[sv:Alternativmedicin]]
110330 [[uk:АĐģŅŒŅ‚ĐĩŅ€ĐŊĐ°Ņ‚ивĐŊĐ° ĐŧĐĩдиŅ†Đ¸ĐŊĐ°]]</text>
110331 </revision>
110332 </page>
110333 <page>
110334 <title>Archimedean solid</title>
110335 <id>1847</id>
110336 <revision>
110337 <id>38475065</id>
110338 <timestamp>2006-02-06T16:09:33Z</timestamp>
110339 <contributor>
110340 <username>Joseolgon</username>
110341 <id>577139</id>
110342 </contributor>
110343 <text xml:space="preserve">In [[geometry]] an '''Archimedean solid''' or [[semiregular polyhedra|'''semi-regular solid''']] is a semi-regular [[convex]] [[polyhedron]] composed of two or more types of [[polygon|regular polygon]] meeting in identical [[vertex|vertices]]. They are distinct from the [[Platonic solid]]s, which are composed of only one type of polygon meeting in identical vertices, and from the [[Johnson solid]]s, whose regular polygonal faces do not meet in identical vertices.
110344
110345 ==Origin of name==
110346
110347 The Archimedean solids take their name from [[Archimedes]], who discussed them in a now-lost work. During the [[Renaissance]], [[artist]]s and [[mathematician]]s valued ''pure forms'' and rediscovered all of these forms. This search was completed around [[1619]] by [[Johannes Kepler]], who defined prisms, antiprisms, and the non-convex solids known as [[Kepler-Poinsot solid]]s.
110348
110349 ==Classification==
110350
110351 There are 13 Archimedean solids (15 if the [[mirror image]]s of two [[chirality (mathematics)|enantiomorph]]s, see below, are counted separately). Here the ''vertex configuration'' refers to the type of regular polygons that meet at any given vertex. For example, a vertex configuration of (4,6,8) means that a square, hexagon, and octagon meet at a vertex (with the order taken to be clockwise around the vertex).
110352
110353 The number of vertices is 720° divided by the vertex [[Defect (geometry)|angle defect]].
110354
110355 {| class=&quot;wikitable&quot; style=&quot;text-align:center&quot;
110356 |-
110357 ! Name
110358 ! picture
110359 ! colspan=2|Faces
110360 ! Edges
110361 ! Vertices
110362 ! [[Vertex configuration]]
110363 ! [[Symmetry group]]
110364
110365 |-
110366 | [[truncated tetrahedron]]
110367 | [[image:truncatedtetrahedron.jpg|60px|Truncated tetrahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedtetrahedron.gif|Video]])&lt;/small&gt;
110368 | 8 || 4 triangles&lt;br&gt;4 [[hexagon]]s || 18
110369 | 12
110370 | 3.6.6 || T&lt;sub&gt;d&lt;/sub&gt;
110371
110372 |-
110373 | [[cuboctahedron]]
110374 | [[image:cuboctahedron.jpg|60px|Cuboctahedron]]&lt;br /&gt;&lt;small&gt;([[:image:cuboctahedron.gif|Video]])&lt;/small&gt;
110375 | &amp;nbsp;14&amp;nbsp; || 8 [[triangle (geometry)|triangle]]s&lt;br&gt;6 [[square (geometry)|square]]s
110376 | 24 || 12 || 3.4.3.4
110377 | O&lt;sub&gt;h&lt;/sub&gt;
110378 |-
110379 | [[truncated cube]]&lt;br /&gt;or truncated hexahedron
110380 | [[image:truncatedhexahedron.jpg|60px|Truncated hexahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedhexahedron.gif|Video]])&lt;/small&gt;
110381 | 14 || 8 triangles&lt;br&gt;6 [[octagon]]s || 36
110382 | 24
110383 | 3.8.8 || O&lt;sub&gt;h&lt;/sub&gt;
110384 |-
110385 | [[truncated octahedron]]
110386 | [[image:truncatedoctahedron.jpg|60px|Truncated octahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedoctahedron.gif|Video]])&lt;/small&gt;
110387 | 14 || 6 squares&lt;br&gt;8 hexagons || 36 || 24
110388 | 4.6.6 || O&lt;sub&gt;h&lt;/sub&gt;
110389 |-
110390 | [[rhombicuboctahedron]]&lt;br /&gt;or small rhombicuboctahedron
110391 | [[image:rhombicuboctahedron.jpg|60px|Rhombicuboctahedron]]&lt;br /&gt;&lt;small&gt;([[:image:rhombicuboctahedron.gif|Video]])&lt;/small&gt;
110392 | 26 ||8 triangles&lt;br&gt;18 squares || 48 || 24
110393 | 3.4.4.4 || O&lt;sub&gt;h&lt;/sub&gt;
110394 |-
110395 | [[truncated cuboctahedron]]&lt;br /&gt;or great rhombicuboctahedron
110396 | [[image:truncatedcuboctahedron.jpg|60px|Truncated cuboctahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedcuboctahedron.gif|Video]])&lt;/small&gt;
110397 | 26 || 12 squares&lt;br&gt;8 hexagons&lt;br&gt;6 octagons
110398 | 72 || 48 || 4.6.8 || O&lt;sub&gt;h&lt;/sub&gt;
110399 |-
110400 | [[snub cube]]&lt;br /&gt;or snub cuboctahedron&lt;br&gt;(2 [[chirality (mathematics)|chiral]] forms)
110401 | [[image:snubhexahedronccw.jpg|60px|Snub hexahedron (Ccw)]]&lt;br /&gt;&lt;small&gt;([[:image:snubhexahedronccw.gif|Video]])&lt;/small&gt;&lt;br /&gt;[[image:snubhexahedroncw.jpg|60px|Snub hexahedron (Cw)]]&lt;br /&gt;&lt;small&gt;([[:image:snubhexahedroncw.gif|Video]])&lt;/small&gt;
110402 | 38 ||32 triangles&lt;br&gt;6 squares || 60 || 24
110403 | 3.3.3.3.4
110404 | O
110405
110406 |-
110407 | [[icosidodecahedron]]
110408 | [[image:icosidodecahedron.jpg|60px|Icosidodecahedron]]&lt;br /&gt;&lt;small&gt;([[:image:icosidodecahedron.gif|Video]])&lt;/small&gt;
110409 | 32 || 20 triangles&lt;br&gt;12 [[pentagon]]s
110410 | 60 || 30
110411 | 3.5.3.5 || I&lt;sub&gt;h&lt;/sub&gt;
110412
110413 |-
110414 | [[truncated dodecahedron]]
110415 | [[image:truncateddodecahedron.jpg|60px|Truncated dodecahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncateddodecahedron.gif|Video]])&lt;/small&gt;
110416 | 32 ||20 triangles&lt;br&gt;12 [[decagon]]s || 90
110417 | 60
110418 | 3.10.10 || I&lt;sub&gt;h&lt;/sub&gt;
110419 |-
110420 | [[truncated icosahedron]]&lt;br /&gt;or [[Fullerene|buckyball]]&lt;BR&gt;or [[Football (ball)|football]]/soccer ball
110421 | [[image:truncatedicosahedron.jpg|60px|Truncated icosahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedicosahedron.gif|Video]])&lt;/small&gt;
110422 | 32 || 12 pentagons&lt;br&gt;20 hexagons || 90
110423 | 60
110424 | 5.6.6 || I&lt;sub&gt;h&lt;/sub&gt;
110425 |-
110426 | [[rhombicosidodecahedron]]&lt;br /&gt;or small rhombicosidodecahedron
110427 | [[image:rhombicosidodecahedron.jpg|60px|Rhombicosidodecahedron]]&lt;br /&gt;&lt;small&gt;([[:image:rhombicosidodecahedron.gif|Video]])&lt;/small&gt;
110428 | 62 || 20 triangles&lt;br&gt;30 squares&lt;br&gt;12 pentagons
110429 | 120 || 60 || 3.4.5.4
110430 | I&lt;sub&gt;h&lt;/sub&gt;
110431 |-
110432 | [[truncated icosidodecahedron]]&lt;br /&gt;or great rhombicosidodecahedron
110433 | [[image:truncatedicosidodecahedron.jpg|60px|Truncated icosidodecahedron]]&lt;br /&gt;&lt;small&gt;([[:image:truncatedicosidodecahedron.gif|Video]])&lt;/small&gt;
110434 | 62 ||30 squares&lt;br&gt;20 hexagons&lt;br&gt;12 decagons
110435 | 180 || 120 || 4.6.10
110436 | I&lt;sub&gt;h&lt;/sub&gt;
110437
110438 |-
110439 | [[snub dodecahedron]]&lt;br /&gt;or snub icosidodecahedron&lt;br&gt;(2 [[chirality (mathematics)|chiral]] forms)
110440 | [[image:snubdodecahedronccw.jpg|60px|Snub dodecahedron (Ccw)]]&lt;br /&gt;&lt;small&gt;([[:image:snubdodecahedronccw.gif|Video]])&lt;/small&gt;&lt;br /&gt;[[image:snubdodecahedroncw.jpg|60px|Snub dodecahedron (Cw)]]&lt;br&gt;&lt;small&gt;([[:image:snubdodecahedroncw.gif|Video]])&lt;/small&gt;
110441 | 92 || 80 triangles&lt;br&gt;12 pentagons || 150
110442 | 60
110443 | 3.3.3.3.5
110444 | I
110445 |}
110446
110447 The cuboctahedron and icosidodecahedron are edge-uniform and are called quasi-regular.
110448
110449 The snub cube and snub dodecahedron are known as ''chiral'', as they come in a left-handed (Latin: levomorph or laevomorph) form and right-handed (Latin: dextromorph) form. When something comes in multiple forms which are each other's three-dimensional [[mirror image]], these forms may be called enantiomorphs. (This nomenclature is also used for the forms of [[chemical compound]]s).
110450
110451 The [[dual polyhedron|duals]] of the Archimedean solids are called the [[Catalan solid|Catalan solids]]. Together with the [[bipyramid|bipyramids]] and [[trapezohedron|trapezohedra]], these are the face-uniform solids with regular vertices.
110452
110453 == See also ==
110454 * [[List of uniform polyhedra]]
110455
110456 ==External links==
110457 *[http://www.software3d.com/Archimedean.html Paper models of Archimedean solids]
110458 *[http://www.mathconsult.ch/showroom/unipoly/ The Uniform Polyhedra]
110459 *[http://www.georgehart.com/virtual-polyhedra/vp.html Virtual Reality Polyhedra] The Encyclopedia of Polyhedra
110460 *[http://www.cs.utk.edu/~plank/plank/origami/penultimate/intro.html Penultimate Modular Origami]
110461 *[http://ibiblio.org/e-notes/3Dapp/Convex.htm Interactive 3D polyhedra] in Java
110462
110463 [[Category:Archimedean solids]]
110464 [[Category:Polyhedra]]
110465 [[es:sÃŗlidos de Arquímedes]]
110466 [[de:Archimedischer KÃļrper]]
110467 [[ko:ė•„ëĨ´í‚¤ëŠ”데ėŠ¤ė˜ 다면ė˛´]]
110468 [[it:Solido archimedeo]]
110469 [[nl:Halfregelmatig veelvlak]]
110470 [[pl:Wielościan pÃŗłforemny]]
110471 [[pt:SÃŗlidos de Arquimedes]]
110472 [[ru:ПоĐģŅƒĐŋŅ€Đ°Đ˛Đ¸ĐģŅŒĐŊŅ‹Đš ĐŧĐŊĐžĐŗĐžĐŗŅ€Đ°ĐŊĐŊиĐē]]
110473 [[zh:半æ­Ŗ多éĸéĢ”]]</text>
110474 </revision>
110475 </page>
110476 <page>
110477 <title>African Languages</title>
110478 <id>1848</id>
110479 <revision>
110480 <id>15900310</id>
110481 <timestamp>2004-10-10T03:54:39Z</timestamp>
110482 <contributor>
110483 <username>Timwi</username>
110484 <id>13051</id>
110485 </contributor>
110486 <minor />
110487 <comment>fix double-redirect</comment>
110488 <text xml:space="preserve">#REDIRECT [[African languages]]</text>
110489 </revision>
110490 </page>
110491 <page>
110492 <title>Airbus Industrie</title>
110493 <id>1849</id>
110494 <revision>
110495 <id>15900311</id>
110496 <timestamp>2005-02-03T20:39:25Z</timestamp>
110497 <contributor>
110498 <username>ALoan</username>
110499 <id>63066</id>
110500 </contributor>
110501 <comment>#REDIRECT [[Airbus]]</comment>
110502 <text xml:space="preserve">#REDIRECT [[Airbus]]</text>
110503 </revision>
110504 </page>
110505 <page>
110506 <title>Antiprism</title>
110507 <id>1851</id>
110508 <revision>
110509 <id>42125228</id>
110510 <timestamp>2006-03-04T00:04:10Z</timestamp>
110511 <contributor>
110512 <username>Tomruen</username>
110513 <id>63601</id>
110514 </contributor>
110515 <comment>/* Star antiprisms */</comment>
110516 <text xml:space="preserve">{| border=&quot;1&quot; bgcolor=&quot;#ffffff&quot; cellpadding=&quot;5&quot; align=&quot;right&quot; style=&quot;margin-left:10px&quot; width=&quot;250&quot;
110517 !bgcolor=#e7dcc3 colspan=2|Set of uniform antiprisms
110518 |-
110519 |align=center colspan=2|[[image:antiprism17.jpg|240px|Heptadecagonal antiprism]]&lt;br /&gt;
110520 |-
110521 |bgcolor=#e7dcc3|Type||Antiprism
110522 |-
110523 |bgcolor=#e7dcc3|Faces||2 [[polygon|n-gon]]s, 2n [[triangle]]s
110524 |-
110525 |bgcolor=#e7dcc3|Edges||4n
110526 |-
110527 |bgcolor=#e7dcc3|Vertices||2n
110528 |-
110529 |bgcolor=#e7dcc3|[[Vertex configuration]]||3.3.3.n
110530 |-
110531 |bgcolor=#e7dcc3|[[Symmetry group]]||[[Symmetry_group#Three_dimensions|''D''&lt;sub&gt;''nd''&lt;/sub&gt;]]
110532 |-
110533 |bgcolor=#e7dcc3|[[Dual polyhedron]]||[[trapezohedron]]
110534 |-
110535 |bgcolor=#e7dcc3|Properties||convex, semi-regular (vertex-uniform)
110536 |}
110537 An ''n''-sided '''antiprism''' is a [[polyhedron]] composed of two parallel copies of some particular ''n''-sided [[polygon]], connected by an alternating band of [[triangle]]s.
110538
110539 Antiprisms are a subclass of the [[prismatoid]]s.
110540
110541 Antiprisms are similar to [[prism (geometry)|prism]]s except the bases are twisted relative to each other: the vertices are symmetrically staggered.
110542
110543 In the case of a regular ''n''-sided base, one usually considers the case where its copy is twisted by an angle 180°/n. Extra regularity is obtained by the line connecting the base centers being perpendicular to the base planes, making it a '''right antiprism'''. It has, apart from the base faces, 2''n'' isosceles triangles as faces.
110544
110545 A '''[[Uniform_polyhedron|uniform]] antiprism''' has, apart from the base faces, 2''n'' equilateral triangles as faces. They form an infinite series of vertex-uniform polyhedra, as do the uniform prisms. For ''n''=2 we have as degenerate case the regular [[tetrahedron]].
110546
110547 == Forms ==
110548 [[Image:Tetrahedron.png|80px]]
110549 [[Image:Trigonal_antiprism.png|80px]]
110550 [[Image:Square antiprism.png|80px]]
110551 [[Image:Pentagonal antiprism.png|80px]]
110552 [[Image:Hexagonal antiprism.png|80px]]
110553 [[Image:Octagonal antiprism.png|80px]]
110554 [[Image:Decagonal antiprism.png|80px]]
110555 [[Image:Dodecagonal antiprism.png|80px]]
110556
110557 * (linear antiprism) [[Tetrahedron]] - 4 triangles - self dual
110558 * (trigonal antiprism) [[Octahedron]] - 8 triangles - dual [[cube]]
110559 * [[Square antiprism]] - 8 triangles, 2 squares - dual [[tetragonal trapezohedron]]
110560 * [[Pentagonal antiprism]] - 10 triangles, 2 pentagons - dual [[pentagonal trapezohedron]]
110561 * [[Hexagonal antiprism]] - 12 triangles, 2 hexagons - dual [[hexagonal trapezohedron]]
110562 * ''Septagonal antiprism'' - 14 triangles, 2 septagons - dual [[septagonal trapezohedron]]
110563 * [[Octagonal antiprism]] - 16 triangles, 2 octagons - dual [[octagonal trapezohedron]]
110564 * ...
110565 * [[Decagonal antiprism]] - 20 triangles, 2 decagons - dual [[decagonal trapezohedron]]
110566 * ...
110567 * [[Dodecagonal antiprism]] - 24 triangles, 2 dodecagons - dual [[dodecagonal trapezohedron]]
110568 * ...
110569 * '''n-agonal antiprism''' - 2n triangles, 2 n-agons - dual [[trapezohedron|n-agonal trapezohedron]]
110570
110571 If ''n''=3 then we only have triangles; we get the [[octahedron]], a particular type of right triangular antiprism which is also edge- and face-uniform, and so counts among the [[Platonic solid]]s. The [[dual polyhedron|dual polyhedra]] of the antiprisms are the [[trapezohedron|trapezohedra]]. Their existence was first discussed and their name was coined by [[Johannes Kepler]].
110572
110573 == Cartesian coordinates ==
110574 [[Cartesian coordinates]] for the vertices of a right antiprism with ''n''-gonal bases and isosceles triangles are
110575 : &lt;math&gt;( \cos(k\pi/n), \sin(k\pi/n), (-1)^k a )\;&lt;/math&gt;
110576 with ''k'' ranging from 0 to 2''n''-1; if the triangles are equilateral,
110577 :&lt;math&gt;2a^2=\cos(\pi/n)-\cos(2\pi/n)\;&lt;/math&gt;.
110578
110579 == Symmetry ==
110580 The [[symmetry group]] of a right ''n''-sided antiprism with regular base and isosceles side faces is ''D&lt;sub&gt;nd&lt;/sub&gt;'' of order 4''n'', except in the case of a tetrahedron, which has the larger symmetry group '''T&lt;sub&gt;d&lt;/sub&gt;''' of order 24, which has three versions of ''D&lt;sub&gt;2d&lt;/sub&gt;'' as subgroups, and the octahedron, which has the larger symmetry group '''O&lt;sub&gt;d&lt;/sub&gt;''' of order 48, which has four versions of ''D&lt;sub&gt;3d&lt;/sub&gt;'' as subgroups.
110581
110582 The symmetry group contains [[inversion]] [[iff]] ''n'' is odd.
110583
110584 The [[rotation group]] is ''D&lt;sub&gt;n&lt;/sub&gt;'' of order 2''n'', except in the case of a tetrahedron, which has the larger rotation group '''T''' of order 12, which has three versions of ''D&lt;sub&gt;2&lt;/sub&gt;'' as subgroups, and the octahedron, which has the larger rotation group '''O''' of order 24, which has four versions of ''D&lt;sub&gt;3&lt;/sub&gt;'' as subgroups.
110585
110586 == Star antiprisms ==
110587
110588 Uniform antiprisms can also be constructed on [[star polygon]]s: {''n''/''m''} = {5/2}, {7/3}, {7/4}, {8/3}, {9/2}, {9/4}, {10/3}...
110589
110590 For any [[coprime]] pair of integers ''n,m'' such that 2''m'' &lt; ''n'', there are two forms:
110591 * a normal '''antiprism''' with vertex configuration ''3.3.3.n/m'';
110592 * a '''crossed antiprism''' with vertex configuration ''3.3.3.n/(n-m)''.
110593
110594 {|
110595 |align=center|[[Image:Pentagrammic antiprism.png|100px]]&lt;BR&gt;[[Pentagrammic antiprism|''3.3.3.5/2'']]
110596 |align=center|[[Image:Pentagrammic crossed antiprism.png|100px]]&lt;BR&gt;[[Pentagrammic crossed-antiprism|''3.3.3.5/3'']]
110597 |}
110598
110599 ==External links==
110600 *[http://www.software3d.com/Prisms.html Paper models of prisms and antiprisms]
110601 *[http://www.mathconsult.ch/showroom/unipoly/ The Uniform Polyhedra]
110602 *[http://www.georgehart.com/virtual-polyhedra/vp.html Virtual Reality Polyhedra] The Encyclopedia of Polyhedra
110603 ** [[VRML]] models [http://www.georgehart.com/virtual-polyhedra/alphabetic-list.html (George Hart)] [http://www.georgehart.com/virtual-polyhedra/vrml/octahedron.wrl &lt;3&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/square_antiprism.wrl &lt;4&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/pentagonal_antiprism.wrl &lt;5&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/hexagonal_antiprism.wrl &lt;6&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/heptagonal_antiprism.wrl &lt;7&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/octagonal_antiprism.wrl &lt;8&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/enneagonal_antiprism.wrl &lt;9&gt;] [http://www.georgehart.com/virtual-polyhedra/vrml/decagonal_antiprism.wrl &lt;10&gt;]
110604
110605
110606 [[Category:Polyhedra]]
110607 [[Category:Uniform polyhedra]]
110608 [[Category:Prismatoid polyhedra]]
110609
110610 [[pl:Antygraniastos&amp;#322;up]]
110611 [[pt:Antiprisma]]
110612 [[ru:&amp;#1040;&amp;#1085;&amp;#1090;&amp;#1080;&amp;#1087;&amp;#1088;&amp;#1080;&amp;#1079;&amp;#1084;&amp;#1072;]]
110613 [[ja:åč§’æŸą]]</text>
110614 </revision>
110615 </page>
110616 <page>
110617 <title>Ancient Greeks</title>
110618 <id>1852</id>
110619 <revision>
110620 <id>15900314</id>
110621 <timestamp>2004-11-18T17:33:02Z</timestamp>
110622 <contributor>
110623 <username>Didactohedron</username>
110624 <id>71041</id>
110625 </contributor>
110626 <minor />
110627 <comment>fixing double redirect</comment>
110628 <text xml:space="preserve">#REDIRECT [[Ancient Greece]]</text>
110629 </revision>
110630 </page>
110631 <page>
110632 <title>Ecology of Africa</title>
110633 <id>1853</id>
110634 <revision>
110635 <id>40587451</id>
110636 <timestamp>2006-02-21T17:27:02Z</timestamp>
110637 <contributor>
110638 <username>Xerocs</username>
110639 <id>757355</id>
110640 </contributor>
110641 <minor />
110642 <comment>rvv</comment>
110643 <text xml:space="preserve">===Flora===
110644 The vegetation of [[Africa]] follows very closely the distribution of heat and moisture. The northern and southern temperate zones have a flora distinct from that of the continent generally, which is tropical. In the countries bordering the [[Mediterranean]] are groves of [[orange (fruit)|orange]]s and [[olive]] trees, evergreen [[oak]]s, [[cork oak|cork]] trees and [[pine]]s, intermixed with [[cupressus|cypresses]], [[myrtle]]s, [[arbutus]] and fragrant [[Erica|tree-heaths]].
110645
110646 South of the [[Atlas mountains|Atlas]] range the conditions alter. The zones of minimum rainfall have a very scanty flora, consisting of plants adapted to resist the great dryness. Characteristic of the [[Sahara]] is the [[date palm]], which flourishes where other vegetation can scarcely maintain existence, while in the semidesert regions the [[acacia]] (whence is obtained gum-arabic) is abundant.
110647
110648 The more humid regions have a richer vegetation; dense forest where the rainfall is greatest and variations of temperature least, conditions found chiefly on the tropical coasts, and in the west African equatorial basin with its extension towards the upper [[Nile]]; and [[savanna]] interspersed with trees on the greater part of the plateaus, passing as the desert regions are approached into a scrub vegetation consisting of thorny acacias, etc. Forests also occur on the humid slopes of mountain ranges up to a certain elevation. In the coast regions the typical tree is the [[mangrove]], which flourishes wherever the soil is of a [[swamp]] character.
110649
110650 The dense [[forest]]s of West Africa contain, in addition to a great variety of [[hardwood]]s, two [[Arecaceae|palms]], ''Elaeis guincensis'' ([[oil palm]]) and ''Raphia vinifera'' ([[bamboo palm]]), not found, generally speaking, in the savanna regions. ''[[Bombax]]'' or silk-cotton trees attain gigantic proportions in the forests, which are the home of the india rubber-producing plants and of many valuable kinds of timber trees, such as [[odum]] (''Chlorophora excelsa''), [[ebony]], [[mahogany]] (''Khaya senegalensis''), [[Oldfieldia]] (''Oldfieldia africana'') and [[camwood]] (''Baphia nitida''). The climbing plants in the tropical forests are exceedingly luxuriant and the undergrowth or &quot;bush&quot; is extremely dense.
110651
110652 In the savannas the most characteristic trees are the monkey bread tree or [[baobab]] (''Adanisonia digitata''), [[doom palm]] (''Hyphaene'') and [[euphorbia]]s. The [[coffee]] plant grows wild in such widely separated places as [[Liberia]] and southern [[Abyssinia]]. The higher mountains have a special flora showing close agreement over wide intervals of space, as well as affinities with the mountain flora of the eastern [[Mediterranean]], the [[Himalaya]] and [[Indo-China]].
110653
110654 In the swamp regions of north-east Africa [[papyrus]] and associated plants, including the soft-wooded [[ambach]], flourish in immense quantities, and little else is found in the way of vegetation. South Africa is largely destitute of forest save in the lower valleys and coast regions. Tropical flora disappears, and in the semi-desert plains the fleshy, leafless, contorted species of [[kapsia]]s, [[mesembryanthemum]]s, [[aloe]]s and other succulent plants make their appearance. There are, too, valuable timber trees, such as the [[Podocarpus|Yellow-wood]] (''Podocarpus elongatus''), [[stinkwood]] (''Ocotea''), [[sneezewood]] or [[Cape ebony]] (''Pteroxylon utile'') and ironwood. Extensive miniature woods of heaths are found in almost endless variety and covered throughout the greater part of the year with innumerable blossoms in which red is very prevalent. Of the grasses of Africa alfa is very abundant in the plateaus of the Atlas range.
110655
110656 ===Fauna===
110657 The fauna again shows the effect of the characteristics of the vegetation. The open savannas are the home of large [[ungulate]]s, especially [[antelope]]s, the [[giraffe]] (peculiar to Africa), [[zebra]], [[Cape_buffalo|buffalo]], wild [[donkey|ass]] and four species of [[rhinoceros]]; and of carnivores, such as the [[lion]], [[leopard]], [[hyena]], etc. The [[okapi]] (a genus restricted to Africa) is found only in the dense forests of the [[Congo River|Congo]] basin. [[Bear]]s are confined to the Atlas region, [[wolf|wolves]] and [[fox]]es to North Africa. The [[elephant]] (though its range has become restricted through the attacks of hunters) is found both in the savannas and forest regions, the latter being otherwise poor in large game, though the special habitat of the [[chimpanzee]] and [[gorilla]]. [[Baboon]]s and [[mandrill]]s, with few exceptions, are peculiar to Africa. The single-humped [[camel]], as a domestic animal, is
110658 especially characteristic of the northern deserts and steppes.
110659
110660 The rivers in the tropical zone abound with [[hippopotamus|hippopotami]] and [[crocodile]]s, the former entirely confined to Africa. The vast herds of game, formerly so characteristic of many parts of Africa, have much diminished with the increase of intercourse with the interior. Game reserves have, however, been established in [[South Africa]], [[British Central Africa]], [[British East Africa]], [[Somahland]], etc., while measures for the protection of wild animals were laid down in an international convention signed in May 1900.
110661
110662 The [[ornithology]] of northern Africa presents a close resemblance to that of southern Europe, scarcely a species being found which does not also occur in the other countries bordering the Mediterranean. Among the birds most characteristic of Africa are the [[ostrich]] and the [[secretary-bird]]. The ostrich is widely dispersed, but is found chiefly in the [[desert]] and [[steppe]] regions. The secretary-bird is common in the south. The [[weaver bird]]s and their allies, including the [[long-tailed whydah]]s, are abundant, as are, among game-birds, the [[francolin]] and [[guineafowl]]. Many of the smaller birds, such as the [[sunbird]]s, [[bee-eater]]s, the [[parrot]]s and [[kingfisher]]s, as well as the larger [[plantain-eater]]s, are noted for the brilliance of their plumage.
110663
110664 Of [[reptile]]s the [[lizard]] and [[chameleon]] are common, and there are a number of venomous [[snake]]s, though these are not so numerous as in other tropical countries.
110665
110666 The [[scorpion]] is abundant. Of [[insect]]s Africa has many thousand different kinds; of these the [[locust]] is the proverbial scourge of the continent, and the ravages of the [[termite]]s are almost incredible. The spread of [[malaria]] by means of [[mosquito]]es is common. The [[tsetse fly]], whose bite is fatal to all domestic animals, is common in many districts of South and East Africa. Fortunately it is found nowhere outside Africa.
110667
110668
110669 ==References==
110670 *{{1911}}
110671
110672 [[Category:Africa]]</text>
110673 </revision>
110674 </page>
110675 <page>
110676 <title>Geography of Africa</title>
110677 <id>1854</id>
110678 <revision>
110679 <id>38566653</id>
110680 <timestamp>2006-02-07T03:51:36Z</timestamp>
110681 <contributor>
110682 <username>Cdc</username>
110683 <id>132820</id>
110684 </contributor>
110685 <minor />
110686 <comment>Reverted edits by [[Special:Contributions/71.101.215.25|71.101.215.25]] ([[User talk:71.101.215.25|talk]]) to last version by LeonardoGregianin</comment>
110687 <text xml:space="preserve">[[Image:LocationAfrica.png|300px|right]]
110688 {{commonscat|Maps of Africa}}
110689 '''[[Africa]]''' is a [[continent]] comprised of 61 political territories (including 53 [[United Nations member states|countries]]), representing the largest of the three great southward projections from the main mass of [[Earth]]'s surface. It includes, within its remarkably regular outline, an area of 30,368,609 [[square kilometre|km&lt;sup&gt;2&lt;/sup&gt;]] (11,725,385 [[square mile|mi&lt;sup&gt;2&lt;/sup&gt;]]), including adjacent islands.
110690
110691 Separated from [[Europe]] by the [[Mediterranean Sea]] and from much of [[Asia]] by the [[Red Sea]], Africa is joined to Asia at its northeast extremity by the Isthmus of Suez (which is transected by the [[Suez Canal]]), 130 km (80 miles) wide. For [[geopolitical]] purposes, the [[Sinai Peninsula]] of [[Egypt]] – east of the Suez Canal – is often considered part of Africa. From the most northerly point, Ras ben Sakka in [[Morocco]], a little west of [[Cape Blanc]], in 37°21′ N, to the most southerly point, [[Cape Agulhas]] in [[South Africa]], 34°51′15â€ŗ S, is a distance approximately of 8,000 km (5,000 miles); from [[Cape Verde]], 17°33′22â€ŗ W, the westernmost point, to Ras Hafun in [[Somalia]], 51°27′52â€ŗ E, the most easterly projection, is a distance (also approximately) of 7,400 km (4,600 miles). The length of coast-line is 26,000 km (16,100 miles) and the absence of deep indentations of the shore is shown by the fact that Europe, which covers only [[1 E12 m²|9,700,000 km&lt;sup&gt;2&lt;/sup&gt;]] (3,760,000 square miles), has a coastline of 32,000 km (19,800 miles).
110692
110693 The main structural lines of the continent show both the east-to-west direction characteristic, at least in the eastern hemisphere, of the more northern parts of the world, and the north-to-south direction seen in the southern peninsulas. [[Africa]] is thus composed of two segments at right angles, the northern running from east to west, the southern from north to south, the subordinate lines corresponding in the main to these two directions.
110694
110695 === Main Geographical Features ===
110696 [[Image:Africa satellite plane.jpg|thumb|300px|]]
110697
110698 The average elevation of the continent approximates closely to 600 m (2,000 ft), which is roughly the elevation of both [[North America|North]] and [[South America]], but is considerably less than that of [[Asia]], 950 m (3,117 ft). In contrast with the other continents it is marked by the comparatively small area both of very high and of very low ground, lands under 180 m (600 ft) occupying an unusually small part of the surface; while not only are the highest elevations inferior to those of Asia and South America, but the area of land over 3,000 m (10,000 ft) is also quite insignificant, being represented almost entirely by individual peaks and mountain ranges. Moderately elevated tablelands are thus the characteristic feature of the continent, though the surface of these is broken by higher peaks and ridges. (So prevalent are these isolated peaks and
110699 ridges that a special term [Inselberg-landschaft] has been adopted in [[Germany]] to describe this kind of country, which is thought to be in great part the result of wind action.)
110700
110701 As a general rule, the higher tablelands lie to the east and south, while a progressive diminution in altitude towards the west and north is observable. Apart from the lowlands and the [[Atlas mountains|Atlas mountain]] range, the continent may be divided into two regions of higher and lower plateaus, the dividing line (somewhat concave to the north-west) running from the middle of the [[Red Sea]] to about 6 deg. S. on the west coast.
110702
110703 Africa can be divided into a number of geographic zones:
110704 *The coast plains - often fringed seawards by mangrove swamps - never stretching far from the coast, except on the lower courses of streams. Recent alluvial flats are found chiefly in the delta of the more important rivers. Elsewhere the coast lowlands merely form the lowest steps of the system of terraces which constitutes the ascent to the inner plateaus.
110705 *The [[Atlas Mountains|Atlas range]], which, orographically, is distinct from the rest of the continent, being unconnected with any other area of high ground, and separated from the rest of the continent on the south by a depressed and desert area (the [[Sahara]]), in places below sea-level.
110706
110707 ===Plateau region===
110708 [[Image:topography of africa.jpg|thumb|320px|Topography of Africa]]
110709 The high southern and eastern plateaus, rarely falling below 600 m (2000 ft), and having a mean elevation of about 1000 m (3500 ft). The [[South African plateau]] as far as about 12° S, bounded east, west and south by bands of high ground which fall steeply to the coasts. On this account South Africa has a general resemblance to an inverted saucer. Due south the plateau rim is formed by three parallel steps with level ground between them. The largest of these level areas, the [[Great Karoo]], is a dry, barren region, and a large tract of the plateau proper is of a still more arid character and is known as the [[Kalahari Desert]].
110710
110711 The South African plateau is connected towards the north-east with the [[East African plateau]], with probably a slightly greater average elevation, and marked by some distinct features. It is formed by a widening out of the eastern axis of high ground, which becomes subdivided into a number of zones running north and south and consisting in turn of ranges, tablelands and depressions. The most striking feature is the existence of two great lines of depression, due largely to the subsidence of whole segments of the earth's crust, the lowest parts of which are occupied by vast lakes. Towards
110712 the south the two lines converge and give place to one great valley (occupied by [[Lake Nyasa]]), the southern part of which is less distinctly due to rifting and subsidence than the rest of the system.
110713
110714 Farther north the western depression, known as the [[Great Rift Valley]] is occupied for more than half its length by water, forming the [[Great Lakes (Africa)|Great Lakes]] lakes of [[Lake Tanganyika|Tanganyika]], [[Lake Kivu|Kivu]], [[Lake Edward]] and [[Lake Albert, Africa|Lake Albert]], the first-named over 400 miles (600 km) long and the longest freshwater lake in the world. Associated with these great valleys are a number of volcanic peaks, the greatest of which occur on a meridional line east of the eastern trough. The eastern depression, known as the East African trough or rift-valley, contains much smaller lakes, many of them [[brackish water|brackish]] and without outlet, the only one comparable to those of the western trough being [[Lake Rudolf]] or Basso Norok.
110715
110716 At no great distance east of this rift-valley are [[Mount Kilimanjaro]] - with its two peaks Kibo and Mawenzi, the former 5889 m (19,321 ft), and the culminating point of the whole continent - and [[Mount Kenya]], 5184 m (17,007 ft). Hardly less important is the [[Ruwenzori Range]], over 5060 m (16,600 ft), which lies east of the western trough. Other volcanic peaks rise from the floor of the valleys, some of the Kirunga (Mfumbiro) group, north of Lake Kivu, being still partially active.
110717
110718 The third division of the higher region of Africa is formed by the [[Ethiopian Highlands]], a rugged mass of mountains forming the largest continuous area of its altitude in the whole continent, little of its surface falling below 1500 m (5000 ft), while the summits reach heights of 4600 m to 4900 m (15,000 to 16,000 ft). This block of country lies just west of the line of the great East African Trough, the northern continuation of which passes along its eastern escarpment as it runs up to join the Red Sea. There is, however, in the centre a circular basin occupied by [[Lake Tsana]].
110719
110720 Both in the east and west of the continent the bordering highlands are continued as strips of plateau parallel to the coast, the Ethiopian mountains being continued northwards along the Red Sea coast by a series of ridges reaching in places a height of 2000 m (7000 ft). In the west the zone of high land is broader but somewhat lower. The most mountainous districts lie inland from the head of the [[Gulf of Guinea]] (Adamawa, etc.), where heights of 1800 m to 2400 m (6000 to 8000 ft) are reached. Exactly at the head of the gulf the great peak of the Cameroon, on a line of volcanic action continued
110721 by the islands to the south-west, has a height of 4075 m (13,370 ft), while Clarence Peak, in [[Fernando Po]], the first of the line of islands, rises to over 2700 m (9000 ft). Towards the extreme west the Futa Jallon highlands form an important diverging point of rivers, but beyond this, as far as the Atlas chain, the elevated rim of the continent is almost wanting.
110722
110723 ==Plains==
110724 The area between the east and west coast highlands, which north of 17° N is mainly desert, is divided into separate basins by other bands of high ground, one of which runs nearly centrally through North Africa in a line corresponding roughly with the curved axis of the continent as a whole. The best marked of the basins so formed (the [[Congo River|Congo]] basin) occupies a circular area bisected by the equator, once probably the site of an inland sea.
110725
110726 Running along the south of desert is the plains region known as the [[Sahel]].
110727
110728 The arid region, the [[Sahara Desert|Sahara]] &amp;mdash; the largest desert in the world, covering 9,000,000 km&lt;sup&gt;2&lt;/sup&gt; (3,500,000 square miles) &amp;mdash; extends from the [[Atlantic Ocean|Atlantic]] to the Red Sea. Though generally of slight elevation it contains mountain ranges with peaks rising to 2400 m (8000 ft) Bordered N.W. by the Atlas range, to the northeast a rocky plateau separates it from the [[Mediterranean]]; this plateau gives place at the extreme east to the delta of the Nile. That river (see below) pierces the desert without modifying its character. The [[Atlas Mountains|Atlas range]], the north-westerly part of the continent, between its seaward and landward heights encloses elevated steppes in places 160 km (100 miles) broad. From the inner slopes of the plateau numerous wadis take a direction towards the Sahara. The greater part of that now desert region is, indeed, furrowed by old water-channels.
110729
110730 The following table gives the approximate altitudes of the chief mountains and lakes of the continent:
110731 {| border=&quot;0&quot;
110732 |-
110733 | style=&quot;vertical-align: top&quot; |
110734 {| border=&quot;1&quot;
110735 |-
110736 ! Mountain
110737 ! ft
110738 ! m
110739 |-
110740 | [[Mount Rungwe]] (Nyasa) || style=&quot;text-align: right&quot; | 10,400
110741 | style=&quot;text-align: right&quot; |3170
110742 |-
110743 | [[Drakensberg]] || style=&quot;text-align: right&quot; | 10,700
110744 | style=&quot;text-align: right&quot; |3261
110745 |-
110746 | [[Mount Lereko|Lereko]] or [[Sattima]] (Aberdare Range)
110747 | style=&quot;text-align: right&quot; | 13,214
110748 | style=&quot;text-align: right&quot; |4028
110749 |-
110750 | [[Mount Cameroon|Cameroon]] || style=&quot;text-align: right&quot; | 13,370
110751 | style=&quot;text-align: right&quot; |4075
110752 |-
110753 | [[Mount Elgon|Elgon]] || style=&quot;text-align: right&quot; | 14,152
110754 | style=&quot;text-align: right&quot; |4314
110755 |-
110756 | [[Mount Karisimbi|Karisimbi]] (Mfumbiro)
110757 | style=&quot;text-align: right&quot; | 14,683
110758 | style=&quot;text-align: right&quot; | 4475
110759 |-
110760 | [[Mount Meru (Tanzania)|Meru]] || style=&quot;text-align: right&quot; | 14,955
110761 | style=&quot;text-align: right&quot; |4558
110762 |-
110763 | [[Mount Taggharat|Taggharat]] (Atlas)
110764 | style=&quot;text-align: right&quot; | 15,000
110765 | style=&quot;text-align: right&quot; |4572
110766 |-
110767 | [[Simen Mountains|Simens]], [[Ethiopia]]
110768 | style=&quot;text-align: right&quot; | 15,160
110769 | style=&quot;text-align: right&quot; | 4621
110770 |-
110771 | [[Ruwenzori]] || style=&quot;text-align: right&quot; | 16,619
110772 | style=&quot;text-align: right&quot; | 5065
110773 |-
110774 | [[Mount Kenya|Kenya]] || style=&quot;text-align: right&quot; | 17,007
110775 | style=&quot;text-align: right&quot; | 5184
110776 |-
110777 | [[Mount Kilimanjaro|Kilimanjaro]] || style=&quot;text-align: right&quot; | 19,321
110778 | style=&quot;text-align: right&quot; | 5889
110779 |}
110780 | style=&quot;vertical-align: top&quot; |
110781 {| border=&quot;1&quot;
110782 |-
110783 ! Lake
110784 ! ft
110785 ! m
110786 |-
110787 | [[Lake Chad|Chad]] || style=&quot;text-align: right&quot; | 850
110788 | style=&quot;text-align: right&quot; | 259
110789 |-
110790 | [[Lake Mai-Ndombe|Mai-Ndombe]] || style=&quot;text-align: right&quot; | 1100
110791 | style=&quot;text-align: right&quot; | 335
110792 |-
110793 | [[Lake Rudolf|Rudolf]] || style=&quot;text-align: right&quot; | 1250
110794 | style=&quot;text-align: right&quot; | 381
110795 |-
110796 | [[Lake Nyasa|Nyasa]] || style=&quot;text-align: right&quot; | 1645
110797 | style=&quot;text-align: right&quot; | 501
110798 |-
110799 | [[Lake Albert|Albert]] || style=&quot;text-align: right&quot; | 2028
110800 | style=&quot;text-align: right&quot; | 618
110801 |-
110802 | [[Lake Tanganyika|Tanganyika]] || style=&quot;text-align: right&quot; | 2624
110803 | style=&quot;text-align: right&quot; | 800
110804 |-
110805 | [[Lake Ngami|Ngami]] || style=&quot;text-align: right&quot; | 2950
110806 | style=&quot;text-align: right&quot; | 899
110807 |-
110808 | [[Lake Mweru|Mweru]] || style=&quot;text-align: right&quot; | 3000
110809 | style=&quot;text-align: right&quot; | 914
110810 |-
110811 | [[Lake Edward|Edward]] || style=&quot;text-align: right&quot; | 3004
110812 | style=&quot;text-align: right&quot; | 916
110813 |-
110814 | [[Lake Bangweulu|Bangweulu]] || style=&quot;text-align: right&quot; | 3700
110815 | style=&quot;text-align: right&quot; | 1128
110816 |-
110817 | [[Lake Victoria|Victoria]] || style=&quot;text-align: right&quot; | 3720
110818 | style=&quot;text-align: right&quot; | 1134
110819 |-
110820 | [[Lake Abaya|Abaya]] || style=&quot;text-align: right&quot; | 4200
110821 | style=&quot;text-align: right&quot; | 1280
110822 |-
110823 | [[Lake Kivu|Kivu]] || style=&quot;text-align: right&quot; | 4829
110824 | style=&quot;text-align: right&quot; | 1472
110825 |-
110826 | [[Lake Tsana|Tsana]] || style=&quot;text-align: right&quot; | 5690
110827 | style=&quot;text-align: right&quot; | 1734
110828 |-
110829 | [[Lake Naivasha|Naivasha]] || style=&quot;text-align: right&quot; | 6135
110830 | style=&quot;text-align: right&quot; | 1870
110831 |}
110832 |}
110833
110834 === National Parks and Game Reserves ===
110835
110836 * [[List of National Parks in Africa]]
110837
110838 === The Hydrographic Systems ===
110839
110840 From the outer margin of the African plateaus a large number of streams run to the sea with comparatively short courses, while the larger rivers flow for long distances on the interior highlands before breaking through the outer ranges. The main drainage of the continent is to the north and west, or towards the basin of the [[Atlantic Ocean]].
110841
110842 The high lake plateau of East Africa contains the head-waters of the [[Nile]] and [[Congo River|Congo]]: the former the longest, the latter the largest river of the continent. The upper Nile receives its chief supplies from the mountainous region adjoining the Central African trough in the neighbourhood of the equator. Thence streams pour east to [[Lake Victoria]], the largest African lake (covering over 26,000 square m.), and west and north to [[Lake Edward]] and [[Lake Albert]], to the latter of which the effluents of the other two lakes add their waters. Issuing from it the Nile flows north, and between 7 deg. and 10 deg. N. traverses a vast marshy level during which its course is liable to blocking by floating vegetation. After receiving the Bahr-el-Ghazal from the west and the [[Sobat River|Sobat]], [[Blue Nile]] and [[Atbarah River|Atbara]] from the Ethiopian highlands (the chief gathering ground of the flood-water), it crosses the great desert and enters the Mediterranean by a vast delta.
110843
110844 The most remote head-stream of the Congo is the [[Chambezi River|Chambezi]], which flows south-west into the marshy [[Lake Bangweulu]]. From this lake issues the Congo, known in its upper course by various names. Flowing first south, it afterwards turns north through [[Lake Mweru]] and descends to the forest-clad basin of west equatorial Africa. Traversing this in a majestic northward curve and receiving vast supplies of water from many great tributaries, it finally turns south-west and cuts a way to the Atlantic Ocean through the western highlands.
110845
110846 North of the Congo basin and separated from it by a broad undulation of the surface is the basin of [[Lake Chad]] - a flat-shored, shallow lake filled principally by the Shad coming from the south-east. West of this is the basin of the [[Niger River|Niger]], the third river of Africa, which, though flowing to the Atlantic, has its principal source in the far west, and reverses the direction of flow exhibited by the Nile and Congo. An important branch, however - the [[Benue River|Benue]] - comes from the south-east. These four river-basins occupy the greater part of the lower plateaus of North and West Africa, the remainder consisting of arid regions watered only by intermittent streams which do not reach the sea.
110847
110848 Of the remaining rivers of the Atlantic basin the [[Orange River|Orange]], in the extreme south, brings the drainage from the [[Drakensberg]] on the opposite side of the
110849 continent, while the Kunene, Kwanza, Ogowe and Sanaga drain the west corst highlands of the southern limb; the [[Volta]], Komoe, Bandama, [[Gambia River|Gambia]] and [[Senegal River|Senegal]] the highlands of the western limb. North of the Senegal for over 1000 miles (1600 km) of coast the arid region reaches to the Atlantic. Farther north are the
110850 streams, with comparatively short courses, which reach the Atlantic and Mediterranean from the Atlas mountains.
110851
110852 Of the rivers flowing to the [[Indian Ocean]] the only one draining any large part of the interior plateaus is the [[Zambezi]], whose western branches rise in the west coast highlands. The main stream has its rise in 11°21′3â€ŗ S 24°22′ E at an elevation of 5000 ft. It flows west and south for a considerable distance before turning to the east. All the largest tributaries, including the Shire, the outflow of [[Lake Nyasa]], flow down the southern slopes of the band of high ground which stretches across the conbnent in 10 deg. to 12 deg. S. In the south-west the Zambezi system interlaces with that of the [[Taukhe River|Taukhe]] (or Tioghe), from which it at times receives surplus water. The rest of the water of the Taukhe, known in its middle course as the [[Okavango River|Okavango]], is lost in a system of swamps and saltpans which formerly centred in [[Lake Ngami]], now dried up.
110853
110854 Farther south the [[Limpopo River|Limpopo]] drains a portion of the interior plateau but breaks through the bounding highlands on the side of the continent nearest its source. The [[Rovuma River|Rovuma]], [[Rufiji River|Rufiji]], [[Tana River|Tana]], [[Jubba River|Jubba]] and [[Webi Shebeli River|Webi Shebeli]] principally drain the outer slopes of the East African highlands, the last named losing itself in the sands in close proximity to the sea. Another large stream, the [[Hawash river|Hawash]], rising in the Ethiopian mountains, is lost in a saline depression near the Gulf of Aden.
110855
110856 Lastly, between the basins of the Atlantic and Indian Oceans there is an area of inland drainage along the centre of the East African plateau, directed chiefly into the lakes in the great rift-valley. The largest river is the [[Omo river|Omo]], which, fed by the rains of the Ethiopian highlands, carries down a large body of water into [[Lake Rudolf]]. The rivers of Africa are generally obstructed either by bars at their mouths or by cataracts at no great distance up-stream. But when these obstacles have been overcome the rivers and lakes afford a network of navigable waters of vast extent.
110857
110858 The calculation of the areas of African drainage systems, made by Dr A. Bludau (Petermanns Mitteilungen, 43, 1897, pp. 184-186) gives the following general results:
110859 {| border=&quot;1&quot;
110860 |-
110861 ! ||mi² || Mm²
110862 |-
110863 | Basin of the Atlantic || 4,070,000 || 10.541
110864 |-
110865 | Basin of the Mediterranean || 1,680,000 || 4.351
110866 |-
110867 | Basin of the Indian Ocean || 2,086,000 || 5.403
110868 |-
110869 | Inland drainage area || 3,452,000 || 8.941
110870 |}
110871
110872 The areas of individual river-basins are:
110873 {| border=&quot;1&quot;
110874 |-
110875 ! || mi² || Mm²
110876 |-
110877 | Congo, length over 3000 mi (4800 km) || 1,425,000 || 3.691
110878 |-
110879 | Nile, length fully 4000 mi (6500 km) || 1,082,000 || 2.802
110880 |-
110881 | Niger, length about 2600 mi (4200 km) || 808,000 || 2.093
110882 |-
110883 | Zambezi, length about 2000 mi (3200 km) || 513,500 || 1.330
110884 |-
110885 | Lake Chad || 394,000 || 1.020
110886 |-
110887 | Orange, length about 1300 mi (2100 km) || 370,505 || 0.9596
110888 |-
110889 | Orange (actual drainage area) || 172,500 || 0.447
110890 |}
110891
110892 The area of the Congo basin is greater than that of any other river except the Amazon, while the African inland drainage area is greater than that of any continent but Asia, in which the corresponding area is 4,000,000 square miles (10 Mm²).
110893
110894 The principal African lakes have been mentioned in the description of the East African plateau, but some of the phenomena connected with them may be spoken of more particularly here. As a rule the lakes which occupy portions of the great rift-valleys have steep sides and are very deep. This is the case with the two largest of the type, Tanganyika and Nyasa, the latter of which has depths of 430 [[fathom]]s (790 m).
110895
110896 Others, however, are shallow, and hardly, reach the steep sides of the valleys in the dry season. Such are [[Lake Rukwa]], in a subsidiary depression north of Nyasa, and Eiassi and Manyara in the system of the eastern rift-valley. Lakes of the broad type are of moderate depth, the deepest sounding in [[Lake Victoria]] being under 50 fathoms (90 m).
110897
110898 Besides the East African lakes the principal are: - [[Lake Chad]], in the northern area of inland drainage; [[Lake Bangweulu|Bangweulu]] and [[Lake Mweru|Mweru]], traversed by the head-stream of the Congo; and [[Lake Mai-Ndombe]] and Ntomba (Mantumba), within the great bend of that river. All, except possibly Mweru, are more or less shallow, and Chad appears to by drying up. The altitudes of the African lakes have already been stated.
110899
110900 Divergent opinions have been beld as to the mode of origin of the East African lakes, especially [[Lake Tanganyika|Tanganyika]], which some geologists have considered to represent an old arm of the sea, dating from a time when the whole central Congo basin was under water; others holding that the lake water has
110901 accumulated in a depression caused by subsidence. The former view is based on the existence in the lake of organisms of a decidedly marine type. They include a jelly-fish, molluscs, prawns, crabs, etc.
110902
110903 === Islands ===
110904
110905 With one exception - [[Madagascar]] - the African islands are small. Madagascar, with an area of 229,820 square miles (595,230 km²), is, after [[Greenland]], [[New Guinea]] and [[Borneo]], the largest island of the world. It lies off the S.E. coast of the continent, from which it is separated by the deep Mozambique channel, 250 miles (400 km) wide at its narrowest point. Madagascar in its general structure, as in flora and fauna, forms a connecting link between Africa and southern Asia. East of Madagascar are the small islands of [[Mauritius]] and [[RÊunion]]. [[Socotra]] lies E.N.E. of Cape Guardafui. Off the north-west coast are the [[Canary Islands|Canary]] and [[Cape Verde]] archipelagoes. which, like some small islands in the Gulf of Guinea, are of volcanic origin.
110906
110907 === Climate and health ===
110908
110909 Lying almost entirely within the tropics, and equally to north and south of the equator, Africa does not show excessive variations of temperature.
110910
110911 Great heat is experienced in the lower plains and desert regions of North Africa, removed by the great width of the continent from the influence of the ocean, and here, too, the contrast between day and night, and between summer and winter, is greatest. (The rarity of the air and the great radiation during the night cause the temperature in the Sahara to fall occasionally to freezing point.)
110912
110913 Farther south, the heat is to some extent modified by the moisture brought from the ocean, and by the greater elevation of a large part of the surface, especially in East Africa, where the range of temperature is wider than in the Congo basin or on the Guinea coast.
110914
110915 In the extreme north and south the climate is a warm temperate one, the northern countries being on the whole hotter and drier than those in the southern zone; the south of the continent being narrower than the north, the influence of the surrounding ocean is more felt.
110916
110917 The most important climatic differences are due to variations in the amount of
110918 rainfall. The wide heated plains of the Sahara, and in a lesser degree the corresponding zone of the Kalahari in the south, have an exceedingly scanty rainfall, the winds which blow over them from the ocean losing part of their moisture as they pass over the outer highlands, and becoming constantly drier owing to the heating effects of the burning soil of the interior; while the scarcity of mountain ranges in the more central parts likewise tends to prevent condensation. In the inter-tropical zone of summer precipitation, the rainfall is greatest when the sun is vertical or soon after. It is therefore greatest of all near the equator, where the sun is twice vertical, and less in the direction of both tropics.
110919
110920 The rainfall zones are, however, somewhat deflected from a due west-to-east direction, the drier northern conditions extending southwards along the east coast, and those of the south northwards along the west. Within the equatorial zone certain areas, especially on the shores of the Gulf of Guinea and in the upper Nile basin, have an intensified rainfall, but this rarely approaches that of the rainiest regions of the world. The rainiest district in all Africa is a strip of coastland west of [[Mount Cameroon]], where there is a mean annual rainfall of about 390 in (9.91 m) as compared with a mean of 458 in (11.63 m) at [[Cherrapunji]], in [[Meghalaya]], [[India]].
110921
110922 The two distinct rainy seasons of the equatorial zone, where the sun is vertical at half-yearly intervals, become gradually merged into one in the direction of the tropics, where the sun is overhead but once. Snow falls on all the higher mountain ranges, and on the highest the climate is thoroughly Alpine.
110923
110924 The countries bordering the Sahara are much exposed to a very dry wind, full
110925 of fine particles of sand, blowing from the desert towards the sea. Known in [[Egypt]] as the [[khamsin]], on the Mediterranean as the [[sirocco]], it is called on the Guinea coast the [[harmattan]]. This wind is not invariably hot; its great dryness causes so much evaporation that cold is not infrequently the result. Similar dry winds blow from the [[Kalahari Desert]] in the south. On the eastern coast the monsoons of the Indian Ocean are regularly felt, and on the southeast hurricanes are occasionally experienced.
110926
110927 ==Extreme points==
110928 This is a list of the '''extreme points of [[Africa]]''', the points that are farther north, south, east or west than any other location on the continent.
110929
110930 '''''Africa'''''
110931
110932 * Northernmost Point &amp;mdash; [[Ra's al Abyad]] ([[Cape Blanc]]), [[Tunisia]]
110933 * Southernmost Point &amp;mdash; [[Cape Agulhas]], [[South Africa]] (34°51'15&quot;S) š
110934 * Westernmost Point &amp;mdash; [[Santo AntÃŖo]], [[Cape Verde]] Islands (25°25'W)
110935 * Easternmost Point &amp;mdash; [[Rodrigues (island)|Rodrigues]], [[Mauritius]] (63°30'E)
110936
110937 '''''Africa (mainland)'''''
110938
110939 * Northernmost Point &amp;mdash; [[Ra's al Abyad]] ([[Cape Blanc]]), [[Tunisia]]
110940 * Southernmost Point &amp;mdash; [[Cape Agulhas]], [[South Africa]] ({{coor dms|34|51|15|S|17|33|22|E|}})
110941 * Westernmost Point &amp;mdash; [[Pointe des Almadies]], [[Cap Vert]] Peninsula, [[Senegal]] (17°33'22&quot;W)
110942 * Easternmost Point &amp;mdash; [[Ras Hafun]] (Raas Xaafuun), [[Somalia]] (51°27'52&quot;E)
110943
110944 *š If the [[Prince Edward Islands]] are included in Africa, then [[Marion Island]] is the southernmost point at 46°54'S.
110945
110946
110947 -----
110948 {{1911}}
110949
110950 ==See also==
110951 ===Articles===
110952 *[[Africa]]
110953 ===External links===
110954 *[http://plasma.nationalgeographic.com/ngm/0509/feature1/zoomify/index.html Africa: The Human Footprint]. Interactive map of human impact on Africa by [[National Geographic]].
110955
110956 {{Africafooter}}
110957 {{Africa in topic|Geography of}}
110958
110959 [[Category:Africa]]
110960
110961 [[fr:GÊographie de l'Afrique]]
110962 [[he:גאוגרפיה של אפריקה]]
110963 [[pl:Geografia Afryki]]
110964 [[pt:Geografia da África]]
110965 [[sr:ГĐĩĐžĐŗŅ€Đ°Ņ„иŅ˜Đ° АŅ„Ņ€Đ¸ĐēĐĩ]]</text>
110966 </revision>
110967 </page>
110968 <page>
110969 <title>Africa/History</title>
110970 <id>1855</id>
110971 <revision>
110972 <id>15900317</id>
110973 <timestamp>2003-10-30T12:13:29Z</timestamp>
110974 <contributor>
110975 <username>Andre Engels</username>
110976 <id>300</id>
110977 </contributor>
110978 <minor />
110979 <comment>removing 'see also' from redirect page</comment>
110980 <text xml:space="preserve">#REDIRECT [[History of Africa]]</text>
110981 </revision>
110982 </page>
110983 <page>
110984 <title>Africa/North Africa</title>
110985 <id>1856</id>
110986 <revision>
110987 <id>15900318</id>
110988 <timestamp>2003-10-30T12:13:44Z</timestamp>
110989 <contributor>
110990 <username>Andre Engels</username>
110991 <id>300</id>
110992 </contributor>
110993 <minor />
110994 <comment>removing 'see also' from redirect page</comment>
110995 <text xml:space="preserve">#REDIRECT [[North Africa]]</text>
110996 </revision>
110997 </page>
110998 <page>
110999 <title>Approval voting</title>
111000 <id>1857</id>
111001 <revision>
111002 <id>40976664</id>
111003 <timestamp>2006-02-24T06:02:33Z</timestamp>
111004 <contributor>
111005 <username>Commadot</username>
111006 <id>951397</id>
111007 </contributor>
111008 <comment>/* Effect on elections */ balanced fallacious spin against AV by conflicting interests</comment>
111009 <text xml:space="preserve">[[Image:Approval ballot.svg|thumb|right|On an approval ballot, the voter can vote for any number of candidates.]]
111010 '''Approval voting''' is a [[voting system]] used for [[election]]s, in which each voter can vote for as many or as few candidates as the voter chooses. It is typically used for single-winner elections, but can be extended to multiple winners. (However, multi-winner Approval voting does not return [[proportional representation|proportional]] results.) Approval voting is a limited form of [[range voting]], where the range that voters are allowed to express is extremely constrained: accept or not.
111011
111012 It was advocated in 1968 and 1977 by [[Guy Ottewell]]. The term &quot;Approval voting&quot; was first coined by [[Robert J. Weber]] in 1976, but was fully devised in 1977 and published in 1978 by political scientist [[Steven Brams]] and mathematician [[Peter Fishburn]]. Historically, something resembling
111013 Approval voting for candidates was used in the [[Republic of Venice]] during the 13th century and for elections in 19th century [[England]]. Also the UN uses a process similar to Approval Voting to elect the Secretary General.
111014
111015 ==Procedures==
111016 Each voter may vote for as many options as he or she chooses, at most once per option. This is equivalent to saying that each voter may &quot;approve&quot; or &quot;disapprove&quot; each option by voting or not voting for it, and it's also equivalent to voting +1 or 0 in a range voting system.
111017
111018 The votes for each option are tallied. The option with the most votes wins.
111019
111020 ==Example==
111021 {{Tenn_voting_example}}
111022
111023 Supposing that voters voted for their two favorite candidates, the results would be as follows (a more sophisticated approach to voting is discussed below):
111024
111025 *Memphis: 42 total votes
111026 *Nashville: 68 total votes (wins)
111027 *Chattanooga: 58 total votes
111028 *Knoxville: 32 total votes
111029
111030 ===Potential for tactical voting===
111031 Approval voting passes the [[monotonicity criterion]], in that voting for a candidate never lowers that candidate's chance of winning. Indeed, there is never a reason for a voter to [[tactical voting|tactically vote]] for a candidate X without voting for all candidates he or she prefers to candidate X. It is also never necessary for a voter to vote for a candidate liked ''less'' than X in order to elect X.
111032
111033 However, as approval voting does not offer a single method of expressing sincere preferences, but rather a plethora of them, voters are encouraged to analyze their fellow voters' preferences and use that information to decide which candidates to vote for. This feature of approval voting makes it difficult for theoreticians to predict how approval will play out in practice.
111034
111035 One possible tactic is that a voter will only approve of their first preference candidate; this will make it more difficult for other candidates to win. If every voter uses this tactic, then the election essentially turns into a [[first-past-the-post]] election, where the candidate with the largest plurality of first preference supporters wins.
111036
111037 One good tactic is to vote for every candidate the voter prefers to the leading candidate, and to also vote for the leading candidate if that candidate is preferred to the current second-place candidate. When all voters use this tactic, there is a good chance that the [[Condorcet method|Condorcet winner]] will be elected. Approval voting fails to satisfy the [[Condorcet criterion]]. It is even possible that a Condorcet loser can be elected.
111038
111039 In the above election, if Chattanooga is perceived as the strongest challenger to Nashville, voters from Nashville will only vote for Nashville, because it is the leading candidate and they prefer no alternative to it. Voters from Chattanooga and Knoxville will withdraw their support from Nashville, the leading candidate, because they do not support it over Chattanooga. The new results would be:
111040 *Memphis: 42
111041 *Nashville: 68
111042 *Chattanooga: 32
111043 *Knoxville: 32
111044
111045 If, however, Memphis were perceived as the strongest challenger, voters from Memphis would withdraw their votes from Nashville, whereas voters from Chattanooga and Knoxville would support Nashville over Memphis. The results would then be:
111046 *Memphis: 42
111047 *Nashville: 58
111048 *Chattanooga: 32
111049 *Knoxville: 32
111050
111051 The mathematics of approval voting lend it to some manipulation and tactical voting. As each vote counts as one vote and the winner is the one with the highest total, each vote equally helps the candidate/issue (city in this example) selected win. Because of this, voters are more likely to only vote for their favorite. Because Approval voting has not been used much for real elections, this phenomenon is not well documented.
111052
111053 ==Effect on elections==
111054 The effect of this system as an [[electoral reform]] measure is not without critics. [[Instant-runoff voting]] advocates like the [[Center for Voting and Democracy]] argue that Approval Voting would lead to the election of &quot;lowest common denominator&quot; candidates disliked by few, and liked by few, but this could also be seen as an inherent strength against demagoguery in favor of a discreet popularity. A study by Approval advocates [[Steven Brams]] and [[Dudley R. Herschbach]] published in ''[[Science (journal)|Science]]'' in 2001&lt;ref&gt;Brams and Herschbach {{Journal reference|Title=The Science of Elections|ID={{DOI|10.1126/science.292.5521.1449}}|Journal=Science|Volume=292|Issue=5521|Pages=1449|Year=2001}}&lt;/ref&gt; argued that approval voting was &quot;fairer&quot; than [[Preferential voting|preference voting]] on a number of criteria. They claimed that a close analysis shows that the hesitation to support a lesser evil candidate to the same degree as one supports one's first choice actually outweighs the extra votes that such second choices get.
111055
111056 One study showed that approval voting would not have chosen the same two winners
111057 as plurality voting (Chirac and Le Pen) in [[French_presidential_election%2C_2002|France's presidential election of 2002]] (first round) - it instead would have
111058 chosen Chirac and Jospin. This seems a more reasonable result since Le Pen was a radical who
111059 lost to Chirac by an enormous margin in the second round.{{fact}}
111060
111061 ==Other issues and comparisons==
111062 Advocates of approval voting often note that a single simple ballot can serve for single, multiple, or negative choices. It requires the voter to think carefully about who or what they really accept, rather than trusting a system of tallying or compromising by formal ranking or counting. Compromises happen but they are explicit, and chosen by the voter, not by the ballot counting.
111063 Some features of approval voting include:
111064 *Unlike [[Condorcet method]], [[instant-runoff voting]], and other methods that require ranking candidates, approval voting does not require significant changes in ballot design, voting procedures or equipment, and it is easier for voters to use and understand. This reduces problems with mismarked ballots, disputed results and recounts.
111065 *It provides less incentive for [[negative campaigning]] than many other systems, though the same incentive as [[instant runoff voting]], [[condorcet method]], and [[Borda count]].
111066 *It allows voters to express [[tolerances versus preferences|tolerances but not preferences]]. Some political scientists consider this a major advantage, especially where acceptable choices are more important than popular choices.
111067 *Each voter may vote as many times as they wish, at most once per candidate. This is equivalent to saying that each voter may ''approve'' or ''disapprove'' each candidate by voting or not voting for them, and it's also equivalent to voting +1 or 0 in a [[range voting]] system.
111068 *It is easily reversed as [[disapproval voting]] where a choice is disavowed, as is already required in other measures in politics (e.g. representative [[recall election|recall]]).
111069 *In contentious elections with a super-majority of voters who prefer their favorite candidate vastly over all others, approval voting tends to revert to [[plurality voting]]. Some voters will support only their single favored candidate when they perceive the other candidates to be poor compromises.
111070 *Approval voting fails the [[majority criterion]], so that the favorite candidate of a majority can fail to be elected.
111071
111072 However strategy issues of candidate list order if voters are not fully aware and reflective of the full set of candidates before any votes are cast.)
111073
111074 ===Multiple winners===
111075 Approval voting can be extended to multiple winner elections, either as ''block approval voting'', a simple variant on [[block voting]] where each voter can select an unlimited number of candidates and the candidates with the most approval votes win, or as ''[[proportional approval voting]]'' which seeks to maximise the overall satisfaction with the final result using approval voting. That first system has been called minisum to distinguish it from minimax, a system which uses approval ballots and aims to elect the slate of candidates that differs from the least-satisfied voter's ballot as little as possible.
111076
111077 ===Relation to effectiveness of choices===
111078 [[Operations research]] has shown that the effectiveness of a policy and thereby a leader who sets several policies will be [[Logistic function|sigmoidally]] related to the level of approval associated with that policy or leader. There is an acceptance level below which effectiveness is very low and above which it is very high. More than one candidate may be in the effective region, or all candidates may be in the ineffective region. Approval voting attempts to ensure that the most-approved candidate is selected, maximizing the chance that the resulting policies will be effective.
111079
111080 ==Ballot types==
111081 Approval ballots can be of at least four semi-distinct forms. The simplest form is a blank ballot where the names of supported candidates is written in by hand. A more structured ballot will list all the candidates and allow a mark or word to be made by each supported candidate. A more explicit structured ballot can list the candidates and give two choices by each. (Candidate list ballots can include spaces for write-in candidates as well.)
111082 {| BORDER
111083 |-
111084 | [[Image:Approvalballotname.png|160px]]
111085 | [[Image:Approvalballotword.png|160px]]
111086 | [[Image:Approvalballotmark.png|160px]]
111087 | [[Image:Approvalballotchoice.png|160px]]
111088 |}
111089
111090 All four ballots are interchangeable. The more structured ballots may aid voters in offering clear votes so they explicitly know all their choices. The Yes/No format can help to detect an &quot;undervote&quot; when a candidate is left unmarked, and allow the voter a second chance to confirm the ballot markings are correct.
111091
111092 ==See also==
111093 *[[List of democracy and elections-related topics]]
111094 *[[Borda count]]
111095 *[[Bucklin voting]]
111096 *[[First Past the Post electoral system]] (also called Plurality or Relative Majority)
111097 *[[Condorcet method]]
111098 *[[Schulze method]]
111099 *[[Instant-runoff voting]]
111100 *[[Majority Choice Approval]]
111101 *[[Range voting]]
111102 *[[Voting system]] - many other ways of voting
111103
111104 ==References==
111105 &lt;references/&gt;
111106
111107 ==External links==
111108 *[http://approvalvoting.org/ Citizens for Approval Voting]
111109 *[http://approvalvoting.com/ Americans for Approval Voting]
111110 *[http://av.beyondpolitics.org/ Approval Voting Free Association Wiki]
111111 *[http://alum.mit.edu/ne/whatmatters/200211/index.html Approval Voting: A Better Way to Select a Winner] Article by Steven J. Brams.
111112 *[http://pareto.uab.es/wp/2004/61904.pdf Approval Voting on Dichotomous Preferences] Article by Marc Vorsatz.
111113 *[http://pareto.uab.es/wp/2004/61704.pdf Scoring Rules on Dichotomous Preferences] Article by Marc Vorsatz.
111114 *[http://www.lse.ac.uk/collections/VPP/VPPpdf_Wshop2/jflkvdscaen.pdf Approval Voting: An Experiment during the French 2002 Presidential Election] Article by Jean-François Laslier and Karine Vander Straeten.
111115 *[http://www.universalworkshop.com/pages/ArithmeticOfVoting.htm The Arithmetic of Voting] article by Guy Ottewell
111116 *[http://www.nyu.edu/gsas/dept/politics/faculty/brams/avcritical.pdf Critical Strategies Under Approval Voting: Who Gets Ruled In And Ruled Out] Article by Steven J. Brams and M. Remzi Sanver.
111117 *[http://www.nyu.edu/gsas/dept/politics/faculty/brams/theory_to_practice.pdf Going from Theory to Practice:The Mixed Success of Approval Voting] Article by Steven J. Brams and Peter C. Fishburn.
111118 *[http://www.vcharite.univ-mrs.fr/idep/document/dt/dt0405.pdf Strategic approval voting in a large electorate] Article by Jean-François Laslier.
111119 *[http://www.williams.edu/Economics/oak/Papers/approval.pdf Approval Voting with Endogenous Candidates] An article by Arnaud Dellis and Mandor P. Oak.
111120 *[http://www.math.hmc.edu/seniorthesis/archives/2003/duminsky/duminsky-2003-thesis.pdf Generalized Spectral Analysis for Large Sets of Approval Voting Data] Article by David Thomas Uminsky.
111121 *[http://www.sas.upenn.edu/~baron/vote.pdf Approval Voting and Parochialism] Article by Jonathan Baron, Nicole Altman and Stephan Kroll.
111122 *[http://www.gregdennis.com/voting/approval_conversation.html Conversation with an Approval Voting Advocate] Article by Greg Dennis
111123
111124 [[Category:Voting systems]]
111125
111126 [[de:Wahl durch Zustimmung]]
111127 [[eo:Aprobobalotado]]
111128 [[fr:Vote par approbation]]
111129 [[nl:Instemmingsverkiezing]]
111130 [[ja:Approval voting]]
111131 [[pt:VotaçÃŖo por aprovaçÃŖo]]
111132 [[fi:Hyväksymisvaalitapa]]
111133 [[ur:ŲˆÛŒÚŠÛŒŲžÛŒÚˆÛŒØ§:ŲˆÛŒÚŠÛŒŲžÛŒÚˆÛŒØ§ ŲØ§ØĻŲˆŲ†ÚˆÛŒØ´Ų† ÚŠÛ’ بŲˆØąÚˆ ØĸŲ ŲšØąŲˆŲšÛŒØ˛ ÚŠÛ’ اŲ†ØĒ؎اباØĒ]]</text>
111134 </revision>
111135 </page>
111136 <page>
111137 <title>Aromatic compound</title>
111138 <id>1858</id>
111139 <revision>
111140 <id>38069213</id>
111141 <timestamp>2006-02-03T23:32:40Z</timestamp>
111142 <contributor>
111143 <username>V8rik</username>
111144 <id>195918</id>
111145 </contributor>
111146 <minor />
111147 <comment>revert, historically aroma may be associated with aromatic, in any case deleting this context has implications for disamb status for this page</comment>
111148 <text xml:space="preserve">'''Aromatic compound''' has different meanings depending on the context:
111149 * [[Aroma compound]], a [[chemical compound]] possessing an aroma, fragrance, flavor, smell, or [[odor]].
111150 * [[Aromatic]] compound, an [[Organic chemistry|organic]] [[chemical compound]] that contains [[simple aromatic ring|aromatic rings]] like [[benzene]], [[pyridine]], or [[indole]]. These compounds exhibit an unusual stability known as [[aromaticity]], which can be understood using [[HÃŧckel's rule]]. The term ''aromatic'' in chemistry is no longer associated with ''aroma'', and many aromatic compounds have no smell.
111151
111152 {{disambig}}
111153
111154 [[Category:Organic chemistry]]
111155
111156 [[es:Compuesto aromÃĄtico]]
111157 [[fr:ComposÊ aromatique]] [[ja:&amp;#33459;&amp;#39321;&amp;#26063;&amp;#21270;&amp;#21512;&amp;#29289;]]
111158 [[vi:HáģŖp cháēĨt thÆĄm]]</text>
111159 </revision>
111160 </page>
111161 <page>
111162 <title>Arizona State University</title>
111163 <id>1859</id>
111164 <revision>
111165 <id>42048404</id>
111166 <timestamp>2006-03-03T13:04:59Z</timestamp>
111167 <contributor>
111168 <username>Ewlyahoocom</username>
111169 <id>241538</id>
111170 </contributor>
111171 <minor />
111172 <comment>Disambiguate [[Assembly]] to [[Deliberative assembly]] using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
111173 <text xml:space="preserve">{{Infobox_University
111174 |name = Arizona State University
111175 |image = [[Image:asu.jpg]]
111176 |motto =
111177 |established = 1885
111178 |type = [[Public university|Public]]
111179 |president= [[Michael Crow]]
111180 |city = [[Tempe, Arizona|Tempe]]
111181 |state = [[Arizona|Arizona]]
111182 |country = [[United States|USA]]
111183 |undergrad = 48,955
111184 |postgrad = 12,078
111185 |staff= 2,406
111186 |endowment = US$277.3 million (2005 report)
111187 |campus = [[Urban design|Urban]], 580 acres (2.3 km&amp;sup2;)
111188 |mascot = [[Sparky (Arizona State Mascot)|Sparky]] [[Image:Arizona-state-sund.gif|30px|]]
111189 |free_label = Athletics
111190 |free = 18 varsity teams
111191 |website= [http://www.asu.edu/ www.asu.edu]
111192 }}
111193 '''Arizona State University''' (ASU) is currently (as of Fall 2005) the [[List of largest US universities by enrollment|largest university]], in terms of student enrollment, in the [[United States]], with a main-campus student body of 51,612. Founded in 1885 as a territorial [[normal school]], the institution went through several changes of name and purpose before becoming a state [[university]] in 1958.
111194
111195 ASU's main campus, now called the Tempe campus, is located in [[Tempe, Arizona|Tempe]], [[Arizona]]. Satellite campuses were created in 1984 in [[Phoenix, Arizona|Phoenix]] ([[ASU West]]) and in 1996 in [[Mesa, Arizona|Mesa]] ([[ASU Polytechnic]], formerly called ASU East). Combined, [[ASU West]] and [[ASU Polytechnic]] enroll around 12,500 students. An additonal satellite campus, [[ASU Downtown Phoenix]], is under development in downtown [[Phoenix, Arizona|Phoenix]].
111196
111197 Each year, nearly 10,000 students graduate from the university's three campuses. In 2005, 155 National Merit Scholars chose to attend ASU. Many are part of the Barrett Honors College, which has produced 54 [[Fulbright Program|Fulbright]] scholars, 28 [[Barry Goldwater|Goldwater]] scholars, and 13 [[Harry Truman|Truman]] scholars. Under the [[Carnegie Classification of Institutions of Higher Education]] ASU is classified as a Doctoral/Research University&amp;#8211;Extensive.
111198
111199 ==Current State of the University==
111200 &lt;!-- Image with unknown copyright status removed: [[Image:Asu_campus.jpg|thumb|right|The campus of Arizona State University in Tempe, Arizona, viewed from the air in July 2004. Sun Devil Stadium can be viewed in the bottom-right, Wells Fargo Arena in the center, and Gammage Auditorium, designed by Frank Lloyd Wright, in the top-right corner. Photo courtesy of, and obtained from, [http://www.incredibleeagle.com/ Geoff Boeing]] --&gt;'''ASU''' is currently aspiring to climb from its current third tier status in the rankings published by ''[[U.S. News and World Report]]''.
111201
111202 Under the leadership of its 16th president, [[Michael Crow]], several initiatives are being pursued toward this end, the most notable of which is the [[Arizona Biodesign Institute]]. Additionally, a gift of $100 million was given to the College of Engineering, now the [[Ira A. Fulton School of Engineering]], and a $50 million dollar gift to the College of Business, now the [[W.P. Carey School of Business]].
111203
111204 The university was selected to host the third United States Presidential debate on October 13, 2004 at Gammage Auditorium. [[Edward Prescott]] of the [[W.P. Carey School of Business]] was awarded the 2004 [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel]] (also known as The Nobel Prize in Economics), a first for an ASU faculty member. At the end of the 2004, [[George Poste]], director of the Arizona Biodesign Institute, was named Scientist of the Year by ''R&amp;D Magazine.''
111205
111206 ==Academics==
111207 Many of ASU's departments were ranked in the top 50 by [[US News and World Report]] in 2005.
111208
111209 The College of Education [http://coe.asu.edu] was ranked 35th in the nation in 2005. Its program in counseling was ranked 12th in the nation, and its Education Policy Studies [http://coe.asu.edu/elps/] doctoral program was ranked 15th. Six out of nine of the College's specialty programs were ranked in the top 20.
111210
111211 The following graduate departments in [[engineering]] were listed with their respective rankings (out of 300+ institutions):
111212 *[[Electrical Engineering]]: 29th
111213 *[[Aerospace]]/[[Aeronautical Engineering]]: 25th
111214 *[[Biomedical]]/[[Bioengineering]]: 20th
111215 *[[Chemical Engineering]]: 50th
111216 *[[Civil Engineering]]: 41st
111217 *[[Computer Engineering]]: 34th
111218 *[[Industrial Engineering]]: 15th
111219 *[[Mechanical Engineering]]: 37th
111220
111221 The [[W.P. Carey School of Business]] MBA program was ranked 31st and the undergraduate [[business]] program ranked 25th. Graduate business programs listed are as follows (out of 300+ institutions):
111222 *[[Supply Chain Management]]: 5th
111223 *[[Computer Information systems]]: 18th
111224 *[[Production]]/[[operations]]: 21st
111225 *[[Accounting]]: 26th
111226 *[[Management]]: 28th
111227
111228 The [[College of Architecture and Environmental Design]] is reputedly rigorous and highly ranked. An annual event for the [[Walter Cronkite School of Journalism]] is a visit from [[Walter Cronkite]] himself to award the distinguished Cronkite Award.
111229
111230 ==Extracurriculars==
111231 [[Image:198557795wVVdGH ph.jpg|thumb|left|250px|Arizona State University is adorned with towering Mexican Fan Palms along its main walkway, Palm Walk. (Photo taken from the Bateman Physical Sciences Center, looking toward the Student Health Center)]]Arizona State University has an active [[extracurricular]] involvement program (Sun Devil Involvement Center) with over 450 registered clubs and organizations on campus. Located on the 3rd floor of the [[Memorial Union]], the Sun Devil Involvement Center (SDIC) provides opportunities for student involvement through [[clubs]], [[sororities]], [[fraternities]], [[community service]], [[leadership]], [[student government]], and [[co-curricular]] programming.
111232
111233 In 2003 the Student Government adopted a new [[Constitution]] under the oversight of several individuals that split it into 3 branches; &quot;[[Undergraduate]]&quot;, &quot;[[Graduate Student|Graduate]]&quot;, and the &quot;Programming and Activities Board&quot;. All three branches are overseen by a [[Supreme Court]]. A [[Senate]] and [[Executive (government)|Executive]] department are set aside for the [[Undergraduate]] branch, and an [[Deliberative assembly|Assembly]] and [[Executive (government)|Executive]] department are set aside for the [[Graduate Student|Graduate]] branch. The [[Senate]] and [[Deliberative assembly|Assembly]] have representatives from all colleges on campus, providing a critical forum for the discussion and resolution of issues that come before the student body.
111234
111235 ''ASU Cares'' is the largest community service project sponsored by the university. It is an annual event that allows students to give back some time by helping residents and communities clean up, rebuild, and/or serve eachother. Faculty, staff, alumni, members of the community and their families and guests are also invited to be part of this large ASU effort to help residents of the various communities surrounding the metropolitan area.
111236
111237 The Freshman Year Experience (FYE) and the [[Fraternities and sororities|Greek]] community (Greek Life) at Arizona State University have been important in binding students to the university, and providing social outlets. The Freshman Year Experience at Arizona State University was developed to improve the freshman experience at Arizona State University and increase student retention figures. FYE provides advising, computer labs, free walk-in tutoring, workshops, and classes for students. In 2003, ''[[U.S. News and World Report]]'' ranked FYE as the 23rd best first year program in the nation. It has also been recognized as one of the best in both public and private universities by the ''Chronicle of [[Higher Education]]''.
111238
111239 In student media, ''The Blaze 1260 AM'' is the student run radio station at Arizona State University, while [[Sun Devil Television|Sun Devil Television (SDTV)]] is the student run television station.
111240
111241 ==Athletics==
111242 ASU is a member of the [[Pacific Ten Conference|Pac-10]] athletic
111243 conference. Athletes, students, and alumni of ASU are known as &quot;Sun Devils,&quot; a nickname adopted in 1946; earlier nicknames were the Normals or the Owls and, later, the Bulldogs. The nickname was said to have come from an article in the newspaper in which the writer said the quote &quot;Lets call them Sun Devils,&quot; and the name eventually caught on the with the university. The Sun Devil mascot, Sparky, was designed by [[The Walt Disney Company|Disney]] illustrator [[Bert Anthony]]. The ASU fight song is [[Maroon and Gold]], named for the school's colors. ASU's chief rival is the [[University of Arizona]].
111244
111245 ASU's football venue is named [[Sun Devil Stadium]]. Notable athletic alumni include baseball players [[Barry Bonds]], [[Paul Lo Duca]], [[Fernando ViÃąa]] and [[Reggie Jackson]], football players [[Jake Plummer]], [[Todd Heap]], [[Danny White]], [[Terrell Suggs]], [[David Fulcher]], [[Darren Woodson]], and [[Pat Tillman]], basketball players [[Byron Scott]], [[Ike Diogu]] and [[Eddie House]], golfer [[Phil Mickelson]], and announcer [[Al Michaels]].
111246
111247 ASU is arguably one of the most successful baseball programs in the country. They have won five national championships, the third most by any school, and have the third most alumni to ever play in [[Major League Baseball]].
111248
111249 ASU won national championships in men's archery 15 times, women's archery 21 times, mixed archery 20 times, men's badminton 13 times, women's badminton 17 times, mixed badminton 10 times, baseball 5 times, women's tennis 3 times, men's gymnastics once, men's track and field once, wrestling once, men's golf twice, women's golf 13 times, women's softball twice, and women's swimming and diving 7 times, for a total of 129 national championships. Additionally, the men's basketball team has participated in 12 [[NCAA]] tournaments and the football team won the [[Rose Bowl (game)|Rose Bowl]] in 1986 as well as the [[Fiesta Bowl]] in 1982, [[1975]], [[1973]], [[1972]], and 1971.
111250
111251 ===Football===
111252 The Sun Devils played in the [[Border Intercollegiate Athletic Association|Border Conference]] between 1931 and 1961, before joining the [[Western Athletic Conference]] the following year. Led by legendary head coach [[Frank Kush]], the Sun Devils posted a remarkable 62-9 record between 1970 and 1975, culminating in a 17-14 upset of the [[University of Nebraska-Lincoln|Nebraska Cornhuskers]] in the 1975 Fiesta Bowl.
111253
111254 In 1978, both ASU and the [[University of Arizona]] joined the Pacific Ten Conference, and in that year ASU celebrated with an emotional 20-7 victory over number-one-ranked [[University of Southern California]]. The Sun Devils then began a slow decline, interrupted only briefly by victories in the 1983 Fiesta Bowl and 1987 Rose Bowl. After a 1987 [[Freedom Bowl]] victory over [[United States Air Force Academy|Air Force]], the Sun Devils went a combined 43-44-1 between 1988 and 1995.
111255
111256 In 1996, the Sun Devils went a surprising 11-1, highlighted by a 19-0 shutout of the number-one-ranked [[University of Nebraska-Lincoln|Nebraska Cornhuskers]] in Tempe. ASU quarterback [[Jake Plummer]] led the Sun Devils, propelling Arizona State into the Rose Bowl against the [[Ohio State Buckeyes]]. In a game with [[NCAA Division I-A national football championship|National Championship]] potential, the Sun Devils held a slim 17-14 lead with 1:47 left in the fourth quarter, but surrendered a late touchdown to Ohio State, falling by a final score of 20-17.
111257
111258 Between 1997 and 2000, the Sun Devils underachieved greatly, leading to the dismissal of popular head [[American football|football]] coach [[Bruce Snyder]]. The hiring of head coach [[Dirk Koetter]] from [[Boise State University]] gave the Sun Devils a charismatic leader with a penchant for molding strong quarterbacks.
111259
111260 Arizona State began the Dirk Koetter era with a thud, falling to 4-7 in 2001. However, ASU improved to 8-6 in 2002, highlighted by the play of defensive end [[Terrell Suggs]] and wide receiver [[Shaun McDonald]]. Quarterback [[Andrew Walter]] emerged to pass for a staggering 3,877 yards and 28 touchdowns. The Sun Devils eventually lost a nailbiter to [[Kansas State University]] in the 2003 [[Holiday Bowl]].
111261
111262 In 2004, the Sun Devils surprised nearly everyone, jumping out to a 5-0 record (including an impressive 44-7 victory over Iowa in Tempe). [[Andrew Walter]] led the suddenly resurgent Sun Devils, passing for 1,249 yards and 15 TDs through five games. This set up an attractive matchup between ASU and [[University of Southern California|Southern California]] in [[Los Angeles]] on October 16, 2004, which they lost. After a dramatic come from behind victory over Stanford University and a win over Washington State in a game in which ASU retired Pat Tillman's number, they ended up losing to rival University of Arizona. ASU won the Vitalis [[Sun Bowl]] over Purdue, 27-23, on New Year's Eve.
111263
111264 2005 brought a 6-5 record. The Sun Devils narrowly lost to [[Louisiana State University]] in that school's first game after [[Hurricane Katrina]]. Another narrow loss to USC was emotional, considering the Sun Devils led at the half. However, the school was still looking forward to a BCS bowl until [[Stanford University]] upset the Devils, which cost the school its national ranking. The wins over Washington State and Washington were unable to get back the ranking. In a thrilling 23-20 victory over archrival Arizona, the Sun Devils clinched a berth in, and eventually won, the [[Insight Bowl]] against [[Rutgers]].
111265
111266 ===Softball===
111267 One of the nation's founding programs, the Sun Devils are in their 39th season on the diamond in Tempe. ASU holds a 1,039-561-1 (.649) all-time record since the 1967 team posted a 5-1 record. ASU has recorded 23 season of at least 30 wins and six with 40 or more victories, including an all-time high of 46 in 2002. The Sun Devils have earned 16 postseason bids, fourth all-time in the Pac-10 Conference, and has made four trips to the [[College World Series]]. Prior to the current NCAA format, ASU went to seven WCWS, claiming back-to-back national tiles in 1972 and 1973.
111268
111269 Arizona State's storied tradition of softball excellence continues to flourish under the tutelage of 16th-year head coach [[Linda Wells]], one of the most prominent and successful coaches in NCAA history. Wells, who is currently the 7th-most successful active coach in NCAA Division I history with 907 victories (9th all-time), has led the Sun Devils to 11 (seven consecutive 1997-03) NCAA Regional appearances in 15 seasons, including two trips in the past six years to the College World Series (1999/2002). While at ASU, Wells has compiled a record of 554-394 and has had seven players earn a total of 12 All-American awards. Her 554 wins are the most victories all-time in ASU's storied 39-year history, surpassing coaching legend Mary Littlewood's 536. Wells earned the victory with a 3-2 win over Sacramento State (2/13/05). Wells' vast coaching experience and tireless work ethic has not gone unnoticed by the country or by the world as she was named the head coach of the Greek Olympic National Team that competed in the 2004 Olympic Games in Athens. Wells has coached 35 career .300 hitters at ASU in her 15 seasons, averaging a combined .335 -- not an easy accomplishment in the pitching-rich Pac-10 where games are traditionally low scoring, and with the addition of three more All-Pac-10 selections in 2004, Wells has now coached 75 all-conference players during her tenure at Arizona State, averaging five All-Pac-10 selections every season.
111270
111271 ==Famous alumni and former students==
111272 ''see also [[:Category:Arizona State University alumni]]''
111273
111274 *[[Steve Allen]] - writer, comedian, musician
111275 *[[Adam Archuleta]] - [[National Football League|NFL]] player
111276 *[[Sal Bando]] - former [[Major League Baseball|MLB]] player
111277 *[[Barry Bonds]] - [[Major League Baseball|MLB]] player
111278 *[[Amanda Borden]] - [[1996 Summer Olympics]] team gold medal winner in [[gymnastics]]
111279 *[[Amanda Brown]] - author of [[Legally Blonde]]
111280 *[[William P. Carey]] - founder and chairman of [[W. P. Carey &amp; Co. LLC]]
111281 *[[Henry Carr]] - winner of two gold medals at the [[1964 Summer Olympics]]
111282 *[[Paul Casey]] - professional golfer
111283 *[[Christopher J. Cohan]] - founder, Sonic Communications; owner, [[Golden State Warriors]]
111284 *[[Eric Crown]] - chairman of the board and co-founder, [[Insight Enterprises]]
111285 *[[Ed Dee]] - author
111286 *[[Doug Ducey]] - president and CEO of [[Cold Stone Creamery]]
111287 *[[Ike Diogu]] - [[National Basketball Association|NBA]] player
111288 *[[Mike Esposito]] - [[Major League Baseball]] pitcher for the [[Colorado Rockies]].
111289 *[[Andre Ethier]] - [[outfielder]] with the [[Los Angeles Dodgers]] of [[MLB]].
111290 *[[David Fulcher]] - former National Football League [[defensive back]]
111291 *[[Ira Fulton]] - businessman
111292 *[[Jack D. Furst]] - private equity
111293 *[[Larry Gura]] - former All-Star [[Major League Baseball|MLB]] pitcher, played for the [[Chicago Cubs]], [[New York Yankees]], and [[Kansas City Royals]].
111294 *[[Todd Heap]] - [[National Football League|NFL]] player
111295 *[[Cecil Heftel]] - founder Heftel Broadcasting; former U.S. Representative
111296 *[[Doug Hopkins]] - former lead guitarist and principal songwriter, [[Gin Blossoms]]
111297 *[[Eddie House]] - [[National Basketball Association|NBA]] player
111298 *[[Reggie Jackson]] - former [[Major League Baseball|MLB]] player, member of the [[Baseball Hall of Fame]]
111299 *[[Paul Justin]] - retired [[National Football League]] quarterback
111300 *[[Jimmy Kimmel]] - talk-show host and comedian
111301 *[[Bill Leen]] - bass player, [[Gin Blossoms]]
111302 *[[Paul Lo Duca]] - [[Major League Baseball|MLB]] player
111303 *[[Billy Mayfair]] - professional golfer
111304 *[[Al Michaels]] - television broadcaster
111305 *[[Phil Mickelson]] - professional golfer
111306 *[[Ed Pastor]] - U.S. Congressman
111307 *[[Ken Phelps]] - radio broadcaster, former [[Major League Baseball|MLB]] player
111308 *[[Jake Plummer]] - [[National Football League|NFL]] player
111309 *[[Robert Rey]] - plastic surgeon, television personality
111310 *[[Rick Rosenthal]] - KPMG
111311 *[[Matt Salmon]] - former gubernatorial candidate for Arizona
111312 *[[Byron Scott]] - head coach, [[New Orleans Hornets]]; former [[National Basketball Association|NBA]] player
111313 *[[Courtney Simpson]] - [[Erotic actress]]
111314 *[[David Spade]] - comedian
111315 *[[Kate Spade]] - fashion designer
111316 *[[Paul Spudis]] - geologist and lunar scientist
111317 *[[Phillippi Sparks]] - former [[National Football League|NFL]] player
111318 *[[Terrell Suggs]] - [[National Football League|NFL]] player
111319 *[[Pat Tillman]] - former [[National Football League|NFL]] player; [[United States Army|US Army]] Corporal
111320 *[[Andrew Walter]] - [[National Football League|NFL]] player
111321 *[[Danny White]] - former [[National Football League|NFL]] player and [[Arena Football League]] coach
111322
111323 ==Notable faculty and staff==
111324
111325 * [[David Berliner]] - Professor, College of Education
111326 *[[Phil Christensen]]
111327 * [[Samuel A. DiGangi]] - Professor, College of Education; Assistant Vice Provost, Information Technology
111328 *[[Robert &quot;Coach&quot; Fleming]] - Professor of music, associate director of bands and director of the ASU Sun Devil Marching Band
111329 *[[Donald Johanson]] - Director, Institute of Human Origins; discovered 3.18 million year old fossil hominid &quot;Lucy&quot; in Ethiopia
111330 *[[Dirk Koetter]] - Head Football Coach
111331 *[[Richard Lerman]] - Professor, Interdisciplinary Arts and Performance
111332 *[[Robert E. Mittelstaedt]] - Dean, [[W.P. Carey School of Business]]
111333 *[[Pat Murphy_(baseball coach)| Pat Murphy]] - Head Baseball Coach
111334 * Baltazar Nunez - Magnaflow Senior Planner
111335 *[[George Poste]]
111336 *[[Edward C. Prescott]] - Professor, [[W.P. Carey School of Business]]; awarded the 2004 Nobel Prize in Economics
111337 *[[Stephen J. Pyne]] - Professor, School of Life Sciences
111338 *[[Morris Starsky]] - Former Professor, Philosophy
111339 *[[Claudia Zapata]] - ECE 100
111340
111341 ==External links==
111342 * [http://www.asu.edu ASU Web site]
111343 * [http://www.thesundevils.com Official Sun Devil athletics site]
111344 * [http://www.wireddevils.com Wired Devils]
111345 * [http://www.michigan-football.com/ncaa/f/arzstate.htm Arizona State Sun Devils Historical Football Records]
111346 * [http://sports.espn.go.com/ncaa/clubhouse?collegeId=9&amp;sport=ncf ESPN.com - Clubhouse (Arizona State)]
111347 * [http://www.asu.edu/ASASU ASU's Student Government]
111348 * [http://www.theblaze1260.com The Blaze 1260 AM, student radio station]
111349 * [http://www.asuband.org The ASU Sun Devil Marching Band website]
111350 * [http://www.law.asu.edu ASU College of Law website]
111351 {{Pacific Ten Conference}}
111352 {{Colleges and Universities in Arizona}}
111353
111354 [[Category:Pacific Ten Conference]]
111355 [[Category:Universities and colleges in Arizona]]
111356 [[Category:Arizona State University|*]]
111357 [[Category:Sports in Phoenix, Arizona]]
111358
111359 [[de:Arizona State University]]
111360 [[ja:ã‚ĸãƒĒã‚žãƒŠåˇžįĢ‹å¤§å­Ļ]]
111361 [[sv:Arizona State University]]</text>
111362 </revision>
111363 </page>
111364 <page>
111365 <title>Astoria Oregon</title>
111366 <id>1860</id>
111367 <revision>
111368 <id>15900322</id>
111369 <timestamp>2002-02-25T15:51:15Z</timestamp>
111370 <contributor>
111371 <ip>Conversion script</ip>
111372 </contributor>
111373 <minor />
111374 <comment>Automated conversion</comment>
111375 <text xml:space="preserve">#REDIRECT [[Astoria, Oregon]]
111376 </text>
111377 </revision>
111378 </page>
111379 <page>
111380 <title>April 14</title>
111381 <id>1862</id>
111382 <revision>
111383 <id>41597544</id>
111384 <timestamp>2006-02-28T11:34:59Z</timestamp>
111385 <contributor>
111386 <username>Valentinian</username>
111387 <id>256198</id>
111388 </contributor>
111389 <comment>/* Events */ 1864: Updated the link. More npov version.</comment>
111390 <text xml:space="preserve">&lt;!-- Language links at bottom --&gt;
111391 {| style=&quot;float:right;&quot;
111392 |-
111393 |{{AprilCalendar}}
111394 |-
111395 |{{ThisDateInRecentYears|Month=April|Day=14}}
111396 |}
111397 '''April 14''' is the 104th day of the year in the [[Gregorian calendar]] (105th in [[leap year]]s). There are 261 days remaining.
111398 ==Events==
111399 *[[43 BC]] - [[Battle of Forum Gallorum]]. [[Mark Antony]], besieging [[Julius Caesar]]'s assassin [[Decimus Junius Brutus]] in [[Mutina]], defeats the forces of the [[consul]] [[Gaius Vibius Pansa Caetronianus|Pansa]], who is killed.
111400 *[[69]] - [[Vitellius]], commander of the Rhine armies, defeats [[Roman Emperor|Emperor]] [[Otho]] in the [[Battle of Bedriacum]] and seizes the throne.
111401 *[[1028]] - [[Henry III, Holy Roman Emperor|Henry III]], son of Conrad, was elected king of the [[Germany|Germans]].
111402 *[[1205]] - [[Battle of Adrianople (1205)|Battle of Adrianople]] between [[Bulgars]] and [[Crusades|Crusaders]].
111403 *[[1450]] - [[Battle of Formigny]]. French attack and nearly annihilate English, ending English domination in northern France.
111404 *[[1471]] - In [[England]], the Yorkists under [[Edward IV of England|Edward IV]] defeated the Lancastrians under Warwick at the battle of Barnet; the Earl of Warwick was killed and Edward IV resumed the throne.
111405 *[[1632]] - [[Battle of Rain]], [[Sweden|Swedes]] under [[Gustavus Adolphus of Sweden|Gustavus Adolphus]] defeat the [[Holy Roman Empire]] during the [[Thirty Years' War]].
111406 *[[1775]] - The first [[abolition]] society in the [[North America]] was established. The &quot;[[Society for the Relief of Free Negroes Unlawfully Held in Bondage]]&quot; was organized in Philadelphia by [[Benjamin Franklin]] and Benjamin Rush.
111407 *[[1828]] - [[Noah Webster]] copyrights the first edition of his [[dictionary]].
111408 *[[1849]] - [[Hungary]] declared itself independent of [[Austria]] with Louis Kossuth as its leader.
111409 *[[1860]] - The first [[Pony Express]] rider reaches [[Sacramento, California]].
111410 *[[1864]] - [[Battle of Dybbøl]]: A Prussian-Austrian army defeats Denmark and gains control of [[Duchy of Schleswig|Schleswig]]. Denmark surrenders the province in the following peace settlement.
111411 *[[1865]] - [[Abraham Lincoln]] is shot by [[John Wilkes Booth]]; he dies the next day.
111412 *[[1890]] - The [[Pan-American Union]] was founded by the First International Conference of American States at their meeting in Washington. Known originally as the International Bureau of American Republics, William Elleroy Curtis became its first director.
111413 *[[1894]] - [[Thomas Edison]] demonstrates the [[kinetoscope]], a device for peep-show viewing using [[photograph]]s that flip in sequence, a precursor to [[film|movie]]s.
111414 *[[1910]] - [[President of the United States|President]] [[William Howard Taft]] becomes the first president to throw out the first [[baseball]] on opening day.
111415 *[[1912]] - The British ocean liner [[RMS Titanic|RMS ''Titanic'']] strikes an iceberg in the North Atlantic on its maiden voyage, plunging beneath the waves and taking with it over 1,500 lives at about 2:20 a.m. the following morning.
111416 *[[1915]] - The [[Ottoman Empire|Turk]]s invaded [[Armenia]].
111417 *[[1927]] - The first [[Volvo]] 'Rolls' off the assembly line in [[Gothenburg]], [[Sweden]].
111418 *[[1931]] - [[Spain|Spanish]] [[Cortes Generales|Cortes]] deposes King [[Alfonso XIII of Spain|Alfonso XIII]] and proclaims the [[Second Spanish Republic|2nd Spanish Republic]].
111419 *[[1935]] - &quot;Black Sunday&quot;, the worst dust storm of the [[Dust Bowl]].
111420 *1935 - [[Babe Ruth]] played his first [[National League]] game in [[Fenway Park]] in [[Boston, Massachusetts]]. He was playing for the Boston Braves, not his old team the Red Sox, in this, his last year of pro ball in the major leagues. In this season, Ruth played 28 games, getting 13 hits and six home runs, before retiring.
111421 *[[1940]] - [[Royal Marines]] land in [[Namsos]], Norway, occupying key points, preparatory to a larger force arriving two days later.
111422 *[[1941]] - World War II: The [[Ustashe]], a [[Croatian]] [[far-right]] organisation which pursued nazi/fascist policies, was put in charge of the [[Independent State of Croatia]] by the [[Axis Powers]]after the invasion of [[Yugoslavia]] on April 6 during Operation Castigo
111423 *[[1944]] - Huge explosion rocks the [[Bombay]] [[harbour]] killing 300 and causing a loss of 20 million pounds at that time. See: [[Bombay Explosion (1944)]].
111424 *[[1956]] - [[Videotape]] is first demonstrated at the 1956 NARTB (now [[National Association of Broadcasters|NAB]]) convention in [[Chicago, Illinois]]. It was the demonstation of the first practical and commercially successful format called [[2&quot; Quadruplex]].
111425 *[[1962]] - [[Georges Pompidou]] becomes Prime Minister of [[France]].
111426 *[[1964]] - A [[Delta rocket]]'s third-stage motor prematurely ignites in an assembly room at [[Cape Canaveral]], killing 3.
111427 *[[1965]] - ''[[In Cold Blood]]'' killers Richard Hickock and Perry Smith, convicted of murdering four members of the Herbert Clutter family of [[Holcomb, Kansas]], are executed by hanging at the Kansas State Penitentiary For Men in [[Lansing, Kansas]].
111428 *[[1969]] - At the [[Academy Awards]], a tie between [[Katharine Hepburn]] and [[Barbra Streisand]] results in the two sharing the [[Academy Award for Best Actress|Best Actress Oscar]]; Hepburn also becomes the only actress to win three Best Actress Oscars.
111429 *[[1970]] - One of [[Apollo 13]]'s oxygen tanks explodes, causing a cancelled moon mission. The explosion occurred on April 13th in several time zones.
111430 *[[1981]] - The [[Space Shuttle]] [[Space Shuttle Columbia|''Columbia'']] passes its first test flight.
111431 *[[1986]] - In retaliation for the [[April 5]] [[1986 Berlin discotheque bombing|bombing]] of the [[La Belle (discotheque)|La Belle Discotheque]] in [[West Berlin]] in which two U.S. servicemen were killed, [[Ronald Reagan]] ordered [[Operation El Dorado Canyon|major bombing raids]] against [[Tripoli]] and [[Benghazi]], in [[Libya]], which killed 60 people.
111432 *1986 - 2.2 lb (1 kg) [[hailstone]]s fall on the Gopalganj district of [[Bangladesh]], killing 92. These are the heaviest [[hailstone]]s ever recorded.
111433 *[[1988]] - [[USS Samuel B. Roberts (FFG-58)|USS ''Samuel B. Roberts'']] strikes a [[naval mine|mine]] in the [[Persian Gulf]] during [[Operation Earnest Will]]. U.S. retaliates against [[Iran]] on [[April 18]] with [[Operation Praying Mantis]], the world's largest naval battle since World War II.
111434 *[[2003]] - [[Human Genome Project]] successfully completed with 99% of the human [[genome]] sequenced to 99.99% accuracy.
111435 *2003 - [[Jean Charest]]'s [[Parti libÊral du QuÊbec]] defeats [[Bernard Landry]] and the [[Parti QuÊbÊcois]] in [[Quebec]]'s general elections.
111436
111437 ==Births==
111438 *[[1336]] - [[Emperor Go-Kogon]] of Japan (d. [[1374]])
111439 *[[1527]] - [[Abraham Ortelius]], Flemish cartographer and geographer (d. [[1598]])
111440 *[[1572]] - [[Adam Tanner]], Austrian mathematician and philosopher (d. [[1632]])
111441 *[[1578]] - King [[Philip III of Spain]] (d. [[1621]])
111442 *[[1629]] - [[Christiaan Huygens]], Dutch mathematician &amp; astronomer (d. [[1695]])
111443 *[[1714]] - [[Adam Gib]], Scottish religious leader (d. [[1788]])
111444 *[[1788]] - [[David G. Burnet]], interim president of the Republic of Texas (d. [[1870]])
111445 *[[1827]] - [[Augustus Pitt-Rivers]], English archaeologist (d. [[1900]])
111446 *[[1868]] - [[Peter Behrens]], German architect and designer (d. [[1940]])
111447 *[[1872]] - [[Abdullah Yusuf Ali]], Islamic scholar and translator (d. [[1953]])
111448 *[[1886]] - [[Ernst Robert Curtius]], Alsatian philologist (d. [[1956]])
111449 *[[1897]] - [[Claire Windsor]], American actress (d. [[1972]])
111450 *[[1902]] - [[Menachem Mendel Schneerson]], Ukrainian rabbi (d. [[1994]])
111451 *[[1904]] - Sir [[John Gielgud]], English actor (d. [[2000]])
111452 *[[1907]] - [[François Duvalier]], Haitian politician (d. [[1971]])
111453 *[[1917]] - [[Marvin Miller]], American labor activist
111454 *[[1921]] - [[Thomas Schelling]], American economist, [[Bank of Sweden Prize in Economic Sciences in Memory of Alfred Nobel|Bank of Sweden Prize]] winner
111455 *[[1925]] - [[Abel Muzorewa]], Prime Minster of Zimbabwe
111456 *1925 - [[Gene Ammons]], American jazz saxophonist (d. [[1974]])
111457 *1925 - [[Rod Steiger]], American actor (d. [[2002]])
111458 *[[1930]] - [[Bradford Dillman]], American actor
111459 *[[1933]] - [[Morton Subotnick]], American composer
111460 *[[1935]] - [[Erich von Däniken]], Swiss writer
111461 *[[1936]] - [[Kenneth Mars]], American actor
111462 *1936 - [[Frank Serpico]], American policeman
111463 *[[1940]] - [[Loretta Lynn]], American singer
111464 *[[1941]] - [[Julie Christie]], British actress
111465 *1941 - [[Pete Rose]], baseball player
111466 *[[1942]] - [[Valeriy Brumel]], Russian athlete (d. [[2003]])
111467 *1942 - [[Valentin Lebedev]], cosmonaut
111468 *[[1945]] - [[Ritchie Blackmore]], English guitarist
111469 *[[1949]] - [[John Shea]], American actor
111470 *[[1951]] - [[Julian Lloyd Webber]], English cellist and composer
111471 *[[1960]] - [[Brad Garrett]], American actor
111472 *[[1961]] - [[Robert Carlyle]], British actor
111473 *[[1964]] - [[Brian Adams (wrestler)]] American Pro Wrestler
111474 *[[1966]] - [[David Justice]], baseball player
111475 *1966 - [[Greg Maddux]], baseball player
111476 *[[1968]] - [[Anthony Michael Hall]], American actor
111477 *[[1973]] - [[Adrien Brody]], American actor
111478 *[[1974]] - [[Da Brat]], American rapper
111479 *[[1975]] - [[Amy Dumas]], American professional wrestler
111480 *[[1977]] - [[Sarah Michelle Gellar]], American actress
111481 *[[1980]] - [[Ben Wells]], American Actor
111482 *[[1983]] - [[James McFadden]], Scottish footballer
111483
111484 ==Deaths==
111485 *[[1132]] - Prince [[Mstislav of Kiev]] (b. [[1076]])
111486 *[[1279]] - Duke [[Boleslaus of Greater Poland]]
111487 *[[1322]] - [[Bartholomew de Badlesmere, 1st Lord Badlesmere]], English soldier (b. [[1275]])
111488 *[[1345]] - [[Richard Aungerville]], English bishop and writer (b. [[1287]])
111489 *[[1471]] - [[Richard Neville, 16th Earl of Warwick]], English kingmaker (b. [[1428]])
111490 *[[1574]] - [[Louis of Nassau]], Dutch general (killed in battle) (b. [[1538]])
111491 *[[1578]] - [[James Hepburn, 4th Earl of Bothwell]], consort of [[Mary I of Scotland]]
111492 *[[1599]] - [[Henry Wallop]], English statesman
111493 *[[1662]] - [[William Fiennes, 1st Viscount Saye and Sele]], English statesman (b. [[1582]])
111494 *[[1682]] - [[Avvakum]], Russian priest and writer (b. [[1621]])
111495 *[[1716]] - [[Arthur Herbert, 1st Earl of Torrington]], British admiral
111496 *[[1721]] - [[Michel Chamillart]], French statesman (b. [[1652]])
111497 *[[1759]] - [[George Frideric Handel]], German composer (b. [[1685]])
111498 *[[1785]] - [[William Whitehead]], English writer (b. [[1715]])
111499 *[[1792]] - [[Maximilian Hell]], Slovakian astronomer (b. [[1720]])
111500 *[[1912]] - [[Henri Brisson]], French statesman (b. [[1835]])
111501 *[[1914]] - [[Hubert Bland]], English co-founder of the Fabian Society (b. [[1855]])
111502 *[[1917]] - [[L. L. Zamenhof|Ludovich Lazarus Zamenhof]], Polish creator of Esperanto (b. [[1859]])
111503 *[[1925]] - [[John Singer Sargent]], English artist (b. [[1856]])
111504 *[[1930]] - [[Vladimir Mayakovsky]], Russian writer (b. [[1893]])
111505 *[[1935]] - [[Emmy Noether|Amalie Emmy Noether]], German mathematician (b. [[1882]])
111506 *[[1964]] - [[Rachel Carson]], American writer and environmentalist (b. [[1907]])
111507 *[[1968]] - [[Al Benton]], baseball player (b. [[1911]])
111508 *[[1975]] - [[Fredric March]], American actor (b. [[1897]])
111509 *[[1986]] - [[Simone de Beauvoir]], French feminist writer (b. [[1908]])
111510 *[[1995]] - [[Burl Ives]], American singer and actor (b. [[1909]])
111511 *[[1999]] - [[Ellen Corby]], American actress (b. [[1911]])
111512 *1999 - [[Anthony Newley]], British actor and singer (b. [[1931]])
111513 *[[2000]] - [[Phil Katz]], American computer programmer (b. [[1962]])
111514 *[[2001]] - [[Hiroshi Teshigahara]], Japanese director (b. [[1927]])
111515
111516 ==Holidays and observances==
111517 *[[New Year]] Celebrations in parts of India and whole of Sri Lanka
111518 *[[Baisakhi]] - [Celeberations in Punjab, India]
111519 *[[Poila Baisakh]] - [Celeberations in Bengal, India]
111520 *[[Vishu]] - [Harvest festival in Kerala, India]
111521 *[[Black Day]] - informal celebration day for single people in [[South Korea]]
111522 *[[Youth Day]] in [[Angola]]
111523
111524 ==External links==
111525 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/april/14 BBC: On This Day]
111526 * [http://www.tnl.net/when/4/14 Today in History: April 14]
111527
111528 ----
111529
111530 [[April 13]] - [[April 15]] - [[March 14]] - [[May 14]] -- [[historical anniversaries|listing of all days]]
111531
111532 {{months}}
111533
111534 [[af:14 April]]
111535 [[an:14 d'abril]]
111536 [[ar:14 Ø§Ø¨ØąŲŠŲ„]]
111537 [[ast:14 d'abril]]
111538 [[be:14 ĐēŅ€Đ°ŅĐ°Đ˛Ņ–ĐēĐ°]]
111539 [[bg:14 Đ°ĐŋŅ€Đ¸Đģ]]
111540 [[bs:14. april]]
111541 [[ca:14 d'abril]]
111542 [[ceb:Abril 14]]
111543 [[co:14 d'aprile]]
111544 [[cs:14. duben]]
111545 [[csb:14 łÅŧÃĢkwiôta]]
111546 [[cv:АĐēĐ°, 14]]
111547 [[cy:14 Ebrill]]
111548 [[da:14. april]]
111549 [[de:14. April]]
111550 [[el:14 ΑĪ€ĪÎšÎģίÎŋĪ…]]
111551 [[eo:14-a de aprilo]]
111552 [[es:14 de abril]]
111553 [[et:14. aprill]]
111554 [[eu:Apirilaren 14]]
111555 [[fi:14. huhtikuuta]]
111556 [[fo:14. apríl]]
111557 [[fr:14 avril]]
111558 [[fy:14 april]]
111559 [[ga:14 AibreÃĄn]]
111560 [[gl:14 de abril]]
111561 [[he:14 באפריל]]
111562 [[hr:14. travnja]]
111563 [[hu:Április 14]]
111564 [[ia:14 de april]]
111565 [[id:14 April]]
111566 [[ie:14 april]]
111567 [[io:14 di aprilo]]
111568 [[is:14. apríl]]
111569 [[it:14 aprile]]
111570 [[ja:4月14æ—Ĩ]]
111571 [[jv:14 April]]
111572 [[ka:14 აპრილი]]
111573 [[kn:ā˛Žā˛Ēāŗā˛°ā˛ŋā˛˛āŗ āŗ§āŗĒ]]
111574 [[ko:4ė›” 14ėŧ]]
111575 [[ku:14'ÃĒ avrÃĒlÃĒ]]
111576 [[la:14 Aprilis]]
111577 [[lb:14. AbrÃĢll]]
111578 [[li:14 april]]
111579 [[lt:BalandÅžio 14]]
111580 [[mk:14 Đ°ĐŋŅ€Đ¸Đģ]]
111581 [[ms:14 April]]
111582 [[nap:14 'e abbrile]]
111583 [[nl:14 april]]
111584 [[nn:14. april]]
111585 [[no:14. april]]
111586 [[oc:14 d'abril]]
111587 [[pam:Abril 14]]
111588 [[pl:14 kwietnia]]
111589 [[pt:14 de Abril]]
111590 [[ro:14 aprilie]]
111591 [[ru:14 Đ°ĐŋŅ€ĐĩĐģŅ]]
111592 [[scn:14 di aprili]]
111593 [[se:CuoŋomÃĄnu 14.]]
111594 [[simple:April 14]]
111595 [[sk:14. apríl]]
111596 [[sl:14. april]]
111597 [[sq:14 Prill]]
111598 [[sr:14. Đ°ĐŋŅ€Đ¸Đģ]]
111599 [[sv:14 april]]
111600 [[te:ā°ā°Ēāąā°°ā°ŋā°˛āą 14]]
111601 [[th:14 āš€ā¸Ąā¸Šā¸˛ā¸ĸā¸™]]
111602 [[tl:Abril 14]]
111603 [[tr:14 Nisan]]
111604 [[tt:14. Äpril]]
111605 [[uk:14 ĐēвŅ–Ņ‚ĐŊŅ]]
111606 [[ur:14 اŲžØąÛŒŲ„]]
111607 [[vi:14 thÃĄng 4]]
111608 [[wa:14 d' avri]]
111609 [[war:Abril 14]]
111610 [[zh:4月14æ—Ĩ]]</text>
111611 </revision>
111612 </page>
111613 <page>
111614 <title>Astoria, Oregon</title>
111615 <id>1864</id>
111616 <revision>
111617 <id>41883716</id>
111618 <timestamp>2006-03-02T09:56:10Z</timestamp>
111619 <contributor>
111620 <ip>209.155.145.244</ip>
111621 </contributor>
111622 <comment>Added info about TransAmerica Trail</comment>
111623 <text xml:space="preserve">[[Image:ORMap-doton-Astoria.png|right|280px]]
111624 [[Image:Astoria Column.jpg|250px|right|thumb|The Astoria Column]]
111625 [[Image:Astoria-Megler.JPG|thumb|250px|right|Astoria.]]
111626 '''Astoria''' is the [[county seat]] of [[Clatsop County, Oregon]]{{GR|6}}, situated near the mouth of the [[Columbia River]]. It was named after the [[United States|American]] investor [[John Jacob Astor]]. As of the [[2000]] census, the city had a total population of 9,813.
111627
111628 == History ==
111629 The [[Lewis and Clark Expedition]] spent the winter of 1805-1806 at [[Fort Clatsop]], a small log structure south and west of modern day Astoria. The expedition had hoped a ship would come by to take them back east, but instead endured a tortuous winter of rain and cold, then returned east the way they came. Today the fort has been recreated and is now a [[national monument]].
111630
111631 Several years later, in 1811, Astor's [[Pacific Fur Company]] founded [[Fort Astoria]] as its primary fur-trading post in the Northwest, and in fact the first permanent U.S. settlement on the Pacific coast. It was an extremely important post for American exploration of the continent and was influential in helping establish American claims to the land. The fort and fur trade was sold to the British in [[1813]], and while the fort was restored to the U.S. in [[1818]], control of the fur trade would remain under the British until American pioneers following the [[Oregon Trail]] began filtering into the port town in the mid-1840's. The first U.S. Post Office west of the [[Rocky Mountains]] was also established in Astoria in [[1847]].
111632
111633 As the [[Oregon Territory]] grew and became increasingly more settled, Astoria likewise grew as an ocean/river [[port|port city]]. In 1876 the community was legally incorporated. It attracted a host of [[Scandinavian]] settlers, and the area still boasts a high concentration of descendants of these original settlers.
111634
111635 In [[1883]], and again in [[1922]], downtown Astoria was devastated by fire, but the city economy was strong enough in both cases to rebuild and thrive. Astoria has served as a port of entry for over a century and remains the trading center for the lower Columbia basin.
111636
111637 In addition to Fort Clatsop, another popular point of interest includes the [[Astoria Column]], a tower 38 m high built atop the hill above the town, with an inner circular staircase allowing visitors to climb to see a breathtaking view of the town, the surrounding lands, and the mighty Columbia flowing into the Pacific. The column was built in 1926 to commemorate the region's early history by the Astor family.
111638
111639 Eclipsed by [[Portland, Oregon|Portland]] and other ports further inland along the Columbia, Astoria's economy centered around fishing, fish processing, and lumber. In 1945, about 30 canneries could be found along the Columbia; however, in 1974 [[Bumblebee Seafood]] moved its headquarters out of Astoria, and gradually reduced its presence until 1980 when the company closed its last cannery. The [[timber industry]] likewise declined, with Astoria Plywood Mill, the city's largest employer, closing in 1989, and the [[Burlington Northern and Santa Fe Railway]] announcing in 1996 that they were discontinuing service.
111640
111641 Today, tourism, Astoria's growing art scene, and light manufacturing are the main economic activities of the city. It is a port of call for [[cruise ship]]s, with many docking in 2004, 2005, and 13 scheduled in 2006.
111642
111643 Astoria was the setting of the [[1985]] hit movie ''[[The Goonies]]'', which was filmed on location. Other movies filmed in Astoria include ''[[Short Circuit]]'', ''[[Kindergarten Cop]]'', ''[[Free Willy]]'', ''[[Free Willy Two]]'', ''[[Teenage Mutant Ninja Turtles]] III'', ''[[Benji]]'' and ''[[The Ring Two]]''.
111644
111645 Astoria is also the western terminus of the [[TransAmerica Trail]], a [[bicycle touring]] route created by the [[American Cycling Association]].
111646
111647 == Geography ==
111648 Astoria is located at {{coor dms|46|11|20|N|123|49|16|W}} (46.188825, -123.821007){{GR|1}}.
111649
111650 According to the [[United States Census Bureau]], the city has a total area of 27.5 [[square kilometre|km&amp;sup2;]] (10.6 [[square mile|mi&amp;sup2;]]). 15.9 km&amp;sup2; (6.1 mi&amp;sup2;) of it is land and 11.6 km&amp;sup2; (4.5 mi&amp;sup2;) of it is water. The total area is 42.18% water.
111651
111652 == Demographics ==
111653 [[Image:DSCN6804 astoriawalkingdogontracks e.jpg|250px|right|thumb|Woman walking her dog along the Columbia River in Astoria]]
111654 As of the [[census]]{{GR|2}} of [[2000]], there are 9,813 people, 4,235 households, and 2,469 families residing in the city. The [[population density]] is 617.1/km&amp;sup2; (1,597.6/mi&amp;sup2;). There are 4,858 housing units at an average density of 305.5/km&amp;sup2; (790.9/mi&amp;sup2;). The racial makeup of the city is 91.08% [[White (U.S. Census)|White]], 0.52% [[African American (U.S. Census)|Black]] or [[Race (U.S. Census)|African American]], 1.14% [[Native American (U.S. Census)|Native American]], 1.94% [[Asian (U.S. Census)|Asian]], 0.19% [[Pacific Islander (U.S. Census)|Pacific Islander]], 2.67% from [[Race (U.S. Census)|other races]], and 2.46% from two or more races. 5.98% of the population are [[Hispanic American]] or [[Latino (U.S. Census)|Latino]] of any race.
111655
111656 There are 4,235 households out of which 28.8% have children under the age of 18 living with them, 43.5% are [[Marriage|married couples]] living together, 11.2% have a female householder with no husband present, and 41.7% are non-families. 35.4% of all households are made up of individuals and 13.6% have someone living alone who is 65 years of age or older. The average household size is 2.26 and the average family size is 2.93.
111657
111658 In the city the population is spread out with 24.0% under the age of 18, 9.1% from 18 to 24, 26.4% from 25 to 44, 24.5% from 45 to 64, and 15.9% who are 65 years of age or older. The median age is 38 years. For every 100 females there are 92.3 males. For every 100 females age 18 and over, there are 89.9 males.
111659
111660 The median income for a household in the city is $33,011, and the median income for a family is $41,446. Males have a median income of $29,813 versus $22,121 for females. The [[per capita income]] for the city is $18,759. 15.9% of the population and 11.6% of families are below the [[poverty line]]. Out of the total population, 22.0% of those under the age of 18 and 9.6% of those 65 and older are living below the poverty line.
111661
111662 == Tourist attractions ==
111663 *[http://www.nps.gov/focl/ Fort Clatsop National Memorial]
111664 *[http://www.oregoncoast.com/Astorcol/Astorcol.htm Astoria Column]=
111665 *[[Columbia River Maritime Museum]]
111666 *[http://virtualguidebooks.com/Oregon/OregonCoast/ClatsopSpit/PeterIredaleWreck.html Peter Iredale Wreck]
111667
111668 == External links ==
111669 *[http://www.oldoregon.com/ Official Site for Astoria, Oregon]
111670 {{Mapit-US-cityscale|46.188825|-123.821007}}
111671
111672 [[Category:Astoria, Oregon|*]]
111673 [[Category:Cities in Oregon]]
111674 [[Category:County seats in Oregon]]
111675 [[Category:Clatsop County, Oregon]]
111676 [[Category:Oregon Coast]]
111677 [[Category:The Astors]]
111678
111679 [[de:Astoria (Oregon)]]
111680 [[gl:Astoria]]
111681 [[io:Astoria, Oregon]]</text>
111682 </revision>
111683 </page>
111684 <page>
111685 <title>ALF</title>
111686 <id>1865</id>
111687 <revision>
111688 <id>38525318</id>
111689 <timestamp>2006-02-06T22:39:53Z</timestamp>
111690 <contributor>
111691 <username>SlimVirgin</username>
111692 <id>129409</id>
111693 </contributor>
111694 <comment>redirect</comment>
111695 <text xml:space="preserve">#REDIRECT [[Animal Liberation Front]]</text>
111696 </revision>
111697 </page>
111698 <page>
111699 <title>Alarums and Excursions</title>
111700 <id>1866</id>
111701 <revision>
111702 <id>40359284</id>
111703 <timestamp>2006-02-20T01:17:29Z</timestamp>
111704 <contributor>
111705 <username>Rich Farmbrough</username>
111706 <id>82835</id>
111707 </contributor>
111708 <minor />
111709 <comment>External links per MoS.</comment>
111710 <text xml:space="preserve">'''''Alarums and Excursions''''' ('''''A&amp;E'''''), started in 1975 by Lee Gold, was one of the first [[fanzine]]s to focus on [[role-playing game]]s. Each issue consists of contributions from different authors, often featuring game design discussions, rules variants, write-ups of game sessions, reviews, and comments on others contributions. As one might guess, the quality varies; but with a no advertising policy and a huge range of viewpoints on display, A&amp;E often makes for interesting reading. It was a three time winner of the [[Charles Roberts Award|Charles Roberts]]/[[Origins Award]] for best amateur [[magazine]].
111711
111712 ==External links==
111713 &lt;!-- * http://www.rahul.net/starport/xeno/aande.html (Broken) --&gt;
111714 * http://thestarport.org/xeno/aande.html
111715
111716 {{mag-stub}}
111717
111718 [[Category:Role-playing game magazines]]
111719 [[Category:Origins award winners]]
111720 [[Category:Charles Roberts award winners]]
111721 [[Category:Fanzines]]</text>
111722 </revision>
111723 </page>
111724 <page>
111725 <title>Alfred Jarry</title>
111726 <id>1869</id>
111727 <revision>
111728 <id>41217960</id>
111729 <timestamp>2006-02-25T21:31:25Z</timestamp>
111730 <contributor>
111731 <username>Magnus Manske</username>
111732 <id>4</id>
111733 </contributor>
111734 <minor />
111735 <comment>/* External links */ * {{gutenberg author| id=Jarry+Alfred | name=Alfred Jarry}}</comment>
111736 <text xml:space="preserve">[[Image:AlfredJarry.jpg|thumb|178px|right|Alfred Jarry]]
111737 {{French literature (small)}}
111738
111739 '''Alfred Jarry''' ([[September 8]], [[1873]] &amp;ndash; [[November 1]], [[1907]]) was a [[France|French]] [[writer]] born in [[Laval, Mayenne|Laval]], [[Mayenne]], [[France]], not far from the border of [[Brittany]]; he was of [[Brittany|Breton]] descent on his mother's side.
111740
111741 Best known for his [[play]] ''[[Ubu Roi]]'' ([[1896]]), which is often cited as a forerunner to the [[theatre of the absurd]], Jarry wrote in a variety of genres and styles. He wrote plays, novels, poetry, essays and speculative journalism. His texts present some pioneering work in the field of absurdist literature. Sometimes grotesque or misunderstood (i.e. the opening line in his play ''Ubu Roi'', &quot;Merdre!&quot;, has been translated into English as &quot;Shittr!&quot;, &quot;Shikt!&quot;, and &quot;Shitsky!&quot;), he invented a science called ''[['pataphysics]]''.
111742
111743 ==Biography and works==
111744 A precociously brilliant student, Jarry enthralled his classmates with a gift for pranks and troublemaking.
111745
111746 At the lycÊe in [[Rennes]] when he was 15, he led of a group of boys who devoted much time and energy to poking fun at their well-meaning, obese and incompetent physics teacher, a man named HÊbert. Jarry and classmate Charles Morin wrote a play they called ''Les Polonais'' and performed it with [[marionettes]] in the home of one of their friends. The main character, ''Père Heb'', was a blunderer with a huge belly; three teeth (one of stone, one of iron, and one of wood); a single, retractable ear; and a misshapen body. In Jarry's later work ''[[Ubu Roi]]'', Père Heb would develop into Ubu, one of the most monstrous and astonishing characters in French literature.
111747
111748 At 17, Jarry passed his [[baccalaurÊat]] and moved to [[Paris]] to prepare for admission to the École Normale SupÊrieure. Though he was not admitted, he soon gained attention for his original poems and prose-poems. A collection of his work, ''Les minutes de sable mÊmorial'', was published in 1893.
111749
111750 That same year, both his parents died, leaving him a small inheritance which he quickly spent.
111751
111752 Jarry had meantime discovered the pleasures of alcohol, which he called &quot;my sacred herb&quot; or, when referring to [[absinthe]], the &quot;green goddess&quot;. A story is told that he once painted his face green and rode through town on his bicycle in its honour (and possibly under its influence).
111753
111754 Drafted into the army in 1894, his gift for turning notions upside down defeated attempts to instill military discipline. The sight of the small man in a uniform much too large for his less than 5-foot frame&amp;mdash;the army did not issue uniforms small enough&amp;mdash;was so disruptively funny that he was excused from parades and marching drills. Eventually the army discharged him for medical reasons. His military experience eventually inspired the novel, ''Days and Nights''.
111755
111756 Jarry returned to Paris and applied himself to drinking, writing, and the company of friends who appreciated his witty, sweet-tempered, and unpredictable conversation. This period is marked by his intense involvement with [[Remy de Gourmont]] in the publication of ''L'Ymagier'', a luxuriously produced &quot;art&quot; magazine devoted to the symbolic analysis of medieval and popular prints. [[Symbolism (arts)|Symbolism]] as an art movement was in full swing at this time and ''L'Ymagier'' provided a nexus for many of its key contributors. Jarry's play ''Caesar Antichrist'' (1895) drew on this movement for material. This is a work that bridges the gap between serious symbolic meaning and the type of critical absurdity with which Jarry would soon become associated. Using the biblical [[Book of Revelations]] as a point of departure, ''Caesar Antichrist'' presents a parallel world of extreme formal symbolism in which [[Christ]] is resurrected not as an agent of [[spirituality]] but as agent of the [[Roman Empire]] that seeks to dominate spirituality. It is a unique [[narrative]] that effectively links the domination of the [[soul]] to contemporaneous advances in the field of [[Egyptology]] such as the 1894 excavation the [[Narmer Palette]], an ancient artifact used for situating the [[rebus]] within [[hermeneutics]].
111757
111758 The spring of 1896 saw the publication, in Paul Fort's review ''Le Livre d'art'', of Jarry's 5-act play ''[[Ubu Roi]]''&amp;mdash;the rewritten and expanded ''Les Polonais'' of his school days. ''Ubu Roi'''s savage humor and monstrous absurdity, unlike anything thus far performed in French theater, seemed unlikely to ever actually be performed on stage. However, impetuous theater director [[AurÊlien-Marie LugnÊ-Poe]] took the risk, producing the play at his ThÊÃĸtre de l'Oeuvre.
111759
111760 On opening night ([[December 10]], [[1896]]), with traditionalists and the [[avant-garde]] in the audience, King Ubu (played by [[Firmin GÊmier]]) stepped forward and intoned the opening word, &quot;Merdre!&quot; (&quot;Shittr!&quot;). A quarter of an hour of pandemonium ensued: outraged cries, booing, and whistling by the offended parties, countered by cheers and applause by the more forward-thinking contingent. Such interruptions continued through the evening. At the time, only the dress rehearsal and opening night performance were held, and the play was not revived until 1907.
111761
111762 The play brought fame to the 23-year-old Jarry, and he immersed himself in the fiction he had created. GÊmier had modeled his portrayal of Ubu on Jarry's own staccato, nasal vocal delivery, which emphasized each syllable (even the silent ones). From then on, Jarry would always speak in this style. He adopted Ubu's ridiculous and pedantic figures of speech; for example, he referred to himself using the [[royal we|royal ''we'']], and called the wind &quot;that which blows&quot; and the bicycle he rode everywhere &quot;that which rolls&quot;.
111763
111764 Jarry moved into a flat which the landlord had made by horizontally dividing one flat into two. He could just manage to stand up in the place, but guests had to bend or crouch. Jarry took to carrying a loaded pistol. In response to a neighbor's complaint that his target shooting endangered her children, he replied, &quot;If that should ever happen, ma-da-me, we should ourselves be happy to get new ones with you&quot; (though he was not at all inclined to engage with females in the manner implied).
111765
111766 Living in worsening poverty, neglecting his health, and drinking excessively, Jarry went on to write what is often cited as the first [[cyborg]] sex novel, ''[[Supermale (novel)|The Supermale]]'', which is partly a satire on the [[Symbolist]] ideal of self-transcendence.
111767
111768 Unpublished until after his death, his fiction ''[[Exploits and Opinions of Dr. Faustroll, pataphysician]]'' (''Gestes et opinions du docteur Faustroll, pataphysicien'') describes the exploits and teachings of a sort of antiphilosopher who, born at age 63, travels through a hallucinatory Paris in a sieve and subscribes to the tenets of ''[['pataphysics]]''. 'Pataphysics deals with &quot;the laws which govern exceptions and will explain the universe supplementary to this one&quot;. In 'pataphysics, every event in the universe is accepted as an extraordinary event.
111769
111770 Jarry once wrote, expressing some of the bizarre logic of 'pataphysics, &quot;If you let a coin fall and it falls, the next time it is just by an infinite coincidence that it will fall again the same way; hundreds of other coins on other hands will follow this pattern in an infinitely unimaginable fashion&quot;.
111771
111772 In his final years, he was a legendary and heroic figure to some of the young writers and artists in Paris. [[Guillaume Apollinaire]], [[AndrÊ Salmon]], and [[Max Jacob]] sought him out in his truncated apartment. After his death, [[Pablo Picasso]], fascinated with Jarry, acquired his pistol and wore it on his nocturnal expeditions in Paris, and later bought many of his manuscripts as well as executing a fine drawing of him.
111773
111774 Jarry lived in his 'pataphysical world until his death in Paris on [[November 1]], [[1907]] of [[tuberculosis]], aggravated by drug and alcohol use. It is recorded that his last request was for a toothpick. He was interred in the [[Cimetière de Bagneux]], near Paris.
111775
111776 ==See also==
111777 * [['pataphysics]]
111778 * ''[[Ubu Roi]]''
111779
111780 ==Selected Jarry works==
111781 ===Plays===
111782 * [[Ubu Roi|''Ubu the King'' or ''King Turd (Ubu Roi)'']], written at age 15 as ''Les Polonais''.
111783 * ''Ubu Cuckolded (Ubu cocu ), Ubu Bound (Ubu enchaínÊ)''
111784 ===Novels===
111785 * ''[[Supermale (novel)|The Supermale]] (Le SurmÃĸle)''
111786 * ''[[Exploits and Opinions of Dr. Faustroll, pataphysician]] (Gestes et opinions du docteur Faustroll, pataphysicien)''
111787 ===Other notable works===
111788 * Short story, ''The Passion Considered as an Uphill Bicycle Race'', has been widely circulated and imitated, notably by [[J.G. Ballard]].
111789
111790 == Bibliography ==
111791 * {{cite book | author=Beaumont, Keith| title=Alfred Jarry: A Critical and Biographical Study | publisher=U.S.: St. Martin's Press | year=1984 | id=ISBN 0-3120-1712-X}}
111792 * {{cite book | author=Tompkins, Calvin | title=Duchamp: A Biography | publisher=U.S.: Henry Holt and Company, Inc | year=1996 | id=ISBN 0-8050-5789-7}}
111793 * ''The Banquet Years'' by Roger Shattuck (1958) ISBN 0394704150
111794
111795 == External links ==
111796 {{wikiquote}}
111797 * [http://pata.obspm.fr/livres/jarry/Ubu_roi.html ''Ubu Roi''] (French)
111798 * [http://pata.obspm.fr/livres/jarry/faustrol.htm ''Gestes et opinions du docteur Faustroll, pataphysicien''] (French)
111799 * [http://pata.obspm.fr/ College of Pataphysics] (French)
111800 *[http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;GRid=9101496 Alfred Jarry at Find-A-Grave]
111801 *[http://www.blather.net/shitegeist/2001/05/alfred_jarry_absinthe_bicycle.htm Alfred Jarry: Absinthe, Bicycles and Merdre]
111802 * {{gutenberg author| id=Jarry+Alfred | name=Alfred Jarry}}
111803
111804 [[Category:1873 births|Jarry, Alfred]]
111805 [[Category:1907 deaths|Jarry, Alfred]]
111806 [[Category:French dramatists and playwrights|Jarry, Alfred]]
111807 [[Category:Pataphysicians|Jarry, Alfred]]
111808 [[Category:French satirists|Jarry, Alfred]]
111809
111810 [[br:Alfred Jarry]]
111811 [[cs:Alfred Jarry]]
111812 [[de:Alfred Jarry]]
111813 [[es:Alfred Jarry]]
111814 [[fr:Alfred Jarry]]
111815 [[it:Alfred Jarry]]
111816 [[ka:ჟარი, ალფრედ]]
111817 [[nl:Alfred Jarry]]
111818 [[pl:Alfred Jarry]]
111819 [[sr:АĐģŅ„Ņ€ĐĩĐ´ ЈаŅ€Đ¸]]
111820 [[sv:Alfred Jarry]]</text>
111821 </revision>
111822 </page>
111823 <page>
111824 <title>Amalric</title>
111825 <id>1870</id>
111826 <revision>
111827 <id>35514196</id>
111828 <timestamp>2006-01-17T07:28:50Z</timestamp>
111829 <contributor>
111830 <username>Jaraalbe</username>
111831 <id>261435</id>
111832 </contributor>
111833 <comment>hndis</comment>
111834 <text xml:space="preserve">'''Amalric''' is the name of several kings.
111835
111836 * [[Amalaric|Amalric]] - King of the [[Visigoths]] from 526 to 531
111837 * [[Amalric I of Jerusalem]] - [[kingdom of Jerusalem|King of Jerusalem]] from 1162 to 1174
111838 * [[Amalric II of Jerusalem]] - [[King of Jerusalem]] from 1197 to 1205
111839 * [[Amalric of Bena]] - French theologian ca. 1200 AD
111840 * [[Amalric of Tyre]] - [[Kingdom of Cyprus|King of Cyprus]] from 1306 to 1310
111841
111842 A French variant of this name is '''Amaury.'''
111843
111844 {{hndis}}</text>
111845 </revision>
111846 </page>
111847 <page>
111848 <title>Amalric I of Jerusalem</title>
111849 <id>1871</id>
111850 <revision>
111851 <id>41308826</id>
111852 <timestamp>2006-02-26T12:54:52Z</timestamp>
111853 <contributor>
111854 <username>DabMachine</username>
111855 <id>922466</id>
111856 </contributor>
111857 <minor />
111858 <comment>disambiguation from [[Knights Templar]] to [[Knights Templar (military order)]] - ([[WP:DPL|You can help!]])</comment>
111859 <text xml:space="preserve">'''Amalric I''' (also '''Amaury''' or '''Aimery''') ([[1136]] &amp;ndash; [[July 11]], [[1174]]) was [[Kingdom of Jerusalem|King of Jerusalem]] [[1162]]&amp;ndash;[[1174]], and [[Count of Jaffa and Ascalon]] before his accession. Amalric was the second son of [[Melisende of Jerusalem]] and [[Fulk of Jerusalem]].
111860
111861 ==Youth==
111862 After the death of Amalric's father, the throne passed jointly to his mother Melisende and his older brother Baldwin III. Melisende did not step down when Baldwin came of age, and by [[1150]] the two were becoming increasingly hostile towards each other. In [[1152]] Baldwin had himself crowned sole king, and civil war broke out, with Melisende retaining [[Jerusalem]] while Baldwin held territory further north. Amalric, who had been given the County of Jaffa as an [[apanage]] when he reached the age of majority in [[1151]], remained loyal to Melisende in Jerusalem, and when Baldwin invaded the south, Amalric was besieged in the [[Tower of David]] with his mother. Melisende was defeated in this struggle and Baldwin ruled alone thereafter. In [[1153]] Baldwin captured the [[Egypt]]ian fortress of [[Ascalon]], which was then added to Amalric's fief of Jaffa (see [[Battle of Ascalon (1153)|Battle of Ascalon]]).
111863
111864 Amalric married [[Agnes of Courtenay]] in [[1157]]. Agnes, daughter of [[Joscelin II of Edessa]], had lived in Jerusalem since the western regions of [[Edessa, Mesopotamia|Edessa]] were lost in 1150. [[Patriarch Fulk of Jerusalem|Patriarch Fulcher]] objected to the marriage on grounds of [[consanguinity]], as the two shared a great-great-grandfather, [[Guy I of MontlhÊry]], and it seems that they waited until Fulcher's death to marry. Agnes bore Amalric two children, first [[Sibylla of Jerusalem|Sibylla]] and then the future [[Baldwin IV of Jerusalem|Baldwin IV]] in [[1161]]. Both would come to rule the kingdom in their own right.
111865
111866 ==Succession==
111867
111868 Baldwin III died in 1162 and the kingdom passed to Amalric, although there was some opposition among the nobility to Agnes; they were willing to accept the marriage in 1157 when Baldwin III was still capable of siring an heir, but now the ''[[Haute Cour of Jerusalem|Haute Cour]]'' refused to endorse Amalric as king unless his marriage to Agnes was annulled. The hostility to Agnes, it must be admitted, may be exaggerated by the chronicler [[William of Tyre]], whom she prevented from becoming [[Latin Patriarch of Jerusalem]] decades later, as well as from William's continuators like [[Ernoul]], who hints at a slight on her moral character: &quot;car telle n'est que roine doie iestre di si haute cite comme de Jherusalem&quot; (&quot;there should not be such a queen for so holy a city as Jerusalem&quot;). Nevertheless, consanguinity was enough for the opposition. Amalric agreed and ascended the throne without a wife, although Agnes continued to hold the title Countess of Jaffa and Ascalon and received a pension from that fief's income. Agnes soon thereafter married [[Hugh of Ibelin]], to whom she had been engaged before her marriage with Amalric. The church ruled that Amalric and Agnes' children were legitimate and preserved their place in the order of succession. Through her children Agnes would exert much influence in Jerusalem for almost 20 years.
111869
111870 == Conflicts with the Muslim states ==
111871
111872 As a [[Crusader state]] Jerusalem was constantly in a state of war. Since Baldwin III's blunder by attacking allied [[Damascus]] during the [[Second Crusade]] in [[1147]], the northern frontier was exposed to [[Nur ad-Din]], whose own power continued to grow from his bases in [[Mosul]], [[Aleppo]], and later Damascus when that city fell under his control. Jerusalem lost influence to Byzantium in northern Syria when the Empire imposed its suzerainty over the [[Principality of Antioch]], although Byzantium was increasingly beset by its own conflicts, particularly with the [[Normans]] in [[Sicily]].
111873
111874 The main theatre of conflict of Amalric's reign was [[Fatimid]] [[Egypt]], which was suffering from a series of young [[caliph]]s and civil wars. The crusaders had wanted to conquer Egypt since the days of [[Baldwin I of Jerusalem|Baldwin I]], and even [[Godfrey of Bouillon]] had promised to cede Jerusalem to the [[Latin Patriarch of Jerusalem|Patriarch]] [[Dagobert of Pisa]] if he could capture [[Cairo]]. The capture of Ascalon by Baldwin III made the conquest of Egypt more feasible, and the [[Knights Hospitaller]] began preparing maps of the possible invasion routes.
111875
111876 ===Invasions of Egypt===
111877
111878 Amalric led his first expedition into Egypt in [[1163]], claiming that the Fatimids had not paid the yearly tribute that had begun during the reign of Baldwin III. The vizier, Dirgham, had recently overthrown the vizier Shawar, and marched out to meet Amalric at [[Pelusium]], but was defeated and forced to retreat to [[Bilbeis]]. The Egyptians then opened up the [[Nile]] dams and let the river flood, hoping to prevent Amalric from invading any further. Amalric returned home but Shawar fled to the court of Nur ad-Din, who sent his general [[Shirkuh]] to settle the dispute in [[1164]]. In response Dirgham sought help from Amalric, but Shirkuh and Shawar arrived before Amalric could intervene and Dirgham was killed. Shawar, however, feared that Shirkuh would seize power for himself, and he too looked to Amalric for assistance. Amalric returned to Egypt in 1164 and besieged Shirkuh in Bilbeis until Shirkuh retreated to Damascus.
111879
111880 Amalric could not follow up on his success in Egypt because Nur ad-Din was active in Syria, having taken [[Bohemund III of Antioch]] and [[Raymond III of Tripoli]] prisoner at the [[Battle of Harim]] during Amalric's absence. Amalric rushed to take up the regency of Antioch and Tripoli and secured Bohemund's ransom in [[1165]] (Raymond remained in prison until [[1173]]). The year [[1166]] was relatively quiet, but Amalric sent envoys to the [[Byzantine Empire]] seeking an alliance and a Byzantine wife, and throughout the year had to deal with raids by Nur ad-Din, who captured [[Banias]].
111881
111882 In [[1167]], Nur ad-Din sent Shirkuh back to Egypt and Amalric once again followed him, establishing a camp near [[Cairo]]; Shawar again allied with Amalric as well and a treaty was signed with the caliph [[al-Adid]] himself. Shirkuh encamped on the opposite side of the [[Nile]]. After an indecisive battle, Amalric retreated to Cairo and Shirkuh took his troops to capture [[Alexandria]]; Amalric followed and besieged Shirkuh there, aided by a fleet from Jerusalem. Shirkuh negotiated for peace and Alexandria was handed over to Amalric. However Amalric could not remain there forever, and after exacting an enormous tribute, returned to Jerusalem.
111883
111884 ===Byzantine alliance===
111885
111886 After his return in 1167 he married [[Maria Comnena]], a great-grandniece of [[Byzantine emperor]] [[Manuel I Comnenus]]. The negotiations had taken two years, mostly because Amalric insisted that Manuel return [[Antioch]] to Jerusalem. Once Amalric gave up on this point he was able to marry Maria in [[Tyre]] on [[August 29]], [[1167]]. During this time the queen dowager, Baldwin III's widow [[Theodora Comnena|Theodora]], eloped with her cousin [[Andronicus I Comnenus|Andronicus]] to [[Damascus]], and [[Akko|Acre]] reverted back into the royal domain of Jerusalem. It was also around this time that [[William of Tyre]] was promoted to [[archdeacon]] of Tyre, and was recruited by Amalric to write a history of the kingdom.
111887
111888 In [[1168]] Amalric and Manuel negotiated an alliance against Egypt, and William of Tyre was among the ambassadors sent to [[Constantinople]] to finalize the treaty. Although Amalric still had a peace treaty with Shawar, Shawar was accused of attempting to ally with Nur ad-Din, and Amalric invaded. The [[Knights Hospitaller]] eagerly supported this invasion and may have even been responsible for convincing the king to do it, while the [[Knights Templar (military order)|Knights Templar]] refused to have any part in it. In October, without waiting for any Byzantine assistance (and in fact without even waiting for the ambassadors to return), Amalric invaded and seized Bilbeis. The inhabitants were either massacred or enslaved. Amalric then marched to Cairo, where Shawar offered Amalric two million pieces of gold. Meanwhile Nur ad-Din sent Shirkuh back to Egypt as well, and upon his arrival Amalric retreated.
111889
111890 ===Rise of Saladin===
111891
111892 In January of 1169 Shirkuh had Shawar assassinated. Shirkuh became vizier, although he himself died in March, and was succeeded by his nephew [[Saladin]]. Amalric became alarmed and sought help from the kings and nobles of Europe, but no assistance was forthcoming. Later that year however a Byzantine fleet arrived, and in October Amalric launched yet another invasion and besieged [[Damietta]] by sea and by land. The siege was long and famine broke out in the Christian camp; the Byzantines blamed the crusaders for the failure and vice versa, and a truce was signed with Saladin. Amalric returned home.
111893
111894 Now Jerusalem was surrounded by hostile enemies. In [[1170]] Saladin invaded Jerusalem and took the city of [[Eilat]], severing Jerusalem's connection with the Red Sea. Saladin, who was set up as Vizier of Egypt, was declared Sultan in [[1171]] with the death of the last of the Fatimid dynasty. Saladin's rise to Sultan was an unexpected reprieve for Jerusalem, as Nur ad-Din was now preoccupied with reining in his powerful vassal. Nevertheless, in 1171 Amalric visited Constantinople himself and envoys were sent to the kings of Europe for a second time, but again they were uninterested. Over the next few years the kingdom was threatened by not only Saladin and Nur ad-Din, but also the [[Hashshashin]]; in one episode, the Knights Templar murdered some Hashshashin envoys, leading to further disputes between Amalric and the Templars.
111895
111896 == Death ==
111897
111898 Nur ad-Din died in 1174, upon which Amalric immediately besieged Banias. On the way back after giving up the siege he fell ill from [[dysentery]], which was ameliorated by doctors but turned into a [[fever]] in Jerusalem. William of Tyre explains that &quot;after suffering intolerably from the fever for several days, he ordered physicians of the Greek, Syrian, and other nations noted for skill in diseases to be called and insisted that they give him some purgative remedy.&quot; Neither they nor Latin doctors could help, and he died on July 11, 1174.
111899
111900 Maria Comnena had borne Amalric two daughters: [[Isabella of Jerusalem|Isabella]], who would eventually marry four husbands in turn and succeed as queen, was born in [[1172]]; and a stillborn child some time later. On his deathbed Amalric bequeathed [[Nablus]] to Maria and Isabella, both of whom would retire there. The leprous child Baldwin IV succeeded his father and brought his mother Agnes of Courtenay (now married to her fourth husband) back to court.
111901
111902 ==Physical characteristics==
111903
111904 William was a good friend of Amalric and described him in great detail. &quot;He had a slight impediment in his speech, not serious enough to be considered as a defect but sufficient to render him incapable of ready eloquence. He was far better in counsel than in fluent or ornate speech.&quot; Like his brother Baldwin III, he was more of an academic than a warrior, who studied law and languages in his leisure time: &quot;He was well skilled in the customary law by which the kingdom was governed – in fact, he was second to no one in this respect.&quot; He was probably responsible for an assize making all rear-vassals directly subject to the king and eligible to appear at the Haute Cour. Amalric had an enormous curiosity, and William was reportedly astonished to find Amalric questioning, during an illness, the [[Resurrection of the dead|resurrection]] of the body. He especially enjoyed reading and being read too, spending long hours listening to William read early drafts of his history. He did not enjoy games or spectacles, although he liked to hunt. He was trusting of his officials, perhaps too trusting, and it seems that there were many among the population who despised him, although he refused to take any action against those who insulted him publicly.
111905
111906 He was tall and fairly handsome; &quot;he had sparkling eyes of medium size; his nose, like that of his brother, was becomingly aquiline; his hair was blond and grew back somewhat from his forehead. A comely and very full beard covered his cheeks and chin. He had a way of laughing immoderately so that his entire body shook.&quot; He did not overeat or drink to excess, but his corpulence grew in his later years, decreasing his interest in military operations; according to William, he &quot;was excessively fat, with breasts like those of a woman hanging down to his waist.&quot;
111907 Amalric was pious and attended mass every day, although he also &quot;is said to have absconded himself without restraint to the sins of the flesh and to have seduced married womenâ€Ļ&quot; Despite his piety he taxed the clergy, which they naturally opposed.
111908
111909 As William says, &quot;he was a man of wisdom and discretion, fully competent to hold the reins of government in the kingdom.&quot; He is considered the last of the &quot;early&quot; [[kings of Jerusalem]], after whom there was no king able to save Jerusalem from its eventual collapse. Within a few years, Emperor Manuel died as well, and Saladin remained the only strong leader in the east.
111910
111911 == Sources ==
111912 *Bernard Hamilton, &quot;Women in the Crusader States: The Queens of Jerusalem&quot;, in Medieval Women, edited by Derek Baker. Ecclesiatical History Society, 1978
111913 *[[Steven Runciman]], ''A History of the Crusades, vol. II: The Kingdom of Jerusalem''. [[Cambridge University Press]], 1952
111914 *[[William of Tyre]], ''A History of Deeds Done Beyond the Sea'', trans. E.A. Babcock and A.C. Krey. [[Columbia University Press]], 1943
111915 *{{1911}}
111916
111917 {{start box}}
111918 {{succession box | title=[[King of Jerusalem]] | before=[[Baldwin III of Jerusalem|Baldwin III]] | after=[[Baldwin IV of Jerusalem|Baldwin IV]] | years=1162&amp;ndash;1174}}
111919 {{end box}}
111920
111921 [[Category:1136 births|Amalric I of Jerusalem]]
111922 [[Category:1174 deaths|Amalric I of Jerusalem]]
111923 [[Category:Kings of Jerusalem]]
111924
111925 [[de:Amalrich I. (Jerusalem)]]
111926 [[es:Amalarico I de JerusalÊn]]
111927 [[fr:Amaury Ier de JÊrusalem]]
111928 [[he:אמלריך הראשון מלך ירושלים]]
111929 [[pl:Amalryk I]]
111930 [[zh:é˜ŋéŠŦ尔里克]]</text>
111931 </revision>
111932 </page>
111933 <page>
111934 <title>Amalric II of Jerusalem</title>
111935 <id>1872</id>
111936 <revision>
111937 <id>41825248</id>
111938 <timestamp>2006-03-02T00:06:09Z</timestamp>
111939 <contributor>
111940 <username>Silverwhistle</username>
111941 <id>320505</id>
111942 </contributor>
111943 <minor />
111944 <comment>typo correction</comment>
111945 <text xml:space="preserve">'''Amalric II''' ([[1145]] &amp;ndash; [[April 1]], [[1205]]), [[Kingdom of Jerusalem|King of Jerusalem]] [[1197]]&amp;ndash;[[1205]], was an older brother of [[Guy of Lusignan]].
111946
111947 The [[Lusignan]] family was noted for its many Crusaders. Amalric and Guy were sons of [[Hugh VIII of Lusignan]], who had himself campaigned in the Holy Land in the [[1160s]]. After being expelled from [[Poitou]] by their overlord, [[Richard I of England|Richard the Lion-hearted]], for the murder of [[Patrick of Salisbury]], 1st [[Earl of Salisbury]], Amalric arrived in Palestine c. [[1174]], Guy possibly later. Amalric married Eschiva, daughter of [[Baldwin of Ibelin]]. He then took service with [[Agnes of Courtenay]], wife of [[Reginald of Sidon]] and mother of [[Baldwin IV of Jerusalem]]. The pro-Ibelin ''Chronicle of [[Ernoul]]'' later claimed that he was her lover, but it is likely that she and Baldwin IV were attempting to separate him from the political influence of his wife's family. He was appointed [[Officers of the Kingdom of Jerusalem|constable of Jerusalem]] in [[1179]]. [[Guy of Lusignan|Guy]] married the king's widowed older sister, [[Sibylla of Jerusalem]] in [[1180]], and so gained a claim to the kingdom of Jerusalem.
111948
111949 Amalric was among those captured with his brother after the disastrous [[Battle of Hattin]] in [[1187]]. In [[1194]], on the death of Guy, he became [[Kingdom of Cyprus|King of Cyprus]] as Amalric I. By his first wife, Eschiva of Ibelin, he was the father of [[Hugh I of Cyprus]]. After Eschiva's death in [[1197]] he married [[Isabella of Jerusalem|Isabella]], the daughter of [[Amalric I of Jerusalem]] by his second marriage, and became [[kings of Jerusalem|King of Jerusalem]] in right of his wife in January, [[1198]].
111950
111951 In 1198 he was able to procure a five years' truce with the [[Muslim]]s, owing to the struggle between [[Saladin]]'s brothers and his sons for the inheritance of his territories. The truce was disturbed by raids on both sides, but in [[1204]] it was renewed for six years.
111952
111953 Amalric died of dysentery (allegedly brought on by &quot;a surfeit of white mullet&quot;) in 1205, just after his son Amalric and just before his wife. The kingdom of Cyprus passed to [[Hugh I of Cyprus|Hugh]], his son by Eschiva, while the [[kingdom of Jerusalem]] passed to [[Maria of Montferrat|Maria]], the daughter of Isabella by her previous marriage with [[Conrad of Montferrat]].
111954
111955 ==Wives and Children==
111956 His first wife was Eschiva of Ibelin, married in [[1174]]. They had six children:
111957 # Bourgogne (c. [[1178]] &amp;ndash; c. [[1210]]), married [[Raymond VI of Toulouse]] [[1193]], div. [[1194]], married Walter of MontbÊliard [[1197]]
111958 # Guy, died young
111959 # John, died young
111960 # [[Hugh I of Cyprus]] (c. [[1194]]&amp;ndash;[[1218]])
111961 # Helvis (c. [[1190]] &amp;ndash; c. [[1217]]), married c. 1205 Eudes of Dampiere, Lord of Chargey-le-Grey, div. [[1210]], married September 1210 [[Raymond-Roupen of Antioch]]
111962 # Alix, died young
111963
111964 His second wife was Isabella of Jerusalem, married January, 1198 in [[Akko|Acre]]. They had three children:
111965 # [[Sibylla of Lusignan]] ([[1198]]-[[1230]]), married King [[Leo II of Armenia]]
111966 # [[Melisende of Lusignan]] ([[1200]] &amp;ndash; aft. [[1249]]), married [[January 1]], [[1218]] [[Bohemund IV of Antioch]]
111967 # Amalric ([[1201]]&amp;ndash;[[February 2]], [[1205]], Acre)
111968
111969 {{start box}}
111970 {{succession box | title=[[Kingdom of Cyprus|King of Cyprus]] | before=[[Guy of Lusignan|Guy]] | after=[[Hugh I of Cyprus|Hugh I]] | years=1194&amp;ndash;1205}}
111971 {{succession box | title=[[King of Jerusalem]] | before=[[Isabella of Jerusalem|Isabella]] and [[Henry II of Champagne|Henry II]] | after=[[Maria of Montferrat|Maria]] | years=1197&amp;ndash;1205&lt;br /&gt;(with '''[[Isabella of Jerusalem|Isabella]]''')}}
111972 {{end box}}
111973
111974 ==References==
111975 *{{1911}}
111976
111977 [[Category:1145 births|{{{key}}}]]
111978 [[Category:1205 deaths|{{{key}}}]]
111979 [[Category:Kings of Jerusalem]]
111980 [[Category:Kings of Cyprus]]
111981 [[Category:Kings consort]]
111982
111983
111984 [[de:Amalrich I. (Zypern)]]
111985 [[fr:Amaury II de Lusignan]]
111986 [[pl:Amalryk II]]</text>
111987 </revision>
111988 </page>
111989 <page>
111990 <title>Anthemius of Tralles</title>
111991 <id>1873</id>
111992 <revision>
111993 <id>41523035</id>
111994 <timestamp>2006-02-27T22:53:13Z</timestamp>
111995 <contributor>
111996 <username>TigerShark</username>
111997 <id>161478</id>
111998 </contributor>
111999 <minor />
112000 <comment>Reverted edits by [[Special:Contributions/70.187.26.156|70.187.26.156]] ([[User talk:70.187.26.156|Talk]]) to last version by 147.145.40.43</comment>
112001 <text xml:space="preserve">{{cleanup-date|January 2006}}
112002
112003 '''Anthemius of Tralles''' (c. [[474]] - c. [[534]]) was professor of [[geometry]] at [[Constantinople]] and [[architect]], with [[Isidore of Miletus]], of [[Hagia Sophia]]. Anthemius came from an educated family; he was one of five brothers--the sons of Stephanus, a physician of Tralles--who were all more or less eminent in their respective departments. Dioscorus followed his father's profession in his native place; Alexander became at Rome one of the most celebrated medical men of his time; Olympius was deeply versed in Roman jurisprudence; and Metrodorus was one of the distinguished grammarians of the great Eastern capital.
112004
112005 He is known both a mathematician and an architect. As an architect he is best known for replacing the old church of [[Hagia Sophia]] at [[Constantinople]] in [[532]]; his daring plans for the church strikingly displayed at once his knowledge and his ignorance. His skills seem also to have extended to engineering for he is said to have been employed to repair flood defences at [[Daras]].
112006
112007 Anthemius had previously written a book on [[conic section]]s, excellent preparation for designing the elaborate vaulting of Hagia Sophia. He compiled a survey of mirror configurations in his work on remarkable mechanical devices which was known to certain of the Arab mathematicians such as [[Al-Haytham]].
112008
112009 There are a number of stories told about Anthemius, which we may not be able to ascertain for an indefinite amount of time. Regardless of the veracity, these might be the only clues available as to the character of Anthemius.
112010
112011 It is related of Anthemius that, having a quarrel with his next-door neighbour Zeno, he annoyed him in two ways. First, he made a number of leathern tubes the ends of which he contrived to fix among the joists and flooring of a fine upper-room in which Zeno entertained his friends, and then subjected it to a miniature earthquake by sending steam through the tubes. Secondly, he simulated thunder and lightning, the latter by flashing in Zeno's eyes an intolerable light from a slightly hollowed mirror.
112012
112013 Certain it is that he wrote a treatise on burning-glasses. A fragment of this was published under the title &amp;Pi;&amp;eta;&amp;rho;&amp;iota; &amp;pi;&amp;alpha;&amp;rho;&amp;alpha;&amp;delta;&amp;omicron;&amp;xi;&amp;omega;&amp;nu; &amp;mu;&amp;eta;&amp;chi;&amp;alpha;&amp;nu;&amp;eta;&amp;mu;&amp;alpha;&amp;tau;&amp;omega;&amp;nu; by L. Dupuy in 1777, and also appeared in 1786 in the forty-second volume of the ''Hist. de l'Acad. des Inscr''.; A. Westermann gave a revised edition of it in his &amp;Pi;&amp;alpha;&amp;rho;&amp;alpha;&amp;delta;&amp;omicron;&amp;xi;&amp;omicron;&amp;gamma;&amp;rho;&amp;alpha;&amp;phi;&amp;omicron;&amp;iota; (''Scriptores rerum mirabilium Graeci''), 1839. In the course of constructions for surfaces to reflect to one and the same point
112014 # all rays in whatever direction passing through another point,
112015 # a set of parallel rays,
112016 Anthemius assumes a property of an ellipse not found in Apollonius (the equality of the angles subtended at a focus by two tangents drawn from a point), and (having given the focus and a double ordinate) he uses the focus and directrix to obtain any number of points on a parabola--the first instance on record of the practical use of the directrix.
112017
112018 == References ==
112019 * Procopius, ''De Aedific''. i. 1
112020 * Agathias, ''Hist''. v. 6-9
112021 * Gibbon's ''Decline and Fall'', cap. xl.
112022 * {{1911}}
112023 * Biography in ''Dictionary of Scientific Biography'' (New York 1970-1990)
112024 * [[T L Heath]], ''A History of Greek Mathematics''(2 Vols.) (Oxford, 1921)
112025 * [[G L Huxley]], ''Anthemius of Tralles'' (Cambridge, Mass., 1959).
112026 [[Category:474 births]]
112027 [[Category:534 deaths]]
112028 [[Category:Byzantine mathematicians]]
112029 [[Category:Byzantine architects]]
112030 [[Category:5th century mathematicians]]
112031 [[Category:6th century mathematicians]]
112032
112033
112034 ==External links==
112035
112036 * {{MacTutor Biography|id=Anthemius}}
112037
112038 [[es:Antemio de Tralles]]
112039 [[fr:Anthemius de Tralles]]
112040 [[ja:トナãƒŦ゚ぎã‚ĸãƒŗテミã‚Ēã‚š]]
112041 [[pt:Antemio de Tralles]]</text>
112042 </revision>
112043 </page>
112044 <page>
112045 <title>Absalon</title>
112046 <id>1874</id>
112047 <revision>
112048 <id>34289838</id>
112049 <timestamp>2006-01-07T22:33:29Z</timestamp>
112050 <contributor>
112051 <username>YurikBot</username>
112052 <id>271058</id>
112053 </contributor>
112054 <minor />
112055 <comment>robot Modifying: de</comment>
112056 <text xml:space="preserve">'''Absalon''' (''c''. [[1128]]&amp;ndash;[[March 21]], [[1201]]) was a [[Denmark|Danish]] [[archbishop]] and statesman. He was the son of Asser Rig of Fjenneslev ([[Zealand]]), at whose castle he and his brother Esbjørn (Esbern) were brought up along with the young prince Valdemar, afterwards King [[Valdemar I of Denmark|Valdemar I]].
112057
112058 The Rigs were as pious and enlightened as they were rich. They founded the monastery of [[Sorø]] as a civilizing centre, and after giving Absalon the rudiments of a sound education at home, which included not only book-lore but every manly and martial exercise, they sent him to the schools of [[Paris]]. Absalon first appears in [[Saxo Grammaticus|Saxo]]'s Chronicle as a fellow-guest at [[Roskilde]], at the banquet given, in [[1157]], by King Sweyn to his rivals Canute and Valdemar. Both Absalon and Valdemar narrowly escaped assassination at the hands of their treacherous host on this occasion, but at length escaped to [[Jutland]], whither Sweyn followed them, but was defeated and slain at the [[battle of Grathe Heath]].
112059
112060 The same year (1158) which saw Valdemar ascend the Danish throne saw Absalon elected bishop of [[Roskilde]]. Henceforth Absalon was the chief counsellor of Valdemar, and the promoter of that imperial policy which, for three generations, was to give Denmark the dominion of the Baltic. Briefly, it was Absalon's intention to clear the northern sea of the Wendish pirates, who inhabited that portion of the Baltic [[littoral]] which was later called [[Pomerania]], and ravaged the Danish coasts so unmercifully that at the accession of Valdemar one-third of the realm of Denmark lay wasted and
112061 depopulated. The very existence of Denmark demanded the suppression and conversion of these stiff-necked pagan freebooters, and to this double task Absalon devoted the best part of his life.
112062
112063 The first expedition against the [[Wends]], conducted by Absalon in person, set out in [[1160]], but it was not till [[1168]] that the chief Wendish fortress, at Arkona in [[RÃŧgen]], containing the sanctuary of their god [[Svantovit]], was surrendered, the Wends agreeing to accept Danish suzerainty and the Christian religion at the same time. From Arkona Absalon proceeded by sea to Garz, in south RÃŧgen, the political capital of the Wends, and an all but impregnable stronghold. But the unexpected fall of Arkona had terrified the garrison, which surrendered unconditionally at the first appearance of the Danish ships. Absalon, with only Sweyn, bishop of [[Aarhus]], and twelve &quot;house carls,&quot; thereupon disembarked, passed between a double row of Wendish warriors, 6000 strong, along the narrow path winding among the morasses, to the gates of the fortress, and, proceeding to the temple of the seven-headed god [[Rugievit]], caused the idol to be hewn down, dragged forth and burnt. The whole population of Garz was then baptized, and Absalon laid the foundations of twelve churches in the isle of RÃŧgen. The destruction of
112064 this chief sally-port of the Wendish pirates enabled Absalon considerably to reduce the Danish fleet. But he continued to keep a watchful eye over the Baltic, and in [[1170]] destroyed another pirate stronghold, farther eastward, at Dievenow on the isle of [[Wolin]].
112065
112066 Absalon's last military exploit was the annihilation, off Strela ([[Stralsund]]), on Whit-Sunday [[1184]], of a Pomeranian fleet which had attacked Denmark's vassal, [[Jaromir of RÃŧgen]]. He was now but fifty-seven, but his strenuous life had aged him, and he was content to resign
112067 the command of fleets and armies to younger men, like Duke Valdemar, afterwards King [[Valdemar II of Denmark|Valdemar II]], and to confine himself to the administration of the empire which his genius had created.
112068
112069 In this sphere Absalon proved himself equally great. The aim of his policy was to free Denmark from the German yoke. It was contrary to his advice and warnings that Valdemar I rendered fealty to the emperor [[Frederick I, Holy Roman Emperor|Frederick Barbarossa]] at Dole in [[1162]]; and when, on the accession of [[Canute V of Denmark|Canute V]] in [[1182]], an imperial ambassador arrived at [[Roskilde]] to receive the homage of the new king, Absalon resolutely withstood him. &quot;Return to the emperor,&quot; cried he, &quot;and tell him that the king of Denmark will in no wise show him obedience or do him homage.&quot;
112070
112071 As the archpastor of Denmark Absalon also rendered his country inestimable services, building churches and monasteries, supporting international religious orders like the [[Cistercians]] and [[Augustinians]], founding schools and doing his utmost to promote civilization and enlightenment. It was he who held the first Danish Synod at [[Lund]] in [[1167]]. In [[1178]] he became archbishop of [[Lund]], but very unwillingly, only the threat of excommunication from the holy see finally inducing him to accept the pallium. Absalon died in [[1201]] at the family monastery of Sorø, which he himself had richly embellished and endowed.
112072
112073 Absalon remains one of the most striking and picturesque figures of the [[Middle Ages]], and was equally great as churchman, statesman and warrior. That he enjoyed warfare there can be no doubt; and his splendid physique and early training had well fitted him for martial exercises. He was the best rider in the army and the best swimmer in the fleet. Yet he was not like the ordinary fighting bishops of the Middle Ages, whose sole concession to their sacred calling was to avoid the &quot;shedding of blood&quot; by using a mace in battle instead of a sword. Absalon never neglected his ecclesiastical duties, and even his wars were of the nature of Crusades. Moreover, all his martial energy notwithstanding, his personality must have been singularly winning; for it is said of him that he left behind not a single enemy, all his opponents having long since been converted by him into friends.
112074
112075 See Saxo, ''[[Gesta Danorum]],'' ed. Holder (Strassburg, 1886), books xvi.; Steenstrup, ''Danmarks Riges Historie. Oldtiden og den ÃĻldre Middelalder,'' pp. 570-735 (Copenhagen, 1897-1905).
112076
112077 Absalon's Testamentum, in [[Jacques Paul Migne|Migne]], ''[[Patrologia Latina]]'' 209,18.
112078
112079 ''Absalon'' is also a variant form of the (otherwise unrelated) name [[Absalom]]. This variant spelling is best known from the title of the musical work [[Absalon fili mi]].
112080
112081 ==References==
112082 *{{1911}}
112083
112084 [[Category:1201 deaths]]
112085 [[Category:Archbishops and bishops of Lund]]
112086
112087 [[da:Absalon]]
112088 [[de:Absalon von Lund]]
112089 [[nl:Absalon]]
112090 [[pl:Absalon (biskup duński)]]
112091 [[sv:Absalon Hvide]]</text>
112092 </revision>
112093 </page>
112094 <page>
112095 <title>Adhemar of Le Puy</title>
112096 <id>1875</id>
112097 <revision>
112098 <id>40359314</id>
112099 <timestamp>2006-02-20T01:17:43Z</timestamp>
112100 <contributor>
112101 <username>Rich Farmbrough</username>
112102 <id>82835</id>
112103 </contributor>
112104 <minor />
112105 <comment>External links per MoS.</comment>
112106 <text xml:space="preserve">'''Adhemar''' (also known as '''AdÊmar''', '''Aimar''', or '''Aelarz''') '''de Monteil''' (d. [[August 1]], [[1098]]), one of the principal personages of the [[First Crusade]], was bishop of [[Puy-en-Velay]] from before [[1087]].
112107
112108 At the [[Council of Clermont]] in [[1095]], Adhemar showed great zeal for the crusade (there is evidence Urban II had conferred with Adhemar before the council) and having been named [[apostolic legate]] and appointed to lead the crusade by [[Pope Urban II]], he accompanied [[Raymond IV of Toulouse|Raymond IV]], [[count of Toulouse]], to the east. Whilst Raymond and the other leaders often conflicted with each other over the leadership of the crusade, Adhemar was always recognised as the spiritual leader of the crusade.
112109
112110 Adhemar negotiated with [[Alexius I Comnenus]] at [[Constantinople]], reestablished at [[Nicaea]] some discipline among the crusaders, fought a crucial role at the battle of Dorylaeum and was largely responsible for sustaining morale during the [[siege of Antioch]] through various religious rites including fasting and special observances of holy days. After the capture of [[Antioch|the city]] in June, [[1098]], and the subsequent siege led by [[Kerbogha]], Adhemar organized a procession through the streets, and had the gates locked so that the Crusaders, many of whom had begun to panic, would be unable to desert the city. He was extremely skeptical of [[Peter Bartholomew]]'s discovery in Antioch of the [[Holy Lance]], especially because he knew such a relic already existed in Constantinople; however, he was willing to let the Crusader army believe it was real if it raised their morale.
112111
112112 When Kerbogha was defeated, Adhemar organized a council in an attempt to settle the leadership disputes, but he died on August 1, 1098, probably of [[typhus]]. The disputes among the higher nobles went unsolved, and the march to [[Jerusalem]] was delayed for months. However, the lower-class foot soldiers continued to think of Adhemar as a leader; some of them claimed to have been visited by his ghost during the [[siege of Jerusalem (1099)|siege of Jerusalem]], and reported that Adhemar instructed them to hold another procession around the walls. This was done, and Jerusalem was taken by the Crusaders in [[1099]].
112113
112114 ==External links==
112115 *[http://www.fordham.edu/halsall/source/urban2-5vers.html Urban's letter of December 1095 appointing Adhemar]
112116
112117 ==References==
112118 *{{1911}}
112119
112120 [[Category:Crusades]]
112121 [[Category:Roman Catholic bishops]]
112122 [[Category:1098 deaths|Adhemar of Le Puy]]
112123
112124 [[de:Adhemar de Monteil]][[nl:Adhemar van Monteil]][[fr:AdhÊmar de Monteil]]
112125 [[it:Ademaro di Monteil]]
112126 [[pl:Ademar z Monteil]]</text>
112127 </revision>
112128 </page>
112129 <page>
112130 <title>Adhemar de Chabannes</title>
112131 <id>1876</id>
112132 <revision>
112133 <id>15900338</id>
112134 <timestamp>2004-06-10T12:47:45Z</timestamp>
112135 <contributor>
112136 <username>Olivier</username>
112137 <id>3808</id>
112138 </contributor>
112139 <comment>redir after merger of 2 articles</comment>
112140 <text xml:space="preserve">#Redirect [[AdÊmar de Chabannes]]</text>
112141 </revision>
112142 </page>
112143 <page>
112144 <title>Albigenses</title>
112145 <id>1877</id>
112146 <revision>
112147 <id>30064977</id>
112148 <timestamp>2005-12-04T01:18:05Z</timestamp>
112149 <contributor>
112150 <username>Tom harrison</username>
112151 <id>42168</id>
112152 </contributor>
112153 <comment>redirect to albigensians</comment>
112154 <text xml:space="preserve">#redirect [[Albigensians]]</text>
112155 </revision>
112156 </page>
112157 <page>
112158 <title>Alphonse of Toulouse</title>
112159 <id>1878</id>
112160 <revision>
112161 <id>37515239</id>
112162 <timestamp>2006-01-31T14:04:24Z</timestamp>
112163 <contributor>
112164 <username>Charles Matthews</username>
112165 <id>12978</id>
112166 </contributor>
112167 <minor />
112168 <comment>/* References */ wfy</comment>
112169 <text xml:space="preserve">{{Template:Direct Capetians}}
112170 [[fi:Alphonse (Toulouse]]
112171 [[fr:Alphonse de Poitiers]]
112172
112173 '''Alphonse, [[Counts of Toulouse|Count of Toulouse]] and [[Count of Poitiers|of Poitiers]]''' ([[November 11]], [[1220]] &amp;ndash; [[August 21]], [[1271]]).
112174
112175 [[Image:Blason Alphonse Poitiers.png|thumb|100px|left|Coat of arms of Alphonse: Per pale azure semÊ-de-lis or (France ancient) dimidiating gules semÊ of castles or (Castile)]]
112176
112177 Alphonse was a son of [[Louis VIII of France|Louis VIII]], [[King of France]] and [[Blanche of Castile]]. He was a younger brother of [[Louis IX of France]] and an older brother of [[Charles I of Sicily]].
112178
112179 He joined the county of [[Toulouse]] to his ''[[appanage]]'' of [[Poitou]] and [[Rulers of Auvergne|Auvergne]], on the death, in September [[1249]], of [[Raymond VII of Toulouse]], whose daughter [[Joan of Toulouse]] Alphonse had married in [[1237]]. He took part in two crusades with his brother, St Louis, in [[1248]] (the [[Seventh Crusade]]) and in [[1270]] (the [[Eighth Crusade]]).
112180
112181 In [[1252]], on the death of his mother, Blanche of Castile, he was joint regent with [[Charles of Anjou]] until the return of Louis IX. During that time he took a great part in the negotiations which led to the [[Treaty of Paris (1259)|Treaty of Paris]] in [[1259]], under which King [[Henry III of England]] recognized his loss of continental territory to [[France]] (including [[Normandy]], [[Maine (province of France)|Maine]], [[Anjou]], and [[Poitou]]) in exchange for France withdrawing support from English rebels.
112182
112183 His main work was on his own estates. There he repaired the evils of the [[Albigensian Crusade|Albigensian war]] and made a first attempt at administrative centralization, thus preparing the way for union with the crown. The charter known as &quot;Alphonsine,&quot; granted to the town of [[Riom]], became the code of public law for [[Auvergne (province)|Auvergne]]. Honest and moderate, protecting the middle classes against exactions of the nobles, he exercised a happy influence upon the south, in spite of his naturally despotic character and his continual and pressing need of money. He is noted for ordering the first recorded local expulsion of [[Jew]]s, when he did so in Poitou in [[1249]].
112184
112185 He died without heirs on his return from the [[Eighth Crusade]], in [[Italy]], probably at [[Savona]], on [[August 21]], 1271. As part of his [[bequest]], he left his lands in the [[Comtat Venaissin]] to the [[Holy See]] and it became a [[Papal States|Papal territory]] in [[1274]], a status that it retained until [[1791]].
112186
112187 ==References==
112188 * [[B. Ledain]], ''Histoire d'Alphonse, frère de S. Louis et du comte de Poitou sous son administration (1241-1271)'' (Poitou, 1869)
112189 * [[E. Bourarie]], ''Saint Louis et Alphonse de Poitiers'' (Paris, 1870)
112190 * [[A. Molinier]], ''Etude sur l'administration de S. Louis et d'Alphonse de Poitiers'' (Toulouse, 1880)
112191 * * A. Molinier, ''Correspondance administrative d'Alphonse de Poitiers'' in the ''Collection de documents inedits pour servir à l'histoire de France'' (Paris, 1894 and 1895).
112192 *http://www.davidsconsultants.com/jewishhistory/history.php?startyear=1240&amp;endyear=1249 (Retrieved February 16, 2005)
112193
112194 ==External links==
112195 *[http://www.briantimms.com/rolls/WalfordsC1.html Coat of Arms in the Walford Roll]
112196
112197 {{start box}}
112198 {{succession box two to one | before1=&amp;mdash; | title1=[[Count of Poitiers]] | years1=1225&amp;ndash;1271 | after=''to royal domain'' | before2=[[Raymond VII of Toulouse|Raymond VII]] | title2=[[Count of Toulouse]] | years2=1249&amp;ndash;1271&lt;br&gt;''with [[Joan of Toulouse|Joan]]''}}
112199 {{end box}}
112200
112201 {{1911}}
112202
112203 [[Category:1220 births]]
112204 [[Category:1271 deaths]]
112205 [[Category:Counts of Toulouse|Alphonse II]]
112206 [[Category:French nobility|Toulouse, Alphonse of]]</text>
112207 </revision>
112208 </page>
112209 <page>
112210 <title>Alphonse I of Toulouse</title>
112211 <id>1879</id>
112212 <revision>
112213 <id>40581250</id>
112214 <timestamp>2006-02-21T16:28:41Z</timestamp>
112215 <contributor>
112216 <username>Adam Bishop</username>
112217 <id>13008</id>
112218 </contributor>
112219 <comment>disambig</comment>
112220 <text xml:space="preserve">[[fr:Alphonse Jourdain]]
112221 '''Alphonse I''' ([[1103]]&amp;ndash;[[1148]]), [[Counts of Toulouse|Count of Toulouse]], son of Count [[Raymond of Toulouse|Raymond IV]] by his third wife, [[Elvira of Castile]], was born in the castle of [[Mont-Pelerin]], [[Tripoli, Lebanon|Tripoli]], in today's [[Lebanon]]. He was born while his father was on crusade, attempting to create the [[County of Tripoli]] on the Palestinian coast. He was surnamed ''Jourdain'' after being [[baptized]] in the [[Jordan River]].
112222
112223 His father died when he was two years old and he remained under the guardianship of his cousin, [[Guillaume Jourdain]], count of [[Cerdagne]] (d. [[1109]]), until he was five. He was then taken to [[Europe]] and his brother [[Bertrand of Toulouse|Bertrand]] gave him the countship of [[Rouergue]]. In his tenth year, upon Bertrand's death ([[1112]]), he succeeded to the countship of Toulouse and marquisate of [[Provence]], but Toulouse was taken from him by [[William IX of Aquitaine|William IX]], [[count of Poitiers]], in [[1114]], who claimed it by right of his wife Philippa of Toulouse, daughter of William IV of Toulouse. He recovered a part in [[1119]], but continued to fight for his possessions until about [[1123]]. When at last successful, he was [[excommunication|excommunicated]] by [[Pope Callixtus II]] for having expelled the monks of [[Saint-Gilles]], who had aided his enemies.
112224
112225 He next fought for the sovereignty of Provence against [[Ramon Berenguer III, Count of Barcelona|Raymond Berenger III]], and not till September [[1125]] did the war end in an amicable agreement. Under it Jourdain became absolute master of the regions lying between the [[Pyrenees]] and the [[Alps]], [[Auvergne (province)|Auvergne]] and the sea. His ascendancy was an unmixed good to the country, for during a period of fourteen years art and industry flourished. About [[1134]] he seized the countship of [[Narbonne]], only restoring it to the Viscountess [[Ermengarde of Narbonne|Ermengarde]] (d. [[1197]]) in [[1143]]. The claim of the now deceased Philippa of Toulouse was pressed again when [[Louis VII of France|Louis VII]] besieged Toulouse in [[1141]], in right of his wife [[Eleanor of Aquitaine]], the grandaughter of Philippa, but without result.
112226
112227 Next year Jourdain again incurred the displeasure of the church by siding with the rebels of [[Montpellier]] against their lord. A second time he was excommunicated; but in [[1146]] he took the cross at the meeting of [[Vezelay]] called by Louis VII, and in [[August]], [[1147]] embarked for the East in the [[Second Crusade]]. He lingered on the way in [[Italy]] and probably in [[Constantinople]]. Alphonse might have met [[Eastern Roman Emperor]] [[Manuel I Comnenus]] during his visit there.
112228
112229 But in [[1148]] Alphonse had finally arrived at [[Acre, Palestine|Acre]]. Among his companions he had made enemies and he was destined to take no share in the crusade he had joined. He was poisoned at [[Caesarea]], either by [[Eleanor of Aquitaine]], the wife of Louis, or [[Melisende of Jerusalem|Melisende]], the mother of [[Baldwin III of Jerusalem|Baldwin III]], [[Kingdom of Jerusalem|king of Jerusalem]] suggesting the draught.
112230
112231 {{start box}}
112232 {{succession box|before=[[Raymond of Toulouse|Raymond]]|years=1105&amp;ndash;1109&lt;br&gt;(regent&amp;nbsp;[[William-Jordan]])|title=[[County of Tripoli|Count of Tripoli]]|after=[[Bertrand of Toulouse|Bertrand]]}}
112233 {{succession box|before=[[Bertrand of Toulouse|Bertrand]]|years=1112&amp;ndash;1148|title=[[Counts of Toulouse|Count of Toulouse]]|after=[[Raymond V of Toulouse|Raymond V]]}}
112234 {{end box}}
112235
112236 ==References==
112237 *{{1911}}
112238
112239 [[Category:1103 births]]
112240 [[Category:1148 deaths]]
112241 [[Category:Counts of Tripoli]]
112242 [[Category:Counts of Toulouse]]
112243 [[de:Alfons I. (Toulouse)]]
112244 [[pl:Alfons I z Tuluzy]]</text>
112245 </revision>
112246 </page>
112247 <page>
112248 <title>Ambrose the poet</title>
112249 <id>1880</id>
112250 <revision>
112251 <id>32444069</id>
112252 <timestamp>2005-12-23T03:54:18Z</timestamp>
112253 <contributor>
112254 <username>Adam Bishop</username>
112255 <id>13008</id>
112256 </contributor>
112257 <comment>link MGH</comment>
112258 <text xml:space="preserve">'''Ambrose''' (around [[1190]]), [[Normans|Norman]] [[poet]], and chronicler of the [[Third Crusade]], [[author]] of a work called ''L'Estoire de la guerre sainte'', which describes in rhyming [[Old French language|French]] [[verse]] the adventures of [[Richard I of England|Richard Coeur de Lion]] as a [[crusader]]. The poem is known to us only through one [[Vatican Library|Vatican]] [[manuscript]], and long escaped the notice of [[historian]]s.
112259
112260 The credit for detecting its value belongs to the late [[Gaston Paris]], although his edition ([[1897]]) was partially anticipated by the editors of the ''[[Monumenta Germaniae Historica]]'', who published some selections in the twenty-seventh volume of their Scriptores ([[1885]]).
112261
112262 Ambrose followed Richard I as a [[noncombatant]], and not improbably as a court-[[minstrel]]. He speaks as an eye-witness of the king's doings at [[Messina, Italy|Messina]], in [[Cyprus]], at the [[siege of Acre]], and in the abortive campaign which followed the capture of that city.
112263
112264 Ambrose is surprisingly accurate in his [[chronology]]; though he did not complete his work before [[1195]], it is evidently founded upon notes which he had taken in the course of his [[pilgrimage]]. He shows no greater [[politics|political]] insight than we should expect from his position; but relates what he had seen and heard with a naïve vivacity which compels attention. He is prejudiced against the [[Saracens]], against the [[France|French]], and against all the rivals or enemies of his master; but he is never guilty of deliberate misrepresentation. He is rather to be treated as a [[biographer]] than as a historian of the Crusade in its broader aspects. None the less he is the chief authority for the events of the years 1190-1192, so far as these are connected with
112265 the [[Holy Land]].
112266
112267 The ''Itinerarium Regis Ricardi'' (formerly attributed to [[Geoffrey Vinsauf]], but in reality the work of Richard, a canon of Holy Trinity, London) is little more than a free paraphrase of Ambrose. The first book of the Itinerarium contains some additional facts; and the whole of the [[Latin]] version is adorned with dowers of [[rhetoric]] which are foreign to the style of Ambrose. But it is no longer possible to regard the Itinerarium as a first-hand [[narrative]]. [[William Stubbs|Stubbs]]'s edition of the Itinerarium ([[Rolls Series]], 1864), in which the contrary [[hypothesis]] is maintained, appeared before Gaston Paris published his discovery.
112268
112269 ==See also==
112270 *[[Anglo-Norman literature]]
112271 *[[Norman language]]
112272
112273 ==References==
112274 *{{1911}}
112275
112276 [[Category:Crusade literature]]</text>
112277 </revision>
112278 </page>
112279 <page>
112280 <title>Art Deco</title>
112281 <id>1881</id>
112282 <revision>
112283 <id>41928639</id>
112284 <timestamp>2006-03-02T18:08:58Z</timestamp>
112285 <contributor>
112286 <username>Toksook</username>
112287 <id>690292</id>
112288 </contributor>
112289 <text xml:space="preserve">[[Image:Stamp-ctc-art-deco.jpg|thumb|The Art Deco spire of the [[Chrysler Building]], built 1928-1930, commemorated on a US stamp]]
112290
112291 '''Art Deco''' ([[French (language)|French]]: ''Exposition Internationale des '''Art'''s '''DÊco'''ratifs et Industriels Modernes'') was an early twentieth century movement in the [[decorative art]]s, that also grew in influence to affect [[architecture]], [[fashion]] and the [[visual arts]].
112292
112293 ==Overview==
112294
112295 Art Deco derived its name from the [[World's fair]] held in [[Paris]] in [[1925]], formally titled the [[Exposition Internationale des Arts DÊcoratifs et Industriels Modernes]], which showcased French luxury goods and reassured the world that Paris remained the international center of style after [[World War I]]. Art Deco did not originate with the Exposition; it was a major style in [[Europe]] from the early [[1920s]], though it did not catch on in the [[United States|U.S.]] until about [[1928]], when it quickly modulated into the [[Streamline Moderne]] during the [[1930s]], the decade with which Americanized Art Deco is most strongly associated today.
112296
112297 Paris remained the center of the high end of Art Deco design, epitomized in furniture by [[Jacques-Emile Ruhlmann]], the best-known of Art Deco furniture designers and perhaps the last of the traditional Parisian ''ÊbÊnistes'', and [[Jean-Jacques Rateau]], the firm of [[SÃŧe et Mare]], the screens of [[Eileen Gray]], wrought iron of [[Edgar Brandt]], metalwork and lacquer of Swiss-Jewish [[Jean Dunand]], the glass of [[RenÊ Lalique]] and [[Maurice Marinot]], clocks and jewelry by [[Cartier SA|Cartier]].
112298
112299 The term '''Art Deco''' was coined during the Exposition of 1925 but did not receive wider usage until it was re-evaluated in the [[1960s]]. Its practitioners were not working as a coherent community. It is considered to be eclectic, being influenced by a variety of sources, to name a few:
112300
112301 *Early work from the [[Wiener Werkstätte]]; functional industrial design
112302 *&quot;Primitive&quot; arts of Africa, Egypt, or Aztec Mexico
112303 *Ancient Greek sculpture and pottery design of the less naturalistic &quot;[[Archaic_period_in_Greece|archaic period]]&quot;
112304 *[[LÊon Bakst]]'s sets and costumes for [[Diaghilev]]'s ''[[Ballets Russes]]''
112305 *Fractionated, crystalline, facetted form of decorative [[Cubism]] and [[Futurism (art)|Futurism]]
112306 *[[Fauvism|Fauve]] color palette
112307 *Severe forms of [[Neoclassicism]]: BoullÊe, Schinkel
112308 *Everything associated with Jazz, [[Jazz Age]] or &quot;jazzy&quot;
112309 *Animal motifs and forms; tropical foliage; [[ziggurat|ziggurats]]; crystals; &quot;sunbursts&quot;; stylized fountain motifs
112310 *Lithe athletic &quot;modern&quot; female forms; flappers' bobbed haircuts
112311 *[[Streamline_Moderne|Machine age]] technology such as the [[radio]] and [[skyscraper]].
112312
112313 [[Image:Asheville_City_Hall.jpg|thumb|[[Asheville, North Carolina]] City Hall, 1926&amp;ndash;1928 epitomizes the American [[Art Deco]] style.]]
112314
112315 Corresponding to these influences, the Art Deco is characterised by use of materials such as [[aluminium]], [[stainless steel]], lacquer, inlaid wood, sharkskin, and zebraskin. The bold use of zigzag and stepped forms, and sweeping curves (unlike the sinuous curves of the [[Art nouveau]]), [[Chevron (insignia)|chevron]] patterns, and the [[sunburst]] motif. Some of these motifs were ubiquitous — for example the sunburst motif was used in such varied contexts as a lady's shoe, a radiator grille, the auditorium of the [[Radio City Music Hall]] and the spire of the [[Chrysler Building]].
112316 Art Deco was an opulent style and this opulence is attributed as a reaction to the forced austerity during the years of World War I.
112317 Art Deco was a popular style for interiors of cinema theatres and [[ocean liner]]s such as the [[SS Ile de France|''Ile de France'']] and [[SS Normandie|''Normandie'']].
112318
112319 A parallel movement following close behind, the [[Streamline]] or [[Streamline Moderne]], was influenced by manufacturing and streamlining techniques arising from science and the mass production shape of bullet, liners, etc., where aerodynamics are involved. Once the Chrysler Air-Flo design of [[1933]] was successful, &quot;streamlined&quot; forms began to be used even for objects such as pencil sharpeners and refrigerators.
112320 In architecture, this style was characterised by rounded corners, used predominantly for buildings at road junctions.
112321
112322 Some historians see Art Deco as a type of or early form of [[Modernism]].
112323
112324 Art Deco slowly lost patronage in the West after reaching mass production, where it began to be derided as gaudy and presenting a false image of luxury. Eventually the style was cut short by the austerities of [[World War II]]. In colonial countries such as India, it became a gateway for Modernism and continued to be used well into the 1960s. A resurgence of interest in Art Deco came with graphic design in the 1980s, where its association with [[film noir]] and 1930s glamour led to its use in ads for jewelry and fashion. This is still the image of Art Deco held in the minds of most Americans.
112325
112326
112327 ==Noted Art Deco artists and designers==
112328 [[Image:Maurice_Ascalon_Art_Deco.jpg|right|156px|thumb|Vintage catalogue image of Art Deco metalwork designed by [[Maurice Ascalon]] and manufactured by his Pal-Bell Company.]]
112329 *[[Maurice Ascalon]]
112330 *[[Adolphe Mouron Cassandre]]
112331 *[[Jean Dunand]]
112332 *[[Jean Dupas]]
112333 *[[Romain de Tirtoff|ErtÊ]] ([[Romain de Tirtoff]]) (1892-1990)
112334 *[[Aleksandra Ekster|Alexandra Exter]]
112335 *[[Eileen Gray]]
112336 *[[Georg Jensen]]
112337 *[[RenÊ Lalique]]
112338 *[[Jules Leleu]]
112339 *[[Oscar Bach]]
112340 *[[Joseph Kiselewski]]
112341 *[[Tamara de Lempicka]]
112342 *[[Paul Manship]]
112343 *[[Émile-Jacques Ruhlmann]]
112344 *[[Sue et Mar]]
112345 *[[Walter Dorwin Teague]]
112346 *[[Carl Paul Jennewein]]
112347
112348 ==Noted Art Deco architects==
112349
112350 *[[Pablo Antonio]]
112351 *[[George Coles]]
112352 *[[Ernest Cormier]]
112353 *[[Banister Fletcher|Banister Flight Fletcher]]
112354 *[[Oliver Hill]]
112355 *[[Charles Holden]]
112356 *[[Raymond Hood]]
112357 *[[Ely Jacques Kahn]]
112358 *[[Henry Vaughan Lanchester]]
112359 *[[Edwin Lutyens]]
112360 *[[James McKissack]]
112361 *[[George Val Myer]]
112362 *[[William van Alen]]
112363 *[[Wirt C. Rowland]]
112364 *[[Giles Gilbert Scott]]
112365 *[[Clifford Strange]]
112366 *[[Joseph Sunlight]]
112367 *[[Ralph Walker]]
112368 *[[Wallis, Gilbert and Partners|Thomas Wallis]]
112369 *[[Ernest A. Williams]]
112370 *[[Owen Williams]]
112371
112372 ==Noted Art Deco designs==
112373 [[Image:Carbon_jc01.jpg|right|156px|thumb|Chicago's Carbon and Carbide Building]]
112374 [[Image:Supreme Court of Canada.jpg|right|230px|thumb|The Supreme Court Building in Ottawa, Canada]]
112375 [[Image:Nicanor reyes hall.jpg|right|thumb|230px|Far Eastern University Campus in downtown Manila, Philippines]]
112376 [[Image:IMG 0175.JPG|thumb|right|230px|The North Building of the Peace Hotel in Shanghai, China]]
112377 *The [[Argyle Hotel]] in [[Los Angeles]], [[California]]
112378 * The Bullock's Wilshire Building in [[Los Angeles]], [[California]] (now home to Southwestern University School of Law)
112379 *[[Empire State Building]]
112380 *[[Chrysler Building]]
112381 *[[Fair Park|Dallas Fair Park]] [[Hall of State]]
112382 *[[Golden Gate Bridge]]
112383 *[[Fisher Building]] in [[Detroit, Michigan|Detroit]]
112384 *[[Guardian Building]] in [[Detroit, Michigan|Detroit]]
112385 *The [[Mapes Hotel]] in [[Reno, Nevada]]
112386 *[[Peace Hotel]] in [[Shanghai]]
112387 *[[Buffalo City Hall]] in [[Buffalo, New York]]
112388 *[[Asmara]], the [[capital city]] of [[Eritrea]]
112389 * The [[ocean liner]]s [[SS Ile de France|''Ile de France'']], [[SS Normandie|''Normandie'']] and [[RMS Queen Mary]]
112390 * The [[Montreal Eaton 9th floor restaurant]] is a copy of the huge ''SS Ile de France'' first class dining room
112391 *[[Napier, New Zealand]] - In 1931 the city of Napier was levelled by the [[Napier earthquake]] and ensuing fires. The city was rebuilt in the Art Deco style.
112392 * The [[Hoover Building]], Perivale, London
112393 * The former [[Byrant and May]] match factory in [[Speke]], [[Liverpool]].
112394 * The [[India of Inchinnan]] office block, [[Inchinnan]], [[Renfrewshire]], [[Scotland]]
112395 *[[Anzac War Memorial]], [[Sydney]] built 1929-34 designed [[C Bruce Dellit]] (1900-1942), Sculptor: [[Rayner Hoff]].
112396 * [[Radio City Music Hall]]
112397 * [[UniversitÊ de MontrÊal]] central building
112398 * [[Supreme Court of Canada]] in [[Ottawa]]
112399 * [[Marine Building]] in [[Vancouver]]
112400 * The East and West Stands at [[Arsenal Stadium]] in [[London]]
112401 * [[Eltham Palace]] extension, south-east London
112402 * The [[Colleen Moore]] Dollhouse at the [[Chicago, Illinois|Chicago]] [[Museum of Science and Industry in Chicago|Museum of Science and Industry]]
112403 * [[Boston Avenue Methodist Church]] in [[Tulsa]], [[Oklahoma]]. Designed by [[Bruce Goff]].
112404 *The city hall of [[Asheville]], [[North Carolina]], built 1926 - 28 [http://www.ci.asheville.nc.us/commune/history.htm].
112405 * The [[Cincinnati Museum Center at Union Terminal]] in [[Cincinnati]], [[Ohio]].
112406 *[[Waterman pens|Waterman]] [[Waterman Phileas|Phileas]] [[fountain pen]]
112407 *[[Chicago, Illinois|Chicago]], [[Illinois]]
112408 **[[Chicago Board of Trade Building]]
112409 **[[Carbon and Carbide Building]]
112410 *720 and 730 Fort Washington Avenue, in the [[Hudson Heights, Manhattan|Hudson Heights]] area of [[Manhattan]] in [[New York City]], [[New York]].
112411 *[[South Beach]] in [[Miami Beach, Florida|Miami Beach]], [[Florida]].
112412 *Former [[Pennsylvania Railroad]] [[30th Street Station]] and [[Suburban Station]] in [[Philadelphia, Pennsylvania]]
112413 *[[Far Eastern University|Far Eastern University Campus]] in the [[Manila|City of Manila]], Philippines
112414 * The [[Price Building]] (aka [[Édifice Price]]), Quebec City, Quebec, Canada, home to the Hotel Clarendon. The top floor is where the premier of Quebec stays while in the capital city. Originally built by Price Brothers (paper industry).
112415
112416 ==External links==
112417 *[http://www.vam.ac.uk/vastatic/microsites/1157_art_deco/resources/ V &amp; A Art Deco exhibition, 2003]
112418 *[http://www.artdecoworld.com/gallery03.htm Article on Anzac Memorial with photos]
112419 *[http://www.ci.chi.il.us/Landmarks/Tours/ArtDeco.html Art Deco architecture tour of Chicago landmarks]
112420 *[http://www.decopix.com large collection of photographic examples]
112421
112422 ==Further reading==
112423 * Duncan, Alastair. ''Art Deco Furniture: The French Designers'', Thames and Hudson, 1984. ISBN 0500234124
112424
112425 {{Westernart}}
112426 [[Category:Art Deco|*Art Deco]]
112427
112428 [[de:Art DÊco]]
112429 [[es:Art decÃŗ]]
112430 [[fa:ØĸØąØĒ دڊŲˆ]]
112431 [[fr:Art dÊco]]
112432 [[he:ארט דקו]]
112433 [[it:Art DecÃ˛]]
112434 [[nl:Art Deco]]
112435 [[ja:ã‚ĸãƒŧãƒĢãƒģデã‚ŗ]]
112436 [[ka:არáƒĸ-დეკო]]
112437 [[no:Art deco]]
112438 [[pl:Art dÊco]]
112439 [[pt:Art DÊco]]
112440 [[ro:Art Deco]]
112441 [[sv:Art dÊco]]
112442 [[zh:čŖ…éĨ°č‰ē术čŋåŠ¨]]</text>
112443 </revision>
112444 </page>
112445 <page>
112446 <title>ASCII art</title>
112447 <id>1884</id>
112448 <revision>
112449 <id>42109434</id>
112450 <timestamp>2006-03-03T22:03:05Z</timestamp>
112451 <contributor>
112452 <ip>82.33.121.92</ip>
112453 </contributor>
112454 <comment>/* Types and examples of ASCII art */</comment>
112455 <text xml:space="preserve">{| align=right
112456 | &lt;pre&gt;&lt;nowiki&gt;
112457 _ ____ ____ ___ ___ _
112458 /_\ / ___| / ___|_ _|_ _| __ _ _ __| |_
112459 //_\\ \___ \| | | | | | / _` | '__| __|
112460 / ___ \ ___) | |___ | | | | | (_| | | | |_
112461 /_/ \_\____/ \____|___|___| \__,_|_| \__|
112462 &lt;/nowiki&gt;&lt;/pre&gt;
112463 |}
112464
112465 '''ASCII art''', an artistic medium relying primarily on [[computer]]s for presentation, consists of pictures pieced together from the 95 printable [[character (computing)|characters]] defined by [[ASCII]]. The term is also used more loosely to refer to [[#Other text based art|text based art in general]]. They can be created with any [[text editor]], and are often used with [[free-form language]]s. Most examples of ASCII [[art]] require a [[typeface#Proportion|fixed-width font]] (non-proportional [[typeface|fonts]], like on a traditional [[typewriter]]) such as [[Courier (font)|Courier]] for presentation.
112466
112467 ASCII art is used wherever text can be more readily printed or transmitted than graphics, or in some cases, where the transmission of pictures is not possible. This includes typewriters, [[teletype]]s, non-graphic [[computer terminal]]s, in early [[computer network]]ing (e.g., [[bulletin board system|BBSes]]), [[e-mail]], and [[Usenet]] news messages. ASCII art is also used within the [[source code]] of computer programs for representation of company or product logos, and flow control or other diagrams. In some cases, the entire source code of a program is a piece of ASCII art - for instance, an entry to one of the earlier [[International Obfuscated C Code Contest]] is a program that adds numbers, but visually looks like a binary adder drawn in logic ports. Taking the medium to extremes, there exists a video driver for the popular video game ''[[Quake]]'' that displays the game in ASCII art. ASCII art is also very commonly used amongst software piracy groups to display group logos inside text (*.nfo) files containing the instructions for installing and cracking the software (though these commonly use PC text mode characters as well as just ASCII).
112468
112469 Pop artist [[Beck]] has a music video &quot;Black Tambourine&quot; made up entirely of ASCII characters that approximate the original footage.
112470
112471 ''Animated ASCII art'' is possible by embedding video terminal escape sequences such as ANSI X3.64 for cursor movement into the &quot;picture&quot;.
112472
112473 ==Types and examples of ASCII art==
112474 The simplest forms of ASCII art are combinations of two or three characters for expressing emotion in text. They are commonly referred to as '[[emoticon]]', 'smilie', or 'smiley'. Mentally rotate these examples 90 degrees clockwise for a more recognizable orientation:
112475 {|-
112476 |-
112477 |&lt;pre&gt;
112478 :-) or :) :-( or :( ;-) or ;) :-P or :p &gt;:( :x
112479 smile frown wink tongue out mad sour
112480
112481 B-) or 8-) :-O or :O :-0 or :0 :-S or :S :D :?
112482 sunglasses shouting surprised confused laugh eh?
112483 &lt;/pre&gt;
112484 |}
112485 There is another type of one-line ASCII art that does not require the mental rotation of pictures, which is widely known in Japan as [[Emoticon#East Asian style|kaomoji]] (literally &quot;face characters&quot;.) Traditionally, they are referred to as &quot;ASCII face&quot;. Today, some call them &quot;verticons&quot;:
112486 {|-
112487 |-
112488 |
112489 &lt;pre&gt;
112490 (^_^) (-_-) (X_X)
112491 happy sad dead
112492
112493 \(^o^)/ (o.~) o&lt; d(O.O)b
112494 joyous winking conspiracy duck thumbs up
112495
112496 (b_d) &lt;(^_^&lt;) (&gt;^_^)&gt; &lt;(^_^&lt;) (&gt;^_^)&gt; (o_O) (O_o)
112497 glasses pointing / dancing eye stare
112498
112499 ^_^; (v_v) (~_~) ;_; (T_T)
112500 embarrassed sleeping/ crying
112501 ';' for sweatdrop downcast ',' for tears
112502
112503 &lt;/pre&gt;
112504 |}
112505
112506 More complex examples use several lines of text to draw large symbols or
112507 more complex figures. Some common examples:
112508 {|-
112509 |-
112510 |
112511 &lt;pre&gt;
112512 o o o o o &lt;o &lt;o&gt; o&gt; o
112513 .|. \|. \|/ // X \ | &lt;| &lt;|&gt; ASCII Macarena
112514 /\ &gt;\ /&lt; &gt;\ /&lt; &gt;\ /&lt; &gt;\ /&lt;
112515
112516 (__)
112517 (oo)
112518 /-------\/ __ O _ ,__o
112519 / | || /o)\ /|\ &gt;(o)__ _-\_&lt;,
112520 * ||----|| \(o/ / \ (_~_/ (*)/'(*)
112521 ~~ ~~ ~~~~~~~
112522 Bull Yin/Yang Person Rubber Duck Cyclist
112523
112524 ,-._,-. (|)
112525 \/)&quot;(\/ | |
112526 (_o_) | |
112527 | |
112528 Dog () ()
112529
112530 Tulip
112531
112532 &lt;/pre&gt;
112533 |}
112534
112535 A more intricate example of this depicts a building:
112536 {|-
112537 |-
112538 |&lt;pre&gt;
112539 .-.
112540 /___\ ||--------------.
112541 |___| ||.___TO_LET___.|
112542 |]_[| || asciihomes |
112543 / I \ || 555-1212 |
112544 JL/ | \JL ||______________|
112545 .-. i () | () i ||./ .-.
112546 |_| .^. /_\ LJ=======LJ /_\ ||/ .^. |_|
112547 ._/___\._./___\_._._._._.L_J_/.-. .-.\_L_J._._||._._/___\._./___\._._._
112548 ., |-,-| ., L_J |_| [I] |_| L_J ., |-,-| ., .,
112549 JL |-O-| JL L_J%%%%%%%%%%%%%%%L_J JL |-O-| JL JL
112550 IIIIII_HH_'-'-'_HH_IIIIII|_|=======H=======|_|IIIIII_HH_'-'-'_HH_IIIIII_HH_
112551 -------[]-------[]-------[_]----\.=I=./----[_]-------[]-------[]--------[]-
112552 _/\_ ||\\_I_//|| _/\_ [_] []_/_L_J_\_[] [_] _/\_ ||\\_I_//|| _/\_ ||\
112553 |__| ||=/_|_\=|| |__|_|_| _L_L_J_J_ |_|_|__| ||=/_|_\=|| |__| ||-
112554 |__| |||__|__||| |__[___]__--__===__--__[___]__| |||__|__||| |__| |||
112555 IIIIIII[_]IIIII[_]IIIIIL___J__II__|_|__II__L___JIIIII[_]IIIII[_]IIIIIIII[_]
112556 \_I_/ [_]\_I_/[_] \_I_[_]\II/[]\_\I/_/[]\II/[_]\_I_/ [_]\_I_/[_] \_I_/ [_]
112557 ./ \.L_J/ \L_J./ L_JI I[]/ \[]I IL_J \.L_J/ \L_J./ \.L_J
112558 | |L_J| |L_J| L_J| |[]| |[]| |L_J |L_J| |L_J| |L_J
112559 |_____JL_JL___JL_JL____|-|| |[]| |[]| ||-|_____JL_JL___JL_JL_____JL_J
112560
112561 &lt;/pre&gt;
112562 |}
112563
112564 {|-
112565 |-
112566 |&lt;pre&gt;
112567 AHHHHA
112568 AHHHHHHA
112569 AllSTOPllA
112570 VHHHHHHV
112571 VHHHHV
112572 &lt;/pre&gt;
112573 |}
112574
112575 It is popular to put such art in [[signature block]]s to be included in e-mail and Usenet postings.
112576
112577 Other ASCII art ignores the particular shape of the characters and instead uses their overall boldness or lightness to create varying gradients.
112578 {|-
112579 |-
112580 | &lt;pre&gt;
112581 _a,
112582 _yQa.
112583 _qTWW(
112584 je`?QX:
112585 &lt;d+ -3Wm;
112586 _qos_s%mWw,
112587 a2?????TWW(
112588 sd( -?Qm;.
112589 .amm; .xmWmc
112590 &quot;&quot;&quot;&quot;&quot;` &quot;&quot;&quot;&quot;&quot;&quot;&quot;
112591 &lt;/pre&gt;
112592 |}
112593
112594
112595 &lt;/font&gt;
112596
112597 One use for ASCII art is to create unique typography, for example:
112598 {|-
112599 |-
112600 |
112601 ___ __,
112602 ( / ( o _/_ /
112603 / __, _ _ `. _ _ , / /_
112604 _/_(_/(_/ /_(/_ (___)/ / /_(_(__/ /_
112605 //
112606 (/
112607 |}
112608 The program ''[[Figlet]]'' (and other programs that support its standard) allow for the design and use of ASCII fonts:
112609 {|-
112610 |-
112611 |&lt;pre&gt;
112612 _____ ___ ____ _ _
112613 | ___|_ _/ ___| | ___| |_
112614 | |_ | | | _| |/ _ \ __|
112615 | _| | | |_| | | __/ |_
112616 |_| |___\____|_|\___|\__|
112617 &lt;/pre&gt;
112618 |}
112619 What follows is an example of &quot;[[Amiga]]-style&quot; (also referred to as &quot;oldschool style&quot;) [[computer art scene|scene]] ASCII art. This kind of ASCII art is handmade in a text editor. Popular editors used to make this kind of ASCII art include CygnusEditor aka CED (Amiga) and EditPlus2 (PC).
112620 {|-
112621 |-
112622 |&lt;pre&gt;
112623 ______.----------------------------.______
112624 :_) (_:
112625 ....|: :|....
112626 : :&lt;&gt; &lt;&gt;: :
112627 :¡¡¡|: :|¡¡¡:
112628 .---+- -:- -:- -+---.
112629 /\___ | /\___ /\_____ /\______ /\______ | /\___
112630 _/ / | _/ /___ _/ __ / _/ __ / _/ __ / : _/ /
112631 \ __//\ :/\\ _// / \ )/ //\ \ )/ //\ \ )/ //\ /\ \_ //\
112632 _/¯¯ \)¯ \/ ¯¯ __¯ \/¯¯ ¯ ¯¯ \/¯¯ ¯_ ¯¯ \/¯¯ ¯_ ¯¯ \/ ¯)/ ¯¯ \_
112633 \ )/¯ (/ (/ ¯ /
112634 /¯¯ / / / _ ¯¯\
112635 \_ /\__/ /\_ /\__/ /\__/ /\_(/ _/
112636 =/ /===/ /==/ /===/ /=Šd/ /=:=/ /=
112637 ¯¯¯¯¯¯¯¯¯\/: :¯¯¯¯¯¯\/ ¯¯¯¯¯¯\/ ¯¯¯¯¯¯¯\/ ¯¯¯¯¯¯¯¯\/ | ¯¯¯¯¯¯\/
112638 ______.---+- :____ /\_____ : : ________: -+---.______
112639 :_)¡¡¡¡¡ :..... _/ /--+--./\_____.---+---./\___ .....: ¡¡¡¡¡(_:
112640 |: : ..:..\ / : _/ / : _/ / ..:.. : :|
112641 &lt;&gt; :.:.: : \ __//\ /\\ __ //\ /\ \_ //\ : :.:.: &lt;&gt;
112642 |: :..._/¯¯ \)¯ \/ ¯¯ )/ ¯¯ \/ ¯¯)/ ¯¯ \_...: :|
112643 : ____ ____ \ ¯ ¯ / ____ ____ :
112644 \_. _\_ \\ //¯¯ _ ¯¯\\ // _/_ ._/
112645 ---¡ _ \¯ _ \\ \\_ /\_ /\_(/ _// // _ ¯/ _ ¡---
112646 /Â¯Âˇ \¯¯¯ ¯\¯¯¯ ¯¯=/ /:=/ /=:=/ /= ¯¯ ¯¯¯/¯ ¯¯¯/ ÂˇÂ¯\
112647 : ¯¯¯¯¯¯ ¯¯¯¯¯¯¯¯¯\/-+--¯¯¯¯¯¯¯¯\/--+--¯¯¯¯¯¯\/ ¯¯¯¯¯¯ :
112648 |: : : :|
112649 &lt;&gt; . . &lt;&gt;
112650 |: _ . | __ .__.__ .|__ __ . :|
112651 :¯)..... __(__|-|(_/_| (| ((__||__)(__)(__|__ .....(¯:
112652 Â¯Â¯Â¯Â¯Â¯Â¯Âˇ-----------¡-------|----|--|----(/----------(/--¡-----------ÂˇÂ¯Â¯Â¯Â¯Â¯Â¯
112653
112654 &lt;/pre&gt;
112655 |}
112656
112657 ==Methods for generating ASCII art==
112658 While some prefer to use a simple [[Text editor]] to produce ASCII art, [[ASCII Art#ASCII art editors|specialized programs]] have been developed to allow you to draw text in lines, boxes, and filled areas as you would in a normal paint package.
112659
112660 [[ASCII Art#ASCII art generators|Other programs]] allow you to automatically convert an image to ASCII art, which is a special case of [[vector quantization]]. A method is to sample the image down to [[grayscale]] with less than [[integer (computer science)|8-bit]] precision, and then assign a character for each value.
112661
112662 An example of a converted image, created using [http://ascgen2.sourceforge.net Ascgen dotNet], is given below, next to the original:
112663 &lt;div style=&quot;float:right;margin:10 10 1em 1em;&quot;&gt;[[image:Redwingblackbird1.jpg|200px|Photo of redwing blackbird]]&lt;/div&gt;
112664 &lt;font size=&quot;-2&quot; color=&quot;black&quot;&gt;
112665 &lt;pre&gt;
112666 tt%%%%%%tttttttttttttttttt;;;tttttt;;;:::;;;;;ttttttttt;;;;;;;;;tttt%%%C7O7
112667 t,;;;;;;;;;;;;:;;;;::;;;::::::;;:::,... .......,...................,,:,::;t
112668 t;ttttt%C7OO7%tttt%%%%%%tttttt%%tt;;,,....,,,,.,,,,,:::::;;;;;:,,:::;;;;;t;
112669 t;ttttttCCCCC%%tt%tCO77x27777O77C%tttt;;::::::,,,,,,,,,,,:;;;::,,,,,:;::;;;
112670 t:tttttttt;tttttttt%CC7OO77CC%%72OOO7C%ttt;;;;:,,,..,.,,......;xsQsG:...,::
112671 ;,;;;;;:;;:;;;;:,,,,,,,;;tttt;tttt%t%ttt;;;;:,...... tSMMM#Q%;:::,:;:
112672 ;,;;;;;:;;;;;:,tD@@@@8Zt,,:;;;;:;;;:;;:,,........... .;DMMMMD;...,;tttttt;
112673 ;,;;;;tttt;;.,@MMMMMMMMM#C..,..........:;tZ0SKbE@#MMMMMMMMC. .,;tCC7C%C%%t;
112674 ,.,,,,:;;:..,NMMMMMMMMMMMMMSQKE###NNNMMMMMMMMMMMMMMMMMMMM#C;7GDDD5G2OCCttt;
112675 . ,sMMMMMNNN#NNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN@NMMbODS99Qs5xx2O77CCt
112676 .,. DMMN##MNMMMMMMMMMMMMMMN#MN@NNNN##NN###@EE@MM@ttttt;;ttCC777Ot
112677 .,::;:. ;NNNEGOCOZQG. ,MM#@@##@##@#####NNNN#NN@@K8Qx:,::::,:;;;ttt%t
112678 ..:;%ZsD0D0Ds57;@ME:,:;tO MN@@@#########NNNMMMM#K5t;,,;tt%ttttttt;;;;;:
112679 tOQDDs5DQgEE@@bSMM,.;tx2 MMM#######NNNNN##NMNgx;::;t7O22xZ22xxOC%tt;;,:,
112680 sQSsG2C%CxGs00DZ0Mt:t;. .tQMM########NNNN#NMMK. .,,:;:,,,...,,::,,,,,,,
112681 sD8S9DsZxxxx22OCtO#MME8QMMMMM#######NN#NNNNMD. ...,,,... ...,:;tt;
112682 t;tt%t%%tttt;;;;:,.,7#MMMMMMNNNNNNN#N####NMK...,:::;;;t;;;:,.. ..,:;%7t
112683 t,;;;;:,,,,,.,,,... :s@NMN#NMMMMMNNNNMN@Z%xxZxxZZxxO7C%ttt;;:,,,,,,:;;;:
112684 t;tttttttttt%%tt%tt;;,. t@NNNO,7S#MMM#sttt7xGZZZZZZxxZxZZx2x227%ttt;;::;,
112685 t;tttCO2xGGsD00QQ99QD52%t,%59N#. .@D. .............,,,::::::::,.......,.
112686 x7x2OOCC%ttt;;tttCCC%%tt;;.. ,,. 0% ......... .... ...
112687 xxD5Z27OC%tt;;;:;;;:::;:,.... .2x@t ,;;tt%%77O7CC%tt;;:,..,,,,,... .,,
112688 t:;;::::;;;ttttttt%%7O2xxx27Ob: 0M% ..,.,::;;;;;;;:,... .....,,:t%2GGt
112689 : . ..,;::::;;;;;ttt;Q5 MC ..,..... .. ...,:,,::;tCC%t;
112690 , ......... .,;tt9G; ,ttt%7OxxxxxZZxxxZZ5D009QSS8g8S0Dsx7Ctttt
112691 . ......,...,,. ;OG5D98gKSgK9 CZ7C2xGs0S8gKbEEE@@@@@bg8ggKEEE@@@@@@5
112692 :.,...,:::,,,.,,,t CgES0098b@M. .x57CCttt%CxxZxxO7C%ttt;;;;;;tt%OxGsZ%
112693 :;;.,....,,;;t2509x ,OGZ772,O, t%t;:,.. ..;;;,. ..,,,,.. .
112694 .. .;tD2, ,: ,t .,.... ..
112695 . ,tOZ2; tDOt2, ;;:::::,:;;ttt:. . ...,;:,. .
112696 . ,:;,. t;2; .;::;;;;tt;::.,........,::....;C;
112697 . ,. .. . .. :;tt... .;:,..,. ....... .:;:... ..
112698 &lt;/pre&gt;
112699 &lt;/font&gt;
112700
112701 ==Non fixed-width ASCII==
112702 Most ASCII art is created using a [[monospace]] font, where all characters are identical in width ([[Courier (font)|Courier New]] is a popular font). However, most of the most commonly used fonts in word processors, web browsers and other programs are proportional fonts, such as [[Arial]] or [[Times New Roman]], where different widths are used for different characters. ASCII art drawn for a fixed width font will usually appear distorted, or even unrecognisable when displayed in a proportional font.
112703
112704 Some ASCII artists have produced art for display in such fonts. These ASCIIs, rather than using a purely shade-based correspondence, use characters for slopes and borders and use block shading. These ASCIIs generally offer greater precision and attention to detail than fixed-width ASCIIs for a lower character count, although they are not as universally accessible since they are usually relatively font-specific.
112705
112706 ==Other text based art==
112707 There are a variety of other types of art using text symbols from character sets other than ASCII and/or some form of color coding. Despite not being pure ASCII, these are still often referred to as &quot;ASCII art&quot;. The character set portion designed specifically for drawing are known as the line drawing characters or pseudo-graphics.
112708
112709 ===IBM PC===
112710 {| align=right
112711 |&lt;font color=#008000&gt;&lt;pre&gt;
112712 ▄▄▀▀▀▀▀▄▄
112713 ▄▀ ▀▄
112714 ▄▀ █ █ ▀▄
112715 █ █▄▄▄▄▄▄▄▄▄█ █
112716 █ █ █ █
112717 █ ▀▄▄▄▄▄▀ █
112718 ▀▄▄ ▄▄▀
112719 ▀▀▀▀▀ &lt;/pre&gt;&lt;/font&gt;
112720 |&lt;table align=right style=&quot;border: 1px dashed #2f6fab;&quot; &gt;
112721 &lt;tr&gt;&lt;td&gt;
112722 &lt;span style=&quot;margin:0px; line-height:1.2em; font-family: monospace; background-color: #f9f9f9;&quot;&gt;&lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;▄▄▄▄▄▄▄&lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;&lt;br&gt;
112723 &lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;█ &lt;font color=red&gt;▄ ▄&lt;/font&gt; █&amp;nbsp;&lt;br&gt;
112724 &lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;█&lt;font color=&quot;#f9f9f9&quot;&gt;██&lt;/font&gt;&lt;font color=green&gt;▄&lt;/font&gt;&lt;font color=&quot;#f9f9f9&quot;&gt;██&lt;/font&gt;█&amp;nbsp;&lt;br&gt;
112725 &lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;█&lt;font color=&quot;#f9f9f9&quot;&gt;██&lt;/font&gt;&lt;font color=green&gt;▀&lt;/font&gt;&lt;font color=&quot;#f9f9f9&quot;&gt;██&lt;/font&gt;█&amp;nbsp;&lt;br&gt;
112726 &lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;█ &lt;font color=blue&gt;▀▀▀&lt;/font&gt; █&amp;nbsp;&lt;br&gt;
112727 &lt;font color=&quot;#f9f9f9&quot;&gt;█&lt;/font&gt;▀▀▀▀▀▀▀&amp;nbsp;
112728 &lt;/table&gt;
112729 |}
112730 The IBM PC graphics hardware in text mode uses 16 bits per character. It supports a variety of configurations, but in its default mode under DOS they are used to give 256 glyphs from one of the IBM PC code pages ([[Code page 437]] by default), 16 foreground colors, 8 background colors, and a flash option. Such art can be loaded into screen memory directly. ANSI.SYS, if loaded, also allows such art to be placed on screen by outputting escape sequences that indicate movements of the screen cursor and color/flash changes. If this method is used then the art becomes known as [[ANSI art]]. The IBM PC code pages also include characters intended for simple drawing which often made this art appear much cleaner than that made with more traditional character sets. Plain text files are also seen with these characters, though they have become far less common since Windows GUI text editors (using the [[Windows ANSI code page]]) have largely replaced DOS based ones.
112731
112732 ===Shift_JIS===
112733 {{main|Shift_JIS art}}
112734 A large character selection, the widespread use of Japanese on the internet, and the availibility of standard fonts with predictable spacing make [[Shift-JIS|Shift_JIS]] a common format for text based art on the internet.
112735
112736 ===Unicode===
112737 [[Unicode]] would seem to offer the ultimate flexibility in producing text based art with its huge variety of characters. However, finding a suitable fixed-width font is likely to be difficult if a significant subset of Unicode is desired. Also, the common practice of rendering Unicode with a mixture of variable width fonts is likely to make predictable display hard if more than a tiny subset of Unicode is used.
112738
112739 ===Overprinting===
112740 In the 1970s and early 1980s it was popular to produce a kind of ASCII art that relied on overprinting &amp;mdash; the overall darkness of a particular character space dependent on how many characters, as well as the choice of character, printed in a particular place. Thanks to the increased granularity of tone, photographs were often converted to this type of printout. Even manual typewriters or [[daisy wheel printer]]s could be used. The technique has fallen from popularity since all cheap printers can easily print photographs, and a normal text file (or an e-mail message or Usenet posting) cannot represent overprinted text. However, something similar has emerged to replace it: shaded or colored ASCII art, using [[ANSI]] video terminal markup or color codes (such as those found in [[HTML]], [[IRC]], and many internet [[message board]]s) to add a bit more tone variation. In this way, it is possible to create ASCII art where the characters only differ in color.
112741
112742 ==See also==
112743 * [[ASCII stereogram]]
112744 * [[Wikipedia:Bad Jokes and Other Deleted Nonsense/ASCII cows]]
112745
112746 ==Further reading==
112747 * Danet, Brenda. ''Cyberpl@y: Communicating Online''. Oxford, UK: Berg, 2001. ISBN 1-85973-424-3.
112748 * Riddell, Alan, ed. ''Typewriter Art''. London, UK: London Magazine Editions (LME), 1975. ISBN 900-626-99-2.
112749 * Roemer, Madge. ''Fun With Your Typewriter''. Indian Hills, CO, USA: The Falcon's Wing Press, 1956. LCCN 56-13336.
112750
112751 ==External links==
112752 ===ASCII art editors===
112753 Editors created solely for the purpose of creating hand-made ASCII art.
112754
112755 *[http://download.com.com/3000-2192-10141644.html?tag=lst-0-1 ACiDDraw 1.25r] The leading ANSI and ASCII art editor for IBM PC DOS
112756 *[http://torchsoft.com/en/aas_information.html ASCII Art Studio 2.11 for Windows] Shareware (30-day trial); allows freehand line-art illustration using the mouse
112757 *[http://www.stud.tu-ilmenau.de/~siha-in/thesoftware.html ASCII/edit] Shareware (30-day trial); Mac OS X; objects can be grouped, overlap, combined, and intersection characters can be turned on or off individually for each line and frame
112758 *[http://www.sigsoftware.com/emaileffects/ Email Effects] ASCII art editor for Mac and Windows, also converts pictures and supports FIGlet fonts.
112759 *[[JavE]] Freeware; A java ASCII editor with standard Photoshop-style tools, image conversion, FIGlet support, math formulas editor and a lot of other features. Requires [[Java virtual machine]].
112760 *[[PabloDraw|PabloDraw for Windows]] Freeware; features a peer-to-peer &quot;joint editing&quot; mode
112761 *[http://sourceforge.net/projects/tundradraw/ TundraDraw] A cross-platform ANSI and ASCII editor for Microsoft Windows and X environments. Source code available.
112762 *[http://www.pixio.biz/ TextDraw] Full-color ASCII art editor for Windows with an interface similar to Microsoft Paint. Export formats: BMP, JPG, HTML, RTF, TXT and TDF.
112763 *[[Open Directory Project]]: [http://dmoz.org/Arts/Visual_Arts/ASCII_Art/Software/ List of ASCII art editors]
112764 *[http://editors.asciiart.net/ ASCIIart.net list of editors] A ''comprehensive'' list of ASCII editors for DOS and Windows with informative reviews on each one
112765 * [http://ansilove.sourceforge.net Ansilove/PHP] A set of tools for converting ANSi/BiN/ADF/iDF/TUNDRA/XBiN files into PNG images
112766
112767 ===ASCII art generators===
112768 Tools which convert bitmapped images to ASCII text or otherwise automatically generate ASCII art with a minimal degree of human interaction.
112769
112770 *[http://aa-project.sourceforge.net/ AA-lib] A portable library which converts high-resolution images or video down to ASCII text images or 'video.'
112771 *[http://www.the-mathclub.net/site/demos/abadporn.tar.gz APF] An ASCII/ANSI color console MPEG/Video player.
112772 *[http://www.alterlife.org/asciiartist/ Alternate's ASCII Artist] A tiny Open-Source ASCII Art Generator written in C++ .
112773 *[http://www.glassgiant.com/misc_ascii.php ASCII Artist] A simple Art-to-ASCII generator.
112774 *[http://www.network-science.de/ascii/ ASCII Generator] Online; generates ASCII art text in a variety of fonts.
112775 *[http://www.kammerl.de/ascii/AsciiSignature.php ASCII Signature Generator] Figlet Server - Online Ascii Art Signature Generator.
112776 *[http://www.kammerl.de/ascii/AsciiStereo.php ASCII Stereogram Image Generator] Online; generates free ASCII stereograms.
112777 *[http://www.kammerl.de/ascii/AsciiStereoMovie.php ASCII Stereogram Movie Generator] Online; generates free ASCII stereogram movies!
112778 *[http://reactor.reality-protocol.de/main.php?page=asciiart ASCii.art 0.4] Freeware; An image bitmap to ASCII text converter. Supports conversion to colored ASCII using HTML color tags and features multiple image resize capabilities.
112779 *[http://ascgen.jmsoftware.co.uk/ ASCII Generator (ascgen)] Freeware; A 32-bit Windows program that converts a large variety of images to ASCII art.
112780 *[http://ascgen2.sourceforge.net/ ASCII Generator dotNET (ascgen)] Open Source and improved version rewritten in C#.
112781 *[http://boxes.thomasjensen.com/ Boxes] GNU GPL; Draws ASCII art boxes around text. Useful for programmers.
112782 *[http://www.figlet.org/ Figlet text generator] FIGlet font generator.
112783 *[http://www.pixio.biz/ Imagetrix] Full-color ASCII Art conversion wizard for Windows.
112784 *[http://img2ascii.sourceforge.net/ IMG2ASCII] GNU GPL; Transforms JPG or PNG images to [[Unicode]] or ASCII text online.
112785 *[http://reactor.reality-protocol.de/main.php?page=jasciiart JASCiiArt 0.1] Freeware; Java Ascii Art generator for Windows, Linux, Mac OS. Reads BMP, GIF, JPG and PNG files and is able to generate HTML, RTF, TXT, BMP, PNG, JPG output ascii art.
112786 *[http://www.pizzinini.net/projects/pic2ascii/ Pic2ASCII] Freeware; Transforms bitmaps to text (even analyzes symbol fonts). Reads BMP, GIF and JPG.
112787 *[http://www.the-mathclub.net/index.php/JPEGTOCHAT JPEGTOCHAT] [[Public domain]]; converts [[JPG]] images to colored ASCII art.
112788 *[http://png2mirc.sourceforge.net/ png2mirc] [[Public domain]]; converts [[PNG]] images to coloured [[mIRC]] ASCII art.
112789 *[http://www.text-image.com/convert/ascii.html Text-Image.com] Online Image to ASCII converter.
112790
112791 ===ASCII art groups===
112792 ASCII art groups are defined as organized bodies of people dedicated to the purpose of creating ASCII text based artwork.
112793
112794 &lt;!-- please help keep the list items in alphabetical order--&gt;
112795 *[http://123.ione.se/ 123]
112796 *[http://boards.gamefaqs.com/gfaqs/gentopic.php?board=585451/ Alphabet Zoo] - ASCII artists predominantly skilled in the use of Arial font.
112797 *[http://www.chemical-reaction.de/ Chemical Reaction]
112798 *[http://www.galza.tk/ Galza] ASCII artists which predominantly make use of the IBM-PC Russian ASCII [[codepage]]
112799 *[http://www.gamefaqsascii.com/ GameFAQsASCII] - a spinoff of Alphabet Zoo
112800 *[[Impure ASCII]] [http://www.impure.tk/]
112801 *[http://www.kuro5hin.org/user/uid:44416 The K5 ASCII reenactment players]
112802 *[http://www.thelo0p.prv.pl/ The lo0p] Polish ASCII art group
112803 *[[Mimic ASCII]] [http://www.mimic.ca/]
112804 *[http://pen15.technopop.biz/ Pen15]: It's pronounced &quot;Pen Fifteen&quot;
112805 *[[Remorse ASCII]] [http://www.remorse.org/]
112806 *[[Superior Art Creations]]
112807 *[news:alt.ascii-art alt.ascii-art], a Usenet newsgroup.
112808
112809 ===ASCII artscene portals===
112810 *[http://www.muff1n.com/ Muffin A&amp;A] - ASCII Scene News, Interviews, Gallerys
112811 *[http://www.asciiscene.org/ Boondocks] - ASCII Scene Forums for PC and Amiga
112812 *[http://www.downmix.com/ Downmix] - ASCII, ANSI, &amp; Hires Scene News &amp; Releases
112813 *[http://www.thuglife.org/ Thuglife.org] - ASCII Scene News, Releases, and Forum
112814
112815 ===Other links===
112816 *[http://mbox.bz/slurp/ascii/bbsads/ BBS Ads Collection v1.0 - One of the most complete BBS textmode ad collections, containing over 1.500 single ads from various platforms and scenes.]
112817 *[http://www.geocities.com/SoHo/Gallery/4219/ascii.html Heister's Digital Art - ASCII page]
112818 *[http://www.acid.org/info/mirror/jgs/history.html History of ASCII (Text) Art] by [[Joan Stark]] (Mirror)
112819 *[http://www.ludd.luth.se/~vk/pics/ascii/junkyard/techstuff/tutorials/Joan_Stark.html#tutorials ASCII Art Drawing Tutorials]
112820 *[http://artcode.org/ascii/ ASCII Arts Ring and Directory]
112821 *[http://www.asciimation.co.nz/ Star Wars] (a 22-minute long ''ASCIImation'' movie: requires Java)
112822 ** telnet://towel.blinkenlights.nl ([[telnet]] version of the [[Star Wars]] movie)
112823 *[http://onyx.chattanoogastate.edu/~jack/matrix/ The.Matrix-ASCII] The original [[The Matrix|Matrix]] film converted to ASCII animation (DVD ISO)
112824 *[http://www.romanm.ch//seiten_layout/portfolio_ascii.php More ascii art movies]
112825 *[http://aa5.2ch.net/mona/ Japanese ASCII Art]: requires Japanese font (available free from Windows/IE update, for Windows users)
112826 *[http://www.geocities.co.jp/HeartLand-Yurinoki/1836/ How to draw Mona-style AA] (in Japanese)
112827 *[http://c2.com/cgi/wiki?UmlAsciiArt Illustrating software design using UnifiedModelingLanguage is discussed]
112828 *[http://www.chris.com/ascii/ An ASCII art archive]
112829 *[http://userpages.umbc.edu/~dschmi1/cows/ascii.html ASCII art cow collection]
112830 *[http://www.asciiartfarts.com/ ASCII Art Farts]
112831 *[http://www.asciibabes.com/ Actors' and musicians' portraits rendered in ASCII]
112832 *[http://www.nerd-boy.net/ www.nerd-boy.net] [[Nerd Boy]], an ASCII comic strip by Joaquim Gandara.
112833 *[http://www.ascii-art.de/ ASCII art dictionary] Huge collection by Andreas Freise sorted by words (topics).
112834 *[http://www.ascii-art.com/ ASCII art gallery by Joan Stark]
112835 *[http://www.ascii-art.net/ ASCII art by Sebastian Stoecker]
112836 *[http://xcski.com/~ptomblin/planes.txt The ORIGINAL Ascii Airplane Collection]
112837 *[http://www.colintheowl.com/ Colin The Owl] Several cartoons including Colin The Owl, Derren Brown's School Days, and ASCII 'interpretations' of classic video games.
112838 *[http://www.baetzler.de/humor/ascii_cows.var The canonical list of Ascii Cows ]
112839 *[http://www.unicodeart.com/ &amp;#1160; Unicode art - an extended ASCII art form &amp;#1160;]
112840 *[http://www.freewebs.com/civiascii2/warriornessfaq.htm Tutorial for Gamefaqs compatible ASCII]
112841 *[http://www.freewebs.com/ysqure3/links.htm Collection of non fixed-width artists]
112842 *[http://kylewiki.mine.nu/wiki/ASCII_Art KyleWiki:Ascii Art] A collection of fixed-width ascii art
112843 *[http://kozou.run.buttobi.net/ AA underground thread @ hiding place (English version)]
112844 *[http://abstract.cs.washington.edu/~renacer/ascii-matrix.html.gz The Matrix - Bullet Dodging Scene]
112845 *[http://www.info-brevetti.org/ascii/ The best of ASCII art] The best in 20 categories
112846 *[http://ridaas.org/punkabbestia/ascii-art.htm ASCII/ANSI Art] ASCII/ANSI Art
112847 *[http://ridaas.org/ascii-search ASCII-Search] ASCII Art Search Engine
112848 *[http://www.apollosoft.de/ASCII/ ASCII Font] An ASCII Font for Windows
112849 *[http://www.cumbrowski.com/RoySAC/#asciiartstyles The three Styles of the Underground ASCII Art Scene] learn about the 3 dominant underground ascii styles
112850 * [http://cleaner.untergrund.net Cleaner Alternative Museum] Cleaner's ASCii/ANSi galleries.
112851
112852 [[Category:Articles with ASCII art]]
112853 [[Category:ASCII art]]
112854 [[Category:Digital art]]
112855
112856 [[cs:ASCII art]]
112857 [[de:ASCII-Art]]
112858 [[eo:Arto ASCII]]
112859 [[es:Arte ASCII]]
112860 [[fi:ASCII-taide]]
112861 [[fr:Art ASCII]]
112862 [[he:אמנו×Ē ASCII]]
112863 [[ia:Arte in ASCII]]
112864 [[it:ASCII art]]
112865 [[ja:ã‚ĸã‚šã‚­ãƒŧã‚ĸãƒŧト]]
112866 [[lt:ASCII menas]]
112867 [[nl:ASCII art]]
112868 [[pl:ASCII-Art]]
112869 [[pt:ASCII art]]
112870 [[simple:ASCII-art]]
112871 [[sk:ASCII umenie]]
112872 [[sl:ASCII umetnost]]
112873 [[sv:ASCII-konst]]
112874 [[zh:ASCIIč‰ē术]]</text>
112875 </revision>
112876 </page>
112877 <page>
112878 <title>Autoerotic asphyxiation</title>
112879 <id>1885</id>
112880 <revision>
112881 <id>41701525</id>
112882 <timestamp>2006-03-01T03:52:28Z</timestamp>
112883 <contributor>
112884 <ip>69.192.37.62</ip>
112885 </contributor>
112886 <comment>/* Cultural references */</comment>
112887 <text xml:space="preserve">'''Autoerotic asphyxiation''', or '''AEA''', is the practice of self-[[strangulation]], typically by the use of a [[Ligature (medicine)|ligature]], while [[masturbation|masturbating]] in order to heighten the sexual pleasure as more [[endorphine]]s are produced when the body reaches the near state of [[asphyxia]]. While highly pleasurable, AEA is also an extremely dangerous practice that results in many accidental deaths each year. A small number of people doing AEA use a plastic bag over their head, but most prefer the strangulation method.
112888
112889 Deaths often occur when the loss of consciousness caused by partial asphyxia leads to loss of control over the means of strangulation, resulting in continued asphyxia and death. Victims are often found to have rigged some sort of &quot;rescue mechanism&quot; which has not worked in the way they anticipated as they lost consciousness.
112890
112891 It has also been speculated that in some cases autoerotic asphyxiation may have triggered the little-known phenomenon of [[carotid sinus#Carotid sinus reflex death|carotid sinus reflex death]].
112892
112893 It is a popular subject in [[tabloid]]s and celebrity gossip magazines, particularly when a celebrity dies as a result of [[suicide]] or other mysterious circumstances. Such was reputedly the case with the deaths of [[Jerzy Kosiński]] (in 1991) and [[Michael Hutchence]] (in 1997), though no evidence to support the claim was produced in either case.
112894
112895 The artist [[Vaughn BodÊ]] died from this cause in 1975.
112896
112897 The death in 1994 of [[Stephen Milligan]], the British Conservative MP for Eastleigh, was a case of auto-erotic asphyxiation combined with [[self-bondage]]. This combination is particularly lethal.
112898
112899 A more recent case is the death in 2004 of [[British National Party|BNP]] and [[British National Front|National Front]] member [[Kristian Etchells]]. [http://www.oldham-chronicle.co.uk/NEWSF04.html][http://www.oldhamadvertiser.co.uk/news/s/177/177605_national_front_member_died_during_sex_act.html]
112900
112901 Recent court cases have come to varied results as to whether the unintentional death resulting from autoerotic asphyxiation falls under the &quot;self-induced injury&quot; clause of standard [[life insurance]] policies, which prevents payouts for suicide. In June of 2003, one US court said the intent was not death and therefore the case was an accident [http://home.aigonline.com/content/0,1109,15975-1567-legal--legal,00.html], while another in August 2003 said it does technically fall within the terms since death is the logical result of asphyxiation
112902 [http://home.aigonline.com/content/0,1109,16158-1572-legal,00.html].
112903
112904 == Cultural references ==
112905 Autoerotic asphyxiation is key to the plots of many books, movies, and TV shows. Included is an accidental death in the film ''[[The Ruling Class]]'' (1972), starring [[Peter O'Toole]], as well as the movies ''[[Ken Park]]'' and ''[[Full Frontal]]'', the [[Thomas Harris]] novel ''[[Hannibal (film)|Hannibal]]'', the [[P. D. James]] novel ''[[An Unsuitable Job for a Woman]]'', the [[Erika Barr]] book ''[[Acquisition of Power]]'' (ISBN 1591293073), a 2002 episode of the HBO television series ''[[Six Feet Under]]'', the US version of [[Queer as Folk (U.S.)|Queer as Folk]], a 2005 episode of the CBS television series ''[[CSI: Crime Scene Investigation]]'', and is mentioned and talked about in the 2005 [[George Carlin]] HBO Special ''[[Life is Worth Losing]]''. In the movie &quot;Life As A House&quot; the main character Sam (Hayden Christensen) is depicted indulging in autoerotic asphyxiation in the first few scenes.
112906
112907 == External links ==
112908 * http://www.silentvictims.org/
112909 * [http://news.bbc.co.uk/onthisday/hi/dates/stories/february/8/newsid_2538000/2538165.stm BBC News story about the death of Stephen Milligan]
112910 * [http://216.239.41.104/search?q=cache:hcGyRuuPeagJ:www.cwu.edu/~jenkinsa/Autoerotic_Asphyxia_Page.html+%22autoerotic+asphyxiation%22+dictionary+OR+glossary+OR+words+OR+terms+OR+lexicon&amp;hl=en&amp;lr=lang_en&amp;ie=UTF-8 Information on the practice of autoerotic asphyxia]
112911
112912 [[Category:Masturbation]]</text>
112913 </revision>
112914 </page>
112915 <page>
112916 <title>American Red Cross</title>
112917 <id>1886</id>
112918 <revision>
112919 <id>42033751</id>
112920 <timestamp>2006-03-03T09:49:18Z</timestamp>
112921 <contributor>
112922 <username>UW</username>
112923 <id>358956</id>
112924 </contributor>
112925 <minor />
112926 <comment>Revert - no overall relevance</comment>
112927 <text xml:space="preserve">[[Image:Poster-red-cross-volunteer-for-victory.jpg|thumb|202px|A WWII-era poster encouraged American women to volunteer for the Red Cross as part of the war effort.]]
112928 The '''American Red Cross''' (chartered as the '''American National Red Cross''') is a humanitarian organization that provides emergency assistance, disaster relief and education inside the [[United States]], as part of the [[International Federation of the Red Cross]].
112929
112930 Today, in addition to domestic [[disaster relief]], the American Red Cross offers compassionate services in five other areas: community services that help the needy; support and comfort for [[military]] members and their families; the collection, processing and distribution of lifesaving [[blood]] and blood products; educational programs that promote health and safety; and international relief and development programs.
112931
112932 Governed by [[volunteers]] and supported by community [[donations]], the American Red Cross is a nationwide network of nearly 1,000 chapters and Blood Services regions dedicated to saving lives and helping people prevent, prepare for and respond to [[emergencies]]. More than a million Red Cross volunteers and 30,000 employees annually mobilize relief to families affected by more than 67,000 disasters, train almost 12 million people in lifesaving skills and exchange more than a million emergency messages for U.S. military service personnel and their families. The Red Cross is also the largest supplier of blood and blood products to more than 3,000 hospitals across the nation and also assists victims of international disasters and conflicts at locations worldwide.
112933
112934 The American Red Cross is headquartered in [[Washington, D.C.]]. Jack McGuire serves as interim president following the resignation of [[Rear Admiral]] Marsha J. Evans ([[United States Navy|USN]], ret.), in December, 2005. [http://www.nytimes.com/2005/12/13/international/13cnd-cross.html?ex=1292130000&amp;en=b1afad6cb3ef7854&amp;ei=5088&amp;partner=rssnyt&amp;emc=rss]
112935
112936 [[Image:Lawn1917.jpg|thumb|202px|WWI Red Cross rally at the [[University of Virginia]], May 1917.]]
112937
112938 [[Image:AmRedCross.jpg|thumb|202px|The headquarters of the American Red Cross in [[Washington, D.C.]] was built in 1917 and dedicated &quot;in memory of the heroic women of the [[American Civil War|Civil War]]&quot;.]]
112939
112940 == Founders ==
112941 The American Red Cross was established on [[May 21]], [[1881]] by [[Clara Barton]], who became the first president of the organization. Barton first organized a meeting on [[May 12]] of that year at the home of [[United States Senate|Sen.]] [[Omar D. Conger]] ([[Republican Party (United States)|R]], [[Michigan|MI]]) [http://www.redcross.org/museum/history/charter.asp]. Fifteen were present at this first meeting, including Barton, Conger, and [[United States House of Representatives|Rep.]] [[William Lawrence (Ohio)|William Lawrence]] ([[Republican Party (United States)|R]], [[Ohio|OH]]) (who became the first vice-president [https://www.trianglearc.org/ARCweb/FD/2001ballreview.htm],[http://www.co.logan.oh.us/museum/Logan_County_History/body_logan_county_history.html]).
112942
112943 [[Jane Delano]] (1862-1919) was the founder of the [[American Red Cross Nursing Service]].
112944
112945 === Clara Barton ===
112946 [[Clara Barton]] (1821-1912) had already had a career as a teacher and federal bureaucrat when the [[American Civil War]] broke out. (She started teaching around the age of 15 or 16.) After working tirelessly on [[humanitarian]] work during and after the conflict, on advice of her doctors, in 1869, she went to Europe for a restful vacation. There, she saw and became involved in the work of the [[International Red Cross]] during the [[Franco-Prussian War]], and determined to bring the organization home with her to America.
112947
112948 When Clara Barton began the organizing work in the U.S. in 1873, no one thought the country would ever again faced an experience like the Civil War. However, Barton was not one to lose hope in the face of the bureaucracy, and she finally succeeded during the administration of President [[Chester A. Arthur]] on the basis that the new American Red Cross organization could also be available to respond to other types of crisis.
112949
112950 As Barton expanded the original concept of the Red Cross to include assisting in any great national disaster, this service brought the United States the &quot;Good Samaritan of Nations&quot; label in the International Red Cross. Barton naturally became President of the American branch of the society, known officially as the American National Red Cross. [[John D. Rockefeller]] gave money to create a national headquarters in [[Washington, DC]], located one block from the [[White House]].
112951
112952 Clara Barton led one of the group's first major relief efforts, a response to the Great Fire of 1881 ([[Thumb Fire]]) in the Thumb region of Michigan, which occurred on Sept 4-6, 1881. Over 5000 were left homeless. The next major disaster dealt with was the [[Johnstown Flood]] which occurred on [[May 31]], [[1889]]. Over 2,209 people died and thousands more were injured in or near [[Johnstown, Pennsylvania]] in one of the worst disasters in United States history. She resigned from the American Red Cross in [[1904]].
112953
112954 == Red Cross biomedical services ==
112955
112956 {{copyvio|url=&lt;http://www.redcrossstl.org/public/blood/biomedical_services.htm&gt;}}
112957 &lt;!-- NOTE: This section may be a copyright violation (source: http://www.redcrossstl.org/public/blood/biomedical_services.htm). Please reword it. --&gt;
112958 ===Blood===
112959 The American Red Cross supplies roughly 45% of the [[blood donation|donated blood]] in the United States. Independent community-based blood centers supply 45% and 10% is collected directly by hospitals. In December of 2004, the American Red Cross completed their largest blood processing facility in the United States in [[Pomona, California]] on the campus grounds of the [[Cal Poly Pomona|California State Polytechnic University, Pomona]]. The Red Cross has had several controversies surrounding their blood program in which the center mishandled donated blood.
112960
112961 ===Tissue services===
112962 For more than twenty years, the American Red Cross provided [[allograft]] tissue for [[transplant]] through its Tissue Services Program. It cared for thousands of donor families who gave the gift of [[tissue donation]] and helped more than 1 million transplant recipients in need of this life saving or life-enhancing gift of tissue. At the end of January 2005, the American Red Cross ended its Tissue Services program in order to focus on its primary missions of Disaster Relief and Blood Services.
112963
112964 ===Plasma services===
112965 A leader in the [[Blood plasma|plasma]] industry, the Red Cross provides more than one quarter of the nation's plasma products. Red Cross Plasma Services seeks to provide the American people with plasma products which are not only reliable and cost-effective, but also as safe as possible.
112966
112967 In February [[1999]], the Red Cross completed its &quot;Transformation,&quot; a $287 million program that: re-engineered Red Cross Blood Services' processing, testing and distribution system; and established a new management structure.
112968
112969 ===Nucleic Acid Testing===
112970 On [[March 1]], [[1999]], the American Red Cross became the first U.S. blood banking organization to implement a [[Nucleic Acid Testing]] (NAT) study. This process is different from traditional testing because it looks for the [[genetics|genetic]] material of [[HIV]] and [[hepatitis C]] (HCV), rather than the body's response to the disease.
112971
112972 The NAT tests for HIV and HCV have been licensed by the [[FDA]]. These tests are able to detect the genetic material of a transfusion-transmitted virus like HIV without waiting for the body to form antibodies, potentially offering an important time advantage over current techniques.
112973
112974 ===Leukoreduction===
112975 A person's own [[leukocytes]] (white blood cells) help fight off foreign substances such as [[bacteria]], [[viruses]] and abnormal cells, to avoid sickness or disease. But when transfused to another person, these same leukocytes do not benefit the recipient. In fact, these foreign leukocytes in transfused [[red blood cells]] and [[platelets]] are often not well tolerated and have been associated with some types of transfusion complications.
112976
112977 The Red Cross is moving toward system-wide universal prestorage leukocyte reduction to improve patient care.
112978
112979 ===Research===
112980 The Red Cross operates the [[Jerome H. Holland Laboratory]], based in [[Rockville, Maryland]]. Each year, the Red Cross invests more than $25 million in research activities at the Holland Laboratory and in the field.
112981
112982 ===Cellular therapies===
112983 One technique the Red Cross has identified that shows strong potential for treating people in new ways is through [[cellular therapy|cellular therapies]]. This new method of treatment involves collecting and treating blood cells from a patient or other blood donor. The treated cells are then introduced into a patient to help revive normal cell function; replace cells that are lost as a result of disease, accidents or aging; or used to prevent illnesses from appearing.
112984
112985 Cellular therapy may prove to be particularly helpful for patients who are being treated for illnesses such as [[cancer]], where the treated cells may help battle cancerous cells.
112986
112987 ==Court ordered consent decree==
112988 The Food and Drug Administration (FDA) took court action against the American Red Cross in response to deficiencies in their tracking and procedures for ensuring the safety of the blood supply. The consent decree outlines some of the violations of federal law that the American Red Cross engaged in before 1993. Fines were imposed in the millions of dollars.
112989
112990 In response to the decree, Red Cross Biomedical Services now has: a standardized [[computer]] system that efficiently maintains the blood donor database; a network of eight, state-of-the-art National Testing Laboratories (NTLs) that test about 6 million units of blood collected by the Red Cross's 36 blood regions; the Charles Drew Biomedical Institute, which allows for the Red Cross to provide training and other educational resources to Red Cross Blood Services' personnel; a highly qualified Quality Assurance/Regulatory Affairs Department, which helps to ensure compliance with [[FDA]] regulations in every Red Cross Blood Services region; and,
112991 a centrally managed blood inventory system to ensure the consistent availability of blood and blood components in every Red Cross Blood Services region throughout the country.
112992
112993 In an [http://www.fda.gov/ora/frequent/letters/1000123507_ARC/consent_decree_100023507.pdf agreement with the American Red Cross] the Consent Decree was amended in 2003 with penalties for specific violations.
112994
112995 The FDA can impose penalties after April 2003 up to the following maximum amounts:
112996 * $10,000 per event (and $10,000 per day) for any violation of an ARC standard operating procedure (SOP), the law, or consent decree requirement and timeline
112997 * $50,000 for preventable release of each unit of blood for which FDA determines that there is a reasonable probability that the product may cause serious adverse health consequences or death
112998 **$5,000 for the release of each unit that may cause temporary problems, up to a maximum of $500,000 per event
112999 * $50,000 for the improper re-release of each unsuitable blood unit that was returned to ARC inventory
113000 * $10,000 for each donor inappropriately omitted from the [[National Donor Deferral Registry]], a list of all unsuitable donors
113001
113002 == Red Cross Health and Safety services ==
113003 The American Red Cross has become a household name for providing first aid, Cardiopulmonary Resuscitation (CPR), Automated External Defibrillator (AED), water safety and lifeguarding training throughout the United States. The training programs are primarily aimed at laypersons, workplaces, and aquatic facilities. In 2005, the American Red Cross co-lead the 2005 Guidelines for First Aid, which aims to provide up-to-date and peer-reviewed first aid training material. Many American Red Cross chapters also sell first aid kits and other related equipment.
113004
113005 ==Disaster services==
113006 Each year, the American Red Cross responds immediately to more than 67,000 [[disasters]], including house or apartment [[fires]] (the majority of disaster responses), [[hurricane]]s, [[flood]]s, [[earthquake]]s, [[tornado]]es, [[hazardous materials]] spills, transportation [[accidents]], [[explosions]], and other natural and man-made disasters.
113007
113008 Although the American Red Cross is not a [[government]] agency, its authority to provide disaster relief was formalized when, in [[1905]], the Red Cross was chartered by [[Congress]] to &quot;carry on a system of national and international relief in time of peace and apply the same in mitigating the sufferings caused by pestilence, famine, fire, floods, and other great national calamities, and to devise and carry on measures for preventing the same.&quot; The Charter is not only a grant of power, but also an imposition of duties and obligations to the nation, to disaster victims, and to the people who support its work with their donations.
113009
113010 Red Cross disaster relief focuses on meeting people's immediate emergency disaster-caused needs. When a disaster threatens or strikes, the Red Cross provides [[shelter]], [[food]], and [[health]] and [[mental health]] services to address basic human needs. In addition to these services, the core of Red Cross disaster relief is the assistance given to individuals and families affected by disaster to enable them to resume their normal daily activities independently.
113011
113012 The Red Cross also feeds emergency workers, handles inquiries from concerned family members outside the disaster area, provides blood and blood products to disaster victims, and helps those affected by disaster to access other available resources.
113013
113014 The American Red Cross also works hard to encourage preparedness by providing important literature on readiness. Many chapters also offer free classes to the general public.
113015
113016 ==2005 Hurricanes==
113017
113018 The 2005 Hurricane Season proved to be the most challenging disaster response the American Red Cross had ever seen in its history. Forcasting a major disaster before the landfall of [[Hurricane Katrina]], the organization enlisted 2,000 volunteers throughout the nation to be on a &quot;stand by&quot; deployment list.
113019
113020 During and after the Hurricanes Katrina, Wilma and Rita, the American Red Cross had opened 2,700 different shelters across 27 different states (and registered 3.4 million overnight stays), some of which were evacuation centers for those displaced by the disaster. A total of 225,000 Red Cross workers (95% of which were non-paid volunteers) were utilized to provide sheltering, casework, communication and assessment services throughout thse three hurricanes. The organization served 34 million meals and 30 million snacks to victims of the disasters and to rescue workers. Red Cross emergency financial assistance was provided to 1.4 million families, which encompassed a total of 4 million people. The Red Cross estimated that it would need USD $2.1 Billion to cover costs associated with the disaster.
113021
113022 No other non-governmental agency has provided such a significant amount assistance to the victims of the Hurricane Season of 2005.
113023
113024 On February 3rd 2006, 5 months after Katrina's landfall, the American Red Cross announced that it had met its fundraising goals, and would no longer engage in new 2005 Hurricane relief fundraising. The National organization urged the public to help other charities engaged in hurricane relief work, or to donate to their local Red Cross chapters.
113025
113026 ==September 11 controversy==
113027
113028 In the aftermath of the [[September 11, 2001 attacks]], the Red Cross, like many charitable organizations, solicited funds and blood donations for Red Cross activities for the victims of the attacks. Dr. Bernardine Healy, the president of the American Red Cross, appeared on telethons urging individuals to give generously. However, according to America's Blood Centers, the nonprofit consortium that provides the other 50% of the United States blood supply, no national blood drive was needed, since localized blood drives in the affected areas would be sufficient to meet the demand. The American Red Cross felt that the terrorist attacks were a sign of increased instability and urged people to donate blood, even though it wasn't needed at that time. In the end, some blood was destroyed unused.
113029
113030 Also, the American Red Cross created the ''Liberty Fund'' that was ostensibly designed for relief for victims of the terrorist attacks. However, when the fund was closed in October, after reaching the goals of donations, only 30% of the $547 million received was spent. Dr. Healy announced that the majority of the remainder of the money would be used to increase blood supply, improve telecommunications, and prepare for terror attacks in other parts of the country.
113031
113032 Many donors felt that they had donated specifically to the victims of the September 11 attacks and objected to the diversion of funds. Survivors complained of the bureaucratic process involved in requesting funds and the slow delivery of the checks to meet immediate needs. Congressional hearings were called and New York State Attorney General [[Eliot Spitzer]] investigated the Red Cross. In the end, the American Red Cross appointed former U.S. senator [[George_J._Mitchell|George Mitchell]] to handle distribution of the funds. Dr. Healy was forced to resign for her role in the situation, and the Red Cross pledged that all funds would go to directly benefit the victims of the September 11 attacks. Healy received a severance payment of $1,569,630 [http://www.give.org/reports/arc.asp]. In the end, out of the $961 million received, 71% went as cash assistance to those directly affected, 15% went for long term mental care and hospital care for the victims and people in the affected region, and 10% went for immediate disaster relief like shelters, food, and health care. The remaining 4% went for administration. [http://www.redcross.org/press/disaster/ds_pr/pdfs/libertyfund013103.pdf]
113033
113034 Significant changes to Red Cross fundraising collection and policy have since been implemented after the Liberty Fund debacle. Numerous watchdog organizations, such as Charity Navigator, have since given high praise to the improved system of honoring donor's intent and minimizing administration costs. During the Hurricane Katrina disaster, the American Red Cross issued a statement saying that 91 cents of every dollar donated specifically for the Hurricane Katrina disaster will go directly to disaster relief. This low overhead is remarkably low for such a large organization.
113035
113036 ==International services==
113037 The American Red Cross is involved with many international projects, such as the African Measles Initiative and the relief effort for the 2004 South Asia Tsunami disaster.
113038
113039 The Measles Initiative is a co-ordinated campaign with the US Centers for Disease Control, the World Health Organization and other public health groups, and aims to reduce measles deaths to zero in Africa. The campaign has achieved remarkable successes, in part due to the partnership with local goverments and vaccine producers which allow USD$ 1 to provide one child's measles vaccination. The program has been credited in reducing measles mortality and morbidity in the region, as well as boosting infrastructure for other vaccination and public health programs such as malaria prevention. The program has since been used in areas affected by the 2004 Asian Tsunami disaster.
113040
113041 The American Red Cross has a depot of pre-positioned emergency relief supplies in Dubai, Saudi Arabia, which was used to respond to the 2004 Asian tsunami disaster, as well as the 2005 Pakistan/South Asia Earthquakes.
113042
113043 The American Red Cross handles international tracing requests and searches for families who have been separated by war or disaster and are trying to locate relatives worldwide. This is not a genealogical service but one that attempts to establish contact between family members who knew each other at the time of the war related separation. Tracing services also provide the exchange of hand written Red Cross Messages between individuals and their relatives who may be refugees or prisoners of war. At any given time the American Red Cross tracing program is handling the aftermath of 20-30 wars, conflicts, etc. When new information from many former Soviet Union archives became available in 1990s, a special unit was created to handle World War II/Holocaust tracing services [http://english.its-arolsen.org/ (See International Tracing Service)]. The world-wide structure of national Red Cross, Red Crescent societies, the Magen David Adom of Israel and the International Committee of the Red Cross make this service possible.
113044
113045 ==Armed Forces Emergency Services==
113046 Although not a government agency, the American Red Cross provides important services to the United States military. The most notable service is emergency family communications, where families can contact the Red Cross to send important family messages (e.g. death in the family, or new birth). In such cases, the Red Cross can also act as a verifying agency of the situation. The American Red Cross works closely with other military societies, such as the Veteran's Administration, to provide other services to soldiers and their families. The American Red Cross is not involved with [[prisoners of war]]; rather, these are monitored by the [[International Committee of the Red Cross]], an international rather than national body.
113047
113048 A persistent comment by many veterans of World War II is their memory of the American Red Cross selling &quot;comfort items&quot; such as toothpaste and cigarettes to the troops. The American Red Cross acknowledges that they did indeed sell such items, and the unfortunate repercussions have marred the agency's name for many years. In response to such allegations, the American Red Cross responds with these facts, indicating that the organization did not initially want to charge for such products:
113049
113050 * At the request of the Secretary of War, the American Red Cross charged a nominal fee for coffee and doughnuts, as well as for lodging, barber and valet services, in stationary military installations overseas. It did not charge in mobile facilities such as Clubmobiles.
113051
113052 * This request was made because other agencies working overseas were compelled to charge for similar items. Giving these items free to U.S. service members would, it was feared, demoralize Allied troops.
113053
113054 * The official War Department recommendation was made in a letter dated May 20, 1942, written by Mr. Stimson, Secretary of War, and addressed to the Chairman of The American National Red Cross.
113055
113056 == Clara Barton National Historic Site ==
113057 In [[1975]], [[Clara Barton National Historic Site]] was established as a unit of the [[National Park Service]] at her Glen Echo, Maryland home near [[Washington, D.C.]] The first National Historic Site dedicated to the accomplishments of a woman, it preserves the early history of the American Red Cross and the last home of its founder. Clara Barton spent the last 15 years of her life in her Glen Echo home, and it served as an early headquarters of the American Red Cross as well.
113058
113059 The National Park Service has restored eleven rooms, including the Red Cross offices, parlors and Miss Barton's bedroom. Visitors to Clara Barton National Historic Site can gain a sense of how Miss Barton lived and worked surrounded by all that went into her life's work. Visitors to the site are led through the three levels on a guided tour emphasizing Miss Barton's use of her unusual home, and come to appreciate the site in the same way visitors did in Clara Barton's lifetime. [http://www.nps.gov/clba/house.htm]
113060
113061 ==Further reading==
113062 *[[Foster Rhea Dulles]] ''American Red Cross'' (Harper &amp; Brothers, 1950)
113063
113064 ==See also==
113065 *[[Red Cross]]
113066 *[[First aid]]
113067 *[[cardiopulmonary resuscitation|CPR]]
113068 *[[List of Red Cross and Red Crescent Societies]]
113069 *[[Johnstown Flood]]
113070
113071 ==External links==
113072 *[http://www.redcross.org Official website]
113073 *[https://www.givelife.org Blood Donations]
113074 *[http://www.blitzkriegbaby.de/ ARC history and WWII women's uniforms in color] &amp;mdash; WWII US women's service organizations (ARC, WAC, WAVES, ANC, NNC, USMCWR, PHS, SPARS and WASP)]
113075
113076 [[Category:American charities]]
113077 [[Category:Red Cross]]</text>
113078 </revision>
113079 </page>
113080 <page>
113081 <title>Alexius</title>
113082 <id>1887</id>
113083 <revision>
113084 <id>21780908</id>
113085 <timestamp>2005-08-25T04:48:11Z</timestamp>
113086 <contributor>
113087 <username>Boojum</username>
113088 <id>66698</id>
113089 </contributor>
113090 <comment>rv blanking</comment>
113091 <text xml:space="preserve">There have been several people named '''Alexius'''
113092
113093 * [[Alexius I Comnenus]] ([[1048]]-[[1118]]), [[Byzantine emperor]]
113094 * [[Alexius II Comnenus]] ([[1167]]-[[1183]]), Byzantine emperor
113095 * [[Alexius III]], Byzantine emperor
113096 * [[Alexius IV]], Byzantine emperor
113097 * [[Alexius V]], Byzantine emperor
113098 * [[Alexius I of Trebizond]], [[Empire of Trebizond|Emperor of Trebizond]]
113099 * [[Alexius II of Trebizond]], Emperor of Trebizond
113100 * [[Alexius III of Trebizond]], Emperor of Trebizond
113101 * [[Alexius IV of Trebizond]], Emperor of Trebizond
113102 * [[Alexius Mikhailovich]] ([[1629]]-[[1676]]), [[tsar]] of [[Russia]]
113103 * [[Alexius Petrovich]] ([[1690]]-[[1718]]), [[Russia]]n tsarevich
113104 * [[Alexius, Metropolitan of Moscow]], ([[1354]]-[[1378]])
113105 * [[Patriarch Alexius II]] ([[1990]]-present), [[Patriarch of Moscow]] and all [[Russia]]
113106 * [[Saint Alexius]]
113107
113108 {{disambig}}
113109
113110 [[nl:Alexius]]</text>
113111 </revision>
113112 </page>
113113 <page>
113114 <title>Ban on assault rifles</title>
113115 <id>1889</id>
113116 <revision>
113117 <id>15900350</id>
113118 <timestamp>2005-03-11T01:58:54Z</timestamp>
113119 <contributor>
113120 <username>Maveric149</username>
113121 <id>62</id>
113122 </contributor>
113123 <minor />
113124 <text xml:space="preserve">#REDIRECT [[Federal assault weapons ban]]</text>
113125 </revision>
113126 </page>
113127 <page>
113128 <title>American English</title>
113129 <id>1890</id>
113130 <revision>
113131 <id>41910104</id>
113132 <timestamp>2006-03-02T15:32:53Z</timestamp>
113133 <contributor>
113134 <username>Adrian Robson</username>
113135 <id>265480</id>
113136 </contributor>
113137 <comment>&quot;far be it from me&quot; not a good example as this used all the time in Britain</comment>
113138 <text xml:space="preserve">{{English dialects}}
113139 '''American English''' ('''AmE''') is the [[dialect]] of the [[English language]] used mostly in the [[United States|United States of America]]. It is estimated that approximately two thirds of [[first language|native speakers]] of English live in the [[United States]].{{ref|Crystal}} American English is also sometimes called '''United States English''' or '''U.S. English'''.
113140
113141 ==History==
113142 English was inherited from [[British colonization of the Americas|British colonization]]. The first wave of English-speaking settlers arrived in North America in the 17th century. In that century, there were also speakers in North America of the [[Dutch language|Dutch]], [[French language|French]], [[German language|German]], myriad [[Native American languages|Native American]], [[Spanish language|Spanish]], [[Swedish language|Swedish]], [[Scots language|Scots]], [[Welsh language|Welsh]], [[Irish language|Irish]], [[Scottish Gaelic language|Scottish Gaelic]] and [[Finnish language|Finnish]] languages.
113143
113144 ==Phonology==
113145 {{IPA notice}}
113146 In many ways, compared to [[British English]], American English is conservative in its [[phonology]]. The conservatism of American English is largely the result of the fact that it represents a mixture of various dialects from the British Isles. Dialect in North America is most distinctive on the [[East Coast of the United States|East Coast]] of the continent; this is largely because these areas were in contact with England, and imitated prestigious varieties of British English at a time when those varieties were undergoing changes. The interior of the country was settled by people who were no longer closely connected to England, as they had no access to the ocean during a time when journeys to Britain were always by sea. As such the inland speech is much more homogeneous than the East Coast speech, and did not imitate the changes in speech from England.
113147
113148 [[Image:Non rhotic-whites-usa.png|thumb|left|The red areas are those where non-rhotic pronunciations are found among some whites in the [[United States]]. [[African American Vernacular English|AAVE]]-influenced non-rhotic pronunciations may be found among blacks throughout the country. Map based on Labov, Ash, and Boberg (2006: 48).]]
113149 Most North American speech is [[rhotic and non-rhotic accents|rhotic]], as English was in most places in the 17th century. Rhoticity was further supported by [[Hiberno-English]], [[Scottish English]], and [[West Country dialects|West Country]] English. In most varieties of [[North American English]], the sound corresponding to the letter &quot;R&quot; is a [[retroflex]] [[semivowel]] rather than a trill or a tap. The loss of syllable-final ''r'' in North America is confined mostly to the accents of [[Boston accent|eastern New England]], [[New York-New Jersey English|New York City]] and surrounding areas, South [[Philadelphia]], and the coastal portions of the [[Southern American English|South]]. Dropping of syllable-final ''r'' sometimes happens in natively rhotic dialects if ''r'' is located in unaccented syllables or words and the next syllable or word begins in a consonant. In England, lost 'r' was often changed into {{IPA|[ə]}} ([[schwa]]), giving rise to a new class of falling [[diphthong]]s. Furthermore, the 'er' sound of (stressed) ''fur'' or (unstressed) ''butter'', which is represented in [[International Phonetic Alphabet|IPA]] as stressed {{IPA|[ɝ]}} or unstressed {{IPA|[ɚ]}} is realized in American English as a [[monophthong]]al [[r-colored vowel]]. This does not happen in the non-rhotic varieties of North American speech.
113150
113151 Some other British English changes in which most North American dialects do not participate:
113152
113153 * The shift of {{IPA|[ÃĻ]}} to {{IPA|[ɑ]}} (the so-called &quot;[[broad A]]&quot;) before {{IPA|[f], [s], [θ], [ð], [z], [v]}} alone or preceded by {{IPA|[n]}}. This is the difference between the British [[Received Pronunciation]] and American pronunciation of ''bath'' and ''dance''. In the United States, only linguistically conservative eastern-New-England speakers took up this innovation.
113154
113155 * The shift of intervocalic {{IPA|[t]}} to glottal stop {{IPA|[ʔ]}}, as in {{IPA|/bɒʔəl/}} for ''bottle''. This change is not universal for British English (and in fact is not considered to be part of [[Received Pronunciation]]), but it does not occur in most North American dialects. [[Newfoundland English]] and the dialect of [[New Britain, Connecticut]] are notable exceptions.
113156
113157 On the other hand, North American English has undergone some sound changes not found in Britain, at least not in standard varieties. Many of these are instances of [[phonemic differentiation]] and include
113158
113159 * The [[Phonological history of the low back vowels#Father-bother merger|merger of {{IPA|[ɑ]}} and {{IPA|[ɒ]}}]], making ''father'' and ''bother'' rhyme. This change is nearly universal in North American English, occurring almost everywhere except for parts of eastern New England, like the [[Boston accent]].
113160
113161 * The replacement of the lot vowel with the strut vowel in ''what'', ''was'', ''of'', ''from'', ''everybody'', ''nobody'', ''somebody'', ''anybody'', ''because'', and in some dialects ''want''.
113162
113163 * The merger of {{IPA|[ɒ]}} and {{IPA|[ɔ]}}. This is the so-called [[Phonological history of the low back vowels#Cot-caught merger|cot-caught merger]], where ''cot'' and ''caught'' are [[homophone]]s. This change has occurred in eastern New England, in [[Pittsburgh English|Pittsburgh]] and surrounding areas, and from the [[Great Plains]] westward.
113164
113165 * [[English-language vowel changes before historic r|Vowel merger]] before intervocalic {{IPA|/r/}}. Which (if any) vowels are affected varies between dialects.
113166
113167 * The merger of {{IPA|[ʊɹ]}} and {{IPA|[ɝ]}} after [[palatal consonant|palatals]] in some words, so that ''cure'', ''pure'', ''mature'' and ''sure'' rhyme with ''fir'' in some speech registers for some speakers.
113168
113169 * [[English consonant cluster reductions#Yod-dropping|Dropping]] of {{IPA|[j]}} after [[alveolar consonant]]s so that ''new'', ''duke'', ''Tuesday'', ''suit'', ''resume'', ''lute'' are pronounced {{IPA|/nuː/}}, {{IPA|/duːk/}}, {{IPA|/tuːzdeÉĒ/}}, {{IPA|/suːt/}}, {{IPA|/ÉšÉĒzuːm/}}, {{IPA|/luːt/}}.
113170
113171 * [[Phonological history of English short A#ÃĻ-tensing|ÃĻ-tensing]] in environments that vary widely from accent to accent. In some accents, particularly those from [[Philadelphia, Pennsylvania|Philadelphia]] to [[New York City]], {{IPA|[ÃĻ]}} and {{IPA|[eə]}} can even contrast sometimes, as in ''Yes, I '''can''''' {{IPA|[kÃĻn]}} vs. ''tin '''can''''' {{IPA|[keən]}}.
113172
113173 * Laxing of {{IPA|/e/}}, {{IPA|/i/}} and {{IPA|/u/}} to {{IPA|/ɛ/}}, {{IPA|/ÉĒ/}} and {{IPA|/ʊ/}} before {{IPA|/Éš/}}, causing pronunciations like {{IPA|[pɛɹ]}}, {{IPA|[pÉĒÉš]}} and {{IPA|[pjʊɹ]}} for ''pair'', ''peer'' and ''pure''.
113174
113175 * The [[flapping]] of intervocalic {{IPA|/t/}} and {{IPA|/d/}} to [[alveolar tap]] {{IPA|[Éž]}} before reduced vowels. The words ''ladder'' and ''latter'' are mostly or entirely homophonous, possibly distinguished only by the length of preceding vowel. For some speakers, the merger is incomplete and 't' before a reduced vowel is sometimes not tapped following {{IPA|[eÉĒ]}} or {{IPA|[ÉĒ]}} when it represents underlying 't'; thus ''greater'' and ''grader'', and ''unbitten'' and ''unbidden'' are distinguished. Even among those words where {{IPA|/t/}} and {{IPA|/d/}} are flapped, words that would otherwise be homophonous are, for some speakers, distinguished if the flapping is immediately preceded by the diphthongs {{IPA|/ɑÉĒ/}} or {{IPA|/ɑʊ/}}; these speakers tend to pronounce ''writer'' with {{IPA|[əÉĒ]}} and ''rider'' with {{IPA|[ɑÉĒ]}}. This is called [[Canadian raising]]; it is general in [[Canadian English]], and occurs in some northerly versions of American English as well (often just applying to the diphthong {{IPA|/ɑÉĒ/}}, but not to {{IPA|/ɑʊ/}}).
113176
113177 * Both intervocalic {{IPA|/nt/}} and {{IPA|/n/}} may be realized as {{IPA|[n]}} or {{IPA|[ÉžĖƒ]}}, making ''winter'' and ''winner'' homophones. This does not occur when the second syllable is stressed, as in ''entail''.
113178
113179 * The [[Phonological history of the high front vowels#Pin-pen merger|pin-pen merger]], by which {{IPA|[ɛ]}} is raised to {{IPA|[ÉĒ]}} before [[nasal consonant]]s, making pairs like ''pen''/''pin'' homophonous. This merger originated in [[Southern American English]] but is now widespread in the Midwest and West as well.
113180
113181 Some mergers found in most varieties of both American and British English include:
113182
113183 * The [[English-language vowel changes before historic r#Horse-hoarse merger|horse-hoarse merger]] of the vowels {{IPA|[ɔ]}} and {{IPA|[oʊ]}} before 'r', making pairs like ''horse/hoarse'', ''corps/core'', ''for/four'', ''morning/mourning'' etc. [[homophones]].
113184
113185 * The [[English consonant cluster reductions#Wine-whine merger|wine-whine merger]] making pairs like ''wine/whine'', ''wet/whet'', ''Wales/whales'', ''wear/where'' etc. [[homophone]]s, in most cases eliminating {{IPA|/ʍ/}}, the [[voiceless labiovelar fricative]]. Many older varieties of southern and western American English still keep these distinct, but the merger appears to be spreading.
113186
113187 ==Differences in British English and American English==
113188 ''Main article'': [[American and British English differences]]
113189
113190 American English has both spelling and grammatical differences from [[British English]] (or [[Commonwealth English]]), some of which were made as part of an attempt to rationalize the English spelling used by British English at the time. Unlike many 20th century [[language reform]]s (for example, [[Turkey]]'s alphabet shift, [[Norway]]'s spelling reform) the American [[spelling]] changes were not driven by government, but by textbook writers and dictionary makers.
113191
113192 The first American dictionary was written by [[Noah Webster]] in [[1828]]. At the time the United States was a relatively new country and Webster's particular contribution was to show that the region spoke a different dialect from Britain, and so he wrote a dictionary with many spellings differing from the standard. Many of these changes were initiated unilaterally by Webster.
113193
113194 Webster also argued for many &quot;simplifications&quot; to the idiomatic spelling of the period. Somewhat ironically, many, although not all, of his simplifications fell into common usage alongside the original versions with simple spelling modifications.
113195
113196 Many words are shortened and differ from other versions of English. Spellings such as ''center'' are used instead of ''centre'' in other versions of English. Conversely, American English sometimes favors words that are [[Morphology (linguistics)|morphologically]] more complex, whereas British English uses clipped forms, such as AmE ''transportation'' and BrE ''transport'' or where the British form is a [[back-formation]], such as AmE ''burglarize'' and BrE ''burgle'' (from ''burglar'').
113197
113198 ==English words that arose in the U.S.==
113199
113200 A number of words that arose in the United States have become common, to varying degrees, in English as it is spoken internationally. Although its origin is disputed, most etymologies of &quot;[[Okay|OK]]&quot; place its widespread usage in America of the early 19th century. Other American introductions include &quot;belittle,&quot; &quot;[[gerrymander]]&quot; (from [[Elbridge Gerry]]), &quot;[[blizzard]]&quot;, &quot;[[teenager]]&quot;, and many more.
113201
113202 ==English words obsolete outside the U.S.==
113203
113204 A number of words that originated in the English of the British Isles are still in everyday use in North America, but are no longer used in most varieties of British English. The most conspicuous of these words are ''[[autumn|fall]]'', the season; ''to quit'', as in &quot;to cease an activity&quot; (as opposed to &quot;to leave a location&quot; as still used in most other Anglophone countries); and ''gotten'' as a [[past participle]] of ''get''. Americans are more likely than Britons to name a [[stream]] a ''creek'' if its breadth or volume is judged insufficient for it to be a ''[[river]]''. The word ''[[diaper]]'' goes back at least to [[William Shakespeare|Shakespeare]], and usage was maintained in the U.S. and Canada, but was replaced in the British Isles with ''nappy''.
113205
113206 Some of these words are still used in various dialects of the British Isles, but not in formal standard British English. Many of these older words have cognates in [[Lowland Scots]].
113207
113208 The [[subjunctive mood]] (America, America, God '''shed''' His grace on thee, and '''crown''' thy good... ) is livelier in North American English than it is in British English; it appears in some areas as a spoken usage, and is considered obligatory in more formal contexts in American English. British English has a strong tendency to replace subjunctives with [[auxiliary verb]] constructions.
113209
113210 ==Regional differences==
113211
113212 ''Main article: [[American English regional differences]]''
113213
113214 Spoken American English is not homogeneous throughout the country, and various regional and ethnic variants exist. These differences affect both pronunciation and the lexicon, and can make one accent a little difficult for speakers of another accent to understand. [[General American]] is the name given to any American accent that is relatively free of noticeable regional influences. It enjoys high prestige among Americans, but is not a [[standard language|standard accent]] in the way that [[Received Pronunciation]] is in [[England]].
113215
113216 ==See also==
113217 *[[Regional accents of English speakers]]
113218 *[[Regional Vocabularies of American English]]
113219 *[[Dictionary of American Regional English]]
113220 *[[International Phonetic Alphabet for English]]
113221 *[[IPA chart for English]]
113222 *Dialects: [[African American Vernacular English]], [[Liberian English]] (a descendant of American English)
113223 *[[UK-US Heterologues A-Z]]
113224 *[[List of dialects of the English language]]
113225
113226 ==Further reading==
113227 *&lt;cite&gt;The American Language 4th Edition, Corrected and Enlarged&lt;/cite&gt;, [[H. L. Mencken]], Random House, 1948, hardcover, ISBN 0394400755
113228 *&lt;cite&gt;How We Talk: American Regional English Today&lt;/cite&gt;, Allan Metcalf, Houghton Mifflin Company, 2000, softcover, ISBN 0618043624
113229 ** 1st and 2nd supplements of above.
113230 * Craig M. Carver. ''American Regional Dialects: A Word Geography''. Ann Arbor: University of Michigan Press, 1987. ISBN 0472100769
113231
113232 ==References==
113233 {{note|Crystal}} [[David Crystal|Crystal, David]] (1997). ''English as a Global Language'', Cambridge: Cambridge University Press. ISBN 0521530326.
113234 *[[William Labov|Labov, William]], Sharon Ash, and Charles Boberg (2006). ''The Atlas of North American English'', Berlin: Mouton de Gruyter. ISBN 3110167468.
113235
113236 ==External links==
113237 {{Wiktionary}}
113238 *[http://www.pbs.org/speak/ Do You Speak American]: PBS special
113239 *[http://cfprod01.imt.uwm.edu/Dept/FLL/linguistics/dialect/ Dialect Survey] of the United States, by Bert Vaux et al., [[Harvard University]]. The answers to various questions about pronunciation, word use etc. can be seen in relationship to the regions where they are predominant.
113240 *[http://www.ling.upenn.edu/phono_atlas/home.html Phonological Atlas of North America] at the [[University of Pennsylvania]]
113241 *[http://students.csci.unt.edu/~kun Guide to Regional English Pronunciation] includes working versions of the Telsur Project maps from the Phonological Atlas site
113242 *[http://www.peak.org/~jeremy/dictionary/ The Americanâ€ĸBritish Britishâ€ĸAmerican Dictionary]
113243 *[http://classweb.gmu.edu/accent/ Speech Accent Archive]
113244 *[http://www.world-english.org/ World English Organization]
113245 *[http://www.esuus.org English Speaking Union of the United States]
113246 * [http://australianenglish1.narod.ru Australian American British English Lexical Differences In One Table And More]
113247 * [http://www.englisch-hilfen.de/en/words_list/british_american.htm British, American, Australian English - Lists and Online Exercises]
113248 * [http://www.globalenglishsalon.com/ Listen to spoken American English (midwest}]
113249
113250 [[Category:American English|*]]
113251 [[Category:Languages of the United States|English]]
113252 [[Category:North American English]]
113253 [[Category:Forms of English]]
113254
113255 [[de:Amerikanisches Englisch]]
113256 [[fr:Anglais amÊricain]]
113257 [[ko:미ęĩ­ ė˜ė–´]]
113258 [[it:Dialetto inglese americano]]
113259 [[he:אנגלי×Ē אמריקני×Ē]]
113260 [[hu:Amerikai angol nyelv]]
113261 [[simple:American English]]
113262 [[fi:Amerikanenglanti]]
113263 [[sv:Amerikansk engelska]]
113264 [[th:ā¸­ā¸ąā¸‡ā¸ā¸¤ā¸Šā¸­āš€ā¸Ąā¸Ŗā¸´ā¸ā¸ąā¸™]]
113265 [[zh:įžŽå›Ŋč‹ąč¯­]]</text>
113266 </revision>
113267 </page>
113268 <page>
113269 <title>Albert Spalding</title>
113270 <id>1893</id>
113271 <revision>
113272 <id>38042782</id>
113273 <timestamp>2006-02-03T20:12:08Z</timestamp>
113274 <contributor>
113275 <username>Floydspinky71</username>
113276 <id>481511</id>
113277 </contributor>
113278 <text xml:space="preserve">[[Image:Al_Spalding_Baseball.jpg|right|thumb|Al Spalding's sporting goods company made a lasting impact on baseball.]]
113279 '''Albert Goodwill Spalding''' ([[Byron, Illinois|Byron]], [[Illinois]] [[September 2]], [[1850]] &amp;ndash; [[September 9]], [[1915]] in [[Point Loma, California|Point Loma]], [[California]]) was a professional [[baseball]] player and famous [[Sports equipment|sporting goods]] manufacturer founder.
113280
113281 Having played baseball throughout his youth, Spalding first played competitively with the [[Rockford, Illinois|Rockford]] Pioneers, a youth team, whom he joined in [[1865]]. After pitching his team to a 26-2 victory over a local men's amateur team (the Mercantiles), he was approached by another, the Forest Citys, for whom he played for two years. In the autumn of [[1867]] he accepted a $40 per week contract, nominally as a clerk, but really to play professionally for the Chicago Excelsiors, a not uncommon arrangement contrary to the rules of the time. Following the formation of the [[National Association of Professional Baseball Players|National Association]], baseball's first professional league, in [[1871]], Spalding joined the [[Atlanta Braves|Boston Red Stockings]] (a different club to the modern Red Sox) and was highly successful; winning 205 games (and losing only 53) as a pitcher and batting .323 as a hitter. After the NA folded, he joined the [[Chicago Cubs|Chicago White Stockings]] of the newly formed [[National League]] in 1876, winning 47 games as the club captured the league's inaugural pennant. Spalding retired from baseball two years later.
113282
113283 {{MLB HoF}}
113284 Retired from the game, he and his brother opened a sporting goods store in Chicago, obtaining the rights to produce the official National League ball. The business, which grew rapidly over the next 25 years, with 14 stores by 1901, expanded from retail into manufacturing baseball equipment and is still a going concern. In 1900 Spalding was appointed by [[William McKinley|President McKinley]] as the USA's Commissioner at that year's [[Summer Olympic Games]]. Seven years later, his prompting would lead to the founding of the commission that (erroneously) declared baseball to be the invention of [[Abner Doubleday]].
113285
113286 Receiving the archives of the late [[Henry Chadwick]] in 1908, Spalding combined these records with his own memories (and biases) to write ''[[Americas National Game]]'' (published 1911) which, despite its flaws, was probably the first scholarly account of the [[history of baseball]].
113287
113288 He was elected to the [[Baseball Hall of Fame]] by the Old Timer's Committee in [[Baseball Hall of Fame balloting, 1939|1939]].
113289
113290 {{start box}}
113291 {{succession box | title=[[Chicago Cubs|Chicago White Stockings Manager]] | before=''First Manager'' | years=1876-1877| after= [[Bob Ferguson (baseball manager)|Bob Ferguson]]
113292 }}
113293 {{end box}}
113294
113295 ==External links==
113296 * [http://www.baseballhalloffame.org/hofers_and_honorees/hofer_bios/spalding_al.htm Baseball Hall Of Fame]
113297 * [http://www.spalding.com Official webpage of Spalding's company]
113298 * {{baseball-reference|id=s/spaldal01}}
113299
113300 [[Category:1850 births|Spalding, Albert]]
113301 [[Category:1915 deaths|Spalding, Albert]]
113302 [[Category:Baseball Hall of Fame|Spalding, Albert]]
113303 [[Category:19th century baseball players|Spalding, Albert]]
113304 [[Category:Baseball executives|Spalding, Albert]]
113305 [[Category:Baseball managers|Spalding, Albert]]</text>
113306 </revision>
113307 </page>
113308 <page>
113309 <title>Africa Alphabet</title>
113310 <id>1894</id>
113311 <revision>
113312 <id>36796204</id>
113313 <timestamp>2006-01-26T15:08:52Z</timestamp>
113314 <contributor>
113315 <username>Moyogo</username>
113316 <id>44443</id>
113317 </contributor>
113318 <minor />
113319 <text xml:space="preserve">The '''Africa Alphabet''' was developed in [[1928]] under the lead of [[Diedrich Westermann]]. He developed it with a group of [[Africanist]]s at the International Institute of African Languages and Cultures (later the [[International African Institute|IAI]]) in London. Its aim was to be able to write all the [[African languages]] for practical and scientific purposes.
113320
113321 == Characters ==
113322 {|class=&quot;wikitable&quot;
113323 |-
113324 | '''lowercase''' || a || b || ɓ || c || d || ɖ || e || ɛ || Į || f || ƒ || g || ÉŖ || h || x || i || j || k
113325 |- style=&quot;border-bottom: solid&quot;
113326 | '''uppercase''' || A || B || Ɓ || C || D || Ɖ || E || Ɛ || Ǝ || F || Ƒ || G || Ɣ || H || X || I || J || K
113327 |-
113328 | '''lowercase''' || l || m || n || ŋ || o || ɔ || p || r || s || ʃ || t || u || v || ʋ || w || y || z || ʒ
113329 |-
113330 | '''uppercase''' || L || M || N || Ŋ || O || Ɔ || P || R || S || ÆŠ || T || U || V || Æ˛ || W || Y || Z || Æˇ
113331 |}
113332
113333
113334 ==See also==
113335 [[Standard Alphabet by Lepsius]], [[African reference alphabet]]
113336
113337 ==References==
113338
113339 ''The Blackwell Encyclopedia of Writing Systems'', Florian Coulmas, 1996, Blackwell, Oxford
113340
113341 IIACL [http://www.bisharat.net/Documents/poal30.htm ''Practical Orthography of African Languages''], Revised Edition, London: Oxford University Press, 1930
113342
113343 {{writingsystem-stub}}
113344
113345 [[Category:Alphabetic writing systems]]
113346
113347 [[de:Afrika-Alphabet]]
113348 [[fr:Alphabet international africain]]</text>
113349 </revision>
113350 </page>
113351 <page>
113352 <title>Acquire</title>
113353 <id>1896</id>
113354 <revision>
113355 <id>41752318</id>
113356 <timestamp>2006-03-01T14:14:44Z</timestamp>
113357 <contributor>
113358 <ip>80.61.63.34</ip>
113359 </contributor>
113360 <comment>/* Variants */</comment>
113361 <text xml:space="preserve">[[Image:acquirecover.jpg|200px|right|]]
113362 '''Acquire''' is an abstract [[board game]] of investing in [[hotel]] chains. It was designed by the renowned game inventor [[Sid Sackson]] in the [[1960s]], and is currently owned by [[Avalon Hill]]. It is well-suited to family play because the rules are simple, no one gets eliminated, and each game takes only about 75 minutes. On the other hand, it also attracts hard core gamers because there are many opportunities for skilled players to gain an advantage over less-skilled players. The random drawing of tiles keeps the game fresh for everyone and gives weaker players an opportunity to triumph, but does not prevent stronger players from winning most of the time.
113363
113364 ==Equipment==
113365 * The game board, a rectangular array with room for one tile per location, as in [[Scrabble]]. The twelve columns are labeled 1 to 12, and the nine rows labeled from A to I.
113366 * 108 wooden tiles ( later versions having plastic ), one for each space of the board. Each tile has its location such as '''7A''' or '''1H''' printed on one side; that is the only location in which the tile may be played. Each tile represents a hotel, and adjacent tiles represent hotel chains.
113367 * Six racks in which the players hold the tiles they have drawn.
113368 * Seven markers for hotel chains: two indicating relatively cheap chains, two indicating relatively expensive chains, and three indicating medium cost chains.
113369 * Twenty-five shares of stock for each of the seven hotel chains.
113370 * A supply of play money.
113371
113372 ==Rules==
113373 From three to six may play comfortably. It is possible to play with two, but not very interesting. Standard tournament games are played with four.
113374
113375 The game starts with six tiles picked randomly and placed in their locations. This doubles as a convenient way to determine which player goes first: each player draws one of the tiles for the initial setup, and the player with the lowest-numbered tile goes first.
113376
113377 Each player begins the game with $6000 in cash and six tiles picked at random for their starting racks. On each turn of the game, the player whose turn it is
113378 # must play one tile
113379 # must deal with the merger or founding of a new company if one results
113380 # may buy stock
113381 # must draw one tile
113382
113383 Whenever a player places a tile horizontally or vertically adjacent to a tile which is not already part of a hotel chain, that player has the option of founding a new hotel chain, unless all seven hotel chains are already in play. The player may choose to found any chain not already in play, and receives one share of stock in the new chain at no charge.
113384
113385 Each player may, after playing a tile on his turn, purchase up to three shares of stock in existing hotel chains. Only the player whose turn it is may buy stock.
113386
113387 When a new tile is placed adjacent to an existing hotel chain, the chain becomes larger and its stock increases in value and price. When a new tile is placed adjacent to tiles from two or more different chains, those chains merge into a single hotel chain, with the largest chain taking over. If there is a tie for the largest chain, the player placing the merging tile chooses which of those will take over.
113388
113389 When a hotel chain is merged out of existence, the players with the most and second-most shares receive cash bonuses. Then each player decides what to do with their shares in the now-defunct chain. They may:
113390 # Trade them in for cash at face value
113391 # Trade them in at a ratio of two to one for shares of the chain that took over
113392 # Keep the shares in the hopes that the hotel chain will be founded again later.
113393
113394 Hotel chains with eleven or more tiles are deemed too big to be merged out. A tile which would connect two chains of eleven or more is unplayable, and may be placed face-down in its location at any time in exchange for a fresh tile. The game ends when one hotel chain reaches forty-one tiles, or when all chains are too large to merge. At the end of the game, all hotel chains pay bonuses to the largest shareholders as if they were being merged out, and all shares of stock are cashed in for face value. The richest player wins.
113395
113396 ==Strategy==
113397 [[Cash flow]] is the critical element of [[strategy]]. On one hand there is pressure to buy stock in order to become the largest shareholder and receive a bonus, but on the other hand holding only stock and no cash prevents one from buying into lucrative new chains as they are founded. The winner is often not the majority stockholder in the hotel chain which acquires all the others, but the player who contrives to have several of his small chains acquired while holding a majority.
113398
113399 The mergers of hotel chains are the critical junctures of the game because those are the only times cash comes to the players. Stock can't be traded or sold except during a merger. On the other hand, some games (and some players) will be more cash rich than others, which decreases the importance of holding cash and increases the importance of holding stock. At such times it may be wiser to hold onto stock or to trade it in two for one.
113400
113401 The cash flow of a game is greatly affected by the number of players involved. All players can sell during a merger, but only the player whose turn it is can buy stock, so five- or six-player games have relatively many opportunities to sell, whereas three- player games have relatively many opportunities to buy. Experts consider the four-player game the best for creating critical cash flow decisions.
113402
113403 Whenever cash is plentiful, which tends to happen towards the middle of the game, but will happen at different times for different players, and sooner or later depending on the relative number of mergers, it becomes more important to think about the shareholder bonuses when the game ends. One must consider that all twenty-five shares in each company will probably be bought before the players run out of cash.
113404
113405 At the crux between the game-end bonuses and the short-term need for cash is the decision whether to increase the size of a chain by playing next to it, or to withhold adjacent tiles. If your chain doesn't grow, your shares don't increase in value, and you could conceivably be forced to cash out at exactly the price you bought in at. On the other hand, if you play all the adjacent tiles you have, you will not be able to create mergers when you need them; the timing will be in someone else's hands.
113406
113407 ==Variants==
113408 * Some players play with all information (except the tiles held by players) open at all times, while others play that the cash and stock holdings of players are kept secret. The official rules do not clearly prefer either variant.
113409 * There is also a variant of the game in which play is simultaneous, instead of players taking turns. For each phase of a turn, the players prepare their moves and then announce them when everyone is ready. If players try to make moves that conflict with each other (such as two people trying to buy stock in the same chain when only one share is available), they must bid cash to decide the outcome. This variant tends to be faster-paced and less predictable than the standard rules.
113410 * One variant is to begin play with all tiles, except the ones the players have on hand, placed out on the board in their proper places, but placed upside down. The player then picks freely any one of these tiles at the end of his turn. This decreases the element of luck in game play.
113411 * A nice touch is to grant a player who just created a new chain a one-time opportunity to buy four shares of that chain instead of three (no shares of other chains may be bought). This makes for an extra incentive to start a new chain.
113412
113413 ==External links==
113414 * [http://www.boardgamegeek.com/game/5 Acquire information at boardgamegeek.com]
113415 [[Category:Economic simulation board games]]
113416 [[de:Acquire]]
113417 [[zh:Acquire]]</text>
113418 </revision>
113419 </page>
113420 <page>
113421 <title>Australian English</title>
113422 <id>1897</id>
113423 <revision>
113424 <id>42096734</id>
113425 <timestamp>2006-03-03T20:28:52Z</timestamp>
113426 <contributor>
113427 <ip>62.31.55.223</ip>
113428 </contributor>
113429 <comment>/* Cultivated Australian English */ removed blank line</comment>
113430 <text xml:space="preserve">{{English_dialects}}
113431 '''Australian English''' ('''AuE''') is the form of the [[English language]] used in [[Australia]].
113432
113433 ==Relationship to other varieties of English==
113434 Australian English began to diverge from [[British English]] soon after the foundation of the [[colony]] of [[New South Wales]] (NSW) in [[1788]]. The settlement was intended originally as a [[penal colony]] for British [[convict]]s. They were mostly people from large [[England|English]] cities, such as [[Cockney]]s. In [[1827]], [[Peter Cunningham]], in his book ''Two Years in New South Wales'', reported that native-born white Australians spoke with a distinctive accent and vocabulary, albeit with a strong Cockney influence. (The transportation of convicts to Australian colonies continued until 1868.) A much larger wave of immigration, as a result of the first [[Australian gold rushes]], in the [[1850s]], also had a significant influence on Australian English, including large numbers of people who spoke English as a second language. Since that time, Australian English has borrowed increasingly from external sources.
113435
113436 The so-called &quot;[[Americanisation]]&quot; of Australian English &amp;mdash; signified by the borrowing of words, terms and usages from [[American English]] &amp;mdash; which began during the goldrushes, was accelerated by a massive influx of US military personnel during [[World War II]]. The large-scale importation of [[television]] programs and other [[mass media]] content from the [[United States]], from the 1950s onwards, has also had a significant effect. As a result, for example, Australians use the word ''truck'' instead of the British ''lorry''.
113437
113438 Due to their shared history and geographical proximity, Australian English is most similar to [[New Zealand English]]. However, the difference between the two spoken versions is obvious to people from either country, if not to a casual observer from a third country. The vocabulary used also exhibits some striking differences.
113439
113440 ===Spelling===
113441 The exposure to the different spellings of British and American English leads to a certain amount of spelling variation such as ''organise/organize''. British spelling is generally preferred, although some words are usually written in the American form, such as ''program'' and ''jail'' rather than ''programme'' and ''gaol'' (although commonly one could be 'jailed' in a 'gaol'). Publishers, schools, universities and governments typically use the [[Macquarie Dictionary]] as a standard spelling reference. Both -ise and -ize are accepted, as in British English, but '-ise' is the preferred form in Australian English by a ratio of about 3:1 according to the [[Australian Corpus of English]].
113442
113443 There is a widely-held belief in Australia that American spellings are a modern &quot;intrusion&quot;, but the debate in fact goes back to the [[19th century]]. A pamphlet titled ''The So Called &quot;American Spelling.&quot;'', printed in Sydney over 100 years ago, argued that &quot;there is no valid etymological reason for the preservation of the u in such words as honor, labor, etc.&quot; At the time it was noted that &quot;the tendency of people in Australasia is to excise the u, and one of the Sydney morning papers habitually does this, while the other generally follows the older form&quot;. Some Melbourne newspapers once excised the &quot;u&quot;, but do not anymore, and the [[Australian Labor Party|Australian ''Labor'' Party]] officially adopted the '-or' ending in [[1912]].
113444
113445 ===Irish influences===
113446 There is some influence from [[Hiberno-English]], but perhaps not as much as might be expected given that many Australians are of [[Ireland|Irish]] descent. Perhaps most noticeable is the widespread – but not universal – pronunciation of the name of the letter &quot;H&quot; as &quot;''haitch''&quot; {{IPA|/hÃĻÉĒtʃ/}}, rather than the unaspirated &quot;''aitch''&quot; {{IPA|/ÃĻÉĒtʃ/}} found in New Zealand, as well as most of Britain and North America. This is most often found amongst speakers of ''Broad Australian English'' and is thought to be the influence of Irish [[Roman Catholic Church|Catholic]] priests and nuns. Others include the non-standard plural of &quot;you&quot; as &quot;''youse''&quot; {{IPA|/jʉːz/}}, which is common in some social circles, and the expression &quot;''good on you''&quot; or &quot;''good onya''&quot;, although the former is common throughout North America and the latter is also encountered in New Zealand English and British English. Another usage indicative of an Irish influence is use of the word 'me' replacing 'my'. Example: ''Where's me hat?''
113447
113448 ===Samples of Australian English===
113449 The [[Australian Broadcasting Corporation]] provides many [http://www.abc.net.au/streaming/ streams of their radio programmes].
113450
113451 Non-Australians can also gain an impression of Australian English from well-known actors and other native speakers. The voices of [[Cate Blanchett]], [[Russell Crowe]], [[Nicole Kidman]], [[Hugh Jackman]] and [[Naomi Watts]] are examples of [[Australian_English#General_Australian_English|General Australian accents]], unless they are acting in roles as non-Australians. Several [[List of Australians#Film_and_television|Australian actors]] provided voices for ''[[Finding Nemo]]'': Nigel the pelican, the three sharks, and the dentist have Australian accents. Television star [[Steve Irwin|Steve &quot;Crocodile hunter&quot; Irwin]] has a [[Australian_English#Broad_Australian_English|Broad Australian accent]] (see below) and as a result his voice is often parodied inside Australia as well as out. [[John O'Grady]]'s novel ''[[They're a Weird Mob]]'' has many good examples of pseudo-phonetically written Australian speech during the 1950s, such as ''&quot;owyergoinmateorright?&quot;'' (&quot;how're you going mate, alright?&quot;) and [[Tom Keneally]]'s novels, particularly ''The Chant of Jimmie Blacksmith'', of putatively 19th century Australianisms such as &quot;yair&quot; for &quot;yes&quot; and &quot;nothink&quot; for &quot;nothing.&quot;
113452
113453 ==Vocabulary==
113454 {{main|Australian words}}
113455 ===The origins of Australian words===
113456 Australian English incorporates many terms that Australians consider to be unique to their country. One of the best-known of these is ''outback'' which means remote, sparsely-populated areas. The similar ''bush'' can mean either native forests, or country areas in general. Both terms are historically widely used in many English speaking countries, however. Many such words, phrases or usages originated with the British convicts transported to Australia. Many words used frequently by country Australians are, or were, also used in all or part of England, with variations in meaning. For example: a ''creek'' in Australia, as in North America, is any stream or small river, whereas in England it is a small watercourse flowing into the sea; ''paddock'' is the Australian word for a field, while in England it is a small enclosure for livestock and; wooded areas in Australia are known as ''bush'' or ''scrub'', as in North America, while in England, they are commonly used only in proper names (such as [[Shepherd's Bush]] and [[Wormwood Scrubs]]). Cockney and Australian English also both use the word ''mate'' to mean a close friend of the same gender (rather than the conventional meaning of &quot;a [[spouse]]&quot;), although this usage has also become common in some other varieties of English.
113457
113458 The origins of other terms are not as clear, or are disputed. ''Dinkum'' (or &quot;fair dinkum&quot;) means &quot;true&quot;, or when used in speech: &quot;is that true?&quot;, &quot;this is the truth!&quot;, and other meanings, depending on context and inflection. It is often claimed that dinkum dates back to the [[Australian goldrushes]] of the 1850s, and that it is derived from the [[Cantonese (linguistics)|Cantonese]] (or Hokkien) ''ding kam'', meaning &quot;top gold&quot;. However, scholars give greater credence to the notion that it originated with a now-extinct dialect word from the [[East Midlands]] in England, where dinkum (or dincum) meant &quot;hard work&quot; or &quot;fair work&quot;, which was also the original meaning in Australian English.[http://www.anu.edu.au/andc/ozwords/November_98/7._dinkum.htm] The derivation ''dinky-di'' means a native-born Australian.
113459
113460 Similarly, ''g'day'', a stereotypical Australian greeting, is no longer synonymous with &quot;good day&quot; in other varieties of English and is never used as an expression for &quot;farewell&quot;, as &quot;good day&quot; is in other countries.
113461
113462 Some elements of [[Australian Aboriginal languages|Aboriginal languages]] have been incorporated into Australian English, mainly as names for places, flora and fauna (for example [[dingo]], [[kangaroo]]). Beyond that, some terms have been adopted into the wider language, except for some localised terms, or slang. Some examples are ''cooee'', ''yarn'' and ''Hard yakka''. The former is a high-pitched call (pronounced {{IPA|/kʉː.iː/}}) which travels long distances and is used to attract attention. ''Cooee'' has also become a notional distance: ''if he's within cooee, we'll spot him''. ''Yarn'' means to chat or tell a story. This has further evolved into ''spin a yarn'' for telling a long and engaging tale. ''Hard yakka'' means ''hard work'' and is derived from ''yakka'', from the [[Yagara]]/[[Jagara]] language once spoken in the Brisbane region. Also from the Brisbane region comes the word ''bung'' meaning broken. A failed piece of equipment might be described as having ''gone bung''.
113463
113464 Though often thought of as an Aboriginal word, [[didgeridoo]] (a well known wooden musical instrument) is probably an [[onomatopoeia|onomatopaoeic]] word of Western invention. It has also been suggested that it may have an [[Irish language|Irish]] derivation.[http://www.flinders.edu.au/news/articles/?fj09v13s02]
113465
113466 ==Varieties of Australian English==
113467 Most linguists consider that there are three main varieties of Australian English: &quot;'''Broad'''&quot;, &quot;'''General'''&quot; and &quot;'''Cultivated'''&quot;. These three main varieties are actually part of a continuum and are based on variations in accent. They often, but not always, reflect the [[social class]] and/or [[education]]al background of the speaker.
113468
113469 ====Broad Australian English====
113470 Broad Australian English is the [[archetype|archetypal]] and most recognisable variety and is familiar to English speakers around the world, because of its use in identifying Australian characters in non-Australian [[film]]s and [[television]] programs. In reality it is less common than General Australian English. Broad Australian English is recognisable by a certain nasal [[drawl]] and the prevalence of long [[diphthong]]s.
113471 Broad Australian English is more likely to be encountered when travelling farther away from the capital cities.
113472
113473 ====General Australian English====
113474 General Australian English is the [[stereotype|stereotypical]] variety of Australian English. It is the variety of English used by the majority of Australians and it dominates the accents found in contemporary Australian-made films and television programs, such as ''[[Neighbours]]''. This variety has noticeably shorter vowel sounds than Broad Australian English, among other differences. There is perhaps a trend towards General Australian away from the extremes.
113475
113476 ====Cultivated Australian English====
113477 Cultivated Australian English (CAE) has many similarities to [[United Kingdom|British]] [[Received Pronunciation]], and is often mistaken for it. CAE is now spoken by less than 10% of the population. An overwhelmingly large and growing majority of Australians now have either General or Broad accents. One effect of this is that the speech of people like [[Alexander Downer]], the [[Minister for Foreign Affairs (Australia)|Minister for Foreign Affairs]] is mocked as sounding &quot;[[wiktionary:affected|affected]]&quot;, &quot;[[wiktionary:snobby|snobby]]&quot; or &quot;[[wiktionary:aloof|aloof]]&quot;, when his accent is simply an example of CAE, reinforced by the fact that he completed his secondary schooling at a [[public school]] in England and went to university there. CAE was once common among public figures in Australia.
113478
113479 ====Examples of Broad, General and Cultivated Australian accents====
113480 Examples of each include the normal speaking voices of the following identities:
113481
113482 '''Broad'''
113483 *Prime Minister [[Bob Hawke]]
113484 *actor [[Bryan Brown]]
113485 *actor [[Paul Hogan (actor)|Paul Hogan]]
113486 *television personality [[Steve Irwin]]
113487 *television/stage character [[Dame Edna Everage]] &lt;!-- Note: Edna may believe that she has a cultivated or general Australian accent, but listen to her vowels. --&gt;
113488
113489 '''General'''
113490 *Prime Minister [[John Howard]]
113491 *actress [[Nicole Kidman]]
113492 *actor [[Hugh Jackman]]
113493 *actor [[Russell Crowe]]
113494 *actor [[Jesse Spencer]]
113495
113496 '''Cultivated'''
113497 *actress [[Judy Davis]]
113498 *Prime Minister [[Malcolm Fraser]]
113499 *actor [[Geoffrey Rush]]
113500 *opera singer [[Dame Joan Sutherland]]
113501 *comedian/actor [[Barry Humphries]]
113502
113503 ===Regional variation===
113504 It is sometimes claimed that regional variations in pronunciation and accent exist, but if present at all they are very small compared to those of British and American English &amp;ndash; sufficiently so that linguists are divided on the question. Overall, pronunciation is determined less by region than by social and educational influences.
113505
113506 ====Regional vocabulary====
113507 There is, however, some variation in Australian English vocabulary between different regions. An example often cited by linguists is the variety of names given by Australians to bland, processed [[pork]] products &amp;ndash; known in other countries as pork [[luncheon meat]] or [[baloney]] &amp;ndash; is so great, that these words are used by linguists to ascertain not only which Australian state or territory a person is from, but also regional origin within states in some cases. For example, in [[South Australia]] (SA) this product is known as ''fritz'', for most people in [[Victoria (Australia)|Victoria]] (Vic) it is ''stras'', in most of [[New South Wales]] (NSW) it is ''devon'', in [[Western Australia]] (WA) ''polony'', in [[Queensland]] (Qld) ''windsor'' (''&quot;devon&quot;'' is also used), in [[Tasmania]] (Tas) ''belgium'', and so on. (See [[Australian_words#Processed_pork|Australian words for processed pork]], for more details.)
113508
113509 Regional variation does not respect [[States and territories of Australia|state borders]], and this is shown, for example, by the fact that both Queenslanders and people from northern New South Wales say ''port'' (short for [[Portmanteau (travelling case)|portmanteau]]) while people in the other states say ''case'', ''school bag'', ''backpack'' and/or ''knapsack''. In the past variation was so strong that the residents of the NSW town of [[Maitland, New South Wales|Maitland]] would use the word port where [[Newcastle, New South Wales|Newcastle]], some 20 kilometres away, would prefer the latter term.
113510
113511 There is also great variety in the names of beer glasses from one area to another. For example, a standard 285ml (10 fl.oz.) glass, in different states or regions, is known as a ''middy'' (NSW/WA/[[Australian Capital Territory|ACT]]), ''pot'' (Vic/Qld/Tas), ''handle'' (NT/SA), ''ten'' (SA/Tas) or ''schooner'' (SA). Such variation causes great confusion, especially since a schooner is a 425 ml
113512 (15 fl.oz.) glass in every state that uses the word except SA. (See [[Australian_words#Beer_glasses|Australian words for beer glasses]] for a full list.)
113513
113514 Although swimwear is known as ''bathers'' in most areas, people in NSW and Queensland do not conform, preferring terms such as ''swimmers'', ''cossie'' or ''togs'' (see [[Australian_words#Swimwear|Australian words for swimwear]]).
113515
113516 Another example is the word ''tuckshop'' which is used in Queensland and northern NSW to describe a food outlet on school premises; the word ''canteen'' is now more common in other areas of Australia, although tuckshop may occasionally be used in those areas as well.
113517
113518 There are many regional variations for describing [[social class]]es or [[subculture]]s. The best example is probably ''[[bogan]]'' (fairly universal), which is also referred to as ''bevan'' in Queensland&lt;!---removed &quot;, ''westie'' around Sydney,&quot; &quot;westie&quot; is not synonymous with &quot;bogan&quot; ---&gt; and ''booner'' in the ACT.
113519
113520 The differences are not restricted to words. For example, it is often said that people from some parts of [[Queensland]] end sentences with the interrogative &quot;''eh''?&quot; (or &quot;''hay?''&quot;, &quot;''hey''&quot;, and so on), although this is also common in both [[New Zealand English]] and [[Canadian English]].
113521
113522 The steadily increasing centralisation of film, TV and radio production, however, may be spreading new words more rapidly and blurring such distinctions.
113523
113524 {{see also|South Australian English|Western Australian English}}
113525
113526 =====Sport variations=====
113527 Many regional variations are as a result of the Australian passion for sport and the differences in non-linguistic traditions from one state to another: the word ''[[football]]'' refers to the most popular code of football in different States or regions, or even ethnic groups within them. [[Victoria (Australia)|Victorians]] start a game of [[Australian rules football]] with a ''ball up'', [[Western Australia]]ns with a ''bounce down''; [[New South Wales|New South Welsh]] people and [[Queensland]]ers start a game of [[Rugby League]] or [[Rugby Union]] with a ''kick off'', as do [[football (soccer)|soccer]] fans across Australia.
113528
113529 In the early 21st century the [[Football Federation Australia|
113530 national governing body for football (soccer)]] attempted to foster use of &quot;football&quot; to mean soccer, in accordance with general international usage. It is yet to be seen whether this will spead into the mainstream, however it is important to note that several media outlets have adopted the use of the word football in accordance with this.
113531
113532 The Australian slang word ''footy'' has been traditionally associated with the native code of Australian rules football. The word has also been adopted to a lesser degree by rugby league followers, following directly from the association of the word to describe the most popular football code. Examples in popular culture includes the [[The Footy Show]]. More recently it has been adopted in other countries in reference to other codes, such as the UK (soccer) and New Zealand (rugby union).
113533
113534 For many Australian rules followers, the verb ''barrack'' (or the accompanying noun form ''barracker''), is used to describe following a team or club. (In New South Wales and Queensland the term ''support'' or ''supporter'' is generally used instead.) Barrack has its origins in British English, although in the UK it now usually means to jeer or denigrate an opposing team or players. The expression &quot;root (or rooting) for a team&quot;, as used in the United States, is not generally used in Australia as ''root'' (or rooting) is slang for [[sexual intercourse]].
113535
113536 ==Phonology==
113537 {{main|Australian English phonology}}
113538 Australian English is a [[Rhotic and non-rhotic accents|non-rhotic]] variety. It is unique in its remarkable homogeneity over a vast area. Unlike most varieties of English, it has a [[vowel length|phonemic length distinction]]. It has a reasonably standard consonant inventory.
113539 {{see also|Phonemic differentiation}}
113540
113541 ===Myths about Australian accents===
113542 Australian English is sometimes described as high-pitched, nasal, lazy or drawling. The claims of high pitch and nasality are not entirely true, as many Australian English speakers perceive much of American English to be nasal, while laziness and drawling are impossible to test objectively.
113543
113544 Similarly, stereotypes of Australian speech as having a &quot;rising tone&quot; or &quot;questioning intonation&quot;, known in linguistics as [[high rising terminal]], are not entirely justified by the empirical evidence. Many Australians' speech patterns do not conform to this stereotype, and the &quot;questioning intonation&quot; can be found in many regional speech patterns, such as those in the south of England, Northern Ireland, and even North America.
113545
113546 ==Use of words by Australians==
113547 Perception has it that a common trait is the frequent use of long-winded [[simile|similes]], such as &quot;slow as a wet week&quot;, &quot;built like a brick shit-house&quot;, &quot;mad as a cut snake&quot;, &quot;up and down like a bride's nightie&quot;, &quot;dry as a dead dingo's donger&quot;, &quot;off like prawns in the sun&quot;, &quot;sweating like a pig on fire&quot;, or &quot;flat out like a lizard drinking&quot;. Moreover, several such expressions are common in many parts of the English-speaking world and are only perceived as uniquely Australian by Australians.
113548
113549 Many Australians believe themselves to be direct in manner, and this is typified by statements such as &quot;why call a spade a spade, when you can call it a bloody shovel&quot;. Such sentiments can lead to misunderstandings and offence being caused to people from cultures where an emphasis is placed on avoiding conflict, such as people from [[East Asia]].
113550
113551 Spoken Australian English is generally more tolerant of offensive and/or abusive language than other variants. A famous exponent was the former [[Prime Minister of Australia|Prime Minister]] [[Paul Keating]], who referred in [[Parliament of Australia|Parliament]] to various political opponents as a &quot;mangy maggot&quot;, a &quot;stupid foul-mouthed grub&quot;, and so on. He drew ire from then Malaysian leader [[Mahathir Mohammed]] for calling him a &quot;recalcitrant&quot;. This tradition was continued by fellow [[Australian Labor Party|Labor]] [[Member_of_parliament|MP]] [[Mark Latham]] who, in 2002, unapologetically described a visit by Prime Minister [[John Howard]] to [[George W. Bush]] as &quot;an arse-licking effort&quot;. The widespread desire among Australians to avoid pomposity, leading to a rejection of even formal or dignified speech, is sometimes seen as reflecting a suspicion of success in general, a phenomenon sometimes known as the [[tall poppy syndrome]], another term widely used in the English speaking world but perceived by many Australians to be a local coinage.
113552
113553 ===Humour===
113554 An important aspect of Australian English usage, inherited in small part from Britain and Ireland, is the use of [[deadpan humour]], in which a person will make extravagant, outrageous and/or ridiculous statements in a neutral tone, and without explicitly indicating they are joking. Tourists seen to be gullible and/or lacking a sense of humour may be subjected to tales of kangaroos hopping across the [[Sydney Harbour Bridge]] and similar tall tales. (See also [[Drop Bear]].)
113555
113556 ===Diminutives===
113557 Australian English makes far more frequent use of [[diminutive]]s than other varieties of English. These which can be formed in a number of ways such as adding ''-o'' or ''-ie'' to the ends of abbreviated words. They can be used to indicate familiarity, although in many [[speech community|speech communities]] the diminutive form is more common than the original word or phrase.
113558
113559 Examples with the -o ending include ''abo'' (aborigine, now considered offensive), ''arvo'' (afternoon), ''doco'' (documentary), ''servo'' (service station, known in other countries as a &quot;petrol station&quot; or &quot;gas station&quot;), ''bottle-o'' (bottle-shop or liquor store), ''rego'' (still pronounced with a {{IPA|/&amp;#676;/}}) (annual motor vehicle registration), ''compo'' (compensation), ''leso'' or ''lesbo'' (lesbian, also offensive, pronounced with a {{IPA|/z/}}), ''ambo'' (ambulance officer). [[The Salvation Army]] is often referred to as &quot;The Salvos&quot;. The city of [[Fremantle, Western Australia|Fremantle]] is known by many of its inhabitants as ''Freo''. [[Filipino people|Filipino]] youth in Australia refer to themselves as being a ''Filo'', a word not used by [[Filipino American]]s.
113560
113561 Examples of the -ie ending include ''barbie'' (barbecue), ''bikkie'' (biscuit), ''bikie'' (member of a motorcycle club), ''brekkie'' (breakfast), ''blowie'' (blowfly), ''brickie'' (brick layer), ''mozzie'' (mosquito), and ''pollie'' (politician). The city of [[Brisbane]] is often called ''Brissie'' (pronounced with a {{IPA|/z/}}).
113562
113563 Occasionally, a ''-za'' diminutive is used, usually for personal names where the first of multiple syllables ends in an &quot;r&quot;. Karen becomes ''Kazza'' and Jeremy becomes ''Jezza''. Also popular and common is the ''-z'' diminutive form (also found in British English) whereby Karen becomes ''Kaz'' and so on.
113564
113565 Other diminutive forms include:
113566 * last one or two syllables, prefaced with a [[definite article]]: for example, ''The Gabba'' for the [[Brisbane Cricket Ground]] at [[Woolloongabba, Queensland|Woolloongabba]]; ''The Gong'' for [[Wollongong]].
113567 * first syllable plus &quot;-s&quot;: ''turps'' [[turpentine]] (usually referring to drinking alcohol, e.g. &quot;a night on the turps&quot;) or [[Ian Turpie]]; Gabs, pet form of [[List of English given names|Gabrielle]].
113568 * first syllable plus &quot;-ers&quot;: ''Honkers'' ([[Hong Kong]]).
113569
113570 ===Rarely Used Phrases===
113571 Because of the caricaturised over-use, or &quot;Hollywoodisation&quot;, of some phrases attributed to Australians, some of these have dropped out of common conversation (at least in most urban areas). Words being used less often are ''strewth'' and ''crikey'', and archetypal phrases like ''Flat out like a lizard drinking'' are rarely heard without a sense of irony.
113572
113573 Other terms were never used in the first place. The much-quoted line &quot;''[[Shrimp_on_the_barbie|Throw another shrimp on the barbie]]''&quot; was a phrase that has never been used by Australians, but was a concoction of the Australian Tourist Commission for a US advertisement for tourism to Australia. &quot;[[Shrimp]]&quot; is an international English term — they are called [[prawns]] in Australia.
113574
113575 ==See also==
113576 *[[Australian Aboriginal English]]
113577 *[[International Phonetic Alphabet for English]]
113578 *[[IPA chart for English]]
113579 *[[Nickname]]
113580
113581 ==References==
113582 *{{cite journal | author=Harrington, J., F. Cox, and Z. Evans | title=An acoustic phonetic study of broad, general, and cultivated Australian English vowels | journal=Australian Journal of Linguistics | year=1997 | volume=17 | pages=155&amp;ndash;84}}
113583 *Mitchell, Alexander G., 1995, ''The Story of Australian English'', Sydney: Dictionary Research Centre.
113584 *Peters, Pam. (1986) &quot;Spelling principles&quot;, In: Peters, Pam, ed., Style in Australia: Current Practices in Spelling, Punctuation, Hyphenation, Capitlisation, etc.,
113585 * ''The So Called &quot;American Spelling.&quot; Its Consistency Examined.'' pre-1900 pamphlet, Sydney, E. J. Forbes. Quoted by Annie Potts in [http://www.bikwil.zip.com.au/Vintage19/Webster's-Dictionary.html this article]
113586
113587 ==External links==
113588 *[http://www.anu.edu.au/ANDC/ Australian National Dictionary Centre]
113589 *[http://abc.net.au/wordmap/ ABC.net Australian Word Map]
113590 *[http://www.ling.mq.edu.au/speech/phonetics/topics.html Introduction to Australian Phonetics and Phonology]
113591 *[http://www.macquariedictionary.com.au/ Macquarie Dictionary]
113592 *[http://www.world-english.org/ World English Organisation]
113593 *[http://www.nma.gov.au/play/aussie_english_for_the_beginner/ Aussie English for beginners -- the origins, meanings and a quiz to test your knowledge] at the National Museum of Australia.
113594
113595
113596 [[Category:Australian English| ]]
113597 [[Category:English language]]
113598 [[Category:Forms of English]]
113599 [[Category:English dialects]]
113600 [[Category:Sociolinguistics]]
113601
113602 [[de:Australisches Englisch]]
113603 [[he:אנגלי×Ē אוסטרלי×Ē]]
113604 [[sv:Australisk engelska]]</text>
113605 </revision>
113606 </page>
113607 <page>
113608 <title>Anzac</title>
113609 <id>1898</id>
113610 <revision>
113611 <id>41644173</id>
113612 <timestamp>2006-02-28T19:26:51Z</timestamp>
113613 <contributor>
113614 <username>Ummit</username>
113615 <id>328950</id>
113616 </contributor>
113617 <minor />
113618 <comment>/* See also */</comment>
113619 <text xml:space="preserve">* [[Australian and New Zealand Army Corps]], the name used to describe the combination of the Australian and New Zealand Army Corps during wartime
113620 * [[Anzac biscuit]], a traditional Australian biscuit
113621 * [[Anzac class frigate]], class of frigate currently used by the Royal Australian Navy and Royal New Zealand Navy
113622 * [[ANZAC Day]], a public holiday on the 25th of April every year to commemorate the landing at Gallipoli
113623 * [[ANZAC spirit]], a component of modern Australasian mythology describing the spirit of mateship and cheerful suffering amongst Australians
113624 * [[Anzac (Currency)]], a proposed name for a combined Australian and New Zealand currency
113625
113626 ==See also==
113627 * [[HMAS Anzac]] for a list of Royal Australian Navy ships bearing the name ''Anzac''
113628
113629 {{disambig}}</text>
113630 </revision>
113631 </page>
113632 <page>
113633 <title>American Airlines Flight 11</title>
113634 <id>1899</id>
113635 <revision>
113636 <id>41529422</id>
113637 <timestamp>2006-02-27T23:38:53Z</timestamp>
113638 <contributor>
113639 <ip>64.216.18.180</ip>
113640 </contributor>
113641 <text xml:space="preserve">{{Sep11}}
113642 '''American Airlines Flight 11''' was an [[American Airlines]] flight aboard a [[Boeing 767-223ER]] [[aircraft]], registration number N334AA. Flight 11 regularly flew from [[Logan International Airport]] in [[East Boston, Massachusetts|East Boston]], [[Massachusetts]], to [[Los Angeles International Airport]]. On [[September 11]], [[2001]], the aircraft on this route was [[Aircraft hijacking|hijacked]] in a [[September 11, 2001 attacks|terrorist attack]]; the hijackers crashed into the [[One World Trade Center tenants|North Tower]] of the [[World Trade Center]] in [[New York City]].
113643
113644 [[Image:911 commission AA11 path.png|thumb|left|AA 11 flight path from Boston to New York City.]]
113645 The regularly scheduled flight took off from Logan International Airport at 7:59 a.m., and the plane is believed to have been hijacked at 8:14. At around that time, when the plane stopped responding to [[air traffic control]], the [[Federal Aviation Administration]] had thought the plane had been hijacked. By 8:25, there was no doubt.
113646
113647 There were five hijackers believed to have participated in the hijacking. [[Mohamed Atta al Sayed]], the ringleader and pilot, was in seat 8D. [[Satam al-Suqami]], who had paid in cash that day, sat in seat 10B. [[Waleed al-Shehri]] sat in seat 2B, while [[Wail al-Shehri]] sat next to him in seat 2A. [[Abdulaziz al-Omari]], who had earlier flown with Atta to Logan Airport from Portland, Maine, was also on this flight.
113648
113649 Some information about what had happened on board was sent by flight attendants on the plane. According to [[Madeline Amy Sweeney]] and [[Betty Ong]], three people&amp;ndash;two attendants and a passenger&amp;ndash;were stabbed or had their throats slashed by the hijackers. The passenger, [[Daniel M. Lewin|Daniel Lewin]], a notable [[Internet]] [[entrepreneur]], had also previously served as an officer in the elite [[Sayeret Matkal]] unit of the [[Israeli Defense Forces|Israeli military]]. A 2002 [[FAA]] memo referenced Lewin as possibly being killed by [[Satam al-Suqami]] after he attempted to stop the hijacking.
113650
113651 The first-class area had been sequestered by the surviving crew, and the rest of the passengers had been led to believe that a medical emergency was taking place in the first class area. The hijackers also used [[mace (spray)|mace]], [[pepper spray]], or some other [[aerosol spray]]-based [[tear gas|irritant]] to discourage entry into the first class area and the cockpit. One reported that her eyes were burning and that she was having trouble breathing. The hijackers claimed to have a bomb, although there is no evidence they actually had an explosive device.
113652
113653 At 8:46:40 a.m., Flight 11 was deliberately crashed into the North Tower of the World Trade Center between the 94th and 98th floors. This was the first crash in the attacks of the day. The plane was carrying 81 passengers (including the five hijackers) and 11 crew. All on board were killed, along with many hundreds in the building, and the tower later collapsed, killing hundreds more.
113654
113655 Although the impact itself caused extensive structural damage, it was the long-lasting fire, starting with burning jet fuel, which is blamed for the structural failure of the North Tower. Many have speculated that this is why the hijackers chose to use this fully fueled transcontinental flight. The centralized-support design (in the center core and exterior walls, instead of throughout) of the towers also contributed to the collapse. In a later recording, [[Osama bin Laden]] seemed to take credit for the attack, and stated that he did not expect the towers would collapse.
113656
113657 The [[flight route designation]] (flight number) for future flights on the same route at the same takeoff time was changed to &quot;Flight 25,&quot; to disassociate other planes from the one used in the attack and out of respect for those who had died in the attack. An American flag now flies on the jet bridge that Flight 11 departed from at Logan Airport.
113658
113659 The pilot on the flight was John Ogonowski, 52, of Dracut, Massachusetts.
113660
113661 ==Initial Suspects==
113662 *[[Adnan Bukhari]]
113663 *[[Ameer Bukhari]]
113664 *[[Amer Kamfar]]
113665
113666 ==External links==
113667 *[http://www.gpoaccess.gov/911/index.html The Final 9/11 Commission Report]
113668 *[http://www.cooperativeresearch.org/timeline.jsp?timeline=complete_911_timeline&amp;day_of_911=aa11 AA Flight 11: Minute by Minute]
113669 *[[:sep11:American Airlines Flight 11 victims|American Airlines Flight 11 manifest]]
113670
113671 [[Category:September 11, 2001 attacks]]
113672
113673 [[fr:Vol 11 d'American Airlines]]</text>
113674 </revision>
113675 </page>
113676 <page>
113677 <title>American Airlines Flight 77</title>
113678 <id>1902</id>
113679 <revision>
113680 <id>41530274</id>
113681 <timestamp>2006-02-27T23:45:03Z</timestamp>
113682 <contributor>
113683 <ip>64.216.18.180</ip>
113684 </contributor>
113685 <text xml:space="preserve">[[Image:Pentagonfireball.jpg|230px|thumb|right|Security Camera image of the moment that American Airlines Flight 77 hit the [[The Pentagon|Pentagon]].]]
113686 {{Sep11}}
113687 '''[[American Airlines]] Flight 77''' was a morning flight that routinely flew from [[Washington Dulles International Airport]] in [[Fairfax County, Virginia|Fairfax]] and [[Loudoun County, Virginia|Loudoun Counties, Virginia]], near [[Washington, D.C.]], to [[Los Angeles International Airport]] (IAD-LAX). On [[September 11]], [[2001]], the [[Boeing 757-223]], N644AA, was hijacked as part of the [[September 11, 2001 attacks|9/11 attacks]]. The hijackers were reported to have been [[Khalid al-Mihdhar]], [[Majed Moqed]], [[Nawaf al-Hazmi]], [[Salem al-Hazmi]], and the suicide pilot [[Hani Hanjour]].
113688
113689 The flight was scheduled to depart at 8:10 AM EDT, but actually departed at 8:20. It was later determined that three of the hijackers had been stopped before boarding the flight because they failed the metal detector test, but were nonetheless allowed to enter the plane.
113690
113691 [[Image:911 commission AA77 path.png|thumb|left|AA 77 flight path from Dulles to Pentagon (to east of Dulles).]]
113692 The flight was probably hijacked between 8:51 to 8:54. The assailants used knives and box-cutters to gain entrance to the [[cockpit]]. By 8:56, the flight was turned around, and the [[transponder]] had been disabled. The [[Federal Aviation Administration|FAA]] was aware at this point that there was an emergency aboard the plane. (By this time, [[American Airlines Flight 11]] had already crashed into the [[World Trade Center]], and [[United Airlines flight 175]] was known to have been hijacked as well.)
113693
113694 According to the 9/11 Commission Report, two passengers made phone calls to contacts on the ground. At 9:12, passenger Renee May was reported to have called her mother, Nancy May, in Las Vegas. She said her flight was being hijacked by six individuals and they had been moved to the rear of the plane. [[Barbara K. Olson]], another passenger, called her husband, [[United States Solicitor General]] [[Theodore Olson]] at the [[Justice Department]] twice to tell him about the hijacking and to report that the passengers and pilots were held in the back of the plane. After the call was cut off, Theodore Olson tried unsuccessfully to contact [[Attorney General]] [[John Ashcroft]].
113695
113696 Flight 77 crashed into the western side of [[The Pentagon]] in [[Arlington County, Virginia]], just south of [[Washington, D.C.]] at 9:37 AM EDT, killing all of its 58 passengers (including the hijackers) and 6 crew (but see [[#Disputes about the final destination of Flight 77|Disputes]] below). The section of the Pentagon hit consisted mainly of recently renovated, unoccupied offices, and was damaged by the crash and the ensuing violent fire. The crash and subsequent fire penetrated three outer ring sections of the western side. The outermost ring section was largely destroyed, and a large section collapsed. One hundred twenty-five people in the Pentagon died from the attack.
113697
113698 After the crash, the [[flight route designation]] for future flights on the same route was renumbered Flight 149.
113699
113700 Among American Airlines Flight 77 were 3 young schoolchildren, embarking on an educational trip to the Channel Islands National Marine Sanctuary near Santa Barbara, California, as part of a program funded by the National Geographic Society. The student names were Bernard Brown, 11, Asia Cotton, 11, and Rodney Dickens, also 11 years old. Their chaperones; Sarah Clark, 65; James Debeuneure, 58; Ann Judge, 45; Hilda Taylor and Joe Ferguson also died.
113701
113702 In total 5 passengers were under 12 years old.
113703
113704 ==Disputes about the final destination of Flight 77==
113705 {{main|9/11 conspiracy theories#The Pentagon}}
113706
113707 Some dispute the claim that Flight 77 struck the Pentagon. Claims that the Pentagon was not hit by a Boeing 757 have been raised based on photographs taken from the highway (hundreds of feet from the building) in which there is a seeming lack of debris and a lack of damage to the building or the lawn. Those who believe that the Pentagon was not hit by a Boeing 757 allege that no pieces of a commercial aircraft were found, that the footage was confiscated, and other factors. However, many of these claims have been refuted[http://911review.com/errors/pentagon/index.html],[http://911research.wtc7.net/essays/pentagontrap.html],[http://www.oilempire.us/pentagon.html]. Additionally, all of these theories must by definition ignore most of the [http://eric.bart.free.fr/iwpb/witness.html over 100 eyewitness testimonies] documented online which describe a commercial jet impacting the building. None of these theories account for the fate of the aircraft after the above mentioned in-flight calls made by the passengers to their loved ones describing the hijacking. Though some express doubts concerning the ability of making a successful cellphone call above 30,000 ft, others point out that cell phones are regularly used on private and corporate planes thousands of times every day without incident.
113708
113709 ==External links==
113710 * [[:sep11:Casualties of the September 11, 2001 attacks: plane passengers|Flight manifest for American Airlines flight 77]]
113711 * [[sep11:American Airlines flight 77|Memorial wiki tribute to those killed in this flight]] (with flight manifest)
113712 *[http://www.cooperativeresearch.org/timeline.jsp?timeline=complete_911_timeline&amp;day_of_911=aa77 CooperativeResearch.org] - 'Project: Complete 911 Timeline' (Open-Content project)
113713 *[http://www.gpoaccess.gov/911/index.html GPOAccess.gov] - 'The 9-11 Commission Report: Final Report of the National Commission on Terrorist Attacks Upon the United States, Official Government Edition' [[2005]])
113714 *[http://www.oilempire.us/pentagon.html Oilempire.us] - A list of detailed analyses that argue for complicity but against the &quot;no plane&quot; claims.
113715
113716 [[Category:History of Virginia]]
113717 [[Category:September 11, 2001 attacks]]
113718
113719 [[fr:Vol 77 d'American Airlines]]
113720 [[id:American Airlines Penerbangan 77]]</text>
113721 </revision>
113722 </page>
113723 <page>
113724 <title>American Airlines flight 77</title>
113725 <id>1903</id>
113726 <revision>
113727 <id>15900363</id>
113728 <timestamp>2002-02-25T15:51:15Z</timestamp>
113729 <contributor>
113730 <username>Jiang</username>
113731 <id>10049</id>
113732 </contributor>
113733 <comment>moved to &quot;American_Airlines_Flight_77&quot;</comment>
113734 <text xml:space="preserve">#REDIRECT [[American_Airlines_Flight_77]]
113735 </text>
113736 </revision>
113737 </page>
113738 <page>
113739 <title>American Airlines flight 11</title>
113740 <id>1904</id>
113741 <revision>
113742 <id>15900364</id>
113743 <timestamp>2002-02-25T15:51:15Z</timestamp>
113744 <contributor>
113745 <username>Jiang</username>
113746 <id>10049</id>
113747 </contributor>
113748 <comment>moved to &quot;American_Airlines_Flight_11&quot;</comment>
113749 <text xml:space="preserve">#REDIRECT [[American_Airlines_Flight_11]]
113750 </text>
113751 </revision>
113752 </page>
113753 <page>
113754 <title>Ambush</title>
113755 <id>1905</id>
113756 <revision>
113757 <id>41072536</id>
113758 <timestamp>2006-02-24T21:51:26Z</timestamp>
113759 <contributor>
113760 <ip>4.154.243.30</ip>
113761 </contributor>
113762 <text xml:space="preserve">:''For the [[Avalon Hill]] board game, see [[Ambush!]].''
113763 :''For the [[breakcore]] record label, see [[Ambush records]].''
113764
113765 An '''ambush''' is a long established [[military tactics|military tactic]] in which an ambushing force uses [[concealment]] to attack an enemy that passes its position. Ambushers strike from concealed positions such as among dense [[underbrush]] or behind [[hill]]tops. The [[tactic]] is generally used to gather intelligence or to establish control over an area. Ambushes have been used consistently throughout history, from [[ancient warfare|ancient]] to [[modern warfare|modern]] [[warfare]].
113766
113767
113768
113769 ==Procedure==
113770 In modern warfare, an ambush is most often employed by ground troops up to [[platoon]] size against enemy targets which may be other ground troops or possibly vehicles. During ancient warfare, an ambush often might involve thousands of soldiers on a large scale, such as over a [[mountain pass]].
113771
113772 ===Planning===
113773 Ambushes are complex multi-phase operations and are therefore usually planned in some detail. First a suitable ''killing zone'' is identified. This is the place where the ambush will be laid. It is generally a place where enemy units are expected to pass, and which gives reasonable cover for the deployment, execution, and extraction phases of the ambush patrol. A path along a wooded valley floor would be a stereotypical example.
113774
113775 ===Preparation===
113776 To be successful an ambush patrol must deploy into the area covertly, ideally under the cover of darkness. The patrol will establish secure and covert positions overlooking the ''killing zone''. Usually, two or more ''cut off'' groups will be sent out a short distance from the main ambushing group into similarly covert positions. Their job is twofold; firstly to give the ambush commander early-warning of approaching enemy (usually by radio), and secondly, when the ambush is initiated, to prevent any enemy from escaping. Another group will cover the rear of the ambush position and thus give [[all round defence]] to the ambush patrol.
113777
113778 Care must be taken by the ambush commander to ensure that fire from any weapon cannot inadvertently hit any other friendly unit.
113779
113780 ===Waiting===
113781 Having set the ambush, the next phase is to wait. This could be for a few hours or a few days depending on the tactical and supply situation. It is obviously much harder for an ambush patrol to remain covert and alert if sentry rosters, shelter, sleeping, sanitary arrangements, food and water, have to be considered. Ambush patrols will almost always have to be self-sufficient as re-supply would not be possible without compromising their covert position.
113782
113783 ===Execution===
113784 The arrival of an enemy in the area should be signalled by one of the cut-off units. This may be done by radio or by some other signal, but the enemy must not detect the signal. The ambush commander will have given a clear instruction for initiating the ambush. This might be a burst from an automatic [[weapon]], use of an explosive device (such as a [[claymore mine]]or other directonal weapon), or possibly a simple whistle blast. When the ambush commander judges that the ambush will be most effective he gives the signal.
113785
113786 After the [[firefight]] has been won, the now compromised ambush patrol will need to leave the area as soon as it is practical to do so. Before this is done it is a common practice to clear the killing zone by checking bodies for intelligence, taking prisoners, and treating any enemy wounded. If communication orders permit, a brief contact report may be sent. This done, the ambush patrol will leave the area by a pre-determined route.
113787
113788 ==See also==
113789 * [[sniper]]
113790 * [[List of military tactics]]
113791
113792 [[Category:Military tactics]]
113793
113794 [[da:Baghold]]
113795 [[de:Hinterhalt]]
113796 [[fr:embuscade]]
113797 [[io:Embusko]]</text>
113798 </revision>
113799 </page>
113800 <page>
113801 <title>Astronomical aberration</title>
113802 <id>1906</id>
113803 <revision>
113804 <id>15900366</id>
113805 <timestamp>2003-09-18T12:14:21Z</timestamp>
113806 <contributor>
113807 <username>Ap</username>
113808 <id>122</id>
113809 </contributor>
113810 <comment>redirect [[Aberration of light]]</comment>
113811 <text xml:space="preserve">#REDIRECT [[Aberration of light]]</text>
113812 </revision>
113813 </page>
113814 <page>
113815 <title>Abzyme</title>
113816 <id>1908</id>
113817 <revision>
113818 <id>33648317</id>
113819 <timestamp>2006-01-02T22:34:45Z</timestamp>
113820 <contributor>
113821 <username>FlaBot</username>
113822 <id>228773</id>
113823 </contributor>
113824 <minor />
113825 <comment>robot Adding: de</comment>
113826 <text xml:space="preserve">An '''abzyme''' (from [[antibody]] and [[enzyme]]), also called ''catmab'' (from ''catalytic monoclonal antibody''), is a [[monoclonal antibody]] with [[catalytic activity]]. Molecules which are modified to gain new catalytic activity are called [[synzymes]]. Abzymes are usually artificial constructs, but are also found in normal humans (anti-vasoactive intestinal peptide autoantibodies) and in patients with the [[autoimmune disease]] systemic [[lupus erythematosus]], where they can bind and hydrolyze [[DNA]]. Abzymes are potential tools in [[biotechnology]], e.g., to perform specific actions on DNA.
113827
113828 Enzymes function by lowering the activation energy of the transition state, thereby catalyzing the formation of an otherwise-less-favorable molecular intermediate between reactants and products. If an antibody is developed to a stable molecule that's similar to an unstable intermediate of another (potentially unrelated) reaction, the developed antibody will enzymatically bind to and stabilize the intermediate state, thus catalyzing the reaction.
113829
113830 Source: Vevek Parikh - Biochem Dept., Univ. of Miami.
113831 {{biochem-stub}}
113832
113833 [[de:Abzyme]]</text>
113834 </revision>
113835 </page>
113836 <page>
113837 <title>Adaptive radiation</title>
113838 <id>1909</id>
113839 <revision>
113840 <id>40670588</id>
113841 <timestamp>2006-02-22T04:46:05Z</timestamp>
113842 <contributor>
113843 <ip>66.73.160.177</ip>
113844 </contributor>
113845 <text xml:space="preserve">'''Adaptive radiation''' describes the rapid [[speciation]] of a single or a few [[species]] to fill many [[ecological niche]]s. This is an [[evolution]]ary process driven by [[mutation]] and [[natural selection]].
113846
113847 Adaptive radiation often occurs when a species is introduced to a new [[ecosystem]], or when a species can survive in an [[natural environment|environment]] that was unreachable before. For example, 14 species of [[Darwin's finch]]es on the [[Galapagos islands]] developed from a single species of [[finch]]es that reached the islands. Other examples include anoles of the Caribbean islands, Hawaiian silverswords and picture-winged fruit flies, the development of the first [[bird]]s, which suddenly were able to expand their [[territory]] into the air, or the development of [[lung fish]] during the [[Devonian period]], about 300 million years ago. Another example of adaptive radiation is the diversity within Phylum [[Mollusca]].
113848
113849 The dynamics of adaptive radiation are such that, within a relatively short time, many species derive from a single or a few ancestor species. The rise and fall of new species is now progressing very slowly, compared to the initial outburst of species.
113850
113851 There are three basic types of adaptive radiation. They are :
113852 # '''General adaptation.''' A species that develops a radically new ability can reach new parts of its environment. An example of general adaptation is bird flight.
113853 # '''Environmental change.''' A species that can, in contrast to the other species in the ecosystem, successfully survive in a radically changed environment will probably branch into new species that cover the new ecological niches created by the environmental change. An example of adaptive radiation as the result of an environmental change is the rapid spread and development of [[mammal]]ian species after the extinction of the dinosaurs.
113854 # '''[[Archipelago]]es.''' Isolated [[ecosystem]]s, such as islands and mountain areas, can be colonized by a new species which upon establishing itself undergoes rapid divergent evolution. [[Darwin's finches]] are examples of adaptive radiation occurring in an archipelago.
113855
113856 In [[science fiction]] sometimes adaptive radiation of [[human]]s is imagined. This often makes for interesting multi-species [[science fiction universe|worlds]].
113857
113858 ==References==
113859
113860 *Wilson, E. et al. ''Life on Earth,'' by Wilson,E.; Eisner,T.; Briggs,W.; Dickerson,R.; Metzenberg,R.; O'brien,R.; Susman,M.; Boggs,W.; (Sinauer Associates, Inc., Publishers, Stamford, Connecticut), c 1974. Chapters: ''The Multiplication of Species; Biogeography,'' pp 824-877. 40 Graphs, w species pictures, also Tables, Photos, etc. Includes '''[[Galapagos Islands]], [[Hawaii]], and Australia subcontinent,''' (plus [[St. Helena]] Island, etc.).
113861
113862 [[Category:Speciation]]
113863
113864 [[de:Adaptive Radiation]]
113865 [[es:RadiaciÃŗn adaptativa]]
113866 [[ja:遊åŋœæ”žæ•Ŗ]]
113867 [[nl:Adaptieve radiatie]]
113868 [[pl:Radiacja adaptacyjna]]
113869 [[sk:Adaptívna radiÃĄcia]]</text>
113870 </revision>
113871 </page>
113872 <page>
113873 <title>Agarose gel electrophoresis</title>
113874 <id>1910</id>
113875 <revision>
113876 <id>37497532</id>
113877 <timestamp>2006-01-31T10:11:49Z</timestamp>
113878 <contributor>
113879 <username>SeventyThree</username>
113880 <id>183256</id>
113881 </contributor>
113882 <minor />
113883 <comment>/* References */ reformatting done, rm duplicates</comment>
113884 <text xml:space="preserve">[[image:DNA Agarose Gel Electrophor.jpg|200px|thumb|right|Digital printout of an agarose gel electrophoresis of ''cat''-insert plasmid DNA]]
113885 '''Agarose gel electrophoresis''' is a method used in [[molecular biology]] to separate [[DNA]] strands by size, and to determine the size of the separated strands by comparison to strands of known length. Similarly, in [[proteomics|proteomics research]], this method is also used to separate and quantify proteins based on their charge and size.
113886
113887 Electrophoresis uses a mechanism similar to sifting objects through a sieve. In the case of DNA-based gel electrophoresis, an [[electric field]] is used to push negatively charged DNA molecules through a gel matrix. Shorter, more compact DNA molecules move faster than longer, more convoluted ones since they are able to slip through the matrix more easily. The same general principal applies to protein separation although more variables exist to determine how a protein will run through a gel. DNA-based gel electrophoresis can be used for the separation of DNA fragments of 50 [[base pair]]s up to several megabases (millions of bases). Large DNA molecules are only able to move end on in a process called &quot;reptation&quot; and are more difficult to separate. In general the lower the concentration of agarose, the larger is the ideal size of a molecule to be resolved up to 750,000 bp. The disadvantage of lower concentrations is the long run times (sometimes days) and the problem of handling the fragile gel.
113888
113889 The rate of migration is affected by a number of factors. The concentration of agarose is one that has been mentioned. The conformation of DNA is also a factor and is demonstrated by the forms of a [[plasmid]]: supercoiled, nicked, linear and single-stranded. Each conformation runs at a different rate, with supercoiled running the fastest and linear running the slowest. The presence of [[ethidium bromide]] (EtBr) in the gel causes DNA to run slower, as EtBr intercalates and uncoils DNA. EtBr has the unique property of fluorescing under UV light. By running DNA through an EtBr-treated gel and exposing it to UV light, distinct bands of DNA become visible. The voltage is also a factor in migration and can only be so high before a decrease in resolution (about 5 to 8 V/cm). Loading buffers are added with the DNA in order to visualize it and sediment it in the gel well. Negatively charged indicators keep track of the position of the DNA. Bromphenol Blue and Xylene cyanol FF are used and run at about 300 bp and 4 kbp respectively.
113890
113891 There are a number of buffers used for agarose electrophoresis, but only two will be mentioned here: tris acetate [[EDTA]] (TAE), and [[sodium boride]] (SB). TAE has the lowest buffering capacity but provides the best resolution. This means a lower voltage and more time, but a better product. SB is relatively new and is ineffective in resolving fragments larger than 5kb but it has the highest buffering capacity allowing voltages up to 350 V&lt;ref&gt;Sambrook J, Russel DW (2001). Molecular Cloning: A Laboratory Manual 3rd Ed. Cold Spring Harbor Laboratory Press. Cold Spring Harbor, NY.&lt;/ref&gt;&lt;ref&gt;Brody JR, Calhoun ES, Gallmeier E, Creavalle TD, Kern SE (2004). Ultra-fast high-resolution agarose electrophoresis of DNA and RNA using low-molarity conductive media. Biotechniques. 37:598-602. [http://www.biotechniques.com/default.asp?page=article_archive&amp;subsection=article_display&amp;id=101200415&amp;prevpage=article_archive]&lt;/ref&gt;.
113892
113893 ==Material==
113894
113895 For an agarose gel electrophoresis, several items are needed:
113896 * The DNA that is to be separated.
113897 * A [[DNA ladder]], a mixture of DNA fragments (usually 10-20) of known size. The size of the DNA strands that are separated is determined by comparison of their relative position to that of the DNA strands of the DNA ladder. There are several DNA ladder mixes commercially available.
113898 * [[Buffer solution]], usually [[TBE]] or TAE 0.5x, pH 8.0
113899 * [[Agarose]]
113900 * [[Ethidium bromide]] (5.25 mg/ml in H&lt;sub&gt;2&lt;/sub&gt;O)
113901 * [[Nitrile]] gloves
113902 * A color marker containing a low [[molecular weight]] [[dye]] such as &quot;[[bromophenol blue]]&quot; (to enable tracking the progress of the electrophoresis) and glycerol (to make the DNA solution more dense so it will sink into the wells of the gel).
113903 * A gel rack
113904 * A &quot;comb&quot; (usually cut from a sheet of [[teflon]])
113905
113906 ==Preparation==
113907 There are several methods for preparing agarose gels. A common example is shown here. Other methods might differ in the buffering system used, the sample size to be loaded, the total volume of the gel (typically thickness is kept to a minimum while length and breadth are varied as needed), and whether the gel is prepared horizontally or vertically (the vast majority of agarose gels used in modern molecular biology are prepared and run horizontally).
113908
113909 # Make a 1% agarose solution in 0.5x [[TBE]]. If you analyze small DNA strands, go up to 2%. Use 15-70 ml, depending on the size of the gel.
113910 # Boil solution, preferably in a [[microwave oven]].
113911 # Let the solution cool down to about 60 °C at room temperature. Stir the solution while cooling.
113912 # Add 1 ul ethidium bromide per 10 ml gel solution. '''Wear gloves from here on, [[ethidium bromide]] is a potent [[mutagen]] ''(nitrile gloves recommended)'' !''' Some researchers prefer not to add ethidium bromide to the gel itself, instead soaking the gel in an ethidium bromide solution after running.
113913 # Stir the solution to disperse the ethidium bromide, then fill it into the gel rack.
113914 # Insert the comb at one side of the gel, about 5-10 mm from the border of the gel.
113915 # When the gel has cooled down and become solid, remove the comb. The holes that remain in the gel are the slots.
113916 # Put the gel, together with the rack, into a chamber with 0.5x TBE. Make sure the gel is completely covered with TBE, and that the slots are at the electrode that will have the negative current.
113917 # Add the color marker to the DNA ladder is usually already stained.
113918
113919 '''''for more information on ethidium bromide safety see references &lt;ref&gt;States, Kelly M. (2003). Ethidium Bromide in [http://web.princeton.edu/sites/ehs/chemwaste/WastePaper/0302.htm ''The Waste-Paper:The Hazardous Waste Disposal Monthly Update'']. Retrieved 2005-01-31.&lt;/ref&gt;,&lt;ref name=Wisconsin&gt;Office of Biological Safety, Univ. of Wisconsin (Madison) (2003). Ethidium Bromide: Alternatives and Safe Handling in [http://www2.fpm.wisc.edu/biosafety/bioside_lines/bioside_lines_04_2003.htm ''BioSide Lines:The Newsletter of the UW Office of Biological Safety'']. Retrieved 2005-01-31.&lt;/ref&gt;,&lt;ref&gt;Environmental Health and Safety at The Scripps Research Intititute (1999). WILL YOUR GLOVES PROTECT YOU? in [http://www.scripps.edu/researchservices/ehs/News/safetygram/sg1999/sg1999b.html ''Environmental Health &amp; Safety:Second Quarter 1999''] Retrieved 2005-01-31.&lt;/ref&gt;'''''
113920
113921 '''''for information on alternatives to ethidium bromide see references &lt;ref name=Wisconsin/&gt;,&lt;ref&gt;Madden, Dean (2004 [last modified]). [http://www.bioscience-explained.org/EN1.2/schollar.html Safer stains for DNA]. Retrieved 2005-01-31.&lt;/ref&gt;'''''
113922
113923 ==Procedure==
113924 After the gel has been prepared, use a micropipette to inject about 25 Âĩl of stained DNA (a DNA ladder is also highly recommended). Close the lid of the electrophoresis chamber and apply current (typically 100 V for 30 minutes with 15 ml of gel). The colored dye in the DNA ladder and DNA samples acts as a &quot;front wave&quot; that runs faster than the DNA itself. When the &quot;front wave&quot; approaches the end of the gel, the current is stopped. It is now possible to visualize the DNA (stained with ethidium bromide) with [[ultraviolet]] light.
113925
113926 [[image:Agarose Gel Electrophoresis.png|frame|none|Figure 1: Schematic drawing of the electrophoresis process, see text for description of steps]]
113927
113928 Steps:
113929 #The agarose gel with three slots (S).
113930 #Injection of DNA ladder ([[molecular weight]] markers) into the first slot.
113931 #DNA ladder injected. Injection of samples into the second and third slot.
113932 #A current is applied. The DNA moves toward the positive [[anode]] due to the negative charges on its [[phosphate]] backbone.
113933 #Small DNA strands move fast, large DNA strands move slowly through the gel. The DNA is not normally visible during this process, so the marker dye is added to the DNA to avoid the DNA being run entirely off the gel. The marker dye has a low molecular weight, and migrates faster than the DNA, so as long as the marker has not run past the end of the gel, the DNA will still be in the gel.
113934 #The DNA is spread over the whole gel. The electrophoresis process is finished.
113935
113936 Illuminate the gel with an [[ultraviolet]] lamp (usually by placing it on a light box) to view the DNA bands - ethidium bromide [[fluorescence|fluoresces]] pink in the presence of DNA. Wear protective glasses! The DNA band can also be cut out of the gel, and can then be dissolved to retrieve the purified DNA.
113937
113938 ==Analysis==
113939 Modern day gel electrophoresis research often leverages software-based image analysis tools, such as those used in [[two-dimensional gel electrophoresis]], or 2-DE. In [[proteomics|proteomics research]], these tools primarily analyze bio-markers by quantifying individual, and showing the separation between one or more protein &quot;spots&quot; on a scanned image of a 2-DE product. Additionally, these tools match spots between gels of similar samples to show, for example, proteomic differences between early and advanced stages of an illness. Two leading tools in this study are [http://www.bio-rad.com PDQuest] and [http://support.nonlinear.com/products/2d/progenesis.asp Progenesis Workstation]. While this technology is widely utilized, the intelligence has not been perfected yet. For example, while both of the aforementioned tools tend to agree on the quantification and analysis of well-defined well-separated protein spots, they deliver different results and tendencies with less-defined less-separated spots.&lt;ref&gt;Arora, Pankaj S., et al. (2005). Comparative evaluation of two two-dimensional gel electrophoresis image analysis software applications using synovial fluids from patients with joint disease. Journal of Orthopaedic Science 10(2):160-166. [http://www.springerlink.com/openurl.asp?genre=article&amp;id=doi:10.1007/s00776-004-0878-0]&lt;/ref&gt;
113940
113941 == References ==
113942 &lt;references/&gt;
113943
113944 == See also ==
113945 *[[SDS-polyacrylamide gel electrophoresis]]
113946 *[[Southern blot]]
113947 *[[Northern blot]]
113948 *[[PCR]]
113949 *[[Restriction endonuclease]]
113950
113951 [[Category:Molecular biology]]
113952 [[Category:Laboratory techniques]]
113953 [[Category:Electrophoresis]]
113954
113955 [[de:Agarose-Gelelektrophorese]]
113956 [[ja:ã‚ĸã‚Ŧロãƒŧã‚šã‚˛ãƒĢé›ģ気æŗŗ動]]</text>
113957 </revision>
113958 </page>
113959 <page>
113960 <title>Allele</title>
113961 <id>1911</id>
113962 <revision>
113963 <id>41683399</id>
113964 <timestamp>2006-03-01T01:11:36Z</timestamp>
113965 <contributor>
113966 <username>ESkog</username>
113967 <id>88149</id>
113968 </contributor>
113969 <minor />
113970 <comment>Reverted edits by [[Special:Contributions/67.83.116.136|67.83.116.136]] ([[User talk:67.83.116.136|talk]]) to last version by Vsmith</comment>
113971 <text xml:space="preserve">An '''allele''' is any one of a number of viable DNA codings of the same [[gene]] (sometimes the term refers to a non-gene sequence) occupying a given [[locus]] (position) on a [[chromosome]]. An individual's [[genotype]] for that gene will be the set of alleles it happens to possess. In an organism which has two copies of each of its chromosomes (a [[diploid]] organism), two alleles make up the individual's genotype.
113972
113973 An example is the gene for blossom color in many species of [[flower]] -- a single gene controls the color of the [[petals]], but there may be several different versions of the gene. One version might result in red petals, while another might result in white petals. The color of an individual flower will depend on which two alleles it possesses for this color gene, and how the two interact.
113974
113975 Organisms that are [[diploid]] have paired [[homologous]] chromosomes in their [[somatic cell]]s, and these contain two copies of each gene. An organism in which the two copies of the gene are identical -- that is, have the same allele -- is said to be [[homozygote|homozygous]] for that gene. An organism which has two different alleles of the gene is said to be [[heterozygote|heterozygous]]. [[phenotype|Phenotypes]] (the expressed characteristics) associated with a certain allele can sometimes be [[dominant gene|dominant]] or [[recessive]], but often they are neither. A dominant phenotype will be expressed when only one allele of its associated type is present, whereas a recessive phenotype will only be expressed when both alleles are of its associated type.
113976
113977 However, there are exceptions to the way heterozygotes express themselves in the phenotype. One exception is [[incomplete dominance]] (sometimes called [[blending inheritance]]) when alleles blend their traits in the phenotype. An example of this would be seen if, when crossing [[Antirrhinum]]s -- flowers with incompletely dominant &quot;red&quot; and &quot;white&quot; alleles for petal color -- the resulting offspring had pink petals. Another exception is [[co-dominance]], where both alleles are active and both traits are expressed at the same time; for example, both red and white petals in the same bloom or red and white flowers on the same plant. Codominance is also apparent in human [[blood type]]s. A person with one &quot;A&quot; blood type allele and one &quot;B&quot; blood type allele would have a blood type of &quot;AB&quot;.
113978
113979 A [[wild type]] allele is an allele which is considered to be &quot;normal&quot; for the organism in question, as opposed to a [[mutant]] allele which is usually a relatively new modification.
113980
113981 (Note that with the advent of the study of [[genetic marker]]s, the term allele is often now used to refer to DNA codings in [[junk DNA]]. For example, the term [[allele frequency]] tables are often presented for genetic markers, such as the [[DYS (DNA)|DYS]] markers.)
113982
113983 ==Equations==
113984 There are two simple equations for the frequency of two alleles of a given gene (see [[Hardy-Weinberg principle]]):
113985
113986 Equation 1:&lt;math&gt;p^2+2pq+q^2=1&lt;/math&gt;
113987
113988 Equation 2: &lt;math&gt;p+q=1&lt;/math&gt;
113989
113990 Where p is the frequency of one allele and q is the frequency of the other allele. p&lt;sup&gt;2&lt;/sup&gt; is the population fraction that is homozygous for the p allele, 2pq is the frequency of heterozygotes and q&lt;sup&gt;2&lt;/sup&gt; is the population fraction that is homozygous for the q allele. [[Natural selection]] can act on p and q in Equation 1, and obviously affect the frequency of genes seen in Equation 2. It should be noted that the second equation can be derived from the first (or vice versa) since &lt;math&gt;p^2+2pq+q^2=1&lt;/math&gt; implies &lt;math&gt;(p+q)^2=1&lt;/math&gt; and p and q are positive numbers.
113991
113992 ==See also==
113993 * [[Mendelian inheritance]]
113994
113995 [[Category:Classical genetics]]
113996
113997 [[cs:Alela]]
113998 [[da:Allel]]
113999 [[de:Allel]]
114000 [[es:Alelo]]
114001 [[fr:Allèle]]
114002 [[gl:Alelo]]
114003 [[he:אלל]]
114004 [[nl:Allel]]
114005 [[ja:寞įĢ‹éēäŧå­]]
114006 [[lv:Alēle]]
114007 [[pl:Allel]]
114008 [[pt:Alelo]]
114009 [[fi:Alleeli]]
114010 [[sv:Allel]]
114011 [[uk:АĐģĐģĐĩĐģŅŒ]]
114012 [[vi:Allele]]
114013 [[it:Allele]]</text>
114014 </revision>
114015 </page>
114016 <page>
114017 <title>Ampicillin</title>
114018 <id>1912</id>
114019 <revision>
114020 <id>41589686</id>
114021 <timestamp>2006-02-28T09:38:47Z</timestamp>
114022 <contributor>
114023 <username>NongBot</username>
114024 <id>817745</id>
114025 </contributor>
114026 <minor />
114027 <comment>robot Adding: th</comment>
114028 <text xml:space="preserve">[[Image:ampicillin.png|thumb|'''Ampicillin''' ([[Carbon|C]]&lt;sub&gt;16&lt;/sub&gt;[[Hydrogen|H]]&lt;sub&gt;18&lt;/sub&gt;[[Nitrogen|N]]&lt;sub&gt;3&lt;/sub&gt;[[Oxygen|O]]&lt;sub&gt;4&lt;/sub&gt;[[Sulfur|S]])]]
114029 '''Ampicillin''' (C&lt;sub&gt;16&lt;/sub&gt;H&lt;sub&gt;18&lt;/sub&gt;N&lt;sub&gt;3&lt;/sub&gt;O&lt;sub&gt;4&lt;/sub&gt;S ; [[CAS registry number|CAS No.]]: 69-53-4) is an [[aminopenicillin]] and, as such, is a broad-spectrum [[antibiotic]] and has been used extensively to treat [[bacterium|bacterial]] [[infection]]s since [[1961]]. It can sometimes result in allergic reactions that range in severity from a rash to potentially lethal [[anaphylaxis]].
114030
114031 Belonging to the group of [[beta-lactam]] antibiotics, ampicillin is able to penetrate [[Gram-negative]] bacteria. It inhibits the third and final stage of bacterial [[cell wall]] synthesis, which ultimately leads to cell [[lysis]]. Ampicillin is closely related to [[Amoxicillin]], another type of [[penicillin]], and both are used to treat [[urinary tract infections]], [[otitis media]], uncomplicated community acquired [[pneumonia]], [[Haemophilus influenzae]], invasive [[salmonella]] and [[Listeriosis|Listeria]] [[meningitis]]. It is used with [[Flucloxacillin]] in the combination antibiotic [[Co-fluampicil]] for [[empiric]] treatment of [[cellulitis]]; providing cover against [[Group A streptococcal infection]] whilst the Flucloxacillin acts against [[Staphylococcus aureus]].
114032
114033 Ampicillin is often used in [[molecular biology]] as a test for the uptake of [[gene]]s (e.g., by [[plasmid]]s) by bacteria (e.g., ''[[E. coli]]''). A gene that is to be inserted into a bacterium is coupled to a gene [[code for|coding for]] an ampicillin resistance (in ''E. coli'', usually the ''bla'' gene, coding for [[beta-lactamase|&amp;beta;-lactamase]]). The treated bacteria are then grown on a medium containing ampicillin. Only the bacteria that successfully take up the desired genes become ampicillin resistant, and therefore contain the other desired gene as well.
114034
114035 [[category:Beta-lactam antibiotics]]
114036
114037 [[de:Ampicillin]]
114038 [[fr:Ampicilline]]
114039 [[hu:Ampicillin]]
114040 [[th:āšā¸­ā¸Ąā¸žā¸´ā¸‹ā¸´ā¸Ĩā¸Ĩā¸´ā¸™]]</text>
114041 </revision>
114042 </page>
114043 <page>
114044 <title>Annealing</title>
114045 <id>1913</id>
114046 <revision>
114047 <id>39482612</id>
114048 <timestamp>2006-02-13T17:43:56Z</timestamp>
114049 <contributor>
114050 <username>Vsmith</username>
114051 <id>84417</id>
114052 </contributor>
114053 <comment>/* External links */ rmv spam</comment>
114054 <text xml:space="preserve">'''Anneal''' may refer to:
114055
114056 *[[Annealing (metallurgy)]], a heat treatment wherein the microstructure of a material is altered, causing changes in its properties such as strength and hardness.
114057 *[[Annealing (glass)]], heating a piece of glass until its temperature reaches a stress-relief point.
114058 *[[Annealing (biology)]], in genetics, DNA or RNA pairing by hydrogen bonds to a complementary sequence, forming a double-stranded polynucleotide.
114059 *[[Simulated annealing]], a technique for searching for a solution in a space otherwise too large for &quot;ordinary&quot; search methods to yield results.
114060 *[[Information annealing]] or knowledge annealing, in library and information science, is a network-based information system or body of knowledge in which all users of the system are permitted to change the system at will.
114061
114062 {{disambig}}
114063
114064 [[de:Anlassen]]
114065 [[fr:Recuit]]
114066 [[it:Ricottura]]
114067 [[nl:Gloeien (metallurgie)]]</text>
114068 </revision>
114069 </page>
114070 <page>
114071 <title>Antibiotic resistance</title>
114072 <id>1914</id>
114073 <revision>
114074 <id>42033498</id>
114075 <timestamp>2006-03-03T09:45:37Z</timestamp>
114076 <contributor>
114077 <username>Tangotango</username>
114078 <id>210997</id>
114079 </contributor>
114080 <comment>Revert to revision 41974443 using [[:en:Wikipedia:Tools/Navigation_popups|popups]]</comment>
114081 <text xml:space="preserve">'''Antibiotic resistance''' is the ability of a [[microorganism]] to withstand the effects of an [[antibiotic]].
114082 Antibiotic resistance naturally develops via [[natural selection]] through random [[mutation]] and [[plasmid]] exchange between [[bacterium|bacteria]] of the same [[species]]. Antibiotic resistance can also be introduced artificially into a microorganism through [[transformation (genetics)|transformation]] protocols. If a bacterium carries several resistance genes, it is called '''multiresistant''' or, informally, a '''superbug'''.
114083
114084 ==Causes==
114085 Antibiotic resistance is a consequence of [[evolution]] via [[natural selection]]. The antibiotic action is an environmental pressure; those bacteria which have a mutation allowing them to survive will live on to reproduce. They will then pass this trait to their offspring, which will be a fully resistant generation.
114086
114087 Several studies have demonstrated that patterns of antibiotic usage greatly affect the number of resistant organisms which develop. Overuse of [[broad-spectrum antibiotic]]s, such as second- and third-generation [[cephalosporin]]s, greatly hastens the development of methicillin resistance, even in organisms that have never been exposed to the selective pressure of methicillin ''per se''. [Thus the resistance was already present.] Other factors contributing towards resistance include incorrect diagnosis, unnecessary prescriptions, improper use of antibiotics by patients, and the use of antibiotics as livestock food additives for growth promotion.
114088
114089 ==Resistant pathogens==
114090 ''[[Staphylococcus aureus]]'' (colloquially known as &quot;Staph aureus&quot;) is one of the major resistant pathogens. Found on the [[mucous membranes]] and the [[skin]] of around a third of the population, it is extremely adaptable to antibiotic pressure. It was the first bacterium in which [[penicillin]] resistance was found -- in 1947, just four years after the drug started being mass-produced. [[Methicillin]] was then the antibiotic of choice. MRSA ([[Methicillin Resistant Staphylococcus Aureus|methicillin-resistant ''Staphylococcus aureus'']]) was first detected in Britain in 1961 and is now &quot;quite common&quot; in hospitals. MRSA was responsible for 37% of fatal cases of blood poisoning in the UK in 1999, up from 4% in 1991. Half of all ''S. aureus'' infections in the US are resistant to penicillin, methicillin, [[tetracycline]] and [[erythromycin]].
114091
114092 This left [[vancomycin]] as the only effective agent available at the time. However, VRSA ([[Vancomycin-resistant Staphylococcus aureus|Vancomycin-resistant ''Staphylococcus aureus'']]) was first identified in Japan in 1997, and has since been found in hospitals in England, France and the US. VRSA is also termed GISA (glycopeptide intermediate ''Staphylococcus aureus'') or VISA (vancomycin intermediate ''Staphylococcus aureus''), indicating resistance to all [[Glycopeptide antibiotic|glycopeptide]] antibiotics.
114093
114094 A new class of antibiotics, [[Linezolid|oxazolidinone]]s, became available in the 1990s, and the first commercially available oxazolidinone, [[linezolid]], is comparable to vancomycin in effectiveness against MRSA. Linezolid-resistance in ''[[Staphylococcus aureus]]'' was reported in 2003.
114095
114096 ''[[enterococcus|Enterococcus faecium]]'' is another superbug found in hospitals: penicillin resistance was seen in 1983, vancomycin resistance (VRE) in 1987 and [[linezolid]] resistance (LRE) in the late 1990s.
114097
114098 Penicillin-resistant [[pneumonia]] (or pneumococcus, caused by ''Streptococcus pneumoniae'') was first detected in 1967, as was penicillin-resistant [[gonorrhea]]. Resistance to penicillin substitutes is also known beyond ''S. aureus''. By 1993 ''[[Escherichia coli]]'' was resistant to five [[quinolones|fluoroquinolone]] variants. ''[[tuberculosis|Mycobacterium tuberculosis]]'' is commonly resistant to [[isoniazid]] and [[rifampin]] and sometimes universally resistant to the common treatments. Other pathogens showing some resistance include ''[[Salmonella]]'', ''[[Campylobacter]]'', and ''[[Streptococci]]''.
114099
114100 In November, 2004, the [[Centers for Disease Control and Prevention]] (CDC) reported an increasing number of ''[[Acinetobacter baumannii]]'' bloodstream infections in patients at military medical facilities in which service members injured in the [[Iraq]]/[[Kuwait]] region during [[Iraq war|Operation Iraqi Freedom]] and in [[Afghanistan]] during [[Operation Enduring Freedom]] were treated. Most of these showed [[multidrug resistance]] (MRAB), with a few isolates resistant to all drugs tested. [http://www.cdc.gov/mmwr/preview/mmwrhtml/mm5345a1.htm]
114101
114102 ==Antibiotic resistance and the role of animals==
114103 [[Methicillin Resistant Staphylococcus Aureus|MRSA ]] is acknowledged to be a human commensal and pathogen. MRSA has been found in cats, dogs and horses, where it can cause the same problems as it does in humans. Owners can transfer the organism to their pets and vice-versa, and MRSA in animals is generally believe to be derived from humans.
114104
114105 This is not the case for other pathogens, however. There are concerns that some antibiotic resistant organisms may derive from the use of antibiotics in food animals. 15% of all antibiotics manufactured in Europe are used on animals. For precisely this reason, in many countries, antibiotics that are licensed for human use are banned from use in animals. However, related antbiotics are often used as growth promoters (particularly in poultry) and have been associated with the development of resistant strains.
114106
114107 The US [[Food and Drug Administration]] banned [[enrofloxacin]] from use in poultry in July 2005. [[Campylobacter]] is an avian gut [[commensal]], and Campylobacter [[gastroenteritis]] in humans is associated with the consumption of undercooked chicken. Campylobacter resistance is up to 20% in parts of the developed world. Enrofloxacin is a [[fluoroquinolone]] whose mechanism of action is very similar to ciprofloxacin; it is used in veterinary practice to treat respiratory infections of poultry, when it is added to water or to the feed and may be used to medicate a whole flock. Farmers lobby groups often agitate that there is no evidence of the transfer of antibiotic resistance in food animals to humans, but given Campylobacter does not naturally occur in humans and that ciprofloxacin resistance is increasing, it is difficult not to draw the conclusion that ciprofloxacin-resistant Campylobacter in humans arises from eating enrofloxacin-resistant Campylobacter in chickens, hence the FDA ban on [[enrofloxacin]].
114108
114109 The illegal use of [[amantadine]] to medicate poultry in the South of China and other parts of southeast Asia, means that although the H5N1 strain that appear in Hong Kong in 1997 was amantadine sensitive, the more recent strains have all been amantadine resistant. This seriously reduces the treatment options available to doctors in the event of an influenza pandemic.
114110
114111 Eighteen UK organisations banded together in November 1997 to set guidelines on the use of antibiotics in farm animals, in order to address the concerns of the larger public. The consortium is called RUMA ([[Responsible use of Medicine in Agriculture Alliance]]) Members of this consortium include the [[British Poultry Council]] and various industry and pharmaceutical firms. The European Union has banned the use of all antibiotics as growth promoters from [[1 January]] [[2006]].
114112
114113 ==Alternatives to antibiotics==
114114 ===Prevention===
114115 [[Hand washing|Wash hands properly]] to reduce the chance of getting sick and spreading infection. Wash fruits and vegetables thoroughly. Avoid raw eggs and undercooked meat, especially in ground form.
114116
114117 Do not ''demand'' antibiotics from your physician; if antibiotics are not prescribed, there is a reason.
114118
114119 When given antibiotics, take them '''''exactly''''' as prescribed, and complete the full course of treatment; do '''''not''''' hoard pills for later use, or share leftover antibiotics.
114120
114121 ===Vaccines===
114122 [[Vaccine]]s do not suffer the problem of resistance because a vaccine enhances the body's natural defenses, while an antibiotic operates separately from the body's normal defenses. Nevertheless, new strains may evolve that escape immunity induced by vaccines.
114123
114124 While theoretically promising, anti-staphylococcal vaccines have shown limited efficacy, because of immunological variation between ''Staphylococcus'' species, and the limited duration of effectiveness of the antibodies produced. Development and testing of more effective vaccines is under way.
114125
114126 ===Phage therapy===
114127 [[Phage therapy]] is a more recent alternative that can cope with the problem of resistance.
114128
114129 ==Development of newer antibiotics==
114130 The resistance problem demands that a renewed effort be made to seek antibacterial agents effective against pathogenic bacteria resistant to current antibiotics. One of the possible strategies towards this objective is the rational localization of bioactive phytochemicals. Plants have an almost limitless ability to synthesize aromatic substances, most of which are phenols or their oxygen-substituted derivatives such as tannins. Most are secondary metabolites, of which at least 12,000 have been isolated, a number estimated to be less than 10% of the total{{fact}}. In many cases, these substances serve as plant defense mechanisms against predation by microorganisms, insects, and herbivores. Many of the herbs and spices used by humans to season food yield useful medicinal compounds including those having antibacterial activity.
114131
114132 Traditional healers have long used plants to prevent or cure infectious conditions. Many of these plants have been investigated scientifically for antimicrobial activity and a large number of plant products have been shown to inhibit growth of pathogenic bacteria. A number of these agents appear to have structures and modes of action that are distinct from those of the antibiotics in current use, suggesting that cross-resistance with agents already in use may be minimal.
114133
114134 ==See also==
114135 *[[list of environment topics]]
114136 *[[nosocomial infection]]
114137 *[[tuberculosis]]
114138 *[[bacterial conjugation]]
114139
114140 ==External links==
114141 * [http://www.cc.nih.gov/hes/vre.html Vancomycin Resistant Enterococcus - Guidelines for Healthcare Workers]
114142 * [http://antibiotic.org Alliance for the Prudent Use of Antibiotics]
114143 * [http://www.stoptriclosan.com StopTriclosan.com]
114144 [[Category:Antibiotics]]
114145 [[Category:Microbiology]]
114146 [[da:Antibiotikaresistens]]
114147 [[de:Antibiotikum-Resistenz]]
114148 [[nl:Resistentie]]
114149 [[fr:RÊsistance aux antibiotiques]]
114150
114151 ==References==
114152 * {{cite journal
114153 | author=Lord Soulsby of Swaffham Prior
114154 | title=Resistance to antimicrobials in humans and animals
114155 | journal=Brit J Med
114156 | year=2005
114157 | volume=331
114158 | pages=1219&amp;ndash;20
114159 | url=http://bmj.bmjjournals.com/cgi/content/extract/331/7527/1219?maxtoshow=&amp;HITS=10&amp;hits=10&amp;RESULTFORMAT=&amp;andorexactfulltext=and&amp;searchid=1138116795534_11131&amp;FIRSTINDEX=0&amp;sortspec=relevance&amp;volume=331&amp;firstpage=1219&amp;resourcetype=1 }}</text>
114160 </revision>
114161 </page>
114162 <page>
114163 <title>Antigen</title>
114164 <id>1915</id>
114165 <revision>
114166 <id>42046833</id>
114167 <timestamp>2006-03-03T12:47:51Z</timestamp>
114168 <contributor>
114169 <username>Reinoutr</username>
114170 <id>158685</id>
114171 </contributor>
114172 <comment>/* Origin of antigens */ added autoantigen</comment>
114173 <text xml:space="preserve">An '''antigen''' is a substance that stimulates an [[immune system|immune]] response, especially the production of [[antibodies]]. ''Antigens'' are usually [[protein]]s or [[polysaccharide]]s, but can be any type of molecule, including small molecules ([[hapten]]s) coupled to a [[carrier-protein]].
114174
114175 ==Types of antigens==
114176 *'''Immunogen''' - Any substance that provokes the immune response when introduced into the body. An immunogen is always a [[macromolecule]] (protein, polysaccharide). Its ability to stimulate the immune reaction depends on its commoness to the host, molecular size, chemical composition and heterogeneity (e.g. simlar to amino acids in a protein).
114177 *'''Tolerogen''' - An antigen that invokes a specific immune non-responsiveness due to its [[molecular form]]. If its molecular form is changed, a tolerogen can become an immunogen.
114178 *'''Allergen''' - An allergen is a substance that causes the [[allergic reaction]]. It can be ingested, inhaled, injected or comes into contact with skin.
114179
114180 Cells present their antigens to the et via a [[histocompatibility molecule]]. Depending on the antigen presented and the type of the histocompatibility molecule, several types of [[immune cell]]s can become activated.
114181
114182 ==Origin of antigens==
114183 We can also classify antigens according to their origin.
114184
114185 ===Exogenous antigens===
114186 Exogenous antigens are antigens that have entered the body from the outside, for example by inhalation, ingestion, or injection. By [[endocytosis]] or [[phagocytosis]], these antigens are taken into the [[antigen-presenting cell]]s (APCs) and processed into fragments. APCs then present the fragments to [[T helper cells]] ([[CD4]]&lt;sup&gt;+&lt;/sup&gt;) by the use of [[Major histocompatibility complex|class II histocompatibility molecule]]s on their surface. Some T cells are specific for the peptide:MHC complex. They become activated and start to secrete [[cytokine]]s. Cytokines are substances that can activate [[cytotoxic T lymphocytes]] (CTL), antibody-secreting [[B cells]], [[macrophages]] and other cells.
114187
114188 ===Endogenous antigens===
114189 Endogenous antigens are antigens that have been generated within the cell, as a result of normal cell [[metabolism]], or because of viral or intracellular bacterial [[infection]]. The fragments are then presented on the cell surface in the complex with [[class I histocompatibility molecule]]s. If activated cytotoxic CD8&lt;sup&gt;+&lt;/sup&gt; [[Cytotoxic T cell|T cell]]s recognize them, the T cells begin to secrete different [[toxin]]s that cause the [[lysis]] or [[apoptosis]] of the infected cell. In order to keep the cytotoxic cells from killing cells just for presenting self-proteins, self-reactive T cells are deleted from the repertoire as a result of [[central tolerance]] (also known as [[negative selection]] which occurs in the [[thymus]]). Only those CTL that do not react to self-peptides that are presented in the thymus in the context of [[MHC class I]] molecules are allowed to enter the bloodstream.
114190
114191 There is an exception to the exogenous/endogenous antigen paradigm, called [[cross-presentation]].
114192
114193 ===Autoantigens===
114194 An [[autoantigen]] is usually a normal protein or complex of proteins (and sometimes DNA or RNA) that is recognized by the immune system of patients suffering from a specific [[autoimmune disease]]. These antigens should under normal conditions not be the target of the immune system, but due to mainly genetic and enviromental factors the normal [[immunological tolerance]] for such an antigen has been lost in these patients.
114195
114196 ==Tumor antigens==
114197 '''Tumor antigens''' are those antigens that are presented by the [[MHC I]] molecules on the surface of [[tumor cell]]s. These antigens can sometimes be presented only by tumor cells and never by the normal ones. In this case, they are called '''tumor-specific antigens''' and typically result from a tumor specific mutation. More common are antigens that are presented by tumor cells and normal cells, and they are called '''tumor-associated antigens'''. [[Cytotoxic T lymphocytes]] that recognized these antigens may be able to destroy the tumor cells before they proliferate or [[metastasize]].
114198
114199 Tumor antigens can also be on the surface of the tumor in the form of, for example, a mutated receptor, in which case they will be recognized by [[B cells]].
114200
114201 ==External links==
114202 National Library of Medicine/Medline (National Insititute of Health) website '''http://www.nlm.nih.gov/medlineplus/ency/article/002224.htm'''
114203
114204 {{immune_system}}
114205 [[Category:Immune system]]
114206 [[Category:Immunology]]
114207
114208 [[bg:АĐŊŅ‚иĐŗĐĩĐŊ]]
114209 [[cs:Antigen]]
114210 [[da:Antigen]]
114211 [[de:Antigen]]
114212 [[es:Antígeno]]
114213 [[eu:Antigeno]]
114214 [[fr:Antigène]]
114215 [[ko:항ė›]]
114216 [[it:Antigene]]
114217 [[he:אנטיגן]]
114218 [[nl:Antigeen]]
114219 [[ja:抗原]]
114220 [[no:Antigen]]
114221 [[pl:Antygen]]
114222 [[pt:Antígeno]]
114223 [[ro:Antigen]]
114224 [[fi:Antigeeni]]
114225 [[sv:Antigen]]
114226 [[vi:KhÃĄng nguyÃĒn]]
114227 [[uk:АĐŊŅ‚иĐŗĐĩĐŊ]]
114228 [[zh:抗原]]</text>
114229 </revision>
114230 </page>
114231 <page>
114232 <title>Autosome</title>
114233 <id>1916</id>
114234 <revision>
114235 <id>40212087</id>
114236 <timestamp>2006-02-19T00:09:48Z</timestamp>
114237 <contributor>
114238 <username>GrinBot</username>
114239 <id>411872</id>
114240 </contributor>
114241 <minor />
114242 <comment>robot Adding: hu</comment>
114243 <text xml:space="preserve">An '''autosome''' is a non-sex [[chromosome]]. It is an ordinary paired chromosome that is the same in both [[sex]]es of a [[species (biology)|species]]. For example, in humans, there are 22 pairs of autosomes. The X and Y chromosomes are not autosomal.
114244
114245 Non-autosomal chromosomes are usually referred to as [[sex chromosome]]s or, less frequently, as gonosomes.
114246
114247 ===Uses===
114248 An ''autosomal dominant gene'' is one on an autosome that is always expressed, even if a single copy exists. The chance is 1:2 for passing this gene to offspring. There are 23 pairs of chromosomes in humans.
114249
114250 {{chromo}}
114251
114252 [[Category:Chromosomes]]
114253
114254 [[de:Autosom]]
114255 [[et:Autosoom]]
114256 [[es:AutosÃŗmico]]
114257 [[fr:Chromosome homologue]]
114258 [[he:אוטוזומי]]
114259 [[hu:AutoszÃŗma]]
114260 [[nl:Autosoom]]
114261 [[pl:Autosom]]
114262 [[sr:АŅƒŅ‚ОСОĐŧ]]
114263 [[sv:Autosom]]</text>
114264 </revision>
114265 </page>
114266 <page>
114267 <title>Antwerp (disambiguation)</title>
114268 <id>1919</id>
114269 <revision>
114270 <id>38625655</id>
114271 <timestamp>2006-02-07T15:54:35Z</timestamp>
114272 <contributor>
114273 <username>Percy Snoodle</username>
114274 <id>163840</id>
114275 </contributor>
114276 <comment>[[computer role-playing game]]</comment>
114277 <text xml:space="preserve">'''Antwerp''' (''Antwerpen'' in [[Dutch language|Dutch]]) is the name of a city and a province in [[Flanders]], one of the three regions of [[Belgium]]:
114278 * [[Antwerp]] (city)
114279 * [[Antwerp (province)]]
114280
114281 '''Antwerp''' is also the name of a number of places in the [[United States]]:
114282 * [[Antwerp, Ohio]]
114283 * [[Antwerp Township, Michigan]]
114284 * [[Antwerp (village), New York |Antwerp, New York]] (village)
114285 * [[Antwerp (town), New York |Antwerp, New York]] (town)
114286
114287 An '''antwerp''' is also a monster in the classic [[computer role-playing game]] [[Quest for Glory]] series. It is unclear whether the monster was named after the city in Belgium or if this was a coincidence.
114288
114289 {{disambig}}</text>
114290 </revision>
114291 </page>
114292 <page>
114293 <title>Aquila</title>
114294 <id>1920</id>
114295 <revision>
114296 <id>41753198</id>
114297 <timestamp>2006-03-01T14:23:02Z</timestamp>
114298 <contributor>
114299 <username>Colonies Chris</username>
114300 <id>577301</id>
114301 </contributor>
114302 <comment>moved CEV to [[Altair (disambiguation)]]</comment>
114303 <text xml:space="preserve">The term '''Aquila''' can refer to several things:
114304
114305 *''Aquila'' is Latin for [[eagle]].
114306 *''Aquila'' is a genus of birds to which some eagles, particularly the [[Golden Eagle]], belong. See [[eagle]].
114307 *[[Aquila (constellation)|Aquila]] is the astronomical constellation of The Eagle.
114308 *[[Aquila (Roman)|Aquila]] is the eagle-shaped battle standard of a Roman legion.
114309
114310 '''Places:'''
114311 *[[L'Aquila]], sometimes &quot;Aquila&quot;, is a town in [[Italy]].
114312 *[[Aquila, MichoacÃĄn]], is a municipality and its main town in the Mexican state of [[MichoacÃĄn]].
114313 *[[Aquila, Veracruz]], is a municipality and its main town in the Mexican state of [[Veracruz]].
114314 *[[Aquila, Switzerland]], is a village in the canton of [[Ticino]].
114315
114316 '''People:'''
114317 *[[Aquila (bible)|Aquila]], a Biblical person from the Acts and Paul's letters.
114318 *[[Aquila of Sinope]], 2nd century author of a translation of the Old Testament into Greek
114319
114320 '''Craft:'''
114321 * [[USS Aquila (PHM-4)|USS ''Aquila'']], a hydrofoil formerly operated by the U.S. Navy.
114322 * The [[Italian aircraft carrier Aquila|''Aquila'']], a World War II Italian aircraft carrier.
114323 * [http://i1.tinypic.com/nz3asx.jpg ''Aquila UAV''] was the [[US Army]]'s first [[unmanned aerial vehicle|UAV]] for reconnaissance
114324
114325 '''Organisations:'''
114326 * [[Aquila Airways]], a British flying boat operator (1948&amp;ndash;1958).
114327 * [[Aquila, Inc.]], an electric and gas utility headquartered in Kansas City, Missouri, United States.
114328 * ''Aquila'' is an Italian car manufacturer or brand - see [[List of automobile manufacturers]]
114329 * ''Aquila Cycles'' is a [http://www.aquilacycles.com/ Canadian bicycle manufacturer]
114330
114331 '''Entertainment and literature:'''
114332 * ''Aquila'' is the title of a book by [[Andrew Norriss]]
114333 * [[Aquila (TV Show)|''Aquila'']] was a BBC TV production for children that originally aired in the UK during the late 1990s.
114334 {{disambig}}
114335
114336 [[ca:Aquila]]
114337 [[de:Aquila]]
114338 [[es:Aquila]]
114339 [[fr:Aquila]]
114340 [[it:Aquila]]
114341 [[nl:Aquila]]
114342 [[pl:Orzeł (strona ujednoznaczniająca)]]
114343 [[pt:Aquila (desambiguaçÃŖo)]]
114344 [[tr:Kartal]]</text>
114345 </revision>
114346 </page>
114347 <page>
114348 <title>Al-Qaeda</title>
114349 <id>1921</id>
114350 <restrictions>move=:edit=</restrictions>
114351 <revision>
114352 <id>42158957</id>
114353 <timestamp>2006-03-04T05:15:58Z</timestamp>
114354 <contributor>
114355 <username>JW1805</username>
114356 <id>104381</id>
114357 </contributor>
114358 <minor />
114359 <comment>rvt</comment>
114360 <text xml:space="preserve">{{lowercase|title=al-Qaeda }}
114361 [[Image:Osama-med.jpg|thumb|right|[[Osama bin Laden]], founder of al-Qaeda, in the 1990's.]]
114362
114363 '''al-Qaeda''' ({{lang-ar|اŲ„Ų‚اؚد؊}}, ''el-Qā‘idah'' or ''al-Qā‘idah''; &quot;the foundation&quot; or &quot;the base&quot;) is the name given to an international [[Islamic fundamentalism|Islamic fundamentalist]] campaign comprised of independent and collaborative cells that all profess the same cause of reducing outside influence upon [[Islam]]ic affairs. Though al-Qaeda is philosophically heterogeneous, prominent members of the movement are considered to have [[Salafi]] beliefs.
114364
114365 The [[National Commission on Terrorist Attacks Upon the United States]] (9/11 Commission) says that al-Qaeda is responsible for a large number of high-profile, violent attacks against civilians, military targets, and commercial institutions in both the west and the Muslim world. The [[9/11 Commission Report]] attributed the [[September 11, 2001 attacks]] on the [[World Trade Center]] in [[New York City]], [[The Pentagon]] in [[Arlington, Virginia|Arlington]] and Flight 93 in Pennsylvania to al-Qaeda.
114366
114367 Although the group may have been directly responsible for these attacks, many respected observers such as [[Michael Scheuer]], an ex-[[CIA]] terrorism analyst, believe that al-Qaeda has evolved into a ''movement'' &quot;...where the [[jihad]] is self-sustaining, where Islamic warriors fight America with or without allegiance to al-Qaeda’s bin Laden, and where the name 'al-Qaeda' provides the inspiration for subsequent international attacks.&quot; &lt;ref&gt;{{cite web | title=Experts fear 'endless' terror war | work=MSNBC.com | url=http://www.msnbc.msn.com/id/8524679 | accessdate=July 9 | accessyear=2005}}&lt;/ref&gt;
114368
114369 The origins of al-Qaeda can be traced to the [[Soviet Union|Soviet]] invasion of [[Afghanistan]], when a cadre of non-Afghani, [[Arab]] [[Muslim]] fighters joined the largely [[United States]] and [[Pakistan]]-funded Afghan [[mujahideen|mujāhidÄĢn]] anti-Russian resistance movement. [[Osama bin Laden]], a member of a prominent Saudi Arabian business family, led an informal grouping which became a leading fundraiser and recruitment agency for the Afghan cause in Muslim countries; it channelled Islamic fighters to the conflict, distributed money and provided logistical skills and resources to both fighting forces and Afghan refugees.
114370
114371 After the Soviet withdrawal from Afghanistan in 1989 many committed veterans of the war wished to fight for Islamic causes elsewhere. The invasion and occupation of Kuwait by Iraq in 1990 saw US and coalition troops sent to Saudi Arabia in preparedness for expelling Iraqi occupying forces from Kuwait. Al-Qaeda was strongly opposed to the secular regime of [[Saddam Hussein]] and bin Laden had offered use of his fighters' services to the Saudi throne, but the deployment of 'infidel' forces to Islamic sacred territory was seen as an act of treachery by bin Laden. He placed the grouping in militant opposition to the [[United States]] and its allies. Al-Qaeda came to claim that the U.S. is oppressive toward Muslims citing U.S. support for [[Israel]] in the [[Arab-Israeli conflict]], the US military presence in several Islamic countries (particularly Saudi Arabia) and latterly the 2003 invasion and occupation of Iraq, (&quot;[[Iraq war]]&quot;) as reasons for militant action.
114372
114373 [[Osama bin Laden]] and [[Ayman al-Zawahiri]] are senior members of al-Qaeda's [[shura]] council, and are believed to be in contact with some of al-Qaeda's other cells.
114374
114375 ==Overview==
114376 In formal communications, Bin Laden has preferred to use the '''International Front for Jihad against the Jews and Crusaders''' as the name for the grouping rather than &quot;al-Qaeda&quot;.
114377 [[Image:Zawahiri.jpg|thumb|left|[[Ayman al-Zawahiri]].]]
114378 While common usage of the name &quot;al-Qaeda&quot; dates from much earlier, 2001 saw the first formal use of the name &quot;al-Qaeda&quot; for the grouping when the American government decided to prosecute Bin Laden in his absence using anti-Mafia laws that required the existence of a named criminal organisation. Bin Laden himself is probably the best source for the origin of the al-Qaeda label. Speaking in 2001 he said: &quot;The name 'al Qaeda' was established a long time ago by mere chance. The late Abu Ebeida El-Banashiri established the training camps for our mujahedeen against Russia's terrorism. We used to call the training camp al Qaeda [meaning 'the base' in English]. And the name stayed.&quot;&lt;ref&gt;{{cite web | title=Transcript of Bin Laden's October interview | work=CNN.com | url=http://archives.cnn.com/2002/WORLD/asiapcf/south/02/05/binladen.transcript/index.html | accessdate=February 2 | accessyear=2005}}&lt;/ref&gt;
114379
114380 Al-Qaeda's philosophical inspiration comes from the writings of [[Sayyid Qutb]], a prominent thinker from the [[Muslim Brotherhood]], whose essays inspired most of the principal militant [[Islamism|Islamist]] movements in the Middle East today. Though it adheres to no particular sect, in general its philosophy is [[Salafist]]. It calls for an armed Islamist [[revolution]] to foment the overthrow of all regimes which do not rule by Islamic law and to enforce the expulsion of Western military and commercial interests from all Muslim countries.
114381
114382 According to statements broadcast by al-Qaeda on the internet and on satellite TV channels, the ultimate goal of al-Qaeda is to re-establish the [[Caliphate]] across the Islamic world, by working with allied Islamic extremist groups to overthrow secular or Western-supported regimes. Anti-Israeli sentiments are often expressed. In a 1997 interview with Peter Arnett, Osama bin Laden cites America's presence in the Middle East and its support for Israel as the chief reasons for his organization's actions.
114383
114384 Al-Qaeda believes that western governments, and particularly the American government, act against the interests of Muslims. Their grievances have included: the provision of economic and military support to regimes perceived by al-Qaeda as oppressive of Muslims (particularly the US and its support for Israel), the vetoing of United Nations condemnations of Israel, attempts to influence the affairs of Islamic governments and communities, direct support by means of arms or loans for anti-Islamist Arab regimes, maintaining a troop presence in Muslim countries, especially in Saudi Arabia, and (although al-Qaeda has a long history of opposition to Saddam Hussein) the American and British [[2003 invasion of Iraq]].
114385
114386 Besides the [[September 11, 2001, attacks]] on the [[World Trade Center]] in [[New York]] and [[the Pentagon]] in [[Washington, D.C.]], al-Qaeda is believed to have been implicitly involved in the [[1998 U.S. embassy bombings]] in [[Nairobi]], [[Kenya]], and [[Dar-Es-Salaam]], [[Tanzania]], the [[USS Cole bombing|attack on the USS Cole]], the [[7 July 2005 London bombings]], as well as many attacks on people in and of other nations around the world.
114387
114388 The military leader of al-Qaeda is widely reported to have been [[Khalid Shaikh Mohammed]], who was arrested in [[Pakistan]] in 2003. Its previous military leader, [[Mohammed Atef]], was killed in a U.S. bombing raid on [[Afghanistan]] in late 2001.
114389
114390 ==History of al-Qaeda==
114391 ===Afghan jihad===
114392 [[Image:Mujahidin3-250.jpg|thumb|right|275px|A Mujahid (plural:Mujahidin) during the Soviet war in Afghanistan. Photo by Del Boone]]
114393 Al-Qaeda evolved from the [[Maktab al-Khadamat]] (Office of Services, MAK) — a [[mujahideen|Mujahidin]] organization fighting to establish an Islamic state during the [[Soviet war in Afghanistan]] in the [[1980s]]. Original funding was fosterd by the [[CIA]]. Osama bin Laden was a founding member of the MAK, along with [[Palestinian]] militant [[Abdullah Yusuf Azzam]]. The role of the MAK was to channel funds from a variety of sources (including donations from across the Middle East) into training [[mujahideen|Mujahidin]] from around the world in guerrilla combat, and to transport the combatants to Afghanistan. The MAK was mostly funded by donations from wealthy Muslim individuals but was also allegedly aided by the governments of [[Pakistan]] and [[Saudi Arabia]], and indirectly by the [[United States]], which channeled much of its support via the Pakistani intelligence service, the Inter-Services Intelligence (ISI) Directorate. During the latter half of the 1980s, the MAK was a relatively minor grouping in Afghanistan with no direct combatants; rather it limited its activities to fundraising, logistics, housing, education, refugee care, recruitment and the financing of other mujahideen.
114394
114395 After a protracted and costly war lasting nine years, the Soviet Union finally withdrew from Afghanistan in 1989. [[Mohammed Najibullah]]'s socialist Afghan government was rapidly overthrown by elements of the Mujahidin. With Mujahidin leaders unable to agree on a structure for governance, anarchy ensued with ever-changing control of ill-defined territories falling under constantly reorganising alliances and schisms between regional warlords.
114396
114397 ===Outreach from Afghanistan===
114398 Toward the end of the [[Soviet Union|Soviet]] military mission to Afghanistan, some [[mujahideen|Mujahidin]] wanted to expand their operations to include Islamist struggles in other parts of the world. A number of overlapping and interrelated organizations were formed to further those aspirations.
114399
114400 One of these was the organization that would eventually be called al-Qaeda which was formed by Osama bin Laden in 1988. Bin Laden wished to extend the conflict to nonmilitary operations in other parts of the world; Azzam, in contrast, wanted to remain focused on military campaigns. After Azzam was assassinated in 1989, the MAK split, with a significant number joining bin Laden's organization.
114401
114402 ===Gulf War and start of US enmity===
114403 Following the Soviet Union withdrawal from Afghanistan, Osama bin Laden returned to [[Saudi Arabia]]. The Iraqi invasion of Kuwait in 1990 had put the Saudi Arabian ruling House of Saud at risk both from internal dissent and the perceived possibility of further Iraqi expansionism. In the face of seemingly massive Iraqi military presence, Saudi Arabia's own forces were well armed but outnumbered. Bin Laden offered the services of his mujahideen to [[Fahd of Saudi Arabia|King Fahd]] to protect Saudi Arabia from the Iraqi army. But from the strategic viewpoint, were Iraqi forces to be ejected from Kuwait, Saudi Arabia provided the only possible land-bridge whereby international troops could assemble in order that the Iraqi invasion could be repulsed.
114404
114405 After some deliberation the Saudi Monarch refused bin Laden's offer and instead opted to allow United States and allied forces to deploy on his territory. Bin Laden considered this a treacherous deed. He believed that the presence of foreign troops in the &quot;land of the two mosques&quot; ([[Mecca]] and [[Medina]]) profaned sacred soil. After speaking publicly against the Saudi government for harboring American troops he was quickly forced into exile to Sudan and his Saudi citizenship was revoked.
114406
114407 Shortly afterwards the movement which came to be known as al-Qaeda was formed.
114408
114409 ===Sudan===
114410 In 1991, Sudan's [[National Islamic Front]], an Islamist group that had recently gained power, invited al-Qaeda to move operations to their country. For several years, al-Qaeda ran several businesses (including an import/export business, farms, and a construction firm) in what might be considered a period of financial consolidation. The group was responsible for the construction of a major 1200km (845mi) highway connecting the capital Khartoum with Port Sudan. But they also ran a number of camps where they trained aspirants in the use of firearms and explosives.
114411
114412 In 1996, Osama bin Laden was asked to leave Sudan after the US put the regime under extreme pressure to expel him, citing possible connections to the 1994 attempted assassination of [[Egypt|Egyptian]] President [[Hosni Mubarak]] while his motorcade was in [[Addis Ababa, Ethiopia]]. A controversy exists regarding whether Sudan offered to turn bin Laden over to the U.S. prior to the expulsion. The Sudanese government never indeed made such an offer but were prepared to turn him over to Saudi Arabia who declined to take him.
114413
114414 Osama bin Laden finally left Sudan in a well planned and executed operation accompanied by some 200 of his supporters and their families travelling directly to Jalalabad, Afghanistan by air in late 1996.
114415
114416 ===Bosnia===
114417 The secession of [[Bosnia and Herzegovina|Bosnia]] from the multicultural [[Yugoslavia|Yugoslavian Federation]] and the subsequent declaration of Bosnia-Herzegovinan independence in October 1991 opened up a new ethnic and quasi-religious conflict at the heart of Europe.
114418
114419 [[Bosnia and Herzegovina]] was ethnically diverse, with a nominal Muslim majority but with significant numbers of ethnic ([[Orthodox Christian]]) [[Serbs]] and ([[Roman Catholic]]) [[Croats]] distributed across its territory. It comprised a large, but militarily weak component of the former Yugoslavia and Yugoslavian disintegration saw some ethnic Serbs and some ethnic Croats within Bosnia, supported by their rump adjacent states (Serbia and Croatia), engage in a three way conflict against the [[Bosniaks]] dominated core.
114420
114421 Radical Arab veterans of the war against the Soviets in [[Afghanistan]] seized on Bosnia as a new opportunity to &quot;defend Islam&quot;. Besieged on two fronts and seemingly abandoned by the West, the Bosnian regime was willing to accept any help it could get, military or financial, including that of a number of Islamic organisations, of which al-Qaeda was one&lt;ref&gt;{{cite book | author = Kohlmann, Evan F. | title = Al-Qaida's Jihad in Europe: The Afghan-Bosnian Network | publisher = Berg | year = 2004 | id = ISBN 1859738079}}&lt;/ref&gt;.
114422
114423 Several close associates of Osama bin Laden (most notably, Saudi [[Khalid bin Udah bin Muhammad al-Harbi]], alias Abu Sulaiman al-Makki) joined the conflict in Bosnia&lt;ref&gt;{{cite book | author=Kohlmann, Evan F. | title = Al-Qaida's Jihad in Europe: The Afghan-Bosnian Network | publisher=Berg | year=2004 | id=ISBN 1859738079}}&lt;/ref&gt;, but while al-Qaeda might initially have seen Bosnia as a possible bridgehead enabling the radicalisation of European Muslims for operations against other European states and America, [[Bosniaks]] had been secularised for generations and their interest in fighting was largely limited to securing the survival of their nascent state.
114424
114425 The &quot;Bosnian Mujahidin&quot; (comprising largely Arab veterans of the Afghan war and not ''necessarily'' members of al-Qaeda) thus operated as a largely autonomous force within central Bosnia. While their bravery in the fray initially attracted a small number of native Bosnians to join them, their brutality and a rising number of atrocites committed against civilians came to appall many native Bosnians and repelled new recruits. At the same time, their vigorous attempts to Islamicize the local population with rules on appropriate dress and behaviour were widely resented and largely went unheeded. In his book ''Al-Qaida’s Jihad in Europe: the Afghan-Bosnian network'', Evan Kohlmann sums up: ‘In spite of vigorous efforts to ‘Islamicise’ the nominally Muslim Bosnian populace, the locals could not be convinced to abandon pork, alcohol, or public displays of affection. Bosnian women persistently refused to wear the [[hijab]] or follow the other mandates for female behaviour prescribed by extreme fundamentalist Islam.’
114426
114427 The signing of the [[Washington Agreement]] in March 1994 brought to an end the Bosnian-Croatian conflict. While the &quot;Bosnian Mujahidin&quot; remained to fight on in the war against the Serbs, the [[Dayton Peace Accord]] of November 1995 brought that conflict to an end and required that foreign fighters disband and leave the country, with aid being conditional on this taking place. With Bosnian government support, [[NATO]] forces took effective action to close their bases and deport them. A limited number of former Mujahidin who had either married native Bosnians or who could not be found a country to go to were permitted to stay in Bosnia and granted Bosnian citizenship, but with the war in Bosnia over, many committed battle-hardened veterans had already returned to familiar territory.
114428
114429 ===Return to Afghanistan===
114430 After the Soviet withdrawal, Afghanistan was effectively ungoverned for seven years and plagued by constant infighting between the former allies, the various Mujahidin groups and their leaders.
114431
114432 Throughout the 1990s a new force began to emerge. The origins of the [[Taliban]] (literally &quot;students&quot;) lay in children of Afghanis, many of them orphaned by the war, and many of whom had had been educated in the rapidly expanding network of Islamic schools (madrassas) either in Kandahar or in the refugee camps on the Afghan-Pakistani border.
114433
114434 According to Ahmad Rashid's well-regarded book ''Taliban'', five leaders of the Taliban were graduates of a single madrassa, Darul Uloom Haqqania, Akora Khattak, near Peshawar which is situated in Pakistan but which was largely attended by Afghan refugees. This institution reflected Salafi beliefs in its teachings and much of its funding came from private donations from wealthy Arabs for which bin Laden provided conduit. A further four more leading figures (including the perceived Taliban leader Mullah [[Mohammed Omar]] Mujahed) attended a similarly funded and influenced madrassa in Kandahar, Afghanistan.
114435
114436 The ties between the Afghan Arabs and Taliban ran deep. Many of the mujahidin who later joined the Taliban fought alongside Afghan warlord Mohammad Nabi Mohammadi's Harkat i Inqilabi grouping at the time of the Russian invasion. This grouping had also enjoyed the loyalty of most Afghan Arab fighters.
114437
114438 The continuing internecine strife between various factions and accompanying lawlessness following the Soviet withdrawal enabled the growing and well-disciplined [[Taliban]] to expand their control over territory in Afghanistan and they came to establish an enclave which it called the [[Islamic Emirate of Afghanistan]]. In 1994, they captured the regional centre of Kandahar and making rapid territorial gains thereafter, went on to conquer the capital, Kabul, in September 1996.
114439
114440 After Sudan made it clear bin Laden and his group were no longer welcome in that year, Taliban-controlled Afghanistan -- with previously established connections between the groups, a similar outlook on world affairs and largely isolated from American political influence and military power -- provided a perfect location for al Qaeda to headquarter.
114441
114442 Some 200 bin Laden supporters and their families departed Khartoum for Jalalabad by air in 1996. Thereafter al-Qaeda enjoyed the Taliban's protection and a measure of legitimacy as part of their Ministry of Defense, although only Pakistan, Saudi Arabia, and the [[United Arab Emirates]] recognized the Taliban as the legitimate government of Afghanistan.
114443
114444 Al-Qaeda training camps in Afghanistan and the Pakistan border regions are alleged to have trained militant Muslims from around the world. Despite the perception of some people, al-Qaeda members are ethnically diverse and are connected by their radical version of Islam.
114445
114446 An ever-expanding network of supporters thus enjoyed a safe haven in Taliban-controlled Afghanistan until the Taliban were defeated by a combination of local forces and US troops in 2001. Osama Bin Laden and other al-Qaeda leaders are still believed to be located in areas where the population is sympathetic to the Taliban in Afghanistan or the border Tribal Areas of Pakistan.
114447
114448 ===Start of militant operations against civilians===
114449 On [[February 23]], [[1998]], Osama bin Laden and [[Ayman al-Zawahiri]] of [[Egyptian Islamic Jihad]] issued a [[fatwa]] under the banner of the '''World Islamic Front for Jihad Against the Jews and Crusaders''' saying that &quot;to kill Americans and their allies, civilians, and military is an individual duty of every Muslim who is able.&quot; Although neither man possessed the Islamic credentials, education or stature to issue a fatwa of any kind, this seems to have been overlooked in the enthusiasm of the moment. This was also the year of the first major attack reliably attributed to al-Qaeda, the [[1998 U.S. embassy bombings|embassy bombings]] in [[East Africa]], which resulted in upward of 300 deaths. In 1999, Egyptian Islamic Jihad officially merged with al-Qaeda, and al-Zawahiri became bin Laden's closest confidant.
114450
114451 ===September 11 attacks===
114452 [[Image:WTC attack 9-11.jpg|thumb|left|United Airlines Flight 175 crashing into the South World Trade Center Tower]]
114453 Following the [[September 11, 2001 attacks]] attributed by authorities to al-Qaeda, the United States began to build up military forces in preparation for an attack on Afghanistan (whose government harboured bin Laden's organization) in response. In the weeks before the United States invaded, the Taliban twice offered to turn over bin Laden to a neutral country for trial if the United States would provide evidence of bin Laden's complicity in the attacks. The Americans, however, refused, and soon thereafter [[U.S. invasion of Afghanistan|invaded Afghanistan]] and, together with the [[Afghan Northern Alliance]], deposed the [[Taliban]] government.
114454
114455 As a result of this invasion, Taliban training camps were destroyed and much of the alleged existing operating structure of al-Qaeda was disrupted, although strong resistance has remained in Afghanistan, and its main leaders, including Bin Laden, have not been caught. The American government now claims that two-thirds of the top leaders of al-Qaeda in 2001 are currently in custody (including [[Ramzi bin al-Shibh]], [[Khalid Sheikh Mohammed]], [[Abu Zubaydah]], [[Saif al Islam el Masry]], and [[Abd al-Rahim al-Nashiri]]) or dead (including [[Mohammed Atef]]), though it warns the organization is not yet defeated and battles between the United States forces, the Taliban and al-Qaeda continue.
114456
114457 ===Activity in Iraq===
114458 [[Image:Zarqawi001.jpg|frame|right| Abu Musab Al-Zarqawi]]
114459
114460 {{See also|Saddam Hussein and al-Qaeda}}
114461 Osama bin Laden first took interest in [[Iraq]] when that country invaded [[Kuwait]] in 1990 (giving rise to concerns that the secular, [[socialist]] [[Baathist]] government of Iraq might next set its sights on [[Saudi Arabia]], homeland of bin Laden and of Islam itself). In a letter sent to [[Fahd of Saudi Arabia|King Fahd]], he offered to send an army of mujahideen to defend Saudi Arabia &lt;ref&gt;{{cite web | title=Who is Osama Bin Laden? | work=BBC.com | url=http://news.bbc.co.uk/1/hi/world/south_asia/1551100.stm | accessdate=July 20 | accessyear=2004}}&lt;/ref&gt;.
114462
114463 During the [[Gulf War]], the organization's interests became split between outrage with the intervention of the United Nations in the region and hatred of [[Saddam Hussein|Saddam Hussein's]] [[secular]] government, as well as expression of concern for the suffering that Islamic people in Iraq were undergoing.
114464
114465 Bin Laden referred to Saddam Hussein (and the Baathists) as evil, a demon or devil worshipper in his speeches and recorded/written announcements, calling for his overthrow by the people of Iraq. In spite of the distrust Osama bin Laden and Saddam Hussein had for each other, published reports documented a number of alleged contacts between their organizations. Official investigations by the [[NSA]], [[CIA]], [[DIA]], [[FBI]], the [[US Department of State|State Department]], the [[9/11 Commission]], and the [[Senate Select Committee on Intelligence]] -- have led most analysts to conclude that there is no evidence of a cooperative relationship between them. (See [[Saddam Hussein and al-Qaeda]]).
114466
114467 During the [[2003 invasion of Iraq]], al-Qaeda took more formal interest in the region and is known to have been responsible for actively organizing and aiding local resistance to the occupying coalition forces and the emerging democracy. During Iraq's elections in January 2005 al-Qaeda claimed responsibility for nine suicide blasts in the Iraqi capital [[Baghdad]].
114468
114469 [[Abu Musab al-Zarqawi]], founder of [[Jama'at al-Tawhid wal-Jihad]] and alleged ally of al-Qaeda, formally merged with al-Qaeda on [[17th October]] [[2004]]. The organization started to use the banners of &quot;[[Al-Qaeda in Iraq|al-Qaeda in the Land Between the Two Rivers]]&quot;, instead of old [[Jama'at al-Tawhid wal-Jihad]] banners. In the merger al-Zarqawi declared loyalty to [[Osama bin Laden]].
114470
114471 ===Harmony Papers===
114472 Documents seized from al-Qaeda were recently declassified from the Harmony database and became the subject of a published study from West Point titled ''Harmony and Disharmony: Exploiting al-Qa’ida’s Organizational Vulnerabilities.'' [http://www.ctc.usma.edu/aq/Harmony%20and%20Disharmony%20--%20CTC.pdf] The papers give an interesting look into the history of the movement, organizational structure, tensions among leadership and the lessons learned.
114473
114474 One al-Qaeda writer concluded that one of the lessons learned is the influence of secular Baathist thinking distorts the message of jihad. This writer advises the movement not to allow the jihad message to be influenced by the Iraqi Baath message. (Page 79) [http://www.ctc.usma.edu/aq/Harmony%20and%20Disharmony%20--%20CTC.pdf]
114475
114476 ==Incidents attributed by some to al-Qaeda==
114477 ''Note: al-Qaeda does not take credit for most of the following actions, resulting in ambiguity over how many attacks the group has actually conducted. Following the U.S. declaration of the [[War on Terrorism]] in 2001, the U.S. government has striven to highlight any connections between other terrorist groups and al-Qaeda. Some prefer to attribute to [[al-Qaedaism]] actions that might not be directly planned by al-Qaeda as a military headquarter, but which are inspired by its tenets and strategies.''
114478
114479 [[Image:TerroristAttacksAlQaeda.png|thumb|right|500px|World Map of attacks attributed to al-Qaeda]]
114480
114481 The first militant attack that al-Qaeda allegedly carried out consisted of three bombings at hotels where American troops were staying in [[Aden]], [[Yemen]], on [[December 29]], 1992. A Yemeni and an [[Austria]]n tourist died in one bombing.
114482
114483 There are disputed claims that al-Qaeda operatives assisted in the shooting down of U.S. [[helicopter]]s and the killing of U.S. servicemen in [[Somalia]] in 1993. (see: [[Battle of Mogadishu]])
114484
114485 [[Ramzi Yousef]], who was involved in the 1993 World Trade Center bombing (though probably not an al-Qaeda member at the time), and [[Khalid Sheik Mohammed]] planned [[Operation Bojinka]], a plot to destroy airplanes in mid-Pacific flight using explosives. An apartment fire in [[Manila, Philippines]] exposed the plan before it could be carried out. Youssef was arrested, but Mohammed evaded capture until 2003.
114486
114487 Al-Qaeda is often listed as a suspect in two bombings in [[Saudi Arabia]] in 1995 and 1996: the bombing at a U.S. military facility in [[Riyadh]] in [[November]] [[1995]], which killed two people from [[India]] and five Americans, and the June 1996 [[Khobar Towers bombing]], which killed American military personnel in [[Dhahran, Saudi Arabia|Dhahran]]. However, these attacks are usually ascribed to [[Hizbullah]].
114488
114489 Al-Qaeda is believed to have conducted the [[1998 U.S. embassy bombings|bombings]] in August 1998 of the U.S. embassies in [[Nairobi]], [[Kenya]], and [[Dar es Salaam]], [[Tanzania]], killing more than 200 people and injuring more than 5,000 others.
114490
114491 In [[December]] [[1999]] and into 2000, al-Qaeda [[2000 millennium attack plots|planned attacks]] against U.S. and [[Israel]]i tourists visiting [[Jordan]] for millennial celebrations; however, [[Jordan]]ian authorities thwarted the planned attacks and put 28 suspects on trial. Part of this plot included the planned bombing of the [[Los Angeles International Airport]] in [[Los Angeles, California]], but this plot was foiled when bomber [[Ahmed Ressam]] was caught at the US-[[Canada|Canadian]] border with explosives in the trunk of his car. Al-Qaeda also planned to attack the [[USS The Sullivans (DDG-68)|USS ''The Sullivans'']] on [[January 3]], [[2000]], but the effort failed due to too much weight being put on the small boat meant to bomb the ship.
114492
114493 Despite the setback with the USS ''The Sullivans'', al-Qaeda succeeded in bombing a U.S. warship in October 2000 with the [[USS Cole bombing]]. [[Germany|German]] police foiled a plot to destroy a [[Notre-Dame de Strasbourg|cathedral]] in [[Strasbourg]], [[France]] in [[December]] [[2000]]. See: [[Strasbourg cathedral bombing plot]]
114494
114495 The most destructive act ascribed to al-Qaeda was the series of attacks in the USA on [[September 11, 2001 attacks|September 11th, 2001]].
114496
114497 Several attacks and attempted attacks since [[September 11]], [[2001]] have been attributed to al-Qaeda. The first of which was the [[Paris embassy attack plot]], which was foiled.
114498 The second of which involved the attempted shoe bomber [[Richard Reid (terrorist)|Richard Reid]], who proclaimed himself a follower of Osama bin Laden, and got close to destroying [[American Airlines]] [[American Airlines Flight 63|Flight 63]].
114499
114500 Other attacks ascribed to al-Qaeda and its affiliates:
114501 *The [[Singapore embassies attack plot]].
114502 *The [[kidnap]]ping and [[murder]] of [[Wall Street Journal]] reporter [[Daniel Pearl]], and numerous bombings in Pakistan.
114503 *The [[El Ghriba synagogue|El Ghriba]] [[Ghriba Synagogue Attack|synagogue bombing]] in [[Djerba]], [[Tunisia]], which killed 21.
114504 *Foiled attacks on Western warships in the [[Strait of Gibraltar]].
114505 *The [[Limburg tanker bombing]].
114506 *A [[November]] [[2002]] [[Kenyan hotel bombing|car bombing]] in [[Mombasa]], [[Kenya]], and an attempt to shoot down an Israeli airliner.
114507 *[[Riyadh Compound Bombings|Bombings of Western compounds]] in Riyadh in May 2003 and other attacks of the [[Insurgency in Saudi Arabia|Saudi insurgency]].
114508 *The [[Istanbul Bombings]] in [[Istanbul]], [[Turkey]], in 2003.
114509
114510 Al-Qaeda has strong alliances with a number of other Islamic militant organizations including the Indonesian Islamic extremist group [[Jemaah Islamiyah]]. That group was responsible for the [[October]] [[2002]] [[Bali bombing]], and the [[2005 Bali bombings]].
114511
114512 Although there have been no identified al-Qaeda attacks within the territory of the United States since the [[September 11, 2001 attacks]], numerous al-Qaeda attacks in the Middle East, Far East, Africa and Europe have caused extensive casualties and turmoil. In the aftermath of several [[March 11]], [[2004]] [[March 11, 2004 Madrid attacks|attacks on commuter trains in Madrid]], a [[London]] newspaper reported receiving an email from a group affiliated with al-Qaeda, claiming responsibility and a videotape claiming responsibility was also found. The timing of the attacks with the spanish elections, as well as the lack of proof on the real identity of the perpetrators has shed doubt on the al-Qaeda theory behind these attacks.
114513
114514 It is also believed that al-Qaeda was involved in the [[7 July 2005 London bombings]], a series of attacks against mass transit in London which killed 56 people (see [[Mohammad Sidique Khan]]).A statement from a previously unknown group, &quot;The Secret Organization of al-Qaeda in Europe&quot;, claimed responsibility; however, the authenticity of the statement and the group's connection to al-Qaeda has not been independently verified. The suspected perpetrators have not been definitively linked to al-Qaeda, although the contents of a video tape made by one of the bombers [[Mohammad Sidique Khan]] prior to his death and subsequently sent to [[Al Jazeera]] gives strong credence to an al-Qaeda connection. An apparently unconnected group attempted to duplicate the attack later that month, but their bombs failed to detonate.
114515
114516 Al-Qaeda is suspected of being involved with the [[2005 Sharm el-Sheikh attacks]] in Egypt. On [[July 23]], [[2005]], a series of suspected car bombs killed about 90 people and wounded over 150. The attack was the deadliest terrorist action in the history of [[Egypt]].
114517
114518 Al-Qaeda is also suspected in the [[November 9]], [[2005]] [[Amman]], [[Jordan]] attacks in which [[2005 Amman bombings|three simultaneous bombings]] occured at [[United States|American]] owned hotels in Amman. The blast killed at least 57 people and injured 120 people. Most of the injured and killed were attending a wedding at the [[Radisson]] Hotel.
114519
114520 ==The chain of command==
114521 Though the current structure of al-Qaeda is unknown, information mostly acquired from the defector [[Jamal al-Fadl]] provided American authorities with a rough picture of how the group was organized. While the veracity of the information provided by al-Fadl and the motivation for his cooperation are both disputed, American authorities base much of their current knowledge of al-Qaeda on his testimony.
114522
114523 Bin Laden is the '''[[emir]]''' of al-Qaeda (although originally this role may have been filled by [[Abu Ayoub al-Iraqi]]), advised by a '''shura council''', which consists of senior al-Qaeda members, estimated by Western officials at about twenty to thirty people.
114524
114525 * The '''Military committee''' is responsible for training, weapons acquisition, and planning attacks.
114526 * The '''Money/Business committee''' runs business operations. The travel office provides air tickets and false [[passport]]s. The payroll office pays al-Qaeda members, and the Management office oversees money-making businesses. In the US 911 Commission Report it is estimated that al-Qaeda requires 30,000,000 USD / year to conduct its operation.
114527 * The '''Law committee''' reviews Islamic law and decides if particular courses of action conform to the law.
114528 * The '''Islamic study/fatwah committee''' issues religious edicts, such as an edict in 1998 telling Muslims to kill Americans.
114529 * In the late 1990s there was a publicly known '''Media committee''', which ran the now-defunct newspaper ''Nashrat al Akhbar (Newscast)'' and did [[public relations]]. It is currently assumed that media operations are now outsourced to internally redundant parts of the organization.
114530
114531 ==Political revolt or structured terrorist organization: unknown==
114532 Some organizational specialists have said that Al Qaeda's network structure, as opposed to a [[Hierarchical organization|hierarchical structure]] is its primary strength. The decentralized structure enables Al Qaeda to have a worldwide distributed base while retaining a relatively small core. While an estimated 100,000 Islamist militants are said to have received instruction in Al Qaeda camps since its inception, the group is believed to retain only a small number of militants under direct orders. Estimates seldom peg its manpower higher than 20,000 world wide.
114533
114534 For its most complex operations (such as the 9/11 attacks on the US) all participants, planning and funding are believed to have been directly provided by the core Al Qaeda organisation. But in many attacks around the world where there appears to be an Al Qaeda connection, its precise role has been less easy to define. Rather than handling these operations from conception to delivery, Al Qaeda often appears to act as an international financial and logistical support-network, channelling income obtained from a network of fundraising activities to provide training capital and coordination for local radical groups. In many cases it is these local groups, only loosely affiliated to core Al Qaeda, which actually undertake the attacks.
114535
114536 The [[2002 Bali bombing]] and subsequent bombing of the Marriott Hotel in Jakarta in 2003 provide some insight into Al Qaeda's decentralized method of operations: the attacks showed far greater coordination and effectiveness than might historically have been expected from regional terrorist networks. But police investigations and subsequent trials showed that while Al Qaeda was believed to have provided expertise and coordination, much of the planning and all the personnel who undertook the attacks came from local radical Islamist groups.
114537
114538 Al Qaeda has been known to establish and foster new groups to further the radical Islamic interest in local conflicts. Indeed the Taliban might be deemed to fall into this category, the roots of the organisation formed from radicalised students from the Bin-Laden funded medressas of the Afghan refugee camps at the time of the Russian occupation.
114539
114540 ==Is al-Qaeda a global network or a small organization?==
114541 Al-Qaeda has no clear structure, and this permits debate as to how many members make up the organization, whether it is millions scattered across the globe, or whether it is even zero. According to the controversial [[BBC]] documentary ''[[The Power of Nightmares]]'', al-Qaeda is so weakly linked together that it is hard to say it exists ''apart from'' [[Osama bin Laden]] and a small clique of close associates. The lack of any significant numbers of convicted al-Qaeda members despite a large number of arrests on terrorism charges is cited by the documentary as a reason to doubt whether a ''widespread'' entity that meets the description of al-Qaeda exists at all. Still, the extent and nature of al-Qaeda remains a topic of dispute.
114542
114543 The al-Qaeda name itself does not seem to have been used by bin Laden himself to apply to his organization until after the [[September 11 attacks]]. Previous attacks attributed to bin Laden and al-Qaeda were, at the time, claimed by organizations under a variety of names. Bin Laden himself has since attributed the al-Qaeda name to the MAK base in Pakistan, dating from the Afghan war days. Daniel Benjamin in &quot;The Age of Sacred Terror&quot; cites an incident in the early 1990s where a document titled &quot;The Foundation&quot;, Arabic &quot;Al-Qa'eda&quot;, was found on an associate of Ramzi Youssef &lt;ref&gt;{{cite web | title=The making of the terror myth | work=Guardian Unlimited | url=http://www.guardian.co.uk/terrorism/story/0,12780,1327904,00.html | accessdate=October 15 | accessyear=2004}}&lt;/ref&gt;. [[Fawaz A. Gerges]] writes that &quot;Although in 1987 sheikh [[Abdullah Azzam]], the spiritual father of the Afghan Arabs, planted the seeds of a transnationalist organization called 'Al Qaeda al-Sulbah' (the Solid Foundation), the bin Laden network saw the light much later, around the mid-1990s.&quot;&lt;ref&gt;{{cite book | author=Gereges, Fawaz A. | title=The Far Enemy: Why Jihad Went Global | publisher=Oxford: Cambridge University Press | year=2005 | page=306 | id=ISBN 0521791405}}&lt;/ref&gt;
114544
114545 Other alleged al-Qaeda leaders include:
114546 * [[Saif al-Adel]]
114547 * [[Sulaiman Abu Ghaith]]
114548 * [[Abu Hafiza]]
114549 * [[Abu Faraj al-Libbi]] (arrested in Pakistan, 2005)&lt;ref&gt;{{cite web | title= Pakistan 'catches al-Qaeda chief' | work=BBC.com | url=http://news.bbc.co.uk/2/hi/south_asia/4512885.stm | accessdate=May 4 | accessyear=2005}}&lt;/ref&gt;
114550 * [[Abu Mohammed al-Masri]]
114551 * [[Khalid Sheikh Mohammed]] (captured in Rawalpindi, Pakistan, in 2003)&lt;ref&gt;{{cite web | title=How mobile phones and an ÂŖ18m bribe trapped 9/11 mastermind | work=Guardian Unlimited | url=http://www.guardian.co.uk/alqaida/story/0,12469,911860,00.html | accessdate=March 11 | accessyear=2003}}&lt;/ref&gt;
114552 * [[Thirwat Salah Shirhata]]
114553 * [[Abu Musab al-Zarqawi]]
114554 * [[Ayman al-Zawahri]]
114555 * [[Abu Zubaydah]] (captured in 2002)
114556
114557 ==Internet activities==
114558 In the wake of its evacuation from Afghanistan, al-Qaeda and its successors have migrated online to escape detection in an atmosphere of increased international vigilance. As a result, the organization’s use of the Internet has grown more sophisticated, encompassing financing, recruitment, networking, mobilization, publicity, as well as information dissemination, gathering, and sharing. More than other terrorist organizations, al-Qaeda has embraced the Web for these purposes. For example, [[Abu Musab al-Zarqawi]]’s al-Qaeda movement in [[Iraq]] regularly releases short videos glorifying the activity of jihadist suicide bombers. This growing range of multimedia content includes terrorist training clips, stills of victims about to be murdered, testimonials of suicide bombers, and epic-themed videos with high production values that romanticize participation in jihad through stylized portraits of mosques and stirring musical scores. A website associated with al-Qaeda, for example, posted a video of a man named [[Nick Berg]] being decapitated in Iraq. Other decapitation videos and pictures, including those of [[Paul Johnson (hostage)|Paul Johnson]], [[Kim Sun-il]], and [[Daniel Pearl]], were first posted onto jihadist websites.
114559
114560 With the rise of “locally rooted, globally inspired” terrorists, counterterrorism experts are currently studying how al-Qaeda is using the Internet – through websites, chat rooms, discussion forums, instant messaging, and so on – to inspire a worldwide network of support. The July 7, 2005 bombers, some of whom were well integrated into their local communities, are an example of such “globally inspired” terrorists, and they reportedly used the Internet to plan and coordinate, but the Internet’s precise role in the process of radicalization is not thoroughly understood. A group called the Secret Organization of al-Qaeda in Europe has claimed responsibility for these London attacks on a militant Islamist website – another popular use of the Internet by terrorists seeking publicity.
114561
114562 The publicity opportunities offered by the Internet have been particularly exploited by al-Qaeda. In December 2004, for example, bin Laden released an audio message by posting it directly to a website, rather than sending a copy to [[al Jazeera]] as he had done in the past. Some analysts speculated that he did this to be certain it would be available unedited, out of fear that his criticism of Saudi Arabia — which was much more vehement than usual in this speech, lasting over an hour — might be edited out by al Jazeera editors worried about offending the touchy [[Saudi royal family]].
114563
114564 In the past, [[Alneda.com]] and [[Jehad.net]] were perhaps the most significant of al-Qaeda websites. Alneda was initially taken down by an American, but the operators resisted by shifting the site to various servers and strategically changing content. The US is currently attempting to extradite an IT specialist, Babar Ahmad, from the UK, who is the creator of various English language al-Qaeda websites such as Azzam.com &lt;ref&gt;{{cite web | author=Whitlock, Craig| year=2005| title=Briton Used Internet As His Bully Pulpit | format=http | work=WashingtonPost.com | url=http://www.washingtonpost.com/wp-dyn/content/article/2005/08/07/AR2005080700890.html | accessdate=January 20 | accessyear=2006}}&lt;/ref&gt;&lt;ref&gt;{{cite web | title=Babar Ahmad Indicted on Terrorism Charges | work=United States Attorney's Office District of Connecticut | url=http://www.usdoj.gov/usao/ct/Press2004/20041006.html | accessdate=October 6 | accessyear=2004}}&lt;/ref&gt;. Ahmad's extradition is opposed by various British Muslim organizations, such the [[Muslim Association of Britain]].
114565
114566 Finally, at a mid-2005 presentation for US government terrorism analysts, Dennis Pluchinsky called the global jihadist movement “Web-directed,” and former CIA deputy director John E. McLaughlin has also said it is now primarily driven today by “ideology and the Internet.”
114567
114568 == Financial activities ==
114569 Financial activities of Al-Qaeda have been a major preoccupation of US government following the September 11, 2001 attacks, leading for example to the discovery of former Chilean dictator [[Augusto Pinochet]]'s tax evasion, for which his wife, [[Lucía Hiriart de Pinochet]], has been arrested in January 2006. It was also discovered by investigative reporter [[Denis Robert]] that funds from Osama Ben Laden's [[Bahrain International Bank]] transited through illegal unpublished accounts of &quot;clearing house&quot; [[Clearstream]], which has been qualified as a &quot;bank of banks&quot;.
114570
114571 ==Notes on naming==
114572 Al-Qaeda's name can also be [[transliteration|transliterated]] as al-Qaida, al-Qa'ida, el-Qaida, or al Qaeda. In Arabic it is spelled اŲ„Ų‚اؚد؊. Its [[Arabic language|Arabic]] pronunciation ([[International Phonetic Alphabet|IPA]] {{IPA|/ɛlˈqɑːʕidʌ/}}) can be approximated as IPA {{IPA|/ɛl 'kɑ:-idʌ/}}, which for [[American English]] speakers could be spelled &quot;el-kAW-ee-deh,&quot; with the emphasized &quot;AW&quot; and &quot;ee&quot; clearly separated. However, English speakers more commonly pronounce it in a manner influenced by its spelling - IPA {{IPA|/ɑÉĢ 'kaÉĒdɑ/}} for [[American English]], {{IPA|/ɑ:ÉĢ 'kaÉĒdɑ:/}} in [[British English]]. [http://ibb7.ibb.gov/pronunciations/sounds/2930.ra Listen to the US pronunciation] ([[RealPlayer]]).
114573
114574 Al-Qaeda has other names, such as:
114575 * International Front for Jihad against the Jews and Crusaders
114576 * [[Islam]]ic [[Army]]
114577 * Islamic Army for the Liberation of the [[Holy]] Places
114578 * Osama bin Laden Network
114579 * Osama bin Laden Organization
114580 * [[Islam]]ic [[Salvation]] Foundation
114581 * The Group for the Preservation of the Holy Sites
114582
114583 ==See also==
114584 * [[Al-Qaedaism]]
114585 * [[Clearstream]] through which funds from Osama Ben Laden's [[Bahrain International Bank]] passed.
114586 * [[Insurgency in Saudi Arabia]]
114587 * [[Jamaat-e-Islami]]
114588 * [[Muttahida Majlis-e-Amal]]
114589 * [[Muslim Brotherhood]]
114590 * [[Egyptian Islamic Jihad]] aka al-Jihad
114591 * [[Terrorist incidents]]
114592 * [[List of alleged al-Qaeda members]]
114593 * [[Ayman al-Zawahiri]]
114594 * [[The Power of Nightmares]]; BBC documentary
114595 * [[Psychological operations]]
114596 * [[Al Barakaat]]
114597 * [[Islamist terrorism]]
114598 * [[Osama bin Laden's Declaration of War]]
114599 * [[Osama tapes]]
114600 * [[Steven Emerson]]
114601 * [[Takfir Wal Hijira]]
114602
114603 ==Notes &amp; references==
114604 &lt;references/&gt;
114605
114606 ==External links==
114607 *[http://cfrterrorism.org/groups/alqaeda.html Terrorism Q&amp;A]
114608 *[http://www.rewardsforjustice.net/ Rewards for Justice - Most Wanted Terrorists]
114609 *[http://news.bbc.co.uk/1/hi/world/south_asia/1551100.stm Who is Osama Bin Laden?] BBC report
114610 *[http://web.archive.org/web/20050331091340/http://www.usdoj.gov/ag/trainingmanual.htm Al Qaeda Training Manual used by British member of Al Qaeda, Manchester, England] (URL accessed March 2005)
114611 *[http://www.pbs.org/wgbh/pages/frontline/shows/front PBS FRONTLINE &quot;Al Qaeda's New Front&quot; January 2005]
114612 *[http://carlisle-www.army.mil/usawc/Parameters/03spring/thomas.htm Al-Qaida's Internet Activities may cause problems]
114613 *[http://www.intellnet.org/documents/200/060/269.html Al-Qaida history to end of 1998, and explanation of its origins.]
114614 *[http://www.fas.org/irp/world/para/ladin.htm Al-Qaida history up to 11th September 2002, and list of further links.]
114615 *[http://www.janes.com/security/international_security/news/misc/janes010928_1_n.shtml Two accounts of al-Qaida terrorist activities, and background on three mujahideen leaders.]
114616 *Peter Marsden [http://www.bond.org.uk/networker/2003/july03/opinion.htm Does al-Qaida exist?]
114617 *Brendan O'Neill [http://www.spiked-online.com/articles/00000006DFED.htm Does al-Qaida exist?]
114618 *[http://www.guardian.co.uk/afghanistan/story/0,1284,649744,00.html Al-Qaida has been more active in Britain] [http://www.boston.com/news/nation/articles/2003/09/16/cheney_link_of_iraq_911_challenged/ than in Iraq]
114619 *[http://www.pbs.org/wgbh/pages/frontline/shows/front/special/roots.html PBS FRONTLINE &quot;Identity Crisis: Old Europe Meets New Islam&quot; by Marlena Telvick January 2005.]
114620 *[http://terrorismfiles.org/organisations/al_qaida.html Terrorism files info on al-Qaida]
114621 *[http://usembassy.state.gov/japan/wwwhse0612.html State Department letter with list of countries al-Qaida operates in]
114622 *[http://news.bbc.co.uk/1/hi/programmes/panorama/3519414.stm Who is winning the war?]; BBC; [[21 March]] [[2004]].
114623 *[http://globalguerrillas.typepad.com/globalguerrillas/2004/05/al_qaedas_grand.html &quot;Al Qaeda's Grand Strategy&quot;]; Robb, John -- Superpower &quot;baiting&quot;
114624 *[http://globalguerrillas.typepad.com/globalguerrillas/2004/04/global_guerrill.html &quot;Global Guerrilla Financing&quot;]; Robb, John -- How al Qaeda will finance operations in the future.
114625 *[http://www.theatlantic.com/doc/print/200409/cullison Inside Al-Qaeda's Hard Drive]; Alan Cullison, The Atlantic Monthly, September 2004.
114626 *[http://www.blogger.com/email-post.g?blogID=3463907&amp;postID=109487993311862124 &quot;September 11 and Its Aftermath&quot;] Professor of history Juan Cole explains the al-Qaeda world-view
114627 *[http://www.guardian.co.uk/terrorism/story/0,12780,1327904,00.html The making of the terror myth]; Guardian; [[October 15]] [[2004]]
114628 *[http://news.bbc.co.uk/1/hi/programmes/3755686.stm The Power of Nightmares]; A three-part BBC documentary about the [[War on Terrorism]]
114629 *[http://www.guardian.co.uk/terrorism/story/0,12780,1523838,00.html Comment: The struggle against terrorism cannot be won by military means]; The late British politician Robin Cook's article on defeating al-Qaeda contains a unique theory on how the organisation came to be named; Guardian; [[July 8]] [[2005]]
114630 *[http://memritv.org/Search.asp?ACT=S5&amp;P1=139 Middle East Media Research Institute TV clips]
114631 *Kurt Nimmo [http://kurtnimmo.com/?p=131 Truth about al-CIA-duh (al-Qaeda) the Database]
114632 *John Diamond. [http://72.14.207.104/search?q=cache:uDdRNGwXIbUJ:rssfeeds.usatoday.com/UsatodaycomNation-TopStories%3Fm%3D2013+John+Diamond+Posted+2/14/2006&amp;hl=en&amp;lr=&amp;strip=1 Secret U.S. military campaigns in the Middle East through 'proxies'], [[USA Today]], February 14, 2006.
114633
114634 [[Category:Anti-Semitism]]
114635 [[Category:Al-Qaeda| ]]
114636 [[Category:Islamist groups]]
114637
114638 [[ar:Ų‚اؚد؊ (Ų…Ų†Ø¸Ų…ØŠ)]]
114639 [[ca:Al-Qaida]]
114640 [[da:Al-Qaida]]
114641 [[de:Al-Qaida]]
114642 [[eo:Al-Kaida]]
114643 [[es:Al Qaida]]
114644 [[eu:Al-Kaida]]
114645 [[fa:اŲ„Ų‚اؚدŲ‡â€Œ]]
114646 [[fi:Al-Qaida]]
114647 [[fr:Al-Qaida]]
114648 [[fy:Al Kaida]]
114649 [[gl:Al Qaida]]
114650 [[he:אל-קא×ĸידה]]
114651 [[hr:Al-Qaeda]]
114652 [[io:Al-Kaida]]
114653 [[it:Al-Qaida]]
114654 [[ja:ã‚ĸãƒĢã‚Ģãƒŧイダ]]
114655 [[ko:ė•Œėš´ė´ë‹¤]]
114656 [[ku:El-QaÃŽde]]
114657 [[la:Alcaeda]]
114658 [[nl:Al Qaida]]
114659 [[nn:Al-Qaida]]
114660 [[no:Al-Qaida]]
114661 [[pl:Al-Kaida]]
114662 [[pt:Al Qaeda]]
114663 [[ro:Al-Qaida]]
114664 [[ru:АĐģŅŒ-Каида]]
114665 [[simple:Al-Qaeda]]
114666 [[sk:Al-KÃĄida]]
114667 [[sl:Al Kaida]]
114668 [[sr:АĐģ Каида]]
114669 [[sv:Al-Qaida]]
114670 [[vi:Al-Qaeda]]
114671 [[zh:åŸē地įĩ„įš”]]</text>
114672 </revision>
114673 </page>
114674 <page>
114675 <title>Alessandro Volta</title>
114676 <id>1923</id>
114677 <revision>
114678 <id>41930934</id>
114679 <timestamp>2006-03-02T18:28:34Z</timestamp>
114680 <contributor>
114681 <username>Svencb</username>
114682 <id>261323</id>
114683 </contributor>
114684 <comment>{{Commons|Alessandro Giuseppe Antonio Anastasio Volta}}</comment>
114685 <text xml:space="preserve">{{Infobox Celebrity
114686 | name = '''Alessandro Volta'''
114687 | image = Alex_volta.jpg
114688 | caption =
114689 | birth_date = [[February 18]], [[1745]]
114690 | birth_place = [[Como]], [[Lombardy]],[[Italy]]
114691 | death_date = [[March 5]], [[1827]]
114692 | death_place = [[Como]], [[Lombardy]],[[Italy]]
114693 | occupation = [[Physics|Physicist]]
114694 | salary =
114695 | networth =
114696 | website =
114697 | footnotes =
114698 }}
114699 '''Alessandro Giuseppe Antonio Anastasio Volta''' ([[February 18]], [[1745]] - [[March 5]], [[1827]]) was an [[Italy|Italian]] [[Physics|physicist]] known especially for the development of the [[battery (electricity)|electric battery]] in 1800. Late in life, he received the title of [[Count]].
114700
114701 ==Biography==
114702 Volta was born and educated in [[Como]], [[Lombardy]] ([[Italy]]), where he became [[professor]] of [[physics]] at the Royal School in [[1774]]. His passion had always been the study of electricity, and still a young student he had even written a poem in [[Latin]] on this fascinating new discovery. ''De vi attractiva ignis electrici ac phaenomenis inde pendentibus'' is his first scientific paper.
114703
114704 [[Image:Alevoltafoto02.jpg|143px|thumb|left|De vi attractiva ...]]
114705
114706 In [[1775]] he devised the [[electrophorus]], a device that produced a static electric charge. In [[1776]]-[[1777|77]] he studied the [[chemistry]] of [[gas]]es, discovered [[methane]], and devised experiments such as the [[ignition]] of gases by an electric [[spark]] in a closed vessel. In [[1779]] he became professor of physics at the University of [[Pavia]], a chair he occupied for 25 years. In [[1794]] Volta married Teresa Peregrini, daughter of Count Ludovico Peregrini; the couple had three sons.
114707
114708 In [[1800]], as the result of a professional disagreement over the galvanic response advocated by [[Luigi Galvani]], he developed the so-called [[voltaic pile]], a forerunner of the electric battery, which produced a steady electric current. Volta had determined that the most effective pair of dissimilar metals to produce electricity was [[zinc]] and [[silver]]. Initially he experimented with individual cells in series, each cell being a wine goblet filled with brine into which the two dissimilar electrodes were dipped. The electric pile replaced the goblets with cardboard soaked in brine. (The number of cells, and thus the voltage it could produce, was limited by the pressure, exerted by the upper cells, that would squeeze all of the brine out of the cardboard of the bottom cell.)
114709 [[Image:alessandro_volta2.jpg|right|thumb|160px|Alessandro Giuseppe Antonio Anastasio Volta portrait.]]
114710
114711 ==Honors==
114712 In honor of his work in the field of [[electricity]], [[Napoleon]] made him a [[count]] in [[1810]]; in [[1815]] the [[Emperor]] of [[Austria]] named him a professor of [[philosophy]] at [[Padova]].
114713
114714 Volta is buried in the city of [[Como]] in [[Italy]]; the '''Tempio Voltiano''' near [[Lake Como]] is a museum devoted to explaining his work; his original instruments and papers are on display there. The building appeared, along with his portrait, on Italian 10.000 [[Italian lira|lira]] banknote, before the introduction of the [[euro]].
114715
114716 In [[1881]] an important electrical [[SI derived unit|unit]], the [[volt]], was named in his honor. [[Volta (crater)|Volta crater]], on the [[Moon]], is also named after him.
114717
114718 ==Interesting facts==
114719 Toyota Motor Corp has created a concept vehicle with the name [[Toyota Alessandro Volta|Alessandro Volta]].
114720
114721 == Weblinks ==
114722 {{Commons|Alessandro Giuseppe Antonio Anastasio Volta}}
114723 [[Category:1745 births|Volta]]
114724 [[Category:1827 deaths|Volta]]
114725 [[Category:Italian physicists|Volta]]
114726 [[Category:History of neuroscience|Volta]]
114727 [[Category:Natives of Como|Volta]]
114728
114729 [[ar:ØŖŲ„ØŗŲ†Ø¯ØąŲˆ ŲŲˆŲ„ØĒا]]
114730 [[bs:Alessandro Volta]]
114731 [[ca:Alessandro Volta]]
114732 [[cs:Alessandro Volta]]
114733 [[de:Alessandro Volta]]
114734 [[et:Alessandro Volta]]
114735 [[es:Alessandro Volta]]
114736 [[eo:Alessandro VOLTA]]
114737 [[fr:Alessandro Volta]]
114738 [[ko:ė•Œë ˆė‚°ë“œëĄœ ëŗŧ타]]
114739 [[hr:Alessandro Volta]]
114740 [[it:Alessandro Volta]]
114741 [[he:אלסנדרו וולטה]]
114742 [[nl:Alessandro Volta]]
114743 [[ja:ã‚ĸãƒŦッã‚ĩãƒŗドロãƒģボãƒĢã‚ŋ]]
114744 [[no:Alessandro Volta]]
114745 [[nn:Alessandro Volta]]
114746 [[pl:Alessandro Volta]]
114747 [[pt:Alessandro Volta]]
114748 [[ro:Alessandro Volta]]
114749 [[ru:ВоĐģŅŒŅ‚Đ°, АĐģĐĩŅŅĐ°ĐŊĐ´Ņ€Đž]]
114750 [[sk:Alessandro Volta]]
114751 [[sl:Alessandro Volta]]
114752 [[sr:АĐģĐĩŅĐ°ĐŊĐ´Ņ€Đž ВоĐģŅ‚Đ°]]
114753 [[fi:Alessandro Volta]]
114754 [[sv:Alessandro Volta]]
114755 [[tr:Alessandro Volta]]</text>
114756 </revision>
114757 </page>
114758 <page>
114759 <title>Argo Navis</title>
114760 <id>1924</id>
114761 <revision>
114762 <id>32802159</id>
114763 <timestamp>2005-12-26T21:47:46Z</timestamp>
114764 <contributor>
114765 <username>Eskimbot</username>
114766 <id>477460</id>
114767 </contributor>
114768 <minor />
114769 <comment>robot Adding: es</comment>
114770 <text xml:space="preserve">[[Image:Argo-hevelius.jpg|thumb|250px|The constellation Argo Navis drawn by Johannes Hevelius in 1690]]
114771
114772 '''Argo Navis''' (or simply '''Argo''') was a large southern [[constellation]] representing the ''[[Argo]]'', the ship used by [[Jason]] and the [[Argonauts]] in [[Greek mythology]]. The abbreviation was &quot;Arg&quot; and the genitive was &quot;ArgÅĢs&quot;.
114773
114774 It is the only one of [[Ptolemy]]'s list of 48 constellations that is no longer officially recognised as a constellation, having been broken up by [[Nicolas Louis de Lacaille]] into [[Carina (constellation)|Carina]] (the keel of the ship), [[Puppis]] (the poop) and [[Vela (constellation)|Vela]] (the sails). Were it still considered a single constellation, it would be the largest of all, being larger than [[Hydra (constellation)|Hydra]].
114775
114776 When Argo Navis was split, its [[Bayer designation]]s were also split. Carina has the &amp;alpha; and &amp;beta;, Vela has &amp;gamma; and &amp;delta;, Carina has &amp;epsilon;, Puppis has &amp;zeta;, and so on.
114777
114778 The constellation [[Pyxis]] (the compass) occupies an area which in antiquity was considered part of Argo's mast. But Pyxis is not usually considered part of Argo Navis, and in particular its Bayer designations are separate from those of Carina, Puppis and Vela.
114779
114780 ==See also==
114781 [[Asterism (astronomy)]]
114782
114783 {{ConstellationsListedByPtolemy}}
114784 {{ConstellationsNLDLAltered}}
114785
114786 [[Category:Argo Navis constellation|*]]
114787
114788 [[de:Schiff Argo (Sternbild)]]
114789 [[es:Argo Navis]]
114790 [[fr:Navire Argo (constellation)]]
114791 [[ko:ė•„ëĨ´ęŗ ėžëĻŦ]]
114792 [[it:Argo Navis]]
114793 [[nl:Schip Argo]]
114794 [[ja:ã‚ĸãƒĢゴåē§]]
114795 [[pl:Argo (gwiazdozbiÃŗr)]]
114796 [[pt:Argo Navis]]
114797 [[ru:КоŅ€Đ°ĐąĐģŅŒ АŅ€ĐŗĐž (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
114798 [[sk:SÃēhvezdie Loď Argo]]
114799 [[fi:Argo-laiva]]
114800 [[sv:Skeppet Argo]]
114801 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§āš€ā¸Ŗā¸ˇā¸­ā¸­ā¸˛ā¸ŖāšŒāš‚ā¸]]</text>
114802 </revision>
114803 </page>
114804 <page>
114805 <title>Andromeda (mythology)</title>
114806 <id>1925</id>
114807 <revision>
114808 <id>39779098</id>
114809 <timestamp>2006-02-15T20:44:54Z</timestamp>
114810 <contributor>
114811 <username>B00P</username>
114812 <id>544776</id>
114813 </contributor>
114814 <comment>suggested mergefrom</comment>
114815 <text xml:space="preserve">{{mergeto|Boast of Cassiopeia}}
114816 {{mergefrom|Boast of Cassiopeia}}
114817 :''See [[Andromeda (disambiguation)]] for other uses of &quot;Andromeda&quot;.''
114818
114819 In [[Greek mythology]], '''Andromeda''' (&quot;ruler of men&quot;) was the daughter of [[Cepheus]] and [[Boast of Cassiopeia|Cassiopeia]], king and queen of the [[Ethiopia|Ethiopians]].
114820 [[Image:Paul_Gustave_Dore_Andromeda.jpg|thumb|[[Gustave DorÊ|Paul Gustave DorÊ]] painted Andromeda exposed to the sea-monster.]]
114821
114822 Cassiopeia, having boasted herself equal in beauty to the [[Nereids]], drew down the vengeance of [[Poseidon]], who sent an inundation on the land and a sea-monster, which destroyed man and beast. The [[oracle]] of [[Ammon]] announced that no relief would be found until the king exposed his daughter Andromeda to the monster, so she was fastened to a rock on the shore.
114823
114824 [[Perseus (mythology)|Perseus]], returning from having slain the [[Gorgon]], found Andromeda, slew the monster, set her free, and married her in spite of [[Phineus]], to whom she had before been promised. At the wedding a quarrel took place between the rivals, and Phineus was turned to stone by the sight of the Gorgon's head ([[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'' v. 1).
114825
114826 Andromeda followed her husband to [[Tiryns]] in [[Argos]], and became the ancestress of the family of the [[Perseidae]] through Perseus' and Andromeda's son, [[Perses]]. Perseus and Andromeda had six sons ([[Perseides]]): [[Perses]], [[Alcaeus]], [[Heleus]], [[Mestor]], [[Sthenelus]], and [[Electryon]], and one daughter, [[Gorgophone]]. Their descendants ruled Mycenae from [[Electryon]] down to [[Eurystheus]], after whom [[Atreus]] got the kingdom, and include the great hero [[Heracles]]. According to this mythology, Perses is the ancestor of the [[Persians]].
114827
114828 After her death she was placed by [[Athena]] amongst the [[constellation|constellations]] in the northern sky, near Perseus and Cassiopeia. [[Sophocles]] and [[Euripides]] (and in more modern times [[Pierre Corneille|Corneille]]) made the story the subject of tragedies. The tale is represented in numerous ancient works of art.
114829
114830 Andromeda is represented in the northern sky by the [[constellation]] [[Andromeda (constellation)|Andromeda]] which contains the [[Andromeda Galaxy]].
114831
114832 This event was depicted in a modified version in the [[1981]] [[Film|movie]] ''[[Clash of the Titans]]''.
114833
114834 ==Sources==
114835 *[[Apollodorus]], ''[[Bibliotheke]]'' II, iv, 3-5
114836 *[[Ovid]], ''[[Metamorphoses (poem)|Metamorphoses]]'' IV, 668-764.
114837
114838 [[Category:Greek mythological people]]
114839
114840 [[ca:AndrÃ˛meda (mitologia)]]
114841 [[de:Andromeda (Mythologie)]]
114842 [[et:Andromeda]]
114843 [[es:AndrÃŗmeda (mitología)]]
114844 [[fr:Andromède (mythologie)]]
114845 [[gl:AndrÃŗmeda]]
114846 [[ko:ė•ˆë“œëĄœëŠ”다]]
114847 [[it:Andromeda (mitologia)]]
114848 [[he:אנדרומדה]]
114849 [[lt:Andromeda (mitologija)]]
114850 [[hu:AndromÊda]]
114851 [[nl:Andromeda (mythologie)]]
114852 [[ja:ã‚ĸãƒŗãƒ‰ãƒ­ãƒĄãƒ€]]
114853 [[pl:Andromeda (mitologia)]]
114854 [[pt:Andrômeda]]
114855 [[ru:АĐŊĐ´Ņ€ĐžĐŧĐĩĐ´Đ° (ĐŧиŅ„ĐžĐģĐžĐŗиŅ)]]
114856 [[sk:Andromeda (mytolÃŗgia)]]
114857 [[sl:Andromeda (mitologija)]]
114858 [[fi:Andromeda (mytologia)]]
114859 [[sv:Andromeda (mytologi)]]
114860 [[uk:АĐŊĐ´Ņ€ĐžĐŧĐĩĐ´Đ°]]</text>
114861 </revision>
114862 </page>
114863 <page>
114864 <title>Antlia</title>
114865 <id>1926</id>
114866 <revision>
114867 <id>39502903</id>
114868 <timestamp>2006-02-13T23:28:20Z</timestamp>
114869 <contributor>
114870 <username>RJHall</username>
114871 <id>91076</id>
114872 </contributor>
114873 <minor />
114874 <comment>/* Notable and named stars */</comment>
114875 <text xml:space="preserve">{{Infobox Constellation|
114876 name = Antlia |
114877 abbreviation = Ant |
114878 genitive = Antliae |
114879 symbology = the pump |
114880 RA = 10 |
114881 dec= &amp;minus;30 |
114882 areatotal = 239 |
114883 arearank = 62nd |
114884 numberstars = 0 |
114885 starname = [[Alpha Antliae|&amp;alpha; Ant]] |
114886 starmagnitude = 4.25 |
114887 meteorshowers = None |
114888 bordering =
114889 *[[Hydra (constellation)|Hydra]]
114890 *[[Pyxis]]
114891 *[[Vela (constellation)|Vela]]
114892 *[[Centaurus]] |
114893 latmax = 45 |
114894 latmin = 90 |
114895 month = April |
114896 notes=}}
114897 The [[constellation]] '''Antlia''' ([[Latin]] for ''[[pump]]'') is a relatively new constellation as it was only created in the [[18th century]], being too faint to be acknowledged by the ancient Greeks. The [[International Astronomical Union|IAU]] adopted it as one of the 88 modern constellations. Beginning at the north, Antlia is surrounded by the sea snake [[Hydra (constellation)|Hydra]], the compass [[Pyxis]], the sails ([[Vela (constellation)|Vela]]) of the mythological ship [[Argo]] and finally the centaur [[Centaurus]].
114898
114899 ==Notable features==
114900
114901 Antlia is a faint constellation void of bright stars. Its least faint star is:
114902 *[[Alpha Antliae|&amp;alpha; Ant]]: being Antlia's principal star its apparent brightness is still only 4.25 mag. Its spectral class is K4&amp;nbsp;III
114903
114904 ==Notable deep sky objects==
114905
114906 *[[NGC 2997]]: [[Spiral galaxy]] of type Sc which is inclined 45° to our line of sight.
114907 *[[NGC 3132]]: This [[planetary nebula]] is also called ''Eight Burst Nebula'' or ''Southern Ring Nebula''. At its heart is a binary system.
114908 *[[PGC 29194]]: This [[dwarf spheroidal galaxy]] with an apparent brightness of only 14.8m belongs to our [[Local Group]] of galaxies. It was only discovered as recently as [[1997]].[http://antwrp.gsfc.nasa.gov/apod/ap970423.html]
114909
114910 ==History==
114911
114912 The French astronomer AbbÊ [[Nicolas Louis de Lacaille]] created 13 constellations for the southern sky to fill some star poor regions, among them Antlia. It was originally denominated ''Antlia pneumatica'' (Latin for the [[air pump]] invented by [[Robert Boyle]]) which is why in English this constellation is also often called Air Pump.
114913
114914 It is interesting to note that no attempt seems to have been made to assign [[Bayer designation|Bayer letters]] according to their apparent brightness.
114915
114916 There is no mythology attached to Antlia as Lacaille discontinued the tradition of giving names from mythology to constellations and instead chose mostly names of instruments used in science.
114917
114918 ==Notable and named stars==
114919 {| class=&quot;wikitable&quot;
114920 |-
114921 ! [[Bayer designation|BD]]
114922 ! Names and other designations
114923 ! [[apparent magnitude|Mag.]]
114924 ! [[Light year|Ly]] away
114925 ! Comments
114926 |-
114927 | &amp;alpha; || [[Alpha Antliae]] || 4.28 || 366 ||
114928 |-
114929 | &amp;epsilon; || [[Epsilon Antliae]] || 4.51 || 700 ||
114930 |-
114931 | &amp;iota; || [[Iota Antliae]] || 4.60 || 199 ||
114932 |-
114933 | &amp;theta; || [[Theta Antliae]] || 4.78 || 384 ||
114934 |-
114935 | &amp;eta; || [[Eta Antliae]] || 5.23 || 106 ||
114936 |-
114937 | || [[U Antliae]] || 5.50 || 840 || [[carbon star]]
114938 |-
114939 | &amp;delta; || [[Delta Antliae]] || 5.57 || 481 ||
114940 |-
114941 | &amp;zeta;&amp;sup1; || [[Zeta Antliae|Zeta-1 Antliae]] || 5.75 || 372 || [[binary star]]; component magnitudes: 6.18, 7.00
114942 |-
114943 | &amp;zeta;&amp;sup2; || [[Zeta Antliae|Zeta-2 Antliae]] || 5.91 || 374 ||
114944 |-
114945 | || [[HD 93083]] || 8.33 || 94.2 || has a planet
114946 |}
114947 Source: &lt;cite&gt;The Bright Star Catalogue, 5th Revised Ed.&lt;/cite&gt;, &lt;cite&gt;The Hipparcos Catalogue, ESA SP-1200&lt;/cite&gt;
114948
114949 The faint star [[DENIS 1048-39]], discovered in [[2000]] and located in the Antilia constellation, may be as close as 13.2 light years from the Sun.[http://www.hawaii.edu/ur/News_Releases/NR_Nov00/lowmass.html]
114950
114951 &lt;!-- Source of values for &quot;nebulae&quot;: SEDS' data on NGC --&gt;
114952
114953 ==See also==
114954 {{ConstellationsByLacaille}}
114955 {{ConstellationList}}
114956
114957 == External links ==
114958 {{Commons|Antlia}}
114959
114960 [[Category:Antlia constellation|*]]
114961 * [http://www.nightskyinfo.com/constellations/antlia/ NightSkyInfo.com: Constellation Antlia]
114962
114963 [[ca:Màquina Pneumàtica (constel¡laciÃŗ)]]
114964 [[da:Luftpumpen]]
114965 [[de:Luftpumpe (Sternbild)]]
114966 [[es:Antlia]]
114967 [[fr:Machine pneumatique]]
114968 [[ga:An tAerchaidÊal]]
114969 [[ko:ęŗĩ기펌프ėžëĻŦ]]
114970 [[id:Antlia]]
114971 [[it:Antlia]]
114972 [[la:Antlia (sidus)]]
114973 [[lt:Siurblys (astronomija)]]
114974 [[hu:LÊgszivattyÃē (csillagkÊp)]]
114975 [[nl:Luchtpomp (sterrenbeeld)]]
114976 [[ja:ポãƒŗプåē§]]
114977 [[nn:Luftpumpa]]
114978 [[pl:Pompa (gwiazdozbiÃŗr)]]
114979 [[pt:Antlia]]
114980 [[ru:НаŅĐžŅ (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
114981 [[sk:SÃēhvezdie VÃŊveva]]
114982 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§āš€ā¸„ā¸Ŗā¸ˇāšˆā¸­ā¸‡ā¸Ēā¸šā¸šā¸Ĩā¸Ą]]
114983 [[vi:TáģŠc Đáģ“ng]]
114984 [[zh:唧į­’åē§]]</text>
114985 </revision>
114986 </page>
114987 <page>
114988 <title>Ara (constellation)</title>
114989 <id>1927</id>
114990 <revision>
114991 <id>40039033</id>
114992 <timestamp>2006-02-17T18:06:54Z</timestamp>
114993 <contributor>
114994 <username>AstroMalasorte</username>
114995 <id>527461</id>
114996 </contributor>
114997 <comment>/* External links */</comment>
114998 <text xml:space="preserve">{{Infobox Constellation|
114999 name = Ara |
115000 abbreviation = Ara |
115001 genitive = Arae |
115002 symbology = the Altar |
115003 RA = 17.39 |
115004 dec= &amp;minus;53.58 |
115005 areatotal = 237 |
115006 arearank = 63rd |
115007 numberstars = 1 |
115008 starname = [[Beta Arae|&amp;beta; Ara]] |
115009 starmagnitude = 2.9 |
115010 meteorshowers = None |
115011 bordering =
115012 *[[Corona Australis]]
115013 *[[Scorpius]]
115014 *[[Norma (constellation)|Norma]]
115015 *[[Triangulum Australe]]
115016 *[[Apus]]
115017 *[[Pavo (constellation)|Pavo]]
115018 *[[Telescopium]] |
115019 latmax = 25 |
115020 latmin = 90 |
115021 month = July |
115022 notes=}}
115023 '''Ara''' ([[Latin]] for ''[[Altar]]'') is a faint southerly [[constellation]] between the constellations [[Telescopium]] and [[Norma (constellation)|Norma]].
115024
115025 == Notable features ==
115026 Ara's brightest star, [[Beta Arae|&amp;beta; Arae]], has an [[apparent magnitude]] of 2.9. Its &amp;gamma; star is a [[double star]] just south of &amp;beta;. [[Mu Arae|&amp;mu; Arae]] is believed to have at least three planets orbiting it, one of which is thought to be rocky in nature.
115027
115028 == Notable deep sky objects ==
115029 The northwest corner of Ara is crossed by the [[Milky Way]] and contains several [[open cluster]]s and [[diffuse nebula]]e. The brightest of the [[globular cluster]]s, [[NGC 6397]], is 8,200 [[light-year]]s from our [[solar system]] and may be the closest cluster of that kind.
115030
115031 == History ==
115032 This constellation was one of [[Ptolemy]]'s original 48 constellations.
115033
115034 == Mythology ==
115035 The altar, usually depicted upside down, but sometimes upright with the smoke drifting into the Milky Way, was identified as that of the [[centaur]] [[Chiron]]; its original Latin name was Ara Centauri. It was also occasionally called the altar of [[Dionysus]]. Since, however, the constellation was identified, and introduced, in the 18th Century, connection to this mythology is likely to have been by design of the constellation's creator, and unconnected to the actual beliefs of the ancient Greeks about this area of sky.
115036
115037 ==Notable and named stars==
115038 {| class=&quot;wikitable&quot;
115039 |-
115040 ! [[Bayer designation|BD]]
115041 ! Names and other designations
115042 ! [[apparent magnitude|Mag.]]
115043 ! [[Light year|Ly]] away
115044 ! Comments
115045 |-
115046 | &amp;beta; || [[Beta Arae]] || 2.85 || 603 ||
115047 |-
115048 | &amp;alpha; || [[Alpha Arae]], Choo, Tchou || 2.95 || 242 ||
115049 * &lt; &amp;#26485; (Mandarin ''ch&amp;#468;'') The pestle
115050 * [[Be star]]
115051 |-
115052 | &amp;zeta; || [[Zeta Arae]], Tseen Yin || 3.12 || 574 ||
115053 * &lt; &amp;#22825;&amp;#38512; (Mandarin ''ti&amp;#257;ny&amp;#299;n'') The dark sky [actually in Aries?]
115054 |-
115055 | &amp;gamma; || [[Gamma Arae]] || 3.34 || 1140 ||
115056 |-
115057 | &amp;delta; || [[Delta Arae]], Tseen Yin || 3.62 || 187 ||
115058 * &lt; &amp;#22825;&amp;#38512; (Mandarin ''ti&amp;#257;ny&amp;#299;n'') The dark sky [actually in Aries?]
115059 |-
115060 | &amp;theta; || [[Theta Arae]] || 3.65 || 1010 ||
115061 |-
115062 | &amp;eta; || [[Eta Arae]] || 3.77 || 313 ||
115063 |-
115064 | &amp;epsilon;&amp;sup1; || [[Epsilon Arae|Epsilon-1 Arae]], Tso Kang || 4.06 || 304 ||
115065 * &lt; &amp;#24038;&amp;#26356; (Mandarin ''zu&amp;#335;g&amp;#275;ng'') The left watch [actually in Aries?]
115066 |-
115067 | &amp;sigma; || [[Sigma Arae]] || 4.56 || 386 ||
115068 |-
115069 | &amp;lambda; || [[Lambda Arae]] || 4.76 || 71.3 ||
115070 |-
115071 | &amp;mu; || [[Mu Arae]] || 5.14 || 49.8 ||
115072 * has three planets
115073 |-
115074 | &amp;kappa; || [[Kappa Arae]] || 5.19 || 398 ||
115075 |-
115076 | &amp;iota; || [[Iota Arae]] || 5.21 || 720 ||
115077 * [[Gamma Cassiopeiae variable|Gamma Cassiopeiae type]] [[variable star]]
115078 |-
115079 | &amp;pi; || [[Pi Arae]] || 5.25 || 138 ||
115080 |-
115081 | &amp;epsilon;&amp;sup2; || [[Epsilon Arae|Epsilon-2 Arae]] || 5.27 || 85.9 ||
115082 |-
115083 | &amp;nu;&amp;sup1;, &amp;upsilon;&amp;sup1; || [[Nu Arae|Nu-1 Arae]], Upsilon-1 Arae, V539 Arae || 5.68 || 820 ||
115084 * [[eclipsing binary]]
115085 |-
115086 | &amp;nu;&amp;sup2;, &amp;upsilon;&amp;sup2; || [[Nu Arae|Nu-2 Arae]], Upsilon-2 Arae || 6.09 || 508 ||
115087 |}
115088 Source: &lt;cite&gt;The Bright Star Catalogue, 5th Revised Ed.&lt;/cite&gt;, &lt;cite&gt;The Hipparcos Catalogue, ESA SP-1200&lt;/cite&gt;
115089
115090 == See also ==
115091 {{ConstellationsListedByPtolemy}}
115092 {{ConstellationList}}
115093
115094 == External links ==
115095 {{Commons|Ara}}
115096 * [http://www.allthesky.com/constellations/norma/ The Deep Photographic Guide to the Constellations: Ara]
115097 * [http://www.nightskyinfo.com/constellations/ara/ NightSkyInfo.com: Constellation Ara]
115098 &lt;!-- The below are interlanguage links. --&gt;
115099
115100 [[Category:Ara constellation| ]]
115101
115102 [[ca:Altar (constel¡laciÃŗ)]]
115103 [[cs:OltÃĄÅ™ (souhvězdí)]]
115104 [[da:Alteret]]
115105 [[de:Altar (Sternbild)]]
115106 [[es:Ara]]
115107 [[fr:Autel (constellation)]]
115108 [[ga:An AltÃŗir]]
115109 [[ko:ė œë‹¨ėžëĻŦ]]
115110 [[id:Ara]]
115111 [[it:Ara (astronomia)]]
115112 [[la:Ara (sidus)]]
115113 [[lt:Aukuras (astronomija)]]
115114 [[hu:OltÃĄr (csillagkÊp)]]
115115 [[nl:Altaar (sterrenbeeld)]]
115116 [[ja:さいだんåē§]]
115117 [[nn:Alteret]]
115118 [[pl:Ołtarz (gwiazdozbiÃŗr)]]
115119 [[pt:Ara]]
115120 [[ru:ЖĐĩŅ€Ņ‚вĐĩĐŊĐŊиĐē (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
115121 [[sk:SÃēhvezdie OltÃĄr]]
115122 [[sv:Altaret]]
115123 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§āšā¸—āšˆā¸™ā¸šā¸šā¸Šā¸˛]]
115124 [[zh:夊坛åē§]]</text>
115125 </revision>
115126 </page>
115127 <page>
115128 <title>Auriga</title>
115129 <id>1928</id>
115130 <revision>
115131 <id>39870436</id>
115132 <timestamp>2006-02-16T12:46:15Z</timestamp>
115133 <contributor>
115134 <username>Rich Farmbrough</username>
115135 <id>82835</id>
115136 </contributor>
115137 <minor />
115138 <text xml:space="preserve">'''Auriga''' can refer to:
115139
115140 *[[Auriga (constellation)|A constellation of stars]]
115141 *[[Auriga (slave)|A Roman slave chauffeur]]
115142 *[[Alien: Resurrection|A spaceship in Alien: Resurrection]]
115143
115144 {{disambig}}
115145
115146 [[ca:Auriga]]
115147 [[es:Auriga]]
115148 [[it:Auriga]]
115149 [[pl:WoÅēnica (gwiazdozbiÃŗr)]]
115150 [[pt:Auriga]]
115151 [[sv:Auriga]]</text>
115152 </revision>
115153 </page>
115154 <page>
115155 <title>Arkansas</title>
115156 <id>1930</id>
115157 <revision>
115158 <id>42066997</id>
115159 <timestamp>2006-03-03T16:11:04Z</timestamp>
115160 <contributor>
115161 <username>ScottMainwaring</username>
115162 <id>288266</id>
115163 </contributor>
115164 <comment>rv vandalism</comment>
115165 <text xml:space="preserve">{{Otheruses1|the U.S. State}}
115166 ----
115167 {{US Confederate state |
115168 Name = Arkansas |
115169 Fullname = State of Arkansas |
115170 Flag = Flag of Arkansas.svg |
115171 Flaglink = [[Flag of Arkansas]] |
115172 Seal = Arkansasstateseal.jpg |
115173 Map = Map_of_USA_highlighting_Arkansas.png |
115174 Nickname = The Natural State |
115175 Capital = [[Little Rock, Arkansas|Little Rock]] |
115176 OfficialLang = [[English language|English]] |
115177 LargestCity = [[Little Rock, Arkansas|Little Rock]] |
115178 Governor = [[Mike Huckabee|Mike Huckabee]] (R)|
115179 Senators = [[Blanche Lincoln]] (D)
115180 [[Mark Pryor]] (D) |
115181 PostalAbbreviation = AR |
115182 TradAbbreviation = Ark. |
115183 AreaRank = 29&lt;sup&gt;th&lt;/sup&gt; |
115184 TotalArea = 137&amp;nbsp;732 |
115185 LandArea = 134&amp;nbsp;856 |
115186 WaterArea = 2876 |
115187 PCWater = 2.09 |
115188 PopRank = 33&lt;sup&gt;rd&lt;/sup&gt; |
115189 2004Pop = 2,752,629 |
115190 DensityRank = 34&lt;sup&gt;th&lt;/sup&gt; |
115191 2000Density = 19.82 |
115192 AdmittanceOrder = 25&lt;sup&gt;th&lt;/sup&gt; |
115193 AdmittanceDate = [[June 15]], [[1836]] |
115194 SecessionDate = [[May 6]], [[1861]] |
115195 ReadmittanceDate = [[June 22]], [[1868]] |
115196 TimeZone = [[Central Standard Time Zone|Central]]: [[Coordinated Universal Time|UTC]]-6/[[Daylight saving time|DST]]-5 |
115197 Latitude = 33°N to 36°30'N |
115198 Longitude = 89°41'W to 94°42'W |
115199 Width = 385 |
115200 Length = 420 |
115201 HighestElev = 839 |
115202 MeanElev = 198 |
115203 LowestElev = 17 |
115204 ISOCode = US-AR |
115205 TradAbbrev = Ark |
115206 Website = www.state.ar.us
115207 }}
115208 '''Arkansas''' ([[IPA chart for English|pronounced]] {{IPA|/ˈɑ(r)k(ə)nˌsɑː/}} or {{IPA|/ˈɑ(r)k(ə)nˌsɔ/}}) is a [[U.S. Southern States|Southern]] [[U.S. state|state]] in the [[United States]]. The population according to the [[United States Census, 2004|2004 census]] was 2,752,629. It was admitted as the 25th state of the United States in 1836.
115209
115210 ==History==
115211 The early French explorers of the state gave it its name, which is probably a phonetic spelling for the French word for &quot;downriver&quot; people, a reference to the [[Quapaw]] people and the river along which they settled. Other [[Native Americans in the United States|Native American]] nations living in present-day Arkansas were [[Caddo]], [[Cherokee]] and [[Osage]] Nations.
115212
115213 On [[June 15]], [[1836]], Arkansas became the 25th state of the [[United States]] as a [[slave state]]. Arkansas refused to join the [[Confederate States of America]] until after [[Abraham Lincoln]] called for troops to invade South Carolina. It seceded from the Union on May 6, 1861. The state was the scene of numerous small-scale battles during the [[American Civil War]]. Under the Military Reconstruction Act, Congress, in June 1868, readmitted Arkansas.
115214
115215 ===Historical references===
115216 *[http://www.questia.com/PM.qst?a=o&amp;d=3070180 Blair, Diane D. ''Arkansas Politics &amp; Government: Do the People Rule?'' (1998)]
115217 *Deblack, Thomas A. ''With Fire and Sword: Arkansas, 1861-1874'' (2003)
115218 *Donovan, Timothy P. and Willard B. Gatewood Jr., eds. ''The Governors of Arkansas'' (1981)
115219 *Dougan, Michael B. ''Confederate Arkansas'' (1982),
115220 *Duvall, Leland. ed., ''Arkansas: Colony and State'' (1973)
115221 *Fletcher, John Gould. ''Arkansas'' (1947)
115222 *Hanson, Gerald T. and Carl H. Moneyhon. ''Historical Atlas of Arkansas'' (1992)
115223 *Key, V. O. ''Southern Politics'' (1949), chapter on Arkansas
115224 *Moore, Waddy W. ed., ''Arkansas in the Gilded Age, 1874-1900'' (1976).
115225 *[http://www.questia.com/PM.qst?a=o&amp;d=52694010 Peirce, Neal R. ''The Deep South States of America: People, Politics, and Power in the Seven Deep South States'' (1974)] solid reporting on politics and economics 1960-72
115226 *Thompson, George H. ''Arkansas and Reconstruction'' (1976)
115227 *Whayne, Jeannie M. et al. ''Arkansas: A Narrative History '' (2002)
115228 *Whayne, Jeannie M. ''Arkansas Biography: A Collection of Notable Lives'' (2000)
115229 *White, Lonnie J. ''Politics on the Southwestern Frontier: Arkansas Territory, 1819-1836'' (1964)
115230
115231 ===Primary sources===
115232 *Williams, C. Fred. ed. ''A Documentary History Of Arkansas'' (2005)
115233 *[http://www.questia.com/PM.qst?a=o&amp;d=59509893 WPA., ''Arkansas: A Guide to the State'' (1941)]
115234
115235 ==Law and government==
115236 [[Image:LR capitol.jpg|thumb|right|The Arkansas State Capitol.]]
115237 The current governor of Arkansas is [[Mike Huckabee]], a [[United States Republican Party|Republican]]. Huckabee, who had been elected lieutenant governor in a [[1993]] special election, became governor in [[1996]] when Governor [[Jim Guy Tucker]], a [[United States Democratic Party|Democrat]], was convicted as part of the [[Whitewater Scandal]]. This led to a state &quot;Constitutional crisis&quot; when Tucker refused to give up the governor's office for a short period of time, because the Arkansas Constitution does not allow a convicted felon to be governor of the state. Tucker had been lieutenant governor under [[Bill Clinton]] and had become governor as a result of Clinton's election to the presidency.
115238
115239 Arkansas' two U.S. Senators are Democrats [[Blanche Lincoln]] and [[Mark Pryor]]. The state has four seats in House of Representatives. Three seats are held by Democrats&amp;mdash;[[Marion Berry]] ([http://nationalatlas.gov/printable/images/preview/congdist/ar01_109.gif map]), [[Vic Snyder]] ([http://nationalatlas.gov/printable/images/preview/congdist/ar02_109.gif map]), and [[Mike Ross]] ([http://nationalatlas.gov/printable/images/preview/congdist/ar04_109.gif map]). One seat is held by the state's lone Republican Congressman, [[John Boozman]] ([http://nationalatlas.gov/printable/images/preview/congdist/ar03_109.gif map]). The Democratic Party holds [[super-majority]] status in the [[Arkansas General Assembly]]. Republicans actually lost seats in the State House in 2004. A majority of local and statewide offices are also held by Democrats. This arrangement is extremely rare in the modern [[U.S. Southern States|South]], where a majority of statewide offices are held by Republicans.
115240
115241 Most Republican strength lies mainly in northwest Arkansas in the area around [[Fort Smith, Arkansas|Fort Smith]], while the rest of the state is strongly Democratic. Arkansas has only elected one Republican to the United States Senate since [[Reconstruction]] and the Arkansas General Assembly has not been controlled by the Republican Party since Reconstruction, and is the fourth most Democratic Legislature in the country, after [[Massachusetts General Court|Massachusetts]], [[Hawaii State Legislature|Hawaii]], and [[Connecticut General Assembly|Connecticut]]. Arkansas is also the only state among the states of the former [[Confederate States of America|Confederacy]] that sends two Democrats to the U.S. Senate. However, the state is perceived as generally being conservative &amp;ndash; its voters passed a ban on [[gay marriage]] and Arkansas is one of a handful of states that has legislation on its books banning [[abortion]] in the event [[Roe vs. Wade]] is ever overturned.
115242
115243 In Arkansas, the lieutenant governor is elected separately from the governor and thus can be from a different political party.
115244
115245 Each office's term is four years long. Office holders are [[term-limited]] to two full terms plus any partial terms prior to the first full term.
115246
115247 Some of Arkansas' [[counties]] have two county seats, as opposed to the usual one seat. The arrangement dates back to when travel was extremely difficult in the states. The seats are usually on opposite sides of the county. Though travel is no longer the difficulty it once was, there are few efforts to eliminate the two seat arrangement where it exists, since the county seat is a source of pride (and jobs) to the city involved.
115248
115249 ''See: [[List of Arkansas Governors]]''
115250
115251 ===Pronunciation and symbols===
115252 The state is the only one with a pronunciation specified by law.
115253 Section 105 of Chapter 4 of Title 1 of the Arkansas code&lt;sup&gt;[http://www.arkleg.state.ar.us/NXT/gateway.dll/ARCode/title00000.htm/chapter00063.htm/section00068.htm?f=templates$fn=document-frame.htm$3.0#JD_1-4-105]&lt;/sup&gt; determined in 1881 the official, codified pronunciation of Arkansas: &quot;It should be pronounced in three (3) syllables, with the final &quot;s&quot; silent, the &quot;a&quot; in each syllable with the Italian sound, and the accent on the first and last syllables.&quot; The same section states that the variation ''are-KAN-sas'' &quot;is an innovation to be discouraged.&quot;
115254
115255 There are differing abbreviations of ''Arkansas'' in use: '''AR''' ([[U.S. postal abbreviations|postal]]),
115256 '''Ark.''' ([[List of U.S. states by traditional abbreviation|traditional]] and [[AP Stylebook]]), and '''US-AR''' ([[ISO 3166-2]]).
115257
115258 The following [[Lists of U.S. state insignia|state symbol]]s are officially recognized by the state law.
115259 *State American Folk Dance: [[Square Dance]]
115260 *State Anthem: ''[[Arkansas (song)|Arkansas]]'' by [[Eva Ware Barnett]]
115261 *State Beverage:[[ Milk]]
115262 *State Bird: [[Mockingbird]]
115263 *State Flower: [[Apple]] Blossom
115264 *State Folk Dance: [[Square Dance]]
115265 *State Fruit: South Arkansas Vine Ripe Pink [[Tomato]]
115266 *State Gem: [[Diamond]]
115267 *State Historical Song: ''The [[Arkansas Traveler]]'' (folk song)
115268 *State Historic Cooking Vessel: [[Dutch oven]]
115269 *State Insect: [[Honeybee]]
115270 *State Mammal: [[White-tailed Deer]]
115271 *State Mineral: [[Quartz]] Crystal
115272 *State Motto: ''[[Regnat Populus]]'' (The People Rule)
115273 *State Musical Instrument: the [[Fiddle]]
115274 *State Rock: [[Bauxite]]
115275 *State Soil: [[Stuttgart Soil Series]]
115276 *State Songs: &quot;Arkansas (You Run Deep in Me)&quot; by Wayland Holyfield and &quot;Oh, Arkansas&quot; by Terry Rose and Gary Klass
115277 *State Tree: Pine
115278 *State Vegetable: South Arkansas Vine Ripe Pink Tomato
115279
115280 == Famous Arkansans ==
115281 *[[John Harold Johnson]], [[Johnson Publishing Company]]. Born in [[Arkansas City, Arkansas]], January 19, 1918.
115282
115283 *[[Johnny Cash]], [[Country Music]] [[legend]]. Born in [[Kingsland, Arkansas]], February 26th 1932.
115284
115285 *[[Buddy Jewell]], [[Country Music]] [[star]]. Born in [[Osceola, Arkansas]].
115286
115287 *[[Bill Clinton]], former [[President of the United States]]. Born August 19th 1946, in [[Hope, Arkansas]].
115288
115289 *[[Matt Jones]], [[NFL]] [[football]] [[star]] and 2005 1st round [[NFL draft]] pick to the [[Jacksonville Jaguars]]. Born April 22nd 1983 in [[Fort Smith, Arkansas]].
115290
115291 *[[Paul &quot;Bear&quot; Bryant]], [[legendary]] [[University of Alabama]] [[football]] [[coach]]. Born in [[Moro Bottom, Arkansas]] on September 11, 1913.
115292
115293 *[[Jody Evans]], rising [[Country Music]] [[star]]. Born November 15th, 1976, in [[Arkadelphia, Arkansas]].
115294
115295 *[[Derek Fisher]], [[NBA]] [[basketball]] [[star]]. Born August 9th, 1974 in [[Little Rock, Arkansas]].
115296
115297 *[[Billy Bob Thornton]], [[Hollywood]] [[film star]] and famous personality. August 4th 1955, in [[Hot Springs, Arkansas]].
115298
115299 *[[Jimmy Driftwood]], famous [[Folk Music]] and [[Country Music]] personality. Born June 20th 1907, in [[Mountain View, Arkansas]].
115300
115301 *[[Sam Walton]], creator of [[Wal Mart]] stores, and one of the worlds wealthiest men. Born in [[Oklahoma]], but created [[Wal Mart]] in 1962, in [[Rogers, Arkansas]].
115302
115303 *[[Alan Ladd]], [[Hollywood]] [[actor]] most famous for his leading role in ''[[Shane]]''. Born September 3rd 1913 in [[Hot Springs, Arkansas]].
115304
115305 *[[Mary Steenburgen]], [[Academy Award]]-winning [[Hollywood]] [[actress]] for her 1981 supporting role in ''Melvin and Howard'', and a co-star on the canceled [[CBS]] [[television program|television series]] ''[[Joan of Arcadia]]''. Born February 8th 1953 in [[Newport, Arkansas]].
115306
115307 *[[Glen Campbell]], [[Country Music]] [[star]] most famous for his songs &quot;[[Rhinestone Cowboy]]&quot; and &quot;[[Wichita Lineman]]&quot;. Born in [[Delight, Arkansas]] in 1936.
115308
115309 *[[Floyd Cramer]], famous [[musician]] most known for his [[piano]] [[instrumental]] &quot;Last Date&quot;. Born in [[Shreveport, Louisiana]] and raised in [[Huttig, Arkansas]] in 1933.
115310
115311 *[[Gail Davis]], [[Hollywood]] film actress, best know as [[Annie Oakley]] from the 1950's [[television series]]. Born in [[Little Rock, Arkansas|Little Rock]] on October 5th 1925 and raised in [[McGehee, Arkansas]].
115312
115313 *[[Tracy Lawrence]], [[Country Music]] [[star]]. Born in [[Atlanta, Texas]] in 1968, raised in [[Foreman, Arkansas]].
115314
115315 *[[Freeman Owens]], former [[World War I]] [[combat camera]] operator, who later perfected the art of putting sound on [[film]] as a [[pioneer]] in [[cinematography]]. Born in [[Pine Bluff, Arkansas]] in 1890.
115316
115317 *[[Dick Powell]], [[Hollywood]] [[actor]], [[producer]] and [[Film director|director]], best know for 1930's films such as ''[[42nd Street]]'' and ''[[A Midsummer Nights Dream]]''. Born in [[Mountain View, Arkansas]] in 1904.
115318
115319 *[[Collin Raye]], [[Country Music]] star best known for his songs &quot;Little Rock&quot;, and &quot;Love Me&quot;. Born in [[De Queen, Arkansas]] in 1960.
115320
115321 *[[Conway Twitty]], [[Country Music]] [[legend]] with number 1 music hits such as &quot;It's Only Make Believe&quot;, &quot;Hello Darlin' &quot; and &quot;Tight Fitting Jeans&quot;. Born in [[Friars Point, Mississippi]] in 1933, he was raised in [[Helena, Arkansas]]. Born with the name [[Harold Jenkins]], he took his [[stage name]] from the towns of [[Conway, Arkansas]] and [[Twitty, Texas]].
115322
115323 *[[John Grisham]], [[author]] and [[attorney]], best known for his books that were later transformed into popular [[movies]], such as ''[[The Pelican Brief]]'', ''[[A Time To Kill]]'', ''[[The Client]]'', ''[[The Rainmaker]]'', ''[[The Firm (book)|The Firm]]'' and ''[[The Chamber]]''. Born in [[Jonesboro, Arkansas]] in 1955.
115324
115325 *[[Lou Brock]], former [[Major League Baseball]] player, thought to be the greatest [[base]] stealer of his era. Started his professional [[baseball]] career with the [[Chicago Cubs]] in 1961. Born in [[El Dorado, Arkansas]] in 1939.
115326
115327 *[[William Carr]], 1932 [[Olympic Gold Medalist]]. Born in [[Pine Bluff, Arkansas]] in 1909.
115328
115329 *[[John Daly]], [[PGA]] [[golf]] [[champion]]. Born in [[California]] in 1966, raised from age 5 in [[Dardanelle, Arkansas]].
115330
115331 *[[Dizzy Dean|Jay Hanna &quot;Dizzy&quot; Dean]], member of the [[National Baseball Hall of Fame]]. Born in [[Lucas, Arkansas]].
115332
115333 *[[Jerry Jones]], owner of the [[NFL]] team [[Dallas Cowboys]]. Born in 1942 in [[North Little Rock, Arkansas]], specifically hailing from [[Rose City, Arkansas|Rose City]].
115334
115335 *[[George Kell]], member of the [[National Baseball Hall of Fame]]. Born in 1942 in [[Swifton, Arkansas]].
115336
115337 *[[Mark Martin]], [[NASCAR]] [[race car]] driver. Born in 1956 in [[Batesville, Arkansas]].
115338
115339 *[[Sidney Moncrief]], retired [[NBA]] [[star]] who played for the [[Milwaukee Bucks]] and who set several college records with the [[University of Arkansas]]. Born in 1957 in [[Little Rock, Arkansas]].
115340
115341 *[[Scottie Pippen]], former [[NBA]] [[legend]] who played for the [[Chicago Bulls]] championship teams, and arguably one of the most talented players ever to play the game. Born in 1965 in [[Hamburg, Arkansas]]; attended the [[University of Central Arkansas]].
115342
115343 *[[Brooks Robinson]], member of the [[National Baseball Hall of Fame]]. Born in 1937 in [[Little Rock, Arkansas]].
115344
115345 *[[Barry Switzer]], former head [[coach]] of the [[NFL]] team [[Dallas Cowboys]]. Born in [[Crossett, Arkansas]] in 1937.
115346
115347 *[[John Hanks Alexander]], the first [[African American]] to hold a regular command position in the [[US Armed Forces]] and the second [[African American]] to graduate from [[West Point]]. Born in [[Helena, Arkansas]] on January 6th 1864.
115348
115349 *Corliss Williamson, former NBA 6th Man of the Year and member of the 2004 NBA Champion [http://www.nba.com/pistons Detroit Pistons]. Lead the Arkansas Razorbacks to the 1994 NCAA title. Now a member of the [http://www.nba.com/kings Sacramento Kings]. Born and raised in Russellville, Arkansas.
115350
115351 ==Geography==
115352 {{ussm|arkansas.PNG|ar}}
115353 ''See: [[List of Arkansas counties]], [[List of cities in Arkansas]], [[List of Arkansas townships]], [[List of Arkansas native plants]].''
115354
115355 The capital of Arkansas is [[Little Rock, Arkansas|Little Rock]]. Arkansas is the only state in the US where [[Diamond|diamonds]] are found naturally (near [[Murfreesboro, Arkansas]]).
115356
115357 The eastern border for most of Arkansas is the [[Mississippi River]] except in Clay and Greene counties where the St. Francis River forms the western boundary of the [[Missouri Bootheel]]. Arkansas shares its southern border with [[Louisiana]], its northern border with [[Missouri]], its eastern border with [[Tennessee]] and [[Mississippi]], and its western border with [[Texas]] and [[Oklahoma]]. Arkansas is a beautiful land of mountains and valleys, thick forests and fertile plains. Northwest Arkansas is part of the [[Ozark Plateau]] including the [[Boston Mountains]], to the south are the [[Ouachita Mountains]] and these regions are divided by the Arkansas River; the southern and eastern parts of Arkansas are called the Lowlands.
115358
115359 The so called Lowlands are better known as the [[Mississippi embayment|Delta]] and the Grand Prairie. The land along the Mississippi river is referred to as the &quot;Delta&quot; of Arkansas. It gets this name from the formation of its rich alluvial soils formed from the flooding of the mighty Mississippi. The Grand Prairie is slightly away from the Mississippi river in the southeast portion of the state and consists of a more undulating landscape. Both are fertile agricultural areas and home to much of the crop agriculture in the state.
115360 [[Image:PetitJean.jpg|right|thumb|260px|''Petit Jean State Park'', one of many attractions that give the state's nickname ''The Natural State''.]]
115361 Arkansas is home to many [[List of caves in Arkansas|cave]]s, such as [[Blanchard Springs Caverns]]. [[Hot Springs National Park]] and the [[Buffalo National River]] can also be found within its borders.
115362
115363 ===[[Interstate highway]]s===
115364 *[[Interstate 30]]
115365 *[[Interstate 40]]
115366 *[[Interstate 55]]
115367 *[[Interstate 430]]
115368 *[[Interstate 440 (Arkansas)|Interstate 440]]
115369 *[[Interstate 530]]
115370 *[[Interstate 540 (Arkansas)|Interstate 540]]
115371 *[[Interstate 630]]
115372
115373 ===[[United States highway]]s===
115374 {|
115375 |-
115376 | align=center | ''North-south routes''
115377 | align=center | ''East-west routes''
115378 |-
115379 | valign=top |
115380 *[[U.S. Highway 425]]
115381 *[[U.S. Highway 49]]
115382 *[[U.S. Highway 59]]
115383 *[[U.S. Highway 61]]
115384 *[[U.S. Highway 63]]
115385 *[[U.S. Highway 65]]
115386 *[[U.S. Highway 165]]
115387 *[[U.S. Highway 67]]
115388 *[[U.S. Highway 167]]
115389 *[[U.S. Highway 71]]
115390 *[[U.S. Highway 371]]
115391 *[[U.S. Highway 79]]
115392
115393 | valign=top |
115394 *[[U.S. Highway 412]]
115395 *[[U.S. Highway 62]]
115396 *[[U.S. Highway 64]]
115397 *[[U.S. Highway 70]]
115398 *[[U.S. Highway 270]]
115399 *[[U.S. Highway 278]]
115400 *[[U.S. Highway 82]]
115401 |}
115402
115403 ===Major Arkansas highways===
115404 {|
115405 |-
115406 | align=center | ''North-south routes''
115407 | align=center | ''East-west routes''
115408 |-
115409 | valign=top |
115410 *[[Arkansas State Highway 1]]
115411 *[[Arkansas State Highway 5]]
115412 *[[Arkansas State Highway 7]]
115413
115414 | valign=top |
115415 *[[Arkansas State Highway 4]]
115416 *[[Arkansas State Highway 10]]
115417 |}
115418
115419 ==Economy==
115420 [[Image:wiki_arkansas.jpg|thumb|300px|Greetings from Arkansas]]
115421 The state's total gross state product for 2003 was $76 billion. Its Per Capita Personal Income for 2003 was $24,384, 50&lt;sup&gt;th&lt;/sup&gt; in the nation. The state's agriculture outputs are poultry and eggs, soybeans, sorghum, cattle, cotton, rice, hogs, and milk. Its industrial outputs are food processing, electric equipment, fabricated metal products, machinery, paper products, bromine, and vanadium.
115422
115423 In recent years, [[automobile]] parts manufacturers have opened factories in eastern Arkansas to support auto plants in other states (though Arkansas does not yet have an auto plant itself, it is rumored to be a future site for a [[Toyota]] plant as well as for a truck plant to be built by Toyota's subsidiary [[Hino Motors]]).
115424
115425 Tourism is also very important to the Arkansas economy; the official state nickname &quot;The Natural State&quot; is prominently displayed in state tourism advertising.
115426
115427 The effect of [[Tyson Foods]], [[Wal-Mart]], [[J.B. Hunt]] and other multinational companies located in NW Arkansas cannot be understated. The area is currently in a long-running economic boom due to being the forefront of Global Trade. [[Wal-Mart]] alone accounts for $8.90 out of every $100 spent in U.S. retail stores.
115428
115429 ==Demographics==
115430 {{main|List of people from Arkansas}}
115431 {| class=&quot;toccolours&quot; align=&quot;right&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot; style=&quot;margin:0 0 1em 1em; font-size: 95%;&quot;
115432 |-
115433 ! colspan=2 bgcolor=&quot;#ccccff&quot; align=&quot;center&quot;| Historical populations
115434 |-
115435 ! align=&quot;center&quot;| Census&lt;br&gt;year !! align=&quot;right&quot;| Population
115436 |-
115437 | colspan=2|&lt;hr&gt;
115438 |-
115439 | align=&quot;center&quot;| 1810 || align=&quot;right&quot;| 1,062
115440 |-
115441 | align=&quot;center&quot;| 1820 || align=&quot;right&quot;| 14,273
115442 |-
115443 | align=&quot;center&quot;| 1830 || align=&quot;right&quot;| 30,388
115444 |-
115445 | align=&quot;center&quot;| 1840 || align=&quot;right&quot;| 97,574
115446 |-
115447 | align=&quot;center&quot;| 1850 || align=&quot;right&quot;| 209,897
115448 |-
115449 | align=&quot;center&quot;| 1860 || align=&quot;right&quot;| 435,450
115450 |-
115451 | align=&quot;center&quot;| 1870 || align=&quot;right&quot;| 484,471
115452 |-
115453 | align=&quot;center&quot;| 1880 || align=&quot;right&quot;| 802,525
115454 |-
115455 | align=&quot;center&quot;| 1890 || align=&quot;right&quot;| 1,128,211
115456 |-
115457 | align=&quot;center&quot;| 1900 || align=&quot;right&quot;| 1,311,564
115458 |-
115459 | align=&quot;center&quot;| 1910 || align=&quot;right&quot;| 1,574,449
115460 |-
115461 | align=&quot;center&quot;| 1920 || align=&quot;right&quot;| 1,752,204
115462 |-
115463 | align=&quot;center&quot;| 1930 || align=&quot;right&quot;| 1,854,482
115464 |-
115465 | align=&quot;center&quot;| 1940 || align=&quot;right&quot;| 1,949,387
115466 |-
115467 | align=&quot;center&quot;| 1950 || align=&quot;right&quot;| 1,909,511
115468 |-
115469 | align=&quot;center&quot;| 1960 || align=&quot;right&quot;| 1,786,272
115470 |-
115471 | align=&quot;center&quot;| 1970 || align=&quot;right&quot;| 1,923,295
115472 |-
115473 | align=&quot;center&quot;| 1980 || align=&quot;right&quot;| 2,286,435
115474 |-
115475 | align=&quot;center&quot;| 1990 || align=&quot;right&quot;| 2,350,725
115476 |-
115477 | align=&quot;center&quot;| [[United States 2004 Census|2004]] || align=&quot;right&quot;| 2,752,629
115478 |}
115479
115480 As of 2005, Arkansas has an estimated population of 2,779,154, which is an increase of 29,154, or 1.1%, from the prior year and an increase of 105,756, or 4.0%, since the year 2000. This includes a natural increase since the last census of 52,214 people (that is 198,800 births minus 146,586 deaths) and an increase due to net migration of 57,611 people into the state. Immigration from outside the United States resulted in a net increase of 21,947 people, and migration within the country produced a net increase of 35,664 people.
115481
115482 48.8% is male, and 51.2% is female.
115483
115484 Racially, Arkansas is:
115485 *78.6% [[Whites|White]] non-Hispanic
115486 *15.7% [[African American|Black]]
115487 *3.2% [[Hispanic American|Hispanic]]
115488 *0.8% [[Asian American|Asian]]
115489 *0.7% [[Native Americans in the United States|Native American]]
115490 *1.3% [[Mixed race]]
115491
115492 The five largest ancestry groups in the state are: [[United States|American]] (15.9%), [[African American]] (15.7%), [[Ireland|Irish]] (9.5%), [[German-American|German]] (9.3%), [[British American|English]] (7.9%).
115493
115494 People of American ancestry have a strong presence in the northwestern Ozarks and the central part of the state. Blacks live mainly in the fertile southern and eastern parts of the state, especially along the Mississippi river. Arkansans of British and German ancestry are mostly found in the far northwestern Ozarks near the Missouri border.
115495
115496 As of 2000, 95.0% of Arkansas residents age 5 and older speak [[English language|English]] at home and 3.3% speak [[Spanish language|Spanish]]. [[French language|French]] is the third most spoken language at 0.3%, followed by [[German language|German]] at 0.3% and [[Vietnamese language|Vietnamese]] at 0.1%.
115497
115498 ===Religion===
115499 Arkansas, like most other Southern states, is overwhelmingly Protestant. The religious affiliations of the people are as follows:
115500
115501 *[[Christianity|Christian]] &amp;ndash; 86%
115502 **[[Protestant]] &amp;ndash; 78%
115503 ***[[Baptist]] &amp;ndash; 39%
115504 ***[[Methodist]] &amp;ndash; 9%
115505 ***[[Pentecostal]] &amp;ndash; 6%
115506 ***[[Church of Christ]] &amp;ndash; 6%
115507 ***[[Assemblies of God]] &amp;ndash; 3%
115508 ***Other Protestant &amp;ndash; 15%
115509 **[[Roman Catholicism in the United States|Roman Catholic]] &amp;ndash; 7%
115510 **Other Christian &amp;ndash; 1%
115511 *Other Religions &amp;ndash; &lt;1%
115512 *Non-Religious &amp;ndash; 14%
115513
115514 ==Important cities and towns==
115515 {|
115516 |-
115517 | valign=top |
115518 *[[Arkadelphia, Arkansas|Arkadelphia]]
115519 *[[Batesville, Arkansas|Batesville]]
115520 *[[Bella Vista, Arkansas|Bella Vista]]
115521 *[[Benton, Arkansas|Benton]]
115522 *[[Bentonville, Arkansas|Bentonville]]
115523 *[[Blytheville, Arkansas|Blytheville]]
115524 *[[Bryant, Arkansas|Bryant]]
115525 *[[Cabot, Arkansas|Cabot]]
115526 *[[Camden, Arkansas|Camden]]
115527 *[[Conway, Arkansas|Conway]]
115528 *[[El Dorado, Arkansas|El Dorado]]
115529 *[[Fayetteville, Arkansas|Fayetteville]]
115530 *[[Forrest City, Arkansas|Forrest City]]
115531 *[[Fort Smith, Arkansas|Fort Smith]]
115532 *[[Harrison, Arkansas|Harrison]]
115533 *[[Hope, Arkansas|Hope]]
115534 *[[Hot Springs, Arkansas|Hot Springs]]
115535 *[[Jacksonville, Arkansas|Jacksonville]]
115536 *[[Jonesboro, Arkansas|Jonesboro]]
115537 *[[Little Rock, Arkansas|Little Rock]]
115538 *[[Lonoke, Arkansas|Lonoke]]
115539 | valign=top |
115540 *[[Magnolia, Arkansas|Magnolia]]
115541 *[[Maumelle, Arkansas|Maumelle]]
115542 *[[Monticello, Arkansas|Monticello]]
115543 *[[Mountain Home, Arkansas|Mountain Home]]
115544 *[[North Little Rock, Arkansas|North Little Rock]]
115545 *[[Paragould, Arkansas|Paragould]]
115546 *[[Pine Bluff, Arkansas|Pine Bluff]]
115547 *[[Pocahontas, Arkansas|Pocahontas]]
115548 *[[Pottsville, Arkansas|Pottsville]]
115549 *[[Rector, Arkansas|Rector]]
115550 *[[Rogers, Arkansas|Rogers]]
115551 *[[Russellville, Arkansas|Russellville]]
115552 *[[Searcy, Arkansas|Searcy]]
115553 *[[Sherwood, Arkansas|Sherwood]]
115554 *[[Smackover, Arkansas|Smackover]]
115555 *[[Springdale, Arkansas|Springdale]]
115556 *[[Siloam Springs, Arkansas|Siloam Springs]]
115557 *[[Texarkana, Arkansas|Texarkana]]
115558 *[[Van Buren, Arkansas|Van Buren]]
115559 *[[West Helena, Arkansas|West Helena]]
115560 *[[West Memphis, Arkansas|West Memphis]]
115561 |}
115562
115563 ==Education and research centers==
115564 ===Centers of research===
115565 * [http://www.comanchelodge.com/chickamauga-cherokee.html Arkansas Cherokee Indian Research]
115566 * [[Dale Bumpers National Rice Research Center]] [http://www.dbnrrc.ars.usda.gov/ website]
115567 * [[National Center for Toxicological Research]] [http://www.fda.gov/nctr/ website]
115568
115569 ===Colleges and universities===
115570 [[Image:UAMS Cancer.JPG|thumb|right|[[University of Arkansas for Medical Sciences]], Little Rock.]]
115571 *[[University of Arkansas System]]
115572 **[[University of Arkansas]]
115573 **[[University of Arkansas - Fort Smith]]
115574 **[[University of Arkansas at Little Rock]]
115575 **[[University of Arkansas for Medical Sciences]]
115576 **[[University of Arkansas at Monticello]]
115577 **[[University of Arkansas at Pine Bluff]]
115578 &lt;p&gt;
115579 *[[Arkansas Baptist College]]
115580 *[[Arkansas Tech University]]
115581 *[[Central Baptist College]]
115582 *[[Harding University]]
115583 *[[Henderson State University]]
115584 *[[Hendrix College]]
115585 *[[John Brown University]]
115586 *[[Lyon College]]
115587 *[[Ouachita Baptist University]]
115588 *[[Philander Smith College]]
115589 *[[Southern Arkansas University]]
115590 *[[University of Central Arkansas]]
115591 *[[University of the Ozarks]]
115592 *[[Williams Baptist College]]
115593 [[Image:Astate.jpg|thumb|right|[[Arkansas State University]], Jonesboro.]]
115594 *[[Arkansas State University System]]
115595 **[[Arkansas State University|Arkansas State University - Jonesboro]]
115596 **[[Arkansas State University - Beebe]]
115597 **[[Arkansas State University - Mountain Home]]
115598 **[[Arkansas State University - Newport]]
115599 **[[Arkansas State University - Marked Tree]]
115600 **[[Arkansas State University - Heber Springs]]
115601 **[[Arkansas State University - Searcy]]
115602
115603 ==See also==
115604 *[[Arkansas Literature]]
115605 *[[Ivory-billed Woodpecker]], long thought extinct, was recently re-discovered in the Big Woods of Arkansas
115606 *[[South Arkansas]]
115607 *[[List of Arkansas native plants]]
115608
115609 ==External links==
115610 {{sisterlinks|Arkansas}}
115611 *[http://www.state.ar.us Official State website Homepage]
115612 *[http://www.arcountydata.com Online access to Arkansas County Records]
115613 *[http://www.arkansas.com/things-to-do/history-heritage/facts.asp Facts About Arkansas]
115614 *[http://quickfacts.census.gov/qfd/states/05000.html U.S. Census Bureau]
115615 *[http://www.usnewspapers.org/state/arkansas Arkansas Newspapers]
115616 *[http://www.arkleg.state.ar.us/data/ar_code.asp Arkansas State Code (the state statutes of Arkansas)]
115617 * [http://www.southernlitreview.com/states/arkansas Literature of Arkansas]
115618
115619
115620 {{United_States}}
115621 {{Arkansas}}
115622
115623 [[Category:Arkansas|*]]
115624 [[Category:States of the United States]]
115625 [[Category:1836 establishments]]
115626 [[ang:Arkansas]]
115627 [[ar:ØŖØąŲƒŲ†ØŗاØŗ]]
115628 [[ast:Arkansas]]
115629 [[bg:АŅ€ĐēĐ°ĐŊСаŅ]]
115630 [[zh-min-nan:Arkansas]]
115631 [[bs:Arkansas]]
115632 [[ca:Arkansas]]
115633 [[cs:Arkansas]]
115634 [[da:Arkansas]]
115635 [[de:Arkansas]]
115636 [[et:Arkansas]]
115637 [[es:Arkansas]]
115638 [[eo:Arkansaso]]
115639 [[fr:Arkansas]]
115640 [[ga:Arkansas]]
115641 [[gd:Arkansas]]
115642 [[gl:Arcansas]]
115643 [[ko:ė•„ėš¸ė†Œ ėŖŧ]]
115644 [[id:Arkansas]]
115645 [[is:Arkansas]]
115646 [[it:Arkansas]]
115647 [[he:ארקנסו]]
115648 [[ka:არკანზასი]]
115649 [[la:Arcansia]]
115650 [[lv:Ārkanzasa]]
115651 [[lt:Arkanzasas]]
115652 [[lb:Arkansas]]
115653 [[hu:Arkansas]]
115654 [[mk:АŅ€ĐēĐ°ĐŊСаŅ]]
115655 [[ms:Arkansas]]
115656 [[nl:Arkansas]]
115657 [[ja:ã‚ĸãƒŧã‚Ģãƒŗã‚Ŋãƒŧåˇž]]
115658 [[no:Arkansas]]
115659 [[nn:Arkansas]]
115660 [[os:АŅ€ĐēĐ°ĐŊСаŅ]]
115661 [[pl:Arkansas]]
115662 [[pt:Arkansas]]
115663 [[ru:АŅ€ĐēĐ°ĐŊСаŅ]]
115664 [[sa:ā¤†ā¤°āĨā¤•ā¤¨āĨâ€ā¤¸ā¤ž]]
115665 [[sq:Arkansas]]
115666 [[simple:Arkansas]]
115667 [[sk:Arkansas]]
115668 [[sl:Arkansas]]
115669 [[sr:АŅ€ĐēĐ°ĐŊСаŅ]]
115670 [[fi:Arkansas]]
115671 [[sv:Arkansas]]
115672 [[tr:Arkansas]]
115673 [[uk:АŅ€ĐēĐ°ĐŊСаŅ]]
115674 [[zh:é˜ŋč‚¯č‰˛åˇž]]</text>
115675 </revision>
115676 </page>
115677 <page>
115678 <title>Atmosphere</title>
115679 <id>1931</id>
115680 <revision>
115681 <id>41185087</id>
115682 <timestamp>2006-02-25T17:00:28Z</timestamp>
115683 <contributor>
115684 <username>Sango123</username>
115685 <id>223113</id>
115686 </contributor>
115687 <minor />
115688 <comment>a -&gt; A</comment>
115689 <text xml:space="preserve">{{portal}}
115690 {{wiktionarypar|atmosphere}}
115691 '''Atmosphere''' may refer to:
115692 *[[Celestial body atmosphere]], such as:
115693 **[[Earth's atmosphere]]
115694 **[[Stellar atmosphere]]s
115695 *[[Atmosphere (unit)]], a unit of pressure
115696 *[[Gas]] mixture (an artificial atmosphere)
115697 *Ambience or [[mood]]
115698 *[[Atmosphere (band)]], a hip-hop music group
115699 *[[Adobe Atmosphere]], a 3D computer graphics product by Adobe Systems
115700
115701 {{disambig}}
115702 [[ar:ØēŲ„اŲ ØŦŲˆŲŠ]]
115703 [[ca:Atmosfera]]
115704 [[da:AtmosfÃĻre]]
115705 [[de:Atmosphäre (Begriffsklärung)]]
115706 [[eo:Atmosfero]]
115707 [[es:AtmÃŗsfera]]
115708 [[et:Atmosfäär]]
115709 [[fr:Atmosphère]]
115710 [[lt:Atmosfera]]
115711 [[nl:Atmosfeer]]
115712 [[pl:Atmosfera]]
115713 [[ru:АŅ‚ĐŧĐžŅŅ„ĐĩŅ€Đ°]]
115714 [[sl:Atmosfera (razločitev)]]
115715 [[sv:Atmosfär]]
115716 [[uk:&amp;#1040;&amp;#1090;&amp;#1084;&amp;#1086;&amp;#1089;&amp;#1092;&amp;#1077;&amp;#1088;&amp;#1072;]]</text>
115717 </revision>
115718 </page>
115719 <page>
115720 <title>Avoid statements that will date quickly talk</title>
115721 <id>1932</id>
115722 <revision>
115723 <id>15900392</id>
115724 <timestamp>2002-04-22T23:54:30Z</timestamp>
115725 <contributor>
115726 <username>Lee Daniel Crocker</username>
115727 <id>43</id>
115728 </contributor>
115729 <comment>*</comment>
115730 <text xml:space="preserve">#REDIRECT [[wikipedia talk:Avoid statements that will date quickly]]</text>
115731 </revision>
115732 </page>
115733 <page>
115734 <title>Apus</title>
115735 <id>1933</id>
115736 <revision>
115737 <id>40828570</id>
115738 <timestamp>2006-02-23T07:09:07Z</timestamp>
115739 <contributor>
115740 <username>Palica</username>
115741 <id>188933</id>
115742 </contributor>
115743 <minor />
115744 <comment>robot Adding: sk</comment>
115745 <text xml:space="preserve">:''For the genus of birds, see [[Apus (genus)]].''
115746 :''For the computer, see [[APUS_Computer|APUS]].''
115747 {{Infobox Constellation|
115748 name = Apus |
115749 abbreviation = Aps |
115750 genitive = Apodis |
115751 symbology = the [[bird of paradise]] |
115752 RA = 16 |
115753 dec= &amp;minus;75 |
115754 areatotal = 206 |
115755 arearank = 67th |
115756 numberstars = 0 |
115757 starname = [[Alpha Apodis|&amp;alpha; Aps]] |
115758 starmagnitude = 3.83 |
115759 meteorshowers = None |
115760 bordering =
115761 *[[Triangulum Australe]]
115762 *[[Circinus]]
115763 *[[Musca]]
115764 *[[Chamaeleon]]
115765 *[[Octans]]
115766 *[[Pavo (constellation)|Pavo]]
115767 *[[Ara]] |
115768 latmax = 5 |
115769 latmin = 90 |
115770 month = July |
115771 notes=}}
115772 '''Apus''' ([[Latin]] for ''[[bird of paradise]]'' or ''[[swallow]]'', from [[Greek language|Greek]] ''&amp;alpha;&amp;pi;&amp;omicron;&amp;upsilon;&amp;sigmaf;'', lit. &quot;no-feet&quot;) is a faint southern [[constellation]], not visible to the ancient Greeks. The constellation was one of twelve constellations created by [[Pieter Dirkszoon Keyser]] and [[Frederick de Houtman]] between [[1595]] and [[1597]], and it first appeared in [[Johann Bayer]]'s ''[[Uranometria]]'' of [[1603]].
115773
115774 ==Notable and named stars==
115775 {| style=&quot;color:#000000; font-size:smaller;&quot; cellspacing=2 cellpadding=0
115776 |-
115777 ! style=&quot;background-color:#dddddd;&quot; | [[Bayer designation|BD]]
115778 ! style=&quot;background-color:#dddddd;&quot; | Names and other designations
115779 ! style=&quot;background-color:#dddddd;&quot; | [[apparent magnitude|Mag.]]
115780 ! style=&quot;background-color:#dddddd;&quot; | [[Light year|Ly]] away
115781 ! style=&quot;background-color:#dddddd;&quot; | Comments
115782 |-
115783 | &amp;alpha; || [[Alpha Apodis]] || 3.83 || 411 ||
115784 |- style=&quot;background-color:#eeeeee;&quot;
115785 | &amp;gamma; || [[Gamma Apodis]] || 3.86 || 160 ||
115786 |-
115787 | &amp;beta; || [[Beta Apodis]] || 4.23 || 158 ||
115788 |- style=&quot;background-color:#eeeeee;&quot;
115789 | &amp;delta;&amp;sup1; || [[Delta Apodis|Delta-1 Apodis]] || 4.68 || 770 ||
115790 * [[irregular variable]]
115791 * [[double star]] with [[Delta Apodis|&amp;delta;&amp;sup2; Apodis]]
115792 |-
115793 | &amp;zeta; || [[Zeta Apodis]] || 4.79 || 312 ||
115794 |- style=&quot;background-color:#eeeeee;&quot;
115795 | &amp;eta; || [[Eta Apodis]] || 4.89 || 140 ||
115796 |-
115797 | &amp;epsilon; || [[Epsilon Apodis]] || 5.06 || 551 ||
115798 * [[Gamma Cassiopeiae variable|Gamma Cassiopeiae type]] [[variable star]]
115799 |- style=&quot;background-color:#eeeeee;&quot;
115800 | &amp;delta;&amp;sup2; || [[Delta Apodis|Delta-2 Apodis]] || 5.27 || 663 ||
115801 * [[double star]] with [[Delta Apodis|&amp;delta;&amp;sup1; Apodis]]
115802 |-
115803 | &amp;iota; || [[Iota Apodis]] || 5.39 || 1140 ||
115804 |- style=&quot;background-color:#eeeeee;&quot;
115805 | &amp;kappa;&amp;sup1; || [[Kappa Apodis|Kappa-1 Apodis]] || 4.68 || 1020 ||
115806 * [[Gamma Cassiopeiae variable|Gamma Cassiopeiae type]] [[variable star]]
115807 |-
115808 | || [[R Apodis]] || 5.37 || 428 ||
115809 |- style=&quot;background-color:#eeeeee;&quot;
115810 | &amp;kappa;&amp;sup2; || [[Kappa Apodis|Kappa-2 Apodis]] || 5.64 || 735 ||
115811 |-
115812 | &amp;theta; || [[Theta Apodis]] || 5.69 || 328 ||
115813 * [[semiregular variable|semiregular]] [[variable star]]
115814 |}
115815 Source: &lt;cite&gt;The Bright Star Catalogue, 5th Revised Ed.&lt;/cite&gt;, &lt;cite&gt;The Hipparcos Catalogue, ESA SP-1200&lt;/cite&gt;
115816
115817 &lt;BR clear=&quot;all&quot;/&gt;
115818 ==See also==
115819
115820 {{ConstellationsByBayer}}
115821 {{ConstellationList}}
115822
115823 == External links ==
115824 *[http://www.astronomical.org/portal/modules/wfsection/article.php?articleid=3 Peoria Astronomical Society - Apus]
115825 * [http://www.nightskyinfo.com/constellations/apus/ NightSkyInfo.com: Constellation Apus]
115826
115827 {{Commons|Apus}}
115828 {{astro-stub}}
115829
115830 [[Category:Apus constellation| ]]
115831
115832 [[ca:Au del Paradís]]
115833 [[cs:Rajka (souhvězdí)]]
115834 [[da:Paradisfuglen]]
115835 [[de:Paradiesvogel (Sternbild)]]
115836 [[es:Apus]]
115837 [[fr:Oiseau de paradis (constellation)]]
115838 [[ko:ꡚëŊėĄ°ėžëĻŦ]]
115839 [[id:Apus]]
115840 [[it:Apus]]
115841 [[la:Apus (sidus)]]
115842 [[lt:Rojaus PaukÅĄtis (astronomija)]]
115843 [[hu:ParadicsommadÃĄr (csillagkÊp)]]
115844 [[nl:Paradijsvogel (sterrenbeeld)]]
115845 [[ja:ãĩã†ãĄã‚‡ã†åē§]]
115846 [[nn:Paradisfuglen]]
115847 [[pt:Apus]]
115848 [[ru:Đ Đ°ĐšŅĐēĐ°Ņ ПŅ‚иŅ†Đ° (ŅĐžĐˇĐ˛ĐĩСдиĐĩ)]]
115849 [[sk:SÃēhvezdie Rajka]]
115850 [[th:ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸”ā¸˛ā¸§ā¸™ā¸ā¸ā¸˛ā¸Ŗāš€ā¸§ā¸]]
115851 [[vi:ThiÃĒn Yáēŋn]]
115852 [[zh:夊į‡•åē§]]</text>
115853 </revision>
115854 </page>
115855 <page>
115856 <title>Abadan</title>
115857 <id>1934</id>
115858 <revision>
115859 <id>41724005</id>
115860 <timestamp>2006-03-01T08:20:14Z</timestamp>
115861 <contributor>
115862 <username>Phil Boswell</username>
115863 <id>24373</id>
115864 </contributor>
115865 <comment>migrate {{web reference}} to {{[[template:cite web|cite web]]}} using [[Wikipedia:AutoWikiBrowser|AWB]]</comment>
115866 <text xml:space="preserve">[[Image:Abadan.png|right|Map of Iran (Persia) and surrounding lands, showing location of Abadan]]
115867
115868 '''Abadan''' (&amp;#1570;&amp;#1576;&amp;#1575;&amp;#1583;&amp;#1575;&amp;#1606; in [[Persian language|Persian]]) is a city in the [[Khuzestan]] province in southwestern [[Iran]] ([[Persian empire|Persia]]). It lies on Abadan Island, on the [[Arvand]] river. In 2005 the population was estimated to be at 1,291,690.&lt;small&gt;[http://www.mongabay.com/igapo/2005_world_city_populations/Iran.html]&lt;/small&gt;
115869
115870 ==Etymology==
115871 In [[medieval]] sources and up to the present century, the name of the Island always occurs in the [[Arabic language|Arabic]] form '' 'Abadan''(īģĨīēīēŠīēŽīē’īģ‹). This name has sometimes been derived from the word ''worshiper''(īēŠīēŽīē’īģ‹). On the other hand, ''Beladori''(d.[[892]]) quotes the story that the town was founded by '' 'Abbad bin Hosayn Khabethi'', who established a garrison there during the governorship of ''Hajjaj'' in the [[Ummayad]] period. An Iranian etymology of the name (from the Persian word &quot;ab&quot; (water) and the root &quot;p&amp;#257;&quot; (guard, watch) thus &quot;coastguard station&quot;), was suggested by ''B. Farahvashi''. Supporting evidence is the name &quot;Apphana&quot; which [[Ptolemy]] applies to an island off the mouth of The Tigris. The Persian version of the name had begun to come into general use before it was adopted by official decree in [[1935]] (see [http://www.iranica.com/articles/search/searchpdf.isc?ReqStrPDFPath=/home1/iranica/articles/v1_articles/abadan&amp;OptStrLogFile=/home/iranica/public_html/logs/pdfdownload.html Abadan], in [[Encyclopaedia Iranica]], pp.51-52).
115872 The geographer Marcian also renders the name &quot;Apphadana&quot; in his writings (see ''Geographia Marciani Heracleotae'', ed. David Hoeschel, Augsburg 1600 p48).
115873
115874 ==History==
115875 Abadan is thought to have originally developed as a port city under the [[Abbasid]]s' rule. From 17th century onward, the Island of Abadan was part of the lands of the [[Arab]] ''Ka'ab'' ([[Bani Kaab]]) tribe. One section of this tribe, ''Mohaysen'', had its headquarters at ''Mohammara''(present-day [[Khorramshahr]]), until the removel of Shaikh [[Khaz'al Khan]] in [[1924]]. (see [http://www.iranica.com], p.53, under ''Abadan'')
115876
115877 It was not until the [[20th century]] that rich oil fields were discovered in the area. In 1910, the population had been around 400. The [[Anglo-Persian Oil Company]] built their first [[oil refinery]] in Abadan, starting in 1909 and completing it in 1913. By 1938, it was the largest in the world. To this day it remains a vast facility for refining [[petroleum]].
115878
115879 Only a low 9 percent of managers (of the oil company) were from Khuzestan. The proportion of natives of [[Tehran]], the [[Caspian]], [[Azarbaijan]] and [[Kurdistan Province, Iran|Kurdistan]] rose from 4 percent of [[blue collar]] workers to 22 percent of [[white collar]] workers to 45 percent of managers. Thus while [[Arabic]] speakers were concentrated on the lower rungs of the work force, managers tended to be brought in from some distance.(see [http://www.iranica.com], p.56, under ''Abadan'')
115880
115881 On [[August 20]] [[1978]], the Cinema Rex, a movie theater in Abadan, was locked from the outside and [[arson|set on fire]], resulting in 430 deaths. To this day it is not entirely clear what happened, but it was believed by some that the government of the Iranian [[Shah]] [[Mohammad Reza Pahlavi]] purposely set the theater ablaze to kill several [[dissident]]s who were hiding inside. This event sparked [[protest|mass demonstrations]] against Pahlavi's government, which was overthrown six months later by [[Islam]]ic [[fundamentalism|fundamentalists]] and their supporters (see [[Iranian Revolution]]). Most more accurately accuse Ayatollah Ali Khamenei of committing this tragedy.
115882
115883 In September 1980, Abadan was almost overrun during a surprise attack on Khuzestan by Iraq, marking the beginning of the [[Iran-Iraq War]]. For 18 months Abadan was besieged, but never captured, by Iraqi forces. Much of the city, including the oil refinery, was badly damaged or destroyed by the siege and by bombing. Previous to the war, the city's civilian [[population]] was about 300,000, but before it was over most of the populous had sought refuge elsewhere in Iran.
115884
115885 After the war, the biggest concern was the rebuilding of Abadan's oil refinery. In 1993 the refinery began limited operation, and by 1997 it reached the same rate of production it was at before the war.
115886
115887 ===Recent events===
115888 To honor the 100th anniversary of the refining of oil in Abadan, city officials are planning an &quot;oil [[museum]]&quot; {{ref|chn.ir}}
115889 &lt;!-- Unsourced image removed: [[Image:Abadan.jpg|thumb|200px|Abadan]] --&gt;
115890
115891 ==Places of Interest==
115892 [[Image:Abadan_taj_cinema.jpg|thumb|250px|Taj cinema in Abadan|frame|Taj cinema in Abadan]]
115893
115894 The [[Abadan Institute of Technology]] was established in Abadan in 1939. The school specialized in [[engineering]] and petroleum [[chemistry]], and was designed to train staff for the refinery in town. The school's name has since changed several times, but since 1989 has been considered a branch campus of the [[Petroleum University of Technology]], centered in [[Tehran]].
115895
115896 There is an international [[airport]] in Abadan. It is represented by the [[IATA airport code]] [[ABD]].
115897
115898 ==Trivia==
115899 * The Abadan oil refinery was featured on the reverse side of Iran's 100-rial banknotes printed in 1965 and from 1971 to 1973.
115900
115901 ==See also==
115902 * [[Abadan Crisis]]
115903
115904 ==References==
115905 * {{note|chn.ir}} {{cite web | title=Southern Iran Craves for an Oil Museum | url=http://www.chn.ir/en/news/?id=5870&amp;section=2 | accessdate= October 20 | accessyear= 2005 }}
115906
115907 ==External links==
115908 * [http://www.put.ac.ir/abadan/Default.htm Abadan Institute of Technology] - Home page
115909 * [http://www.abadan-ref.org/ Abadan Oil Refinery] - Home page
115910 * [http://www.ostan-kz.ir/en/albumdetail_aen_i_1.html Abadan Photo Gallery from the Khuzestan Governorship]
115911 * [http://www.abadan.net Abadan.Net]
115912
115913 ----
115914
115915 ''Abadan'' is also the name of a 2003 Iranian movie from director [[Mani Haghighi]].
115916
115917 [[Category:Cities in Iran]]
115918
115919 [[ar:ؚبداŲ†]]
115920 [[da:Abadan]]
115921 [[de:Abadan]]
115922 [[et:Ābādān]]
115923 [[eo:Abadano]]
115924 [[es:AbadÃĄn]]
115925 [[fa:ØĸباداŲ†]]
115926 [[fr:Abadan]]
115927 [[gl:AbadÃĄn - ØĸباداŲ†]]
115928 [[it:Abadan]]
115929 [[nl:Abadan]]
115930 [[no:Abadan]]
115931 [[ja:ã‚ĸバダãƒŧãƒŗ]]
115932 [[pl:Abadan]]
115933 [[ru:АйадаĐŊ]]
115934 [[fi:Abadan]]
115935 [[sv:Abadan]]
115936 [[uk:АйадаĐŊ]]</text>
115937 </revision>
115938 </page>
115939 <page>
115940 <title>Attorney</title>
115941 <id>1935</id>
115942 <revision>
115943 <id>33853741</id>
115944 <timestamp>2006-01-04T15:59:51Z</timestamp>
115945 <contributor>
115946 <username>RussBot</username>
115947 <id>279219</id>
115948 </contributor>
115949 <minor />
115950 <comment>Robot: Fixing [[Special:DoubleRedirects|double-redirect]] -&quot;Attorney at Law&quot; +&quot;Attorney at law&quot;</comment>
115951 <text xml:space="preserve">#REDIRECT [[Attorney at law]]</text>
115952 </revision>
115953 </page>
115954 <page>
115955 <title>Astronomical Unit</title>
115956 <id>1936</id>
115957 <revision>
115958 <id>15900396</id>
115959 <timestamp>2002-02-25T15:51:15Z</timestamp>
115960 <contributor>
115961 <ip>Conversion script</ip>
115962 </contributor>
115963 <minor />
115964 <comment>Automated conversion</comment>
115965 <text xml:space="preserve">#REDIRECT [[Astronomical_unit]]
115966 </text>
115967 </revision>
115968 </page>
115969 <page>
115970 <title>Alexander Fleming</title>
115971 <id>1937</id>
115972 <revision>
115973 <id>40701747</id>
115974 <timestamp>2006-02-22T12:08:10Z</timestamp>
115975 <contributor>
115976 <ip>138.130.144.90</ip>
115977 </contributor>
115978 <comment>/* Accolades */</comment>
115979 <text xml:space="preserve">[[image:Alexander-fleming.jpg|thumb|Alexander Fleming]]
115980 Sir '''Alexander Fleming''' ([[August 6]], [[1881]] &amp;ndash; [[March 11]], [[1955]]) was a [[Scotland|Scottish]] [[biologist]] and [[pharmacologist]]. He discovered the [[antibiotic]] substance [[lysozyme]] and isolated the antibiotic substance [[penicillin]] from the fungus ''[[Penicillium notatum]]'', for which he shared a [[Nobel Prize]].
115981
115982 == Birth and education==
115983 Fleming was born on a [[farm]] at [[Lochfield]] near [[Darvel]] in [[East Ayrshire]], and was schooled for two years at the Academy in [[Kilmarnock]]. He later attended [[St Mary's Hospital (London)|St Mary's Hospital]] medical school in [[London]] until [[World War I]] broke out. He and many of his colleagues worked in battlefield hospitals at the fronts in [[France]]. He learned of the works by [[Ernest Duchesne]].
115984
115985 ==Fable==
115986 The popular story of [[Lord Randolph Churchill|Winston Churchill's father]]'s paying for Fleming's education after Fleming's father saved young [[Winston Churchill|Winston]] from death is certainly false. According to the biography, &quot;Penicillin Man: Alexander Fleming and the Antibiotic Revolution&quot; by Kevin Brown, Alexander Fleming is quoted as saying that this was &quot;a wonderful fable&quot;. Nor did he save Winston Churchill himself during WWII. Churchill was saved by [[Lord Moran]], using [[sulphonamide]]s, since he had no experience with penicillin, when Churchill fell ill in Carthage in Tunisia in 1943. The Daily Telegraph and The Morning Post on 21 December 1943 wrote that he had been saved by penicillin. It is probable that, as [[sulphonamides]] were a German discovery, and there was a war with the Germans, the patriotic pride in the miracle cure of penicillin had something to do with this error in reporting.
115987
115988 ==Rediscovery==
115989 Fleming worked with the mold for some time, but refining and growing it was a difficult process better suited to chemists. Fleming's impression was that, because of the problem of producing the drug in quantity and because its action seemed slow, it would not be an important resource for treating infection. Furthermore, his initial paper was not well received in the medical community. Fleming therefore did not pursue the subject further. It was left to two other scientists, [[Howard Walter Florey|Howard Florey]] and [[Ernst Boris Chain]], to develop a method of purifying penicillin to an effective form. Through their work, the drug was available for mass distribution during [[World War II]].
115990
115991 ==Accolades==
115992 For his achievements, Fleming was knighted in 1944, he was known as Sir Gustav santina, after his Grandfather, and step Great grandfather Gustav Lichtenstein, and Santina Gauchiosos ( from Checkoslavakia and Spain ). Fleming, Florey, and Chain were the joint recipients of the [[Nobel Prize in Medicine]] in 1945. Florey was later given the honour of a peerage for his monumental work in making penicillin available to the public and saving millions of lives in World War II.
115993
115994 Fleming was ranked #43 on [[Michael H. Hart]]'s [[The 100|list of the most influential figures in history]].
115995
115996 The discovery of penicillin was ranked as the most important discovery of the millennium when the year 2000 was approaching by at least 3 large Swedish magazines, as seen in for example: http://www.nyteknik.se/pub/ipsart.asp?art_id=1462.
115997 It is impossible to know how many lives have been saved by this discovery, but some of these magazines placed their estimate near 200 million lives, which, if even remotely true, might arguably make this man the greatest hero ever.
115998
115999
116000 Fleming was long a member of the [[Chelsea Arts Club]], a private club for artists of all genres, founded in 1891 at the suggestion of the painter [[James McNeil Whistler]]. Fleming was admitted to the club after he made &quot;germ paintings,&quot; in which he drew with a culture loop using spores of highly pigmented bacteria. The bacteria were invisible while he painted, but when cultured made bright colours.
116001 :''[[Serratia]] marcescens'' - red
116002 :''[[Chromobacterium]] violaceum'' - purple
116003 :''[[Micrococcus]] luteus'' - yellow
116004 :''[[Micrococcus]] varians'' - white
116005 :''[[Micrococcus]] roseus'' - pink
116006 :''[[Bacillus]] sp.'' - purple
116007
116008 ==Death==
116009 Fleming died in 1955 of a [[myocardial infarction|heart attack]] at the age of 73. He was buried as a national hero in the crypt of [[St. Paul's Cathedral]] in [[London]]. His discovery of penicillin had changed the world of modern medicines by introducing the age of useful [[antibiotic]]s and his discovery of the penicillin has, and still, saved millions of people.
116010
116011 ==External links==
116012
116013 *[http://www.importantscots.com/sir-alexander-fleming.htm Sir Alexander Fleming - Important Scots]
116014
116015 * &quot;Penicillin Man&quot;, by Kevin Brown, official biographer for Fleming at St Mary's Hospital. http://www.amazon.co.uk/exec/obidos/ASIN/0750931523/203-6687617-7055925
116016
116017 [[Category:1881 births|Fleming, Alexander]]
116018 [[Category:1955 deaths|Fleming, Alexander]]
116019 [[Category:Fellows of the Royal Society|Fleming, Alexander]]
116020 [[Category:Freemasons|Fleming, Alexander]]
116021 [[Category:Humanitarians]]
116022 [[Category:Knights Commander of the British Empire|Fleming, Alexander]]
116023 [[Category:Members of the Pontifical Academy of Sciences|Fleming, Alexander]]
116024 [[Category:Natives of East Ayrshire|Fleming, Aleaxnder]]
116025 [[Category:Nobel Prize in Physiology or Medicine winners|Fleming, Alexander]]
116026 [[Category:Pharmacologists|Fleming, Alexander]]
116027 [[Category:Scottish biologists|Fleming, Alexander]]
116028 [[Category:Scottish inventors|Fleming, Alexander]]
116029 [[Category:Scottish Nobel laureates|Fleming, Alexander]]
116030 [[Category:Scottish scholars|Fleming, Aleaxnder]]
116031 [[Category:Alumni of Imperial College London|Fleming, Aleaxnder]]
116032 [[Category:Lecturers of Imperial College London|Fleming, Aleaxnder]]
116033
116034 [[ar:ØŖŲ„ŲƒØŗŲ†Ø¯Øą ŲŲ„Ų…ŲŠŲ†Øē]]
116035 [[ca:Alexander Fleming]]
116036 [[cs:Alexander Fleming]]
116037 [[cy:Alexander Fleming]]
116038 [[da:Alexander Fleming]]
116039 [[de:Alexander Fleming]]
116040 [[es:Alexander Fleming]]
116041 [[eo:Alexander FLEMING]]
116042 [[fr:Alexander Fleming]]
116043 [[ko:ė•Œë ‰ė‚°ë” 플레밍]]
116044 [[hr:Alexander Fleming]]
116045 [[io:Alexander Fleming]]
116046 [[id:Alexander Fleming]]
116047 [[it:Alexander Fleming]]
116048 [[he:אלכסנדר פלמינג]]
116049 [[ka:ფლემინგი, ალეáƒĨსანდერ]]
116050 [[hu:Alexander Fleming]]
116051 [[nl:Alexander Fleming]]
116052 [[ja:ã‚ĸãƒŦクã‚ĩãƒŗダãƒŧãƒģフãƒŦミãƒŗグ]]
116053 [[no:Alexander Fleming]]
116054 [[pl:Alexander Fleming]]
116055 [[pt:Alexander Fleming]]
116056 [[ro:Alexander Fleming]]
116057 [[ru:ФĐģĐĩĐŧиĐŊĐŗ, АĐģĐĩĐēŅĐ°ĐŊĐ´Ņ€]]
116058 [[fi:Alexander Fleming]]
116059 [[sv:Alexander Fleming]]
116060 [[ta:āŽ…āŽ˛ā¯†āŽ•ā¯āŽ¸āŽžāŽŖā¯āŽŸāŽ°ā¯ āŽĒāŽŋāŽŗā¯†āŽŽāŽŋāŽ™ā¯]]
116061 [[vi:Alexander Fleming]]
116062 [[tr:Alexander Fleming]]
116063 [[zh:äēšåŽ†åąąå¤§Âˇåŧ—čŽąæ˜Ž]]</text>
116064 </revision>
116065 </page>
116066 <page>
116067 <title>Andrew Carnegie</title>
116068 <id>1938</id>
116069 <revision>
116070 <id>42102828</id>
116071 <timestamp>2006-03-03T21:17:38Z</timestamp>
116072 <contributor>
116073 <ip>68.44.143.168</ip>
116074 </contributor>
116075 <comment>/* Postwar years, 1865-1880: Carnegie the investor */</comment>
116076 <text xml:space="preserve">{{Infobox Celebrity
116077 | name =Andrew Carnegie
116078 | image = Andrew-carnegie-portrait-pd.png
116079 | caption =
116080 | birth_date = [[November 25]] [[1835]]
116081 | birth_place = [[Dunfermline]], [[Scotland]]
116082 | death_date = [[August 11]] [[1919]]
116083 | death_place = [[Lenox, Massachusetts]]
116084 | occupation = [[List of business people|Businessman]] and [[Philanthropist]]
116085 | salary =
116086 | networth =
116087 | website =
116088 | footnotes =
116089 }}
116090 '''Andrew Carnegie''' ([[November 25]] [[1835]] &amp;ndash; [[August 11]] [[1919]]) was a [[Scottish-American]] [[List of business people|businessman]], a major [[philanthropist]], and the founder of the [[Carnegie Steel Company]] which later became [[U.S. Steel]]. He is known for having, later in his life, given away most of his riches to fund the establishment of many libraries, schools, and universities in America and worldwide.
116091
116092 ==Formative influences==
116093 ===The Carnegie family in Scotland===
116094 Andrew Carnegie was born on Wednesday, November 25, 1835, in [[Dunfermline]], [[Fife]], [[Scotland]]. He was the son of a [[hand loom]] weaver, William Carnegie. His mother was Margaret, daughter of one Thomas Morrison, a [[tanner]] and [[shoemaker]].
116095
116096 Many of Carnegie's closest relatives were self-educated tradesmen and class activists. William Carnegie, whilst poor, had educated himself and, as far as his resources would permit, saw to it that his children received an education, as well. William Carnegie was moreover a militant political activist and was involved with those organising demonstrations against the [[Corn laws]]. He was also a [[Chartist]].
116097
116098 Andrew Carnegie's maternal grandfather, Thomas Morrison, was one of the most persistent campaigners for [[Liberalism|liberal]] reforms in Scotland. Through the dint of his own efforts of [[self education]], Thomas Morrison acquired an eloquence with the written word that matched his more privileged &quot;betters&quot;. He wrote frequently to newspapers and contributed articles in the [[Radicalism|radical]] [[pamphlet]], ''Cobbett's Register'' edited by [[William Cobbett]]. Amongst other things, he argued for: abolition of the [[Rotten Boroughs]] and reform of the [[British House of Commons]], which occurred much later in the [[Great Reform Act of 1832]], [[Catholic Emancipation]], and Laws governing safety at work, which were passed many years later in the [[Factory Acts]]. Most radically of all, however, he promoted the abolition of all forms of hereditary privilege, including all [[Monarchy|monarchies]].
116099
116100 Another great influence on the young Andrew Carnegie was his uncle, George Lauder, a proprietor of a small grocers shop in Dunfermline High Street. This uncle introduced the young Carnegie to such historical Scottish heroes as [[Robert the Bruce]], [[William Wallace]], and [[Rob Roy]]. He was also introduced to the writings of [[Robbie Burns]]. It was, perhaps, Burns who most influenced Carnegie, who regarded Burns as one of the greatest preachers of [[Democracy]]. Uncle George Lauder had Carnegie commit to memory many pages of Burns's writings, writings that were to stay with him for the rest of his life.
116101
116102 George Lauder was additionally interested in the [[United States]]. Lauder saw the U.S.A. as a country with &quot;democratic institutions&quot;.
116103
116104 Another uncle, his mother's brother, &quot;Ballie&quot; Morrison, was also a radical political firebrand. The chief object of this gentleman's tirades was the [[Church of England]] and the [[Church of Scotland]]. &quot;Ballie&quot; Morrison was a fervent [[nonconformist]]. In 1842, the young Carnegie's radical sentiments were stirred further at the news of Uncle &quot;Ballie&quot; being imprisoned for his part in a &quot;Cessation of Labour&quot; ([[Strike action|strike]]). At this time, withdrawal of labour by an hireling was covered by criminal law. Notwithstanding these literary and political influences, poverty in the Carnegie family was always at hand and severe.
116105
116106 === Emigration to America===
116107 Andrew Carnegie's father had worked as a jobbing hand loom weaver. This involved receiving the mill's raw materials at his cottage and weaving them into cloth on the primitive loom in the cottage. In the 1840's, a new system was coming into being, the factory system. During this era, mill owners began constructing large weaving mills with looms powered at first by water wheels and later by steam engines. These factories could produce cloth at far lower cost, partly through increased mechanisation and economies of scale, but partly also by paying mill workers very low wages and by working them very long hours. The success of the mills forced William Carnegie to seek work in the mills or elsewhere away from home. However, the radical views of Andrew Carnegie's father were well known, and he was not wanted.
116108
116109 He chose to emigrate. His mother's two sisters had already emigrated, but it was his wife who persuaded William Carnegie to make the passage. Making the passage was not easy, however, for they had to find the passage money. They were forced to sell their meagre possessions and borrow some ÂŖ20 from friends, a considerable sum in 1848.
116110
116111 That May, his family emigrated to the U.S.A., sailing on the ''Wiscasset'', a former [[whaler]] that took the family from Broomielaw, in [[Glasgow]], to New York. From there they proceeded up the [[Hudson River]] and the [[Erie Canal]] to [[Lake Erie]] and then to [[Allegheny, Pennsylvania]], where William Carnegie found work in a cotton factory.
116112
116113 Young Andrew Carnegie found work in the same building as a &quot;Bobbin boy&quot; for the sum of $1.20 per week. His younger brother, by some eight years, Thomas, was sent to school. Andrew Carnegie, the Scot, quickly became Andrew Carnegie the American. Three years after arriving in the U.S.A., the young Carnegie began writing to his friends in Scotland extolling the great virtues of American democracy whilst disparaging and criticising &quot;feudal British institutions&quot;. At the same time, he followed in his father's footsteps and wrote letters to the newspapers including the ''[[New York Tribune]]'' on subjects such as slavery.
116114
116115 ==Early career==
116116 ===1850-1860: A 'self made man'===
116117 Andrew Carnegie's education and passion for reading was given a great boost by one Colonel [[James Anderson]], who opened his personal library of 400 volumes to working boys each Saturday night. Carnegie was a most persistent borrower. Andrew Carnegie was a &quot;self made man&quot; in the roundest possible sense insofar as it applied not only to his economic development but also to his intellectual and cultural development. His capacity and willingness for hard work, his perseverance, and his alertness, soon brought forth opportunities.
116118
116119 In 1851, he became a [[Telegraphy|Telegraph]] Messenger boy in the [[Pittsburgh]] Office of the [[Ohio Telegraph Company]], at $2.50 per week. This, to the young Carnegie, seemed a fortune. In addition to providing him with an increase in income, the job also provided him with a lifelong love of [[William Shakespeare|Shakespeare's]] works. He was frequently required to deliver messages to a [[theatre]], and he often managed to contrive appearing just as the curtain had been raised on a performance. Using a charm that was to pay even greater dividends in the future, Carnegie was then usually able to convince the theatre's manager to allow him to stay and watch the performance for free. When Carnegie was not at the theatre or improving his mind with a book, he would spend time listening to the telegraph instrument itself. The electric telegraph transmitted its signals along the wires that traversed the nation. When they were received into the telegraph office, they were transcribed into readable script on a long paper tape with the aid of an elaborate machine. He quickly learned to distinguish the differing sound the incoming signals produced and learned to transcribe, himself. At the time, Andrew Carnegie was one of only two or three persons so gifted in the entire country. Having learned Telegraphy, he was noted by [[Tom Scott (PRR)|Thomas A. Scott]] of the [[Pennsylvania Railroad Company]], who employed him as a secretary/Telegraph operator starting in 1853, at the princely salary of $4.00 per week. Carnegie was sixteen and soon began a rapid advancement through the company, eventually becoming the Superintendent of the Pittsburgh Division.
116120
116121 ===1860-1865: Carnegie during the [[U.S. Civil War]]===
116122 During the pre-war period, Andrew Carnegie had formed a partnership with a Mr. Woodruff, an inventor. Woodruff's invention was the [[sleeping car]]. The great distances transversed by railways had meant stopping for the night at hotels and inns by the railside, so that passengers could rest. The sleeping car sped up travel and helped Americans settle the American west. The investment proved a great success and a source of great fortune for Woodruff and Carnegie. The young Carnegie, who started work at an early age as a [[bobbin boy]] in a [[cotton]] mill, and, who was, a few years later, engaged as a [[Telegraphy|telegraph]] clerk and operator with the [[Atlantic and Ohio Company]], now became the superintendent of the western division of the entire line. In this post, Carnegie was responsible for several improvements in the service. When the [[American Civil War]] opened in 1861, he accompanied Scott, then [[Assistant United States Secretary of War]], to the front.
116123
116124 Following his good fortune, Carnegie proceeded to increase it still further through fortunate and careful investments. In 1864, Carnegie invested the sum of $40,000 in Storey Farm on [[Venango County, Pennsylvania|Oil Creek, in Venango County, Pennsylvania]]. In one year, the farm yielded over $1,000,000 in cash dividends, and oil from [[oil well]]s on the property sold profitably. Carnegie was subsequently associated with others in establishing a [[steel]] [[rolling mill]].
116125
116126 Aside from Carnegie's investment successes, he was beginning to figure prominently in the American cause and in American culture. With the Civil War raging, Carnegie soon found himself in Washington. Carnegie was selected by his boss at the Pennsylvania Railroad Company, Thomas A. Scott, who was now Assistant Secretary of War in charge of military transportation, to join him in Washington. Carnegie was appointed Superintendent of the Military Railways and the Union Government's telegraph lines in the East and was Scott's right hand man. Carnegie, himself, was on the foot plate of the locomotive that pulled the first brigade of Union troops to reach Washington. Shortly after this, following the defeat of Union forces at Bull Run, he personally supervised the transportation of the defeated forces. Under his organization, the telegraph service rendered efficient service to the Union cause and significantly assisted in the eventual victory. During his work &quot;in the field&quot;, Carnegie fell ill and needed treatment for sunstroke.
116127
116128 The Civil War, as so many wars before it, brought boom times to the suppliers of war. The U.S. iron industry was one such. Before the war its production was of little significance, but the sudden huge demand brought boom times to Pittsburgh and similar cities and great wealth to the iron masters.
116129
116130 Carnegie had some investments in this industry before the war and, after the war, left the railroads to devote all his energies to the ironworks trade. Carnegie worked to develop several iron works, eventually forming The Keystone Bridge Works and the Union Ironworks, in Pittsburgh. Although he had left the Pennsylvania Railroad Company, he did not totally sever his links with the railroads. These links would prove valuable. The Keystone Bridge Company made iron train bridges, and, as company superintendent, Carnegie had noticed the weakness of the traditional wooden structures. These were replaced in large numbers with iron bridges made in his works. As well as having good business sense, Carnegie possessed charm and literary knowledge. He was invited to many important social functions, functions that Carnegie exploited to his own advantage and to the fullest extent.
116131
116132 Carnegie’s philanthropic inclinations began some time before retirement. He wrote; &quot;I propose to take an income no greater than $50,000 per annum! Beyond this I need ever earn, make no effort to increase my fortune, but spend the surplus each year for benevolent purposes! Let us cast aside business forever, except for others. Let us settle in Oxford and I shall get a thorough education, making the acquaintance of literary men. I figure that this will take three years active work. I shall pay especial attention to speaking in public. We can settle in London and I can purchase a controlling interest in some newspaper or live review and give the general management of it attention, taking part in public matters, especially those connected with education and improvement of the poorer classes. Man must have an idol and the amassing of wealth is one of the worst species of idolatry! No idol is more debasing than the worship of money! Whatever I engage in I must push inordinately; therefore should I be careful to choose that life which will be the most elevating in its character. To continue much longer overwhelmed by business cares and with most of my thoughts wholly upon the way to make more money in the shortest time, must degrade me beyond hope of permanent recovery. I will resign business at thirty-five, but during these ensuing two years I wish to spend the afternoons in receiving instruction and in reading systematically!&quot;
116133
116134 Carnegie postponed most of his philanthropic intentions to &quot;proper old age&quot;.
116135
116136 ===Postwar years, 1865-1880: Carnegie the investor===
116137 In the late 1860’s and into the 1870s, Carnegie was &quot;out and about and all over the place&quot;. Carnegie now had new investments aside from the iron venture, the [[Keystone Bridge Company]]. Carnegie had added to his investments in Pennsylvania oil investments in [[Texas]], which earned him a small fortune, and, after the war, undertook several trips to [[Europe]] selling railroad securities on a commission basis for, among others, the London firm of [[Junius S. Morgan &amp; Company]]. The last of these trips was in 1872, the commission earned being $150,000. Andrew Carnegie's multiple successes in bond selling, oil trading, and bridge building were so rapidly successful that the conservative Pittsburgh business community regarded him with a certain circumspection. It was during these trips to Europe and to Britain, in particular, that Carnegie came into contact with British steel makers, then the world leaders. He obtained a working knowledge of the [[Bessemer process]] of steel making and became a friend of its inventor, Sir [[Henry Bessemer]].
116138
116139 In 1868, he introduced the Bessemer steel making process into the U.S.A. and, in 1873, decided on a now famous gamble. He decided to &quot;put all his eggs in one basket, and then watch the basket.&quot; That year he staked all his wealth on steel making. His fellow Americans did not realize it at the time, but the day Carnegie decided to take this gamble was the day the eventual industrial supremacy of the U.S. became certain. It took Andrew Carnegie only a matter of a few years to become the principal owner of the [[Homestead &amp; Edgar Thompson Steel Works]], and only a short time more to be heading the firms of [[Carnegie, Phipps &amp; Company]] and[[ Carnegie Bros. &amp; Company]], as well.
116140
116141 ===1880-1890: Carnegie the scholar and activist===
116142 Whilst Carnegie continued his business career, some of his literary intentions were fulfilled. During this time, he made many friends in the literary and political worlds. Among these were such as [[Malcolm Arnold]] and [[Herbert Spencer]] as well as being in correspondence and acquaintance with most of the U.S. Presidents, statesmen, and notable writers of the time. Many were visitors to the Carnegie home. Carnegie greatly admired [[Herbert Spencer]], the polymath who seemed to know everything. He did not, however, agree with Spencer's [[Social Darwinism]] which held that philanthropy was a bad idea.
116143
116144 In 1881, Andrew Carnegie took his family, which included his mother, then aged 70, on a trip to Great Britain. They toured the sights of [[England]] and [[Scotland]] by coach having several receptions en-route. The highlight for them all was a triumphal return to Dunfermline where Carnegie's mother laid the foundation stone of the &quot;Carnegie Library&quot;. Andrew Carnegie's criticism of British society did not point to a dislike of the country of his birth, on the contrary, one of Carnegie's ambitions was to act as a catalyst for a close association between the English speaking peoples. To this end, he purchased, in the first part of the 1880's, a number of newspapers in England, all of which were to advocate the abolition of the monarchy and the establishment of &quot;the British Republic&quot;. Surprisingly, Carnegie's charm aided by his great wealth meant that he had many British friends, including [[Prime Minister]] [[William Ewart Gladstone|Gladstone]].
116145
116146 In 1886, tragedy struck Carnegie when his young brother Thomas died at the early age of 43. Success in the business continued, however. At the same time as owning steel works, Carnegie had purchased, at low cost, the most valuable of the iron ore fields around Lake Superior. The same year Andrew Carnegie became a figure of controversy. Following his tour of Great Britain, he wrote about his experiences in a book entitled, ''An American Four-in-hand in Britain''. Although still actively involved in running his many businesses, Carnegie had become a regular contributor of articles to numerous serious minded magazines, most notably the ''Nineteenth Century'', under the editorship of [[James Knowles]], and the ''North American Review'', whose editor, [[Lloyd Bryce]], oversaw the publication during its most influential period.
116147
116148 That year, 1886, Carnegie penned his most radical work to date, entitled ''Triumphant Democracy''. The work, liberal in its use of statistics to make its arguments, was an attempt to argue his view that the American [[republic]]an system of government was superior to the British [[monarchy|monarchical]] system. It not only gave a overly-favourable and idealistic view of American progress, but made some considerable criticism of the British royal family. Most antagonistic, however, was the cover that depicted amongst other motifs, an upended royal crown and a broken sceptre. Given these aspects, it was no surprise that the book was the cause of some considerable controversy in Great Britain. The book itself was successful. It made many Americans aware for the first time of their country's economic progress and sold over 40,000 copies, mostly in the U.S.A.
116149
116150 In 1889, Carnegie stirred up yet another hornet's nest when an article entitled [http://www.swarthmore.edu/SocSci/rbannis1/AIH19th/Carnegie.html &quot;Wealth&quot; appeared in the June issue of the ''North American Review''.] After reading it, Gladstone requested its publication in England, and it appeared under a new title, &quot;The Gospel of Wealth&quot; in the ''Pall Mall Gazette''. The article itself was the subject of much discussion. In the article, the author argued that the life of a wealthy industrialist such as Carnegie should comprise two parts. The first part was the gathering and the accumulation of wealth. The second part was to be used for the subsequent distribution of this wealth to benevolent causes.
116151
116152 ==Carnegie the industrialist==
116153 ===1885-1900: Building an empire of steel===
116154 [[Image:Steelmills.jpg|right|thumb|300px|A steel mill owned by Andrew Carnegie in Pittsburgh, PA]]
116155 But all this was only a preliminary to the success attending his development of the [[iron]] and [[steel]] industries at [[Pittsburgh, Pennsylvania]]. Carnegie made his fortune in the steel industry, controlling the most extensive integrated iron and steel operations ever owned by an individual in the United States. His great innovation was in the cheap and efficient mass production of steel rails for railroad lines.
116156
116157 In the late 1880s, Carnegie Steel was the largest manufacturer of [[pig iron|pig-iron]], [[steel-rails]], and [[coke (fuel)|coke]] in the world, with a capacity to produce approximately 2,000 tons of [[pig metal|pig-metal]] a day. In 1888, he bought the rival [[Homestead Steel Works]], which included an extensive plant served by tributary coal and iron fields, a railway 425 miles long, and a line of lake steamships. An agglutination of the assets of he and his associates occurred in 1892 with the launching of the [[Carnegie Steel Company]].
116158
116159 By 1889, the U.S. output of steel exceeded that of the U.K., and Andrew Carnegie owned a large part of it. Carnegie had risen to the heights he had by being a supreme organiser and judge of men. He had the talent of being able to surround himself with able and effective men, while, at the same time, retaining the control and the direction of the enterprise. Carnegie's businesses were uniquely organised in that his belief in &quot;democratic principles&quot; found itself interpreted into these businesses. This did not mean that Carnegie was not in absolute control, however. The businesses incorporated Carnegie's own version of profit sharing. Carnegie wanted his employees to have a stake in the business, for he knew that they would work best if they saw that their own self interest was allied to the firm's. As a result, men who had started as labourers in some cases, eventually ended up millionaires. Carnegie also often encouraged unfriendly competition between two of his workers and goaded them into outdoing one another. These rivalries became so important to some of the workers that they wouldn't talk to each other for years. Carnegie maintained control by incorporating his enterprises not as joint stock corporations but as limited partnerships with Carnegie as majority and controlling partner. Not a cent of stock was publicly sold. If a member died or retired, his stock was purchased at book value by the company. Similarly, the other partners could vote to call in stock from those partners who underperformed, forcing them to resign.
116160
116161 The internal organisation of his businesses was not the only reason for Andrew Carnegie's rise to pre-eminence. Carnegie introduced the concept of counter-cyclical investment. Carnegie's competitors, along with virtually every other business enterprise across the globe, pursued the conventional strategy of procyclical investment; manufacturers reinvesting profits in new capital in times of boom and high demand. Because demand is high, investment in bull markets is is more expensive. In response, Carnegie developed and implemented a secret tactic. He shifted the purchasing cycle of his companies to slump times, when business was depressed and prices low. Carnegie observed that business cycles alternated between &quot;boom&quot; and &quot;bust&quot;. He saw that if he capitalized during a slump, his costs would be lower and profits higher. During the years 1893 to 1897, there was a great slump in economic demand, and so Carnegie made his move. At rock bottom prices, he upgraded his entire operation with the latest and most cost effective steel mills. When demand picked up, prosperity followed for the Homestead &amp; Edgar Thompson Steel Works, the Carnegie, Phipps &amp; Company, and Carnegie Bros. &amp; Company as a flood tide of profit. In 1900, the profits of Carnegie Bros. &amp; Company alone stood at $40,000,000 with $25,000,000 being Carnegie's share.
116162
116163 Carnegie's empire grew to include the [[J. Edgar Thomson Steel Works]], (named for [[John Edgar Thomson]], Carnegie's former boss and president of the Pennsylvania Railroad), Pittsburgh Bessemer Steel Works, the Lucy Furnaces, the Union Iron Mills, the Union Mill (Wilson, Walker &amp; County), the Keystone Bridge Works, the Hartman Steel Works, the Frick Coke Company, and the Scotia ore mines. Also, Carnegie, through Keystone, supplied the steel for and owned shares in the landmark [[Eads Bridge]] project across the Mississippi River in [[St. Louis, Missouri]] (completed 1874). This project was an important proof-of-concept for steel technology which marked the opening of a new steel market.
116164
116165 ===1901: The formation of U.S. Steel===
116166 Carnegie was now 65 and was wanting to retire. He reformed his enterprises into conventional joint stock corporations as preparation to this end. Carnegie, however, wanted a good price for his stock. There was a man who was to give him his price. This man was [[John Pierpont Morgan]].
116167
116168 Morgan was a banker and perhaps America's most important financial deal maker. He had observed how efficiency produced profit. He envisioned an integrated steel industry that would cut costs, lower prices to consumers and raise wages to workers. To this end he needed to buy out Carnegie and several other major producers, and integrate them all into one company by eliminating duplication and waste. Negotiations were concluded on 2nd March with the formation of the United States Steel Corporation. It was the first corporation in the world with a market capitalization in excess of $1,000,000,000.
116169
116170 The buyout, which was negotiated in secret by [[Charles M. Schwab]] (no relation to [[Charles R. Schwab]], the brokerage house founder), was the largest such industrial takeover in [[United States]] history to date. The holdings were incorporated in the [[United States Steel Corporation]], a trust organized by [[J. P. Morgan]], and Carnegie himself retired from business. His steel enterprises were bought out at a figure equivalent to twelve times their annual earnings; $480 million [http://www.carnegie.org/sub/kids/legacy.html], which at the time was the largest ever personal commercial transaction. Andrew Carnegie's share of this amounted to a massive $225,639,000 which was paid to Carnegie in the form of 5%, 50 year gold bonds. The letter agreeing to sell his share was signed on the 26th February, 1901. On the 2nd March 1901, the circular formally filing the organisation and capitalisation (at $1,400,000,000 - 4% of U.S national wealth at the time) of the United States Steel Corporation actually completed the contract. The bonds were to be delivered within two weeks to the Hudson Trust Company of Hoboken, New Jersey in trust to Robert A. Franks, Carnegie's business secretary. There, a special vault was built to house the physical bulk of nearly $230,000,000 worth of bonds. It was said that &quot;....Carnegie never wanted to see or touch these bonds that represented the fruition of his business career. It was as if he feared that if he looked upon them they might vanish like the gossamer gold of the leprechaun. Let them lie safe in a vault in New Jersey, safe from the New York tax assessors, until he was ready to dispose of them....&quot;
116171
116172 As they signed the papers of sale, Carnegie remarked, &quot;Well, Pierpont, I am now handing the burden over to you.&quot; In return, Andrew Carnegie became one of the world's wealthiest men. Retirement was a stage in life that many men dreaded. Carnegie was not one of them. He was looking forward to retirement, for it was his intention to follow a new course from then on.
116173
116174 Besides steel, Carnegie's companies were involved in other areas of the railroad industry. His company, [[Pittsburgh Locomotive and Car Works]], was noted for its building of large [[steam locomotive]]s at the turn of the 20th century. His associates and partners included [[Henry Clay Frick]] and [[F. T. F. Lovejoy]].
116175
116176 He owned 18 English [[newspapers]], which he controlled in the interests of [[radicalism]].
116177
116178 At the height of his career, he was the second richest person in the world, behind only [[John D. Rockefeller]].
116179
116180 ==1901-1915: Carnegie the philanthropist==
116181 Andrew Carnegie spent his last years as a [[philanthropist]]. From 1901 forward, public attention was turned from the shrewd business capacity which had enabled Carnegie to accumulate such a fortune, to the public-spirited way in which he devoted himself to utilizing it on philanthropic objects. His views on social subjects and the responsibilities which great wealth involved were already known from ''Triumphant Democracy'' (1886), and from his &quot;[[Gospel of Wealth]]&quot; (1900). He acquired [[Skibo Castle]], in [[Sutherland]], [[Scotland]], and made his home partly there and partly in New York and then devoted his life to the work of providing the capital for purposes of public interest and social and educational advancement.
116182
116183 In all his ideas, he was dominated by an intense belief in the future and influence of the English-speaking people, in their democratic government and alliance for the purpose of peace and the abolition of war, and in the progress of education on nonsectarian lines. He was a powerful supporter of the movement for [[spelling reform]] as a means of promoting the spread of the [[English language]].
116184 [[Image:Carnegie-library-flint-mi.png|left|thumb|220px|Carnegie established over 1600 libraries in the U.S. alone.]]
116185 Among all of his many philanthropic efforts, the establishment of [[public library|public libraries]] in the United States, the [[United Kingdom]], and in other English-speaking countries was especially prominent. [[Carnegie library|Carnegie libraries]], as they were commonly called, sprang up on all sides. The first of which was opened in 1883 in Dunfermline, Scotland. His method was to build and equip, but only on condition that the local authority provided site and maintenance. To secure local interest, in 1885, he gave $500,000 to Pittsburgh for a public library, and in 1886, he gave $250,000 to Allegheny City for a music hall and library, and $250,000 to Edinburgh, Scotland, for a free library. In total Carnegie funded some 3,000 libraries, located in every [[U.S. state]] except [[Alaska]], and [[Delaware]]. Carnegie also built libraries in [[Canada]] and overseas in [[United Kingdom|Britain]], [[Ireland]], [[Australia]], [[New Zealand]], the [[West Indies]], and [[Fiji]].
116186
116187 He gave $2 million in 1901 to start the [[Carnegie Institute of Technology]] (CIT) at [[Pittsburgh]] and the same amount in 1902 to found the [[Carnegie Institution]] at [[Washington, D.C.]]. He would later contribute more to these and other schools. CIT is now part of [[Carnegie Mellon University]].
116188
116189 In Scotland, he gave $2 million in 1901 to establish a trust for providing funds for assisting education at the Scottish universities, a benefaction which resulted in his being elected [[Lord Rector]] of [[University of St. Andrews]]. He was a large benefactor of the [[Tuskegee Institute]] under [[Booker Washington]] for [[African American]] education. He also established large pension funds in 1901 for his former employees at Homestead and, in 1905, for American college professors. He also funded the construction of 7,000 church organs.
116190 [[Image:Carnaigiebirthplace.jpg|thumb|Carnegie's birthplace in Scotland is now a museum.]]
116191 Also, long before he sold out, in 1879, he erected commodious swimming-baths for the use of the people of his hometown of Dunfermline, Scotland. In the following year, Carnegie gave $40,000 for the establishment of a free library in the same city. In 1884, he gave $50,000 to [[Bellevue Hospital Medical College]] to found a [[histology|histological]] laboratory, now called the [[Carnegie Laboratory]].
116192
116193 He owned [[Carnegie Hall]] in [[New York City]] from its construction in 1890 until his widow sold it in 1924.
116194
116195 He also founded the [[Carnegie Hero Fund]] commissions in America (1904) and in the United Kingdom (1908) for the recognition of deeds of heroism, contributed $500,000 in 1903 for the erection of a [[Peace Palace]] at [[The Hague]], and donated $150,000 for a [[Pan-American Palace]] in Washington as a home for the [[International Bureau of American Republics]].
116196
116197 By the rough and ready standards of 19th century tycoons, Carnegie was not a particularly ruthless man, but the contrast between his life and the lives of many of his own workers and of the poor, in general, was stark. &quot;Maybe with the giving away of his money,&quot; commented biographer Joseph Wall, &quot;he would justify what he had done to get that money.&quot; [http://www.pbs.org/wgbh/amex/carnegie/filmmore/description.html]
116198
116199 By the time he died in [[Lenox, Massachusetts]], Carnegie had given away $350,695,653. At his death, the last $30,000,000 was likewise given away to foundations, charities, and to pensioners.
116200
116201 He is interred in [[Sleepy Hollow Cemetery]] in [[Sleepy Hollow, New York]].
116202
116203 ==Later personal life==
116204 In an era in which financial capital was consolidated in [[New York City]], Carnegie famously stayed aloof from the city, preferring to live near his factories in western [[Pennsylvania]] and at [[Skibo Castle]], [[Scotland]], which he bought and refurbished. However, he also built (in 1901) and resided in a townhouse on [[New York City]]'s [[Fifth Avenue]] that later came to house [[Cooper-Hewitt]]'s [[National Design Museum]].
116205
116206 Carnegie married [[Louise Whitfield]] in 1887 and had one daughter, Margaret, who was born in 1897. His brother, [[Thomas M. Carnegie]], also born in Dunfermline, Scotland, was born on [[October 2]], [[1843]]. He was associated with Andrew in his business enterprises, but died in [[Homewood, Pennsylvania]], on [[October 19]], [[1886]].
116207
116208 ==Controversial aspects of Carnegie's life==
116209 ===1892: The Homestead strike===
116210 [[Image:Homesteadstrike.jpg|thumb|right|The Homestead Strike]]
116211 The [[Homestead Strike]] was a bloody labor confrontation lasting one-hundred and forty-three days in 1892 and was one of the most serious in the history of the United States. The conflict was situated around Carnegie Steel's main [[Homestead]], [[Pennsylvania]] plant and grew out of disputation between the National Amalgamated Association of Iron and Steel Workers of the United States and the Carnegie Steel Company.
116212
116213 Carnegie, who had cultivated a pro-labor image in his dealings with company mill workers, departed the country for a trip to his Scottish homeland before the unrest peaked. In doing so, Carnegie left mediation of the dispute in the hands of his associate and partner [[Henry Clay Frick]]. Frick was well known in industrialist circles as maintaining staunch anti-union sensibilities.
116214
116215 The company had attempted to cut the wages of the skilled steel workers, and, when the workers refused the pay cut, management locked the union out (workers considered the stoppage a &quot;[[lockout (industry)|lockout]]&quot; by management and not a &quot;[[Strike action|strike]]&quot; by workers). Frick brought in thousands of strikebreakers to work the steel mills and [[Pinkerton National Detective Agency|Pinkerton]] agents to safeguard them.
116216
116217 The arrival, on the [[July_6|6th of July]], of a force of three hundred [[Pinkerton National Detective Agency|Pinkerton]] agents from [[New York City]] and [[Chicago, Illinois|Chicago]] resulted in a fight in which ten men - seven strikers and three Pinkertons - were killed and hundreds were injured. Pennsylvania Governor [[Robert Pattison]] discharged two brigades of the state militia to the strike site. Then, allegedly in response to the fight between the striking workers and the Pinkertons, [[Anarchism|anarchist]] [[Alexander Berkman]] tried to kill Henry Clay Frick with a gun provided by [[Emma Goldman]]. However, [[Henry_Clay_Frick#Assassination_Attempt|Frick was only wounded]], and the attempt turned public opinion away from the striking workers. Afterwards, the company successfully resumed operations with non-unionized immigrant employees in place of the Homestead plant workers, and Carnegie returned stateside.
116218
116219 Carnegie was one of over 50 wealthy members of the [[South Fork Fishing and Hunting Club]], which was blamed for the [[Johnstown Flood]] that killed over 2,200 people in 1887.
116220
116221 ==Philosophy==
116222 Carnegie wrote ''[[The Gospel of Wealth]]'', in which he stated his belief that the rich should use their wealth to help enrich society.
116223
116224 The following is taken from one of Carnegie's memos to himself: {{cquote|Man does not live by bread alone. I have known millionaires starving for lack of the nutriment which alone can sustain all that is human in man, and I know workmen, and many so-called poor men, who revel in luxuries beyond the power of those millionaires to reach. It is the mind that makes the body rich. There is no class so pitiably wretched as that which possesses money and nothing else. Money can only be the useful drudge of things immeasurably higher than itself. Exalted beyond this, as it sometimes is, it remains Caliban still and still plays the beast. My aspirations take a higher flight. Mine be it to have contributed to the enlightenment and the joys of the mind, to the things of the spirit, to all that tends to bring into the lives of the toilers of Pittsburgh sweetness and light. I hold this the noblest possible use of wealth.}}
116225
116226 Carnegie also believed that achievement of financial success could be reduced to a simple formula, which could be duplicated by the average person. In 1908, he commissioned [[Napoleon Hill]], then a newspaper reporter, to interview over 500 millionaires to find out the common threads of their success. Hill eventually became his adviser, and their work was published in 1928, after Carnegie's death, in Hill's book ''[[The Law of Success]]''.
116227
116228 ==Writings==
116229 Carnegie was a frequent contributor to periodicals on labour issues.
116230
116231 In addition to ''[[Triumphant Democracy]]'' (1886), ''[[Gospel of Wealth]]'' (1900) and ''[[The Law of Success]]'' (1928), other publications by him were ''An American Four-in-hand in Britain'' (1883), ''[[Round the World]]'' (1884), ''[[The Empire of Business]]'' (1902), a ''[[Life of James Watt]]'' (1905) and ''[[Problems of To-day]]'' (1908).
116232
116233 ==Trivia==
116234 * Various sources quote Carnegie's height at 5 feet (1.524 metre) 5 feet 1&quot; (1.549 metre) 5 feet 2&quot; (1.578 metre) or 5 feet 3&quot; (1.6 metre) - there is even one at 5 feet 6&quot; (1.676 metres) - but this must be considered as being incorrect - in other words; he was short.
116235 * Two municipalities in the United States are named after Andrew Carnegie, the most famous being [[Carnegie, PA]]. The other is [[Carnegie, OK]].
116236 * The dinosaur ''[[Diplodocus]] carnegiei'' (Hatcher) was named for Andrew Carnegie after he sponsored the expedition that discovered its remains in the [[Morrison Formation]] ([[Jurassic]]) of [[Utah]]. Carnegie was so proud of “Dippi” that he had casts made of the bones and plaster replicas of the whole skeleton donated to several museums in Europe. The original fossil skeleton is assembled and stands in the Hall of Dinosaurs at the [[Carnegie Museum of Natural History]] in [[Pittsburgh, PA]].
116237
116238 ==See also==
116239 *[[American Anti-Imperialist League]], an organization to which Carnegie belonged
116240 *[[Carnegie libraries image gallery]]
116241 *[[Robber baron (industrialist)]]
116242 *[[List of universities named after people]]
116243
116244 ==References==
116245 ===Secondary sources===
116246 * Josephson; Matthew. ''The Robber Barons: The Great American Capitalists, 1861- 1901'' (1938)
116247 * Morris, Charles R. ''The Tycoons: How Andrew Carnegie, [[John D. Rockefeller]], [[Jay Gould]], and [[J. P. Morgan]] Invented the American Supereconomy '' 2005 ISBN: 0805075992
116248 * Krass, Peter. ''Carnegie'' (2002)
116249 * Livesay, Harold C. ''Andrew Carnegie and the Rise of Big Business'' 2nd Edition (1999)
116250 * Wall, Joseph Frazier. ''Andrew Carnegie'' (1989)
116251 * [http://www.eh.net/encyclopedia/article/Whaples.Carnegie Whaples, Robert. &quot;Andrew Carnegie&quot;] in EH encyclopedia
116252
116253 ===Primary Sources===
116254 * [http://www.wordowner.com/carnegie/preface.htm Carnegie, Andrew. ''Autobiography of Andrew Carnegie'' (1920)]
116255 * [http://alpha.furman.edu/~benson/docs/carnegie.htm Carnegie, Andrew. &quot;Wealth&quot; (1888)]
116256 * Wall, Joseph Frazier, ed. ''The Andrew Carnegie Reader'' (1992)
116257
116258 ==External links==
116259 *[http://www.pbs.org/wgbh/amex/carnegie/ PBS: Carnegie]
116260 *[http://www.americaslibrary.gov/cgi-bin/page.cgi/aa/carnegie LOC: Carnegie]
116261 *[http://www.carnegie.org/ Carnegie Corporation of New York]
116262 *[http://www.clpgh.org/exhibit/carnegie.html Carnegie Library of Pittsburgh: &lt;em&gt;Andrew Carnegie: A Tribute&lt;/em&gt;]
116263 *[http://www.carnegiefoundation.org/ Carnegie Foundation for the Advancement of Teaching]
116264 *[http://www.carnegiebirthplace.com/ Carnegie Birthplace Museum website]
116265 *[http://homepage.ntlworld.com/g.blaikie/andrew.htm Andrew Carnegie - His Scottish Connections]
116266 *[http://www.michaellorenzen.com/carnegie.html Deconstructing the Philanthropic Library]
116267 *[http://onlinebooks.library.upenn.edu/webbin/book/search?author=carnegie%2C+andrew&amp;amode=start&amp;title=&amp;tmode=words Online Books by Andrew Carnegie]
116268 * {{gutenberg author| id=Andrew+Carnegie | name=Andrew Carnegie}}
116269 *[http://www.bgsu.edu/departments/acs/1890s/carnegie/strike.html The Homestead Strike 1892 by Cheri Goldner]
116270 *[http://www.importantscots.com/andrew-carnegie.htm Andrew Carnegie - Important Scots]
116271
116272
116273 *{{1911}}
116274 *{{appletons}}
116275
116276 [[Category:People from Pittsburgh|Carnegie, Andrew]]
116277 [[Category:People from Pennsylvania|Carnegie, Andrew]]
116278 [[Category: 1835 births|Carnegie, Andrew]]
116279 [[Category: 1919 deaths|Carnegie, Andrew]]
116280 [[Category:Andrew Carnegie| Carnegie, Andrew]]
116281 [[Category:Scottish-Americans|Carnegie, Andrew]]
116282 [[Category:Scottish business people|Carnegie, Andrew]]
116283 [[Category:American entrepreneurs|Carnegie, Andrew]]
116284 [[Category:Natives of Fife|Carnegie, Andrew]]
116285 [[Category:American philanthropists|Carnegie, Andrew]]
116286 [[Category:American railroad executives|Carnegie, Andrew]]
116287 [[Category:Autodidacts|Carnegie, Andrew]]
116288 [[Category:History of Pennsylvania|Carnegie, Andrew]]
116289 [[Category:Important people in rail transport|Carnegie, Andrew]]
116290 [[Category:Natives of Fife|Carnegie, Andrew]]
116291 [[Category:Presbyterians|Carnegie, Andrew]]
116292 [[Category:Steel magnates|Carnegie, Andrew]]
116293 [[Category:Scottish philanthropists|Carnegie, Andrew]]
116294
116295 [[bg:АĐŊĐ´Ņ€ŅŽ КаŅ€ĐŊĐĩĐŗи]]
116296 [[de:Andrew Carnegie]]
116297 [[fr:Andrew Carnegie]]
116298 [[lt:Endriu Karnegis]]
116299 [[ja:ã‚ĸãƒŗドãƒĒãƒĨãƒŧãƒģã‚Ģãƒŧネゎãƒŧ]]
116300 [[no:Andrew Carnegie]]
116301 [[pt:Andrew Carnegie]]
116302 [[sv:Andrew Carnegie]]
116303 [[zh:åŽ‰åžˇé˛ÂˇåĄč€åŸē]]</text>
116304 </revision>
116305 </page>
116306 <page>
116307 <title>Approximant consonant</title>
116308 <id>1939</id>
116309 <revision>
116310 <id>40018119</id>
116311 <timestamp>2006-02-17T15:03:51Z</timestamp>
116312 <contributor>
116313 <ip>69.253.251.251</ip>
116314 </contributor>
116315 <text xml:space="preserve">{{Manner_of_articulation}}
116316
116317 '''Approximants''' are speech sounds that could be regarded as intermediate between [[vowel]]s and typical [[consonant]]s. In the articulation of approximants, articulatory organs produce a narrowing of the vocal tract, but leave enough space for air to flow without much audible turbulence. Approximants are therefore more open than [[Fricative|fricatives]]. This class of sounds includes [[Lateral consonant|lateral]] approximants like {{IPA|[l]}}, as in ''lip'', and approximants like {{IPA|[j]}} and {{IPA|[w]}} in ''yes'' and ''well'' which correspond closely to [[vowel]]s and [[semivowel]]s.
116318
116319 ==Corresponding vowels==
116320
116321 [[palatal consonant|Palatal]] approximants correspond to [[front vowel]]s, [[velar consonant|velar]] approximants to [[back vowel]]s, and labialized approximants to [[rounded vowel]]s. They are typically briefer and closer than the corresponding vowels.
116322
116323 ==Approximants vs. fricatives==
116324
116325 When emphasized, approximants may be slightly fricated (that is, the airstream may become slightly turbulent), which is reminiscent of fricatives. Examples are the ''y'' of English ''yes!'' (especially when lengthened) and the &quot;weak&quot; [[allophones]] of [[Spanish pronunciation|Spanish]] ''b, d, g'', which are often transcribed as fricatives (often due perhaps to a lack of dedicated approximant symbols). However, such frication is generally slight and intermittant, unlike the strong turbulence of fricative consonants.
116326
116327 This confusion is also common with voiceless approximants, which necessarily have a certain amount of fricative-like noise. For example, the voiceless labialized velar approximant {{IPA|[ʍ]}} has traditionally been called a fricative. [[Tibetan language|Tibetan]] has a voiceless lateral approximant, {{IPA|[lĖĨ]}}, and [[Welsh language|Welsh]] has a voiceless lateral fricative {{IPA|[ÉŦ]}}, but the distinction is not always clear from descriptions of these languages.
116328
116329 For places of articulation further back in the mouth, languages do not contrast voiced fricatives and approximants. Therefore the IPA allows the symbols for the voiced fricatives to double for the central approximants, with or without a lowering [[diacritic]].
116330
116331 Occasionally the glottal &quot;fricatives&quot; are called approximants, since [h] typically has no more frication than voiceless approximants, but they are often [[phonation]]s of the glottis without any accompanying manner or place of articulation.
116332
116333 ==Central approximants==
116334
116335 *[[bilabial approximant]] {{IPA|[βĖž]}} (usually written {{IPA|&lt;β&gt;}})
116336 *[[labiodental approximant]] {{IPA|[ʋ]}}
116337 *[[dental approximant]] {{IPA|[ðĖž]}} (usually written {{IPA|&lt;ð&gt;}})
116338 *[[alveolar approximant]] {{IPA|[ɹ]}} (a consonantal {{IPA|[ɚ]}})
116339 *[[retroflex approximant]] {{IPA|[Éģ]}}
116340 *[[palatal approximant]] {{IPA|[j]}} (a consonantal {{IPA|[i]}})
116341 *[[velar approximant]] {{IPA|[ɰ]}} (a consonantal {{IPA|[ɯ]}})
116342 *[[uvular approximant]] {{IPA|[ʁĖž]}} (usually written {{IPA|&lt;ʁ&gt;}})
116343 *[[pharyngeal approximant]] {{IPA|[ʕĖž]}} (usually written {{IPA|&lt;ʕ&gt;}})
116344 *[[epiglottal approximant]] {{IPA|[ĘĸĖž]}} (usually written {{IPA|&lt;Ęĸ&gt;}})
116345
116346 ==Lateral approximants==
116347
116348 *[[alveolar lateral approximant|voiced alveolar lateral approximant]] {{IPA|[l]}}
116349 *[[voiceless alveolar lateral approximant]] {{IPA|[lĖĨ]}}
116350 *[[retroflex lateral approximant]] {{IPA|[É­]}}
116351 *[[palatal lateral approximant]] {{IPA|[ʎ]}}
116352 *[[velar lateral approximant]] {{IPA|[ʟ]}}
116353
116354 ==Coarticulated approximants with dedicated IPA symbols==
116355
116356 *[[voiced labial-velar approximant|voiced labialized velar approximant]] {{IPA|[w]}} (a consonantal {{IPA|[u]}})
116357 *[[voiceless labial-velar fricative|voiceless labialized velar approximant]] {{IPA|[ʍ]}}
116358 *[[labial-palatal approximant|labialized palatal approximant]] {{IPA|[ÉĨ]}} (a consonantal {{IPA|[y]}})
116359 *[[velarized alveolar lateral approximant]] {{IPA|[ÉĢ]}}
116360
116361 ==A &quot;central&quot; approximant?==
116362 Although many languages have [[central vowel]]s {{IPA|[ɨ, ʉ]}} which lie between back/velar {{IPA|[ɯ, u]}} and front/palatal {{IPA|[i, y]}}, there are no confirmed reports of corresponding approximants. However, [[Mapudungun_language|Mapudungun]] may be a possibility: It has three high vowel sounds, {{IPA|/i/}}, {{IPA|/u/}}, {{IPA|/&amp;#616;/}}, written &quot;i&quot;, &quot;u&quot;, &quot;Ãŧ&quot;, and three corresponding consonants, written &quot;y&quot;, &quot;w&quot;, &quot;q&quot;. The first two are clearly {{IPA|/j/}} and {{IPA|/w/}}. The &quot;q&quot; is often described as a voiced unrounded velar fricative, but some texts note a correspondence between &quot;q&quot; and {{IPA|/&amp;#616;/ that is parallel to {{IPA|/j/}}-{{IPA|/i/}} and {{IPA|/w/}}-{{IPA|/u/}}. An example is ''liq'' {{IPA|/'liÉŖ/}} &quot;white&quot; [http://www.logosdictionary.org/sound/mp/5119539_n.wav].
116363
116364 ==See also==
116365 * [[List of phonetics topics]]
116366 * [[Semivowel]]
116367
116368 {{consonants}}
116369
116370 [[Category:Consonants]]
116371
116372 [[de:Approximant]]
116373 [[fr:Consonne spirante]]
116374 [[ko:ė ‘ęˇŧėŒ]]
116375 [[he:×ĸי×Ļורים מקורבים]]
116376 [[ja:æŽĨčŋ‘éŸŗ]]
116377 [[ro:Consoană sonantă]]
116378 [[sv:Approximant]]</text>
116379 </revision>
116380 </page>
116381 <page>
116382 <title>Astronomer Royal</title>
116383 <id>1940</id>
116384 <revision>
116385 <id>31767055</id>
116386 <timestamp>2005-12-17T20:54:18Z</timestamp>
116387 <contributor>
116388 <username>Stoive</username>
116389 <id>262923</id>
116390 </contributor>
116391 <minor />
116392 <comment>[[WP:WS]] fixing wikisyntax</comment>
116393 <text xml:space="preserve">'''Astronomer Royal''' is a senior post in the [[Royal Household]] of the [[Monarch | Sovereign]] of the [[United Kingdom]]. There are two officers, the senior being the Astronomer Royal dating from [[22 June]] [[1675]], and the second the [[Astronomer Royal for Scotland]], which dates from [[1834]].
116394
116395 [[Charles II of England|King Charles II]], who founded the [[Royal Observatory Greenwich]] in [[1675]] instructed the first Astronomer Royal [[John Flamsteed]], &quot;to apply himself with the most exact care and diligence to the rectifying of the tables of the motions of the heavens, and the places of the fixed stars, so as to find out the so much desired longitude of places for the perfecting of the art of navigation.&quot;
116396
116397 From that time until [[1972]] the Astronomer Royal was Director of the Royal Observatory Greenwich. As Astronomer Royal he receives a [[stipend]] of ÂŖ100 a year and is a member of the [[Royal Household]], under the general authority of the [[Lord Chamberlain]]. After the separation of the two offices the position of Astronomer Royal has been largely honorary, though he remains available to advise the Sovereign on astronomical and related scientific matters, and the office is of great prestige.
116398
116399 There was also formerly an [[Astronomer Royal for Ireland]].
116400
116401 == List of Astronomers Royal ==
116402
116403 {|
116404 | Rev'd [[John Flamsteed]] || [[1675]] &amp;ndash; [[1719]]
116405 |-
116406 | Professor [[Edmond Halley]] || [[1720]] &amp;ndash; [[1742]]
116407 |-
116408 | Dr [[James Bradley]] || [[1742]] &amp;ndash; [[1762]]
116409 |-
116410 | [[Nathaniel Bliss]] || [[1762]] &amp;ndash; [[1764]]
116411 |-
116412 | Rev'd [[Nevil Maskelyne]] || [[1765]] &amp;ndash; [[1811]]
116413 |-
116414 | [[John Pond]] || [[1811]] &amp;ndash; [[1835]]
116415 |-
116416 | Sir [[George Airy | George Biddell Airy]] || [[1835]] &amp;ndash; [[1881]]
116417 |-
116418 | Sir [[William Christie (astronomer)|William Christie]] || [[1881]] &amp;ndash; [[1910]]
116419 |-
116420 | Sir [[Frank Dyson]] || [[1910]] &amp;ndash; [[1933]]
116421 |-
116422 | Sir [[Harold Spencer Jones]] || [[1933]] &amp;ndash; [[1955]]
116423 |-
116424 | Professor Sir [[Richard van der Riet Woolley]] || [[1956]] &amp;ndash; [[1971]]
116425 |-
116426 | Professor Sir [[Martin Ryle]] || [[1972]] &amp;ndash; [[1982]]
116427 |-
116428 | Professor Sir [[Francis Smith (astronomer)|Francis Graham-Smith]] || [[1982]] &amp;ndash; [[1990]]
116429 |-
116430 | Professor Sir [[Arnold Wolfendale]] || [[1991]] &amp;ndash; [[1995]]
116431 |-
116432 | [[Martin Rees]], Baron Rees of Ludlow || [[1995]] &amp;ndash;
116433 |}
116434
116435 [[Category:Astronomers]]
116436 [[Category:Lists of British people]]
116437 [[Category:Positions within the British Royal Household]]
116438
116439 [[fr⏎
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
55
66 import (
77 "errors"
8 "fmt"
89 "hash"
910 "io"
1011
1718 DictCap int
1819 BufSize int
1920 BlockSize int64
20 // checksum method: CRC32, CRC64 or SHA256
21 // checksum method: CRC32, CRC64 or SHA256 (default: CRC64)
2122 CheckSum byte
23 // Forces NoChecksum (default: false)
24 NoCheckSum bool
2225 // match algorithm
2326 Matcher lzma.MatchAlgorithm
2427 }
3942 }
4043 if c.CheckSum == 0 {
4144 c.CheckSum = CRC64
45 }
46 if c.NoCheckSum {
47 c.CheckSum = None
4248 }
4349 }
4450
184190 return nil, err
185191 }
186192 data, err := w.h.MarshalBinary()
193 if err != nil {
194 return nil, fmt.Errorf("w.h.MarshalBinary(): error %w", err)
195 }
187196 if _, err = xz.Write(data); err != nil {
188197 return nil, err
189198 }
283292 if err != nil {
284293 return nil, err
285294 }
286 bw.mw = io.MultiWriter(bw.w, bw.hash)
295 if bw.hash.Size() != 0 {
296 bw.mw = io.MultiWriter(bw.w, bw.hash)
297 } else {
298 bw.mw = bw.w
299 }
287300 return bw, nil
288301 }
289302
0 // Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
11 // Use of this source code is governed by a BSD-style
22 // license that can be found in the LICENSE file.
33
135135 t.Fatal("decompressed data differs from original")
136136 }
137137 }
138
139 func TestWriterNoneCheck(t *testing.T) {
140 const txtlen = 1023
141 var buf bytes.Buffer
142 io.CopyN(&buf, randtxt.NewReader(rand.NewSource(41)), txtlen)
143 txt := buf.String()
144
145 buf.Reset()
146 w, err := WriterConfig{NoCheckSum: true}.NewWriter(&buf)
147 if err != nil {
148 t.Fatalf("NewWriter error %s", err)
149 }
150 n, err := io.WriteString(w, txt)
151 if err != nil {
152 t.Fatalf("WriteString error %s", err)
153 }
154 if n != len(txt) {
155 t.Fatalf("WriteString wrote %d bytes; want %d", n, len(txt))
156 }
157 if err = w.Close(); err != nil {
158 t.Fatalf("Close error %s", err)
159 }
160 t.Logf("buf.Len() %d", buf.Len())
161 r, err := NewReader(&buf)
162 if err != nil {
163 t.Fatalf("NewReader error %s", err)
164 }
165 var out bytes.Buffer
166 k, err := io.Copy(&out, r)
167 if err != nil {
168 t.Fatalf("Decompressing copy error %s after %d bytes", err, n)
169 }
170 if k != txtlen {
171 t.Fatalf("Decompression data length %d; want %d", k, txtlen)
172 }
173 if txt != out.String() {
174 t.Fatal("decompressed data differs from original")
175 }
176 }
177
178 func BenchmarkWriter(b *testing.B) {
179 const testFile = "testdata/enwik7"
180 data, err := os.ReadFile(testFile)
181 if err != nil {
182 b.Fatalf("os.ReadFile(%q) error %s", testFile, err)
183 }
184 buf := new(bytes.Buffer)
185 b.SetBytes(int64(len(data)))
186 b.ReportAllocs()
187 b.ResetTimer()
188 for i := 0; i < b.N; i++ {
189 buf.Reset()
190 w, err := NewWriter(buf)
191 if err != nil {
192 b.Fatalf("NewWriter(buf) error %s", err)
193 }
194 if _, err = w.Write(data); err != nil {
195 b.Fatalf("w.Write(data) error %s", err)
196 }
197 if err = w.Close(); err != nil {
198 b.Fatalf("w.Write(data)")
199 }
200 }
201 b.ReportMetric(float64(buf.Len())/float64(len(data)), "rate")
202 }
0 // Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
1 // Use of this source code is governed by a BSD-style
2 // license that can be found in the LICENSE file.
3
4 package xz_test
5
6 import (
7 "bytes"
8 "io/ioutil"
9 "testing"
10
11 "github.com/ulikunitz/xz"
12 )
13
14 func TestPanic(t *testing.T) {
15 data := []byte([]uint8{253, 55, 122, 88, 90, 0, 0, 0, 255, 18, 217, 65, 0, 189, 191, 239, 189, 191, 239, 48})
16 t.Logf("%q", string(data))
17 t.Logf("0x%02x", data)
18 r, err := xz.NewReader(bytes.NewReader(data))
19 if err != nil {
20 t.Logf("xz.NewReader error %s", err)
21 return
22 }
23 _, err = ioutil.ReadAll(r)
24 if err != nil {
25 t.Logf("ioutil.ReadAll(r) error %s", err)
26 return
27 }
28 }